[
  {
    "path": ".github/workflows/codeql-analysis.yml",
    "content": "# For most projects, this workflow file will not need changing; you simply need\n# to commit it to your repository.\n#\n# You may wish to alter this file to override the set of languages analyzed,\n# or to provide custom queries or build logic.\n#\n# ******** NOTE ********\n# We have attempted to detect the languages in your repository. Please check\n# the `language` matrix defined below to confirm you have the correct set of\n# supported CodeQL languages.\n#\nname: \"CodeQL\"\n\non:\n  push:\n    branches: [ master ]\n  pull_request:\n    # The branches below must be a subset of the branches above\n    branches: [ master ]\n  schedule:\n    - cron: '18 6 * * 4'\n\njobs:\n  analyze:\n    name: Analyze\n    runs-on: ubuntu-latest\n    permissions:\n      actions: read\n      contents: read\n      security-events: write\n\n    strategy:\n      fail-fast: false\n      matrix:\n        language: [ 'python' ]\n        # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]\n        # Learn more about CodeQL language support at https://git.io/codeql-language-support\n\n    steps:\n    - name: Checkout repository\n      uses: actions/checkout@v3\n\n    # Initializes the CodeQL tools for scanning.\n    - name: Initialize CodeQL\n      uses: github/codeql-action/init@v3\n      with:\n        languages: ${{ matrix.language }}\n        # If you wish to specify custom queries, you can do so here or in a config file.\n        # By default, queries listed here will override any specified in a config file.\n        # Prefix the list here with \"+\" to use these queries and those in the config file.\n        # queries: ./path/to/local/query, your-org/your-repo/queries@main\n\n    # Autobuild attempts to build any compiled languages  (C/C++, C#, or Java).\n    # If this step fails, then you should remove it and run the build manually (see below)\n    - name: Autobuild\n      uses: github/codeql-action/autobuild@v3\n\n    # ℹ️ Command-line programs to run using the OS shell.\n    # 📚 https://git.io/JvXDl\n\n    # ✏️ If the Autobuild fails above, remove it and uncomment the following three lines\n    #    and modify them (or add more) to build your code if your project\n    #    uses a compiled language\n\n    #- run: |\n    #   make bootstrap\n    #   make release\n\n    - name: Perform CodeQL Analysis\n      uses: github/codeql-action/analyze@v3\n"
  },
  {
    "path": ".github/workflows/cpd.yaml",
    "content": "name: Duplicate Code Detection\n\non:\n  push:\n    branches: [ master ]\n  pull_request:\n    # The branches below must be a subset of the branches above\n    branches: [ master ]\n\njobs:\n  build:\n\n    runs-on: ubuntu-latest\n\n    steps:\n      - uses: actions/checkout@v3\n      - uses: actions/setup-java@v3\n        with:\n          distribution: 'temurin'\n          java-version: '8'\n          cache: 'maven'\n\n      - name: Running Duplicate Code Detection\n        run: ./mvnw pmd:cpd-check -Pall -Daggregate=true\n"
  },
  {
    "path": ".github/workflows/spotless.yaml",
    "content": "name: Spotless Check\n\non:\n  push:\n    branches: [ master ]\n  pull_request:\n    # The branches below must be a subset of the branches above\n    branches: [ master ]\n\njobs:\n  build:\n\n    runs-on: ubuntu-latest\n\n    steps:\n      - uses: actions/checkout@v3\n      - uses: actions/setup-java@v3\n        with:\n          distribution: 'temurin'\n          java-version: '8'\n          cache: 'maven'\n\n      - name: Checkout coding style\n        run: ./mvnw spotless:check -Pall\n"
  },
  {
    "path": ".gitignore",
    "content": "*.class\n*.log\n\n# sbt/maven specific\n.cache/\n.history/\n.lib/\n.flattened-pom.xml\ndist/*\ntarget/\nlib_managed/\nsrc_managed/\nproject/boot/\nproject/plugins/project/\ndependency-reduced-pom.xml\n*.versionsBackup\n.mvn/wrapper/maven-wrapper.jar\n\n# Scala-IDE specific\n.scala_dependencies\n.worksheet\n.idea\n*.iml\n\n# Eclipse IDE Specific files\n.classpath\n.project\n.settings/\n\n# ad-hoc tests, should not be added to git\nAdAdHocITSuite.scala\n\n# Mac\n.DS_Store\n\n# Visual Studio IDE\n.vscode/\n\n# toolchains file\ntoolchains.xml\n"
  },
  {
    "path": ".mvn/wrapper/MavenWrapperDownloader.java",
    "content": "/*\n * Copyright 2007-present the original author or authors.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *      http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport java.net.*;\nimport java.io.*;\nimport java.nio.channels.*;\nimport java.util.Properties;\n\npublic class MavenWrapperDownloader {\n\n    private static final String WRAPPER_VERSION = \"0.5.6\";\n    /**\n     * Default URL to download the maven-wrapper.jar from, if no 'downloadUrl' is provided.\n     */\n    private static final String DEFAULT_DOWNLOAD_URL = \"https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/\"\n        + WRAPPER_VERSION + \"/maven-wrapper-\" + WRAPPER_VERSION + \".jar\";\n\n    /**\n     * Path to the maven-wrapper.properties file, which might contain a downloadUrl property to\n     * use instead of the default one.\n     */\n    private static final String MAVEN_WRAPPER_PROPERTIES_PATH =\n            \".mvn/wrapper/maven-wrapper.properties\";\n\n    /**\n     * Path where the maven-wrapper.jar will be saved to.\n     */\n    private static final String MAVEN_WRAPPER_JAR_PATH =\n            \".mvn/wrapper/maven-wrapper.jar\";\n\n    /**\n     * Name of the property which should be used to override the default download url for the wrapper.\n     */\n    private static final String PROPERTY_NAME_WRAPPER_URL = \"wrapperUrl\";\n\n    public static void main(String args[]) {\n        System.out.println(\"- Downloader started\");\n        File baseDirectory = new File(args[0]);\n        System.out.println(\"- Using base directory: \" + baseDirectory.getAbsolutePath());\n\n        // If the maven-wrapper.properties exists, read it and check if it contains a custom\n        // wrapperUrl parameter.\n        File mavenWrapperPropertyFile = new File(baseDirectory, MAVEN_WRAPPER_PROPERTIES_PATH);\n        String url = DEFAULT_DOWNLOAD_URL;\n        if(mavenWrapperPropertyFile.exists()) {\n            FileInputStream mavenWrapperPropertyFileInputStream = null;\n            try {\n                mavenWrapperPropertyFileInputStream = new FileInputStream(mavenWrapperPropertyFile);\n                Properties mavenWrapperProperties = new Properties();\n                mavenWrapperProperties.load(mavenWrapperPropertyFileInputStream);\n                url = mavenWrapperProperties.getProperty(PROPERTY_NAME_WRAPPER_URL, url);\n            } catch (IOException e) {\n                System.out.println(\"- ERROR loading '\" + MAVEN_WRAPPER_PROPERTIES_PATH + \"'\");\n            } finally {\n                try {\n                    if(mavenWrapperPropertyFileInputStream != null) {\n                        mavenWrapperPropertyFileInputStream.close();\n                    }\n                } catch (IOException e) {\n                    // Ignore ...\n                }\n            }\n        }\n        System.out.println(\"- Downloading from: \" + url);\n\n        File outputFile = new File(baseDirectory.getAbsolutePath(), MAVEN_WRAPPER_JAR_PATH);\n        if(!outputFile.getParentFile().exists()) {\n            if(!outputFile.getParentFile().mkdirs()) {\n                System.out.println(\n                        \"- ERROR creating output directory '\" + outputFile.getParentFile().getAbsolutePath() + \"'\");\n            }\n        }\n        System.out.println(\"- Downloading to: \" + outputFile.getAbsolutePath());\n        try {\n            downloadFileFromURL(url, outputFile);\n            System.out.println(\"Done\");\n            System.exit(0);\n        } catch (Throwable e) {\n            System.out.println(\"- Error downloading\");\n            e.printStackTrace();\n            System.exit(1);\n        }\n    }\n\n    private static void downloadFileFromURL(String urlString, File destination) throws Exception {\n        if (System.getenv(\"MVNW_USERNAME\") != null && System.getenv(\"MVNW_PASSWORD\") != null) {\n            String username = System.getenv(\"MVNW_USERNAME\");\n            char[] password = System.getenv(\"MVNW_PASSWORD\").toCharArray();\n            Authenticator.setDefault(new Authenticator() {\n                @Override\n                protected PasswordAuthentication getPasswordAuthentication() {\n                    return new PasswordAuthentication(username, password);\n                }\n            });\n        }\n        URL website = new URL(urlString);\n        ReadableByteChannel rbc;\n        rbc = Channels.newChannel(website.openStream());\n        FileOutputStream fos = new FileOutputStream(destination);\n        fos.getChannel().transferFrom(rbc, 0, Long.MAX_VALUE);\n        fos.close();\n        rbc.close();\n    }\n\n}\n"
  },
  {
    "path": ".mvn/wrapper/maven-wrapper.properties",
    "content": "distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip\nwrapperUrl=https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar\n"
  },
  {
    "path": "CHANGES.md",
    "content": "# Release Notes\n\n## Next\n\n* Issue #1476: Fixed BigQuery MERGE statement ambiguity on overwrite when table columns are named `target` or `source`.\n\n## 0.44.1 - 2026-03-25\n* BigQuery API has been upgraded to version 2.60.0\n* BigQuery Storage API has been upgraded to version 3.22.1\n* GAX has been upgraded to version 2.75.0\n* gRPC has been upgraded to version 1.79.0\n* Guava has been upgraded to version 33.5.0-jre\n* Netty has been upgraded to version 4.2.10.Final\n* Protocol Buffers has been upgraded to version 4.34.0\n* google-api-client has been upgraded to version 2.9.0\n\n## 0.44.0 - 2026-02-11\n* Added new connector, `spark-4.1-bigquery` aimed to be used in Spark 4.1. Like Spark 4.1, this connector requires at\n  least Java 17 runtime. It is currently in preview mode.\n* `spark-4.0-bigquery` is generally available!\n* PR #1445: Add streaming support for Spark DS v2 indirect write.\n* PR #1452: Improved the performance of the dynamic partition overwrite for RANGE_BUCKET partitioned tables.\n* PR #1434: Support per-catalog configuration for project and location for BigQueryCatalog.\n\n## 0.43.1 - 2025-10-22\n* Issue #1417: Fixed ClassCastException in AWS federated identity\n* PR #1432: Fixing packaging issue with the spark-4.0-bigquery connector.\n\n## 0.43.0 - 2025-10-17\n* Added new connector, `spark-4.0-bigquery` aimed to be used in Spark 4.0. Like Spark 4.0, this connector requires at\n  least Java 17 runtime. It is currently in preview mode.\n* PR #1367: Query Pushdown is no longer supported.\n* PR #1369: Catalog enhancements\n* PR #1374: Ensure TableId includes project ID if not explicitly set\n* PR #1376: `materializationDataset` is now optional to read from views or queries.\n* PR #1380: Fixed ImpersonatedCredentials serialization\n* PR #1381: Added the option to set custom credentials scopes\n* PR #1411: Added Support for [SparkSession#executeCommand](https://archive.apache.org/dist/spark/docs/3.0.0/api/java/org/apache/spark/sql/SparkSession.html#executeCommand-java.lang.String-java.lang.String-scala.collection.immutable.Map-)\n* Issue #1421: Fix ArrowInputPartitionContext serialization issue. Thanks @mrjoe7 !\n* BigQuery API has been upgraded to version 2.54.0\n* BigQuery Storage API has been upgraded to version 3.16.1\n* GAX has been upgraded to version 2.68.2\n* gRPC has been upgraded to version 1.74.0\n\n## 0.42.2 - 2025-05-16\n* PR #1347: Get lineage out of query. Thanks @ddebowczyk92\n* PR #1349: Add parameterized query support\n* BigQuery API has been upgraded to version 2.48.1\n* BigQuery Storage API has been upgraded to version 3.11.4\n* GAX has been upgraded to version 2.63.1\n* gRPC has been upgraded to version 1.71.0\n\n## 0.42.1 - 2025-03-17\n* CVE-2025-24970, CVE-2025-25193: Upgrading netty to version 4.1.119.Final\n* PR #1284: Making BigQueryClientFactory Kryo serializable. Thanks @tom-s-powell !\n* PR #1345: `materializationDataset` is no longer needed to read from views or queries.\n\n## 0.42.0 - 2025-02-06\n* PR #1333: Initial implementation of a BigQuery backed Spark Catalog\n* PR #1335: Adding indirect write GCS cleanup logs\n* BigQuery API has been upgraded to version 2.47.0\n* BigQuery Storage API has been upgraded to version 3.11.2\n* GAX has been upgraded to version 2.60.0\n* Netty has been upgraded to version 4.1.117.Final\n* Guava has been upgraded to version 33.4.0-jre\n\n## 0.41.1 - 2024-12-20\n* Issue #1290: Stopped using metadata for optimized count path\n* Issue #1317: Improving OpenLineage 1.24.0+ compatibility\n* PR #1311: Improve read session expired error message\n* PR #1320: Set the `temporaryGcsBucket` to default to `fs.gs.system.bucket` if exists, negating the need to set it in Dataproc clusters.\n* BigQuery API has been upgraded to version 2.45.0\n* BigQuery Storage API has been upgraded to version 3.11.0\n* GAX has been upgraded to version 2.59.0\n* Netty has been upgraded to version 4.1.115.Final\n* Arrow has been upgraded to version 17.0.0\n* Avro has been upgraded to version 1.11.4\n\n## 0.41.0 - 2024-09-05\n\n* PR #1265 : Add additional parentheses for EqualNullSafe filter generation. Thanks @tom-s-powell !\n* PR #1267 : Implement OpenLineage spark-extension-interfaces\n* PR #1281 : Configure alternative BigNumeric precision and scale defaults\n* Issue #1175: Add details to schema mismatch message\n* BigQuery API has been upgraded to version 2.42.2\n* BigQuery Storage API has been upgraded to version 3.9.0\n* GAX has been upgraded to version 2.52.0\n* Netty has been upgraded to version 4.1.113.Final\n\n## 0.40.0 - 2024-08-05\n\n* PR #1259 : Encode snapshotTimeMillis in view materialization query. Thanks @tom-s-powell !\n* PR #1261 : Adding IdentityToken header in readRows call\n* Issue #1043 : Fix Indirect write drops policy tags\n* Issue #1244 : Set schema Field Nullables as per ALLOW_FIELD_RELAXATION\n* Issue #1254 : fix getting partitioning fields for pseudo columns\n* Issue #1263 : Support ClusteredFields in Direct Write\n* BigQuery API has been upgraded to version 2.42.0\n* BigQuery Storage API has been upgraded to version 3.8.0\n* GAX has been upgraded to version 2.51.0\n* gRPC has been upgraded to version 1.65.1\n* Netty has been upgraded to version 4.1.112.Final\n\n\n## 0.39.1 - 2024-06-24\n\n* PR #1236: Fixing unshaded artifacts, added shading verification\n* PR #1239: Allow GCS bucket to be supplied including a scheme. Thanks @tom-s-powell !\n* Issue #1126: Fixing Kryo serialization issues\n* Issue #1223: Fix gRPC status creates 'object not serializable' errors\n\n## 0.39.0 - 2024-05-21\n\n* PR #1221: Adding support for [table snapshots](https://cloud.google.com/bigquery/docs/table-snapshots-intro). Thanks @tom-s-powell !\n* PR #1222: Add option to request lz4 compressed ReadRowsResponse\n* PR #1225: Fixing multi-release jar shading\n* PR #1227: Optimizing dynamic partition overwrite for Time partitioned tables\n* BigQuery API has been upgraded to version 2.40.1\n* BigQuery Storage API has been upgraded to version 3.5.1\n* GAX has been upgraded to version 2.48.1\n* gRPC has been upgraded to version 1.64.0\n\n## 0.38.0 - 2024-05-01\n\n* PR #1205: Sending Identity token in the read API header\n* Issue #1195: Support map type with complex value\n* Issue #1215: Support predicate pushdown for DATETIME\n* BigQuery API has been upgraded to version 2.39.0\n* BigQuery Storage API has been upgraded to version 3.5.0\n* GAX has been upgraded to version 2.47.0\n* Arrow has been upgraded to version 16.0.0\n* gRPC has been upgraded to version 1.63.0\n* Netty has been upgraded to version 4.1.109.Final\n\n## 0.37.0 - 2024-03-25\n\n* :warning: Starting version 0.38.0 of the connector, the `spark-2.4-bigquery` version won't be released as Spark 2.4 is\n  well-supported by the `spark-bigquery-with-dependencies` connectors.\n* PR #1156: Propagate stats for BigLake Managed tables\n* PR #1181: Add caching during protobuf generation\n* PR #1190: Enable connection sharing for atLeastOnce writes\n* Issue #1182: Fix query check logic\n* BigQuery API has been upgraded to version 2.38.1\n* BigQuery Storage API has been upgraded to version 3.3.1\n* GAX has been upgraded to version 2.45.0\n* Arrow has been upgraded to version 15.0.1\n* gRPC has been upgraded to version 1.62.2\n* Netty has been upgraded to version 4.1.107.Final\n* Protocol Buffers has been upgraded to version 3.25.3\n\n\n## 0.36.1 - 2024-01-31\n\n* PR #1176: fix timestamp filter translation issue\n\n## 0.36.0 - 2024-01-25\n\n* PR #1155: allow lazy materialization of query on load\n* PR #1163: Added config to set the BigQuery Job timeout\n* PR #1166: Fix filters by adding surrounding parenthesis. Thanks @tom-s-powell !\n* PR #1171: fix read, write issues with Timestamp\n* Issue #1116: BigQuery write fails with MessageSize is too large\n* BigQuery API has been upgraded to version 2.36.0\n* GAX has been upgraded to version 2.40.0\n* gRPC has been upgraded to version 1.61.0\n* Netty has been upgraded to version 4.1.106.Final\n* Protocol Buffers has been upgraded to version 3.25.2\n\n## 0.35.1 - 2023-12-28\n\n* PR #1153: allow writing spark string to BQ datetime\n\n## 0.35.0 - 2023-12-19\n\n* PR #1115: Added new connector, `spark-3.5-bigquery` aimed to be used in Spark 3.5. This connector implements new APIs and capabilities provided by the Spark Data Source V2 API.\n* PR #1117: Make read session caching duration configurable\n* PR #1118: Improve read session caching key\n* PR #1122: Set traceId on write\n* PR #1124: Added `SparkListenerEvent`s for Query and Load jobs running on BigQuery\n* PR #1127: Fix job labeling for mixed case Dataproc job names\n* PR #1136: Consider projections for biglake stats\n* PR #1143: Enable async write for default stream\n* BigQuery API has been upgraded to version 2.35.0\n* BigQuery Storage API has been upgraded to version 2.47.0\n* GAX has been upgraded to version 2.38.0\n* gRPC has been upgraded to version 1.60.0\n* Netty has been upgraded to version 4.1.101.Final\n* Protocol Buffers has been upgraded to version 3.25.1\n\n## 0.34.0 - 2023-10-31\n\n* PR #1057: Enable async writes for greater throughput\n* PR #1094: CVE-2023-5072: Upgrading the org.json:json dependency\n* PR #1095: CVE-2023-4586: Upgrading the netty dependencies\n* PR #1104: Fixed nested field predicate pushdown\n* PR #1109: Enable read session caching by default for faster Spark planning\n* PR #1111: Enable retry of failed messages\n* Issue #103: Support for Dynamic partition overwrite for time and range partitioned table\n* Issue #1099: Fixing the usage of ExternalAccountCredentials\n* BigQuery API has been upgraded to version 2.33.2\n* BigQuery Storage API has been upgraded to version 2.44.0\n* GAX has been upgraded to version 2.35.0\n* gRPC has been upgraded to version 1.58.0\n* Protocol Buffers has been upgraded to version 3.24.4\n\n## 0.33.0 - 2023-10-17\n\n* Added new connector, `spark-3.4-bigquery` aimed to be used in Spark 3.4 and above. This connector implements new APIs and capabilities provided by the Spark Data Source V2 API.\n* PR #1008: Adding support to expose BigQuery metrics using Spark custom metrics API.\n* PR #1038: Logical plan now shows the BigQuery table of DirectBigQueryRelation. Thanks @idc101 !\n* PR #1058: View names will appear in query plan instead of the materialized table\n* PR #1061: Handle NPE case when reading BQ table with NUMERIC fields. Thanks @hayssams !\n* PR #1069: Support TimestampNTZ datatype in spark 3.4\n* Issue #453: fix comment handling in query\n* Issue #144: allow writing Spark String to BQ TIME type\n* Issue #867: Support writing with RangePartitioning\n* Issue #1046: Add a way to disable map type support\n* Issue #1062: Adding dataproc job ID and UUID labels to BigQuery jobs\n\n## 0.32.2 - 2023-08-07\n\n* CVE-2023-34462: Upgrading netty to verision 4.1.96.Final\n\n## 0.32.1 - 2023-08-03\n\n* PR #1025: Handle Java 8 types for dates and timestamps when compiling filters. Thanks @tom-s-powell !\n* Issue #1026: Fixing Numeric conversion\n* Issue #1028: Fixing PolicyTags removal on overwrite\n\n## 0.32.0 - 2023-07-17\n\n* Issue #748: `_PARTITIONDATE` pseudo column is provided only for ingestion time **daily** partitioned tables\n* Issue #990: Fix to support `allowFieldAddition` for columns with nested fields.\n* Issue #993: Spark ML vector read and write fails\n* PR #1007: Implement at-least-once option that utilizes default stream\n\n## 0.31.1 - 2023-06-06\n\n* Issue #988: Read statistics are logged at TRACE level. Update the log4j configuration accordingly in order to log them.\n\n## 0.31.0 - 2023-06-01\n\n* :warning: **Breaking Change** BigNumeric conversion has changed, and it is now converted to Spark's\n  Decimal data type. Notice that BigNumeric can have a wider precision than Decimal, so additional\n  setting may be needed. See [here](https://github.com/GoogleCloudDataproc/spark-bigquery-connector#numeric-and-bignumeric-support)\n  for additional details.\n* Issue #945: Fixing unable to add new column even with option `allowFieldAddition`\n* PR #965: Fix to reuse the same BigQueryClient for the same BigQueryConfig, rather than creating a new one\n* PR #950: Added support for service account impersonation\n* PR #960: Added support for basic configuration of the gRPC channel pool size in the BigQueryReadClient.\n* PR #973: Added support for writing to [CMEK managed tables](https://cloud.google.com/bigquery/docs/customer-managed-encryption).\n* PR #971: Fixing wrong results or schema error when Spark nested schema pruning is on for datasource v2\n* PR #974: Applying DPP to Hive partitioned BigLake tables (spark-3.2-bigquery and spark-3.3-bigquery only)\n* PR #986: CVE-2020-8908, CVE-2023-2976: Upgrading Guava to version 32.0-jre\n* BigQuery API has been upgraded to version 2.26.0\n* BigQuery Storage API has been upgraded to version 2.36.1\n* GAX has been upgraded to version 2.26.0\n* gRPC has been upgraded to version 1.55.1\n* Netty has been upgraded to version 4.1.92.Final\n* Protocol Buffers has been upgraded to version 3.23.0\n* PR #957: support direct write with subset field list.\n\n## 0.30.0 - 2023-04-11\n\n* New connectors are out of preview and are now generally available! This includes all the new\n  connectors: spark-2.4-bigquery, spark-3.1-bigquery, spark-3.2-bigquery and spark-3.3-bigquery are GA and ready to be used in all workloads. Please\n  refer to the [compatibility matrix](https://github.com/GoogleCloudDataproc/spark-bigquery-connector#connector-to-spark-compatibility-matrix)\n  when using them.\n* Direct write method is out of preview and is now generally available!\n* `spark-bigquery-with-dependencies_2.11` is no longer published. If a recent version of the Scala\n  2.11 connector is needed, it can be built by checking out the code and running\n  `./mvnw install -Pdsv1_2.11`.\n* Issue #522: Supporting Spark's Map type. Notice there are few restrictions as this is not a\n  BigQuery native type.\n* Added support for reading BigQuery table snapshots.\n* BigQuery API has been upgraded to version 2.24.4\n* BigQuery Storage API has been upgraded to version 2.34.2\n* GAX has been upgraded to version 2.24.0\n* gRPC has been upgraded to version 1.54.0\n* Netty has been upgraded to version 4.1.90.Final\n* PR #944: Added support to set query job priority\n* Issue #908: Making sure that `preferred_min_stream_count` must be less than or equal to `max_stream_count`\n\n## 0.29.0 - 2023-03-03\n\n* Added two new connectors, `spark-3.2-bigquery` and `spark-3.3-bigquery` aimed to be used in Spark 3.2 and 3.3\n  respectively. Those connectors implement new APIs and capabilities provided by the Spark Data Source V2 API. Both\n  connectors are in preview mode.\n* Dynamic partition pruning is supported in preview mode by `spark-3.2-bigquery` and `spark-3.3-bigquery`.\n* This is the last version of the Spark BigQuery connector for scala 2.11. The code will remain in the repository and\n  can be compiled into a connector if needed.\n* PR #857: Fixing `autovalue` shaded classes repackaging\n* BigQuery API has been upgraded to version 2.22.0\n* BigQuery Storage API has been upgraded to version 2.31.0\n* GAX has been upgraded to version 2.23.0\n* gRPC has been upgraded to version 1.53.0\n* Netty has been upgraded to version 4.1.89.Final\n\n## 0.28.1 - 2023-02-27\n\nPR #904: Fixing premature client closing in certain cases, which causes RejectedExecutionException to be thrown\n\n## 0.28.0 - 2023-01-09\n\n* Adding support for the [JSON](https://cloud.google.com/bigquery/docs/reference/standard-sql/json-data) data type.\n  Thanks to @abhijeet-lele and @jonathan-ostrander for their contributions!\n* Issue #821: Fixing direct write of empty DataFrames\n* PR #832: Fixed client closing\n* Issue #838: Fixing unshaded artifacts\n* PR #848: Making schema comparison on write less strict\n* PR #852: fixed `enableListInference` usage when using the default intermediate format\n* Jackson has been upgraded to version 2.14.1, addressing CVE-2022-42003\n* BigQuery API has been upgraded to version 2.20.0\n* BigQuery Storage API has been upgraded to version 2.27.0\n* GAX has been upgraded to version 2.20.1\n* Guice has been upgraded to version 5.1.0\n* gRPC has been upgraded to version 1.51.1\n* Netty has been upgraded to version 4.1.86.Final\n* Protocol Buffers has been upgraded to version 3.21.12\n\n## 0.27.1 - 2022-10-18\n\n* PR #792: Added ability to set table labels while writing to a BigQuery table\n* PR #796: Allowing custom BigQuery API endpoints\n* PR #803: Removed grpc-netty-shaded from the connector jar\n* Protocol Buffers has been upgraded to version 3.21.7, addressing CVE-2022-3171\n* BigQuery API has been upgraded to version 2.16.1\n* BigQuery Storage API has been upgraded to version 2.21.0\n* gRPC has been upgraded to version 1.49.1\n* Netty has been upgraded to version 4.1.82.Final\n\n## 0.27.0 - 2022-09-20\n\n* Added new Scala 2.13 connector, aimed at Spark versions from 3.2 and above\n* PR #750: Adding support for custom access token creation. See more [here](https://github.com/GoogleCloudDataproc/spark-bigquery-connector#how-do-i-authenticate-outside-gce--dataproc).\n* PR #745: Supporting load from query in spark-3.1-bigquery.\n* PR #767: Adding the option createReadSessionTimeoutInSeconds, to override the timeout for CreateReadSession.\n\n## 0.26.0 - 2022-07-18\n\n* All connectors support the DIRECT write method, using the BigQuery Storage Write API,\n  without first writing the data to GCS. **DIRECT write method is in preview mode**.\n* `spark-3.1-bigquery` has been released in preview mode. This is a Java only library,\n  implementing the Spark 3.1 DataSource v2 APIs.\n* BigQuery API has been upgraded to version 2.13.8\n* BigQuery Storage API has been upgraded to version 2.16.0\n* gRPC has been upgraded to version 1.47.0\n* Netty has been upgraded to version 4.1.79.Final\n\n## 0.25.2 - 2022-06-22\n\n* PR #673: Added integration tests for BigLake external tables.\n* PR #674: Increasing default maxParallelism to 10K for BigLake external tables\n\n## 0.25.1 - 2022-06-13\n\n* Issue #651: Fixing the write back to BigQuery.\n* PR #664: Add support for BigLake external tables.\n* PR #667: Allowing clustering on unpartitioned tables.\n* PR #668: Using spark default parallelism as default.\n\n## 0.25.0 - 2022-05-31\n* Issue #593: Allow users to disable cache when loading data via SQL query,\n  by setting `cacheExpirationTimeInMinutes=0`\n* PR #613: Added field level schema checks. This can be disabled by setting\n  `enableModeCheckForSchemaFields=false`\n* PR #618: Added support for the `enableListInterface` option. This allows to\n  use parquet as an intermediate format also for arrays, without adding the\n  `list` element in the resulting schema as described\n  [here](https://cloud.google.com/bigquery/docs/reference/rest/v2/tables#ParquetOptions)\n* PR #641: Removed Conscrypt from the shaded artifact in order to improve\n  compatibility with Dataproc Serverless and with clusters where Conscrypt is\n  disabled.\n* BigQuery API has been upgraded to version 2.10.6\n* BigQuery Storage API has been upgraded to version 2.12.0\n* gRPC has been upgraded to version 1.46.0\n* Netty has been upgraded to version 4.1.75.Final\n\n## 0.24.2 - 2022-04-05\n* PR #580: Fixed shaded artifacts version flattening, the version appears\n  correctly in the released POM\n* PR #583: netty-tcnative is taken from the Netty BOM\n* PR #584: CVE-2020-36518 - Upgraded jackson\n\n## 0.24.1 - 2022-03-29\n* PR #576: Fixed error running on Datapoc clusters where conscrypt is disabled\n  (the property`dataproc.conscrypt.provider.enable` set to `false`)\n\n## 0.24.0 - 2022-03-23\n* Issue #530: Treating Field.mode==null as Nullable\n* PR #518: Cache expiration time can be configured now.\n* PR #561: Added support for adding trace ID to the BigQuery reads and writes.\n  The trace Id will be of the format `Spark:ApplicateName:JobID`. The\n  application name must be set by the user, job ID is defaults to Dataproc job\n  ID if exists, otherwise it is set to `spark.app.id`.\n* PR #563: Fixed a bug where using writeMethod=DIRECT and SaveMode=Append the\n  destination table may have been deleted in case `abort()` has been called.\n* PR #568: Added support for BigQuery jobs labels\n* BigQuery API has been upgraded to version 2.9.4\n* BigQuery Storage API has been upgraded to version 2.11.0\n* gRPC has been upgraded to version 1.44.1\n* Netty has been upgraded to version 4.1.73.Final\n\n## 0.23.2 - 2022-01-19\n* PR #521: Added Arrow compression options to the\n  spark-bigquery-with-dependencies_2.* connectors\n* PR #526: Added the option to use parent project for the metadata/jobs API as\n  well\n* BigQuery API has been upgraded to version 2.3.3\n* BigQuery Storage API has been upgraded to version 2.4.2\n* gRPC has been upgraded to version 1.42.1\n* Netty has been upgraded to version 4.1.70.Final\n\n## 0.23.1 - 2021-12-08\n* Issue #501: Fixed using avro as an intermediate type for writing.\n\n## 0.23.0 - 2021-12-06\n* New connector: A Java only connector implementing the Spark 2.4 APIs\n* PR #469: Added support for the BigQuery Storage Write API, allowing faster\n  writes (Spark 2.4 connector only)\n* Issue #481: Added configuration option to use compression from the READ API\n  for Arrow\n* BigQuery API has been upgraded to version 2.1.8\n* BigQuery Storage API has been upgraded to version 2.1.2\n* gRPC has been upgraded to version 1.41.0\n\n## 0.22.2 - 2021-09-22\n* Issue #446: BigNumeric values are properly written to BigQuery\n* Issue #452: Adding the option to clean BigQueryClient.destinationTableCache\n* BigQuery API has been upgraded to version 2.1.12\n* BigQuery Storage API has been upgraded to version 2.3.1\n* gRPC has been upgraded to version 1.40.0\n\n## 0.22.1 - 2021-09-08\n* Issue #444: allowing unpartitioned clustered table\n\n## 0.22.0 - 2021-06-22\n* PR #404: Added support for BigNumeric\n* PR #430: Added HTTP and gRPC proxy support\n* Issue #273: Resolved the streaming write issue for spark 3.x\n\n## 0.21.1 - 2021-06-22\n* PR #413: Pushing all filters to BigQuery Storage API\n* Issue #412: Supporting WITH queries\n* Issue #409: Allowing all whitespaces after the select\n* PR #419: Fix a bug where background threads > 2 cases would miss pages (DSv2)\n* PR #416: Moved zstd-jni library to be provided in order to solve Spark 2.4 compatibility (DSv2)\n* PR #417: Added back column projection to DSv2\n\n## 0.21.0 - 2021-06-01\n* Issue #354: users can query a view with different columns in select() and filter()\n* Issue #367: Struct column order is fixed\n* Issue #383: Fixed table metadata update when writing to a partitioned table\n* Issue #390: Allowing additional white-space types in the query\n* Issue #393: replacing avro.shaded dependency with guava\n* PR #360: Removed redundant `UNNEST` when compiling `IN` condition\n* BigQuery API has been upgraded to version 1.131.1\n* BigQuery Storage API has been upgraded to version 1.22.0\n* Guava has been upgraded to version 30.1.1-jre\n* gRPC has been upgraded to version 1.37.1\n* Netty has been upgraded to version 4.1.65.Final\n\n## 0.20.0 - 2021-03-29\n* PR #375: Added support for pseudo column support - time partitioned table now supoort the _PARTITIONTIME and _PARTITIONDATE fields\n* Issue# 190: Writing data to BigQuery properly populate the field description\n* Issue #265: Fixed nested conjunctions/disjunctions when using the AVRO read format\n* Issue #326: Fixing netty_tcnative_windows.dll shading\n* Arrow has been upgraded to version 4.0.0\n\n## 0.19.1 - 2021-03-01\n* PR #324 - Restoring version 0.18.1 dependencies due to networking issues\n* BigQuery API has been upgraded to version 1.123.2\n* BigQuery Storage API has been upgraded to version 1.6.0\n* Guava has been upgraded to version 30.0-jre\n* Netty has been upgraded to version 4.1.51.Final\n\n## 0.19.0 - 2021-02-24\n* Issue #247: Allowing to load results of any arbitrary SELECT query from BigQuery.\n* Issue #310: Allowing to configure the expiration time of materialized data.\n* PR #283: Implemented Datasource v2 write support.\n* Improved Spark 3 compatibility.\n* BigQuery API has been upgraded to version 1.127.4\n* BigQuery Storage API has been upgraded to version 1.10.0\n* Guava has been upgraded to version 30.1-jre\n* Netty has been upgraded to version 4.1.52.Final\n\n## 0.18.1 - 2021-01-21\n* Issue #248: Reducing the size of the URI list when writing to BigQuery. This allows larger DataFrames (>10,000 partitions) to be safely written.\n* Issue #296: Removed redundant packaged slf4j-api.\n* PR #276: Added the option to enable `useAvroLogicalTypes` option When writing data to BigQuery.\n\n## 0.18.0 - 2020-11-12\n* Issue #226: Adding support for HOUR, MONTH, DAY TimePartitions\n* Issue #260: Increasing connection timeout to the BigQuery service, and\n  configuring the request retry settings.\n* Issue #263: Fixed `select *` error when ColumnarBatch is used (DataSource v2)\n* Issue #266: Fixed the external configuration not working regression bug\n  (Introduced in version 0.17.2)\n* PR #262: Filters on BigQuery DATE and TIMESTAMP now use the right type.\n* BigQuery API has been upgraded to version 1.123.2\n* BigQuery Storage API has been upgraded to version 1.6.0\n* Guava has been upgraded to version 30.0-jre\n* Netty has been upgraded to version 4.1.51.Final\n* netty-tcnative has been upgraded to version 4.1.34.Final\n\n## 0.17.3 - 2020-10-06\n* PR #242, #243: Fixed Spark 3 compatibility, added Spark 3 acceptance test\n* Issue #249: Fixing credentials creation from key\n\n## 0.17.2 - 2020-09-10\n* PR #239: Ensuring that the BigQuery client will have the proper project id\n\n## 0.17.1 - 2020-08-06\n* Issue #216: removed redundant ALPN dependency\n* Issue #219: Fixed the LessThanOrEqual filter SQL compilation in the DataSource v2 implmentation\n* Issue #221: Fixed ProtobufUtilsTest.java with newer BigQuery dependencies\n* PR #229: Adding support for Spark ML Vector and Matrix data types\n* BigQuery API has been upgraded to version 1.116.8\n* BigQuery Storage API has been upgraded to version 1.3.1\n\n## 0.17.0 - 2020-07-15\n* PR #201: [Structured streaming write](http://spark.apache.org/docs/2.4.5/structured-streaming-programming-guide.html#starting-streaming-queries)\n  is now supported (thanks @varundhussa)\n* PR #202: Users now has the option to keep the data on GCS after writing to BigQuery (thanks @leoneuwald)\n* PR #211: Enabling to overwrite data of a single date partition\n* PR #198: Supporting columnar batch reads from Spark in the DataSource V2 implementation. **It is not ready for production use.**\n* PR #192: Supporting `MATERIALIZED_VIEW` as table type\n* Issue #197: Conditions on StructType fields are now handled by Spark and not the connector\n* BigQuery API has been upgraded to version 1.116.3\n* BigQuery Storage API has been upgraded to version 1.0.0\n* Netty has been upgraded to version 4.1.48.Final (Fixing issue #200)\n\n## 0.16.1 - 2020-06-11\n* PR #186: Fixed SparkBigQueryConnectorUserAgentProvider initialization bug\n\n## 0.16.0 - 2020-06-09\n**Please don't use this version, use 0.16.1 instead**\n\n* PR #180: Apache Arrow is now the default read format. Based on our benchmarking, Arrow provides read\n  performance faster by 40% then Avro.\n* PR #163: Apache Avro was added as a write intermediate format. It shows better performance over parquet\n  in large (>50GB) datasets. The spark-avro package must be added in runtime in order to use this format.\n* PR #176: Usage simplification: Now instead of using the `table` mandatory option, user can use the built\n  in `path` parameter of `load()` and `save()`, so that read becomes\n  `df = spark.read.format(\"bigquery\").load(\"source_table\")` and write becomes\n  `df.write.format(\"bigquery\").save(\"target_table\")`\n* An experimental implementation of the DataSource v2 API has been added. **It is not ready for\n  production use.**\n* BigQuery API has been upgraded to version 1.116.1\n* BigQuery Storage API has been upgraded to version 0.133.2-beta\n* gRPC has been upgraded to version 1.29.0\n* Guava has been upgraded to version 29.0-jre\n\n## 0.15.1-beta - 2020-04-27\n* PR #158: Users can now add the `spark.datasource.bigquery` prefix to the configuration options in order to support Spark's `--conf` command line flag\n* PR #160: View materialization is performed only on action, fixing a bug where view materialization was done too early\n\n## 0.15.0-beta - 2020-04-20\n* PR #150: Reading `DataFrame`s should be quicker, especially in interactive usage such in notebooks\n* PR #154: Upgraded to the BigQuery Storage v1 API\n* PR #146: Authentication can be done using [AccessToken](https://cloud.google.com/sdk/gcloud/reference/auth/application-default/print-access-token)\n  on top of Credentials file, Credentials, and the `GOOGLE_APPLICATION_CREDENTIALS` environment variable.\n\n## 0.14.0-beta - 2020-03-31\n* Issue #96: Added Arrow as a supported format for reading from BigQuery\n* Issue #130 Adding the field description to the schema metadata\n* Issue #124: Fixing null values in ArrayType\n* Issue #143: Allowing the setting of `SchemaUpdateOption`s When writing to BigQuery\n* PR #148: Add support for writing clustered tables\n* Upgrade version of google-cloud-bigquery library to 1.110.0\n* Upgrade version of google-cloud-bigquerystorage library to 0.126.0-beta\n\n\n## 0.13.1-beta - 2020-02-14\n* The BigQuery Storage API was reverted to v1beta1. The v1beta2 API has not been\n  fully integrated with custom IAM roles, which can cause issues to customers using\n  those. The v1beta1 doesn't have this problem. Once the integration is complete,\n  the API will be upgraded again.\n\n## 0.13.0-beta - 2020-02-12\n**Please don't use this version, use 0.13.1-beta instead**\n\n* Moved to use BigQuery Storage API v1beta2\n* changed the `parallelism` parameter to `maxParallelism` in order to reflect the\n  Change in the underlining API (the old parameter has been deprecated)\n* Upgrade version of google-cloud-bigquerystorage library to 0.122.0-beta.\n* Issue #73: Optimized empty projection used for count() execution.\n* Issue #121: Added the option to configure CreateDisposition when inserting data\n  to BigQuery.\n\n## 0.12.0-beta - 2020-01-29\n* Issue #72: Moved the shaded jar name from classifier to a new artifact name\n* Issues #73, #87: Added better logging to help understand which columns and filters\n  are asked by spark, and which are passed down to BigQuery\n* Issue #107: The connector will now alert when is is used with the wrong scala version\n\n## 0.11.0-beta - 2019-12-18\n* Upgrade version of google-cloud-bigquery library to 1.102.0\n* Upgrade version of google-cloud-bigquerystorage library to 0.120.0-beta\n* Issue #6: Do not initialize bigquery options by default\n* Added ReadRows retries on GRPC internal errors\n* Issue #97: Added support for GEOGRAPHY type\n\n## 0.10.0-beta - 2019-11-14\n* Added preliminary support for reading from BigQuery views (Issue #21)\n* Writing to BigQuery now white-listing the intermediate files instead\n  of black listing the _SUCCESS files (PR #75)\n* Added count() tip to the README\n\n## 0.9.2-beta - 2019-11-11\n* Upgrade version of google-cloud-bigquery library to 1.99.0\n* Upgrade version of google-cloud-bigquerystorage library to 0.117.0-beta\n* Upgrade version of grpc-netty-shaded library to 1.24.1\n* Supporting reading large rows (Issue #22, https://issuetracker.google.com/143730055)\n* Made sure that all filters are pushed down (Issue #74)\n* Fixing log severity\n* Added Java Example\n\n## 0.9.1-beta - 2019-10-11\n* A NPE in the shutdown hook has occurred in case the delete had succeeded\n  in the first time. This had no impact on the actual logic, just on the log.\n  The method now verifies the path exists before trying to delete it, and\n  hides the redundant exception.\n* Added support for data.write.bigquery(\"table\") implicit import, fixed\n  regression caused by relying of shaded scalalogging\n\n## 0.9.0-beta - 2019-10-08\n* Added write support\n* Switch requested partitions from SparkContext.defaultParallelism to one\n  partition per 400MB. This should work better with balanced sharding and\n  dynamic allocation.\n* Cross built for both Scala 2.11 and 2.12\n* Upgrade version of google-cloud-bigquery library to 1.96.0\n* Upgrade version of google-cloud-bigquerystorage library to 0.114.0-beta\n* Upgrade version of grpc-netty-shaded library to 1.23.0\n\n## 0.8.1-beta - 2019-09-12\n* Added a shaded version\n\n## 0.8.0-beta - 2019-07-22\n* Upgrade version of google-cloud-bigquery library to 1.82.0\n* Upgrade version of google-cloud-bigquerystorage library to 0.98.0-beta\n* Upgrade version of grpc-netty-shaded library to 1.22.1\n* Use balanced sharding strategy to assign roughly same number of rows to each\n  read stream.\n* Update filtering support to reflect full set of filters supported by storage\n  API (multi-clause predicates, pseudo-column variables, additional filter\n  clauses - IsNull, IsNotNull, In, StringStartsWith, StringEndsWith,\n  StringContains etc.)\n\n## 0.7.0-beta - 2019-06-26\n* Switch to using the BALANCED sharding strategy, which balances work between\n  streams on the server-side, leading to a more uniform distribution of rows\n  between partitions\n\n## 0.6.0-beta - 2019-06-25\n* Support specifying credentials through configurations\n\n## 0.5.1-beta - 2019-04-26\n\n* Support Numeric type\n* Refactor tests to manage test datasets\n\n## 0.5.0-beta - 2019-03-06\n\n* Initial release\n"
  },
  {
    "path": "CONTRIBUTING.md",
    "content": "# How to Contribute\n\nWe'd love to accept your patches and contributions to this project. There are\njust a few small guidelines you need to follow.\n\n## Contributor License Agreement\n\nContributions to this project must be accompanied by a Contributor License\nAgreement. You (or your employer) retain the copyright to your contribution;\nthis simply gives us permission to use and redistribute your contributions as\npart of the project. Head over to <https://cla.developers.google.com/> to see\nyour current agreements on file or to sign a new one.\n\nYou generally only need to submit a CLA once, so if you've already submitted one\n(even if it was for a different project), you probably don't need to do it\nagain.\n\n## Code reviews\n\nAll submissions, including submissions by project members, require review. We\nuse GitHub pull requests for this purpose. Consult\n[GitHub Help](https://help.github.com/articles/about-pull-requests/) for more\ninformation on using pull requests.\n\n## Community Guidelines\n\nThis project follows [Google's Open Source Community\nGuidelines](https://opensource.google.com/conduct/).\n\n## Building and Testing the Connector\n\nThe connector is built using the Maven wrapper. The project contains several\nconnectors, sharing some of the code among them. The connectors are:\n* spark-bigquery_2.11 - a Scala 2.11 based connector, targeting Spark 2.3 and\n  2.4 using Scala 2.11.\n* spark-bigquery_2.12 - a Scala 2.12 based connector, targeting Spark 2.4 and\n  3.x using Scala 2.12.\n* spark-2.4-bigquery - a Java only connector, targeting Spark 2.4 (of all\n  Scala versions), using the new DataSource APIs.\n* spark-3.1-bigquery - a Java only connector, targeting Spark 3.1 (of all\n  Scala versions), using the new DataSource APIs. Still under development.\n\nThe project's artifacts are:\n\n* `spark-bigquery-parent` - The parent POM for all artifacts. Common settings\n  and artifact version should be defined here.\n* `bigquery-connector-common` - Utility classes for working with the BigQuery\n  APIs. This artifact has no dependency on Spark. This artifact can potentially\n  be used by non-spark connectors\n* `spark-bigquery-connector-common`- Common utilites and logic  shared among\n  all connectors (Scala and Java alike). Whenever possible, new code should be\n  in this artifact\n* `spark-bigquery-dsv1/spark-bigquery-dsv1-parent` - Common settings for the\n  Scala based DataSource V1 implementation.\n* `spark-bigquery-dsv1/spark-bigquery-dsv1-spark3-support` - As some of the APIs\n  used by the connector have changed between Spark 2.x and 3.x, they are wrapped\n  in a neutral interface with wrappers for the two implementations. Unlike the\n  other dsv1 artifacts, this project depends on Spark 3 for this reason.\n* `spark-bigquery-dsv1/spark-bigquery_2.11` and\n  `spark-bigquery-dsv1/spark-bigquery_2.12` - The implementation of the Scala\n  based connectors. Both connectors share the same code via a symbolic link, so\n  a change in one of them will automatically affect the other.\n* `spark-bigquery-dsv1/spark-bigquery-with-dependencies-parent` - Common\n  settings for the shaded artifacts.\n* `spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.11` and\n  `spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.12` - The shaded\n  distributable of the connector, containing all the dependencies.\n* `spark-bigquery-dsv2/spark-bigquery-dsv2-parent` - Common settings for the\n  Java only DataSource V2 implementations.\n* `spark-bigquery-dsv2/spark-2.4-bigquery` - A Java only DataSource V2\n  connector implementing the Spark 2.4 APIs.\n* `spark-bigquery-dsv2/spark-3.1-bigquery` - A Java only DataSource V2\n  connector implementing the Spark 3.1 APIs. Under development.\n* `spark-bigquery-python-lib` - The python support library, adding BigQuery\n  types not supported by Spark.\n\nAs building and running all the connectors is a lengthy process, the project is\nsplit into several [profiles](https://maven.apache.org/guides/introduction/introduction-to-profiles.html),\neach building only a subset of the project's artifacts. The profiles are:\n\n* `dsv1` - Running both Scala/DSv1 connectors.\n* `dsv1_2.11` - Running just the Scala 2.11 connector.\n* `dsv1_2.12` - Running just the Scala 2.12 connector.\n* `dsv2` - Running both Java/DSv2 connectors.\n* `dsv2_2.4` - Running just the Java Spark 2.4 connector.\n* `dsv2_3.1` - Running just the Java Spark 3.1 connector.\n* `all` - Running all the connectors.\n\nExample: In order to compile **just** the Scala 2.12 connector run\n`./mvnw install -Pdsv1_2.12`.\n\n**Note**: Need java 1.8 and make sure **/usr/libexec/java_home** set to java 1.8 before building any module.\n\n**Important**: If no profile is selected, then only the common artifacts are run.\n\nThe integration and acceptance tests are disabled by default. In order to run it please add the\nfollowing profiles to the run:\n* Integration tests - `./mvnw failsafe:integration-test -Pdsv1_2.11,integration`\n* Acceptance tests - `./mvnw verify -Pdsv2_2.4,acceptance`\n\nIn order to run the integration tests make sure that your GCP user has the proper accounts for creating and deleting\ndatasets and tables in your test project in BigQuery. It will also need the permissions to upload files to the test\nbucket in GCS as well as delete them.\n\nSetting the following environment variables is required to run the integration tests:\n* `GOOGLE_APPLICATION_CREDENTIALS` - the full path to a credentials JSON, either a service account or the result of a\n  `gcloud auth login` run\n* `GOOGLE_CLOUD_PROJECT` - The Google cloud platform project used to test the connector\n* `TEMPORARY_GCS_BUCKET` - The GCS bucked used to test writing to BigQuery during the integration tests\n* `ACCEPTANCE_TEST_BUCKET` - The GCS bucked used to test writing to BigQuery during the acceptance tests\n* `SERVERLESS_NETWORK_URI` - The network used by the serverless batches during the acceptance tests\n* `BIGLAKE_CONNECTION_ID` - The connection ID to create a BigLake table using a Cloud Resource connection\n"
  },
  {
    "path": "LICENSE",
    "content": "\n                                 Apache License\n                           Version 2.0, January 2004\n                        http://www.apache.org/licenses/\n\n   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n   1. Definitions.\n\n      \"License\" shall mean the terms and conditions for use, reproduction,\n      and distribution as defined by Sections 1 through 9 of this document.\n\n      \"Licensor\" shall mean the copyright owner or entity authorized by\n      the copyright owner that is granting the License.\n\n      \"Legal Entity\" shall mean the union of the acting entity and all\n      other entities that control, are controlled by, or are under common\n      control with that entity. For the purposes of this definition,\n      \"control\" means (i) the power, direct or indirect, to cause the\n      direction or management of such entity, whether by contract or\n      otherwise, or (ii) ownership of fifty percent (50%) or more of the\n      outstanding shares, or (iii) beneficial ownership of such entity.\n\n      \"You\" (or \"Your\") shall mean an individual or Legal Entity\n      exercising permissions granted by this License.\n\n      \"Source\" form shall mean the preferred form for making modifications,\n      including but not limited to software source code, documentation\n      source, and configuration files.\n\n      \"Object\" form shall mean any form resulting from mechanical\n      transformation or translation of a Source form, including but\n      not limited to compiled object code, generated documentation,\n      and conversions to other media types.\n\n      \"Work\" shall mean the work of authorship, whether in Source or\n      Object form, made available under the License, as indicated by a\n      copyright notice that is included in or attached to the work\n      (an example is provided in the Appendix below).\n\n      \"Derivative Works\" shall mean any work, whether in Source or Object\n      form, that is based on (or derived from) the Work and for which the\n      editorial revisions, annotations, elaborations, or other modifications\n      represent, as a whole, an original work of authorship. For the purposes\n      of this License, Derivative Works shall not include works that remain\n      separable from, or merely link (or bind by name) to the interfaces of,\n      the Work and Derivative Works thereof.\n\n      \"Contribution\" shall mean any work of authorship, including\n      the original version of the Work and any modifications or additions\n      to that Work or Derivative Works thereof, that is intentionally\n      submitted to Licensor for inclusion in the Work by the copyright owner\n      or by an individual or Legal Entity authorized to submit on behalf of\n      the copyright owner. For the purposes of this definition, \"submitted\"\n      means any form of electronic, verbal, or written communication sent\n      to the Licensor or its representatives, including but not limited to\n      communication on electronic mailing lists, source code control systems,\n      and issue tracking systems that are managed by, or on behalf of, the\n      Licensor for the purpose of discussing and improving the Work, but\n      excluding communication that is conspicuously marked or otherwise\n      designated in writing by the copyright owner as \"Not a Contribution.\"\n\n      \"Contributor\" shall mean Licensor and any individual or Legal Entity\n      on behalf of whom a Contribution has been received by Licensor and\n      subsequently incorporated within the Work.\n\n   2. Grant of Copyright License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      copyright license to reproduce, prepare Derivative Works of,\n      publicly display, publicly perform, sublicense, and distribute the\n      Work and such Derivative Works in Source or Object form.\n\n   3. Grant of Patent License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      (except as stated in this section) patent license to make, have made,\n      use, offer to sell, sell, import, and otherwise transfer the Work,\n      where such license applies only to those patent claims licensable\n      by such Contributor that are necessarily infringed by their\n      Contribution(s) alone or by combination of their Contribution(s)\n      with the Work to which such Contribution(s) was submitted. If You\n      institute patent litigation against any entity (including a\n      cross-claim or counterclaim in a lawsuit) alleging that the Work\n      or a Contribution incorporated within the Work constitutes direct\n      or contributory patent infringement, then any patent licenses\n      granted to You under this License for that Work shall terminate\n      as of the date such litigation is filed.\n\n   4. Redistribution. You may reproduce and distribute copies of the\n      Work or Derivative Works thereof in any medium, with or without\n      modifications, and in Source or Object form, provided that You\n      meet the following conditions:\n\n      (a) You must give any other recipients of the Work or\n          Derivative Works a copy of this License; and\n\n      (b) You must cause any modified files to carry prominent notices\n          stating that You changed the files; and\n\n      (c) You must retain, in the Source form of any Derivative Works\n          that You distribute, all copyright, patent, trademark, and\n          attribution notices from the Source form of the Work,\n          excluding those notices that do not pertain to any part of\n          the Derivative Works; and\n\n      (d) If the Work includes a \"NOTICE\" text file as part of its\n          distribution, then any Derivative Works that You distribute must\n          include a readable copy of the attribution notices contained\n          within such NOTICE file, excluding those notices that do not\n          pertain to any part of the Derivative Works, in at least one\n          of the following places: within a NOTICE text file distributed\n          as part of the Derivative Works; within the Source form or\n          documentation, if provided along with the Derivative Works; or,\n          within a display generated by the Derivative Works, if and\n          wherever such third-party notices normally appear. The contents\n          of the NOTICE file are for informational purposes only and\n          do not modify the License. You may add Your own attribution\n          notices within Derivative Works that You distribute, alongside\n          or as an addendum to the NOTICE text from the Work, provided\n          that such additional attribution notices cannot be construed\n          as modifying the License.\n\n      You may add Your own copyright statement to Your modifications and\n      may provide additional or different license terms and conditions\n      for use, reproduction, or distribution of Your modifications, or\n      for any such Derivative Works as a whole, provided Your use,\n      reproduction, and distribution of the Work otherwise complies with\n      the conditions stated in this License.\n\n   5. Submission of Contributions. Unless You explicitly state otherwise,\n      any Contribution intentionally submitted for inclusion in the Work\n      by You to the Licensor shall be under the terms and conditions of\n      this License, without any additional terms or conditions.\n      Notwithstanding the above, nothing herein shall supersede or modify\n      the terms of any separate license agreement you may have executed\n      with Licensor regarding such Contributions.\n\n   6. Trademarks. This License does not grant permission to use the trade\n      names, trademarks, service marks, or product names of the Licensor,\n      except as required for reasonable and customary use in describing the\n      origin of the Work and reproducing the content of the NOTICE file.\n\n   7. Disclaimer of Warranty. Unless required by applicable law or\n      agreed to in writing, Licensor provides the Work (and each\n      Contributor provides its Contributions) on an \"AS IS\" BASIS,\n      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n      implied, including, without limitation, any warranties or conditions\n      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n      PARTICULAR PURPOSE. You are solely responsible for determining the\n      appropriateness of using or redistributing the Work and assume any\n      risks associated with Your exercise of permissions under this License.\n\n   8. Limitation of Liability. In no event and under no legal theory,\n      whether in tort (including negligence), contract, or otherwise,\n      unless required by applicable law (such as deliberate and grossly\n      negligent acts) or agreed to in writing, shall any Contributor be\n      liable to You for damages, including any direct, indirect, special,\n      incidental, or consequential damages of any character arising as a\n      result of this License or out of the use or inability to use the\n      Work (including but not limited to damages for loss of goodwill,\n      work stoppage, computer failure or malfunction, or any and all\n      other commercial damages or losses), even if such Contributor\n      has been advised of the possibility of such damages.\n\n   9. Accepting Warranty or Additional Liability. While redistributing\n      the Work or Derivative Works thereof, You may choose to offer,\n      and charge a fee for, acceptance of support, warranty, indemnity,\n      or other liability obligations and/or rights consistent with this\n      License. However, in accepting such obligations, You may act only\n      on Your own behalf and on Your sole responsibility, not on behalf\n      of any other Contributor, and only if You agree to indemnify,\n      defend, and hold each Contributor harmless for any liability\n      incurred by, or claims asserted against, such Contributor by reason\n      of your accepting any such warranty or additional liability.\n\n   END OF TERMS AND CONDITIONS\n\n   APPENDIX: How to apply the Apache License to your work.\n\n      To apply the Apache License to your work, attach the following\n      boilerplate notice, with the fields enclosed by brackets \"[]\"\n      replaced with your own identifying information. (Don't include\n      the brackets!)  The text should be enclosed in the appropriate\n      comment syntax for the file format. We also recommend that a\n      file or class name and description of purpose be included on the\n      same \"printed page\" as the copyright notice for easier\n      identification within third-party archives.\n\n   Copyright [yyyy] [name of copyright owner]\n\n   Licensed under the Apache License, Version 2.0 (the \"License\");\n   you may not use this file except in compliance with the License.\n   You may obtain a copy of the License at\n\n       http://www.apache.org/licenses/LICENSE-2.0\n\n   Unless required by applicable law or agreed to in writing, software\n   distributed under the License is distributed on an \"AS IS\" BASIS,\n   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n   See the License for the specific language governing permissions and\n   limitations under the License."
  },
  {
    "path": "README-template.md",
    "content": "# Apache Spark SQL connector for Google BigQuery\n\n<!--- TODO(#2): split out into more documents. -->\n\nThe connector supports reading [Google BigQuery](https://cloud.google.com/bigquery/) tables into Spark's DataFrames, and writing DataFrames back into BigQuery.\nThis is done by using the [Spark SQL Data Source API](https://spark.apache.org/docs/latest/sql-programming-guide.html#data-sources) to communicate with BigQuery.\n\n## Unreleased Changes\n\nThis Readme may include documentation for changes that haven't been released yet.  The latest release's documentation and source code are found here.\n\nhttps://github.com/GoogleCloudDataproc/spark-bigquery-connector/blob/master/README.md\n\n## BigQuery Storage API\nThe [Storage API](https://cloud.google.com/bigquery/docs/reference/storage) streams data in parallel directly from BigQuery via gRPC without using Google Cloud Storage as an intermediary.\n\nIt has a number of advantages over using the previous export-based read flow that should generally lead to better read performance:\n\n### Direct Streaming\n\nIt does not leave any temporary files in Google Cloud Storage. Rows are read directly from BigQuery servers using the Arrow or Avro wire formats.\n\n### Filtering\n\nThe new API allows column and predicate filtering to only read the data you are interested in.\n\n#### Column Filtering\n\nSince BigQuery is [backed by a columnar datastore](https://cloud.google.com/blog/big-data/2016/04/inside-capacitor-bigquerys-next-generation-columnar-storage-format), it can efficiently stream data without reading all columns.\n\n#### Predicate Filtering\n\nThe Storage API supports arbitrary pushdown of predicate filters. Connector version 0.8.0-beta and above support pushdown of arbitrary filters to Bigquery.\n\nThere is a known issue in Spark that does not allow pushdown of filters on nested fields. For example - filters like `address.city = \"Sunnyvale\"` will not get pushdown to Bigquery.\n\n### Dynamic Sharding\n\nThe API rebalances records between readers until they all complete. This means that all Map phases will finish nearly concurrently. See this blog article on [how dynamic sharding is similarly used in Google Cloud Dataflow](https://cloud.google.com/blog/products/gcp/no-shard-left-behind-dynamic-work-rebalancing-in-google-cloud-dataflow).\n\nSee [Configuring Partitioning](#configuring-partitioning) for more details.\n\n## Requirements\n\n### Enable the BigQuery Storage API\n\nFollow [these instructions](https://cloud.google.com/bigquery/docs/reference/storage/#enabling_the_api).\n\n### Create a Google Cloud Dataproc cluster (Optional)\n\nIf you do not have an Apache Spark environment you can create a Cloud Dataproc cluster with pre-configured auth. The following examples assume you are using Cloud Dataproc, but you can use `spark-submit` on any cluster.\n\nAny Dataproc cluster using the API needs the 'bigquery'  or 'cloud-platform' scopes. Dataproc clusters have the 'bigquery' scope by default, so most clusters in enabled projects should work by default e.g.\n\n```\nMY_CLUSTER=...\ngcloud dataproc clusters create \"$MY_CLUSTER\"\n```\n\n## Downloading and Using the Connector\n\nThe latest version of the connector is publicly available in the following links:\n\n| version    | Link                                                                                                                                                                                                                   |\n|------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| Spark 4.1  | `gs://spark-lib/bigquery/spark-4.1-bigquery-${next-release-tag}-preview.jar`([HTTP link](https://storage.googleapis.com/spark-lib/bigquery/spark-4.1-bigquery-${next-release-tag}-preview.jar))                        |\n| Spark 4.0  | `gs://spark-lib/bigquery/spark-4.0-bigquery-${next-release-tag}.jar`([HTTP link](https://storage.googleapis.com/spark-lib/bigquery/spark-4.0-bigquery-${next-release-tag}.jar))                                        |\n| Spark 3.5  | `gs://spark-lib/bigquery/spark-3.5-bigquery-${next-release-tag}.jar`([HTTP link](https://storage.googleapis.com/spark-lib/bigquery/spark-3.5-bigquery-${next-release-tag}.jar))                                        |\n| Spark 3.4  | `gs://spark-lib/bigquery/spark-3.4-bigquery-${next-release-tag}.jar`([HTTP link](https://storage.googleapis.com/spark-lib/bigquery/spark-3.4-bigquery-${next-release-tag}.jar))                                        |\n| Spark 3.3  | `gs://spark-lib/bigquery/spark-3.3-bigquery-${next-release-tag}.jar`([HTTP link](https://storage.googleapis.com/spark-lib/bigquery/spark-3.3-bigquery-${next-release-tag}.jar))                                        |\n| Spark 3.2  | `gs://spark-lib/bigquery/spark-3.2-bigquery-${next-release-tag}.jar`([HTTP link](https://storage.googleapis.com/spark-lib/bigquery/spark-3.2-bigquery-${next-release-tag}.jar))                                        |\n| Spark 3.1  | `gs://spark-lib/bigquery/spark-3.1-bigquery-${next-release-tag}.jar`([HTTP link](https://storage.googleapis.com/spark-lib/bigquery/spark-3.1-bigquery-${next-release-tag}.jar))                                        |\n| Spark 2.4  | `gs://spark-lib/bigquery/spark-2.4-bigquery-0.37.0.jar`([HTTP link](https://storage.googleapis.com/spark-lib/bigquery/spark-2.4-bigquery-0.37.0.jar))                                                                  |\n| Scala 2.13 | `gs://spark-lib/bigquery/spark-bigquery-with-dependencies_2.13-${next-release-tag}.jar` ([HTTP link](https://storage.googleapis.com/spark-lib/bigquery/spark-bigquery-with-dependencies_2.13-${next-release-tag}.jar)) |\n| Scala 2.12 | `gs://spark-lib/bigquery/spark-bigquery-with-dependencies_2.12-${next-release-tag}.jar` ([HTTP link](https://storage.googleapis.com/spark-lib/bigquery/spark-bigquery-with-dependencies_2.12-${next-release-tag}.jar)) |\n| Scala 2.11 | `gs://spark-lib/bigquery/spark-bigquery-with-dependencies_2.11-0.29.0.jar` ([HTTP link](https://storage.googleapis.com/spark-lib/bigquery/spark-bigquery-with-dependencies_2.11-0.29.0.jar))                           |\n\nThe first six versions are Java based connectors targeting Spark 2.4/3.1/3.2/3.3/3.4/3.5 of all Scala versions built on the new\nData Source APIs (Data Source API v2) of Spark.\n\nThe final two connectors are Scala based connectors, please use the jar relevant to your Spark installation as outlined\nbelow.\n\n### Connector to Spark Compatibility Matrix\n| Connector \\ Spark                     | 2.3     | 2.4     | 3.0     | 3.1     | 3.2     | 3.3     |3.4      | 3.5     |\n|---------------------------------------|---------|---------|---------|---------|---------|---------|---------|---------|\n| spark-3.5-bigquery                    |         |         |         |         |         |         |         | &check; |\n| spark-3.4-bigquery                    |         |         |         |         |         |         | &check; | &check; |\n| spark-3.3-bigquery                    |         |         |         |         |         | &check; | &check; | &check; |\n| spark-3.2-bigquery                    |         |         |         |         | &check; | &check; | &check; | &check; |\n| spark-3.1-bigquery                    |         |         |         | &check; | &check; | &check; | &check; | &check; |\n| spark-2.4-bigquery                    |         | &check; |         |         |         |         |         |         |\n| spark-bigquery-with-dependencies_2.13 |         |         |         |         | &check; | &check; | &check; | &check; |\n| spark-bigquery-with-dependencies_2.12 |         | &check; | &check; | &check; | &check; | &check; | &check; | &check; |\n| spark-bigquery-with-dependencies_2.11 | &check; | &check; |         |         |         |         |         |         |\n\n### Connector to Dataproc Image Compatibility Matrix\n| Connector \\ Dataproc Image            | 1.3     | 1.4     | 1.5     | 2.0     | 2.1     | 2.2     | Serverless<br>Image 1.0 | Serverless<br>Image 2.0 | Serverless<br>Image 2.1 | Serverless<br>Image 2.2 |\n|---------------------------------------|---------|---------|---------|---------|---------|---------|-------------------------|-------------------------|-------------------------|-------------------------|\n| spark-3.5-bigquery                    |         |         |         |         |         | &check; |                         |                         |                         | &check;                 |\n| spark-3.4-bigquery                    |         |         |         |         |         | &check; |                         |                         | &check;                 | &check;                 |\n| spark-3.3-bigquery                    |         |         |         |         | &check; | &check; | &check;                 | &check;                 | &check;                 | &check;                 |\n| spark-3.2-bigquery                    |         |         |         |         | &check; | &check; | &check;                 | &check;                 | &check;                 | &check;                 |\n| spark-3.1-bigquery                    |         |         |         | &check; | &check; | &check; | &check;                 | &check;                 | &check;                 | &check;                 |\n| spark-2.4-bigquery                    |         | &check; | &check; |         |         |         |                         |                         |                         |                         |\n| spark-bigquery-with-dependencies_2.13 |         |         |         |         |         |         |                         | &check;                 | &check;                 | &check;                 |\n| spark-bigquery-with-dependencies_2.12 |         |         | &check; | &check; | &check; | &check; | &check;                 |                         |                         |                         |\n| spark-bigquery-with-dependencies_2.11 | &check; | &check; |         |         |         |         |                         |                         |                         |                         |\n\n### Maven / Ivy Package Usage\nThe connector is also available from the\n[Maven Central](https://repo1.maven.org/maven2/com/google/cloud/spark/)\nrepository. It can be used using the `--packages` option or the\n`spark.jars.packages` configuration property. Use the following value\n\n| version    | Connector Artifact                                                                 |\n|------------|------------------------------------------------------------------------------------|\n| Spark 4.1  | `com.google.cloud.spark:spark-4.1-bigquery:${next-release-tag}-preview`            |\n| Spark 4.0  | `com.google.cloud.spark:spark-4.0-bigquery:${next-release-tag}`                    |\n| Spark 3.5  | `com.google.cloud.spark:spark-3.5-bigquery:${next-release-tag}`                    |\n| Spark 3.4  | `com.google.cloud.spark:spark-3.4-bigquery:${next-release-tag}`                    |\n| Spark 3.3  | `com.google.cloud.spark:spark-3.3-bigquery:${next-release-tag}`                    |\n| Spark 3.2  | `com.google.cloud.spark:spark-3.2-bigquery:${next-release-tag}`                    |\n| Spark 3.1  | `com.google.cloud.spark:spark-3.1-bigquery:${next-release-tag}`                    |\n| Spark 2.4  | `com.google.cloud.spark:spark-2.4-bigquery:0.37.0`                                 |\n| Scala 2.13 | `com.google.cloud.spark:spark-bigquery-with-dependencies_2.13:${next-release-tag}` |\n| Scala 2.12 | `com.google.cloud.spark:spark-bigquery-with-dependencies_2.12:${next-release-tag}` |\n| Scala 2.11 | `com.google.cloud.spark:spark-bigquery-with-dependencies_2.11:0.29.0`              |\n\n### Specifying the  Spark BigQuery connector version in a Dataproc cluster\n\nDataproc clusters created using image 2.1 and above, or batches using the Dataproc serverless service come with built-in Spark BigQuery connector.\nUsing the standard `--jars` or `--packages` (or alternatively, the `spark.jars`/`spark.jars.packages` configuration) won't help in this case as the built-in connector takes precedence.\n\nTo use another version than the built-in one, please do one of the following:\n\n* For Dataproc clusters, using image 2.1 and above, add the following flag on cluster creation to upgrade the version `--metadata SPARK_BQ_CONNECTOR_VERSION=${next-release-tag}`, or `--metadata SPARK_BQ_CONNECTOR_URL=gs://spark-lib/bigquery/spark-3.3-bigquery-${next-release-tag}.jar` to create the cluster with a different jar. The URL can point to any valid connector JAR for the cluster's Spark version.\n* For Dataproc serverless batches, add the following property on batch creation to upgrade the version: `--properties dataproc.sparkBqConnector.version=${next-release-tag}`, or `--properties dataproc.sparkBqConnector.uri=gs://spark-lib/bigquery/spark-3.3-bigquery-${next-release-tag}.jar` to create the batch with a different jar. The URL can point to any valid connector JAR for the runtime's Spark version.\n\n## Hello World Example\n\nYou can run a simple PySpark wordcount against the API without compilation by running\n\n**Dataproc image 1.5 and above**\n\n```\ngcloud dataproc jobs submit pyspark --cluster \"$MY_CLUSTER\" \\\n  --jars gs://spark-lib/bigquery/spark-bigquery-with-dependencies_2.12-${next-release-tag}.jar \\\n  examples/python/shakespeare.py\n```\n\n**Dataproc image 1.4 and below**\n\n```\ngcloud dataproc jobs submit pyspark --cluster \"$MY_CLUSTER\" \\\n  --jars gs://spark-lib/bigquery/spark-bigquery-with-dependencies_2.11-0.29.0.jar \\\n  examples/python/shakespeare.py\n```\n\n## Example Codelab ##\nhttps://codelabs.developers.google.com/codelabs/pyspark-bigquery\n\n## Usage\n\nThe connector uses the cross language [Spark SQL Data Source API](https://spark.apache.org/docs/latest/sql-programming-guide.html#data-sources):\n\n### Reading data from a BigQuery table\n\n```\ndf = spark.read \\\n  .format(\"bigquery\") \\\n  .load(\"bigquery-public-data.samples.shakespeare\")\n```\n\nor the Scala only implicit API:\n\n```\nimport com.google.cloud.spark.bigquery._\nval df = spark.read.bigquery(\"bigquery-public-data.samples.shakespeare\")\n```\n\nThe connector supports reading from tables that contain spaces in their names.\n\n**Note on ambiguous table names**: If a table name contains both spaces and a SQL keyword (e.g., \"from\", \"where\", \"join\"), it may be misinterpreted as a SQL query. To resolve this ambiguity, quote the table identifier with backticks \\`. For example:\n\n```\ndf = spark.read \\\n  .format(\"bigquery\") \\\n  .load(\"`my_project.my_dataset.orders from 2023`\")\n```\n\nFor more information, see additional code samples in\n[Python](examples/python/shakespeare.py),\n[Scala](spark-bigquery-dsv1/src/main/scala/com/google/cloud/spark/bigquery/examples/Shakespeare.scala)\nand\n[Java](spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/examples/JavaShakespeare.java).\n\n### Reading data from a BigQuery query\n\nThe connector allows you to run any\n[Standard SQL](https://cloud.google.com/bigquery/docs/reference/standard-sql/query-syntax)\nSELECT query on BigQuery and fetch its results directly to a Spark Dataframe.\nThis is easily done as described in the following code sample:\n```\nspark.conf.set(\"viewsEnabled\",\"true\")\n\nsql = \"\"\"\n  SELECT tag, COUNT(*) c\n  FROM (\n    SELECT SPLIT(tags, '|') tags\n    FROM `bigquery-public-data.stackoverflow.posts_questions` a\n    WHERE EXTRACT(YEAR FROM creation_date)>=2014\n  ), UNNEST(tags) tag\n  GROUP BY 1\n  ORDER BY 2 DESC\n  LIMIT 10\n  \"\"\"\ndf = spark.read.format(\"bigquery\").load(sql)\ndf.show()\n```\nWhich yields the result\n```\n+----------+-------+\n|       tag|      c|\n+----------+-------+\n|javascript|1643617|\n|    python|1352904|\n|      java|1218220|\n|   android| 913638|\n|       php| 911806|\n|        c#| 905331|\n|      html| 769499|\n|    jquery| 608071|\n|       css| 510343|\n|       c++| 458938|\n+----------+-------+\n```\nA second option is to use the `query` option like this:\n```\ndf = spark.read.format(\"bigquery\").option(\"query\", sql).load()\n```\n\nNotice that the execution should be faster as only the result is transmitted\nover the wire. In a similar fashion the queries can include JOINs more\nefficiently then running joins on Spark or use other BigQuery features such as\n[subqueries](https://cloud.google.com/bigquery/docs/reference/standard-sql/subqueries),\n[BigQuery user defined functions](https://cloud.google.com/bigquery/docs/reference/standard-sql/user-defined-functions),\n[wildcard tables](https://cloud.google.com/bigquery/docs/reference/standard-sql/wildcard-table-reference),\n[BigQuery ML](https://cloud.google.com/bigquery-ml/docs)\nand more.\n\nIn order to use this feature the `viewsEnabled` configurations MUST be set to\n`true`. This can also be done globally as shown in the example above.\n\n**Important:** This feature is implemented by running the query on BigQuery and\nsaving the result into a temporary table, of which Spark will read the results\nfrom. This may add additional costs on your BigQuery account.\n\n### Reading From Parameterized Queries\n\nThe connector supports executing [BigQuery parameterized queries](https://cloud.google.com/bigquery/docs/parameterized-queries) using the\nstandard `spark.read.format('bigquery')` API.\n\nTo use parameterized queries:\n\n1. Provide the SQL query containing parameters using the\n   `.option(\"query\", \"SQL_STRING\")` with named (`@param`) or positional (`?`) parameters.\n2. Specify the parameter values using dedicated options:\n  * **Named Parameters:** Use options prefixed with `NamedParameters.`. The\n    parameter name follows the prefix (case-insensitive).\n    * Format: `.option(\"NamedParameters.<parameter_name>\", \"TYPE:value\")`\n    * Example: `.option(\"NamedParameters.corpus\", \"STRING:romeoandjuliet\")`\n  * **Positional Parameters:** Use options prefixed with\n    `PositionalParameters.`. The 1-based index follows the prefix.\n    * Format:\n      `.option(\"PositionalParameters.<parameter_index>\", \"TYPE:value\")`\n    * Example: `.option(\"PositionalParameters.1\", \"STRING:romeoandjuliet\")`\n\nThe `TYPE` in the `TYPE:value` string specifies the BigQuery Standard SQL data\ntype. Supported types currently include: `BOOL`, `INT64`, `FLOAT64`, `NUMERIC`,\n`STRING`, `DATE`, `DATETIME`, `JSON`, `TIME`, `GEOGRAPHY`, `TIMESTAMP`.\n\n`ARRAY` and `STRUCT` types are not supported as parameters at this time.\n\n### Reading From Views\n\nThe connector has a preliminary support for reading from\n[BigQuery views](https://cloud.google.com/bigquery/docs/views-intro). Please\nnote there are a few caveats:\n\n* BigQuery views are not materialized by default, which means that the connector\n  needs to materialize them before it can read them. This process affects the\n  read performance, even before running any `collect()` or `count()` action.\n* The materialization process can also incur additional costs to your BigQuery\n  bill.\n* Reading from views is **disabled** by default. In order to enable it,\n  either set the viewsEnabled option when reading the specific view\n  (`.option(\"viewsEnabled\", \"true\")`) or set it globally by calling\n  `spark.conf.set(\"viewsEnabled\", \"true\")`.\n\n**Notice:** Before version 0.42.1 of the connector, the following configurations\nare required:\n* By default, the materialized views are created in the same project and\n  dataset. Those can be configured by the optional `materializationProject`\n  and `materializationDataset` options, respectively. These options can also\n  be globally set by calling `spark.conf.set(...)` before reading the views.\n* As mentioned in the [BigQuery documentation](https://cloud.google.com/bigquery/docs/writing-results#temporary_and_permanent_tables),\n  the `materializationDataset` should be in same location as the view.\n\nStarting version 0.42.1 those configurations are **redundant** and are ignored.\nIt is highly recommended to upgrade to this version or a later one to enjoy\nsimpler configuration when using views or loading from queries.\n\n### Writing data to BigQuery\n\nWriting DataFrames to BigQuery can be done using two methods: Direct and Indirect.\n\n#### Direct write using the BigQuery Storage Write API\n\nIn this method the data is written directly to BigQuery using the\n[BigQuery Storage Write API](https://cloud.google.com/bigquery/docs/write-api). In order to enable this option, please\nset the `writeMethod` option to `direct`, as shown below:\n\n```\ndf.write \\\n  .format(\"bigquery\") \\\n  .option(\"writeMethod\", \"direct\") \\\n  .option(\"writeAtLeastOnce\", \"true\")\n  .save(\"dataset.table\")\n```\n\nWriting to existing partitioned tables (date partitioned, ingestion time partitioned and range\npartitioned) in APPEND save mode and OVERWRITE mode (only date and range partitioned) is fully supported by the connector and the BigQuery Storage Write\nAPI. The use of `datePartition`, `partitionField`, `partitionType`, `partitionRangeStart`, `partitionRangeEnd`, `partitionRangeInterval`\ndescribed below is not supported at this moment by the direct write method.\n\n**Important:** Please refer to the [data ingestion pricing](https://cloud.google.com/bigquery/pricing#data_ingestion_pricing)\npage regarding the BigQuery Storage Write API pricing.\n\n**Important:** Please use version 0.24.2 and above for direct writes, as previous\nversions have a bug that may cause a table deletion in certain cases.\n\n#### Indirect write\nIn this method the data is written first  to GCS, and then it is loaded it to BigQuery. A GCS bucket must be configured\nto indicate the temporary data location.\n\n```\ndf.write \\\n  .format(\"bigquery\") \\\n  .option(\"temporaryGcsBucket\",\"some-bucket\") \\\n  .save(\"dataset.table\")\n```\n\nThe data is temporarily stored using the [Apache Parquet](https://parquet.apache.org/),\n[Apache ORC](https://orc.apache.org/) or [Apache Avro](https://avro.apache.org/) formats.\n\nThe GCS bucket and the format can also be set globally using Spark's RuntimeConfig like this:\n```\nspark.conf.set(\"temporaryGcsBucket\",\"some-bucket\")\ndf.write \\\n  .format(\"bigquery\") \\\n  .save(\"dataset.table\")\n```\n\nWhen streaming a DataFrame to BigQuery, each batch is written in the same manner as a non-streaming DataFrame.\nNote that a HDFS compatible\n[checkpoint location](http://spark.apache.org/docs/latest/structured-streaming-programming-guide.html#recovering-from-failures-with-checkpointing)\n(eg: `path/to/HDFS/dir` or `gs://checkpoint-bucket/checkpointDir`) must be specified.\n\n```\ndf.writeStream \\\n  .format(\"bigquery\") \\\n  .option(\"temporaryGcsBucket\",\"some-bucket\") \\\n  .option(\"checkpointLocation\", \"some-location\") \\\n  .option(\"table\", \"dataset.table\")\n```\n\n**Important:** The connector does not configure the GCS connector, in order to avoid conflict with another GCS connector, if exists. In order to use the write capabilities of the connector, please configure the GCS connector on your cluster as explained [here](https://github.com/GoogleCloudPlatform/bigdata-interop/tree/master/gcs).\n\n#### Schema Behavior on Overwrite\n\nWhen using `SaveMode.Overwrite` (`.mode(\"overwrite\")`), the connector **preserves the existing table's schema**.\nThe data is truncated, but column types, descriptions, and policy tags are retained.\n\n```\ndf.write \\\n  .format(\"bigquery\") \\\n  .mode(\"overwrite\") \\\n  .option(\"temporaryGcsBucket\",\"some-bucket\") \\\n  .save(\"dataset.table\")\n```\n\n**Important:** If your DataFrame has a different schema than the existing table (e.g., changing a column from\n`INTEGER` to `DOUBLE`), the write will fail with a type mismatch error. To change the schema, either:\n- Drop the table before overwriting\n- Use BigQuery DDL to alter the table schema first\n\nFor some of the schema difference, the following options can work with overwrite:\nProgrammatic Relaxation: Set `.option(\"allowFieldRelaxation\", \"true\")` for nullability changes and `.option(\"allowFieldAddition\", \"true\")` for new columns.\n\nThis behavior was introduced between version 0.22.0 and 0.41.0 to prevent accidental schema drift.\n\n**Note:** This behavior applies to both the `indirect` (default) and `direct` write methods.\n\n### Running SQL on BigQuery\n\nThe connector supports Spark's [SparkSession#executeCommand](https://archive.apache.org/dist/spark/docs/3.0.0/api/java/org/apache/spark/sql/SparkSession.html#executeCommand-java.lang.String-java.lang.String-scala.collection.immutable.Map-)\nwith the Spark-X.Y-bigquery connectors. It can be used to run any arbitrary DDL/DML StandardSQL statement on BigQuery as\na query job. `SELECT` statements are not supported, as those are supported by reading from query as shown above. It can\nbe used as follows:\n```\nspark.executeCommand(\"bigquery\", sql, options)\n```\nNotice the following:\n* Notice that apart from the authentication options no other options are supported by this functionality.\n* This API is available only in the Scala/Java API. PySpark does not provide it.\n\n### Properties\n\nThe API Supports a number of options to configure the read\n\n<!--- TODO(#2): Convert to markdown -->\n<table id=\"propertytable\">\n<style>\ntable#propertytable td, table th\n{\nword-break:break-word\n}\n</style>\n  <tr valign=\"top\">\n   <th style=\"min-width:240px\">Property</th>\n   <th>Meaning</th>\n   <th style=\"min-width:80px\">Usage</th>\n  </tr>\n  <tr valign=\"top\">\n   <td><code>table</code>\n   </td>\n   <td>The BigQuery table in the format <code>[[project:]dataset.]table</code>.\n       It is recommended to use the <code>path</code> parameter of\n       <code>load()</code>/<code>save()</code> instead. This option has been\n       deprecated and will be removed in a future version.\n       <br/><strong>(Deprecated)</strong>\n   </td>\n   <td>Read/Write</td>\n  </tr>\n  <tr valign=\"top\">\n   <td><code>dataset</code>\n   </td>\n   <td>The dataset containing the table. This option should be used with\n   standard table and views, but not when loading query results.\n       <br/>(Optional unless omitted in <code>table</code>)\n   </td>\n   <td>Read/Write</td>\n  </tr>\n  <tr valign=\"top\">\n   <td><code>project</code>\n   </td>\n   <td>The Google Cloud Project ID of the table. This option should be used with\n   standard table and views, but not when loading query results.\n       <br/>(Optional. Defaults to the project of the Service Account being used)\n   </td>\n   <td>Read/Write</td>\n  </tr>\n  <tr valign=\"top\">\n   <td><code>billingProject</code>\n   </td>\n   <td>The Google Cloud Project ID to use for <strong>billing</strong> (API calls, query execution).\n       <br/>(Optional. Defaults to the project of the Service Account being used)\n   </td>\n   <td>Read/Write</td>\n  </tr>\n  <tr valign=\"top\">\n   <td><code>parentProject</code>\n   </td>\n   <td><strong>(Deprecated)</strong> Alias for <code>billingProject</code>.\n       <br/>(Optional. Defaults to the project of the Service Account being used)\n   </td>\n   <td>Read/Write</td>\n  </tr>\n  <tr valign=\"top\">\n   <td><code>location</code>\n   </td>\n   <td>The BigQuery location where the data resides (e.g. US, EU, asia-northeast1).\n       <br/>(Optional. Defaults to BigQuery default)\n   </td>\n   <td>Read/Write</td>\n  </tr>\n  <tr valign=\"top\">\n   <td><code>maxParallelism</code>\n   </td>\n   <td>The maximal number of partitions to split the data into. Actual number\n       may be less if BigQuery deems the data small enough. If there are not\n       enough executors to schedule a reader per partition, some partitions may\n       be empty.\n       <br/><b>Important:</b> The old parameter (<code>parallelism</code>) is\n            still supported but in deprecated mode. It will ve removed in\n            version 1.0 of the connector.\n       <br/>(Optional. Defaults to the larger of the preferredMinParallelism and 20,000)</a>.)\n   </td>\n   <td>Read</td>\n  </tr>\n  <tr valign=\"top\">\n   <td><code>preferredMinParallelism</code>\n   </td>\n   <td>The preferred minimal number of partitions to split the data into. Actual number\n       may be less if BigQuery deems the data small enough. If there are not\n       enough executors to schedule a reader per partition, some partitions may\n       be empty.\n       <br/>(Optional. Defaults to the smallest of 3 times the application's default parallelism\n       and maxParallelism</a>.)\n   </td>\n   <td>Read</td>\n  </tr>\n  <tr valign=\"top\">\n   <td><code>viewsEnabled</code>\n   </td>\n   <td>Enables the connector to read from views and not only tables. Please read\n       the <a href=\"#reading-from-views\">relevant section</a> before activating\n       this option.\n       <br/>(Optional. Defaults to <code>false</code>)\n   </td>\n   <td>Read</td>\n  </tr>\n  <tr valign=\"top\">\n   <td><code>readDataFormat</code>\n   </td>\n   <td>Data Format for reading from BigQuery. Options : <code>ARROW</code>, <code>AVRO</code>\n       <br/>(Optional. Defaults to <code>ARROW</code>)\n   </td>\n   <td>Read</td>\n  </tr>\n  <tr valign=\"top\">\n   <td><code>optimizedEmptyProjection</code>\n   </td>\n   <td>The connector uses an optimized empty projection (select without any\n       columns) logic, used for <code>count()</code> execution. This logic takes\n       the data directly from the table metadata or performs a much efficient\n       `SELECT COUNT(*) WHERE...` in case there is a filter. You can cancel the\n       use of this logic by setting this option to <code>false</code>.\n       <br/>(Optional, defaults to <code>true</code>)\n   </td>\n   <td>Read</td>\n  </tr>\n  <tr valign=\"top\">\n   <td><code>pushAllFilters</code>\n   </td>\n   <td>If set to <code>true</code>, the connector pushes all the filters Spark can delegate\n       to BigQuery Storage API. This reduces amount of data that needs to be sent from\n       BigQuery Storage API servers to Spark clients. This option has been\n       deprecated and will be removed in a future version.\n       <br/>(Optional, defaults to <code>true</code>)\n       <br/><strong>(Deprecated)</strong>\n   </td>\n   <td>Read</td>\n  </tr>\n  <tr valign=\"top\">\n   <td><code>bigQueryJobLabel</code>\n   </td>\n   <td>Can be used to add labels to the connector initiated query and load\n       BigQuery jobs. Multiple labels can be set.\n       <br/>(Optional)\n   </td>\n   <td>Read</td>\n  </tr>\n  <tr valign=\"top\">\n   <td><code>bigQueryTableLabel</code>\n   </td>\n   <td>Can be used to add labels to the table while writing to a table. Multiple\n       labels can be set.\n       <br/>(Optional)\n   </td>\n   <td>Write</td>\n  </tr>\n  <tr valign=\"top\">\n   <td><code>traceApplicationName</code>\n   </td>\n   <td>Application name used to trace BigQuery Storage read and write sessions.\n       Setting the application name is required to set the trace ID on the\n       sessions.\n       <br/>(Optional)\n   </td>\n   <td>Read</td>\n  </tr>\n  <tr valign=\"top\">\n   <td><code>traceJobId</code>\n   </td>\n   <td>Job ID used to trace BigQuery Storage read and write sessions.\n       <br/>(Optional, defaults to the Dataproc job ID is exists, otherwise uses\n       the Spark application ID)\n   </td>\n   <td>Read</td>\n  </tr>\n  <tr valign=\"top\">\n     <td><code>createDisposition</code>\n      </td>\n      <td>Specifies whether the job is allowed to create new tables. The permitted\n          values are:\n          <ul>\n            <li><code>CREATE_IF_NEEDED</code> - Configures the job to create the\n                table if it does not exist.</li>\n            <li><code>CREATE_NEVER</code> - Configures the job to fail if the\n                table does not exist.</li>\n          </ul>\n          This option takes place only in case Spark has decided to write data\n          to the table based on the SaveMode.\n         <br/>(Optional. Default to CREATE_IF_NEEDED).\n      </td>\n      <td>Write</td>\n   </tr>\n\n  <tr valign=\"top\">\n   <td><code>writeMethod</code>\n     </td>\n       <td>Controls the method\n       in which the data is written to BigQuery. Available values are <code>direct</code>\n       to use the BigQuery Storage Write API and <code>indirect</code> which writes the\n       data first to GCS and then triggers a BigQuery load operation. See more\n       <a href=\"#writing-data-to-bigquery\">here</a>\n       <br/>(Optional, defaults to <code>indirect</code>)\n     </td>\n   <td>Write</td>\n  </tr>\n  <tr valign=\"top\">\n   <td><code>writeAtLeastOnce</code>\n   </td>\n   <td>Guarantees that data is written to BigQuery at least once. This is a lesser\n    guarantee than exactly once. This is suitable for streaming scenarios\n    in which data is continuously being written in small batches.\n       <br/>(Optional. Defaults to <code>false</code>)\n       <br/><i>Supported only by the `DIRECT` write method and mode is <b>NOT</b> `Overwrite`.</i>\n   </td>\n   <td>Write</td>\n  </tr>\n  <tr valign=\"top\">\n   <td><code>temporaryGcsBucket</code>\n   </td>\n   <td>The GCS bucket that temporarily holds the data before it is loaded to\n       BigQuery. Required unless set in the Spark configuration\n       (<code>spark.conf.set(...)</code>).\n       <br/>Defaults to the `fs.gs.system.bucket` if exists, for example on Google Cloud Dataproc clusters, starting version 0.42.0.\n       <br/><i>Supported only by the `INDIRECT` write method.</i>\n   </td>\n   <td>Write</td>\n  </tr>\n  <tr valign=\"top\">\n   <td><code>persistentGcsBucket</code>\n   </td>\n   <td>The GCS bucket that holds the data before it is loaded to\n       BigQuery. If informed, the data won't be deleted after write data\n       into BigQuery.\n       <br/><i>Supported only by the `INDIRECT` write method.</i>\n   </td>\n   <td>Write</td>\n  </tr>\n  <tr valign=\"top\">\n   <td><code>persistentGcsPath</code>\n   </td>\n   <td>The GCS path that holds the data before it is loaded to\n       BigQuery. Used only with <code>persistentGcsBucket</code>.\n       <br/><i>Not supported by the `DIRECT` write method.</i>\n   </td>\n   <td>Write</td>\n  </tr>\n  <tr valign=\"top\">\n   <td><code>intermediateFormat</code>\n   </td>\n   <td>The format of the data before it is loaded to BigQuery, values can be\n       either \"parquet\",\"orc\" or \"avro\". In order to use the Avro format, the\n       spark-avro package must be added in runtime.\n       <br/>(Optional. Defaults to <code>parquet</code>). On write only. Supported only for the `INDIRECT` write method.\n   </td>\n   <td>Write</td>\n  </tr>\n  <tr valign=\"top\">\n   <td><code>useAvroLogicalTypes</code>\n   </td>\n   <td>When loading from Avro (`.option(\"intermediateFormat\", \"avro\")`), BigQuery uses the underlying Avro types instead of the logical types [by default](https://cloud.google.com/bigquery/docs/loading-data-cloud-storage-avro#logical_types). Supplying this option converts Avro logical types to their corresponding BigQuery data types.\n       <br/>(Optional. Defaults to <code>false</code>). On write only.\n   </td>\n   <td>Write</td>\n  </tr>\n  <tr valign=\"top\">\n   <td><code>datePartition</code>\n   </td>\n   <td>The date partition the data is going to be written to. Should be a date string\n       given in the format <code>YYYYMMDD</code>. Can be used to overwrite the data of\n\t   a single partition, like this: <code><br/>df.write.format(\"bigquery\")\n       <br/>&nbsp;&nbsp;.option(\"datePartition\", \"20220331\")\n       <br/>&nbsp;&nbsp;.mode(\"overwrite\")\n       <br/>&nbsp;&nbsp;.save(\"table\")</code>\n       <br/>(Optional). On write only.\n        <br/> Can also be used with different partition types like:\n        <br/> HOUR: <code>YYYYMMDDHH</code>\n        <br/> MONTH: <code>YYYYMM</code>\n        <br/> YEAR: <code>YYYY</code>\n        <br/><i>Not supported by the `DIRECT` write method.</i>\n   </td>\n   <td>Write</td>\n  </tr>\n  <tr valign=\"top\">\n     <td><code>partitionField</code>\n     </td>\n     <td>If this field is specified, the table is partitioned by this field.\n         <br/>For Time partitioning, specify together with the option `partitionType`.\n         <br/>For Integer-range partitioning, specify together with the 3 options: `partitionRangeStart`, `partitionRangeEnd, `partitionRangeInterval`.\n         <br/>The field must be a top-level TIMESTAMP or DATE field for Time partitioning, or INT64 for Integer-range partitioning. Its mode must be <strong>NULLABLE</strong>\n         or <strong>REQUIRED</strong>.\n         If the option is not set for a Time partitioned table, then the table will be partitioned by pseudo\n         column, referenced via either<code>'_PARTITIONTIME' as TIMESTAMP</code> type, or\n         <code>'_PARTITIONDATE' as DATE</code> type.\n         <br/>(Optional).\n         <br/><i>Not supported by the `DIRECT` write method.</i>\n     </td>\n     <td>Write</td>\n    </tr>\n   <tr valign=\"top\">\n    <td><code>partitionExpirationMs</code>\n     </td>\n     <td>Number of milliseconds for which to keep the storage for partitions in the table.\n         The storage in a partition will have an expiration time of its partition time plus this value.\n        <br/>(Optional).\n        <br/><i>Not supported by the `DIRECT` write method.</i>\n     </td>\n     <td>Write</td>\n   </tr>\n   <tr valign=\"top\">\n       <td><code>partitionType</code>\n        </td>\n        <td>Used to specify Time partitioning.\n            <br/>Supported types are: <code>HOUR, DAY, MONTH, YEAR</code>\n            <br/> This option is <b>mandatory</b> for a target table to be Time partitioned.\n            <br/>(Optional. Defaults to DAY if PartitionField is specified).\n            <br/><i>Not supported by the `DIRECT` write method.</i>\n       </td>\n        <td>Write</td>\n     </tr>\n   <tr valign=\"top\">\n       <td><code>partitionRangeStart</code>,\n           <code>partitionRangeEnd</code>,\n           <code>partitionRangeInterval</code>\n        </td>\n        <td>Used to specify Integer-range partitioning.\n            <br/>These options are <b>mandatory</b> for a target table to be Integer-range partitioned.\n            <br/>All 3 options must be specified.\n            <br/><i>Not supported by the `DIRECT` write method.</i>\n       </td>\n        <td>Write</td>\n   </tr>\n    <tr valign=\"top\">\n           <td><code>clusteredFields</code>\n            </td>\n            <td>A string of non-repeated, top level columns seperated by comma.\n               <br/>(Optional).\n            </td>\n            <td>Write</td>\n         </tr>\n   <tr valign=\"top\">\n       <td><code>allowFieldAddition</code>\n        </td>\n        <td>Adds the <a href=\"https://googleapis.dev/java/google-cloud-clients/latest/com/google/cloud/bigquery/JobInfo.SchemaUpdateOption.html#ALLOW_FIELD_ADDITION\" target=\"_blank\">ALLOW_FIELD_ADDITION</a>\n            SchemaUpdateOption to the BigQuery LoadJob. Allowed values are <code>true</code> and <code>false</code>.\n           <br/>(Optional. Default to <code>false</code>).\n           <br/><i>Supported only by the `INDIRECT` write method.</i>\n        </td>\n        <td>Write</td>\n     </tr>\n   <tr valign=\"top\">\n       <td><code>allowFieldRelaxation</code>\n        </td>\n        <td>Adds the <a href=\"https://googleapis.dev/java/google-cloud-clients/latest/com/google/cloud/bigquery/JobInfo.SchemaUpdateOption.html#ALLOW_FIELD_RELAXATION\" target=\"_blank\">ALLOW_FIELD_RELAXATION</a>\n            SchemaUpdateOption to the BigQuery LoadJob. Allowed values are <code>true</code> and <code>false</code>.\n           <br/>(Optional. Default to <code>false</code>).\n           <br/><i>Supported only by the `INDIRECT` write method.</i>\n        </td>\n        <td>Write</td>\n     </tr>\n   <tr valign=\"top\">\n     <td><code>proxyAddress</code>\n     </td>\n     <td> Address of the proxy server. The proxy must be a HTTP proxy and address should be in the `host:port` format.\n          Can be alternatively set in the Spark configuration (<code>spark.conf.set(...)</code>) or in Hadoop\n          Configuration (<code>fs.gs.proxy.address</code>).\n          <br/> (Optional. Required only if connecting to GCP via proxy.)\n     </td>\n     <td>Read/Write</td>\n   </tr>\n   <tr valign=\"top\">\n     <td><code>proxyUsername</code>\n     </td>\n     <td> The userName used to connect to the proxy. Can be alternatively set in the Spark configuration\n          (<code>spark.conf.set(...)</code>) or in Hadoop Configuration (<code>fs.gs.proxy.username</code>).\n          <br/> (Optional. Required only if connecting to GCP via proxy with authentication.)\n     </td>\n     <td>Read/Write</td>\n   </tr>\n   <tr valign=\"top\">\n     <td><code>proxyPassword</code>\n     </td>\n     <td> The password used to connect to the proxy. Can be alternatively set in the Spark configuration\n          (<code>spark.conf.set(...)</code>) or in Hadoop Configuration (<code>fs.gs.proxy.password</code>).\n          <br/> (Optional. Required only if connecting to GCP via proxy with authentication.)\n     </td>\n     <td>Read/Write</td>\n   </tr>\n   <tr valign=\"top\">\n     <td><code>httpMaxRetry</code>\n     </td>\n     <td> The maximum number of retries for the low-level HTTP requests to BigQuery. Can be alternatively set in the\n          Spark configuration (<code>spark.conf.set(\"httpMaxRetry\", ...)</code>) or in Hadoop Configuration\n          (<code>fs.gs.http.max.retry</code>).\n          <br/> (Optional. Default is 10)\n     </td>\n     <td>Read/Write</td>\n   </tr>\n   <tr valign=\"top\">\n     <td><code>httpConnectTimeout</code>\n     </td>\n     <td> The timeout in milliseconds to establish a connection with BigQuery. Can be alternatively set in the\n          Spark configuration (<code>spark.conf.set(\"httpConnectTimeout\", ...)</code>) or in Hadoop Configuration\n          (<code>fs.gs.http.connect-timeout</code>).\n          <br/> (Optional. Default is 60000 ms. 0 for an infinite timeout, a negative number for 20000)\n     </td>\n     <td>Read/Write</td>\n   </tr>\n   <tr valign=\"top\">\n     <td><code>httpReadTimeout</code>\n     </td>\n     <td> The timeout in milliseconds to read data from an established connection. Can be alternatively set in the\n          Spark configuration (<code>spark.conf.set(\"httpReadTimeout\", ...)</code>) or in Hadoop Configuration\n          (<code>fs.gs.http.read-timeout</code>).\n          <br/> (Optional. Default is 60000 ms. 0 for an infinite timeout, a negative number for 20000)\n     </td>\n     <td>Read</td>\n   </tr>\n   <tr valign=\"top\">\n     <td><code>arrowCompressionCodec</code>\n     </td>\n     <td>  Compression codec while reading from a BigQuery table when using Arrow format. Options :\n           <code>ZSTD (Zstandard compression)</code>,\n           <code>LZ4_FRAME (https://github.com/lz4/lz4/blob/dev/doc/lz4_Frame_format.md)</code>,\n           <code>COMPRESSION_UNSPECIFIED</code>. The recommended compression codec is <code>ZSTD</code>\n           while using Java.\n          <br/> (Optional. Defaults to <code>COMPRESSION_UNSPECIFIED</code> which means no compression will be used)\n     </td>\n     <td>Read</td>\n   </tr>\n   <tr valign=\"top\">\n     <td><code>responseCompressionCodec</code>\n     </td>\n     <td>  Compression codec used to compress the ReadRowsResponse data. Options:\n           <code>RESPONSE_COMPRESSION_CODEC_UNSPECIFIED</code>,\n           <code>RESPONSE_COMPRESSION_CODEC_LZ4</code>\n          <br/> (Optional. Defaults to <code>RESPONSE_COMPRESSION_CODEC_UNSPECIFIED</code> which means no compression will be used)\n     </td>\n     <td>Read</td>\n   </tr>\n   <tr valign=\"top\">\n     <td><code>cacheExpirationTimeInMinutes</code>\n     </td>\n     <td>  The expiration time of the in-memory cache storing query information.\n          <br/> To disable caching, set the value to 0.\n          <br/> (Optional. Defaults to 15 minutes)\n     </td>\n     <td>Read</td>\n   </tr>\n   <tr valign=\"top\">\n     <td><code>enableModeCheckForSchemaFields</code>\n     </td>\n     <td>  Checks the mode of every field in destination schema to be equal to the mode in corresponding source field schema, during DIRECT write.\n          <br/> Default value is true i.e., the check is done by default. If set to false the mode check is ignored.\n     </td>\n     <td>Write</td>\n  </tr>\n     <td><code>enableListInference</code>\n     </td>\n     <td>  Indicates whether to use schema inference specifically when the mode is Parquet (https://cloud.google.com/bigquery/docs/reference/rest/v2/tables#parquetoptions).\n        <br/> Defaults to false.\n        <br/>\n     </td>\n     <td>Write</td>\n   </tr>\n  <tr>\n    <td><code>bqChannelPoolSize</code></td>\n    <td>  The (fixed) size of the gRPC channel pool created by the BigQueryReadClient.\n        <br/>For optimal performance, this should be set to at least the number of cores on the cluster executors.\n    </td>\n    <td>Read</td>\n  </tr>\n   <tr>\n     <td><code>createReadSessionTimeoutInSeconds</code>\n     </td>\n     <td> The timeout in seconds to create a ReadSession when reading a table.\n          <br/> For Extremely large table this value should be increased.\n          <br/> (Optional. Defaults to 600 seconds)\n     </td>\n     <td>Read</td>\n   </tr>\n  <tr>\n     <td><code>queryJobPriority</code>\n     </td>\n     <td> Priority levels set for the job while reading data from BigQuery query. The permitted values are:\n          <ul>\n            <li><code>BATCH</code> - Query is queued and started as soon as idle resources are available, usually within a few minutes. If the query hasn't started within 3 hours, its priority is changed to <code>INTERACTIVE</code>.</li>\n            <li><code>INTERACTIVE</code> - Query is executed as soon as possible and count towards the concurrent rate limit and the daily rate limit.</li>\n          </ul>\n          For WRITE, this option will be effective when DIRECT write is used with OVERWRITE mode, where the connector overwrites the destination table using MERGE statement.\n          <br/> (Optional. Defaults to <code>INTERACTIVE</code>)\n     </td>\n     <td>Read/Write</td>\n   </tr>\n  <tr>\n     <td><code>destinationTableKmsKeyName</code>\n     </td>\n     <td>Describes the Cloud KMS encryption key that will be used to protect destination BigQuery\n         table. The BigQuery Service Account associated with your project requires access to this\n         encryption key. for further Information about using CMEK with BigQuery see\n         [here](https://cloud.google.com/bigquery/docs/customer-managed-encryption#key_resource_id).\n         <br/><b>Notice:</b> The table will be encrypted by the key only if it created by the\n         connector. A pre-existing unencrypted table won't be encrypted just by setting this option.\n         <br/> (Optional)\n     </td>\n     <td>Write</td>\n   </tr>\n  <tr>\n     <td><code>allowMapTypeConversion</code>\n     </td>\n     <td>Boolean config to disable conversion from BigQuery records to Spark MapType\n          when the record has two subfields with field names as <code>key</code> and <code>value</code>.\n          Default value is <code>true</code> which allows the conversion.\n         <br/> (Optional)\n     </td>\n     <td>Read</td>\n   </tr>\n  <tr>\n     <td><code>spark.sql.sources.partitionOverwriteMode</code>\n     </td>\n     <td>Config to specify the overwrite mode on write when the table is range/time partitioned.\n         Currently supportd two modes : <code>STATIC</code> and <code>DYNAMIC</code>. In <code>STATIC</code> mode,\n         the entire table is overwritten. In <code>DYNAMIC</code> mode, the data is overwritten by partitions of the existing table.\n         The default value is <code>STATIC</code>.\n         <br/> (Optional)\n     </td>\n     <td>Write</td>\n   </tr>\n  <tr>\n     <td><code>enableReadSessionCaching</code>\n     </td>\n     <td>Boolean config to disable read session caching. Caches BigQuery read sessions to allow for faster Spark query planning.\n          Default value is <code>true</code>.\n         <br/> (Optional)\n     </td>\n     <td>Read</td>\n   </tr>\n  <tr>\n     <td><code>readSessionCacheDurationMins</code>\n     </td>\n     <td>Config to set the read session caching duration in minutes. Only works if <code>enableReadSessionCaching</code> is <code>true</code> (default).\n          Allows specifying the duration to cache read sessions for. Maximum allowed value is <code>300</code>.\n          Default value is <code>5</code>.\n         <br/> (Optional)\n     </td>\n     <td>Read</td>\n   </tr>\n  <tr>\n     <td><code>bigQueryJobTimeoutInMinutes</code>\n     </td>\n     <td>Config to set the BigQuery job timeout in minutes.\n          Default value is <code>360</code> minutes.\n         <br/> (Optional)\n     </td>\n     <td>Read/Write</td>\n   </tr>\n  <tr>\n     <td><code>snapshotTimeMillis</code>\n     </td>\n     <td>A timestamp specified in milliseconds to use to read a table snapshot.\n          By default this is not set and the latest version of a table is read.\n         <br/> (Optional)\n     </td>\n     <td>Read</td>\n   </tr>\n  <tr>\n     <td><code>bigNumericDefaultPrecision</code>\n     </td>\n     <td>An alternative default precision for BigNumeric fields, as the BigQuery default is too wide for Spark. Values can be between 1 and 38.\n          This default is used only when the field has an unparameterized BigNumeric type.\n          Please note that there might be data loss if the actual data's precision is more than what is specified.\n         <br/> (Optional)\n     </td>\n     <td>Read/Write</td>\n   </tr>\n  <tr>\n     <td><code>bigNumericDefaultScale</code>\n     </td>\n     <td>An alternative default scale for BigNumeric fields. Values can be between 0 and 38, and less than bigNumericFieldsPrecision.\n          This default is used only when the field has an unparameterized BigNumeric type.\n          Please note that there might be data loss if the actual data's scale is more than what is specified.\n         <br/> (Optional)\n     </td>\n     <td>Read/Write</td>\n   </tr>\n  <tr>\n     <td><code>credentialsScopes</code>\n     </td>\n     <td>Replaces the scopes of the Google Credentials if the credentials type supports that.\n         If scope replacement is not supported then it does nothing.\n         <br/>The value should be a comma separated list of valid scopes.\n         <br/> (Optional)\n     </td>\n     <td>Read/Write</td>\n   </tr>\n</table>\n\nOptions can also be set outside of the code, using the `--conf` parameter of `spark-submit` or `--properties` parameter\nof the `gcloud dataproc submit spark`. In order to use this, prepend the prefix `spark.datasource.bigquery.` to any of\nthe options, for example `spark.conf.set(\"temporaryGcsBucket\", \"some-bucket\")` can also be set as\n`--conf spark.datasource.bigquery.temporaryGcsBucket=some-bucket`.\n\n### Data types\n\nWith the exception of `DATETIME` and `TIME` all BigQuery data types directed map into the corresponding Spark SQL data type. Here are all of the mappings:\n\n<!--- TODO(#2): Convert to markdown -->\n<table>\n  <tr valign=\"top\">\n   <td><strong>BigQuery Standard SQL Data Type </strong>\n   </td>\n   <td><strong>Spark SQL</strong>\n<p>\n<strong>Data Type</strong>\n   </td>\n   <td><strong>Notes</strong>\n   </td>\n  </tr>\n  <tr valign=\"top\">\n   <td><strong><code>BOOL</code></strong>\n   </td>\n   <td><strong><code>BooleanType</code></strong>\n   </td>\n   <td>\n   </td>\n  </tr>\n  <tr valign=\"top\">\n   <td><strong><code>INT64</code></strong>\n   </td>\n   <td><strong><code>LongType</code></strong>\n   </td>\n   <td>\n   </td>\n  </tr>\n  <tr valign=\"top\">\n   <td><strong><code>FLOAT64</code></strong>\n   </td>\n   <td><strong><code>DoubleType</code></strong>\n   </td>\n   <td>\n   </td>\n  </tr>\n  <tr valign=\"top\">\n   <td><strong><code>NUMERIC</code></strong>\n   </td>\n   <td><strong><code>DecimalType</code></strong>\n   </td>\n   <td>\n     Please refer to <a href=\"#numeric-and-bignumeric-support\">Numeric and BigNumeric support</a>\n   </td>\n  </tr>\n  <tr valign=\"top\">\n     <td><strong><code>BIGNUMERIC</code></strong>\n     </td>\n     <td><strong><code>DecimalType</code></strong>\n     </td>\n     <td>\n       Please refer to <a href=\"#numeric-and-bignumeric-support\">Numeric and BigNumeric support</a>\n     </td>\n    </tr>\n  <tr valign=\"top\">\n   <td><strong><code>STRING</code></strong>\n   </td>\n   <td><strong><code>StringType</code></strong>\n   </td>\n   <td>\n   </td>\n  </tr>\n  <tr valign=\"top\">\n   <td><strong><code>BYTES</code></strong>\n   </td>\n   <td><strong><code>BinaryType</code></strong>\n   </td>\n   <td>\n   </td>\n  </tr>\n  <tr valign=\"top\">\n   <td><strong><code>STRUCT</code></strong>\n   </td>\n   <td><strong><code>StructType</code></strong>\n   </td>\n   <td>\n   </td>\n  </tr>\n  <tr valign=\"top\">\n   <td><strong><code>ARRAY</code></strong>\n   </td>\n   <td><strong><code>ArrayType</code></strong>\n   </td>\n   <td>\n   </td>\n  </tr>\n  <tr valign=\"top\">\n   <td><strong><code>TIMESTAMP</code></strong>\n   </td>\n   <td><strong><code>TimestampType</code></strong>\n   </td>\n   <td>\n   </td>\n  </tr>\n  <tr valign=\"top\">\n   <td><strong><code>DATE</code></strong>\n   </td>\n   <td><strong><code>DateType</code></strong>\n   </td>\n   <td>\n   </td>\n  </tr>\n  <tr valign=\"top\">\n   <td><strong><code>DATETIME</code></strong>\n   </td>\n   <td><strong><code>StringType</code>, </strong><strong><code>TimestampNTZType</code>*</strong>\n   </td>\n   <td>Spark has no DATETIME type.\n    <p>\n    Spark string can be written to an existing BQ DATETIME column provided it is in the <a href=\"https://cloud.google.com/bigquery/docs/reference/standard-sql/data-types#canonical_format_for_datetime_literals\">format for BQ DATETIME literals</a>.\n    <p>\n    * For Spark 3.4+, BQ DATETIME is read as Spark's TimestampNTZ type i.e. java LocalDateTime\n   </td>\n  </tr>\n  <tr valign=\"top\">\n   <td><strong><code>TIME</code></strong>\n   </td>\n   <td><strong><code>LongType</code>, <strong><code>StringType</code>*</strong>\n   </td>\n   <td>Spark has no TIME type. The generated longs, which indicate <a href=\"https://avro.apache.org/docs/1.8.0/spec.html#Time+%2528microsecond+precision%2529\">microseconds since midnight</a> can be safely cast to TimestampType, but this causes the date to be inferred as the current day. Thus times are left as longs and user can cast if they like.\n<p>\nWhen casting to Timestamp TIME have the same TimeZone issues as DATETIME\n<p>\n* Spark string can be written to an existing BQ TIME column provided it is in the <a href=\"https://cloud.google.com/bigquery/docs/reference/standard-sql/data-types#canonical_format_for_time_literals\">format for BQ TIME literals</a>.\n   </td>\n  </tr>\n  <tr valign=\"top\">\n   <td><strong><code>JSON</code></strong>\n   </td>\n   <td><strong><code>StringType</code></strong>\n   </td>\n   <td>Spark has no JSON type. The values are read as String. In order to write JSON back to BigQuery, the following conditions are <b>REQUIRED</b>:\n       <ul>\n          <li>Use the <code>INDIRECT</code> write method</li>\n          <li>Use the <code>AVRO</code> intermediate format</li>\n          <li>The DataFrame field <b>MUST</b> be of type <code>String</code> and has an entry of sqlType=JSON in its metadata</li>\n       </ul>\n   </td>\n  </tr>\n  <tr valign=\"top\" id=\"datatype:map\">\n   <td><strong><code>ARRAY&lt;STRUCT&lt;key,value&gt;&gt;</code></strong>\n   </td>\n   <td><strong><code>MapType</code></strong>\n   </td>\n   <td>BigQuery has no MAP type, therefore similar to other conversions like Apache Avro and BigQuery Load jobs, the connector converts a Spark Map to a REPEATED STRUCT&lt;key,value&gt;.\n       This means that while writing and reading of maps is available, running a SQL on BigQuery that uses map semantics is not supported.\n       To refer to the map's values using BigQuery SQL, please check the <a href=\"https://cloud.google.com/bigquery/docs/reference/standard-sql/arrays\">BigQuery documentation</a>.\n       Due to these incompatibilities, a few restrictions apply:\n       <ul>\n          <li>Keys can be Strings only</li>\n          <li>Values can be simple types (not structs)</li>\n          <li>For INDIRECT write, use the <code>AVRO</code> intermediate format. DIRECT write is supported as well</li>\n       </ul>\n   </td>\n  </tr>\n</table>\n\n#### Spark ML Data Types Support\n\nThe Spark ML [Vector](https://spark.apache.org/docs/2.4.5/api/python/pyspark.ml.html#pyspark.ml.linalg.Vector) and\n[Matrix](https://spark.apache.org/docs/2.4.5/api/python/pyspark.ml.html#pyspark.ml.linalg.Matrix) are supported,\nincluding their dense and sparse versions. The data is saved as a BigQuery RECORD. Notice that a suffix is added to\nthe field's description which includes the spark type of the field.\n\nIn order to write those types to BigQuery, use the ORC or Avro intermediate format, and have them as column of the\nRow (i.e. not a field in a struct).\n\n#### Numeric and BigNumeric support\nBigQuery's BigNumeric has a precision of 76.76 (the 77th digit is partial) and scale of 38. Since\nthis precision and scale is beyond spark's DecimalType (38 scale and 38 precision) support, it means\nthat BigNumeric fields with precision larger than 38 cannot be used. Once this Spark limitation will\nbe updated the connector will be updated accordingly.\n\nThe Spark Decimal/BigQuery Numeric conversion tries to preserve the parameterization of the type, i.e\n`NUMERIC(10,2)` will be converted to `Decimal(10,2)` and vice versa. Notice however that there are\ncases where [the parameters are lost](https://cloud.google.com/bigquery/docs/reference/standard-sql/data-types#parameterized_data_types).\nThis means that the parameters will be reverted to the defaults - NUMERIC (38,9) and BIGNUMERIC(76,38).\nThis means that at the moment, BigNumeric read is supported only from a standard table, but not from\nBigQuery view or when [reading data from a BigQuery query](#reading-data-from-a-bigquery-query).\n\n### Filtering\n\nThe connector automatically computes column and pushdown filters the DataFrame's `SELECT` statement e.g.\n\n```\nspark.read.bigquery(\"bigquery-public-data:samples.shakespeare\")\n  .select(\"word\")\n  .where(\"word = 'Hamlet' or word = 'Claudius'\")\n  .collect()\n```\n\n\nfilters to the column `word`  and pushed down the predicate filter `word = 'hamlet' or word = 'Claudius'`.\n\nIf you do not wish to make multiple read requests to BigQuery, you can cache the DataFrame before filtering e.g.:\n\n```\nval cachedDF = spark.read.bigquery(\"bigquery-public-data:samples.shakespeare\").cache()\nval rows = cachedDF.select(\"word\")\n  .where(\"word = 'Hamlet'\")\n  .collect()\n// All of the table was cached and this doesn't require an API call\nval otherRows = cachedDF.select(\"word_count\")\n  .where(\"word = 'Romeo'\")\n  .collect()\n```\n\nYou can also manually specify the `filter` option, which will override automatic pushdown and Spark will do the rest of the filtering in the client.\n\n### Partitioned Tables\n\nThe pseudo columns \\_PARTITIONDATE and \\_PARTITIONTIME are not part of the table schema. Therefore in order to query by the partitions of [partitioned tables](https://cloud.google.com/bigquery/docs/partitioned-tables) do not use the where() method shown above. Instead, add a filter option in the following manner:\n\n```\nval df = spark.read.format(\"bigquery\")\n  .option(\"filter\", \"_PARTITIONDATE > '2019-01-01'\")\n  ...\n  .load(TABLE)\n```\n\n### Configuring Partitioning\n\nBy default, the connector calculates the requested `maxParallelism` as the larger of `preferredMinParallelism` (which defaults to 3 times the application's default parallelism) and 20,000. BigQuery may limit the number of partitions based on server constraints.\nBoth <code>[maxParallelism](#properties)</code> and <code>[preferredMinParallelism](#properties)</code> can be configured explicitly to control the number of partitions.\n\n## Tagging BigQuery Resources\n\nIn order to support tracking the usage of BigQuery resources the connectors\noffers the following options to tag BigQuery resources:\n\n### Adding BigQuery Jobs Labels\n\nThe connector can launch BigQuery load and query jobs. Adding labels to the jobs\nis done in the following manner:\n```\nspark.conf.set(\"bigQueryJobLabel.cost_center\", \"analytics\")\nspark.conf.set(\"bigQueryJobLabel.usage\", \"nightly_etl\")\n```\nThis will create labels `cost_center`=`analytics` and `usage`=`nightly_etl`.\n\n### Adding BigQuery Storage Trace ID\n\nUsed to annotate the read and write sessions. The trace ID is of the format\n`Spark:ApplicationName:JobID`. This is an opt-in option, and to use it the user\nneed to set the `traceApplicationName` property. JobID is auto generated by the\nDataproc job ID, with a fallback to the Spark application ID (such as\n`application_1648082975639_0001`). The Job ID can be overridden by setting the\n`traceJobId` option. Notice that the total length of the trace ID cannot be over\n256 characters.\n\n## Using in Jupyter Notebooks\n\nThe connector can be used in [Jupyter notebooks](https://jupyter.org/) even if\nit is not installed on the Spark cluster. It can be added as an external jar in\nusing the following code:\n\n**Python:**\n```python\nfrom pyspark.sql import SparkSession\nspark = SparkSession.builder \\\n  .config(\"spark.jars.packages\", \"com.google.cloud.spark:spark-bigquery-with-dependencies_2.12:${next-release-tag}\") \\\n  .getOrCreate()\ndf = spark.read.format(\"bigquery\") \\\n  .load(\"dataset.table\")\n```\n\n**Scala:**\n```scala\nval spark = SparkSession.builder\n.config(\"spark.jars.packages\", \"com.google.cloud.spark:spark-bigquery-with-dependencies_2.12:${next-release-tag}\")\n.getOrCreate()\nval df = spark.read.format(\"bigquery\")\n.load(\"dataset.table\")\n```\n\nIn case Spark cluster is using Scala 2.12 (it's optional for Spark 2.4.x,\nmandatory in 3.0.x), then the relevant package is\ncom.google.cloud.spark:spark-bigquery-with-dependencies_**2.12**:${next-release-tag}. In\norder to know which Scala version is used, please run the following code:\n\n**Python:**\n```python\nspark.sparkContext._jvm.scala.util.Properties.versionString()\n```\n\n**Scala:**\n```python\nscala.util.Properties.versionString\n```\n## Compiling against the connector\n\nUnless you wish to use the implicit Scala API `spark.read.bigquery(\"TABLE_ID\")`, there is no need to compile against the connector.\n\nTo include the connector in your project:\n\n### Maven\n\n```xml\n<dependency>\n  <groupId>com.google.cloud.spark</groupId>\n  <artifactId>spark-bigquery-with-dependencies_${scala.version}</artifactId>\n  <version>${next-release-tag}</version>\n</dependency>\n```\n\n### SBT\n\n```sbt\nlibraryDependencies += \"com.google.cloud.spark\" %% \"spark-bigquery-with-dependencies\" % \"${next-release-tag}\"\n```\n\n### Connector metrics and how to view them\n\nSpark populates a lot of metrics which can be found by the end user in the spark history page. But all these metrics are spark related which are implicitly collected without any change from the connector.\nBut there are few metrics which are populated from the BigQuery and currently are visible in the application logs which can be read in the driver/executor logs.\n\nFrom Spark 3.2 onwards, spark has provided the API to expose custom metrics in the spark UI page https://spark.apache.org/docs/3.2.0/api/java/org/apache/spark/sql/connector/metric/CustomMetric.html\n\nCurrently, using this API, connector exposes the following bigquery metrics during read\n<table id=\"metricstable\">\n<style>\ntable#metricstable td, table th\n{\nword-break:break-word\n}\n</style>\n  <tr valign=\"top\">\n   <th style=\"min-width:240px\">Metric Name</th>\n   <th style=\"min-width:240px\">Description</th>\n  </tr>\n  <tr valign=\"top\">\n   <td><code>bytes read</code></td>\n   <td>number of BigQuery bytes read</td>\n  </tr>\n  <tr valign=\"top\">\n   <td><code>rows read</code></td>\n   <td>number of BigQuery rows read</td>\n  </tr>\n  <tr valign=\"top\">\n   <td><code>scan time</code></td>\n   <td>the amount of time spent between read rows response requested to obtained across all the executors, in milliseconds.</td>\n  </tr>\n  <tr valign=\"top\">\n   <td><code>parse time</code></td>\n   <td>the amount of time spent for parsing the rows read across all the executors, in milliseconds.</td>\n  </tr>\n  <tr valign=\"top\">\n   <td><code>spark time</code></td>\n   <td>the amount of time spent in spark to process the queries (i.e., apart from scanning and parsing), across all the executors, in milliseconds.</td>\n  </tr>\n</table>\n\n\n**Note:** To use the metrics in the Spark UI page, you need to make sure the `spark-bigquery-metrics-${next-release-tag}.jar` is the class path before starting the history-server and the connector version is `spark-3.2` or above.\n\n## FAQ\n\n### What is the Pricing for the Storage API?\n\nSee the [BigQuery pricing documentation](https://cloud.google.com/bigquery/pricing#storage-api).\n\n### I have very few partitions\n\nYou can manually set the number of partitions with the `maxParallelism` property. BigQuery may provide fewer partitions than you ask for. See [Configuring Partitioning](#configuring-partitioning).\n\nYou can also always repartition after reading in Spark.\n\n### I get quota exceeded errors while writing\n\nIf there are too many partitions the CreateWriteStream or Throughput [quotas](https://cloud.google.com/bigquery/quotas#write-api-limits)\nmay be exceeded. This occurs because while the data within each partition is processed serially, independent\npartitions may be processed in parallel on different nodes within the spark cluster. Generally, to ensure maximum\nsustained throughput you should file a quota increase request. However, you can also manually reduce the number of\npartitions being written by calling <code>coalesce</code> on the DataFrame to mitigate this problem.\n\n```\ndesiredPartitionCount = 5\ndfNew = df.coalesce(desiredPartitionCount)\ndfNew.write\n```\n\nA rule of thumb is to have a single partition handle at least 1GB of data.\n\nAlso note that a job running with the `writeAtLeastOnce` property turned on will not encounter CreateWriteStream\nquota errors.\n\n### How do I authenticate outside GCE / Dataproc?\n\nThe connector needs an instance of a GoogleCredentials in order to connect to the BigQuery APIs. There are multiple\noptions to provide it:\n\n* The default is to load the JSON key from the  `GOOGLE_APPLICATION_CREDENTIALS` environment variable, as described\n  [here](https://cloud.google.com/docs/authentication/getting-started).\n* In case the environment variable cannot be changed, the credentials file can be configured as\n  as a spark option. The file should reside on the same path on all the nodes of the cluster.\n```\n// Globally\nspark.conf.set(\"credentialsFile\", \"</path/to/key/file>\")\n// Per read/Write\nspark.read.format(\"bigquery\").option(\"credentialsFile\", \"</path/to/key/file>\")\n```\n* Credentials can also be provided explicitly, either as a parameter or from Spark runtime configuration.\n  They should be passed in as a base64-encoded string directly.\n```\n// Globally\nspark.conf.set(\"credentials\", \"<SERVICE_ACCOUNT_JSON_IN_BASE64>\")\n// Per read/Write\nspark.read.format(\"bigquery\").option(\"credentials\", \"<SERVICE_ACCOUNT_JSON_IN_BASE64>\")\n```\n* In cases where the user has an internal service providing the Google AccessToken, a custom implementation\n  can be done, creating only the AccessToken and providing its TTL. Token refresh will re-generate a new token. In order\n  to use this, implement the\n  [com.google.cloud.bigquery.connector.common.AccessTokenProvider](https://github.com/GoogleCloudDataproc/spark-bigquery-connector/tree/master/bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/AccessTokenProvider.java)\n  interface. The fully qualified class name of the implementation should be provided in the `gcpAccessTokenProvider`\n  option. `AccessTokenProvider` must be implemented in Java or other JVM language such as Scala or Kotlin. It must\n  either have a no-arg constructor or a constructor accepting a single `java.util.String` argument. This configuration\n  parameter can be supplied using the `gcpAccessTokenProviderConfig` option. If this is not provided then the no-arg\n  constructor wil be called. The jar containing the implementation should be on the cluster's classpath.\n```\n// Globally\nspark.conf.set(\"gcpAccessTokenProvider\", \"com.example.ExampleAccessTokenProvider\")\n// Per read/Write\nspark.read.format(\"bigquery\").option(\"gcpAccessTokenProvider\", \"com.example.ExampleAccessTokenProvider\")\n```\n* Service account impersonation can be configured for a specific username and a group name, or\n  for all users by default using below properties:\n\n  - `gcpImpersonationServiceAccountForUser_<USER_NAME>` (not set by default)\n\n    The service account impersonation for a specific user.\n\n  - `gcpImpersonationServiceAccountForGroup_<GROUP_NAME>` (not set by default)\n\n    The service account impersonation for a specific group.\n\n  - `gcpImpersonationServiceAccount` (not set by default)\n\n    Default service account impersonation for all users.\n\n  If any of the above properties are set then the service account specified will be impersonated by\n  generating a short-lived credentials when accessing BigQuery.\n\n  If more than one property is set then the service account associated with the username will take\n  precedence over the service account associated with the group name for a matching user and group,\n  which in turn will take precedence over default service account impersonation.\n\n* For a simpler application, where access token refresh is not required, another alternative is to pass the access token\n  as the `gcpAccessToken` configuration option. You can get the access token by running\n  `gcloud auth application-default print-access-token`.\n```\n// Globally\nspark.conf.set(\"gcpAccessToken\", \"<access-token>\")\n// Per read/Write\nspark.read.format(\"bigquery\").option(\"gcpAccessToken\", \"<acccess-token>\")\n```\n\n**Important:** The `CredentialsProvider` and  `AccessTokenProvider` need to be implemented in Java or\nother JVM language such as Scala or Kotlin. The jar containing the implementation should be on the cluster's classpath.\n\n**Notice:** Only one of the above options should be provided.\n\n### How do I connect to GCP/BigQuery via Proxy?\n\nTo connect to a forward proxy and to authenticate the user credentials, configure the following options.\n\n`proxyAddress`: Address of the proxy server. The proxy must be an HTTP proxy and address should be in the `host:port`\nformat.\n\n`proxyUsername`: The userName used to connect to the proxy.\n\n`proxyPassword`: The password used to connect to the proxy.\n\n```\nval df = spark.read.format(\"bigquery\")\n  .option(\"proxyAddress\", \"http://my-proxy:1234\")\n  .option(\"proxyUsername\", \"my-username\")\n  .option(\"proxyPassword\", \"my-password\")\n  .load(\"some-table\")\n```\n\nThe same proxy parameters can also be set globally using Spark's RuntimeConfig like this:\n\n```\nspark.conf.set(\"proxyAddress\", \"http://my-proxy:1234\")\nspark.conf.set(\"proxyUsername\", \"my-username\")\nspark.conf.set(\"proxyPassword\", \"my-password\")\n\nval df = spark.read.format(\"bigquery\")\n  .load(\"some-table\")\n```\n\nYou can set the following in the hadoop configuration as well.\n\n`fs.gs.proxy.address`(similar to \"proxyAddress\"), `fs.gs.proxy.username`(similar to \"proxyUsername\") and\n`fs.gs.proxy.password`(similar to \"proxyPassword\").\n\nIf the same parameter is set at multiple places the order of priority is as follows:\n\noption(\"key\", \"value\") > spark.conf > hadoop configuration\n"
  },
  {
    "path": "README.md",
    "content": "# Apache Spark SQL connector for Google BigQuery\n\n<!--- TODO(#2): split out into more documents. -->\n\nThe connector supports reading [Google BigQuery](https://cloud.google.com/bigquery/) tables into Spark's DataFrames, and writing DataFrames back into BigQuery.\nThis is done by using the [Spark SQL Data Source API](https://spark.apache.org/docs/latest/sql-programming-guide.html#data-sources) to communicate with BigQuery.\n\n## BigQuery Storage API\nThe [Storage API](https://cloud.google.com/bigquery/docs/reference/storage) streams data in parallel directly from BigQuery via gRPC without using Google Cloud Storage as an intermediary.\n\nIt has a number of advantages over using the previous export-based read flow that should generally lead to better read performance:\n\n### Direct Streaming\n\nIt does not leave any temporary files in Google Cloud Storage. Rows are read directly from BigQuery servers using the Arrow or Avro wire formats.\n\n### Filtering\n\nThe new API allows column and predicate filtering to only read the data you are interested in.\n\n#### Column Filtering\n\nSince BigQuery is [backed by a columnar datastore](https://cloud.google.com/blog/big-data/2016/04/inside-capacitor-bigquerys-next-generation-columnar-storage-format), it can efficiently stream data without reading all columns.\n\n#### Predicate Filtering\n\nThe Storage API supports arbitrary pushdown of predicate filters. Connector version 0.8.0-beta and above support pushdown of arbitrary filters to Bigquery.\n\nThere is a known issue in Spark that does not allow pushdown of filters on nested fields. For example - filters like `address.city = \"Sunnyvale\"` will not get pushdown to Bigquery.\n\n### Dynamic Sharding\n\nThe API rebalances records between readers until they all complete. This means that all Map phases will finish nearly concurrently. See this blog article on [how dynamic sharding is similarly used in Google Cloud Dataflow](https://cloud.google.com/blog/products/gcp/no-shard-left-behind-dynamic-work-rebalancing-in-google-cloud-dataflow).\n\nSee [Configuring Partitioning](#configuring-partitioning) for more details.\n\n## Requirements\n\n### Enable the BigQuery Storage API\n\nFollow [these instructions](https://cloud.google.com/bigquery/docs/reference/storage/#enabling_the_api).\n\n### Create a Google Cloud Dataproc cluster (Optional)\n\nIf you do not have an Apache Spark environment you can create a Cloud Dataproc cluster with pre-configured auth. The following examples assume you are using Cloud Dataproc, but you can use `spark-submit` on any cluster.\n\nAny Dataproc cluster using the API needs the 'bigquery'  or 'cloud-platform' scopes. Dataproc clusters have the 'bigquery' scope by default, so most clusters in enabled projects should work by default e.g.\n\n```\nMY_CLUSTER=...\ngcloud dataproc clusters create \"$MY_CLUSTER\"\n```\n\n## Downloading and Using the Connector\n\nThe latest version of the connector is publicly available in the following links:\n\n| version    | Link                                                                                                                                                                                                                   |\n|------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| Spark 4.1  | `gs://spark-lib/bigquery/spark-4.1-bigquery-0.44.1-preview.jar`([HTTP link](https://storage.googleapis.com/spark-lib/bigquery/spark-4.1-bigquery-0.44.1-preview.jar))                        |\n| Spark 4.0  | `gs://spark-lib/bigquery/spark-4.0-bigquery-0.44.1.jar`([HTTP link](https://storage.googleapis.com/spark-lib/bigquery/spark-4.0-bigquery-0.44.1.jar))                                        |\n| Spark 3.5  | `gs://spark-lib/bigquery/spark-3.5-bigquery-0.44.1.jar`([HTTP link](https://storage.googleapis.com/spark-lib/bigquery/spark-3.5-bigquery-0.44.1.jar))                                        |\n| Spark 3.4  | `gs://spark-lib/bigquery/spark-3.4-bigquery-0.44.1.jar`([HTTP link](https://storage.googleapis.com/spark-lib/bigquery/spark-3.4-bigquery-0.44.1.jar))                                        |\n| Spark 3.3  | `gs://spark-lib/bigquery/spark-3.3-bigquery-0.44.1.jar`([HTTP link](https://storage.googleapis.com/spark-lib/bigquery/spark-3.3-bigquery-0.44.1.jar))                                        |\n| Spark 3.2  | `gs://spark-lib/bigquery/spark-3.2-bigquery-0.44.1.jar`([HTTP link](https://storage.googleapis.com/spark-lib/bigquery/spark-3.2-bigquery-0.44.1.jar))                                        |\n| Spark 3.1  | `gs://spark-lib/bigquery/spark-3.1-bigquery-0.44.1.jar`([HTTP link](https://storage.googleapis.com/spark-lib/bigquery/spark-3.1-bigquery-0.44.1.jar))                                        |\n| Spark 2.4  | `gs://spark-lib/bigquery/spark-2.4-bigquery-0.37.0.jar`([HTTP link](https://storage.googleapis.com/spark-lib/bigquery/spark-2.4-bigquery-0.37.0.jar))                                                                  |\n| Scala 2.13 | `gs://spark-lib/bigquery/spark-bigquery-with-dependencies_2.13-0.44.1.jar` ([HTTP link](https://storage.googleapis.com/spark-lib/bigquery/spark-bigquery-with-dependencies_2.13-0.44.1.jar)) |\n| Scala 2.12 | `gs://spark-lib/bigquery/spark-bigquery-with-dependencies_2.12-0.44.1.jar` ([HTTP link](https://storage.googleapis.com/spark-lib/bigquery/spark-bigquery-with-dependencies_2.12-0.44.1.jar)) |\n| Scala 2.11 | `gs://spark-lib/bigquery/spark-bigquery-with-dependencies_2.11-0.29.0.jar` ([HTTP link](https://storage.googleapis.com/spark-lib/bigquery/spark-bigquery-with-dependencies_2.11-0.29.0.jar))                           |\n\nThe first six versions are Java based connectors targeting Spark 2.4/3.1/3.2/3.3/3.4/3.5 of all Scala versions built on the new\nData Source APIs (Data Source API v2) of Spark.\n\nThe final two connectors are Scala based connectors, please use the jar relevant to your Spark installation as outlined\nbelow.\n\n### Connector to Spark Compatibility Matrix\n| Connector \\ Spark                     | 2.3     | 2.4     | 3.0     | 3.1     | 3.2     | 3.3     |3.4      | 3.5     |\n|---------------------------------------|---------|---------|---------|---------|---------|---------|---------|---------|\n| spark-3.5-bigquery                    |         |         |         |         |         |         |         | &check; |\n| spark-3.4-bigquery                    |         |         |         |         |         |         | &check; | &check; |\n| spark-3.3-bigquery                    |         |         |         |         |         | &check; | &check; | &check; |\n| spark-3.2-bigquery                    |         |         |         |         | &check; | &check; | &check; | &check; |\n| spark-3.1-bigquery                    |         |         |         | &check; | &check; | &check; | &check; | &check; |\n| spark-2.4-bigquery                    |         | &check; |         |         |         |         |         |         |\n| spark-bigquery-with-dependencies_2.13 |         |         |         |         | &check; | &check; | &check; | &check; |\n| spark-bigquery-with-dependencies_2.12 |         | &check; | &check; | &check; | &check; | &check; | &check; | &check; |\n| spark-bigquery-with-dependencies_2.11 | &check; | &check; |         |         |         |         |         |         |\n\n### Connector to Dataproc Image Compatibility Matrix\n| Connector \\ Dataproc Image            | 1.3     | 1.4     | 1.5     | 2.0     | 2.1     | 2.2     | Serverless<br>Image 1.0 | Serverless<br>Image 2.0 | Serverless<br>Image 2.1 | Serverless<br>Image 2.2 |\n|---------------------------------------|---------|---------|---------|---------|---------|---------|-------------------------|-------------------------|-------------------------|-------------------------|\n| spark-3.5-bigquery                    |         |         |         |         |         | &check; |                         |                         |                         | &check;                 |\n| spark-3.4-bigquery                    |         |         |         |         |         | &check; |                         |                         | &check;                 | &check;                 |\n| spark-3.3-bigquery                    |         |         |         |         | &check; | &check; | &check;                 | &check;                 | &check;                 | &check;                 |\n| spark-3.2-bigquery                    |         |         |         |         | &check; | &check; | &check;                 | &check;                 | &check;                 | &check;                 |\n| spark-3.1-bigquery                    |         |         |         | &check; | &check; | &check; | &check;                 | &check;                 | &check;                 | &check;                 |\n| spark-2.4-bigquery                    |         | &check; | &check; |         |         |         |                         |                         |                         |                         |\n| spark-bigquery-with-dependencies_2.13 |         |         |         |         |         |         |                         | &check;                 | &check;                 | &check;                 |\n| spark-bigquery-with-dependencies_2.12 |         |         | &check; | &check; | &check; | &check; | &check;                 |                         |                         |                         |\n| spark-bigquery-with-dependencies_2.11 | &check; | &check; |         |         |         |         |                         |                         |                         |                         |\n\n### Maven / Ivy Package Usage\nThe connector is also available from the\n[Maven Central](https://repo1.maven.org/maven2/com/google/cloud/spark/)\nrepository. It can be used using the `--packages` option or the\n`spark.jars.packages` configuration property. Use the following value\n\n| version    | Connector Artifact                                                                 |\n|------------|------------------------------------------------------------------------------------|\n| Spark 4.1  | `com.google.cloud.spark:spark-4.1-bigquery:0.44.1-preview`            |\n| Spark 4.0  | `com.google.cloud.spark:spark-4.0-bigquery:0.44.1`                    |\n| Spark 3.5  | `com.google.cloud.spark:spark-3.5-bigquery:0.44.1`                    |\n| Spark 3.4  | `com.google.cloud.spark:spark-3.4-bigquery:0.44.1`                    |\n| Spark 3.3  | `com.google.cloud.spark:spark-3.3-bigquery:0.44.1`                    |\n| Spark 3.2  | `com.google.cloud.spark:spark-3.2-bigquery:0.44.1`                    |\n| Spark 3.1  | `com.google.cloud.spark:spark-3.1-bigquery:0.44.1`                    |\n| Spark 2.4  | `com.google.cloud.spark:spark-2.4-bigquery:0.37.0`                                 |\n| Scala 2.13 | `com.google.cloud.spark:spark-bigquery-with-dependencies_2.13:0.44.1` |\n| Scala 2.12 | `com.google.cloud.spark:spark-bigquery-with-dependencies_2.12:0.44.1` |\n| Scala 2.11 | `com.google.cloud.spark:spark-bigquery-with-dependencies_2.11:0.29.0`              |\n\n### Specifying the  Spark BigQuery connector version in a Dataproc cluster\n\nDataproc clusters created using image 2.1 and above, or batches using the Dataproc serverless service come with built-in Spark BigQuery connector.\nUsing the standard `--jars` or `--packages` (or alternatively, the `spark.jars`/`spark.jars.packages` configuration) won't help in this case as the built-in connector takes precedence.\n\nTo use another version than the built-in one, please do one of the following:\n\n* For Dataproc clusters, using image 2.1 and above, add the following flag on cluster creation to upgrade the version `--metadata SPARK_BQ_CONNECTOR_VERSION=0.44.1`, or `--metadata SPARK_BQ_CONNECTOR_URL=gs://spark-lib/bigquery/spark-3.3-bigquery-0.44.1.jar` to create the cluster with a different jar. The URL can point to any valid connector JAR for the cluster's Spark version.\n* For Dataproc serverless batches, add the following property on batch creation to upgrade the version: `--properties dataproc.sparkBqConnector.version=0.44.1`, or `--properties dataproc.sparkBqConnector.uri=gs://spark-lib/bigquery/spark-3.3-bigquery-0.44.1.jar` to create the batch with a different jar. The URL can point to any valid connector JAR for the runtime's Spark version.\n\n## Hello World Example\n\nYou can run a simple PySpark wordcount against the API without compilation by running\n\n**Dataproc image 1.5 and above**\n\n```\ngcloud dataproc jobs submit pyspark --cluster \"$MY_CLUSTER\" \\\n  --jars gs://spark-lib/bigquery/spark-bigquery-with-dependencies_2.12-0.44.1.jar \\\n  examples/python/shakespeare.py\n```\n\n**Dataproc image 1.4 and below**\n\n```\ngcloud dataproc jobs submit pyspark --cluster \"$MY_CLUSTER\" \\\n  --jars gs://spark-lib/bigquery/spark-bigquery-with-dependencies_2.11-0.29.0.jar \\\n  examples/python/shakespeare.py\n```\n\n## Example Codelab ##\nhttps://codelabs.developers.google.com/codelabs/pyspark-bigquery\n\n## Usage\n\nThe connector uses the cross language [Spark SQL Data Source API](https://spark.apache.org/docs/latest/sql-programming-guide.html#data-sources):\n\n### Reading data from a BigQuery table\n\n```\ndf = spark.read \\\n  .format(\"bigquery\") \\\n  .load(\"bigquery-public-data.samples.shakespeare\")\n```\n\nor the Scala only implicit API:\n\n```\nimport com.google.cloud.spark.bigquery._\nval df = spark.read.bigquery(\"bigquery-public-data.samples.shakespeare\")\n```\n\nThe connector supports reading from tables that contain spaces in their names.\n\n**Note on ambiguous table names**: If a table name contains both spaces and a SQL keyword (e.g., \"from\", \"where\", \"join\"), it may be misinterpreted as a SQL query. To resolve this ambiguity, quote the table identifier with backticks \\`. For example:\n\n```\ndf = spark.read \\\n  .format(\"bigquery\") \\\n  .load(\"`my_project.my_dataset.orders from 2023`\")\n```\n\nFor more information, see additional code samples in\n[Python](examples/python/shakespeare.py),\n[Scala](spark-bigquery-dsv1/src/main/scala/com/google/cloud/spark/bigquery/examples/Shakespeare.scala)\nand\n[Java](spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/examples/JavaShakespeare.java).\n\n### Reading data from a BigQuery query\n\nThe connector allows you to run any\n[Standard SQL](https://cloud.google.com/bigquery/docs/reference/standard-sql/query-syntax)\nSELECT query on BigQuery and fetch its results directly to a Spark Dataframe.\nThis is easily done as described in the following code sample:\n```\nspark.conf.set(\"viewsEnabled\",\"true\")\n\nsql = \"\"\"\n  SELECT tag, COUNT(*) c\n  FROM (\n    SELECT SPLIT(tags, '|') tags\n    FROM `bigquery-public-data.stackoverflow.posts_questions` a\n    WHERE EXTRACT(YEAR FROM creation_date)>=2014\n  ), UNNEST(tags) tag\n  GROUP BY 1\n  ORDER BY 2 DESC\n  LIMIT 10\n  \"\"\"\ndf = spark.read.format(\"bigquery\").load(sql)\ndf.show()\n```\nWhich yields the result\n```\n+----------+-------+\n|       tag|      c|\n+----------+-------+\n|javascript|1643617|\n|    python|1352904|\n|      java|1218220|\n|   android| 913638|\n|       php| 911806|\n|        c#| 905331|\n|      html| 769499|\n|    jquery| 608071|\n|       css| 510343|\n|       c++| 458938|\n+----------+-------+\n```\nA second option is to use the `query` option like this:\n```\ndf = spark.read.format(\"bigquery\").option(\"query\", sql).load()\n```\n\nNotice that the execution should be faster as only the result is transmitted\nover the wire. In a similar fashion the queries can include JOINs more\nefficiently then running joins on Spark or use other BigQuery features such as\n[subqueries](https://cloud.google.com/bigquery/docs/reference/standard-sql/subqueries),\n[BigQuery user defined functions](https://cloud.google.com/bigquery/docs/reference/standard-sql/user-defined-functions),\n[wildcard tables](https://cloud.google.com/bigquery/docs/reference/standard-sql/wildcard-table-reference),\n[BigQuery ML](https://cloud.google.com/bigquery-ml/docs)\nand more.\n\nIn order to use this feature the `viewsEnabled` configurations MUST be set to\n`true`. This can also be done globally as shown in the example above.\n\n**Important:** This feature is implemented by running the query on BigQuery and\nsaving the result into a temporary table, of which Spark will read the results\nfrom. This may add additional costs on your BigQuery account.\n\n### Reading From Parameterized Queries\n\nThe connector supports executing [BigQuery parameterized queries](https://cloud.google.com/bigquery/docs/parameterized-queries) using the\nstandard `spark.read.format('bigquery')` API.\n\nTo use parameterized queries:\n\n1. Provide the SQL query containing parameters using the\n   `.option(\"query\", \"SQL_STRING\")` with named (`@param`) or positional (`?`) parameters.\n2. Specify the parameter values using dedicated options:\n  * **Named Parameters:** Use options prefixed with `NamedParameters.`. The\n    parameter name follows the prefix (case-insensitive).\n    * Format: `.option(\"NamedParameters.<parameter_name>\", \"TYPE:value\")`\n    * Example: `.option(\"NamedParameters.corpus\", \"STRING:romeoandjuliet\")`\n  * **Positional Parameters:** Use options prefixed with\n    `PositionalParameters.`. The 1-based index follows the prefix.\n    * Format:\n      `.option(\"PositionalParameters.<parameter_index>\", \"TYPE:value\")`\n    * Example: `.option(\"PositionalParameters.1\", \"STRING:romeoandjuliet\")`\n\nThe `TYPE` in the `TYPE:value` string specifies the BigQuery Standard SQL data\ntype. Supported types currently include: `BOOL`, `INT64`, `FLOAT64`, `NUMERIC`,\n`STRING`, `DATE`, `DATETIME`, `JSON`, `TIME`, `GEOGRAPHY`, `TIMESTAMP`.\n\n`ARRAY` and `STRUCT` types are not supported as parameters at this time.\n\n### Reading From Views\n\nThe connector has a preliminary support for reading from\n[BigQuery views](https://cloud.google.com/bigquery/docs/views-intro). Please\nnote there are a few caveats:\n\n* BigQuery views are not materialized by default, which means that the connector\n  needs to materialize them before it can read them. This process affects the\n  read performance, even before running any `collect()` or `count()` action.\n* The materialization process can also incur additional costs to your BigQuery\n  bill.\n* Reading from views is **disabled** by default. In order to enable it,\n  either set the viewsEnabled option when reading the specific view\n  (`.option(\"viewsEnabled\", \"true\")`) or set it globally by calling\n  `spark.conf.set(\"viewsEnabled\", \"true\")`.\n\n**Notice:** Before version 0.42.1 of the connector, the following configurations\nare required:\n* By default, the materialized views are created in the same project and\n  dataset. Those can be configured by the optional `materializationProject`\n  and `materializationDataset` options, respectively. These options can also\n  be globally set by calling `spark.conf.set(...)` before reading the views.\n* As mentioned in the [BigQuery documentation](https://cloud.google.com/bigquery/docs/writing-results#temporary_and_permanent_tables),\n  the `materializationDataset` should be in same location as the view.\n\nStarting version 0.42.1 those configurations are **redundant** and are ignored.\nIt is highly recommended to upgrade to this version or a later one to enjoy\nsimpler configuration when using views or loading from queries.\n\n### Writing data to BigQuery\n\nWriting DataFrames to BigQuery can be done using two methods: Direct and Indirect.\n\n#### Direct write using the BigQuery Storage Write API\n\nIn this method the data is written directly to BigQuery using the\n[BigQuery Storage Write API](https://cloud.google.com/bigquery/docs/write-api). In order to enable this option, please\nset the `writeMethod` option to `direct`, as shown below:\n\n```\ndf.write \\\n  .format(\"bigquery\") \\\n  .option(\"writeMethod\", \"direct\") \\\n  .option(\"writeAtLeastOnce\", \"true\")\n  .save(\"dataset.table\")\n```\n\nWriting to existing partitioned tables (date partitioned, ingestion time partitioned and range\npartitioned) in APPEND save mode and OVERWRITE mode (only date and range partitioned) is fully supported by the connector and the BigQuery Storage Write\nAPI. The use of `datePartition`, `partitionField`, `partitionType`, `partitionRangeStart`, `partitionRangeEnd`, `partitionRangeInterval`\ndescribed below is not supported at this moment by the direct write method.\n\n**Important:** Please refer to the [data ingestion pricing](https://cloud.google.com/bigquery/pricing#data_ingestion_pricing)\npage regarding the BigQuery Storage Write API pricing.\n\n**Important:** Please use version 0.24.2 and above for direct writes, as previous\nversions have a bug that may cause a table deletion in certain cases.\n\n#### Indirect write\nIn this method the data is written first  to GCS, and then it is loaded it to BigQuery. A GCS bucket must be configured\nto indicate the temporary data location.\n\n```\ndf.write \\\n  .format(\"bigquery\") \\\n  .option(\"temporaryGcsBucket\",\"some-bucket\") \\\n  .save(\"dataset.table\")\n```\n\nThe data is temporarily stored using the [Apache Parquet](https://parquet.apache.org/),\n[Apache ORC](https://orc.apache.org/) or [Apache Avro](https://avro.apache.org/) formats.\n\nThe GCS bucket and the format can also be set globally using Spark's RuntimeConfig like this:\n```\nspark.conf.set(\"temporaryGcsBucket\",\"some-bucket\")\ndf.write \\\n  .format(\"bigquery\") \\\n  .save(\"dataset.table\")\n```\n\nWhen streaming a DataFrame to BigQuery, each batch is written in the same manner as a non-streaming DataFrame.\nNote that a HDFS compatible\n[checkpoint location](http://spark.apache.org/docs/latest/structured-streaming-programming-guide.html#recovering-from-failures-with-checkpointing)\n(eg: `path/to/HDFS/dir` or `gs://checkpoint-bucket/checkpointDir`) must be specified.\n\n```\ndf.writeStream \\\n  .format(\"bigquery\") \\\n  .option(\"temporaryGcsBucket\",\"some-bucket\") \\\n  .option(\"checkpointLocation\", \"some-location\") \\\n  .option(\"table\", \"dataset.table\")\n```\n\n**Important:** The connector does not configure the GCS connector, in order to avoid conflict with another GCS connector, if exists. In order to use the write capabilities of the connector, please configure the GCS connector on your cluster as explained [here](https://github.com/GoogleCloudPlatform/bigdata-interop/tree/master/gcs).\n\n#### Schema Behavior on Overwrite\n\nWhen using `SaveMode.Overwrite` (`.mode(\"overwrite\")`), the connector **preserves the existing table's schema**.\nThe data is truncated, but column types, descriptions, and policy tags are retained.\n\n```\ndf.write \\\n  .format(\"bigquery\") \\\n  .mode(\"overwrite\") \\\n  .option(\"temporaryGcsBucket\",\"some-bucket\") \\\n  .save(\"dataset.table\")\n```\n\n**Important:** If your DataFrame has a different schema than the existing table (e.g., changing a column from\n`INTEGER` to `DOUBLE`), the write will fail with a type mismatch error. To change the schema, either:\n- Drop the table before overwriting\n- Use BigQuery DDL to alter the table schema first\n\nFor some of the schema difference, the following options can work with overwrite:\nProgrammatic Relaxation: Set `.option(\"allowFieldRelaxation\", \"true\")` for nullability changes and `.option(\"allowFieldAddition\", \"true\")` for new columns.\n\nThis behavior was introduced between version 0.22.0 and 0.41.0 to prevent accidental schema drift.\n\n**Note:** This behavior applies to both the `indirect` (default) and `direct` write methods.\n\n### Running SQL on BigQuery\n\nThe connector supports Spark's [SparkSession#executeCommand](https://archive.apache.org/dist/spark/docs/3.0.0/api/java/org/apache/spark/sql/SparkSession.html#executeCommand-java.lang.String-java.lang.String-scala.collection.immutable.Map-)\nwith the Spark-X.Y-bigquery connectors. It can be used to run any arbitrary DDL/DML StandardSQL statement on BigQuery as\na query job. `SELECT` statements are not supported, as those are supported by reading from query as shown above. It can\nbe used as follows:\n```\nspark.executeCommand(\"bigquery\", sql, options)\n```\nNotice the following:\n* Notice that apart from the authentication options no other options are supported by this functionality.\n* This API is available only in the Scala/Java API. PySpark does not provide it.\n\n### Properties\n\nThe API Supports a number of options to configure the read\n\n<!--- TODO(#2): Convert to markdown -->\n<table id=\"propertytable\">\n<style>\ntable#propertytable td, table th\n{\nword-break:break-word\n}\n</style>\n  <tr valign=\"top\">\n   <th style=\"min-width:240px\">Property</th>\n   <th>Meaning</th>\n   <th style=\"min-width:80px\">Usage</th>\n  </tr>\n  <tr valign=\"top\">\n   <td><code>table</code>\n   </td>\n   <td>The BigQuery table in the format <code>[[project:]dataset.]table</code>.\n       It is recommended to use the <code>path</code> parameter of\n       <code>load()</code>/<code>save()</code> instead. This option has been\n       deprecated and will be removed in a future version.\n       <br/><strong>(Deprecated)</strong>\n   </td>\n   <td>Read/Write</td>\n  </tr>\n  <tr valign=\"top\">\n   <td><code>dataset</code>\n   </td>\n   <td>The dataset containing the table. This option should be used with\n   standard table and views, but not when loading query results.\n       <br/>(Optional unless omitted in <code>table</code>)\n   </td>\n   <td>Read/Write</td>\n  </tr>\n  <tr valign=\"top\">\n   <td><code>project</code>\n   </td>\n   <td>The Google Cloud Project ID of the table. This option should be used with\n   standard table and views, but not when loading query results.\n       <br/>(Optional. Defaults to the project of the Service Account being used)\n   </td>\n   <td>Read/Write</td>\n  </tr>\n  <tr valign=\"top\">\n   <td><code>billingProject</code>\n   </td>\n   <td>The Google Cloud Project ID to use for <strong>billing</strong> (API calls, query execution).\n       <br/>(Optional. Defaults to the project of the Service Account being used)\n   </td>\n   <td>Read/Write</td>\n  </tr>\n  <tr valign=\"top\">\n   <td><code>parentProject</code>\n   </td>\n   <td><strong>(Deprecated)</strong> Alias for <code>billingProject</code>.\n       <br/>(Optional. Defaults to the project of the Service Account being used)\n   </td>\n   <td>Read/Write</td>\n  </tr>\n  <tr valign=\"top\">\n   <td><code>location</code>\n   </td>\n   <td>The BigQuery location where the data resides (e.g. US, EU, asia-northeast1).\n       <br/>(Optional. Defaults to BigQuery default)\n   </td>\n   <td>Read/Write</td>\n  </tr>\n  <tr valign=\"top\">\n   <td><code>maxParallelism</code>\n   </td>\n   <td>The maximal number of partitions to split the data into. Actual number\n       may be less if BigQuery deems the data small enough. If there are not\n       enough executors to schedule a reader per partition, some partitions may\n       be empty.\n       <br/><b>Important:</b> The old parameter (<code>parallelism</code>) is\n            still supported but in deprecated mode. It will ve removed in\n            version 1.0 of the connector.\n       <br/>(Optional. Defaults to the larger of the preferredMinParallelism and 20,000)</a>.)\n   </td>\n   <td>Read</td>\n  </tr>\n  <tr valign=\"top\">\n   <td><code>preferredMinParallelism</code>\n   </td>\n   <td>The preferred minimal number of partitions to split the data into. Actual number\n       may be less if BigQuery deems the data small enough. If there are not\n       enough executors to schedule a reader per partition, some partitions may\n       be empty.\n       <br/>(Optional. Defaults to the smallest of 3 times the application's default parallelism\n       and maxParallelism</a>.)\n   </td>\n   <td>Read</td>\n  </tr>\n  <tr valign=\"top\">\n   <td><code>viewsEnabled</code>\n   </td>\n   <td>Enables the connector to read from views and not only tables. Please read\n       the <a href=\"#reading-from-views\">relevant section</a> before activating\n       this option.\n       <br/>(Optional. Defaults to <code>false</code>)\n   </td>\n   <td>Read</td>\n  </tr>\n  <tr valign=\"top\">\n   <td><code>readDataFormat</code>\n   </td>\n   <td>Data Format for reading from BigQuery. Options : <code>ARROW</code>, <code>AVRO</code>\n       <br/>(Optional. Defaults to <code>ARROW</code>)\n   </td>\n   <td>Read</td>\n  </tr>\n  <tr valign=\"top\">\n   <td><code>optimizedEmptyProjection</code>\n   </td>\n   <td>The connector uses an optimized empty projection (select without any\n       columns) logic, used for <code>count()</code> execution. This logic takes\n       the data directly from the table metadata or performs a much efficient\n       `SELECT COUNT(*) WHERE...` in case there is a filter. You can cancel the\n       use of this logic by setting this option to <code>false</code>.\n       <br/>(Optional, defaults to <code>true</code>)\n   </td>\n   <td>Read</td>\n  </tr>\n  <tr valign=\"top\">\n   <td><code>pushAllFilters</code>\n   </td>\n   <td>If set to <code>true</code>, the connector pushes all the filters Spark can delegate\n       to BigQuery Storage API. This reduces amount of data that needs to be sent from\n       BigQuery Storage API servers to Spark clients. This option has been\n       deprecated and will be removed in a future version.\n       <br/>(Optional, defaults to <code>true</code>)\n       <br/><strong>(Deprecated)</strong>\n   </td>\n   <td>Read</td>\n  </tr>\n  <tr valign=\"top\">\n   <td><code>bigQueryJobLabel</code>\n   </td>\n   <td>Can be used to add labels to the connector initiated query and load\n       BigQuery jobs. Multiple labels can be set.\n       <br/>(Optional)\n   </td>\n   <td>Read</td>\n  </tr>\n  <tr valign=\"top\">\n   <td><code>bigQueryTableLabel</code>\n   </td>\n   <td>Can be used to add labels to the table while writing to a table. Multiple\n       labels can be set.\n       <br/>(Optional)\n   </td>\n   <td>Write</td>\n  </tr>\n  <tr valign=\"top\">\n   <td><code>traceApplicationName</code>\n   </td>\n   <td>Application name used to trace BigQuery Storage read and write sessions.\n       Setting the application name is required to set the trace ID on the\n       sessions.\n       <br/>(Optional)\n   </td>\n   <td>Read</td>\n  </tr>\n  <tr valign=\"top\">\n   <td><code>traceJobId</code>\n   </td>\n   <td>Job ID used to trace BigQuery Storage read and write sessions.\n       <br/>(Optional, defaults to the Dataproc job ID is exists, otherwise uses\n       the Spark application ID)\n   </td>\n   <td>Read</td>\n  </tr>\n  <tr valign=\"top\">\n     <td><code>createDisposition</code>\n      </td>\n      <td>Specifies whether the job is allowed to create new tables. The permitted\n          values are:\n          <ul>\n            <li><code>CREATE_IF_NEEDED</code> - Configures the job to create the\n                table if it does not exist.</li>\n            <li><code>CREATE_NEVER</code> - Configures the job to fail if the\n                table does not exist.</li>\n          </ul>\n          This option takes place only in case Spark has decided to write data\n          to the table based on the SaveMode.\n         <br/>(Optional. Default to CREATE_IF_NEEDED).\n      </td>\n      <td>Write</td>\n   </tr>\n\n  <tr valign=\"top\">\n   <td><code>writeMethod</code>\n     </td>\n       <td>Controls the method\n       in which the data is written to BigQuery. Available values are <code>direct</code>\n       to use the BigQuery Storage Write API and <code>indirect</code> which writes the\n       data first to GCS and then triggers a BigQuery load operation. See more\n       <a href=\"#writing-data-to-bigquery\">here</a>\n       <br/>(Optional, defaults to <code>indirect</code>)\n     </td>\n   <td>Write</td>\n  </tr>\n  <tr valign=\"top\">\n   <td><code>writeAtLeastOnce</code>\n   </td>\n   <td>Guarantees that data is written to BigQuery at least once. This is a lesser\n    guarantee than exactly once. This is suitable for streaming scenarios\n    in which data is continuously being written in small batches.\n       <br/>(Optional. Defaults to <code>false</code>)\n       <br/><i>Supported only by the `DIRECT` write method and mode is <b>NOT</b> `Overwrite`.</i>\n   </td>\n   <td>Write</td>\n  </tr>\n  <tr valign=\"top\">\n   <td><code>temporaryGcsBucket</code>\n   </td>\n   <td>The GCS bucket that temporarily holds the data before it is loaded to\n       BigQuery. Required unless set in the Spark configuration\n       (<code>spark.conf.set(...)</code>).\n       <br/>Defaults to the `fs.gs.system.bucket` if exists, for example on Google Cloud Dataproc clusters, starting version 0.42.0.\n       <br/><i>Supported only by the `INDIRECT` write method.</i>\n   </td>\n   <td>Write</td>\n  </tr>\n  <tr valign=\"top\">\n   <td><code>persistentGcsBucket</code>\n   </td>\n   <td>The GCS bucket that holds the data before it is loaded to\n       BigQuery. If informed, the data won't be deleted after write data\n       into BigQuery.\n       <br/><i>Supported only by the `INDIRECT` write method.</i>\n   </td>\n   <td>Write</td>\n  </tr>\n  <tr valign=\"top\">\n   <td><code>persistentGcsPath</code>\n   </td>\n   <td>The GCS path that holds the data before it is loaded to\n       BigQuery. Used only with <code>persistentGcsBucket</code>.\n       <br/><i>Not supported by the `DIRECT` write method.</i>\n   </td>\n   <td>Write</td>\n  </tr>\n  <tr valign=\"top\">\n   <td><code>intermediateFormat</code>\n   </td>\n   <td>The format of the data before it is loaded to BigQuery, values can be\n       either \"parquet\",\"orc\" or \"avro\". In order to use the Avro format, the\n       spark-avro package must be added in runtime.\n       <br/>(Optional. Defaults to <code>parquet</code>). On write only. Supported only for the `INDIRECT` write method.\n   </td>\n   <td>Write</td>\n  </tr>\n  <tr valign=\"top\">\n   <td><code>useAvroLogicalTypes</code>\n   </td>\n   <td>When loading from Avro (`.option(\"intermediateFormat\", \"avro\")`), BigQuery uses the underlying Avro types instead of the logical types [by default](https://cloud.google.com/bigquery/docs/loading-data-cloud-storage-avro#logical_types). Supplying this option converts Avro logical types to their corresponding BigQuery data types.\n       <br/>(Optional. Defaults to <code>false</code>). On write only.\n   </td>\n   <td>Write</td>\n  </tr>\n  <tr valign=\"top\">\n   <td><code>datePartition</code>\n   </td>\n   <td>The date partition the data is going to be written to. Should be a date string\n       given in the format <code>YYYYMMDD</code>. Can be used to overwrite the data of\n\t   a single partition, like this: <code><br/>df.write.format(\"bigquery\")\n       <br/>&nbsp;&nbsp;.option(\"datePartition\", \"20220331\")\n       <br/>&nbsp;&nbsp;.mode(\"overwrite\")\n       <br/>&nbsp;&nbsp;.save(\"table\")</code>\n       <br/>(Optional). On write only.\n        <br/> Can also be used with different partition types like:\n        <br/> HOUR: <code>YYYYMMDDHH</code>\n        <br/> MONTH: <code>YYYYMM</code>\n        <br/> YEAR: <code>YYYY</code>\n        <br/><i>Not supported by the `DIRECT` write method.</i>\n   </td>\n   <td>Write</td>\n  </tr>\n  <tr valign=\"top\">\n     <td><code>partitionField</code>\n     </td>\n     <td>If this field is specified, the table is partitioned by this field.\n         <br/>For Time partitioning, specify together with the option `partitionType`.\n         <br/>For Integer-range partitioning, specify together with the 3 options: `partitionRangeStart`, `partitionRangeEnd, `partitionRangeInterval`.\n         <br/>The field must be a top-level TIMESTAMP or DATE field for Time partitioning, or INT64 for Integer-range partitioning. Its mode must be <strong>NULLABLE</strong>\n         or <strong>REQUIRED</strong>.\n         If the option is not set for a Time partitioned table, then the table will be partitioned by pseudo\n         column, referenced via either<code>'_PARTITIONTIME' as TIMESTAMP</code> type, or\n         <code>'_PARTITIONDATE' as DATE</code> type.\n         <br/>(Optional).\n         <br/><i>Not supported by the `DIRECT` write method.</i>\n     </td>\n     <td>Write</td>\n    </tr>\n   <tr valign=\"top\">\n    <td><code>partitionExpirationMs</code>\n     </td>\n     <td>Number of milliseconds for which to keep the storage for partitions in the table.\n         The storage in a partition will have an expiration time of its partition time plus this value.\n        <br/>(Optional).\n        <br/><i>Not supported by the `DIRECT` write method.</i>\n     </td>\n     <td>Write</td>\n   </tr>\n   <tr valign=\"top\">\n       <td><code>partitionType</code>\n        </td>\n        <td>Used to specify Time partitioning.\n            <br/>Supported types are: <code>HOUR, DAY, MONTH, YEAR</code>\n            <br/> This option is <b>mandatory</b> for a target table to be Time partitioned.\n            <br/>(Optional. Defaults to DAY if PartitionField is specified).\n            <br/><i>Not supported by the `DIRECT` write method.</i>\n       </td>\n        <td>Write</td>\n     </tr>\n   <tr valign=\"top\">\n       <td><code>partitionRangeStart</code>,\n           <code>partitionRangeEnd</code>,\n           <code>partitionRangeInterval</code>\n        </td>\n        <td>Used to specify Integer-range partitioning.\n            <br/>These options are <b>mandatory</b> for a target table to be Integer-range partitioned.\n            <br/>All 3 options must be specified.\n            <br/><i>Not supported by the `DIRECT` write method.</i>\n       </td>\n        <td>Write</td>\n   </tr>\n    <tr valign=\"top\">\n           <td><code>clusteredFields</code>\n            </td>\n            <td>A string of non-repeated, top level columns seperated by comma.\n               <br/>(Optional).\n            </td>\n            <td>Write</td>\n         </tr>\n   <tr valign=\"top\">\n       <td><code>allowFieldAddition</code>\n        </td>\n        <td>Adds the <a href=\"https://googleapis.dev/java/google-cloud-clients/latest/com/google/cloud/bigquery/JobInfo.SchemaUpdateOption.html#ALLOW_FIELD_ADDITION\" target=\"_blank\">ALLOW_FIELD_ADDITION</a>\n            SchemaUpdateOption to the BigQuery LoadJob. Allowed values are <code>true</code> and <code>false</code>.\n           <br/>(Optional. Default to <code>false</code>).\n           <br/><i>Supported only by the `INDIRECT` write method.</i>\n        </td>\n        <td>Write</td>\n     </tr>\n   <tr valign=\"top\">\n       <td><code>allowFieldRelaxation</code>\n        </td>\n        <td>Adds the <a href=\"https://googleapis.dev/java/google-cloud-clients/latest/com/google/cloud/bigquery/JobInfo.SchemaUpdateOption.html#ALLOW_FIELD_RELAXATION\" target=\"_blank\">ALLOW_FIELD_RELAXATION</a>\n            SchemaUpdateOption to the BigQuery LoadJob. Allowed values are <code>true</code> and <code>false</code>.\n           <br/>(Optional. Default to <code>false</code>).\n           <br/><i>Supported only by the `INDIRECT` write method.</i>\n        </td>\n        <td>Write</td>\n     </tr>\n   <tr valign=\"top\">\n     <td><code>proxyAddress</code>\n     </td>\n     <td> Address of the proxy server. The proxy must be a HTTP proxy and address should be in the `host:port` format.\n          Can be alternatively set in the Spark configuration (<code>spark.conf.set(...)</code>) or in Hadoop\n          Configuration (<code>fs.gs.proxy.address</code>).\n          <br/> (Optional. Required only if connecting to GCP via proxy.)\n     </td>\n     <td>Read/Write</td>\n   </tr>\n   <tr valign=\"top\">\n     <td><code>proxyUsername</code>\n     </td>\n     <td> The userName used to connect to the proxy. Can be alternatively set in the Spark configuration\n          (<code>spark.conf.set(...)</code>) or in Hadoop Configuration (<code>fs.gs.proxy.username</code>).\n          <br/> (Optional. Required only if connecting to GCP via proxy with authentication.)\n     </td>\n     <td>Read/Write</td>\n   </tr>\n   <tr valign=\"top\">\n     <td><code>proxyPassword</code>\n     </td>\n     <td> The password used to connect to the proxy. Can be alternatively set in the Spark configuration\n          (<code>spark.conf.set(...)</code>) or in Hadoop Configuration (<code>fs.gs.proxy.password</code>).\n          <br/> (Optional. Required only if connecting to GCP via proxy with authentication.)\n     </td>\n     <td>Read/Write</td>\n   </tr>\n   <tr valign=\"top\">\n     <td><code>httpMaxRetry</code>\n     </td>\n     <td> The maximum number of retries for the low-level HTTP requests to BigQuery. Can be alternatively set in the\n          Spark configuration (<code>spark.conf.set(\"httpMaxRetry\", ...)</code>) or in Hadoop Configuration\n          (<code>fs.gs.http.max.retry</code>).\n          <br/> (Optional. Default is 10)\n     </td>\n     <td>Read/Write</td>\n   </tr>\n   <tr valign=\"top\">\n     <td><code>httpConnectTimeout</code>\n     </td>\n     <td> The timeout in milliseconds to establish a connection with BigQuery. Can be alternatively set in the\n          Spark configuration (<code>spark.conf.set(\"httpConnectTimeout\", ...)</code>) or in Hadoop Configuration\n          (<code>fs.gs.http.connect-timeout</code>).\n          <br/> (Optional. Default is 60000 ms. 0 for an infinite timeout, a negative number for 20000)\n     </td>\n     <td>Read/Write</td>\n   </tr>\n   <tr valign=\"top\">\n     <td><code>httpReadTimeout</code>\n     </td>\n     <td> The timeout in milliseconds to read data from an established connection. Can be alternatively set in the\n          Spark configuration (<code>spark.conf.set(\"httpReadTimeout\", ...)</code>) or in Hadoop Configuration\n          (<code>fs.gs.http.read-timeout</code>).\n          <br/> (Optional. Default is 60000 ms. 0 for an infinite timeout, a negative number for 20000)\n     </td>\n     <td>Read</td>\n   </tr>\n   <tr valign=\"top\">\n     <td><code>arrowCompressionCodec</code>\n     </td>\n     <td>  Compression codec while reading from a BigQuery table when using Arrow format. Options :\n           <code>ZSTD (Zstandard compression)</code>,\n           <code>LZ4_FRAME (https://github.com/lz4/lz4/blob/dev/doc/lz4_Frame_format.md)</code>,\n           <code>COMPRESSION_UNSPECIFIED</code>. The recommended compression codec is <code>ZSTD</code>\n           while using Java.\n          <br/> (Optional. Defaults to <code>COMPRESSION_UNSPECIFIED</code> which means no compression will be used)\n     </td>\n     <td>Read</td>\n   </tr>\n   <tr valign=\"top\">\n     <td><code>responseCompressionCodec</code>\n     </td>\n     <td>  Compression codec used to compress the ReadRowsResponse data. Options:\n           <code>RESPONSE_COMPRESSION_CODEC_UNSPECIFIED</code>,\n           <code>RESPONSE_COMPRESSION_CODEC_LZ4</code>\n          <br/> (Optional. Defaults to <code>RESPONSE_COMPRESSION_CODEC_UNSPECIFIED</code> which means no compression will be used)\n     </td>\n     <td>Read</td>\n   </tr>\n   <tr valign=\"top\">\n     <td><code>cacheExpirationTimeInMinutes</code>\n     </td>\n     <td>  The expiration time of the in-memory cache storing query information.\n          <br/> To disable caching, set the value to 0.\n          <br/> (Optional. Defaults to 15 minutes)\n     </td>\n     <td>Read</td>\n   </tr>\n   <tr valign=\"top\">\n     <td><code>enableModeCheckForSchemaFields</code>\n     </td>\n     <td>  Checks the mode of every field in destination schema to be equal to the mode in corresponding source field schema, during DIRECT write.\n          <br/> Default value is true i.e., the check is done by default. If set to false the mode check is ignored.\n     </td>\n     <td>Write</td>\n  </tr>\n     <td><code>enableListInference</code>\n     </td>\n     <td>  Indicates whether to use schema inference specifically when the mode is Parquet (https://cloud.google.com/bigquery/docs/reference/rest/v2/tables#parquetoptions).\n        <br/> Defaults to false.\n        <br/>\n     </td>\n     <td>Write</td>\n   </tr>\n  <tr>\n    <td><code>bqChannelPoolSize</code></td>\n    <td>  The (fixed) size of the gRPC channel pool created by the BigQueryReadClient.\n        <br/>For optimal performance, this should be set to at least the number of cores on the cluster executors.\n    </td>\n    <td>Read</td>\n  </tr>\n   <tr>\n     <td><code>createReadSessionTimeoutInSeconds</code>\n     </td>\n     <td> The timeout in seconds to create a ReadSession when reading a table.\n          <br/> For Extremely large table this value should be increased.\n          <br/> (Optional. Defaults to 600 seconds)\n     </td>\n     <td>Read</td>\n   </tr>\n  <tr>\n     <td><code>queryJobPriority</code>\n     </td>\n     <td> Priority levels set for the job while reading data from BigQuery query. The permitted values are:\n          <ul>\n            <li><code>BATCH</code> - Query is queued and started as soon as idle resources are available, usually within a few minutes. If the query hasn't started within 3 hours, its priority is changed to <code>INTERACTIVE</code>.</li>\n            <li><code>INTERACTIVE</code> - Query is executed as soon as possible and count towards the concurrent rate limit and the daily rate limit.</li>\n          </ul>\n          For WRITE, this option will be effective when DIRECT write is used with OVERWRITE mode, where the connector overwrites the destination table using MERGE statement.\n          <br/> (Optional. Defaults to <code>INTERACTIVE</code>)\n     </td>\n     <td>Read/Write</td>\n   </tr>\n  <tr>\n     <td><code>destinationTableKmsKeyName</code>\n     </td>\n     <td>Describes the Cloud KMS encryption key that will be used to protect destination BigQuery\n         table. The BigQuery Service Account associated with your project requires access to this\n         encryption key. for further Information about using CMEK with BigQuery see\n         [here](https://cloud.google.com/bigquery/docs/customer-managed-encryption#key_resource_id).\n         <br/><b>Notice:</b> The table will be encrypted by the key only if it created by the\n         connector. A pre-existing unencrypted table won't be encrypted just by setting this option.\n         <br/> (Optional)\n     </td>\n     <td>Write</td>\n   </tr>\n  <tr>\n     <td><code>allowMapTypeConversion</code>\n     </td>\n     <td>Boolean config to disable conversion from BigQuery records to Spark MapType\n          when the record has two subfields with field names as <code>key</code> and <code>value</code>.\n          Default value is <code>true</code> which allows the conversion.\n         <br/> (Optional)\n     </td>\n     <td>Read</td>\n   </tr>\n  <tr>\n     <td><code>spark.sql.sources.partitionOverwriteMode</code>\n     </td>\n     <td>Config to specify the overwrite mode on write when the table is range/time partitioned.\n         Currently supportd two modes : <code>STATIC</code> and <code>DYNAMIC</code>. In <code>STATIC</code> mode,\n         the entire table is overwritten. In <code>DYNAMIC</code> mode, the data is overwritten by partitions of the existing table.\n         The default value is <code>STATIC</code>.\n         <br/> (Optional)\n     </td>\n     <td>Write</td>\n   </tr>\n  <tr>\n     <td><code>enableReadSessionCaching</code>\n     </td>\n     <td>Boolean config to disable read session caching. Caches BigQuery read sessions to allow for faster Spark query planning.\n          Default value is <code>true</code>.\n         <br/> (Optional)\n     </td>\n     <td>Read</td>\n   </tr>\n  <tr>\n     <td><code>readSessionCacheDurationMins</code>\n     </td>\n     <td>Config to set the read session caching duration in minutes. Only works if <code>enableReadSessionCaching</code> is <code>true</code> (default).\n          Allows specifying the duration to cache read sessions for. Maximum allowed value is <code>300</code>.\n          Default value is <code>5</code>.\n         <br/> (Optional)\n     </td>\n     <td>Read</td>\n   </tr>\n  <tr>\n     <td><code>bigQueryJobTimeoutInMinutes</code>\n     </td>\n     <td>Config to set the BigQuery job timeout in minutes.\n          Default value is <code>360</code> minutes.\n         <br/> (Optional)\n     </td>\n     <td>Read/Write</td>\n   </tr>\n  <tr>\n     <td><code>snapshotTimeMillis</code>\n     </td>\n     <td>A timestamp specified in milliseconds to use to read a table snapshot.\n          By default this is not set and the latest version of a table is read.\n         <br/> (Optional)\n     </td>\n     <td>Read</td>\n   </tr>\n  <tr>\n     <td><code>bigNumericDefaultPrecision</code>\n     </td>\n     <td>An alternative default precision for BigNumeric fields, as the BigQuery default is too wide for Spark. Values can be between 1 and 38.\n          This default is used only when the field has an unparameterized BigNumeric type.\n          Please note that there might be data loss if the actual data's precision is more than what is specified.\n         <br/> (Optional)\n     </td>\n     <td>Read/Write</td>\n   </tr>\n  <tr>\n     <td><code>bigNumericDefaultScale</code>\n     </td>\n     <td>An alternative default scale for BigNumeric fields. Values can be between 0 and 38, and less than bigNumericFieldsPrecision.\n          This default is used only when the field has an unparameterized BigNumeric type.\n          Please note that there might be data loss if the actual data's scale is more than what is specified.\n         <br/> (Optional)\n     </td>\n     <td>Read/Write</td>\n   </tr>\n  <tr>\n     <td><code>credentialsScopes</code>\n     </td>\n     <td>Replaces the scopes of the Google Credentials if the credentials type supports that.\n         If scope replacement is not supported then it does nothing.\n         <br/>The value should be a comma separated list of valid scopes.\n         <br/> (Optional)\n     </td>\n     <td>Read/Write</td>\n   </tr>\n</table>\n\nOptions can also be set outside of the code, using the `--conf` parameter of `spark-submit` or `--properties` parameter\nof the `gcloud dataproc submit spark`. In order to use this, prepend the prefix `spark.datasource.bigquery.` to any of\nthe options, for example `spark.conf.set(\"temporaryGcsBucket\", \"some-bucket\")` can also be set as\n`--conf spark.datasource.bigquery.temporaryGcsBucket=some-bucket`.\n\n### Data types\n\nWith the exception of `DATETIME` and `TIME` all BigQuery data types directed map into the corresponding Spark SQL data type. Here are all of the mappings:\n\n<!--- TODO(#2): Convert to markdown -->\n<table>\n  <tr valign=\"top\">\n   <td><strong>BigQuery Standard SQL Data Type </strong>\n   </td>\n   <td><strong>Spark SQL</strong>\n<p>\n<strong>Data Type</strong>\n   </td>\n   <td><strong>Notes</strong>\n   </td>\n  </tr>\n  <tr valign=\"top\">\n   <td><strong><code>BOOL</code></strong>\n   </td>\n   <td><strong><code>BooleanType</code></strong>\n   </td>\n   <td>\n   </td>\n  </tr>\n  <tr valign=\"top\">\n   <td><strong><code>INT64</code></strong>\n   </td>\n   <td><strong><code>LongType</code></strong>\n   </td>\n   <td>\n   </td>\n  </tr>\n  <tr valign=\"top\">\n   <td><strong><code>FLOAT64</code></strong>\n   </td>\n   <td><strong><code>DoubleType</code></strong>\n   </td>\n   <td>\n   </td>\n  </tr>\n  <tr valign=\"top\">\n   <td><strong><code>NUMERIC</code></strong>\n   </td>\n   <td><strong><code>DecimalType</code></strong>\n   </td>\n   <td>\n     Please refer to <a href=\"#numeric-and-bignumeric-support\">Numeric and BigNumeric support</a>\n   </td>\n  </tr>\n  <tr valign=\"top\">\n     <td><strong><code>BIGNUMERIC</code></strong>\n     </td>\n     <td><strong><code>DecimalType</code></strong>\n     </td>\n     <td>\n       Please refer to <a href=\"#numeric-and-bignumeric-support\">Numeric and BigNumeric support</a>\n     </td>\n    </tr>\n  <tr valign=\"top\">\n   <td><strong><code>STRING</code></strong>\n   </td>\n   <td><strong><code>StringType</code></strong>\n   </td>\n   <td>\n   </td>\n  </tr>\n  <tr valign=\"top\">\n   <td><strong><code>BYTES</code></strong>\n   </td>\n   <td><strong><code>BinaryType</code></strong>\n   </td>\n   <td>\n   </td>\n  </tr>\n  <tr valign=\"top\">\n   <td><strong><code>STRUCT</code></strong>\n   </td>\n   <td><strong><code>StructType</code></strong>\n   </td>\n   <td>\n   </td>\n  </tr>\n  <tr valign=\"top\">\n   <td><strong><code>ARRAY</code></strong>\n   </td>\n   <td><strong><code>ArrayType</code></strong>\n   </td>\n   <td>\n   </td>\n  </tr>\n  <tr valign=\"top\">\n   <td><strong><code>TIMESTAMP</code></strong>\n   </td>\n   <td><strong><code>TimestampType</code></strong>\n   </td>\n   <td>\n   </td>\n  </tr>\n  <tr valign=\"top\">\n   <td><strong><code>DATE</code></strong>\n   </td>\n   <td><strong><code>DateType</code></strong>\n   </td>\n   <td>\n   </td>\n  </tr>\n  <tr valign=\"top\">\n   <td><strong><code>DATETIME</code></strong>\n   </td>\n   <td><strong><code>StringType</code>, </strong><strong><code>TimestampNTZType</code>*</strong>\n   </td>\n   <td>Spark has no DATETIME type.\n    <p>\n    Spark string can be written to an existing BQ DATETIME column provided it is in the <a href=\"https://cloud.google.com/bigquery/docs/reference/standard-sql/data-types#canonical_format_for_datetime_literals\">format for BQ DATETIME literals</a>.\n    <p>\n    * For Spark 3.4+, BQ DATETIME is read as Spark's TimestampNTZ type i.e. java LocalDateTime\n   </td>\n  </tr>\n  <tr valign=\"top\">\n   <td><strong><code>TIME</code></strong>\n   </td>\n   <td><strong><code>LongType</code>, <strong><code>StringType</code>*</strong>\n   </td>\n   <td>Spark has no TIME type. The generated longs, which indicate <a href=\"https://avro.apache.org/docs/1.8.0/spec.html#Time+%2528microsecond+precision%2529\">microseconds since midnight</a> can be safely cast to TimestampType, but this causes the date to be inferred as the current day. Thus times are left as longs and user can cast if they like.\n<p>\nWhen casting to Timestamp TIME have the same TimeZone issues as DATETIME\n<p>\n* Spark string can be written to an existing BQ TIME column provided it is in the <a href=\"https://cloud.google.com/bigquery/docs/reference/standard-sql/data-types#canonical_format_for_time_literals\">format for BQ TIME literals</a>.\n   </td>\n  </tr>\n  <tr valign=\"top\">\n   <td><strong><code>JSON</code></strong>\n   </td>\n   <td><strong><code>StringType</code></strong>\n   </td>\n   <td>Spark has no JSON type. The values are read as String. In order to write JSON back to BigQuery, the following conditions are <b>REQUIRED</b>:\n       <ul>\n          <li>Use the <code>INDIRECT</code> write method</li>\n          <li>Use the <code>AVRO</code> intermediate format</li>\n          <li>The DataFrame field <b>MUST</b> be of type <code>String</code> and has an entry of sqlType=JSON in its metadata</li>\n       </ul>\n   </td>\n  </tr>\n  <tr valign=\"top\" id=\"datatype:map\">\n   <td><strong><code>ARRAY&lt;STRUCT&lt;key,value&gt;&gt;</code></strong>\n   </td>\n   <td><strong><code>MapType</code></strong>\n   </td>\n   <td>BigQuery has no MAP type, therefore similar to other conversions like Apache Avro and BigQuery Load jobs, the connector converts a Spark Map to a REPEATED STRUCT&lt;key,value&gt;.\n       This means that while writing and reading of maps is available, running a SQL on BigQuery that uses map semantics is not supported.\n       To refer to the map's values using BigQuery SQL, please check the <a href=\"https://cloud.google.com/bigquery/docs/reference/standard-sql/arrays\">BigQuery documentation</a>.\n       Due to these incompatibilities, a few restrictions apply:\n       <ul>\n          <li>Keys can be Strings only</li>\n          <li>Values can be simple types (not structs)</li>\n          <li>For INDIRECT write, use the <code>AVRO</code> intermediate format. DIRECT write is supported as well</li>\n       </ul>\n   </td>\n  </tr>\n</table>\n\n#### Spark ML Data Types Support\n\nThe Spark ML [Vector](https://spark.apache.org/docs/2.4.5/api/python/pyspark.ml.html#pyspark.ml.linalg.Vector) and\n[Matrix](https://spark.apache.org/docs/2.4.5/api/python/pyspark.ml.html#pyspark.ml.linalg.Matrix) are supported,\nincluding their dense and sparse versions. The data is saved as a BigQuery RECORD. Notice that a suffix is added to\nthe field's description which includes the spark type of the field.\n\nIn order to write those types to BigQuery, use the ORC or Avro intermediate format, and have them as column of the\nRow (i.e. not a field in a struct).\n\n#### Numeric and BigNumeric support\nBigQuery's BigNumeric has a precision of 76.76 (the 77th digit is partial) and scale of 38. Since\nthis precision and scale is beyond spark's DecimalType (38 scale and 38 precision) support, it means\nthat BigNumeric fields with precision larger than 38 cannot be used. Once this Spark limitation will\nbe updated the connector will be updated accordingly.\n\nThe Spark Decimal/BigQuery Numeric conversion tries to preserve the parameterization of the type, i.e\n`NUMERIC(10,2)` will be converted to `Decimal(10,2)` and vice versa. Notice however that there are\ncases where [the parameters are lost](https://cloud.google.com/bigquery/docs/reference/standard-sql/data-types#parameterized_data_types).\nThis means that the parameters will be reverted to the defaults - NUMERIC (38,9) and BIGNUMERIC(76,38).\nThis means that at the moment, BigNumeric read is supported only from a standard table, but not from\nBigQuery view or when [reading data from a BigQuery query](#reading-data-from-a-bigquery-query).\n\n### Filtering\n\nThe connector automatically computes column and pushdown filters the DataFrame's `SELECT` statement e.g.\n\n```\nspark.read.bigquery(\"bigquery-public-data:samples.shakespeare\")\n  .select(\"word\")\n  .where(\"word = 'Hamlet' or word = 'Claudius'\")\n  .collect()\n```\n\n\nfilters to the column `word`  and pushed down the predicate filter `word = 'hamlet' or word = 'Claudius'`.\n\nIf you do not wish to make multiple read requests to BigQuery, you can cache the DataFrame before filtering e.g.:\n\n```\nval cachedDF = spark.read.bigquery(\"bigquery-public-data:samples.shakespeare\").cache()\nval rows = cachedDF.select(\"word\")\n  .where(\"word = 'Hamlet'\")\n  .collect()\n// All of the table was cached and this doesn't require an API call\nval otherRows = cachedDF.select(\"word_count\")\n  .where(\"word = 'Romeo'\")\n  .collect()\n```\n\nYou can also manually specify the `filter` option, which will override automatic pushdown and Spark will do the rest of the filtering in the client.\n\n### Partitioned Tables\n\nThe pseudo columns \\_PARTITIONDATE and \\_PARTITIONTIME are not part of the table schema. Therefore in order to query by the partitions of [partitioned tables](https://cloud.google.com/bigquery/docs/partitioned-tables) do not use the where() method shown above. Instead, add a filter option in the following manner:\n\n```\nval df = spark.read.format(\"bigquery\")\n  .option(\"filter\", \"_PARTITIONDATE > '2019-01-01'\")\n  ...\n  .load(TABLE)\n```\n\n### Configuring Partitioning\n\nBy default, the connector calculates the requested `maxParallelism` as the larger of `preferredMinParallelism` (which defaults to 3 times the application's default parallelism) and 20,000. BigQuery may limit the number of partitions based on server constraints.\nBoth <code>[maxParallelism](#properties)</code> and <code>[preferredMinParallelism](#properties)</code> can be configured explicitly to control the number of partitions.\n\n## Tagging BigQuery Resources\n\nIn order to support tracking the usage of BigQuery resources the connectors\noffers the following options to tag BigQuery resources:\n\n### Adding BigQuery Jobs Labels\n\nThe connector can launch BigQuery load and query jobs. Adding labels to the jobs\nis done in the following manner:\n```\nspark.conf.set(\"bigQueryJobLabel.cost_center\", \"analytics\")\nspark.conf.set(\"bigQueryJobLabel.usage\", \"nightly_etl\")\n```\nThis will create labels `cost_center`=`analytics` and `usage`=`nightly_etl`.\n\n### Adding BigQuery Storage Trace ID\n\nUsed to annotate the read and write sessions. The trace ID is of the format\n`Spark:ApplicationName:JobID`. This is an opt-in option, and to use it the user\nneed to set the `traceApplicationName` property. JobID is auto generated by the\nDataproc job ID, with a fallback to the Spark application ID (such as\n`application_1648082975639_0001`). The Job ID can be overridden by setting the\n`traceJobId` option. Notice that the total length of the trace ID cannot be over\n256 characters.\n\n## Using in Jupyter Notebooks\n\nThe connector can be used in [Jupyter notebooks](https://jupyter.org/) even if\nit is not installed on the Spark cluster. It can be added as an external jar in\nusing the following code:\n\n**Python:**\n```python\nfrom pyspark.sql import SparkSession\nspark = SparkSession.builder \\\n  .config(\"spark.jars.packages\", \"com.google.cloud.spark:spark-bigquery-with-dependencies_2.12:0.44.1\") \\\n  .getOrCreate()\ndf = spark.read.format(\"bigquery\") \\\n  .load(\"dataset.table\")\n```\n\n**Scala:**\n```scala\nval spark = SparkSession.builder\n.config(\"spark.jars.packages\", \"com.google.cloud.spark:spark-bigquery-with-dependencies_2.12:0.44.1\")\n.getOrCreate()\nval df = spark.read.format(\"bigquery\")\n.load(\"dataset.table\")\n```\n\nIn case Spark cluster is using Scala 2.12 (it's optional for Spark 2.4.x,\nmandatory in 3.0.x), then the relevant package is\ncom.google.cloud.spark:spark-bigquery-with-dependencies_**2.12**:0.44.1. In\norder to know which Scala version is used, please run the following code:\n\n**Python:**\n```python\nspark.sparkContext._jvm.scala.util.Properties.versionString()\n```\n\n**Scala:**\n```python\nscala.util.Properties.versionString\n```\n## Compiling against the connector\n\nUnless you wish to use the implicit Scala API `spark.read.bigquery(\"TABLE_ID\")`, there is no need to compile against the connector.\n\nTo include the connector in your project:\n\n### Maven\n\n```xml\n<dependency>\n  <groupId>com.google.cloud.spark</groupId>\n  <artifactId>spark-bigquery-with-dependencies_${scala.version}</artifactId>\n  <version>0.44.1</version>\n</dependency>\n```\n\n### SBT\n\n```sbt\nlibraryDependencies += \"com.google.cloud.spark\" %% \"spark-bigquery-with-dependencies\" % \"0.44.1\"\n```\n\n### Connector metrics and how to view them\n\nSpark populates a lot of metrics which can be found by the end user in the spark history page. But all these metrics are spark related which are implicitly collected without any change from the connector.\nBut there are few metrics which are populated from the BigQuery and currently are visible in the application logs which can be read in the driver/executor logs.\n\nFrom Spark 3.2 onwards, spark has provided the API to expose custom metrics in the spark UI page https://spark.apache.org/docs/3.2.0/api/java/org/apache/spark/sql/connector/metric/CustomMetric.html\n\nCurrently, using this API, connector exposes the following bigquery metrics during read\n<table id=\"metricstable\">\n<style>\ntable#metricstable td, table th\n{\nword-break:break-word\n}\n</style>\n  <tr valign=\"top\">\n   <th style=\"min-width:240px\">Metric Name</th>\n   <th style=\"min-width:240px\">Description</th>\n  </tr>\n  <tr valign=\"top\">\n   <td><code>bytes read</code></td>\n   <td>number of BigQuery bytes read</td>\n  </tr>\n  <tr valign=\"top\">\n   <td><code>rows read</code></td>\n   <td>number of BigQuery rows read</td>\n  </tr>\n  <tr valign=\"top\">\n   <td><code>scan time</code></td>\n   <td>the amount of time spent between read rows response requested to obtained across all the executors, in milliseconds.</td>\n  </tr>\n  <tr valign=\"top\">\n   <td><code>parse time</code></td>\n   <td>the amount of time spent for parsing the rows read across all the executors, in milliseconds.</td>\n  </tr>\n  <tr valign=\"top\">\n   <td><code>spark time</code></td>\n   <td>the amount of time spent in spark to process the queries (i.e., apart from scanning and parsing), across all the executors, in milliseconds.</td>\n  </tr>\n</table>\n\n\n**Note:** To use the metrics in the Spark UI page, you need to make sure the `spark-bigquery-metrics-0.44.1.jar` is the class path before starting the history-server and the connector version is `spark-3.2` or above.\n\n## FAQ\n\n### What is the Pricing for the Storage API?\n\nSee the [BigQuery pricing documentation](https://cloud.google.com/bigquery/pricing#storage-api).\n\n### I have very few partitions\n\nYou can manually set the number of partitions with the `maxParallelism` property. BigQuery may provide fewer partitions than you ask for. See [Configuring Partitioning](#configuring-partitioning).\n\nYou can also always repartition after reading in Spark.\n\n### I get quota exceeded errors while writing\n\nIf there are too many partitions the CreateWriteStream or Throughput [quotas](https://cloud.google.com/bigquery/quotas#write-api-limits)\nmay be exceeded. This occurs because while the data within each partition is processed serially, independent\npartitions may be processed in parallel on different nodes within the spark cluster. Generally, to ensure maximum\nsustained throughput you should file a quota increase request. However, you can also manually reduce the number of\npartitions being written by calling <code>coalesce</code> on the DataFrame to mitigate this problem.\n\n```\ndesiredPartitionCount = 5\ndfNew = df.coalesce(desiredPartitionCount)\ndfNew.write\n```\n\nA rule of thumb is to have a single partition handle at least 1GB of data.\n\nAlso note that a job running with the `writeAtLeastOnce` property turned on will not encounter CreateWriteStream\nquota errors.\n\n### How do I authenticate outside GCE / Dataproc?\n\nThe connector needs an instance of a GoogleCredentials in order to connect to the BigQuery APIs. There are multiple\noptions to provide it:\n\n* The default is to load the JSON key from the  `GOOGLE_APPLICATION_CREDENTIALS` environment variable, as described\n  [here](https://cloud.google.com/docs/authentication/getting-started).\n* In case the environment variable cannot be changed, the credentials file can be configured as\n  as a spark option. The file should reside on the same path on all the nodes of the cluster.\n```\n// Globally\nspark.conf.set(\"credentialsFile\", \"</path/to/key/file>\")\n// Per read/Write\nspark.read.format(\"bigquery\").option(\"credentialsFile\", \"</path/to/key/file>\")\n```\n* Credentials can also be provided explicitly, either as a parameter or from Spark runtime configuration.\n  They should be passed in as a base64-encoded string directly.\n```\n// Globally\nspark.conf.set(\"credentials\", \"<SERVICE_ACCOUNT_JSON_IN_BASE64>\")\n// Per read/Write\nspark.read.format(\"bigquery\").option(\"credentials\", \"<SERVICE_ACCOUNT_JSON_IN_BASE64>\")\n```\n* In cases where the user has an internal service providing the Google AccessToken, a custom implementation\n  can be done, creating only the AccessToken and providing its TTL. Token refresh will re-generate a new token. In order\n  to use this, implement the\n  [com.google.cloud.bigquery.connector.common.AccessTokenProvider](https://github.com/GoogleCloudDataproc/spark-bigquery-connector/tree/master/bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/AccessTokenProvider.java)\n  interface. The fully qualified class name of the implementation should be provided in the `gcpAccessTokenProvider`\n  option. `AccessTokenProvider` must be implemented in Java or other JVM language such as Scala or Kotlin. It must\n  either have a no-arg constructor or a constructor accepting a single `java.util.String` argument. This configuration\n  parameter can be supplied using the `gcpAccessTokenProviderConfig` option. If this is not provided then the no-arg\n  constructor wil be called. The jar containing the implementation should be on the cluster's classpath.\n```\n// Globally\nspark.conf.set(\"gcpAccessTokenProvider\", \"com.example.ExampleAccessTokenProvider\")\n// Per read/Write\nspark.read.format(\"bigquery\").option(\"gcpAccessTokenProvider\", \"com.example.ExampleAccessTokenProvider\")\n```\n* Service account impersonation can be configured for a specific username and a group name, or\n  for all users by default using below properties:\n\n  - `gcpImpersonationServiceAccountForUser_<USER_NAME>` (not set by default)\n\n    The service account impersonation for a specific user.\n\n  - `gcpImpersonationServiceAccountForGroup_<GROUP_NAME>` (not set by default)\n\n    The service account impersonation for a specific group.\n\n  - `gcpImpersonationServiceAccount` (not set by default)\n\n    Default service account impersonation for all users.\n\n  If any of the above properties are set then the service account specified will be impersonated by\n  generating a short-lived credentials when accessing BigQuery.\n\n  If more than one property is set then the service account associated with the username will take\n  precedence over the service account associated with the group name for a matching user and group,\n  which in turn will take precedence over default service account impersonation.\n\n* For a simpler application, where access token refresh is not required, another alternative is to pass the access token\n  as the `gcpAccessToken` configuration option. You can get the access token by running\n  `gcloud auth application-default print-access-token`.\n```\n// Globally\nspark.conf.set(\"gcpAccessToken\", \"<access-token>\")\n// Per read/Write\nspark.read.format(\"bigquery\").option(\"gcpAccessToken\", \"<acccess-token>\")\n```\n\n**Important:** The `CredentialsProvider` and  `AccessTokenProvider` need to be implemented in Java or\nother JVM language such as Scala or Kotlin. The jar containing the implementation should be on the cluster's classpath.\n\n**Notice:** Only one of the above options should be provided.\n\n### How do I connect to GCP/BigQuery via Proxy?\n\nTo connect to a forward proxy and to authenticate the user credentials, configure the following options.\n\n`proxyAddress`: Address of the proxy server. The proxy must be an HTTP proxy and address should be in the `host:port`\nformat.\n\n`proxyUsername`: The userName used to connect to the proxy.\n\n`proxyPassword`: The password used to connect to the proxy.\n\n```\nval df = spark.read.format(\"bigquery\")\n  .option(\"proxyAddress\", \"http://my-proxy:1234\")\n  .option(\"proxyUsername\", \"my-username\")\n  .option(\"proxyPassword\", \"my-password\")\n  .load(\"some-table\")\n```\n\nThe same proxy parameters can also be set globally using Spark's RuntimeConfig like this:\n\n```\nspark.conf.set(\"proxyAddress\", \"http://my-proxy:1234\")\nspark.conf.set(\"proxyUsername\", \"my-username\")\nspark.conf.set(\"proxyPassword\", \"my-password\")\n\nval df = spark.read.format(\"bigquery\")\n  .load(\"some-table\")\n```\n\nYou can set the following in the hadoop configuration as well.\n\n`fs.gs.proxy.address`(similar to \"proxyAddress\"), `fs.gs.proxy.username`(similar to \"proxyUsername\") and\n`fs.gs.proxy.password`(similar to \"proxyPassword\").\n\nIf the same parameter is set at multiple places the order of priority is as follows:\n\noption(\"key\", \"value\") > spark.conf > hadoop configuration\n"
  },
  {
    "path": "bigquery-connector-common/pom.xml",
    "content": "<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n  xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n  xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\">\n  <modelVersion>4.0.0</modelVersion>\n  <parent>\n    <groupId>com.google.cloud.spark</groupId>\n    <artifactId>spark-bigquery-parent</artifactId>\n    <version>${revision}</version>\n    <relativePath>../spark-bigquery-parent</relativePath>\n  </parent>\n\n  <artifactId>bigquery-connector-common</artifactId>\n  <name>BigQuery Connector Common Library</name>\n  <packaging>jar</packaging>\n  <licenses>\n    <license>\n      <name>Apache License, Version 2.0</name>\n      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>\n      <distribution>repo</distribution>\n    </license>\n  </licenses>\n  <dependencies>\n    <dependency>\n      <groupId>com.google.api.grpc</groupId>\n      <artifactId>grpc-google-cloud-bigquerystorage-v1</artifactId>\n    </dependency>\n    <dependency>\n      <groupId>com.google.api.grpc</groupId>\n      <artifactId>proto-google-cloud-bigquerystorage-v1</artifactId>\n    </dependency>\n    <dependency>\n      <groupId>org.lz4</groupId>\n      <artifactId>lz4-java</artifactId>\n      <version>1.8.0</version>\n      <scope>provided</scope>\n    </dependency>\n    <dependency>\n      <groupId>com.google.cloud</groupId>\n      <artifactId>google-cloud-bigquery</artifactId>\n      <exclusions>\n        <exclusion>\n          <groupId>com.google.api.grpc</groupId>\n          <artifactId>grpc-google-cloud-bigquerystorage-v1beta1</artifactId>\n        </exclusion>\n        <exclusion>\n          <groupId>com.google.api.grpc</groupId>\n          <artifactId>grpc-google-cloud-bigquerystorage-v1beta2</artifactId>\n        </exclusion>\n        <exclusion>\n          <groupId>com.google.api.grpc</groupId>\n          <artifactId>proto-google-cloud-bigquerystorage-v1beta1</artifactId>\n        </exclusion>\n        <exclusion>\n          <groupId>com.google.api.grpc</groupId>\n          <artifactId>proto-google-cloud-bigquerystorage-v1beta2</artifactId>\n        </exclusion>\n      </exclusions>    </dependency>\n    <dependency>\n      <groupId>com.google.cloud</groupId>\n      <artifactId>google-cloud-bigquerystorage</artifactId>\n      <exclusions>\n        <exclusion>\n          <groupId>io.grpc</groupId>\n          <artifactId>grpc-netty-shaded</artifactId>\n        </exclusion>\n        <exclusion>\n          <groupId>com.google.api.grpc</groupId>\n          <artifactId>grpc-google-cloud-bigquerystorage-v1beta1</artifactId>\n        </exclusion>\n        <exclusion>\n          <groupId>com.google.api.grpc</groupId>\n          <artifactId>grpc-google-cloud-bigquerystorage-v1beta2</artifactId>\n        </exclusion>\n        <exclusion>\n          <groupId>com.google.api.grpc</groupId>\n          <artifactId>proto-google-cloud-bigquerystorage-v1beta1</artifactId>\n        </exclusion>\n        <exclusion>\n          <groupId>com.google.api.grpc</groupId>\n          <artifactId>proto-google-cloud-bigquerystorage-v1beta2</artifactId>\n        </exclusion>\n      </exclusions>\n    </dependency>\n    <dependency>\n      <groupId>com.google.errorprone</groupId>\n      <artifactId>error_prone_annotations</artifactId>\n    </dependency>\n    <dependency>\n      <groupId>com.google.inject</groupId>\n      <artifactId>guice</artifactId>\n      <version>5.1.0</version>\n    </dependency>\n    <dependency>\n      <groupId>io.grpc</groupId>\n      <artifactId>grpc-api</artifactId>\n    </dependency>\n    <dependency>\n      <groupId>io.grpc</groupId>\n      <artifactId>grpc-netty</artifactId>\n    </dependency>\n    <dependency>\n      <groupId>io.netty</groupId>\n      <artifactId>netty-tcnative-boringssl-static</artifactId>\n    </dependency>\n    <dependency>\n      <groupId>org.apache.arrow</groupId>\n      <artifactId>arrow-memory-netty</artifactId>\n    </dependency>\n    <dependency>\n      <groupId>org.apache.arrow</groupId>\n      <artifactId>arrow-vector</artifactId>\n    </dependency>\n    <dependency>\n      <groupId>org.apache.arrow</groupId>\n      <artifactId>arrow-memory-core</artifactId>\n    </dependency>\n    <!-- test -->\n    <dependency>\n      <groupId>com.google.api</groupId>\n      <artifactId>gax-grpc</artifactId>\n      <version>${gax.version}</version>\n      <classifier>testlib</classifier>\n      <scope>test</scope>\n    </dependency>\n    <dependency>\n      <groupId>com.google.cloud</groupId>\n      <artifactId>google-cloud-bigquerystorage</artifactId>\n      <version>${google-cloud-bigquerystorage.version}</version>\n      <classifier>tests</classifier>\n      <scope>test</scope>\n    </dependency>\n    <dependency>\n      <groupId>io.grpc</groupId>\n      <artifactId>grpc-testing</artifactId>\n      <scope>test</scope>\n    </dependency>\n    <dependency>\n      <groupId>com.google.code.gson</groupId>\n      <artifactId>gson</artifactId>\n      <version>2.9.1</version>\n    </dependency>\n    <dependency>\n      <groupId>org.apache.commons</groupId>\n      <artifactId>commons-lang3</artifactId>\n      <scope>test</scope>\n    </dependency>\n  </dependencies>\n  <build>\n    <plugins>\n      <plugin>\n        <groupId>org.apache.maven.plugins</groupId>\n        <artifactId>maven-jar-plugin</artifactId>\n        <version>3.2.0</version>\n        <executions>\n          <execution>\n            <id>default-jar</id>\n            <phase>package</phase>\n            <goals>\n              <goal>jar</goal>\n            </goals>\n          </execution>\n          <execution>\n            <id>test-jar</id>\n            <goals>\n              <goal>test-jar</goal>\n            </goals>\n          </execution>\n        </executions>\n      </plugin>\n    </plugins>\n  </build>\n</project>\n"
  },
  {
    "path": "bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/AccessToken.java",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.bigquery.connector.common;\n\nimport java.util.Date;\n\n/**\n * As the com.google.auth.oauth2.AccessToken class is shaded in the final jar, this class provides\n * the same functionality but maintains its package.\n */\npublic class AccessToken extends com.google.auth.oauth2.AccessToken {\n\n  /**\n   * @param tokenValue String representation of the access token.\n   * @param expirationTime Time when access token will expire.\n   */\n  public AccessToken(String tokenValue, Date expirationTime) {\n    super(tokenValue, expirationTime);\n  }\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/AccessTokenProvider.java",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.bigquery.connector.common;\n\nimport java.io.IOException;\nimport java.io.Serializable;\n\npublic interface AccessTokenProvider extends Serializable {\n  AccessToken getAccessToken() throws IOException;\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/AccessTokenProviderCredentials.java",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.bigquery.connector.common;\n\nimport com.google.auth.oauth2.AccessToken;\nimport com.google.auth.oauth2.GoogleCredentials;\nimport com.google.common.annotations.VisibleForTesting;\nimport java.io.IOException;\n\npublic class AccessTokenProviderCredentials extends GoogleCredentials {\n\n  private final AccessTokenProvider accessTokenProvider;\n\n  public AccessTokenProviderCredentials(AccessTokenProvider accessTokenProvider) {\n    this.accessTokenProvider = accessTokenProvider;\n  }\n\n  @Override\n  public AccessToken refreshAccessToken() throws IOException {\n    return accessTokenProvider.getAccessToken();\n  }\n\n  @VisibleForTesting\n  public AccessTokenProvider getAccessTokenProvider() {\n    return accessTokenProvider;\n  }\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/ArrowReaderIterator.java",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.bigquery.connector.common;\n\nimport java.io.IOException;\nimport java.io.UncheckedIOException;\nimport java.util.Iterator;\nimport org.apache.arrow.vector.VectorSchemaRoot;\nimport org.apache.arrow.vector.ipc.ArrowReader;\nimport org.slf4j.Logger;\nimport org.slf4j.LoggerFactory;\n\npublic class ArrowReaderIterator implements Iterator<VectorSchemaRoot> {\n\n  private static final Logger log = LoggerFactory.getLogger(ArrowReaderIterator.class);\n  boolean closed = false;\n  VectorSchemaRoot current = null;\n  ArrowReader reader;\n\n  public ArrowReaderIterator(ArrowReader reader) {\n    this.reader = reader;\n  }\n\n  @Override\n  public boolean hasNext() {\n    if (current != null) {\n      return true;\n    }\n\n    if (closed) {\n      return false;\n    }\n\n    try {\n      boolean res = reader.loadNextBatch();\n      if (res) {\n        current = reader.getVectorSchemaRoot();\n      } else {\n        ensureClosed();\n      }\n      return res;\n    } catch (IOException e) {\n      throw new UncheckedIOException(\"Failed to load the next arrow batch\", e);\n    }\n  }\n\n  @Override\n  public VectorSchemaRoot next() {\n    VectorSchemaRoot res = current;\n    current = null;\n    return res;\n  }\n\n  private void ensureClosed() throws IOException {\n    if (!closed) {\n      reader.close();\n      closed = true;\n    }\n  }\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/ArrowUtil.java",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.bigquery.connector.common;\n\nimport org.apache.arrow.memory.RootAllocator;\nimport org.apache.arrow.memory.netty.NettyAllocationManager;\n\n/** Common utility classes for Arrow. */\npublic class ArrowUtil {\n  private ArrowUtil() {};\n\n  /** Returns a new allocator limited to maxAllocation bytes */\n  public static RootAllocator newRootAllocator(long maxAllocation) {\n    // Arrow has classpath scanning logic based on hard-coding strings to\n    // select the default allocationManagerFactory by selecting one\n    // here it should be properly shaded with the rest of Arrow within\n    // the connector.\n    return new RootAllocator(\n        RootAllocator.configBuilder()\n            .allocationManagerFactory(NettyAllocationManager.FACTORY)\n            .maxAllocation(maxAllocation)\n            .build());\n  }\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/BigQueryClient.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.bigquery.connector.common;\n\nimport static com.google.cloud.bigquery.connector.common.BigQueryUtil.getPartitionFields;\nimport static com.google.cloud.bigquery.connector.common.BigQueryUtil.getQueryForRangePartitionedTable;\nimport static com.google.cloud.bigquery.connector.common.BigQueryUtil.getQueryForTimePartitionedTable;\nimport static com.google.cloud.bigquery.connector.common.BigQueryUtil.isBigQueryNativeTable;\n\nimport com.google.api.client.googleapis.javanet.GoogleNetHttpTransport;\nimport com.google.api.client.json.gson.GsonFactory;\nimport com.google.api.services.bigquery.Bigquery;\nimport com.google.auth.http.HttpCredentialsAdapter;\nimport com.google.cloud.BaseServiceException;\nimport com.google.cloud.RetryOption;\nimport com.google.cloud.bigquery.BigQuery;\nimport com.google.cloud.bigquery.BigQueryException;\nimport com.google.cloud.bigquery.Clustering;\nimport com.google.cloud.bigquery.Dataset;\nimport com.google.cloud.bigquery.DatasetId;\nimport com.google.cloud.bigquery.DatasetInfo;\nimport com.google.cloud.bigquery.EncryptionConfiguration;\nimport com.google.cloud.bigquery.FormatOptions;\nimport com.google.cloud.bigquery.Job;\nimport com.google.cloud.bigquery.JobConfiguration;\nimport com.google.cloud.bigquery.JobId;\nimport com.google.cloud.bigquery.JobInfo;\nimport com.google.cloud.bigquery.JobStatistics;\nimport com.google.cloud.bigquery.LoadJobConfiguration;\nimport com.google.cloud.bigquery.QueryJobConfiguration;\nimport com.google.cloud.bigquery.QueryJobConfiguration.Priority;\nimport com.google.cloud.bigquery.RangePartitioning;\nimport com.google.cloud.bigquery.Schema;\nimport com.google.cloud.bigquery.StandardTableDefinition;\nimport com.google.cloud.bigquery.Table;\nimport com.google.cloud.bigquery.TableDefinition;\nimport com.google.cloud.bigquery.TableId;\nimport com.google.cloud.bigquery.TableInfo;\nimport com.google.cloud.bigquery.TableResult;\nimport com.google.cloud.bigquery.TimePartitioning;\nimport com.google.cloud.http.BaseHttpServiceException;\nimport com.google.common.base.Preconditions;\nimport com.google.common.cache.Cache;\nimport com.google.common.collect.ImmutableList;\nimport com.google.common.collect.ImmutableMap;\nimport com.google.common.collect.ImmutableSet;\nimport java.io.IOException;\nimport java.io.UncheckedIOException;\nimport java.security.GeneralSecurityException;\nimport java.util.ArrayList;\nimport java.util.Collections;\nimport java.util.HashMap;\nimport java.util.List;\nimport java.util.Locale;\nimport java.util.Map;\nimport java.util.Optional;\nimport java.util.OptionalLong;\nimport java.util.Set;\nimport java.util.UUID;\nimport java.util.concurrent.Callable;\nimport java.util.concurrent.TimeUnit;\nimport java.util.stream.Collectors;\nimport java.util.stream.Stream;\nimport java.util.stream.StreamSupport;\nimport org.slf4j.Logger;\nimport org.slf4j.LoggerFactory;\nimport org.threeten.bp.Duration;\n\n// holds caches and mappings\n// presto converts the dataset and table names to lower case, while BigQuery is case sensitive\n// the mappings here keep the mappings\npublic class BigQueryClient {\n  private static final Logger log = LoggerFactory.getLogger(BigQueryClient.class);\n\n  private static final List<Runnable> CLEANUP_JOBS = new ArrayList<>();\n\n  private final BigQuery bigQuery;\n  // The rest client is generated directly from the API, and therefore returns more metadata than\n  // the\n  // google-cloud-bigquery client above,\n  private final Bigquery bigqueryRestClient;\n  private final Cache<String, TableInfo> destinationTableCache;\n  private final Optional<String> materializationProject;\n  private final Optional<String> materializationDataset;\n  private final JobConfigurationFactory jobConfigurationFactory;\n  private final Optional<BigQueryJobCompletionListener> jobCompletionListener;\n  private final long bigQueryJobTimeoutInMinutes;\n\n  public BigQueryClient(\n      BigQuery bigQuery,\n      Optional<String> materializationProject,\n      Optional<String> materializationDataset,\n      Cache<String, TableInfo> destinationTableCache,\n      Map<String, String> labels,\n      Priority queryJobPriority,\n      Optional<BigQueryJobCompletionListener> jobCompletionListener,\n      long bigQueryJobTimeoutInMinutes) {\n    this.bigQuery = bigQuery;\n    this.bigqueryRestClient = createRestClient(bigQuery);\n    this.materializationProject = materializationProject;\n    this.materializationDataset = materializationDataset;\n    this.destinationTableCache = destinationTableCache;\n    this.jobConfigurationFactory = new JobConfigurationFactory(labels, queryJobPriority);\n    this.jobCompletionListener = jobCompletionListener;\n    this.bigQueryJobTimeoutInMinutes = bigQueryJobTimeoutInMinutes;\n  }\n\n  static Bigquery createRestClient(BigQuery bigQuery) {\n    try {\n      // Initialize client that will be used to send requests. This client only needs to be created\n      // once, and can be reused for multiple requests\n      HttpCredentialsAdapter httpCredentialsAdapter =\n          new HttpCredentialsAdapter(bigQuery.getOptions().getCredentials());\n      Bigquery.Builder client =\n          new Bigquery.Builder(\n                  GoogleNetHttpTransport.newTrustedTransport(),\n                  GsonFactory.getDefaultInstance(),\n                  httpRequest -> {\n                    httpCredentialsAdapter.initialize(httpRequest);\n                    httpRequest.setThrowExceptionOnExecuteError(false);\n                  })\n              .setApplicationName(bigQuery.getOptions().getUserAgent());\n      return client.build();\n    } catch (GeneralSecurityException gse) {\n      throw new BigQueryConnectorException(\n          \"Failed to create new trusted transport for BigQuery REST client\", gse);\n    } catch (IOException ioe) {\n      throw new UncheckedIOException(ioe);\n    }\n  }\n\n  public static synchronized void runCleanupJobs() {\n    log.info(\"Running cleanup jobs. Jobs count is \" + CLEANUP_JOBS.size());\n    for (Runnable job : CLEANUP_JOBS) {\n      try {\n        job.run();\n      } catch (Exception e) {\n        log.warn(\n            \"Caught exception while running cleanup job. Continue to run the rest of the jobs\", e);\n      }\n    }\n    log.info(\"Clearing the cleanup jobs list\");\n    CLEANUP_JOBS.clear();\n    log.info(\"Finished to run cleanup jobs.\");\n  }\n\n  /**\n   * Waits for a BigQuery Job to complete: this is a blocking function.\n   *\n   * @param job The {@code Job} to keep track of.\n   */\n  public JobInfo waitForJob(Job job) {\n    try {\n      Job completedJob =\n          job.waitFor(\n              RetryOption.initialRetryDelay(Duration.ofSeconds(1)),\n              RetryOption.totalTimeout(Duration.ofMinutes(bigQueryJobTimeoutInMinutes)));\n      if (completedJob == null || completedJob.getStatus().getError() != null) {\n        throw new UncheckedIOException(\n            new IOException(\n                completedJob != null ? completedJob.getStatus().getError().toString() : null));\n      }\n      if (!completedJob.isDone()) {\n        completedJob.cancel();\n        throw new IllegalStateException(\n            String.format(\"Job aborted due to timeout  : %s minutes\", bigQueryJobTimeoutInMinutes));\n      }\n      jobCompletionListener.ifPresent(jcl -> jcl.accept(completedJob));\n      return completedJob;\n    } catch (InterruptedException e) {\n      throw new RuntimeException(\n          \"Could not copy table from temporary sink to destination table.\", e);\n    }\n  }\n\n  // return empty if no filters are used\n  private static Optional<String> createWhereClause(String[] filters) {\n    if (filters.length == 0) {\n      return Optional.empty();\n    }\n    return Optional.of(Stream.of(filters).collect(Collectors.joining(\") AND (\", \"(\", \")\")));\n  }\n\n  public TableInfo getTable(TableId tableId) {\n    return bigQuery.getTable(tableId);\n  }\n\n  /**\n   * Checks whether the requested table exists in BigQuery.\n   *\n   * @param tableId The TableId of the requested table in BigQuery\n   * @return True if the requested table exists in BigQuery, false otherwise.\n   */\n  public boolean tableExists(TableId tableId) {\n    return getTable(tableId) != null;\n  }\n\n  /**\n   * Creates an empty table in BigQuery.\n   *\n   * @param tableId The TableId of the table to be created.\n   * @param schema The Schema of the table to be created.\n   * @return The {@code Table} object representing the table that was created.\n   *     <p>public TableInfo createTable(TableId tableId, Schema schema) { return\n   *     createTable(tableId, schema, Optional.empty()); }\n   */\n\n  /**\n   * Creates an empty table in BigQuery.\n   *\n   * @param tableId The TableId of the table to be created.\n   * @param schema The Schema of the table to be created.\n   * @param options Allows configuring the created table\n   * @return The {@code Table} object representing the table that was created.\n   */\n  public TableInfo createTable(TableId tableId, Schema schema, CreateTableOptions options) {\n\n    StandardTableDefinition.Builder tableDefinition =\n        StandardTableDefinition.newBuilder().setSchema(schema);\n\n    options\n        .getClusteredFields()\n        .ifPresent(\n            clusteredFields ->\n                tableDefinition.setClustering(\n                    Clustering.newBuilder().setFields(clusteredFields).build()));\n\n    TableInfo.Builder tableInfo = TableInfo.newBuilder(tableId, tableDefinition.build());\n    options\n        .getKmsKeyName()\n        .ifPresent(\n            keyName ->\n                tableInfo.setEncryptionConfiguration(\n                    EncryptionConfiguration.newBuilder().setKmsKeyName(keyName).build()));\n    if (!options.getBigQueryTableLabels().isEmpty()) {\n      tableInfo.setLabels(options.getBigQueryTableLabels());\n    }\n    return bigQuery.create(tableInfo.build());\n  }\n\n  /**\n   * Creates a temporary table with a job to cleanup after application end, and the same location as\n   * the destination table; the temporary table will have the same name as the destination table,\n   * with the current time in milliseconds appended to it; useful for holding temporary data in\n   * order to overwrite the destination table.\n   *\n   * @param destinationTableId The TableId of the eventual destination for the data going into the\n   *     temporary table.\n   * @param schema The Schema of the destination / temporary table.\n   * @return The {@code Table} object representing the created temporary table.\n   */\n  public TableInfo createTempTable(TableId destinationTableId, Schema schema) {\n    TableId tempTableId = createTempTableId(destinationTableId);\n    TableInfo tableInfo =\n        TableInfo.newBuilder(tempTableId, StandardTableDefinition.of(schema)).build();\n    TableInfo tempTable = bigQuery.create(tableInfo);\n    CLEANUP_JOBS.add(() -> deleteTable(tempTable.getTableId()));\n    return tempTable;\n  }\n\n  public TableInfo createTempTableAfterCheckingSchema(\n      TableId destinationTableId, Schema schema, boolean enableModeCheckForSchemaFields)\n      throws IllegalArgumentException {\n    TableInfo destinationTable = getTable(destinationTableId);\n    Schema tableSchema = destinationTable.getDefinition().getSchema();\n    ComparisonResult schemaWritableResult =\n        BigQueryUtil.schemaWritable(\n            schema, // sourceSchema\n            tableSchema, // destinationSchema\n            false, // regardFieldOrder\n            enableModeCheckForSchemaFields);\n    Preconditions.checkArgument(\n        schemaWritableResult.valuesAreEqual(),\n        new BigQueryConnectorException.InvalidSchemaException(\n            \"Destination table's schema is not compatible with dataframe's schema. \"\n                + schemaWritableResult.makeMessage()));\n    return createTempTable(destinationTableId, schema);\n  }\n\n  public TableId createTempTableId(TableId destinationTableId) {\n    String tempProject = materializationProject.orElseGet(destinationTableId::getProject);\n    String tempDataset = materializationDataset.orElseGet(destinationTableId::getDataset);\n    String tableName = destinationTableId.getTable() + System.nanoTime();\n    TableId tempTableId =\n        tempProject == null\n            ? TableId.of(tempDataset, tableName)\n            : TableId.of(tempProject, tempDataset, tableName);\n    return tempTableId;\n  }\n\n  /**\n   * Deletes this table in BigQuery.\n   *\n   * @param tableId The TableId of the table to be deleted.\n   * @return True if the operation was successful, false otherwise.\n   */\n  public boolean deleteTable(TableId tableId) {\n    log.info(\"Deleting table \" + fullTableName(tableId));\n    return bigQuery.delete(tableId);\n  }\n\n  private Job copyData(\n      TableId sourceTableId,\n      TableId destinationTableId,\n      JobInfo.WriteDisposition writeDisposition) {\n    String queryFormat = \"SELECT * FROM `%s`\";\n    String temporaryTableName = fullTableName(sourceTableId);\n    String sqlQuery = String.format(queryFormat, temporaryTableName);\n    QueryJobConfiguration queryConfig =\n        jobConfigurationFactory\n            .createQueryJobConfigurationBuilder(sqlQuery, Collections.emptyMap())\n            .setUseLegacySql(false)\n            .setDestinationTable(destinationTableId)\n            .setWriteDisposition(writeDisposition)\n            .build();\n\n    return create(JobInfo.newBuilder(queryConfig).build());\n  }\n\n  public boolean isTablePartitioned(TableId tableId) {\n    TableInfo table = getTable(tableId);\n    if (table == null) {\n      return false;\n    }\n    TableDefinition tableDefinition = table.getDefinition();\n    if (tableDefinition instanceof StandardTableDefinition) {\n      StandardTableDefinition sdt = (StandardTableDefinition) tableDefinition;\n      return sdt.getTimePartitioning() != null || sdt.getRangePartitioning() != null;\n    }\n    return false;\n  }\n\n  /**\n   * Overwrites the partitions of the destination table, using the partitions from the given\n   * temporary table, transactionally.\n   *\n   * @param temporaryTableId The {@code TableId} representing the temporary-table.\n   * @param destinationTableId The {@code TableId} representing the destination table.\n   * @return The {@code Job} object representing this operation (which can be tracked to wait until\n   *     it has finished successfully).\n   */\n  public Job overwriteDestinationWithTemporaryDynamicPartitons(\n      TableId temporaryTableId, TableId destinationTableId) {\n\n    TableDefinition destinationDefinition = getTable(destinationTableId).getDefinition();\n    String sqlQuery = null;\n    if (destinationDefinition instanceof StandardTableDefinition) {\n      String destinationTableName = fullTableName(destinationTableId);\n      String temporaryTableName = fullTableName(temporaryTableId);\n      StandardTableDefinition sdt = (StandardTableDefinition) destinationDefinition;\n\n      TimePartitioning timePartitioning = sdt.getTimePartitioning();\n      if (timePartitioning != null) {\n        sqlQuery =\n            getQueryForTimePartitionedTable(\n                destinationTableName, temporaryTableName, sdt, timePartitioning);\n      } else {\n        RangePartitioning rangePartitioning = sdt.getRangePartitioning();\n        if (rangePartitioning != null) {\n          sqlQuery =\n              getQueryForRangePartitionedTable(\n                  destinationTableName, temporaryTableName, sdt, rangePartitioning);\n        }\n      }\n\n      if (sqlQuery != null) {\n        QueryJobConfiguration queryConfig =\n            jobConfigurationFactory\n                .createQueryJobConfigurationBuilder(sqlQuery, Collections.emptyMap())\n                .setUseLegacySql(false)\n                .build();\n\n        return create(JobInfo.newBuilder(queryConfig).build());\n      }\n    }\n\n    // no partitioning default to statndard overwrite\n    return overwriteDestinationWithTemporary(temporaryTableId, destinationTableId);\n  }\n\n  /**\n   * Overwrites the given destination table, with all the data from the given temporary table,\n   * transactionally.\n   *\n   * @param temporaryTableId The {@code TableId} representing the temporary-table.\n   * @param destinationTableId The {@code TableId} representing the destination table.\n   * @return The {@code Job} object representing this operation (which can be tracked to wait until\n   *     it has finished successfully).\n   */\n  public Job overwriteDestinationWithTemporary(\n      TableId temporaryTableId, TableId destinationTableId) {\n    String queryFormat =\n        \"MERGE `%s`\\n\"\n            + \"USING (SELECT * FROM `%s`)\\n\"\n            + \"ON FALSE\\n\"\n            + \"WHEN NOT MATCHED THEN INSERT ROW\\n\"\n            + \"WHEN NOT MATCHED BY SOURCE THEN DELETE\";\n\n    String destinationTableName = fullTableName(destinationTableId);\n    String temporaryTableName = fullTableName(temporaryTableId);\n    String sqlQuery = String.format(queryFormat, destinationTableName, temporaryTableName);\n    QueryJobConfiguration queryConfig =\n        jobConfigurationFactory\n            .createQueryJobConfigurationBuilder(sqlQuery, Collections.emptyMap())\n            .setUseLegacySql(false)\n            .build();\n\n    return create(JobInfo.newBuilder(queryConfig).build());\n  }\n\n  /**\n   * Appends all the data from the given temporary table, to the given destination table,\n   * transactionally.\n   *\n   * @param temporaryTableId The {@code TableId} representing the temporary-table.\n   * @param destinationTableId The {@code TableId} representing the destination table.\n   * @return The {@code Job} object representing this operation (which can be tracked to wait until\n   *     it has finished successfully).\n   */\n  public Job appendDestinationWithTemporary(TableId temporaryTableId, TableId destinationTableId) {\n    return copyData(temporaryTableId, destinationTableId, JobInfo.WriteDisposition.WRITE_APPEND);\n  }\n\n  /**\n   * Creates a String appropriately formatted for BigQuery Storage Write API representing the given\n   * table.\n   *\n   * @param tableId The {@code TableId} representing the given object.\n   * @return The formatted String.\n   */\n  public String createTablePathForBigQueryStorage(TableId tableId) {\n    Preconditions.checkNotNull(tableId, \"tableId cannot be null\");\n    // We need the full path for the createWriteStream method. We used to have it by creating the\n    // table and then taking its full tableId, but that caused an issue with the ErrorIfExists\n    // implementation (now the check, done in another place is positive). To solve it, we do what\n    // the BigQuery client does on Table ID with no project - take the BigQuery client own project\n    // ID.  This gives us the same behavior but allows us to defer the table creation to the last\n    // minute.\n    String project = tableId.getProject() != null ? tableId.getProject() : getProjectId();\n    return String.format(\n        \"projects/%s/datasets/%s/tables/%s\", project, tableId.getDataset(), tableId.getTable());\n  }\n\n  public TableInfo getReadTable(ReadTableOptions options) {\n    Optional<String> query = options.query();\n    // first, let check if this is a query\n    if (query.isPresent()) {\n      // in this case, let's materialize it and use it as the table\n      validateViewsEnabled(options);\n      String sql = query.get();\n      return materializeQueryToTable(\n          sql,\n          options.expirationTimeInMinutes(),\n          options.getQueryParameterHelper(),\n          options.getKmsKeyName());\n    }\n\n    TableInfo table = getTable(options.tableId());\n    if (table == null) {\n      return null;\n    }\n\n    TableDefinition tableDefinition = table.getDefinition();\n    TableDefinition.Type tableType = tableDefinition.getType();\n    if (TableDefinition.Type.TABLE == tableType\n        || TableDefinition.Type.EXTERNAL == tableType\n        || TableDefinition.Type.SNAPSHOT == tableType) {\n      return table;\n    }\n    if (TableDefinition.Type.VIEW == tableType\n        || TableDefinition.Type.MATERIALIZED_VIEW == tableType) {\n      validateViewsEnabled(options);\n      // view materialization is done in a lazy manner, so it can occur only when the data is read\n      return table;\n    }\n    // not regular table or a view\n    throw new BigQueryConnectorException(\n        BigQueryErrorCode.UNSUPPORTED,\n        String.format(\n            \"Table type '%s' of table '%s.%s' is not supported\",\n            tableType, table.getTableId().getDataset(), table.getTableId().getTable()));\n  }\n\n  /**\n   * Returns the schema of the table/query/view. Uses dryRun to get the query schema instead of\n   * materializing it.\n   *\n   * @param options The {@code ReadTableOptions} options for reading the data source.\n   * @return The schema.\n   */\n  public Schema getReadTableSchema(ReadTableOptions options) {\n    Optional<String> query = options.query();\n    // lazy materialization if it's a query\n    if (query.isPresent()) {\n      validateViewsEnabled(options);\n      String sql = query.get();\n      return getQueryResultSchema(\n          sql, Collections.emptyMap(), options.getQueryParameterHelper(), options.getKmsKeyName());\n    }\n    TableInfo table = getReadTable(options);\n    return table != null ? table.getDefinition().getSchema() : null;\n  }\n\n  private void validateViewsEnabled(ReadTableOptions options) {\n    if (!options.viewsEnabled()) {\n      throw new BigQueryConnectorException(\n          BigQueryErrorCode.UNSUPPORTED,\n          String.format(\n              \"Views are not enabled. You can enable views by setting '%s' to true. Notice\"\n                  + \" additional cost may occur.\",\n              options.viewEnabledParamName()));\n    }\n  }\n\n  DatasetId toDatasetId(TableId tableId) {\n    return DatasetId.of(tableId.getProject(), tableId.getDataset());\n  }\n\n  public String getProjectId() {\n    return bigQuery.getOptions().getProjectId();\n  }\n\n  public Iterable<Dataset> listDatasets() {\n    return listDatasetsForProject(getProjectId());\n  }\n\n  public Iterable<Dataset> listDatasetsForProject(String projectId) {\n    return bigQuery.listDatasets(projectId).iterateAll();\n  }\n\n  public Iterable<Table> listTables(DatasetId datasetId, TableDefinition.Type... types) {\n    Set<TableDefinition.Type> allowedTypes = ImmutableSet.copyOf(types);\n    Iterable<Table> allTables = bigQuery.listTables(datasetId).iterateAll();\n    return StreamSupport.stream(allTables.spliterator(), false)\n        .filter(table -> allowedTypes.contains(table.getDefinition().getType()))\n        .collect(ImmutableList.toImmutableList());\n  }\n\n  public Table update(TableInfo table) {\n    return bigQuery.update(table);\n  }\n\n  public Job createAndWaitFor(JobConfiguration.Builder jobConfiguration) {\n    return createAndWaitFor(jobConfiguration.build());\n  }\n\n  public Job createAndWaitFor(JobConfiguration jobConfiguration) {\n    JobInfo jobInfo = JobInfo.of(jobConfiguration);\n    Job job = bigQuery.create(jobInfo);\n    Job returnedJob = null;\n\n    log.info(\"Submitted job {}. jobId: {}\", jobConfiguration, job.getJobId());\n    try {\n      Job completedJob = job.waitFor();\n      if (completedJob == null) {\n        throw new BigQueryException(\n            BaseHttpServiceException.UNKNOWN_CODE,\n            String.format(\"Failed to run the job [%s], got null back\", job));\n      }\n      if (completedJob.getStatus().getError() != null) {\n        throw new BigQueryException(\n            BaseHttpServiceException.UNKNOWN_CODE,\n            String.format(\n                \"Failed to run the job [%s], due to '%s'\", completedJob.getStatus().getError()));\n      }\n      return completedJob;\n    } catch (InterruptedException e) {\n      Thread.currentThread().interrupt();\n      throw new BigQueryException(\n          BaseHttpServiceException.UNKNOWN_CODE,\n          String.format(\"Failed to run the job [%s], task was interrupted\", job),\n          e);\n    }\n  }\n\n  Job create(JobInfo jobInfo) {\n    return bigQuery.create(jobInfo);\n  }\n\n  public TableResult query(String sql) {\n    try {\n      return bigQuery.query(\n          jobConfigurationFactory\n              .createQueryJobConfigurationBuilder(sql, Collections.emptyMap())\n              .build());\n    } catch (InterruptedException e) {\n      Thread.currentThread().interrupt();\n      throw new BigQueryException(\n          BaseHttpServiceException.UNKNOWN_CODE,\n          String.format(\"Failed to run the query [%s]\", sql),\n          e);\n    }\n  }\n\n  String createSql(\n      TableId table,\n      ImmutableList<String> requiredColumns,\n      String[] filters,\n      OptionalLong snapshotTimeMillis) {\n    String columns =\n        requiredColumns.isEmpty()\n            ? \"*\"\n            : requiredColumns.stream()\n                .map(column -> String.format(\"`%s`\", column))\n                .collect(Collectors.joining(\",\"));\n\n    return createSql(table, columns, filters, snapshotTimeMillis);\n  }\n\n  // assuming the SELECT part is properly formatted, can be used to call functions such as COUNT and\n  // SUM\n  String createSql(\n      TableId table, String formattedQuery, String[] filters, OptionalLong snapshotTimeMillis) {\n    String tableName = fullTableName(table);\n\n    String whereClause = createWhereClause(filters).map(clause -> \"WHERE \" + clause).orElse(\"\");\n\n    String snapshotTimeClause =\n        snapshotTimeMillis.isPresent()\n            ? String.format(\n                \"FOR SYSTEM_TIME AS OF TIMESTAMP_MILLIS(%d)\", snapshotTimeMillis.getAsLong())\n            : \"\";\n\n    return String.format(\n        \"SELECT %s FROM `%s` %s %s\", formattedQuery, tableName, whereClause, snapshotTimeClause);\n  }\n\n  public static String fullTableName(TableId tableId) {\n    if (tableId.getProject() == null) {\n      return String.format(\"%s.%s\", tableId.getDataset(), tableId.getTable());\n    } else {\n      return String.format(\n          \"%s.%s.%s\", tableId.getProject(), tableId.getDataset(), tableId.getTable());\n    }\n  }\n\n  public long calculateTableSize(TableId tableId, Optional<String> filter) {\n    return calculateTableSize(getTable(tableId), filter);\n  }\n\n  public long calculateTableSize(TableInfo tableInfo, Optional<String> filter) {\n    TableDefinition.Type type = tableInfo.getDefinition().getType();\n    if ((type == TableDefinition.Type.EXTERNAL || type == TableDefinition.Type.TABLE)\n        && !filter.isPresent()) {\n      if (isBigQueryNativeTable(tableInfo)\n          && tableInfo.getRequirePartitionFilter() != null\n          && tableInfo.getRequirePartitionFilter()) {\n        List<String> partitioningFields = getPartitionFields(tableInfo);\n        if (partitioningFields.isEmpty()) {\n          throw new IllegalStateException(\n              \"Could not find partitioning columns for table requiring partition filter: \"\n                  + tableInfo.getTableId());\n        }\n        String table = fullTableName(tableInfo.getTableId());\n        return getNumberOfRows(\n            String.format(\n                \"SELECT COUNT(*) from `%s` WHERE %s IS NOT NULL\",\n                table, partitioningFields.get(0)));\n      }\n      String table = fullTableName(tableInfo.getTableId());\n      return getNumberOfRows(String.format(\"SELECT COUNT(*) from `%s`\", table));\n    } else if (type == TableDefinition.Type.VIEW\n        || type == TableDefinition.Type.MATERIALIZED_VIEW\n        || ((type == TableDefinition.Type.TABLE || type == TableDefinition.Type.EXTERNAL)\n            && filter.isPresent())) {\n      // run a query\n      String table = fullTableName(tableInfo.getTableId());\n      String whereClause = filter.map(f -> \"WHERE \" + f).orElse(\"\");\n      return getNumberOfRows(String.format(\"SELECT COUNT(*) from `%s` %s\", table, whereClause));\n    } else {\n      throw new IllegalArgumentException(\n          String.format(\n              \"Unsupported table type %s for table %s\",\n              type, fullTableName(tableInfo.getTableId())));\n    }\n  }\n\n  private long getNumberOfRows(String sql) {\n    TableResult result = query(sql);\n    long numberOfRows = result.iterateAll().iterator().next().get(0).getLongValue();\n    return numberOfRows;\n  }\n\n  /**\n   * Runs the provided query on BigQuery and saves the result in a temporary table.\n   *\n   * @param querySql the query to be run\n   * @param expirationTimeInMinutes the expiration time of the temporary table\n   * @param queryParameterHelper the query parameter helper\n   * @param kmsKeyName optional KMS key name to be used for encrypting the temporary table\n   * @return a reference to the table\n   */\n  public TableInfo materializeQueryToTable(\n      String querySql,\n      int expirationTimeInMinutes,\n      QueryParameterHelper queryParameterHelper,\n      Optional<String> kmsKeyName) {\n    Optional<TableId> tableId =\n        materializationDataset.map(ignored -> createDestinationTableWithoutReference());\n    return materializeTable(\n        querySql, tableId, expirationTimeInMinutes, queryParameterHelper, kmsKeyName);\n  }\n\n  TableId createDestinationTableWithoutReference() {\n    return createDestinationTable(Optional.empty(), Optional.empty());\n  }\n\n  TableId createDestinationTable(\n      Optional<String> referenceProject, Optional<String> referenceDataset) {\n    String project = materializationProject.orElse(referenceProject.orElse(null));\n    String dataset = materializationDataset.orElse(referenceDataset.orElse(null));\n    String name =\n        String.format(\n            \"_bqc_%s\", UUID.randomUUID().toString().toLowerCase(Locale.ENGLISH).replace(\"-\", \"\"));\n    return project == null ? TableId.of(dataset, name) : TableId.of(project, dataset, name);\n  }\n\n  /**\n   * Runs the provided query on BigQuery and saves the result in a temporary table.\n   *\n   * @param querySql the query to be run\n   * @param additionalQueryJobLabels the labels to insert on the query job\n   * @return a reference to the table\n   */\n  public TableInfo materializeQueryToTable(\n      String querySql,\n      int expirationTimeInMinutes,\n      Map<String, String> additionalQueryJobLabels,\n      QueryParameterHelper queryParameterHelper) {\n    return materializeQueryToTable(\n        querySql,\n        expirationTimeInMinutes,\n        additionalQueryJobLabels,\n        queryParameterHelper,\n        Optional.empty());\n  }\n\n  /**\n   * Runs the provided query on BigQuery and saves the result in a temporary table.\n   *\n   * @param querySql the query to be run\n   * @param additionalQueryJobLabels the labels to insert on the query job\n   * @return a reference to the table\n   */\n  public TableInfo materializeQueryToTable(\n      String querySql,\n      int expirationTimeInMinutes,\n      Map<String, String> additionalQueryJobLabels,\n      QueryParameterHelper queryParameterHelper,\n      Optional<String> kmsKeyName) {\n    Optional<TableId> destinationTableId =\n        materializationDataset.map(ignored -> createDestinationTableWithoutReference());\n    TempTableBuilder tableBuilder =\n        new TempTableBuilder(\n            this,\n            querySql,\n            destinationTableId,\n            expirationTimeInMinutes,\n            jobConfigurationFactory,\n            additionalQueryJobLabels,\n            queryParameterHelper,\n            kmsKeyName);\n\n    return materializeTable(querySql, tableBuilder);\n  }\n\n  /**\n   * Runs the provided query on BigQuery and saves the result in a temporary table. This method is\n   * intended to be used to materialize views, so the view location (based on its TableId) is taken\n   * as a location for the temporary table, removing the need to set the materializationProject and\n   * materializationDataset properties\n   *\n   * @param querySql the query to be run\n   * @param viewId the view the query came from\n   * @return a reference to the table\n   */\n  public TableInfo materializeViewToTable(\n      String querySql, TableId viewId, int expirationTimeInMinutes) {\n    TableId tableId =\n        createDestinationTable(\n            Optional.ofNullable(viewId.getProject()), Optional.ofNullable(viewId.getDataset()));\n    return materializeTable(\n        querySql,\n        Optional.of(tableId),\n        expirationTimeInMinutes,\n        QueryParameterHelper.none(),\n        Optional.empty());\n  }\n\n  public Schema getQueryResultSchema(\n      String querySql,\n      Map<String, String> additionalQueryJobLabels,\n      QueryParameterHelper queryParameterHelper) {\n    return getQueryResultSchema(\n        querySql, additionalQueryJobLabels, queryParameterHelper, Optional.empty());\n  }\n\n  public Schema getQueryResultSchema(\n      String querySql,\n      Map<String, String> additionalQueryJobLabels,\n      QueryParameterHelper queryParameterHelper,\n      Optional<String> kmsKeyName) {\n    QueryJobConfiguration.Builder builder =\n        jobConfigurationFactory\n            .createParameterizedQueryJobConfigurationBuilder(\n                querySql, additionalQueryJobLabels, queryParameterHelper)\n            .setDryRun(true);\n    kmsKeyName.ifPresent(\n        k ->\n            builder.setDestinationEncryptionConfiguration(\n                EncryptionConfiguration.newBuilder().setKmsKeyName(k).build()));\n    JobInfo jobInfo = JobInfo.of(builder.build());\n\n    log.info(\"running query dryRun {}\", querySql);\n    JobInfo completedJobInfo = create(jobInfo);\n    if (completedJobInfo.getStatus().getError() != null) {\n      throw BigQueryUtil.convertToBigQueryException(completedJobInfo.getStatus().getError());\n    }\n    JobStatistics.QueryStatistics queryStatistics = completedJobInfo.getStatistics();\n    return queryStatistics.getSchema();\n  }\n\n  private TableInfo materializeTable(\n      String querySql,\n      Optional<TableId> destinationTableId,\n      int expirationTimeInMinutes,\n      QueryParameterHelper queryParameterHelper) {\n    return materializeTable(\n        querySql,\n        destinationTableId,\n        expirationTimeInMinutes,\n        queryParameterHelper,\n        Optional.empty());\n  }\n\n  private TableInfo materializeTable(\n      String querySql,\n      Optional<TableId> destinationTableId,\n      int expirationTimeInMinutes,\n      QueryParameterHelper queryParameterHelper,\n      Optional<String> kmsKeyName) {\n    try {\n      return destinationTableCache.get(\n          querySql,\n          new TempTableBuilder(\n              this,\n              querySql,\n              destinationTableId,\n              expirationTimeInMinutes,\n              jobConfigurationFactory,\n              Collections.emptyMap(),\n              queryParameterHelper,\n              kmsKeyName));\n    } catch (Exception e) {\n      throw new BigQueryConnectorException(\n          BigQueryErrorCode.BIGQUERY_VIEW_DESTINATION_TABLE_CREATION_FAILED,\n          String.format(\n              \"Error creating destination table using the following query: [%s]\", querySql),\n          e);\n    }\n  }\n\n  private TableInfo materializeTable(String querySql, TempTableBuilder tmpTableBuilder) {\n    try {\n      return destinationTableCache.get(querySql, tmpTableBuilder);\n    } catch (Exception e) {\n      throw new BigQueryConnectorException(\n          BigQueryErrorCode.BIGQUERY_VIEW_DESTINATION_TABLE_CREATION_FAILED,\n          String.format(\n              \"Error creating destination table using the following query: [%s]\", querySql),\n          e);\n    }\n  }\n\n  public JobStatistics.LoadStatistics loadDataIntoTable(\n      LoadDataOptions options,\n      List<String> sourceUris,\n      FormatOptions formatOptions,\n      JobInfo.WriteDisposition writeDisposition,\n      Optional<Schema> schema,\n      TableId destinationTable) {\n    LoadJobConfiguration.Builder jobConfiguration =\n        jobConfigurationFactory\n            .createLoadJobConfigurationBuilder(destinationTable, sourceUris, formatOptions)\n            .setCreateDisposition(JobInfo.CreateDisposition.CREATE_IF_NEEDED)\n            .setWriteDisposition(writeDisposition);\n\n    if (schema.isPresent()) {\n      jobConfiguration.setSchema(schema.get());\n    } else {\n      // no schema, probably table does not exist\n      jobConfiguration.setAutodetect(true);\n    }\n\n    options.getCreateDisposition().ifPresent(jobConfiguration::setCreateDisposition);\n\n    if (options.getPartitionField().isPresent() || options.getPartitionType().isPresent()) {\n      TimePartitioning.Builder timePartitionBuilder =\n          TimePartitioning.newBuilder(options.getPartitionTypeOrDefault());\n      options.getPartitionExpirationMs().ifPresent(timePartitionBuilder::setExpirationMs);\n      options\n          .getPartitionRequireFilter()\n          .ifPresent(timePartitionBuilder::setRequirePartitionFilter);\n      options.getPartitionField().ifPresent(timePartitionBuilder::setField);\n      jobConfiguration.setTimePartitioning(timePartitionBuilder.build());\n    }\n    if (options.getPartitionField().isPresent() && options.getPartitionRange().isPresent()) {\n      RangePartitioning.Builder rangePartitionBuilder = RangePartitioning.newBuilder();\n      options.getPartitionField().ifPresent(rangePartitionBuilder::setField);\n      options.getPartitionRange().ifPresent(rangePartitionBuilder::setRange);\n      jobConfiguration.setRangePartitioning(rangePartitionBuilder.build());\n    }\n\n    options\n        .getClusteredFields()\n        .ifPresent(\n            clusteredFields -> {\n              Clustering clustering = Clustering.newBuilder().setFields(clusteredFields).build();\n              jobConfiguration.setClustering(clustering);\n            });\n\n    if (options.isUseAvroLogicalTypes()) {\n      jobConfiguration.setUseAvroLogicalTypes(true);\n    }\n\n    if (!options.getDecimalTargetTypes().isEmpty()) {\n      jobConfiguration.setDecimalTargetTypes(options.getDecimalTargetTypes());\n    }\n\n    if (!options.getLoadSchemaUpdateOptions().isEmpty()) {\n      jobConfiguration.setSchemaUpdateOptions(options.getLoadSchemaUpdateOptions());\n    }\n\n    options\n        .getKmsKeyName()\n        .ifPresent(\n            destinationTableKmsKeyName ->\n                jobConfiguration.setDestinationEncryptionConfiguration(\n                    EncryptionConfiguration.newBuilder()\n                        .setKmsKeyName(destinationTableKmsKeyName)\n                        .build()));\n\n    Job finishedJob = null;\n    try {\n      finishedJob = createAndWaitFor(jobConfiguration);\n\n      if (finishedJob.getStatus().getError() != null) {\n        throw new BigQueryException(\n            BaseHttpServiceException.UNKNOWN_CODE,\n            String.format(\n                \"Failed to load to %s in job %s. BigQuery error was '%s'\",\n                BigQueryUtil.friendlyTableName(options.getTableId()),\n                finishedJob.getJobId(),\n                finishedJob.getStatus().getError().getMessage()),\n            finishedJob.getStatus().getError());\n      } else {\n        log.info(\n            \"Done loading to {}. jobId: {}\",\n            BigQueryUtil.friendlyTableName(options.getTableId()),\n            finishedJob.getJobId());\n        return finishedJob.getStatistics();\n      }\n    } catch (Exception e) {\n      if (finishedJob == null) {\n        log.error(\n            \"Unable to create the job to load to {}\",\n            BigQueryUtil.friendlyTableName(options.getTableId()));\n        throw e;\n      }\n      TimePartitioning.Type partitionType = options.getPartitionTypeOrDefault();\n\n      if (e.getMessage()\n              .equals(\n                  String.format(\"Cannot output %s partitioned data in LegacySQL\", partitionType))\n          && formatOptions.equals(FormatOptions.parquet())) {\n        throw new BigQueryException(\n            0,\n            String.format(\n                \"%s time partitioning is not available \"\n                    + \"for load jobs from PARQUET in this project yet. Please replace the intermediate \"\n                    + \"format to AVRO or contact your account manager to enable this.\",\n                partitionType),\n            e);\n      }\n      JobId jobId = finishedJob.getJobId();\n      log.warn(\n          String.format(\n              \"Failed to load the data into BigQuery, JobId for debug purposes is [%s:%s.%s]\",\n              jobId.getProject(), jobId.getLocation(), jobId.getJob()));\n      throw new BigQueryException(0, \"Problem loading data into BigQuery\", e);\n    }\n  }\n\n  /** Creates the table with the given schema, only if it does not exist yet. */\n  public void createTableIfNeeded(\n      TableId tableId, Schema bigQuerySchema, CreateTableOptions options) {\n    if (!tableExists(tableId)) {\n      createTable(tableId, bigQuerySchema, options);\n    }\n  }\n\n  /**\n   * Retrieves the table's metadata from the REST client, may contain more information than the\n   * regular one\n   */\n  public Optional<com.google.api.services.bigquery.model.Table> getRestTable(TableId tableId) {\n    try {\n      // tableId.getProject() may be null, so we replacing it with the default project id\n      String project =\n          Optional.ofNullable(tableId.getProject())\n              .orElseGet(() -> bigQuery.getOptions().getProjectId());\n      return Optional.ofNullable(\n          bigqueryRestClient\n              .tables()\n              .get(project, tableId.getDataset(), tableId.getTable())\n              .execute());\n    } catch (IOException e) {\n      throw new UncheckedIOException(e);\n    }\n  }\n\n  /** Returns true f the dataset exists, false otherwise. */\n  public boolean datasetExists(DatasetId datasetId) {\n    return bigQuery.getDataset(datasetId) != null;\n  }\n\n  public void createDataset(DatasetId datasetId, Map<String, String> metadata) {\n    DatasetInfo.Builder datasetInfo = DatasetInfo.newBuilder(datasetId);\n    // In a non-catalog scenario, both BigQueryOptions.quotaProjectId and\n    // BigQueryOptions.projectId\n    // will be set to the parent projectId, as before.\n    Optional.ofNullable(bigQuery.getOptions().getLocation()).ifPresent(datasetInfo::setLocation);\n    if (metadata != null && !metadata.isEmpty()) {\n      Optional.ofNullable(metadata.get(\"bigquery_location\")).ifPresent(datasetInfo::setLocation);\n      Optional.ofNullable(metadata.get(\"comment\")).ifPresent(datasetInfo::setDescription);\n    }\n    bigQuery.create(datasetInfo.build());\n  }\n\n  public boolean deleteDataset(DatasetId datasetId, boolean cascade) {\n    BigQuery.DatasetDeleteOption[] options =\n        cascade\n            ? new BigQuery.DatasetDeleteOption[] {BigQuery.DatasetDeleteOption.deleteContents()}\n            : new BigQuery.DatasetDeleteOption[] {};\n    return bigQuery.delete(datasetId, options);\n  }\n\n  public DatasetInfo getDataset(DatasetId datasetId) {\n    return bigQuery.getDataset(datasetId);\n  }\n\n  public interface ReadTableOptions {\n    TableId tableId();\n\n    Optional<String> query();\n\n    boolean viewsEnabled();\n\n    String viewEnabledParamName();\n\n    int expirationTimeInMinutes();\n\n    QueryParameterHelper getQueryParameterHelper();\n\n    default Optional<String> getKmsKeyName() {\n      return Optional.empty();\n    }\n  }\n\n  public interface LoadDataOptions {\n    TableId getTableId();\n\n    Optional<JobInfo.CreateDisposition> getCreateDisposition();\n\n    Optional<String> getPartitionField();\n\n    Optional<TimePartitioning.Type> getPartitionType();\n\n    Optional<RangePartitioning.Range> getPartitionRange();\n\n    TimePartitioning.Type getPartitionTypeOrDefault();\n\n    OptionalLong getPartitionExpirationMs();\n\n    Optional<Boolean> getPartitionRequireFilter();\n\n    Optional<ImmutableList<String>> getClusteredFields();\n\n    boolean isUseAvroLogicalTypes();\n\n    List<String> getDecimalTargetTypes();\n\n    List<JobInfo.SchemaUpdateOption> getLoadSchemaUpdateOptions();\n\n    boolean getEnableModeCheckForSchemaFields();\n\n    Optional<String> getKmsKeyName();\n  }\n\n  public interface CreateTableOptions {\n\n    default Optional<String> getKmsKeyName() {\n      return Optional.empty();\n    }\n\n    default Map<String, String> getBigQueryTableLabels() {\n      return Collections.emptyMap();\n    }\n\n    default Optional<ImmutableList<String>> getClusteredFields() {\n      return Optional.empty();\n    }\n\n    static CreateTableOptions of(\n        final Optional<String> kmsKeyName,\n        final Map<String, String> bigQueryTableLabels,\n        final Optional<ImmutableList<String>> clusteredFields) {\n      return new CreateTableOptions() {\n        @Override\n        public Optional<String> getKmsKeyName() {\n          return kmsKeyName;\n        }\n\n        @Override\n        public Map<String, String> getBigQueryTableLabels() {\n          return bigQueryTableLabels;\n        }\n\n        @Override\n        public Optional<ImmutableList<String>> getClusteredFields() {\n          return clusteredFields;\n        }\n      };\n    }\n  }\n\n  static class TempTableBuilder implements Callable<TableInfo> {\n    final BigQueryClient bigQueryClient;\n    final String querySql;\n    final Optional<TableId> tempTable;\n    final int expirationTimeInMinutes;\n    final JobConfigurationFactory jobConfigurationFactory;\n    final Map<String, String> additionalQueryJobLabels;\n    final QueryParameterHelper queryParameterHelper;\n    final Optional<String> kmsKeyName;\n\n    TempTableBuilder(\n        BigQueryClient bigQueryClient,\n        String querySql,\n        Optional<TableId> tempTable,\n        int expirationTimeInMinutes,\n        JobConfigurationFactory jobConfigurationFactory,\n        Map<String, String> additionalQueryJobLabels,\n        QueryParameterHelper queryParameterHelper) {\n      this(\n          bigQueryClient,\n          querySql,\n          tempTable,\n          expirationTimeInMinutes,\n          jobConfigurationFactory,\n          additionalQueryJobLabels,\n          queryParameterHelper,\n          Optional.empty());\n    }\n\n    TempTableBuilder(\n        BigQueryClient bigQueryClient,\n        String querySql,\n        Optional<TableId> tempTable,\n        int expirationTimeInMinutes,\n        JobConfigurationFactory jobConfigurationFactory,\n        Map<String, String> additionalQueryJobLabels,\n        QueryParameterHelper queryParameterHelper,\n        Optional<String> kmsKeyName) {\n      this.bigQueryClient = bigQueryClient;\n      this.querySql = querySql;\n      this.tempTable = tempTable;\n      this.expirationTimeInMinutes = expirationTimeInMinutes;\n      this.jobConfigurationFactory = jobConfigurationFactory;\n      this.additionalQueryJobLabels = additionalQueryJobLabels;\n      this.queryParameterHelper = queryParameterHelper;\n      this.kmsKeyName = kmsKeyName;\n    }\n\n    @Override\n    public TableInfo call() {\n      return createTableFromQuery();\n    }\n\n    TableInfo createTableFromQuery() {\n      if (tempTable.isPresent()) {\n        log.info(\"DestinationTable is {}\", tempTable.get());\n      } else {\n        log.info(\"DestinationTable is automatically generated\");\n      }\n      QueryJobConfiguration.Builder queryJobConfigurationBuilder =\n          jobConfigurationFactory.createParameterizedQueryJobConfigurationBuilder(\n              querySql, additionalQueryJobLabels, queryParameterHelper);\n      tempTable.ifPresent(queryJobConfigurationBuilder::setDestinationTable);\n      kmsKeyName.ifPresent(\n          k ->\n              queryJobConfigurationBuilder.setDestinationEncryptionConfiguration(\n                  EncryptionConfiguration.newBuilder().setKmsKeyName(k).build()));\n\n      JobInfo jobInfo = JobInfo.of(queryJobConfigurationBuilder.build());\n\n      log.info(\"running query [{}]\", querySql);\n      JobInfo completedJobInfo = bigQueryClient.waitForJob(bigQueryClient.create(jobInfo));\n      if (completedJobInfo.getStatus().getError() != null) {\n        throw BigQueryUtil.convertToBigQueryException(completedJobInfo.getStatus().getError());\n      }\n      if (tempTable.isPresent()) {\n        // Registering a cleanup job\n        CLEANUP_JOBS.add(() -> bigQueryClient.deleteTable(tempTable.get()));\n        // add expiration time to the table\n        TableInfo createdTable = bigQueryClient.getTable(tempTable.get());\n        long expirationTime =\n            createdTable.getCreationTime() + TimeUnit.MINUTES.toMillis(expirationTimeInMinutes);\n        Table updatedTable =\n            bigQueryClient.update(\n                createdTable.toBuilder().setExpirationTime(expirationTime).build());\n        return updatedTable;\n      }\n      // temp table was auto generated\n      return bigQueryClient.getTable(\n          ((QueryJobConfiguration) completedJobInfo.getConfiguration()).getDestinationTable());\n    }\n\n    Job waitForJob(Job job) {\n      try {\n        log.info(\n            \"Job submitted : {}, {},  Job type : {}\",\n            job.getJobId(),\n            job.getSelfLink(),\n            job.getConfiguration().getType());\n        Job completedJob = job.waitFor();\n        log.info(\n            \"Job has finished {} creationTime : {}, startTime : {}, endTime : {} \",\n            completedJob.getJobId(),\n            completedJob.getStatistics().getCreationTime(),\n            completedJob.getStatistics().getStartTime(),\n            completedJob.getStatistics().getEndTime());\n        log.debug(\"Job has finished. {}\", completedJob);\n        return completedJob;\n      } catch (InterruptedException e) {\n        Thread.currentThread().interrupt();\n        throw new BigQueryException(\n            BaseServiceException.UNKNOWN_CODE,\n            String.format(\"Job %s has been interrupted\", job.getJobId()),\n            e);\n      }\n    }\n  }\n\n  static class JobConfigurationFactory {\n    private final ImmutableMap<String, String> labels;\n    private final Priority queryJobPriority;\n\n    public JobConfigurationFactory(Map<String, String> labels, Priority queryJobPriority) {\n      this.labels = ImmutableMap.copyOf(labels);\n      this.queryJobPriority = queryJobPriority;\n    }\n\n    QueryJobConfiguration.Builder createQueryJobConfigurationBuilder(\n        String querySql, Map<String, String> additionalQueryJobLabels) {\n      return createParameterizedQueryJobConfigurationBuilder(\n          querySql, additionalQueryJobLabels, QueryParameterHelper.none());\n    }\n\n    QueryJobConfiguration.Builder createParameterizedQueryJobConfigurationBuilder(\n        String querySql,\n        Map<String, String> additionalQueryJobLabels,\n        QueryParameterHelper queryParameterHelper) {\n\n      QueryJobConfiguration.Builder builder =\n          QueryJobConfiguration.newBuilder(querySql).setPriority(queryJobPriority);\n\n      queryParameterHelper.configureBuilder(builder);\n\n      Map<String, String> allLabels = new HashMap<>(additionalQueryJobLabels);\n\n      if (labels != null && !labels.isEmpty()) {\n        allLabels.putAll(labels);\n      }\n\n      builder.setLabels(allLabels);\n      return builder;\n    }\n\n    LoadJobConfiguration.Builder createLoadJobConfigurationBuilder(\n        TableId tableId, List<String> sourceUris, FormatOptions formatOptions) {\n      LoadJobConfiguration.Builder builder =\n          LoadJobConfiguration.newBuilder(tableId, sourceUris, formatOptions);\n      if (labels != null && !labels.isEmpty()) {\n        builder.setLabels(labels);\n      }\n      return builder;\n    }\n  }\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/BigQueryClientFactory.java",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.bigquery.connector.common;\n\nimport com.google.api.core.ApiFunction;\nimport com.google.api.gax.core.FixedCredentialsProvider;\nimport com.google.api.gax.grpc.ChannelPoolSettings;\nimport com.google.api.gax.grpc.InstantiatingGrpcChannelProvider;\nimport com.google.api.gax.rpc.HeaderProvider;\nimport com.google.api.gax.rpc.UnaryCallSettings;\nimport com.google.auth.Credentials;\nimport com.google.auth.oauth2.ExternalAccountCredentials;\nimport com.google.auth.oauth2.ImpersonatedCredentials;\nimport com.google.cloud.bigquery.storage.v1.BigQueryReadClient;\nimport com.google.cloud.bigquery.storage.v1.BigQueryReadSettings;\nimport com.google.cloud.bigquery.storage.v1.BigQueryWriteClient;\nimport com.google.cloud.bigquery.storage.v1.BigQueryWriteSettings;\nimport com.google.cloud.bigquery.storage.v1.CreateReadSessionRequest;\nimport com.google.cloud.bigquery.storage.v1.ReadSession;\nimport com.google.common.annotations.VisibleForTesting;\nimport com.google.common.base.Objects;\nimport com.google.inject.Inject;\nimport io.grpc.ManagedChannelBuilder;\nimport io.grpc.netty.NettyChannelBuilder;\nimport java.io.IOException;\nimport java.io.Serializable;\nimport java.io.UncheckedIOException;\nimport java.util.Arrays;\nimport java.util.Calendar;\nimport java.util.HashMap;\nimport java.util.Map;\nimport java.util.Optional;\nimport org.slf4j.Logger;\nimport org.slf4j.LoggerFactory;\nimport org.threeten.bp.Duration;\n\n/**\n * Since Guice recommends to avoid injecting closeable resources (see\n * https://github.com/google/guice/wiki/Avoid-Injecting-Closable-Resources), this factory creates\n * and caches clients and also closes them during JVM shutdown.\n */\npublic class BigQueryClientFactory implements Serializable {\n\n  private static final long serialVersionUID = 7960760163401041247L;\n\n  private static final Logger log = LoggerFactory.getLogger(BigQueryClientFactory.class);\n  private static final Map<BigQueryClientFactory, BigQueryReadClient> readClientMap =\n      new HashMap<>();\n  private static final Map<BigQueryClientFactory, BigQueryWriteClient> writeClientMap =\n      new HashMap<>();\n\n  // using the user agent as HeaderProvider is not serializable\n  private final HeaderProvider headerProvider;\n  private final BigQueryConfig bqConfig;\n\n  // GoogleCredentials are not compatible with Kryo serialization, so we serialize and deserialize\n  // when needed\n  private final byte[] serializedCredentials;\n  private transient volatile Credentials credentials;\n\n  private int cachedHashCode = 0;\n  private String universeDomain;\n\n  @Inject\n  public BigQueryClientFactory(\n      BigQueryCredentialsSupplier bigQueryCredentialsSupplier,\n      HeaderProvider headerProvider,\n      BigQueryConfig bqConfig) {\n    // using Guava's optional as it is serializable\n    this.credentials = bigQueryCredentialsSupplier.getCredentials();\n    this.universeDomain = bigQueryCredentialsSupplier.getUniverseDomain();\n    this.serializedCredentials = BigQueryUtil.getCredentialsByteArray(credentials);\n    this.headerProvider = headerProvider;\n    this.bqConfig = bqConfig;\n  }\n\n  public BigQueryReadClient getBigQueryReadClient() {\n    synchronized (readClientMap) {\n      if (!readClientMap.containsKey(this)) {\n        BigQueryReadClient bigQueryReadClient =\n            createBigQueryReadClient(\n                this.bqConfig.getBigQueryStorageGrpcEndpoint(),\n                this.bqConfig.getChannelPoolSize(),\n                this.bqConfig.getFlowControlWindowBytes());\n        Runtime.getRuntime()\n            .addShutdownHook(new Thread(() -> shutdownBigQueryReadClient(bigQueryReadClient)));\n        readClientMap.put(this, bigQueryReadClient);\n      }\n    }\n\n    return readClientMap.get(this);\n  }\n\n  public BigQueryWriteClient getBigQueryWriteClient() {\n    synchronized (writeClientMap) {\n      if (!writeClientMap.containsKey(this)) {\n        BigQueryWriteClient bigQueryWriteClient =\n            createBigQueryWriteClient(this.bqConfig.getBigQueryStorageGrpcEndpoint());\n        Runtime.getRuntime()\n            .addShutdownHook(new Thread(() -> shutdownBigQueryWriteClient(bigQueryWriteClient)));\n        writeClientMap.put(this, bigQueryWriteClient);\n      }\n    }\n\n    return writeClientMap.get(this);\n  }\n\n  @Override\n  public int hashCode() {\n    // caching the hash code, as we use it 3 times (potentially) get*Client() method\n    if (cachedHashCode == 0) {\n      // Here, credentials is an instance of GoogleCredentials which can be one out of\n      // GoogleCredentials, UserCredentials, ServiceAccountCredentials, ExternalAccountCredentials\n      // or ImpersonatedCredentials (See the class BigQueryCredentialsSupplier which supplies these\n      // Credentials). Subclasses of the abstract class ExternalAccountCredentials do not have the\n      // hashCode method defined on them and hence we get the byte array of the\n      // ExternalAccountCredentials first and then compare their hashCodes.\n      if (getCredentials() instanceof ExternalAccountCredentials) {\n        cachedHashCode =\n            Objects.hashCode(\n                Arrays.hashCode(serializedCredentials),\n                headerProvider,\n                bqConfig.getClientCreationHashCode());\n      } else {\n        cachedHashCode =\n            Objects.hashCode(\n                getCredentials(), headerProvider, bqConfig.getClientCreationHashCode());\n      }\n    }\n    return cachedHashCode;\n  }\n\n  @Override\n  public boolean equals(Object o) {\n    if (this == o) {\n      return true;\n    }\n    if (!(o instanceof BigQueryClientFactory)) {\n      return false;\n    }\n\n    BigQueryClientFactory that = (BigQueryClientFactory) o;\n\n    if (Objects.equal(headerProvider, that.headerProvider)\n        && bqConfig.areClientCreationConfigsEqual(that.bqConfig)) {\n      // Here, credentials and that.credentials are instances of GoogleCredentials which can be one\n      // of GoogleCredentials, UserCredentials, ServiceAccountCredentials,\n      // ExternalAccountCredentials or ImpersonatedCredentials (See the class\n      // BigQueryCredentialsSupplier which supplies these Credentials). Subclasses of\n      // ExternalAccountCredentials do not have an equals method defined on them and hence we\n      // serialize and compare byte arrays if either of the credentials are instances of\n      // ExternalAccountCredentials\n      return BigQueryUtil.areCredentialsEqual(getCredentials(), that.getCredentials());\n    }\n\n    return false;\n  }\n\n  @VisibleForTesting\n  Credentials getCredentials() {\n    if (credentials == null) {\n      synchronized (this) {\n        if (credentials == null) {\n          credentials = BigQueryUtil.getCredentialsFromByteArray(serializedCredentials);\n          if (credentials instanceof ImpersonatedCredentials) {\n            // ImpersonatedCredentials does not serialize the internal calendar object, so we're\n            // mimicking the builder's behaviour\n            credentials =\n                ((ImpersonatedCredentials) credentials)\n                    .createWithCustomCalendar(Calendar.getInstance());\n          }\n        }\n      }\n    }\n    return credentials;\n  }\n\n  private BigQueryReadClient createBigQueryReadClient(\n      Optional<String> endpoint, int channelPoolSize, Optional<Integer> flowControlWindow) {\n    try {\n      InstantiatingGrpcChannelProvider.Builder transportBuilder = createTransportBuilder(endpoint);\n      log.info(\"Channel pool size set to {}\", channelPoolSize);\n      transportBuilder.setChannelPoolSettings(ChannelPoolSettings.staticallySized(channelPoolSize));\n      if (flowControlWindow.isPresent()) {\n        ApiFunction<ManagedChannelBuilder, ManagedChannelBuilder> channelConfigurator =\n            (ManagedChannelBuilder channelBuilder) -> {\n              if (channelBuilder instanceof NettyChannelBuilder) {\n                log.info(\"Flow control window for netty set to {} bytes\", flowControlWindow.get());\n                return ((NettyChannelBuilder) channelBuilder)\n                    .flowControlWindow(flowControlWindow.get());\n              } else {\n                log.info(\"Flow control window configured but underlying channel is not Netty\");\n              }\n              return channelBuilder;\n            };\n\n        transportBuilder = transportBuilder.setChannelConfigurator(channelConfigurator);\n      }\n      BigQueryReadSettings.Builder clientSettings =\n          BigQueryReadSettings.newBuilder()\n              .setTransportChannelProvider(transportBuilder.build())\n              .setCredentialsProvider(FixedCredentialsProvider.create(getCredentials()))\n              .setUniverseDomain(universeDomain);\n\n      bqConfig\n          .getCreateReadSessionTimeoutInSeconds()\n          .ifPresent(\n              timeoutInSeconds -> {\n                // Setting the read session timeout only if the user provided one using options or\n                // using the default timeout\n                UnaryCallSettings.Builder<CreateReadSessionRequest, ReadSession>\n                    createReadSessionSettings =\n                        clientSettings.getStubSettingsBuilder().createReadSessionSettings();\n                Duration timeout = Duration.ofSeconds(timeoutInSeconds);\n                createReadSessionSettings.setRetrySettings(\n                    createReadSessionSettings\n                        .getRetrySettings()\n                        .toBuilder()\n                        .setInitialRpcTimeout(timeout)\n                        .setMaxRpcTimeout(timeout)\n                        .setTotalTimeout(timeout)\n                        .build());\n              });\n      return BigQueryReadClient.create(clientSettings.build());\n    } catch (IOException e) {\n      throw new UncheckedIOException(\"Error creating BigQueryStorageReadClient\", e);\n    }\n  }\n\n  private BigQueryWriteClient createBigQueryWriteClient(Optional<String> endpoint) {\n    try {\n      InstantiatingGrpcChannelProvider.Builder transportBuilder = createTransportBuilder(endpoint);\n      BigQueryWriteSettings.Builder clientSettings =\n          BigQueryWriteSettings.newBuilder()\n              .setTransportChannelProvider(transportBuilder.build())\n              .setCredentialsProvider(FixedCredentialsProvider.create(getCredentials()))\n              .setUniverseDomain(universeDomain);\n      return BigQueryWriteClient.create(clientSettings.build());\n    } catch (IOException e) {\n      throw new BigQueryConnectorException(\"Error creating BigQueryWriteClient\", e);\n    }\n  }\n\n  private InstantiatingGrpcChannelProvider.Builder createTransportBuilder(\n      Optional<String> endpoint) {\n\n    InstantiatingGrpcChannelProvider.Builder transportBuilder =\n        BigQueryReadSettings.defaultGrpcTransportProviderBuilder()\n            .setHeaderProvider(headerProvider);\n    setProxyConfig(transportBuilder);\n    endpoint.ifPresent(\n        e -> {\n          log.info(\"Overriding endpoint to: \", e);\n          transportBuilder.setEndpoint(e);\n        });\n    return transportBuilder;\n  }\n\n  private void setProxyConfig(InstantiatingGrpcChannelProvider.Builder transportBuilder) {\n    BigQueryProxyConfig proxyConfig = bqConfig.getBigQueryProxyConfig();\n    if (proxyConfig.getProxyUri().isPresent()) {\n      transportBuilder.setChannelConfigurator(\n          BigQueryProxyTransporterBuilder.createGrpcChannelConfigurator(\n              proxyConfig.getProxyUri(),\n              proxyConfig.getProxyUsername(),\n              proxyConfig.getProxyPassword()));\n    }\n  }\n\n  private void shutdownBigQueryReadClient(BigQueryReadClient bigQueryReadClient) {\n    if (bigQueryReadClient != null && !bigQueryReadClient.isShutdown()) {\n      bigQueryReadClient.shutdown();\n    }\n  }\n\n  private void shutdownBigQueryWriteClient(BigQueryWriteClient bigQueryWriteClient) {\n    if (bigQueryWriteClient != null && !bigQueryWriteClient.isShutdown()) {\n      bigQueryWriteClient.shutdown();\n    }\n  }\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/BigQueryClientFactoryConfig.java",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.bigquery.connector.common;\n\nimport com.google.api.gax.retrying.RetrySettings;\nimport com.google.cloud.bigquery.QueryJobConfiguration;\nimport com.google.cloud.bigquery.QueryJobConfiguration.Priority;\nimport com.google.common.base.Objects;\nimport com.google.common.collect.ImmutableList;\nimport com.google.common.collect.ImmutableMap;\nimport java.util.Map;\nimport java.util.Optional;\nimport java.util.Set;\n\npublic class BigQueryClientFactoryConfig implements BigQueryConfig {\n\n  private final Optional<String> accessTokenProviderFQCN;\n  private final Optional<String> accessTokenProviderConfig;\n  private final Optional<String> credentialsKey;\n  private final Optional<String> credentialsFile;\n  private final Optional<String> accessToken;\n  private final String loggedInUserName;\n  private final Set<String> loggedInUserGroups;\n  private final Optional<String> impersonationServiceAccount;\n  private final Optional<Map<String, String>> impersonationServiceAccountsForUsers;\n  private final Optional<Map<String, String>> impersonationServiceAccountsForGroups;\n  private final Optional<ImmutableList<String>> credentialsScopes;\n  private final String parentProjectId;\n  private final Optional<String> catalogProjectId;\n  private final Optional<String> catalogLocation;\n  private final boolean useParentProjectForMetadataOperations;\n  private final boolean viewsEnabled;\n  private final Optional<String> materializationProject;\n  private final Optional<String> materializationDataset;\n  private final int bigQueryClientConnectTimeout;\n  private final int bigQueryClientReadTimeout;\n  private final RetrySettings bigQueryClientRetrySettings;\n  private final BigQueryProxyConfig bigQueryProxyConfig;\n  private final Optional<String> bigQueryStorageGrpcEndpoint;\n  private final Optional<String> bigQueryHttpEndpoint;\n  private final int cacheExpirationTimeInMinutes;\n  private final ImmutableMap<String, String> bigQueryJobLabels;\n  private final Optional<Long> createReadSessionTimeoutInSeconds;\n  private final int channelPoolSize;\n  private final Optional<Integer> flowControlWindowBytes;\n  private final QueryJobConfiguration.Priority queryJobPriority;\n  private final long bigQueryJobTimeoutInMinutes;\n\n  BigQueryClientFactoryConfig(BigQueryConfig bigQueryConfig, long bigQueryJobTimeoutInMinutes) {\n    this.accessTokenProviderFQCN = bigQueryConfig.getAccessTokenProviderFQCN();\n    this.accessTokenProviderConfig = bigQueryConfig.getAccessTokenProviderConfig();\n    this.credentialsKey = bigQueryConfig.getCredentialsKey();\n    this.credentialsFile = bigQueryConfig.getCredentialsFile();\n    this.accessToken = bigQueryConfig.getAccessToken();\n    this.loggedInUserName = bigQueryConfig.getLoggedInUserName();\n    this.loggedInUserGroups = bigQueryConfig.getLoggedInUserGroups();\n    this.impersonationServiceAccountsForUsers =\n        bigQueryConfig.getImpersonationServiceAccountsForUsers();\n    this.impersonationServiceAccountsForGroups =\n        bigQueryConfig.getImpersonationServiceAccountsForGroups();\n    this.impersonationServiceAccount = bigQueryConfig.getImpersonationServiceAccount();\n    this.credentialsScopes = bigQueryConfig.getCredentialsScopes();\n    this.parentProjectId = bigQueryConfig.getParentProjectId();\n    this.useParentProjectForMetadataOperations =\n        bigQueryConfig.useParentProjectForMetadataOperations();\n    this.viewsEnabled = bigQueryConfig.isViewsEnabled();\n    this.catalogProjectId = bigQueryConfig.getCatalogProjectId();\n    this.catalogLocation = bigQueryConfig.getCatalogLocation();\n\n    this.materializationProject = bigQueryConfig.getMaterializationProject();\n    this.materializationDataset = bigQueryConfig.getMaterializationDataset();\n    this.bigQueryClientConnectTimeout = bigQueryConfig.getBigQueryClientConnectTimeout();\n    this.bigQueryClientReadTimeout = bigQueryConfig.getBigQueryClientReadTimeout();\n    this.bigQueryClientRetrySettings = bigQueryConfig.getBigQueryClientRetrySettings();\n    this.bigQueryProxyConfig = bigQueryConfig.getBigQueryProxyConfig();\n    this.bigQueryStorageGrpcEndpoint = bigQueryConfig.getBigQueryStorageGrpcEndpoint();\n    this.bigQueryHttpEndpoint = bigQueryConfig.getBigQueryHttpEndpoint();\n    this.cacheExpirationTimeInMinutes = bigQueryConfig.getCacheExpirationTimeInMinutes();\n    this.bigQueryJobLabels = bigQueryConfig.getBigQueryJobLabels();\n    this.createReadSessionTimeoutInSeconds = bigQueryConfig.getCreateReadSessionTimeoutInSeconds();\n    this.channelPoolSize = bigQueryConfig.getChannelPoolSize();\n    this.flowControlWindowBytes = bigQueryConfig.getFlowControlWindowBytes();\n    this.queryJobPriority = bigQueryConfig.getQueryJobPriority();\n    this.bigQueryJobTimeoutInMinutes = bigQueryJobTimeoutInMinutes;\n  }\n\n  @Override\n  public Optional<String> getAccessTokenProviderFQCN() {\n    return accessTokenProviderFQCN;\n  }\n\n  @Override\n  public Optional<String> getAccessTokenProviderConfig() {\n    return accessTokenProviderConfig;\n  }\n\n  @Override\n  public Optional<String> getCredentialsKey() {\n    return credentialsKey;\n  }\n\n  @Override\n  public Optional<String> getCredentialsFile() {\n    return credentialsFile;\n  }\n\n  @Override\n  public Optional<String> getAccessToken() {\n    return accessToken;\n  }\n\n  @Override\n  public String getLoggedInUserName() {\n    return loggedInUserName;\n  }\n\n  @Override\n  public Set<String> getLoggedInUserGroups() {\n    return loggedInUserGroups;\n  }\n\n  @Override\n  public Optional<Map<String, String>> getImpersonationServiceAccountsForUsers() {\n    return impersonationServiceAccountsForUsers;\n  }\n\n  @Override\n  public Optional<Map<String, String>> getImpersonationServiceAccountsForGroups() {\n    return impersonationServiceAccountsForGroups;\n  }\n\n  @Override\n  public Optional<String> getImpersonationServiceAccount() {\n    return impersonationServiceAccount;\n  }\n\n  @Override\n  public Optional<ImmutableList<String>> getCredentialsScopes() {\n    return credentialsScopes;\n  }\n\n  @Override\n  public String getParentProjectId() {\n    return parentProjectId;\n  }\n\n  @Override\n  public Optional<String> getCatalogProjectId() {\n    return catalogProjectId;\n  }\n\n  @Override\n  public Optional<String> getCatalogLocation() {\n    return catalogLocation;\n  }\n\n  @Override\n  public boolean useParentProjectForMetadataOperations() {\n    return useParentProjectForMetadataOperations;\n  }\n\n  @Override\n  public boolean isViewsEnabled() {\n    return viewsEnabled;\n  }\n\n  @Override\n  public Optional<String> getMaterializationProject() {\n    return materializationProject;\n  }\n\n  @Override\n  public Optional<String> getMaterializationDataset() {\n    return materializationDataset;\n  }\n\n  @Override\n  public int getBigQueryClientConnectTimeout() {\n    return bigQueryClientConnectTimeout;\n  }\n\n  @Override\n  public int getBigQueryClientReadTimeout() {\n    return bigQueryClientReadTimeout;\n  }\n\n  @Override\n  public RetrySettings getBigQueryClientRetrySettings() {\n    return bigQueryClientRetrySettings;\n  }\n\n  @Override\n  public BigQueryProxyConfig getBigQueryProxyConfig() {\n    return bigQueryProxyConfig;\n  }\n\n  @Override\n  public Optional<String> getBigQueryStorageGrpcEndpoint() {\n    return bigQueryStorageGrpcEndpoint;\n  }\n\n  @Override\n  public Optional<String> getBigQueryHttpEndpoint() {\n    return bigQueryHttpEndpoint;\n  }\n\n  @Override\n  public int getCacheExpirationTimeInMinutes() {\n    return cacheExpirationTimeInMinutes;\n  }\n\n  @Override\n  public ImmutableMap<String, String> getBigQueryJobLabels() {\n    return bigQueryJobLabels;\n  }\n\n  @Override\n  public Optional<Long> getCreateReadSessionTimeoutInSeconds() {\n    return createReadSessionTimeoutInSeconds;\n  }\n\n  @Override\n  public int getChannelPoolSize() {\n    return channelPoolSize;\n  }\n\n  @Override\n  public Optional<Integer> getFlowControlWindowBytes() {\n    return flowControlWindowBytes;\n  }\n\n  @Override\n  public Priority getQueryJobPriority() {\n    return queryJobPriority;\n  }\n\n  public long getBigQueryJobTimeoutInMinutes() {\n    return bigQueryJobTimeoutInMinutes;\n  }\n\n  @Override\n  public boolean equals(Object o) {\n    if (this == o) {\n      return true;\n    }\n    if (!(o instanceof BigQueryClientFactoryConfig)) {\n      return false;\n    }\n    BigQueryClientFactoryConfig that = (BigQueryClientFactoryConfig) o;\n    return viewsEnabled == that.viewsEnabled\n        && bigQueryClientConnectTimeout == that.bigQueryClientConnectTimeout\n        && bigQueryClientReadTimeout == that.bigQueryClientReadTimeout\n        && Objects.equal(credentialsKey, that.credentialsKey)\n        && Objects.equal(credentialsFile, that.credentialsFile)\n        && Objects.equal(accessToken, that.accessToken)\n        && Objects.equal(parentProjectId, that.parentProjectId)\n        && Objects.equal(\n            useParentProjectForMetadataOperations, that.useParentProjectForMetadataOperations)\n        && Objects.equal(materializationProject, that.materializationProject)\n        && Objects.equal(materializationDataset, that.materializationDataset)\n        && Objects.equal(bigQueryClientRetrySettings, that.bigQueryClientRetrySettings)\n        && Objects.equal(bigQueryProxyConfig, that.bigQueryProxyConfig)\n        && Objects.equal(bigQueryStorageGrpcEndpoint, that.bigQueryStorageGrpcEndpoint)\n        && Objects.equal(bigQueryHttpEndpoint, that.bigQueryHttpEndpoint)\n        && Objects.equal(cacheExpirationTimeInMinutes, that.cacheExpirationTimeInMinutes)\n        && Objects.equal(createReadSessionTimeoutInSeconds, that.createReadSessionTimeoutInSeconds)\n        && Objects.equal(channelPoolSize, that.channelPoolSize)\n        && Objects.equal(flowControlWindowBytes, that.flowControlWindowBytes);\n  }\n\n  @Override\n  public int hashCode() {\n    return Objects.hashCode(\n        credentialsKey,\n        credentialsFile,\n        accessToken,\n        parentProjectId,\n        useParentProjectForMetadataOperations,\n        viewsEnabled,\n        materializationProject,\n        materializationDataset,\n        bigQueryClientConnectTimeout,\n        bigQueryClientReadTimeout,\n        bigQueryClientRetrySettings,\n        bigQueryProxyConfig,\n        bigQueryStorageGrpcEndpoint,\n        bigQueryHttpEndpoint,\n        cacheExpirationTimeInMinutes,\n        channelPoolSize,\n        flowControlWindowBytes);\n  }\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/BigQueryClientModule.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.bigquery.connector.common;\n\nimport com.google.api.gax.rpc.HeaderProvider;\nimport com.google.cloud.bigquery.BigQueryOptions;\nimport com.google.cloud.bigquery.TableInfo;\nimport com.google.cloud.http.HttpTransportOptions;\nimport com.google.common.cache.Cache;\nimport com.google.common.cache.CacheBuilder;\nimport com.google.common.collect.ImmutableMap;\nimport com.google.inject.Binder;\nimport com.google.inject.Provides;\nimport com.google.inject.Scopes;\nimport com.google.inject.Singleton;\nimport java.util.Optional;\nimport java.util.concurrent.TimeUnit;\n\npublic class BigQueryClientModule implements com.google.inject.Module {\n\n  private static final int DESTINATION_TABLE_CACHE_MAX_SIZE = 1000;\n\n  /*\n   * In order to parameterize the cache expiration time, the instance needs to be loaded lazily.\n   * The instance is marked as static so that the instance is a singleton.\n   */\n  private static Cache<String, TableInfo> cacheInstance;\n\n  @Provides\n  @Singleton\n  public static HeaderProvider createHeaderProvider(\n      BigQueryConfig config, UserAgentProvider userAgentProvider) {\n    return HttpUtil.createHeaderProvider(config, userAgentProvider.getUserAgent());\n  }\n\n  @Override\n  public void configure(Binder binder) {\n    // BigQuery related\n    binder.bind(BigQueryClientFactory.class).in(Scopes.SINGLETON);\n    binder\n        .bind(BigQueryTracerFactory.class)\n        .toInstance(new LoggingBigQueryTracerFactory(/*Log every 2^14 batches*/ 14));\n  }\n\n  @Provides\n  @Singleton\n  public BigQueryCredentialsSupplier provideBigQueryCredentialsSupplier(BigQueryConfig config) {\n    BigQueryProxyConfig proxyConfig = config.getBigQueryProxyConfig();\n    return new BigQueryCredentialsSupplier(\n        config.getAccessTokenProviderFQCN(),\n        config.getAccessTokenProviderConfig(),\n        config.getAccessToken(),\n        config.getCredentialsKey(),\n        config.getCredentialsFile(),\n        config.getLoggedInUserName(),\n        config.getLoggedInUserGroups(),\n        config.getImpersonationServiceAccountsForUsers(),\n        config.getImpersonationServiceAccountsForGroups(),\n        config.getImpersonationServiceAccount(),\n        config.getCredentialsScopes(),\n        proxyConfig.getProxyUri(),\n        proxyConfig.getProxyUsername(),\n        proxyConfig.getProxyPassword());\n  }\n\n  @Provides\n  @Singleton\n  public Cache<String, TableInfo> provideDestinationTableCache(BigQueryConfig config) {\n    if (cacheInstance == null) {\n      synchronized (BigQueryClientModule.class) {\n        if (cacheInstance == null) {\n          cacheInstance =\n              CacheBuilder.newBuilder()\n                  .expireAfterWrite(config.getCacheExpirationTimeInMinutes(), TimeUnit.MINUTES)\n                  .maximumSize(DESTINATION_TABLE_CACHE_MAX_SIZE)\n                  .build();\n        }\n      }\n    }\n\n    return cacheInstance;\n  }\n\n  @Provides\n  @Singleton\n  public BigQueryClient provideBigQueryClient(\n      BigQueryConfig config,\n      HeaderProvider headerProvider,\n      BigQueryCredentialsSupplier bigQueryCredentialsSupplier,\n      Cache<String, TableInfo> destinationTableCache,\n      EnvironmentContext environmentContext,\n      BigQueryJobCompletionListener jobCompletionListener) {\n    BigQueryOptions.Builder options =\n        BigQueryOptions.newBuilder()\n            .setHeaderProvider(headerProvider)\n            .setProjectId(config.getCatalogProjectId().orElse(config.getParentProjectId()))\n            .setCredentials(bigQueryCredentialsSupplier.getCredentials())\n            .setRetrySettings(config.getBigQueryClientRetrySettings())\n            .setUniverseDomain(bigQueryCredentialsSupplier.getUniverseDomain());\n\n    config.getCatalogLocation().ifPresent(options::setLocation);\n\n    HttpTransportOptions.Builder httpTransportOptionsBuilder =\n        HttpTransportOptions.newBuilder()\n            .setConnectTimeout(config.getBigQueryClientConnectTimeout())\n            .setReadTimeout(config.getBigQueryClientReadTimeout());\n    BigQueryProxyConfig proxyConfig = config.getBigQueryProxyConfig();\n    if (proxyConfig.getProxyUri().isPresent()) {\n      httpTransportOptionsBuilder.setHttpTransportFactory(\n          BigQueryProxyTransporterBuilder.createHttpTransportFactory(\n              proxyConfig.getProxyUri(),\n              proxyConfig.getProxyUsername(),\n              proxyConfig.getProxyPassword()));\n    }\n\n    config.getBigQueryHttpEndpoint().ifPresent(options::setHost);\n\n    options.setTransportOptions(httpTransportOptionsBuilder.build());\n    ImmutableMap<String, String> bigQueryJobLabels =\n        ImmutableMap.<String, String>builder()\n            .putAll(environmentContext.getBigQueryJobLabels())\n            .putAll(config.getBigQueryJobLabels())\n            .build();\n    return new BigQueryClient(\n        options.build().getService(),\n        config.getMaterializationProject(),\n        config.getMaterializationDataset(),\n        destinationTableCache,\n        bigQueryJobLabels,\n        config.getQueryJobPriority(),\n        Optional.of(jobCompletionListener),\n        config.getBigQueryJobTimeoutInMinutes());\n  }\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/BigQueryConfig.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.bigquery.connector.common;\n\nimport com.google.api.gax.retrying.RetrySettings;\nimport com.google.cloud.bigquery.QueryJobConfiguration.Priority;\nimport com.google.common.base.Objects;\nimport com.google.common.collect.ImmutableList;\nimport com.google.common.collect.ImmutableMap;\nimport java.util.Map;\nimport java.util.Optional;\nimport java.util.Set;\n\npublic interface BigQueryConfig {\n\n  Optional<String> getAccessTokenProviderFQCN();\n\n  Optional<String> getAccessTokenProviderConfig();\n\n  Optional<String> getCredentialsKey();\n\n  Optional<String> getCredentialsFile();\n\n  Optional<String> getAccessToken();\n\n  String getLoggedInUserName();\n\n  Set<String> getLoggedInUserGroups();\n\n  Optional<Map<String, String>> getImpersonationServiceAccountsForUsers();\n\n  Optional<Map<String, String>> getImpersonationServiceAccountsForGroups();\n\n  Optional<String> getImpersonationServiceAccount();\n\n  String getParentProjectId();\n\n  Optional<String> getCatalogProjectId();\n\n  Optional<String> getCatalogLocation();\n\n  boolean useParentProjectForMetadataOperations();\n\n  boolean isViewsEnabled();\n\n  Optional<String> getMaterializationProject();\n\n  Optional<String> getMaterializationDataset();\n\n  int getBigQueryClientConnectTimeout();\n\n  int getBigQueryClientReadTimeout();\n\n  RetrySettings getBigQueryClientRetrySettings();\n\n  BigQueryProxyConfig getBigQueryProxyConfig();\n\n  Optional<String> getBigQueryStorageGrpcEndpoint();\n\n  Optional<String> getBigQueryHttpEndpoint();\n\n  int getCacheExpirationTimeInMinutes();\n\n  ImmutableMap<String, String> getBigQueryJobLabels();\n\n  Optional<Long> getCreateReadSessionTimeoutInSeconds();\n\n  int getChannelPoolSize();\n\n  // Get a static flow control window per RPC. When not set\n  // auto flow control is determined by Bandwidth Delay Product.\n  Optional<Integer> getFlowControlWindowBytes();\n\n  Priority getQueryJobPriority();\n\n  long getBigQueryJobTimeoutInMinutes();\n\n  Optional<ImmutableList<String>> getCredentialsScopes();\n\n  default int getClientCreationHashCode() {\n    return Objects.hashCode(\n        getAccessTokenProviderFQCN(),\n        getAccessTokenProviderConfig(),\n        getCredentialsKey(),\n        getAccessToken(),\n        getCredentialsFile(),\n        getBigQueryHttpEndpoint(),\n        getFlowControlWindowBytes(),\n        getBigQueryStorageGrpcEndpoint(),\n        getCreateReadSessionTimeoutInSeconds(),\n        getBigQueryProxyConfig(),\n        getParentProjectId(),\n        useParentProjectForMetadataOperations());\n  }\n\n  default boolean areClientCreationConfigsEqual(BigQueryConfig b) {\n    if (this == b) {\n      return true;\n    }\n    return Objects.equal(getAccessTokenProviderFQCN(), b.getAccessTokenProviderFQCN())\n        && Objects.equal(getAccessTokenProviderConfig(), b.getAccessTokenProviderConfig())\n        && Objects.equal(getCredentialsKey(), b.getCredentialsKey())\n        && Objects.equal(getAccessToken(), b.getAccessToken())\n        && Objects.equal(getCredentialsFile(), b.getCredentialsFile())\n        && Objects.equal(getBigQueryHttpEndpoint(), b.getBigQueryHttpEndpoint())\n        && Objects.equal(getFlowControlWindowBytes(), b.getFlowControlWindowBytes())\n        && Objects.equal(getBigQueryStorageGrpcEndpoint(), b.getBigQueryStorageGrpcEndpoint())\n        && Objects.equal(\n            getCreateReadSessionTimeoutInSeconds(), b.getCreateReadSessionTimeoutInSeconds())\n        && Objects.equal(getBigQueryProxyConfig(), b.getBigQueryProxyConfig())\n        && Objects.equal(getParentProjectId(), b.getParentProjectId())\n        && Objects.equal(\n            useParentProjectForMetadataOperations(), b.useParentProjectForMetadataOperations());\n  }\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/BigQueryConfigurationUtil.java",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.bigquery.connector.common;\n\nimport static com.google.cloud.bigquery.connector.common.BigQueryUtil.firstPresent;\nimport static com.google.cloud.bigquery.connector.common.BigQueryUtil.parseTableId;\nimport static java.lang.String.format;\n\nimport com.google.cloud.bigquery.BigQueryOptions;\nimport com.google.cloud.bigquery.TableId;\nimport com.google.common.base.Optional;\nimport com.google.common.collect.ImmutableList;\nimport com.google.common.collect.ImmutableMap;\nimport java.util.Collection;\nimport java.util.HashMap;\nimport java.util.Map;\nimport java.util.function.Supplier;\n\n/** Utilities to read configuration options */\npublic class BigQueryConfigurationUtil {\n\n  public static final Supplier<com.google.common.base.Optional<String>> DEFAULT_FALLBACK =\n      () -> empty();\n\n  private BigQueryConfigurationUtil() {}\n\n  public static com.google.common.base.Supplier<String> defaultBilledProject() {\n    return () -> BigQueryOptions.getDefaultInstance().getProjectId();\n  }\n\n  public static String getRequiredOption(Map<String, String> options, String name) {\n    return getOption(options, name, DEFAULT_FALLBACK)\n        .toJavaUtil()\n        .orElseThrow(() -> new IllegalArgumentException(format(\"Option %s required.\", name)));\n  }\n\n  public static String getRequiredOption(\n      Map<String, String> options, String name, com.google.common.base.Supplier<String> fallback) {\n    return getOption(options, name, DEFAULT_FALLBACK).or(fallback);\n  }\n\n  public static com.google.common.base.Optional<String> getOption(\n      Map<String, String> options, String name) {\n    return getOption(options, name, DEFAULT_FALLBACK);\n  }\n\n  public static com.google.common.base.Optional<String> getOption(\n      Map<String, String> options, String name, Supplier<Optional<String>> fallback) {\n    return fromJavaUtil(\n        firstPresent(\n            java.util.Optional.ofNullable(options.get(name.toLowerCase())),\n            fallback.get().toJavaUtil()));\n  }\n\n  public static com.google.common.base.Optional<String> getOptionFromMultipleParams(\n      Map<String, String> options,\n      Collection<String> names,\n      Supplier<com.google.common.base.Optional<String>> fallback) {\n    return names.stream()\n        .map(name -> getOption(options, name))\n        .filter(com.google.common.base.Optional::isPresent)\n        .findFirst()\n        .orElseGet(fallback);\n  }\n\n  public static Map<String, String> getMapEntriesWithPrefix(\n      Map<String, String> map, String prefix) {\n    Map<String, String> result = new HashMap();\n    for (Map.Entry<String, String> entry : map.entrySet()) {\n      if (entry.getKey().startsWith(prefix)) {\n        result.put(entry.getKey(), entry.getValue());\n      }\n    }\n    return result;\n  }\n\n  public static com.google.common.base.Optional<Map<String, String>> removePrefixFromMapKeys(\n      com.google.common.base.Optional<Map<String, String>> map, String prefix) {\n    Map<String, String> modifiedMap = new HashMap<>();\n    if (map.isPresent()) {\n      for (Map.Entry<String, String> entry : map.get().entrySet()) {\n        String originalKey = entry.getKey();\n        String modifiedKey =\n            originalKey.startsWith(prefix) ? originalKey.substring(prefix.length()) : originalKey;\n        modifiedMap.put(modifiedKey, entry.getValue());\n      }\n    }\n    return com.google.common.base.Optional.of(modifiedMap);\n  }\n\n  public static com.google.common.base.Optional<Map<String, String>> getAnyOptionsWithPrefix(\n      ImmutableMap<String, String> globalOptions, Map<String, String> options, String prefix) {\n    Map<String, String> result = getMapEntriesWithPrefix(globalOptions, prefix);\n    Map<String, String> prefixOptions = getMapEntriesWithPrefix(options, prefix);\n    result.putAll(prefixOptions);\n    return com.google.common.base.Optional.of(result);\n  }\n\n  public static com.google.common.base.Optional<String> getAnyOption(\n      ImmutableMap<String, String> globalOptions, Map<String, String> options, String name) {\n    return com.google.common.base.Optional.fromNullable(options.get(name.toLowerCase()))\n        .or(com.google.common.base.Optional.fromNullable(globalOptions.get(name)));\n  }\n\n  // gives the option to support old configurations as fallback\n  // Used to provide backward compatibility\n  public static com.google.common.base.Optional<String> getAnyOption(\n      ImmutableMap<String, String> globalOptions,\n      Map<String, String> options,\n      Collection<String> names) {\n    return names.stream()\n        .map(name -> getAnyOption(globalOptions, options, name))\n        .filter(optional -> optional.isPresent())\n        .findFirst()\n        .orElse(empty());\n  }\n\n  public static boolean getAnyBooleanOption(\n      ImmutableMap<String, String> globalOptions,\n      Map<String, String> options,\n      String name,\n      boolean defaultValue) {\n    return getAnyOption(globalOptions, options, name).transform(Boolean::valueOf).or(defaultValue);\n  }\n\n  public static com.google.common.base.Optional empty() {\n    return com.google.common.base.Optional.absent();\n  }\n\n  public static com.google.common.base.Optional fromJavaUtil(java.util.Optional o) {\n    return com.google.common.base.Optional.fromJavaUtil(o);\n  }\n\n  /** TableId that does not include partition decorator */\n  public static TableId parseSimpleTableId(\n      Map<String, String> options,\n      Optional<String> fallbackProject,\n      Optional<String> fallbackDataset) {\n    String tableParam =\n        getOptionFromMultipleParams(options, ImmutableList.of(\"table\", \"path\"), DEFAULT_FALLBACK)\n            .get();\n    Optional<String> datasetParam = getOption(options, \"dataset\").or(fallbackDataset);\n    Optional<String> projectParam = getOption(options, \"project\").or(fallbackProject);\n    return parseTableId(\n        tableParam,\n        datasetParam.toJavaUtil(),\n        projectParam.toJavaUtil(), /* datePartition */\n        java.util.Optional.empty());\n  }\n\n  public static TableId parseSimpleTableId(\n      Map<String, String> options,\n      java.util.Optional<String> fallbackProject,\n      java.util.Optional<String> fallbackDataset) {\n    return parseSimpleTableId(\n        options, Optional.fromJavaUtil(fallbackProject), Optional.fromJavaUtil(fallbackDataset));\n  }\n\n  public static TableId parseSimpleTableId(\n      ImmutableMap<String, String> globalOptions, Map<String, String> options) {\n    MaterializationConfiguration materializationConfiguration =\n        MaterializationConfiguration.from(globalOptions, options);\n    return parseSimpleTableId(\n        options,\n        materializationConfiguration.getMaterializationProject(),\n        materializationConfiguration.getMaterializationDataset());\n  }\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/BigQueryConnectorException.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.bigquery.connector.common;\n\nimport static com.google.cloud.bigquery.connector.common.BigQueryErrorCode.BIGQUERY_INVALID_SCHEMA;\nimport static com.google.cloud.bigquery.connector.common.BigQueryErrorCode.UNKNOWN;\n\nimport io.grpc.StatusException;\nimport io.grpc.StatusRuntimeException;\n\npublic class BigQueryConnectorException extends RuntimeException {\n\n  final BigQueryErrorCode errorCode;\n\n  public BigQueryConnectorException(String message) {\n    this(UNKNOWN, message);\n  }\n\n  public BigQueryConnectorException(String message, StatusException cause) {\n    this(message, new SerializableStatusException(cause));\n  }\n\n  public BigQueryConnectorException(String message, StatusRuntimeException cause) {\n    this(message, new SerializableStatusException(cause));\n  }\n\n  public BigQueryConnectorException(String message, Throwable cause) {\n    this(UNKNOWN, message, cause);\n  }\n\n  public BigQueryConnectorException(BigQueryErrorCode errorCode, String message) {\n    super(message);\n    this.errorCode = errorCode;\n  }\n\n  public BigQueryConnectorException(\n      BigQueryErrorCode errorCode, String message, StatusException cause) {\n    this(errorCode, message, new SerializableStatusException(cause));\n  }\n\n  public BigQueryConnectorException(\n      BigQueryErrorCode errorCode, String message, StatusRuntimeException cause) {\n    this(errorCode, message, new SerializableStatusException(cause));\n  }\n\n  public BigQueryConnectorException(BigQueryErrorCode errorCode, String message, Throwable cause) {\n    super(message, cause);\n    this.errorCode = errorCode;\n  }\n\n  public BigQueryErrorCode getErrorCode() {\n    return errorCode;\n  }\n\n  // inner child class\n  public static class InvalidSchemaException extends BigQueryConnectorException {\n    public InvalidSchemaException(String message) {\n      super(BIGQUERY_INVALID_SCHEMA, message);\n    }\n\n    public InvalidSchemaException(String message, Throwable t) {\n      super(BIGQUERY_INVALID_SCHEMA, message, t);\n    }\n  }\n\n  /**\n   * StatusRuntimeException contains non-serializable members causing issues when sending exceptions\n   * from the executors to the driver. this class provides a serializable alternative.\n   */\n  public static class SerializableStatusException extends RuntimeException {\n    private final String wrappedExceptionClassName;\n    private final String message;\n    private final StackTraceElement[] stackTrace;\n\n    SerializableStatusException(StatusException wrapped) {\n      this.wrappedExceptionClassName = wrapped.getClass().getName();\n      this.message = wrapped.getMessage();\n      this.stackTrace = wrapped.getStackTrace().clone();\n    }\n\n    SerializableStatusException(StatusRuntimeException wrapped) {\n      this.wrappedExceptionClassName = wrapped.getClass().getName();\n      this.message = wrapped.getMessage();\n      this.stackTrace = wrapped.getStackTrace().clone();\n    }\n\n    @Override\n    public String getMessage() {\n      return this.message;\n    }\n\n    @Override\n    public String toString() {\n      return this.wrappedExceptionClassName + \": \" + this.message;\n    }\n\n    @Override\n    public StackTraceElement[] getStackTrace() {\n      return this.stackTrace;\n    }\n  }\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/BigQueryCredentialsSupplier.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.bigquery.connector.common;\n\nimport static com.google.cloud.bigquery.connector.common.BigQueryUtil.createVerifiedInstance;\nimport static com.google.cloud.bigquery.connector.common.BigQueryUtil.verifySerialization;\nimport static com.google.common.base.Strings.isNullOrEmpty;\n\nimport com.google.api.client.util.Base64;\nimport com.google.auth.Credentials;\nimport com.google.auth.http.HttpTransportFactory;\nimport com.google.auth.oauth2.AccessToken;\nimport com.google.auth.oauth2.GoogleCredentials;\nimport com.google.auth.oauth2.ImpersonatedCredentials;\nimport com.google.common.collect.ImmutableList;\nimport java.io.ByteArrayInputStream;\nimport java.io.FileInputStream;\nimport java.io.IOException;\nimport java.io.UncheckedIOException;\nimport java.net.URI;\nimport java.util.Collection;\nimport java.util.HashSet;\nimport java.util.Map;\nimport java.util.Optional;\nimport java.util.Set;\nimport java.util.function.Supplier;\nimport java.util.stream.Stream;\nimport org.slf4j.Logger;\nimport org.slf4j.LoggerFactory;\n\npublic class BigQueryCredentialsSupplier {\n  private final Credentials credentials;\n  public static final String CLOUD_PLATFORM_SCOPE =\n      \"https://www.googleapis.com/auth/cloud-platform\";\n\n  private static final Logger log = LoggerFactory.getLogger(BigQueryCredentialsSupplier.class);\n\n  public BigQueryCredentialsSupplier(\n      Optional<String> accessTokenProviderFQCN,\n      Optional<String> accessTokenProviderConfig,\n      Optional<String> accessToken,\n      Optional<String> credentialsKey,\n      Optional<String> credentialsFile,\n      String loggedInUserName,\n      Set<String> loggedInUserGroups,\n      Optional<Map<String, String>> impersonationServiceAccountsForUsers,\n      Optional<Map<String, String>> impersonationServiceAccountsForGroups,\n      Optional<String> impersonationServiceAccount,\n      Optional<ImmutableList<String>> credentialsScopes,\n      Optional<URI> proxyUri,\n      Optional<String> proxyUsername,\n      Optional<String> proxyPassword) {\n    GoogleCredentials credentials;\n    if (accessTokenProviderFQCN.isPresent()) {\n      AccessTokenProvider accessTokenProvider =\n          accessTokenProviderConfig\n              .map(\n                  config ->\n                      createVerifiedInstance(\n                          accessTokenProviderFQCN.get(), AccessTokenProvider.class, config))\n              .orElseGet(\n                  () ->\n                      createVerifiedInstance(\n                          accessTokenProviderFQCN.get(), AccessTokenProvider.class));\n      credentials = new AccessTokenProviderCredentials(verifySerialization(accessTokenProvider));\n    } else if (accessToken.isPresent()) {\n      credentials = createCredentialsFromAccessToken(accessToken.get());\n    } else if (credentialsKey.isPresent()) {\n      credentials =\n          createCredentialsFromKey(credentialsKey.get(), proxyUri, proxyUsername, proxyPassword);\n    } else if (credentialsFile.isPresent()) {\n      credentials =\n          createCredentialsFromFile(credentialsFile.get(), proxyUri, proxyUsername, proxyPassword);\n    } else {\n      credentials = createDefaultCredentials();\n    }\n    Optional<GoogleCredentials> impersonatedCredentials =\n        createCredentialsFromImpersonation(\n            loggedInUserName,\n            loggedInUserGroups,\n            impersonationServiceAccountsForUsers,\n            impersonationServiceAccountsForGroups,\n            impersonationServiceAccount,\n            (GoogleCredentials) credentials,\n            proxyUri,\n            proxyUsername,\n            proxyPassword);\n    credentials = impersonatedCredentials.orElse(credentials);\n    this.credentials = credentialsScopes.map(credentials::createScoped).orElse(credentials);\n  }\n\n  private static GoogleCredentials createCredentialsFromAccessToken(String accessToken) {\n    return GoogleCredentials.create(new AccessToken(accessToken, null));\n  }\n\n  private static Optional<GoogleCredentials> createCredentialsFromImpersonation(\n      String loggedInUserName,\n      Set<String> loggedInUserGroups,\n      Optional<Map<String, String>> impersonationServiceAccountsForUsers,\n      Optional<Map<String, String>> impersonationServiceAccountsForGroups,\n      Optional<String> impersonationServiceAccount,\n      GoogleCredentials sourceCredentials,\n      Optional<URI> proxyUri,\n      Optional<String> proxyUsername,\n      Optional<String> proxyPassword) {\n\n    Optional<String> serviceAccountToImpersonate =\n        Stream.of(\n                () ->\n                    getServiceAccountToImpersonateByKeys(\n                        impersonationServiceAccountsForUsers,\n                        Optional.ofNullable(loggedInUserName)\n                            .map(ImmutableList::of)\n                            .orElseGet(ImmutableList::of)),\n                () ->\n                    getServiceAccountToImpersonateByKeys(\n                        impersonationServiceAccountsForGroups,\n                        Optional.ofNullable(loggedInUserGroups).orElse(new HashSet<>())),\n                (Supplier<Optional<String>>) () -> impersonationServiceAccount)\n            .map(Supplier::get)\n            .filter(Optional::isPresent)\n            .map(Optional::get)\n            .filter(sa -> !isNullOrEmpty(sa))\n            .findFirst();\n\n    HttpTransportFactory httpTransportFactory =\n        BigQueryProxyTransporterBuilder.createHttpTransportFactory(\n            proxyUri, proxyUsername, proxyPassword);\n    return serviceAccountToImpersonate.map(\n        sa ->\n            ImpersonatedCredentials.newBuilder()\n                .setSourceCredentials(sourceCredentials)\n                .setTargetPrincipal(serviceAccountToImpersonate.get())\n                .setScopes(ImmutableList.of(CLOUD_PLATFORM_SCOPE))\n                .setHttpTransportFactory(httpTransportFactory)\n                .build());\n  }\n\n  private static Optional<String> getServiceAccountToImpersonateByKeys(\n      Optional<Map<String, String>> serviceAccountMapping, Collection<String> keys) {\n    return serviceAccountMapping.flatMap(\n        mapping ->\n            mapping.entrySet().stream()\n                .filter(e -> keys.contains(e.getKey()))\n                .map(Map.Entry::getValue)\n                .findFirst());\n  }\n\n  private static GoogleCredentials createCredentialsFromKey(\n      String key,\n      Optional<URI> proxyUri,\n      Optional<String> proxyUsername,\n      Optional<String> proxyPassword) {\n    try {\n      if (proxyUri.isPresent()) {\n        HttpTransportFactory httpTransportFactory =\n            BigQueryProxyTransporterBuilder.createHttpTransportFactory(\n                proxyUri, proxyUsername, proxyPassword);\n        return GoogleCredentials.fromStream(\n            new ByteArrayInputStream(Base64.decodeBase64(key)), httpTransportFactory);\n      } else {\n        return GoogleCredentials.fromStream(new ByteArrayInputStream(Base64.decodeBase64(key)));\n      }\n    } catch (IOException e) {\n      throw new UncheckedIOException(\"Failed to create Credentials from key\", e);\n    }\n  }\n\n  private static GoogleCredentials createCredentialsFromFile(\n      String file,\n      Optional<URI> proxyUri,\n      Optional<String> proxyUsername,\n      Optional<String> proxyPassword) {\n    try {\n      if (proxyUri.isPresent()) {\n        HttpTransportFactory httpTransportFactory =\n            BigQueryProxyTransporterBuilder.createHttpTransportFactory(\n                proxyUri, proxyUsername, proxyPassword);\n        return GoogleCredentials.fromStream(new FileInputStream(file), httpTransportFactory);\n      } else {\n        return GoogleCredentials.fromStream(new FileInputStream(file));\n      }\n    } catch (IOException e) {\n      throw new UncheckedIOException(\"Failed to create Credentials from file\", e);\n    }\n  }\n\n  public static GoogleCredentials createDefaultCredentials() {\n    try {\n      return GoogleCredentials.getApplicationDefault();\n    } catch (IOException e) {\n      throw new UncheckedIOException(\"Failed to create default Credentials\", e);\n    }\n  }\n\n  public Credentials getCredentials() {\n    return credentials;\n  }\n\n  public String getUniverseDomain() {\n    String universeDomain = Credentials.GOOGLE_DEFAULT_UNIVERSE;\n    try {\n      universeDomain = getCredentials().getUniverseDomain();\n    } catch (IOException e) {\n      log.warn(\n          \"Caught Exception while querying the Universe Domain, continuing with GOOGLE_DEFAULT_UNIVERSE\");\n    }\n    return universeDomain;\n  }\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/BigQueryDirectDataWriterHelper.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.bigquery.connector.common;\n\nimport com.google.api.client.util.Sleeper;\nimport com.google.api.core.ApiFuture;\nimport com.google.api.core.ApiFutures;\nimport com.google.api.core.NanoClock;\nimport com.google.api.gax.retrying.*;\nimport com.google.cloud.bigquery.storage.v1.AppendRowsResponse;\nimport com.google.cloud.bigquery.storage.v1.BigQueryWriteClient;\nimport com.google.cloud.bigquery.storage.v1.CreateWriteStreamRequest;\nimport com.google.cloud.bigquery.storage.v1.Exceptions.OffsetAlreadyExists;\nimport com.google.cloud.bigquery.storage.v1.FinalizeWriteStreamRequest;\nimport com.google.cloud.bigquery.storage.v1.FinalizeWriteStreamResponse;\nimport com.google.cloud.bigquery.storage.v1.ProtoRows;\nimport com.google.cloud.bigquery.storage.v1.ProtoSchema;\nimport com.google.cloud.bigquery.storage.v1.StreamWriter;\nimport com.google.cloud.bigquery.storage.v1.WriteStream;\nimport com.google.cloud.bigquery.storage.v1.stub.readrows.ApiResultRetryAlgorithm;\nimport com.google.common.base.Optional;\nimport com.google.protobuf.ByteString;\nimport java.io.IOException;\nimport java.util.LinkedList;\nimport java.util.Queue;\nimport java.util.concurrent.Callable;\nimport java.util.concurrent.ExecutionException;\nimport java.util.concurrent.ExecutorService;\nimport java.util.concurrent.Executors;\nimport org.slf4j.Logger;\nimport org.slf4j.LoggerFactory;\n\n/**\n * The class which sketches out the necessary functions in order for a Spark DataWriter to interact\n * with the BigQuery Storage Write API.\n */\npublic class BigQueryDirectDataWriterHelper {\n  final Logger logger = LoggerFactory.getLogger(BigQueryDirectDataWriterHelper.class);\n\n  // multiplying with 0.95 so as to keep a buffer preventing the quota limits\n  final long MAX_APPEND_ROWS_REQUEST_SIZE = (long) (StreamWriter.getApiMaxRequestBytes() * 0.95);\n\n  private final BigQueryWriteClient writeClient;\n  private final String tablePath;\n  private final ProtoSchema protoSchema;\n  private final RetrySettings retrySettings;\n  private final Optional<String> traceId;\n  private final int partitionId;\n  private final boolean writeAtLeastOnce;\n\n  private String writeStreamName;\n  private StreamWriter streamWriter;\n  private ProtoRows.Builder protoRows;\n\n  private long appendRequestRowCount = 0; // number of rows waiting for the next append request\n  private long appendRequestSizeBytes = 0; // number of bytes waiting for the next append request\n  private long writeStreamRowCount = 0; // total offset / rows of the current write-stream\n  private long writeStreamTotalBytes = 0; // total bytes written by the current write-stream\n\n  private final ExecutorService appendRowsExecutor = Executors.newSingleThreadExecutor();\n  private final Queue<ApiFuture<AppendRowsResponse>> appendRowsFuturesQueue = new LinkedList<>();\n\n  public BigQueryDirectDataWriterHelper(\n      BigQueryClientFactory writeClientFactory,\n      String tablePath,\n      ProtoSchema protoSchema,\n      RetrySettings bigqueryDataWriterHelperRetrySettings,\n      Optional<String> traceId,\n      int partitionId,\n      boolean writeAtLeastOnce) {\n    this.writeClient = writeClientFactory.getBigQueryWriteClient();\n    this.tablePath = tablePath;\n    this.protoSchema = protoSchema;\n    this.retrySettings = bigqueryDataWriterHelperRetrySettings;\n    this.traceId = traceId;\n    this.partitionId = partitionId;\n    this.writeAtLeastOnce = writeAtLeastOnce;\n\n    if (writeAtLeastOnce) {\n      this.writeStreamName = this.tablePath + \"/_default\";\n    } else {\n      try {\n        this.writeStreamName = retryCreateWriteStream();\n      } catch (ExecutionException | InterruptedException e) {\n        throw new BigQueryConnectorException(\n            \"Could not create write-stream after multiple retries\", e);\n      }\n    }\n    this.streamWriter = createStreamWriter(this.writeStreamName);\n    this.protoRows = ProtoRows.newBuilder();\n  }\n\n  /**\n   * Submits a callable that creates a BigQuery Storage Write API write-stream to function\n   * {retryCallable}.\n   *\n   * @see this#retryCallable(Callable createWriteStream)\n   * @return The write-stream name, if it was successfully created.\n   * @throws ExecutionException If retryCallable failed to create the write-stream after multiple\n   *     retries.\n   * @throws InterruptedException If retryCallable was interrupted while creating the write-stream\n   *     during a retry.\n   */\n  private String retryCreateWriteStream() throws ExecutionException, InterruptedException {\n    return retryCallable(\n        () ->\n            this.writeClient\n                .createWriteStream(\n                    CreateWriteStreamRequest.newBuilder()\n                        .setParent(this.tablePath)\n                        .setWriteStream(\n                            WriteStream.newBuilder().setType(WriteStream.Type.PENDING).build())\n                        .build())\n                .getName());\n  }\n\n  /**\n   * A helper method in order to retry certain tasks: currently used for creating a write-stream,\n   * and finalizing a write-stream, if those requests reached a retriable error.\n   *\n   * @param callable The callable to retry.\n   * @param <V> The return value of the callable (currently, either a String (write-stream name) or\n   *     a FinalizeWriteStreamResponse.\n   * @return V.\n   * @throws ExecutionException If retryCallable failed to create the write-stream after multiple\n   *     retries.\n   * @throws InterruptedException If retryCallable was interrupted while creating the write-stream\n   *     during a retry.\n   */\n  private <V> V retryCallable(Callable<V> callable)\n      throws ExecutionException, InterruptedException {\n    DirectRetryingExecutor<V> directRetryingExecutor =\n        new DirectRetryingExecutor<>(\n            new RetryAlgorithm<>(\n                new ApiResultRetryAlgorithm<>(),\n                new ExponentialRetryAlgorithm(this.retrySettings, NanoClock.getDefaultClock())));\n    RetryingFuture<V> retryingFuture = directRetryingExecutor.createFuture(callable);\n    return directRetryingExecutor.submit(retryingFuture).get();\n  }\n\n  private StreamWriter createStreamWriter(String writeStreamName) {\n    try {\n      StreamWriter.Builder streamWriter =\n          StreamWriter.newBuilder(writeStreamName, writeClient)\n              .setWriterSchema(this.protoSchema)\n              .setEnableConnectionPool(this.writeAtLeastOnce)\n              .setRetrySettings(this.retrySettings);\n      if (traceId.isPresent()) {\n        streamWriter.setTraceId(traceId.get());\n      }\n      return streamWriter.build();\n    } catch (IOException e) {\n      throw new BigQueryConnectorException(\"Could not build stream-writer\", e);\n    }\n  }\n\n  /**\n   * Adds a row to the protoRows, which acts as a buffer; but before, checks if the current message\n   * size in bytes will cause the protoRows buffer to exceed the maximum APPEND_REQUEST_SIZE, and if\n   * it will, sends an append rows request first.\n   *\n   * @see this#sendAppendRowsRequest()\n   * @param message The row, in a ByteString message, to be added to protoRows.\n   * @throws IOException If sendAppendRowsRequest fails.\n   */\n  public void addRow(ByteString message) throws IOException {\n    int messageSize = message.size() + 2; // Protobuf overhead is at least 2 bytes per row.\n\n    if (appendRequestSizeBytes + messageSize > MAX_APPEND_ROWS_REQUEST_SIZE) {\n      // If a single row exceeds the maximum size for an append request, this is a nonrecoverable\n      // error.\n      if (messageSize > MAX_APPEND_ROWS_REQUEST_SIZE) {\n        throw new IOException(\n            String.format(\n                \"A single row of size %d bytes exceeded the maximum of %d bytes for an\"\n                    + \" append-rows-request size\",\n                messageSize, MAX_APPEND_ROWS_REQUEST_SIZE));\n      }\n      sendAppendRowsRequest();\n    }\n\n    protoRows.addSerializedRows(message);\n    appendRequestSizeBytes += messageSize;\n    appendRequestRowCount++;\n  }\n\n  /**\n   * Throws an exception if there is an error in any of the responses received thus far. Since\n   * responses arrive in order, we proceed to check the next response only after the previous\n   * response has arrived.\n   *\n   * @throws BigQueryConnectorException If there was an invalid response\n   */\n  private void checkForFailedResponse(boolean waitForResponse) {\n    ApiFuture<AppendRowsResponse> validatedAppendRowsFuture = null;\n    while ((validatedAppendRowsFuture = appendRowsFuturesQueue.peek()) != null) {\n      if (waitForResponse || validatedAppendRowsFuture.isDone()) {\n        appendRowsFuturesQueue.poll();\n        boolean succeeded = false;\n        try {\n          AppendRowsResponse response = validatedAppendRowsFuture.get();\n          // If we got here, the response was successful\n          succeeded = true;\n        } catch (ExecutionException e) {\n          if (e.getCause().getClass() == OffsetAlreadyExists.class) {\n            // Under heavy load the WriteAPI client library may resend a request due to failed\n            // connection. The OffsetAlreadyExists exception indicates a request was previously\n            // sent, hence it is safe to ignore it.\n            logger.warn(\"Ignoring OffsetAlreadyExists exception: {}\", e.getCause().getMessage());\n            succeeded = true;\n          } else {\n            logger.error(\n                \"Write-stream {} with name {} exception while retrieving AppendRowsResponse\",\n                partitionId,\n                writeStreamName);\n            throw new BigQueryConnectorException(\n                \"Execution Exception while retrieving AppendRowsResponse\", e);\n          }\n        } catch (InterruptedException e) {\n          logger.error(\n              \"Write-stream {} with name {} interrupted exception while retrieving AppendRowsResponse\",\n              partitionId,\n              writeStreamName);\n          throw new BigQueryConnectorException(\n              \"Interrupted Exception while retrieving AppendRowsResponse\", e);\n        } finally {\n          if (!succeeded) {\n            appendRowsExecutor.shutdown();\n          }\n        }\n      } else {\n        break;\n      }\n    }\n  }\n\n  /**\n   * Sends an AppendRowsRequest to the BigQuery Storage Write API.\n   *\n   * @throws IOException If the append rows request fails: either by returning the wrong offset\n   *     (deduplication error) or if the response contains an error.\n   */\n  private void sendAppendRowsRequest() throws IOException {\n    checkForFailedResponse(false /*waitForResponse*/);\n    long offset = this.writeAtLeastOnce ? -1 : writeStreamRowCount;\n\n    ApiFuture<AppendRowsResponse> appendRowsResponseApiFuture =\n        streamWriter.append(protoRows.build(), offset);\n    ApiFuture<AppendRowsResponse> validatedAppendRowsFuture =\n        ApiFutures.transformAsync(\n            appendRowsResponseApiFuture,\n            appendRowsResponse -> validateAppendRowsResponse(appendRowsResponse, offset),\n            appendRowsExecutor);\n    appendRowsFuturesQueue.add(validatedAppendRowsFuture);\n    clearProtoRows();\n    this.writeStreamRowCount += appendRequestRowCount;\n    this.writeStreamTotalBytes += appendRequestSizeBytes;\n    this.appendRequestRowCount = 0;\n    this.appendRequestSizeBytes = 0;\n  }\n\n  /**\n   * Validates an AppendRowsResponse, after retrieving its future: makes sure the responses' future\n   * matches the expectedOffset, and returned with no errors.\n   *\n   * @param appendRowsResponse The AppendRowsResponse\n   * @param expectedOffset The expected offset to be returned by the response.\n   * @throws IOException If the response returned with error, or the offset did not match the\n   *     expected offset.\n   */\n  private ApiFuture<AppendRowsResponse> validateAppendRowsResponse(\n      AppendRowsResponse appendRowsResponse, long expectedOffset) throws IOException {\n    if (appendRowsResponse.hasError()) {\n      throw new IOException(\n          \"Append request failed with error: \" + appendRowsResponse.getError().getMessage());\n    }\n\n    if (!this.writeAtLeastOnce) {\n      AppendRowsResponse.AppendResult appendResult = appendRowsResponse.getAppendResult();\n      long responseOffset = appendResult.getOffset().getValue();\n\n      if (expectedOffset != responseOffset) {\n        throw new IOException(\n            String.format(\n                \"On stream %s append-rows response, offset %d did not match expected offset %d\",\n                writeStreamName, responseOffset, expectedOffset));\n      }\n    }\n    return ApiFutures.immediateFuture(appendRowsResponse);\n  }\n\n  /**\n   * Appends any data that remains in the protoRows, waits for 500 milliseconds, and finalizes the\n   * write-stream. This also closes the internal StreamWriter, so that the helper instance is not\n   * usable after calling <code>finalizeStream()</code>.\n   *\n   * @return The finalized row-count of the write-stream.\n   * @throws IOException If the row-count returned by the FinalizeWriteStreamResponse does not match\n   *     the expected offset (which is equal to the number of rows appended thus far).\n   * @see this#writeStreamRowCount\n   */\n  public WriteStreamStatistics finalizeStream() throws IOException {\n    if (this.protoRows.getSerializedRowsCount() != 0) {\n      sendAppendRowsRequest();\n    }\n    try {\n      checkForFailedResponse(true /* waitForResponse */);\n    } finally {\n      appendRowsExecutor.shutdown();\n    }\n    long responseFinalizedRowCount = writeStreamRowCount;\n    long responseFinalizedBytesWritten = writeStreamTotalBytes;\n\n    if (!this.writeAtLeastOnce) {\n      waitBeforeFinalization();\n\n      FinalizeWriteStreamRequest finalizeWriteStreamRequest =\n          FinalizeWriteStreamRequest.newBuilder().setName(writeStreamName).build();\n      FinalizeWriteStreamResponse finalizeResponse =\n          retryFinalizeWriteStream(finalizeWriteStreamRequest);\n\n      long expectedFinalizedRowCount = writeStreamRowCount;\n      responseFinalizedRowCount = finalizeResponse.getRowCount();\n      if (responseFinalizedRowCount != expectedFinalizedRowCount) {\n        throw new IOException(\n            String.format(\n                \"On stream %s finalization, expected finalized row count %d but received %d\",\n                writeStreamName, expectedFinalizedRowCount, responseFinalizedRowCount));\n      }\n    }\n\n    logger.debug(\n        \"Write-stream {} with name {} finalized with row-count {}\",\n        partitionId,\n        writeStreamName,\n        responseFinalizedRowCount);\n\n    clean();\n\n    return new WriteStreamStatistics(responseFinalizedRowCount, responseFinalizedBytesWritten);\n  }\n\n  /**\n   * A helper method in order to submit for retry (using method retryCallable) a callable that\n   * finalizes the write-stream; useful if finalization encountered a retriable error.\n   *\n   * @param finalizeWriteStreamRequest The request to send to the writeClient in order to finalize\n   *     the write-stream.\n   * @return The FinalizeWriteStreamResponse\n   * @see com.google.cloud.bigquery.storage.v1.FinalizeWriteStreamResponse\n   */\n  private FinalizeWriteStreamResponse retryFinalizeWriteStream(\n      FinalizeWriteStreamRequest finalizeWriteStreamRequest) {\n    try {\n      return retryCallable(() -> writeClient.finalizeWriteStream(finalizeWriteStreamRequest));\n    } catch (ExecutionException | InterruptedException e) {\n      throw new BigQueryConnectorException(\n          String.format(\"Could not finalize stream %s.\", writeStreamName), e);\n    }\n  }\n\n  /** Waits 500 milliseconds. In order to be used as a cushioning period before finalization. */\n  private void waitBeforeFinalization() {\n    try {\n      Sleeper.DEFAULT.sleep(500);\n    } catch (InterruptedException e) {\n      throw new BigQueryConnectorException(\n          String.format(\n              \"Interrupted while sleeping before finalizing write-stream %s\", writeStreamName),\n          e);\n    }\n  }\n\n  /**\n   * Deletes the data left over in the protoRows, using method clearProtoRows, closes the\n   * StreamWriter, shuts down the WriteClient, and nulls out the protoRows and write-stream-name.\n   * This also closes the internal StreamWriter, so that the helper instance is not * usable after\n   * calling <code>commit()</code>.\n   */\n  public void abort() {\n    clean();\n    this.protoRows = null;\n    this.writeStreamName = null;\n  }\n\n  private void clean() {\n    clearProtoRows();\n    if (streamWriter != null) {\n      streamWriter.close();\n    }\n  }\n\n  private void clearProtoRows() {\n    if (this.protoRows != null) {\n      this.protoRows.clear();\n    }\n  }\n\n  public String getWriteStreamName() {\n    return writeStreamName;\n  }\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/BigQueryErrorCode.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.bigquery.connector.common;\n\npublic enum BigQueryErrorCode {\n  BIGQUERY_VIEW_DESTINATION_TABLE_CREATION_FAILED(0),\n  BIGQUERY_DATETIME_PARSING_ERROR(1),\n  BIGQUERY_FAILED_TO_EXECUTE_QUERY(2),\n  BIGQUERY_INVALID_SCHEMA(2),\n  // Should be last\n  UNSUPPORTED(9998),\n  UNKNOWN(9999);\n\n  final int code;\n\n  BigQueryErrorCode(int code) {\n    this.code = code;\n  }\n\n  public int getCode() {\n    return code;\n  }\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/BigQueryJobCompletionListener.java",
    "content": "/*\n * Copyright 2023 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.bigquery.connector.common;\n\nimport com.google.cloud.bigquery.JobInfo;\n\npublic interface BigQueryJobCompletionListener {\n\n  void accept(JobInfo completedJob);\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/BigQueryMetrics.java",
    "content": "package com.google.cloud.bigquery.connector.common;\n\npublic interface BigQueryMetrics {\n  void incrementBytesReadCounter(long val);\n\n  void incrementRowsReadCounter(long val);\n\n  void updateScanTime(long val);\n\n  void updateParseTime(long val);\n\n  void updateTimeInSpark(long val);\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/BigQueryProxyConfig.java",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.bigquery.connector.common;\n\nimport java.net.URI;\nimport java.util.Optional;\n\n/**\n * Config interface to provide proxy parameters. The concrete class implementing this interface\n * should implement methods to provide ProxyUri, ProxyUserName and ProxyPassword.\n */\npublic interface BigQueryProxyConfig {\n\n  /**\n   * The Uniform Resource Identifier ({@link URI URI}) of the proxy sever. This is an Optional field\n   * so can be empty.\n   *\n   * @return java.util.Optional<URI>\n   */\n  Optional<URI> getProxyUri();\n\n  /**\n   * The userName used to connect to the proxy. This is an Optional field so can be empty.\n   *\n   * @return java.util.Optional<String>\n   */\n  Optional<String> getProxyUsername();\n\n  /**\n   * The password used to connect to the proxy. This is an Optional field so can be empty.\n   *\n   * @return java.util.Optional<String>\n   */\n  Optional<String> getProxyPassword();\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/BigQueryProxyTransporterBuilder.java",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.bigquery.connector.common;\n\nimport com.google.api.client.http.HttpTransport;\nimport com.google.api.client.http.apache.v2.ApacheHttpTransport;\nimport com.google.api.core.ApiFunction;\nimport com.google.auth.http.HttpTransportFactory;\nimport io.grpc.HttpConnectProxiedSocketAddress;\nimport io.grpc.ManagedChannelBuilder;\nimport io.grpc.ProxiedSocketAddress;\nimport io.grpc.ProxyDetector;\nimport java.net.InetSocketAddress;\nimport java.net.SocketAddress;\nimport java.net.URI;\nimport java.util.Optional;\nimport org.apache.http.HttpHost;\nimport org.apache.http.auth.AuthScope;\nimport org.apache.http.auth.Credentials;\nimport org.apache.http.auth.UsernamePasswordCredentials;\nimport org.apache.http.client.CredentialsProvider;\nimport org.apache.http.impl.client.BasicCredentialsProvider;\nimport org.apache.http.impl.client.HttpClientBuilder;\n\npublic class BigQueryProxyTransporterBuilder {\n\n  public static ApiFunction<ManagedChannelBuilder, ManagedChannelBuilder>\n      createGrpcChannelConfigurator(\n          Optional<URI> proxyAddress,\n          Optional<String> proxyUsername,\n          Optional<String> proxyPassword) {\n    if (!proxyAddress.isPresent()) {\n      return null;\n    }\n    checkProxyParamsValidity(proxyUsername, proxyPassword);\n\n    URI proxyUri = proxyAddress.get();\n    String httpProxyHost = proxyUri.getHost();\n    int httpProxyPort = proxyUri.getPort();\n    final InetSocketAddress proxySocketAddress =\n        new InetSocketAddress(httpProxyHost, httpProxyPort);\n\n    return new ApiFunction<ManagedChannelBuilder, ManagedChannelBuilder>() {\n      @Override\n      public ManagedChannelBuilder apply(ManagedChannelBuilder input) {\n        return input.proxyDetector(\n            new ProxyDetector() {\n              @Override\n              public ProxiedSocketAddress proxyFor(SocketAddress targetServerAddress) {\n                HttpConnectProxiedSocketAddress.Builder proxySocketBuilder =\n                    HttpConnectProxiedSocketAddress.newBuilder()\n                        .setTargetAddress((InetSocketAddress) targetServerAddress)\n                        .setProxyAddress(proxySocketAddress);\n\n                if (proxyUsername.isPresent() && proxyPassword.isPresent()) {\n                  proxySocketBuilder.setUsername(proxyUsername.get());\n                  proxySocketBuilder.setPassword(proxyPassword.get());\n                }\n\n                return proxySocketBuilder.build();\n              }\n            });\n      }\n    };\n  }\n\n  public static HttpTransportFactory createHttpTransportFactory(\n      Optional<URI> proxyAddress, Optional<String> proxyUsername, Optional<String> proxyPassword) {\n    if (!proxyAddress.isPresent()) {\n      return null;\n    }\n    checkProxyParamsValidity(proxyUsername, proxyPassword);\n\n    URI proxyUri = proxyAddress.get();\n    String httpProxyHost = proxyUri.getHost();\n    int httpProxyPort = proxyUri.getPort();\n    final HttpHost proxyHost = new HttpHost(httpProxyHost, httpProxyPort);\n    HttpClientBuilder httpClientBuilder = HttpClientBuilder.create().setProxy(proxyHost);\n\n    if (proxyUsername.isPresent() && proxyPassword.isPresent()) {\n      Credentials proxyCredentials =\n          new UsernamePasswordCredentials(proxyUsername.get(), proxyPassword.get());\n      CredentialsProvider credentialsProvider = new BasicCredentialsProvider();\n      credentialsProvider.setCredentials(\n          new AuthScope(proxyUri.getHost(), proxyUri.getPort()), proxyCredentials);\n      httpClientBuilder.setDefaultCredentialsProvider(credentialsProvider);\n    }\n\n    return new BigQueryHttpTransportFactory(httpClientBuilder);\n  }\n\n  public static class BigQueryHttpTransportFactory implements HttpTransportFactory {\n    private HttpClientBuilder httpClientBuilder;\n\n    public BigQueryHttpTransportFactory() {\n      // empty constructor:\n      // to solve the InstantiationException in ServiceAccountCredentials at readObject\n    }\n\n    public BigQueryHttpTransportFactory(HttpClientBuilder httpClientBuilder) {\n      this.httpClientBuilder = httpClientBuilder;\n    }\n\n    @Override\n    public HttpTransport create() {\n      return new ApacheHttpTransport(httpClientBuilder.build());\n    }\n  }\n\n  public static void checkProxyParamsValidity(\n      Optional<String> proxyUsername, Optional<String> proxyPassword)\n      throws IllegalArgumentException {\n    if (proxyUsername.isPresent() != proxyPassword.isPresent()) {\n      throw new IllegalArgumentException(\n          \"Both proxyUsername and proxyPassword should be defined or not defined together\");\n    }\n  }\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/BigQueryPushdownException.java",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\npackage com.google.cloud.bigquery.connector.common;\n\nimport static com.google.cloud.bigquery.connector.common.BigQueryErrorCode.UNKNOWN;\n\n/** Exception if query pushdown to BigQuery fails */\npublic class BigQueryPushdownException extends BigQueryConnectorException {\n\n  public BigQueryPushdownException(String message) {\n    super(UNKNOWN, message);\n  }\n\n  public BigQueryPushdownException(String message, Throwable t) {\n    super(UNKNOWN, message, t);\n  }\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/BigQueryPushdownUnsupportedException.java",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\npackage com.google.cloud.bigquery.connector.common;\n\nimport static com.google.cloud.bigquery.connector.common.BigQueryErrorCode.UNSUPPORTED;\n\n/** Exception if query pushdown is for an unsupported operation */\npublic class BigQueryPushdownUnsupportedException extends BigQueryConnectorException {\n\n  public BigQueryPushdownUnsupportedException(String message) {\n    super(UNSUPPORTED, message);\n  }\n\n  public BigQueryPushdownUnsupportedException(String message, Throwable t) {\n    super(UNSUPPORTED, message, t);\n  }\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/BigQueryStorageReadRowsTracer.java",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.bigquery.connector.common;\n\nimport java.io.Serializable;\n\n/**\n * Interface to capture tracing in information for the BigQuery connector. Modelled after {@link\n * com.google.api.gax.tracing.ApiTracer}\n *\n * <p>A single instance of a tracer corresponds with a single logical stream from the service.\n *\n * <p>Paired start/end methods are expected to be called from the same thread.\n *\n * <p>For internal use only.\n */\npublic interface BigQueryStorageReadRowsTracer extends Serializable {\n  /** Record stream initialization time. */\n  void startStream();\n  /** Indicates a fully decoded element has been requested by spark (i.e. Arrow RecordBatch). */\n  void rowsParseStarted();\n\n  /** Indicates when a decoded item was delivered. */\n  void rowsParseFinished(long rowsParsed);\n\n  /** Indicates the next ReadRowsResponse was requested from the server. */\n  void readRowsResponseRequested();\n\n  /** Indicates the next ReadRowsResponse was requested from the server. */\n  void readRowsResponseObtained(long bytesReceived);\n\n  /** The ReadRows stream has finished. */\n  void finished();\n\n  /** Called when the next batch is needed from spark. */\n  void nextBatchNeeded();\n\n  /**\n   * Must only be called before any calls are made to the tracer. This is intended for cases when\n   * multiple threads might be used for processing one stream. tracer that is distinguished between\n   * IDs.\n   *\n   * @param id A distinguisher to use.\n   * @return A new tracer with the ID>\n   */\n  BigQueryStorageReadRowsTracer forkWithPrefix(String id);\n\n  long getBytesRead();\n\n  long getRowsRead();\n\n  long getScanTimeInMilliSec();\n\n  long getParseTimeInMilliSec();\n\n  long getTimeInSparkInMilliSec();\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/BigQueryTracerFactory.java",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.bigquery.connector.common;\n\nimport java.io.Serializable;\nimport java.util.Optional;\n\n/** Factory to create application level tracers for bigquery operations. */\npublic interface BigQueryTracerFactory extends Serializable {\n  BigQueryStorageReadRowsTracer newReadRowsTracer(\n      String streamName,\n      BigQueryMetrics bigQueryMetrics,\n      Optional<ReadSessionMetrics> readSessionMetrics);\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/BigQueryUtil.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.bigquery.connector.common;\n\nimport static com.google.cloud.bigquery.Field.Mode.NULLABLE;\nimport static com.google.cloud.http.BaseHttpServiceException.UNKNOWN_CODE;\nimport static com.google.common.base.Throwables.getCausalChain;\nimport static java.lang.String.format;\n\nimport com.google.auth.Credentials;\nimport com.google.auth.oauth2.ExternalAccountCredentials;\nimport com.google.cloud.bigquery.BigQueryError;\nimport com.google.cloud.bigquery.BigQueryException;\nimport com.google.cloud.bigquery.Clustering;\nimport com.google.cloud.bigquery.ExternalTableDefinition;\nimport com.google.cloud.bigquery.Field;\nimport com.google.cloud.bigquery.Field.Mode;\nimport com.google.cloud.bigquery.FieldList;\nimport com.google.cloud.bigquery.FieldValue;\nimport com.google.cloud.bigquery.FieldValueList;\nimport com.google.cloud.bigquery.HivePartitioningOptions;\nimport com.google.cloud.bigquery.LegacySQLTypeName;\nimport com.google.cloud.bigquery.QueryParameterValue;\nimport com.google.cloud.bigquery.RangePartitioning;\nimport com.google.cloud.bigquery.Schema;\nimport com.google.cloud.bigquery.StandardSQLTypeName;\nimport com.google.cloud.bigquery.StandardTableDefinition;\nimport com.google.cloud.bigquery.TableDefinition;\nimport com.google.cloud.bigquery.TableId;\nimport com.google.cloud.bigquery.TableInfo;\nimport com.google.cloud.bigquery.TableResult;\nimport com.google.cloud.bigquery.TimePartitioning;\nimport com.google.cloud.bigquery.storage.v1.ReadSession;\nimport com.google.cloud.bigquery.storage.v1.ReadStream;\nimport com.google.common.annotations.VisibleForTesting;\nimport com.google.common.base.Objects;\nimport com.google.common.base.Preconditions;\nimport com.google.common.collect.HashMultimap;\nimport com.google.common.collect.ImmutableList;\nimport com.google.common.collect.ImmutableSet;\nimport com.google.common.collect.Multimap;\nimport io.grpc.Status;\nimport io.grpc.Status.Code;\nimport io.grpc.StatusRuntimeException;\nimport java.io.ByteArrayInputStream;\nimport java.io.ByteArrayOutputStream;\nimport java.io.IOException;\nimport java.io.ObjectInputStream;\nimport java.io.ObjectOutputStream;\nimport java.lang.reflect.InvocationTargetException;\nimport java.nio.charset.StandardCharsets;\nimport java.util.ArrayList;\nimport java.util.Arrays;\nimport java.util.Collection;\nimport java.util.HashMap;\nimport java.util.List;\nimport java.util.Locale;\nimport java.util.Map;\nimport java.util.Optional;\nimport java.util.TreeMap;\nimport java.util.UUID;\nimport java.util.function.Function;\nimport java.util.function.IntFunction;\nimport java.util.regex.Matcher;\nimport java.util.regex.Pattern;\nimport java.util.stream.Collectors;\nimport javax.annotation.Nullable;\n\npublic class BigQueryUtil {\n\n  // Numeric is a fixed precision Decimal Type with 38 digits of precision and 9 digits of scale.\n  // See https://cloud.google.com/bigquery/docs/reference/standard-sql/data-types#numeric-type\n  public static final int DEFAULT_NUMERIC_PRECISION = 38;\n  public static final int DEFAULT_NUMERIC_SCALE = 9;\n  public static final int DEFAULT_BIG_NUMERIC_PRECISION = 76;\n  public static final int DEFAULT_BIG_NUMERIC_SCALE = 38;\n  private static final int NO_VALUE = -1;\n  private static final long BIGQUERY_INTEGER_MIN_VALUE = Long.MIN_VALUE;\n  static final ImmutableSet<String> INTERNAL_ERROR_MESSAGES =\n      ImmutableSet.of(\n          \"HTTP/2 error code: INTERNAL_ERROR\",\n          \"Connection closed with unknown cause\",\n          \"Received unexpected EOS on DATA frame from server\");\n\n  static final String READ_SESSION_EXPIRED_ERROR_MESSAGE = \"session expired at\";\n\n  private static final String TARGET_ALIAS =\n      \"__target_\" + UUID.randomUUID().toString().replace(\"-\", \"\");\n  private static final String SOURCE_ALIAS =\n      \"__source_\" + UUID.randomUUID().toString().replace(\"-\", \"\");\n\n  private static final String PROJECT_PATTERN = \"\\\\S+\";\n  private static final String DATASET_PATTERN = \"\\\\w+\";\n  // Allow any character except ':' and '.', which are used as delimiters in qualified names.\n  // These confuse the qualified table parsing.\n  private static final String TABLE_PATTERN = \"[^.:]+\";\n\n  private static final String NAMED_PARAM_PREFIX = \"namedparameters.\";\n  private static final String POSITIONAL_PARAM_PREFIX = \"positionalparameters.\";\n\n  /**\n   * Regex for an optionally fully qualified table.\n   *\n   * <p>Must match 'project.dataset.table' OR the legacy 'project:dataset.table' OR 'dataset.table'\n   * OR 'table'.\n   */\n  private static final Pattern QUALIFIED_TABLE_REGEX =\n      Pattern.compile(\n          format(\"^(((%s)[:.])?(%s)\\\\.)?(%s)$$\", PROJECT_PATTERN, DATASET_PATTERN, TABLE_PATTERN));\n\n  // Based on\n  // https://cloud.google.com/bigquery/docs/reference/storage/rpc/google.cloud.bigquery.storage.v1#google.cloud.bigquery.storage.v1.ReadSession.TableReadOptions\n  private static final int MAX_FILTER_LENGTH_IN_BYTES = 2 << 20;\n\n  private BigQueryUtil() {}\n\n  public static boolean isRetryable(Throwable cause) {\n    return getCausalChain(cause).stream().anyMatch(BigQueryUtil::isRetryableInternalError);\n  }\n\n  static boolean isRetryableInternalError(Throwable t) {\n    if (t instanceof StatusRuntimeException) {\n      StatusRuntimeException statusRuntimeException = (StatusRuntimeException) t;\n      return statusRuntimeException.getStatus().getCode() == Status.Code.INTERNAL\n          && INTERNAL_ERROR_MESSAGES.stream()\n              .anyMatch(message -> statusRuntimeException.getMessage().contains(message));\n    }\n    return false;\n  }\n\n  public static boolean isReadSessionExpired(Throwable cause) {\n    return getCausalChain(cause).stream().anyMatch(BigQueryUtil::isReadSessionExpiredInternalError);\n  }\n\n  static boolean isReadSessionExpiredInternalError(Throwable t) {\n    if (t instanceof StatusRuntimeException) {\n      StatusRuntimeException statusRuntimeException = (StatusRuntimeException) t;\n      return statusRuntimeException.getStatus().getCode() == Code.FAILED_PRECONDITION\n          && statusRuntimeException.getMessage().contains(READ_SESSION_EXPIRED_ERROR_MESSAGE);\n    }\n    return false;\n  }\n\n  static BigQueryException convertToBigQueryException(BigQueryError error) {\n    return new BigQueryException(UNKNOWN_CODE, error.getMessage(), error);\n  }\n\n  static boolean areCredentialsEqual(Credentials credentials1, Credentials credentials2) {\n    if (!(credentials1 instanceof ExternalAccountCredentials)\n        && !(credentials2 instanceof ExternalAccountCredentials)) {\n      return Objects.equal(credentials1, credentials2);\n    }\n\n    return Arrays.equals(\n        getCredentialsByteArray(credentials1), getCredentialsByteArray(credentials2));\n  }\n\n  static byte[] getCredentialsByteArray(Credentials credentials) {\n    ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();\n\n    try {\n      ObjectOutputStream objectOutputStream = new ObjectOutputStream(byteArrayOutputStream);\n      objectOutputStream.writeObject(credentials);\n      objectOutputStream.close();\n    } catch (IOException e) {\n      throw new RuntimeException(e);\n    }\n\n    return byteArrayOutputStream.toByteArray();\n  }\n\n  static Credentials getCredentialsFromByteArray(byte[] byteArray) {\n    try {\n      ObjectInputStream objectInputStream =\n          new ObjectInputStream(new ByteArrayInputStream(byteArray));\n      return (Credentials) objectInputStream.readObject();\n    } catch (IOException | ClassNotFoundException e) {\n      throw new RuntimeException(e);\n    }\n  }\n\n  // returns the first present optional, empty if all parameters are empty\n  public static <T> Optional<T> firstPresent(Optional<T>... optionals) {\n    for (Optional<T> o : optionals) {\n      if (o.isPresent()) {\n        return o;\n      }\n    }\n    return Optional.empty();\n  }\n\n  public static TableId parseTableId(String rawTable) {\n    return parseTableId(rawTable, Optional.empty(), Optional.empty(), Optional.empty());\n  }\n\n  public static TableId parseTableId(\n      String rawTable, Optional<String> dataset, Optional<String> project) {\n    return parseTableId(rawTable, dataset, project, Optional.empty());\n  }\n\n  public static TableId parseTableId(\n      String rawTable,\n      Optional<String> dataset,\n      Optional<String> project,\n      Optional<String> datePartition) {\n    String effectiveTable = rawTable.trim();\n    if (effectiveTable.length() >= 2\n        && effectiveTable.startsWith(\"`\")\n        && effectiveTable.endsWith(\"`\")) {\n      effectiveTable = effectiveTable.substring(1, effectiveTable.length() - 1);\n    }\n\n    Matcher matcher = QUALIFIED_TABLE_REGEX.matcher(effectiveTable);\n    if (!matcher.matches()) {\n      throw new IllegalArgumentException(\n          format(\"Invalid Table ID '%s'. Must match '%s'\", rawTable, QUALIFIED_TABLE_REGEX));\n    }\n    String table = matcher.group(5);\n    Optional<String> parsedDataset = Optional.ofNullable(matcher.group(4));\n    Optional<String> parsedProject = Optional.ofNullable(matcher.group(3));\n    String tableAndPartition =\n        datePartition.map(date -> String.format(\"%s$%s\", table, date)).orElse(table);\n    String actualDataset =\n        firstPresent(parsedDataset, dataset)\n            .orElseThrow(() -> new IllegalArgumentException(\"'dataset' not parsed or provided.\"));\n    return firstPresent(parsedProject, project)\n        .map(p -> TableId.of(p, actualDataset, tableAndPartition))\n        .orElse(TableId.of(actualDataset, tableAndPartition));\n  }\n\n  public static String friendlyTableName(TableId tableId) {\n    return tableId.getProject() != null\n        ? String.format(\"%s.%s.%s\", tableId.getProject(), tableId.getDataset(), tableId.getTable())\n        : String.format(\"%s.%s\", tableId.getDataset(), tableId.getTable());\n  }\n\n  public static void convertAndThrow(BigQueryError error) {\n    throw new BigQueryException(UNKNOWN_CODE, error.getMessage(), error);\n  }\n\n  /**\n   * Solving Issue #248. As the bigquery load API can handle wildcard characters, we replace (a) 10\n   * URIs ending in XXX[0-9].suffix with XXX*.suffix; (b) 10 URIs ending in XXX[0-9]*.suffix with\n   * XXX*.suffix; This reduces the total number of URIs sent to the BigQuery API\n   *\n   * @param uris the list of URIs where the data was written to\n   * @param prefixRegex the regex to catch the part before the file index.\n   * @param suffixRegex the regex to catch the part after the file index.\n   */\n  public static List<String> optimizeLoadUriList(\n      List<String> uris, String prefixRegex, String suffixRegex) {\n    Pattern pattern = Pattern.compile(\"(\" + prefixRegex + \"\\\\d*)\\\\d\\\\**(\" + suffixRegex + \")\");\n    ImmutableList.Builder<String> result = ImmutableList.builder();\n    List<String> workingList = uris;\n    while (!workingList.isEmpty()) {\n      Multimap<String, String> trimmedUriMap = trimUris(pattern, workingList);\n      List<String> nextList = new ArrayList<>();\n      for (String trimmedUri : trimmedUriMap.keySet()) {\n        Collection<String> mappedUris = trimmedUriMap.get(trimmedUri);\n        if (mappedUris.size() == 10) {\n          // All URIs exists, we can replace the last character with '*' in the next iteration\n          nextList.add(trimmedUri);\n        } else {\n          // not all suffixes exist, so we can't optimize further.\n          result.addAll(mappedUris);\n        }\n      }\n      // cleanup and prepare next iteration\n      trimmedUriMap.clear();\n      workingList = nextList;\n    }\n    return result.build();\n  }\n\n  private static Multimap<String, String> trimUris(Pattern pattern, List<String> workingList) {\n    Multimap<String, String> trimmedUriMap = HashMultimap.create();\n    // converting\n    // prefix-1234.suffix to prefix-123*.suffix\n    // prefix-123*.suffix to prefix-12*.suffix\n    for (String uri : workingList) {\n      String trimmedUri = pattern.matcher(uri).replaceFirst(\"$1*$2\");\n      trimmedUriMap.put(trimmedUri, uri);\n    }\n    return trimmedUriMap;\n  }\n\n  /**\n   * Compares to Schema instances for equality. Unlike Schema.equals(), here the caller can\n   * disregard the schema's field order.\n   *\n   * @param sourceSchema the first schema to compare\n   * @param destinationSchema the second schema to compare\n   * @param regardFieldOrder whether to regard the field order in the comparison\n   * @return {@link ComparisonResult#equal()} is the two schema equal each other, {@link\n   *     ComparisonResult#differentWithDescription(List)} otherwise\n   */\n  public static ComparisonResult schemaWritable(\n      Schema sourceSchema,\n      Schema destinationSchema,\n      boolean regardFieldOrder,\n      boolean enableModeCheckForSchemaFields) {\n    if (sourceSchema == destinationSchema) {\n      return ComparisonResult.equal();\n    }\n    // if both are null we would have caught it earlier\n    if (sourceSchema == null || destinationSchema == null) {\n      return ComparisonResult.differentNoDescription();\n    }\n    if (regardFieldOrder) {\n      boolean equalsResult = sourceSchema.equals(destinationSchema);\n      return ComparisonResult.fromEqualsResult(equalsResult);\n    }\n    // compare field by field\n    return fieldListWritable(\n        sourceSchema.getFields(), destinationSchema.getFields(), enableModeCheckForSchemaFields);\n  }\n\n  /**\n   * Create a list of read stream names of given read session.\n   *\n   * @param readSession BQ read session handle\n   * @return list of stream names, empty if read session is null\n   */\n  public static List<String> getStreamNames(ReadSession readSession) {\n    return readSession == null\n        ? new ArrayList<>()\n        : readSession.getStreamsList().stream()\n            .map(ReadStream::getName)\n            // This formulation is used to guarantee a serializable list.\n            .collect(Collectors.toCollection(ArrayList::new));\n  }\n\n  /**\n   * Check to see if the source field can be writen into the destination field. We need this method\n   * as the BigQuery API may leave the mode field as null in case of NULLABLE\n   *\n   * @param sourceField the field which is to be written\n   * @param destinationField the field into which the source is to be written\n   * @param enableModeCheckForSchemaFields if true, both the fields' mode checks are compared,\n   *     skipped otherwise\n   * @return {@link ComparisonResult#equal()} if the source field is writable into destination\n   *     field, {@link ComparisonResult#differentWithDescription(List)} otherwise\n   */\n  @VisibleForTesting\n  static ComparisonResult fieldWritable(\n      Field sourceField, Field destinationField, boolean enableModeCheckForSchemaFields) {\n    if (sourceField == destinationField) {\n      return ComparisonResult.equal();\n    }\n\n    /* If the destination field is NULLABLE or REPEATED and there is no matching field in the source then it is supported\n    but if the destination field is REQUIRED then we do need source field to write into it. */\n    if (sourceField == null) {\n      if (destinationField.getMode() == Mode.REQUIRED) {\n        return ComparisonResult.differentWithDescription(\n            ImmutableList.of(\"Required field not found in source: \" + destinationField.getName()));\n      } else {\n        return ComparisonResult.equal();\n      }\n    }\n\n    // cannot write if the destination table doesn't have the field\n    if (destinationField == null) {\n      return ComparisonResult.differentWithDescription(\n          ImmutableList.of(\"Field not found in destination: \" + sourceField.getName()));\n    }\n\n    if (!Objects.equal(sourceField.getName(), destinationField.getName())) {\n      return ComparisonResult.differentWithDescription(\n          ImmutableList.of(\n              \"Wrong field name\",\n              \"expected source field name: \"\n                  + destinationField.getName()\n                  + \" but was: \"\n                  + sourceField.getName()));\n    }\n\n    ComparisonResult subFieldsResult =\n        fieldListWritable(\n            sourceField.getSubFields(),\n            destinationField.getSubFields(),\n            enableModeCheckForSchemaFields);\n    if (!subFieldsResult.valuesAreEqual()) {\n      return ComparisonResult.differentWithDescription(\n          ImmutableList.of(\n              \"Subfields mismatch for: \" + destinationField.getName(),\n              subFieldsResult.makeMessage()));\n    }\n\n    if (!typeWriteable(sourceField.getType(), destinationField.getType())) {\n      return ComparisonResult.differentWithDescription(\n          ImmutableList.of(\n              \"Incompatible type for field: \" + destinationField.getName(),\n              \"cannot write source type: \"\n                  + sourceField.getType()\n                  + \" to destination type: \"\n                  + destinationField.getType()));\n    }\n    if (enableModeCheckForSchemaFields\n        && !isModeWritable(\n            nullableIfNull(sourceField.getMode()), nullableIfNull(destinationField.getMode()))) {\n      return ComparisonResult.differentWithDescription(\n          ImmutableList.of(\n              \"Incompatible mode for field: \" + destinationField.getName(),\n              \"cannot write source field mode: \"\n                  + nullableIfNull(sourceField.getMode()).name()\n                  + \" to destination field mode: \"\n                  + nullableIfNull(destinationField.getMode()).name()));\n    }\n\n    boolean sourceAndDestMaxLengthNull =\n        (sourceField.getMaxLength() == null && destinationField.getMaxLength() == null);\n    boolean sourceMaxLenLessThanEqualsDestMaxLen =\n        (sourceField.getMaxLength() != null\n            && destinationField.getMaxLength() != null\n            && sourceField.getMaxLength() <= destinationField.getMaxLength());\n    if ((!sourceAndDestMaxLengthNull) && (!sourceMaxLenLessThanEqualsDestMaxLen)) {\n      return ComparisonResult.differentWithDescription(\n          ImmutableList.of(\n              \"Incompatible max length for field: \" + destinationField.getName(),\n              \"cannot write source field with max length: \"\n                  + sourceField.getMaxLength()\n                  + \" to destination field with max length: \"\n                  + destinationField.getMaxLength()));\n    }\n\n    boolean sourceScaleLessThanEqualsDestScale =\n        ((sourceField.getScale() == destinationField.getScale())\n            || (getScale(sourceField) <= getScale(destinationField)));\n    boolean sourcePrecisionLessThanEqualsDestPrecision =\n        ((sourceField.getPrecision() == destinationField.getPrecision())\n            || (getPrecision(sourceField) <= getPrecision(destinationField)));\n    if ((!sourceScaleLessThanEqualsDestScale) || (!sourcePrecisionLessThanEqualsDestPrecision)) {\n      return ComparisonResult.differentWithDescription(\n          ImmutableList.of(\n              \"Incompatible precision, scale for field: \" + destinationField.getName(),\n              \"cannot write source field with precision, scale: \"\n                  + formatPrecisionAndScale(sourceField)\n                  + \" to destination field with precision, scale: \"\n                  + formatPrecisionAndScale(destinationField)));\n    }\n\n    return ComparisonResult.equal();\n  }\n\n  private static String formatPrecisionAndScale(Field field) {\n    return String.format(\"(%s, %s)\", field.getPrecision(), field.getScale());\n  }\n\n  // allowing widening narrow numeric into bignumeric\n  // allowing writing string to time\n  @VisibleForTesting\n  static boolean typeWriteable(LegacySQLTypeName sourceType, LegacySQLTypeName destinationType) {\n    return (sourceType.equals(LegacySQLTypeName.NUMERIC)\n            && destinationType.equals(LegacySQLTypeName.BIGNUMERIC))\n        || (sourceType.equals(LegacySQLTypeName.STRING)\n            && destinationType.equals(LegacySQLTypeName.TIME))\n        || (sourceType.equals(LegacySQLTypeName.STRING)\n            && destinationType.equals(LegacySQLTypeName.DATETIME))\n        || sourceType.equals(destinationType);\n  }\n\n  @VisibleForTesting\n  static int getPrecision(Field field) {\n    return getValueOrDefault(\n        field.getPrecision(),\n        field.getType(),\n        DEFAULT_NUMERIC_PRECISION,\n        DEFAULT_BIG_NUMERIC_PRECISION);\n  }\n\n  @VisibleForTesting\n  static int getScale(Field field) {\n    return getValueOrDefault(\n        field.getScale(), field.getType(), DEFAULT_NUMERIC_SCALE, DEFAULT_BIG_NUMERIC_SCALE);\n  }\n\n  private static int getValueOrDefault(\n      Long value, LegacySQLTypeName type, int numericValue, int bigNumericValue) {\n    if (value != null) {\n      return value.intValue();\n    }\n    // scale is null, so use defaults\n    if (LegacySQLTypeName.NUMERIC.equals(type)) {\n      return numericValue;\n    }\n    if (LegacySQLTypeName.BIGNUMERIC.equals(type)) {\n      return bigNumericValue;\n    }\n    return NO_VALUE;\n  }\n\n  @VisibleForTesting\n  static boolean isModeWritable(Field.Mode sourceMode, Field.Mode destinationMode) {\n    switch (destinationMode) {\n      case REPEATED:\n        return sourceMode == Mode.REPEATED;\n      case REQUIRED:\n      case NULLABLE:\n        return sourceMode != Mode.REPEATED;\n    }\n    return false;\n  }\n\n  @VisibleForTesting\n  static ComparisonResult fieldListWritable(\n      FieldList sourceFieldList,\n      FieldList destinationFieldList,\n      boolean enableModeCheckForSchemaFields) {\n    if (sourceFieldList == destinationFieldList) {\n      return ComparisonResult.equal();\n    }\n\n    // if both are null we would have caught it earlier\n    if (sourceFieldList == null || destinationFieldList == null) {\n      return ComparisonResult.differentNoDescription();\n    }\n\n    // cannot write of the source has more fields than the destination table.\n    if (sourceFieldList.size() > destinationFieldList.size()) {\n      return ComparisonResult.differentWithDescription(\n          ImmutableList.of(\n              \"Number of source fields: \"\n                  + sourceFieldList.size()\n                  + \" is larger than number of destination fields: \"\n                  + destinationFieldList.size()));\n    }\n\n    Map<String, Field> sourceFieldsMap =\n        sourceFieldList.stream().collect(Collectors.toMap(Field::getName, Function.identity()));\n    Map<String, Field> destinationFieldsMap =\n        destinationFieldList.stream()\n            .collect(Collectors.toMap(Field::getName, Function.identity()));\n\n    for (Map.Entry<String, Field> e : destinationFieldsMap.entrySet()) {\n      Field f1 = sourceFieldsMap.get(e.getKey());\n      Field f2 = e.getValue();\n      ComparisonResult result = fieldWritable(f1, f2, enableModeCheckForSchemaFields);\n      if (!result.valuesAreEqual()) {\n        return result;\n      }\n    }\n\n    return ComparisonResult.equal();\n  }\n\n  static Field.Mode nullableIfNull(Field.Mode mode) {\n    return mode == null ? NULLABLE : mode;\n  }\n\n  public static Optional<String> emptyIfNeeded(String value) {\n    return (value == null || value.length() == 0) ? Optional.empty() : Optional.of(value);\n  }\n\n  /**\n   * Create an instance of the given class name, and verify that it is an instance of the required\n   * class\n   */\n  public static <T> T createVerifiedInstance(\n      String fullyQualifiedClassName, Class<T> requiredClass, Object... constructorArgs) {\n    try {\n      Class<?> clazz = Class.forName(fullyQualifiedClassName);\n      Object result =\n          clazz\n              .getDeclaredConstructor(\n                  Arrays.stream(constructorArgs)\n                      .map(Object::getClass)\n                      .toArray((IntFunction<Class<?>[]>) Class[]::new))\n              .newInstance(constructorArgs);\n      if (!requiredClass.isInstance(result)) {\n        throw new IllegalArgumentException(\n            String.format(\n                \"% does not implement %s\",\n                clazz.getCanonicalName(), requiredClass.getCanonicalName()));\n      }\n      return (T) result;\n    } catch (ClassNotFoundException\n        | InstantiationException\n        | IllegalAccessException\n        | InvocationTargetException\n        | NoSuchMethodException e) {\n      throw new IllegalArgumentException(\n          String.format(\n              \"Could not instantiate class [%s], implementing %s\",\n              fullyQualifiedClassName, requiredClass.getCanonicalName()),\n          e);\n    }\n  }\n\n  /**\n   * Verify the given object is Serializable by returning the deserialized version of the serialized\n   * instance\n   */\n  public static <T> T verifySerialization(T obj) {\n    try {\n      ByteArrayOutputStream buffer = new ByteArrayOutputStream();\n      ObjectOutputStream out = new ObjectOutputStream(buffer);\n      out.writeObject(obj);\n      out.flush();\n      out.close();\n      ObjectInputStream in = new ObjectInputStream(new ByteArrayInputStream(buffer.toByteArray()));\n      T result = (T) in.readObject();\n      in.close();\n      return result;\n    } catch (IOException | ClassNotFoundException e) {\n      throw new IllegalArgumentException(\n          \"Serialization test of \" + obj.getClass().getCanonicalName() + \" failed\", e);\n    }\n  }\n\n  public static ImmutableList<String> getPartitionFields(TableInfo tableInfo) {\n    TableDefinition definition = tableInfo.getDefinition();\n    if (definition instanceof StandardTableDefinition) {\n      @SuppressWarnings(\"Varifier\")\n      StandardTableDefinition sdt = (StandardTableDefinition) definition;\n      TimePartitioning timePartitioning = sdt.getTimePartitioning();\n      if (timePartitioning != null) {\n        if (timePartitioning.getField() == null) {\n          // table contains pseudo columns\n          List<String> timePartitionFields = new ArrayList<>();\n          timePartitionFields.add(\"_PARTITIONTIME\");\n          if (timePartitioning.getType().equals(TimePartitioning.Type.DAY)) {\n            timePartitionFields.add(\"_PARTITIONDATE\");\n          }\n          return ImmutableList.copyOf(timePartitionFields);\n        }\n        return ImmutableList.of(timePartitioning.getField());\n      }\n      RangePartitioning rangePartitioning = sdt.getRangePartitioning();\n      if (rangePartitioning != null) {\n        return ImmutableList.of(rangePartitioning.getField());\n      }\n    }\n    if (definition instanceof ExternalTableDefinition) {\n      @SuppressWarnings(\"Varifier\")\n      ExternalTableDefinition edt = (ExternalTableDefinition) definition;\n      HivePartitioningOptions hivePartitioningOptions = edt.getHivePartitioningOptions();\n      if (hivePartitioningOptions != null) {\n        List<String> fields = hivePartitioningOptions.getFields();\n        if (fields != null && !fields.isEmpty()) {\n          return ImmutableList.copyOf(fields);\n        }\n      }\n    }\n    // no partitioning\n    return ImmutableList.of();\n  }\n\n  public static ImmutableList<String> getClusteringFields(TableInfo tableInfo) {\n    TableDefinition definition = tableInfo.getDefinition();\n    if (!(definition instanceof StandardTableDefinition)) {\n      return ImmutableList.of();\n    }\n\n    Clustering clustering = ((StandardTableDefinition) definition).getClustering();\n    if (clustering == null || clustering.getFields() == null) {\n      return ImmutableList.of();\n    }\n    return ImmutableList.copyOf(clustering.getFields());\n  }\n\n  public static boolean filterLengthInLimit(Optional<String> filter) {\n    return filter\n        .map(f -> f.getBytes(StandardCharsets.UTF_8).length < MAX_FILTER_LENGTH_IN_BYTES)\n        .orElse(Boolean.TRUE);\n  }\n\n  /**\n   * Adjusts the wanted schema to properly match the schema of an existing table.\n   *\n   * @param wantedSchema\n   * @param existingTableSchema\n   * @return the adjusted schema\n   */\n  public static Schema adjustSchemaIfNeeded(\n      Schema wantedSchema, Schema existingTableSchema, boolean allowFieldRelaxation) {\n    FieldList fields = wantedSchema.getFields();\n    FieldList existingFields = existingTableSchema.getFields();\n    Map<String, Field> existingFieldsMap =\n        existingFields.stream().collect(Collectors.toMap(Field::getName, Function.identity()));\n    List<Field> adjustedFields =\n        fields.stream()\n            .map(\n                field ->\n                    adjustField(\n                        field, existingFieldsMap.get(field.getName()), allowFieldRelaxation))\n            .collect(Collectors.toList());\n    return Schema.of(adjustedFields);\n  }\n\n  /**\n   * At the moment converts numeric fields to bignumeric if the exisitng schema requires it. Can be\n   * used for other adjustments\n   *\n   * @param field\n   * @param existingField\n   * @return the adjusted field\n   */\n  @VisibleForTesting\n  static Field adjustField(\n      Field field, @Nullable Field existingField, boolean allowFieldRelaxation) {\n    if (existingField == null) {\n      return field;\n    }\n    Mode fieldMode = existingField.getMode() != null ? existingField.getMode() : NULLABLE;\n    if (allowFieldRelaxation && field.getMode() == NULLABLE) {\n      fieldMode = NULLABLE;\n    }\n\n    if (field.getType().equals(LegacySQLTypeName.RECORD)\n        && existingField.getType().equals(LegacySQLTypeName.RECORD)) {\n      // need to go recursively\n      FieldList subFields = field.getSubFields();\n      FieldList exitingSubFields = existingField.getSubFields();\n      Map<String, Field> existingSubFieldsMap =\n          exitingSubFields.stream().collect(Collectors.toMap(Field::getName, Function.identity()));\n      FieldList adjustedSubFields =\n          FieldList.of(\n              subFields.stream()\n                  .map(\n                      subField ->\n                          adjustField(\n                              subField,\n                              existingSubFieldsMap.get(subField.getName()),\n                              allowFieldRelaxation))\n                  .collect(Collectors.toList()));\n      return existingField.toBuilder().setType(LegacySQLTypeName.RECORD, adjustedSubFields).build();\n    }\n    // no adjustment\n    return existingField.toBuilder().setMode(fieldMode).build();\n  }\n\n  public static String prepareQueryForLog(String query, int maxLength) {\n    String noNewLinesQuery = query.replace(\"\\n\", \"\\\\n\");\n    return noNewLinesQuery.length() > maxLength\n        ? noNewLinesQuery.substring(0, maxLength) + /* ellipsis */ '\\u2026'\n        : noNewLinesQuery;\n  }\n\n  static String getQueryForTimePartitionedTable(\n      String destinationTableName,\n      String temporaryTableName,\n      StandardTableDefinition destinationDefinition,\n      TimePartitioning timePartitioning) {\n    TimePartitioning.Type partitionType = timePartitioning.getType();\n    String partitionField = timePartitioning.getField();\n    FieldList allFields = destinationDefinition.getSchema().getFields();\n    Optional<LegacySQLTypeName> partitionFieldType =\n        allFields.stream()\n            .filter(field -> partitionField.equals(field.getName()))\n            .map(field -> field.getType())\n            .findFirst();\n    // Using timestamp_trunc on a DATE field results in $cast_to_DATETIME which prevents pruning\n    // when required_partition_filter is set, as it is not considered a monotonic function\n    String truncFuntion =\n        (partitionFieldType.isPresent() && partitionFieldType.get().equals(LegacySQLTypeName.DATE))\n            ? \"date_trunc\"\n            : \"timestamp_trunc\";\n    String extractedPartitionedSource =\n        String.format(\"%s(`%s`, %s)\", truncFuntion, partitionField, partitionType.toString());\n    String extractedPartitionedTarget =\n        String.format(\n            \"%s(`%s`.`%s`, %s)\",\n            truncFuntion, TARGET_ALIAS, partitionField, partitionType.toString());\n\n    return createOptimizedMergeQuery(\n        destinationDefinition,\n        destinationTableName,\n        temporaryTableName,\n        extractedPartitionedSource,\n        extractedPartitionedTarget,\n        /* partitionMatchAdditionalCondition */ \"TRUE\");\n  }\n\n  private static String createOptimizedMergeQuery(\n      StandardTableDefinition destinationDefinition,\n      String destinationTableName,\n      String temporaryTableName,\n      String extractedPartitionedSource,\n      String extractedPartitionedTarget,\n      String partitionMatchAdditionalCondition) {\n    FieldList allFields = destinationDefinition.getSchema().getFields();\n    String commaSeparatedFields =\n        allFields.stream().map(Field::getName).collect(Collectors.joining(\"`,`\", \"`\", \"`\"));\n    String targetAlias = TARGET_ALIAS;\n    String sourceAlias = SOURCE_ALIAS;\n    String commaSeparatedSourceFields =\n        allFields.stream()\n            .map(Field::getName)\n            .map(name -> String.format(\"`%s`.`%s`\", sourceAlias, name))\n            .collect(Collectors.joining(\",\"));\n\n    String queryFormat =\n        \"DECLARE partitions_to_delete DEFAULT \"\n            + \"(SELECT ARRAY_AGG(DISTINCT(%s) IGNORE NULLS) FROM `%s`); \\n\"\n            + \"MERGE `%s` AS `%s`\\n\"\n            + \"USING `%s` AS `%s`\\n\"\n            + \"ON FALSE\\n\"\n            + \"WHEN NOT MATCHED BY SOURCE AND (%s) AND %s IN UNNEST(partitions_to_delete) THEN DELETE\\n\"\n            + \"WHEN NOT MATCHED BY TARGET THEN\\n\"\n            + \"INSERT(%s) VALUES(%s)\";\n    return String.format(\n        queryFormat,\n        extractedPartitionedSource,\n        temporaryTableName,\n        destinationTableName,\n        targetAlias,\n        temporaryTableName,\n        sourceAlias,\n        partitionMatchAdditionalCondition,\n        extractedPartitionedTarget,\n        commaSeparatedFields,\n        commaSeparatedSourceFields);\n  }\n\n  static String getQueryForRangePartitionedTable(\n      String destinationTableName,\n      String temporaryTableName,\n      StandardTableDefinition destinationDefinition,\n      RangePartitioning rangePartitioning) {\n\n    long start = rangePartitioning.getRange().getStart();\n    long end = rangePartitioning.getRange().getEnd();\n    long interval = rangePartitioning.getRange().getInterval();\n\n    String partitionField = rangePartitioning.getField();\n\n    String extractedPartitionedSource =\n        String.format(\n            \"IFNULL(IF(%s >= %s, 0, RANGE_BUCKET(%s, GENERATE_ARRAY(%s, %s, %s))), -1)\",\n            partitionField, end, partitionField, start, end, interval);\n    String extractedPartitionedTarget =\n        String.format(\n            \"IFNULL(IF(`%s`.`%s` >= %s, 0, RANGE_BUCKET(`%s`.`%s`, GENERATE_ARRAY(%s, %s, %s))), -1)\",\n            TARGET_ALIAS, partitionField, end, TARGET_ALIAS, partitionField, start, end, interval);\n    // needed for tables that require the partition field to be in the where clause. It must be\n    // true.\n    String partitionMatchAdditionalCondition =\n        String.format(\n            \"`%s`.`%s` is NULL OR `%s`.`%s` >= %d\",\n            TARGET_ALIAS, partitionField, TARGET_ALIAS, partitionField, Long.MIN_VALUE);\n\n    return createOptimizedMergeQuery(\n        destinationDefinition,\n        destinationTableName,\n        temporaryTableName,\n        extractedPartitionedSource,\n        extractedPartitionedTarget,\n        partitionMatchAdditionalCondition);\n  }\n\n  // based on https://cloud.google.com/bigquery/docs/reference/rest/v2/Job#jobconfiguration, it\n  // seems that the values are subject to the same restriction\n  public static String sanitizeLabelValue(String value) {\n    int resultLength = Math.min(value.length(), 63);\n    StringBuilder buf = new StringBuilder(value.length());\n    for (int i = 0; i < resultLength; i++) {\n      char ch = Character.toLowerCase(value.charAt(i));\n      if (Character.isLetterOrDigit(ch) || ch == '-' || ch == '_') {\n        buf.append(ch);\n      } else {\n        // if not alpha-numeric or -,_ then append underscore as a placeholder\n        buf.append('_');\n      }\n    }\n    return buf.toString();\n  }\n\n  /**\n   * BigLake Managed tables are not represented by a dedicated type. Instead, their presence is\n   * indicated by the field 'bigLakeConfiguration' within the StandardTableDefinition {@link\n   * StandardTableDefinition#getBigLakeConfiguration()}.\n   *\n   * @param table the table to check\n   * @return Returns true if the table is a BigLake Managed table.\n   */\n  public static boolean isBigLakeManagedTable(TableInfo table) {\n    TableDefinition tableDefinition = table.getDefinition();\n    return tableDefinition.getType() == TableDefinition.Type.TABLE\n        && tableDefinition instanceof StandardTableDefinition\n        && ((StandardTableDefinition) tableDefinition).getBigLakeConfiguration() != null;\n  }\n\n  /**\n   * Since StandardTableDefinition (table_type == TableDefinition.Type.TABLE) can represent both\n   * BigQuery native tables and BigLake Managed tables, the absence of the \"bigLakeConfiguration\"\n   * field within the StandardTableDefinition {@link\n   * StandardTableDefinition#getBigLakeConfiguration()}. indicates a BigQuery native table.\n   *\n   * @param table the table to check\n   * @return Returns true if the table is a BigQuery Native table.\n   */\n  public static boolean isBigQueryNativeTable(TableInfo table) {\n    return table.getDefinition().getType() == TableDefinition.Type.TABLE\n        && !isBigLakeManagedTable(table);\n  }\n\n  /**\n   * Parses query parameters from Spark options based on NamedParameters.* and\n   * PositionalParameters.* prefixes.\n   *\n   * @param options A map containing Spark DataSource options.\n   * @return A QueryParameterHelper object containing either named or positional parameters, or an\n   *     empty state (ParameterMode.NONE).\n   * @throws IllegalArgumentException if both named and positional parameters are specified, if\n   *     parameter format is invalid, type is unknown/unsupported, value parsing fails, positional\n   *     index is invalid/missing/duplicated, or positional parameters are not contiguous from 1.\n   */\n  public static QueryParameterHelper parseQueryParameters(Map<String, String> options) {\n    Map<String, QueryParameterValue> namedParameters = new HashMap<>();\n    Map<Integer, QueryParameterValue> positionalParametersTemp = new TreeMap<>();\n    ParameterMode currentMode = ParameterMode.NONE;\n\n    for (Map.Entry<String, String> entry : options.entrySet()) {\n      String key = entry.getKey();\n      String keyLower = key.toLowerCase(Locale.ROOT);\n      String value = entry.getValue();\n\n      if (keyLower.startsWith(NAMED_PARAM_PREFIX)) {\n        Preconditions.checkArgument(\n            currentMode == ParameterMode.NAMED || currentMode == ParameterMode.NONE,\n            \"Cannot mix NamedParameters.* and PositionalParameters.* options.\");\n        currentMode = ParameterMode.NAMED;\n\n        processNamedParameter(key, value, namedParameters);\n      } else if (keyLower.startsWith(POSITIONAL_PARAM_PREFIX)) {\n        Preconditions.checkArgument(\n            currentMode == ParameterMode.POSITIONAL || currentMode == ParameterMode.NONE,\n            \"Cannot mix NamedParameters.* and PositionalParameters.* options.\");\n        currentMode = ParameterMode.POSITIONAL;\n        processPositionalParameter(key, value, positionalParametersTemp);\n      }\n    }\n\n    switch (currentMode) {\n      case NAMED:\n        return QueryParameterHelper.named(namedParameters);\n      case POSITIONAL:\n        List<QueryParameterValue> positionalList =\n            buildPositionalParameterList(positionalParametersTemp);\n        return QueryParameterHelper.positional(positionalList);\n      case NONE:\n      default:\n        return QueryParameterHelper.none();\n    }\n  }\n\n  /**\n   * Processes a single named parameter option, adding it to the map. Performs validation checks\n   * specific to named parameters.\n   */\n  private static void processNamedParameter(\n      String key, String value, Map<String, QueryParameterValue> namedParams) {\n\n    String paramName = key.substring(NAMED_PARAM_PREFIX.length());\n    Preconditions.checkArgument(\n        !paramName.isEmpty(),\n        String.format(\"Named parameter name cannot be empty. Option key: '%s'\", key));\n\n    QueryParameterValue qpv = parseSingleParameterValue(paramName, value); // Identifier is name\n\n    // Check for duplicates *before* putting\n    Preconditions.checkArgument(\n        !namedParams.containsKey(paramName),\n        String.format(\n            \"Duplicate named parameter definition for '%s'. Option key: '%s'\", paramName, key));\n\n    namedParams.put(paramName, qpv);\n  }\n\n  /**\n   * Processes a single positional parameter option, adding it to the temporary map. Performs\n   * parsing and validation checks specific to positional parameters.\n   */\n  private static void processPositionalParameter(\n      String key, String value, Map<Integer, QueryParameterValue> positionalParamsTemp) {\n\n    String indexStr = key.substring(POSITIONAL_PARAM_PREFIX.length());\n    Preconditions.checkArgument(\n        !indexStr.isEmpty(),\n        String.format(\"Positional parameter index cannot be empty. Option key: '%s'\", key));\n\n    int index;\n    try {\n      index = Integer.parseInt(indexStr);\n    } catch (NumberFormatException e) {\n      throw new IllegalArgumentException(\n          String.format(\n              \"Invalid positional parameter index: '%s' must be an integer. Option key: '%s'\",\n              indexStr, key),\n          e);\n    }\n\n    Preconditions.checkArgument(\n        index >= 1,\n        String.format(\n            \"Invalid positional parameter index: %d. Indices must be 1-based. Option key: '%s'\",\n            index, key));\n\n    QueryParameterValue qpv =\n        parseSingleParameterValue(String.valueOf(index), value); // Identifier is index\n\n    Preconditions.checkArgument(\n        !positionalParamsTemp.containsKey(index),\n        String.format(\n            \"Duplicate positional parameter definition for index: %d. Option key: '%s'\",\n            index, key));\n\n    positionalParamsTemp.put(index, qpv);\n  }\n\n  /**\n   * Builds the final ordered list of positional parameters from the temporary map, checking for\n   * contiguous indices starting from 1.\n   *\n   * @param positionalParamsTemp Sorted map of index to parameter value.\n   * @return Unmodifiable list of positional parameters in order.\n   * @throws NullPointerException if a gap is found (via Preconditions.checkNotNull).\n   */\n  private static List<QueryParameterValue> buildPositionalParameterList(\n      Map<Integer, QueryParameterValue> positionalParamsTemp) {\n    List<QueryParameterValue> positionalList = new ArrayList<>();\n    int maxIndex = ((TreeMap<Integer, QueryParameterValue>) positionalParamsTemp).lastKey();\n\n    for (int i = 1; i <= maxIndex; i++) {\n      QueryParameterValue currentParam = positionalParamsTemp.get(i);\n      Preconditions.checkNotNull(\n          currentParam,\n          String.format(\n              \"Missing positional parameter for index: %d. Parameters must be contiguous starting from 1.\",\n              i));\n      positionalList.add(currentParam);\n    }\n    return positionalList;\n  }\n\n  /**\n   * Parses a \"TYPE:value\" string into a QueryParameterValue.\n   *\n   * @param identifier The name or index (as string) of the parameter, for error messages.\n   * @param typeValueString The combined \"TYPE:value\" string.\n   * @return The corresponding QueryParameterValue.\n   * @throws IllegalArgumentException if the format is invalid, type is unknown/unsupported, or\n   *     value parsing fails.\n   */\n  private static QueryParameterValue parseSingleParameterValue(\n      String identifier, String typeValueString) {\n    Preconditions.checkNotNull(\n        typeValueString,\n        String.format(\"Parameter value string cannot be null for identifier: %s\", identifier));\n\n    int colonIndex = typeValueString.indexOf(':');\n    Preconditions.checkArgument(\n        colonIndex > 0,\n        String.format(\n            \"Invalid parameter value format for identifier '%s': '%s'. Expected 'TYPE:value' with\"\n                + \" non-empty TYPE before ':'.\",\n            identifier, typeValueString));\n\n    String typeStr = typeValueString.substring(0, colonIndex).trim().toUpperCase(Locale.ROOT);\n    String valueStr = typeValueString.substring(colonIndex + 1);\n\n    StandardSQLTypeName type;\n    try {\n      type = StandardSQLTypeName.valueOf(typeStr);\n    } catch (IllegalArgumentException e) {\n      throw new IllegalArgumentException(\n          String.format(\n              \"Unknown query parameter type: '%s' for identifier: '%s'. Supported types: %s\",\n              typeStr,\n              identifier,\n              Arrays.stream(StandardSQLTypeName.values())\n                  .map(Enum::name)\n                  .collect(Collectors.joining(\", \"))),\n          e);\n    }\n\n    Preconditions.checkArgument(\n        type != StandardSQLTypeName.ARRAY && type != StandardSQLTypeName.STRUCT,\n        String.format(\n            \"Unsupported query parameter type: %s for identifier: '%s'. ARRAY and STRUCT types are\"\n                + \" not currently supported as query parameters.\",\n            type, identifier));\n\n    return QueryParameterValue.newBuilder().setValue(valueStr.trim()).setType(type).build();\n  }\n\n  /**\n   * Formats a BigQuery TableResult into a human-readable string array. Each element in the array\n   * represents a row, with columns separated by tabs. The first element is the header row.\n   */\n  public static String[] formatTableResult(TableResult result, boolean withHeader) {\n    List<String> resultList = new ArrayList<>();\n    Schema schema = result.getSchema();\n    if (schema == null) {\n      // Some commands, like DDL, may not return a schema or rows\n      return new String[0];\n    }\n    FieldList fields = schema.getFields();\n\n    // Header row\n    if (withHeader) {\n      resultList.add(fields.stream().map(Field::getName).collect(Collectors.joining(\"\\t\")));\n    }\n\n    // Data rows\n    for (FieldValueList row : result.iterateAll()) {\n      String formattedRow =\n          fields.stream()\n              .map(field -> row.get(field.getName()))\n              .map(BigQueryUtil::fieldValueToString)\n              .collect(Collectors.joining(\"\\t\"));\n      resultList.add(formattedRow);\n    }\n\n    return resultList.toArray(new String[0]);\n  }\n\n  private static String fieldValueToString(FieldValue fieldValue) {\n    if (null == fieldValue || fieldValue.isNull()) {\n      return \"NULL\";\n    }\n    return String.valueOf(fieldValue.getValue());\n  }\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/ComparisonResult.java",
    "content": "package com.google.cloud.bigquery.connector.common;\n\nimport com.google.common.collect.ImmutableList;\nimport java.util.List;\nimport java.util.Objects;\n\npublic class ComparisonResult {\n  private static final ComparisonResult EQUAL = new ComparisonResult(null);\n\n  private static final ComparisonResult DIFFERENT_NO_DESCRIPTION =\n      new ComparisonResult(ImmutableList.of());\n  private final ImmutableList<String> facts;\n\n  static ComparisonResult fromEqualsResult(boolean equal) {\n    return equal ? EQUAL : DIFFERENT_NO_DESCRIPTION;\n  }\n\n  static ComparisonResult differentWithDescription(List<String> facts) {\n    return new ComparisonResult(ImmutableList.copyOf(facts));\n  }\n\n  static ComparisonResult equal() {\n    return EQUAL;\n  }\n\n  static ComparisonResult differentNoDescription() {\n    return DIFFERENT_NO_DESCRIPTION;\n  }\n\n  private ComparisonResult(ImmutableList<String> facts) {\n    this.facts = facts;\n  }\n\n  public boolean valuesAreEqual() {\n    return this.facts == null;\n  }\n\n  public String makeMessage() {\n    if (this.facts == null) {\n      return \"\";\n    }\n    return String.join(\", \", facts);\n  }\n\n  public String toString() {\n    return Objects.toString(facts);\n  }\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/DecompressReadRowsResponse.java",
    "content": "package com.google.cloud.bigquery.connector.common;\n\nimport com.google.cloud.bigquery.storage.v1.ReadRowsResponse;\nimport com.google.cloud.bigquery.storage.v1.ReadSession.TableReadOptions.ResponseCompressionCodec;\nimport com.google.protobuf.ByteString;\nimport java.io.ByteArrayInputStream;\nimport java.io.IOException;\nimport java.io.InputStream;\nimport net.jpountz.lz4.LZ4Factory;\nimport net.jpountz.lz4.LZ4FastDecompressor;\n\npublic class DecompressReadRowsResponse {\n\n  public static InputStream decompressArrowRecordBatch(\n      ReadRowsResponse response, ResponseCompressionCodec compressionCodec) throws IOException {\n    ByteString responseBytes = response.getArrowRecordBatch().getSerializedRecordBatch();\n    return decompressRecordBatchInternal(response, compressionCodec, responseBytes);\n  }\n\n  public static InputStream decompressAvroRecordBatch(\n      ReadRowsResponse response, ResponseCompressionCodec compressionCodec) throws IOException {\n    ByteString responseBytes = response.getAvroRows().getSerializedBinaryRows();\n    return decompressRecordBatchInternal(response, compressionCodec, responseBytes);\n  }\n\n  private static InputStream decompressRecordBatchInternal(\n      ReadRowsResponse response,\n      ResponseCompressionCodec compressionCodec,\n      ByteString responseBytes)\n      throws IOException {\n    // step 1: read the uncompressed_byte_size\n    // https://cloud.google.com/java/docs/reference/google-cloud-bigquerystorage/latest/com.google.cloud.bigquery.storage.v1.ReadRowsResponse#com_google_cloud_bigquery_storage_v1_ReadRowsResponse_getUncompressedByteSize__\n    //\n    long uncompressedByteSize = response.getUncompressedByteSize();\n    if (uncompressedByteSize <= 0) {\n      // response was not compressed, return directly\n      return responseBytes.newInput();\n    }\n\n    // step 2: decompress using the compression codec\n    // If the uncompressed byte size is set, then we want to decompress it, using the specified\n    // compression codec.\n    byte[] compressed = responseBytes.toByteArray();\n    switch (compressionCodec) {\n      case RESPONSE_COMPRESSION_CODEC_LZ4:\n        // decompress LZ4\n        // https://github.com/lz4/lz4-java\n        LZ4Factory factory = LZ4Factory.fastestInstance();\n        LZ4FastDecompressor decompressor = factory.fastDecompressor();\n        byte[] decompressed = new byte[(int) uncompressedByteSize];\n        decompressor.decompress(compressed, 0, decompressed, 0, (int) uncompressedByteSize);\n        return new ByteArrayInputStream(decompressed);\n      case RESPONSE_COMPRESSION_CODEC_UNSPECIFIED:\n      default:\n        // error! the response claims that it was compressed, but you did not specify which\n        // compression codec to use.\n        throw new IOException(\n            \"Missing a compression codec to decode a compressed ReadRowsResponse.\");\n    }\n  }\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/DurationTimer.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.bigquery.connector.common;\n\nimport java.io.Serializable;\nimport java.time.Duration;\n\n/**\n * Minimal timer class that measures total durations.  It can work in two\n * modes.  Repeated calls to {@link #finish()} will measure time between calls to Finish.\n *\n * A call to {@link #start() with a subsequent call to {@link #finish()} will accumulate\n * time between the {@link #start } and {@link #finish()} call.\n */\nfinal class DurationTimer implements Serializable {\n  private static final long serialVersionUID = 3952075543181450716L;\n  private long start = Long.MIN_VALUE;\n  private long accumulatedNanos = 0;\n  private long samples = 0;\n\n  public void start() {\n    start = System.nanoTime();\n  }\n\n  public void finish() {\n    long now = System.nanoTime();\n    if (start != Long.MIN_VALUE) {\n      accumulatedNanos += now - start;\n      samples++;\n    }\n    start = now;\n  }\n\n  public Duration getAccumulatedTime() {\n    return Duration.ofNanos(accumulatedNanos);\n  }\n\n  public long getSamples() {\n    return samples;\n  }\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/EnvironmentContext.java",
    "content": "/*\n * Copyright 2023 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.bigquery.connector.common;\n\nimport com.google.common.collect.ImmutableMap;\n\n/**\n * As the com.google.auth.oauth2.AccessToken class is shaded in the final jar, this class provides\n * the same functionality but maintains its package.\n */\npublic class EnvironmentContext {\n\n  private ImmutableMap<String, String> bigQueryJobLabels;\n\n  public EnvironmentContext(ImmutableMap<String, String> bigQueryJobLabels) {\n    this.bigQueryJobLabels = bigQueryJobLabels;\n  }\n\n  public ImmutableMap<String, String> getBigQueryJobLabels() {\n    return bigQueryJobLabels;\n  }\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/GcpUtil.java",
    "content": "/*\n * Copyright 2025 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.bigquery.connector.common;\n\nimport static java.nio.charset.StandardCharsets.UTF_8;\n\nimport com.google.common.annotations.VisibleForTesting;\nimport com.google.common.base.Suppliers;\nimport com.google.common.io.CharStreams;\nimport com.google.common.io.Closeables;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\nimport java.util.Optional;\nimport java.util.function.Supplier;\nimport org.apache.http.client.config.RequestConfig;\nimport org.apache.http.client.methods.CloseableHttpResponse;\nimport org.apache.http.client.methods.HttpGet;\nimport org.apache.http.impl.client.CloseableHttpClient;\nimport org.apache.http.impl.client.HttpClients;\n\npublic class GcpUtil {\n\n  public static final Supplier<Optional<String>> GCP_ZONE =\n      Suppliers.memoize(GcpUtil::provideGcpZone);\n\n  public static Optional<String> getGcpRegion() {\n    return getGcpZone().map(zone -> zone.substring(0, zone.lastIndexOf('-')));\n  }\n\n  public static Optional<String> getGcpZone() {\n    return GCP_ZONE.get();\n  }\n\n  // Queries the GCE metadata server\n  @VisibleForTesting\n  static Optional<String> provideGcpZone() {\n    RequestConfig config =\n        RequestConfig.custom()\n            .setConnectTimeout(100)\n            .setConnectionRequestTimeout(100)\n            .setSocketTimeout(100)\n            .build();\n    CloseableHttpClient httpClient = HttpClients.custom().setDefaultRequestConfig(config).build();\n    HttpGet httpGet =\n        new HttpGet(\"http://metadata.google.internal/computeMetadata/v1/instance/zone\");\n    httpGet.addHeader(\"Metadata-Flavor\", \"Google\");\n    try (CloseableHttpResponse response = httpClient.execute(httpGet)) {\n      if (response.getStatusLine().getStatusCode() == 200) {\n        String body =\n            CharStreams.toString(new InputStreamReader(response.getEntity().getContent(), UTF_8));\n        return Optional.of(body.substring(body.lastIndexOf('/') + 1));\n      } else {\n        return Optional.empty();\n      }\n    } catch (Exception e) {\n      return Optional.empty();\n    } finally {\n      try {\n        Closeables.close(httpClient, true);\n      } catch (IOException e) {\n        // nothing to do\n      }\n    }\n  }\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/HttpUtil.java",
    "content": "/*\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.bigquery.connector.common;\n\nimport com.google.api.gax.rpc.FixedHeaderProvider;\nimport com.google.api.gax.rpc.HeaderProvider;\nimport java.util.HashMap;\nimport java.util.Map;\n\npublic class HttpUtil {\n\n  private HttpUtil() {}\n\n  public static HeaderProvider createHeaderProvider(BigQueryConfig config, String userAgent) {\n    Map<String, String> headers = new HashMap<>();\n    if (config.useParentProjectForMetadataOperations()) {\n      headers.put(\"X-Goog-User-Project\", config.getParentProjectId());\n    }\n    headers.put(\"user-agent\", userAgent);\n    return FixedHeaderProvider.create(headers);\n  }\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/IdentityTokenSupplier.java",
    "content": "package com.google.cloud.bigquery.connector.common;\n\nimport com.google.auth.oauth2.GoogleCredentials;\nimport com.google.auth.oauth2.IdTokenCredentials;\nimport com.google.auth.oauth2.IdTokenProvider;\nimport com.google.auth.oauth2.IdTokenProvider.Option;\nimport java.io.IOException;\nimport java.io.Serializable;\nimport java.util.Arrays;\nimport java.util.Optional;\nimport org.slf4j.Logger;\nimport org.slf4j.LoggerFactory;\n\npublic class IdentityTokenSupplier implements Serializable {\n  private static final Logger log = LoggerFactory.getLogger(IdentityTokenSupplier.class);\n  private static final Option FORMAT = Option.FORMAT_FULL;\n  private static final Option LICENSE = Option.LICENSES_TRUE;\n  private static final long serialVersionUID = 532621593482642874L;\n\n  public static Optional<String> fetchIdentityToken(String audience) {\n    try {\n      GoogleCredentials googleCredentials = GoogleCredentials.getApplicationDefault();\n\n      IdTokenCredentials idTokenCredentials =\n          IdTokenCredentials.newBuilder()\n              .setIdTokenProvider((IdTokenProvider) googleCredentials)\n              .setTargetAudience(audience)\n              .setOptions(Arrays.asList(FORMAT, LICENSE))\n              .build();\n\n      return Optional.ofNullable(idTokenCredentials.refreshAccessToken().getTokenValue());\n    } catch (IOException | RuntimeException ex) {\n      log.info(\"Unable to obtain identity token\");\n      log.debug(\"Exception while fetching identity token\", ex);\n    }\n    return Optional.empty();\n  }\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/IteratorMultiplexer.java",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.bigquery.connector.common;\n\nimport com.google.common.base.Preconditions;\nimport java.util.Iterator;\nimport java.util.concurrent.ArrayBlockingQueue;\nimport java.util.concurrent.Semaphore;\nimport org.slf4j.Logger;\nimport org.slf4j.LoggerFactory;\n\n/**\n * Manages reading ahead from an iterator and dividing it across multiple iterators that can be read\n * in a round-robin fashion.\n *\n * <p>Useful to parallelizing work from an iterator where order must still be maintained.\n *\n * @param <T> Type of iterable object.\n */\npublic class IteratorMultiplexer<T> implements AutoCloseable {\n  private static final Logger log = LoggerFactory.getLogger(IteratorMultiplexer.class);\n  private static final Object TERMINAL_SENTINEL = new Object();\n  private final Iterator<T> iterator;\n  private final int splits;\n  private final QueueIterator<T>[] iterators;\n  private Thread worker;\n\n  /**\n   * Construct a new instance.\n   *\n   * @param iterator The Iterator to read from.\n   * @param splits The number of output iterators that will read from iterator.\n   */\n  public IteratorMultiplexer(Iterator<T> iterator, int splits) {\n    this.iterator = iterator;\n    this.splits = splits;\n\n    // Filled in when initializing iterators.\n    iterators = new QueueIterator[splits];\n    for (int x = 0; x < splits; x++) {\n      iterators[x] = new QueueIterator<>();\n    }\n  }\n\n  @Override\n  public void close() {\n    if (worker != null) {\n      worker.interrupt();\n      try {\n        worker.join(/*millis=*/ 1000);\n      } catch (InterruptedException e) {\n        throw new RuntimeException(\"Interrupted while waiting on worker thread shutdown.\", e);\n      }\n      worker = null;\n    }\n    for (int x = 0; x < splits; x++) {\n      iterators[x].markDone(/*exception=*/ null);\n    }\n  }\n\n  void readAhead() {\n    Throwable e = null;\n    try {\n      boolean hasMore = true;\n      while (hasMore) {\n        for (int x = 0; x < splits; x++) {\n          if (iterator.hasNext()) {\n            T value = iterator.next();\n            iterators[x].sem.acquire();\n            iterators[x].queue.put(value);\n          } else {\n            hasMore = false;\n            break;\n          }\n        }\n      }\n    } catch (InterruptedException ex) {\n      log.info(\"Worker was interrupted. Ending all iterators\");\n      e = new RuntimeException(ex);\n    } catch (Throwable ex) {\n      log.info(\"Worker had exception. Ending all iterators\", e);\n      e = ex;\n    }\n    for (int x = 0; x < splits; x++) {\n      iterators[x].markDone(e);\n    }\n  }\n\n  public synchronized Iterator<T> getSplit(int split) {\n    if (worker == null) {\n      worker = new Thread(this::readAhead, \"readahead-worker\");\n      worker.setDaemon(true);\n      worker.start();\n    }\n    return iterators[split];\n  }\n\n  private class QueueIterator<T> implements Iterator<T> {\n    private final ArrayBlockingQueue<Object> queue = new ArrayBlockingQueue<>(/*capacity=*/ 2);\n    private final Semaphore sem = new Semaphore(1);\n\n    private Object t = null;\n\n    @Override\n    public boolean hasNext() {\n      if (t == TERMINAL_SENTINEL) {\n        return false;\n      }\n      try {\n        t = queue.take();\n        sem.release();\n      } catch (InterruptedException e) {\n        // We expect all iterators to either make progress together or finish.\n        // This starts the cleanup process to halt all workers.\n        worker.interrupt();\n        t = TERMINAL_SENTINEL;\n      }\n      return t != TERMINAL_SENTINEL;\n    }\n\n    @Override\n    public T next() {\n      Preconditions.checkState(t != TERMINAL_SENTINEL, \"No next message\");\n      if (t instanceof Throwable) {\n        if (t instanceof RuntimeException) {\n          throw (RuntimeException) t;\n        } else {\n          throw new RuntimeException((Throwable) t);\n        }\n      }\n      T ret = (T) t;\n      t = null;\n      return ret;\n    }\n\n    public synchronized void markDone(Throwable e) {\n      if (t == TERMINAL_SENTINEL || t instanceof Exception) {\n        return;\n      }\n      if (queue.remainingCapacity() > 0) {\n        if (e != null) {\n          Preconditions.checkState(queue.offer(e), \"Expected room for exception\");\n        } else {\n          Preconditions.checkState(queue.offer(TERMINAL_SENTINEL), \"Expected room for sentinel\");\n        }\n      }\n    }\n  }\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/LazyInitializationSupplier.java",
    "content": "/*\n * Copyright 2024 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.bigquery.connector.common;\n\nimport static com.google.common.base.Preconditions.checkNotNull;\n\nimport com.google.common.base.Supplier;\nimport javax.annotation.CheckForNull;\nimport org.checkerframework.checker.nullness.qual.Nullable;\n\n/*\n * This class is adapted from MemoizingSupplier of Google's Guava library.\n * A separate class is added to be able to access initialized variable to check if the value is already built.\n */\npublic class LazyInitializationSupplier<T extends @Nullable Object> implements Supplier<T> {\n  final Supplier<T> delegate;\n  volatile boolean initialized;\n  @CheckForNull transient T value;\n\n  public LazyInitializationSupplier(Supplier<T> delegate) {\n    this.delegate = checkNotNull(delegate);\n  }\n\n  @Override\n  public T get() {\n    if (!initialized) {\n      synchronized (this) {\n        if (!initialized) {\n          T t = delegate.get();\n          value = t;\n          initialized = true;\n          return t;\n        }\n      }\n    }\n    return value;\n  }\n\n  @Override\n  public String toString() {\n    return \"Suppliers.memoize(\"\n        + (initialized ? \"<supplier that returned \" + value + \">\" : delegate)\n        + \")\";\n  }\n\n  public boolean isInitialized() {\n    return initialized;\n  }\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/LoggingBigQueryStorageReadRowsTracer.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.bigquery.connector.common;\n\nimport com.google.gson.Gson;\nimport com.google.gson.JsonObject;\nimport java.time.Duration;\nimport java.time.Instant;\nimport java.util.Optional;\nimport org.slf4j.Logger;\nimport org.slf4j.LoggerFactory;\n\n/**\n * Implementation of {@link BigQueryStorageReadRowsTracer} that accumulates and logs times\n * periodically.\n */\npublic class LoggingBigQueryStorageReadRowsTracer implements BigQueryStorageReadRowsTracer {\n  private static final Logger log =\n      LoggerFactory.getLogger(LoggingBigQueryStorageReadRowsTracer.class);\n\n  private final String streamName;\n  private final int logIntervalPowerOf2;\n  // Visible for testing.\n  Instant startTime;\n  final DurationTimer parseTime = new DurationTimer();\n  final DurationTimer sparkTime = new DurationTimer();\n  final DurationTimer serviceTime = new DurationTimer();\n  Instant endTime;\n  long rows = 0;\n  long bytes = 0;\n  // For confirming data is logged.\n  long linesLogged = 0;\n  BigQueryMetrics bigQueryMetrics;\n\n  Optional<ReadSessionMetrics> readSessionMetrics;\n\n  LoggingBigQueryStorageReadRowsTracer(\n      String streamName,\n      int logIntervalPowerOf2,\n      BigQueryMetrics bigQueryMetrics,\n      Optional<ReadSessionMetrics> readSessionMetrics) {\n    this.streamName = streamName;\n    this.logIntervalPowerOf2 = logIntervalPowerOf2;\n    this.bigQueryMetrics = bigQueryMetrics;\n    this.readSessionMetrics = readSessionMetrics;\n  }\n\n  @Override\n  public void startStream() {\n    startTime = Instant.now();\n  }\n\n  @Override\n  public void rowsParseStarted() {\n    parseTime.start();\n  }\n\n  @Override\n  public void rowsParseFinished(long rows) {\n    this.rows += rows;\n    parseTime.finish();\n  }\n\n  @Override\n  public void readRowsResponseRequested() {\n    serviceTime.start();\n  }\n\n  @Override\n  public void readRowsResponseObtained(long bytes) {\n    this.bytes += bytes;\n    serviceTime.finish();\n  }\n\n  @Override\n  public void finished() {\n    endTime = Instant.now();\n    logData();\n  }\n\n  private static Duration average(DurationTimer durationTimer) {\n    long samples = durationTimer.getSamples();\n    if (samples == 0) {\n      return null;\n    }\n    return durationTimer.getAccumulatedTime().dividedBy(samples);\n  }\n\n  private static String format(DurationTimer durationTimer) {\n    long samples = durationTimer.getSamples();\n    if (samples == 0) {\n      return \"Not enough samples.\";\n    }\n    Duration average = average(durationTimer);\n    return String.format(\"Average: %s Samples: %d\", average.toString(), samples);\n  }\n\n  private static String difference(DurationTimer d1, DurationTimer d2) {\n    if (d1.getSamples() == 0 || d2.getSamples() == 0) {\n      return \"Not enough samples.\";\n    }\n    return String.format(\"Average: %s\", average(d1).minus(average(d2)).toString());\n  }\n\n  private static long perSecond(DurationTimer timer, long metric) {\n    if (timer.getSamples() == 0) {\n      return 0;\n    }\n    Duration time = timer.getAccumulatedTime();\n    double seconds = (time.toMillis() / 1000.0);\n    if (seconds != 0) {\n      return (long) (metric / seconds);\n    }\n    return 0;\n  }\n\n  private void logData() {\n    JsonObject jsonObject = new JsonObject();\n    jsonObject.addProperty(\"Stream Name\", streamName);\n    jsonObject.addProperty(\"Started\", startTime == null ? \"\" : startTime.toString());\n    jsonObject.addProperty(\"Ended\", endTime == null ? \"\" : endTime.toString());\n    jsonObject.addProperty(\"Parse Timings\", format(parseTime));\n    jsonObject.addProperty(\"Time in Spark\", difference(sparkTime, parseTime));\n    jsonObject.addProperty(\"Time waiting for service\", format(serviceTime));\n    jsonObject.addProperty(\"Bytes/s\", perSecond(serviceTime, getBytesRead()));\n    jsonObject.addProperty(\"Rows/s\", perSecond(parseTime, getRowsRead()));\n    jsonObject.addProperty(\"Bytes\", getBytesRead());\n    jsonObject.addProperty(\"Rows\", getRowsRead());\n    jsonObject.addProperty(\"I/O time in ms\", getScanTimeInMilliSec());\n    log.info(\"ReadStream Metrics :{}\", new Gson().toJson(jsonObject));\n    bigQueryMetrics.incrementBytesReadCounter(getBytesRead());\n    bigQueryMetrics.incrementRowsReadCounter(getRowsRead());\n    bigQueryMetrics.updateScanTime(getScanTimeInMilliSec());\n    bigQueryMetrics.updateParseTime(getParseTimeInMilliSec());\n    bigQueryMetrics.updateTimeInSpark(getTimeInSparkInMilliSec());\n    readSessionMetrics.ifPresent(\n        metrics -> {\n          metrics.incrementBytesReadAccumulator(getBytesRead());\n          metrics.incrementRowsReadAccumulator(getRowsRead());\n          metrics.incrementParseTimeAccumulator(getParseTimeInMilliSec());\n          metrics.incrementScanTimeAccumulator(getScanTimeInMilliSec());\n        });\n    linesLogged++;\n  }\n\n  @Override\n  public void nextBatchNeeded() {\n    sparkTime.finish();\n    if (((sparkTime.getSamples() + 1) & ((1 << logIntervalPowerOf2) - 1)) == 0) {\n      logData();\n    }\n  }\n\n  @Override\n  public BigQueryStorageReadRowsTracer forkWithPrefix(String id) {\n    return new LoggingBigQueryStorageReadRowsTracer(\n        \"id-\" + id + \"-\" + streamName, logIntervalPowerOf2, bigQueryMetrics, readSessionMetrics);\n  }\n\n  @Override\n  public long getBytesRead() {\n    return bytes;\n  }\n\n  @Override\n  public long getRowsRead() {\n    return rows;\n  }\n\n  @Override\n  public long getScanTimeInMilliSec() {\n    return serviceTime.getAccumulatedTime().toMillis();\n  }\n\n  @Override\n  public long getParseTimeInMilliSec() {\n    return parseTime.getAccumulatedTime().toMillis();\n  }\n\n  @Override\n  public long getTimeInSparkInMilliSec() {\n    return sparkTime.getAccumulatedTime().minus(parseTime.getAccumulatedTime()).toMillis();\n  }\n\n  String getStreamName() {\n    return streamName;\n  }\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/LoggingBigQueryTracerFactory.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.bigquery.connector.common;\n\nimport com.google.inject.Inject;\nimport java.util.Optional;\n\npublic class LoggingBigQueryTracerFactory implements BigQueryTracerFactory {\n  private final int logIntervalPowerOf2;\n\n  @Inject\n  public LoggingBigQueryTracerFactory() {\n    this(/*Log every 2^14 batches*/ 14);\n  }\n\n  LoggingBigQueryTracerFactory(int logIntervalPowerOf2) {\n    this.logIntervalPowerOf2 = logIntervalPowerOf2;\n  }\n\n  @Override\n  public BigQueryStorageReadRowsTracer newReadRowsTracer(\n      String streamName,\n      BigQueryMetrics bigQueryMetrics,\n      Optional<ReadSessionMetrics> readSessionMetrics) {\n    return new LoggingBigQueryStorageReadRowsTracer(\n        streamName, logIntervalPowerOf2, bigQueryMetrics, readSessionMetrics);\n  }\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/MaterializationConfiguration.java",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.bigquery.connector.common;\n\nimport com.google.common.base.Optional;\nimport com.google.common.collect.ImmutableList;\nimport com.google.common.collect.ImmutableMap;\nimport java.util.Map;\n\npublic class MaterializationConfiguration {\n  public static final int DEFAULT_MATERIALIZATION_EXPIRATION_TIME_IN_MINUTES = 24 * 60;\n\n  private final com.google.common.base.Optional<String> materializationProject;\n  private final com.google.common.base.Optional<String> materializationDataset;\n  private final int materializationExpirationTimeInMinutes;\n\n  public static MaterializationConfiguration from(\n      ImmutableMap<String, String> globalOptions, Map<String, String> options) {\n    com.google.common.base.Optional<String> materializationProject =\n        BigQueryConfigurationUtil.getAnyOption(\n            globalOptions,\n            options,\n            ImmutableList.of(\"materializationProject\", \"viewMaterializationProject\"));\n    com.google.common.base.Optional<String> materializationDataset =\n        BigQueryConfigurationUtil.getAnyOption(\n            globalOptions,\n            options,\n            ImmutableList.of(\"materializationDataset\", \"viewMaterializationDataset\"));\n    int materializationExpirationTimeInMinutes =\n        BigQueryConfigurationUtil.getAnyOption(\n                globalOptions, options, \"materializationExpirationTimeInMinutes\")\n            .transform(Integer::parseInt)\n            .or(DEFAULT_MATERIALIZATION_EXPIRATION_TIME_IN_MINUTES);\n    if (materializationExpirationTimeInMinutes < 1) {\n      throw new IllegalArgumentException(\n          \"materializationExpirationTimeInMinutes must have a positive value, the configured value is \"\n              + materializationExpirationTimeInMinutes);\n    }\n\n    return new MaterializationConfiguration(\n        materializationProject, materializationDataset, materializationExpirationTimeInMinutes);\n  }\n\n  private MaterializationConfiguration(\n      Optional<String> materializationProject,\n      Optional<String> materializationDataset,\n      int materializationExpirationTimeInMinutes) {\n    this.materializationProject = materializationProject;\n    this.materializationDataset = materializationDataset;\n    this.materializationExpirationTimeInMinutes = materializationExpirationTimeInMinutes;\n  }\n\n  public Optional<String> getMaterializationProject() {\n    return materializationProject;\n  }\n\n  public Optional<String> getMaterializationDataset() {\n    return materializationDataset;\n  }\n\n  public int getMaterializationExpirationTimeInMinutes() {\n    return materializationExpirationTimeInMinutes;\n  }\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/NonInterruptibleBlockingBytesChannel.java",
    "content": "/*\n * Copyright 2021 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.bigquery.connector.common;\n\nimport java.io.IOException;\nimport java.io.InputStream;\nimport java.nio.ByteBuffer;\nimport java.nio.channels.ReadableByteChannel;\n\n/**\n * Some JDKs implement the ReadableByteChannel that wraps an input stream with a channel that will\n * intercept and reraise interrupted exception. Normally, this is a good thing, however with the\n * connector use-case this triggers a memory leak in the Arrow library (present as of 4.0).\n *\n * <p>So this is a temporary hack to ensure non-blocking behavior to avoid the memory leak. This\n * should be fine because the underlying stream will be interrupted appropriately and only along\n * full message boundaries, which should be sufficient for our use-cases.\n */\npublic class NonInterruptibleBlockingBytesChannel implements ReadableByteChannel {\n  private static final int TRANSFER_SIZE = 4096;\n  private final InputStream is;\n  private boolean closed = false;\n  private byte[] transferBuffer = new byte[TRANSFER_SIZE];\n\n  public NonInterruptibleBlockingBytesChannel(InputStream is) {\n    this.is = is;\n  }\n\n  @Override\n  public int read(ByteBuffer dst) throws IOException {\n    int len = dst.remaining();\n    int totalRead = 0;\n    int bytesRead = 0;\n\n    while (totalRead < len) {\n      int bytesToRead = Math.min((len - totalRead), TRANSFER_SIZE);\n      bytesRead = is.read(transferBuffer, 0, bytesToRead);\n      if (bytesRead < 0) {\n        break;\n      } else {\n        totalRead += bytesRead;\n      }\n      dst.put(transferBuffer, 0, bytesRead);\n    }\n    if ((bytesRead < 0) && (totalRead == 0)) {\n      return -1;\n    }\n\n    return totalRead;\n  }\n\n  @Override\n  public boolean isOpen() {\n    return !closed;\n  }\n\n  @Override\n  public void close() throws IOException {\n    closed = true;\n    is.close();\n  }\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/ParallelArrowReader.java",
    "content": "/*\n * Copyright 2021 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.bigquery.connector.common;\n\nimport com.google.common.base.Preconditions;\nimport java.io.IOException;\nimport java.util.List;\nimport java.util.concurrent.ArrayBlockingQueue;\nimport java.util.concurrent.BlockingQueue;\nimport java.util.concurrent.ExecutorService;\nimport java.util.concurrent.Semaphore;\nimport java.util.concurrent.TimeUnit;\nimport java.util.concurrent.atomic.AtomicBoolean;\nimport java.util.concurrent.atomic.AtomicInteger;\nimport org.apache.arrow.vector.VectorLoader;\nimport org.apache.arrow.vector.VectorSchemaRoot;\nimport org.apache.arrow.vector.VectorUnloader;\nimport org.apache.arrow.vector.ipc.ArrowReader;\nimport org.apache.arrow.vector.ipc.message.ArrowRecordBatch;\nimport org.slf4j.Logger;\nimport org.slf4j.LoggerFactory;\n\n/*\n * A utility class for taking up to N {@link ArrowReader} objects and reading data from them\n * asynchronously. This tries to round robin between all readers given to it to maintain\n * a consistent order. It does not appear spark actually cares about this though\n * so it could be relaxed in the future.\n *\n * This is useful in a few contexts:\n * * For InputPartitionReaders that have expensive synchronous CPU operations\n *   (e.g. parsing/decompression) this allows for pipelining operations with Spark application level\n *   code (assuming there are free CPU cycles).\n * * A way of composing underlying readers for increased throughput (e.g. if readers are each IO\n *   bound waiting on separate services).\n *\n */\npublic class ParallelArrowReader implements AutoCloseable {\n  private static final Logger log = LoggerFactory.getLogger(ParallelArrowReader.class);\n  private static final Object DONE_SENTINEL = new Object();\n\n  // Visible for testing.\n  private final BlockingQueue<Object> queue;\n  private final Semaphore queueSemaphore;\n  private final List<ArrowReader> readers;\n  private final ExecutorService executor;\n  private final VectorLoader loader;\n  private final BigQueryStorageReadRowsTracer rootTracer;\n  private final BigQueryStorageReadRowsTracer tracers[];\n  private final AtomicInteger readersReady;\n\n  // Background thread for reading from delegates.\n  private Thread readerThread;\n\n  /**\n   * @param readers The readers to read from in a round robin order.\n   * @param executor An ExecutorService to process the get method on the delegates. The service will\n   *     be shutdown when this object is closed.\n   */\n  public ParallelArrowReader(\n      List<ArrowReader> readers,\n      ExecutorService executor,\n      VectorLoader loader,\n      BigQueryStorageReadRowsTracer tracer) {\n    this.readers = readers;\n    // Reserve extra space for sentinel and one extra element processing.\n    queue = new ArrayBlockingQueue<>(readers.size() + 2);\n    this.executor = executor;\n    this.loader = loader;\n    this.rootTracer = tracer;\n    this.queueSemaphore = new Semaphore(readers.size());\n    this.readersReady = new AtomicInteger(readers.size());\n    tracers = new BigQueryStorageReadRowsTracer[readers.size()];\n    for (int x = 0; x < readers.size(); x++) {\n      tracers[x] = rootTracer.forkWithPrefix(\"reader-thread-\" + x);\n    }\n    start();\n  }\n\n  public boolean next() throws IOException {\n    rootTracer.nextBatchNeeded();\n    rootTracer.readRowsResponseRequested();\n    ArrowRecordBatch resolvedBatch = null;\n    try {\n      Object nextObject = queue.take();\n      queueSemaphore.release();\n      if (nextObject == DONE_SENTINEL) {\n        return false;\n      }\n      if (nextObject instanceof Throwable) {\n        if (nextObject instanceof IOException) {\n          throw (IOException) nextObject;\n        }\n        throw new IOException((Throwable) nextObject);\n      }\n      Preconditions.checkState(nextObject instanceof ArrowRecordBatch, \"Expected future object\");\n      resolvedBatch = (ArrowRecordBatch) nextObject;\n    } catch (InterruptedException e) {\n      log.info(\"Interrupted when waiting for next batch.\");\n      return false;\n    }\n\n    // We don't have access to bytes here.\n    rootTracer.readRowsResponseObtained(/*bytes=*/ 0);\n\n    if (resolvedBatch != null) {\n      rootTracer.rowsParseStarted();\n      loader.load(resolvedBatch);\n      rootTracer.rowsParseFinished(resolvedBatch.getLength());\n      resolvedBatch.close();\n      return true;\n    }\n    return false;\n  }\n\n  private void start() {\n    readerThread = new Thread(this::consumeReaders);\n    readerThread.setDaemon(true);\n    readerThread.start();\n    rootTracer.startStream();\n  }\n\n  private void consumeReaders() {\n    try {\n      // Tracks which readers have exhausted all of there elements\n      AtomicBoolean[] hasData = new AtomicBoolean[readers.size()];\n      long lastBytesRead[] = new long[readers.size()];\n\n      VectorUnloader[] unloader = new VectorUnloader[readers.size()];\n      VectorSchemaRoot[] roots = new VectorSchemaRoot[readers.size()];\n\n      for (int x = 0; x < hasData.length; x++) {\n        hasData[x] = new AtomicBoolean();\n        hasData[x].set(true);\n        lastBytesRead[x] = 0;\n        roots[x] = readers.get(x).getVectorSchemaRoot();\n        unloader[x] =\n            new VectorUnloader(roots[x], /*includeNullCount=*/ true, /*alignBuffers=*/ false);\n        tracers[x].startStream();\n      }\n\n      while (readersReady.get() > 0) {\n        for (int readerIdx = 0; readerIdx < readers.size(); readerIdx++) {\n          // Ensure that we don't submit another task for the same reader\n          // until the last one completed. This is necessary when some readers run out of\n          // tasks.\n          if (!hasData[readerIdx].get()) {\n            continue;\n          }\n          ArrowReader reader = readers.get(readerIdx);\n          final int idx = readerIdx;\n          queueSemaphore.acquire();\n          executor.submit(\n              () -> {\n                synchronized (roots[idx]) {\n                  if (!hasData[idx].get()) {\n                    return;\n                  }\n                  try {\n                    tracers[idx].readRowsResponseRequested();\n                    hasData[idx].set(reader.loadNextBatch());\n                    if (!hasData[idx].get()) {\n                      queueSemaphore.release();\n                    }\n                    long incrementalBytesRead = reader.bytesRead() - lastBytesRead[idx];\n                    tracers[idx].readRowsResponseObtained(/*bytesReceived=*/ incrementalBytesRead);\n                    lastBytesRead[idx] = reader.bytesRead();\n                  } catch (Throwable e) {\n                    log.info(\"Exception caught while consuming reader.\", e);\n                    hasData[idx].set(false);\n                    readersReady.set(0);\n                    Preconditions.checkState(queue.offer(e), \"Expected space in queue\");\n                  }\n                  ArrowRecordBatch batch = null;\n                  if (!hasData[idx].get()) {\n                    readersReady.addAndGet(-1);\n                    return;\n                  }\n                  int rows = 0;\n                  try {\n                    rows = reader.getVectorSchemaRoot().getRowCount();\n                  } catch (IOException e) {\n                    queue.offer(e);\n                  }\n                  // Not quite parsing but re-use it here.\n                  tracers[idx].rowsParseStarted();\n                  batch = unloader[idx].getRecordBatch();\n                  tracers[idx].rowsParseFinished(rows);\n                  try {\n                    Preconditions.checkState(queue.offer(batch), \"Expected space in queue\");\n                  } catch (Exception e) {\n                    batch.close();\n                    throw e;\n                  }\n                }\n              });\n        }\n      }\n    } catch (Throwable e) {\n      log.info(\"Read ahead caught exceptions\", e);\n      Preconditions.checkState(queue.offer(e), \"Expected available capacity\");\n      return;\n    }\n    Preconditions.checkState(queue.offer(DONE_SENTINEL), \"Expected available capacity\");\n  }\n\n  @Override\n  public void close() {\n    rootTracer.finished();\n    // Try to force reader thread to stop.\n    if (readerThread != null) {\n      readersReady.set(0);\n      readerThread.interrupt();\n      try {\n        readerThread.join(10000);\n      } catch (InterruptedException e) {\n        log.info(\"Interrupted while waiting for reader thread to finish.\");\n      }\n      if (readerThread.isAlive()) {\n        log.warn(\"Reader thread did not shutdown in 10 seconds.\");\n      } else {\n        log.info(\"Reader thread stopped.  Queue size: {}\", queue.size());\n      }\n    }\n    // Stop any queued tasks from processing.\n    executor.shutdownNow();\n\n    try {\n      if (!executor.awaitTermination(10, TimeUnit.SECONDS)) {\n        log.warn(\"executor did not terminate after 10 seconds\");\n      }\n    } catch (InterruptedException e) {\n      log.info(\"Interrupted when awaiting executor termination\");\n    }\n\n    queue.stream()\n        .filter(x -> x instanceof ArrowRecordBatch)\n        .map(x -> (ArrowRecordBatch) x)\n        .forEach(ArrowRecordBatch::close);\n\n    for (BigQueryStorageReadRowsTracer tracer : tracers) {\n      tracer.finished();\n    }\n\n    for (ArrowReader reader : readers) {\n      try {\n        // Don't close the stream here because it will consume all of it.\n        // We let other components worry about stream closure.\n        reader.close(/*close underlying channel*/ false);\n      } catch (Exception e) {\n        log.info(\"Trouble closing delegate readers\", e);\n      }\n    }\n  }\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/ParameterMode.java",
    "content": "/*\n * Copyright 2025 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.bigquery.connector.common;\n\nimport java.io.Serializable;\n\npublic enum ParameterMode implements Serializable {\n  NONE,\n  NAMED,\n  POSITIONAL\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/QueryParameterHelper.java",
    "content": "/*\n * Copyright 2025 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.bigquery.connector.common;\n\nimport com.google.cloud.bigquery.QueryJobConfiguration;\nimport com.google.cloud.bigquery.QueryParameterValue;\nimport com.google.common.base.Preconditions;\nimport java.io.Serializable;\nimport java.util.ArrayList;\nimport java.util.Collections;\nimport java.util.HashMap;\nimport java.util.List;\nimport java.util.Map;\nimport java.util.Optional;\n\n/**\n * Helper class to store parsed query parameters (Named or Positional) and their mode.\n *\n * <p>Instances of this class are created by the {@link BigQueryUtil} class. This class is immutable\n * and serializable, designed for Java 8 compatibility.\n */\npublic final class QueryParameterHelper implements Serializable {\n\n  private static final long serialVersionUID = -283738274937293739L; // For Serializable interface\n\n  private final ParameterMode mode;\n  private final Map<String, QueryParameterValue> namedParameters;\n  private final List<QueryParameterValue> positionalParameters;\n\n  public QueryParameterHelper(\n      ParameterMode mode,\n      Map<String, QueryParameterValue> named,\n      List<QueryParameterValue> positional) {\n    this.mode = mode;\n\n    this.namedParameters = Collections.unmodifiableMap(new HashMap<>(named));\n    this.positionalParameters = Collections.unmodifiableList(new ArrayList<>(positional));\n  }\n\n  static QueryParameterHelper none() {\n    return new QueryParameterHelper(\n        ParameterMode.NONE, Collections.emptyMap(), Collections.emptyList());\n  }\n\n  static QueryParameterHelper named(Map<String, QueryParameterValue> namedParameters) {\n    Preconditions.checkNotNull(\n        namedParameters, \"Input named parameters map cannot be null for named mode\");\n    return new QueryParameterHelper(ParameterMode.NAMED, namedParameters, Collections.emptyList());\n  }\n\n  static QueryParameterHelper positional(List<QueryParameterValue> positionalParameters) {\n    Preconditions.checkNotNull(\n        positionalParameters,\n        \"Input positional parameters list cannot be null for positional mode\");\n\n    return new QueryParameterHelper(\n        ParameterMode.POSITIONAL,\n        Collections.emptyMap(), // Pass empty immutable map\n        positionalParameters);\n  }\n\n  public ParameterMode getMode() {\n    return mode;\n  }\n\n  /**\n   * Returns the named parameters.\n   *\n   * @return An Optional containing an immutable map of named parameters if mode is NAMED, otherwise\n   *     Optional.empty().\n   */\n  public Optional<Map<String, QueryParameterValue>> getNamedParameters() {\n    return mode == ParameterMode.NAMED ? Optional.of(namedParameters) : Optional.empty();\n  }\n\n  /**\n   * Returns the positional parameters.\n   *\n   * @return An Optional containing an immutable list of positional parameters if mode is\n   *     POSITIONAL, otherwise Optional.empty().\n   */\n  public Optional<List<QueryParameterValue>> getPositionalParameters() {\n    return mode == ParameterMode.POSITIONAL ? Optional.of(positionalParameters) : Optional.empty();\n  }\n\n  /** Returns true if no parameters were defined, false otherwise. */\n  public boolean isEmpty() {\n    return mode == ParameterMode.NONE;\n  }\n\n  public QueryJobConfiguration.Builder configureBuilder(QueryJobConfiguration.Builder builder) {\n    Preconditions.checkNotNull(builder, \"QueryJobConfiguration.Builder cannot be null\");\n\n    this.namedParameters.forEach(\n        (paramName, paramValue) -> {\n          builder.addNamedParameter(paramName, paramValue);\n        });\n    this.positionalParameters.forEach(\n        (paramValue) -> {\n          builder.addPositionalParameter(paramValue);\n        });\n\n    return builder;\n  }\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/ReadRowsHelper.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.bigquery.connector.common;\n\nimport static java.util.Objects.requireNonNull;\n\nimport com.google.cloud.bigquery.storage.v1.BigQueryReadClient;\nimport com.google.cloud.bigquery.storage.v1.ReadRowsRequest;\nimport com.google.cloud.bigquery.storage.v1.ReadRowsResponse;\nimport com.google.common.collect.ImmutableList;\nimport java.io.Serializable;\nimport java.util.Collections;\nimport java.util.Iterator;\nimport java.util.List;\nimport java.util.Optional;\nimport org.slf4j.Logger;\nimport org.slf4j.LoggerFactory;\n\npublic class ReadRowsHelper implements AutoCloseable {\n  private static final Logger logger = LoggerFactory.getLogger(ReadRowsHelper.class);\n  private final Options options;\n  private final Optional<BigQueryStorageReadRowsTracer> bigQueryStorageReadRowsTracer;\n\n  public static final class Options implements Serializable {\n    private static final long serialVersionUID = 1424573701386718509L;\n    private final int maxReadRowsRetries;\n    private final String nullableEndpoint;\n    private final int backgroundParsingThreads;\n    private final int prebufferResponses;\n\n    public Options(\n        int maxReadRowsRetries,\n        Optional<String> endpoint,\n        int backgroundParsingThreads,\n        int prebufferResponses) {\n      this.maxReadRowsRetries = maxReadRowsRetries;\n      this.nullableEndpoint = endpoint.orElse(null);\n      this.backgroundParsingThreads = backgroundParsingThreads;\n      this.prebufferResponses = prebufferResponses;\n    }\n\n    public int getMaxReadRowsRetries() {\n      return maxReadRowsRetries;\n    }\n\n    public Optional<String> getEndpoint() {\n      return Optional.ofNullable(nullableEndpoint);\n    }\n\n    public int numBackgroundThreads() {\n      return backgroundParsingThreads;\n    }\n\n    public int numPrebufferResponses() {\n      return prebufferResponses;\n    }\n  }\n\n  private final BigQueryClientFactory bigQueryReadClientFactory;\n  private final List<ReadRowsRequest.Builder> requests;\n  private StreamCombiningIterator incomingStream;\n\n  public ReadRowsHelper(\n      BigQueryClientFactory bigQueryReadClientFactory,\n      ReadRowsRequest.Builder request,\n      Options options,\n      Optional<BigQueryStorageReadRowsTracer> bigQueryStorageReadRowsTracer) {\n    this.bigQueryReadClientFactory =\n        requireNonNull(bigQueryReadClientFactory, \"bigQueryReadClientFactory cannot be null\");\n    this.requests = ImmutableList.of(requireNonNull(request, \"request cannot be null\"));\n    this.options = options;\n    this.bigQueryStorageReadRowsTracer = bigQueryStorageReadRowsTracer;\n  }\n\n  public ReadRowsHelper(\n      BigQueryClientFactory bigQueryReadClientFactory,\n      List<ReadRowsRequest.Builder> requests,\n      Options options) {\n    this.bigQueryReadClientFactory =\n        requireNonNull(bigQueryReadClientFactory, \"bigQueryReadClientFactory cannot be null\");\n    this.requests = requireNonNull(requests, \"request cannot be null\");\n    this.options = options;\n    this.bigQueryStorageReadRowsTracer = Optional.empty();\n  }\n\n  public Iterator<ReadRowsResponse> readRows() {\n    if (requests.isEmpty()) {\n      // Partition is empty, probably due to dynamic partition pruning. Cannot return\n      // StreamCombiningIterator as it\n      // requires at least one request\n      return Collections.emptyIterator();\n    }\n    bigQueryStorageReadRowsTracer.ifPresent(tracer -> tracer.startStream());\n    BigQueryReadClient client = bigQueryReadClientFactory.getBigQueryReadClient();\n\n    incomingStream =\n        new StreamCombiningIterator(\n            client, requests, options.prebufferResponses, options.getMaxReadRowsRetries());\n    return incomingStream;\n  }\n\n  @Override\n  public String toString() {\n    return requests.toString();\n  }\n\n  @Override\n  public void close() {\n    if (incomingStream != null) {\n      try {\n        // There appears to be a race when calling cancel for an already\n        // consumed stream can cause an exception to be thrown. Since\n        // this is part of the shutdown process, it should be safe to\n        // ignore the error.\n        incomingStream.cancel();\n      } catch (Exception e) {\n        logger.debug(\"Error on cancel call\", e);\n      }\n      incomingStream = null;\n    }\n  }\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/ReadRowsResponseInputStreamEnumeration.java",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.bigquery.connector.common;\n\nimport com.google.cloud.bigquery.storage.v1.ReadRowsResponse;\nimport com.google.cloud.bigquery.storage.v1.ReadSession.TableReadOptions.ResponseCompressionCodec;\nimport java.io.IOException;\nimport java.io.InputStream;\nimport java.io.UncheckedIOException;\nimport java.util.Iterator;\nimport java.util.NoSuchElementException;\n\n/**\n * Instrumented {@link java.util.Enumeration} for translating bytes received from the BQ Storage API\n * to continuous input streams.\n */\npublic class ReadRowsResponseInputStreamEnumeration implements java.util.Enumeration<InputStream> {\n\n  private final Iterator<ReadRowsResponse> responses;\n  private ReadRowsResponse currentResponse;\n  private final BigQueryStorageReadRowsTracer tracer;\n  private final ResponseCompressionCodec responseCompressionCodec;\n\n  public ReadRowsResponseInputStreamEnumeration(\n      Iterator<ReadRowsResponse> responses,\n      BigQueryStorageReadRowsTracer tracer,\n      ResponseCompressionCodec compressionCodec) {\n    this.responses = responses;\n    this.tracer = tracer;\n    this.responseCompressionCodec = compressionCodec;\n    loadNextResponse();\n  }\n\n  public boolean hasMoreElements() {\n    return currentResponse != null;\n  }\n\n  public InputStream nextElement() {\n    if (!hasMoreElements()) {\n      throw new NoSuchElementException(\"No more responses\");\n    }\n    ReadRowsResponse ret = currentResponse;\n    loadNextResponse();\n    try {\n      return DecompressReadRowsResponse.decompressArrowRecordBatch(\n          ret, this.responseCompressionCodec);\n    } catch (IOException e) {\n      throw new UncheckedIOException(\"Could not read rows\", e);\n    }\n  }\n\n  void loadNextResponse() {\n    // hasNext is actually the blocking call, so call  readRowsResponseRequested\n    // here.\n    tracer.readRowsResponseRequested();\n    if (responses.hasNext()) {\n      currentResponse = responses.next();\n    } else {\n      currentResponse = null;\n    }\n    tracer.readRowsResponseObtained(\n        currentResponse == null\n            ? 0\n            : currentResponse.getArrowRecordBatch().getSerializedRecordBatch().size());\n  }\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/ReadSessionCreator.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.bigquery.connector.common;\n\nimport static com.google.cloud.bigquery.connector.common.BigQueryErrorCode.UNSUPPORTED;\nimport static java.lang.String.format;\n\nimport com.google.cloud.bigquery.TableDefinition;\nimport com.google.cloud.bigquery.TableId;\nimport com.google.cloud.bigquery.TableInfo;\nimport com.google.cloud.bigquery.storage.v1.ArrowSerializationOptions;\nimport com.google.cloud.bigquery.storage.v1.BigQueryReadClient;\nimport com.google.cloud.bigquery.storage.v1.CreateReadSessionRequest;\nimport com.google.cloud.bigquery.storage.v1.ReadSession;\nimport com.google.cloud.bigquery.storage.v1.ReadSession.TableModifiers;\nimport com.google.cloud.bigquery.storage.v1.ReadSession.TableReadOptions;\nimport com.google.common.cache.Cache;\nimport com.google.common.cache.CacheBuilder;\nimport com.google.common.collect.ImmutableList;\nimport com.google.gson.Gson;\nimport com.google.gson.JsonObject;\nimport com.google.protobuf.Timestamp;\nimport java.time.Duration;\nimport java.time.Instant;\nimport java.util.Optional;\nimport java.util.concurrent.TimeUnit;\nimport java.util.stream.Stream;\nimport org.slf4j.Logger;\nimport org.slf4j.LoggerFactory;\n\n// A helper class, also handles view materialization\npublic class ReadSessionCreator {\n\n  public static final int DEFAULT_MAX_PARALLELISM = 20_000;\n  public static final int MINIMAL_PARALLELISM = 1;\n  public static final int DEFAULT_MIN_PARALLELISM_FACTOR = 3;\n\n  private static final Logger log = LoggerFactory.getLogger(ReadSessionCreator.class);\n  private static boolean initialized = false;\n  private static Cache<CreateReadSessionRequest, ReadSession> READ_SESSION_CACHE;\n\n  private final ReadSessionCreatorConfig config;\n  private final BigQueryClient bigQueryClient;\n  private final BigQueryClientFactory bigQueryReadClientFactory;\n\n  private static synchronized void initializeCache(long readSessionCacheDurationMins) {\n    if (!initialized) {\n      READ_SESSION_CACHE =\n          CacheBuilder.newBuilder()\n              .expireAfterWrite(readSessionCacheDurationMins, TimeUnit.MINUTES)\n              .maximumSize(1000)\n              .build();\n      initialized = true;\n    }\n  }\n\n  public ReadSessionCreator(\n      ReadSessionCreatorConfig config,\n      BigQueryClient bigQueryClient,\n      BigQueryClientFactory bigQueryReadClientFactory) {\n    this.config = config;\n    this.bigQueryClient = bigQueryClient;\n    this.bigQueryReadClientFactory = bigQueryReadClientFactory;\n    initializeCache(config.getReadSessionCacheDurationMins());\n  }\n\n  /**\n   * Creates a new ReadSession for parallel reads.\n   *\n   * <p>Some attributes are governed by the {@link ReadSessionCreatorConfig} that this object was\n   * constructed with.\n   *\n   * @param table The table to create the session for.\n   * @param selectedFields Projection : the fields (e.g. columns) to return\n   * @param filter Selection: how to filter rows that match this filter\n   * @return ReadSessionResponse\n   */\n  public ReadSessionResponse create(\n      TableId table, ImmutableList<String> selectedFields, Optional<String> filter) {\n    Instant sessionPrepStartTime = Instant.now();\n    TableInfo tableDetails = bigQueryClient.getTable(table);\n    TableInfo actualTable = getActualTable(tableDetails, selectedFields, filter);\n\n    BigQueryReadClient bigQueryReadClient = bigQueryReadClientFactory.getBigQueryReadClient();\n    log.info(\n        \"|creation a read session for table {}, parameters: \"\n            + \"|selectedFields=[{}],\"\n            + \"|filter=[{}]\"\n            + \"|snapshotTimeMillis[{}]\",\n        BigQueryUtil.friendlyTableName(table),\n        String.join(\",\", selectedFields),\n        filter.orElse(\"None\"),\n        config.getSnapshotTimeMillis().isPresent()\n            ? String.valueOf(config.getSnapshotTimeMillis().getAsLong())\n            : \"None\");\n\n    String tablePath = toTablePath(actualTable.getTableId());\n    CreateReadSessionRequest request =\n        config\n            .getRequestEncodedBase()\n            .map(\n                value -> {\n                  try {\n                    return com.google.cloud.bigquery.storage.v1.CreateReadSessionRequest.parseFrom(\n                        java.util.Base64.getDecoder().decode(value));\n                  } catch (com.google.protobuf.InvalidProtocolBufferException e) {\n                    throw new RuntimeException(\"Couldn't decode:\" + value, e);\n                  }\n                })\n            .orElse(CreateReadSessionRequest.newBuilder().build());\n    ReadSession.Builder requestedSession = request.getReadSession().toBuilder();\n    config.getTraceId().ifPresent(traceId -> requestedSession.setTraceId(traceId));\n\n    TableReadOptions.Builder readOptions = requestedSession.getReadOptionsBuilder();\n    if (!isInputTableAView(tableDetails)) {\n      filter.ifPresent(readOptions::setRowRestriction);\n    }\n    readOptions.addAllSelectedFields(selectedFields);\n    readOptions.setArrowSerializationOptions(\n        ArrowSerializationOptions.newBuilder()\n            .setBufferCompression(config.getArrowCompressionCodec())\n            .build());\n    readOptions.setResponseCompressionCodec(config.getResponseCompressionCodec());\n\n    int preferredMinStreamCount =\n        config\n            .getPreferredMinParallelism()\n            .orElseGet(\n                () -> {\n                  int defaultPreferredMinStreamCount =\n                      Math.max(\n                          MINIMAL_PARALLELISM,\n                          DEFAULT_MIN_PARALLELISM_FACTOR * config.getDefaultParallelism());\n                  log.debug(\n                      \"using default preferred min parallelism [{}]\",\n                      defaultPreferredMinStreamCount);\n                  return defaultPreferredMinStreamCount;\n                });\n\n    int maxStreamCount =\n        config\n            .getMaxParallelism()\n            .orElseGet(\n                () -> {\n                  int defaultMaxStreamCount =\n                      Math.max(ReadSessionCreator.DEFAULT_MAX_PARALLELISM, preferredMinStreamCount);\n                  log.debug(\"using default max parallelism [{}]\", defaultMaxStreamCount);\n                  return defaultMaxStreamCount;\n                });\n    int minStreamCount = preferredMinStreamCount;\n    if (minStreamCount > maxStreamCount) {\n      minStreamCount = maxStreamCount;\n      log.warn(\n          \"preferred min parallelism is larger than the max parallelism, therefore setting it to\"\n              + \" max parallelism [{}]\",\n          minStreamCount);\n    }\n    Instant sessionPrepEndTime = Instant.now();\n\n    TableModifiers.Builder modifiers = TableModifiers.newBuilder();\n\n    if (!isInputTableAView(tableDetails)) {\n      config\n          .getSnapshotTimeMillis()\n          .ifPresent(\n              millis -> {\n                Instant snapshotTime = Instant.ofEpochMilli(millis);\n                modifiers.setSnapshotTime(\n                    Timestamp.newBuilder()\n                        .setSeconds(snapshotTime.getEpochSecond())\n                        .setNanos(snapshotTime.getNano())\n                        .build());\n              });\n    }\n\n    CreateReadSessionRequest createReadSessionRequest =\n        request\n            .newBuilder()\n            .setParent(\"projects/\" + bigQueryClient.getProjectId())\n            .setReadSession(\n                requestedSession\n                    .setDataFormat(config.getReadDataFormat())\n                    .setReadOptions(readOptions)\n                    .setTableModifiers(modifiers)\n                    .setTable(tablePath)\n                    .build())\n            .setMaxStreamCount(maxStreamCount)\n            .setPreferredMinStreamCount(minStreamCount)\n            .build();\n    if (config.isReadSessionCachingEnabled()\n        && getReadSessionCache().asMap().containsKey(createReadSessionRequest)) {\n      ReadSession readSession = getReadSessionCache().asMap().get(createReadSessionRequest);\n      log.info(\"Reusing read session: {}, for table: {}\", readSession.getName(), table);\n      return new ReadSessionResponse(readSession, actualTable);\n    }\n    ReadSession readSession = bigQueryReadClient.createReadSession(createReadSessionRequest);\n\n    if (readSession != null) {\n      Instant sessionCreationEndTime = Instant.now();\n      if (config.isReadSessionCachingEnabled()) {\n        getReadSessionCache().put(createReadSessionRequest, readSession);\n      }\n      JsonObject jsonObject = new JsonObject();\n      jsonObject.addProperty(\"readSessionName\", readSession.getName());\n      jsonObject.addProperty(\"readSessionCreationStartTime\", sessionPrepStartTime.toString());\n      jsonObject.addProperty(\"readSessionCreationEndTime\", sessionCreationEndTime.toString());\n      jsonObject.addProperty(\n          \"readSessionPrepDuration\",\n          Duration.between(sessionPrepStartTime, sessionPrepEndTime).toMillis());\n      jsonObject.addProperty(\n          \"readSessionCreationDuration\",\n          Duration.between(sessionPrepEndTime, sessionCreationEndTime).toMillis());\n      jsonObject.addProperty(\n          \"readSessionDuration\",\n          Duration.between(sessionPrepStartTime, sessionCreationEndTime).toMillis());\n      log.info(\"Read session:{}\", new Gson().toJson(jsonObject));\n      log.info(\n          \"Received {} partitions from the BigQuery Storage API for\"\n              + \" session {}. Notice that the number of streams in actual may be lower than the\"\n              + \" requested number, depending on the amount parallelism that is reasonable for\"\n              + \" the table and the maximum amount of parallelism allowed by the system.\",\n          readSession.getStreamsCount(),\n          readSession.getName());\n    }\n\n    return new ReadSessionResponse(readSession, actualTable);\n  }\n\n  static String toTablePath(TableId tableId) {\n    return format(\n        \"projects/%s/datasets/%s/tables/%s\",\n        tableId.getProject(), tableId.getDataset(), tableId.getTable());\n  }\n\n  public TableInfo getActualTable(\n      TableInfo table, ImmutableList<String> requiredColumns, Optional<String> filter) {\n    String[] filters = filter.map(Stream::of).orElseGet(Stream::empty).toArray(String[]::new);\n    return getActualTable(table, requiredColumns, filters);\n  }\n\n  TableInfo getActualTable(\n      TableInfo table, ImmutableList<String> requiredColumns, String[] filters) {\n    TableDefinition tableDefinition = table.getDefinition();\n    TableDefinition.Type tableType = tableDefinition.getType();\n    if (TableDefinition.Type.TABLE == tableType\n        || TableDefinition.Type.EXTERNAL == tableType\n        || TableDefinition.Type.SNAPSHOT == tableType) {\n      return table;\n    }\n    if (isInputTableAView(table)) {\n      // get it from the view\n      String querySql =\n          bigQueryClient.createSql(\n              table.getTableId(), requiredColumns, filters, config.getSnapshotTimeMillis());\n      log.debug(\"querySql is {}\", querySql);\n      return bigQueryClient.materializeViewToTable(\n          querySql, table.getTableId(), config.getMaterializationExpirationTimeInMinutes());\n    } else {\n      // not regular table or a view\n      throw new BigQueryConnectorException(\n          UNSUPPORTED,\n          format(\n              \"Table type '%s' of table '%s.%s' is not supported\",\n              tableType, table.getTableId().getDataset(), table.getTableId().getTable()));\n    }\n  }\n\n  public boolean isInputTableAView(TableInfo table) {\n    TableDefinition tableDefinition = table.getDefinition();\n    TableDefinition.Type tableType = tableDefinition.getType();\n\n    if (TableDefinition.Type.VIEW == tableType\n        || TableDefinition.Type.MATERIALIZED_VIEW == tableType) {\n      if (!config.isViewsEnabled()) {\n        throw new BigQueryConnectorException(\n            UNSUPPORTED,\n            format(\n                \"Views are not enabled. You can enable views by setting '%s' to true. Notice\"\n                    + \" additional cost may occur.\",\n                config.getViewEnabledParamName()));\n      }\n      return true;\n    }\n    return false;\n  }\n\n  // visible for testing\n  Cache<CreateReadSessionRequest, ReadSession> getReadSessionCache() {\n    return READ_SESSION_CACHE;\n  }\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/ReadSessionCreatorConfig.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.bigquery.connector.common;\n\nimport com.google.cloud.bigquery.storage.v1.ArrowSerializationOptions.CompressionCodec;\nimport com.google.cloud.bigquery.storage.v1.DataFormat;\nimport com.google.cloud.bigquery.storage.v1.ReadSession.TableReadOptions.ResponseCompressionCodec;\nimport java.util.Optional;\nimport java.util.OptionalInt;\nimport java.util.OptionalLong;\n\npublic class ReadSessionCreatorConfig {\n  private final boolean viewsEnabled;\n  private final String viewEnabledParamName;\n  private final Optional<String> materializationProject;\n  private final Optional<String> materializationDataset;\n  private final int materializationExpirationTimeInMinutes;\n  private final DataFormat readDataFormat;\n  private final int maxReadRowsRetries;\n  private final OptionalInt maxParallelism;\n  private final OptionalInt preferredMinParallelism;\n  private final int defaultParallelism;\n  private final Optional<String> requestEncodedBase;\n  private final Optional<String> bigQueryStorageGrpcEndpoint;\n  private final Optional<String> bigQueryHttpEndpoint;\n  private final int backgroundParsingThreads;\n  private final boolean pushAllFilters;\n  private final int prebufferResponses;\n  private final int streamsPerPartition;\n  private final CompressionCodec arrowCompressionCodec;\n  private final ResponseCompressionCodec responseCompressionCodec;\n  private final Optional<String> traceId;\n  private final boolean enableReadSessionCaching;\n  private final long readSessionCacheDurationMins;\n  private final OptionalLong snapshotTimeMillis;\n\n  ReadSessionCreatorConfig(\n      boolean viewsEnabled,\n      Optional<String> materializationProject,\n      Optional<String> materializationDataset,\n      int materializationExpirationTimeInMinutes,\n      DataFormat readDataFormat,\n      int maxReadRowsRetries,\n      String viewEnabledParamName,\n      OptionalInt maxParallelism,\n      OptionalInt preferredMinParallelism,\n      int defaultParallelism,\n      Optional<String> requestEncodedBase,\n      Optional<String> bigQueryStorageGrpcEndpoint,\n      Optional<String> bigQueryHttpEndpoint,\n      int backgroundParsingThreads,\n      boolean pushAllFilters,\n      int prebufferResponses,\n      int streamsPerPartition,\n      CompressionCodec arrowCompressionCodec,\n      ResponseCompressionCodec responseCompressionCodec,\n      Optional<String> traceId,\n      boolean enableReadSessionCaching,\n      long readSessionCacheDurationMins,\n      OptionalLong snapshotTimeMillis) {\n    this.viewsEnabled = viewsEnabled;\n    this.viewEnabledParamName = viewEnabledParamName;\n    this.materializationProject = materializationProject;\n    this.materializationDataset = materializationDataset;\n    this.materializationExpirationTimeInMinutes = materializationExpirationTimeInMinutes;\n    this.readDataFormat = readDataFormat;\n    this.maxReadRowsRetries = maxReadRowsRetries;\n    this.maxParallelism = maxParallelism;\n    this.preferredMinParallelism = preferredMinParallelism;\n    this.defaultParallelism = defaultParallelism;\n    this.requestEncodedBase = requestEncodedBase;\n    this.bigQueryStorageGrpcEndpoint = bigQueryStorageGrpcEndpoint;\n    this.bigQueryHttpEndpoint = bigQueryHttpEndpoint;\n    this.backgroundParsingThreads = backgroundParsingThreads;\n    this.pushAllFilters = pushAllFilters;\n    this.prebufferResponses = prebufferResponses;\n    this.streamsPerPartition = streamsPerPartition;\n    this.arrowCompressionCodec = arrowCompressionCodec;\n    this.responseCompressionCodec = responseCompressionCodec;\n    this.traceId = traceId;\n    this.enableReadSessionCaching = enableReadSessionCaching;\n    this.readSessionCacheDurationMins = readSessionCacheDurationMins;\n    this.snapshotTimeMillis = snapshotTimeMillis;\n  }\n\n  public boolean isViewsEnabled() {\n    return viewsEnabled;\n  }\n\n  public String getViewEnabledParamName() {\n    return viewEnabledParamName;\n  }\n\n  public Optional<String> getMaterializationProject() {\n    return materializationProject;\n  }\n\n  public Optional<String> getMaterializationDataset() {\n    return materializationDataset;\n  }\n\n  public int getMaterializationExpirationTimeInMinutes() {\n    return materializationExpirationTimeInMinutes;\n  }\n\n  public DataFormat getReadDataFormat() {\n    return readDataFormat;\n  }\n\n  public CompressionCodec getArrowCompressionCodec() {\n    return arrowCompressionCodec;\n  }\n\n  public ResponseCompressionCodec getResponseCompressionCodec() {\n    return responseCompressionCodec;\n  }\n\n  public int getMaxReadRowsRetries() {\n    return maxReadRowsRetries;\n  }\n\n  public OptionalInt getMaxParallelism() {\n    return maxParallelism;\n  }\n\n  public int getDefaultParallelism() {\n    return defaultParallelism;\n  }\n\n  public Optional<String> getRequestEncodedBase() {\n    return this.requestEncodedBase;\n  }\n\n  public Optional<String> getBigQueryStorageGrpcEndpoint() {\n    return bigQueryStorageGrpcEndpoint;\n  }\n\n  public Optional<String> getBigQueryHttpEndpoint() {\n    return bigQueryHttpEndpoint;\n  }\n\n  public int backgroundParsingThreads() {\n    return this.backgroundParsingThreads;\n  }\n\n  public boolean getPushAllFilters() {\n    return this.pushAllFilters;\n  }\n\n  public ReadRowsHelper.Options toReadRowsHelperOptions() {\n    return new ReadRowsHelper.Options(\n        getMaxReadRowsRetries(),\n        getBigQueryStorageGrpcEndpoint(),\n        backgroundParsingThreads(),\n        getPrebufferResponses());\n  }\n\n  public int streamsPerPartition() {\n    return streamsPerPartition;\n  }\n\n  public int getPrebufferResponses() {\n    return prebufferResponses;\n  }\n\n  public Optional<String> getTraceId() {\n    return traceId;\n  }\n\n  public OptionalInt getPreferredMinParallelism() {\n    return preferredMinParallelism;\n  }\n\n  public boolean isReadSessionCachingEnabled() {\n    return enableReadSessionCaching;\n  }\n\n  public long getReadSessionCacheDurationMins() {\n    return readSessionCacheDurationMins;\n  }\n\n  public OptionalLong getSnapshotTimeMillis() {\n    return snapshotTimeMillis;\n  }\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/ReadSessionCreatorConfigBuilder.java",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.bigquery.connector.common;\n\nimport com.google.cloud.bigquery.storage.v1.ArrowSerializationOptions.CompressionCodec;\nimport com.google.cloud.bigquery.storage.v1.DataFormat;\nimport com.google.cloud.bigquery.storage.v1.ReadSession.TableReadOptions.ResponseCompressionCodec;\nimport com.google.errorprone.annotations.CanIgnoreReturnValue;\nimport java.util.Optional;\nimport java.util.OptionalInt;\nimport java.util.OptionalLong;\n\npublic class ReadSessionCreatorConfigBuilder {\n\n  private boolean viewsEnabled;\n  private Optional<String> materializationProject = Optional.empty();\n  private Optional<String> materializationDataset = Optional.empty();\n  private int materializationExpirationTimeInMinutes = 120;\n  private DataFormat readDataFormat = DataFormat.ARROW;\n  private int maxReadRowsRetries = 10;\n  private String viewEnabledParamName = \"\";\n  private OptionalInt maxParallelism = OptionalInt.empty();\n  private OptionalInt preferredMinParallelism = OptionalInt.empty();\n  private int defaultParallelism = 1000;\n  private Optional<String> requestEncodedBase = Optional.empty();\n  private Optional<String> bigQueryStorageGrpcEndpoint = Optional.empty();\n  private Optional<String> bigQueryHttpEndpoint = Optional.empty();\n  private int backgroundParsingThreads = 0;\n  private boolean pushAllFilters = true;\n  int prebufferResponses = 1;\n  int streamsPerPartition = 1;\n  private CompressionCodec arrowCompressionCodec = CompressionCodec.COMPRESSION_UNSPECIFIED;\n  private ResponseCompressionCodec responseCompressionCodec =\n      ResponseCompressionCodec.RESPONSE_COMPRESSION_CODEC_UNSPECIFIED;\n  private Optional<String> traceId = Optional.empty();\n  private boolean enableReadSessionCaching = true;\n  private long readSessionCacheDurationMins = 5L;\n  private OptionalLong snapshotTimeMillis = OptionalLong.empty();\n\n  @CanIgnoreReturnValue\n  public ReadSessionCreatorConfigBuilder setViewsEnabled(boolean viewsEnabled) {\n    this.viewsEnabled = viewsEnabled;\n    return this;\n  }\n\n  @CanIgnoreReturnValue\n  public ReadSessionCreatorConfigBuilder setMaterializationProject(\n      Optional<String> materializationProject) {\n    this.materializationProject = materializationProject;\n    return this;\n  }\n\n  @CanIgnoreReturnValue\n  public ReadSessionCreatorConfigBuilder setMaterializationDataset(\n      Optional<String> materializationDataset) {\n    this.materializationDataset = materializationDataset;\n    return this;\n  }\n\n  @CanIgnoreReturnValue\n  public ReadSessionCreatorConfigBuilder setMaterializationExpirationTimeInMinutes(\n      int materializationExpirationTimeInMinutes) {\n    this.materializationExpirationTimeInMinutes = materializationExpirationTimeInMinutes;\n    return this;\n  }\n\n  @CanIgnoreReturnValue\n  public ReadSessionCreatorConfigBuilder setReadDataFormat(DataFormat readDataFormat) {\n    this.readDataFormat = readDataFormat;\n    return this;\n  }\n\n  @CanIgnoreReturnValue\n  public ReadSessionCreatorConfigBuilder setMaxReadRowsRetries(int maxReadRowsRetries) {\n    this.maxReadRowsRetries = maxReadRowsRetries;\n    return this;\n  }\n\n  @CanIgnoreReturnValue\n  public ReadSessionCreatorConfigBuilder setViewEnabledParamName(String viewEnabledParamName) {\n    this.viewEnabledParamName = viewEnabledParamName;\n    return this;\n  }\n\n  @CanIgnoreReturnValue\n  public ReadSessionCreatorConfigBuilder setMaxParallelism(OptionalInt maxParallelism) {\n    this.maxParallelism = maxParallelism;\n    return this;\n  }\n\n  @CanIgnoreReturnValue\n  public ReadSessionCreatorConfigBuilder setPreferredMinParallelism(\n      OptionalInt preferredMinParallelism) {\n    this.preferredMinParallelism = preferredMinParallelism;\n    return this;\n  }\n\n  @CanIgnoreReturnValue\n  public ReadSessionCreatorConfigBuilder setDefaultParallelism(int defaultParallelism) {\n    this.defaultParallelism = defaultParallelism;\n    return this;\n  }\n\n  @CanIgnoreReturnValue\n  public ReadSessionCreatorConfigBuilder setRequestEncodedBase(\n      Optional<String> requestEncodedBase) {\n    this.requestEncodedBase = requestEncodedBase;\n    return this;\n  }\n\n  @CanIgnoreReturnValue\n  public ReadSessionCreatorConfigBuilder setBigQueryStorageGrpcEndpoint(\n      Optional<String> bigQueryStorageGrpcEndpoint) {\n    this.bigQueryStorageGrpcEndpoint = bigQueryStorageGrpcEndpoint;\n    return this;\n  }\n\n  @CanIgnoreReturnValue\n  public ReadSessionCreatorConfigBuilder setBigQueryHttpEndpoint(\n      Optional<String> bigQueryHttpEndpoint) {\n    this.bigQueryHttpEndpoint = bigQueryHttpEndpoint;\n    return this;\n  }\n\n  @CanIgnoreReturnValue\n  public ReadSessionCreatorConfigBuilder setBackgroundParsingThreads(int backgroundParsingThreads) {\n    this.backgroundParsingThreads = backgroundParsingThreads;\n    return this;\n  }\n\n  @CanIgnoreReturnValue\n  public ReadSessionCreatorConfigBuilder setPushAllFilters(boolean pushAllFilters) {\n    this.pushAllFilters = pushAllFilters;\n    return this;\n  }\n\n  @CanIgnoreReturnValue\n  public ReadSessionCreatorConfigBuilder setPrebufferReadRowsResponses(int prebufferResponses) {\n    this.prebufferResponses = prebufferResponses;\n    return this;\n  }\n\n  @CanIgnoreReturnValue\n  public ReadSessionCreatorConfigBuilder setStreamsPerPartition(int streamsPerPartition) {\n    this.streamsPerPartition = streamsPerPartition;\n    return this;\n  }\n\n  @CanIgnoreReturnValue\n  public ReadSessionCreatorConfigBuilder setArrowCompressionCodec(\n      CompressionCodec arrowCompressionCodec) {\n    this.arrowCompressionCodec = arrowCompressionCodec;\n    return this;\n  }\n\n  @CanIgnoreReturnValue\n  public ReadSessionCreatorConfigBuilder setResponseCompressionCodec(\n      ResponseCompressionCodec responseCompressionCodec) {\n    this.responseCompressionCodec = responseCompressionCodec;\n    return this;\n  }\n\n  @CanIgnoreReturnValue\n  public ReadSessionCreatorConfigBuilder setTraceId(Optional<String> traceId) {\n    this.traceId = traceId;\n    return this;\n  }\n\n  public ReadSessionCreatorConfigBuilder setEnableReadSessionCaching(\n      boolean enableReadSessionCaching) {\n    this.enableReadSessionCaching = enableReadSessionCaching;\n    return this;\n  }\n\n  public ReadSessionCreatorConfigBuilder setReadSessionCacheDurationMins(\n      long readSessionCacheDurationMins) {\n    this.readSessionCacheDurationMins = readSessionCacheDurationMins;\n    return this;\n  }\n\n  @CanIgnoreReturnValue\n  public ReadSessionCreatorConfigBuilder setSnapshotTimeMillis(OptionalLong snapshotTimeMillis) {\n    this.snapshotTimeMillis = snapshotTimeMillis;\n    return this;\n  }\n\n  public ReadSessionCreatorConfig build() {\n    return new ReadSessionCreatorConfig(\n        viewsEnabled,\n        materializationProject,\n        materializationDataset,\n        materializationExpirationTimeInMinutes,\n        readDataFormat,\n        maxReadRowsRetries,\n        viewEnabledParamName,\n        maxParallelism,\n        preferredMinParallelism,\n        defaultParallelism,\n        requestEncodedBase,\n        bigQueryStorageGrpcEndpoint,\n        bigQueryHttpEndpoint,\n        backgroundParsingThreads,\n        pushAllFilters,\n        prebufferResponses,\n        streamsPerPartition,\n        arrowCompressionCodec,\n        responseCompressionCodec,\n        traceId,\n        enableReadSessionCaching,\n        readSessionCacheDurationMins,\n        snapshotTimeMillis);\n  }\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/ReadSessionMetrics.java",
    "content": "/*\n * Copyright 2023 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.bigquery.connector.common;\n\npublic interface ReadSessionMetrics {\n  void incrementBytesReadAccumulator(long value);\n\n  void incrementRowsReadAccumulator(long value);\n\n  void incrementScanTimeAccumulator(long value);\n\n  void incrementParseTimeAccumulator(long value);\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/ReadSessionResponse.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.bigquery.connector.common;\n\nimport com.google.cloud.bigquery.TableInfo;\nimport com.google.cloud.bigquery.storage.v1.ReadSession;\n\npublic class ReadSessionResponse {\n\n  private final ReadSession readSession;\n  private final TableInfo readTableInfo;\n\n  public ReadSessionResponse(ReadSession readSession, TableInfo readTableInfo) {\n    this.readSession = readSession;\n    this.readTableInfo = readTableInfo;\n  }\n\n  public ReadSession getReadSession() {\n    return readSession;\n  }\n\n  public TableInfo getReadTableInfo() {\n    return readTableInfo;\n  }\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/StreamCombiningIterator.java",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.bigquery.connector.common;\n\nimport com.google.api.gax.grpc.GrpcCallContext;\nimport com.google.api.gax.rpc.ApiCallContext;\nimport com.google.api.gax.rpc.ResponseObserver;\nimport com.google.api.gax.rpc.StreamController;\nimport com.google.cloud.bigquery.storage.v1.BigQueryReadClient;\nimport com.google.cloud.bigquery.storage.v1.ReadRowsRequest;\nimport com.google.cloud.bigquery.storage.v1.ReadRowsResponse;\nimport com.google.common.base.Preconditions;\nimport com.google.common.cache.CacheBuilder;\nimport com.google.common.cache.CacheLoader;\nimport com.google.common.cache.LoadingCache;\nimport com.google.common.util.concurrent.UncheckedExecutionException;\nimport java.util.Collection;\nimport java.util.Collections;\nimport java.util.Iterator;\nimport java.util.NoSuchElementException;\nimport java.util.Optional;\nimport java.util.concurrent.ArrayBlockingQueue;\nimport java.util.concurrent.ExecutionException;\nimport java.util.concurrent.TimeUnit;\nimport java.util.concurrent.atomic.AtomicInteger;\nimport java.util.stream.Collectors;\nimport org.slf4j.Logger;\nimport org.slf4j.LoggerFactory;\n\n/**\n * An iterator that combines one or more ReadRows requests into a single iterator. Ordering of\n * messages is not guaranteed from the streams.\n *\n * <p>This is adapted from ServerStream in gax. In comparison toServerStream, this implementation\n * also buffers more a configured number of responses instead of a single one. For connections with\n * high latency between client and server this can processing costs. It also allows combining one or\n * more ReadRows calls into single iterator to potentially increase perceived client throughput if\n * that becomes a bottleneck for processing.\n */\npublic class StreamCombiningIterator implements Iterator<ReadRowsResponse> {\n  private static final Logger log = LoggerFactory.getLogger(StreamCombiningIterator.class);\n  private static final Object EOS = new Object();\n  // Contains either a ReadRowsResponse, or a terminal object of throwable OR EOS\n  // This class is engineered keep responses below capacity unless a terminal state has\n  // been reached.\n  private final ArrayBlockingQueue<Object> responses;\n  private final ArrayBlockingQueue<Observer> observersQueue;\n  private final AtomicInteger observersLeft;\n  private final int bufferEntriesPerStream;\n  private final int numRetries;\n  private final Object lock = new Object();\n  private final BigQueryReadClient client;\n  Object last;\n  volatile boolean cancelled = false;\n  private final Collection<Observer> observers;\n  private static final long IDENTITY_TOKEN_TTL_IN_MINUTES = 50;\n  private static final LoadingCache<String, Optional<String>> READ_SESSION_TO_IDENTITY_TOKEN_CACHE =\n      CacheBuilder.newBuilder()\n          .expireAfterWrite(IDENTITY_TOKEN_TTL_IN_MINUTES, TimeUnit.MINUTES)\n          .build(CacheLoader.from(IdentityTokenSupplier::fetchIdentityToken));\n\n  StreamCombiningIterator(\n      BigQueryReadClient client,\n      Collection<ReadRowsRequest.Builder> requests,\n      int bufferEntriesPerStream,\n      int numRetries) {\n    this.client = client;\n    observersLeft = new AtomicInteger(requests.size());\n    this.bufferEntriesPerStream = bufferEntriesPerStream;\n    Preconditions.checkArgument(\n        this.bufferEntriesPerStream > 0,\n        \"bufferEntriesPerstream must be positive.  Received: %s\",\n        this.bufferEntriesPerStream);\n    if (this.bufferEntriesPerStream > 0 || requests.size() > 0) {\n      log.info(\n          \"new combining stream with {} streams and {} buffered entries\",\n          requests.size(),\n          this.bufferEntriesPerStream);\n    }\n    // + 1 to leave space for terminal object.\n    responses = new ArrayBlockingQueue<>((requests.size() * this.bufferEntriesPerStream) + 1);\n    observersQueue = new ArrayBlockingQueue<>(requests.size() * this.bufferEntriesPerStream);\n    this.numRetries = numRetries;\n    observers = requests.stream().map(Observer::new).collect(Collectors.toList());\n  }\n\n  synchronized void stopWithError(Throwable error) {\n    synchronized (lock) {\n      if (cancelled) {\n        return;\n      }\n\n      try {\n        completeStream(/*addEos=*/ false);\n      } finally {\n        Preconditions.checkState(\n            responses.add(error), \"Responses should always have capacity to add element\");\n      }\n    }\n  }\n\n  private boolean hasActiveObservers() {\n    return observersLeft.get() > 0;\n  }\n\n  /**\n   * Consumes the next response and asynchronously request the next response from the observer.\n   *\n   * @return The next response.\n   * @throws NoSuchElementException If the stream has been consumed or cancelled.\n   */\n  @Override\n  public ReadRowsResponse next() {\n    if (!hasNext()) {\n      throw new NoSuchElementException();\n    }\n    try {\n      Observer observer = observersQueue.poll();\n      Preconditions.checkState(observer != null);\n      observer.request();\n      @SuppressWarnings(\"unchecked\")\n      ReadRowsResponse tmp = (ReadRowsResponse) last;\n      return tmp;\n    } finally {\n      if (last != EOS) {\n        last = null;\n      }\n    }\n  }\n\n  /**\n   * Checks if the stream has been fully consumed or cancelled. This method will block until the\n   * observer enqueues another event (response or completion event). If the observer encountered an\n   * error, this method will propagate the error and put itself into an error where it will always\n   * return the same error.\n   *\n   * @return true If iterator has more responses.\n   */\n  @Override\n  public boolean hasNext() {\n    if (last == null) {\n      try {\n        last = responses.take();\n      } catch (InterruptedException e) {\n        cancel();\n        Thread.currentThread().interrupt();\n        throw new RuntimeException(e);\n      }\n    }\n    // Preserve async error while keeping the caller's stacktrace as a suppressed exception\n    if (last instanceof RuntimeException) {\n      RuntimeException runtimeException = (RuntimeException) last;\n      runtimeException.addSuppressed(new RuntimeException(\"Asynchronous task failed\"));\n      throw runtimeException;\n    }\n\n    // This should never really happen because currently gax doesn't throw checked exceptions.\n    // Wrap checked exceptions. This will preserve both the caller's stacktrace and the async error.\n    if (last instanceof Throwable) {\n      Throwable throwable = (Throwable) last;\n      throw new UncheckedExecutionException(throwable);\n    }\n\n    return last != EOS;\n  }\n\n  public void cancel() {\n    synchronized (lock) {\n      if (cancelled) {\n        return;\n      }\n      completeStream(/*addEos=*/ true);\n    }\n  }\n\n  private void maybeFinished() {\n    synchronized (lock) {\n      if (cancelled) {\n        return;\n      }\n      if (hasActiveObservers()) {\n        return;\n      }\n      completeStream(/*addEos=*/ true);\n    }\n    for (Observer observer : observers) {\n      observer.cancel();\n    }\n  }\n\n  private void completeStream(boolean addEos) {\n    cancelled = true;\n    observersLeft.set(0);\n    try {\n      for (Observer observer : observers) {\n        observer.cancel();\n      }\n    } finally {\n      if (addEos) {\n        responses.add(EOS);\n      }\n    }\n  }\n\n  private String parseReadSessionId(String stream) {\n    int streamsIndex = stream.indexOf(\"/streams\");\n    if (streamsIndex != -1) {\n      return stream.substring(0, streamsIndex);\n    } else {\n      log.warn(\"Stream name {} in invalid format\", stream);\n      return stream;\n    }\n  }\n\n  private void newConnection(Observer observer, ReadRowsRequest.Builder request) {\n    synchronized (lock) {\n      if (!cancelled) {\n        ApiCallContext callContext = GrpcCallContext.createDefault();\n        try {\n          callContext =\n              READ_SESSION_TO_IDENTITY_TOKEN_CACHE\n                  .get(parseReadSessionId(request.getReadStream()))\n                  .map(\n                      token ->\n                          GrpcCallContext.createDefault()\n                              .withExtraHeaders(\n                                  Collections.singletonMap(\n                                      \"x-bigquerystorage-api-token\",\n                                      Collections.singletonList(token))))\n                  .orElse(GrpcCallContext.createDefault());\n        } catch (ExecutionException e) {\n          log.error(\"Unable to obtain identity token\", e);\n        }\n        client.readRowsCallable().call(request.build(), observer, callContext);\n      }\n    }\n  }\n\n  class Observer implements ResponseObserver<ReadRowsResponse> {\n    /* Offset into the stream that this is processing. */\n    private long readRowsCount = 0;\n    /* Number of retries so far on this observer */\n    private int retries = 0;\n    /**\n     * All methods accessing controller must be synchronized using controllerLock. The states of\n     * this object are: - Fresh object: null - Stream ready (receiving responses): not null -\n     * Retrying stream: null - Stream Finished: null\n     */\n    StreamController controller;\n    // Number of responses enqueued in the main iterator.\n    AtomicInteger enqueuedCount = new AtomicInteger(0);\n    private final Object controllerLock = new Object();\n\n    // The ReadRows request.  Uses a builder so offset can easily be set for retry.\n    ReadRowsRequest.Builder builder;\n\n    Observer(ReadRowsRequest.Builder builder) {\n      this.builder = builder;\n      newConnection(this, builder);\n    }\n\n    @Override\n    public void onResponse(ReadRowsResponse value) {\n      readRowsCount += value.getRowCount();\n      // Note we don't take a global lock here, so ordering of observers might be different then\n      // responses.  This should be OK because it should balance out in the end (there should\n      // never be more then bufferResponses enquered from any given observer at any time).\n      // Ordering is important to ensure there is always an observer present for the given response.\n      Preconditions.checkState(observersQueue.add(this));\n      Preconditions.checkState(responses.add(value), \"Expected capacity in responses\");\n    }\n\n    @Override\n    public void onStart(StreamController controller) {\n      synchronized (StreamCombiningIterator.this.lock) {\n        if (cancelled) {\n          controller.cancel();\n          return;\n        }\n        synchronized (controllerLock) {\n          this.controller = controller;\n          controller.disableAutoInboundFlowControl();\n          // Regiest one more because request always decrements.\n          enqueuedCount.incrementAndGet();\n          request();\n        }\n      }\n    }\n\n    @Override\n    public void onError(Throwable t) {\n      // if relevant, retry the read, from the last read position\n      if (BigQueryUtil.isRetryable(t) && retries < numRetries) {\n        synchronized (controllerLock) {\n          controller = null;\n        }\n        builder.setOffset(readRowsCount);\n        newConnection(this, builder);\n        retries++;\n      } else {\n        if (BigQueryUtil.isReadSessionExpired(t)) {\n          RuntimeException runtimeException =\n              new RuntimeException(\n                  \"Read session expired after 6 hours. Dataframes on BigQuery tables cannot be \"\n                      + \"operated on beyond this time-limit. Your options: \"\n                      + \"(1) try finishing within 6 hours, \"\n                      + \"(2) use Spark dataframe caching, \"\n                      + \"(3) read from a newly created BigQuery dataframe.\",\n                  t);\n          stopWithError(runtimeException);\n        } else {\n          stopWithError(t);\n        }\n      }\n    }\n\n    @Override\n    public void onComplete() {\n      synchronized (controllerLock) {\n        controller = null;\n      }\n      int left = observersLeft.decrementAndGet();\n      maybeFinished();\n    }\n\n    public synchronized void request() {\n\n      if (cancelled) {\n        return;\n      }\n      boolean canExit = false;\n      int count = enqueuedCount.decrementAndGet();\n\n      // Division by is somewhat arbitrary, a better solution would instument\n      // timing and start refreshing just in time.\n      if (count > (bufferEntriesPerStream / 4)) {\n        // Default netty/gRPC values can oversubscribe streams which can\n        // cause thread contention.  By waiting for the buffer to run down\n        // it causes natural thead back-pressure to allow application work\n        // to succeed.\n        return;\n      }\n      int addBack = bufferEntriesPerStream - count;\n      Preconditions.checkState(addBack > 0);\n      enqueuedCount.addAndGet(addBack);\n\n      while (!canExit) {\n\n        synchronized (controllerLock) {\n          if (controller == null) {\n            return;\n          }\n\n          // When not null there are a few cases to consider:\n          // 1.  Stream is active, so we want to request here.\n          // 2.  Stream is active but onError has been called and blocked on the lock.\n          //     In this case by decrementing above the new request should be taken care\n          //     after clearing and creating the new stream.\n          // 3.  The stream has no more messages.\n          // 4.  Stream is inactive (still initializing).\n          try {\n            controller.request(addBack);\n            canExit = true;\n          } catch (RuntimeException e) {\n            // controller might not be started and javadoc isn't clear if it is on its path\n            // to shutdown on what should happen.\n            log.info(\"Exception on flow control request {} {}\", e, builder.getReadStream());\n          }\n        }\n      }\n    }\n\n    public void cancel() {\n      synchronized (controllerLock) {\n        if (controller != null) {\n          try {\n            controller.cancel();\n          } catch (RuntimeException e) {\n            // There could be edge cases here where controller is already cancelled or not yet\n            // read or something else is happening.  We don't want this to be fatal.\n          }\n        }\n      }\n    }\n  }\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/UserAgentProvider.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.bigquery.connector.common;\n\npublic interface UserAgentProvider {\n\n  String getUserAgent();\n\n  String getConnectorInfo();\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/VersionProvider.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.bigquery.connector.common;\n\n@FunctionalInterface\npublic interface VersionProvider {\n\n  String getVersion();\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/main/java/com/google/cloud/bigquery/connector/common/WriteStreamStatistics.java",
    "content": "package com.google.cloud.bigquery.connector.common;\n\npublic class WriteStreamStatistics {\n  private final long rowCount;\n  private final long bytesWritten;\n\n  public WriteStreamStatistics(long rowCount, long bytesWritten) {\n    this.rowCount = rowCount;\n    this.bytesWritten = bytesWritten;\n  }\n\n  public long getRowCount() {\n    return rowCount;\n  }\n\n  public long getBytesWritten() {\n    return bytesWritten;\n  }\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/test/java/com/google/cloud/bigquery/connector/common/BigQueryClientFactoryTest.java",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.bigquery.connector.common;\n\nimport static com.google.common.truth.Truth.*;\nimport static org.junit.Assert.assertNotNull;\nimport static org.junit.Assert.assertNotSame;\nimport static org.junit.Assert.assertSame;\nimport static org.mockito.Mockito.mock;\nimport static org.mockito.Mockito.when;\nimport static org.mockito.Mockito.withSettings;\n\nimport com.google.api.gax.retrying.RetrySettings;\nimport com.google.api.gax.rpc.FixedHeaderProvider;\nimport com.google.api.gax.rpc.HeaderProvider;\nimport com.google.auth.Credentials;\nimport com.google.auth.oauth2.GoogleCredentials;\nimport com.google.auth.oauth2.ImpersonatedCredentials;\nimport com.google.auth.oauth2.ServiceAccountCredentials;\nimport com.google.cloud.bigquery.QueryJobConfiguration.Priority;\nimport com.google.cloud.bigquery.storage.v1.BigQueryReadClient;\nimport com.google.cloud.bigquery.storage.v1.BigQueryWriteClient;\nimport com.google.common.base.Objects;\nimport com.google.common.collect.ImmutableList;\nimport com.google.common.collect.ImmutableMap;\nimport java.io.ByteArrayInputStream;\nimport java.io.ByteArrayOutputStream;\nimport java.io.ObjectInputStream;\nimport java.io.ObjectOutputStream;\nimport java.net.URI;\nimport java.security.PrivateKey;\nimport java.util.Calendar;\nimport java.util.Collection;\nimport java.util.Collections;\nimport java.util.Map;\nimport java.util.Optional;\nimport java.util.Set;\nimport org.junit.Test;\nimport org.mockito.Answers;\n\npublic class BigQueryClientFactoryTest {\n  private static final String CLIENT_EMAIL =\n      \"36680232662-vrd7ji19qe3nelgchd0ah2csanun6bnr@developer.gserviceaccount.com\";\n  private static final String PRIVATE_KEY_ID = \"d84a4fefcf50791d4a90f2d7af17469d6282df9d\";\n  private static final Collection<String> SCOPES = Collections.singletonList(\"dummy.scope\");\n  private static final String USER = \"user@example.com\";\n  private static final String PROJECT_ID = \"project-id\";\n\n  private final PrivateKey privateKey = mock(PrivateKey.class);\n  private final BigQueryCredentialsSupplier bigQueryCredentialsSupplier =\n      mock(BigQueryCredentialsSupplier.class);\n  private final BigQueryConfig bigQueryConfig = mock(BigQueryConfig.class);\n  // initialized in the constructor due dependency on bigQueryConfig\n  private final HeaderProvider headerProvider;\n  private final BigQueryProxyConfig bigQueryProxyConfig =\n      new BigQueryProxyConfig() {\n        @Override\n        public Optional<URI> getProxyUri() {\n          return Optional.empty();\n        }\n\n        @Override\n        public Optional<String> getProxyUsername() {\n          return Optional.empty();\n        }\n\n        @Override\n        public Optional<String> getProxyPassword() {\n          return Optional.empty();\n        }\n      };\n\n  public BigQueryClientFactoryTest() {\n    when(bigQueryConfig.useParentProjectForMetadataOperations()).thenReturn(false);\n    this.headerProvider = HttpUtil.createHeaderProvider(bigQueryConfig, \"test-agent\");\n  }\n\n  @Test\n  public void testGetReadClientForSameClientFactory() {\n    BigQueryClientFactory clientFactory =\n        new BigQueryClientFactory(bigQueryCredentialsSupplier, headerProvider, bigQueryConfig);\n\n    when(bigQueryConfig.getBigQueryProxyConfig()).thenReturn(bigQueryProxyConfig);\n    when(bigQueryConfig.getChannelPoolSize()).thenReturn(1);\n\n    BigQueryReadClient readClient = clientFactory.getBigQueryReadClient();\n    assertNotNull(readClient);\n\n    BigQueryReadClient readClient2 = clientFactory.getBigQueryReadClient();\n    assertNotNull(readClient2);\n\n    assertSame(readClient, readClient2);\n  }\n\n  @Test\n  public void testGetReadClientWithUserAgent() {\n    BigQueryClientFactory clientFactory =\n        new BigQueryClientFactory(bigQueryCredentialsSupplier, headerProvider, bigQueryConfig);\n\n    when(bigQueryConfig.getBigQueryProxyConfig()).thenReturn(bigQueryProxyConfig);\n    when(bigQueryConfig.getClientCreationHashCode()).thenReturn(1234);\n    when(bigQueryConfig.areClientCreationConfigsEqual(bigQueryConfig)).thenReturn(true);\n    when(bigQueryConfig.getChannelPoolSize()).thenReturn(1);\n\n    BigQueryReadClient readClient = clientFactory.getBigQueryReadClient();\n    assertNotNull(readClient);\n\n    BigQueryClientFactory clientFactory2 =\n        new BigQueryClientFactory(bigQueryCredentialsSupplier, headerProvider, bigQueryConfig);\n\n    when(bigQueryConfig.getBigQueryProxyConfig()).thenReturn(bigQueryProxyConfig);\n    when(bigQueryConfig.getClientCreationHashCode()).thenReturn(1234);\n    when(bigQueryConfig.areClientCreationConfigsEqual(bigQueryConfig)).thenReturn(true);\n    when(bigQueryConfig.getChannelPoolSize()).thenReturn(1);\n\n    BigQueryReadClient readClient2 = clientFactory2.getBigQueryReadClient();\n    assertNotNull(readClient2);\n\n    assertSame(readClient, readClient2);\n\n    BigQueryClientFactory clientFactory3 =\n        new BigQueryClientFactory(\n            bigQueryCredentialsSupplier,\n            HttpUtil.createHeaderProvider(bigQueryConfig, \"test-agent-2\"),\n            bigQueryConfig);\n\n    when(bigQueryConfig.getBigQueryProxyConfig()).thenReturn(bigQueryProxyConfig);\n    when(bigQueryConfig.getClientCreationHashCode()).thenReturn(1234);\n    when(bigQueryConfig.areClientCreationConfigsEqual(bigQueryConfig)).thenReturn(true);\n    when(bigQueryConfig.getChannelPoolSize()).thenReturn(1);\n\n    BigQueryReadClient readClient3 = clientFactory3.getBigQueryReadClient();\n    assertNotNull(readClient3);\n\n    assertNotSame(readClient, readClient3);\n    assertNotSame(readClient2, readClient3);\n  }\n\n  @Test\n  public void testGetReadClientWithBigQueryConfig() {\n    BigQueryClientFactory clientFactory =\n        new BigQueryClientFactory(\n            bigQueryCredentialsSupplier,\n            headerProvider,\n            new TestBigQueryConfig(Optional.of(\"US:8080\")));\n\n    BigQueryReadClient readClient = clientFactory.getBigQueryReadClient();\n    assertNotNull(readClient);\n\n    BigQueryClientFactory clientFactory2 =\n        new BigQueryClientFactory(\n            bigQueryCredentialsSupplier,\n            headerProvider,\n            new TestBigQueryConfig(Optional.of(\"US:8080\")));\n\n    BigQueryReadClient readClient2 = clientFactory2.getBigQueryReadClient();\n    assertNotNull(readClient2);\n\n    assertSame(readClient, readClient2);\n\n    BigQueryClientFactory clientFactory3 =\n        new BigQueryClientFactory(\n            bigQueryCredentialsSupplier,\n            headerProvider,\n            new TestBigQueryConfig(Optional.of(\"EU:8080\")));\n\n    BigQueryReadClient readClient3 = clientFactory3.getBigQueryReadClient();\n    assertNotNull(readClient3);\n\n    assertNotSame(readClient, readClient3);\n    assertNotSame(readClient2, readClient3);\n  }\n\n  @Test\n  public void testGetReadClientWithServiceAccountCredentials() {\n    when(bigQueryCredentialsSupplier.getCredentials())\n        .thenReturn(createServiceAccountCredentials(\"test-client-id\"));\n    BigQueryClientFactory clientFactory =\n        new BigQueryClientFactory(bigQueryCredentialsSupplier, headerProvider, bigQueryConfig);\n\n    when(bigQueryConfig.getBigQueryProxyConfig()).thenReturn(bigQueryProxyConfig);\n    when(bigQueryConfig.getClientCreationHashCode()).thenReturn(1234);\n    when(bigQueryConfig.areClientCreationConfigsEqual(bigQueryConfig)).thenReturn(true);\n    when(bigQueryConfig.getChannelPoolSize()).thenReturn(1);\n\n    BigQueryReadClient readClient = clientFactory.getBigQueryReadClient();\n    assertNotNull(readClient);\n\n    when(bigQueryCredentialsSupplier.getCredentials())\n        .thenReturn(createServiceAccountCredentials(\"test-client-id\"));\n    BigQueryClientFactory clientFactory2 =\n        new BigQueryClientFactory(bigQueryCredentialsSupplier, headerProvider, bigQueryConfig);\n\n    when(bigQueryConfig.getBigQueryProxyConfig()).thenReturn(bigQueryProxyConfig);\n    when(bigQueryConfig.getClientCreationHashCode()).thenReturn(1234);\n    when(bigQueryConfig.areClientCreationConfigsEqual(bigQueryConfig)).thenReturn(true);\n    when(bigQueryConfig.getChannelPoolSize()).thenReturn(1);\n\n    BigQueryReadClient readClient2 = clientFactory2.getBigQueryReadClient();\n    assertNotNull(readClient2);\n\n    assertSame(readClient, readClient2);\n\n    when(bigQueryCredentialsSupplier.getCredentials())\n        .thenReturn(createServiceAccountCredentials(\"test-client-id-2\"));\n    BigQueryClientFactory clientFactory3 =\n        new BigQueryClientFactory(bigQueryCredentialsSupplier, headerProvider, bigQueryConfig);\n\n    when(bigQueryConfig.getBigQueryProxyConfig()).thenReturn(bigQueryProxyConfig);\n    when(bigQueryConfig.getClientCreationHashCode()).thenReturn(1234);\n    when(bigQueryConfig.areClientCreationConfigsEqual(bigQueryConfig)).thenReturn(true);\n    when(bigQueryConfig.getChannelPoolSize()).thenReturn(1);\n\n    BigQueryReadClient readClient3 = clientFactory3.getBigQueryReadClient();\n    assertNotNull(readClient3);\n\n    assertNotSame(readClient, readClient3);\n    assertNotSame(readClient2, readClient3);\n  }\n\n  @Test\n  public void testGetWriteClientForSameClientFactory() {\n    BigQueryClientFactory clientFactory =\n        new BigQueryClientFactory(bigQueryCredentialsSupplier, headerProvider, bigQueryConfig);\n\n    when(bigQueryConfig.getBigQueryProxyConfig()).thenReturn(bigQueryProxyConfig);\n\n    BigQueryWriteClient writeClient = clientFactory.getBigQueryWriteClient();\n    assertNotNull(writeClient);\n\n    BigQueryWriteClient writeClient2 = clientFactory.getBigQueryWriteClient();\n    assertNotNull(writeClient2);\n\n    assertSame(writeClient, writeClient2);\n  }\n\n  @Test\n  public void testGetWriteClientWithUserAgent() {\n    BigQueryClientFactory clientFactory =\n        new BigQueryClientFactory(bigQueryCredentialsSupplier, headerProvider, bigQueryConfig);\n\n    when(bigQueryConfig.getBigQueryProxyConfig()).thenReturn(bigQueryProxyConfig);\n    when(bigQueryConfig.getClientCreationHashCode()).thenReturn(1234);\n    when(bigQueryConfig.areClientCreationConfigsEqual(bigQueryConfig)).thenReturn(true);\n\n    BigQueryWriteClient writeClient = clientFactory.getBigQueryWriteClient();\n    assertNotNull(writeClient);\n\n    BigQueryClientFactory clientFactory2 =\n        new BigQueryClientFactory(bigQueryCredentialsSupplier, headerProvider, bigQueryConfig);\n\n    when(bigQueryConfig.getBigQueryProxyConfig()).thenReturn(bigQueryProxyConfig);\n    when(bigQueryConfig.getClientCreationHashCode()).thenReturn(1234);\n    when(bigQueryConfig.areClientCreationConfigsEqual(bigQueryConfig)).thenReturn(true);\n\n    BigQueryWriteClient writeClient2 = clientFactory2.getBigQueryWriteClient();\n    assertNotNull(writeClient2);\n\n    assertSame(writeClient, writeClient2);\n\n    BigQueryClientFactory clientFactory3 =\n        new BigQueryClientFactory(\n            bigQueryCredentialsSupplier,\n            HttpUtil.createHeaderProvider(bigQueryConfig, \"test-agent-2\"),\n            bigQueryConfig);\n\n    when(bigQueryConfig.getBigQueryProxyConfig()).thenReturn(bigQueryProxyConfig);\n    when(bigQueryConfig.getClientCreationHashCode()).thenReturn(1234);\n    when(bigQueryConfig.areClientCreationConfigsEqual(bigQueryConfig)).thenReturn(true);\n\n    BigQueryWriteClient writeClient3 = clientFactory3.getBigQueryWriteClient();\n    assertNotNull(writeClient3);\n\n    assertNotSame(writeClient, writeClient3);\n    assertNotSame(writeClient2, writeClient3);\n  }\n\n  @Test\n  public void testGetWriteClientWithBigQueryConfig() {\n    BigQueryClientFactory clientFactory =\n        new BigQueryClientFactory(\n            bigQueryCredentialsSupplier,\n            headerProvider,\n            new TestBigQueryConfig(Optional.of(\"US:8080\")));\n\n    BigQueryWriteClient writeClient = clientFactory.getBigQueryWriteClient();\n    assertNotNull(writeClient);\n\n    BigQueryClientFactory clientFactory2 =\n        new BigQueryClientFactory(\n            bigQueryCredentialsSupplier,\n            headerProvider,\n            new TestBigQueryConfig(Optional.of(\"US:8080\")));\n\n    BigQueryWriteClient writeClient2 = clientFactory2.getBigQueryWriteClient();\n    assertNotNull(writeClient2);\n\n    assertSame(writeClient, writeClient2);\n\n    BigQueryClientFactory clientFactory3 =\n        new BigQueryClientFactory(\n            bigQueryCredentialsSupplier,\n            headerProvider,\n            new TestBigQueryConfig(Optional.of(\"EU:8080\")));\n\n    BigQueryWriteClient writeClient3 = clientFactory3.getBigQueryWriteClient();\n    assertNotNull(writeClient3);\n\n    assertNotSame(writeClient, writeClient3);\n    assertNotSame(writeClient2, writeClient3);\n  }\n\n  @Test\n  public void testGetWriteClientWithServiceAccountCredentials() throws Exception {\n    when(bigQueryCredentialsSupplier.getCredentials())\n        .thenReturn(createServiceAccountCredentials(\"test-client-id\"));\n    BigQueryClientFactory clientFactory =\n        new BigQueryClientFactory(bigQueryCredentialsSupplier, headerProvider, bigQueryConfig);\n\n    when(bigQueryConfig.getBigQueryProxyConfig()).thenReturn(bigQueryProxyConfig);\n    when(bigQueryConfig.getClientCreationHashCode()).thenReturn(1234);\n    when(bigQueryConfig.areClientCreationConfigsEqual(bigQueryConfig)).thenReturn(true);\n\n    BigQueryWriteClient writeClient = clientFactory.getBigQueryWriteClient();\n    assertNotNull(writeClient);\n\n    when(bigQueryCredentialsSupplier.getCredentials())\n        .thenReturn(createServiceAccountCredentials(\"test-client-id\"));\n    BigQueryClientFactory clientFactory2 =\n        new BigQueryClientFactory(bigQueryCredentialsSupplier, headerProvider, bigQueryConfig);\n\n    when(bigQueryConfig.getBigQueryProxyConfig()).thenReturn(bigQueryProxyConfig);\n    when(bigQueryConfig.getClientCreationHashCode()).thenReturn(1234);\n    when(bigQueryConfig.areClientCreationConfigsEqual(bigQueryConfig)).thenReturn(true);\n\n    BigQueryWriteClient writeClient2 = clientFactory2.getBigQueryWriteClient();\n    assertNotNull(writeClient2);\n\n    assertSame(writeClient, writeClient2);\n\n    when(bigQueryCredentialsSupplier.getCredentials())\n        .thenReturn(createServiceAccountCredentials(\"test-client-id-2\"));\n    BigQueryClientFactory clientFactory3 =\n        new BigQueryClientFactory(bigQueryCredentialsSupplier, headerProvider, bigQueryConfig);\n\n    when(bigQueryConfig.getBigQueryProxyConfig()).thenReturn(bigQueryProxyConfig);\n    when(bigQueryConfig.getClientCreationHashCode()).thenReturn(1234);\n    when(bigQueryConfig.areClientCreationConfigsEqual(bigQueryConfig)).thenReturn(true);\n\n    BigQueryWriteClient writeClient3 = clientFactory3.getBigQueryWriteClient();\n    assertNotNull(writeClient3);\n\n    assertNotSame(writeClient, writeClient3);\n    assertNotSame(writeClient2, writeClient3);\n  }\n\n  @Test\n  public void testGetReadClientWithSameAndDifferentBQConfig() {\n    BigQueryClientFactory clientFactory =\n        new BigQueryClientFactory(bigQueryCredentialsSupplier, headerProvider, bigQueryConfig);\n\n    BigQueryClientFactory clientFactory2 =\n        new BigQueryClientFactory(\n            bigQueryCredentialsSupplier,\n            headerProvider,\n            new TestBigQueryConfig(Optional.of(\"EU:8080\")));\n\n    BigQueryClientFactory clientFactory3 =\n        new BigQueryClientFactory(\n            bigQueryCredentialsSupplier,\n            headerProvider,\n            new TestBigQueryConfig(Optional.of(\"EU:8080\")));\n\n    when(bigQueryConfig.getBigQueryProxyConfig()).thenReturn(bigQueryProxyConfig);\n    when(bigQueryConfig.getChannelPoolSize()).thenReturn(1);\n\n    BigQueryReadClient readClient = clientFactory.getBigQueryReadClient();\n    assertNotNull(readClient);\n\n    BigQueryReadClient readClient2 = clientFactory2.getBigQueryReadClient();\n    assertNotNull(readClient2);\n\n    BigQueryReadClient readClient3 = clientFactory3.getBigQueryReadClient();\n    assertNotNull(readClient3);\n\n    assertNotSame(readClient, readClient2);\n    assertNotSame(readClient, readClient3);\n    assertSame(readClient2, readClient3);\n  }\n\n  @Test\n  public void testGetWriteClientWithSameAndDifferentBQConfig() {\n    BigQueryClientFactory clientFactory =\n        new BigQueryClientFactory(bigQueryCredentialsSupplier, headerProvider, bigQueryConfig);\n\n    BigQueryClientFactory clientFactory2 =\n        new BigQueryClientFactory(\n            bigQueryCredentialsSupplier,\n            headerProvider,\n            new TestBigQueryConfig(Optional.of(\"EU:8080\")));\n\n    BigQueryClientFactory clientFactory3 =\n        new BigQueryClientFactory(\n            bigQueryCredentialsSupplier,\n            headerProvider,\n            new TestBigQueryConfig(Optional.of(\"EU:8080\")));\n\n    when(bigQueryConfig.getBigQueryProxyConfig()).thenReturn(bigQueryProxyConfig);\n\n    BigQueryWriteClient writeClient = clientFactory.getBigQueryWriteClient();\n    assertNotNull(writeClient);\n\n    BigQueryWriteClient writeClient2 = clientFactory2.getBigQueryWriteClient();\n    assertNotNull(writeClient2);\n\n    BigQueryWriteClient writeClient3 = clientFactory3.getBigQueryWriteClient();\n    assertNotNull(writeClient3);\n\n    assertNotSame(writeClient, writeClient2);\n    assertNotSame(writeClient, writeClient3);\n    assertSame(writeClient2, writeClient3);\n  }\n\n  @Test\n  public void testHashCodeWithExternalAccountCredentials() throws Exception {\n    // Credentials taken from https://google.aip.dev/auth/4117:\n    Credentials credentials =\n        GoogleCredentials.fromStream(\n            getClass().getResourceAsStream(\"/external-account-credentials.json\"));\n\n    when(bigQueryCredentialsSupplier.getCredentials()).thenReturn(credentials);\n\n    BigQueryClientFactory factory =\n        new BigQueryClientFactory(\n            bigQueryCredentialsSupplier,\n            FixedHeaderProvider.create(\"foo\", \"bar\"),\n            new TestBigQueryConfig(Optional.empty()));\n\n    int hashCode1 = factory.hashCode();\n    int hashCode2 = factory.hashCode();\n    assertThat(hashCode2).isEqualTo(hashCode1);\n  }\n\n  @Test\n  public void testGetCredentials_ImpersonatedCredentials_calendarNotNullAfterDeserialization()\n      throws Exception {\n\n    // 1. Mock dependencies and make them serializable\n    HeaderProvider headerProvider = mock(HeaderProvider.class, withSettings().serializable());\n    BigQueryConfig bqConfig =\n        mock(\n            BigQueryConfig.class,\n            withSettings().serializable().defaultAnswer(Answers.RETURNS_DEEP_STUBS));\n    BigQueryCredentialsSupplier credentialsSupplier =\n        mock(BigQueryCredentialsSupplier.class, withSettings().serializable());\n\n    // 2. Create source credentials for ImpersonatedCredentials (can be a simple serializable mock)\n    GoogleCredentials sourceCredentials =\n        mock(GoogleCredentials.class, withSettings().serializable());\n    when(sourceCredentials.createScopedRequired()).thenReturn(false);\n\n    // 3. Create original ImpersonatedCredentials\n    ImpersonatedCredentials originalCredentials =\n        ImpersonatedCredentials.newBuilder()\n            .setSourceCredentials(sourceCredentials)\n            .setTargetPrincipal(\"dummy-target@example.com\") // Dummy principal is fine\n            .setScopes(Collections.singletonList(\"https://www.googleapis.com/auth/cloud-platform\"))\n            .build();\n\n    when(credentialsSupplier.getCredentials()).thenReturn(originalCredentials);\n\n    // 4. Create and serialize BigQueryClientFactory\n    BigQueryClientFactory factory =\n        new BigQueryClientFactory(credentialsSupplier, headerProvider, bqConfig);\n\n    byte[] serializedFactory;\n    try (ByteArrayOutputStream baos = new ByteArrayOutputStream();\n        ObjectOutputStream oos = new ObjectOutputStream(baos)) {\n      oos.writeObject(factory);\n      serializedFactory = baos.toByteArray();\n    }\n\n    // 5. Deserialize BigQueryClientFactory\n    BigQueryClientFactory deserializedFactory;\n    try (ByteArrayInputStream bais = new ByteArrayInputStream(serializedFactory);\n        ObjectInputStream ois = new ObjectInputStream(bais)) {\n      deserializedFactory = (BigQueryClientFactory) ois.readObject();\n    }\n\n    // 6. Get credentials from deserialized factory\n    Credentials credentialsFromFactory = deserializedFactory.getCredentials();\n\n    // 7. Assertions using Google Truth\n    assertThat(credentialsFromFactory).isInstanceOf(ImpersonatedCredentials.class);\n\n    ImpersonatedCredentials deserializedImpersonatedCredentials =\n        (ImpersonatedCredentials) credentialsFromFactory;\n\n    // The core assertion: verify the calendar is not null after deserialization\n    // and the factory's getCredentials() logic has run.\n    // Accessing the calendar field via reflection as it's not public\n    java.lang.reflect.Field calendarField =\n        ImpersonatedCredentials.class.getDeclaredField(\"calendar\");\n    calendarField.setAccessible(true);\n    Calendar calendar = (Calendar) calendarField.get(deserializedImpersonatedCredentials);\n    assertThat(calendar).isNotNull();\n  }\n\n  private ServiceAccountCredentials createServiceAccountCredentials(String clientId) {\n    return ServiceAccountCredentials.newBuilder()\n        .setClientId(clientId)\n        .setClientEmail(CLIENT_EMAIL)\n        .setPrivateKey(privateKey)\n        .setPrivateKeyId(PRIVATE_KEY_ID)\n        .setScopes(SCOPES)\n        .setServiceAccountUser(USER)\n        .setProjectId(PROJECT_ID)\n        .build();\n  }\n\n  private class TestBigQueryConfig implements BigQueryConfig {\n\n    private final Optional<String> bigQueryStorageGrpcEndpoint;\n\n    TestBigQueryConfig(Optional<String> bigQueryStorageGrpcEndpoint) {\n      this.bigQueryStorageGrpcEndpoint = bigQueryStorageGrpcEndpoint;\n    }\n\n    @Override\n    public Optional<String> getAccessTokenProviderFQCN() {\n      return Optional.empty();\n    }\n\n    @Override\n    public Optional<String> getAccessTokenProviderConfig() {\n      return Optional.empty();\n    }\n\n    @Override\n    public Optional<String> getCredentialsKey() {\n      return Optional.empty();\n    }\n\n    @Override\n    public Optional<String> getCredentialsFile() {\n      return Optional.empty();\n    }\n\n    @Override\n    public String getLoggedInUserName() {\n      return null;\n    }\n\n    @Override\n    public Set<String> getLoggedInUserGroups() {\n      return null;\n    }\n\n    @Override\n    public Optional<Map<String, String>> getImpersonationServiceAccountsForUsers() {\n      return Optional.empty();\n    }\n\n    @Override\n    public Optional<Map<String, String>> getImpersonationServiceAccountsForGroups() {\n      return Optional.empty();\n    }\n\n    @Override\n    public Optional<String> getImpersonationServiceAccount() {\n      return Optional.empty();\n    }\n\n    @Override\n    public Optional<String> getAccessToken() {\n      return Optional.empty();\n    }\n\n    @Override\n    public String getParentProjectId() {\n      return null;\n    }\n\n    @Override\n    public Optional<String> getCatalogProjectId() {\n      return Optional.empty();\n    }\n\n    @Override\n    public Optional<String> getCatalogLocation() {\n      return Optional.empty();\n    }\n\n    @Override\n    public boolean useParentProjectForMetadataOperations() {\n      return false;\n    }\n\n    @Override\n    public boolean isViewsEnabled() {\n      return false;\n    }\n\n    @Override\n    public Optional<String> getMaterializationProject() {\n      return Optional.empty();\n    }\n\n    @Override\n    public Optional<String> getMaterializationDataset() {\n      return Optional.empty();\n    }\n\n    @Override\n    public int getBigQueryClientConnectTimeout() {\n      return 0;\n    }\n\n    @Override\n    public int getBigQueryClientReadTimeout() {\n      return 0;\n    }\n\n    @Override\n    public RetrySettings getBigQueryClientRetrySettings() {\n      return null;\n    }\n\n    @Override\n    public BigQueryProxyConfig getBigQueryProxyConfig() {\n      return bigQueryProxyConfig;\n    }\n\n    @Override\n    public Optional<String> getBigQueryStorageGrpcEndpoint() {\n      return bigQueryStorageGrpcEndpoint;\n    }\n\n    @Override\n    public Optional<String> getBigQueryHttpEndpoint() {\n      return Optional.empty();\n    }\n\n    @Override\n    public int getCacheExpirationTimeInMinutes() {\n      return 0;\n    }\n\n    @Override\n    public ImmutableMap<String, String> getBigQueryJobLabels() {\n      return ImmutableMap.<String, String>of();\n    }\n\n    @Override\n    public Optional<Long> getCreateReadSessionTimeoutInSeconds() {\n      return Optional.empty();\n    }\n\n    @Override\n    public int getChannelPoolSize() {\n      return 1;\n    }\n\n    @Override\n    public Optional<Integer> getFlowControlWindowBytes() {\n      return Optional.of(2 << 20);\n    }\n\n    @Override\n    public Priority getQueryJobPriority() {\n      return Priority.INTERACTIVE;\n    }\n\n    @Override\n    public long getBigQueryJobTimeoutInMinutes() {\n      return 6 * 60;\n    }\n\n    @Override\n    public Optional<ImmutableList<String>> getCredentialsScopes() {\n      return Optional.empty();\n    }\n\n    @Override\n    public boolean equals(Object o) {\n      if (this == o) {\n        return true;\n      }\n      if (!(o instanceof TestBigQueryConfig)) {\n        return false;\n      }\n      TestBigQueryConfig that = (TestBigQueryConfig) o;\n      return Objects.equal(bigQueryStorageGrpcEndpoint, that.bigQueryStorageGrpcEndpoint);\n    }\n\n    @Override\n    public int hashCode() {\n      return Objects.hashCode(bigQueryStorageGrpcEndpoint);\n    }\n  }\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/test/java/com/google/cloud/bigquery/connector/common/BigQueryConfigurationUtilTest.java",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.bigquery.connector.common;\n\nimport static com.google.common.truth.Truth.assertThat;\nimport static org.junit.Assert.assertThrows;\n\nimport com.google.cloud.bigquery.TableId;\nimport com.google.common.collect.ImmutableMap;\nimport org.junit.Test;\n\npublic class BigQueryConfigurationUtilTest {\n\n  private static final ImmutableMap<String, String> EMPTY_GLOBAL_OPTIONS =\n      ImmutableMap.<String, String>of();\n\n  @Test\n  public void testParseSimpleTableId_tableOnly() {\n    TableId result =\n        BigQueryConfigurationUtil.parseSimpleTableId(\n            EMPTY_GLOBAL_OPTIONS, ImmutableMap.of(\"table\", \"project.dataset.table\"));\n    assertThat(result.getProject()).isEqualTo(\"project\");\n    assertThat(result.getDataset()).isEqualTo(\"dataset\");\n    assertThat(result.getTable()).isEqualTo(\"table\");\n  }\n\n  @Test\n  public void testParseSimpleTableId_pathOnly() {\n    TableId result =\n        BigQueryConfigurationUtil.parseSimpleTableId(\n            EMPTY_GLOBAL_OPTIONS, ImmutableMap.of(\"table\", \"project.dataset.table\"));\n    assertThat(result.getProject()).isEqualTo(\"project\");\n    assertThat(result.getDataset()).isEqualTo(\"dataset\");\n    assertThat(result.getTable()).isEqualTo(\"table\");\n  }\n\n  @Test\n  public void testParseSimpleTableId_tableAndDataset() {\n    TableId result =\n        BigQueryConfigurationUtil.parseSimpleTableId(\n            EMPTY_GLOBAL_OPTIONS, ImmutableMap.of(\"table\", \"project.dataset.table\"));\n    assertThat(result.getProject()).isEqualTo(\"project\");\n    assertThat(result.getDataset()).isEqualTo(\"dataset\");\n    assertThat(result.getTable()).isEqualTo(\"table\");\n  }\n\n  @Test\n  public void testParseSimpleTableId_allParams() {\n    TableId result =\n        BigQueryConfigurationUtil.parseSimpleTableId(\n            EMPTY_GLOBAL_OPTIONS, ImmutableMap.of(\"table\", \"project.dataset.table\"));\n    assertThat(result.getProject()).isEqualTo(\"project\");\n    assertThat(result.getDataset()).isEqualTo(\"dataset\");\n    assertThat(result.getTable()).isEqualTo(\"table\");\n  }\n\n  @Test\n  public void testParseSimpleTableId_fallbackDatasetIgnored() {\n    TableId result =\n        BigQueryConfigurationUtil.parseSimpleTableId(\n            ImmutableMap.of(\"materializationDataset\", \"fallback\"),\n            ImmutableMap.of(\"table\", \"table\", \"dataset\", \"dataset\"));\n    assertThat(result.getProject()).isNull();\n    assertThat(result.getDataset()).isEqualTo(\"dataset\");\n    assertThat(result.getTable()).isEqualTo(\"table\");\n  }\n\n  @Test\n  public void testParseSimpleTableId_fallbackDatasetUsed() {\n    TableId result =\n        BigQueryConfigurationUtil.parseSimpleTableId(\n            ImmutableMap.of(\"materializationDataset\", \"fallback\"),\n            ImmutableMap.of(\"table\", \"table\"));\n    assertThat(result.getProject()).isNull();\n    assertThat(result.getDataset()).isEqualTo(\"fallback\");\n    assertThat(result.getTable()).isEqualTo(\"table\");\n  }\n\n  @Test\n  public void testParseSimpleTableId_fallbackProjectIgnored() {\n    TableId result =\n        BigQueryConfigurationUtil.parseSimpleTableId(\n            ImmutableMap.of(\"materializationProject\", \"fallback\"),\n            ImmutableMap.of(\"table\", \"table\", \"dataset\", \"dataset\", \"project\", \"project\"));\n    assertThat(result.getProject()).isEqualTo(\"project\");\n    assertThat(result.getDataset()).isEqualTo(\"dataset\");\n    assertThat(result.getTable()).isEqualTo(\"table\");\n  }\n\n  @Test\n  public void testParseSimpleTableId_fallbackProjectUsed() {\n    TableId result =\n        BigQueryConfigurationUtil.parseSimpleTableId(\n            ImmutableMap.of(\"materializationProject\", \"fallback\"),\n            ImmutableMap.of(\"table\", \"table\", \"dataset\", \"dataset\"));\n    assertThat(result.getProject()).isEqualTo(\"fallback\");\n    assertThat(result.getDataset()).isEqualTo(\"dataset\");\n    assertThat(result.getTable()).isEqualTo(\"table\");\n  }\n\n  @Test\n  public void testParseSimpleTableId_missingDataset() {\n    assertThrows(\n        \"Missing dataset exception was not thrown\",\n        IllegalArgumentException.class,\n        () -> {\n          BigQueryConfigurationUtil.parseSimpleTableId(\n              EMPTY_GLOBAL_OPTIONS, ImmutableMap.of(\"table\", \"table\"));\n        });\n  }\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/test/java/com/google/cloud/bigquery/connector/common/BigQueryConnectorExceptionTest.java",
    "content": "/*\n * Copyright 2024 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.bigquery.connector.common;\n\nimport static com.google.common.truth.Truth.assertThat;\n\nimport io.grpc.Status;\nimport io.grpc.StatusException;\nimport io.grpc.StatusRuntimeException;\nimport org.junit.Test;\n\npublic class BigQueryConnectorExceptionTest {\n\n  @Test\n  public void testStatusExceptionSerialization() {\n    StatusException ex = new StatusException(Status.CANCELLED);\n    BigQueryConnectorException original =\n        new BigQueryConnectorException(BigQueryErrorCode.UNKNOWN, \"testing\", ex);\n    BigQueryConnectorException copied = BigQueryUtil.verifySerialization(original);\n    assertThat(copied.getMessage()).isEqualTo(\"testing\");\n    assertThat(copied.getCause().toString()).contains(\"StatusException\");\n  }\n\n  @Test\n  public void testStatusRuntimeExceptionSerialization() {\n    StatusRuntimeException ex = new StatusRuntimeException(Status.CANCELLED);\n    BigQueryConnectorException original =\n        new BigQueryConnectorException(BigQueryErrorCode.UNKNOWN, \"testing\", ex);\n    BigQueryConnectorException copied = BigQueryUtil.verifySerialization(original);\n    assertThat(copied.getMessage()).isEqualTo(\"testing\");\n    assertThat(copied.getCause().toString()).contains(\"StatusRuntimeException\");\n  }\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/test/java/com/google/cloud/bigquery/connector/common/BigQueryCredentialsSupplierTest.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.bigquery.connector.common;\n\nimport static com.google.common.truth.Truth.assertThat;\nimport static org.junit.Assert.assertThrows;\nimport static org.mockito.Mockito.doThrow;\nimport static org.mockito.Mockito.mock;\nimport static org.mockito.Mockito.when;\n\nimport com.google.api.client.json.GenericJson;\nimport com.google.api.client.json.gson.GsonFactory;\nimport com.google.auth.Credentials;\nimport com.google.auth.oauth2.GoogleCredentials;\nimport com.google.auth.oauth2.ImpersonatedCredentials;\nimport com.google.auth.oauth2.ServiceAccountCredentials;\nimport com.google.common.collect.ImmutableList;\nimport com.google.gson.stream.MalformedJsonException;\nimport java.io.File;\nimport java.io.FileNotFoundException;\nimport java.io.IOException;\nimport java.io.UncheckedIOException;\nimport java.net.URI;\nimport java.nio.charset.StandardCharsets;\nimport java.nio.file.Files;\nimport java.util.*;\nimport org.junit.Test;\nimport org.mockito.Mockito;\n\npublic class BigQueryCredentialsSupplierTest {\n\n  // Taken from\n  // https://github.com/googleapis/google-auth-library-java/blob/a329c4171735c3d4ee574978e6c3742b96c01f74/oauth2_http/javatests/com/google/auth/oauth2/ServiceAccountCredentialsTest.java\n  // As this code is private it cannot be directly used.\n\n  static final String PRIVATE_KEY_PKCS8 =\n      \"-----BEGIN PRIVATE KEY-----\\n\"\n          + \"MIICdgIBADANBgkqhkiG9w0BAQEFAASCAmAwggJcAgEAAoGBALX0PQoe1igW12i\"\n          + \"kv1bN/r9lN749y2ijmbc/mFHPyS3hNTyOCjDvBbXYbDhQJzWVUikh4mvGBA07qTj79Xc3yBDfKP2IeyYQIFe0t0\"\n          + \"zkd7R9Zdn98Y2rIQC47aAbDfubtkU1U72t4zL11kHvoa0/RuFZjncvlr42X7be7lYh4p3NAgMBAAECgYASk5wDw\"\n          + \"4Az2ZkmeuN6Fk/y9H+Lcb2pskJIXjrL533vrDWGOC48LrsThMQPv8cxBky8HFSEklPpkfTF95tpD43iVwJRB/Gr\"\n          + \"CtGTw65IfJ4/tI09h6zGc4yqvIo1cHX/LQ+SxKLGyir/dQM925rGt/VojxY5ryJR7GLbCzxPnJm/oQJBANwOCO6\"\n          + \"D2hy1LQYJhXh7O+RLtA/tSnT1xyMQsGT+uUCMiKS2bSKx2wxo9k7h3OegNJIu1q6nZ6AbxDK8H3+d0dUCQQDTrP\"\n          + \"SXagBxzp8PecbaCHjzNRSQE2in81qYnrAFNB4o3DpHyMMY6s5ALLeHKscEWnqP8Ur6X4PvzZecCWU9BKAZAkAut\"\n          + \"LPknAuxSCsUOvUfS1i87ex77Ot+w6POp34pEX+UWb+u5iFn2cQacDTHLV1LtE80L8jVLSbrbrlH43H0DjU5AkEA\"\n          + \"gidhycxS86dxpEljnOMCw8CKoUBd5I880IUahEiUltk7OLJYS/Ts1wbn3kPOVX3wyJs8WBDtBkFrDHW2ezth2QJ\"\n          + \"ADj3e1YhMVdjJW5jqwlD/VNddGjgzyunmiZg0uOXsHXbytYmsA545S8KRQFaJKFXYYFo2kOjqOiC1T2cAzMDjCQ\"\n          + \"==\\n-----END PRIVATE KEY-----\\n\";\n  private static final String TYPE = \"service_account\";\n  private static final String CLIENT_EMAIL =\n      \"36680232662-vrd7ji19qe3nelgchd0ah2csanun6bnr@developer.gserviceaccount.com\";\n  private static final String CLIENT_ID =\n      \"36680232662-vrd7ji19qe3nelgchd0ah2csanun6bnr.apps.googleusercontent.com\";\n  private static final String PRIVATE_KEY_ID = \"d84a4fefcf50791d4a90f2d7af17469d6282df9d\";\n  private static final String ACCESS_TOKEN = \"1/MkSJoj1xsli0AccessToken_NKPY2\";\n  private static final Collection<String> SCOPES = Collections.singletonList(\"dummy.scope\");\n  private static final String QUOTA_PROJECT = \"sample-quota-project-id\";\n  private static final Optional<URI> optionalProxyURI =\n      Optional.of(URI.create(\"http://bq-connector-host:1234\"));\n  private static final Optional<String> optionalProxyUserName = Optional.of(\"credential-user\");\n  private static final Optional<String> optionalProxyPassword = Optional.of(\"credential-password\");\n  public static final String IMPERSONATED_GLOBAL =\n      \"impersonated-global@developer.gserviceaccount.com\";\n  public static final String IMPERSONATED_A = \"impersonated-a@developer.gserviceaccount.com\";\n  public static final String IMPERSONATED_B = \"impersonated-b@developer.gserviceaccount.com\";\n\n  private static final String TEST_UNIVERSE_DOMAIN = \"test-universe-domain\";\n\n  @Test\n  public void testCredentialsFromAccessToken() {\n    Credentials nonProxyCredentials =\n        new BigQueryCredentialsSupplier(\n                Optional.empty(),\n                Optional.empty(),\n                Optional.of(ACCESS_TOKEN),\n                Optional.empty(),\n                Optional.empty(),\n                null,\n                null,\n                Optional.empty(),\n                Optional.empty(),\n                Optional.empty(),\n                Optional.empty(),\n                Optional.empty(),\n                Optional.empty(),\n                Optional.empty())\n            .getCredentials();\n\n    Credentials proxyCredentials =\n        new BigQueryCredentialsSupplier(\n                Optional.empty(),\n                Optional.empty(),\n                Optional.of(ACCESS_TOKEN),\n                Optional.empty(),\n                Optional.empty(),\n                null,\n                null,\n                Optional.empty(),\n                Optional.empty(),\n                Optional.empty(),\n                Optional.empty(),\n                optionalProxyURI,\n                optionalProxyUserName,\n                optionalProxyPassword)\n            .getCredentials();\n\n    // the output should be same for both proxyCredentials and nonProxyCredentials\n    Arrays.asList(nonProxyCredentials, proxyCredentials).stream()\n        .forEach(\n            credentials -> {\n              assertThat(credentials).isInstanceOf(GoogleCredentials.class);\n              GoogleCredentials googleCredentials = (GoogleCredentials) credentials;\n              assertThat(googleCredentials.getAccessToken().getTokenValue())\n                  .isEqualTo(ACCESS_TOKEN);\n            });\n  }\n\n  @Test\n  public void testCredentialsFromKey() throws Exception {\n    String json = createServiceAccountJson(\"key\");\n    String credentialsKey =\n        Base64.getEncoder().encodeToString(json.getBytes(StandardCharsets.UTF_8));\n\n    Credentials nonProxyCredentials =\n        new BigQueryCredentialsSupplier(\n                Optional.empty(),\n                Optional.empty(),\n                Optional.empty(),\n                Optional.of(credentialsKey),\n                Optional.empty(),\n                null,\n                null,\n                Optional.empty(),\n                Optional.empty(),\n                Optional.empty(),\n                Optional.empty(),\n                Optional.empty(),\n                Optional.empty(),\n                Optional.empty())\n            .getCredentials();\n\n    Credentials proxyCredentials =\n        new BigQueryCredentialsSupplier(\n                Optional.empty(),\n                Optional.empty(),\n                Optional.empty(),\n                Optional.of(credentialsKey),\n                Optional.empty(),\n                null,\n                null,\n                Optional.empty(),\n                Optional.empty(),\n                Optional.empty(),\n                Optional.empty(),\n                optionalProxyURI,\n                optionalProxyUserName,\n                optionalProxyPassword)\n            .getCredentials();\n\n    // the output should be same for both proxyCredentials and nonProxyCredentials\n    Arrays.asList(nonProxyCredentials, proxyCredentials).stream()\n        .forEach(\n            credentials -> {\n              assertThat(credentials).isInstanceOf(ServiceAccountCredentials.class);\n              ServiceAccountCredentials serviceAccountCredentials =\n                  (ServiceAccountCredentials) credentials;\n              assertThat(serviceAccountCredentials.getProjectId()).isEqualTo(\"key\");\n              assertThat(serviceAccountCredentials.getClientEmail()).isEqualTo(CLIENT_EMAIL);\n              assertThat(serviceAccountCredentials.getClientId()).isEqualTo(CLIENT_ID);\n              assertThat(serviceAccountCredentials.getQuotaProjectId()).isEqualTo(QUOTA_PROJECT);\n            });\n  }\n\n  @Test\n  public void testCredentialsFromKeyWithErrors() throws Exception {\n    String json = createServiceAccountJson(\"key\");\n    String credentialsKey =\n        Base64.getEncoder().encodeToString(json.getBytes(StandardCharsets.UTF_8));\n\n    IllegalArgumentException exceptionWithPassword =\n        assertThrows(\n            IllegalArgumentException.class,\n            () ->\n                new BigQueryCredentialsSupplier(\n                        Optional.empty(),\n                        Optional.empty(),\n                        Optional.empty(),\n                        Optional.of(credentialsKey),\n                        Optional.empty(),\n                        null,\n                        null,\n                        Optional.empty(),\n                        Optional.empty(),\n                        Optional.empty(),\n                        Optional.empty(),\n                        optionalProxyURI,\n                        Optional.empty(),\n                        optionalProxyPassword)\n                    .getCredentials());\n\n    IllegalArgumentException exceptionWithUserName =\n        assertThrows(\n            IllegalArgumentException.class,\n            () ->\n                new BigQueryCredentialsSupplier(\n                        Optional.empty(),\n                        Optional.empty(),\n                        Optional.empty(),\n                        Optional.of(credentialsKey),\n                        Optional.empty(),\n                        null,\n                        null,\n                        Optional.empty(),\n                        Optional.empty(),\n                        Optional.empty(),\n                        Optional.empty(),\n                        optionalProxyURI,\n                        optionalProxyUserName,\n                        Optional.empty())\n                    .getCredentials());\n\n    Arrays.asList(exceptionWithPassword, exceptionWithUserName).stream()\n        .forEach(\n            exception -> {\n              assertThat(exception)\n                  .hasMessageThat()\n                  .contains(\n                      \"Both proxyUsername and proxyPassword should be defined or not defined together\");\n            });\n  }\n\n  @Test\n  public void testCredentialsFromFile() throws Exception {\n    String json = createServiceAccountJson(\"file\");\n    File credentialsFile = File.createTempFile(\"dummy-credentials\", \".json\");\n    credentialsFile.deleteOnExit();\n    Files.write(credentialsFile.toPath(), json.getBytes(StandardCharsets.UTF_8));\n\n    Credentials nonProxyCredentials =\n        new BigQueryCredentialsSupplier(\n                Optional.empty(),\n                Optional.empty(),\n                Optional.empty(),\n                Optional.empty(),\n                Optional.of(credentialsFile.getAbsolutePath()),\n                null,\n                null,\n                Optional.empty(),\n                Optional.empty(),\n                Optional.empty(),\n                Optional.empty(),\n                Optional.empty(),\n                Optional.empty(),\n                Optional.empty())\n            .getCredentials();\n\n    Credentials proxyCredentials =\n        new BigQueryCredentialsSupplier(\n                Optional.empty(),\n                Optional.empty(),\n                Optional.empty(),\n                Optional.empty(),\n                Optional.of(credentialsFile.getAbsolutePath()),\n                null,\n                null,\n                Optional.empty(),\n                Optional.empty(),\n                Optional.empty(),\n                Optional.empty(),\n                optionalProxyURI,\n                optionalProxyUserName,\n                optionalProxyPassword)\n            .getCredentials();\n\n    // the output should be same for both proxyCredentials and nonProxyCredentials\n    Arrays.asList(nonProxyCredentials, proxyCredentials).stream()\n        .forEach(\n            credentials -> {\n              assertThat(credentials).isInstanceOf(ServiceAccountCredentials.class);\n              ServiceAccountCredentials serviceAccountCredentials =\n                  (ServiceAccountCredentials) credentials;\n              assertThat(serviceAccountCredentials.getProjectId()).isEqualTo(\"file\");\n              assertThat(serviceAccountCredentials.getClientEmail()).isEqualTo(CLIENT_EMAIL);\n              assertThat(serviceAccountCredentials.getClientId()).isEqualTo(CLIENT_ID);\n              assertThat(serviceAccountCredentials.getQuotaProjectId()).isEqualTo(QUOTA_PROJECT);\n            });\n  }\n\n  @Test\n  public void testCredentialsFromFileWithErrors() throws Exception {\n    String json = createServiceAccountJson(\"file\");\n    File credentialsFile = File.createTempFile(\"dummy-credentials\", \".json\");\n    credentialsFile.deleteOnExit();\n    Files.write(credentialsFile.toPath(), json.getBytes(StandardCharsets.UTF_8));\n\n    IllegalArgumentException exceptionWithPassword =\n        assertThrows(\n            IllegalArgumentException.class,\n            () ->\n                new BigQueryCredentialsSupplier(\n                        Optional.empty(),\n                        Optional.empty(),\n                        Optional.empty(),\n                        Optional.empty(),\n                        Optional.of(credentialsFile.getAbsolutePath()),\n                        null,\n                        null,\n                        Optional.empty(),\n                        Optional.empty(),\n                        Optional.empty(),\n                        Optional.empty(),\n                        optionalProxyURI,\n                        Optional.empty(),\n                        optionalProxyPassword)\n                    .getCredentials());\n\n    IllegalArgumentException exceptionWithUserName =\n        assertThrows(\n            IllegalArgumentException.class,\n            () ->\n                new BigQueryCredentialsSupplier(\n                        Optional.empty(),\n                        Optional.empty(),\n                        Optional.empty(),\n                        Optional.empty(),\n                        Optional.of(credentialsFile.getAbsolutePath()),\n                        null,\n                        null,\n                        Optional.empty(),\n                        Optional.empty(),\n                        Optional.empty(),\n                        Optional.empty(),\n                        optionalProxyURI,\n                        optionalProxyUserName,\n                        Optional.empty())\n                    .getCredentials());\n\n    Arrays.asList(exceptionWithPassword, exceptionWithUserName).stream()\n        .forEach(\n            exception -> {\n              assertThat(exception)\n                  .hasMessageThat()\n                  .contains(\n                      \"Both proxyUsername and proxyPassword should be defined or not defined together\");\n            });\n  }\n\n  private String createServiceAccountJson(String projectId) throws Exception {\n    GenericJson json = new GenericJson();\n    json.setFactory(GsonFactory.getDefaultInstance());\n    json.put(\"type\", TYPE);\n    json.put(\"client_id\", CLIENT_ID);\n    json.put(\"client_email\", CLIENT_EMAIL);\n    json.put(\"private_key\", PRIVATE_KEY_PKCS8);\n    json.put(\"private_key_id\", PRIVATE_KEY_ID);\n    json.put(\"project_id\", projectId);\n    json.put(\"quota_project_id\", QUOTA_PROJECT);\n    json.put(\"universe_domain\", TEST_UNIVERSE_DOMAIN);\n    return json.toPrettyString();\n  }\n\n  Credentials createImpersonatedCredentials(\n      String loggedInUserName,\n      Set<String> loggedInUserGroups,\n      Map<String, String> userMappings,\n      Map<String, String> groupMappings,\n      String globalImpersonated) {\n    return new BigQueryCredentialsSupplier(\n            Optional.empty(),\n            Optional.empty(),\n            Optional.empty(),\n            Optional.empty(),\n            Optional.empty(),\n            loggedInUserName,\n            loggedInUserGroups,\n            Optional.ofNullable(userMappings),\n            Optional.ofNullable(groupMappings),\n            Optional.ofNullable(globalImpersonated),\n            Optional.empty(),\n            Optional.empty(),\n            Optional.empty(),\n            Optional.empty())\n        .getCredentials();\n  }\n\n  @Test\n  public void testSingleServiceAccountImpersonation() throws Exception {\n    ImpersonatedCredentials credentials =\n        (ImpersonatedCredentials)\n            createImpersonatedCredentials(null, null, null, null, IMPERSONATED_GLOBAL);\n    assertThat(credentials.getSourceCredentials())\n        .isEqualTo(GoogleCredentials.getApplicationDefault());\n    assertThat(credentials.getAccount()).isEqualTo(IMPERSONATED_GLOBAL);\n  }\n\n  @Test\n  public void testImpersonationForUsers() throws Exception {\n    Map<String, String> userMappings =\n        new HashMap<String, String>() {\n          {\n            put(\"alice\", IMPERSONATED_A);\n            put(\"bob\", IMPERSONATED_B);\n          }\n        };\n    Map<String, String> expected =\n        new HashMap<String, String>() {\n          {\n            put(\"alice\", IMPERSONATED_A);\n            put(\"bob\", IMPERSONATED_B);\n            put(\"charlie\", IMPERSONATED_GLOBAL); // Fallback\n          }\n        };\n    for (Map.Entry<String, String> entry : expected.entrySet()) {\n      ImpersonatedCredentials credentials =\n          (ImpersonatedCredentials)\n              createImpersonatedCredentials(\n                  entry.getKey(), null, userMappings, null, IMPERSONATED_GLOBAL);\n      assertThat(credentials.getSourceCredentials())\n          .isEqualTo(GoogleCredentials.getApplicationDefault());\n      assertThat(credentials.getAccount()).isEqualTo(entry.getValue());\n    }\n  }\n\n  @Test\n  public void testImpersonationForGroups() throws Exception {\n    Map<String, String> groupMappings =\n        new HashMap<String, String>() {\n          {\n            put(\"group1\", IMPERSONATED_A);\n            put(\"group2\", IMPERSONATED_B);\n          }\n        };\n    Map<String, String> expected =\n        new HashMap<String, String>() {\n          {\n            put(\"group1\", IMPERSONATED_A);\n            put(\"group2\", IMPERSONATED_B);\n            put(\"group3\", IMPERSONATED_GLOBAL); // Fallback\n          }\n        };\n    for (Map.Entry<String, String> entry : expected.entrySet()) {\n      ImpersonatedCredentials credentials =\n          (ImpersonatedCredentials)\n              createImpersonatedCredentials(\n                  null,\n                  new HashSet<>(Arrays.asList(entry.getKey())),\n                  null,\n                  groupMappings,\n                  IMPERSONATED_GLOBAL);\n      assertThat(credentials.getSourceCredentials())\n          .isEqualTo(GoogleCredentials.getApplicationDefault());\n      assertThat(credentials.getAccount()).isEqualTo(entry.getValue());\n    }\n  }\n\n  /** Check that the user mappings take precedence over the group mappings. */\n  @Test\n  public void testImpersonationForUsersAndGroups() throws Exception {\n    Map<String, String> userMappings =\n        new HashMap<String, String>() {\n          {\n            put(\"alice\", IMPERSONATED_A);\n          }\n        };\n    Map<String, String> groupMappings =\n        new HashMap<String, String>() {\n          {\n            put(\"group1\", IMPERSONATED_B);\n          }\n        };\n    ImpersonatedCredentials credentials =\n        (ImpersonatedCredentials)\n            createImpersonatedCredentials(\n                \"alice\",\n                new HashSet<>(Arrays.asList(\"group1\")),\n                userMappings,\n                groupMappings,\n                IMPERSONATED_GLOBAL);\n    assertThat(credentials.getSourceCredentials())\n        .isEqualTo(GoogleCredentials.getApplicationDefault());\n    assertThat(credentials.getAccount()).isEqualTo(IMPERSONATED_A);\n  }\n\n  @Test\n  public void testFallbackToDefault() throws Exception {\n    BigQueryCredentialsSupplier supplier =\n        new BigQueryCredentialsSupplier(\n            Optional.empty(),\n            Optional.empty(),\n            Optional.empty(),\n            Optional.empty(),\n            Optional.empty(),\n            null,\n            null,\n            Optional.empty(),\n            Optional.empty(),\n            Optional.empty(),\n            Optional.empty(),\n            Optional.empty(),\n            Optional.empty(),\n            Optional.empty());\n    Credentials credentials = supplier.getCredentials();\n    assertThat(credentials).isEqualTo(GoogleCredentials.getApplicationDefault());\n  }\n\n  @Test\n  public void testExceptionIsThrownOnFile() throws Exception {\n    UncheckedIOException e =\n        assertThrows(\n            UncheckedIOException.class,\n            () -> {\n              new BigQueryCredentialsSupplier(\n                  Optional.empty(),\n                  Optional.empty(),\n                  Optional.empty(),\n                  Optional.empty(),\n                  Optional.of(\"/no/such/file\"),\n                  null,\n                  null,\n                  Optional.empty(),\n                  Optional.empty(),\n                  Optional.empty(),\n                  Optional.empty(),\n                  Optional.empty(),\n                  Optional.empty(),\n                  Optional.empty());\n            });\n    assertThat(e.getMessage()).isEqualTo(\"Failed to create Credentials from file\");\n    assertThat(e.getCause()).isInstanceOf(FileNotFoundException.class);\n  }\n\n  @Test\n  public void testExceptionIsThrownOnKey() throws Exception {\n    UncheckedIOException e =\n        assertThrows(\n            UncheckedIOException.class,\n            () -> {\n              new BigQueryCredentialsSupplier(\n                  Optional.empty(),\n                  Optional.empty(),\n                  Optional.empty(),\n                  Optional.of(\"bm8ga2V5IGhlcmU=\"), // \"no key here\"\n                  Optional.empty(),\n                  null,\n                  null,\n                  Optional.empty(),\n                  Optional.empty(),\n                  Optional.empty(),\n                  Optional.empty(),\n                  Optional.empty(),\n                  Optional.empty(),\n                  Optional.empty());\n            });\n    assertThat(e.getMessage()).isEqualTo(\"Failed to create Credentials from key\");\n    assertThat(e.getCause()).isInstanceOf(MalformedJsonException.class);\n  }\n\n  @Test\n  public void testCustomScopes() throws Exception {\n    String json = createServiceAccountJson(\"key\");\n    String credentialsKey =\n        Base64.getEncoder().encodeToString(json.getBytes(StandardCharsets.UTF_8));\n\n    BigQueryCredentialsSupplier supplier =\n        new BigQueryCredentialsSupplier(\n            Optional.empty(),\n            Optional.empty(),\n            Optional.empty(),\n            Optional.of(credentialsKey),\n            Optional.empty(),\n            null,\n            null,\n            Optional.empty(),\n            Optional.empty(),\n            Optional.empty(),\n            Optional.of(ImmutableList.of(\"http://www.googleapis.com/foo/bar\")),\n            Optional.empty(),\n            Optional.empty(),\n            Optional.empty());\n    Credentials credentials = supplier.getCredentials();\n    assertThat(credentials).isInstanceOf(ServiceAccountCredentials.class);\n    ServiceAccountCredentials sac = (ServiceAccountCredentials) credentials;\n    assertThat(sac.getScopes()).containsExactly(\"http://www.googleapis.com/foo/bar\");\n  }\n\n  @Test\n  public void testUniverseDomain() throws Exception {\n    String json = createServiceAccountJson(\"key\");\n    String credentialsKey =\n        Base64.getEncoder().encodeToString(json.getBytes(StandardCharsets.UTF_8));\n\n    BigQueryCredentialsSupplier supplier =\n        new BigQueryCredentialsSupplier(\n            Optional.empty(),\n            Optional.empty(),\n            Optional.empty(),\n            Optional.of(credentialsKey),\n            Optional.empty(),\n            null,\n            null,\n            Optional.empty(),\n            Optional.empty(),\n            Optional.empty(),\n            Optional.empty(),\n            Optional.empty(),\n            Optional.empty(),\n            Optional.empty());\n\n    Credentials credentials = supplier.getCredentials();\n    assertThat(supplier.getUniverseDomain()).isEqualTo(TEST_UNIVERSE_DOMAIN);\n    assertThat(credentials.getUniverseDomain()).isEqualTo(TEST_UNIVERSE_DOMAIN);\n  }\n\n  @Test\n  public void testDefaultUniverseDomain() throws Exception {\n    BigQueryCredentialsSupplier supplier =\n        new BigQueryCredentialsSupplier(\n            Optional.empty(),\n            Optional.empty(),\n            Optional.empty(),\n            Optional.empty(),\n            Optional.empty(),\n            null,\n            null,\n            Optional.empty(),\n            Optional.empty(),\n            Optional.empty(),\n            Optional.empty(),\n            Optional.empty(),\n            Optional.empty(),\n            Optional.empty());\n\n    Credentials credentials = supplier.getCredentials();\n    assertThat(supplier.getUniverseDomain()).isEqualTo(Credentials.GOOGLE_DEFAULT_UNIVERSE);\n  }\n\n  @Test\n  public void testUniverseDomainOnFailure() throws Exception {\n    BigQueryCredentialsSupplier supplier =\n        new BigQueryCredentialsSupplier(\n            Optional.empty(),\n            Optional.empty(),\n            Optional.empty(),\n            Optional.empty(),\n            Optional.empty(),\n            null,\n            null,\n            Optional.empty(),\n            Optional.empty(),\n            Optional.empty(),\n            Optional.empty(),\n            Optional.empty(),\n            Optional.empty(),\n            Optional.empty());\n    BigQueryCredentialsSupplier spySupplier = Mockito.spy(supplier);\n    Credentials credentials = mock(Credentials.class);\n    when(spySupplier.getCredentials()).thenReturn(credentials);\n    doThrow(new IOException()).when(credentials).getUniverseDomain();\n    assertThat(spySupplier.getUniverseDomain()).isEqualTo(Credentials.GOOGLE_DEFAULT_UNIVERSE);\n  }\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/test/java/com/google/cloud/bigquery/connector/common/BigQueryUtilTest.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.bigquery.connector.common;\n\nimport static com.google.common.truth.Truth.assertThat;\nimport static org.junit.Assert.assertFalse;\nimport static org.junit.Assert.assertThrows;\nimport static org.junit.Assert.assertTrue;\nimport static org.mockito.Mockito.mock;\nimport static org.mockito.Mockito.when;\n\nimport com.google.auth.Credentials;\nimport com.google.auth.oauth2.UserCredentials;\nimport com.google.cloud.bigquery.BigLakeConfiguration;\nimport com.google.cloud.bigquery.BigQueryError;\nimport com.google.cloud.bigquery.BigQueryException;\nimport com.google.cloud.bigquery.Clustering;\nimport com.google.cloud.bigquery.ExternalTableDefinition;\nimport com.google.cloud.bigquery.Field;\nimport com.google.cloud.bigquery.Field.Mode;\nimport com.google.cloud.bigquery.FieldList;\nimport com.google.cloud.bigquery.FieldValue;\nimport com.google.cloud.bigquery.FieldValueList;\nimport com.google.cloud.bigquery.FormatOptions;\nimport com.google.cloud.bigquery.HivePartitioningOptions;\nimport com.google.cloud.bigquery.LegacySQLTypeName;\nimport com.google.cloud.bigquery.QueryParameterValue;\nimport com.google.cloud.bigquery.RangePartitioning;\nimport com.google.cloud.bigquery.Schema;\nimport com.google.cloud.bigquery.StandardSQLTypeName;\nimport com.google.cloud.bigquery.StandardTableDefinition;\nimport com.google.cloud.bigquery.TableId;\nimport com.google.cloud.bigquery.TableInfo;\nimport com.google.cloud.bigquery.TableResult;\nimport com.google.cloud.bigquery.TimePartitioning;\nimport com.google.cloud.bigquery.ViewDefinition;\nimport com.google.cloud.bigquery.storage.v1.ReadSession;\nimport com.google.cloud.bigquery.storage.v1.ReadSession.TableReadOptions;\nimport com.google.cloud.bigquery.storage.v1.ReadStream;\nimport com.google.common.collect.ImmutableList;\nimport java.math.BigDecimal;\nimport java.time.Instant;\nimport java.util.Arrays;\nimport java.util.Collections;\nimport java.util.Date;\nimport java.util.HashMap;\nimport java.util.List;\nimport java.util.Map;\nimport java.util.Optional;\nimport java.util.regex.Matcher;\nimport java.util.regex.Pattern;\nimport java.util.stream.Collectors;\nimport java.util.stream.IntStream;\nimport org.junit.Test;\n\npublic class BigQueryUtilTest {\n\n  private static final TableId TABLE_ID =\n      TableId.of(\"test.org:test-project\", \"test_dataset\", \"test_table\");\n  private static final String FULLY_QUALIFIED_TABLE =\n      \"test.org:test-project.test_dataset.test_table\";\n\n  private static void checkFailureMessage(ComparisonResult result, String message) {\n    assertThat(result.valuesAreEqual()).isFalse();\n    assertThat(result.makeMessage()).isEqualTo(message);\n  }\n\n  @Test\n  public void testParseFullyQualifiedTable() {\n    TableId tableId = BigQueryUtil.parseTableId(FULLY_QUALIFIED_TABLE);\n    assertThat(tableId).isEqualTo(TABLE_ID);\n  }\n\n  @Test\n  public void testParseFullyQualifiedLegacyTable() {\n    TableId tableId = BigQueryUtil.parseTableId(\"test.org:test-project.test_dataset.test_table\");\n    assertThat(tableId).isEqualTo(TABLE_ID);\n  }\n\n  @Test\n  public void testParseInvalidTable() {\n    assertThrows(\n        IllegalArgumentException.class,\n        () -> BigQueryUtil.parseTableId(\"test-org:test-project.table\"));\n  }\n\n  @Test\n  public void testParseFullyQualifiedTableWithDefaults() {\n    TableId tableId =\n        BigQueryUtil.parseTableId(\n            FULLY_QUALIFIED_TABLE, Optional.of(\"other_dataset\"), Optional.of(\"other-project\"));\n    assertThat(tableId).isEqualTo(TABLE_ID);\n  }\n\n  @Test\n  public void testParsePartiallyQualifiedTable() {\n    TableId tableId = BigQueryUtil.parseTableId(\"test_dataset.test_table\");\n    assertThat(tableId).isEqualTo(TableId.of(\"test_dataset\", \"test_table\"));\n  }\n\n  @Test\n  public void testParsePartiallyQualifiedTableWithDefaults() {\n    TableId tableId =\n        BigQueryUtil.parseTableId(\n            \"test_dataset.test_table\",\n            Optional.of(\"other_dataset\"),\n            Optional.of(\"default-project\"));\n    assertThat(tableId).isEqualTo(TableId.of(\"default-project\", \"test_dataset\", \"test_table\"));\n  }\n\n  @Test\n  public void testParseUnqualifiedTableWithDefaults() {\n    TableId tableId =\n        BigQueryUtil.parseTableId(\n            \"test_table\", Optional.of(\"default_dataset\"), Optional.of(\"default-project\"));\n    assertThat(tableId).isEqualTo(TableId.of(\"default-project\", \"default_dataset\", \"test_table\"));\n  }\n\n  @Test\n  public void testParseFullyQualifiedPartitionedTable() {\n    TableId tableId = BigQueryUtil.parseTableId(FULLY_QUALIFIED_TABLE + \"$12345\");\n    assertThat(tableId)\n        .isEqualTo(TableId.of(\"test.org:test-project\", \"test_dataset\", \"test_table$12345\"));\n  }\n\n  @Test\n  public void testParseUnqualifiedPartitionedTable() {\n    TableId tableId =\n        BigQueryUtil.parseTableId(\n            \"test_table$12345\", Optional.of(\"default_dataset\"), Optional.empty());\n    assertThat(tableId).isEqualTo(TableId.of(\"default_dataset\", \"test_table$12345\"));\n  }\n\n  @Test\n  public void testParseTableWithDatePartition() {\n    TableId tableId =\n        BigQueryUtil.parseTableId(\n            \"test_table\",\n            Optional.of(\"default_dataset\"),\n            Optional.empty(),\n            Optional.of(\"20200101\"));\n    assertThat(tableId).isEqualTo(TableId.of(\"default_dataset\", \"test_table$20200101\"));\n  }\n\n  @Test\n  public void testParseFullyQualifiedTableWithSpaces() {\n    TableId tableId = BigQueryUtil.parseTableId(\"my-project.my_dataset.a table with spaces\");\n    assertThat(tableId).isEqualTo(TableId.of(\"my-project\", \"my_dataset\", \"a table with spaces\"));\n  }\n\n  @Test\n  public void testParseAmbiguousTableWithSpaces() {\n    TableId tableId =\n        BigQueryUtil.parseTableId(\n            \"orders from 2023\", Optional.of(\"default_dataset\"), Optional.of(\"default-project\"));\n    assertThat(tableId)\n        .isEqualTo(TableId.of(\"default-project\", \"default_dataset\", \"orders from 2023\"));\n  }\n\n  @Test\n  public void testParseAmbiguousTableWithBackticks() {\n    TableId tableId =\n        BigQueryUtil.parseTableId(\n            \"`orders from 2023`\", Optional.of(\"default_dataset\"), Optional.of(\"default-project\"));\n    assertThat(tableId)\n        .isEqualTo(TableId.of(\"default-project\", \"default_dataset\", \"orders from 2023\"));\n  }\n\n  @Test\n  public void testUnparsableTable() {\n    assertThrows(IllegalArgumentException.class, () -> BigQueryUtil.parseTableId(\"foo:bar:baz\"));\n  }\n\n  @Test\n  public void testFriendlyName() {\n    String name = BigQueryUtil.friendlyTableName(TABLE_ID);\n    assertThat(name).isEqualTo(FULLY_QUALIFIED_TABLE);\n  }\n\n  @Test\n  public void testShortFriendlyName() {\n    String name = BigQueryUtil.friendlyTableName(TableId.of(\"test_dataset\", \"test_table\"));\n    assertThat(name).isEqualTo(\"test_dataset.test_table\");\n  }\n\n  @Test\n  public void testConvertAndThrows() {\n    final BigQueryError bigQueryError = new BigQueryError(\"reason\", \"location\", \"message\");\n    BigQueryException bigQueryException =\n        assertThrows(BigQueryException.class, () -> BigQueryUtil.convertAndThrow(bigQueryError));\n    assertThat(bigQueryException).hasMessageThat().isEqualTo(\"message\");\n    assertThat(bigQueryException.getError()).isEqualTo(bigQueryError);\n  }\n\n  @Test\n  public void testFirstPresent() {\n    assertThat(BigQueryUtil.firstPresent(Optional.empty(), Optional.of(\"a\")))\n        .isEqualTo(Optional.of(\"a\"));\n    assertThat(BigQueryUtil.firstPresent(Optional.empty(), Optional.of(\"a\"), Optional.of(\"b\")))\n        .isEqualTo(Optional.of(\"a\"));\n    assertThat(BigQueryUtil.firstPresent(Optional.of(\"a\"), Optional.empty()))\n        .isEqualTo(Optional.of(\"a\"));\n    assertThat(BigQueryUtil.firstPresent(Optional.empty())).isEqualTo(Optional.empty());\n  }\n\n  @Test\n  public void testSchemaEqualsWithFieldOrder() {\n    Schema s1 =\n        Schema.of(\n            Field.newBuilder(\"foo\", StandardSQLTypeName.INT64).build(),\n            Field.newBuilder(\"bar\", StandardSQLTypeName.STRING).build());\n    Schema s2 =\n        Schema.of(\n            Field.newBuilder(\"foo\", StandardSQLTypeName.INT64).build(),\n            Field.newBuilder(\"bar\", StandardSQLTypeName.STRING).build());\n\n    assertThat(BigQueryUtil.schemaWritable(s1, s2, true, true)).isEqualTo(ComparisonResult.equal());\n    assertThat(BigQueryUtil.schemaWritable(s1, s2, false, true))\n        .isEqualTo(ComparisonResult.equal());\n  }\n\n  @Test\n  public void testSchemaWritableNoFieldOrder() {\n    Schema s1 =\n        Schema.of(\n            Field.newBuilder(\"foo\", StandardSQLTypeName.INT64).build(),\n            Field.newBuilder(\"bar\", StandardSQLTypeName.STRING).build());\n    Schema s2 =\n        Schema.of(\n            Field.newBuilder(\"bar\", StandardSQLTypeName.STRING).build(),\n            Field.newBuilder(\"foo\", StandardSQLTypeName.INT64).build());\n\n    assertThat(BigQueryUtil.schemaWritable(s1, s2, true, true))\n        .isEqualTo(ComparisonResult.differentNoDescription());\n    assertThat(BigQueryUtil.schemaWritable(s1, s2, false, true))\n        .isEqualTo(ComparisonResult.equal());\n  }\n\n  @Test\n  public void testNullableField() {\n    Field f1 = Field.newBuilder(\"foo\", StandardSQLTypeName.INT64).build();\n    Field f2 =\n        Field.newBuilder(\"foo\", StandardSQLTypeName.INT64).setMode(Field.Mode.NULLABLE).build();\n    assertThat(BigQueryUtil.fieldWritable(f1, f2, true)).isEqualTo(ComparisonResult.equal());\n  }\n\n  @Test\n  public void testSchemaWritableWithNulls() {\n    Schema s =\n        Schema.of(\n            Field.newBuilder(\"foo\", StandardSQLTypeName.INT64).build(),\n            Field.newBuilder(\"bar\", StandardSQLTypeName.STRING).build());\n    assertThat(BigQueryUtil.schemaWritable(s, null, false, true))\n        .isEqualTo(ComparisonResult.differentNoDescription());\n    // two nulls\n    assertThat(BigQueryUtil.schemaWritable(null, null, false, true))\n        .isEqualTo(ComparisonResult.equal());\n  }\n\n  @Test\n  public void testFieldWritableWithNulls() {\n    Field f = Field.newBuilder(\"foo\", StandardSQLTypeName.INT64).build();\n    checkFailureMessage(\n        BigQueryUtil.fieldWritable(f, null, true), \"Field not found in destination: foo\");\n    // two nulls\n    assertThat(BigQueryUtil.fieldWritable(null, null, true)).isEqualTo(ComparisonResult.equal());\n  }\n\n  @Test\n  public void testRequiredFieldNotFound() {\n    Field f = Field.newBuilder(\"foo\", StandardSQLTypeName.INT64).setMode(Mode.REQUIRED).build();\n    checkFailureMessage(\n        BigQueryUtil.fieldWritable(null, f, true), \"Required field not found in source: foo\");\n  }\n\n  @Test\n  public void testFieldNameMismatch() {\n    Field src = Field.newBuilder(\"foo\", StandardSQLTypeName.INT64).build();\n    Field dest = Field.newBuilder(\"bar\", StandardSQLTypeName.INT64).build();\n    checkFailureMessage(\n        BigQueryUtil.fieldWritable(src, dest, true),\n        \"Wrong field name, expected source field name: bar but was: foo\");\n  }\n\n  @Test\n  public void testSubfieldsMismatch() {\n    Field src =\n        Field.of(\n            \"fooRecord\",\n            LegacySQLTypeName.RECORD,\n            Field.of(\"subfield1\", LegacySQLTypeName.STRING),\n            Field.of(\"subfield2\", LegacySQLTypeName.STRING));\n    Field dest =\n        Field.of(\n            \"fooRecord\", LegacySQLTypeName.RECORD, Field.of(\"subfield1\", LegacySQLTypeName.STRING));\n    checkFailureMessage(\n        BigQueryUtil.fieldWritable(src, dest, true),\n        \"Subfields mismatch for: fooRecord, Number of source fields: 2 is larger than number of destination fields: 1\");\n  }\n\n  @Test\n  public void testFieldWritable() {\n    Field src =\n        Field.newBuilder(\"foo\", StandardSQLTypeName.INT64)\n            .setDescription(\"desc1\")\n            .setScale(1L)\n            .setPrecision(2L)\n            .build();\n    Field dest =\n        Field.newBuilder(\"foo\", StandardSQLTypeName.INT64).setScale(2L).setPrecision(2L).build();\n    assertThat(BigQueryUtil.fieldWritable(src, dest, true)).isEqualTo(ComparisonResult.equal());\n  }\n\n  @Test\n  public void testFieldWritable_notTypeWritable() {\n    Field src = Field.newBuilder(\"foo\", StandardSQLTypeName.INT64).build();\n    Field dest = Field.newBuilder(\"foo\", StandardSQLTypeName.DATE).build();\n    checkFailureMessage(\n        BigQueryUtil.fieldWritable(src, dest, true),\n        \"Incompatible type for field: foo, cannot write source type: INTEGER to destination type: DATE\");\n  }\n\n  @Test\n  public void testFieldWritableMaxLength() {\n    Field f1 = Field.newBuilder(\"foo\", StandardSQLTypeName.INT64).setMaxLength(1L).build();\n    Field f2 = Field.newBuilder(\"foo\", StandardSQLTypeName.INT64).setMaxLength(2L).build();\n    Field f3 = Field.newBuilder(\"foo\", StandardSQLTypeName.INT64).setMaxLength(3L).build();\n    Field f4 = Field.newBuilder(\"foo\", StandardSQLTypeName.INT64).build();\n    assertThat(BigQueryUtil.fieldWritable(f1, f2, true)).isEqualTo(ComparisonResult.equal());\n    checkFailureMessage(\n        BigQueryUtil.fieldWritable(f3, f2, true),\n        \"Incompatible max length for field: foo, cannot write source field with max length: 3 to destination field with max length: 2\");\n    checkFailureMessage(\n        BigQueryUtil.fieldWritable(f3, f4, true),\n        \"Incompatible max length for field: foo, cannot write source field with max length: 3 to destination field with max length: null\");\n    checkFailureMessage(\n        BigQueryUtil.fieldWritable(f4, f2, true),\n        \"Incompatible max length for field: foo, cannot write source field with max length: null to destination field with max length: 2\");\n  }\n\n  @Test\n  public void testFieldWritableScaleAndPrecision() {\n    Field p5s5 =\n        Field.newBuilder(\"foo\", StandardSQLTypeName.NUMERIC).setPrecision(5L).setScale(5L).build();\n    Field p7s3 =\n        Field.newBuilder(\"foo\", StandardSQLTypeName.NUMERIC).setPrecision(7L).setScale(3L).build();\n    Field p3s7 =\n        Field.newBuilder(\"foo\", StandardSQLTypeName.NUMERIC).setPrecision(3L).setScale(7L).build();\n    Field p3s3 =\n        Field.newBuilder(\"foo\", StandardSQLTypeName.NUMERIC).setPrecision(3L).setScale(3L).build();\n    checkFailureMessage(\n        BigQueryUtil.fieldWritable(p5s5, p7s3, true),\n        \"Incompatible precision, scale for field: foo, cannot write source field with precision, scale: (5, 5) to destination field with precision, scale: (7, 3)\");\n    checkFailureMessage(\n        BigQueryUtil.fieldWritable(p5s5, p3s7, true),\n        \"Incompatible precision, scale for field: foo, cannot write source field with precision, scale: (5, 5) to destination field with precision, scale: (3, 7)\");\n    checkFailureMessage(\n        BigQueryUtil.fieldWritable(p5s5, p3s3, true),\n        \"Incompatible precision, scale for field: foo, cannot write source field with precision, scale: (5, 5) to destination field with precision, scale: (3, 3)\");\n    assertThat(BigQueryUtil.fieldWritable(p3s3, p5s5, true)).isEqualTo(ComparisonResult.equal());\n    assertThat(BigQueryUtil.fieldWritable(p3s3, p7s3, true)).isEqualTo(ComparisonResult.equal());\n    assertThat(BigQueryUtil.fieldWritable(p3s3, p3s7, true)).isEqualTo(ComparisonResult.equal());\n  }\n\n  @Test\n  public void testSchemaWritableWithEnableModeCheckForSchemaFields() {\n    Schema s1 =\n        Schema.of(\n            Field.newBuilder(\"foo\", StandardSQLTypeName.STRING).setMode(Mode.NULLABLE).build());\n    Schema s2 =\n        Schema.of(\n            Field.newBuilder(\"foo\", StandardSQLTypeName.STRING).setMode(Mode.REQUIRED).build());\n    Schema s3 =\n        Schema.of(\n            Field.newBuilder(\"foo\", StandardSQLTypeName.STRING).setMode(Mode.REPEATED).build());\n\n    assertThat(BigQueryUtil.schemaWritable(s1, s1, false, true))\n        .isEqualTo(ComparisonResult.equal());\n    assertThat(BigQueryUtil.schemaWritable(s2, s2, false, true))\n        .isEqualTo(ComparisonResult.equal());\n    assertThat(BigQueryUtil.schemaWritable(s3, s3, false, true))\n        .isEqualTo(ComparisonResult.equal());\n    assertThat(BigQueryUtil.schemaWritable(s1, s2, false, true))\n        .isEqualTo(ComparisonResult.equal());\n    checkFailureMessage(\n        BigQueryUtil.schemaWritable(s1, s3, false, true),\n        \"Incompatible mode for field: foo, cannot write source field mode: NULLABLE to destination field mode: REPEATED\");\n    checkFailureMessage(\n        BigQueryUtil.schemaWritable(s2, s3, false, true),\n        \"Incompatible mode for field: foo, cannot write source field mode: REQUIRED to destination field mode: REPEATED\");\n    assertThat(BigQueryUtil.schemaWritable(s2, s1, false, true))\n        .isEqualTo(ComparisonResult.equal());\n    checkFailureMessage(\n        BigQueryUtil.schemaWritable(s3, s1, false, true),\n        \"Incompatible mode for field: foo, cannot write source field mode: REPEATED to destination field mode: NULLABLE\");\n    checkFailureMessage(\n        BigQueryUtil.schemaWritable(s3, s2, false, true),\n        \"Incompatible mode for field: foo, cannot write source field mode: REPEATED to destination field mode: REQUIRED\");\n  }\n\n  @Test\n  public void testSchemaWritableWithDisableNullableFieldCheck() {\n    Schema s1 =\n        Schema.of(\n            Field.newBuilder(\"foo\", StandardSQLTypeName.STRING).setMode(Mode.NULLABLE).build());\n    Schema s2 =\n        Schema.of(\n            Field.newBuilder(\"foo\", StandardSQLTypeName.STRING).setMode(Mode.REQUIRED).build());\n    Schema s3 =\n        Schema.of(\n            Field.newBuilder(\"foo\", StandardSQLTypeName.STRING).setMode(Mode.REPEATED).build());\n\n    assertThat(BigQueryUtil.schemaWritable(s1, s1, false, false))\n        .isEqualTo(ComparisonResult.equal());\n    assertThat(BigQueryUtil.schemaWritable(s2, s2, false, false))\n        .isEqualTo(ComparisonResult.equal());\n    assertThat(BigQueryUtil.schemaWritable(s3, s3, false, false))\n        .isEqualTo(ComparisonResult.equal());\n    assertThat(BigQueryUtil.schemaWritable(s1, s2, false, false))\n        .isEqualTo(ComparisonResult.equal());\n    assertThat(BigQueryUtil.schemaWritable(s1, s3, false, false))\n        .isEqualTo(ComparisonResult.equal());\n    assertThat(BigQueryUtil.schemaWritable(s2, s3, false, false))\n        .isEqualTo(ComparisonResult.equal());\n    assertThat(BigQueryUtil.schemaWritable(s2, s1, false, false))\n        .isEqualTo(ComparisonResult.equal());\n    assertThat(BigQueryUtil.schemaWritable(s3, s1, false, false))\n        .isEqualTo(ComparisonResult.equal());\n    assertThat(BigQueryUtil.schemaWritable(s3, s2, false, false))\n        .isEqualTo(ComparisonResult.equal());\n  }\n\n  @Test\n  public void testSchemaWritableWithMoreUnEqualNumberOfFields() {\n    Schema s1 =\n        Schema.of(\n            Field.newBuilder(\"foo1\", StandardSQLTypeName.STRING).setMode(Mode.NULLABLE).build(),\n            Field.newBuilder(\"foo2\", StandardSQLTypeName.STRING).setMode(Mode.NULLABLE).build());\n    Schema s2 =\n        Schema.of(\n            Field.newBuilder(\"foo1\", StandardSQLTypeName.STRING).setMode(Mode.NULLABLE).build(),\n            Field.newBuilder(\"foo2\", StandardSQLTypeName.STRING).setMode(Mode.NULLABLE).build(),\n            Field.newBuilder(\"foo3\", StandardSQLTypeName.STRING).setMode(Mode.NULLABLE).build());\n    Schema s3 =\n        Schema.of(\n            Field.newBuilder(\"foo1\", StandardSQLTypeName.STRING).setMode(Mode.NULLABLE).build());\n\n    assertThat(BigQueryUtil.schemaWritable(s1, s2, false, true))\n        .isEqualTo(ComparisonResult.equal());\n    checkFailureMessage(\n        BigQueryUtil.schemaWritable(s1, s3, false, true),\n        \"Number of source fields: 2 is larger than number of destination fields: 1\");\n    assertThat(BigQueryUtil.schemaWritable(s3, s2, false, true))\n        .isEqualTo(ComparisonResult.equal());\n  }\n\n  @Test\n  public void testIsModeWritable() {\n    assertThat(BigQueryUtil.isModeWritable(Mode.NULLABLE, Mode.NULLABLE)).isTrue();\n    assertThat(BigQueryUtil.isModeWritable(Mode.NULLABLE, Mode.REQUIRED)).isTrue();\n    assertThat(BigQueryUtil.isModeWritable(Mode.NULLABLE, Mode.REPEATED)).isFalse();\n    assertThat(BigQueryUtil.isModeWritable(Mode.REQUIRED, Mode.NULLABLE)).isTrue();\n    assertThat(BigQueryUtil.isModeWritable(Mode.REQUIRED, Mode.REQUIRED)).isTrue();\n    assertThat(BigQueryUtil.isModeWritable(Mode.REQUIRED, Mode.REPEATED)).isFalse();\n    assertThat(BigQueryUtil.isModeWritable(Mode.REPEATED, Mode.NULLABLE)).isFalse();\n    assertThat(BigQueryUtil.isModeWritable(Mode.REPEATED, Mode.REQUIRED)).isFalse();\n    assertThat(BigQueryUtil.isModeWritable(Mode.REPEATED, Mode.REPEATED)).isTrue();\n  }\n\n  @Test\n  public void testCreateVerifiedInstanceNoClass() {\n    assertThrows(\n        IllegalArgumentException.class,\n        () -> BigQueryUtil.createVerifiedInstance(\"no.such.Class\", String.class));\n  }\n\n  @Test\n  public void testCreateVerifiedInstanceFailedInheritance() {\n    assertThrows(\n        IllegalArgumentException.class,\n        () -> BigQueryUtil.createVerifiedInstance(\"java.lang.String\", Map.class));\n  }\n\n  @Test\n  public void testCreateVerifiedInstance() {\n    List result = BigQueryUtil.createVerifiedInstance(\"java.util.ArrayList\", List.class);\n    assertThat(result).isNotNull();\n    assertThat(result).isEmpty();\n  }\n\n  @Test\n  public void testCreateVerifiedInstanceWithArg() {\n    String result = BigQueryUtil.createVerifiedInstance(\"java.lang.String\", String.class, \"test\");\n    assertThat(result).isNotNull();\n    assertThat(result).isEqualTo(\"test\");\n  }\n\n  @Test\n  public void testVerifySerialization() {\n    int[] source = new int[] {1, 2, 3};\n    int[] copy = BigQueryUtil.verifySerialization(source);\n    assertThat(copy).isEqualTo(source);\n  }\n\n  @Test\n  public void testVerifySerializationFail() {\n    final Object notSerializable = new Object();\n    assertThrows(\n        IllegalArgumentException.class, () -> BigQueryUtil.verifySerialization(notSerializable));\n  }\n\n  @Test\n  public void testGetStreamNames() {\n    List<String> streamNames =\n        BigQueryUtil.getStreamNames(\n            ReadSession.newBuilder().addStreams(ReadStream.newBuilder().setName(\"0\")).build());\n    assertThat(streamNames).isEqualTo(Arrays.asList(\"0\"));\n    streamNames =\n        BigQueryUtil.getStreamNames(\n            ReadSession.newBuilder()\n                .addStreams(ReadStream.newBuilder().setName(\"0\"))\n                .addStreams(ReadStream.newBuilder().setName(\"1\"))\n                .build());\n    assertThat(streamNames).hasSize(2);\n    assertThat(streamNames).containsAnyIn(Arrays.asList(\"0\", \"1\"));\n  }\n\n  @Test\n  public void testEmptyGetStreamNames() {\n    TableReadOptions tableReadOptions = TableReadOptions.newBuilder().build();\n    List<String> streamNames =\n        BigQueryUtil.getStreamNames(\n            ReadSession.newBuilder().setName(\"abc\").setReadOptions(tableReadOptions).build());\n    assertThat(streamNames).hasSize(0);\n    streamNames = BigQueryUtil.getStreamNames(null);\n    assertThat(streamNames).hasSize(0);\n  }\n\n  @Test\n  public void testGetPartitionField_not_standard_table() {\n    TableInfo info = TableInfo.of(TableId.of(\"foo\", \"bar\"), ViewDefinition.of(\"Select 1 as test\"));\n    assertThat(BigQueryUtil.getPartitionFields(info)).isEmpty();\n  }\n\n  @Test\n  public void testGetPartitionField_no_partitioning() {\n    TableInfo info =\n        TableInfo.of(TableId.of(\"foo\", \"bar\"), StandardTableDefinition.newBuilder().build());\n    assertThat(BigQueryUtil.getPartitionFields(info)).isEmpty();\n  }\n\n  @Test\n  public void testGetPartitionField_time_partitioning() {\n    TableInfo info =\n        TableInfo.of(\n            TableId.of(\"foo\", \"bar\"),\n            StandardTableDefinition.newBuilder()\n                .setTimePartitioning(\n                    TimePartitioning.newBuilder(TimePartitioning.Type.DAY).setField(\"test\").build())\n                .build());\n    List<String> partitionFields = BigQueryUtil.getPartitionFields(info);\n    assertThat(partitionFields).hasSize(1);\n    assertThat(partitionFields).contains(\"test\");\n  }\n\n  @Test\n  public void testGetPartitionField_time_partitioning_pseudoColumn() {\n    TableInfo info =\n        TableInfo.of(\n            TableId.of(\"foo\", \"bar\"),\n            StandardTableDefinition.newBuilder()\n                .setTimePartitioning(\n                    TimePartitioning.newBuilder(TimePartitioning.Type.HOUR).build())\n                .build());\n    List<String> partitionFields = BigQueryUtil.getPartitionFields(info);\n    assertThat(partitionFields).hasSize(1);\n    assertThat(partitionFields).contains(\"_PARTITIONTIME\");\n  }\n\n  @Test\n  public void testGetPartitionField_time_partitioning_pseudoColumn_day() {\n    TableInfo info =\n        TableInfo.of(\n            TableId.of(\"foo\", \"bar\"),\n            StandardTableDefinition.newBuilder()\n                .setTimePartitioning(TimePartitioning.newBuilder(TimePartitioning.Type.DAY).build())\n                .build());\n    List<String> partitionFields = BigQueryUtil.getPartitionFields(info);\n    assertThat(partitionFields).hasSize(2);\n    assertThat(partitionFields).contains(\"_PARTITIONTIME\");\n    assertThat(partitionFields).contains(\"_PARTITIONDATE\");\n  }\n\n  @Test\n  public void testGetPartitionField_range_partitioning() {\n    TableInfo info =\n        TableInfo.of(\n            TableId.of(\"foo\", \"bar\"),\n            StandardTableDefinition.newBuilder()\n                .setRangePartitioning(RangePartitioning.newBuilder().setField(\"test\").build())\n                .build());\n    List<String> partitionFields = BigQueryUtil.getPartitionFields(info);\n    assertThat(partitionFields).hasSize(1);\n    assertThat(partitionFields).contains(\"test\");\n  }\n\n  @Test\n  public void testGetPartitionField_hive_partitioning() {\n    TableInfo info =\n        TableInfo.of(\n            TableId.of(\"foo\", \"bar\"),\n            ExternalTableDefinition.newBuilder(\n                    \"gs://bucket/path\",\n                    Schema.of(Field.newBuilder(\"foo\", LegacySQLTypeName.STRING).build()),\n                    FormatOptions.csv())\n                .setHivePartitioningOptions(\n                    HivePartitioningOptions.newBuilder()\n                        .setFields(Arrays.asList(\"f1\", \"f2\"))\n                        .build())\n                .build());\n    List<String> partitionFields = BigQueryUtil.getPartitionFields(info);\n    assertThat(partitionFields).hasSize(2);\n    assertThat(partitionFields).contains(\"f1\");\n    assertThat(partitionFields).contains(\"f2\");\n  }\n\n  @Test\n  public void testGetClusteringFields_not_standard_table() {\n    TableInfo info = TableInfo.of(TableId.of(\"foo\", \"bar\"), ViewDefinition.of(\"Select 1 as test\"));\n    assertThat(BigQueryUtil.getClusteringFields(info)).isEmpty();\n  }\n\n  @Test\n  public void ttestGetClusteringFields_no_clustering() {\n    TableInfo info =\n        TableInfo.of(TableId.of(\"foo\", \"bar\"), StandardTableDefinition.newBuilder().build());\n    assertThat(BigQueryUtil.getClusteringFields(info)).isEmpty();\n  }\n\n  @Test\n  public void testGetClusteringFields_time_partitioning() {\n    TableInfo info =\n        TableInfo.of(\n            TableId.of(\"foo\", \"bar\"),\n            StandardTableDefinition.newBuilder()\n                .setClustering(\n                    Clustering.newBuilder().setFields(ImmutableList.of(\"c1\", \"c2\")).build())\n                .build());\n    ImmutableList<String> clusteringFields = BigQueryUtil.getClusteringFields(info);\n    assertThat(clusteringFields).hasSize(2);\n    assertThat(clusteringFields).contains(\"c1\");\n    assertThat(clusteringFields).contains(\"c2\");\n  }\n\n  @Test\n  public void testFilterLengthInLimit_no_filter() {\n    assertThat(BigQueryUtil.filterLengthInLimit(Optional.empty())).isTrue();\n  }\n\n  @Test\n  public void testFilterLengthInLimit_small_filter() {\n    assertThat(BigQueryUtil.filterLengthInLimit(Optional.of(\"`foo` > 5\"))).isTrue();\n  }\n\n  @Test\n  public void testFilterLengthInLimit_very_large_filter() {\n    String tooLarge =\n        IntStream.range(0, 2 + 2 << 20).mapToObj(i -> \"a\").collect(Collectors.joining());\n    assertThat(BigQueryUtil.filterLengthInLimit(Optional.of(tooLarge))).isFalse();\n  }\n\n  @Test\n  public void testGetPrecision() throws Exception {\n    assertThat(\n            BigQueryUtil.getPrecision(\n                Field.newBuilder(\"foo\", StandardSQLTypeName.NUMERIC).setPrecision(5L).build()))\n        .isEqualTo(5);\n    assertThat(\n            BigQueryUtil.getPrecision(Field.newBuilder(\"foo\", StandardSQLTypeName.NUMERIC).build()))\n        .isEqualTo(38);\n    assertThat(\n            BigQueryUtil.getPrecision(\n                Field.newBuilder(\"foo\", StandardSQLTypeName.BIGNUMERIC).build()))\n        .isEqualTo(76);\n    assertThat(BigQueryUtil.getPrecision(Field.newBuilder(\"foo\", StandardSQLTypeName.BOOL).build()))\n        .isEqualTo(-1);\n  }\n\n  @Test\n  public void testGetScale() throws Exception {\n    assertThat(\n            BigQueryUtil.getScale(\n                Field.newBuilder(\"foo\", StandardSQLTypeName.NUMERIC).setScale(5L).build()))\n        .isEqualTo(5);\n    assertThat(BigQueryUtil.getScale(Field.newBuilder(\"foo\", StandardSQLTypeName.NUMERIC).build()))\n        .isEqualTo(9);\n    assertThat(\n            BigQueryUtil.getScale(Field.newBuilder(\"foo\", StandardSQLTypeName.BIGNUMERIC).build()))\n        .isEqualTo(38);\n    assertThat(BigQueryUtil.getScale(Field.newBuilder(\"foo\", StandardSQLTypeName.BOOL).build()))\n        .isEqualTo(-1);\n  }\n\n  @Test\n  public void testAdjustSchemaIfNeeded() {\n    Schema wantedSchema =\n        Schema.of(\n            Field.of(\"numeric\", LegacySQLTypeName.NUMERIC),\n            Field.of(\n                \"record\",\n                LegacySQLTypeName.RECORD,\n                Field.of(\"subfield\", LegacySQLTypeName.STRING)));\n    Schema existingTableSchema =\n        Schema.of(\n            Field.of(\"numeric\", LegacySQLTypeName.BIGNUMERIC),\n            Field.of(\n                \"record\",\n                LegacySQLTypeName.RECORD,\n                Field.of(\"subfield\", LegacySQLTypeName.STRING)));\n    Schema adjustedSchema =\n        BigQueryUtil.adjustSchemaIfNeeded(wantedSchema, existingTableSchema, false);\n    assertThat(adjustedSchema.getFields()).hasSize(2);\n    FieldList adjustedFields = adjustedSchema.getFields();\n    assertThat(adjustedFields.get(\"numeric\").getType()).isEqualTo(LegacySQLTypeName.BIGNUMERIC);\n    assertThat(adjustedFields.get(\"record\").getType()).isEqualTo(LegacySQLTypeName.RECORD);\n    assertThat(adjustedFields.get(\"record\").getSubFields()).hasSize(1);\n    assertThat(adjustedFields.get(\"record\").getSubFields().get(0).getType())\n        .isEqualTo(LegacySQLTypeName.STRING);\n  }\n\n  @Test\n  public void testAdjustSchemaForNewField() {\n    Schema wantedSchema =\n        Schema.of(\n            Field.of(\"existing_field\", LegacySQLTypeName.NUMERIC),\n            Field.of(\"new_field\", LegacySQLTypeName.STRING));\n    Schema existingTableSchema =\n        Schema.of(Field.of(\"existing_field\", LegacySQLTypeName.BIGNUMERIC));\n    Schema adjustedSchema =\n        BigQueryUtil.adjustSchemaIfNeeded(wantedSchema, existingTableSchema, false);\n    assertThat(adjustedSchema.getFields()).hasSize(2);\n    FieldList adjustedFields = adjustedSchema.getFields();\n    assertThat(adjustedFields.get(\"existing_field\").getType())\n        .isEqualTo(LegacySQLTypeName.BIGNUMERIC);\n    assertThat(adjustedFields.get(\"new_field\").getType()).isEqualTo(LegacySQLTypeName.STRING);\n  }\n\n  @Test\n  public void testAdjustField_no_op() {\n    Field field = Field.of(\"f\", LegacySQLTypeName.BOOLEAN);\n    Field existingField = Field.of(\"f\", LegacySQLTypeName.BIGNUMERIC);\n    Field adjustedField = BigQueryUtil.adjustField(field, existingField, false);\n    assertThat(adjustedField.getType()).isEqualTo(LegacySQLTypeName.BIGNUMERIC);\n  }\n\n  @Test\n  public void testAdjustField_numeric_to_big_numeric() {\n    Field field = Field.of(\"numeric\", LegacySQLTypeName.NUMERIC);\n    Field existingField = Field.of(\"numeric\", LegacySQLTypeName.BIGNUMERIC);\n    Field adjustedField = BigQueryUtil.adjustField(field, existingField, false);\n    assertThat(adjustedField.getType()).isEqualTo(LegacySQLTypeName.BIGNUMERIC);\n  }\n\n  @Test\n  public void testAdjustFieldRecursive() {\n    Field field =\n        Field.of(\n            \"record\", LegacySQLTypeName.RECORD, Field.of(\"subfield\", LegacySQLTypeName.STRING));\n    Field existingField =\n        Field.of(\n            \"record\", LegacySQLTypeName.RECORD, Field.of(\"subfield\", LegacySQLTypeName.STRING));\n    Field adjustedField = BigQueryUtil.adjustField(field, existingField, false);\n    assertThat(adjustedField.getType()).isEqualTo(LegacySQLTypeName.RECORD);\n    assertThat(adjustedField.getSubFields()).hasSize(1);\n    assertThat(adjustedField.getSubFields().get(0).getType()).isEqualTo(LegacySQLTypeName.STRING);\n  }\n\n  @Test\n  public void testAdjustFieldRecursive_with_bignumeric_conversion() {\n    Field field =\n        Field.of(\n            \"record\", LegacySQLTypeName.RECORD, Field.of(\"subfield\", LegacySQLTypeName.NUMERIC));\n    Field existingField =\n        Field.of(\n            \"record\", LegacySQLTypeName.RECORD, Field.of(\"subfield\", LegacySQLTypeName.BIGNUMERIC));\n    Field adjustedField = BigQueryUtil.adjustField(field, existingField, false);\n    assertThat(adjustedField.getType()).isEqualTo(LegacySQLTypeName.RECORD);\n    assertThat(adjustedField.getSubFields()).hasSize(1);\n    assertThat(adjustedField.getSubFields().get(0).getType())\n        .isEqualTo(LegacySQLTypeName.BIGNUMERIC);\n  }\n\n  @Test\n  public void testAdjustField_nullExistingField() {\n    Field field = Field.of(\"f\", LegacySQLTypeName.BOOLEAN);\n    Field adjustedField = BigQueryUtil.adjustField(field, null, false);\n    assertThat(adjustedField.getType()).isEqualTo(LegacySQLTypeName.BOOLEAN);\n  }\n\n  @Test\n  public void testAdjustField_nullExistingFieldWithRecordType() {\n    Field field =\n        Field.of(\n            \"record\", LegacySQLTypeName.RECORD, Field.of(\"subfield\", LegacySQLTypeName.NUMERIC));\n    Field adjustedField = BigQueryUtil.adjustField(field, null, false);\n    assertThat(adjustedField.getType()).isEqualTo(LegacySQLTypeName.RECORD);\n  }\n\n  @Test\n  public void testPrepareQueryForLog_withNewLine() {\n    assertThat(BigQueryUtil.prepareQueryForLog(\"SELECT a\\nFROM table\", 40))\n        .isEqualTo(\"SELECT a\\\\nFROM table\");\n  }\n\n  @Test\n  public void testPrepareQueryForLog_withoutNewLine() {\n    assertThat(BigQueryUtil.prepareQueryForLog(\"SELECT a FROM table\", 40))\n        .isEqualTo(\"SELECT a FROM table\");\n  }\n\n  @Test\n  public void testPrepareQueryForLog_withTruncating() {\n    assertThat(BigQueryUtil.prepareQueryForLog(\"SELECT a FROM table\", 10))\n        .isEqualTo(\"SELECT a F\\u2026\");\n  }\n\n  @Test\n  public void testSanitizeLabelValue() {\n    // testing to lower case transformation, and character handling\n    assertThat(BigQueryUtil.sanitizeLabelValue(\"Foo-bar*\")).isEqualTo(\"foo-bar_\");\n    // testing Strings longer than 63 characters\n    assertThat(\n            BigQueryUtil.sanitizeLabelValue(\n                \"1234567890123456789012345678901234567890123456789012345678901234567890\"))\n        .isEqualTo(\"123456789012345678901234567890123456789012345678901234567890123\");\n  }\n\n  @Test\n  public void testIsBigLakeManagedTable_with_BigLakeManagedTable() {\n    TableInfo bigLakeManagedTable =\n        TableInfo.of(\n            TableId.of(\"dataset\", \"biglakemanagedtable\"),\n            StandardTableDefinition.newBuilder()\n                .setBigLakeConfiguration(\n                    BigLakeConfiguration.newBuilder()\n                        .setTableFormat(\"ICEBERG\")\n                        .setConnectionId(\"us-connection\")\n                        .setFileFormat(\"PARQUET\")\n                        .setStorageUri(\"gs://bigquery/blmt/nations.parquet\")\n                        .build())\n                .build());\n\n    assertTrue(BigQueryUtil.isBigLakeManagedTable(bigLakeManagedTable));\n  }\n\n  @Test\n  public void testIsBigLakeManagedTable_with_BigQueryExternalTable() {\n    TableInfo bigQueryExternalTable =\n        TableInfo.of(\n            TableId.of(\"dataset\", \"bigqueryexternaltable\"),\n            ExternalTableDefinition.newBuilder(\n                    \"gs://bigquery/nations.parquet\", FormatOptions.avro())\n                .build());\n\n    assertFalse(BigQueryUtil.isBigLakeManagedTable(bigQueryExternalTable));\n  }\n\n  @Test\n  public void testIsBigLakeManagedTable_with_BigQueryNativeTable() {\n    TableInfo bigQueryNativeTable =\n        TableInfo.of(\n            TableId.of(\"dataset\", \"bigquerynativetable\"),\n            StandardTableDefinition.newBuilder().setLocation(\"us-east-1\").build());\n\n    assertFalse(BigQueryUtil.isBigLakeManagedTable(bigQueryNativeTable));\n  }\n\n  @Test\n  public void testIsBigQueryNativeTable_with_BigLakeManagedTable() {\n    TableInfo bigLakeManagedTable =\n        TableInfo.of(\n            TableId.of(\"dataset\", \"biglakemanagedtable\"),\n            StandardTableDefinition.newBuilder()\n                .setBigLakeConfiguration(\n                    BigLakeConfiguration.newBuilder()\n                        .setTableFormat(\"ICEBERG\")\n                        .setConnectionId(\"us-connection\")\n                        .setFileFormat(\"PARQUET\")\n                        .setStorageUri(\"gs://bigquery/blmt/nations.parquet\")\n                        .build())\n                .build());\n\n    assertFalse(BigQueryUtil.isBigQueryNativeTable(bigLakeManagedTable));\n  }\n\n  @Test\n  public void testIsBigQueryNativeTable_with_BigQueryExternalTable() {\n    TableInfo bigQueryExternalTable =\n        TableInfo.of(\n            TableId.of(\"dataset\", \"bigqueryexternaltable\"),\n            ExternalTableDefinition.newBuilder(\n                    \"gs://bigquery/nations.parquet\", FormatOptions.avro())\n                .build());\n\n    assertFalse(BigQueryUtil.isBigQueryNativeTable(bigQueryExternalTable));\n  }\n\n  @Test\n  public void testIsBigQueryNativeTable_with_BigQueryNativeTable() {\n    TableInfo bigQueryNativeTable =\n        TableInfo.of(\n            TableId.of(\"dataset\", \"bigquerynativetable\"),\n            StandardTableDefinition.newBuilder().setLocation(\"us-east-1\").build());\n\n    assertTrue(BigQueryUtil.isBigQueryNativeTable(bigQueryNativeTable));\n  }\n\n  @Test\n  public void testAdjustField_nullable_allowRelaxation() {\n    Field field = Field.of(\"f\", LegacySQLTypeName.BIGNUMERIC);\n    field = field.toBuilder().setMode(Mode.NULLABLE).build();\n    Field existingField = Field.of(\"f\", LegacySQLTypeName.BIGNUMERIC);\n    existingField = existingField.toBuilder().setMode(Mode.REQUIRED).build();\n    Field adjustedField = BigQueryUtil.adjustField(field, existingField, true);\n    assertThat(adjustedField.getMode()).isEqualTo(Mode.NULLABLE);\n  }\n\n  @Test\n  public void testAdjustField_exisitingFieldNullable_allowRelaxation() {\n    Field field = Field.of(\"f\", LegacySQLTypeName.BIGNUMERIC);\n    field = field.toBuilder().setMode(Mode.REQUIRED).build();\n    Field existingField = Field.of(\"f\", LegacySQLTypeName.BIGNUMERIC);\n    existingField = existingField.toBuilder().setMode(Mode.NULLABLE).build();\n    Field adjustedField = BigQueryUtil.adjustField(field, existingField, true);\n    assertThat(adjustedField.getMode()).isEqualTo(Mode.NULLABLE);\n  }\n\n  @Test\n  public void testAdjustField_nullable_dontAllowRelaxation() {\n    Field field = Field.of(\"f\", LegacySQLTypeName.BIGNUMERIC);\n    field = field.toBuilder().setMode(Mode.NULLABLE).build();\n    Field existingField = Field.of(\"f\", LegacySQLTypeName.BIGNUMERIC);\n    existingField = existingField.toBuilder().setMode(Mode.REQUIRED).build();\n    Field adjustedField = BigQueryUtil.adjustField(field, existingField, false);\n    assertThat(adjustedField.getMode()).isEqualTo(Mode.REQUIRED);\n  }\n\n  @Test\n  public void testAdjustField_numeric_to_bigNumeric() {\n    Field field = Field.of(\"f\", LegacySQLTypeName.NUMERIC);\n    field = field.toBuilder().setMode(Mode.NULLABLE).build();\n    Field existingField = Field.of(\"f\", LegacySQLTypeName.BIGNUMERIC);\n    existingField = existingField.toBuilder().setMode(Mode.REQUIRED).build();\n    Field adjustedField = BigQueryUtil.adjustField(field, existingField, false);\n    assertThat(adjustedField.getType()).isEqualTo(LegacySQLTypeName.BIGNUMERIC);\n  }\n\n  @Test\n  public void testCredentialSerialization() {\n    Credentials expected =\n        UserCredentials.create(\n            AccessToken.newBuilder()\n                .setTokenValue(\"notarealtoken\")\n                .setExpirationTime(Date.from(Instant.now()))\n                .build());\n\n    Credentials credentials =\n        BigQueryUtil.getCredentialsFromByteArray(BigQueryUtil.getCredentialsByteArray(expected));\n\n    assertThat(credentials).isEqualTo(expected);\n  }\n\n  @Test\n  public void testParseNamedParameters_SuccessAllTypes() {\n    Map<String, String> options = new HashMap<>();\n    options.put(\"NamedParameters.strParam\", \"STRING:hello world\");\n    options.put(\"NamedParameters.intParam\", \"INT64:1234567890\");\n    options.put(\"NamedParameters.boolPropT\", \"BOOL:true\");\n    options.put(\"NamedParameters.boolPropF\", \"BOOL:false\");\n    options.put(\"NamedParameters.boolPropCase\", \"BOOL:TRUE\");\n    options.put(\"NamedParameters.floatParam\", \"FLOAT64:123.456\");\n    options.put(\"NamedParameters.numericParam\", \"NUMERIC:987654321.123456789\");\n    options.put(\n        \"NamedParameters.bignumericParam\",\n        \"BIGNUMERIC:123456789012345678901234567890.123456789123456789\");\n    options.put(\"NamedParameters.dateParam\", \"DATE:2023-10-27\");\n    options.put(\"NamedParameters.jsonParam\", \"JSON:{\\\"key\\\": \\\"value\\\", \\\"arr\\\": [1, 2]}\");\n    options.put(\"NamedParameters.geoParam\", \"GEOGRAPHY:POINT(1 2)\");\n    options.put(\n        \"namedparameters.caseinsensitiveprefix\",\n        \"STRING:prefix works\"); // Test prefix case insensitivity\n\n    QueryParameterHelper result = BigQueryUtil.parseQueryParameters(options);\n\n    assertThat(result.getMode()).isEqualTo(ParameterMode.NAMED);\n    assertThat(result.isEmpty()).isFalse();\n\n    assertThat(result.getNamedParameters()).isPresent();\n    Map<String, QueryParameterValue> params = result.getNamedParameters().get();\n    assertThat(params).hasSize(12);\n\n    assertThat(params.get(\"strParam\")).isEqualTo(QueryParameterValue.string(\"hello world\"));\n    assertThat(params.get(\"intParam\")).isEqualTo(QueryParameterValue.int64(1234567890L));\n    assertThat(Boolean.parseBoolean(params.get(\"boolPropT\").getValue().toString())).isTrue();\n    assertThat(Boolean.parseBoolean(params.get(\"boolPropF\").getValue().toString())).isFalse();\n    assertThat(Boolean.parseBoolean(params.get(\"boolPropCase\").getValue().toString())).isTrue();\n    assertThat(params.get(\"floatParam\")).isEqualTo(QueryParameterValue.float64(123.456));\n    assertThat(params.get(\"numericParam\"))\n        .isEqualTo(QueryParameterValue.numeric(new BigDecimal(\"987654321.123456789\")));\n    assertThat(params.get(\"bignumericParam\"))\n        .isEqualTo(\n            QueryParameterValue.bigNumeric(\n                new BigDecimal(\"123456789012345678901234567890.123456789123456789\")));\n    assertThat(params.get(\"dateParam\")).isEqualTo(QueryParameterValue.date(\"2023-10-27\"));\n    assertThat(params.get(\"jsonParam\"))\n        .isEqualTo(QueryParameterValue.json(\"{\\\"key\\\": \\\"value\\\", \\\"arr\\\": [1, 2]}\"));\n    assertThat(params.get(\"geoParam\")).isEqualTo(QueryParameterValue.geography(\"POINT(1 2)\"));\n    assertThat(params.get(\"caseinsensitiveprefix\"))\n        .isEqualTo(QueryParameterValue.string(\"prefix works\"));\n    assertThat(result.getPositionalParameters()).isEmpty();\n  }\n\n  @Test\n  public void testParseNamedParameters_EmptyStringValue() {\n    Map<String, String> options = Collections.singletonMap(\"NamedParameters.emptyStr\", \"STRING:\");\n    QueryParameterHelper result = BigQueryUtil.parseQueryParameters(options);\n\n    assertThat(result.getMode()).isEqualTo(ParameterMode.NAMED);\n    assertThat(result.getNamedParameters()).isPresent();\n    Map<String, QueryParameterValue> params = result.getNamedParameters().get();\n    assertThat(params).hasSize(1);\n    assertThat(params.get(\"emptyStr\")).isEqualTo(QueryParameterValue.string(\"\"));\n  }\n\n  @Test\n  public void testParseNamedParameters_SpacesInValue() {\n    Map<String, String> options = new HashMap<>();\n    options.put(\"NamedParameters.withSpaces\", \"STRING:  leading and trailing spaces  \");\n    options.put(\"NamedParameters.numWithSpaces\", \"INT64:  123  \"); // Parser trims value\n\n    QueryParameterHelper result = BigQueryUtil.parseQueryParameters(options);\n    assertThat(result.getMode()).isEqualTo(ParameterMode.NAMED);\n    assertThat(result.getNamedParameters()).isPresent();\n    Map<String, QueryParameterValue> params = result.getNamedParameters().get();\n    assertThat(params).hasSize(2);\n    assertThat(params.get(\"withSpaces\"))\n        .isEqualTo(QueryParameterValue.string(\"leading and trailing spaces\"));\n    assertThat(params.get(\"numWithSpaces\")).isEqualTo(QueryParameterValue.int64(123L));\n  }\n\n  @Test\n  public void testParseNamedParameters_DuplicateKeysDifferentCase() {\n    Map<String, String> options = new HashMap<>();\n    options.put(\"NamedParameters.myValue\", \"STRING:first\");\n    options.put(\"NamedParameters.myvalue\", \"STRING:second\"); // Different key\n\n    QueryParameterHelper result = BigQueryUtil.parseQueryParameters(options);\n    assertThat(result.getMode()).isEqualTo(ParameterMode.NAMED);\n    assertThat(result.getNamedParameters()).isPresent();\n    Map<String, QueryParameterValue> params = result.getNamedParameters().get();\n\n    // Both keys exist as they are different strings\n    assertThat(params).hasSize(2);\n    assertThat(params.get(\"myValue\")).isEqualTo(QueryParameterValue.string(\"first\"));\n    assertThat(params.get(\"myvalue\")).isEqualTo(QueryParameterValue.string(\"second\"));\n  }\n\n  @Test\n  public void testParseNamedParameters_IdenticalKeys() {\n    Map<String, String> options = new HashMap<>();\n    options.put(\"NamedParameters.myValue\", \"STRING:first\");\n    options.put(\"NamedParameters.myValue\", \"STRING:second\");\n\n    QueryParameterHelper result = BigQueryUtil.parseQueryParameters(options);\n    assertThat(result.getMode()).isEqualTo(ParameterMode.NAMED);\n    Map<String, QueryParameterValue> params = result.getNamedParameters().get();\n    assertThat(params).hasSize(1);\n    assertThat(params.get(\"myValue\")).isEqualTo(QueryParameterValue.string(\"second\"));\n  }\n\n  @Test\n  public void testParsePositionalParameters_Success() {\n    Map<String, String> options = new HashMap<>();\n    options.put(\"PositionalParameters.1\", \"STRING:value1\");\n    options.put(\"PositionalParameters.3\", \"BOOL:false\"); // Intentionally out of order for input map\n    options.put(\"positionalparameters.2\", \"INT64:99\"); // Test prefix case insensitivity\n\n    QueryParameterHelper result = BigQueryUtil.parseQueryParameters(options);\n\n    assertThat(result.getMode()).isEqualTo(ParameterMode.POSITIONAL);\n    assertThat(result.isEmpty()).isFalse();\n\n    assertThat(result.getPositionalParameters()).isPresent();\n    List<QueryParameterValue> params = result.getPositionalParameters().get();\n    assertThat(params).hasSize(3); // Parser ensures correct size based on max index\n\n    assertThat(params.get(0)).isEqualTo(QueryParameterValue.string(\"value1\")); // Index 0 = Param 1\n    assertThat(params.get(1)).isEqualTo(QueryParameterValue.int64(99L)); // Index 1 = Param 2\n    assertThat(params.get(2)).isEqualTo(QueryParameterValue.bool(false)); // Index 2 = Param 3\n\n    assertThat(result.getNamedParameters()).isEmpty();\n  }\n\n  @Test\n  public void testParsePositionalParameters_SingleParameter() {\n    Map<String, String> options = Collections.singletonMap(\"PositionalParameters.1\", \"FLOAT64:1.0\");\n\n    QueryParameterHelper result = BigQueryUtil.parseQueryParameters(options);\n\n    assertThat(result.getMode()).isEqualTo(ParameterMode.POSITIONAL);\n    assertThat(result.getPositionalParameters()).isPresent();\n    List<QueryParameterValue> params = result.getPositionalParameters().get();\n    assertThat(params).hasSize(1);\n    assertThat(params.get(0)).isEqualTo(QueryParameterValue.float64(1.0));\n  }\n\n  @Test\n  public void testParseParameters_NoParameterOptions() {\n    Map<String, String> options = new HashMap<>();\n    options.put(\"query\", \"SELECT * FROM table\");\n    options.put(\"table\", \"my_table\"); // A non-parameter option\n\n    QueryParameterHelper result = BigQueryUtil.parseQueryParameters(options);\n\n    assertThat(result.getMode()).isEqualTo(ParameterMode.NONE);\n    assertThat(result.isEmpty()).isTrue();\n\n    assertThat(result.getNamedParameters()).isEmpty();\n    assertThat(result.getPositionalParameters()).isEmpty();\n  }\n\n  @Test\n  public void testParseParameters_EmptyOptionsMap() {\n    Map<String, String> options = Collections.emptyMap();\n\n    QueryParameterHelper result = BigQueryUtil.parseQueryParameters(options);\n\n    assertThat(result.getMode()).isEqualTo(ParameterMode.NONE);\n    assertThat(result.isEmpty()).isTrue();\n    assertThat(result.getNamedParameters()).isEmpty();\n    assertThat(result.getPositionalParameters()).isEmpty();\n  }\n\n  @Test\n  public void testParseParameters_ErrorMixedNamedAndPositional() {\n    Map<String, String> options = new HashMap<>();\n    options.put(\"NamedParameters.name\", \"STRING:test\");\n    options.put(\"PositionalParameters.1\", \"INT64:100\");\n\n    IllegalArgumentException e =\n        assertThrows(\n            IllegalArgumentException.class, () -> BigQueryUtil.parseQueryParameters(options));\n\n    assertThat(e.getMessage()).contains(\"Cannot mix NamedParameters.* and PositionalParameters.*\");\n  }\n\n  @Test\n  public void testParseParameters_ErrorMixedPositionalAndNamed() {\n    Map<String, String> options = new HashMap<>();\n    options.put(\"PositionalParameters.1\", \"INT64:100\");\n    options.put(\"NamedParameters.name\", \"STRING:test\"); // Add named after positional\n\n    IllegalArgumentException e =\n        assertThrows(\n            IllegalArgumentException.class, () -> BigQueryUtil.parseQueryParameters(options));\n\n    assertThat(e.getMessage()).contains(\"Cannot mix NamedParameters.* and PositionalParameters.*\");\n  }\n\n  @Test\n  public void testParseParameters_ErrorNullValueString() {\n    final Map<String, String> options = new HashMap<>();\n    options.put(\"NamedParameters.nullValue\", null); // Put null value allowed by HashMap\n\n    NullPointerException e =\n        assertThrows(NullPointerException.class, () -> BigQueryUtil.parseQueryParameters(options));\n\n    assertThat(e)\n        .hasMessageThat()\n        .contains(\"Parameter value string cannot be null for identifier: nullValue\");\n  }\n\n  @Test\n  public void testParseParameters_ErrorInvalidFormatNoColon() {\n    Map<String, String> options = Collections.singletonMap(\"NamedParameters.bad\", \"STRING value\");\n    IllegalArgumentException e =\n        assertThrows(\n            IllegalArgumentException.class, () -> BigQueryUtil.parseQueryParameters(options));\n    assertThat(e.getMessage())\n        .contains(\n            \"Invalid parameter value format for identifier 'bad': 'STRING value'. Expected 'TYPE:value'\");\n  }\n\n  @Test\n  public void testParseParameters_ErrorInvalidFormatEmptyType() {\n    Map<String, String> options = Collections.singletonMap(\"NamedParameters.bad\", \":value\");\n    IllegalArgumentException e =\n        assertThrows(\n            IllegalArgumentException.class, () -> BigQueryUtil.parseQueryParameters(options));\n    assertThat(e.getMessage())\n        .contains(\n            \"Invalid parameter value format for identifier 'bad': ':value'. Expected 'TYPE:value'\");\n  }\n\n  @Test\n  public void testParseParameters_ErrorUnknownType() {\n    Map<String, String> options =\n        Collections.singletonMap(\n            \"NamedParameters.bad\", \"INTEGER:123\"); // INTEGER is not StandardSQLTypeName\n    IllegalArgumentException e =\n        assertThrows(\n            IllegalArgumentException.class, () -> BigQueryUtil.parseQueryParameters(options));\n    assertThat(e.getMessage())\n        .contains(\"Unknown query parameter type: 'INTEGER' for identifier: 'bad'\");\n  }\n\n  @Test\n  public void testParseParameters_ErrorUnsupportedTypeArray() {\n    Map<String, String> options = Collections.singletonMap(\"NamedParameters.arr\", \"ARRAY:[1, 2]\");\n    IllegalArgumentException e =\n        assertThrows(\n            IllegalArgumentException.class, () -> BigQueryUtil.parseQueryParameters(options));\n    assertThat(e.getMessage())\n        .contains(\"Unsupported query parameter type: ARRAY for identifier: 'arr'\");\n  }\n\n  @Test\n  public void testParseParameters_ErrorUnsupportedTypeStruct() {\n    Map<String, String> options =\n        Collections.singletonMap(\n            \"NamedParameters.st\", \"STRUCT: STRUCT<a INT64>(1)\"); // Format doesn't matter here\n    IllegalArgumentException e =\n        assertThrows(\n            IllegalArgumentException.class, () -> BigQueryUtil.parseQueryParameters(options));\n    assertThat(e.getMessage())\n        .contains(\"Unsupported query parameter type: STRUCT for identifier: 'st'\");\n  }\n\n  // --- Error Cases: Invalid Names/Indices ---\n\n  @Test\n  public void testParseNamedParameters_ErrorEmptyName() {\n    Map<String, String> options = Collections.singletonMap(\"NamedParameters.\", \"STRING:test\");\n    IllegalArgumentException e =\n        assertThrows(\n            IllegalArgumentException.class, () -> BigQueryUtil.parseQueryParameters(options));\n    assertThat(e.getMessage())\n        .contains(\"Named parameter name cannot be empty. Option key: 'NamedParameters.'\");\n  }\n\n  @Test\n  public void testParsePositionalParameters_ErrorEmptyIndex() {\n    Map<String, String> options = Collections.singletonMap(\"PositionalParameters.\", \"STRING:test\");\n    IllegalArgumentException e =\n        assertThrows(\n            IllegalArgumentException.class, () -> BigQueryUtil.parseQueryParameters(options));\n    assertThat(e.getMessage())\n        .contains(\n            \"Positional parameter index cannot be empty. Option key: 'PositionalParameters.'\");\n  }\n\n  @Test\n  public void testParsePositionalParameters_ErrorNonNumericIndex() {\n    Map<String, String> options =\n        Collections.singletonMap(\"PositionalParameters.abc\", \"STRING:test\");\n    IllegalArgumentException e =\n        assertThrows(\n            IllegalArgumentException.class, () -> BigQueryUtil.parseQueryParameters(options));\n    assertThat(e.getMessage())\n        .contains(\n            \"Invalid positional parameter index: 'abc' must be an integer. Option key: 'PositionalParameters.abc'\");\n  }\n\n  @Test\n  public void testParsePositionalParameters_ErrorZeroIndex() {\n    int index = 0;\n    Map<String, String> options =\n        Collections.singletonMap(\"PositionalParameters.\" + index, \"STRING:test\");\n\n    IllegalArgumentException e =\n        assertThrows(\n            IllegalArgumentException.class, () -> BigQueryUtil.parseQueryParameters(options));\n\n    assertThat(e.getMessage())\n        .contains(\"Invalid positional parameter index: \" + index + \". Indices must be 1-based.\");\n  }\n\n  @Test\n  public void testParsePositionalParameters_ErrorNegativeIndexMinusOne() {\n    int index = -1;\n    Map<String, String> options =\n        Collections.singletonMap(\"PositionalParameters.\" + index, \"STRING:test\");\n\n    IllegalArgumentException e =\n        assertThrows(\n            IllegalArgumentException.class, () -> BigQueryUtil.parseQueryParameters(options));\n\n    assertThat(e.getMessage())\n        .contains(\"Invalid positional parameter index: \" + index + \". Indices must be 1-based.\");\n  }\n\n  // Removed redundant negative index test (-10) as -1 covers the logic sufficiently\n\n  @Test\n  public void testParsePositionalParameters_ErrorIndexGap() {\n    final Map<String, String> options = new HashMap<>();\n    options.put(\"PositionalParameters.1\", \"STRING:first\");\n    options.put(\"PositionalParameters.3\", \"INT64:100\"); // Missing index 2\n\n    NullPointerException e =\n        assertThrows(\n            NullPointerException.class, // CHANGED Expected Exception Type\n            () -> BigQueryUtil.parseQueryParameters(options));\n\n    assertThat(e.getMessage())\n        .contains(\n            \"Missing positional parameter for index: 2. Parameters must be contiguous starting from 1.\");\n  }\n\n  @Test\n  public void testParsePositionalParameters_ErrorOnlyGap() {\n    final Map<String, String> options = new HashMap<>();\n    options.put(\"PositionalParameters.2\", \"STRING:only two\"); // Missing index 1\n\n    // Missing index 1 check throws NullPointerException\n    NullPointerException e =\n        assertThrows(\n            NullPointerException.class, // CHANGED Expected Exception Type\n            () -> BigQueryUtil.parseQueryParameters(options));\n\n    assertThat(e.getMessage())\n        .contains(\n            \"Missing positional parameter for index: 1. Parameters must be contiguous starting from 1.\");\n  }\n\n  @Test\n  public void formatTableResult_whenSchemaIsNull_returnsEmptyArray() {\n    // Arrange: Mock a TableResult that returns a null schema\n    TableResult mockResult = mock(TableResult.class);\n    when(mockResult.getSchema()).thenReturn(null);\n\n    // Act\n    String[] actual = BigQueryUtil.formatTableResult(mockResult, /* withHeader */ false);\n\n    // Assert: The result should be an empty array\n    assertThat(actual).isEmpty();\n  }\n\n  @Test\n  public void formatTableResult_whenNoRows_returnsHeaderOnly() {\n    // Arrange: Mock a schema with fields but no data rows\n    TableResult mockResult = mock(TableResult.class);\n    // Create a real Schema instance instead of mocking it\n    Schema realSchema =\n        Schema.of(\n            Field.of(\"id\", LegacySQLTypeName.INTEGER), Field.of(\"name\", LegacySQLTypeName.STRING));\n\n    when(mockResult.getSchema()).thenReturn(realSchema);\n    when(mockResult.iterateAll()).thenReturn(Collections.emptyList());\n\n    // Act\n    String[] actual = BigQueryUtil.formatTableResult(mockResult, /* withHeader */ true);\n\n    // Assert: The result should contain only the tab-separated header\n    String[] expected = {\"id\\tname\"};\n    assertThat(actual).isEqualTo(expected);\n  }\n\n  @Test\n  public void formatTableResult_whenSchemaIsEmpty_returnsEmptyHeader() {\n    // Arrange: Mock a schema with an empty field list\n    TableResult mockResult = mock(TableResult.class);\n    // Create a real Schema instance with no fields\n    Schema realSchema = Schema.of();\n\n    when(mockResult.getSchema()).thenReturn(realSchema);\n    when(mockResult.iterateAll()).thenReturn(Collections.emptyList());\n\n    // Act\n    String[] actual = BigQueryUtil.formatTableResult(mockResult, /* withHeader */ true);\n\n    // Assert: The result should be an array with a single empty string for the header\n    String[] expected = {\"\"};\n    assertThat(actual).isEqualTo(expected);\n  }\n\n  @Test\n  public void formatTableResult_whenHasRowsWithDataAndNulls_returnsFormattedTable() {\n    // Arrange: Set up a full table result with multiple rows, data, and nulls.\n    TableResult mockResult = mock(TableResult.class);\n\n    // 1. Define the schema's fields and create a real Schema instance\n    Field idField = Field.of(\"id\", LegacySQLTypeName.INTEGER);\n    Field nameField = Field.of(\"name\", LegacySQLTypeName.STRING);\n    Field scoreField = Field.of(\"score\", LegacySQLTypeName.FLOAT);\n    Schema realSchema = Schema.of(idField, nameField, scoreField);\n    // Get FieldList from the real schema, which is needed to construct FieldValueList\n    FieldList fieldList = realSchema.getFields();\n\n    // 2. Create data rows\n    // Row 1: All values present\n    FieldValueList row1 =\n        FieldValueList.of(\n            Arrays.asList(\n                FieldValue.of(FieldValue.Attribute.PRIMITIVE, \"1\"),\n                FieldValue.of(FieldValue.Attribute.PRIMITIVE, \"Alice\"),\n                FieldValue.of(FieldValue.Attribute.PRIMITIVE, \"95.5\")),\n            fieldList);\n\n    // Row 2: Contains a null value for the 'name' field\n    FieldValueList row2 =\n        FieldValueList.of(\n            Arrays.asList(\n                FieldValue.of(FieldValue.Attribute.PRIMITIVE, \"2\"),\n                FieldValue.of(\n                    FieldValue.Attribute.PRIMITIVE, null), // This will be formatted as \"NULL\"\n                FieldValue.of(FieldValue.Attribute.PRIMITIVE, \"88.0\")),\n            fieldList);\n\n    // Row 3: All values present\n    FieldValueList row3 =\n        FieldValueList.of(\n            Arrays.asList(\n                FieldValue.of(FieldValue.Attribute.PRIMITIVE, \"3\"),\n                FieldValue.of(FieldValue.Attribute.PRIMITIVE, \"Bob\"),\n                FieldValue.of(FieldValue.Attribute.PRIMITIVE, \"72.25\")),\n            fieldList);\n\n    List<FieldValueList> rows = Arrays.asList(row1, row2, row3);\n\n    // 3. Configure the mocks\n    when(mockResult.getSchema()).thenReturn(realSchema);\n    when(mockResult.iterateAll()).thenReturn(rows);\n\n    // Act\n    String[] actual = BigQueryUtil.formatTableResult(mockResult, /* withHeader */ false);\n\n    // Assert: The output should be a correctly formatted string array\n    String[] expected = {\n      \"1\\tAlice\\t95.5\", // Row 1\n      \"2\\tNULL\\t88.0\", // Row 2 with NULL\n      \"3\\tBob\\t72.25\" // Row 3\n    };\n\n    assertThat(actual).isEqualTo(expected);\n  }\n\n  @Test\n  public void testGetQueryForTimePartitionedTable() {\n    Schema schema =\n        Schema.of(\n            Field.newBuilder(\"id\", StandardSQLTypeName.INT64).build(),\n            Field.newBuilder(\"source\", StandardSQLTypeName.STRING).build());\n    StandardTableDefinition destinationDefinition =\n        StandardTableDefinition.newBuilder().setSchema(schema).build();\n    TimePartitioning timePartitioning =\n        TimePartitioning.newBuilder(TimePartitioning.Type.DAY).setField(\"id\").build();\n\n    String query =\n        BigQueryUtil.getQueryForTimePartitionedTable(\n            \"dest_table\", \"temp_table\", destinationDefinition, timePartitioning);\n\n    Matcher targetMatcher =\n        Pattern.compile(\"MERGE `dest_table` AS `(__target_[a-f0-9]{32})`\").matcher(query);\n    assertThat(targetMatcher.find()).isTrue();\n    String targetAlias = targetMatcher.group(1);\n\n    Matcher sourceMatcher =\n        Pattern.compile(\"USING `temp_table` AS `(__source_[a-f0-9]{32})`\").matcher(query);\n    assertThat(sourceMatcher.find()).isTrue();\n    String sourceAlias = sourceMatcher.group(1);\n\n    assertThat(query)\n        .contains(\n            String.format(\n                \"timestamp_trunc(`%s`.`id`, DAY) IN UNNEST(partitions_to_delete)\", targetAlias));\n\n    assertThat(query)\n        .contains(\n            String.format(\n                \"INSERT(`id`,`source`) VALUES(`%s`.`id`,`%s`.`source`)\", sourceAlias, sourceAlias));\n  }\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/test/java/com/google/cloud/bigquery/connector/common/DurationTimerTest.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.bigquery.connector.common;\n\nimport static com.google.common.truth.Truth.assertThat;\n\nimport java.time.Duration;\nimport java.util.concurrent.TimeUnit;\nimport org.junit.Test;\n\npublic class DurationTimerTest {\n  @Test\n  public void testStartStopPairedCall() throws Exception {\n    DurationTimer timer = new DurationTimer();\n    assertThat(timer.getSamples()).isEqualTo(0);\n\n    timer.start();\n    TimeUnit.MILLISECONDS.sleep(2);\n    timer.finish();\n    assertThat(timer.getSamples()).isEqualTo(1);\n    Duration accumulated = timer.getAccumulatedTime();\n    assertThat(accumulated).isAtLeast(Duration.ofMillis(1));\n\n    timer.start();\n    TimeUnit.MILLISECONDS.sleep(2);\n    timer.finish();\n    assertThat(timer.getSamples()).isEqualTo(2);\n    assertThat(timer.getAccumulatedTime()).isAtLeast(Duration.ofMillis(1).plus(accumulated));\n  }\n\n  @Test\n  public void testFinishedByItselfCall() throws Exception {\n    DurationTimer timer = new DurationTimer();\n    assertThat(timer.getSamples()).isEqualTo(0);\n    timer.finish();\n    assertThat(timer.getSamples()).isEqualTo(0);\n\n    TimeUnit.MILLISECONDS.sleep(2);\n    timer.finish();\n    assertThat(timer.getSamples()).isEqualTo(1);\n    Duration accumulated = timer.getAccumulatedTime();\n    assertThat(accumulated).isAtLeast(Duration.ofMillis(1));\n\n    TimeUnit.MILLISECONDS.sleep(2);\n    timer.finish();\n    assertThat(timer.getSamples()).isEqualTo(2);\n    assertThat(timer.getAccumulatedTime()).isAtLeast(Duration.ofMillis(1).plus(accumulated));\n  }\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/test/java/com/google/cloud/bigquery/connector/common/HttpUtilTest.java",
    "content": "/*\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.bigquery.connector.common;\n\nimport static com.google.common.truth.Truth.assertThat;\nimport static org.mockito.Mockito.mock;\nimport static org.mockito.Mockito.when;\n\nimport com.google.api.gax.rpc.HeaderProvider;\nimport java.util.Map;\nimport org.junit.Test;\n\npublic class HttpUtilTest {\n\n  @Test\n  public void testCreateHeaderProviderWithParentProject() {\n    BigQueryConfig config = mock(BigQueryConfig.class);\n    when(config.useParentProjectForMetadataOperations()).thenReturn(true);\n    when(config.getParentProjectId()).thenReturn(\"User-Project\");\n\n    HeaderProvider headerProvider = HttpUtil.createHeaderProvider(config, \"UA\");\n    Map<String, String> headers = headerProvider.getHeaders();\n    assertThat(headers).hasSize(2);\n    assertThat(headers.get(\"X-Goog-User-Project\")).isEqualTo(\"User-Project\");\n    assertThat(headers.get(\"user-agent\")).isEqualTo(\"UA\");\n  }\n\n  @Test\n  public void testCreateHeaderProviderNoParentProject() {\n    BigQueryConfig config = mock(BigQueryConfig.class);\n    when(config.useParentProjectForMetadataOperations()).thenReturn(false);\n\n    HeaderProvider headerProvider = HttpUtil.createHeaderProvider(config, \"UA\");\n    Map<String, String> headers = headerProvider.getHeaders();\n    assertThat(headers).hasSize(1);\n    assertThat(headers.get(\"user-agent\")).isEqualTo(\"UA\");\n  }\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/test/java/com/google/cloud/bigquery/connector/common/IteratorMultiplexerTest.java",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.bigquery.connector.common;\n\nimport static com.google.common.truth.Truth.assertThat;\n\nimport com.google.common.collect.ImmutableList;\nimport java.util.ArrayList;\nimport java.util.Iterator;\nimport java.util.List;\nimport java.util.concurrent.CountDownLatch;\nimport java.util.concurrent.ExecutorService;\nimport java.util.concurrent.Executors;\nimport java.util.concurrent.TimeUnit;\nimport org.junit.Test;\n\npublic class IteratorMultiplexerTest {\n\n  @Test\n  public void testIteratorRoundRobins() throws InterruptedException {\n    ImmutableList<Integer> values = ImmutableList.of(0, 1, 2, 3, 4, 5, 6, 7, 8, 9);\n\n    try (IteratorMultiplexer multiplexer =\n        new IteratorMultiplexer<>(values.iterator(), /*multiplexedIterators=*/ 3)) {\n      ImmutableList<Iterator<Integer>> iterators =\n          ImmutableList.of(\n              multiplexer.getSplit(0), multiplexer.getSplit(1), multiplexer.getSplit(2));\n      ImmutableList<List<Integer>> multiPlexed =\n          ImmutableList.of(new ArrayList<>(), new ArrayList<>(), new ArrayList<>());\n      ExecutorService executorService = Executors.newFixedThreadPool(3);\n      for (int x = 0; x < 3; x++) {\n        final int idx = x;\n        executorService.submit(\n            () -> {\n              Iterator<Integer> iterator = iterators.get(idx);\n              while (iterator.hasNext()) {\n                multiPlexed.get(idx).add(iterator.next());\n              }\n            });\n      }\n      executorService.shutdown();\n      assertThat(executorService.awaitTermination(200, TimeUnit.MILLISECONDS)).isTrue();\n      assertThat(multiPlexed.get(0)).containsExactly(0, 3, 6, 9).inOrder();\n      assertThat(multiPlexed.get(1)).containsExactly(1, 4, 7).inOrder();\n      assertThat(multiPlexed.get(2)).containsExactly(2, 5, 8).inOrder();\n    }\n  }\n\n  @Test\n  public void testIteratorRoundRobinsOneValue() throws InterruptedException {\n    ImmutableList<Integer> values = ImmutableList.of(0);\n\n    try (IteratorMultiplexer multiplexer =\n        new IteratorMultiplexer<>(values.iterator(), /*multiplexedIterators=*/ 3)) {\n      ImmutableList<Iterator<Integer>> iterators =\n          ImmutableList.of(\n              multiplexer.getSplit(0), multiplexer.getSplit(1), multiplexer.getSplit(2));\n      ImmutableList<List<Integer>> multiPlexed =\n          ImmutableList.of(new ArrayList<>(), new ArrayList<>(), new ArrayList<>());\n      ExecutorService executorService = Executors.newFixedThreadPool(3);\n      for (int x = 0; x < 3; x++) {\n        final int idx = x;\n        executorService.submit(\n            () -> {\n              Iterator<Integer> iterator = iterators.get(idx);\n              while (iterator.hasNext()) {\n                multiPlexed.get(idx).add(iterator.next());\n              }\n            });\n      }\n      executorService.shutdown();\n      assertThat(executorService.awaitTermination(200, TimeUnit.MILLISECONDS)).isTrue();\n      assertThat(multiPlexed.get(0)).containsExactly(0).inOrder();\n      assertThat(multiPlexed.get(1)).containsExactly().inOrder();\n      assertThat(multiPlexed.get(2)).containsExactly().inOrder();\n    }\n  }\n\n  @Test\n  public void testIteratorClosedGracefullyWhenSubIteratorsAreInterrupted()\n      throws InterruptedException {\n    Iterator<Integer> infiniteIterator =\n        new Iterator<Integer>() {\n          @Override\n          public boolean hasNext() {\n            return true;\n          }\n\n          @Override\n          public Integer next() {\n            return 0;\n          }\n        };\n    try (IteratorMultiplexer multiplexer =\n        new IteratorMultiplexer(infiniteIterator, /*multiplexedIterators=*/ 3)) {\n      ImmutableList<Iterator<Integer>> iterators =\n          ImmutableList.of(\n              multiplexer.getSplit(0), multiplexer.getSplit(1), multiplexer.getSplit(2));\n      ExecutorService executorService = Executors.newFixedThreadPool(3);\n      for (int x = 0; x < 3; x++) {\n        final int idx = x;\n        executorService.submit(\n            () -> {\n              Iterator<Integer> iterator = iterators.get(idx);\n              while (iterator.hasNext()) {\n                iterator.next();\n              }\n            });\n      }\n      executorService.shutdownNow();\n      assertThat(executorService.awaitTermination(100, TimeUnit.MILLISECONDS)).isTrue();\n      assertThat(executorService.isTerminated());\n      multiplexer.close();\n    }\n  }\n\n  @Test\n  public void testIteratorClosedGracefullyWhenMultiplexerClosed() throws InterruptedException {\n    Iterator<Integer> infiniteIterator =\n        new Iterator<Integer>() {\n          @Override\n          public boolean hasNext() {\n            try {\n              TimeUnit.MINUTES.sleep(1);\n              return true;\n            } catch (InterruptedException e) {\n              throw new RuntimeException(e);\n            }\n          }\n\n          @Override\n          public Integer next() {\n            return 0;\n          }\n        };\n    CountDownLatch exited = new CountDownLatch(3);\n    try (IteratorMultiplexer multiplexer =\n        new IteratorMultiplexer(infiniteIterator, /*multiplexedIterators=*/ 3)) {\n      ImmutableList<Iterator<Integer>> iterators =\n          ImmutableList.of(\n              multiplexer.getSplit(0), multiplexer.getSplit(1), multiplexer.getSplit(2));\n      ExecutorService executorService = Executors.newFixedThreadPool(3);\n      for (int x = 0; x < 3; x++) {\n        final int idx = x;\n        executorService.submit(\n            () -> {\n              Iterator<Integer> iterator = iterators.get(idx);\n              try {\n                while (iterator.hasNext()) {\n                  iterator.next();\n                }\n              } finally {\n                exited.countDown();\n              }\n            });\n      }\n      multiplexer.close();\n\n      assertThat(exited.await(3, TimeUnit.SECONDS)).isTrue();\n      executorService.shutdown();\n    }\n  }\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/test/java/com/google/cloud/bigquery/connector/common/LoggingBigQueryStorageReadRowsTracerTest.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.bigquery.connector.common;\n\nimport static com.google.common.truth.Truth.assertThat;\nimport static org.mockito.Mockito.mock;\n\nimport java.time.Instant;\nimport java.util.Optional;\nimport org.junit.Before;\nimport org.junit.Test;\n\npublic class LoggingBigQueryStorageReadRowsTracerTest {\n  LoggingBigQueryStorageReadRowsTracer loggingTracer;\n  BigQueryStorageReadRowsTracer tracer;\n\n  @Before\n  public void setup() {\n    loggingTracer =\n        new LoggingBigQueryStorageReadRowsTracer(\n            \"streamName\", /*powerOfTwoLogging*/ 3, mock(BigQueryMetrics.class), Optional.empty());\n    tracer = loggingTracer;\n  }\n\n  @Test\n  public void testStartAndFinish() {\n    assertThat(loggingTracer.startTime).isNull();\n    tracer.startStream();\n    Instant startTime = loggingTracer.startTime;\n    assertThat(startTime).isGreaterThan(Instant.now().minusMillis(20));\n    assertThat(loggingTracer.endTime).isNull();\n\n    assertThat(loggingTracer.linesLogged).isEqualTo(0);\n    tracer.finished();\n    assertThat(loggingTracer.linesLogged).isEqualTo(1);\n    assertThat(loggingTracer.endTime).isAtLeast(startTime);\n    assertThat(loggingTracer.startTime).isSameInstanceAs(startTime);\n    assertThat(loggingTracer.endTime).isNotSameInstanceAs(startTime);\n  }\n\n  @Test\n  public void testWaitingForSpark() {\n    assertThat(loggingTracer.sparkTime.getSamples()).isEqualTo(0);\n\n    tracer.nextBatchNeeded();\n    assertThat(loggingTracer.sparkTime.getSamples()).isEqualTo(0);\n    // Needs to be called a second time to get the first batch.\n    tracer.nextBatchNeeded();\n    assertThat(loggingTracer.sparkTime.getSamples()).isEqualTo(1);\n  }\n\n  @Test\n  public void testWaitingForService() {\n    assertThat(loggingTracer.serviceTime.getSamples()).isEqualTo(0);\n    tracer.readRowsResponseRequested();\n    assertThat(loggingTracer.serviceTime.getSamples()).isEqualTo(0);\n    tracer.readRowsResponseObtained(10000);\n    assertThat(loggingTracer.serviceTime.getSamples()).isEqualTo(1);\n    assertThat(loggingTracer.bytes).isEqualTo(10000);\n\n    tracer.readRowsResponseRequested();\n    tracer.readRowsResponseObtained(5000);\n    assertThat(loggingTracer.bytes).isEqualTo(15000);\n    assertThat(loggingTracer.serviceTime.getSamples()).isEqualTo(2);\n  }\n\n  @Test\n  public void testParseTime() {\n    assertThat(loggingTracer.parseTime.getSamples()).isEqualTo(0);\n    tracer.rowsParseStarted();\n    assertThat(loggingTracer.parseTime.getSamples()).isEqualTo(0);\n    tracer.rowsParseFinished(500);\n    assertThat(loggingTracer.parseTime.getSamples()).isEqualTo(1);\n    assertThat(loggingTracer.rows).isEqualTo(500);\n\n    tracer.rowsParseStarted();\n    tracer.rowsParseFinished(1000);\n    assertThat(loggingTracer.parseTime.getSamples()).isEqualTo(2);\n    assertThat(loggingTracer.rows).isEqualTo(1500);\n  }\n\n  @Test\n  public void testLogsAppropriatelyFinished() {\n    assertThat(loggingTracer.linesLogged).isEqualTo(0);\n    for (int x = 0; x < 8; x++) {\n      tracer.nextBatchNeeded();\n    }\n    assertThat(loggingTracer.linesLogged).isEqualTo(1);\n    tracer.finished();\n    assertThat(loggingTracer.linesLogged).isEqualTo(2);\n  }\n\n  @Test\n  public void testFinishedNoLogs() {\n    tracer.finished();\n    assertThat(loggingTracer.linesLogged).isEqualTo(1);\n  }\n\n  @Test\n  public void testForkWithPrefix() {\n    loggingTracer =\n        new LoggingBigQueryStorageReadRowsTracer(\"streamName\", /*powerOfTwoLogging*/ 3, null, null);\n    LoggingBigQueryStorageReadRowsTracer newTracer =\n        (LoggingBigQueryStorageReadRowsTracer) tracer.forkWithPrefix(\"newPrefix\");\n    assertThat(newTracer.getStreamName()).isEqualTo(\"id-newPrefix-streamName\");\n  }\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/test/java/com/google/cloud/bigquery/connector/common/MockResponsesBatch.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.bigquery.connector.common;\n\nimport com.google.cloud.bigquery.storage.v1.ReadRowsResponse;\nimport java.util.Iterator;\nimport java.util.LinkedList;\nimport java.util.Queue;\n\nclass MockResponsesBatch implements Iterator<ReadRowsResponse> {\n  private Queue<Object> responses = new LinkedList<>();\n\n  void addResponse(ReadRowsResponse response) {\n    responses.add(response);\n  }\n\n  void addException(RuntimeException exception) {\n    responses.add(exception);\n  }\n\n  @Override\n  public boolean hasNext() {\n    return !responses.isEmpty();\n  }\n\n  @Override\n  public ReadRowsResponse next() {\n    Object next = responses.poll();\n    if (next instanceof ReadRowsResponse) {\n      return (ReadRowsResponse) next;\n    }\n    if (next instanceof RuntimeException) {\n      throw (RuntimeException) next;\n    }\n    return null;\n  }\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/test/java/com/google/cloud/bigquery/connector/common/ParallelArrowReaderTest.java",
    "content": "/*\n * Copyright 2021 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.bigquery.connector.common;\n\nimport static com.google.common.truth.Truth.assertThat;\nimport static java.util.concurrent.TimeUnit.MILLISECONDS;\nimport static org.mockito.Mockito.mock;\nimport static org.mockito.Mockito.when;\n\nimport com.google.common.collect.ImmutableList;\nimport com.google.common.util.concurrent.MoreExecutors;\nimport java.io.ByteArrayInputStream;\nimport java.io.ByteArrayOutputStream;\nimport java.io.IOException;\nimport java.time.Duration;\nimport java.time.Instant;\nimport java.util.Optional;\nimport java.util.concurrent.CountDownLatch;\nimport java.util.concurrent.ExecutorService;\nimport java.util.concurrent.Executors;\nimport java.util.concurrent.Future;\nimport org.apache.arrow.memory.BufferAllocator;\nimport org.apache.arrow.vector.IntVector;\nimport org.apache.arrow.vector.VectorLoader;\nimport org.apache.arrow.vector.VectorSchemaRoot;\nimport org.apache.arrow.vector.ipc.ArrowReader;\nimport org.apache.arrow.vector.ipc.ArrowStreamReader;\nimport org.apache.arrow.vector.ipc.ArrowStreamWriter;\nimport org.junit.After;\nimport org.junit.Assert;\nimport org.junit.Before;\nimport org.junit.Test;\nimport org.mockito.invocation.InvocationOnMock;\n\npublic class ParallelArrowReaderTest {\n\n  BufferAllocator allocator;\n\n  @Before\n  public void initializeAllocator() {\n    allocator = ArrowUtil.newRootAllocator(Integer.MAX_VALUE);\n  }\n\n  @After\n  public void closeAllocator() {\n    allocator.close();\n  }\n\n  ArrowReader getReaderWithSequence(int... values) throws IOException {\n    IntVector vector = new IntVector(\"vector_name\", allocator);\n    try (VectorSchemaRoot root = VectorSchemaRoot.of(vector)) {\n      ByteArrayOutputStream baos = new ByteArrayOutputStream();\n      ArrowStreamWriter writer = new ArrowStreamWriter(root, /*dictionaryProvider=*/ null, baos);\n      for (int x = 0; x < values.length; x++) {\n        vector.allocateNew(1);\n        vector.set(/*index=*/ 0, values[x]);\n        vector.setValueCount(1);\n        root.setRowCount(1);\n        writer.writeBatch();\n      }\n      writer.close();\n      return new ArrowStreamReader(\n          new NonInterruptibleBlockingBytesChannel(new ByteArrayInputStream(baos.toByteArray())),\n          allocator);\n    }\n  }\n\n  //  @Test\n  //  public void testReadsAllBatchesInRoundRobin() throws Exception {\n  //    ArrowReader r1 = getReaderWithSequence(0);\n  //    ArrowReader r2 = getReaderWithSequence(1, 3);\n  //    ArrowReader r3 = getReaderWithSequence(2, 4, 5);\n  //    ExecutorService executor = Executors.newFixedThreadPool(3);\n  //    List<Integer> read = new ArrayList<>();\n  //    try (VectorSchemaRoot root =\n  //        VectorSchemaRoot.create(r1.getVectorSchemaRoot().getSchema(), allocator)) {\n  //      VectorLoader loader = new VectorLoader(root);\n  //      ParallelArrowReader reader =\n  //          new ParallelArrowReader(\n  //              ImmutableList.of(r1, r2, r3),\n  //              executor,\n  //              loader,\n  //              new LoggingBigQueryStorageReadRowsTracer(\"stream_name\", 2));\n  //\n  //      while (reader.next()) {\n  //        read.add(((IntVector) root.getVector(0)).get(0));\n  //      }\n  //      reader.close();\n  //    }\n  //\n  //    assertThat(read).containsExactlyElementsIn(ImmutableList.of(0, 1, 2, 3, 4, 5)).inOrder();\n  //    assertThat(executor.isShutdown()).isTrue();\n  //  }\n\n  //  @Test\n  //  public void testReadsAllBatchesInRoundRobinOneelement() throws Exception {\n  //\n  //    ColumnarBatch[] batches = new ColumnarBatch[6];\n  //    for (int x = 0; x < batches.length; x++) {\n  //      batches[x] = new ColumnarBatch(new ColumnVector[0]);\n  //    }\n  //    ArrowReader r1 = getReaderWithSequence();\n  //    ArrowReader r2 = getReaderWithSequence(0);\n  //    ArrowReader r3 = getReaderWithSequence();\n  //    ExecutorService executor = Executors.newFixedThreadPool(3);\n  //    List<Integer> read = new ArrayList<>();\n  //    try (VectorSchemaRoot root =\n  //        VectorSchemaRoot.create(r1.getVectorSchemaRoot().getSchema(), allocator)) {\n  //      VectorLoader loader = new VectorLoader(root);\n  //      ParallelArrowReader reader =\n  //          new ParallelArrowReader(\n  //              ImmutableList.of(r1, r2, r3),\n  //              executor,\n  //              loader,\n  //              new LoggingBigQueryStorageReadRowsTracer(\"stream_name\", 2));\n  //\n  //      while (reader.next()) {\n  //        read.add(((IntVector) root.getVector(0)).get(0));\n  //      }\n  //      reader.close();\n  //    }\n  //\n  //    assertThat(read).containsExactlyElementsIn(ImmutableList.of(0)).inOrder();\n  //    assertThat(executor.isShutdown()).isTrue();\n  //  }\n\n  @Test\n  public void testExceptionIsPropagatedFromNext() throws Exception {\n\n    IOException exception = new IOException(\"an exception\");\n    ArrowReader r1 = mock(ArrowReader.class);\n\n    when(r1.loadNextBatch()).thenThrow(exception);\n\n    ExecutorService executor = MoreExecutors.newDirectExecutorService();\n    try (VectorSchemaRoot root = new VectorSchemaRoot(ImmutableList.of());\n        VectorSchemaRoot root2 = new VectorSchemaRoot(ImmutableList.of())) {\n      when(r1.getVectorSchemaRoot()).thenReturn(root2);\n      ParallelArrowReader reader =\n          new ParallelArrowReader(\n              ImmutableList.of(r1),\n              executor,\n              new VectorLoader(root),\n              new LoggingBigQueryStorageReadRowsTracer(\"stream_name\", 2, null, null));\n      IOException e = Assert.assertThrows(IOException.class, reader::next);\n      assertThat(e).isSameInstanceAs(exception);\n    }\n  }\n\n  @Test\n  public void testInterruptsOnClose() throws Exception {\n    try (VectorSchemaRoot root = VectorSchemaRoot.of()) {\n      ArrowReader r1 = mock(ArrowReader.class);\n      when(r1.loadNextBatch()).thenReturn(true);\n      when(r1.getVectorSchemaRoot()).thenReturn(root);\n      CountDownLatch latch = new CountDownLatch(1);\n      ArrowReader r2 = mock(ArrowReader.class);\n      when(r2.loadNextBatch())\n          .thenAnswer(\n              (InvocationOnMock invocation) -> {\n                latch.countDown();\n                MILLISECONDS.sleep(100);\n                return true;\n              });\n      when(r2.getVectorSchemaRoot()).thenReturn(root);\n      VectorLoader loader = mock(VectorLoader.class);\n\n      ExecutorService executor = Executors.newSingleThreadExecutor();\n      ParallelArrowReader reader =\n          new ParallelArrowReader(\n              ImmutableList.of(r1, r2),\n              executor,\n              loader,\n              new LoggingBigQueryStorageReadRowsTracer(\n                  \"stream_name\", 2, mock(BigQueryMetrics.class), Optional.empty()));\n\n      ExecutorService oneOff = Executors.newSingleThreadExecutor();\n      Instant start = Instant.now();\n\n      Future<Instant> endTime =\n          oneOff.submit(\n              () -> {\n                try {\n                  while (reader.next()) {}\n                } catch (Exception e) {\n                  if (e.getCause() == null || !(e.getCause() instanceof InterruptedException)) {\n                    return Instant.ofEpochMilli(0);\n                  }\n                }\n                return Instant.now();\n              });\n\n      // Wait until next gets called.\n      latch.await();\n      // Should interrupt blocking operations.\n      oneOff.shutdownNow();\n      reader.close();\n\n      assertThat(endTime.get()).isGreaterThan(start);\n      assertThat(Duration.between(start, endTime.get())).isLessThan(Duration.ofMillis(100));\n    }\n  }\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/test/java/com/google/cloud/bigquery/connector/common/ReadRowsHelperTest.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.bigquery.connector.common;\n\nimport org.junit.Ignore;\n\n@Ignore\npublic class ReadRowsHelperTest {\n\n  // // it is not used, we just need the reference\n  // BigQueryReadClientFactory clientFactory = mock(BigQueryReadClientFactory.class);\n  // private ReadRowsRequest.Builder request = ReadRowsRequest.newBuilder().setReadStream(\"test\");\n  // private ReadSessionCreatorConfig defaultConfig =\n  //     new ReadSessionCreatorConfigBuilder().setMaxReadRowsRetries(1).build();\n  //\n  // private static FakeStorageService fakeService = new FakeStorageService();\n  // private static FakeStorageServer fakeServer;\n  //\n  // ReadRowsHelper helper;\n  //\n  // @BeforeClass\n  // public static void setupServer() throws IOException {\n  //   fakeServer = new FakeStorageServer(fakeService);\n  // }\n  //\n  // @Before\n  // public void resetService() {\n  //   fakeService.reset(ImmutableMap.of());\n  // }\n  //\n  // @After\n  // public void closeHelper() {\n  //   if (helper != null) {\n  //     helper.close();\n  //   }\n  // }\n  //\n  // @AfterClass\n  // public static void teardownServer() throws InterruptedException {\n  //   fakeServer.stop();\n  // }\n  //\n  // @Test\n  // public void testConfigSerializable() throws IOException {\n  //   new ObjectOutputStream(new ByteArrayOutputStream())\n  //       .writeObject(defaultConfig.toReadRowsHelperOptions());\n  // }\n  //\n  // BigQueryReadClient fakeServerClient() throws IOException {\n  //   TransportChannelProvider transportationProvider =\n  //       EnhancedBigQueryReadStubSettings.defaultGrpcTransportProviderBuilder()\n  //           .setChannelConfigurator(\n  //               (ManagedChannelBuilder a) -> {\n  //                 a.usePlaintext();\n  //                 return a;\n  //               })\n  //           .build();\n  //   return BigQueryReadClient.create(\n  //       BigQueryReadSettings.newBuilder()\n  //           .setTransportChannelProvider(transportationProvider)\n  //           .setCredentialsProvider(() -> null)\n  //           .setEndpoint(\"127.0.0.1:\" + fakeServer.port())\n  //           .build());\n  // }\n  //\n  // @Test\n  // public void testNoFailures() throws IOException {\n  //   MockResponsesBatch batch1 = new MockResponsesBatch();\n  //   batch1.addResponse(ReadRowsResponse.newBuilder().setRowCount(10).build());\n  //   batch1.addResponse(ReadRowsResponse.newBuilder().setRowCount(11).build());\n  //   fakeService.reset(ImmutableMap.of(request.getReadStream(), batch1));\n  //\n  //   when(clientFactory.createBigQueryReadClient(any())).thenReturn(fakeServerClient());\n  //\n  //   // so we can run multiple tests\n  //   helper = new ReadRowsHelper(clientFactory, request, defaultConfig.toReadRowsHelperOptions());\n  //   ImmutableList<ReadRowsResponse> responses = ImmutableList.copyOf(helper.readRows());\n  //\n  //   assertThat(responses.size()).isEqualTo(2);\n  //   assertThat(responses.stream().mapToLong(ReadRowsResponse::getRowCount).sum()).isEqualTo(21);\n  // }\n  //\n  // @Test\n  // public void testCancel() throws IOException {\n  //   MockResponsesBatch batch1 = new MockResponsesBatch();\n  //   batch1.addResponse(ReadRowsResponse.newBuilder().setRowCount(10).build());\n  //   batch1.addResponse(ReadRowsResponse.newBuilder().setRowCount(11).build());\n  //   batch1.addResponse(ReadRowsResponse.newBuilder().setRowCount(11).build());\n  //   batch1.addResponse(ReadRowsResponse.newBuilder().setRowCount(11).build());\n  //\n  //   MockResponsesBatch batch2 = new MockResponsesBatch();\n  //   batch2.addResponse(ReadRowsResponse.newBuilder().setRowCount(10).build());\n  //   batch2.addResponse(ReadRowsResponse.newBuilder().setRowCount(11).build());\n  //   batch2.addResponse(ReadRowsResponse.newBuilder().setRowCount(11).build());\n  //   batch2.addResponse(ReadRowsResponse.newBuilder().setRowCount(11).build());\n  //   ReadRowsRequest.Builder request2 = ReadRowsRequest.newBuilder().setReadStream(\"abc\");\n  //\n  //   fakeService.reset(\n  //       ImmutableMap.of(request.getReadStream(), batch1, request2.getReadStream(), batch2));\n  //\n  //   when(clientFactory.createBigQueryReadClient(any())).thenReturn(fakeServerClient());\n  //\n  //   helper =\n  //       new ReadRowsHelper(\n  //           clientFactory,\n  //           ImmutableList.of(request, request2),\n  //           defaultConfig.toReadRowsHelperOptions());\n  //\n  //   Iterator<ReadRowsResponse> responses = helper.readRows();\n  //   // Try to make sure both requests are active.\n  //   responses.next();\n  //   responses.next();\n  //   responses.next();\n  //   helper.close();\n  //   ImmutableList<ReadRowsResponse> remainingResponses = ImmutableList.copyOf(responses);\n  //\n  //   assertThat(remainingResponses.size()).isLessThan(5);\n  // }\n  //\n  // @Test\n  // public void endpointIsPropagated() throws Exception {\n  //   MockResponsesBatch batch1 = new MockResponsesBatch();\n  //   batch1.addResponse(ReadRowsResponse.newBuilder().setRowCount(10).build());\n  //   when(clientFactory.createBigQueryReadClient(any())).thenReturn(fakeServerClient());\n  //   fakeService.reset(ImmutableMap.of(request.getReadStream(), batch1));\n  //   ReadSessionCreatorConfig config =\n  //       new ReadSessionCreatorConfigBuilder().setEndpoint(Optional.of(\"127.0.0.1:\" +\n  // 123)).build();\n  //   helper = new ReadRowsHelper(clientFactory, request, config.toReadRowsHelperOptions());\n  //   assertThat(Iterators.getOnlyElement(helper.readRows()).getRowCount()).isEqualTo(10);\n  //   ArgumentCaptor<Optional<String>> endpointCaptor = ArgumentCaptor.forClass(Optional.class);\n  //   Mockito.verify(clientFactory, times(1)).createBigQueryReadClient(endpointCaptor.capture());\n  // }\n  //\n  // @Test\n  // public void testRetryOfSingleFailure() throws IOException {\n  //   MockResponsesBatch batch1 = new MockResponsesBatch();\n  //   batch1.addResponse(ReadRowsResponse.newBuilder().setRowCount(10).build());\n  //   batch1.addException(\n  //       new StatusRuntimeException(\n  //           Status.INTERNAL.withDescription(\"HTTP/2 error code: INTERNAL_ERROR\")));\n  //   batch1.addResponse(ReadRowsResponse.newBuilder().setRowCount(11).build());\n  //   fakeService.reset(ImmutableMap.of(request.getReadStream(), batch1));\n  //   when(clientFactory.createBigQueryReadClient(any())).thenReturn(fakeServerClient());\n  //\n  //   helper = new ReadRowsHelper(clientFactory, request, defaultConfig.toReadRowsHelperOptions());\n  //   ImmutableList<ReadRowsResponse> responses = ImmutableList.copyOf(helper.readRows());\n  //\n  //   assertThat(responses.size()).isEqualTo(2);\n  //   assertThat(responses.stream().mapToLong(ReadRowsResponse::getRowCount).sum()).isEqualTo(21);\n  //\n  //   List<ReadRowsRequest> requests =\n  // fakeService.requestsByStreamName.get(request.getReadStream());\n  //   assertThat(requests)\n  //       .containsExactly(request.setOffset(0).build(), request.setOffset(10).build())\n  //       .inOrder();\n  // }\n  //\n  // @Test\n  // public void testCombinesStreamsTogether() throws IOException {\n  //   MockResponsesBatch batch1 = new MockResponsesBatch();\n  //   batch1.addResponse(ReadRowsResponse.newBuilder().setRowCount(10).build());\n  //   batch1.addException(\n  //       new StatusRuntimeException(\n  //           Status.INTERNAL.withDescription(\"HTTP/2 error code: INTERNAL_ERROR\")));\n  //   batch1.addResponse(ReadRowsResponse.newBuilder().setRowCount(11).build());\n  //   ReadRowsRequest.Builder request1 = ReadRowsRequest.newBuilder().setReadStream(\"r1\");\n  //\n  //   MockResponsesBatch batch2 = new MockResponsesBatch();\n  //   batch2.addResponse(ReadRowsResponse.newBuilder().setRowCount(30).build());\n  //   batch2.addException(\n  //       new StatusRuntimeException(\n  //           Status.INTERNAL.withDescription(\"HTTP/2 error code: INTERNAL_ERROR\")));\n  //   batch2.addResponse(ReadRowsResponse.newBuilder().setRowCount(45).build());\n  //   ReadRowsRequest.Builder request2 = ReadRowsRequest.newBuilder().setReadStream(\"r2\");\n  //   fakeService.reset(\n  //       ImmutableMap.of(\n  //           request1.getReadStream(), batch1,\n  //           request2.getReadStream(), batch2));\n  //   when(clientFactory.createBigQueryReadClient(any())).thenReturn(fakeServerClient());\n  //\n  //   helper =\n  //       new ReadRowsHelper(\n  //           clientFactory,\n  //           ImmutableList.of(request1, request2),\n  //           defaultConfig.toReadRowsHelperOptions());\n  //   ImmutableList<ReadRowsResponse> responses = ImmutableList.copyOf(helper.readRows());\n  //\n  //   assertThat(responses.size()).isEqualTo(4);\n  //   assertThat(responses.stream().mapToLong(ReadRowsResponse::getRowCount).sum()).isEqualTo(96);\n  //\n  //   List<ReadRowsRequest> requests1 =\n  //       fakeService.requestsByStreamName.get(request1.getReadStream());\n  //   assertThat(requests1)\n  //       .containsExactly(request1.setOffset(0).build(), request1.setOffset(10).build())\n  //       .inOrder();\n  //\n  //   List<ReadRowsRequest> requests2 =\n  //       fakeService.requestsByStreamName.get(request2.getReadStream());\n  //   assertThat(requests2)\n  //       .containsExactly(request2.setOffset(0).build(), request2.setOffset(30).build())\n  //       .inOrder();\n  // }\n  //\n  // private static class FakeStorageService extends BigQueryReadImplBase {\n  //   private Map<String, MockResponsesBatch> responsesByStreamName;\n  //   private final ListMultimap<String, ReadRowsRequest> requestsByStreamName =\n  //       Multimaps.synchronizedListMultimap(ArrayListMultimap.create());\n  //\n  //   void reset(Map<String, MockResponsesBatch> responsesByStreamName) {\n  //     this.responsesByStreamName = responsesByStreamName;\n  //     requestsByStreamName.clear();\n  //   }\n  //\n  //   @Override\n  //   public void readRows(\n  //       ReadRowsRequest request, StreamObserver<ReadRowsResponse> responseObserver) {\n  //     String name = request.getReadStream();\n  //     requestsByStreamName.put(name, request);\n  //     MockResponsesBatch responses = responsesByStreamName.get(name);\n  //\n  //     if (responses == null) {\n  //       responseObserver.onError(new RuntimeException(\"No responses for stream: \" + name));\n  //     }\n  //\n  //     while (responses.hasNext()) {\n  //       try {\n  //         ReadRowsResponse next = responses.next();\n  //         if (next == null) {\n  //           responseObserver.onError(new RuntimeException(\"Null element found: \" + name));\n  //           return;\n  //         }\n  //         responseObserver.onNext(next);\n  //       } catch (Exception e) {\n  //         responseObserver.onError(e);\n  //         return;\n  //       }\n  //     }\n  //     responseObserver.onCompleted();\n  //   }\n  // }\n  //\n  // private static class FakeStorageServer {\n  //   private final Server server;\n  //\n  //   FakeStorageServer(FakeStorageService service) throws IOException {\n  //     // Zero should pick a random port.\n  //     ServerBuilder<?> serverBuilder = NettyServerBuilder.forPort(0);\n  //     server = serverBuilder.addService(service).build();\n  //     server.start();\n  //   }\n  //\n  //   int port() {\n  //     return server.getPort();\n  //   }\n  //\n  //   void stop() throws InterruptedException {\n  //     server.shutdownNow();\n  //     server.awaitTermination(10, TimeUnit.SECONDS);\n  //   }\n  // }\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/test/java/com/google/cloud/bigquery/connector/common/ReadSessionCreatorTest.java",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.bigquery.connector.common;\n\nimport static com.google.common.truth.Truth.assertThat;\nimport static org.mockito.ArgumentMatchers.any;\nimport static org.mockito.Mockito.mock;\nimport static org.mockito.Mockito.times;\nimport static org.mockito.Mockito.verify;\nimport static org.mockito.Mockito.when;\n\nimport com.google.api.gax.core.NoCredentialsProvider;\nimport com.google.api.gax.grpc.testing.LocalChannelProvider;\nimport com.google.api.gax.grpc.testing.MockGrpcService;\nimport com.google.api.gax.grpc.testing.MockServiceHelper;\nimport com.google.api.gax.rpc.UnaryCallable;\nimport com.google.cloud.bigquery.Field;\nimport com.google.cloud.bigquery.Schema;\nimport com.google.cloud.bigquery.StandardSQLTypeName;\nimport com.google.cloud.bigquery.StandardTableDefinition;\nimport com.google.cloud.bigquery.TableDefinition;\nimport com.google.cloud.bigquery.TableId;\nimport com.google.cloud.bigquery.TableInfo;\nimport com.google.cloud.bigquery.storage.v1.ArrowSerializationOptions;\nimport com.google.cloud.bigquery.storage.v1.ArrowSerializationOptions.CompressionCodec;\nimport com.google.cloud.bigquery.storage.v1.BigQueryReadClient;\nimport com.google.cloud.bigquery.storage.v1.BigQueryReadSettings;\nimport com.google.cloud.bigquery.storage.v1.CreateReadSessionRequest;\nimport com.google.cloud.bigquery.storage.v1.DataFormat;\nimport com.google.cloud.bigquery.storage.v1.MockBigQueryRead;\nimport com.google.cloud.bigquery.storage.v1.ReadSession;\nimport com.google.cloud.bigquery.storage.v1.ReadSession.TableModifiers;\nimport com.google.cloud.bigquery.storage.v1.ReadSession.TableReadOptions;\nimport com.google.cloud.bigquery.storage.v1.ReadSession.TableReadOptions.ResponseCompressionCodec;\nimport com.google.cloud.bigquery.storage.v1.ReadStream;\nimport com.google.cloud.bigquery.storage.v1.stub.EnhancedBigQueryReadStub;\nimport com.google.common.cache.Cache;\nimport com.google.common.cache.CacheBuilder;\nimport com.google.common.collect.ImmutableList;\nimport com.google.protobuf.Timestamp;\nimport java.io.IOException;\nimport java.io.UncheckedIOException;\nimport java.util.Arrays;\nimport java.util.Optional;\nimport java.util.OptionalInt;\nimport java.util.OptionalLong;\nimport java.util.UUID;\nimport org.apache.commons.lang3.reflect.FieldUtils;\nimport org.junit.After;\nimport org.junit.AfterClass;\nimport org.junit.Before;\nimport org.junit.BeforeClass;\nimport org.junit.Test;\nimport org.mockito.ArgumentCaptor;\nimport org.mockito.Mockito;\n\npublic class ReadSessionCreatorTest {\n  EnhancedBigQueryReadStub stub = mock(EnhancedBigQueryReadStub.class);\n  BigQueryClient bigQueryClient = mock(BigQueryClient.class);\n  UnaryCallable<CreateReadSessionRequest, ReadSession> createReadSessionCall =\n      mock(UnaryCallable.class);\n  BigQueryReadClient readClient = createMockBigQueryReadClient(stub);\n  BigQueryClientFactory bigQueryReadClientFactory = mock(BigQueryClientFactory.class);\n  TableInfo table =\n      TableInfo.newBuilder(\n              TableId.of(\"a\", \"b\"),\n              StandardTableDefinition.newBuilder()\n                  .setSchema(Schema.of(Field.of(\"name\", StandardSQLTypeName.BOOL)))\n                  .setNumBytes(1L)\n                  .build())\n          .build();\n  TableInfo view =\n      TableInfo.newBuilder(\n              TableId.of(\"a\", \"v\"),\n              StandardTableDefinition.newBuilder()\n                  .setType(TableDefinition.Type.VIEW)\n                  .setSchema(Schema.of(Field.of(\"name\", StandardSQLTypeName.BOOL)))\n                  .setNumBytes(1L)\n                  .build())\n          .build();\n\n  private static MockBigQueryRead mockBigQueryRead;\n  private static MockServiceHelper mockServiceHelper;\n  private LocalChannelProvider channelProvider;\n  private BigQueryReadClient client;\n\n  @BeforeClass\n  public static void startStaticServer() {\n    mockBigQueryRead = new MockBigQueryRead();\n    mockServiceHelper =\n        new MockServiceHelper(\n            UUID.randomUUID().toString(), Arrays.<MockGrpcService>asList(mockBigQueryRead));\n    mockServiceHelper.start();\n  }\n\n  @AfterClass\n  public static void stopServer() {\n    mockServiceHelper.stop();\n  }\n\n  @Before\n  public void setUp() throws IOException {\n    mockServiceHelper.reset();\n    channelProvider = mockServiceHelper.createChannelProvider();\n    BigQueryReadSettings settings =\n        BigQueryReadSettings.newBuilder()\n            .setTransportChannelProvider(channelProvider)\n            .setCredentialsProvider(NoCredentialsProvider.create())\n            .build();\n    client = BigQueryReadClient.create(settings);\n  }\n\n  @After\n  public void tearDown() throws Exception {\n    client.close();\n  }\n\n  @Test\n  public void testSerializedInstanceIsPropagated() throws Exception {\n    TableReadOptions tableReadOptions = TableReadOptions.newBuilder().build();\n    ReadSession readSession =\n        ReadSession.newBuilder().setName(\"abc\").setReadOptions(tableReadOptions).build();\n    CreateReadSessionRequest request =\n        CreateReadSessionRequest.newBuilder().setReadSession(readSession).build();\n    Optional<String> encodedBase =\n        Optional.of(java.util.Base64.getEncoder().encodeToString(request.toByteArray()));\n    ReadSessionCreatorConfig config =\n        new ReadSessionCreatorConfigBuilder()\n            .setEnableReadSessionCaching(false)\n            .setRequestEncodedBase(encodedBase)\n            .build();\n    ReadSessionCreator creator =\n        new ReadSessionCreator(config, bigQueryClient, bigQueryReadClientFactory);\n    when(bigQueryReadClientFactory.getBigQueryReadClient()).thenReturn(readClient);\n    when(bigQueryClient.getTable(any())).thenReturn(table);\n    when(stub.createReadSessionCallable()).thenReturn(createReadSessionCall);\n\n    creator\n        .create(TableId.of(\"dataset\", \"table\"), ImmutableList.of(\"col1\", \"col2\"), Optional.empty())\n        .getReadSession();\n\n    ArgumentCaptor<CreateReadSessionRequest> requestCaptor =\n        ArgumentCaptor.forClass(CreateReadSessionRequest.class);\n    verify(createReadSessionCall, times(1)).call(requestCaptor.capture());\n\n    ReadSession actual = requestCaptor.getValue().getReadSession();\n    assertThat(actual.getName()).isEqualTo(\"abc\");\n    assertThat(actual.getReadOptions().getSelectedFieldsList()).containsExactly(\"col1\", \"col2\");\n  }\n\n  @Test\n  public void testDefaultMinMaxStreamCount() throws Exception {\n    // setting up\n    when(bigQueryClient.getTable(any())).thenReturn(table);\n    mockBigQueryRead.reset();\n    mockBigQueryRead.addResponse(\n        ReadSession.newBuilder().addStreams(ReadStream.newBuilder().setName(\"0\")).build());\n    BigQueryClientFactory mockBigQueryClientFactory = mock(BigQueryClientFactory.class);\n    when(mockBigQueryClientFactory.getBigQueryReadClient()).thenReturn(client);\n\n    ReadSessionCreatorConfig config =\n        new ReadSessionCreatorConfigBuilder()\n            .setEnableReadSessionCaching(false)\n            .setDefaultParallelism(10)\n            .build();\n    ReadSessionCreator creator =\n        new ReadSessionCreator(config, bigQueryClient, mockBigQueryClientFactory);\n    ReadSessionResponse readSessionResponse =\n        creator.create(table.getTableId(), ImmutableList.of(), Optional.empty());\n    assertThat(readSessionResponse).isNotNull();\n    assertThat(readSessionResponse.getReadSession().getStreamsCount()).isEqualTo(1);\n    CreateReadSessionRequest createReadSessionRequest =\n        (CreateReadSessionRequest) mockBigQueryRead.getRequests().get(0);\n    assertThat(createReadSessionRequest.getMaxStreamCount()).isEqualTo(20_000);\n    assertThat(createReadSessionRequest.getPreferredMinStreamCount())\n        .isEqualTo(30); // 3 * given default parallelism\n  }\n\n  @Test\n  public void testCustomMinStreamCount() throws Exception {\n    // setting up\n    when(bigQueryClient.getTable(any())).thenReturn(table);\n    mockBigQueryRead.reset();\n    mockBigQueryRead.addResponse(\n        ReadSession.newBuilder().addStreams(ReadStream.newBuilder().setName(\"0\")).build());\n    BigQueryClientFactory mockBigQueryClientFactory = mock(BigQueryClientFactory.class);\n    when(mockBigQueryClientFactory.getBigQueryReadClient()).thenReturn(client);\n\n    ReadSessionCreatorConfig config =\n        new ReadSessionCreatorConfigBuilder()\n            .setEnableReadSessionCaching(false)\n            .setDefaultParallelism(10)\n            .setPreferredMinParallelism(OptionalInt.of(21_000))\n            .build();\n    ReadSessionCreator creator =\n        new ReadSessionCreator(config, bigQueryClient, mockBigQueryClientFactory);\n    ReadSessionResponse readSessionResponse =\n        creator.create(table.getTableId(), ImmutableList.of(), Optional.empty());\n    assertThat(readSessionResponse).isNotNull();\n    assertThat(readSessionResponse.getReadSession().getStreamsCount()).isEqualTo(1);\n    CreateReadSessionRequest createReadSessionRequest =\n        (CreateReadSessionRequest) mockBigQueryRead.getRequests().get(0);\n    assertThat(createReadSessionRequest.getMaxStreamCount()).isEqualTo(21_000);\n    assertThat(createReadSessionRequest.getPreferredMinStreamCount()).isEqualTo(21_000);\n  }\n\n  @Test\n  public void testCustomMaxStreamCount() throws Exception {\n    // setting up\n    when(bigQueryClient.getTable(any())).thenReturn(table);\n    mockBigQueryRead.reset();\n    mockBigQueryRead.addResponse(\n        ReadSession.newBuilder().addStreams(ReadStream.newBuilder().setName(\"0\")).build());\n    BigQueryClientFactory mockBigQueryClientFactory = mock(BigQueryClientFactory.class);\n    when(mockBigQueryClientFactory.getBigQueryReadClient()).thenReturn(client);\n\n    ReadSessionCreatorConfig config =\n        new ReadSessionCreatorConfigBuilder()\n            .setEnableReadSessionCaching(false)\n            .setDefaultParallelism(10)\n            .setMaxParallelism(OptionalInt.of(21_000))\n            .build();\n    ReadSessionCreator creator =\n        new ReadSessionCreator(config, bigQueryClient, mockBigQueryClientFactory);\n    ReadSessionResponse readSessionResponse =\n        creator.create(table.getTableId(), ImmutableList.of(), Optional.empty());\n    assertThat(readSessionResponse).isNotNull();\n    assertThat(readSessionResponse.getReadSession().getStreamsCount()).isEqualTo(1);\n    CreateReadSessionRequest createReadSessionRequest =\n        (CreateReadSessionRequest) mockBigQueryRead.getRequests().get(0);\n    assertThat(createReadSessionRequest.getMaxStreamCount()).isEqualTo(21_000);\n    assertThat(createReadSessionRequest.getPreferredMinStreamCount())\n        .isEqualTo(30); // 3 * given default parallelism\n  }\n\n  @Test\n  public void testMinStreamCountGreaterThanMaxStreamCount() throws Exception {\n    // setting up\n    when(bigQueryClient.getTable(any())).thenReturn(table);\n    mockBigQueryRead.reset();\n    mockBigQueryRead.addResponse(\n        ReadSession.newBuilder().addStreams(ReadStream.newBuilder().setName(\"0\")).build());\n    BigQueryClientFactory mockBigQueryClientFactory = mock(BigQueryClientFactory.class);\n    when(mockBigQueryClientFactory.getBigQueryReadClient()).thenReturn(client);\n\n    ReadSessionCreatorConfig config =\n        new ReadSessionCreatorConfigBuilder()\n            .setEnableReadSessionCaching(false)\n            .setPreferredMinParallelism(OptionalInt.of(21_000))\n            .setMaxParallelism(OptionalInt.of(10))\n            .build();\n    ReadSessionCreator creator =\n        new ReadSessionCreator(config, bigQueryClient, mockBigQueryClientFactory);\n    ReadSessionResponse readSessionResponse =\n        creator.create(table.getTableId(), ImmutableList.of(), Optional.empty());\n    assertThat(readSessionResponse).isNotNull();\n    assertThat(readSessionResponse.getReadSession().getStreamsCount()).isEqualTo(1);\n    CreateReadSessionRequest createReadSessionRequest =\n        (CreateReadSessionRequest) mockBigQueryRead.getRequests().get(0);\n    assertThat(createReadSessionRequest.getMaxStreamCount()).isEqualTo(10);\n    assertThat(createReadSessionRequest.getPreferredMinStreamCount()).isEqualTo(10);\n  }\n\n  @Test\n  public void testMaxStreamCountWithoutMinStreamCount() throws Exception {\n    // setting up\n    when(bigQueryClient.getTable(any())).thenReturn(table);\n    mockBigQueryRead.reset();\n    mockBigQueryRead.addResponse(\n        ReadSession.newBuilder().addStreams(ReadStream.newBuilder().setName(\"0\")).build());\n    BigQueryClientFactory mockBigQueryClientFactory = mock(BigQueryClientFactory.class);\n    when(mockBigQueryClientFactory.getBigQueryReadClient()).thenReturn(client);\n\n    ReadSessionCreatorConfig config =\n        new ReadSessionCreatorConfigBuilder()\n            .setEnableReadSessionCaching(false)\n            .setDefaultParallelism(20)\n            .setMaxParallelism(OptionalInt.of(10))\n            .build();\n    ReadSessionCreator creator =\n        new ReadSessionCreator(config, bigQueryClient, mockBigQueryClientFactory);\n    ReadSessionResponse readSessionResponse =\n        creator.create(table.getTableId(), ImmutableList.of(), Optional.empty());\n    assertThat(readSessionResponse).isNotNull();\n    assertThat(readSessionResponse.getReadSession().getStreamsCount()).isEqualTo(1);\n    CreateReadSessionRequest createReadSessionRequest =\n        (CreateReadSessionRequest) mockBigQueryRead.getRequests().get(0);\n    assertThat(createReadSessionRequest.getMaxStreamCount()).isEqualTo(10);\n    assertThat(createReadSessionRequest.getPreferredMinStreamCount()).isEqualTo(10);\n  }\n\n  @Test\n  public void testSnapshotTimeMillis() throws Exception {\n    // setting up\n    when(bigQueryClient.getTable(any())).thenReturn(table);\n    mockBigQueryRead.reset();\n    mockBigQueryRead.addResponse(\n        ReadSession.newBuilder().addStreams(ReadStream.newBuilder().setName(\"0\")).build());\n    BigQueryClientFactory mockBigQueryClientFactory = mock(BigQueryClientFactory.class);\n    when(mockBigQueryClientFactory.getBigQueryReadClient()).thenReturn(client);\n\n    ReadSessionCreatorConfig config =\n        new ReadSessionCreatorConfigBuilder()\n            .setEnableReadSessionCaching(false)\n            .setSnapshotTimeMillis(OptionalLong.of(1234567890L))\n            .build();\n    ReadSessionCreator creator =\n        new ReadSessionCreator(config, bigQueryClient, mockBigQueryClientFactory);\n    ReadSessionResponse readSessionResponse =\n        creator.create(table.getTableId(), ImmutableList.of(), Optional.empty());\n    assertThat(readSessionResponse).isNotNull();\n    CreateReadSessionRequest createReadSessionRequest =\n        (CreateReadSessionRequest) mockBigQueryRead.getRequests().get(0);\n    assertThat(createReadSessionRequest.getReadSession().getTableModifiers().getSnapshotTime())\n        .isEqualTo(Timestamp.newBuilder().setSeconds(1234567).setNanos(890000000).build());\n  }\n\n  @Test\n  public void testViewSnapshotTimeMillis() throws Exception {\n    // setting up\n    String query = \"SELECT * FROM `a.v`\";\n    when(bigQueryClient.getTable(any())).thenReturn(view);\n    when(bigQueryClient.createSql(\n            view.getTableId(), ImmutableList.of(), new String[0], OptionalLong.of(1234567890L)))\n        .thenReturn(query);\n    when(bigQueryClient.materializeViewToTable(query, view.getTableId(), 120)).thenReturn(table);\n    mockBigQueryRead.reset();\n    mockBigQueryRead.addResponse(\n        ReadSession.newBuilder().addStreams(ReadStream.newBuilder().setName(\"0\")).build());\n    BigQueryClientFactory mockBigQueryClientFactory = mock(BigQueryClientFactory.class);\n    when(mockBigQueryClientFactory.getBigQueryReadClient()).thenReturn(client);\n\n    ReadSessionCreatorConfig config =\n        new ReadSessionCreatorConfigBuilder()\n            .setEnableReadSessionCaching(false)\n            .setSnapshotTimeMillis(OptionalLong.of(1234567890L))\n            .setViewsEnabled(true)\n            .build();\n    ReadSessionCreator creator =\n        new ReadSessionCreator(config, bigQueryClient, mockBigQueryClientFactory);\n    ReadSessionResponse readSessionResponse =\n        creator.create(table.getTableId(), ImmutableList.of(), Optional.empty());\n    assertThat(readSessionResponse).isNotNull();\n    CreateReadSessionRequest createReadSessionRequest =\n        (CreateReadSessionRequest) mockBigQueryRead.getRequests().get(0);\n    assertThat(createReadSessionRequest.getReadSession().getTableModifiers())\n        .isEqualTo(TableModifiers.newBuilder().build());\n  }\n\n  private void testCacheMissScenario(\n      ReadSessionCreator creator,\n      String readSessionName,\n      ImmutableList<String> fields,\n      Optional<String> filter) {\n    ReadSession readSession = ReadSession.newBuilder().setName(readSessionName).build();\n    mockBigQueryRead.addResponse(readSession);\n    ReadSessionResponse response = creator.create(table.getTableId(), fields, filter);\n    assertThat(creator.getReadSessionCache().asMap().values()).contains(readSession);\n    assertThat(response.getReadSession()).isEqualTo(readSession);\n  }\n\n  @Test\n  public void testReadSessionCacheMiss() {\n    // setting up\n    when(bigQueryClient.getTable(any())).thenReturn(table);\n    mockBigQueryRead.reset();\n    BigQueryClientFactory mockBigQueryClientFactory = mock(BigQueryClientFactory.class);\n    when(mockBigQueryClientFactory.getBigQueryReadClient()).thenReturn(client);\n    ReadSessionCreatorConfig config =\n        new ReadSessionCreatorConfigBuilder()\n            .setMaxParallelism(OptionalInt.of(10))\n            .setReadDataFormat(DataFormat.ARROW)\n            .setEnableReadSessionCaching(true)\n            .build();\n    ReadSessionCreator creator =\n        new ReadSessionCreator(config, bigQueryClient, mockBigQueryClientFactory);\n    creator = Mockito.spy(creator);\n    Cache<CreateReadSessionRequest, ReadSession> cache = CacheBuilder.newBuilder().build();\n    Mockito.doReturn(cache).when(creator).getReadSessionCache();\n    int counter = 0;\n    testCacheMissScenario(creator, \"rs\" + ++counter, ImmutableList.of(), Optional.empty());\n    testCacheMissScenario(\n        creator, \"rs\" + ++counter, ImmutableList.of(\"foo\", \"bar\"), Optional.empty());\n    testCacheMissScenario(\n        creator, \"rs\" + ++counter, ImmutableList.of(\"foo\", \"baz1\"), Optional.empty());\n    testCacheMissScenario(creator, \"rs\" + ++counter, ImmutableList.of(), Optional.of(\"filter1\"));\n    testCacheMissScenario(creator, \"rs\" + ++counter, ImmutableList.of(), Optional.of(\"filter2\"));\n    testCacheMissScenario(\n        creator, \"rs\" + ++counter, ImmutableList.of(\"foo\", \"bar\"), Optional.of(\"filter1\"));\n    testCacheMissScenario(\n        creator, \"rs\" + ++counter, ImmutableList.of(\"foo\", \"bar\"), Optional.of(\"filter2\"));\n  }\n\n  private ReadSession addCacheEntry(\n      ReadSessionCreator creator,\n      String readSessionName,\n      ImmutableList<String> fields,\n      Optional<String> filter,\n      ReadSessionCreatorConfig config) {\n    ReadSession readSession = ReadSession.newBuilder().setName(readSessionName).build();\n    CreateReadSessionRequest request = CreateReadSessionRequest.newBuilder().build();\n    ReadSession.Builder requestedSession = request.getReadSession().toBuilder();\n    TableReadOptions.Builder readOptions = requestedSession.getReadOptionsBuilder();\n    filter.ifPresent(readOptions::setRowRestriction);\n    readOptions.addAllSelectedFields(fields);\n    readOptions.setArrowSerializationOptions(\n        ArrowSerializationOptions.newBuilder()\n            .setBufferCompression(config.getArrowCompressionCodec())\n            .build());\n    readOptions.setResponseCompressionCodec(config.getResponseCompressionCodec());\n    CreateReadSessionRequest key =\n        CreateReadSessionRequest.newBuilder()\n            .setParent(\"projects/\" + bigQueryClient.getProjectId())\n            .setReadSession(\n                requestedSession\n                    .setDataFormat(config.getReadDataFormat())\n                    .setReadOptions(readOptions)\n                    .setTable(ReadSessionCreator.toTablePath(table.getTableId()))\n                    .setTableModifiers(TableModifiers.newBuilder())\n                    .build())\n            .setMaxStreamCount(config.getMaxParallelism().getAsInt())\n            .setPreferredMinStreamCount(3 * config.getDefaultParallelism())\n            .build();\n    creator.getReadSessionCache().put(key, readSession);\n    return readSession;\n  }\n\n  private void testCacheHitScenario(\n      ReadSessionCreator creator,\n      ReadSession expected,\n      ImmutableList<String> fields,\n      Optional<String> filter) {\n    ReadSessionResponse response = creator.create(table.getTableId(), fields, filter);\n    assertThat(response.getReadSession()).isEqualTo(expected);\n  }\n\n  @Test\n  public void testReadSessionCacheHit() {\n    // setting up\n    when(bigQueryClient.getTable(any())).thenReturn(table);\n    mockBigQueryRead.reset();\n    mockBigQueryRead.addResponse(ReadSession.newBuilder().setName(\"wrong-name\").build());\n    // mockBigQueryRead.addException(new RuntimeException(\"Test: Cached ReadSession not used\"));\n    BigQueryClientFactory mockBigQueryClientFactory = mock(BigQueryClientFactory.class);\n    when(mockBigQueryClientFactory.getBigQueryReadClient()).thenReturn(client);\n    int maxStreamCount = 20_000;\n    int defaultParallelism = 10;\n    ReadSessionCreatorConfig config =\n        new ReadSessionCreatorConfigBuilder()\n            .setDefaultParallelism(defaultParallelism)\n            .setMaxParallelism(OptionalInt.of(maxStreamCount))\n            .setReadDataFormat(DataFormat.ARROW)\n            .setEnableReadSessionCaching(true)\n            .setArrowCompressionCodec(CompressionCodec.COMPRESSION_UNSPECIFIED)\n            .setResponseCompressionCodec(\n                ResponseCompressionCodec.RESPONSE_COMPRESSION_CODEC_UNSPECIFIED)\n            .build();\n    ReadSessionCreator creator =\n        new ReadSessionCreator(config, bigQueryClient, mockBigQueryClientFactory);\n    creator = Mockito.spy(creator);\n    Cache<CreateReadSessionRequest, ReadSession> cache = CacheBuilder.newBuilder().build();\n    Mockito.doReturn(cache).when(creator).getReadSessionCache();\n    // test cache hits\n    ReadSession expected1 =\n        addCacheEntry(creator, \"r1\", ImmutableList.of(), Optional.empty(), config);\n    testCacheHitScenario(creator, expected1, ImmutableList.of(), Optional.empty());\n    ReadSession expected2 =\n        addCacheEntry(\n            creator, \"r2\", ImmutableList.of(\"foo\", \"bar\"), Optional.of(\"filter1\"), config);\n    testCacheHitScenario(\n        creator, expected2, ImmutableList.of(\"foo\", \"bar\"), Optional.of(\"filter1\"));\n    ReadSession expected3 =\n        addCacheEntry(\n            creator, \"r3\", ImmutableList.of(\"foo\", \"bar\"), Optional.of(\"filter2\"), config);\n    testCacheHitScenario(\n        creator, expected3, ImmutableList.of(\"foo\", \"bar\"), Optional.of(\"filter2\"));\n    // re-test previous cache hits\n    testCacheHitScenario(creator, expected1, ImmutableList.of(), Optional.empty());\n    testCacheHitScenario(\n        creator, expected2, ImmutableList.of(\"foo\", \"bar\"), Optional.of(\"filter1\"));\n    testCacheHitScenario(\n        creator, expected3, ImmutableList.of(\"foo\", \"bar\"), Optional.of(\"filter2\"));\n  }\n\n  private static BigQueryReadClient createMockBigQueryReadClient(EnhancedBigQueryReadStub stub) {\n    try {\n      BigQueryReadClient client = BigQueryReadClient.create(stub);\n      // settings is null, causing NPE in some of the tests\n      FieldUtils.writeField(client, \"settings\", BigQueryReadSettings.newBuilder().build(), true);\n      return client;\n    } catch (IllegalAccessException e) {\n      throw new RuntimeException(e);\n    } catch (IOException e) {\n      throw new UncheckedIOException(e);\n    }\n  }\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/test/java/com/google/cloud/bigquery/connector/common/integration/CustomCredentialsIntegrationTest.java",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.bigquery.connector.common.integration;\n\nimport static com.google.common.truth.Truth.assertThat;\n\nimport com.google.auth.Credentials;\nimport com.google.cloud.bigquery.BigQuery;\nimport com.google.cloud.bigquery.BigQueryOptions;\nimport com.google.cloud.bigquery.Table;\nimport com.google.cloud.bigquery.TableId;\nimport com.google.cloud.bigquery.connector.common.AccessTokenProviderCredentials;\nimport com.google.cloud.bigquery.connector.common.BigQueryCredentialsSupplier;\nimport java.util.Optional;\nimport org.junit.Test;\n\npublic class CustomCredentialsIntegrationTest {\n\n  public static final TableId TABLE_ID =\n      TableId.of(\"bigquery-public-data\", \"samples\", \"shakespeare\");\n\n  @Test\n  public void testAccessTokenProvider() {\n    BigQueryCredentialsSupplier credentialsSupplier =\n        new BigQueryCredentialsSupplier(\n            Optional.of(DefaultCredentialsDelegateAccessTokenProvider.class.getCanonicalName()),\n            Optional.empty(),\n            Optional.empty(),\n            Optional.empty(),\n            Optional.empty(),\n            null,\n            null,\n            Optional.empty(),\n            Optional.empty(),\n            Optional.empty(),\n            Optional.empty(),\n            Optional.empty(),\n            Optional.empty(),\n            Optional.empty());\n    Credentials credentials = credentialsSupplier.getCredentials();\n    assertThat(credentials).isInstanceOf(AccessTokenProviderCredentials.class);\n    DefaultCredentialsDelegateAccessTokenProvider accessTokenProvider =\n        (DefaultCredentialsDelegateAccessTokenProvider)\n            ((AccessTokenProviderCredentials) credentials).getAccessTokenProvider();\n    assertThat(accessTokenProvider.getCallCount()).isEqualTo(0);\n    BigQueryOptions options = BigQueryOptions.newBuilder().setCredentials(credentials).build();\n    BigQuery bigQuery = options.getService();\n    // first call\n    Table table = bigQuery.getTable(TABLE_ID);\n    assertThat(table).isNotNull();\n    assertThat(accessTokenProvider.getCallCount()).isEqualTo(1);\n    // second call\n    table = bigQuery.getTable(TABLE_ID);\n    assertThat(table).isNotNull();\n    assertThat(accessTokenProvider.getCallCount()).isEqualTo(2);\n  }\n\n  @Test\n  public void testAccessTokenProvider_withConfig() {\n    BigQueryCredentialsSupplier credentialsSupplier =\n        new BigQueryCredentialsSupplier(\n            Optional.of(DefaultCredentialsDelegateAccessTokenProvider.class.getCanonicalName()),\n            Optional.of(\"some-configuration\"),\n            Optional.empty(),\n            Optional.empty(),\n            Optional.empty(),\n            null,\n            null,\n            Optional.empty(),\n            Optional.empty(),\n            Optional.empty(),\n            Optional.empty(),\n            Optional.empty(),\n            Optional.empty(),\n            Optional.empty());\n    Credentials credentials = credentialsSupplier.getCredentials();\n    assertThat(credentials).isInstanceOf(AccessTokenProviderCredentials.class);\n    DefaultCredentialsDelegateAccessTokenProvider accessTokenProvider =\n        (DefaultCredentialsDelegateAccessTokenProvider)\n            ((AccessTokenProviderCredentials) credentials).getAccessTokenProvider();\n    assertThat(accessTokenProvider.getCallCount()).isEqualTo(0);\n    assertThat(accessTokenProvider.getConfig()).isEqualTo(\"some-configuration\");\n\n    BigQueryOptions options = BigQueryOptions.newBuilder().setCredentials(credentials).build();\n    BigQuery bigQuery = options.getService();\n    // first call\n    Table table = bigQuery.getTable(TABLE_ID);\n    assertThat(table).isNotNull();\n    assertThat(accessTokenProvider.getCallCount()).isEqualTo(1);\n    // second call\n    table = bigQuery.getTable(TABLE_ID);\n    assertThat(table).isNotNull();\n    assertThat(accessTokenProvider.getCallCount()).isEqualTo(2);\n  }\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/test/java/com/google/cloud/bigquery/connector/common/integration/DefaultCredentialsDelegateAccessTokenProvider.java",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.bigquery.connector.common.integration;\n\nimport com.google.auth.oauth2.GoogleCredentials;\nimport com.google.cloud.bigquery.connector.common.AccessToken;\nimport com.google.cloud.bigquery.connector.common.AccessTokenProvider;\nimport java.io.IOException;\nimport java.io.UncheckedIOException;\nimport java.util.Date;\n\n/**\n * Basic implementation of AccessTokenProvider. This demonstrates a simple example of how\n * configuration can be passed to the AccessTokenProvider implementation. In this case the\n * configuration is simply treated as a token override in place of using {@link\n * GoogleCredentials#getApplicationDefault}. Token TTL is very small to allow refresh testing.\n */\npublic class DefaultCredentialsDelegateAccessTokenProvider implements AccessTokenProvider {\n\n  private String config;\n  private GoogleCredentials delegate;\n  private int callCount = 0;\n\n  public DefaultCredentialsDelegateAccessTokenProvider() {\n    this(null);\n  }\n\n  public DefaultCredentialsDelegateAccessTokenProvider(String config) {\n    this.config = config;\n    try {\n      this.delegate = GoogleCredentials.getApplicationDefault();\n    } catch (IOException e) {\n      throw new UncheckedIOException(e);\n    }\n  }\n\n  @Override\n  public AccessToken getAccessToken() throws IOException {\n    com.google.auth.oauth2.AccessToken accessToken = delegate.refreshAccessToken();\n    callCount++;\n    return new AccessToken(\n        accessToken.getTokenValue(), new Date(System.currentTimeMillis() + 2000));\n  }\n\n  int getCallCount() {\n    return callCount;\n  }\n\n  String getConfig() {\n    return config;\n  }\n}\n"
  },
  {
    "path": "bigquery-connector-common/src/test/resources/external-account-credentials.json",
    "content": "{\n  \"type\": \"external_account\",\n  \"audience\": \"//iam.googleapis.com/projects/1234/locations/global/workloadIdentityPools/some-pool/providers/test\",\n  \"subject_token_type\": \"urn:ietf:params:oauth:token-type:jwt\",\n  \"service_account_impersonation_url\": \"https://iamcredentials.googleapis.com/v1/projects/-/serviceAccounts/test:generateAccessToken\",\n  \"token_url\": \"https://sts.googleapis.com/v1/token\",\n  \"credential_source\": {\n    \"headers\": {\n      \"Metadata\": \"True\"\n    },\n    \"url\": \n\"http://169.254.169.254/metadata/identity/oauth2/token?api-version=2018-02-01&resource=https://iam.googleapis.com/projects/$PROJECT_NUMBER/locations/global/workloadIdentityPools/$POOL_ID/providers/$PROVIDER_ID\",\n    \"format\": {\n      \"type\": \"json\",\n      \"subject_token_field_name\": \"access_token\"\n    }\n  }\n}\n"
  },
  {
    "path": "cloudbuild/Dockerfile",
    "content": "# This Dockerfile creates an image for running presubmit tests.\nFROM ubuntu:22.04\n\n# Set noninteractive frontend for apt to avoid prompts during build\nENV DEBIAN_FRONTEND=noninteractive\n\n# Install prerequisites, JDKs, and Google Cloud CLI in a single RUN command\nRUN apt-get update && apt-get install -y --no-install-recommends \\\n    curl \\\n    gnupg \\\n    ca-certificates \\\n    # Add Adoptium repository and key\n    && curl -s https://packages.adoptium.net/artifactory/api/gpg/key/public | gpg --dearmor -o /usr/share/keyrings/adoptium.gpg \\\n    && echo \"deb [signed-by=/usr/share/keyrings/adoptium.gpg] https://packages.adoptium.net/artifactory/deb jammy main\" | tee /etc/apt/sources.list.d/adoptium.list \\\n    # Add Google Cloud SDK repository and key\n    && curl -s https://packages.cloud.google.com/apt/doc/apt-key.gpg | gpg --dearmor -o /usr/share/keyrings/cloud.google.gpg \\\n    && echo \"deb [signed-by=/usr/share/keyrings/cloud.google.gpg] https://packages.cloud.google.com/apt cloud-sdk main\" | tee /etc/apt/sources.list.d/google-cloud-sdk.list \\\n    # Update package list again after adding new repos\n    && apt-get update \\\n    # Install JDKs and Google Cloud CLI\n    && apt-get install -y --no-install-recommends \\\n        openjdk-8-jdk \\\n        temurin-11-jdk \\\n        temurin-17-jdk \\\n        google-cloud-cli \\\n    # Clean up apt cache and lists\n    && apt-get clean \\\n    && rm -rf /var/lib/apt/lists/*\n\n# Set a default JAVA_HOME (optional, mainly for processes outside toolchains)\n# Toolchains plugin will select the correct JDK based on toolchains.xml\n# Setting it to 17 so we can use toolchain on lower JDKs\nENV JAVA_HOME=/usr/lib/jvm/temurin-17-jdk-amd64\nENV JAVA8_HOME=/usr/lib/jvm/java-8-openjdk-amd64\nENV JAVA11_HOME=/usr/lib/jvm/temurin-11-jdk-amd64\nENV JAVA17_HOME=/usr/lib/jvm/temurin-17-jdk-amd64\n"
  },
  {
    "path": "cloudbuild/cloudbuild.yaml",
    "content": "steps:\n  # 1. Create a Docker image containing hadoop-connectors repo\n  - name: 'gcr.io/cloud-builders/docker'\n    id: 'docker-build'\n    args: ['build', '--tag=gcr.io/$PROJECT_ID/dataproc-spark-bigquery-connector-presubmit', '-f', 'cloudbuild/Dockerfile', '.']\n\n# 2. Fetch maven and dependencies\n  - name: 'gcr.io/$PROJECT_ID/dataproc-spark-bigquery-connector-presubmit'\n    id: 'init'\n    waitFor: ['docker-build']\n    entrypoint: 'bash'\n    args: ['/workspace/cloudbuild/presubmit.sh', 'init']\n    env:\n    - 'CODECOV_TOKEN=${_CODECOV_TOKEN}'\n\n# 3. Run unit tests\n  - name: 'gcr.io/$PROJECT_ID/dataproc-spark-bigquery-connector-presubmit'\n    id: 'unit-tests'\n    waitFor: ['init']\n    entrypoint: 'bash'\n    args: ['/workspace/cloudbuild/presubmit.sh', 'unittest']\n    env:\n    - 'CODECOV_TOKEN=${_CODECOV_TOKEN}'\n\n# 4a. Run integration tests concurrently with unit tests (DSv1, Scala 2.12)\n  - name: 'gcr.io/$PROJECT_ID/dataproc-spark-bigquery-connector-presubmit'\n    id: 'integration-tests-2.12'\n    waitFor: ['unit-tests']\n    entrypoint: 'bash'\n    args: ['/workspace/cloudbuild/presubmit.sh', 'integrationtest-2.12']\n    env:\n      - 'GOOGLE_CLOUD_PROJECT=${_GOOGLE_CLOUD_PROJECT}'\n      - 'TEMPORARY_GCS_BUCKET=${_TEMPORARY_GCS_BUCKET}'\n      - 'BIGLAKE_CONNECTION_ID=${_BIGLAKE_CONNECTION_ID}'\n      - 'BIGQUERY_KMS_KEY_NAME=${_BIGQUERY_KMS_KEY_NAME}'\n\n# 4b. Run integration tests concurrently with unit tests (DSv1, Scala 2.13)\n  - name: 'gcr.io/$PROJECT_ID/dataproc-spark-bigquery-connector-presubmit'\n    id: 'integration-tests-2.13'\n    waitFor: ['unit-tests']\n    entrypoint: 'bash'\n    args: ['/workspace/cloudbuild/presubmit.sh', 'integrationtest-2.13']\n    env:\n    - 'GOOGLE_CLOUD_PROJECT=${_GOOGLE_CLOUD_PROJECT}'\n    - 'TEMPORARY_GCS_BUCKET=${_TEMPORARY_GCS_BUCKET}'\n    - 'BIGLAKE_CONNECTION_ID=${_BIGLAKE_CONNECTION_ID}'\n    - 'BIGQUERY_KMS_KEY_NAME=${_BIGQUERY_KMS_KEY_NAME}'\n\n# 4c. Run integration tests concurrently with unit tests (DSv2, Spark 3.1)\n  - name: 'gcr.io/$PROJECT_ID/dataproc-spark-bigquery-connector-presubmit'\n    id: 'integration-tests-3.1'\n    waitFor: ['integration-tests-2.12']\n    entrypoint: 'bash'\n    args: ['/workspace/cloudbuild/presubmit.sh', 'integrationtest-3.1']\n    env:\n      - 'GOOGLE_CLOUD_PROJECT=${_GOOGLE_CLOUD_PROJECT}'\n      - 'TEMPORARY_GCS_BUCKET=${_TEMPORARY_GCS_BUCKET}'\n      - 'BIGLAKE_CONNECTION_ID=${_BIGLAKE_CONNECTION_ID}'\n      - 'BIGQUERY_KMS_KEY_NAME=${_BIGQUERY_KMS_KEY_NAME}'\n\n# 4d. Run integration tests concurrently with unit tests (DSv2, Spark 3.2)\n  - name: 'gcr.io/$PROJECT_ID/dataproc-spark-bigquery-connector-presubmit'\n    id: 'integration-tests-3.2'\n    waitFor: ['integration-tests-2.13']\n    entrypoint: 'bash'\n    args: ['/workspace/cloudbuild/presubmit.sh', 'integrationtest-3.2']\n    env:\n      - 'GOOGLE_CLOUD_PROJECT=${_GOOGLE_CLOUD_PROJECT}'\n      - 'TEMPORARY_GCS_BUCKET=${_TEMPORARY_GCS_BUCKET}'\n      - 'BIGLAKE_CONNECTION_ID=${_BIGLAKE_CONNECTION_ID}'\n      - 'BIGQUERY_KMS_KEY_NAME=${_BIGQUERY_KMS_KEY_NAME}'\n\n# 4e. Run integration tests concurrently with unit tests (DSv2, Spark 3.3)\n  - name: 'gcr.io/$PROJECT_ID/dataproc-spark-bigquery-connector-presubmit'\n    id: 'integration-tests-3.3'\n    waitFor: ['integration-tests-3.1']\n    entrypoint: 'bash'\n    args: ['/workspace/cloudbuild/presubmit.sh', 'integrationtest-3.3']\n    env:\n      - 'GOOGLE_CLOUD_PROJECT=${_GOOGLE_CLOUD_PROJECT}'\n      - 'TEMPORARY_GCS_BUCKET=${_TEMPORARY_GCS_BUCKET}'\n      - 'BIGLAKE_CONNECTION_ID=${_BIGLAKE_CONNECTION_ID}'\n      - 'BIGQUERY_KMS_KEY_NAME=${_BIGQUERY_KMS_KEY_NAME}'\n\n# 4f. Run integration tests concurrently with unit tests (DSv2, Spark 3.4)\n  - name: 'gcr.io/$PROJECT_ID/dataproc-spark-bigquery-connector-presubmit'\n    id: 'integration-tests-3.4'\n    waitFor: ['integration-tests-3.2']\n    entrypoint: 'bash'\n    args: ['/workspace/cloudbuild/presubmit.sh', 'integrationtest-3.4']\n    env:\n      - 'GOOGLE_CLOUD_PROJECT=${_GOOGLE_CLOUD_PROJECT}'\n      - 'TEMPORARY_GCS_BUCKET=${_TEMPORARY_GCS_BUCKET}'\n      - 'BIGLAKE_CONNECTION_ID=${_BIGLAKE_CONNECTION_ID}'\n      - 'BIGQUERY_KMS_KEY_NAME=${_BIGQUERY_KMS_KEY_NAME}'\n\n  # 4g. Run integration tests concurrently with unit tests (DSv2, Spark 3.5)\n  - name: 'gcr.io/$PROJECT_ID/dataproc-spark-bigquery-connector-presubmit'\n    id: 'integration-tests-3.5'\n    waitFor: ['integration-tests-3.3']\n    entrypoint: 'bash'\n    args: ['/workspace/cloudbuild/presubmit.sh', 'integrationtest-3.5']\n    env:\n      - 'GOOGLE_CLOUD_PROJECT=${_GOOGLE_CLOUD_PROJECT}'\n      - 'TEMPORARY_GCS_BUCKET=${_TEMPORARY_GCS_BUCKET}'\n      - 'BIGLAKE_CONNECTION_ID=${_BIGLAKE_CONNECTION_ID}'\n      - 'BIGQUERY_KMS_KEY_NAME=${_BIGQUERY_KMS_KEY_NAME}'\n\n  # 4h. Run integration tests concurrently with unit tests (DSv2, Spark 3.5)\n  - name: 'gcr.io/$PROJECT_ID/dataproc-spark-bigquery-connector-presubmit'\n    id: 'integration-tests-4.0'\n    waitFor: ['integration-tests-3.4']\n    entrypoint: 'bash'\n    args: ['/workspace/cloudbuild/presubmit.sh', 'integrationtest-4.0']\n    env:\n      - 'GOOGLE_CLOUD_PROJECT=${_GOOGLE_CLOUD_PROJECT}'\n      - 'TEMPORARY_GCS_BUCKET=${_TEMPORARY_GCS_BUCKET}'\n      - 'BIGLAKE_CONNECTION_ID=${_BIGLAKE_CONNECTION_ID}'\n      - 'BIGQUERY_KMS_KEY_NAME=${_BIGQUERY_KMS_KEY_NAME}'\n\n  # 4i. Run integration tests concurrently with unit tests (DSv2, Spark 3.5)\n  - name: 'gcr.io/$PROJECT_ID/dataproc-spark-bigquery-connector-presubmit'\n    id: 'integration-tests-4.1'\n    waitFor: ['integration-tests-3.5']\n    entrypoint: 'bash'\n    args: ['/workspace/cloudbuild/presubmit.sh', 'integrationtest-4.1']\n    env:\n      - 'GOOGLE_CLOUD_PROJECT=${_GOOGLE_CLOUD_PROJECT}'\n      - 'TEMPORARY_GCS_BUCKET=${_TEMPORARY_GCS_BUCKET}'\n      - 'BIGLAKE_CONNECTION_ID=${_BIGLAKE_CONNECTION_ID}'\n      - 'BIGQUERY_KMS_KEY_NAME=${_BIGQUERY_KMS_KEY_NAME}'\n\n  # 5. Upload coverage to CodeCov\n  - name: 'gcr.io/$PROJECT_ID/dataproc-spark-bigquery-connector-presubmit'\n    id: 'upload-it-to-codecov'\n    waitFor: ['integration-tests-2.12','integration-tests-2.13','integration-tests-3.1','integration-tests-3.2','integration-tests-3.3', 'integration-tests-3.4', 'integration-tests-3.5', 'integration-tests-4.0', 'integration-tests-4.1']\n    entrypoint: 'bash'\n    args: ['/workspace/cloudbuild/presubmit.sh', 'upload-it-to-codecov']\n    env:\n      - 'CODECOV_TOKEN=${_CODECOV_TOKEN}'\n\n\n# Tests take around 1 hr 15 mins in general.\ntimeout: 9000s\n\noptions:\n  machineType: 'E2_HIGHCPU_32'\n"
  },
  {
    "path": "cloudbuild/gcp-settings.xml",
    "content": "<settings xmlns=\"http://maven.apache.org/SETTINGS/1.0.0\"\n  xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n  xsi:schemaLocation=\"http://maven.apache.org/SETTINGS/1.0.0\n                      https://maven.apache.org/xsd/settings-1.0.0.xsd\">\n<!--\n  <mirrors>\n    <mirror>\n      <id>google-maven-central</id>\n      <name>GCS Maven Central mirror</name>\n      <url>https://maven-central.storage-download.googleapis.com/maven2/</url>\n      <mirrorOf>central</mirrorOf>\n    </mirror>\n  </mirrors>\n-->\n</settings>\n"
  },
  {
    "path": "cloudbuild/nightly.sh",
    "content": "#!/bin/bash\n\n# Copyright 2019 Google Inc. All Rights Reserved.\n#\n# Licensed under the Apache License, Version 2.0 (the 'License');\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n#            http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an 'AS IS' BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nset -euxo pipefail\n\nreadonly STEP=$1\n\nfunction checkenv() {\n  if [ -z \"${CODECOV_TOKEN}\" ]; then\n    echo \"missing environment variable CODECOV_TOKEN\"\n    exit 1\n  fi\n}\n\nreadonly M2REPO=\"/workspace/.repository\"\nreadonly DATE=\"$(date +%Y%m%d)\"\nreadonly REVISION=\"0.0.${DATE}\"\nexport   BUILD_OPTS='-Xss1g -Xmx20g -XX:MaxMetaspaceSize=10g -XX:ReservedCodeCacheSize=2g -Dsun.zip.disableMemoryMapping=true -DtrimStackTrace=false'\nreadonly MVN_NT=\"./mvnw -B -e -s /workspace/cloudbuild/gcp-settings.xml -Dmaven.repo.local=${M2REPO} -Drevision=${REVISION}\"\nreadonly MVN=\"${MVN_NT} -t toolchains.xml\"\nreadonly BUCKET=\"spark-lib-nightly-snapshots\"\n\nmkdir -p ${M2REPO}\ncd /workspace\n\ncase $STEP in\n  build)\n    checkenv\n    $MVN_NT toolchains:generate-jdk-toolchains-xml -Dtoolchain.file=toolchains.xml\n    cat toolchains.xml\n    # Build\n    export JAVA_HOME=${JAVA17_HOME}\n    $MVN -T 1C install -DskipTests -Pdsv1_2.12,dsv1_2.13,dsv2_3.1,dsv2_3.2,dsv2_3.3,dsv2_3.4,dsv2_3.5,dsv2_4.0,dsv2_4.1\n    #coverage report\n    export JAVA_HOME=${JAVA17_HOME}\n    $MVN -T 1C test jacoco:report jacoco:report-aggregate -Pcoverage,dsv1_2.12,dsv1_2.13,dsv2_3.1,dsv2_3.2,dsv2_3.3,dsv2_3.4,dsv2_3.5,dsv2_4.0,dsv2_4.1\n    # Run integration tests\n    unset MAVEN_OPTS\n    export JAVA_HOME=${JAVA17_HOME}\n    $MVN failsafe:integration-test failsafe:verify jacoco:report jacoco:report-aggregate -Pcoverage,integration,dsv1_2.12,dsv1_2.13,dsv2_3.1,dsv2_3.2,dsv2_3.3,dsv2_3.4,dsv2_3.5,dsv2_4.0,dsv2_4.1\n    # Run acceptance tests\n    export JAVA_HOME=${JAVA17_HOME}\n    $MVN failsafe:integration-test failsafe:verify jacoco:report jacoco:report-aggregate -Pcoverage,acceptance,dsv1_2.12,dsv1_2.13,dsv2_3.1,dsv2_3.2,dsv2_3.3,dsv2_3.4,dsv2_3.5,dsv2_4.0,dsv2_4.1\n    # Upload test coverage report to Codecov\n    bash <(curl -s https://codecov.io/bash) -K -F \"nightly\"\n\n    # Save the REVISION variable to use in the next build step\n    echo \"${REVISION}\" > /workspace/revision.txt\n    exit\n    ;;\n\n  copy-to-gcs)\n    # Get the REVISION variable from the previous step\n    readonly BUILD_REVISION=\"$(cat /workspace/revision.txt)\"\n\n    # Upload nightly artifacts to the snapshot bucket and mark nightly snapshot\n    gsutil cp \"${M2REPO}/com/google/cloud/spark/spark-bigquery-with-dependencies_2.12/${BUILD_REVISION}/spark-bigquery-with-dependencies_2.12-${BUILD_REVISION}.jar\" \"gs://${BUCKET}\"\n    gsutil cp \"gs://${BUCKET}/spark-bigquery-with-dependencies_2.12-${BUILD_REVISION}.jar\" \"gs://${BUCKET}/spark-bigquery-with-dependencies_2.12-nightly-snapshot.jar\"\n\n    gsutil cp \"${M2REPO}/com/google/cloud/spark/spark-bigquery-with-dependencies_2.13/${BUILD_REVISION}/spark-bigquery-with-dependencies_2.13-${BUILD_REVISION}.jar\" \"gs://${BUCKET}\"\n    gsutil cp \"gs://${BUCKET}/spark-bigquery-with-dependencies_2.13-${BUILD_REVISION}.jar\" \"gs://${BUCKET}/spark-bigquery-with-dependencies_2.13-nightly-snapshot.jar\"\n\n    gsutil cp \"${M2REPO}/com/google/cloud/spark/spark-3.1-bigquery/${BUILD_REVISION}/spark-3.1-bigquery-${BUILD_REVISION}.jar\" \"gs://${BUCKET}\"\n    gsutil cp \"gs://${BUCKET}/spark-3.1-bigquery-${BUILD_REVISION}.jar\" \"gs://${BUCKET}/spark-3.1-bigquery-nightly-snapshot.jar\"\n\n    gsutil cp \"${M2REPO}/com/google/cloud/spark/spark-3.2-bigquery/${BUILD_REVISION}/spark-3.2-bigquery-${BUILD_REVISION}.jar\" \"gs://${BUCKET}\"\n    gsutil cp \"gs://${BUCKET}/spark-3.2-bigquery-${BUILD_REVISION}.jar\" \"gs://${BUCKET}/spark-3.2-bigquery-nightly-snapshot.jar\"\n\n    gsutil cp \"${M2REPO}/com/google/cloud/spark/spark-3.3-bigquery/${BUILD_REVISION}/spark-3.3-bigquery-${BUILD_REVISION}.jar\" \"gs://${BUCKET}\"\n    gsutil cp \"gs://${BUCKET}/spark-3.3-bigquery-${BUILD_REVISION}.jar\" \"gs://${BUCKET}/spark-3.3-bigquery-nightly-snapshot.jar\"\n\n    gsutil cp \"${M2REPO}/com/google/cloud/spark/spark-3.4-bigquery/${BUILD_REVISION}/spark-3.4-bigquery-${BUILD_REVISION}.jar\" \"gs://${BUCKET}\"\n    gsutil cp \"gs://${BUCKET}/spark-3.4-bigquery-${BUILD_REVISION}.jar\" \"gs://${BUCKET}/spark-3.4-bigquery-nightly-snapshot.jar\"\n\n    gsutil cp \"${M2REPO}/com/google/cloud/spark/spark-3.5-bigquery/${BUILD_REVISION}/spark-3.5-bigquery-${BUILD_REVISION}.jar\" \"gs://${BUCKET}\"\n    gsutil cp \"gs://${BUCKET}/spark-3.5-bigquery-${BUILD_REVISION}.jar\" \"gs://${BUCKET}/spark-3.5-bigquery-nightly-snapshot.jar\"\n\n    gsutil cp \"${M2REPO}/com/google/cloud/spark/spark-4.0-bigquery/${BUILD_REVISION}-preview/spark-4.0-bigquery-${BUILD_REVISION}-preview.jar\" \"gs://${BUCKET}\"\n    gsutil cp \"gs://${BUCKET}/spark-4.0-bigquery-${BUILD_REVISION}-preview.jar\" \"gs://${BUCKET}/spark-4.0-bigquery-nightly-snapshot.jar\"\n\n    gsutil cp \"${M2REPO}/com/google/cloud/spark/spark-4.1-bigquery/${BUILD_REVISION}-preview/spark-4.1-bigquery-${BUILD_REVISION}-preview.jar\" \"gs://${BUCKET}\"\n    gsutil cp \"gs://${BUCKET}/spark-4.1-bigquery-${BUILD_REVISION}-preview.jar\" \"gs://${BUCKET}/spark-4.1-bigquery-nightly-snapshot.jar\"\n\n    gsutil cp \"${M2REPO}/com/google/cloud/spark/spark-bigquery-metrics/${BUILD_REVISION}/spark-bigquery-metrics-${BUILD_REVISION}.jar\" \"gs://${BUCKET}\"\n    gsutil cp \"gs://${BUCKET}/spark-bigquery-metrics-${BUILD_REVISION}.jar\" \"gs://${BUCKET}/spark-bigquery-metrics-nightly-snapshot.jar\"\n\n    exit\n    ;;\n\n  deploy)\n    # TODO: Re-enable deployment for nightly builds.\n    # $MVN deploy:deploy -DskipTests -Dscala.skipTests=true -Prelease-nightly,dsv1_2.12,dsv1_2.13,dsv2_3.1,dsv2_3.2,dsv2_3.3,dsv2_3.4,dsv2_3.5,dsv2_4.0,dsv2_4.1\n    exit\n    ;;\n\n  *)\n    echo \"Unknown step $STEP\"\n    exit 1\n    ;;\nesac\n\n"
  },
  {
    "path": "cloudbuild/nightly.yaml",
    "content": "steps:\n  # 1. Create a Docker image containing hadoop-connectors repo\n  - name: 'gcr.io/cloud-builders/docker'\n    id: 'docker-build'\n    args: ['build', '--tag=gcr.io/$PROJECT_ID/dataproc-spark-bigquery-connector-nightly', '-f', 'cloudbuild/Dockerfile', '.']\n\n# 2. Fetch maven and dependencies\n  - name: 'gcr.io/$PROJECT_ID/dataproc-spark-bigquery-connector-nightly'\n    id: 'maven-build'\n    entrypoint: 'bash'\n    args: ['/workspace/cloudbuild/nightly.sh', 'build']\n    env:\n      - 'GOOGLE_CLOUD_PROJECT=${_GOOGLE_CLOUD_PROJECT}'\n      - 'TEMPORARY_GCS_BUCKET=${_TEMPORARY_GCS_BUCKET}'\n      - 'ACCEPTANCE_TEST_BUCKET=${_ACCEPTANCE_TEST_BUCKET}'\n      - 'SERVERLESS_NETWORK_URI=${_SERVERLESS_NETWORK_URI}'\n      - 'BIGLAKE_CONNECTION_ID=${_BIGLAKE_CONNECTION_ID}'\n      - 'BIGQUERY_KMS_KEY_NAME=${_BIGQUERY_KMS_KEY_NAME}'\n      - 'CODECOV_TOKEN=${_CODECOV_TOKEN}'\n  - name: 'gcr.io/$PROJECT_ID/dataproc-spark-bigquery-connector-nightly'\n    id: 'copy-to-gcs'\n    entrypoint: 'bash'\n    args: ['/workspace/cloudbuild/nightly.sh', 'copy-to-gcs']\n\n  - name: 'gcr.io/$PROJECT_ID/dataproc-spark-bigquery-connector-nightly'\n    id: 'deploy'\n    entrypoint: 'bash'\n    args: ['/workspace/cloudbuild/nightly.sh', 'deploy']\n\n  - name: 'gcr.io/cloud-builders/docker'\n    id: 'docker-push'\n    args: ['push', 'gcr.io/$PROJECT_ID/dataproc-spark-bigquery-connector-nightly:latest']\n\nimages: ['gcr.io/$PROJECT_ID/dataproc-spark-bigquery-connector-nightly']\n\n# Many tests, so it takes time\ntimeout: 14400s\n\noptions:\n  machineType: 'E2_HIGHCPU_32'\n\nlogsBucket: spark-bigquery-connector-cloud-build-logs\n"
  },
  {
    "path": "cloudbuild/presubmit.sh",
    "content": "\n#!/bin/bash\n\n# Copyright 2019 Google Inc. All Rights Reserved.\n#\n# Licensed under the Apache License, Version 2.0 (the 'License');\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n#            http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an 'AS IS' BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nset -euxo pipefail\n\nfunction checkenv() {\n  if [ -z \"${CODECOV_TOKEN}\" ]; then\n    echo \"missing environment variable CODECOV_TOKEN\"\n    exit 1\n  fi\n}\n\nunset MAVEN_OPTS\nreadonly BUILD_OPTS='-Xss1g -Xmx20g -XX:MaxMetaspaceSize=10g -XX:ReservedCodeCacheSize=2g -Dsun.zip.disableMemoryMapping=true -DtrimStackTrace=false'\nreadonly MVN_NT=\"./mvnw -B -e -s /workspace/cloudbuild/gcp-settings.xml -Dmaven.repo.local=/workspace/.repository\"\nreadonly MVN=\"${MVN_NT} -t toolchains.xml\"\nreadonly STEP=$1\n\ncd /workspace\n\ncase $STEP in\n  # Download maven and all the dependencies\n  init)\n    checkenv\n    $MVN_NT toolchains:generate-jdk-toolchains-xml -Dtoolchain.file=toolchains.xml\n    cat toolchains.xml\n\n    export MAVEN_OPTS=${BUILD_OPTS}\n    export JAVA_HOME=${JAVA17_HOME}\n    $MVN -T 1C install -DskipTests -Pdsv1_2.12,dsv1_2.13,dsv2_3.1,dsv2_3.2,dsv2_3.3,dsv2_3.4,dsv2_3.5,dsv2_4.0,dsv2_4.1\n    exit\n    ;;\n\n  # Run unit tests\n  unittest)\n    export MAVEN_OPTS=${BUILD_OPTS}\n    export JAVA_HOME=${JAVA17_HOME}\n    $MVN -T 1C test jacoco:report jacoco:report-aggregate -Pcoverage,dsv1_2.12,dsv1_2.13,dsv2_3.1,dsv2_3.2,dsv2_3.3,dsv2_3.4,dsv2_3.5,dsv2_4.0,dsv2_4.1\n    # Upload test coverage report to Codecov\n    bash <(curl -s https://codecov.io/bash) -K -F \"${STEP}\"\n    ;;\n\n  # Run integration tests\n  integrationtest-2.12)\n    export JAVA_HOME=${JAVA8_HOME}\n    $MVN failsafe:integration-test failsafe:verify jacoco:report jacoco:report-aggregate -Pcoverage,integration,dsv1_2.12\n    ;;\n\n  # Run integration tests\n  integrationtest-2.13)\n    export JAVA_HOME=${JAVA8_HOME}\n    $MVN failsafe:integration-test failsafe:verify jacoco:report jacoco:report-aggregate -Pcoverage,integration,dsv1_2.13\n    ;;\n\n  # Run integration tests\n  integrationtest-3.1)\n    export JAVA_HOME=${JAVA8_HOME}\n    $MVN failsafe:integration-test failsafe:verify jacoco:report jacoco:report-aggregate -Pcoverage,integration,dsv2_3.1\n    ;;\n\n  # Run integration tests\n  integrationtest-3.2)\n    export JAVA_HOME=${JAVA8_HOME}\n    $MVN failsafe:integration-test failsafe:verify jacoco:report jacoco:report-aggregate -Pcoverage,integration,dsv2_3.2\n    ;;\n\n  # Run integration tests\n  integrationtest-3.3)\n    $MVN failsafe:integration-test failsafe:verify jacoco:report jacoco:report-aggregate -Pcoverage,integration,dsv2_3.3\n    ;;\n\n  # Run integration tests\n  integrationtest-3.4)\n    $MVN failsafe:integration-test failsafe:verify jacoco:report jacoco:report-aggregate -Pcoverage,integration,dsv2_3.4\n    ;;\n\n  # Run integration tests\n  integrationtest-3.5)\n    $MVN failsafe:integration-test failsafe:verify jacoco:report jacoco:report-aggregate -Pcoverage,integration,dsv2_3.5\n    ;;\n\n  # Run integration tests\n  integrationtest-4.0)\n    $MVN failsafe:integration-test failsafe:verify jacoco:report jacoco:report-aggregate -Pcoverage,integration,dsv2_4.0\n    ;;\n\n  # Run integration tests\n  integrationtest-4.1)\n    $MVN failsafe:integration-test failsafe:verify jacoco:report jacoco:report-aggregate -Pcoverage,integration,dsv2_4.1\n    ;;\n\n  upload-it-to-codecov)\n    checkenv\n    # Upload test coverage report to Codecov\n    bash <(curl -s https://codecov.io/bash) -K -F integrationtest\n    ;;\n\n  *)\n    echo \"Unknown step $STEP\"\n    exit 1\n    ;;\nesac\n"
  },
  {
    "path": "coverage/pom.xml",
    "content": "<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n    xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n    xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\">\n  <modelVersion>4.0.0</modelVersion>\n  <parent>\n    <groupId>com.google.cloud.spark</groupId>\n    <artifactId>spark-bigquery-parent</artifactId>\n    <version>${revision}</version>\n    <relativePath>../spark-bigquery-parent</relativePath>\n  </parent>\n\n  <artifactId>coverage</artifactId>\n  <name>Coverage Report</name>\n  <packaging>pom</packaging>\n\n  <dependencies>\n    <dependency>\n      <groupId>${project.groupId}</groupId>\n      <artifactId>bigquery-connector-common</artifactId>\n      <version>${project.version}</version>\n    </dependency>\n    <dependency>\n      <groupId>${project.groupId}</groupId>\n      <artifactId>spark-bigquery-connector-common</artifactId>\n      <version>${project.version}</version>\n    </dependency>\n  </dependencies>\n\n  <profiles>\n    <profile>\n      <id>coverage</id>\n      <activation>\n        <activeByDefault>false</activeByDefault>\n      </activation>\n      <build>\n        <plugins>\n          <plugin>\n            <groupId>org.jacoco</groupId>\n            <artifactId>jacoco-maven-plugin</artifactId>\n            <executions>\n              <execution>\n                <phase>verify</phase>\n                <goals>\n                  <goal>report-aggregate</goal>\n                </goals>\n              </execution>\n            </executions>\n          </plugin>\n        </plugins>\n      </build>\n    </profile>\n    <profile>\n      <id>all</id>\n      <activation>\n        <activeByDefault>false</activeByDefault>\n      </activation>\n      <dependencies>\n        <dependency>\n          <groupId>${project.groupId}</groupId>\n          <artifactId>spark-bigquery-dsv1-spark3-support</artifactId>\n          <version>${project.version}</version>\n        </dependency>\n        <dependency>\n          <groupId>${project.groupId}</groupId>\n          <artifactId>spark-bigquery_2.11</artifactId>\n          <version>${project.version}</version>\n        </dependency>\n        <dependency>\n          <groupId>${project.groupId}</groupId>\n          <artifactId>spark-bigquery-with-dependencies_2.11</artifactId>\n          <version>${project.version}</version>\n        </dependency>\n        <dependency>\n          <groupId>${project.groupId}</groupId>\n          <artifactId>spark-bigquery_2.12</artifactId>\n          <version>${project.version}</version>\n        </dependency>\n        <dependency>\n          <groupId>${project.groupId}</groupId>\n          <artifactId>spark-bigquery-with-dependencies_2.12</artifactId>\n          <version>${project.version}</version>\n        </dependency>\n        <dependency>\n          <groupId>${project.groupId}</groupId>\n          <artifactId>spark-2.4-bigquery</artifactId>\n          <version>${project.version}</version>\n        </dependency>\n        <dependency>\n          <groupId>${project.groupId}</groupId>\n          <artifactId>spark-3.1-bigquery</artifactId>\n          <version>${project.version}</version>\n        </dependency>\n      </dependencies>\n    </profile>\n    <profile>\n      <id>dsv1</id>\n      <activation>\n        <activeByDefault>false</activeByDefault>\n      </activation>\n      <dependencies>\n        <dependency>\n          <groupId>${project.groupId}</groupId>\n          <artifactId>spark-bigquery-dsv1-spark3-support</artifactId>\n          <version>${project.version}</version>\n        </dependency>\n        <dependency>\n          <groupId>${project.groupId}</groupId>\n          <artifactId>spark-bigquery_2.11</artifactId>\n          <version>${project.version}</version>\n        </dependency>\n        <dependency>\n          <groupId>${project.groupId}</groupId>\n          <artifactId>spark-bigquery-with-dependencies_2.11</artifactId>\n          <version>${project.version}</version>\n        </dependency>\n        <dependency>\n          <groupId>${project.groupId}</groupId>\n          <artifactId>spark-bigquery_2.12</artifactId>\n          <version>${project.version}</version>\n        </dependency>\n        <dependency>\n          <groupId>${project.groupId}</groupId>\n          <artifactId>spark-bigquery-with-dependencies_2.12</artifactId>\n          <version>${project.version}</version>\n        </dependency>\n      </dependencies>\n    </profile>\n    <profile>\n      <id>dsv1_2.11</id>\n      <activation>\n        <activeByDefault>false</activeByDefault>\n      </activation>\n      <dependencies>\n        <dependency>\n          <groupId>${project.groupId}</groupId>\n          <artifactId>spark-bigquery-dsv1-spark3-support</artifactId>\n          <version>${project.version}</version>\n        </dependency>\n        <dependency>\n          <groupId>${project.groupId}</groupId>\n          <artifactId>spark-bigquery_2.11</artifactId>\n          <version>${project.version}</version>\n        </dependency>\n        <dependency>\n          <groupId>${project.groupId}</groupId>\n          <artifactId>spark-bigquery-with-dependencies_2.11</artifactId>\n          <version>${project.version}</version>\n        </dependency>\n      </dependencies>\n    </profile>\n    <profile>\n      <id>dsv1_2.12</id>\n      <activation>\n        <activeByDefault>false</activeByDefault>\n      </activation>\n      <dependencies>\n        <dependency>\n          <groupId>${project.groupId}</groupId>\n          <artifactId>spark-bigquery-dsv1-spark3-support</artifactId>\n          <version>${project.version}</version>\n        </dependency>\n        <dependency>\n          <groupId>${project.groupId}</groupId>\n          <artifactId>spark-bigquery_2.12</artifactId>\n          <version>${project.version}</version>\n        </dependency>\n      </dependencies>\n    </profile>\n    <profile>\n      <id>dsv1_2.13</id>\n      <activation>\n        <activeByDefault>false</activeByDefault>\n      </activation>\n      <dependencies>\n        <dependency>\n          <groupId>${project.groupId}</groupId>\n          <artifactId>spark-bigquery-dsv1-spark3-support</artifactId>\n          <version>${project.version}</version>\n        </dependency>\n        <dependency>\n          <groupId>${project.groupId}</groupId>\n          <artifactId>spark-bigquery_2.13</artifactId>\n          <version>${project.version}</version>\n        </dependency>\n      </dependencies>\n    </profile>\n    <profile>\n      <id>dsv2</id>\n      <activation>\n        <activeByDefault>false</activeByDefault>\n      </activation>\n      <dependencies>\n        <dependency>\n          <groupId>${project.groupId}</groupId>\n          <artifactId>spark-2.4-bigquery</artifactId>\n          <version>${project.version}</version>\n        </dependency>\n        <dependency>\n          <groupId>${project.groupId}</groupId>\n          <artifactId>spark-3.1-bigquery</artifactId>\n          <version>${project.version}</version>\n        </dependency>\n      </dependencies>\n    </profile>\n    <profile>\n      <id>dsv2_2.4</id>\n      <activation>\n        <activeByDefault>false</activeByDefault>\n      </activation>\n      <dependencies>\n        <dependency>\n          <groupId>${project.groupId}</groupId>\n          <artifactId>spark-2.4-bigquery</artifactId>\n          <version>${project.version}</version>\n        </dependency>\n        <dependency>\n          <groupId>${project.groupId}</groupId>\n          <artifactId>spark-bigquery-dsv2-common</artifactId>\n          <version>${project.version}</version>\n        </dependency>\n      </dependencies>\n    </profile>\n    <profile>\n      <id>dsv2_3.1</id>\n      <activation>\n        <activeByDefault>false</activeByDefault>\n      </activation>\n      <dependencies>\n        <dependency>\n          <groupId>${project.groupId}</groupId>\n          <artifactId>spark-3.1-bigquery</artifactId>\n          <version>${project.version}</version>\n        </dependency>\n        <dependency>\n          <groupId>${project.groupId}</groupId>\n          <artifactId>spark-bigquery-dsv2-common</artifactId>\n          <version>${project.version}</version>\n        </dependency>\n      </dependencies>\n    </profile>\n    <profile>\n      <id>dsv2_3.2</id>\n      <activation>\n        <activeByDefault>false</activeByDefault>\n      </activation>\n      <dependencies>\n        <dependency>\n          <groupId>${project.groupId}</groupId>\n          <artifactId>spark-3.2-bigquery</artifactId>\n          <version>${project.version}</version>\n        </dependency>\n      </dependencies>\n    </profile>\n    <profile>\n      <id>dsv2_3.3</id>\n      <activation>\n        <activeByDefault>false</activeByDefault>\n      </activation>\n      <dependencies>\n        <dependency>\n          <groupId>${project.groupId}</groupId>\n          <artifactId>spark-3.3-bigquery</artifactId>\n          <version>${project.version}</version>\n        </dependency>\n      </dependencies>\n    </profile>\n    <profile>\n      <id>dsv2_3.4</id>\n      <activation>\n        <activeByDefault>false</activeByDefault>\n      </activation>\n      <dependencies>\n        <dependency>\n          <groupId>${project.groupId}</groupId>\n          <artifactId>spark-3.4-bigquery</artifactId>\n          <version>${project.version}</version>\n        </dependency>\n      </dependencies>\n    </profile>\n    <profile>\n      <id>dsv2_3.5</id>\n      <activation>\n        <activeByDefault>false</activeByDefault>\n      </activation>\n      <dependencies>\n        <dependency>\n          <groupId>${project.groupId}</groupId>\n          <artifactId>spark-3.5-bigquery</artifactId>\n          <version>${project.version}</version>\n        </dependency>\n      </dependencies>\n    </profile>\n    <profile>\n      <id>dsv2_4.0</id>\n      <activation>\n        <activeByDefault>false</activeByDefault>\n      </activation>\n      <dependencies>\n        <dependency>\n          <groupId>${project.groupId}</groupId>\n          <artifactId>spark-4.0-bigquery</artifactId>\n          <version>${project.version}</version>\n        </dependency>\n      </dependencies>\n    </profile>\n    <profile>\n      <id>dsv2_4.1</id>\n      <activation>\n        <activeByDefault>false</activeByDefault>\n      </activation>\n      <dependencies>\n        <dependency>\n          <groupId>${project.groupId}</groupId>\n          <artifactId>spark-4.1-bigquery</artifactId>\n          <version>${project.version}-preview</version>\n        </dependency>\n      </dependencies>\n    </profile>\n  </profiles>\n</project>\n\n"
  },
  {
    "path": "examples/notebooks/Advanced ML Pipelines.ipynb",
    "content": "{\"cells\": [{\"cell_type\": \"markdown\", \"metadata\": {}, \"source\": \"<h3>Problem: As a PM, I write lots of blogs. How do I know if they will be received well by  readers?</h3>\"}, {\"cell_type\": \"markdown\", \"metadata\": {}, \"source\": \"<table>\\n    <tr>\\n        <td><img src=\\\"https://jayclouse.com/wp-content/uploads/2019/06/hacker_news.webp\\\" height=300 width=300></img></td>\\n        <td><img src=\\\"https://miro.medium.com/max/852/1*wJ18DgYgtsscG63Sn56Oyw.png\\\" height=300 width=300></img></td>\\n    </tr>\\n</table>\"}, {\"cell_type\": \"markdown\", \"metadata\": {}, \"source\": \"<h1>Background on Spark ML</h1>\"}, {\"cell_type\": \"markdown\", \"metadata\": {}, \"source\": \"DataFrame: This ML API uses DataFrame from Spark SQL as an ML dataset, which can hold a variety of data types. E.g., a DataFrame could have different columns storing text, feature vectors, true labels, and predictions.\\n\\nTransformer: A Transformer is an algorithm which can transform one DataFrame into another DataFrame. E.g., an ML model is a Transformer which transforms a DataFrame with features into a DataFrame with predictions.\\n\\nEstimator: An Estimator is an algorithm which can be fit on a DataFrame to produce a Transformer. E.g., a learning algorithm is an Estimator which trains on a DataFrame and produces a model.\\n\\nPipeline: A Pipeline chains multiple Transformers and Estimators together to specify an ML workflow.\\n\\nParameter: All Transformers and Estimators now share a common API for specifying parameters.\"}, {\"cell_type\": \"code\", \"execution_count\": 2, \"metadata\": {}, \"outputs\": [{\"data\": {\"text/html\": \"<img src=\\\"https://spark.apache.org/docs/3.0.0-preview/img/ml-Pipeline.png\\\"/>\", \"text/plain\": \"<IPython.core.display.Image object>\"}, \"execution_count\": 2, \"metadata\": {}, \"output_type\": \"execute_result\"}], \"source\": \"from IPython.display import Image\\nImage(url='https://spark.apache.org/docs/3.0.0-preview/img/ml-Pipeline.png') \"}, {\"cell_type\": \"markdown\", \"metadata\": {}, \"source\": \"<h2>Loading Hackernews Text From BigQuery</h2>\"}, {\"cell_type\": \"code\", \"execution_count\": 4, \"metadata\": {}, \"outputs\": [], \"source\": \"from pyspark.sql import SparkSession\\nspark = SparkSession.builder.getOrCreate()\\nscala_minor_version = str(spark.sparkContext._jvm.scala.util.Properties.versionString().replace(\\\"version \\\",\\\"\\\").split('.')[1])\\nspark = SparkSession.builder.config(\\\"spark.jars.packages\\\", \\\"com.google.cloud.spark:spark-bigquery-with-dependencies_2.\\\" + scala_minor_version + \\\":0.18.0\\\") \\\\\\n                                    .enableHiveSupport() \\\\\\n                                    .getOrCreate()\"}, {\"cell_type\": \"code\", \"execution_count\": 5, \"metadata\": {}, \"outputs\": [], \"source\": \"df = spark.read \\\\\\n  .format(\\\"bigquery\\\") \\\\\\n  .load(\\\"google.com:crosbie-test-project.demos.hackernewssample\\\")\"}, {\"cell_type\": \"code\", \"execution_count\": 84, \"metadata\": {}, \"outputs\": [{\"name\": \"stdout\", \"output_type\": \"stream\", \"text\": \"+-------+-----------------+--------------------+\\n|summary|            score|                text|\\n+-------+-----------------+--------------------+\\n|  count|             1000|                1000|\\n|   mean|            8.188|                null|\\n| stddev|44.01315500863138|                null|\\n|    min|                1|\\\"Do you have a qu...|\\n|    max|             1081|\\u0647\\u064a \\u0634\\u0631\\u0643\\u0629 \\u0645\\u062a\\u062e\\u0635\\u0635\\u0629 \\u0641\\u064a...|\\n+-------+-----------------+--------------------+\\n\\n\"}], \"source\": \"df.describe().show()\"}, {\"cell_type\": \"markdown\", \"metadata\": {}, \"source\": \"<h2>Prepare the data using Spark SQL<h2>\\n<h4>Create a random ID to distribute between test and training sets</h4>\\n<h4>Make the score a binary variable so we can run a logicistic regression model on it</h4>\"}, {\"cell_type\": \"code\", \"execution_count\": 86, \"metadata\": {}, \"outputs\": [], \"source\": \"df.registerTempTable(\\\"df\\\")\\nfrom pyspark.sql import functions as F\\ndf_full = spark.sql(\\\"select cast(round(rand() * 100) as int) as id, text, case when score > 10 THEN 1.0 else 0.0 end as label from df\\\")\"}, {\"cell_type\": \"code\", \"execution_count\": 87, \"metadata\": {}, \"outputs\": [{\"name\": \"stdout\", \"output_type\": \"stream\", \"text\": \"+---+-----+\\n| id|count|\\n+---+-----+\\n| 22|   17|\\n| 39|   16|\\n| 25|   15|\\n| 55|   15|\\n| 23|   15|\\n| 47|   15|\\n| 38|   15|\\n| 71|   14|\\n|  5|   14|\\n| 98|   14|\\n| 32|   14|\\n| 44|   13|\\n| 43|   13|\\n| 59|   13|\\n| 85|   13|\\n| 83|   13|\\n| 24|   13|\\n| 82|   13|\\n| 58|   13|\\n| 53|   13|\\n+---+-----+\\nonly showing top 20 rows\\n\\n\"}], \"source\": \"df_full.groupby('id').count().sort('count', ascending=False).show()\"}, {\"cell_type\": \"markdown\", \"metadata\": {}, \"source\": \"<h4>Create our training and test sets</h4>\"}, {\"cell_type\": \"code\", \"execution_count\": 95, \"metadata\": {}, \"outputs\": [], \"source\": \"#use the above table to identify ~10% holdback for test\\nholdback = \\\"(22,39,25,55,23,47,38,71,5,98)\\\"\"}, {\"cell_type\": \"code\", \"execution_count\": 115, \"metadata\": {}, \"outputs\": [], \"source\": \"#create test set by dropping label \\ndf_test = df_full.where(\\\"id in {}\\\".format(holdback))\\ndf_test = df_test.drop(\\\"label\\\")\\nrdd_test = df_test.rdd\\ntest = rdd_test.map(tuple)\\ntesting = spark.createDataFrame(test,[\\\"id\\\", \\\"text\\\"])\"}, {\"cell_type\": \"code\", \"execution_count\": 99, \"metadata\": {}, \"outputs\": [], \"source\": \"#training data - Spark ML is expecting tuples so convert to RDD to map back to tuples (may not be required)\\ndf_train = df_full.where(\\\"id not in {}\\\".format(holdback))\\nrdd_train = df_train.rdd\\ntrain = rdd_train.map(tuple)\\ntraining = spark.createDataFrame(train,[\\\"id\\\", \\\"text\\\", \\\"label\\\"])\"}, {\"cell_type\": \"code\", \"execution_count\": 114, \"metadata\": {}, \"outputs\": [{\"data\": {\"text/plain\": \"91\"}, \"execution_count\": 114, \"metadata\": {}, \"output_type\": \"execute_result\"}], \"source\": \"#a little less than 10% of the trainig data is positively reviewed. Should be okay. \\ntraining.where(\\\"label > 0\\\").count()\"}, {\"cell_type\": \"markdown\", \"metadata\": {}, \"source\": \"<h2>Build our ML Pipeline</h2>\"}, {\"cell_type\": \"markdown\", \"metadata\": {}, \"source\": \"<h3>Configure an ML pipeline, which consists of three stages: tokenizer, hashingTF, and lr.</h3>\"}, {\"cell_type\": \"code\", \"execution_count\": 44, \"metadata\": {}, \"outputs\": [], \"source\": \"from pyspark.ml import Pipeline\\nfrom pyspark.ml.classification import LogisticRegression\\nfrom pyspark.ml.feature import HashingTF, Tokenizer\"}, {\"cell_type\": \"code\", \"execution_count\": 116, \"metadata\": {}, \"outputs\": [], \"source\": \"\\ntokenizer = Tokenizer(inputCol=\\\"text\\\", outputCol=\\\"words\\\")\\n\\nhashingTF = HashingTF(inputCol=tokenizer.getOutputCol(), outputCol=\\\"features\\\")\\n\\nlr = LogisticRegression(maxIter=10, regParam=0.001)\\n\\npipeline = Pipeline(stages=[tokenizer, hashingTF, lr])\"}, {\"cell_type\": \"code\", \"execution_count\": 117, \"metadata\": {}, \"outputs\": [], \"source\": \"# Fit the pipeline to hacker news articles\\nmodel = pipeline.fit(training)\"}, {\"cell_type\": \"markdown\", \"metadata\": {}, \"source\": \"<h3>Review model based on test set</h3>\"}, {\"cell_type\": \"code\", \"execution_count\": 119, \"metadata\": {}, \"outputs\": [{\"name\": \"stdout\", \"output_type\": \"stream\", \"text\": \"(22, Other) --> prob=[0.3819756099050897,0.6180243900949102], prediction=1.000000\\n(55, While we may talk often about other pieces of the software development lifecycle, shell scripts don&#x27;t usually get to take center stage. Let&#x27;s share some creative little scripts we&#x27;ve come up with over the years!) --> prob=[0.4063985380451119,0.5936014619548882], prediction=1.000000\\n\"}], \"source\": \"# Make predictions on test documents and print columns of interest.\\nprediction = model.transform(testing)\\nselected = prediction.select(\\\"id\\\", \\\"text\\\", \\\"probability\\\", \\\"prediction\\\").where(\\\"prediction > 0\\\")\\nfor row in selected.collect():\\n    rid, text, prob, prediction = row\\n    print(\\\"(%d, %s) --> prob=%s, prediction=%f\\\" % (rid, text, str(prob), prediction))\"}, {\"cell_type\": \"markdown\", \"metadata\": {}, \"source\": \"<h2>Use the model to decide which PM blog to use</h2>\"}, {\"cell_type\": \"code\", \"execution_count\": 122, \"metadata\": {}, \"outputs\": [], \"source\": \"my_blog = \\\"\\\"\\\"\\nThe life of a data scientist can be challenging. If you\\u2019re in this role, your job may involve anything from understanding the day-to-day business behind the data to keeping up with the latest machine learning academic research. With all that a data scientist must do to be effective, you shouldn\\u2019t have to worry about migrating data environments or dealing with processing limitations associated with working with raw data. \\n\\nGoogle Cloud\\u2019s Dataproc lets you run cloud-native Apache Spark and Hadoop clusters easily. This is especially helpful as data growth relocates data scientists and machine learning researchers from personal servers and laptops into distributed cluster environments like Apache Spark, which offers Python and R interfaces for data of any size. You can run open source data processing on Google Cloud, making Dataproc one of the fastest ways to extend your existing data analysis to cloud-sized datasets.  \\n\\nWe\\u2019re announcing the general availability of several new Dataproc features that will let you apply the open source tools, algorithms, and programming languages that you use today to large datasets. This can be done without having to manage clusters and computers. These new GA features make it possible for data scientists and analysts to build production systems based on personalized development environments. \\n\\\"\\\"\\\"\\n\\npmm_blog = \\\"\\\"\\\"\\nDataproc makes open source data and analytics processing fast, easy, and more secure in the cloud.\\n\\nNew customers get $300 in free credits to spend on Dataproc or other Google Cloud products during the first 90 days. \\n\\nGo to console\\nSpin up an autoscaling cluster in 90 seconds on custom machines\\nBuild fully managed Apache Spark, Apache Hadoop, Presto, and other OSS clusters\\nOnly pay for the resources you use and lower the total cost of ownership of OSS\\nEncryption and unified security built into every cluster\\nAccelerate data science with purpose-built clusters\\n\\\"\\\"\\\"\\n\\n\\nboss_blog = \\\"\\\"\\\"\\n\\nIn 2014, we made a decision to build our core data platform on Google Cloud Platform and one of the products which was critical for the decision was Google BigQuery. The scale at which it enabled us to perform analysis we knew would be critical in long run for our business. Today we have more than 200 unique users performing analysis on a monthly basis.\\n\\nOnce we started using Google BiqQuery at scale we soon realized our analysts needed better tooling around it. The key requests we started getting were\\n\\nAbility to schedule jobs: Analysts needed to have ability to run queries at regular intervals to generate data and metrics.\\nDefine workflow of queries: Basically analysts wanted to run multiple queries in a sequence and share data across them through temp tables.\\nSimplified data sharing: Finally it became clear teams needed to share this data generated with other systems. For example download it to leverage in R programs or send it to another system to process through Kafka.\\n\\n\\\"\\\"\\\"\"}, {\"cell_type\": \"code\", \"execution_count\": 129, \"metadata\": {}, \"outputs\": [], \"source\": \"pm_blog_off = spark.createDataFrame([\\n    ('me', my_blog),\\n    ('pmm', pmm_blog),\\n    ('sudhir', boss_blog)\\n], [\\\"id\\\", \\\"text\\\"])\"}, {\"cell_type\": \"code\", \"execution_count\": 130, \"metadata\": {}, \"outputs\": [], \"source\": \"blog_prediction = model.transform(pm_blog_off)\"}, {\"cell_type\": \"code\", \"execution_count\": 131, \"metadata\": {}, \"outputs\": [{\"name\": \"stdout\", \"output_type\": \"stream\", \"text\": \"+------+----------+\\n|    id|prediction|\\n+------+----------+\\n|    me|       0.0|\\n|   pmm|       1.0|\\n|sudhir|       0.0|\\n+------+----------+\\n\\n\"}], \"source\": \"blog_prediction.select(\\\"id\\\",\\\"prediction\\\").show()\"}, {\"cell_type\": \"markdown\", \"metadata\": {}, \"source\": \"<h2>Save our trained model to GCS</h2>\"}, {\"cell_type\": \"code\", \"execution_count\": 137, \"metadata\": {}, \"outputs\": [], \"source\": \"model.save(\\\"gs://crosbie-dev/blog-validation-model\\\")\"}], \"metadata\": {\"kernelspec\": {\"display_name\": \"Python 3\", \"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.8.6\"}}, \"nbformat\": 4, \"nbformat_minor\": 4}"
  },
  {
    "path": "examples/notebooks/Distribute_Generic_Functions.ipynb",
    "content": "{\"cells\": [{\"cell_type\": \"markdown\", \"metadata\": {}, \"source\": \"<h1>Distribute functions across a BigQuery dataset using Spark</h1>\"}, {\"cell_type\": \"markdown\", \"metadata\": {}, \"source\": \"<h3>Problem: As a PM, I give lots of public presentations and I want to make sure I use images that have an open license</h3>\"}, {\"cell_type\": \"markdown\", \"metadata\": {}, \"source\": \"<img src=\\\"https://storage.googleapis.com/kaggle-datasets-images/21870/28108/ef05bb21ad2ece2c6af034ceced30239/dataset-cover.jpeg?t=2018-04-16-23-00-50\\\" height=400 width=400>    \\n<h4> BigQuery Public Datasets - Open Images: 9 million URLs of open images (with labels across 6,000 categories)</h4>\"}, {\"cell_type\": \"markdown\", \"metadata\": {}, \"source\": \"<h3>For smaller datasets, can use BigQuery magic and python</h3>\"}, {\"cell_type\": \"code\", \"execution_count\": 1, \"metadata\": {}, \"outputs\": [], \"source\": \"%reload_ext google.cloud.bigquery\"}, {\"cell_type\": \"code\", \"execution_count\": 2, \"metadata\": {}, \"outputs\": [{\"name\": \"stderr\", \"output_type\": \"stream\", \"text\": \"Query complete after 0.01s: 100%|\\u2588\\u2588\\u2588\\u2588\\u2588\\u2588\\u2588\\u2588\\u2588\\u2588| 1/1 [00:00<00:00, 1199.06query/s]\\nDownloading: 100%|\\u2588\\u2588\\u2588\\u2588\\u2588\\u2588\\u2588\\u2588\\u2588\\u2588| 10/10 [00:01<00:00,  7.46rows/s]\\n\"}], \"source\": \"%%bigquery  pd_results --use_bqstorage_api\\n\\nSELECT original_url, title \\nFROM `bigquery-public-data.open_images.images` \\nWHERE license = 'https://creativecommons.org/licenses/by/2.0/' \\nLIMIT 10\"}, {\"cell_type\": \"code\", \"execution_count\": 3, \"metadata\": {}, \"outputs\": [{\"data\": {\"text/html\": \"<div>\\n<style scoped>\\n    .dataframe tbody tr th:only-of-type {\\n        vertical-align: middle;\\n    }\\n\\n    .dataframe tbody tr th {\\n        vertical-align: top;\\n    }\\n\\n    .dataframe thead th {\\n        text-align: right;\\n    }\\n</style>\\n<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n  <thead>\\n    <tr style=\\\"text-align: right;\\\">\\n      <th></th>\\n      <th>original_url</th>\\n      <th>title</th>\\n    </tr>\\n  </thead>\\n  <tbody>\\n    <tr>\\n      <th>0</th>\\n      <td>https://farm4.staticflickr.com/7162/6707198107_1993d73034_o.jpg</td>\\n      <td>Men\\u2019s Pique Polo (NA)</td>\\n    </tr>\\n    <tr>\\n      <th>1</th>\\n      <td>https://c8.staticflickr.com/4/3676/11012143656_40a5269d42_o.jpg</td>\\n      <td>Ladybug on green leaf</td>\\n    </tr>\\n    <tr>\\n      <th>2</th>\\n      <td>https://c4.staticflickr.com/9/8157/7599640374_f278fa5bd7_o.jpg</td>\\n      <td>n53_w1150</td>\\n    </tr>\\n    <tr>\\n      <th>3</th>\\n      <td>https://c7.staticflickr.com/5/4101/4861005456_71b3b0be00_o.jpg</td>\\n      <td>DSC_4918</td>\\n    </tr>\\n    <tr>\\n      <th>4</th>\\n      <td>https://farm5.staticflickr.com/5443/17832643436_904497178e_o.jpg</td>\\n      <td>Central Accord 2015</td>\\n    </tr>\\n  </tbody>\\n</table>\\n</div>\", \"text/plain\": \"                                                       original_url  \\\\\\n0   https://farm4.staticflickr.com/7162/6707198107_1993d73034_o.jpg   \\n1   https://c8.staticflickr.com/4/3676/11012143656_40a5269d42_o.jpg   \\n2    https://c4.staticflickr.com/9/8157/7599640374_f278fa5bd7_o.jpg   \\n3    https://c7.staticflickr.com/5/4101/4861005456_71b3b0be00_o.jpg   \\n4  https://farm5.staticflickr.com/5443/17832643436_904497178e_o.jpg   \\n\\n                   title  \\n0  Men\\u2019s Pique Polo (NA)  \\n1  Ladybug on green leaf  \\n2              n53_w1150  \\n3               DSC_4918  \\n4    Central Accord 2015  \"}, \"execution_count\": 3, \"metadata\": {}, \"output_type\": \"execute_result\"}], \"source\": \"#review what our image database contains. \\nimport pandas as pd\\npd.set_option('display.max_colwidth', None)\\npd_results.head()\"}, {\"cell_type\": \"markdown\", \"metadata\": {}, \"source\": \"Looks like a great set of images but how do I find what I need? What's a DSC-4918?\"}, {\"cell_type\": \"code\", \"execution_count\": 4, \"metadata\": {}, \"outputs\": [], \"source\": \"#function that makes is super easy to abstract some high confidence labels about my image.\\nfrom google.cloud import vision\\ndef AnnotateHighConfidenceLabelsFromImage(image_uri):\\n    client = vision.ImageAnnotatorClient()\\n    request = {\\n            'image': {\\n            'source': {'image_uri': image_uri},\\n             },\\n         }\\n    response = client.annotate_image(request)\\n\\n    high_confidence_labels = []\\n    for la in response.label_annotations:\\n        if float(la.score * 100) > 90.0:\\n            high_confidence_labels.append(la.description)\\n\\n    if len(high_confidence_labels) < 1:\\n        high_confidence_labels.append(\\\"No labels detected\\\")\\n        \\n    return str(high_confidence_labels)\"}, {\"cell_type\": \"code\", \"execution_count\": 5, \"metadata\": {}, \"outputs\": [{\"name\": \"stdout\", \"output_type\": \"stream\", \"text\": \"['No labels detected']\\n['No labels detected']\\n['Branch', 'Organism', 'Plant community', 'Monochrome photography', 'Monochrome', 'Adaptation']\\n['Arm', 'Finger', 'People', 'Comfort', 'Hand', 'Child']\\n['Electronic device', 'Furniture', 'Technology', 'Table', 'Laptop', 'Computer accessory', 'Computer']\\n['Branch', 'Twig', 'Adaptation', 'Woody plant']\\n['Organism', 'Bird']\\n['Atmosphere', 'Cloud', 'Atmospheric phenomenon']\\n['Dog breed', 'Dog', 'Carnivore', 'Mammal']\\n['Text', 'White', 'Line', 'Font', 'Colorfulness']\\n\"}], \"source\": \"#for 10 images, no problem to simply loop through them to get the labels. \\nfor image in pd_results['original_url']:\\n    labels = AnnotateHighConfidenceLabelsFromImage(image)\\n    print(labels)\"}, {\"cell_type\": \"markdown\", \"metadata\": {}, \"source\": \"<h3>Expanding to the full corpus of images will require scaling with Spark</h3>\"}, {\"cell_type\": \"code\", \"execution_count\": 6, \"metadata\": {}, \"outputs\": [], \"source\": \"#but what happens when I need to run that label extractor against the full dataset of images.\\nno_limit_query = \\\"SELECT original_url, title FROM `bigquery-public-data.open_images.images` WHERE license = 'https://creativecommons.org/licenses/by/2.0/' LIMIT 100\\\"\"}, {\"cell_type\": \"code\", \"execution_count\": 7, \"metadata\": {}, \"outputs\": [], \"source\": \"# use Spark to load full dataset into Spark Dataframe. Setup Spark Session with BQ storage connector\\nfrom pyspark.sql import SparkSession\\nspark = SparkSession.builder.config(\\\"spark.jars.packages\\\", \\\"com.google.cloud.spark:spark-bigquery-with-dependencies_2.\\\" + str(12) + \\\":0.18.0\\\") \\\\\\n                                    .enableHiveSupport() \\\\\\n                                    .getOrCreate()\\n\\n#Use this function to push the processing of the query back to BQ but still use BQ Storage Connector to\\n#pull back data in parallel and directly into a Spark DF that can handle the size. \\nfrom google.cloud import bigquery\\nfrom pyspark import StorageLevel\\n\\ndef bq2df(QUERY):\\n    bq = bigquery.Client()\\n    query_job = bq.query(QUERY)\\n    query_job.result()\\n\\n    df = spark.read.format('bigquery') \\\\\\n        .option('dataset', query_job.destination.dataset_id) \\\\\\n        .load(query_job.destination.table_id) \\\\\\n        .persist(StorageLevel.MEMORY_AND_DISK)\\n\\n    return df\\n\"}, {\"cell_type\": \"code\", \"execution_count\": 8, \"metadata\": {}, \"outputs\": [{\"name\": \"stdout\", \"output_type\": \"stream\", \"text\": \"100\\nroot\\n |-- original_url: string (nullable = true)\\n |-- title: string (nullable = true)\\n\\n\"}], \"source\": \"df = bq2df(no_limit_query)\\nprint(df.count())\\ndf.printSchema()\\n\"}, {\"cell_type\": \"code\", \"execution_count\": 9, \"metadata\": {}, \"outputs\": [], \"source\": \"#I'm now going to Spark-ify my python function with no code changes.\\n\\nfrom pyspark.sql.functions import udf\\n\\n@udf(\\\"string\\\")\\ndef AnnotateHighConfidenceLabelsFromImage_UDF(image_uri):\\n    from google.cloud import vision\\n    client = vision.ImageAnnotatorClient()\\n    request = {\\n            'image': {\\n            'source': {'image_uri': image_uri},\\n             },\\n         }\\n    response = client.annotate_image(request)\\n\\n    high_confidence_labels = []\\n    for la in response.label_annotations:\\n        if float(la.score * 100) > 90.0:\\n            high_confidence_labels.append(la.description)\\n\\n    if len(high_confidence_labels) < 1:\\n        high_confidence_labels.append(\\\"No labels detected\\\")\\n        \\n    return str(high_confidence_labels)\"}, {\"cell_type\": \"code\", \"execution_count\": 10, \"metadata\": {}, \"outputs\": [], \"source\": \"df_results = df.select(\\\"original_url\\\", \\\"title\\\",\\\\\\n            AnnotateHighConfidenceLabelsFromImage_UDF(\\\"original_url\\\").alias(\\\"labels\\\"))\\\\\\n            .cache()\"}, {\"cell_type\": \"code\", \"execution_count\": 11, \"metadata\": {}, \"outputs\": [], \"source\": \"#at this point, might make sense to save this table out to my hive metastore to avoid re-processing all the images \\n#df_results.write.saveAsTable(\\\"HighConfidenceLabelsAndImages\\\")\"}, {\"cell_type\": \"code\", \"execution_count\": 12, \"metadata\": {}, \"outputs\": [{\"name\": \"stdout\", \"output_type\": \"stream\", \"text\": \"+----------------------------------------------------------------+--------------------------------------+-----------------------------------------------------------------------------------------------------+\\n|original_url                                                    |title                                 |labels                                                                                               |\\n+----------------------------------------------------------------+--------------------------------------+-----------------------------------------------------------------------------------------------------+\\n|https://farm4.staticflickr.com/7162/6707198107_1993d73034_o.jpg |Men\\u2019s Pique Polo (NA)                 |['No labels detected']                                                                               |\\n|https://c8.staticflickr.com/4/3676/11012143656_40a5269d42_o.jpg |Ladybug on green leaf                 |['No labels detected']                                                                               |\\n|https://c4.staticflickr.com/9/8157/7599640374_f278fa5bd7_o.jpg  |n53_w1150                             |['Branch', 'Organism', 'Plant community', 'Monochrome photography', 'Monochrome', 'Adaptation']      |\\n|https://c7.staticflickr.com/5/4101/4861005456_71b3b0be00_o.jpg  |DSC_4918                              |['Arm', 'Finger', 'People', 'Comfort', 'Hand', 'Child']                                              |\\n|https://farm5.staticflickr.com/5443/17832643436_904497178e_o.jpg|Central Accord 2015                   |['Electronic device', 'Furniture', 'Technology', 'Table', 'Laptop', 'Computer accessory', 'Computer']|\\n|https://c5.staticflickr.com/4/3282/3066052882_853bb737f6_o.jpg  |Frilly I saw on the way to RDH at Tiwi|['Branch', 'Twig', 'Adaptation', 'Woody plant']                                                      |\\n|https://farm4.staticflickr.com/1152/532400494_d65f8b7970_o.jpg  |DSC_0451                              |['Organism', 'Bird']                                                                                 |\\n|https://c7.staticflickr.com/8/7203/6945757213_b8293c6df0_o.jpg  |Adam's Peak, Sri Lanka                |['Atmosphere', 'Cloud', 'Atmospheric phenomenon']                                                    |\\n|https://farm2.staticflickr.com/8631/15963608298_e7430c92cf_o.jpg|Danielle and Monty                    |['Dog breed', 'Dog', 'Carnivore', 'Mammal']                                                          |\\n|https://c7.staticflickr.com/4/3847/14961964127_51a808891b_o.jpg |Peter Mayle Books21                   |['Text', 'White', 'Line', 'Font', 'Colorfulness']                                                    |\\n+----------------------------------------------------------------+--------------------------------------+-----------------------------------------------------------------------------------------------------+\\nonly showing top 10 rows\\n\\n\"}], \"source\": \"df_results.show(10, truncate=False)\"}, {\"cell_type\": \"code\", \"execution_count\": 13, \"metadata\": {}, \"outputs\": [{\"name\": \"stdout\", \"output_type\": \"stream\", \"text\": \"+----------------------------------------------------------------+-------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------+\\n|original_url                                                    |title                                      |labels                                                                                                                                |\\n+----------------------------------------------------------------+-------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------+\\n|https://farm4.staticflickr.com/1152/532400494_d65f8b7970_o.jpg  |DSC_0451                                   |['Organism', 'Bird']                                                                                                                  |\\n|https://farm5.staticflickr.com/3711/11060890716_08737a2dd7_o.jpg|Pale-breasted spinetail brasso seco nov2013|['Branch', 'Bird', 'Twig']                                                                                                            |\\n|https://c4.staticflickr.com/1/31/48416653_90f005725b_o.jpg      |Thousand Oaks as seen from Ladyface Peak   |['Landscape', 'Residential area', 'Aerial photography', 'Atmospheric phenomenon', \\\"Bird's-eye view\\\", 'Suburb', 'Plain']               |\\n|https://c1.staticflickr.com/1/33/66496718_d17cac35c8_o.jpg      |Canyon Lands                               |['Branch', 'Sky', 'Twig', 'Bird']                                                                                                     |\\n|https://c7.staticflickr.com/9/8616/16415108690_51ec731c1f_o.jpg |Sarphatipark @ De Pijp @ Amsterdam         |['Body of water', 'Water', 'Vertebrate', 'Bird', 'Ducks, geese and swans', 'Pond', 'Waterway', 'Water bird', 'Channel', 'Watercourse']|\\n+----------------------------------------------------------------+-------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------+\\n\\n\"}], \"source\": \"from pyspark.sql.functions import col\\ndf_results.where(col(\\\"labels\\\").contains(\\\"Bird\\\")).show(truncate=False)\"}, {\"cell_type\": \"markdown\", \"metadata\": {}, \"source\": \"Could write back to BQ if I want in the Warehouse or keep in my Hive datamart. \\nMany customers use this technique to scale code they don't want to touck\"}], \"metadata\": {\"kernelspec\": {\"display_name\": \"PySpark\", \"language\": \"python\", \"name\": \"pyspark\"}, \"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.8.6\"}}, \"nbformat\": 4, \"nbformat_minor\": 4}"
  },
  {
    "path": "examples/notebooks/Top words in Shakespeare by work.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Using the Spark BigQuery connector in Jupyter\\n\",\n    \"Use a Python kernel (not PySpark) to allow configuring the SparkSession inside the notebook.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"from pyspark.sql import SparkSession\\n\",\n    \"spark = SparkSession.builder \\\\\\n\",\n    \"  .appName('Top Shakepeare words')\\\\\\n\",\n    \"  .config('spark.jars', 'gs://spark-lib/bigquery/spark-bigquery-latest.jar') \\\\\\n\",\n    \"  .getOrCreate()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Read the data in from BigQuery\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"df = spark.read \\\\\\n\",\n    \"  .format('bigquery') \\\\\\n\",\n    \"  .load('bigquery-public-data.samples.shakespeare')\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Convert words to lower case and filter out stop words\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"from pyspark.ml.feature import StopWordsRemover\\n\",\n    \"from pyspark.sql import functions as F\\n\",\n    \"\\n\",\n    \"df = df.withColumn('lowered', F.array(F.lower(df.word)))\\n\",\n    \"\\n\",\n    \"remover = StopWordsRemover(inputCol='lowered', outputCol='filtered')\\n\",\n    \"\\n\",\n    \"df = remover.transform(df)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"Create `(count, word)` struct and take the max of that in each corpus\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {\n    \"scrolled\": false\n   },\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style scoped>\\n\",\n       \"    .dataframe tbody tr th:only-of-type {\\n\",\n       \"        vertical-align: middle;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>corpus</th>\\n\",\n       \"      <th>word</th>\\n\",\n       \"      <th>count</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>1kinghenryiv</td>\\n\",\n       \"      <td>henry</td>\\n\",\n       \"      <td>252</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>1kinghenryvi</td>\\n\",\n       \"      <td>thy</td>\\n\",\n       \"      <td>157</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2</th>\\n\",\n       \"      <td>2kinghenryiv</td>\\n\",\n       \"      <td>falstaff</td>\\n\",\n       \"      <td>199</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>3</th>\\n\",\n       \"      <td>2kinghenryvi</td>\\n\",\n       \"      <td>thou</td>\\n\",\n       \"      <td>187</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>4</th>\\n\",\n       \"      <td>3kinghenryvi</td>\\n\",\n       \"      <td>king</td>\\n\",\n       \"      <td>249</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>5</th>\\n\",\n       \"      <td>allswellthatendswell</td>\\n\",\n       \"      <td>parolles</td>\\n\",\n       \"      <td>165</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>6</th>\\n\",\n       \"      <td>antonyandcleopatra</td>\\n\",\n       \"      <td>antony</td>\\n\",\n       \"      <td>284</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>7</th>\\n\",\n       \"      <td>asyoulikeit</td>\\n\",\n       \"      <td>rosalind</td>\\n\",\n       \"      <td>217</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>8</th>\\n\",\n       \"      <td>comedyoferrors</td>\\n\",\n       \"      <td>syracuse</td>\\n\",\n       \"      <td>204</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>9</th>\\n\",\n       \"      <td>coriolanus</td>\\n\",\n       \"      <td>coriolanus</td>\\n\",\n       \"      <td>207</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>10</th>\\n\",\n       \"      <td>cymbeline</td>\\n\",\n       \"      <td>imogen</td>\\n\",\n       \"      <td>137</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>11</th>\\n\",\n       \"      <td>hamlet</td>\\n\",\n       \"      <td>hamlet</td>\\n\",\n       \"      <td>407</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>12</th>\\n\",\n       \"      <td>juliuscaesar</td>\\n\",\n       \"      <td>brutus</td>\\n\",\n       \"      <td>235</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>13</th>\\n\",\n       \"      <td>kinghenryv</td>\\n\",\n       \"      <td>king</td>\\n\",\n       \"      <td>217</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>14</th>\\n\",\n       \"      <td>kinghenryviii</td>\\n\",\n       \"      <td>henry</td>\\n\",\n       \"      <td>122</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>15</th>\\n\",\n       \"      <td>kingjohn</td>\\n\",\n       \"      <td>king</td>\\n\",\n       \"      <td>176</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>16</th>\\n\",\n       \"      <td>kinglear</td>\\n\",\n       \"      <td>king</td>\\n\",\n       \"      <td>243</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>17</th>\\n\",\n       \"      <td>kingrichardii</td>\\n\",\n       \"      <td>thy</td>\\n\",\n       \"      <td>160</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>18</th>\\n\",\n       \"      <td>kingrichardiii</td>\\n\",\n       \"      <td>king</td>\\n\",\n       \"      <td>201</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>19</th>\\n\",\n       \"      <td>loverscomplaint</td>\\n\",\n       \"      <td>o</td>\\n\",\n       \"      <td>10</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>20</th>\\n\",\n       \"      <td>loveslabourslost</td>\\n\",\n       \"      <td>biron</td>\\n\",\n       \"      <td>169</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>21</th>\\n\",\n       \"      <td>macbeth</td>\\n\",\n       \"      <td>macbeth</td>\\n\",\n       \"      <td>267</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>22</th>\\n\",\n       \"      <td>measureforemeasure</td>\\n\",\n       \"      <td>duke</td>\\n\",\n       \"      <td>210</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>23</th>\\n\",\n       \"      <td>merchantofvenice</td>\\n\",\n       \"      <td>portia</td>\\n\",\n       \"      <td>130</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>24</th>\\n\",\n       \"      <td>merrywivesofwindsor</td>\\n\",\n       \"      <td>mistress</td>\\n\",\n       \"      <td>310</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>25</th>\\n\",\n       \"      <td>midsummersnightsdream</td>\\n\",\n       \"      <td>love</td>\\n\",\n       \"      <td>102</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>26</th>\\n\",\n       \"      <td>muchadoaboutnothing</td>\\n\",\n       \"      <td>pedro</td>\\n\",\n       \"      <td>148</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>27</th>\\n\",\n       \"      <td>othello</td>\\n\",\n       \"      <td>othello</td>\\n\",\n       \"      <td>313</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>28</th>\\n\",\n       \"      <td>periclesprinceoftyre</td>\\n\",\n       \"      <td>pericles</td>\\n\",\n       \"      <td>177</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>29</th>\\n\",\n       \"      <td>rapeoflucrece</td>\\n\",\n       \"      <td>thy</td>\\n\",\n       \"      <td>97</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>30</th>\\n\",\n       \"      <td>romeoandjuliet</td>\\n\",\n       \"      <td>thou</td>\\n\",\n       \"      <td>239</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>31</th>\\n\",\n       \"      <td>sonnets</td>\\n\",\n       \"      <td>thy</td>\\n\",\n       \"      <td>240</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>32</th>\\n\",\n       \"      <td>tamingoftheshrew</td>\\n\",\n       \"      <td>petruchio</td>\\n\",\n       \"      <td>174</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>33</th>\\n\",\n       \"      <td>tempest</td>\\n\",\n       \"      <td>thou</td>\\n\",\n       \"      <td>142</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>34</th>\\n\",\n       \"      <td>timonofathens</td>\\n\",\n       \"      <td>timon</td>\\n\",\n       \"      <td>246</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>35</th>\\n\",\n       \"      <td>titusandronicus</td>\\n\",\n       \"      <td>andronicus</td>\\n\",\n       \"      <td>202</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>36</th>\\n\",\n       \"      <td>troilusandcressida</td>\\n\",\n       \"      <td>cressida</td>\\n\",\n       \"      <td>190</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>37</th>\\n\",\n       \"      <td>twelfthnight</td>\\n\",\n       \"      <td>sir</td>\\n\",\n       \"      <td>273</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>38</th>\\n\",\n       \"      <td>twogentlemenofverona</td>\\n\",\n       \"      <td>proteus</td>\\n\",\n       \"      <td>162</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>39</th>\\n\",\n       \"      <td>various</td>\\n\",\n       \"      <td>love</td>\\n\",\n       \"      <td>37</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>40</th>\\n\",\n       \"      <td>venusandadonis</td>\\n\",\n       \"      <td>'</td>\\n\",\n       \"      <td>68</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>41</th>\\n\",\n       \"      <td>winterstale</td>\\n\",\n       \"      <td>leontes</td>\\n\",\n       \"      <td>133</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"                   corpus        word  count\\n\",\n       \"0            1kinghenryiv       henry    252\\n\",\n       \"1            1kinghenryvi         thy    157\\n\",\n       \"2            2kinghenryiv    falstaff    199\\n\",\n       \"3            2kinghenryvi        thou    187\\n\",\n       \"4            3kinghenryvi        king    249\\n\",\n       \"5    allswellthatendswell    parolles    165\\n\",\n       \"6      antonyandcleopatra      antony    284\\n\",\n       \"7             asyoulikeit    rosalind    217\\n\",\n       \"8          comedyoferrors    syracuse    204\\n\",\n       \"9              coriolanus  coriolanus    207\\n\",\n       \"10              cymbeline      imogen    137\\n\",\n       \"11                 hamlet      hamlet    407\\n\",\n       \"12           juliuscaesar      brutus    235\\n\",\n       \"13             kinghenryv        king    217\\n\",\n       \"14          kinghenryviii       henry    122\\n\",\n       \"15               kingjohn        king    176\\n\",\n       \"16               kinglear        king    243\\n\",\n       \"17          kingrichardii         thy    160\\n\",\n       \"18         kingrichardiii        king    201\\n\",\n       \"19        loverscomplaint           o     10\\n\",\n       \"20       loveslabourslost       biron    169\\n\",\n       \"21                macbeth     macbeth    267\\n\",\n       \"22     measureforemeasure        duke    210\\n\",\n       \"23       merchantofvenice      portia    130\\n\",\n       \"24    merrywivesofwindsor    mistress    310\\n\",\n       \"25  midsummersnightsdream        love    102\\n\",\n       \"26    muchadoaboutnothing       pedro    148\\n\",\n       \"27                othello     othello    313\\n\",\n       \"28   periclesprinceoftyre    pericles    177\\n\",\n       \"29          rapeoflucrece         thy     97\\n\",\n       \"30         romeoandjuliet        thou    239\\n\",\n       \"31                sonnets         thy    240\\n\",\n       \"32       tamingoftheshrew   petruchio    174\\n\",\n       \"33                tempest        thou    142\\n\",\n       \"34          timonofathens       timon    246\\n\",\n       \"35        titusandronicus  andronicus    202\\n\",\n       \"36     troilusandcressida    cressida    190\\n\",\n       \"37           twelfthnight         sir    273\\n\",\n       \"38   twogentlemenofverona     proteus    162\\n\",\n       \"39                various        love     37\\n\",\n       \"40         venusandadonis           '     68\\n\",\n       \"41            winterstale     leontes    133\"\n      ]\n     },\n     \"execution_count\": 4,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"df.select(df.corpus, F.struct(df.word_count, df.filtered.getItem(0).alias('word')).alias('count_word')) \\\\\\n\",\n    \"  .where(F.col('count_word').getItem('word').isNotNull()) \\\\\\n\",\n    \"  .groupby('corpus') \\\\\\n\",\n    \"  .agg({'count_word': 'max'}) \\\\\\n\",\n    \"  .orderBy('corpus') \\\\\\n\",\n    \"  .select(\\n\",\n    \"     'corpus',\\n\",\n    \"     F.col('max(count_word)').getItem('word').alias('word'),\\n\",\n    \"     F.col('max(count_word)').getItem('word_count').alias('count')) \\\\\\n\",\n    \"  .toPandas()\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.8\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "examples/notebooks/Transform_with_Python.ipynb",
    "content": "{\"cells\": [{\"cell_type\": \"markdown\", \"metadata\": {}, \"source\": \"<table>\\n    <tr><td><h2>A pythonic approach to BigQuery data manipulation</h2></td>\\n    <td><img src=\\\"https://koalas.readthedocs.io/en/latest/_static/koalas-logo-docs.png\\\"></img></td></tr>\\n</table>\"}, {\"cell_type\": \"markdown\", \"metadata\": {}, \"source\": \"<b>Problem:</b> BigQuery is the best place to run SQL.  Still, I often find myself limited by SQL's functionality. I normally work with a combination of Pandas and SQL but Pandas won't work with the size of BigQuery's tables. \\n\\nSQL can be verbose and hard to maintain for transformations.  For SQL analysis, the focus is really on reporting. I feel that SQL still lacks a lot of what is necessity for me to perform advanced statistics, ML, and timeseries analysis.  \\n\\nI wish there was a way to bring the advanced Pandas capablities I have on my laptop to BigQuery scale tables.\"}, {\"cell_type\": \"code\", \"execution_count\": null, \"metadata\": {}, \"outputs\": [], \"source\": \"conda install -c conda-forge koalas\"}, {\"cell_type\": \"markdown\", \"metadata\": {}, \"source\": \"<h4>Create a Spark Session with the BigQuery connector loaded</h4>\"}, {\"cell_type\": \"code\", \"execution_count\": 4, \"metadata\": {}, \"outputs\": [], \"source\": \"# %load sparkme\\nfrom pyspark.sql import SparkSession\\nspark = SparkSession.builder.getOrCreate()\\nscala_minor_version = str(spark.sparkContext._jvm.scala.util.Properties.versionString().replace(\\\"version \\\",\\\"\\\").split('.')[1])\\nspark = SparkSession.builder.config(\\\"spark.jars.packages\\\", \\\"com.google.cloud.spark:spark-bigquery-with-dependencies_2.\\\" + scala_minor_version + \\\":0.18.0\\\") \\\\\\n                                    .enableHiveSupport() \\\\\\n                                    .getOrCreate()\"}, {\"cell_type\": \"markdown\", \"metadata\": {}, \"source\": \"<img src=\\\"https://miro.medium.com/max/1816/1*CpGwN0yO8IMER-tcfasEeA.png\\\" height=450 width=450></img>\"}, {\"cell_type\": \"code\", \"execution_count\": 5, \"metadata\": {}, \"outputs\": [], \"source\": \"df = spark.read \\\\\\n  .format(\\\"bigquery\\\") \\\\\\n  .load(\\\"bigquery-public-data.covid19_nyt.us_counties\\\")\"}, {\"cell_type\": \"code\", \"execution_count\": 6, \"metadata\": {}, \"outputs\": [{\"name\": \"stdout\", \"output_type\": \"stream\", \"text\": \"+----------+-----------+----------+----------------+---------------+------+\\n|      date|     county|state_name|county_fips_code|confirmed_cases|deaths|\\n+----------+-----------+----------+----------------+---------------+------+\\n|2020-10-04|     Joplin|  Missouri|            null|           2040|    25|\\n|2020-10-04|Kansas City|  Missouri|            null|          11387|   106|\\n|2020-10-05|     Joplin|  Missouri|            null|           2046|    25|\\n|2020-10-05|Kansas City|  Missouri|            null|          11387|   106|\\n|2020-10-06|     Joplin|  Missouri|            null|           2059|    25|\\n+----------+-----------+----------+----------------+---------------+------+\\nonly showing top 5 rows\\n\\n\"}], \"source\": \"df.show(5)\"}, {\"cell_type\": \"markdown\", \"metadata\": {}, \"source\": \"<h3>All Spark Dataframe functionality is available in df. But let's use the Pandas API with Kolas. A Spark version of Pandas.</h3>\"}, {\"cell_type\": \"code\", \"execution_count\": 7, \"metadata\": {}, \"outputs\": [], \"source\": \"import databricks.koalas as ks\\ndfq = df.to_koalas()\"}, {\"cell_type\": \"code\", \"execution_count\": 8, \"metadata\": {}, \"outputs\": [{\"data\": {\"text/html\": \"<div>\\n<style scoped>\\n    .dataframe tbody tr th:only-of-type {\\n        vertical-align: middle;\\n    }\\n\\n    .dataframe tbody tr th {\\n        vertical-align: top;\\n    }\\n\\n    .dataframe thead th {\\n        text-align: right;\\n    }\\n</style>\\n<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n  <thead>\\n    <tr style=\\\"text-align: right;\\\">\\n      <th></th>\\n      <th>confirmed_cases</th>\\n      <th>deaths</th>\\n    </tr>\\n  </thead>\\n  <tbody>\\n    <tr>\\n      <th>count</th>\\n      <td>884817.000000</td>\\n      <td>866056.000000</td>\\n    </tr>\\n    <tr>\\n      <th>mean</th>\\n      <td>1952.157425</td>\\n      <td>53.591608</td>\\n    </tr>\\n    <tr>\\n      <th>std</th>\\n      <td>10106.149522</td>\\n      <td>451.836007</td>\\n    </tr>\\n    <tr>\\n      <th>min</th>\\n      <td>0.000000</td>\\n      <td>0.000000</td>\\n    </tr>\\n    <tr>\\n      <th>25%</th>\\n      <td>36.000000</td>\\n      <td>0.000000</td>\\n    </tr>\\n    <tr>\\n      <th>50%</th>\\n      <td>228.000000</td>\\n      <td>4.000000</td>\\n    </tr>\\n    <tr>\\n      <th>75%</th>\\n      <td>993.000000</td>\\n      <td>21.000000</td>\\n    </tr>\\n    <tr>\\n      <th>max</th>\\n      <td>770915.000000</td>\\n      <td>25144.000000</td>\\n    </tr>\\n  </tbody>\\n</table>\\n</div>\", \"text/plain\": \"       confirmed_cases         deaths\\ncount    884817.000000  866056.000000\\nmean       1952.157425      53.591608\\nstd       10106.149522     451.836007\\nmin           0.000000       0.000000\\n25%          36.000000       0.000000\\n50%         228.000000       4.000000\\n75%         993.000000      21.000000\\nmax      770915.000000   25144.000000\"}, \"execution_count\": 8, \"metadata\": {}, \"output_type\": \"execute_result\"}], \"source\": \"dfq.describe()\"}, {\"cell_type\": \"markdown\", \"metadata\": {}, \"source\": \"Often (especially for ML+Stats), we want to transpose columns. In SQL, this can be a long chain of \\n\\nCASE WHEN county = 'Joplin' AND state = 'Missouri' THEN sum(confirmed_cases) AS JOPIN_CONFIRMED_CASES<br>\\nCASE WHEN county = 'Joplin' AND state = 'Missouri' THEN sum(deaths) AS JOPIN_DEATHS\\n\\nWhich needs to be repeated for every county in the United States -- for this dataset, that would be over 800K rows of SQL\\nUsing Kolas, this is done with a one line Transpose(T) function.\"}, {\"cell_type\": \"code\", \"execution_count\": 9, \"metadata\": {}, \"outputs\": [], \"source\": \"with ks.option_context('compute.max_rows', 1000000): \\n    transformed = dfq.groupby(['state_name','county']).sum().sort_index().T\"}, {\"cell_type\": \"code\", \"execution_count\": 10, \"metadata\": {}, \"outputs\": [{\"data\": {\"text/html\": \"<div>\\n<style scoped>\\n    .dataframe tbody tr th:only-of-type {\\n        vertical-align: middle;\\n    }\\n\\n    .dataframe tbody tr th {\\n        vertical-align: top;\\n    }\\n\\n    .dataframe thead tr th {\\n        text-align: left;\\n    }\\n</style>\\n<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n  <thead>\\n    <tr>\\n      <th>state_name</th>\\n      <th colspan=\\\"67\\\" halign=\\\"left\\\">Alabama</th>\\n      <th colspan=\\\"28\\\" halign=\\\"left\\\">Alaska</th>\\n      <th colspan=\\\"16\\\" halign=\\\"left\\\">Arizona</th>\\n      <th colspan=\\\"76\\\" halign=\\\"left\\\">Arkansas</th>\\n      <th colspan=\\\"59\\\" halign=\\\"left\\\">California</th>\\n      <th colspan=\\\"65\\\" halign=\\\"left\\\">Colorado</th>\\n      <th colspan=\\\"9\\\" halign=\\\"left\\\">Connecticut</th>\\n      <th colspan=\\\"4\\\" halign=\\\"left\\\">Delaware</th>\\n      <th>District of Columbia</th>\\n      <th colspan=\\\"68\\\" halign=\\\"left\\\">Florida</th>\\n      <th colspan=\\\"160\\\" halign=\\\"left\\\">Georgia</th>\\n      <th>Guam</th>\\n      <th colspan=\\\"6\\\" halign=\\\"left\\\">Hawaii</th>\\n      <th colspan=\\\"45\\\" halign=\\\"left\\\">Idaho</th>\\n      <th colspan=\\\"103\\\" halign=\\\"left\\\">Illinois</th>\\n      <th colspan=\\\"93\\\" halign=\\\"left\\\">Indiana</th>\\n      <th colspan=\\\"100\\\" halign=\\\"left\\\">Iowa</th>\\n      <th colspan=\\\"106\\\" halign=\\\"left\\\">Kansas</th>\\n      <th colspan=\\\"121\\\" halign=\\\"left\\\">Kentucky</th>\\n      <th colspan=\\\"65\\\" halign=\\\"left\\\">Louisiana</th>\\n      <th colspan=\\\"17\\\" halign=\\\"left\\\">Maine</th>\\n      <th colspan=\\\"25\\\" halign=\\\"left\\\">Maryland</th>\\n      <th colspan=\\\"15\\\" halign=\\\"left\\\">Massachusetts</th>\\n      <th colspan=\\\"84\\\" halign=\\\"left\\\">Michigan</th>\\n      <th colspan=\\\"88\\\" halign=\\\"left\\\">Minnesota</th>\\n      <th colspan=\\\"83\\\" halign=\\\"left\\\">Mississippi</th>\\n      <th colspan=\\\"118\\\" halign=\\\"left\\\">Missouri</th>\\n      <th colspan=\\\"57\\\" halign=\\\"left\\\">Montana</th>\\n      <th colspan=\\\"94\\\" halign=\\\"left\\\">Nebraska</th>\\n      <th colspan=\\\"18\\\" halign=\\\"left\\\">Nevada</th>\\n      <th colspan=\\\"11\\\" halign=\\\"left\\\">New Hampshire</th>\\n      <th colspan=\\\"22\\\" halign=\\\"left\\\">New Jersey</th>\\n      <th colspan=\\\"34\\\" halign=\\\"left\\\">New Mexico</th>\\n      <th colspan=\\\"59\\\" halign=\\\"left\\\">New York</th>\\n      <th colspan=\\\"100\\\" halign=\\\"left\\\">North Carolina</th>\\n      <th colspan=\\\"54\\\" halign=\\\"left\\\">North Dakota</th>\\n      <th colspan=\\\"3\\\" halign=\\\"left\\\">Northern Mariana Islands</th>\\n      <th colspan=\\\"89\\\" halign=\\\"left\\\">Ohio</th>\\n      <th colspan=\\\"78\\\" halign=\\\"left\\\">Oklahoma</th>\\n      <th colspan=\\\"37\\\" halign=\\\"left\\\">Oregon</th>\\n      <th colspan=\\\"68\\\" halign=\\\"left\\\">Pennsylvania</th>\\n      <th colspan=\\\"79\\\" halign=\\\"left\\\">Puerto Rico</th>\\n      <th colspan=\\\"6\\\" halign=\\\"left\\\">Rhode Island</th>\\n      <th colspan=\\\"47\\\" halign=\\\"left\\\">South Carolina</th>\\n      <th colspan=\\\"67\\\" halign=\\\"left\\\">South Dakota</th>\\n      <th colspan=\\\"96\\\" halign=\\\"left\\\">Tennessee</th>\\n      <th colspan=\\\"255\\\" halign=\\\"left\\\">Texas</th>\\n      <th colspan=\\\"30\\\" halign=\\\"left\\\">Utah</th>\\n      <th colspan=\\\"15\\\" halign=\\\"left\\\">Vermont</th>\\n      <th colspan=\\\"4\\\" halign=\\\"left\\\">Virgin Islands</th>\\n      <th colspan=\\\"134\\\" halign=\\\"left\\\">Virginia</th>\\n      <th colspan=\\\"40\\\" halign=\\\"left\\\">Washington</th>\\n      <th colspan=\\\"56\\\" halign=\\\"left\\\">West Virginia</th>\\n      <th colspan=\\\"73\\\" halign=\\\"left\\\">Wisconsin</th>\\n      <th colspan=\\\"24\\\" halign=\\\"left\\\">Wyoming</th>\\n    </tr>\\n    <tr>\\n      <th>county</th>\\n      <th>Autauga</th>\\n      <th>Baldwin</th>\\n      <th>Barbour</th>\\n      <th>Bibb</th>\\n      <th>Blount</th>\\n      <th>Bullock</th>\\n      <th>Butler</th>\\n      <th>Calhoun</th>\\n      <th>Chambers</th>\\n      <th>Cherokee</th>\\n      <th>Chilton</th>\\n      <th>Choctaw</th>\\n      <th>Clarke</th>\\n      <th>Clay</th>\\n      <th>Cleburne</th>\\n      <th>Coffee</th>\\n      <th>Colbert</th>\\n      <th>Conecuh</th>\\n      <th>Coosa</th>\\n      <th>Covington</th>\\n      <th>Crenshaw</th>\\n      <th>Cullman</th>\\n      <th>Dale</th>\\n      <th>Dallas</th>\\n      <th>DeKalb</th>\\n      <th>Elmore</th>\\n      <th>Escambia</th>\\n      <th>Etowah</th>\\n      <th>Fayette</th>\\n      <th>Franklin</th>\\n      <th>Geneva</th>\\n      <th>Greene</th>\\n      <th>Hale</th>\\n      <th>Henry</th>\\n      <th>Houston</th>\\n      <th>Jackson</th>\\n      <th>Jefferson</th>\\n      <th>Lamar</th>\\n      <th>Lauderdale</th>\\n      <th>Lawrence</th>\\n      <th>Lee</th>\\n      <th>Limestone</th>\\n      <th>Lowndes</th>\\n      <th>Macon</th>\\n      <th>Madison</th>\\n      <th>Marengo</th>\\n      <th>Marion</th>\\n      <th>Marshall</th>\\n      <th>Mobile</th>\\n      <th>Monroe</th>\\n      <th>Montgomery</th>\\n      <th>Morgan</th>\\n      <th>Perry</th>\\n      <th>Pickens</th>\\n      <th>Pike</th>\\n      <th>Randolph</th>\\n      <th>Russell</th>\\n      <th>Shelby</th>\\n      <th>St. Clair</th>\\n      <th>Sumter</th>\\n      <th>Talladega</th>\\n      <th>Tallapoosa</th>\\n      <th>Tuscaloosa</th>\\n      <th>Walker</th>\\n      <th>Washington</th>\\n      <th>Wilcox</th>\\n      <th>Winston</th>\\n      <th>Aleutians East Borough</th>\\n      <th>Aleutians West Census Area</th>\\n      <th>Anchorage</th>\\n      <th>Bethel Census Area</th>\\n      <th>Bristol Bay Borough</th>\\n      <th>Denali Borough</th>\\n      <th>Dillingham Census Area</th>\\n      <th>Fairbanks North Star Borough</th>\\n      <th>Haines Borough</th>\\n      <th>Juneau City and Borough</th>\\n      <th>Kenai Peninsula Borough</th>\\n      <th>Ketchikan Gateway Borough</th>\\n      <th>Kodiak Island Borough</th>\\n      <th>Kusilvak Census Area</th>\\n      <th>Lake and Peninsula Borough</th>\\n      <th>Matanuska-Susitna Borough</th>\\n      <th>Nome Census Area</th>\\n      <th>North Slope Borough</th>\\n      <th>Northwest Arctic Borough</th>\\n      <th>Petersburg Borough</th>\\n      <th>Prince of Wales-Hyder Census Area</th>\\n      <th>Sitka City and Borough</th>\\n      <th>Skagway Municipality</th>\\n      <th>Southeast Fairbanks Census Area</th>\\n      <th>Unknown</th>\\n      <th>Valdez-Cordova Census Area</th>\\n      <th>Wrangell City and Borough</th>\\n      <th>Yukon-Koyukuk Census Area</th>\\n      <th>Apache</th>\\n      <th>Cochise</th>\\n      <th>Coconino</th>\\n      <th>Gila</th>\\n      <th>Graham</th>\\n      <th>Greenlee</th>\\n      <th>La Paz</th>\\n      <th>Maricopa</th>\\n      <th>Mohave</th>\\n      <th>Navajo</th>\\n      <th>Pima</th>\\n      <th>Pinal</th>\\n      <th>Santa Cruz</th>\\n      <th>Unknown</th>\\n      <th>Yavapai</th>\\n      <th>Yuma</th>\\n      <th>Arkansas</th>\\n      <th>Ashley</th>\\n      <th>Baxter</th>\\n      <th>Benton</th>\\n      <th>Boone</th>\\n      <th>Bradley</th>\\n      <th>Calhoun</th>\\n      <th>Carroll</th>\\n      <th>Chicot</th>\\n      <th>Clark</th>\\n      <th>Clay</th>\\n      <th>Cleburne</th>\\n      <th>Cleveland</th>\\n      <th>Columbia</th>\\n      <th>Conway</th>\\n      <th>Craighead</th>\\n      <th>Crawford</th>\\n      <th>Crittenden</th>\\n      <th>Cross</th>\\n      <th>Dallas</th>\\n      <th>Desha</th>\\n      <th>Drew</th>\\n      <th>Faulkner</th>\\n      <th>Franklin</th>\\n      <th>Fulton</th>\\n      <th>Garland</th>\\n      <th>Grant</th>\\n      <th>Greene</th>\\n      <th>Hempstead</th>\\n      <th>Hot Spring</th>\\n      <th>Howard</th>\\n      <th>Independence</th>\\n      <th>Izard</th>\\n      <th>Jackson</th>\\n      <th>Jefferson</th>\\n      <th>Johnson</th>\\n      <th>Lafayette</th>\\n      <th>Lawrence</th>\\n      <th>Lee</th>\\n      <th>Lincoln</th>\\n      <th>Little River</th>\\n      <th>Logan</th>\\n      <th>Lonoke</th>\\n      <th>Madison</th>\\n      <th>Marion</th>\\n      <th>Miller</th>\\n      <th>Mississippi</th>\\n      <th>Monroe</th>\\n      <th>Montgomery</th>\\n      <th>Nevada</th>\\n      <th>Newton</th>\\n      <th>Ouachita</th>\\n      <th>Perry</th>\\n      <th>Phillips</th>\\n      <th>Pike</th>\\n      <th>Poinsett</th>\\n      <th>Polk</th>\\n      <th>Pope</th>\\n      <th>Prairie</th>\\n      <th>Pulaski</th>\\n      <th>Randolph</th>\\n      <th>Saline</th>\\n      <th>Scott</th>\\n      <th>Searcy</th>\\n      <th>Sebastian</th>\\n      <th>Sevier</th>\\n      <th>Sharp</th>\\n      <th>St. Francis</th>\\n      <th>Stone</th>\\n      <th>Union</th>\\n      <th>Unknown</th>\\n      <th>Van Buren</th>\\n      <th>Washington</th>\\n      <th>White</th>\\n      <th>Woodruff</th>\\n      <th>Yell</th>\\n      <th>Alameda</th>\\n      <th>Alpine</th>\\n      <th>Amador</th>\\n      <th>Butte</th>\\n      <th>Calaveras</th>\\n      <th>Colusa</th>\\n      <th>Contra Costa</th>\\n      <th>Del Norte</th>\\n      <th>El Dorado</th>\\n      <th>Fresno</th>\\n      <th>Glenn</th>\\n      <th>Humboldt</th>\\n      <th>Imperial</th>\\n      <th>Inyo</th>\\n      <th>Kern</th>\\n      <th>Kings</th>\\n      <th>Lake</th>\\n      <th>Lassen</th>\\n      <th>Los Angeles</th>\\n      <th>Madera</th>\\n      <th>Marin</th>\\n      <th>Mariposa</th>\\n      <th>Mendocino</th>\\n      <th>Merced</th>\\n      <th>Modoc</th>\\n      <th>Mono</th>\\n      <th>Monterey</th>\\n      <th>Napa</th>\\n      <th>Nevada</th>\\n      <th>Orange</th>\\n      <th>Placer</th>\\n      <th>Plumas</th>\\n      <th>Riverside</th>\\n      <th>Sacramento</th>\\n      <th>San Benito</th>\\n      <th>San Bernardino</th>\\n      <th>San Diego</th>\\n      <th>San Francisco</th>\\n      <th>San Joaquin</th>\\n      <th>San Luis Obispo</th>\\n      <th>San Mateo</th>\\n      <th>Santa Barbara</th>\\n      <th>Santa Clara</th>\\n      <th>Santa Cruz</th>\\n      <th>Shasta</th>\\n      <th>Sierra</th>\\n      <th>Siskiyou</th>\\n      <th>Solano</th>\\n      <th>Sonoma</th>\\n      <th>Stanislaus</th>\\n      <th>Sutter</th>\\n      <th>Tehama</th>\\n      <th>Trinity</th>\\n      <th>Tulare</th>\\n      <th>Tuolumne</th>\\n      <th>Unknown</th>\\n      <th>Ventura</th>\\n      <th>Yolo</th>\\n      <th>Yuba</th>\\n      <th>Adams</th>\\n      <th>Alamosa</th>\\n      <th>Arapahoe</th>\\n      <th>Archuleta</th>\\n      <th>Baca</th>\\n      <th>Bent</th>\\n      <th>Boulder</th>\\n      <th>Broomfield</th>\\n      <th>Chaffee</th>\\n      <th>Cheyenne</th>\\n      <th>Clear Creek</th>\\n      <th>Conejos</th>\\n      <th>Costilla</th>\\n      <th>Crowley</th>\\n      <th>Custer</th>\\n      <th>Delta</th>\\n      <th>Denver</th>\\n      <th>Dolores</th>\\n      <th>Douglas</th>\\n      <th>Eagle</th>\\n      <th>El Paso</th>\\n      <th>Elbert</th>\\n      <th>Fremont</th>\\n      <th>Garfield</th>\\n      <th>Gilpin</th>\\n      <th>Grand</th>\\n      <th>Gunnison</th>\\n      <th>Hinsdale</th>\\n      <th>Huerfano</th>\\n      <th>Jackson</th>\\n      <th>Jefferson</th>\\n      <th>Kiowa</th>\\n      <th>Kit Carson</th>\\n      <th>La Plata</th>\\n      <th>Lake</th>\\n      <th>Larimer</th>\\n      <th>Las Animas</th>\\n      <th>Lincoln</th>\\n      <th>Logan</th>\\n      <th>Mesa</th>\\n      <th>Mineral</th>\\n      <th>Moffat</th>\\n      <th>Montezuma</th>\\n      <th>Montrose</th>\\n      <th>Morgan</th>\\n      <th>Otero</th>\\n      <th>Ouray</th>\\n      <th>Park</th>\\n      <th>Phillips</th>\\n      <th>Pitkin</th>\\n      <th>Prowers</th>\\n      <th>Pueblo</th>\\n      <th>Rio Blanco</th>\\n      <th>Rio Grande</th>\\n      <th>Routt</th>\\n      <th>Saguache</th>\\n      <th>San Juan</th>\\n      <th>San Miguel</th>\\n      <th>Sedgwick</th>\\n      <th>Summit</th>\\n      <th>Teller</th>\\n      <th>Unknown</th>\\n      <th>Washington</th>\\n      <th>Weld</th>\\n      <th>Yuma</th>\\n      <th>Fairfield</th>\\n      <th>Hartford</th>\\n      <th>Litchfield</th>\\n      <th>Middlesex</th>\\n      <th>New Haven</th>\\n      <th>New London</th>\\n      <th>Tolland</th>\\n      <th>Unknown</th>\\n      <th>Windham</th>\\n      <th>Kent</th>\\n      <th>New Castle</th>\\n      <th>Sussex</th>\\n      <th>Unknown</th>\\n      <th>District of Columbia</th>\\n      <th>Alachua</th>\\n      <th>Baker</th>\\n      <th>Bay</th>\\n      <th>Bradford</th>\\n      <th>Brevard</th>\\n      <th>Broward</th>\\n      <th>Calhoun</th>\\n      <th>Charlotte</th>\\n      <th>Citrus</th>\\n      <th>Clay</th>\\n      <th>Collier</th>\\n      <th>Columbia</th>\\n      <th>DeSoto</th>\\n      <th>Dixie</th>\\n      <th>Duval</th>\\n      <th>Escambia</th>\\n      <th>Flagler</th>\\n      <th>Franklin</th>\\n      <th>Gadsden</th>\\n      <th>Gilchrist</th>\\n      <th>Glades</th>\\n      <th>Gulf</th>\\n      <th>Hamilton</th>\\n      <th>Hardee</th>\\n      <th>Hendry</th>\\n      <th>Hernando</th>\\n      <th>Highlands</th>\\n      <th>Hillsborough</th>\\n      <th>Holmes</th>\\n      <th>Indian River</th>\\n      <th>Jackson</th>\\n      <th>Jefferson</th>\\n      <th>Lafayette</th>\\n      <th>Lake</th>\\n      <th>Lee</th>\\n      <th>Leon</th>\\n      <th>Levy</th>\\n      <th>Liberty</th>\\n      <th>Madison</th>\\n      <th>Manatee</th>\\n      <th>Marion</th>\\n      <th>Martin</th>\\n      <th>Miami-Dade</th>\\n      <th>Monroe</th>\\n      <th>Nassau</th>\\n      <th>Okaloosa</th>\\n      <th>Okeechobee</th>\\n      <th>Orange</th>\\n      <th>Osceola</th>\\n      <th>Palm Beach</th>\\n      <th>Pasco</th>\\n      <th>Pinellas</th>\\n      <th>Polk</th>\\n      <th>Putnam</th>\\n      <th>Santa Rosa</th>\\n      <th>Sarasota</th>\\n      <th>Seminole</th>\\n      <th>St. Johns</th>\\n      <th>St. Lucie</th>\\n      <th>Sumter</th>\\n      <th>Suwannee</th>\\n      <th>Taylor</th>\\n      <th>Union</th>\\n      <th>Unknown</th>\\n      <th>Volusia</th>\\n      <th>Wakulla</th>\\n      <th>Walton</th>\\n      <th>Washington</th>\\n      <th>Appling</th>\\n      <th>Atkinson</th>\\n      <th>Bacon</th>\\n      <th>Baker</th>\\n      <th>Baldwin</th>\\n      <th>Banks</th>\\n      <th>Barrow</th>\\n      <th>Bartow</th>\\n      <th>Ben Hill</th>\\n      <th>Berrien</th>\\n      <th>Bibb</th>\\n      <th>Bleckley</th>\\n      <th>Brantley</th>\\n      <th>Brooks</th>\\n      <th>Bryan</th>\\n      <th>Bulloch</th>\\n      <th>Burke</th>\\n      <th>Butts</th>\\n      <th>Calhoun</th>\\n      <th>Camden</th>\\n      <th>Candler</th>\\n      <th>Carroll</th>\\n      <th>Catoosa</th>\\n      <th>Charlton</th>\\n      <th>Chatham</th>\\n      <th>Chattahoochee</th>\\n      <th>Chattooga</th>\\n      <th>Cherokee</th>\\n      <th>Clarke</th>\\n      <th>Clay</th>\\n      <th>Clayton</th>\\n      <th>Clinch</th>\\n      <th>Cobb</th>\\n      <th>Coffee</th>\\n      <th>Colquitt</th>\\n      <th>Columbia</th>\\n      <th>Cook</th>\\n      <th>Coweta</th>\\n      <th>Crawford</th>\\n      <th>Crisp</th>\\n      <th>Dade</th>\\n      <th>Dawson</th>\\n      <th>DeKalb</th>\\n      <th>Decatur</th>\\n      <th>Dodge</th>\\n      <th>Dooly</th>\\n      <th>Dougherty</th>\\n      <th>Douglas</th>\\n      <th>Early</th>\\n      <th>Echols</th>\\n      <th>Effingham</th>\\n      <th>Elbert</th>\\n      <th>Emanuel</th>\\n      <th>Evans</th>\\n      <th>Fannin</th>\\n      <th>Fayette</th>\\n      <th>Floyd</th>\\n      <th>Forsyth</th>\\n      <th>Franklin</th>\\n      <th>Fulton</th>\\n      <th>Gilmer</th>\\n      <th>Glascock</th>\\n      <th>Glynn</th>\\n      <th>Gordon</th>\\n      <th>Grady</th>\\n      <th>Greene</th>\\n      <th>Gwinnett</th>\\n      <th>Habersham</th>\\n      <th>Hall</th>\\n      <th>Hancock</th>\\n      <th>Haralson</th>\\n      <th>Harris</th>\\n      <th>Hart</th>\\n      <th>Heard</th>\\n      <th>Henry</th>\\n      <th>Houston</th>\\n      <th>Irwin</th>\\n      <th>Jackson</th>\\n      <th>Jasper</th>\\n      <th>Jeff Davis</th>\\n      <th>Jefferson</th>\\n      <th>Jenkins</th>\\n      <th>Johnson</th>\\n      <th>Jones</th>\\n      <th>Lamar</th>\\n      <th>Lanier</th>\\n      <th>Laurens</th>\\n      <th>Lee</th>\\n      <th>Liberty</th>\\n      <th>Lincoln</th>\\n      <th>Long</th>\\n      <th>Lowndes</th>\\n      <th>Lumpkin</th>\\n      <th>Macon</th>\\n      <th>Madison</th>\\n      <th>Marion</th>\\n      <th>McDuffie</th>\\n      <th>McIntosh</th>\\n      <th>Meriwether</th>\\n      <th>Miller</th>\\n      <th>Mitchell</th>\\n      <th>Monroe</th>\\n      <th>Montgomery</th>\\n      <th>Morgan</th>\\n      <th>Murray</th>\\n      <th>Muscogee</th>\\n      <th>Newton</th>\\n      <th>Oconee</th>\\n      <th>Oglethorpe</th>\\n      <th>Paulding</th>\\n      <th>Peach</th>\\n      <th>Pickens</th>\\n      <th>Pierce</th>\\n      <th>Pike</th>\\n      <th>Polk</th>\\n      <th>Pulaski</th>\\n      <th>Putnam</th>\\n      <th>Quitman</th>\\n      <th>Rabun</th>\\n      <th>Randolph</th>\\n      <th>Richmond</th>\\n      <th>Rockdale</th>\\n      <th>Schley</th>\\n      <th>Screven</th>\\n      <th>Seminole</th>\\n      <th>Spalding</th>\\n      <th>Stephens</th>\\n      <th>Stewart</th>\\n      <th>Sumter</th>\\n      <th>Talbot</th>\\n      <th>Taliaferro</th>\\n      <th>Tattnall</th>\\n      <th>Taylor</th>\\n      <th>Telfair</th>\\n      <th>Terrell</th>\\n      <th>Thomas</th>\\n      <th>Tift</th>\\n      <th>Toombs</th>\\n      <th>Towns</th>\\n      <th>Treutlen</th>\\n      <th>Troup</th>\\n      <th>Turner</th>\\n      <th>Twiggs</th>\\n      <th>Union</th>\\n      <th>Unknown</th>\\n      <th>Upson</th>\\n      <th>Walker</th>\\n      <th>Walton</th>\\n      <th>Ware</th>\\n      <th>Warren</th>\\n      <th>Washington</th>\\n      <th>Wayne</th>\\n      <th>Webster</th>\\n      <th>Wheeler</th>\\n      <th>White</th>\\n      <th>Whitfield</th>\\n      <th>Wilcox</th>\\n      <th>Wilkes</th>\\n      <th>Wilkinson</th>\\n      <th>Worth</th>\\n      <th>Unknown</th>\\n      <th>Hawaii</th>\\n      <th>Honolulu</th>\\n      <th>Kalawao</th>\\n      <th>Kauai</th>\\n      <th>Maui</th>\\n      <th>Unknown</th>\\n      <th>Ada</th>\\n      <th>Adams</th>\\n      <th>Bannock</th>\\n      <th>Bear Lake</th>\\n      <th>Benewah</th>\\n      <th>Bingham</th>\\n      <th>Blaine</th>\\n      <th>Boise</th>\\n      <th>Bonner</th>\\n      <th>Bonneville</th>\\n      <th>Boundary</th>\\n      <th>Butte</th>\\n      <th>Camas</th>\\n      <th>Canyon</th>\\n      <th>Caribou</th>\\n      <th>Cassia</th>\\n      <th>Clark</th>\\n      <th>Clearwater</th>\\n      <th>Custer</th>\\n      <th>Elmore</th>\\n      <th>Franklin</th>\\n      <th>Fremont</th>\\n      <th>Gem</th>\\n      <th>Gooding</th>\\n      <th>Idaho</th>\\n      <th>Jefferson</th>\\n      <th>Jerome</th>\\n      <th>Kootenai</th>\\n      <th>Latah</th>\\n      <th>Lemhi</th>\\n      <th>Lewis</th>\\n      <th>Lincoln</th>\\n      <th>Madison</th>\\n      <th>Minidoka</th>\\n      <th>Nez Perce</th>\\n      <th>Oneida</th>\\n      <th>Owyhee</th>\\n      <th>Payette</th>\\n      <th>Power</th>\\n      <th>Shoshone</th>\\n      <th>Teton</th>\\n      <th>Twin Falls</th>\\n      <th>Unknown</th>\\n      <th>Valley</th>\\n      <th>Washington</th>\\n      <th>Adams</th>\\n      <th>Alexander</th>\\n      <th>Bond</th>\\n      <th>Boone</th>\\n      <th>Brown</th>\\n      <th>Bureau</th>\\n      <th>Calhoun</th>\\n      <th>Carroll</th>\\n      <th>Cass</th>\\n      <th>Champaign</th>\\n      <th>Christian</th>\\n      <th>Clark</th>\\n      <th>Clay</th>\\n      <th>Clinton</th>\\n      <th>Coles</th>\\n      <th>Cook</th>\\n      <th>Crawford</th>\\n      <th>Cumberland</th>\\n      <th>De Witt</th>\\n      <th>DeKalb</th>\\n      <th>Douglas</th>\\n      <th>DuPage</th>\\n      <th>Edgar</th>\\n      <th>Edwards</th>\\n      <th>Effingham</th>\\n      <th>Fayette</th>\\n      <th>Ford</th>\\n      <th>Franklin</th>\\n      <th>Fulton</th>\\n      <th>Gallatin</th>\\n      <th>Greene</th>\\n      <th>Grundy</th>\\n      <th>Hamilton</th>\\n      <th>Hancock</th>\\n      <th>Hardin</th>\\n      <th>Henderson</th>\\n      <th>Henry</th>\\n      <th>Iroquois</th>\\n      <th>Jackson</th>\\n      <th>Jasper</th>\\n      <th>Jefferson</th>\\n      <th>Jersey</th>\\n      <th>Jo Daviess</th>\\n      <th>Johnson</th>\\n      <th>Kane</th>\\n      <th>Kankakee</th>\\n      <th>Kendall</th>\\n      <th>Knox</th>\\n      <th>LaSalle</th>\\n      <th>Lake</th>\\n      <th>Lawrence</th>\\n      <th>Lee</th>\\n      <th>Livingston</th>\\n      <th>Logan</th>\\n      <th>Macon</th>\\n      <th>Macoupin</th>\\n      <th>Madison</th>\\n      <th>Marion</th>\\n      <th>Marshall</th>\\n      <th>Mason</th>\\n      <th>Massac</th>\\n      <th>McDonough</th>\\n      <th>McHenry</th>\\n      <th>McLean</th>\\n      <th>Menard</th>\\n      <th>Mercer</th>\\n      <th>Monroe</th>\\n      <th>Montgomery</th>\\n      <th>Morgan</th>\\n      <th>Moultrie</th>\\n      <th>Ogle</th>\\n      <th>Peoria</th>\\n      <th>Perry</th>\\n      <th>Piatt</th>\\n      <th>Pike</th>\\n      <th>Pope</th>\\n      <th>Pulaski</th>\\n      <th>Putnam</th>\\n      <th>Randolph</th>\\n      <th>Richland</th>\\n      <th>Rock Island</th>\\n      <th>Saline</th>\\n      <th>Sangamon</th>\\n      <th>Schuyler</th>\\n      <th>Scott</th>\\n      <th>Shelby</th>\\n      <th>St. Clair</th>\\n      <th>Stark</th>\\n      <th>Stephenson</th>\\n      <th>Tazewell</th>\\n      <th>Union</th>\\n      <th>Unknown</th>\\n      <th>Vermilion</th>\\n      <th>Wabash</th>\\n      <th>Warren</th>\\n      <th>Washington</th>\\n      <th>Wayne</th>\\n      <th>White</th>\\n      <th>Whiteside</th>\\n      <th>Will</th>\\n      <th>Williamson</th>\\n      <th>Winnebago</th>\\n      <th>Woodford</th>\\n      <th>Adams</th>\\n      <th>Allen</th>\\n      <th>Bartholomew</th>\\n      <th>Benton</th>\\n      <th>Blackford</th>\\n      <th>Boone</th>\\n      <th>Brown</th>\\n      <th>Carroll</th>\\n      <th>Cass</th>\\n      <th>Clark</th>\\n      <th>Clay</th>\\n      <th>Clinton</th>\\n      <th>Crawford</th>\\n      <th>Daviess</th>\\n      <th>DeKalb</th>\\n      <th>Dearborn</th>\\n      <th>Decatur</th>\\n      <th>Delaware</th>\\n      <th>Dubois</th>\\n      <th>Elkhart</th>\\n      <th>Fayette</th>\\n      <th>Floyd</th>\\n      <th>Fountain</th>\\n      <th>Franklin</th>\\n      <th>Fulton</th>\\n      <th>Gibson</th>\\n      <th>Grant</th>\\n      <th>Greene</th>\\n      <th>Hamilton</th>\\n      <th>Hancock</th>\\n      <th>Harrison</th>\\n      <th>Hendricks</th>\\n      <th>Henry</th>\\n      <th>Howard</th>\\n      <th>Huntington</th>\\n      <th>Jackson</th>\\n      <th>Jasper</th>\\n      <th>Jay</th>\\n      <th>Jefferson</th>\\n      <th>Jennings</th>\\n      <th>Johnson</th>\\n      <th>Knox</th>\\n      <th>Kosciusko</th>\\n      <th>LaGrange</th>\\n      <th>LaPorte</th>\\n      <th>Lake</th>\\n      <th>Lawrence</th>\\n      <th>Madison</th>\\n      <th>Marion</th>\\n      <th>Marshall</th>\\n      <th>Martin</th>\\n      <th>Miami</th>\\n      <th>Monroe</th>\\n      <th>Montgomery</th>\\n      <th>Morgan</th>\\n      <th>Newton</th>\\n      <th>Noble</th>\\n      <th>Ohio</th>\\n      <th>Orange</th>\\n      <th>Owen</th>\\n      <th>Parke</th>\\n      <th>Perry</th>\\n      <th>Pike</th>\\n      <th>Porter</th>\\n      <th>Posey</th>\\n      <th>Pulaski</th>\\n      <th>Putnam</th>\\n      <th>Randolph</th>\\n      <th>Ripley</th>\\n      <th>Rush</th>\\n      <th>Scott</th>\\n      <th>Shelby</th>\\n      <th>Spencer</th>\\n      <th>St. Joseph</th>\\n      <th>Starke</th>\\n      <th>Steuben</th>\\n      <th>Sullivan</th>\\n      <th>Switzerland</th>\\n      <th>Tippecanoe</th>\\n      <th>Tipton</th>\\n      <th>Union</th>\\n      <th>Unknown</th>\\n      <th>Vanderburgh</th>\\n      <th>Vermillion</th>\\n      <th>Vigo</th>\\n      <th>Wabash</th>\\n      <th>Warren</th>\\n      <th>Warrick</th>\\n      <th>Washington</th>\\n      <th>Wayne</th>\\n      <th>Wells</th>\\n      <th>White</th>\\n      <th>Whitley</th>\\n      <th>Adair</th>\\n      <th>Adams</th>\\n      <th>Allamakee</th>\\n      <th>Appanoose</th>\\n      <th>Audubon</th>\\n      <th>Benton</th>\\n      <th>Black Hawk</th>\\n      <th>Boone</th>\\n      <th>Bremer</th>\\n      <th>Buchanan</th>\\n      <th>Buena Vista</th>\\n      <th>Butler</th>\\n      <th>Calhoun</th>\\n      <th>Carroll</th>\\n      <th>Cass</th>\\n      <th>Cedar</th>\\n      <th>Cerro Gordo</th>\\n      <th>Cherokee</th>\\n      <th>Chickasaw</th>\\n      <th>Clarke</th>\\n      <th>Clay</th>\\n      <th>Clayton</th>\\n      <th>Clinton</th>\\n      <th>Crawford</th>\\n      <th>Dallas</th>\\n      <th>Davis</th>\\n      <th>Decatur</th>\\n      <th>Delaware</th>\\n      <th>Des Moines</th>\\n      <th>Dickinson</th>\\n      <th>Dubuque</th>\\n      <th>Emmet</th>\\n      <th>Fayette</th>\\n      <th>Floyd</th>\\n      <th>Franklin</th>\\n      <th>Fremont</th>\\n      <th>Greene</th>\\n      <th>Grundy</th>\\n      <th>Guthrie</th>\\n      <th>Hamilton</th>\\n      <th>Hancock</th>\\n      <th>Hardin</th>\\n      <th>Harrison</th>\\n      <th>Henry</th>\\n      <th>Howard</th>\\n      <th>Humboldt</th>\\n      <th>Ida</th>\\n      <th>Iowa</th>\\n      <th>Jackson</th>\\n      <th>Jasper</th>\\n      <th>Jefferson</th>\\n      <th>Johnson</th>\\n      <th>Jones</th>\\n      <th>Keokuk</th>\\n      <th>Kossuth</th>\\n      <th>Lee</th>\\n      <th>Linn</th>\\n      <th>Louisa</th>\\n      <th>Lucas</th>\\n      <th>Lyon</th>\\n      <th>Madison</th>\\n      <th>Mahaska</th>\\n      <th>Marion</th>\\n      <th>Marshall</th>\\n      <th>Mills</th>\\n      <th>Mitchell</th>\\n      <th>Monona</th>\\n      <th>Monroe</th>\\n      <th>Montgomery</th>\\n      <th>Muscatine</th>\\n      <th>O'Brien</th>\\n      <th>Osceola</th>\\n      <th>Page</th>\\n      <th>Palo Alto</th>\\n      <th>Plymouth</th>\\n      <th>Pocahontas</th>\\n      <th>Polk</th>\\n      <th>Pottawattamie</th>\\n      <th>Poweshiek</th>\\n      <th>Ringgold</th>\\n      <th>Sac</th>\\n      <th>Scott</th>\\n      <th>Shelby</th>\\n      <th>Sioux</th>\\n      <th>Story</th>\\n      <th>Tama</th>\\n      <th>Taylor</th>\\n      <th>Union</th>\\n      <th>Unknown</th>\\n      <th>Van Buren</th>\\n      <th>Wapello</th>\\n      <th>Warren</th>\\n      <th>Washington</th>\\n      <th>Wayne</th>\\n      <th>Webster</th>\\n      <th>Winnebago</th>\\n      <th>Winneshiek</th>\\n      <th>Woodbury</th>\\n      <th>Worth</th>\\n      <th>Wright</th>\\n      <th>Allen</th>\\n      <th>Anderson</th>\\n      <th>Atchison</th>\\n      <th>Barber</th>\\n      <th>Barton</th>\\n      <th>Bourbon</th>\\n      <th>Brown</th>\\n      <th>Butler</th>\\n      <th>Chase</th>\\n      <th>Chautauqua</th>\\n      <th>Cherokee</th>\\n      <th>Cheyenne</th>\\n      <th>Clark</th>\\n      <th>Clay</th>\\n      <th>Cloud</th>\\n      <th>Coffey</th>\\n      <th>Comanche</th>\\n      <th>Cowley</th>\\n      <th>Crawford</th>\\n      <th>Decatur</th>\\n      <th>Dickinson</th>\\n      <th>Doniphan</th>\\n      <th>Douglas</th>\\n      <th>Edwards</th>\\n      <th>Elk</th>\\n      <th>Ellis</th>\\n      <th>Ellsworth</th>\\n      <th>Finney</th>\\n      <th>Ford</th>\\n      <th>Franklin</th>\\n      <th>Geary</th>\\n      <th>Gove</th>\\n      <th>Graham</th>\\n      <th>Grant</th>\\n      <th>Gray</th>\\n      <th>Greeley</th>\\n      <th>Greenwood</th>\\n      <th>Hamilton</th>\\n      <th>Harper</th>\\n      <th>Harvey</th>\\n      <th>Haskell</th>\\n      <th>Hodgeman</th>\\n      <th>Jackson</th>\\n      <th>Jefferson</th>\\n      <th>Jewell</th>\\n      <th>Johnson</th>\\n      <th>Kearny</th>\\n      <th>Kingman</th>\\n      <th>Kiowa</th>\\n      <th>Labette</th>\\n      <th>Lane</th>\\n      <th>Leavenworth</th>\\n      <th>Lincoln</th>\\n      <th>Linn</th>\\n      <th>Logan</th>\\n      <th>Lyon</th>\\n      <th>Marion</th>\\n      <th>Marshall</th>\\n      <th>McPherson</th>\\n      <th>Meade</th>\\n      <th>Miami</th>\\n      <th>Mitchell</th>\\n      <th>Montgomery</th>\\n      <th>Morris</th>\\n      <th>Morton</th>\\n      <th>Nemaha</th>\\n      <th>Neosho</th>\\n      <th>Ness</th>\\n      <th>Norton</th>\\n      <th>Osage</th>\\n      <th>Osborne</th>\\n      <th>Ottawa</th>\\n      <th>Pawnee</th>\\n      <th>Phillips</th>\\n      <th>Pottawatomie</th>\\n      <th>Pratt</th>\\n      <th>Rawlins</th>\\n      <th>Reno</th>\\n      <th>Republic</th>\\n      <th>Rice</th>\\n      <th>Riley</th>\\n      <th>Rooks</th>\\n      <th>Rush</th>\\n      <th>Russell</th>\\n      <th>Saline</th>\\n      <th>Scott</th>\\n      <th>Sedgwick</th>\\n      <th>Seward</th>\\n      <th>Shawnee</th>\\n      <th>Sheridan</th>\\n      <th>Sherman</th>\\n      <th>Smith</th>\\n      <th>Stafford</th>\\n      <th>Stanton</th>\\n      <th>Stevens</th>\\n      <th>Sumner</th>\\n      <th>Thomas</th>\\n      <th>Trego</th>\\n      <th>Unknown</th>\\n      <th>Wabaunsee</th>\\n      <th>Wallace</th>\\n      <th>Washington</th>\\n      <th>Wichita</th>\\n      <th>Wilson</th>\\n      <th>Woodson</th>\\n      <th>Wyandotte</th>\\n      <th>Adair</th>\\n      <th>Allen</th>\\n      <th>Anderson</th>\\n      <th>Ballard</th>\\n      <th>Barren</th>\\n      <th>Bath</th>\\n      <th>Bell</th>\\n      <th>Boone</th>\\n      <th>Bourbon</th>\\n      <th>Boyd</th>\\n      <th>Boyle</th>\\n      <th>Bracken</th>\\n      <th>Breathitt</th>\\n      <th>Breckinridge</th>\\n      <th>Bullitt</th>\\n      <th>Butler</th>\\n      <th>Caldwell</th>\\n      <th>Calloway</th>\\n      <th>Campbell</th>\\n      <th>Carlisle</th>\\n      <th>Carroll</th>\\n      <th>Carter</th>\\n      <th>Casey</th>\\n      <th>Christian</th>\\n      <th>Clark</th>\\n      <th>Clay</th>\\n      <th>Clinton</th>\\n      <th>Crittenden</th>\\n      <th>Cumberland</th>\\n      <th>Daviess</th>\\n      <th>Edmonson</th>\\n      <th>Elliott</th>\\n      <th>Estill</th>\\n      <th>Fayette</th>\\n      <th>Fleming</th>\\n      <th>Floyd</th>\\n      <th>Franklin</th>\\n      <th>Fulton</th>\\n      <th>Gallatin</th>\\n      <th>Garrard</th>\\n      <th>Grant</th>\\n      <th>Graves</th>\\n      <th>Grayson</th>\\n      <th>Green</th>\\n      <th>Greenup</th>\\n      <th>Hancock</th>\\n      <th>Hardin</th>\\n      <th>Harlan</th>\\n      <th>Harrison</th>\\n      <th>Hart</th>\\n      <th>Henderson</th>\\n      <th>Henry</th>\\n      <th>Hickman</th>\\n      <th>Hopkins</th>\\n      <th>Jackson</th>\\n      <th>Jefferson</th>\\n      <th>Jessamine</th>\\n      <th>Johnson</th>\\n      <th>Kenton</th>\\n      <th>Knott</th>\\n      <th>Knox</th>\\n      <th>Larue</th>\\n      <th>Laurel</th>\\n      <th>Lawrence</th>\\n      <th>Lee</th>\\n      <th>Leslie</th>\\n      <th>Letcher</th>\\n      <th>Lewis</th>\\n      <th>Lincoln</th>\\n      <th>Livingston</th>\\n      <th>Logan</th>\\n      <th>Lyon</th>\\n      <th>Madison</th>\\n      <th>Magoffin</th>\\n      <th>Marion</th>\\n      <th>Marshall</th>\\n      <th>Martin</th>\\n      <th>Mason</th>\\n      <th>McCracken</th>\\n      <th>McCreary</th>\\n      <th>McLean</th>\\n      <th>Meade</th>\\n      <th>Menifee</th>\\n      <th>Mercer</th>\\n      <th>Metcalfe</th>\\n      <th>Monroe</th>\\n      <th>Montgomery</th>\\n      <th>Morgan</th>\\n      <th>Muhlenberg</th>\\n      <th>Nelson</th>\\n      <th>Nicholas</th>\\n      <th>Ohio</th>\\n      <th>Oldham</th>\\n      <th>Owen</th>\\n      <th>Owsley</th>\\n      <th>Pendleton</th>\\n      <th>Perry</th>\\n      <th>Pike</th>\\n      <th>Powell</th>\\n      <th>Pulaski</th>\\n      <th>Robertson</th>\\n      <th>Rockcastle</th>\\n      <th>Rowan</th>\\n      <th>Russell</th>\\n      <th>Scott</th>\\n      <th>Shelby</th>\\n      <th>Simpson</th>\\n      <th>Spencer</th>\\n      <th>Taylor</th>\\n      <th>Todd</th>\\n      <th>Trigg</th>\\n      <th>Trimble</th>\\n      <th>Union</th>\\n      <th>Unknown</th>\\n      <th>Warren</th>\\n      <th>Washington</th>\\n      <th>Wayne</th>\\n      <th>Webster</th>\\n      <th>Whitley</th>\\n      <th>Wolfe</th>\\n      <th>Woodford</th>\\n      <th>Acadia</th>\\n      <th>Allen</th>\\n      <th>Ascension</th>\\n      <th>Assumption</th>\\n      <th>Avoyelles</th>\\n      <th>Beauregard</th>\\n      <th>Bienville</th>\\n      <th>Bossier</th>\\n      <th>Caddo</th>\\n      <th>Calcasieu</th>\\n      <th>Caldwell</th>\\n      <th>Cameron</th>\\n      <th>Catahoula</th>\\n      <th>Claiborne</th>\\n      <th>Concordia</th>\\n      <th>De Soto</th>\\n      <th>East Baton Rouge</th>\\n      <th>East Carroll</th>\\n      <th>East Feliciana</th>\\n      <th>Evangeline</th>\\n      <th>Franklin</th>\\n      <th>Grant</th>\\n      <th>Iberia</th>\\n      <th>Iberville</th>\\n      <th>Jackson</th>\\n      <th>Jefferson</th>\\n      <th>Jefferson Davis</th>\\n      <th>LaSalle</th>\\n      <th>Lafayette</th>\\n      <th>Lafourche</th>\\n      <th>Lincoln</th>\\n      <th>Livingston</th>\\n      <th>Madison</th>\\n      <th>Morehouse</th>\\n      <th>Natchitoches</th>\\n      <th>Orleans</th>\\n      <th>Ouachita</th>\\n      <th>Plaquemines</th>\\n      <th>Pointe Coupee</th>\\n      <th>Rapides</th>\\n      <th>Red River</th>\\n      <th>Richland</th>\\n      <th>Sabine</th>\\n      <th>St. Bernard</th>\\n      <th>St. Charles</th>\\n      <th>St. Helena</th>\\n      <th>St. James</th>\\n      <th>St. John the Baptist</th>\\n      <th>St. Landry</th>\\n      <th>St. Martin</th>\\n      <th>St. Mary</th>\\n      <th>St. Tammany</th>\\n      <th>Tangipahoa</th>\\n      <th>Tensas</th>\\n      <th>Terrebonne</th>\\n      <th>Union</th>\\n      <th>Unknown</th>\\n      <th>Vermilion</th>\\n      <th>Vernon</th>\\n      <th>Washington</th>\\n      <th>Webster</th>\\n      <th>West Baton Rouge</th>\\n      <th>West Carroll</th>\\n      <th>West Feliciana</th>\\n      <th>Winn</th>\\n      <th>Androscoggin</th>\\n      <th>Aroostook</th>\\n      <th>Cumberland</th>\\n      <th>Franklin</th>\\n      <th>Hancock</th>\\n      <th>Kennebec</th>\\n      <th>Knox</th>\\n      <th>Lincoln</th>\\n      <th>Oxford</th>\\n      <th>Penobscot</th>\\n      <th>Piscataquis</th>\\n      <th>Sagadahoc</th>\\n      <th>Somerset</th>\\n      <th>Unknown</th>\\n      <th>Waldo</th>\\n      <th>Washington</th>\\n      <th>York</th>\\n      <th>Allegany</th>\\n      <th>Anne Arundel</th>\\n      <th>Baltimore</th>\\n      <th>Baltimore city</th>\\n      <th>Calvert</th>\\n      <th>Caroline</th>\\n      <th>Carroll</th>\\n      <th>Cecil</th>\\n      <th>Charles</th>\\n      <th>Dorchester</th>\\n      <th>Frederick</th>\\n      <th>Garrett</th>\\n      <th>Harford</th>\\n      <th>Howard</th>\\n      <th>Kent</th>\\n      <th>Montgomery</th>\\n      <th>Prince George's</th>\\n      <th>Queen Anne's</th>\\n      <th>Somerset</th>\\n      <th>St. Mary's</th>\\n      <th>Talbot</th>\\n      <th>Unknown</th>\\n      <th>Washington</th>\\n      <th>Wicomico</th>\\n      <th>Worcester</th>\\n      <th>Barnstable</th>\\n      <th>Berkshire</th>\\n      <th>Bristol</th>\\n      <th>Dukes</th>\\n      <th>Essex</th>\\n      <th>Franklin</th>\\n      <th>Hampden</th>\\n      <th>Hampshire</th>\\n      <th>Middlesex</th>\\n      <th>Nantucket</th>\\n      <th>Norfolk</th>\\n      <th>Plymouth</th>\\n      <th>Suffolk</th>\\n      <th>Unknown</th>\\n      <th>Worcester</th>\\n      <th>Alcona</th>\\n      <th>Alger</th>\\n      <th>Allegan</th>\\n      <th>Alpena</th>\\n      <th>Antrim</th>\\n      <th>Arenac</th>\\n      <th>Baraga</th>\\n      <th>Barry</th>\\n      <th>Bay</th>\\n      <th>Benzie</th>\\n      <th>Berrien</th>\\n      <th>Branch</th>\\n      <th>Calhoun</th>\\n      <th>Cass</th>\\n      <th>Charlevoix</th>\\n      <th>Cheboygan</th>\\n      <th>Chippewa</th>\\n      <th>Clare</th>\\n      <th>Clinton</th>\\n      <th>Crawford</th>\\n      <th>Delta</th>\\n      <th>Dickinson</th>\\n      <th>Eaton</th>\\n      <th>Emmet</th>\\n      <th>Genesee</th>\\n      <th>Gladwin</th>\\n      <th>Gogebic</th>\\n      <th>Grand Traverse</th>\\n      <th>Gratiot</th>\\n      <th>Hillsdale</th>\\n      <th>Houghton</th>\\n      <th>Huron</th>\\n      <th>Ingham</th>\\n      <th>Ionia</th>\\n      <th>Iosco</th>\\n      <th>Iron</th>\\n      <th>Isabella</th>\\n      <th>Jackson</th>\\n      <th>Kalamazoo</th>\\n      <th>Kalkaska</th>\\n      <th>Kent</th>\\n      <th>Keweenaw</th>\\n      <th>Lake</th>\\n      <th>Lapeer</th>\\n      <th>Leelanau</th>\\n      <th>Lenawee</th>\\n      <th>Livingston</th>\\n      <th>Luce</th>\\n      <th>Mackinac</th>\\n      <th>Macomb</th>\\n      <th>Manistee</th>\\n      <th>Marquette</th>\\n      <th>Mason</th>\\n      <th>Mecosta</th>\\n      <th>Menominee</th>\\n      <th>Midland</th>\\n      <th>Missaukee</th>\\n      <th>Monroe</th>\\n      <th>Montcalm</th>\\n      <th>Montmorency</th>\\n      <th>Muskegon</th>\\n      <th>Newaygo</th>\\n      <th>Oakland</th>\\n      <th>Oceana</th>\\n      <th>Ogemaw</th>\\n      <th>Ontonagon</th>\\n      <th>Osceola</th>\\n      <th>Oscoda</th>\\n      <th>Otsego</th>\\n      <th>Ottawa</th>\\n      <th>Presque Isle</th>\\n      <th>Roscommon</th>\\n      <th>Saginaw</th>\\n      <th>Sanilac</th>\\n      <th>Schoolcraft</th>\\n      <th>Shiawassee</th>\\n      <th>St. Clair</th>\\n      <th>St. Joseph</th>\\n      <th>Tuscola</th>\\n      <th>Unknown</th>\\n      <th>Van Buren</th>\\n      <th>Washtenaw</th>\\n      <th>Wayne</th>\\n      <th>Wexford</th>\\n      <th>Aitkin</th>\\n      <th>Anoka</th>\\n      <th>Becker</th>\\n      <th>Beltrami</th>\\n      <th>Benton</th>\\n      <th>Big Stone</th>\\n      <th>Blue Earth</th>\\n      <th>Brown</th>\\n      <th>Carlton</th>\\n      <th>Carver</th>\\n      <th>Cass</th>\\n      <th>Chippewa</th>\\n      <th>Chisago</th>\\n      <th>Clay</th>\\n      <th>Clearwater</th>\\n      <th>Cook</th>\\n      <th>Cottonwood</th>\\n      <th>Crow Wing</th>\\n      <th>Dakota</th>\\n      <th>Dodge</th>\\n      <th>Douglas</th>\\n      <th>Faribault</th>\\n      <th>Fillmore</th>\\n      <th>Freeborn</th>\\n      <th>Goodhue</th>\\n      <th>Grant</th>\\n      <th>Hennepin</th>\\n      <th>Houston</th>\\n      <th>Hubbard</th>\\n      <th>Isanti</th>\\n      <th>Itasca</th>\\n      <th>Jackson</th>\\n      <th>Kanabec</th>\\n      <th>Kandiyohi</th>\\n      <th>Kittson</th>\\n      <th>Koochiching</th>\\n      <th>Lac qui Parle</th>\\n      <th>Lake</th>\\n      <th>Lake of the Woods</th>\\n      <th>Le Sueur</th>\\n      <th>Lincoln</th>\\n      <th>Lyon</th>\\n      <th>Mahnomen</th>\\n      <th>Marshall</th>\\n      <th>Martin</th>\\n      <th>McLeod</th>\\n      <th>Meeker</th>\\n      <th>Mille Lacs</th>\\n      <th>Morrison</th>\\n      <th>Mower</th>\\n      <th>Murray</th>\\n      <th>Nicollet</th>\\n      <th>Nobles</th>\\n      <th>Norman</th>\\n      <th>Olmsted</th>\\n      <th>Otter Tail</th>\\n      <th>Pennington</th>\\n      <th>Pine</th>\\n      <th>Pipestone</th>\\n      <th>Polk</th>\\n      <th>Pope</th>\\n      <th>Ramsey</th>\\n      <th>Red Lake</th>\\n      <th>Redwood</th>\\n      <th>Renville</th>\\n      <th>Rice</th>\\n      <th>Rock</th>\\n      <th>Roseau</th>\\n      <th>Scott</th>\\n      <th>Sherburne</th>\\n      <th>Sibley</th>\\n      <th>St. Louis</th>\\n      <th>Stearns</th>\\n      <th>Steele</th>\\n      <th>Stevens</th>\\n      <th>Swift</th>\\n      <th>Todd</th>\\n      <th>Traverse</th>\\n      <th>Unknown</th>\\n      <th>Wabasha</th>\\n      <th>Wadena</th>\\n      <th>Waseca</th>\\n      <th>Washington</th>\\n      <th>Watonwan</th>\\n      <th>Wilkin</th>\\n      <th>Winona</th>\\n      <th>Wright</th>\\n      <th>Yellow Medicine</th>\\n      <th>Adams</th>\\n      <th>Alcorn</th>\\n      <th>Amite</th>\\n      <th>Attala</th>\\n      <th>Benton</th>\\n      <th>Bolivar</th>\\n      <th>Calhoun</th>\\n      <th>Carroll</th>\\n      <th>Chickasaw</th>\\n      <th>Choctaw</th>\\n      <th>Claiborne</th>\\n      <th>Clarke</th>\\n      <th>Clay</th>\\n      <th>Coahoma</th>\\n      <th>Copiah</th>\\n      <th>Covington</th>\\n      <th>DeSoto</th>\\n      <th>Forrest</th>\\n      <th>Franklin</th>\\n      <th>George</th>\\n      <th>Greene</th>\\n      <th>Grenada</th>\\n      <th>Hancock</th>\\n      <th>Harrison</th>\\n      <th>Hinds</th>\\n      <th>Holmes</th>\\n      <th>Humphreys</th>\\n      <th>Issaquena</th>\\n      <th>Itawamba</th>\\n      <th>Jackson</th>\\n      <th>Jasper</th>\\n      <th>Jefferson</th>\\n      <th>Jefferson Davis</th>\\n      <th>Jones</th>\\n      <th>Kemper</th>\\n      <th>Lafayette</th>\\n      <th>Lamar</th>\\n      <th>Lauderdale</th>\\n      <th>Lawrence</th>\\n      <th>Leake</th>\\n      <th>Lee</th>\\n      <th>Leflore</th>\\n      <th>Lincoln</th>\\n      <th>Lowndes</th>\\n      <th>Madison</th>\\n      <th>Marion</th>\\n      <th>Marshall</th>\\n      <th>Monroe</th>\\n      <th>Montgomery</th>\\n      <th>Neshoba</th>\\n      <th>Newton</th>\\n      <th>Noxubee</th>\\n      <th>Oktibbeha</th>\\n      <th>Panola</th>\\n      <th>Pearl River</th>\\n      <th>Perry</th>\\n      <th>Pike</th>\\n      <th>Pontotoc</th>\\n      <th>Prentiss</th>\\n      <th>Quitman</th>\\n      <th>Rankin</th>\\n      <th>Scott</th>\\n      <th>Sharkey</th>\\n      <th>Simpson</th>\\n      <th>Smith</th>\\n      <th>Stone</th>\\n      <th>Sunflower</th>\\n      <th>Tallahatchie</th>\\n      <th>Tate</th>\\n      <th>Tippah</th>\\n      <th>Tishomingo</th>\\n      <th>Tunica</th>\\n      <th>Union</th>\\n      <th>Unknown</th>\\n      <th>Walthall</th>\\n      <th>Warren</th>\\n      <th>Washington</th>\\n      <th>Wayne</th>\\n      <th>Webster</th>\\n      <th>Wilkinson</th>\\n      <th>Winston</th>\\n      <th>Yalobusha</th>\\n      <th>Yazoo</th>\\n      <th>Adair</th>\\n      <th>Andrew</th>\\n      <th>Atchison</th>\\n      <th>Audrain</th>\\n      <th>Barry</th>\\n      <th>Barton</th>\\n      <th>Bates</th>\\n      <th>Benton</th>\\n      <th>Bollinger</th>\\n      <th>Boone</th>\\n      <th>Buchanan</th>\\n      <th>Butler</th>\\n      <th>Caldwell</th>\\n      <th>Callaway</th>\\n      <th>Camden</th>\\n      <th>Cape Girardeau</th>\\n      <th>Carroll</th>\\n      <th>Carter</th>\\n      <th>Cass</th>\\n      <th>Cedar</th>\\n      <th>Chariton</th>\\n      <th>Christian</th>\\n      <th>Clark</th>\\n      <th>Clay</th>\\n      <th>Clinton</th>\\n      <th>Cole</th>\\n      <th>Cooper</th>\\n      <th>Crawford</th>\\n      <th>Dade</th>\\n      <th>Dallas</th>\\n      <th>Daviess</th>\\n      <th>DeKalb</th>\\n      <th>Dent</th>\\n      <th>Douglas</th>\\n      <th>Dunklin</th>\\n      <th>Franklin</th>\\n      <th>Gasconade</th>\\n      <th>Gentry</th>\\n      <th>Greene</th>\\n      <th>Grundy</th>\\n      <th>Harrison</th>\\n      <th>Henry</th>\\n      <th>Hickory</th>\\n      <th>Holt</th>\\n      <th>Howard</th>\\n      <th>Howell</th>\\n      <th>Iron</th>\\n      <th>Jackson</th>\\n      <th>Jasper</th>\\n      <th>Jefferson</th>\\n      <th>Johnson</th>\\n      <th>Joplin</th>\\n      <th>Kansas City</th>\\n      <th>Knox</th>\\n      <th>Laclede</th>\\n      <th>Lafayette</th>\\n      <th>Lawrence</th>\\n      <th>Lewis</th>\\n      <th>Lincoln</th>\\n      <th>Linn</th>\\n      <th>Livingston</th>\\n      <th>Macon</th>\\n      <th>Madison</th>\\n      <th>Maries</th>\\n      <th>Marion</th>\\n      <th>McDonald</th>\\n      <th>Mercer</th>\\n      <th>Miller</th>\\n      <th>Mississippi</th>\\n      <th>Moniteau</th>\\n      <th>Monroe</th>\\n      <th>Montgomery</th>\\n      <th>Morgan</th>\\n      <th>New Madrid</th>\\n      <th>Newton</th>\\n      <th>Nodaway</th>\\n      <th>Oregon</th>\\n      <th>Osage</th>\\n      <th>Ozark</th>\\n      <th>Pemiscot</th>\\n      <th>Perry</th>\\n      <th>Pettis</th>\\n      <th>Phelps</th>\\n      <th>Pike</th>\\n      <th>Platte</th>\\n      <th>Polk</th>\\n      <th>Pulaski</th>\\n      <th>Putnam</th>\\n      <th>Ralls</th>\\n      <th>Randolph</th>\\n      <th>Ray</th>\\n      <th>Reynolds</th>\\n      <th>Ripley</th>\\n      <th>Saline</th>\\n      <th>Schuyler</th>\\n      <th>Scotland</th>\\n      <th>Scott</th>\\n      <th>Shannon</th>\\n      <th>Shelby</th>\\n      <th>St. Charles</th>\\n      <th>St. Clair</th>\\n      <th>St. Francois</th>\\n      <th>St. Louis</th>\\n      <th>St. Louis city</th>\\n      <th>Ste. Genevieve</th>\\n      <th>Stoddard</th>\\n      <th>Stone</th>\\n      <th>Sullivan</th>\\n      <th>Taney</th>\\n      <th>Texas</th>\\n      <th>Unknown</th>\\n      <th>Vernon</th>\\n      <th>Warren</th>\\n      <th>Washington</th>\\n      <th>Wayne</th>\\n      <th>Webster</th>\\n      <th>Worth</th>\\n      <th>Wright</th>\\n      <th>Beaverhead</th>\\n      <th>Big Horn</th>\\n      <th>Blaine</th>\\n      <th>Broadwater</th>\\n      <th>Carbon</th>\\n      <th>Carter</th>\\n      <th>Cascade</th>\\n      <th>Chouteau</th>\\n      <th>Custer</th>\\n      <th>Daniels</th>\\n      <th>Dawson</th>\\n      <th>Deer Lodge</th>\\n      <th>Fallon</th>\\n      <th>Fergus</th>\\n      <th>Flathead</th>\\n      <th>Gallatin</th>\\n      <th>Garfield</th>\\n      <th>Glacier</th>\\n      <th>Golden Valley</th>\\n      <th>Granite</th>\\n      <th>Hill</th>\\n      <th>Jefferson</th>\\n      <th>Judith Basin</th>\\n      <th>Lake</th>\\n      <th>Lewis and Clark</th>\\n      <th>Liberty</th>\\n      <th>Lincoln</th>\\n      <th>Madison</th>\\n      <th>McCone</th>\\n      <th>Meagher</th>\\n      <th>Mineral</th>\\n      <th>Missoula</th>\\n      <th>Musselshell</th>\\n      <th>Park</th>\\n      <th>Petroleum</th>\\n      <th>Phillips</th>\\n      <th>Pondera</th>\\n      <th>Powder River</th>\\n      <th>Powell</th>\\n      <th>Prairie</th>\\n      <th>Ravalli</th>\\n      <th>Richland</th>\\n      <th>Roosevelt</th>\\n      <th>Rosebud</th>\\n      <th>Sanders</th>\\n      <th>Sheridan</th>\\n      <th>Silver Bow</th>\\n      <th>Stillwater</th>\\n      <th>Sweet Grass</th>\\n      <th>Teton</th>\\n      <th>Toole</th>\\n      <th>Treasure</th>\\n      <th>Unknown</th>\\n      <th>Valley</th>\\n      <th>Wheatland</th>\\n      <th>Wibaux</th>\\n      <th>Yellowstone</th>\\n      <th>Adams</th>\\n      <th>Antelope</th>\\n      <th>Arthur</th>\\n      <th>Banner</th>\\n      <th>Blaine</th>\\n      <th>Boone</th>\\n      <th>Box Butte</th>\\n      <th>Boyd</th>\\n      <th>Brown</th>\\n      <th>Buffalo</th>\\n      <th>Burt</th>\\n      <th>Butler</th>\\n      <th>Cass</th>\\n      <th>Cedar</th>\\n      <th>Chase</th>\\n      <th>Cherry</th>\\n      <th>Cheyenne</th>\\n      <th>Clay</th>\\n      <th>Colfax</th>\\n      <th>Cuming</th>\\n      <th>Custer</th>\\n      <th>Dakota</th>\\n      <th>Dawes</th>\\n      <th>Dawson</th>\\n      <th>Deuel</th>\\n      <th>Dixon</th>\\n      <th>Dodge</th>\\n      <th>Douglas</th>\\n      <th>Dundy</th>\\n      <th>Fillmore</th>\\n      <th>Franklin</th>\\n      <th>Frontier</th>\\n      <th>Furnas</th>\\n      <th>Gage</th>\\n      <th>Garden</th>\\n      <th>Garfield</th>\\n      <th>Gosper</th>\\n      <th>Grant</th>\\n      <th>Greeley</th>\\n      <th>Hall</th>\\n      <th>Hamilton</th>\\n      <th>Harlan</th>\\n      <th>Hayes</th>\\n      <th>Hitchcock</th>\\n      <th>Holt</th>\\n      <th>Hooker</th>\\n      <th>Howard</th>\\n      <th>Jefferson</th>\\n      <th>Johnson</th>\\n      <th>Kearney</th>\\n      <th>Keith</th>\\n      <th>Keya Paha</th>\\n      <th>Kimball</th>\\n      <th>Knox</th>\\n      <th>Lancaster</th>\\n      <th>Lincoln</th>\\n      <th>Logan</th>\\n      <th>Loup</th>\\n      <th>Madison</th>\\n      <th>McPherson</th>\\n      <th>Merrick</th>\\n      <th>Morrill</th>\\n      <th>Nance</th>\\n      <th>Nemaha</th>\\n      <th>Nuckolls</th>\\n      <th>Otoe</th>\\n      <th>Pawnee</th>\\n      <th>Perkins</th>\\n      <th>Phelps</th>\\n      <th>Pierce</th>\\n      <th>Platte</th>\\n      <th>Polk</th>\\n      <th>Red Willow</th>\\n      <th>Richardson</th>\\n      <th>Rock</th>\\n      <th>Saline</th>\\n      <th>Sarpy</th>\\n      <th>Saunders</th>\\n      <th>Scotts Bluff</th>\\n      <th>Seward</th>\\n      <th>Sheridan</th>\\n      <th>Sherman</th>\\n      <th>Sioux</th>\\n      <th>Stanton</th>\\n      <th>Thayer</th>\\n      <th>Thomas</th>\\n      <th>Thurston</th>\\n      <th>Unknown</th>\\n      <th>Valley</th>\\n      <th>Washington</th>\\n      <th>Wayne</th>\\n      <th>Webster</th>\\n      <th>Wheeler</th>\\n      <th>York</th>\\n      <th>Carson City</th>\\n      <th>Churchill</th>\\n      <th>Clark</th>\\n      <th>Douglas</th>\\n      <th>Elko</th>\\n      <th>Esmeralda</th>\\n      <th>Eureka</th>\\n      <th>Humboldt</th>\\n      <th>Lander</th>\\n      <th>Lincoln</th>\\n      <th>Lyon</th>\\n      <th>Mineral</th>\\n      <th>Nye</th>\\n      <th>Pershing</th>\\n      <th>Storey</th>\\n      <th>Unknown</th>\\n      <th>Washoe</th>\\n      <th>White Pine</th>\\n      <th>Belknap</th>\\n      <th>Carroll</th>\\n      <th>Cheshire</th>\\n      <th>Coos</th>\\n      <th>Grafton</th>\\n      <th>Hillsborough</th>\\n      <th>Merrimack</th>\\n      <th>Rockingham</th>\\n      <th>Strafford</th>\\n      <th>Sullivan</th>\\n      <th>Unknown</th>\\n      <th>Atlantic</th>\\n      <th>Bergen</th>\\n      <th>Burlington</th>\\n      <th>Camden</th>\\n      <th>Cape May</th>\\n      <th>Cumberland</th>\\n      <th>Essex</th>\\n      <th>Gloucester</th>\\n      <th>Hudson</th>\\n      <th>Hunterdon</th>\\n      <th>Mercer</th>\\n      <th>Middlesex</th>\\n      <th>Monmouth</th>\\n      <th>Morris</th>\\n      <th>Ocean</th>\\n      <th>Passaic</th>\\n      <th>Salem</th>\\n      <th>Somerset</th>\\n      <th>Sussex</th>\\n      <th>Union</th>\\n      <th>Unknown</th>\\n      <th>Warren</th>\\n      <th>Bernalillo</th>\\n      <th>Catron</th>\\n      <th>Chaves</th>\\n      <th>Cibola</th>\\n      <th>Colfax</th>\\n      <th>Curry</th>\\n      <th>De Baca</th>\\n      <th>Do\\u00f1a Ana</th>\\n      <th>Eddy</th>\\n      <th>Grant</th>\\n      <th>Guadalupe</th>\\n      <th>Harding</th>\\n      <th>Hidalgo</th>\\n      <th>Lea</th>\\n      <th>Lincoln</th>\\n      <th>Los Alamos</th>\\n      <th>Luna</th>\\n      <th>McKinley</th>\\n      <th>Mora</th>\\n      <th>Otero</th>\\n      <th>Quay</th>\\n      <th>Rio Arriba</th>\\n      <th>Roosevelt</th>\\n      <th>San Juan</th>\\n      <th>San Miguel</th>\\n      <th>Sandoval</th>\\n      <th>Santa Fe</th>\\n      <th>Sierra</th>\\n      <th>Socorro</th>\\n      <th>Taos</th>\\n      <th>Torrance</th>\\n      <th>Union</th>\\n      <th>Unknown</th>\\n      <th>Valencia</th>\\n      <th>Albany</th>\\n      <th>Allegany</th>\\n      <th>Broome</th>\\n      <th>Cattaraugus</th>\\n      <th>Cayuga</th>\\n      <th>Chautauqua</th>\\n      <th>Chemung</th>\\n      <th>Chenango</th>\\n      <th>Clinton</th>\\n      <th>Columbia</th>\\n      <th>Cortland</th>\\n      <th>Delaware</th>\\n      <th>Dutchess</th>\\n      <th>Erie</th>\\n      <th>Essex</th>\\n      <th>Franklin</th>\\n      <th>Fulton</th>\\n      <th>Genesee</th>\\n      <th>Greene</th>\\n      <th>Hamilton</th>\\n      <th>Herkimer</th>\\n      <th>Jefferson</th>\\n      <th>Lewis</th>\\n      <th>Livingston</th>\\n      <th>Madison</th>\\n      <th>Monroe</th>\\n      <th>Montgomery</th>\\n      <th>Nassau</th>\\n      <th>New York City</th>\\n      <th>Niagara</th>\\n      <th>Oneida</th>\\n      <th>Onondaga</th>\\n      <th>Ontario</th>\\n      <th>Orange</th>\\n      <th>Orleans</th>\\n      <th>Oswego</th>\\n      <th>Otsego</th>\\n      <th>Putnam</th>\\n      <th>Rensselaer</th>\\n      <th>Rockland</th>\\n      <th>Saratoga</th>\\n      <th>Schenectady</th>\\n      <th>Schoharie</th>\\n      <th>Schuyler</th>\\n      <th>Seneca</th>\\n      <th>St. Lawrence</th>\\n      <th>Steuben</th>\\n      <th>Suffolk</th>\\n      <th>Sullivan</th>\\n      <th>Tioga</th>\\n      <th>Tompkins</th>\\n      <th>Ulster</th>\\n      <th>Unknown</th>\\n      <th>Warren</th>\\n      <th>Washington</th>\\n      <th>Wayne</th>\\n      <th>Westchester</th>\\n      <th>Wyoming</th>\\n      <th>Yates</th>\\n      <th>Alamance</th>\\n      <th>Alexander</th>\\n      <th>Alleghany</th>\\n      <th>Anson</th>\\n      <th>Ashe</th>\\n      <th>Avery</th>\\n      <th>Beaufort</th>\\n      <th>Bertie</th>\\n      <th>Bladen</th>\\n      <th>Brunswick</th>\\n      <th>Buncombe</th>\\n      <th>Burke</th>\\n      <th>Cabarrus</th>\\n      <th>Caldwell</th>\\n      <th>Camden</th>\\n      <th>Carteret</th>\\n      <th>Caswell</th>\\n      <th>Catawba</th>\\n      <th>Chatham</th>\\n      <th>Cherokee</th>\\n      <th>Chowan</th>\\n      <th>Clay</th>\\n      <th>Cleveland</th>\\n      <th>Columbus</th>\\n      <th>Craven</th>\\n      <th>Cumberland</th>\\n      <th>Currituck</th>\\n      <th>Dare</th>\\n      <th>Davidson</th>\\n      <th>Davie</th>\\n      <th>Duplin</th>\\n      <th>Durham</th>\\n      <th>Edgecombe</th>\\n      <th>Forsyth</th>\\n      <th>Franklin</th>\\n      <th>Gaston</th>\\n      <th>Gates</th>\\n      <th>Graham</th>\\n      <th>Granville</th>\\n      <th>Greene</th>\\n      <th>Guilford</th>\\n      <th>Halifax</th>\\n      <th>Harnett</th>\\n      <th>Haywood</th>\\n      <th>Henderson</th>\\n      <th>Hertford</th>\\n      <th>Hoke</th>\\n      <th>Hyde</th>\\n      <th>Iredell</th>\\n      <th>Jackson</th>\\n      <th>Johnston</th>\\n      <th>Jones</th>\\n      <th>Lee</th>\\n      <th>Lenoir</th>\\n      <th>Lincoln</th>\\n      <th>Macon</th>\\n      <th>Madison</th>\\n      <th>Martin</th>\\n      <th>McDowell</th>\\n      <th>Mecklenburg</th>\\n      <th>Mitchell</th>\\n      <th>Montgomery</th>\\n      <th>Moore</th>\\n      <th>Nash</th>\\n      <th>New Hanover</th>\\n      <th>Northampton</th>\\n      <th>Onslow</th>\\n      <th>Orange</th>\\n      <th>Pamlico</th>\\n      <th>Pasquotank</th>\\n      <th>Pender</th>\\n      <th>Perquimans</th>\\n      <th>Person</th>\\n      <th>Pitt</th>\\n      <th>Polk</th>\\n      <th>Randolph</th>\\n      <th>Richmond</th>\\n      <th>Robeson</th>\\n      <th>Rockingham</th>\\n      <th>Rowan</th>\\n      <th>Rutherford</th>\\n      <th>Sampson</th>\\n      <th>Scotland</th>\\n      <th>Stanly</th>\\n      <th>Stokes</th>\\n      <th>Surry</th>\\n      <th>Swain</th>\\n      <th>Transylvania</th>\\n      <th>Tyrrell</th>\\n      <th>Union</th>\\n      <th>Vance</th>\\n      <th>Wake</th>\\n      <th>Warren</th>\\n      <th>Washington</th>\\n      <th>Watauga</th>\\n      <th>Wayne</th>\\n      <th>Wilkes</th>\\n      <th>Wilson</th>\\n      <th>Yadkin</th>\\n      <th>Yancey</th>\\n      <th>Adams</th>\\n      <th>Barnes</th>\\n      <th>Benson</th>\\n      <th>Billings</th>\\n      <th>Bottineau</th>\\n      <th>Bowman</th>\\n      <th>Burke</th>\\n      <th>Burleigh</th>\\n      <th>Cass</th>\\n      <th>Cavalier</th>\\n      <th>Dickey</th>\\n      <th>Divide</th>\\n      <th>Dunn</th>\\n      <th>Eddy</th>\\n      <th>Emmons</th>\\n      <th>Foster</th>\\n      <th>Golden Valley</th>\\n      <th>Grand Forks</th>\\n      <th>Grant</th>\\n      <th>Griggs</th>\\n      <th>Hettinger</th>\\n      <th>Kidder</th>\\n      <th>LaMoure</th>\\n      <th>Logan</th>\\n      <th>McHenry</th>\\n      <th>McIntosh</th>\\n      <th>McKenzie</th>\\n      <th>McLean</th>\\n      <th>Mercer</th>\\n      <th>Morton</th>\\n      <th>Mountrail</th>\\n      <th>Nelson</th>\\n      <th>Oliver</th>\\n      <th>Pembina</th>\\n      <th>Pierce</th>\\n      <th>Ramsey</th>\\n      <th>Ransom</th>\\n      <th>Renville</th>\\n      <th>Richland</th>\\n      <th>Rolette</th>\\n      <th>Sargent</th>\\n      <th>Sheridan</th>\\n      <th>Sioux</th>\\n      <th>Slope</th>\\n      <th>Stark</th>\\n      <th>Steele</th>\\n      <th>Stutsman</th>\\n      <th>Towner</th>\\n      <th>Traill</th>\\n      <th>Unknown</th>\\n      <th>Walsh</th>\\n      <th>Ward</th>\\n      <th>Wells</th>\\n      <th>Williams</th>\\n      <th>Saipan</th>\\n      <th>Tinian</th>\\n      <th>Unknown</th>\\n      <th>Adams</th>\\n      <th>Allen</th>\\n      <th>Ashland</th>\\n      <th>Ashtabula</th>\\n      <th>Athens</th>\\n      <th>Auglaize</th>\\n      <th>Belmont</th>\\n      <th>Brown</th>\\n      <th>Butler</th>\\n      <th>Carroll</th>\\n      <th>Champaign</th>\\n      <th>Clark</th>\\n      <th>Clermont</th>\\n      <th>Clinton</th>\\n      <th>Columbiana</th>\\n      <th>Coshocton</th>\\n      <th>Crawford</th>\\n      <th>Cuyahoga</th>\\n      <th>Darke</th>\\n      <th>Defiance</th>\\n      <th>Delaware</th>\\n      <th>Erie</th>\\n      <th>Fairfield</th>\\n      <th>Fayette</th>\\n      <th>Franklin</th>\\n      <th>Fulton</th>\\n      <th>Gallia</th>\\n      <th>Geauga</th>\\n      <th>Greene</th>\\n      <th>Guernsey</th>\\n      <th>Hamilton</th>\\n      <th>Hancock</th>\\n      <th>Hardin</th>\\n      <th>Harrison</th>\\n      <th>Henry</th>\\n      <th>Highland</th>\\n      <th>Hocking</th>\\n      <th>Holmes</th>\\n      <th>Huron</th>\\n      <th>Jackson</th>\\n      <th>Jefferson</th>\\n      <th>Knox</th>\\n      <th>Lake</th>\\n      <th>Lawrence</th>\\n      <th>Licking</th>\\n      <th>Logan</th>\\n      <th>Lorain</th>\\n      <th>Lucas</th>\\n      <th>Madison</th>\\n      <th>Mahoning</th>\\n      <th>Marion</th>\\n      <th>Medina</th>\\n      <th>Meigs</th>\\n      <th>Mercer</th>\\n      <th>Miami</th>\\n      <th>Monroe</th>\\n      <th>Montgomery</th>\\n      <th>Morgan</th>\\n      <th>Morrow</th>\\n      <th>Muskingum</th>\\n      <th>Noble</th>\\n      <th>Ottawa</th>\\n      <th>Paulding</th>\\n      <th>Perry</th>\\n      <th>Pickaway</th>\\n      <th>Pike</th>\\n      <th>Portage</th>\\n      <th>Preble</th>\\n      <th>Putnam</th>\\n      <th>Richland</th>\\n      <th>Ross</th>\\n      <th>Sandusky</th>\\n      <th>Scioto</th>\\n      <th>Seneca</th>\\n      <th>Shelby</th>\\n      <th>Stark</th>\\n      <th>Summit</th>\\n      <th>Trumbull</th>\\n      <th>Tuscarawas</th>\\n      <th>Union</th>\\n      <th>Unknown</th>\\n      <th>Van Wert</th>\\n      <th>Vinton</th>\\n      <th>Warren</th>\\n      <th>Washington</th>\\n      <th>Wayne</th>\\n      <th>Williams</th>\\n      <th>Wood</th>\\n      <th>Wyandot</th>\\n      <th>Adair</th>\\n      <th>Alfalfa</th>\\n      <th>Atoka</th>\\n      <th>Beaver</th>\\n      <th>Beckham</th>\\n      <th>Blaine</th>\\n      <th>Bryan</th>\\n      <th>Caddo</th>\\n      <th>Canadian</th>\\n      <th>Carter</th>\\n      <th>Cherokee</th>\\n      <th>Choctaw</th>\\n      <th>Cimarron</th>\\n      <th>Cleveland</th>\\n      <th>Coal</th>\\n      <th>Comanche</th>\\n      <th>Cotton</th>\\n      <th>Craig</th>\\n      <th>Creek</th>\\n      <th>Custer</th>\\n      <th>Delaware</th>\\n      <th>Dewey</th>\\n      <th>Ellis</th>\\n      <th>Garfield</th>\\n      <th>Garvin</th>\\n      <th>Grady</th>\\n      <th>Grant</th>\\n      <th>Greer</th>\\n      <th>Harmon</th>\\n      <th>Harper</th>\\n      <th>Haskell</th>\\n      <th>Hughes</th>\\n      <th>Jackson</th>\\n      <th>Jefferson</th>\\n      <th>Johnston</th>\\n      <th>Kay</th>\\n      <th>Kingfisher</th>\\n      <th>Kiowa</th>\\n      <th>Latimer</th>\\n      <th>Le Flore</th>\\n      <th>Lincoln</th>\\n      <th>Logan</th>\\n      <th>Love</th>\\n      <th>Major</th>\\n      <th>Marshall</th>\\n      <th>Mayes</th>\\n      <th>McClain</th>\\n      <th>McCurtain</th>\\n      <th>McIntosh</th>\\n      <th>Murray</th>\\n      <th>Muskogee</th>\\n      <th>Noble</th>\\n      <th>Nowata</th>\\n      <th>Okfuskee</th>\\n      <th>Oklahoma</th>\\n      <th>Okmulgee</th>\\n      <th>Osage</th>\\n      <th>Ottawa</th>\\n      <th>Pawnee</th>\\n      <th>Payne</th>\\n      <th>Pittsburg</th>\\n      <th>Pontotoc</th>\\n      <th>Pottawatomie</th>\\n      <th>Pushmataha</th>\\n      <th>Roger Mills</th>\\n      <th>Rogers</th>\\n      <th>Seminole</th>\\n      <th>Sequoyah</th>\\n      <th>Stephens</th>\\n      <th>Texas</th>\\n      <th>Tillman</th>\\n      <th>Tulsa</th>\\n      <th>Unknown</th>\\n      <th>Wagoner</th>\\n      <th>Washington</th>\\n      <th>Washita</th>\\n      <th>Woods</th>\\n      <th>Woodward</th>\\n      <th>Baker</th>\\n      <th>Benton</th>\\n      <th>Clackamas</th>\\n      <th>Clatsop</th>\\n      <th>Columbia</th>\\n      <th>Coos</th>\\n      <th>Crook</th>\\n      <th>Curry</th>\\n      <th>Deschutes</th>\\n      <th>Douglas</th>\\n      <th>Gilliam</th>\\n      <th>Grant</th>\\n      <th>Harney</th>\\n      <th>Hood River</th>\\n      <th>Jackson</th>\\n      <th>Jefferson</th>\\n      <th>Josephine</th>\\n      <th>Klamath</th>\\n      <th>Lake</th>\\n      <th>Lane</th>\\n      <th>Lincoln</th>\\n      <th>Linn</th>\\n      <th>Malheur</th>\\n      <th>Marion</th>\\n      <th>Morrow</th>\\n      <th>Multnomah</th>\\n      <th>Polk</th>\\n      <th>Sherman</th>\\n      <th>Tillamook</th>\\n      <th>Umatilla</th>\\n      <th>Union</th>\\n      <th>Unknown</th>\\n      <th>Wallowa</th>\\n      <th>Wasco</th>\\n      <th>Washington</th>\\n      <th>Wheeler</th>\\n      <th>Yamhill</th>\\n      <th>Adams</th>\\n      <th>Allegheny</th>\\n      <th>Armstrong</th>\\n      <th>Beaver</th>\\n      <th>Bedford</th>\\n      <th>Berks</th>\\n      <th>Blair</th>\\n      <th>Bradford</th>\\n      <th>Bucks</th>\\n      <th>Butler</th>\\n      <th>Cambria</th>\\n      <th>Cameron</th>\\n      <th>Carbon</th>\\n      <th>Centre</th>\\n      <th>Chester</th>\\n      <th>Clarion</th>\\n      <th>Clearfield</th>\\n      <th>Clinton</th>\\n      <th>Columbia</th>\\n      <th>Crawford</th>\\n      <th>Cumberland</th>\\n      <th>Dauphin</th>\\n      <th>Delaware</th>\\n      <th>Elk</th>\\n      <th>Erie</th>\\n      <th>Fayette</th>\\n      <th>Forest</th>\\n      <th>Franklin</th>\\n      <th>Fulton</th>\\n      <th>Greene</th>\\n      <th>Huntingdon</th>\\n      <th>Indiana</th>\\n      <th>Jefferson</th>\\n      <th>Juniata</th>\\n      <th>Lackawanna</th>\\n      <th>Lancaster</th>\\n      <th>Lawrence</th>\\n      <th>Lebanon</th>\\n      <th>Lehigh</th>\\n      <th>Luzerne</th>\\n      <th>Lycoming</th>\\n      <th>McKean</th>\\n      <th>Mercer</th>\\n      <th>Mifflin</th>\\n      <th>Monroe</th>\\n      <th>Montgomery</th>\\n      <th>Montour</th>\\n      <th>Northampton</th>\\n      <th>Northumberland</th>\\n      <th>Perry</th>\\n      <th>Philadelphia</th>\\n      <th>Pike</th>\\n      <th>Potter</th>\\n      <th>Schuylkill</th>\\n      <th>Snyder</th>\\n      <th>Somerset</th>\\n      <th>Sullivan</th>\\n      <th>Susquehanna</th>\\n      <th>Tioga</th>\\n      <th>Union</th>\\n      <th>Unknown</th>\\n      <th>Venango</th>\\n      <th>Warren</th>\\n      <th>Washington</th>\\n      <th>Wayne</th>\\n      <th>Westmoreland</th>\\n      <th>Wyoming</th>\\n      <th>York</th>\\n      <th>Adjuntas</th>\\n      <th>Aguada</th>\\n      <th>Aguadilla</th>\\n      <th>Aguas Buenas</th>\\n      <th>Aibonito</th>\\n      <th>Anasco</th>\\n      <th>Arecibo</th>\\n      <th>Arroyo</th>\\n      <th>Barceloneta</th>\\n      <th>Barranquitas</th>\\n      <th>Bayamon</th>\\n      <th>Cabo Rojo</th>\\n      <th>Caguas</th>\\n      <th>Camuy</th>\\n      <th>Canovanas</th>\\n      <th>Carolina</th>\\n      <th>Catano</th>\\n      <th>Cayey</th>\\n      <th>Ceiba</th>\\n      <th>Ciales</th>\\n      <th>Cidra</th>\\n      <th>Coamo</th>\\n      <th>Comerio</th>\\n      <th>Corozal</th>\\n      <th>Culebra</th>\\n      <th>Dorado</th>\\n      <th>Fajardo</th>\\n      <th>Florida</th>\\n      <th>Guanica</th>\\n      <th>Guayama</th>\\n      <th>Guayanilla</th>\\n      <th>Guaynabo</th>\\n      <th>Gurabo</th>\\n      <th>Hatillo</th>\\n      <th>Hormigueros</th>\\n      <th>Humacao</th>\\n      <th>Isabela</th>\\n      <th>Jayuya</th>\\n      <th>Juana Diaz</th>\\n      <th>Juncos</th>\\n      <th>Lajas</th>\\n      <th>Lares</th>\\n      <th>Las Marias</th>\\n      <th>Las Piedras</th>\\n      <th>Loiza</th>\\n      <th>Luquillo</th>\\n      <th>Manati</th>\\n      <th>Maricao</th>\\n      <th>Maunabo</th>\\n      <th>Mayaguez</th>\\n      <th>Moca</th>\\n      <th>Morovis</th>\\n      <th>Naguabo</th>\\n      <th>Naranjito</th>\\n      <th>Orocovis</th>\\n      <th>Patillas</th>\\n      <th>Penuelas</th>\\n      <th>Ponce</th>\\n      <th>Quebradillas</th>\\n      <th>Rincon</th>\\n      <th>Rio Grande</th>\\n      <th>Sabana Grande</th>\\n      <th>Salinas</th>\\n      <th>San German</th>\\n      <th>San Juan</th>\\n      <th>San Lorenzo</th>\\n      <th>San Sebastian</th>\\n      <th>Santa Isabel</th>\\n      <th>Toa Alta</th>\\n      <th>Toa Baja</th>\\n      <th>Trujillo Alto</th>\\n      <th>Unknown</th>\\n      <th>Utuado</th>\\n      <th>Vega Alta</th>\\n      <th>Vega Baja</th>\\n      <th>Vieques</th>\\n      <th>Villalba</th>\\n      <th>Yabucoa</th>\\n      <th>Yauco</th>\\n      <th>Bristol</th>\\n      <th>Kent</th>\\n      <th>Newport</th>\\n      <th>Providence</th>\\n      <th>Unknown</th>\\n      <th>Washington</th>\\n      <th>Abbeville</th>\\n      <th>Aiken</th>\\n      <th>Allendale</th>\\n      <th>Anderson</th>\\n      <th>Bamberg</th>\\n      <th>Barnwell</th>\\n      <th>Beaufort</th>\\n      <th>Berkeley</th>\\n      <th>Calhoun</th>\\n      <th>Charleston</th>\\n      <th>Cherokee</th>\\n      <th>Chester</th>\\n      <th>Chesterfield</th>\\n      <th>Clarendon</th>\\n      <th>Colleton</th>\\n      <th>Darlington</th>\\n      <th>Dillon</th>\\n      <th>Dorchester</th>\\n      <th>Edgefield</th>\\n      <th>Fairfield</th>\\n      <th>Florence</th>\\n      <th>Georgetown</th>\\n      <th>Greenville</th>\\n      <th>Greenwood</th>\\n      <th>Hampton</th>\\n      <th>Horry</th>\\n      <th>Jasper</th>\\n      <th>Kershaw</th>\\n      <th>Lancaster</th>\\n      <th>Laurens</th>\\n      <th>Lee</th>\\n      <th>Lexington</th>\\n      <th>Marion</th>\\n      <th>Marlboro</th>\\n      <th>McCormick</th>\\n      <th>Newberry</th>\\n      <th>Oconee</th>\\n      <th>Orangeburg</th>\\n      <th>Pickens</th>\\n      <th>Richland</th>\\n      <th>Saluda</th>\\n      <th>Spartanburg</th>\\n      <th>Sumter</th>\\n      <th>Union</th>\\n      <th>Unknown</th>\\n      <th>Williamsburg</th>\\n      <th>York</th>\\n      <th>Aurora</th>\\n      <th>Beadle</th>\\n      <th>Bennett</th>\\n      <th>Bon Homme</th>\\n      <th>Brookings</th>\\n      <th>Brown</th>\\n      <th>Brule</th>\\n      <th>Buffalo</th>\\n      <th>Butte</th>\\n      <th>Campbell</th>\\n      <th>Charles Mix</th>\\n      <th>Clark</th>\\n      <th>Clay</th>\\n      <th>Codington</th>\\n      <th>Corson</th>\\n      <th>Custer</th>\\n      <th>Davison</th>\\n      <th>Day</th>\\n      <th>Deuel</th>\\n      <th>Dewey</th>\\n      <th>Douglas</th>\\n      <th>Edmunds</th>\\n      <th>Fall River</th>\\n      <th>Faulk</th>\\n      <th>Grant</th>\\n      <th>Gregory</th>\\n      <th>Haakon</th>\\n      <th>Hamlin</th>\\n      <th>Hand</th>\\n      <th>Hanson</th>\\n      <th>Harding</th>\\n      <th>Hughes</th>\\n      <th>Hutchinson</th>\\n      <th>Hyde</th>\\n      <th>Jackson</th>\\n      <th>Jerauld</th>\\n      <th>Jones</th>\\n      <th>Kingsbury</th>\\n      <th>Lake</th>\\n      <th>Lawrence</th>\\n      <th>Lincoln</th>\\n      <th>Lyman</th>\\n      <th>Marshall</th>\\n      <th>McCook</th>\\n      <th>McPherson</th>\\n      <th>Meade</th>\\n      <th>Mellette</th>\\n      <th>Miner</th>\\n      <th>Minnehaha</th>\\n      <th>Moody</th>\\n      <th>Oglala Lakota</th>\\n      <th>Pennington</th>\\n      <th>Perkins</th>\\n      <th>Potter</th>\\n      <th>Roberts</th>\\n      <th>Sanborn</th>\\n      <th>Spink</th>\\n      <th>Stanley</th>\\n      <th>Sully</th>\\n      <th>Todd</th>\\n      <th>Tripp</th>\\n      <th>Turner</th>\\n      <th>Union</th>\\n      <th>Unknown</th>\\n      <th>Walworth</th>\\n      <th>Yankton</th>\\n      <th>Ziebach</th>\\n      <th>Anderson</th>\\n      <th>Bedford</th>\\n      <th>Benton</th>\\n      <th>Bledsoe</th>\\n      <th>Blount</th>\\n      <th>Bradley</th>\\n      <th>Campbell</th>\\n      <th>Cannon</th>\\n      <th>Carroll</th>\\n      <th>Carter</th>\\n      <th>Cheatham</th>\\n      <th>Chester</th>\\n      <th>Claiborne</th>\\n      <th>Clay</th>\\n      <th>Cocke</th>\\n      <th>Coffee</th>\\n      <th>Crockett</th>\\n      <th>Cumberland</th>\\n      <th>Davidson</th>\\n      <th>DeKalb</th>\\n      <th>Decatur</th>\\n      <th>Dickson</th>\\n      <th>Dyer</th>\\n      <th>Fayette</th>\\n      <th>Fentress</th>\\n      <th>Franklin</th>\\n      <th>Gibson</th>\\n      <th>Giles</th>\\n      <th>Grainger</th>\\n      <th>Greene</th>\\n      <th>Grundy</th>\\n      <th>Hamblen</th>\\n      <th>Hamilton</th>\\n      <th>Hancock</th>\\n      <th>Hardeman</th>\\n      <th>Hardin</th>\\n      <th>Hawkins</th>\\n      <th>Haywood</th>\\n      <th>Henderson</th>\\n      <th>Henry</th>\\n      <th>Hickman</th>\\n      <th>Houston</th>\\n      <th>Humphreys</th>\\n      <th>Jackson</th>\\n      <th>Jefferson</th>\\n      <th>Johnson</th>\\n      <th>Knox</th>\\n      <th>Lake</th>\\n      <th>Lauderdale</th>\\n      <th>Lawrence</th>\\n      <th>Lewis</th>\\n      <th>Lincoln</th>\\n      <th>Loudon</th>\\n      <th>Macon</th>\\n      <th>Madison</th>\\n      <th>Marion</th>\\n      <th>Marshall</th>\\n      <th>Maury</th>\\n      <th>McMinn</th>\\n      <th>McNairy</th>\\n      <th>Meigs</th>\\n      <th>Monroe</th>\\n      <th>Montgomery</th>\\n      <th>Moore</th>\\n      <th>Morgan</th>\\n      <th>Obion</th>\\n      <th>Overton</th>\\n      <th>Perry</th>\\n      <th>Pickett</th>\\n      <th>Polk</th>\\n      <th>Putnam</th>\\n      <th>Rhea</th>\\n      <th>Roane</th>\\n      <th>Robertson</th>\\n      <th>Rutherford</th>\\n      <th>Scott</th>\\n      <th>Sequatchie</th>\\n      <th>Sevier</th>\\n      <th>Shelby</th>\\n      <th>Smith</th>\\n      <th>Stewart</th>\\n      <th>Sullivan</th>\\n      <th>Sumner</th>\\n      <th>Tipton</th>\\n      <th>Trousdale</th>\\n      <th>Unicoi</th>\\n      <th>Union</th>\\n      <th>Unknown</th>\\n      <th>Van Buren</th>\\n      <th>Warren</th>\\n      <th>Washington</th>\\n      <th>Wayne</th>\\n      <th>Weakley</th>\\n      <th>White</th>\\n      <th>Williamson</th>\\n      <th>Wilson</th>\\n      <th>Anderson</th>\\n      <th>Andrews</th>\\n      <th>Angelina</th>\\n      <th>Aransas</th>\\n      <th>Archer</th>\\n      <th>Armstrong</th>\\n      <th>Atascosa</th>\\n      <th>Austin</th>\\n      <th>Bailey</th>\\n      <th>Bandera</th>\\n      <th>Bastrop</th>\\n      <th>Baylor</th>\\n      <th>Bee</th>\\n      <th>Bell</th>\\n      <th>Bexar</th>\\n      <th>Blanco</th>\\n      <th>Borden</th>\\n      <th>Bosque</th>\\n      <th>Bowie</th>\\n      <th>Brazoria</th>\\n      <th>Brazos</th>\\n      <th>Brewster</th>\\n      <th>Briscoe</th>\\n      <th>Brooks</th>\\n      <th>Brown</th>\\n      <th>Burleson</th>\\n      <th>Burnet</th>\\n      <th>Caldwell</th>\\n      <th>Calhoun</th>\\n      <th>Callahan</th>\\n      <th>Cameron</th>\\n      <th>Camp</th>\\n      <th>Carson</th>\\n      <th>Cass</th>\\n      <th>Castro</th>\\n      <th>Chambers</th>\\n      <th>Cherokee</th>\\n      <th>Childress</th>\\n      <th>Clay</th>\\n      <th>Cochran</th>\\n      <th>Coke</th>\\n      <th>Coleman</th>\\n      <th>Collin</th>\\n      <th>Collingsworth</th>\\n      <th>Colorado</th>\\n      <th>Comal</th>\\n      <th>Comanche</th>\\n      <th>Concho</th>\\n      <th>Cooke</th>\\n      <th>Coryell</th>\\n      <th>Cottle</th>\\n      <th>Crane</th>\\n      <th>Crockett</th>\\n      <th>Crosby</th>\\n      <th>Culberson</th>\\n      <th>Dallam</th>\\n      <th>Dallas</th>\\n      <th>Dawson</th>\\n      <th>DeWitt</th>\\n      <th>Deaf Smith</th>\\n      <th>Delta</th>\\n      <th>Denton</th>\\n      <th>Dickens</th>\\n      <th>Dimmit</th>\\n      <th>Donley</th>\\n      <th>Duval</th>\\n      <th>Eastland</th>\\n      <th>Ector</th>\\n      <th>Edwards</th>\\n      <th>El Paso</th>\\n      <th>Ellis</th>\\n      <th>Erath</th>\\n      <th>Falls</th>\\n      <th>Fannin</th>\\n      <th>Fayette</th>\\n      <th>Fisher</th>\\n      <th>Floyd</th>\\n      <th>Foard</th>\\n      <th>Fort Bend</th>\\n      <th>Franklin</th>\\n      <th>Freestone</th>\\n      <th>Frio</th>\\n      <th>Gaines</th>\\n      <th>Galveston</th>\\n      <th>Garza</th>\\n      <th>Gillespie</th>\\n      <th>Glasscock</th>\\n      <th>Goliad</th>\\n      <th>Gonzales</th>\\n      <th>Gray</th>\\n      <th>Grayson</th>\\n      <th>Gregg</th>\\n      <th>Grimes</th>\\n      <th>Guadalupe</th>\\n      <th>Hale</th>\\n      <th>Hall</th>\\n      <th>Hamilton</th>\\n      <th>Hansford</th>\\n      <th>Hardeman</th>\\n      <th>Hardin</th>\\n      <th>Harris</th>\\n      <th>Harrison</th>\\n      <th>Hartley</th>\\n      <th>Haskell</th>\\n      <th>Hays</th>\\n      <th>Hemphill</th>\\n      <th>Henderson</th>\\n      <th>Hidalgo</th>\\n      <th>Hill</th>\\n      <th>Hockley</th>\\n      <th>Hood</th>\\n      <th>Hopkins</th>\\n      <th>Houston</th>\\n      <th>Howard</th>\\n      <th>Hudspeth</th>\\n      <th>Hunt</th>\\n      <th>Hutchinson</th>\\n      <th>Irion</th>\\n      <th>Jack</th>\\n      <th>Jackson</th>\\n      <th>Jasper</th>\\n      <th>Jeff Davis</th>\\n      <th>Jefferson</th>\\n      <th>Jim Hogg</th>\\n      <th>Jim Wells</th>\\n      <th>Johnson</th>\\n      <th>Jones</th>\\n      <th>Karnes</th>\\n      <th>Kaufman</th>\\n      <th>Kendall</th>\\n      <th>Kenedy</th>\\n      <th>Kent</th>\\n      <th>Kerr</th>\\n      <th>Kimble</th>\\n      <th>King</th>\\n      <th>Kinney</th>\\n      <th>Kleberg</th>\\n      <th>Knox</th>\\n      <th>La Salle</th>\\n      <th>Lamar</th>\\n      <th>Lamb</th>\\n      <th>Lampasas</th>\\n      <th>Lavaca</th>\\n      <th>Lee</th>\\n      <th>Leon</th>\\n      <th>Liberty</th>\\n      <th>Limestone</th>\\n      <th>Lipscomb</th>\\n      <th>Live Oak</th>\\n      <th>Llano</th>\\n      <th>Loving</th>\\n      <th>Lubbock</th>\\n      <th>Lynn</th>\\n      <th>Madison</th>\\n      <th>Marion</th>\\n      <th>Martin</th>\\n      <th>Mason</th>\\n      <th>Matagorda</th>\\n      <th>Maverick</th>\\n      <th>McCulloch</th>\\n      <th>McLennan</th>\\n      <th>McMullen</th>\\n      <th>Medina</th>\\n      <th>Menard</th>\\n      <th>Midland</th>\\n      <th>Milam</th>\\n      <th>Mills</th>\\n      <th>Mitchell</th>\\n      <th>Montague</th>\\n      <th>Montgomery</th>\\n      <th>Moore</th>\\n      <th>Morris</th>\\n      <th>Motley</th>\\n      <th>Nacogdoches</th>\\n      <th>Navarro</th>\\n      <th>Newton</th>\\n      <th>Nolan</th>\\n      <th>Nueces</th>\\n      <th>Ochiltree</th>\\n      <th>Oldham</th>\\n      <th>Orange</th>\\n      <th>Palo Pinto</th>\\n      <th>Panola</th>\\n      <th>Parker</th>\\n      <th>Parmer</th>\\n      <th>Pecos</th>\\n      <th>Polk</th>\\n      <th>Potter</th>\\n      <th>Presidio</th>\\n      <th>Rains</th>\\n      <th>Randall</th>\\n      <th>Reagan</th>\\n      <th>Real</th>\\n      <th>Red River</th>\\n      <th>Reeves</th>\\n      <th>Refugio</th>\\n      <th>Roberts</th>\\n      <th>Robertson</th>\\n      <th>Rockwall</th>\\n      <th>Runnels</th>\\n      <th>Rusk</th>\\n      <th>Sabine</th>\\n      <th>San Augustine</th>\\n      <th>San Jacinto</th>\\n      <th>San Patricio</th>\\n      <th>San Saba</th>\\n      <th>Schleicher</th>\\n      <th>Scurry</th>\\n      <th>Shackelford</th>\\n      <th>Shelby</th>\\n      <th>Sherman</th>\\n      <th>Smith</th>\\n      <th>Somervell</th>\\n      <th>Starr</th>\\n      <th>Stephens</th>\\n      <th>Sterling</th>\\n      <th>Stonewall</th>\\n      <th>Sutton</th>\\n      <th>Swisher</th>\\n      <th>Tarrant</th>\\n      <th>Taylor</th>\\n      <th>Terrell</th>\\n      <th>Terry</th>\\n      <th>Throckmorton</th>\\n      <th>Titus</th>\\n      <th>Tom Green</th>\\n      <th>Travis</th>\\n      <th>Trinity</th>\\n      <th>Tyler</th>\\n      <th>Unknown</th>\\n      <th>Upshur</th>\\n      <th>Upton</th>\\n      <th>Uvalde</th>\\n      <th>Val Verde</th>\\n      <th>Van Zandt</th>\\n      <th>Victoria</th>\\n      <th>Walker</th>\\n      <th>Waller</th>\\n      <th>Ward</th>\\n      <th>Washington</th>\\n      <th>Webb</th>\\n      <th>Wharton</th>\\n      <th>Wheeler</th>\\n      <th>Wichita</th>\\n      <th>Wilbarger</th>\\n      <th>Willacy</th>\\n      <th>Williamson</th>\\n      <th>Wilson</th>\\n      <th>Winkler</th>\\n      <th>Wise</th>\\n      <th>Wood</th>\\n      <th>Yoakum</th>\\n      <th>Young</th>\\n      <th>Zapata</th>\\n      <th>Zavala</th>\\n      <th>Beaver</th>\\n      <th>Box Elder</th>\\n      <th>Cache</th>\\n      <th>Carbon</th>\\n      <th>Daggett</th>\\n      <th>Davis</th>\\n      <th>Duchesne</th>\\n      <th>Emery</th>\\n      <th>Garfield</th>\\n      <th>Grand</th>\\n      <th>Iron</th>\\n      <th>Juab</th>\\n      <th>Kane</th>\\n      <th>Millard</th>\\n      <th>Morgan</th>\\n      <th>Piute</th>\\n      <th>Rich</th>\\n      <th>Salt Lake</th>\\n      <th>San Juan</th>\\n      <th>Sanpete</th>\\n      <th>Sevier</th>\\n      <th>Summit</th>\\n      <th>Tooele</th>\\n      <th>Uintah</th>\\n      <th>Unknown</th>\\n      <th>Utah</th>\\n      <th>Wasatch</th>\\n      <th>Washington</th>\\n      <th>Wayne</th>\\n      <th>Weber</th>\\n      <th>Addison</th>\\n      <th>Bennington</th>\\n      <th>Caledonia</th>\\n      <th>Chittenden</th>\\n      <th>Essex</th>\\n      <th>Franklin</th>\\n      <th>Grand Isle</th>\\n      <th>Lamoille</th>\\n      <th>Orange</th>\\n      <th>Orleans</th>\\n      <th>Rutland</th>\\n      <th>Unknown</th>\\n      <th>Washington</th>\\n      <th>Windham</th>\\n      <th>Windsor</th>\\n      <th>St. Croix</th>\\n      <th>St. John</th>\\n      <th>St. Thomas</th>\\n      <th>Unknown</th>\\n      <th>Accomack</th>\\n      <th>Albemarle</th>\\n      <th>Alexandria city</th>\\n      <th>Alleghany</th>\\n      <th>Amelia</th>\\n      <th>Amherst</th>\\n      <th>Appomattox</th>\\n      <th>Arlington</th>\\n      <th>Augusta</th>\\n      <th>Bath</th>\\n      <th>Bedford</th>\\n      <th>Bland</th>\\n      <th>Botetourt</th>\\n      <th>Bristol city</th>\\n      <th>Brunswick</th>\\n      <th>Buchanan</th>\\n      <th>Buckingham</th>\\n      <th>Buena Vista city</th>\\n      <th>Campbell</th>\\n      <th>Caroline</th>\\n      <th>Carroll</th>\\n      <th>Charles City</th>\\n      <th>Charlotte</th>\\n      <th>Charlottesville city</th>\\n      <th>Chesapeake city</th>\\n      <th>Chesterfield</th>\\n      <th>Clarke</th>\\n      <th>Colonial Heights city</th>\\n      <th>Covington city</th>\\n      <th>Craig</th>\\n      <th>Culpeper</th>\\n      <th>Cumberland</th>\\n      <th>Danville city</th>\\n      <th>Dickenson</th>\\n      <th>Dinwiddie</th>\\n      <th>Emporia city</th>\\n      <th>Essex</th>\\n      <th>Fairfax</th>\\n      <th>Fairfax city</th>\\n      <th>Falls Church city</th>\\n      <th>Fauquier</th>\\n      <th>Floyd</th>\\n      <th>Fluvanna</th>\\n      <th>Franklin</th>\\n      <th>Franklin city</th>\\n      <th>Frederick</th>\\n      <th>Fredericksburg city</th>\\n      <th>Galax city</th>\\n      <th>Giles</th>\\n      <th>Gloucester</th>\\n      <th>Goochland</th>\\n      <th>Grayson</th>\\n      <th>Greene</th>\\n      <th>Greensville</th>\\n      <th>Halifax</th>\\n      <th>Hampton city</th>\\n      <th>Hanover</th>\\n      <th>Harrisonburg city</th>\\n      <th>Henrico</th>\\n      <th>Henry</th>\\n      <th>Highland</th>\\n      <th>Hopewell city</th>\\n      <th>Isle of Wight</th>\\n      <th>James City</th>\\n      <th>King George</th>\\n      <th>King William</th>\\n      <th>King and Queen</th>\\n      <th>Lancaster</th>\\n      <th>Lee</th>\\n      <th>Lexington city</th>\\n      <th>Loudoun</th>\\n      <th>Louisa</th>\\n      <th>Lunenburg</th>\\n      <th>Lynchburg city</th>\\n      <th>Madison</th>\\n      <th>Manassas Park city</th>\\n      <th>Manassas city</th>\\n      <th>Martinsville city</th>\\n      <th>Mathews</th>\\n      <th>Mecklenburg</th>\\n      <th>Middlesex</th>\\n      <th>Montgomery</th>\\n      <th>Nelson</th>\\n      <th>New Kent</th>\\n      <th>Newport News city</th>\\n      <th>Norfolk city</th>\\n      <th>Northampton</th>\\n      <th>Northumberland</th>\\n      <th>Norton city</th>\\n      <th>Nottoway</th>\\n      <th>Orange</th>\\n      <th>Page</th>\\n      <th>Patrick</th>\\n      <th>Petersburg city</th>\\n      <th>Pittsylvania</th>\\n      <th>Poquoson city</th>\\n      <th>Portsmouth city</th>\\n      <th>Powhatan</th>\\n      <th>Prince Edward</th>\\n      <th>Prince George</th>\\n      <th>Prince William</th>\\n      <th>Pulaski</th>\\n      <th>Radford city</th>\\n      <th>Rappahannock</th>\\n      <th>Richmond</th>\\n      <th>Richmond city</th>\\n      <th>Roanoke</th>\\n      <th>Roanoke city</th>\\n      <th>Rockbridge</th>\\n      <th>Rockingham</th>\\n      <th>Russell</th>\\n      <th>Salem city</th>\\n      <th>Scott</th>\\n      <th>Shenandoah</th>\\n      <th>Smyth</th>\\n      <th>Southampton</th>\\n      <th>Spotsylvania</th>\\n      <th>Stafford</th>\\n      <th>Staunton city</th>\\n      <th>Suffolk city</th>\\n      <th>Surry</th>\\n      <th>Sussex</th>\\n      <th>Tazewell</th>\\n      <th>Unknown</th>\\n      <th>Virginia Beach city</th>\\n      <th>Warren</th>\\n      <th>Washington</th>\\n      <th>Waynesboro city</th>\\n      <th>Westmoreland</th>\\n      <th>Williamsburg city</th>\\n      <th>Winchester city</th>\\n      <th>Wise</th>\\n      <th>Wythe</th>\\n      <th>York</th>\\n      <th>Adams</th>\\n      <th>Asotin</th>\\n      <th>Benton</th>\\n      <th>Chelan</th>\\n      <th>Clallam</th>\\n      <th>Clark</th>\\n      <th>Columbia</th>\\n      <th>Cowlitz</th>\\n      <th>Douglas</th>\\n      <th>Ferry</th>\\n      <th>Franklin</th>\\n      <th>Garfield</th>\\n      <th>Grant</th>\\n      <th>Grays Harbor</th>\\n      <th>Island</th>\\n      <th>Jefferson</th>\\n      <th>King</th>\\n      <th>Kitsap</th>\\n      <th>Kittitas</th>\\n      <th>Klickitat</th>\\n      <th>Lewis</th>\\n      <th>Lincoln</th>\\n      <th>Mason</th>\\n      <th>Okanogan</th>\\n      <th>Pacific</th>\\n      <th>Pend Oreille</th>\\n      <th>Pierce</th>\\n      <th>San Juan</th>\\n      <th>Skagit</th>\\n      <th>Skamania</th>\\n      <th>Snohomish</th>\\n      <th>Spokane</th>\\n      <th>Stevens</th>\\n      <th>Thurston</th>\\n      <th>Unknown</th>\\n      <th>Wahkiakum</th>\\n      <th>Walla Walla</th>\\n      <th>Whatcom</th>\\n      <th>Whitman</th>\\n      <th>Yakima</th>\\n      <th>Barbour</th>\\n      <th>Berkeley</th>\\n      <th>Boone</th>\\n      <th>Braxton</th>\\n      <th>Brooke</th>\\n      <th>Cabell</th>\\n      <th>Calhoun</th>\\n      <th>Clay</th>\\n      <th>Doddridge</th>\\n      <th>Fayette</th>\\n      <th>Gilmer</th>\\n      <th>Grant</th>\\n      <th>Greenbrier</th>\\n      <th>Hampshire</th>\\n      <th>Hancock</th>\\n      <th>Hardy</th>\\n      <th>Harrison</th>\\n      <th>Jackson</th>\\n      <th>Jefferson</th>\\n      <th>Kanawha</th>\\n      <th>Lewis</th>\\n      <th>Lincoln</th>\\n      <th>Logan</th>\\n      <th>Marion</th>\\n      <th>Marshall</th>\\n      <th>Mason</th>\\n      <th>McDowell</th>\\n      <th>Mercer</th>\\n      <th>Mineral</th>\\n      <th>Mingo</th>\\n      <th>Monongalia</th>\\n      <th>Monroe</th>\\n      <th>Morgan</th>\\n      <th>Nicholas</th>\\n      <th>Ohio</th>\\n      <th>Pendleton</th>\\n      <th>Pleasants</th>\\n      <th>Pocahontas</th>\\n      <th>Preston</th>\\n      <th>Putnam</th>\\n      <th>Raleigh</th>\\n      <th>Randolph</th>\\n      <th>Ritchie</th>\\n      <th>Roane</th>\\n      <th>Summers</th>\\n      <th>Taylor</th>\\n      <th>Tucker</th>\\n      <th>Tyler</th>\\n      <th>Unknown</th>\\n      <th>Upshur</th>\\n      <th>Wayne</th>\\n      <th>Webster</th>\\n      <th>Wetzel</th>\\n      <th>Wirt</th>\\n      <th>Wood</th>\\n      <th>Wyoming</th>\\n      <th>Adams</th>\\n      <th>Ashland</th>\\n      <th>Barron</th>\\n      <th>Bayfield</th>\\n      <th>Brown</th>\\n      <th>Buffalo</th>\\n      <th>Burnett</th>\\n      <th>Calumet</th>\\n      <th>Chippewa</th>\\n      <th>Clark</th>\\n      <th>Columbia</th>\\n      <th>Crawford</th>\\n      <th>Dane</th>\\n      <th>Dodge</th>\\n      <th>Door</th>\\n      <th>Douglas</th>\\n      <th>Dunn</th>\\n      <th>Eau Claire</th>\\n      <th>Florence</th>\\n      <th>Fond du Lac</th>\\n      <th>Forest</th>\\n      <th>Grant</th>\\n      <th>Green</th>\\n      <th>Green Lake</th>\\n      <th>Iowa</th>\\n      <th>Iron</th>\\n      <th>Jackson</th>\\n      <th>Jefferson</th>\\n      <th>Juneau</th>\\n      <th>Kenosha</th>\\n      <th>Kewaunee</th>\\n      <th>La Crosse</th>\\n      <th>Lafayette</th>\\n      <th>Langlade</th>\\n      <th>Lincoln</th>\\n      <th>Manitowoc</th>\\n      <th>Marathon</th>\\n      <th>Marinette</th>\\n      <th>Marquette</th>\\n      <th>Menominee</th>\\n      <th>Milwaukee</th>\\n      <th>Monroe</th>\\n      <th>Oconto</th>\\n      <th>Oneida</th>\\n      <th>Outagamie</th>\\n      <th>Ozaukee</th>\\n      <th>Pepin</th>\\n      <th>Pierce</th>\\n      <th>Polk</th>\\n      <th>Portage</th>\\n      <th>Price</th>\\n      <th>Racine</th>\\n      <th>Richland</th>\\n      <th>Rock</th>\\n      <th>Rusk</th>\\n      <th>Sauk</th>\\n      <th>Sawyer</th>\\n      <th>Shawano</th>\\n      <th>Sheboygan</th>\\n      <th>St. Croix</th>\\n      <th>Taylor</th>\\n      <th>Trempealeau</th>\\n      <th>Unknown</th>\\n      <th>Vernon</th>\\n      <th>Vilas</th>\\n      <th>Walworth</th>\\n      <th>Washburn</th>\\n      <th>Washington</th>\\n      <th>Waukesha</th>\\n      <th>Waupaca</th>\\n      <th>Waushara</th>\\n      <th>Winnebago</th>\\n      <th>Wood</th>\\n      <th>Albany</th>\\n      <th>Big Horn</th>\\n      <th>Campbell</th>\\n      <th>Carbon</th>\\n      <th>Converse</th>\\n      <th>Crook</th>\\n      <th>Fremont</th>\\n      <th>Goshen</th>\\n      <th>Hot Springs</th>\\n      <th>Johnson</th>\\n      <th>Laramie</th>\\n      <th>Lincoln</th>\\n      <th>Natrona</th>\\n      <th>Niobrara</th>\\n      <th>Park</th>\\n      <th>Platte</th>\\n      <th>Sheridan</th>\\n      <th>Sublette</th>\\n      <th>Sweetwater</th>\\n      <th>Teton</th>\\n      <th>Uinta</th>\\n      <th>Unknown</th>\\n      <th>Washakie</th>\\n      <th>Weston</th>\\n    </tr>\\n  </thead>\\n  <tbody>\\n    <tr>\\n      <th>confirmed_cases</th>\\n      <td>370662.0</td>\\n      <td>1127507.0</td>\\n      <td>174840.0</td>\\n      <td>148219.0</td>\\n      <td>349468.0</td>\\n      <td>119697.0</td>\\n      <td>201832.0</td>\\n      <td>740887.0</td>\\n      <td>266821.0</td>\\n      <td>120792.0</td>\\n      <td>291187.0</td>\\n      <td>73785.0</td>\\n      <td>223181.0</td>\\n      <td>108488.0</td>\\n      <td>81456.0</td>\\n      <td>305190.0</td>\\n      <td>382578.0</td>\\n      <td>101927.0</td>\\n      <td>41572.0</td>\\n      <td>283436.0</td>\\n      <td>100997.0</td>\\n      <td>494812.0</td>\\n      <td>293052.0</td>\\n      <td>350520.0</td>\\n      <td>592516.0</td>\\n      <td>563060.0</td>\\n      <td>290139.0</td>\\n      <td>774935.0</td>\\n      <td>101831.0</td>\\n      <td>378225.0</td>\\n      <td>135981.0</td>\\n      <td>69527.0</td>\\n      <td>142583.0</td>\\n      <td>109359.0</td>\\n      <td>619518.0</td>\\n      <td>379999.0</td>\\n      <td>4241109.0</td>\\n      <td>82672.0</td>\\n      <td>450940.0</td>\\n      <td>146599.0</td>\\n      <td>1062969.0</td>\\n      <td>502126.0</td>\\n      <td>140960.0</td>\\n      <td>102042.0</td>\\n      <td>1696898.0</td>\\n      <td>171541.0</td>\\n      <td>193639.0</td>\\n      <td>877630.0</td>\\n      <td>2778755.0</td>\\n      <td>118429.0</td>\\n      <td>1836756.0</td>\\n      <td>804949.0</td>\\n      <td>104120.0</td>\\n      <td>152000.0</td>\\n      <td>229100.0</td>\\n      <td>137271.0</td>\\n      <td>334536.0</td>\\n      <td>1280177.0</td>\\n      <td>512115.0</td>\\n      <td>99323.0</td>\\n      <td>440143.0</td>\\n      <td>267773.0</td>\\n      <td>1664904.0</td>\\n      <td>500720.0</td>\\n      <td>119259.0</td>\\n      <td>110796.0</td>\\n      <td>165170.0</td>\\n      <td>2875.0</td>\\n      <td>17883.0</td>\\n      <td>1448355.0</td>\\n      <td>102289.0</td>\\n      <td>13174.0</td>\\n      <td>3828.0</td>\\n      <td>9438.0</td>\\n      <td>335620.0</td>\\n      <td>2224.0</td>\\n      <td>86134.0</td>\\n      <td>225097.0</td>\\n      <td>20323.0</td>\\n      <td>33528.0</td>\\n      <td>32264.0</td>\\n      <td>943.0</td>\\n      <td>303951.0</td>\\n      <td>19998.0</td>\\n      <td>41807.0</td>\\n      <td>31903.0</td>\\n      <td>2869.0</td>\\n      <td>5825.0</td>\\n      <td>17570.0</td>\\n      <td>738.0</td>\\n      <td>21088.0</td>\\n      <td>23533.0</td>\\n      <td>29381.0</td>\\n      <td>3181.0</td>\\n      <td>18308.0</td>\\n      <td>834942.0</td>\\n      <td>478249.0</td>\\n      <td>994627.0</td>\\n      <td>328861.0</td>\\n      <td>219039.0</td>\\n      <td>22228.0</td>\\n      <td>126418.0</td>\\n      <td>30144245.0</td>\\n      <td>885235.0</td>\\n      <td>1324578.0</td>\\n      <td>5444110.0</td>\\n      <td>2317603.0</td>\\n      <td>624614.0</td>\\n      <td>13.0</td>\\n      <td>672192.0</td>\\n      <td>2730124.0</td>\\n      <td>99987.0</td>\\n      <td>99075.0</td>\\n      <td>115503.0</td>\\n      <td>1510270.0</td>\\n      <td>166872.0</td>\\n      <td>67265.0</td>\\n      <td>11947.0</td>\\n      <td>160475.0</td>\\n      <td>171422.0</td>\\n      <td>89904.0</td>\\n      <td>84409.0</td>\\n      <td>88145.0</td>\\n      <td>41703.0</td>\\n      <td>113149.0</td>\\n      <td>72955.0</td>\\n      <td>730103.0</td>\\n      <td>324006.0</td>\\n      <td>429641.0</td>\\n      <td>98229.0</td>\\n      <td>32820.0</td>\\n      <td>69245.0</td>\\n      <td>88039.0</td>\\n      <td>555777.0</td>\\n      <td>76393.0</td>\\n      <td>49114.0</td>\\n      <td>426518.0</td>\\n      <td>65383.0</td>\\n      <td>273055.0</td>\\n      <td>93727.0</td>\\n      <td>387859.0</td>\\n      <td>100883.0</td>\\n      <td>224445.0</td>\\n      <td>82694.0</td>\\n      <td>147287.0</td>\\n      <td>644732.0</td>\\n      <td>176017.0</td>\\n      <td>27181.0</td>\\n      <td>120924.0</td>\\n      <td>207650.0</td>\\n      <td>419650.0</td>\\n      <td>71541.0</td>\\n      <td>101164.0</td>\\n      <td>281149.0</td>\\n      <td>83727.0</td>\\n      <td>33609.0</td>\\n      <td>221173.0</td>\\n      <td>365261.0</td>\\n      <td>32879.0</td>\\n      <td>30998.0</td>\\n      <td>52758.0</td>\\n      <td>45995.0</td>\\n      <td>72802.0</td>\\n      <td>26573.0</td>\\n      <td>113007.0</td>\\n      <td>45707.0</td>\\n      <td>168165.0</td>\\n      <td>78041.0</td>\\n      <td>456667.0</td>\\n      <td>37709.0</td>\\n      <td>2027440.0</td>\\n      <td>104690.0</td>\\n      <td>513355.0</td>\\n      <td>34664.0</td>\\n      <td>32470.0</td>\\n      <td>789668.0</td>\\n      <td>255985.0</td>\\n      <td>68184.0</td>\\n      <td>330667.0</td>\\n      <td>58187.0</td>\\n      <td>195244.0</td>\\n      <td>358737.0</td>\\n      <td>43635.0</td>\\n      <td>1985759.0</td>\\n      <td>268318.0</td>\\n      <td>18864.0</td>\\n      <td>257123.0</td>\\n      <td>4319856.0</td>\\n      <td>2827.0</td>\\n      <td>85707.0</td>\\n      <td>516050.0</td>\\n      <td>65984.0</td>\\n      <td>100912.0</td>\\n      <td>3292835.0</td>\\n      <td>41567.0</td>\\n      <td>294763.0</td>\\n      <td>5401142.0</td>\\n      <td>115881.0</td>\\n      <td>115677.0</td>\\n      <td>2486469.0</td>\\n      <td>39360.0</td>\\n      <td>6042885.0</td>\\n      <td>1521392.0</td>\\n      <td>112498.0</td>\\n      <td>226223.0</td>\\n      <td>59976957.0</td>\\n      <td>839936.0</td>\\n      <td>1243628.0</td>\\n      <td>17618.0</td>\\n      <td>187074.0</td>\\n      <td>1649808.0</td>\\n      <td>9011.0</td>\\n      <td>54922.0</td>\\n      <td>1997925.0</td>\\n      <td>384599.0</td>\\n      <td>147546.0</td>\\n      <td>11731923.0</td>\\n      <td>838843.0</td>\\n      <td>18471.0</td>\\n      <td>12947120.0</td>\\n      <td>4674911.0</td>\\n      <td>261093.0</td>\\n      <td>12451039.0</td>\\n      <td>10827207.0</td>\\n      <td>2289679.0</td>\\n      <td>3823964.0</td>\\n      <td>768331.0</td>\\n      <td>2089742.0</td>\\n      <td>1801476.0</td>\\n      <td>4664377.0</td>\\n      <td>537760.0</td>\\n      <td>407494.0</td>\\n      <td>1541.0</td>\\n      <td>58878.0</td>\\n      <td>1377978.0</td>\\n      <td>1530230.0</td>\\n      <td>3207195.0</td>\\n      <td>391378.0</td>\\n      <td>164470.0</td>\\n      <td>10621.0</td>\\n      <td>3125147.0</td>\\n      <td>102183.0</td>\\n      <td>7.0</td>\\n      <td>2713987.0</td>\\n      <td>607446.0</td>\\n      <td>250430.0</td>\\n      <td>2987086.0</td>\\n      <td>74118.0</td>\\n      <td>2994287.0</td>\\n      <td>21869.0</td>\\n      <td>9609.0</td>\\n      <td>24789.0</td>\\n      <td>1110606.0</td>\\n      <td>209279.0</td>\\n      <td>83452.0</td>\\n      <td>5049.0</td>\\n      <td>17548.0</td>\\n      <td>16036.0</td>\\n      <td>9894.0</td>\\n      <td>77278.0</td>\\n      <td>7128.0</td>\\n      <td>70023.0</td>\\n      <td>4019537.0</td>\\n      <td>1740.0</td>\\n      <td>986875.0</td>\\n      <td>338855.0</td>\\n      <td>2548795.0</td>\\n      <td>57250.0</td>\\n      <td>196199.0</td>\\n      <td>257918.0</td>\\n      <td>7517.0</td>\\n      <td>33703.0</td>\\n      <td>78072.0</td>\\n      <td>1153.0</td>\\n      <td>12004.0</td>\\n      <td>2251.0</td>\\n      <td>2027485.0</td>\\n      <td>2221.0</td>\\n      <td>29535.0</td>\\n      <td>116163.0</td>\\n      <td>30104.0</td>\\n      <td>924342.0</td>\\n      <td>19544.0</td>\\n      <td>24647.0</td>\\n      <td>274126.0</td>\\n      <td>418682.0</td>\\n      <td>4404.0</td>\\n      <td>23636.0</td>\\n      <td>63488.0</td>\\n      <td>125956.0</td>\\n      <td>226881.0</td>\\n      <td>61425.0</td>\\n      <td>10051.0</td>\\n      <td>22660.0</td>\\n      <td>14693.0</td>\\n      <td>65095.0</td>\\n      <td>49097.0</td>\\n      <td>646704.0</td>\\n      <td>11557.0</td>\\n      <td>29028.0</td>\\n      <td>61898.0</td>\\n      <td>30329.0</td>\\n      <td>1829.0</td>\\n      <td>26767.0</td>\\n      <td>7719.0</td>\\n      <td>158089.0</td>\\n      <td>59737.0</td>\\n      <td>6823.0</td>\\n      <td>23610.0</td>\\n      <td>1547929.0</td>\\n      <td>35860.0</td>\\n      <td>5920424.0</td>\\n      <td>4264912.0</td>\\n      <td>600463.0</td>\\n      <td>504691.0</td>\\n      <td>4415214.0</td>\\n      <td>709833.0</td>\\n      <td>398645.0</td>\\n      <td>86781.0</td>\\n      <td>313268.0</td>\\n      <td>766563.0</td>\\n      <td>2637082.0</td>\\n      <td>1713448.0</td>\\n      <td>37284.0</td>\\n      <td>3644621.0</td>\\n      <td>1541591.0</td>\\n      <td>256360.0</td>\\n      <td>1127568.0</td>\\n      <td>185658.0</td>\\n      <td>1900201.0</td>\\n      <td>15184060.0</td>\\n      <td>118466.0</td>\\n      <td>661325.0</td>\\n      <td>552253.0</td>\\n      <td>1012841.0</td>\\n      <td>2578370.0</td>\\n      <td>673381.0</td>\\n      <td>325820.0</td>\\n      <td>135198.0</td>\\n      <td>6021293.0</td>\\n      <td>2339366.0</td>\\n      <td>346073.0</td>\\n      <td>104921.0</td>\\n      <td>480190.0</td>\\n      <td>100444.0</td>\\n      <td>99486.0</td>\\n      <td>147042.0</td>\\n      <td>159846.0</td>\\n      <td>254119.0</td>\\n      <td>413531.0</td>\\n      <td>626903.0</td>\\n      <td>450851.0</td>\\n      <td>8217627.0</td>\\n      <td>149634.0</td>\\n      <td>654832.0</td>\\n      <td>511538.0</td>\\n      <td>103870.0</td>\\n      <td>182202.0</td>\\n      <td>1449706.0</td>\\n      <td>4205959.0</td>\\n      <td>1854478.0</td>\\n      <td>190288.0</td>\\n      <td>101694.0</td>\\n      <td>182737.0</td>\\n      <td>2336760.0</td>\\n      <td>1739926.0</td>\\n      <td>958531.0</td>\\n      <td>33036396.0</td>\\n      <td>404045.0</td>\\n      <td>403631.0</td>\\n      <td>1072588.0</td>\\n      <td>279833.0</td>\\n      <td>7989282.0</td>\\n      <td>2478503.0</td>\\n      <td>9329977.0</td>\\n      <td>1932695.0</td>\\n      <td>4549325.0</td>\\n      <td>3809838.0</td>\\n      <td>398453.0</td>\\n      <td>1015713.0</td>\\n      <td>1722982.0</td>\\n      <td>1823333.0</td>\\n      <td>1109266.0</td>\\n      <td>1518137.0</td>\\n      <td>462427.0</td>\\n      <td>473833.0</td>\\n      <td>222786.0</td>\\n      <td>153907.0</td>\\n      <td>298430.0</td>\\n      <td>2166172.0</td>\\n      <td>205495.0</td>\\n      <td>427588.0</td>\\n      <td>201559.0</td>\\n      <td>197080.0</td>\\n      <td>88156.0</td>\\n      <td>119374.0</td>\\n      <td>19339.0</td>\\n      <td>380511.0</td>\\n      <td>102217.0</td>\\n      <td>456504.0</td>\\n      <td>664035.0</td>\\n      <td>146494.0</td>\\n      <td>96775.0</td>\\n      <td>1092627.0</td>\\n      <td>89879.0</td>\\n      <td>93754.0</td>\\n      <td>104963.0</td>\\n      <td>203640.0</td>\\n      <td>488052.0</td>\\n      <td>164828.0</td>\\n      <td>157599.0</td>\\n      <td>56707.0</td>\\n      <td>237126.0</td>\\n      <td>80021.0</td>\\n      <td>683872.0</td>\\n      <td>257353.0</td>\\n      <td>113221.0</td>\\n      <td>1529891.0</td>\\n      <td>274008.0</td>\\n      <td>146289.0</td>\\n      <td>1326975.0</td>\\n      <td>955760.0</td>\\n      <td>24688.0</td>\\n      <td>1493989.0</td>\\n      <td>72119.0</td>\\n      <td>4129249.0</td>\\n      <td>422102.0</td>\\n      <td>414727.0</td>\\n      <td>802019.0</td>\\n      <td>117971.0</td>\\n      <td>644912.0</td>\\n      <td>35798.0</td>\\n      <td>140768.0</td>\\n      <td>62056.0</td>\\n      <td>155760.0</td>\\n      <td>3959866.0</td>\\n      <td>224587.0</td>\\n      <td>118964.0</td>\\n      <td>81212.0</td>\\n      <td>737932.0</td>\\n      <td>778380.0</td>\\n      <td>113959.0</td>\\n      <td>52489.0</td>\\n      <td>270963.0</td>\\n      <td>139483.0</td>\\n      <td>183614.0</td>\\n      <td>74367.0</td>\\n      <td>127354.0</td>\\n      <td>408817.0</td>\\n      <td>656120.0</td>\\n      <td>865091.0</td>\\n      <td>155600.0</td>\\n      <td>5782192.0</td>\\n      <td>178806.0</td>\\n      <td>10234.0</td>\\n      <td>631255.0</td>\\n      <td>415333.0</td>\\n      <td>147015.0</td>\\n      <td>102432.0</td>\\n      <td>5663706.0</td>\\n      <td>355502.0</td>\\n      <td>1914707.0</td>\\n      <td>84044.0</td>\\n      <td>132430.0</td>\\n      <td>161563.0</td>\\n      <td>107551.0</td>\\n      <td>48328.0</td>\\n      <td>1150536.0</td>\\n      <td>657637.0</td>\\n      <td>59714.0</td>\\n      <td>424153.0</td>\\n      <td>60394.0</td>\\n      <td>134038.0</td>\\n      <td>141284.0</td>\\n      <td>72480.0</td>\\n      <td>78698.0</td>\\n      <td>105930.0</td>\\n      <td>90541.0</td>\\n      <td>60211.0</td>\\n      <td>335684.0</td>\\n      <td>171367.0</td>\\n      <td>206053.0</td>\\n      <td>42688.0</td>\\n      <td>45491.0</td>\\n      <td>860392.0</td>\\n      <td>168061.0</td>\\n      <td>54226.0</td>\\n      <td>145285.0</td>\\n      <td>40006.0</td>\\n      <td>122993.0</td>\\n      <td>52802.0</td>\\n      <td>115814.0</td>\\n      <td>53624.0</td>\\n      <td>180717.0</td>\\n      <td>145096.0</td>\\n      <td>55777.0</td>\\n      <td>102255.0</td>\\n      <td>208575.0</td>\\n      <td>1141744.0</td>\\n      <td>542748.0</td>\\n      <td>175445.0</td>\\n      <td>75402.0</td>\\n      <td>636032.0</td>\\n      <td>137833.0</td>\\n      <td>136663.0</td>\\n      <td>154406.0</td>\\n      <td>94217.0</td>\\n      <td>298444.0</td>\\n      <td>58192.0</td>\\n      <td>137804.0</td>\\n      <td>9682.0</td>\\n      <td>75976.0</td>\\n      <td>73439.0</td>\\n      <td>1376105.0</td>\\n      <td>389112.0</td>\\n      <td>22992.0</td>\\n      <td>70299.0</td>\\n      <td>67839.0</td>\\n      <td>318629.0</td>\\n      <td>209739.0</td>\\n      <td>88847.0</td>\\n      <td>223565.0</td>\\n      <td>35726.0</td>\\n      <td>4573.0</td>\\n      <td>151791.0</td>\\n      <td>44540.0</td>\\n      <td>86160.0</td>\\n      <td>82232.0</td>\\n      <td>304053.0</td>\\n      <td>372076.0</td>\\n      <td>236365.0</td>\\n      <td>67023.0</td>\\n      <td>48465.0</td>\\n      <td>596588.0</td>\\n      <td>72125.0</td>\\n      <td>36221.0</td>\\n      <td>131900.0</td>\\n      <td>557231.0</td>\\n      <td>207983.0</td>\\n      <td>316976.0</td>\\n      <td>419781.0</td>\\n      <td>351196.0</td>\\n      <td>28547.0</td>\\n      <td>142521.0</td>\\n      <td>212059.0</td>\\n      <td>9976.0</td>\\n      <td>53107.0</td>\\n      <td>163969.0</td>\\n      <td>1002619.0</td>\\n      <td>59793.0</td>\\n      <td>57591.0</td>\\n      <td>65048.0</td>\\n      <td>127181.0</td>\\n      <td>869347.0</td>\\n      <td>164214.0</td>\\n      <td>1842606.0</td>\\n      <td>22.0</td>\\n      <td>15271.0</td>\\n      <td>107138.0</td>\\n      <td>202.0</td>\\n      <td>3020647.0</td>\\n      <td>11231.0</td>\\n      <td>396378.0</td>\\n      <td>15520.0</td>\\n      <td>31014.0</td>\\n      <td>251072.0</td>\\n      <td>203479.0</td>\\n      <td>16399.0</td>\\n      <td>100177.0</td>\\n      <td>717787.0</td>\\n      <td>29320.0</td>\\n      <td>11267.0</td>\\n      <td>5064.0</td>\\n      <td>1778085.0</td>\\n      <td>37389.0</td>\\n      <td>215304.0</td>\\n      <td>5422.0</td>\\n      <td>37385.0</td>\\n      <td>14323.0</td>\\n      <td>95785.0</td>\\n      <td>56922.0</td>\\n      <td>63736.0</td>\\n      <td>88522.0</td>\\n      <td>91135.0</td>\\n      <td>60087.0</td>\\n      <td>146739.0</td>\\n      <td>200387.0</td>\\n      <td>776898.0</td>\\n      <td>143270.0</td>\\n      <td>34816.0</td>\\n      <td>16039.0</td>\\n      <td>34304.0</td>\\n      <td>338663.0</td>\\n      <td>183280.0</td>\\n      <td>182684.0</td>\\n      <td>12456.0</td>\\n      <td>75039.0</td>\\n      <td>179449.0</td>\\n      <td>49849.0</td>\\n      <td>52348.0</td>\\n      <td>50675.0</td>\\n      <td>667360.0</td>\\n      <td>1219.0</td>\\n      <td>26460.0</td>\\n      <td>83273.0</td>\\n      <td>394127.0</td>\\n      <td>23955.0</td>\\n      <td>91338.0</td>\\n      <td>383205.0</td>\\n      <td>24368.0</td>\\n      <td>179206.0</td>\\n      <td>19208.0</td>\\n      <td>83879.0</td>\\n      <td>104809.0</td>\\n      <td>1085820.0</td>\\n      <td>158846.0</td>\\n      <td>66176.0</td>\\n      <td>65080.0</td>\\n      <td>315141.0</td>\\n      <td>329761.0</td>\\n      <td>39394758.0</td>\\n      <td>99258.0</td>\\n      <td>57196.0</td>\\n      <td>49878.0</td>\\n      <td>494327.0</td>\\n      <td>117070.0</td>\\n      <td>5109381.0</td>\\n      <td>61645.0</td>\\n      <td>20478.0</td>\\n      <td>234472.0</td>\\n      <td>140948.0</td>\\n      <td>59343.0</td>\\n      <td>181017.0</td>\\n      <td>110788.0</td>\\n      <td>20217.0</td>\\n      <td>66684.0</td>\\n      <td>236260.0</td>\\n      <td>30205.0</td>\\n      <td>75597.0</td>\\n      <td>11890.0</td>\\n      <td>24029.0</td>\\n      <td>217460.0</td>\\n      <td>145818.0</td>\\n      <td>298069.0</td>\\n      <td>59687.0</td>\\n      <td>182781.0</td>\\n      <td>112214.0</td>\\n      <td>92765.0</td>\\n      <td>61581.0</td>\\n      <td>3717903.0</td>\\n      <td>855140.0</td>\\n      <td>643440.0</td>\\n      <td>245327.0</td>\\n      <td>530269.0</td>\\n      <td>4610889.0</td>\\n      <td>86800.0</td>\\n      <td>160532.0</td>\\n      <td>167684.0</td>\\n      <td>143957.0</td>\\n      <td>544273.0</td>\\n      <td>182810.0</td>\\n      <td>1439638.0</td>\\n      <td>203339.0</td>\\n      <td>32648.0</td>\\n      <td>58002.0</td>\\n      <td>44261.0</td>\\n      <td>138736.0</td>\\n      <td>1451732.0</td>\\n      <td>776125.0</td>\\n      <td>41292.0</td>\\n      <td>61147.0</td>\\n      <td>196554.0</td>\\n      <td>113644.0</td>\\n      <td>198676.0</td>\\n      <td>76807.0</td>\\n      <td>265010.0</td>\\n      <td>888866.0</td>\\n      <td>106589.0</td>\\n      <td>59293.0</td>\\n      <td>73396.0</td>\\n      <td>9085.0</td>\\n      <td>45839.0</td>\\n      <td>18455.0</td>\\n      <td>248869.0</td>\\n      <td>65036.0</td>\\n      <td>856322.0</td>\\n      <td>100015.0</td>\\n      <td>857654.0</td>\\n      <td>25010.0</td>\\n      <td>20042.0</td>\\n      <td>115258.0</td>\\n      <td>1708334.0</td>\\n      <td>21251.0</td>\\n      <td>218421.0</td>\\n      <td>571294.0</td>\\n      <td>137058.0</td>\\n      <td>310908.0</td>\\n      <td>324807.0</td>\\n      <td>52130.0</td>\\n      <td>107429.0</td>\\n      <td>64632.0</td>\\n      <td>80241.0</td>\\n      <td>56322.0</td>\\n      <td>315596.0</td>\\n      <td>4166034.0</td>\\n      <td>342266.0</td>\\n      <td>1924930.0</td>\\n      <td>149572.0</td>\\n      <td>137648.0</td>\\n      <td>1937223.0</td>\\n      <td>376952.0</td>\\n      <td>37746.0</td>\\n      <td>51795.0</td>\\n      <td>302560.0</td>\\n      <td>38518.0</td>\\n      <td>83661.0</td>\\n      <td>533200.0</td>\\n      <td>598636.0</td>\\n      <td>109047.0</td>\\n      <td>206725.0</td>\\n      <td>34063.0</td>\\n      <td>167868.0</td>\\n      <td>173121.0</td>\\n      <td>235033.0</td>\\n      <td>158600.0</td>\\n      <td>532608.0</td>\\n      <td>287876.0</td>\\n      <td>1902484.0</td>\\n      <td>163973.0</td>\\n      <td>368977.0</td>\\n      <td>73669.0</td>\\n      <td>91455.0</td>\\n      <td>85543.0</td>\\n      <td>176759.0</td>\\n      <td>361702.0</td>\\n      <td>129720.0</td>\\n      <td>1485922.0</td>\\n      <td>316374.0</td>\\n      <td>173288.0</td>\\n      <td>810939.0</td>\\n      <td>263657.0</td>\\n      <td>411082.0</td>\\n      <td>117587.0</td>\\n      <td>267306.0</td>\\n      <td>146204.0</td>\\n      <td>87725.0</td>\\n      <td>109967.0</td>\\n      <td>107714.0</td>\\n      <td>800904.0</td>\\n      <td>168926.0</td>\\n      <td>445211.0</td>\\n      <td>178965.0</td>\\n      <td>493823.0</td>\\n      <td>3159001.0</td>\\n      <td>197429.0</td>\\n      <td>566375.0</td>\\n      <td>5908511.0</td>\\n      <td>320569.0</td>\\n      <td>38155.0</td>\\n      <td>164880.0</td>\\n      <td>566681.0</td>\\n      <td>172128.0</td>\\n      <td>254053.0</td>\\n      <td>60210.0</td>\\n      <td>285013.0</td>\\n      <td>24981.0</td>\\n      <td>87004.0</td>\\n      <td>64878.0</td>\\n      <td>58627.0</td>\\n      <td>85242.0</td>\\n      <td>53252.0</td>\\n      <td>795317.0</td>\\n      <td>119304.0</td>\\n      <td>46158.0</td>\\n      <td>156679.0</td>\\n      <td>113085.0</td>\\n      <td>135597.0</td>\\n      <td>69464.0</td>\\n      <td>124744.0</td>\\n      <td>331254.0</td>\\n      <td>83143.0</td>\\n      <td>1828774.0</td>\\n      <td>95108.0</td>\\n      <td>146550.0</td>\\n      <td>98121.0</td>\\n      <td>27475.0</td>\\n      <td>858432.0</td>\\n      <td>64078.0</td>\\n      <td>31858.0</td>\\n      <td>8.0</td>\\n      <td>1032299.0</td>\\n      <td>58351.0</td>\\n      <td>563352.0</td>\\n      <td>140974.0</td>\\n      <td>23998.0</td>\\n      <td>348803.0</td>\\n      <td>83609.0</td>\\n      <td>365054.0</td>\\n      <td>114472.0</td>\\n      <td>154936.0</td>\\n      <td>126615.0</td>\\n      <td>34644.0</td>\\n      <td>14696.0</td>\\n      <td>85186.0</td>\\n      <td>58137.0</td>\\n      <td>26226.0</td>\\n      <td>131369.0</td>\\n      <td>1225502.0</td>\\n      <td>136927.0</td>\\n      <td>158389.0</td>\\n      <td>96243.0</td>\\n      <td>472519.0</td>\\n      <td>84979.0</td>\\n      <td>78051.0</td>\\n      <td>179956.0</td>\\n      <td>66434.0</td>\\n      <td>93149.0</td>\\n      <td>307790.0</td>\\n      <td>78596.0</td>\\n      <td>69280.0</td>\\n      <td>62628.0</td>\\n      <td>107332.0</td>\\n      <td>90825.0</td>\\n      <td>293841.0</td>\\n      <td>250074.0</td>\\n      <td>725589.0</td>\\n      <td>40896.0</td>\\n      <td>26645.0</td>\\n      <td>121303.0</td>\\n      <td>245180.0</td>\\n      <td>144327.0</td>\\n      <td>873551.0</td>\\n      <td>76623.0</td>\\n      <td>84187.0</td>\\n      <td>90895.0</td>\\n      <td>78115.0</td>\\n      <td>32224.0</td>\\n      <td>41084.0</td>\\n      <td>69513.0</td>\\n      <td>72806.0</td>\\n      <td>106396.0</td>\\n      <td>73914.0</td>\\n      <td>99965.0</td>\\n      <td>96534.0</td>\\n      <td>174695.0</td>\\n      <td>49323.0</td>\\n      <td>65615.0</td>\\n      <td>41467.0</td>\\n      <td>78979.0</td>\\n      <td>119844.0</td>\\n      <td>232216.0</td>\\n      <td>59003.0</td>\\n      <td>1056954.0</td>\\n      <td>157897.0</td>\\n      <td>45359.0</td>\\n      <td>90271.0</td>\\n      <td>181436.0</td>\\n      <td>1280548.0</td>\\n      <td>127044.0</td>\\n      <td>35836.0</td>\\n      <td>90408.0</td>\\n      <td>66492.0</td>\\n      <td>120086.0</td>\\n      <td>185265.0</td>\\n      <td>458273.0</td>\\n      <td>81560.0</td>\\n      <td>63159.0</td>\\n      <td>44201.0</td>\\n      <td>45099.0</td>\\n      <td>40303.0</td>\\n      <td>331506.0</td>\\n      <td>115156.0</td>\\n      <td>49233.0</td>\\n      <td>85630.0</td>\\n      <td>56980.0</td>\\n      <td>280350.0</td>\\n      <td>52412.0</td>\\n      <td>3858027.0</td>\\n      <td>618849.0</td>\\n      <td>93050.0</td>\\n      <td>19554.0</td>\\n      <td>73070.0</td>\\n      <td>981421.0</td>\\n      <td>76044.0</td>\\n      <td>383032.0</td>\\n      <td>701606.0</td>\\n      <td>199996.0</td>\\n      <td>45434.0</td>\\n      <td>59831.0</td>\\n      <td>34712.0</td>\\n      <td>32865.0</td>\\n      <td>319130.0</td>\\n      <td>270463.0</td>\\n      <td>147833.0</td>\\n      <td>25213.0</td>\\n      <td>343685.0</td>\\n      <td>80363.0</td>\\n      <td>89924.0</td>\\n      <td>1365192.0</td>\\n      <td>32389.0</td>\\n      <td>150917.0</td>\\n      <td>28841.0</td>\\n      <td>31088.0</td>\\n      <td>83229.0</td>\\n      <td>13322.0</td>\\n      <td>140885.0</td>\\n      <td>52935.0</td>\\n      <td>54469.0</td>\\n      <td>288836.0</td>\\n      <td>17991.0</td>\\n      <td>7267.0</td>\\n      <td>111920.0</td>\\n      <td>17055.0</td>\\n      <td>15734.0</td>\\n      <td>30243.0</td>\\n      <td>43578.0</td>\\n      <td>36159.0</td>\\n      <td>6179.0</td>\\n      <td>131999.0</td>\\n      <td>243077.0</td>\\n      <td>14750.0</td>\\n      <td>61904.0</td>\\n      <td>40770.0</td>\\n      <td>480898.0</td>\\n      <td>14654.0</td>\\n      <td>4026.0</td>\\n      <td>217586.0</td>\\n      <td>51085.0</td>\\n      <td>611203.0</td>\\n      <td>687139.0</td>\\n      <td>107111.0</td>\\n      <td>105835.0</td>\\n      <td>22987.0</td>\\n      <td>12491.0</td>\\n      <td>70915.0</td>\\n      <td>37558.0</td>\\n      <td>6001.0</td>\\n      <td>21135.0</td>\\n      <td>15289.0</td>\\n      <td>28223.0</td>\\n      <td>144775.0</td>\\n      <td>27575.0</td>\\n      <td>10216.0</td>\\n      <td>72256.0</td>\\n      <td>63134.0</td>\\n      <td>8506.0</td>\\n      <td>2771261.0</td>\\n      <td>34271.0</td>\\n      <td>29360.0</td>\\n      <td>10170.0</td>\\n      <td>87814.0</td>\\n      <td>6766.0</td>\\n      <td>522439.0</td>\\n      <td>7328.0</td>\\n      <td>27685.0</td>\\n      <td>16032.0</td>\\n      <td>287564.0</td>\\n      <td>38002.0</td>\\n      <td>36607.0</td>\\n      <td>119498.0</td>\\n      <td>30725.0</td>\\n      <td>100442.0</td>\\n      <td>17803.0</td>\\n      <td>117108.0</td>\\n      <td>17187.0</td>\\n      <td>11541.0</td>\\n      <td>73307.0</td>\\n      <td>59080.0</td>\\n      <td>22222.0</td>\\n      <td>75683.0</td>\\n      <td>41466.0</td>\\n      <td>6947.0</td>\\n      <td>22438.0</td>\\n      <td>67065.0</td>\\n      <td>36395.0</td>\\n      <td>69216.0</td>\\n      <td>37271.0</td>\\n      <td>18798.0</td>\\n      <td>406388.0</td>\\n      <td>26229.0</td>\\n      <td>35695.0</td>\\n      <td>361447.0</td>\\n      <td>27834.0</td>\\n      <td>19043.0</td>\\n      <td>39329.0</td>\\n      <td>231549.0</td>\\n      <td>38291.0</td>\\n      <td>2552711.0</td>\\n      <td>412273.0</td>\\n      <td>765594.0</td>\\n      <td>23126.0</td>\\n      <td>32766.0</td>\\n      <td>9673.0</td>\\n      <td>16484.0</td>\\n      <td>14809.0</td>\\n      <td>39409.0</td>\\n      <td>69905.0</td>\\n      <td>55596.0</td>\\n      <td>17141.0</td>\\n      <td>0.0</td>\\n      <td>26629.0</td>\\n      <td>9568.0</td>\\n      <td>18959.0</td>\\n      <td>9245.0</td>\\n      <td>27020.0</td>\\n      <td>6851.0</td>\\n      <td>1542143.0</td>\\n      <td>102640.0</td>\\n      <td>90830.0</td>\\n      <td>51207.0</td>\\n      <td>15821.0</td>\\n      <td>193841.0</td>\\n      <td>27025.0</td>\\n      <td>126837.0</td>\\n      <td>495851.0</td>\\n      <td>56034.0</td>\\n      <td>155037.0</td>\\n      <td>98554.0</td>\\n      <td>15834.0</td>\\n      <td>30014.0</td>\\n      <td>40978.0</td>\\n      <td>267332.0</td>\\n      <td>92636.0</td>\\n      <td>51835.0</td>\\n      <td>163475.0</td>\\n      <td>286368.0</td>\\n      <td>19955.0</td>\\n      <td>44025.0</td>\\n      <td>69224.0</td>\\n      <td>67250.0</td>\\n      <td>318719.0</td>\\n      <td>95708.0</td>\\n      <td>96164.0</td>\\n      <td>44602.0</td>\\n      <td>25130.0</td>\\n      <td>28765.0</td>\\n      <td>387885.0</td>\\n      <td>44080.0</td>\\n      <td>42551.0</td>\\n      <td>40744.0</td>\\n      <td>1853589.0</td>\\n      <td>34300.0</td>\\n      <td>94671.0</td>\\n      <td>153719.0</td>\\n      <td>33139.0</td>\\n      <td>29563.0</td>\\n      <td>55389.0</td>\\n      <td>67208.0</td>\\n      <td>197867.0</td>\\n      <td>101530.0</td>\\n      <td>56977.0</td>\\n      <td>122289.0</td>\\n      <td>27811.0</td>\\n      <td>385900.0</td>\\n      <td>99822.0</td>\\n      <td>51872.0</td>\\n      <td>75651.0</td>\\n      <td>211485.0</td>\\n      <td>53191.0</td>\\n      <td>18057.0</td>\\n      <td>202045.0</td>\\n      <td>77518.0</td>\\n      <td>4121871.0</td>\\n      <td>176963.0</td>\\n      <td>62980.0</td>\\n      <td>604959.0</td>\\n      <td>50675.0</td>\\n      <td>125817.0</td>\\n      <td>52744.0</td>\\n      <td>240370.0</td>\\n      <td>33242.0</td>\\n      <td>49950.0</td>\\n      <td>24826.0</td>\\n      <td>50966.0</td>\\n      <td>51155.0</td>\\n      <td>70117.0</td>\\n      <td>27214.0</td>\\n      <td>142273.0</td>\\n      <td>20693.0</td>\\n      <td>389366.0</td>\\n      <td>38088.0</td>\\n      <td>89838.0</td>\\n      <td>91968.0</td>\\n      <td>35493.0</td>\\n      <td>44032.0</td>\\n      <td>251274.0</td>\\n      <td>54320.0</td>\\n      <td>34648.0</td>\\n      <td>71323.0</td>\\n      <td>13924.0</td>\\n      <td>68949.0</td>\\n      <td>37023.0</td>\\n      <td>62879.0</td>\\n      <td>87386.0</td>\\n      <td>27081.0</td>\\n      <td>208647.0</td>\\n      <td>179252.0</td>\\n      <td>15710.0</td>\\n      <td>125243.0</td>\\n      <td>261759.0</td>\\n      <td>23692.0</td>\\n      <td>16967.0</td>\\n      <td>32559.0</td>\\n      <td>100273.0</td>\\n      <td>165315.0</td>\\n      <td>37748.0</td>\\n      <td>218438.0</td>\\n      <td>6370.0</td>\\n      <td>53200.0</td>\\n      <td>69801.0</td>\\n      <td>75362.0</td>\\n      <td>183987.0</td>\\n      <td>263450.0</td>\\n      <td>76124.0</td>\\n      <td>62281.0</td>\\n      <td>102804.0</td>\\n      <td>44771.0</td>\\n      <td>41518.0</td>\\n      <td>19539.0</td>\\n      <td>70552.0</td>\\n      <td>951.0</td>\\n      <td>945989.0</td>\\n      <td>50387.0</td>\\n      <td>63737.0</td>\\n      <td>54042.0</td>\\n      <td>141653.0</td>\\n      <td>15354.0</td>\\n      <td>79140.0</td>\\n      <td>591296.0</td>\\n      <td>303897.0</td>\\n      <td>806773.0</td>\\n      <td>162010.0</td>\\n      <td>290169.0</td>\\n      <td>196162.0</td>\\n      <td>113903.0</td>\\n      <td>758771.0</td>\\n      <td>1912420.0</td>\\n      <td>1527394.0</td>\\n      <td>74877.0</td>\\n      <td>42089.0</td>\\n      <td>89606.0</td>\\n      <td>99477.0</td>\\n      <td>116060.0</td>\\n      <td>195748.0</td>\\n      <td>3066400.0</td>\\n      <td>121419.0</td>\\n      <td>281367.0</td>\\n      <td>250805.0</td>\\n      <td>249298.0</td>\\n      <td>104873.0</td>\\n      <td>567250.0</td>\\n      <td>320801.0</td>\\n      <td>140010.0</td>\\n      <td>4009167.0</td>\\n      <td>248333.0</td>\\n      <td>99230.0</td>\\n      <td>1760552.0</td>\\n      <td>736132.0</td>\\n      <td>289577.0</td>\\n      <td>798387.0</td>\\n      <td>162281.0</td>\\n      <td>171549.0</td>\\n      <td>253667.0</td>\\n      <td>3007887.0</td>\\n      <td>1369346.0</td>\\n      <td>163223.0</td>\\n      <td>207383.0</td>\\n      <td>881679.0</td>\\n      <td>72397.0</td>\\n      <td>170244.0</td>\\n      <td>179155.0</td>\\n      <td>305519.0</td>\\n      <td>405263.0</td>\\n      <td>76373.0</td>\\n      <td>174479.0</td>\\n      <td>372847.0</td>\\n      <td>668107.0</td>\\n      <td>419810.0</td>\\n      <td>369217.0</td>\\n      <td>1507975.0</td>\\n      <td>944784.0</td>\\n      <td>29078.0</td>\\n      <td>716821.0</td>\\n      <td>206590.0</td>\\n      <td>250818.0</td>\\n      <td>367747.0</td>\\n      <td>197219.0</td>\\n      <td>346003.0</td>\\n      <td>265645.0</td>\\n      <td>188899.0</td>\\n      <td>79212.0</td>\\n      <td>129457.0</td>\\n      <td>131812.0</td>\\n      <td>196745.0</td>\\n      <td>18940.0</td>\\n      <td>611432.0</td>\\n      <td>24716.0</td>\\n      <td>23800.0</td>\\n      <td>92330.0</td>\\n      <td>19532.0</td>\\n      <td>16469.0</td>\\n      <td>43716.0</td>\\n      <td>93508.0</td>\\n      <td>4244.0</td>\\n      <td>20799.0</td>\\n      <td>38529.0</td>\\n      <td>928.0</td>\\n      <td>28792.0</td>\\n      <td>14412.0</td>\\n      <td>302518.0</td>\\n      <td>258285.0</td>\\n      <td>2368148.0</td>\\n      <td>4056706.0</td>\\n      <td>3537899.0</td>\\n      <td>220672.0</td>\\n      <td>141433.0</td>\\n      <td>485909.0</td>\\n      <td>271682.0</td>\\n      <td>637000.0</td>\\n      <td>130775.0</td>\\n      <td>1017254.0</td>\\n      <td>56244.0</td>\\n      <td>728251.0</td>\\n      <td>1172698.0</td>\\n      <td>73822.0</td>\\n      <td>5336053.0</td>\\n      <td>6830963.0</td>\\n      <td>145869.0</td>\\n      <td>94596.0</td>\\n      <td>302840.0</td>\\n      <td>112545.0</td>\\n      <td>400.0</td>\\n      <td>487938.0</td>\\n      <td>475241.0</td>\\n      <td>207761.0</td>\\n      <td>516916.0</td>\\n      <td>233022.0</td>\\n      <td>2987245.0</td>\\n      <td>27782.0</td>\\n      <td>5645084.0</td>\\n      <td>123002.0</td>\\n      <td>2447214.0</td>\\n      <td>358802.0</td>\\n      <td>7884235.0</td>\\n      <td>34418.0</td>\\n      <td>2957339.0</td>\\n      <td>2714013.0</td>\\n      <td>6551555.0</td>\\n      <td>832289.0</td>\\n      <td>4106385.0</td>\\n      <td>17740.0</td>\\n      <td>21280.0</td>\\n      <td>339036.0</td>\\n      <td>64934.0</td>\\n      <td>35604.0</td>\\n      <td>34069.0</td>\\n      <td>30804.0</td>\\n      <td>165438.0</td>\\n      <td>384320.0</td>\\n      <td>32794.0</td>\\n      <td>663217.0</td>\\n      <td>409691.0</td>\\n      <td>541848.0</td>\\n      <td>199644.0</td>\\n      <td>51226.0</td>\\n      <td>40983.0</td>\\n      <td>98596.0</td>\\n      <td>62845.0</td>\\n      <td>249977.0</td>\\n      <td>38592.0</td>\\n      <td>189547.0</td>\\n      <td>119926.0</td>\\n      <td>280051.0</td>\\n      <td>76796.0</td>\\n      <td>1600902.0</td>\\n      <td>59600.0</td>\\n      <td>66673.0</td>\\n      <td>169129.0</td>\\n      <td>181451.0</td>\\n      <td>152595.0</td>\\n      <td>132142.0</td>\\n      <td>80566.0</td>\\n      <td>907978.0</td>\\n      <td>266536.0</td>\\n      <td>73323.0</td>\\n      <td>56590.0</td>\\n      <td>215047.0</td>\\n      <td>885923.0</td>\\n      <td>913802.0</td>\\n      <td>32139.0</td>\\n      <td>3289396.0</td>\\n      <td>4638.0</td>\\n      <td>16186.0</td>\\n      <td>311590.0</td>\\n      <td>36073.0</td>\\n      <td>433179.0</td>\\n      <td>519184.0</td>\\n      <td>61769.0</td>\\n      <td>24671.0</td>\\n      <td>4363582.0</td>\\n      <td>35097.0</td>\\n      <td>262050.0</td>\\n      <td>56489.0</td>\\n      <td>96237.0</td>\\n      <td>114422.0</td>\\n      <td>242036.0</td>\\n      <td>25879.0</td>\\n      <td>510602.0</td>\\n      <td>168108.0</td>\\n      <td>12500.0</td>\\n      <td>777058.0</td>\\n      <td>144148.0</td>\\n      <td>5762554.0</td>\\n      <td>140881.0</td>\\n      <td>42879.0</td>\\n      <td>20166.0</td>\\n      <td>44836.0</td>\\n      <td>15790.0</td>\\n      <td>79216.0</td>\\n      <td>1195053.0</td>\\n      <td>22148.0</td>\\n      <td>49777.0</td>\\n      <td>909530.0</td>\\n      <td>71464.0</td>\\n      <td>13963.0</td>\\n      <td>192335.0</td>\\n      <td>430575.0</td>\\n      <td>254457.0</td>\\n      <td>171947.0</td>\\n      <td>281458.0</td>\\n      <td>258623.0</td>\\n      <td>1223618.0</td>\\n      <td>9444432.0</td>\\n      <td>52946.0</td>\\n      <td>52393.0</td>\\n      <td>2002667.0</td>\\n      <td>148529.0</td>\\n      <td>173561.0</td>\\n      <td>240849.0</td>\\n      <td>26941.0</td>\\n      <td>405543.0</td>\\n      <td>101491.0</td>\\n      <td>140369.0</td>\\n      <td>427279.0</td>\\n      <td>100015.0</td>\\n      <td>80829.0</td>\\n      <td>237182.0</td>\\n      <td>460584.0</td>\\n      <td>32858.0</td>\\n      <td>5069.0</td>\\n      <td>80864.0</td>\\n      <td>259810.0</td>\\n      <td>2130239.0</td>\\n      <td>79518.0</td>\\n      <td>183786.0</td>\\n      <td>52375.0</td>\\n      <td>58351.0</td>\\n      <td>153990.0</td>\\n      <td>163827.0</td>\\n      <td>23400.0</td>\\n      <td>7294457.0</td>\\n      <td>57191.0</td>\\n      <td>76901.0</td>\\n      <td>142456.0</td>\\n      <td>154127.0</td>\\n      <td>47918.0</td>\\n      <td>49486.0</td>\\n      <td>382977.0</td>\\n      <td>15380.0</td>\\n      <td>35397.0</td>\\n      <td>28937.0</td>\\n      <td>29077.0</td>\\n      <td>8276.0</td>\\n      <td>134105.0</td>\\n      <td>32093.0</td>\\n      <td>206662.0</td>\\n      <td>22886.0</td>\\n      <td>35632.0</td>\\n      <td>118287.0</td>\\n      <td>170571.0</td>\\n      <td>98133.0</td>\\n      <td>107944.0</td>\\n      <td>161922.0</td>\\n      <td>328838.0</td>\\n      <td>55870.0</td>\\n      <td>153260.0</td>\\n      <td>512504.0</td>\\n      <td>27161.0</td>\\n      <td>709787.0</td>\\n      <td>226952.0</td>\\n      <td>51862.0</td>\\n      <td>126638.0</td>\\n      <td>66970.0</td>\\n      <td>181953.0</td>\\n      <td>40013.0</td>\\n      <td>2994212.0</td>\\n      <td>17177.0</td>\\n      <td>68245.0</td>\\n      <td>66849.0</td>\\n      <td>414286.0</td>\\n      <td>63897.0</td>\\n      <td>81243.0</td>\\n      <td>768003.0</td>\\n      <td>464515.0</td>\\n      <td>62840.0</td>\\n      <td>675443.0</td>\\n      <td>1352426.0</td>\\n      <td>177735.0</td>\\n      <td>38069.0</td>\\n      <td>47376.0</td>\\n      <td>183470.0</td>\\n      <td>12078.0</td>\\n      <td>57295.0</td>\\n      <td>83396.0</td>\\n      <td>56877.0</td>\\n      <td>134741.0</td>\\n      <td>1254903.0</td>\\n      <td>107846.0</td>\\n      <td>32173.0</td>\\n      <td>242819.0</td>\\n      <td>640900.0</td>\\n      <td>54631.0</td>\\n      <td>194474.0</td>\\n      <td>169941.0</td>\\n      <td>74280.0</td>\\n      <td>164083.0</td>\\n      <td>55379.0</td>\\n      <td>337889.0</td>\\n      <td>109417.0</td>\\n      <td>89764.0</td>\\n      <td>150505.0</td>\\n      <td>43060.0</td>\\n      <td>95606.0</td>\\n      <td>124188.0</td>\\n      <td>126745.0</td>\\n      <td>212010.0</td>\\n      <td>254999.0</td>\\n      <td>179688.0</td>\\n      <td>1245113.0</td>\\n      <td>536127.0</td>\\n      <td>44616.0</td>\\n      <td>159401.0</td>\\n      <td>81279.0</td>\\n      <td>215066.0</td>\\n      <td>146743.0</td>\\n      <td>877881.0</td>\\n      <td>1458014.0</td>\\n      <td>223532.0</td>\\n      <td>78214.0</td>\\n      <td>15852.0</td>\\n      <td>179794.0</td>\\n      <td>775230.0</td>\\n      <td>126247.0</td>\\n      <td>51286.0</td>\\n      <td>74832.0</td>\\n      <td>534493.0</td>\\n      <td>70230.0</td>\\n      <td>399766.0</td>\\n      <td>379137.0</td>\\n      <td>482953.0</td>\\n      <td>97504.0</td>\\n      <td>225025.0</td>\\n      <td>603735.0</td>\\n      <td>290854.0</td>\\n      <td>255350.0</td>\\n      <td>335091.0</td>\\n      <td>706992.0</td>\\n      <td>174273.0</td>\\n      <td>249088.0</td>\\n      <td>270626.0</td>\\n      <td>99687.0</td>\\n      <td>357912.0</td>\\n      <td>165699.0</td>\\n      <td>115289.0</td>\\n      <td>344845.0</td>\\n      <td>296063.0</td>\\n      <td>208184.0</td>\\n      <td>83019.0</td>\\n      <td>247003.0</td>\\n      <td>260977.0</td>\\n      <td>172742.0</td>\\n      <td>69094.0</td>\\n      <td>734394.0</td>\\n      <td>271162.0</td>\\n      <td>45890.0</td>\\n      <td>209384.0</td>\\n      <td>112314.0</td>\\n      <td>86718.0</td>\\n      <td>271186.0</td>\\n      <td>136146.0</td>\\n      <td>217497.0</td>\\n      <td>154422.0</td>\\n      <td>135105.0</td>\\n      <td>88998.0</td>\\n      <td>216106.0</td>\\n      <td>2144.0</td>\\n      <td>116599.0</td>\\n      <td>276051.0</td>\\n      <td>442052.0</td>\\n      <td>192524.0</td>\\n      <td>68917.0</td>\\n      <td>62274.0</td>\\n      <td>166096.0</td>\\n      <td>96863.0</td>\\n      <td>231271.0</td>\\n      <td>110121.0</td>\\n      <td>73157.0</td>\\n      <td>16560.0</td>\\n      <td>137526.0</td>\\n      <td>134787.0</td>\\n      <td>57641.0</td>\\n      <td>45509.0</td>\\n      <td>77423.0</td>\\n      <td>73500.0</td>\\n      <td>1017686.0</td>\\n      <td>651651.0</td>\\n      <td>194134.0</td>\\n      <td>32222.0</td>\\n      <td>228651.0</td>\\n      <td>235587.0</td>\\n      <td>505759.0</td>\\n      <td>41064.0</td>\\n      <td>25669.0</td>\\n      <td>388039.0</td>\\n      <td>36582.0</td>\\n      <td>18398.0</td>\\n      <td>384663.0</td>\\n      <td>22853.0</td>\\n      <td>490735.0</td>\\n      <td>79281.0</td>\\n      <td>503991.0</td>\\n      <td>104845.0</td>\\n      <td>104005.0</td>\\n      <td>30562.0</td>\\n      <td>52486.0</td>\\n      <td>30704.0</td>\\n      <td>48097.0</td>\\n      <td>41231.0</td>\\n      <td>43656.0</td>\\n      <td>173575.0</td>\\n      <td>453609.0</td>\\n      <td>42159.0</td>\\n      <td>40800.0</td>\\n      <td>1469075.0</td>\\n      <td>44169.0</td>\\n      <td>36978.0</td>\\n      <td>83196.0</td>\\n      <td>31094.0</td>\\n      <td>22001.0</td>\\n      <td>43616.0</td>\\n      <td>157072.0</td>\\n      <td>20349.0</td>\\n      <td>1790202.0</td>\\n      <td>521168.0</td>\\n      <td>1128954.0</td>\\n      <td>251311.0</td>\\n      <td>320617.0</td>\\n      <td>2582379.0</td>\\n      <td>11858.0</td>\\n      <td>171438.0</td>\\n      <td>141832.0</td>\\n      <td>168440.0</td>\\n      <td>35282.0</td>\\n      <td>227839.0</td>\\n      <td>28001.0</td>\\n      <td>77921.0</td>\\n      <td>51538.0</td>\\n      <td>75868.0</td>\\n      <td>29369.0</td>\\n      <td>161717.0</td>\\n      <td>237578.0</td>\\n      <td>7736.0</td>\\n      <td>134317.0</td>\\n      <td>83725.0</td>\\n      <td>105819.0</td>\\n      <td>30795.0</td>\\n      <td>29786.0</td>\\n      <td>96546.0</td>\\n      <td>128392.0</td>\\n      <td>323595.0</td>\\n      <td>175801.0</td>\\n      <td>33855.0</td>\\n      <td>73480.0</td>\\n      <td>26888.0</td>\\n      <td>116857.0</td>\\n      <td>148314.0</td>\\n      <td>304324.0</td>\\n      <td>144928.0</td>\\n      <td>76727.0</td>\\n      <td>174732.0</td>\\n      <td>171654.0</td>\\n      <td>167328.0</td>\\n      <td>11586.0</td>\\n      <td>40357.0</td>\\n      <td>98310.0</td>\\n      <td>62057.0</td>\\n      <td>20770.0</td>\\n      <td>45024.0</td>\\n      <td>184354.0</td>\\n      <td>10523.0</td>\\n      <td>14454.0</td>\\n      <td>248570.0</td>\\n      <td>31769.0</td>\\n      <td>18954.0</td>\\n      <td>2112403.0</td>\\n      <td>25011.0</td>\\n      <td>476023.0</td>\\n      <td>5813393.0</td>\\n      <td>1650669.0</td>\\n      <td>81535.0</td>\\n      <td>149578.0</td>\\n      <td>111091.0</td>\\n      <td>59107.0</td>\\n      <td>285754.0</td>\\n      <td>85378.0</td>\\n      <td>425.0</td>\\n      <td>58731.0</td>\\n      <td>137947.0</td>\\n      <td>117689.0</td>\\n      <td>46076.0</td>\\n      <td>164582.0</td>\\n      <td>6670.0</td>\\n      <td>75785.0</td>\\n      <td>45876.0</td>\\n      <td>191355.0</td>\\n      <td>38280.0</td>\\n      <td>14965.0</td>\\n      <td>46633.0</td>\\n      <td>7858.0</td>\\n      <td>363653.0</td>\\n      <td>18917.0</td>\\n      <td>55599.0</td>\\n      <td>7231.0</td>\\n      <td>47338.0</td>\\n      <td>56425.0</td>\\n      <td>14422.0</td>\\n      <td>43918.0</td>\\n      <td>519796.0</td>\\n      <td>603724.0</td>\\n      <td>5224.0</td>\\n      <td>104626.0</td>\\n      <td>2443.0</td>\\n      <td>10415.0</td>\\n      <td>102292.0</td>\\n      <td>37126.0</td>\\n      <td>3996.0</td>\\n      <td>94418.0</td>\\n      <td>216080.0</td>\\n      <td>6106.0</td>\\n      <td>59415.0</td>\\n      <td>35813.0</td>\\n      <td>8415.0</td>\\n      <td>8798.0</td>\\n      <td>5297.0</td>\\n      <td>370568.0</td>\\n      <td>16178.0</td>\\n      <td>49218.0</td>\\n      <td>528.0</td>\\n      <td>28645.0</td>\\n      <td>23513.0</td>\\n      <td>6720.0</td>\\n      <td>37952.0</td>\\n      <td>6181.0</td>\\n      <td>106353.0</td>\\n      <td>49083.0</td>\\n      <td>103446.0</td>\\n      <td>96529.0</td>\\n      <td>20446.0</td>\\n      <td>17817.0</td>\\n      <td>146583.0</td>\\n      <td>33130.0</td>\\n      <td>17903.0</td>\\n      <td>16136.0</td>\\n      <td>50971.0</td>\\n      <td>2591.0</td>\\n      <td>0.0</td>\\n      <td>43674.0</td>\\n      <td>8364.0</td>\\n      <td>6483.0</td>\\n      <td>971916.0</td>\\n      <td>178820.0</td>\\n      <td>27068.0</td>\\n      <td>998.0</td>\\n      <td>1230.0</td>\\n      <td>845.0</td>\\n      <td>25719.0</td>\\n      <td>43304.0</td>\\n      <td>10216.0</td>\\n      <td>12316.0</td>\\n      <td>318765.0</td>\\n      <td>32225.0</td>\\n      <td>49824.0</td>\\n      <td>107029.0</td>\\n      <td>31489.0</td>\\n      <td>20324.0</td>\\n      <td>14687.0</td>\\n      <td>35541.0</td>\\n      <td>33870.0</td>\\n      <td>203622.0</td>\\n      <td>52030.0</td>\\n      <td>42083.0</td>\\n      <td>551828.0</td>\\n      <td>37405.0</td>\\n      <td>299716.0</td>\\n      <td>3091.0</td>\\n      <td>34770.0</td>\\n      <td>327405.0</td>\\n      <td>4391658.0</td>\\n      <td>5064.0</td>\\n      <td>24980.0</td>\\n      <td>13887.0</td>\\n      <td>7641.0</td>\\n      <td>20551.0</td>\\n      <td>107656.0</td>\\n      <td>5801.0</td>\\n      <td>6921.0</td>\\n      <td>11455.0</td>\\n      <td>1133.0</td>\\n      <td>10189.0</td>\\n      <td>620521.0</td>\\n      <td>52312.0</td>\\n      <td>10005.0</td>\\n      <td>2877.0</td>\\n      <td>8004.0</td>\\n      <td>40288.0</td>\\n      <td>3515.0</td>\\n      <td>32914.0</td>\\n      <td>26530.0</td>\\n      <td>25324.0</td>\\n      <td>42643.0</td>\\n      <td>28699.0</td>\\n      <td>1797.0</td>\\n      <td>15359.0</td>\\n      <td>42524.0</td>\\n      <td>1678764.0</td>\\n      <td>179349.0</td>\\n      <td>3042.0</td>\\n      <td>1875.0</td>\\n      <td>291639.0</td>\\n      <td>1648.0</td>\\n      <td>37946.0</td>\\n      <td>28323.0</td>\\n      <td>20129.0</td>\\n      <td>30526.0</td>\\n      <td>15828.0</td>\\n      <td>60380.0</td>\\n      <td>7614.0</td>\\n      <td>11934.0</td>\\n      <td>46736.0</td>\\n      <td>34878.0</td>\\n      <td>331624.0</td>\\n      <td>26385.0</td>\\n      <td>45003.0</td>\\n      <td>26230.0</td>\\n      <td>7724.0</td>\\n      <td>199509.0</td>\\n      <td>1115351.0</td>\\n      <td>119432.0</td>\\n      <td>243908.0</td>\\n      <td>74305.0</td>\\n      <td>21870.0</td>\\n      <td>9941.0</td>\\n      <td>2129.0</td>\\n      <td>18838.0</td>\\n      <td>18653.0</td>\\n      <td>2581.0</td>\\n      <td>64598.0</td>\\n      <td>24437.0</td>\\n      <td>15165.0</td>\\n      <td>100125.0</td>\\n      <td>57682.0</td>\\n      <td>16588.0</td>\\n      <td>1106.0</td>\\n      <td>82013.0</td>\\n      <td>226387.0</td>\\n      <td>66102.0</td>\\n      <td>14648193.0</td>\\n      <td>98751.0</td>\\n      <td>265009.0</td>\\n      <td>873.0</td>\\n      <td>2190.0</td>\\n      <td>45959.0</td>\\n      <td>23773.0</td>\\n      <td>12584.0</td>\\n      <td>126352.0</td>\\n      <td>8215.0</td>\\n      <td>142050.0</td>\\n      <td>13232.0</td>\\n      <td>4071.0</td>\\n      <td>1804.0</td>\\n      <td>2579136.0</td>\\n      <td>22080.0</td>\\n      <td>76099.0</td>\\n      <td>44377.0</td>\\n      <td>59160.0</td>\\n      <td>23602.0</td>\\n      <td>60382.0</td>\\n      <td>1306428.0</td>\\n      <td>236338.0</td>\\n      <td>683873.0</td>\\n      <td>185594.0</td>\\n      <td>22777.0</td>\\n      <td>26075.0</td>\\n      <td>1122202.0</td>\\n      <td>6329113.0</td>\\n      <td>1991401.0</td>\\n      <td>2782020.0</td>\\n      <td>258949.0</td>\\n      <td>908988.0</td>\\n      <td>6098871.0</td>\\n      <td>1207606.0</td>\\n      <td>5893005.0</td>\\n      <td>390694.0</td>\\n      <td>2349382.0</td>\\n      <td>5464413.0</td>\\n      <td>3332046.0</td>\\n      <td>2327723.0</td>\\n      <td>3560974.0</td>\\n      <td>5339371.0</td>\\n      <td>269765.0</td>\\n      <td>1600675.0</td>\\n      <td>438099.0</td>\\n      <td>5092371.0</td>\\n      <td>225922.0</td>\\n      <td>419716.0</td>\\n      <td>2461507.0</td>\\n      <td>3168.0</td>\\n      <td>403282.0</td>\\n      <td>210150.0</td>\\n      <td>21994.0</td>\\n      <td>277584.0</td>\\n      <td>3031.0</td>\\n      <td>1204916.0</td>\\n      <td>259299.0</td>\\n      <td>44398.0</td>\\n      <td>20864.0</td>\\n      <td>558.0</td>\\n      <td>23158.0</td>\\n      <td>417411.0</td>\\n      <td>66502.0</td>\\n      <td>13343.0</td>\\n      <td>159982.0</td>\\n      <td>1098886.0</td>\\n      <td>3923.0</td>\\n      <td>316580.0</td>\\n      <td>21579.0</td>\\n      <td>127897.0</td>\\n      <td>91228.0</td>\\n      <td>894160.0</td>\\n      <td>39529.0</td>\\n      <td>510624.0</td>\\n      <td>423864.0</td>\\n      <td>26106.0</td>\\n      <td>53949.0</td>\\n      <td>64096.0</td>\\n      <td>37876.0</td>\\n      <td>17086.0</td>\\n      <td>592.0</td>\\n      <td>267550.0</td>\\n      <td>879845.0</td>\\n      <td>82354.0</td>\\n      <td>572496.0</td>\\n      <td>115333.0</td>\\n      <td>104470.0</td>\\n      <td>174951.0</td>\\n      <td>258352.0</td>\\n      <td>82852.0</td>\\n      <td>59226.0</td>\\n      <td>162280.0</td>\\n      <td>95740.0</td>\\n      <td>46000.0</td>\\n      <td>1374513.0</td>\\n      <td>3259679.0</td>\\n      <td>38836.0</td>\\n      <td>29891.0</td>\\n      <td>91366.0</td>\\n      <td>127639.0</td>\\n      <td>103711.0</td>\\n      <td>5078.0</td>\\n      <td>100472.0</td>\\n      <td>70564.0</td>\\n      <td>34078.0</td>\\n      <td>86115.0</td>\\n      <td>150384.0</td>\\n      <td>1974124.0</td>\\n      <td>68337.0</td>\\n      <td>12715638.0</td>\\n      <td>66041397.0</td>\\n      <td>544541.0</td>\\n      <td>719675.0</td>\\n      <td>1367972.0</td>\\n      <td>164358.0</td>\\n      <td>3323862.0</td>\\n      <td>98122.0</td>\\n      <td>163178.0</td>\\n      <td>76498.0</td>\\n      <td>467528.0</td>\\n      <td>265974.0</td>\\n      <td>4244950.0</td>\\n      <td>316121.0</td>\\n      <td>384223.0</td>\\n      <td>29118.0</td>\\n      <td>25416.0</td>\\n      <td>39291.0</td>\\n      <td>114388.0</td>\\n      <td>194106.0</td>\\n      <td>12677187.0</td>\\n      <td>424491.0</td>\\n      <td>111652.0</td>\\n      <td>129648.0</td>\\n      <td>614296.0</td>\\n      <td>0.0</td>\\n      <td>100478.0</td>\\n      <td>80910.0</td>\\n      <td>125233.0</td>\\n      <td>10508851.0</td>\\n      <td>62078.0</td>\\n      <td>28012.0</td>\\n      <td>874074.0</td>\\n      <td>159513.0</td>\\n      <td>49447.0</td>\\n      <td>121094.0</td>\\n      <td>78294.0</td>\\n      <td>88969.0</td>\\n      <td>194838.0</td>\\n      <td>116409.0</td>\\n      <td>184799.0</td>\\n      <td>378531.0</td>\\n      <td>690256.0</td>\\n      <td>518345.0</td>\\n      <td>890999.0</td>\\n      <td>423108.0</td>\\n      <td>23425.0</td>\\n      <td>181895.0</td>\\n      <td>94568.0</td>\\n      <td>791808.0</td>\\n      <td>369938.0</td>\\n      <td>113514.0</td>\\n      <td>71156.0</td>\\n      <td>30095.0</td>\\n      <td>495982.0</td>\\n      <td>322638.0</td>\\n      <td>364620.0</td>\\n      <td>1163807.0</td>\\n      <td>39499.0</td>\\n      <td>71358.0</td>\\n      <td>662077.0</td>\\n      <td>146984.0</td>\\n      <td>522181.0</td>\\n      <td>1683211.0</td>\\n      <td>298693.0</td>\\n      <td>1698678.0</td>\\n      <td>266476.0</td>\\n      <td>1208695.0</td>\\n      <td>27187.0</td>\\n      <td>30126.0</td>\\n      <td>372359.0</td>\\n      <td>139335.0</td>\\n      <td>2024561.0</td>\\n      <td>242263.0</td>\\n      <td>492634.0</td>\\n      <td>138884.0</td>\\n      <td>447701.0</td>\\n      <td>134556.0</td>\\n      <td>255924.0</td>\\n      <td>23932.0</td>\\n      <td>685155.0</td>\\n      <td>162119.0</td>\\n      <td>1013147.0</td>\\n      <td>33513.0</td>\\n      <td>367683.0</td>\\n      <td>252858.0</td>\\n      <td>383268.0</td>\\n      <td>132072.0</td>\\n      <td>43200.0</td>\\n      <td>104515.0</td>\\n      <td>228512.0</td>\\n      <td>6172191.0</td>\\n      <td>48673.0</td>\\n      <td>199234.0</td>\\n      <td>378124.0</td>\\n      <td>514395.0</td>\\n      <td>859585.0</td>\\n      <td>105150.0</td>\\n      <td>556733.0</td>\\n      <td>519910.0</td>\\n      <td>45871.0</td>\\n      <td>146815.0</td>\\n      <td>225243.0</td>\\n      <td>40040.0</td>\\n      <td>110436.0</td>\\n      <td>951866.0</td>\\n      <td>62343.0</td>\\n      <td>696521.0</td>\\n      <td>224928.0</td>\\n      <td>958209.0</td>\\n      <td>315894.0</td>\\n      <td>762997.0</td>\\n      <td>301795.0</td>\\n      <td>480324.0</td>\\n      <td>221931.0</td>\\n      <td>381695.0</td>\\n      <td>126139.0</td>\\n      <td>335026.0</td>\\n      <td>44706.0</td>\\n      <td>66043.0</td>\\n      <td>21210.0</td>\\n      <td>1031621.0</td>\\n      <td>242245.0</td>\\n      <td>3828052.0</td>\\n      <td>86948.0</td>\\n      <td>42308.0</td>\\n      <td>193092.0</td>\\n      <td>804474.0</td>\\n      <td>326106.0</td>\\n      <td>506253.0</td>\\n      <td>189520.0</td>\\n      <td>56260.0</td>\\n      <td>12007.0</td>\\n      <td>75912.0</td>\\n      <td>76320.0</td>\\n      <td>3785.0</td>\\n      <td>39872.0</td>\\n      <td>17378.0</td>\\n      <td>13877.0</td>\\n      <td>1023901.0</td>\\n      <td>1624120.0</td>\\n      <td>25233.0</td>\\n      <td>41426.0</td>\\n      <td>8738.0</td>\\n      <td>28409.0</td>\\n      <td>28771.0</td>\\n      <td>32281.0</td>\\n      <td>33193.0</td>\\n      <td>14542.0</td>\\n      <td>695449.0</td>\\n      <td>11287.0</td>\\n      <td>19135.0</td>\\n      <td>18485.0</td>\\n      <td>16435.0</td>\\n      <td>29465.0</td>\\n      <td>14667.0</td>\\n      <td>33706.0</td>\\n      <td>22436.0</td>\\n      <td>76236.0</td>\\n      <td>82887.0</td>\\n      <td>65571.0</td>\\n      <td>347154.0</td>\\n      <td>89578.0</td>\\n      <td>26761.0</td>\\n      <td>10165.0</td>\\n      <td>43523.0</td>\\n      <td>27160.0</td>\\n      <td>89955.0</td>\\n      <td>34217.0</td>\\n      <td>17893.0</td>\\n      <td>92547.0</td>\\n      <td>100297.0</td>\\n      <td>23896.0</td>\\n      <td>6513.0</td>\\n      <td>43915.0</td>\\n      <td>2324.0</td>\\n      <td>332650.0</td>\\n      <td>10187.0</td>\\n      <td>190882.0</td>\\n      <td>15370.0</td>\\n      <td>55853.0</td>\\n      <td>3878.0</td>\\n      <td>103895.0</td>\\n      <td>529290.0</td>\\n      <td>24309.0</td>\\n      <td>274462.0</td>\\n      <td>12736.0</td>\\n      <td>264.0</td>\\n      <td>2491.0</td>\\n      <td>64549.0</td>\\n      <td>488820.0</td>\\n      <td>115273.0</td>\\n      <td>245513.0</td>\\n      <td>201897.0</td>\\n      <td>215807.0</td>\\n      <td>227498.0</td>\\n      <td>107721.0</td>\\n      <td>1673721.0</td>\\n      <td>56526.0</td>\\n      <td>100509.0</td>\\n      <td>568375.0</td>\\n      <td>611028.0</td>\\n      <td>116265.0</td>\\n      <td>513214.0</td>\\n      <td>91773.0</td>\\n      <td>129854.0</td>\\n      <td>4836405.0</td>\\n      <td>253614.0</td>\\n      <td>132864.0</td>\\n      <td>654255.0</td>\\n      <td>273267.0</td>\\n      <td>613898.0</td>\\n      <td>93945.0</td>\\n      <td>6598315.0</td>\\n      <td>129135.0</td>\\n      <td>75712.0</td>\\n      <td>248398.0</td>\\n      <td>522815.0</td>\\n      <td>91848.0</td>\\n      <td>3703616.0</td>\\n      <td>244113.0</td>\\n      <td>98240.0</td>\\n      <td>25668.0</td>\\n      <td>99724.0</td>\\n      <td>104656.0</td>\\n      <td>69864.0</td>\\n      <td>142951.0</td>\\n      <td>180984.0</td>\\n      <td>100771.0</td>\\n      <td>146712.0</td>\\n      <td>125553.0</td>\\n      <td>658874.0</td>\\n      <td>196859.0</td>\\n      <td>609763.0</td>\\n      <td>122279.0</td>\\n      <td>806894.0</td>\\n      <td>1924831.0</td>\\n      <td>204627.0</td>\\n      <td>994804.0</td>\\n      <td>870144.0</td>\\n      <td>509699.0</td>\\n      <td>44712.0</td>\\n      <td>301649.0</td>\\n      <td>468329.0</td>\\n      <td>42537.0</td>\\n      <td>2232498.0</td>\\n      <td>27264.0</td>\\n      <td>100907.0</td>\\n      <td>236404.0</td>\\n      <td>46100.0</td>\\n      <td>144033.0</td>\\n      <td>58679.0</td>\\n      <td>91730.0</td>\\n      <td>729715.0</td>\\n      <td>71721.0</td>\\n      <td>411593.0</td>\\n      <td>151046.0</td>\\n      <td>208428.0</td>\\n      <td>366609.0</td>\\n      <td>265554.0</td>\\n      <td>185750.0</td>\\n      <td>200920.0</td>\\n      <td>169047.0</td>\\n      <td>189893.0</td>\\n      <td>1058107.0</td>\\n      <td>1660781.0</td>\\n      <td>648239.0</td>\\n      <td>366409.0</td>\\n      <td>188431.0</td>\\n      <td>1304.0</td>\\n      <td>79340.0</td>\\n      <td>25024.0</td>\\n      <td>926502.0</td>\\n      <td>136577.0</td>\\n      <td>346720.0</td>\\n      <td>106759.0</td>\\n      <td>522006.0</td>\\n      <td>79467.0</td>\\n      <td>141778.0</td>\\n      <td>33466.0</td>\\n      <td>75969.0</td>\\n      <td>20229.0</td>\\n      <td>120632.0</td>\\n      <td>37087.0</td>\\n      <td>261808.0</td>\\n      <td>202397.0</td>\\n      <td>669260.0</td>\\n      <td>163006.0</td>\\n      <td>238957.0</td>\\n      <td>80205.0</td>\\n      <td>6547.0</td>\\n      <td>1397163.0</td>\\n      <td>25117.0</td>\\n      <td>464481.0</td>\\n      <td>21518.0</td>\\n      <td>94765.0</td>\\n      <td>279836.0</td>\\n      <td>180036.0</td>\\n      <td>208193.0</td>\\n      <td>19630.0</td>\\n      <td>12374.0</td>\\n      <td>374760.0</td>\\n      <td>135838.0</td>\\n      <td>264574.0</td>\\n      <td>18449.0</td>\\n      <td>33558.0</td>\\n      <td>12474.0</td>\\n      <td>16233.0</td>\\n      <td>60798.0</td>\\n      <td>62037.0</td>\\n      <td>187501.0</td>\\n      <td>19481.0</td>\\n      <td>48560.0</td>\\n      <td>175414.0</td>\\n      <td>89707.0</td>\\n      <td>30704.0</td>\\n      <td>34246.0</td>\\n      <td>246651.0</td>\\n      <td>129409.0</td>\\n      <td>144737.0</td>\\n      <td>53304.0</td>\\n      <td>38291.0</td>\\n      <td>63383.0</td>\\n      <td>163990.0</td>\\n      <td>240485.0</td>\\n      <td>276924.0</td>\\n      <td>85729.0</td>\\n      <td>57122.0</td>\\n      <td>415997.0</td>\\n      <td>49474.0</td>\\n      <td>42818.0</td>\\n      <td>79109.0</td>\\n      <td>4282892.0</td>\\n      <td>193253.0</td>\\n      <td>222192.0</td>\\n      <td>192320.0</td>\\n      <td>66267.0</td>\\n      <td>450452.0</td>\\n      <td>200491.0</td>\\n      <td>161602.0</td>\\n      <td>348914.0</td>\\n      <td>43039.0</td>\\n      <td>14266.0</td>\\n      <td>435198.0</td>\\n      <td>123821.0</td>\\n      <td>187296.0</td>\\n      <td>150184.0</td>\\n      <td>354513.0</td>\\n      <td>32031.0</td>\\n      <td>3806467.0</td>\\n      <td>7293.0</td>\\n      <td>332957.0</td>\\n      <td>256029.0</td>\\n      <td>34940.0</td>\\n      <td>41453.0</td>\\n      <td>168459.0</td>\\n      <td>26466.0</td>\\n      <td>86871.0</td>\\n      <td>670903.0</td>\\n      <td>42008.0</td>\\n      <td>51007.0</td>\\n      <td>46691.0</td>\\n      <td>23098.0</td>\\n      <td>13108.0</td>\\n      <td>247890.0</td>\\n      <td>82358.0</td>\\n      <td>2156.0</td>\\n      <td>8082.0</td>\\n      <td>7143.0</td>\\n      <td>57708.0</td>\\n      <td>347096.0</td>\\n      <td>111883.0</td>\\n      <td>59930.0</td>\\n      <td>97487.0</td>\\n      <td>11622.0</td>\\n      <td>405409.0</td>\\n      <td>101401.0</td>\\n      <td>161332.0</td>\\n      <td>291386.0</td>\\n      <td>1124803.0</td>\\n      <td>90671.0</td>\\n      <td>1890125.0</td>\\n      <td>136905.0</td>\\n      <td>3400.0</td>\\n      <td>15521.0</td>\\n      <td>582507.0</td>\\n      <td>102860.0</td>\\n      <td>1.0</td>\\n      <td>7635.0</td>\\n      <td>64766.0</td>\\n      <td>1182490.0</td>\\n      <td>429.0</td>\\n      <td>188454.0</td>\\n      <td>247631.0</td>\\n      <td>3316642.0</td>\\n      <td>164127.0</td>\\n      <td>523091.0</td>\\n      <td>129999.0</td>\\n      <td>1992179.0</td>\\n      <td>342631.0</td>\\n      <td>146213.0</td>\\n      <td>2489286.0</td>\\n      <td>434181.0</td>\\n      <td>359492.0</td>\\n      <td>4163.0</td>\\n      <td>161212.0</td>\\n      <td>586190.0</td>\\n      <td>1723860.0</td>\\n      <td>82052.0</td>\\n      <td>152621.0</td>\\n      <td>79325.0</td>\\n      <td>213313.0</td>\\n      <td>178947.0</td>\\n      <td>596240.0</td>\\n      <td>1029699.0</td>\\n      <td>2983549.0</td>\\n      <td>49412.0</td>\\n      <td>565334.0</td>\\n      <td>277550.0</td>\\n      <td>9237.0</td>\\n      <td>546448.0</td>\\n      <td>27074.0</td>\\n      <td>72058.0</td>\\n      <td>179573.0</td>\\n      <td>229506.0</td>\\n      <td>70755.0</td>\\n      <td>73706.0</td>\\n      <td>737969.0</td>\\n      <td>2151974.0</td>\\n      <td>213612.0</td>\\n      <td>652735.0</td>\\n      <td>1693615.0</td>\\n      <td>1323855.0</td>\\n      <td>249594.0</td>\\n      <td>50861.0</td>\\n      <td>277557.0</td>\\n      <td>142324.0</td>\\n      <td>544525.0</td>\\n      <td>3300740.0</td>\\n      <td>62937.0</td>\\n      <td>1353479.0</td>\\n      <td>287114.0</td>\\n      <td>79366.0</td>\\n      <td>9965399.0</td>\\n      <td>161357.0</td>\\n      <td>21021.0</td>\\n      <td>452752.0</td>\\n      <td>98576.0</td>\\n      <td>164987.0</td>\\n      <td>6092.0</td>\\n      <td>82442.0</td>\\n      <td>75547.0</td>\\n      <td>153349.0</td>\\n      <td>18.0</td>\\n      <td>83521.0</td>\\n      <td>36295.0</td>\\n      <td>453840.0</td>\\n      <td>80267.0</td>\\n      <td>933726.0</td>\\n      <td>39866.0</td>\\n      <td>1336351.0</td>\\n      <td>32468.0</td>\\n      <td>69541.0</td>\\n      <td>94230.0</td>\\n      <td>59742.0</td>\\n      <td>36090.0</td>\\n      <td>53058.0</td>\\n      <td>174161.0</td>\\n      <td>31462.0</td>\\n      <td>48131.0</td>\\n      <td>94425.0</td>\\n      <td>723316.0</td>\\n      <td>75817.0</td>\\n      <td>349813.0</td>\\n      <td>66547.0</td>\\n      <td>139931.0</td>\\n      <td>573583.0</td>\\n      <td>88803.0</td>\\n      <td>85144.0</td>\\n      <td>28278.0</td>\\n      <td>55547.0</td>\\n      <td>72431.0</td>\\n      <td>62018.0</td>\\n      <td>48397.0</td>\\n      <td>123720.0</td>\\n      <td>3783.0</td>\\n      <td>160068.0</td>\\n      <td>101064.0</td>\\n      <td>58786.0</td>\\n      <td>24035.0</td>\\n      <td>62486.0</td>\\n      <td>39005.0</td>\\n      <td>348799.0</td>\\n      <td>117191.0</td>\\n      <td>65683.0</td>\\n      <td>33724.0</td>\\n      <td>109698.0</td>\\n      <td>65385.0</td>\\n      <td>47822.0</td>\\n      <td>74570.0</td>\\n      <td>86935.0</td>\\n      <td>32055.0</td>\\n      <td>69878.0</td>\\n      <td>19707.0</td>\\n      <td>93665.0</td>\\n      <td>58643.0</td>\\n      <td>47610.0</td>\\n      <td>110632.0</td>\\n      <td>13761.0</td>\\n      <td>25620.0</td>\\n      <td>160796.0</td>\\n      <td>80711.0</td>\\n      <td>98584.0</td>\\n      <td>51944.0</td>\\n      <td>122518.0</td>\\n      <td>67742.0</td>\\n      <td>34382.0</td>\\n      <td>29024.0</td>\\n      <td>195481.0</td>\\n      <td>43743.0</td>\\n      <td>35302.0</td>\\n      <td>124224.0</td>\\n      <td>37916.0</td>\\n      <td>86041.0</td>\\n      <td>50347.0</td>\\n      <td>1471552.0</td>\\n      <td>100245.0</td>\\n      <td>112450.0</td>\\n      <td>40590.0</td>\\n      <td>264449.0</td>\\n      <td>283619.0</td>\\n      <td>224126.0</td>\\n      <td>375911.0</td>\\n      <td>43143.0</td>\\n      <td>139539.0</td>\\n      <td>186535.0</td>\\n      <td>17362.0</td>\\n      <td>43405.0</td>\\n      <td>64653.0</td>\\n      <td>86823.0</td>\\n      <td>139932.0</td>\\n      <td>633016.0</td>\\n      <td>159222.0</td>\\n      <td>5190154.0</td>\\n      <td>949116.0</td>\\n      <td>285581.0</td>\\n      <td>119251.0</td>\\n      <td>753784.0</td>\\n      <td>64251.0</td>\\n      <td>938027.0</td>\\n      <td>111718.0</td>\\n      <td>131032.0</td>\\n      <td>1038849.0</td>\\n      <td>1028483.0</td>\\n      <td>84952.0</td>\\n      <td>2940239.0</td>\\n      <td>243090.0</td>\\n      <td>205582.0</td>\\n      <td>243596.0</td>\\n      <td>221273.0</td>\\n      <td>210328.0</td>\\n      <td>411981.0</td>\\n      <td>212967.0</td>\\n      <td>807834.0</td>\\n      <td>139958.0</td>\\n      <td>155554.0</td>\\n      <td>971705.0</td>\\n      <td>384711.0</td>\\n      <td>3198685.0</td>\\n      <td>421998.0</td>\\n      <td>117342.0</td>\\n      <td>2130846.0</td>\\n      <td>148755.0</td>\\n      <td>416988.0</td>\\n      <td>437676.0</td>\\n      <td>340610.0</td>\\n      <td>143430.0</td>\\n      <td>1520020.0</td>\\n      <td>178696.0</td>\\n      <td>187616.0</td>\\n      <td>42378.0</td>\\n      <td>262609.0</td>\\n      <td>375819.0</td>\\n      <td>575268.0</td>\\n      <td>739121.0</td>\\n      <td>2804533.0</td>\\n      <td>125754.0</td>\\n      <td>1528887.0</td>\\n      <td>630458.0</td>\\n      <td>126872.0</td>\\n      <td>0.0</td>\\n      <td>253328.0</td>\\n      <td>1194346.0</td>\\n      <td>29971.0</td>\\n      <td>237493.0</td>\\n      <td>24523.0</td>\\n      <td>96211.0</td>\\n      <td>208733.0</td>\\n      <td>337731.0</td>\\n      <td>44626.0</td>\\n      <td>39822.0</td>\\n      <td>52649.0</td>\\n      <td>8501.0</td>\\n      <td>72602.0</td>\\n      <td>19470.0</td>\\n      <td>127275.0</td>\\n      <td>231321.0</td>\\n      <td>31684.0</td>\\n      <td>47501.0</td>\\n      <td>168388.0</td>\\n      <td>30424.0</td>\\n      <td>26573.0</td>\\n      <td>69989.0</td>\\n      <td>25106.0</td>\\n      <td>22470.0</td>\\n      <td>30406.0</td>\\n      <td>25341.0</td>\\n      <td>49775.0</td>\\n      <td>33469.0</td>\\n      <td>12296.0</td>\\n      <td>36480.0</td>\\n      <td>20539.0</td>\\n      <td>18780.0</td>\\n      <td>5485.0</td>\\n      <td>133075.0</td>\\n      <td>42309.0</td>\\n      <td>8425.0</td>\\n      <td>16414.0</td>\\n      <td>24441.0</td>\\n      <td>4507.0</td>\\n      <td>31398.0</td>\\n      <td>68434.0</td>\\n      <td>154876.0</td>\\n      <td>475451.0</td>\\n      <td>43636.0</td>\\n      <td>14120.0</td>\\n      <td>43791.0</td>\\n      <td>11191.0</td>\\n      <td>149344.0</td>\\n      <td>14009.0</td>\\n      <td>16051.0</td>\\n      <td>2168267.0</td>\\n      <td>35348.0</td>\\n      <td>132720.0</td>\\n      <td>750383.0</td>\\n      <td>14510.0</td>\\n      <td>18840.0</td>\\n      <td>63000.0</td>\\n      <td>19213.0</td>\\n      <td>44926.0</td>\\n      <td>17460.0</td>\\n      <td>6734.0</td>\\n      <td>73599.0</td>\\n      <td>40984.0</td>\\n      <td>66867.0</td>\\n      <td>122055.0</td>\\n      <td>58.0</td>\\n      <td>39921.0</td>\\n      <td>149429.0</td>\\n      <td>18037.0</td>\\n      <td>323098.0</td>\\n      <td>343815.0</td>\\n      <td>79519.0</td>\\n      <td>214519.0</td>\\n      <td>613117.0</td>\\n      <td>659436.0</td>\\n      <td>156591.0</td>\\n      <td>80123.0</td>\\n      <td>188416.0</td>\\n      <td>283484.0</td>\\n      <td>201174.0</td>\\n      <td>116054.0</td>\\n      <td>101440.0</td>\\n      <td>56549.0</td>\\n      <td>185850.0</td>\\n      <td>307578.0</td>\\n      <td>125676.0</td>\\n      <td>285075.0</td>\\n      <td>6440443.0</td>\\n      <td>136687.0</td>\\n      <td>101496.0</td>\\n      <td>313650.0</td>\\n      <td>335933.0</td>\\n      <td>272199.0</td>\\n      <td>123519.0</td>\\n      <td>220572.0</td>\\n      <td>354989.0</td>\\n      <td>162465.0</td>\\n      <td>105333.0</td>\\n      <td>318261.0</td>\\n      <td>82025.0</td>\\n      <td>431193.0</td>\\n      <td>2218647.0</td>\\n      <td>22508.0</td>\\n      <td>300429.0</td>\\n      <td>208200.0</td>\\n      <td>215779.0</td>\\n      <td>193706.0</td>\\n      <td>225127.0</td>\\n      <td>152296.0</td>\\n      <td>133074.0</td>\\n      <td>57353.0</td>\\n      <td>72931.0</td>\\n      <td>73243.0</td>\\n      <td>259176.0</td>\\n      <td>152871.0</td>\\n      <td>2226977.0</td>\\n      <td>205629.0</td>\\n      <td>222058.0</td>\\n      <td>282114.0</td>\\n      <td>68701.0</td>\\n      <td>174286.0</td>\\n      <td>285101.0</td>\\n      <td>242570.0</td>\\n      <td>600422.0</td>\\n      <td>126102.0</td>\\n      <td>186318.0</td>\\n      <td>611316.0</td>\\n      <td>287959.0</td>\\n      <td>166547.0</td>\\n      <td>57438.0</td>\\n      <td>244757.0</td>\\n      <td>768898.0</td>\\n      <td>41849.0</td>\\n      <td>80819.0</td>\\n      <td>275811.0</td>\\n      <td>164160.0</td>\\n      <td>50329.0</td>\\n      <td>36390.0</td>\\n      <td>83794.0</td>\\n      <td>722722.0</td>\\n      <td>212125.0</td>\\n      <td>244939.0</td>\\n      <td>512667.0</td>\\n      <td>2223322.0</td>\\n      <td>93332.0</td>\\n      <td>62456.0</td>\\n      <td>619694.0</td>\\n      <td>6659977.0</td>\\n      <td>162954.0</td>\\n      <td>55850.0</td>\\n      <td>641909.0</td>\\n      <td>1211218.0</td>\\n      <td>443311.0</td>\\n      <td>404768.0</td>\\n      <td>85701.0</td>\\n      <td>81364.0</td>\\n      <td>120859.0</td>\\n      <td>35262.0</td>\\n      <td>263128.0</td>\\n      <td>626766.0</td>\\n      <td>228470.0</td>\\n      <td>237965.0</td>\\n      <td>188941.0</td>\\n      <td>1317541.0</td>\\n      <td>883011.0</td>\\n      <td>528963.0</td>\\n      <td>110844.0</td>\\n      <td>505390.0</td>\\n      <td>57793.0</td>\\n      <td>26118.0</td>\\n      <td>5293.0</td>\\n      <td>202749.0</td>\\n      <td>88176.0</td>\\n      <td>57420.0</td>\\n      <td>33902.0</td>\\n      <td>359807.0</td>\\n      <td>7711.0</td>\\n      <td>287472.0</td>\\n      <td>1136305.0</td>\\n      <td>11049348.0</td>\\n      <td>27684.0</td>\\n      <td>594.0</td>\\n      <td>62618.0</td>\\n      <td>321397.0</td>\\n      <td>2091428.0</td>\\n      <td>1410079.0</td>\\n      <td>61546.0</td>\\n      <td>4780.0</td>\\n      <td>52555.0</td>\\n      <td>190543.0</td>\\n      <td>79937.0</td>\\n      <td>169644.0</td>\\n      <td>280614.0</td>\\n      <td>138383.0</td>\\n      <td>30865.0</td>\\n      <td>3800623.0</td>\\n      <td>71081.0</td>\\n      <td>12174.0</td>\\n      <td>87779.0</td>\\n      <td>61679.0</td>\\n      <td>268976.0</td>\\n      <td>277064.0</td>\\n      <td>60261.0</td>\\n      <td>30240.0</td>\\n      <td>15103.0</td>\\n      <td>20103.0</td>\\n      <td>19109.0</td>\\n      <td>3243259.0</td>\\n      <td>7734.0</td>\\n      <td>90950.0</td>\\n      <td>644292.0</td>\\n      <td>62554.0</td>\\n      <td>18616.0</td>\\n      <td>113784.0</td>\\n      <td>322933.0</td>\\n      <td>7557.0</td>\\n      <td>26735.0</td>\\n      <td>36646.0</td>\\n      <td>22299.0</td>\\n      <td>17714.0</td>\\n      <td>55868.0</td>\\n      <td>17917241.0</td>\\n      <td>114433.0</td>\\n      <td>169770.0</td>\\n      <td>235311.0</td>\\n      <td>7270.0</td>\\n      <td>2902371.0</td>\\n      <td>8385.0</td>\\n      <td>47050.0</td>\\n      <td>17883.0</td>\\n      <td>75824.0</td>\\n      <td>44422.0</td>\\n      <td>1087277.0</td>\\n      <td>12036.0</td>\\n      <td>7810026.0</td>\\n      <td>937832.0</td>\\n      <td>189083.0</td>\\n      <td>83790.0</td>\\n      <td>132972.0</td>\\n      <td>95909.0</td>\\n      <td>16564.0</td>\\n      <td>29685.0</td>\\n      <td>3347.0</td>\\n      <td>3245185.0</td>\\n      <td>33342.0</td>\\n      <td>74003.0</td>\\n      <td>164542.0</td>\\n      <td>89155.0</td>\\n      <td>2267474.0</td>\\n      <td>22946.0</td>\\n      <td>74243.0</td>\\n      <td>3858.0</td>\\n      <td>26545.0</td>\\n      <td>185265.0</td>\\n      <td>114966.0</td>\\n      <td>479821.0</td>\\n      <td>578869.0</td>\\n      <td>216440.0</td>\\n      <td>599327.0</td>\\n      <td>447712.0</td>\\n      <td>9786.0</td>\\n      <td>32953.0</td>\\n      <td>34177.0</td>\\n      <td>11314.0</td>\\n      <td>266482.0</td>\\n      <td>25800069.0</td>\\n      <td>218488.0</td>\\n      <td>28236.0</td>\\n      <td>15834.0</td>\\n      <td>1209029.0</td>\\n      <td>23574.0</td>\\n      <td>264864.0</td>\\n      <td>5670121.0</td>\\n      <td>142700.0</td>\\n      <td>121898.0</td>\\n      <td>218402.0</td>\\n      <td>112280.0</td>\\n      <td>87631.0</td>\\n      <td>202617.0</td>\\n      <td>20924.0</td>\\n      <td>347615.0</td>\\n      <td>69898.0</td>\\n      <td>3358.0</td>\\n      <td>28512.0</td>\\n      <td>106479.0</td>\\n      <td>94581.0</td>\\n      <td>5257.0</td>\\n      <td>1475689.0</td>\\n      <td>25343.0</td>\\n      <td>257639.0</td>\\n      <td>694347.0</td>\\n      <td>196945.0</td>\\n      <td>142441.0</td>\\n      <td>668882.0</td>\\n      <td>76587.0</td>\\n      <td>1635.0</td>\\n      <td>2581.0</td>\\n      <td>133035.0</td>\\n      <td>9120.0</td>\\n      <td>189.0</td>\\n      <td>9915.0</td>\\n      <td>161365.0</td>\\n      <td>16001.0</td>\\n      <td>66340.0</td>\\n      <td>294003.0</td>\\n      <td>103268.0</td>\\n      <td>49531.0</td>\\n      <td>177857.0</td>\\n      <td>52430.0</td>\\n      <td>56449.0</td>\\n      <td>376713.0</td>\\n      <td>104872.0</td>\\n      <td>12733.0</td>\\n      <td>66117.0</td>\\n      <td>35546.0</td>\\n      <td>45.0</td>\\n      <td>3121266.0</td>\\n      <td>34003.0</td>\\n      <td>128990.0</td>\\n      <td>29444.0</td>\\n      <td>25475.0</td>\\n      <td>18785.0</td>\\n      <td>193246.0</td>\\n      <td>658333.0</td>\\n      <td>32224.0</td>\\n      <td>1669658.0</td>\\n      <td>3902.0</td>\\n      <td>233161.0</td>\\n      <td>10344.0</td>\\n      <td>882109.0</td>\\n      <td>101050.0</td>\\n      <td>14408.0</td>\\n      <td>30716.0</td>\\n      <td>62969.0</td>\\n      <td>2273958.0</td>\\n      <td>285184.0</td>\\n      <td>38819.0</td>\\n      <td>3063.0</td>\\n      <td>310123.0</td>\\n      <td>332714.0</td>\\n      <td>31531.0</td>\\n      <td>72109.0</td>\\n      <td>3522706.0</td>\\n      <td>56203.0</td>\\n      <td>6215.0</td>\\n      <td>394590.0</td>\\n      <td>121206.0</td>\\n      <td>92814.0</td>\\n      <td>484998.0</td>\\n      <td>100633.0</td>\\n      <td>93756.0</td>\\n      <td>209345.0</td>\\n      <td>1474937.0</td>\\n      <td>33310.0</td>\\n      <td>29027.0</td>\\n      <td>994888.0</td>\\n      <td>22603.0</td>\\n      <td>19721.0</td>\\n      <td>39125.0</td>\\n      <td>69937.0</td>\\n      <td>51046.0</td>\\n      <td>2951.0</td>\\n      <td>68871.0</td>\\n      <td>383767.0</td>\\n      <td>52411.0</td>\\n      <td>179995.0</td>\\n      <td>20391.0</td>\\n      <td>50179.0</td>\\n      <td>42483.0</td>\\n      <td>262866.0</td>\\n      <td>25466.0</td>\\n      <td>13678.0</td>\\n      <td>168433.0</td>\\n      <td>7641.0</td>\\n      <td>110993.0</td>\\n      <td>13722.0</td>\\n      <td>1071992.0</td>\\n      <td>35350.0</td>\\n      <td>640963.0</td>\\n      <td>33169.0</td>\\n      <td>3674.0</td>\\n      <td>3513.0</td>\\n      <td>23368.0</td>\\n      <td>34538.0</td>\\n      <td>11699110.0</td>\\n      <td>815828.0</td>\\n      <td>2135.0</td>\\n      <td>87794.0</td>\\n      <td>2725.0</td>\\n      <td>312110.0</td>\\n      <td>924749.0</td>\\n      <td>5726023.0</td>\\n      <td>36247.0</td>\\n      <td>47667.0</td>\\n      <td>0.0</td>\\n      <td>93959.0</td>\\n      <td>9579.0</td>\\n      <td>150545.0</td>\\n      <td>426197.0</td>\\n      <td>174411.0</td>\\n      <td>746122.0</td>\\n      <td>759643.0</td>\\n      <td>164719.0</td>\\n      <td>41209.0</td>\\n      <td>144319.0</td>\\n      <td>2532189.0</td>\\n      <td>239021.0</td>\\n      <td>20865.0</td>\\n      <td>646777.0</td>\\n      <td>65259.0</td>\\n      <td>197585.0</td>\\n      <td>1880765.0</td>\\n      <td>161105.0</td>\\n      <td>32166.0</td>\\n      <td>209354.0</td>\\n      <td>123270.0</td>\\n      <td>56753.0</td>\\n      <td>90633.0</td>\\n      <td>66614.0</td>\\n      <td>82165.0</td>\\n      <td>16417.0</td>\\n      <td>204077.0</td>\\n      <td>809525.0</td>\\n      <td>58081.0</td>\\n      <td>500.0</td>\\n      <td>1592938.0</td>\\n      <td>44049.0</td>\\n      <td>25523.0</td>\\n      <td>19999.0</td>\\n      <td>26076.0</td>\\n      <td>206797.0</td>\\n      <td>44758.0</td>\\n      <td>20473.0</td>\\n      <td>51659.0</td>\\n      <td>43513.0</td>\\n      <td>4149.0</td>\\n      <td>4251.0</td>\\n      <td>8521328.0</td>\\n      <td>164025.0</td>\\n      <td>102981.0</td>\\n      <td>68414.0</td>\\n      <td>284576.0</td>\\n      <td>286155.0</td>\\n      <td>61944.0</td>\\n      <td>27275.0</td>\\n      <td>4826166.0</td>\\n      <td>240056.0</td>\\n      <td>984847.0</td>\\n      <td>3419.0</td>\\n      <td>1257629.0</td>\\n      <td>27348.0</td>\\n      <td>33126.0</td>\\n      <td>13374.0</td>\\n      <td>241469.0</td>\\n      <td>3824.0</td>\\n      <td>41190.0</td>\\n      <td>4692.0</td>\\n      <td>17799.0</td>\\n      <td>15179.0</td>\\n      <td>13143.0</td>\\n      <td>34031.0</td>\\n      <td>2043.0</td>\\n      <td>47994.0</td>\\n      <td>37221.0</td>\\n      <td>28622.0</td>\\n      <td>85623.0</td>\\n      <td>11404.0</td>\\n      <td>118864.0</td>\\n      <td>419.0</td>\\n      <td>275638.0</td>\\n      <td>266059.0</td>\\n      <td>868987.0</td>\\n      <td>33666.0</td>\\n      <td>28694.0</td>\\n      <td>92469.0</td>\\n      <td>48466.0</td>\\n      <td>962686.0</td>\\n      <td>154212.0</td>\\n      <td>5460.0</td>\\n      <td>198473.0</td>\\n      <td>19628.0</td>\\n      <td>84747.0</td>\\n      <td>50979.0</td>\\n      <td>67475.0</td>\\n      <td>44981.0</td>\\n      <td>166403.0</td>\\n      <td>27498.0</td>\\n      <td>120397.0</td>\\n      <td>79329.0</td>\\n      <td>119003.0</td>\\n      <td>19007.0</td>\\n      <td>30591.0</td>\\n      <td>225846.0</td>\\n      <td>867810.0</td>\\n      <td>1317478.0</td>\\n      <td>25877.0</td>\\n      <td>60776.0</td>\\n      <td>14382.0</td>\\n      <td>9208.0</td>\\n      <td>305664.0</td>\\n      <td>22979.0</td>\\n      <td>185817.0</td>\\n      <td>29378.0</td>\\n      <td>84463.0</td>\\n      <td>52432.0</td>\\n      <td>34131.0</td>\\n      <td>4918840.0</td>\\n      <td>31079.0</td>\\n      <td>18255.0</td>\\n      <td>211799.0</td>\\n      <td>38897.0</td>\\n      <td>72494.0</td>\\n      <td>140373.0</td>\\n      <td>72137.0</td>\\n      <td>259732.0</td>\\n      <td>111000.0</td>\\n      <td>90755.0</td>\\n      <td>27509.0</td>\\n      <td>59737.0</td>\\n      <td>61805.0</td>\\n      <td>64294.0</td>\\n      <td>48745.0</td>\\n      <td>146999.0</td>\\n      <td>83907.0</td>\\n      <td>372210.0</td>\\n      <td>294127.0</td>\\n      <td>491798.0</td>\\n      <td>1219485.0</td>\\n      <td>225455.0</td>\\n      <td>2473.0</td>\\n      <td>87578.0</td>\\n      <td>143912.0</td>\\n      <td>179763.0</td>\\n      <td>55109.0</td>\\n      <td>35182.0</td>\\n      <td>14734.0</td>\\n      <td>26737.0</td>\\n      <td>85167.0</td>\\n      <td>33422.0</td>\\n      <td>1539770.0</td>\\n      <td>71420.0</td>\\n      <td>24015.0</td>\\n      <td>306493.0</td>\\n      <td>25421.0</td>\\n      <td>132413.0</td>\\n      <td>422883.0</td>\\n      <td>82117.0</td>\\n      <td>17641.0</td>\\n      <td>144524.0</td>\\n      <td>21107.0</td>\\n      <td>386653.0</td>\\n      <td>23417.0</td>\\n      <td>48379.0</td>\\n      <td>542771.0</td>\\n      <td>929844.0</td>\\n      <td>72607.0</td>\\n      <td>33505.0</td>\\n      <td>8993.0</td>\\n      <td>69186.0</td>\\n      <td>77763.0</td>\\n      <td>99596.0</td>\\n      <td>56696.0</td>\\n      <td>152667.0</td>\\n      <td>205673.0</td>\\n      <td>19140.0</td>\\n      <td>472117.0</td>\\n      <td>56649.0</td>\\n      <td>121492.0</td>\\n      <td>170895.0</td>\\n      <td>2814968.0</td>\\n      <td>68452.0</td>\\n      <td>123468.0</td>\\n      <td>13341.0</td>\\n      <td>88029.0</td>\\n      <td>980160.0</td>\\n      <td>281048.0</td>\\n      <td>432119.0</td>\\n      <td>31344.0</td>\\n      <td>333773.0</td>\\n      <td>81452.0</td>\\n      <td>85827.0</td>\\n      <td>68772.0</td>\\n      <td>210653.0</td>\\n      <td>108379.0</td>\\n      <td>129166.0</td>\\n      <td>457127.0</td>\\n      <td>465553.0</td>\\n      <td>82476.0</td>\\n      <td>388170.0</td>\\n      <td>21407.0</td>\\n      <td>96811.0</td>\\n      <td>101889.0</td>\\n      <td>87.0</td>\\n      <td>1421057.0</td>\\n      <td>116029.0</td>\\n      <td>172164.0</td>\\n      <td>73814.0</td>\\n      <td>62544.0</td>\\n      <td>39450.0</td>\\n      <td>133658.0</td>\\n      <td>117419.0</td>\\n      <td>69740.0</td>\\n      <td>117750.0</td>\\n      <td>160532.0</td>\\n      <td>51349.0</td>\\n      <td>1098908.0</td>\\n      <td>436779.0</td>\\n      <td>52081.0</td>\\n      <td>918994.0</td>\\n      <td>4561.0</td>\\n      <td>165015.0</td>\\n      <td>260112.0</td>\\n      <td>8575.0</td>\\n      <td>948472.0</td>\\n      <td>4423.0</td>\\n      <td>608096.0</td>\\n      <td>113604.0</td>\\n      <td>91307.0</td>\\n      <td>20386.0</td>\\n      <td>5766070.0</td>\\n      <td>287863.0</td>\\n      <td>127934.0</td>\\n      <td>39505.0</td>\\n      <td>132875.0</td>\\n      <td>14401.0</td>\\n      <td>94899.0</td>\\n      <td>192817.0</td>\\n      <td>26204.0</td>\\n      <td>24065.0</td>\\n      <td>2231739.0</td>\\n      <td>8445.0</td>\\n      <td>284205.0</td>\\n      <td>14162.0</td>\\n      <td>2131727.0</td>\\n      <td>1797172.0</td>\\n      <td>60216.0</td>\\n      <td>333999.0</td>\\n      <td>9352.0</td>\\n      <td>2841.0</td>\\n      <td>236519.0</td>\\n      <td>323420.0</td>\\n      <td>232149.0</td>\\n      <td>2621530.0</td>\\n      <td>34916.0</td>\\n      <td>348630.0</td>\\n      <td>62635.0</td>\\n      <td>11001.0</td>\\n      <td>57181.0</td>\\n      <td>274383.0</td>\\n      <td>6850.0</td>\\n      <td>12856.0</td>\\n      <td>10873.0</td>\\n      <td>121344.0</td>\\n      <td>17305.0</td>\\n      <td>41573.0</td>\\n      <td>55247.0</td>\\n      <td>40330.0</td>\\n      <td>70712.0</td>\\n      <td>33114.0</td>\\n      <td>137681.0</td>\\n      <td>83481.0</td>\\n      <td>145201.0</td>\\n      <td>596202.0</td>\\n      <td>22257.0</td>\\n      <td>43609.0</td>\\n      <td>120181.0</td>\\n      <td>91890.0</td>\\n      <td>96900.0</td>\\n      <td>46671.0</td>\\n      <td>43854.0</td>\\n      <td>133125.0</td>\\n      <td>96861.0</td>\\n      <td>94648.0</td>\\n      <td>397155.0</td>\\n      <td>37463.0</td>\\n      <td>28591.0</td>\\n      <td>33538.0</td>\\n      <td>137606.0</td>\\n      <td>14817.0</td>\\n      <td>12215.0</td>\\n      <td>19230.0</td>\\n      <td>66453.0</td>\\n      <td>170124.0</td>\\n      <td>149303.0</td>\\n      <td>81419.0</td>\\n      <td>12525.0</td>\\n      <td>17189.0</td>\\n      <td>21157.0</td>\\n      <td>35469.0</td>\\n      <td>13327.0</td>\\n      <td>12971.0</td>\\n      <td>2.0</td>\\n      <td>42977.0</td>\\n      <td>110930.0</td>\\n      <td>5822.0</td>\\n      <td>34268.0</td>\\n      <td>9262.0</td>\\n      <td>209760.0</td>\\n      <td>56347.0</td>\\n      <td>90479.0</td>\\n      <td>54308.0</td>\\n      <td>259152.0</td>\\n      <td>51950.0</td>\\n      <td>2420279.0</td>\\n      <td>59112.0</td>\\n      <td>61579.0</td>\\n      <td>369476.0</td>\\n      <td>343095.0</td>\\n      <td>183887.0</td>\\n      <td>290859.0</td>\\n      <td>87046.0</td>\\n      <td>2620891.0</td>\\n      <td>730828.0</td>\\n      <td>138678.0</td>\\n      <td>176843.0</td>\\n      <td>214030.0</td>\\n      <td>619986.0</td>\\n      <td>28457.0</td>\\n      <td>747209.0</td>\\n      <td>68996.0</td>\\n      <td>317064.0</td>\\n      <td>157303.0</td>\\n      <td>116358.0</td>\\n      <td>100807.0</td>\\n      <td>39277.0</td>\\n      <td>119920.0</td>\\n      <td>487228.0</td>\\n      <td>150961.0</td>\\n      <td>1106455.0</td>\\n      <td>153170.0</td>\\n      <td>742020.0</td>\\n      <td>95657.0</td>\\n      <td>123611.0</td>\\n      <td>145478.0</td>\\n      <td>450472.0</td>\\n      <td>801017.0</td>\\n      <td>281641.0</td>\\n      <td>94182.0</td>\\n      <td>43592.0</td>\\n      <td>8041732.0</td>\\n      <td>209761.0</td>\\n      <td>293602.0</td>\\n      <td>185377.0</td>\\n      <td>1301363.0</td>\\n      <td>468499.0</td>\\n      <td>35655.0</td>\\n      <td>206737.0</td>\\n      <td>156924.0</td>\\n      <td>418135.0</td>\\n      <td>58253.0</td>\\n      <td>1609270.0</td>\\n      <td>70136.0</td>\\n      <td>922796.0</td>\\n      <td>58013.0</td>\\n      <td>317940.0</td>\\n      <td>73100.0</td>\\n      <td>317723.0</td>\\n      <td>757605.0</td>\\n      <td>383747.0</td>\\n      <td>97376.0</td>\\n      <td>204844.0</td>\\n      <td>278999.0</td>\\n      <td>90640.0</td>\\n      <td>97950.0</td>\\n      <td>694675.0</td>\\n      <td>54702.0</td>\\n      <td>852759.0</td>\\n      <td>2489173.0</td>\\n      <td>364916.0</td>\\n      <td>145641.0</td>\\n      <td>1252300.0</td>\\n      <td>345113.0</td>\\n      <td>223981.0</td>\\n      <td>39923.0</td>\\n      <td>213744.0</td>\\n      <td>62716.0</td>\\n      <td>50224.0</td>\\n      <td>22033.0</td>\\n      <td>288212.0</td>\\n      <td>49115.0</td>\\n      <td>13325.0</td>\\n      <td>26067.0</td>\\n      <td>396680.0</td>\\n      <td>58949.0</td>\\n      <td>346156.0</td>\\n      <td>6775.0</td>\\n      <td>110820.0</td>\\n      <td>23255.0</td>\\n      <td>141098.0</td>\\n      <td>34359.0</td>\\n      <td>151156.0</td>\\n      <td>158919.0</td>\\n      <td>105421.0</td>\\n      <td>37.0</td>\\n      <td>41244.0</td>\\n      <td>27239.0</td>\\n    </tr>\\n    <tr>\\n      <th>deaths</th>\\n      <td>5683.0</td>\\n      <td>12446.0</td>\\n      <td>2035.0</td>\\n      <td>2687.0</td>\\n      <td>3855.0</td>\\n      <td>3163.0</td>\\n      <td>8091.0</td>\\n      <td>10868.0</td>\\n      <td>9840.0</td>\\n      <td>2815.0</td>\\n      <td>4775.0</td>\\n      <td>2902.0</td>\\n      <td>2961.0</td>\\n      <td>2329.0</td>\\n      <td>1371.0</td>\\n      <td>2111.0</td>\\n      <td>5400.0</td>\\n      <td>2246.0</td>\\n      <td>651.0</td>\\n      <td>5106.0</td>\\n      <td>4377.0</td>\\n      <td>4765.0</td>\\n      <td>7363.0</td>\\n      <td>5045.0</td>\\n      <td>4877.0</td>\\n      <td>9726.0</td>\\n      <td>4629.0</td>\\n      <td>9532.0</td>\\n      <td>1855.0</td>\\n      <td>5474.0</td>\\n      <td>1110.0</td>\\n      <td>2980.0</td>\\n      <td>5737.0</td>\\n      <td>1088.0</td>\\n      <td>5356.0</td>\\n      <td>2831.0</td>\\n      <td>73355.0</td>\\n      <td>838.0</td>\\n      <td>6639.0</td>\\n      <td>3694.0</td>\\n      <td>13105.0</td>\\n      <td>4791.0</td>\\n      <td>5735.0</td>\\n      <td>3649.0</td>\\n      <td>15955.0</td>\\n      <td>4058.0</td>\\n      <td>6068.0</td>\\n      <td>8820.0</td>\\n      <td>60927.0</td>\\n      <td>1603.0</td>\\n      <td>37490.0</td>\\n      <td>6275.0</td>\\n      <td>992.0</td>\\n      <td>3010.0</td>\\n      <td>2171.0</td>\\n      <td>3436.0</td>\\n      <td>481.0</td>\\n      <td>11738.0</td>\\n      <td>6712.0</td>\\n      <td>4038.0</td>\\n      <td>6191.0</td>\\n      <td>19340.0</td>\\n      <td>23215.0</td>\\n      <td>15674.0</td>\\n      <td>2909.0</td>\\n      <td>2684.0</td>\\n      <td>2715.0</td>\\n      <td>0.0</td>\\n      <td>0.0</td>\\n      <td>7992.0</td>\\n      <td>364.0</td>\\n      <td>0.0</td>\\n      <td>0.0</td>\\n      <td>38.0</td>\\n      <td>2176.0</td>\\n      <td>0.0</td>\\n      <td>300.0</td>\\n      <td>673.0</td>\\n      <td>0.0</td>\\n      <td>30.0</td>\\n      <td>81.0</td>\\n      <td>0.0</td>\\n      <td>795.0</td>\\n      <td>0.0</td>\\n      <td>48.0</td>\\n      <td>0.0</td>\\n      <td>0.0</td>\\n      <td>64.0</td>\\n      <td>0.0</td>\\n      <td>0.0</td>\\n      <td>119.0</td>\\n      <td>23.0</td>\\n      <td>130.0</td>\\n      <td>0.0</td>\\n      <td>314.0</td>\\n      <td>32439.0</td>\\n      <td>12646.0</td>\\n      <td>31510.0</td>\\n      <td>11344.0</td>\\n      <td>4589.0</td>\\n      <td>410.0</td>\\n      <td>3091.0</td>\\n      <td>608930.0</td>\\n      <td>42176.0</td>\\n      <td>46741.0</td>\\n      <td>124265.0</td>\\n      <td>40119.0</td>\\n      <td>11565.0</td>\\n      <td>107.0</td>\\n      <td>16745.0</td>\\n      <td>62144.0</td>\\n      <td>1978.0</td>\\n      <td>1835.0</td>\\n      <td>2229.0</td>\\n      <td>18733.0</td>\\n      <td>4050.0</td>\\n      <td>1225.0</td>\\n      <td>37.0</td>\\n      <td>2536.0</td>\\n      <td>3198.0</td>\\n      <td>1054.0</td>\\n      <td>2130.0</td>\\n      <td>2785.0</td>\\n      <td>1621.0</td>\\n      <td>3449.0</td>\\n      <td>981.0</td>\\n      <td>7674.0</td>\\n      <td>3852.0</td>\\n      <td>8239.0</td>\\n      <td>2659.0</td>\\n      <td>696.0</td>\\n      <td>1032.0</td>\\n      <td>1192.0</td>\\n      <td>5465.0</td>\\n      <td>1056.0</td>\\n      <td>1275.0</td>\\n      <td>10534.0</td>\\n      <td>562.0</td>\\n      <td>2830.0</td>\\n      <td>924.0</td>\\n      <td>4934.0</td>\\n      <td>1752.0</td>\\n      <td>6092.0</td>\\n      <td>480.0</td>\\n      <td>851.0</td>\\n      <td>15478.0</td>\\n      <td>1246.0</td>\\n      <td>534.0</td>\\n      <td>3578.0</td>\\n      <td>2683.0</td>\\n      <td>3367.0</td>\\n      <td>4137.0</td>\\n      <td>575.0</td>\\n      <td>4403.0</td>\\n      <td>806.0</td>\\n      <td>519.0</td>\\n      <td>2440.0</td>\\n      <td>8827.0</td>\\n      <td>272.0</td>\\n      <td>1104.0</td>\\n      <td>2268.0</td>\\n      <td>2805.0</td>\\n      <td>1395.0</td>\\n      <td>230.0</td>\\n      <td>2382.0</td>\\n      <td>394.0</td>\\n      <td>3780.0</td>\\n      <td>1236.0</td>\\n      <td>5198.0</td>\\n      <td>664.0</td>\\n      <td>34532.0</td>\\n      <td>3558.0</td>\\n      <td>5689.0</td>\\n      <td>293.0</td>\\n      <td>253.0</td>\\n      <td>12644.0</td>\\n      <td>2901.0</td>\\n      <td>2084.0</td>\\n      <td>1592.0</td>\\n      <td>2295.0</td>\\n      <td>7480.0</td>\\n      <td>6.0</td>\\n      <td>735.0</td>\\n      <td>21661.0</td>\\n      <td>5006.0</td>\\n      <td>46.0</td>\\n      <td>4832.0</td>\\n      <td>75187.0</td>\\n      <td>0.0</td>\\n      <td>2343.0</td>\\n      <td>7094.0</td>\\n      <td>2172.0</td>\\n      <td>955.0</td>\\n      <td>40409.0</td>\\n      <td>154.0</td>\\n      <td>700.0</td>\\n      <td>66630.0</td>\\n      <td>811.0</td>\\n      <td>1538.0</td>\\n      <td>56509.0</td>\\n      <td>2197.0</td>\\n      <td>62450.0</td>\\n      <td>14307.0</td>\\n      <td>1970.0</td>\\n      <td>238.0</td>\\n      <td>1331978.0</td>\\n      <td>11722.0</td>\\n      <td>19948.0</td>\\n      <td>445.0</td>\\n      <td>3037.0</td>\\n      <td>24119.0</td>\\n      <td>2.0</td>\\n      <td>464.0</td>\\n      <td>15445.0</td>\\n      <td>2818.0</td>\\n      <td>1854.0</td>\\n      <td>225712.0</td>\\n      <td>9737.0</td>\\n      <td>7.0</td>\\n      <td>233000.0</td>\\n      <td>77308.0</td>\\n      <td>2292.0</td>\\n      <td>171282.0</td>\\n      <td>167372.0</td>\\n      <td>23513.0</td>\\n      <td>72833.0</td>\\n      <td>5318.0</td>\\n      <td>33271.0</td>\\n      <td>19782.0</td>\\n      <td>74379.0</td>\\n      <td>4073.0</td>\\n      <td>5204.0</td>\\n      <td>0.0</td>\\n      <td>258.0</td>\\n      <td>12578.0</td>\\n      <td>19777.0</td>\\n      <td>59545.0</td>\\n      <td>2754.0</td>\\n      <td>1991.0</td>\\n      <td>45.0</td>\\n      <td>52701.0</td>\\n      <td>1072.0</td>\\n      <td>4.0</td>\\n      <td>27823.0</td>\\n      <td>12435.0</td>\\n      <td>1549.0</td>\\n      <td>55585.0</td>\\n      <td>2123.0</td>\\n      <td>93253.0</td>\\n      <td>0.0</td>\\n      <td>8.0</td>\\n      <td>211.0</td>\\n      <td>21942.0</td>\\n      <td>8883.0</td>\\n      <td>4936.0</td>\\n      <td>88.0</td>\\n      <td>293.0</td>\\n      <td>145.0</td>\\n      <td>156.0</td>\\n      <td>559.0</td>\\n      <td>0.0</td>\\n      <td>1034.0</td>\\n      <td>106971.0</td>\\n      <td>0.0</td>\\n      <td>17515.0</td>\\n      <td>2520.0</td>\\n      <td>47096.0</td>\\n      <td>744.0</td>\\n      <td>514.0</td>\\n      <td>1482.0</td>\\n      <td>31.0</td>\\n      <td>276.0</td>\\n      <td>1673.0</td>\\n      <td>0.0</td>\\n      <td>629.0</td>\\n      <td>0.0</td>\\n      <td>69552.0</td>\\n      <td>29.0</td>\\n      <td>945.0</td>\\n      <td>877.0</td>\\n      <td>0.0</td>\\n      <td>12264.0</td>\\n      <td>109.0</td>\\n      <td>47.0</td>\\n      <td>3089.0</td>\\n      <td>4909.0</td>\\n      <td>23.0</td>\\n      <td>664.0</td>\\n      <td>1306.0</td>\\n      <td>3624.0</td>\\n      <td>11781.0</td>\\n      <td>1617.0</td>\\n      <td>360.0</td>\\n      <td>302.0</td>\\n      <td>167.0</td>\\n      <td>573.0</td>\\n      <td>871.0</td>\\n      <td>14899.0</td>\\n      <td>72.0</td>\\n      <td>543.0</td>\\n      <td>2131.0</td>\\n      <td>485.0</td>\\n      <td>0.0</td>\\n      <td>0.0</td>\\n      <td>191.0</td>\\n      <td>918.0</td>\\n      <td>890.0</td>\\n      <td>35.0</td>\\n      <td>389.0</td>\\n      <td>40293.0</td>\\n      <td>248.0</td>\\n      <td>353607.0</td>\\n      <td>354064.0</td>\\n      <td>36572.0</td>\\n      <td>46283.0</td>\\n      <td>276756.0</td>\\n      <td>30195.0</td>\\n      <td>17274.0</td>\\n      <td>159.0</td>\\n      <td>4953.0</td>\\n      <td>25851.0</td>\\n      <td>70945.0</td>\\n      <td>48853.0</td>\\n      <td>15.0</td>\\n      <td>146395.0</td>\\n      <td>11382.0</td>\\n      <td>3239.0</td>\\n      <td>19147.0</td>\\n      <td>2063.0</td>\\n      <td>53266.0</td>\\n      <td>254355.0</td>\\n      <td>2698.0</td>\\n      <td>29562.0</td>\\n      <td>20136.0</td>\\n      <td>20717.0</td>\\n      <td>42064.0</td>\\n      <td>10434.0</td>\\n      <td>5463.0</td>\\n      <td>1517.0</td>\\n      <td>75627.0</td>\\n      <td>41943.0</td>\\n      <td>5223.0</td>\\n      <td>550.0</td>\\n      <td>7617.0</td>\\n      <td>2282.0</td>\\n      <td>1077.0</td>\\n      <td>2287.0</td>\\n      <td>1426.0</td>\\n      <td>2228.0</td>\\n      <td>8358.0</td>\\n      <td>23965.0</td>\\n      <td>17680.0</td>\\n      <td>124091.0</td>\\n      <td>1623.0</td>\\n      <td>19116.0</td>\\n      <td>12550.0</td>\\n      <td>1759.0</td>\\n      <td>2070.0</td>\\n      <td>31735.0</td>\\n      <td>89851.0</td>\\n      <td>14949.0</td>\\n      <td>1721.0</td>\\n      <td>1591.0</td>\\n      <td>3594.0</td>\\n      <td>59210.0</td>\\n      <td>46680.0</td>\\n      <td>25117.0</td>\\n      <td>581489.0</td>\\n      <td>3966.0</td>\\n      <td>6671.0</td>\\n      <td>19541.0</td>\\n      <td>4880.0</td>\\n      <td>84857.0</td>\\n      <td>30777.0</td>\\n      <td>263141.0</td>\\n      <td>37387.0</td>\\n      <td>133666.0</td>\\n      <td>95209.0</td>\\n      <td>7734.0</td>\\n      <td>13439.0</td>\\n      <td>54852.0</td>\\n      <td>36397.0</td>\\n      <td>12541.0</td>\\n      <td>50361.0</td>\\n      <td>13610.0</td>\\n      <td>13053.0</td>\\n      <td>2309.0</td>\\n      <td>5035.0</td>\\n      <td>45.0</td>\\n      <td>48354.0</td>\\n      <td>1829.0</td>\\n      <td>5082.0</td>\\n      <td>4050.0</td>\\n      <td>6130.0</td>\\n      <td>1007.0</td>\\n      <td>2729.0</td>\\n      <td>1033.0</td>\\n      <td>11835.0</td>\\n      <td>1509.0</td>\\n      <td>9360.0</td>\\n      <td>18077.0</td>\\n      <td>4196.0</td>\\n      <td>2429.0</td>\\n      <td>30524.0</td>\\n      <td>3577.0</td>\\n      <td>2139.0</td>\\n      <td>4950.0</td>\\n      <td>2568.0</td>\\n      <td>5832.0</td>\\n      <td>2348.0</td>\\n      <td>9169.0</td>\\n      <td>1931.0</td>\\n      <td>2327.0</td>\\n      <td>3460.0</td>\\n      <td>15020.0</td>\\n      <td>3750.0</td>\\n      <td>1788.0</td>\\n      <td>28643.0</td>\\n      <td>317.0</td>\\n      <td>3684.0</td>\\n      <td>18478.0</td>\\n      <td>8322.0</td>\\n      <td>642.0</td>\\n      <td>32311.0</td>\\n      <td>1635.0</td>\\n      <td>88649.0</td>\\n      <td>10205.0</td>\\n      <td>7415.0</td>\\n      <td>10418.0</td>\\n      <td>2488.0</td>\\n      <td>9304.0</td>\\n      <td>744.0</td>\\n      <td>4566.0</td>\\n      <td>914.0</td>\\n      <td>1578.0</td>\\n      <td>72278.0</td>\\n      <td>5599.0</td>\\n      <td>4093.0</td>\\n      <td>3837.0</td>\\n      <td>45256.0</td>\\n      <td>14573.0</td>\\n      <td>8294.0</td>\\n      <td>344.0</td>\\n      <td>3809.0</td>\\n      <td>1898.0</td>\\n      <td>5422.0</td>\\n      <td>1212.0</td>\\n      <td>3757.0</td>\\n      <td>9597.0</td>\\n      <td>10412.0</td>\\n      <td>8935.0</td>\\n      <td>2561.0</td>\\n      <td>119514.0</td>\\n      <td>3032.0</td>\\n      <td>293.0</td>\\n      <td>15373.0</td>\\n      <td>8400.0</td>\\n      <td>3791.0</td>\\n      <td>4266.0</td>\\n      <td>80659.0</td>\\n      <td>13679.0</td>\\n      <td>30014.0</td>\\n      <td>8717.0</td>\\n      <td>2719.0</td>\\n      <td>4354.0</td>\\n      <td>2731.0</td>\\n      <td>1205.0</td>\\n      <td>19088.0</td>\\n      <td>15889.0</td>\\n      <td>1277.0</td>\\n      <td>6856.0</td>\\n      <td>762.0</td>\\n      <td>3596.0</td>\\n      <td>4535.0</td>\\n      <td>5299.0</td>\\n      <td>3693.0</td>\\n      <td>2009.0</td>\\n      <td>3527.0</td>\\n      <td>1339.0</td>\\n      <td>12020.0</td>\\n      <td>6791.0</td>\\n      <td>3470.0</td>\\n      <td>1296.0</td>\\n      <td>629.0</td>\\n      <td>15018.0</td>\\n      <td>2542.0</td>\\n      <td>2532.0</td>\\n      <td>2183.0</td>\\n      <td>1473.0</td>\\n      <td>3090.0</td>\\n      <td>1127.0</td>\\n      <td>2402.0</td>\\n      <td>265.0</td>\\n      <td>10933.0</td>\\n      <td>8921.0</td>\\n      <td>1042.0</td>\\n      <td>708.0</td>\\n      <td>2132.0</td>\\n      <td>28706.0</td>\\n      <td>14666.0</td>\\n      <td>5036.0</td>\\n      <td>2391.0</td>\\n      <td>10482.0</td>\\n      <td>4225.0</td>\\n      <td>2150.0</td>\\n      <td>3716.0</td>\\n      <td>2082.0</td>\\n      <td>3881.0</td>\\n      <td>3043.0</td>\\n      <td>4868.0</td>\\n      <td>261.0</td>\\n      <td>1639.0</td>\\n      <td>6763.0</td>\\n      <td>30556.0</td>\\n      <td>7592.0</td>\\n      <td>405.0</td>\\n      <td>2155.0</td>\\n      <td>1679.0</td>\\n      <td>12412.0</td>\\n      <td>6016.0</td>\\n      <td>2332.0</td>\\n      <td>14590.0</td>\\n      <td>1204.0</td>\\n      <td>0.0</td>\\n      <td>2484.0</td>\\n      <td>1751.0</td>\\n      <td>3553.0</td>\\n      <td>7683.0</td>\\n      <td>13289.0</td>\\n      <td>11443.0</td>\\n      <td>7624.0</td>\\n      <td>2448.0</td>\\n      <td>1570.0</td>\\n      <td>17978.0</td>\\n      <td>4916.0</td>\\n      <td>1687.0</td>\\n      <td>3900.0</td>\\n      <td>1012.0</td>\\n      <td>13832.0</td>\\n      <td>6416.0</td>\\n      <td>11641.0</td>\\n      <td>10827.0</td>\\n      <td>862.0</td>\\n      <td>2631.0</td>\\n      <td>5002.0</td>\\n      <td>450.0</td>\\n      <td>1955.0</td>\\n      <td>3485.0</td>\\n      <td>11427.0</td>\\n      <td>5097.0</td>\\n      <td>1026.0</td>\\n      <td>3159.0</td>\\n      <td>6910.0</td>\\n      <td>10424.0</td>\\n      <td>3156.0</td>\\n      <td>21421.0</td>\\n      <td>0.0</td>\\n      <td>37.0</td>\\n      <td>2607.0</td>\\n      <td>6.0</td>\\n      <td>30364.0</td>\\n      <td>241.0</td>\\n      <td>2714.0</td>\\n      <td>124.0</td>\\n      <td>394.0</td>\\n      <td>2820.0</td>\\n      <td>1692.0</td>\\n      <td>254.0</td>\\n      <td>491.0</td>\\n      <td>5842.0</td>\\n      <td>274.0</td>\\n      <td>0.0</td>\\n      <td>0.0</td>\\n      <td>18494.0</td>\\n      <td>627.0</td>\\n      <td>1578.0</td>\\n      <td>0.0</td>\\n      <td>115.0</td>\\n      <td>119.0</td>\\n      <td>910.0</td>\\n      <td>376.0</td>\\n      <td>784.0</td>\\n      <td>818.0</td>\\n      <td>754.0</td>\\n      <td>556.0</td>\\n      <td>786.0</td>\\n      <td>1757.0</td>\\n      <td>8134.0</td>\\n      <td>152.0</td>\\n      <td>423.0</td>\\n      <td>303.0</td>\\n      <td>476.0</td>\\n      <td>639.0</td>\\n      <td>1527.0</td>\\n      <td>6089.0</td>\\n      <td>38.0</td>\\n      <td>1066.0</td>\\n      <td>1755.0</td>\\n      <td>269.0</td>\\n      <td>2656.0</td>\\n      <td>164.0</td>\\n      <td>11173.0</td>\\n      <td>0.0</td>\\n      <td>196.0</td>\\n      <td>1199.0</td>\\n      <td>4235.0</td>\\n      <td>278.0</td>\\n      <td>1328.0</td>\\n      <td>6464.0</td>\\n      <td>317.0</td>\\n      <td>3766.0</td>\\n      <td>52.0</td>\\n      <td>2228.0</td>\\n      <td>2578.0</td>\\n      <td>6748.0</td>\\n      <td>4572.0</td>\\n      <td>1632.0</td>\\n      <td>1620.0</td>\\n      <td>6968.0</td>\\n      <td>7447.0</td>\\n      <td>1268257.0</td>\\n      <td>1182.0</td>\\n      <td>1361.0</td>\\n      <td>1151.0</td>\\n      <td>7866.0</td>\\n      <td>1581.0</td>\\n      <td>140001.0</td>\\n      <td>1702.0</td>\\n      <td>204.0</td>\\n      <td>1969.0</td>\\n      <td>3110.0</td>\\n      <td>2182.0</td>\\n      <td>2055.0</td>\\n      <td>897.0</td>\\n      <td>374.0</td>\\n      <td>2451.0</td>\\n      <td>2182.0</td>\\n      <td>385.0</td>\\n      <td>1192.0</td>\\n      <td>140.0</td>\\n      <td>159.0</td>\\n      <td>1966.0</td>\\n      <td>3935.0</td>\\n      <td>5944.0</td>\\n      <td>2155.0</td>\\n      <td>8576.0</td>\\n      <td>2776.0</td>\\n      <td>1413.0</td>\\n      <td>438.0</td>\\n      <td>79144.0</td>\\n      <td>19426.0</td>\\n      <td>7545.0</td>\\n      <td>4872.0</td>\\n      <td>14547.0</td>\\n      <td>117022.0</td>\\n      <td>1148.0</td>\\n      <td>2377.0</td>\\n      <td>2750.0</td>\\n      <td>1548.0</td>\\n      <td>13050.0</td>\\n      <td>2718.0</td>\\n      <td>32912.0</td>\\n      <td>4131.0</td>\\n      <td>438.0</td>\\n      <td>1515.0</td>\\n      <td>720.0</td>\\n      <td>4768.0</td>\\n      <td>29118.0</td>\\n      <td>6949.0</td>\\n      <td>211.0</td>\\n      <td>1281.0</td>\\n      <td>5825.0</td>\\n      <td>2113.0</td>\\n      <td>5254.0</td>\\n      <td>1052.0</td>\\n      <td>3135.0</td>\\n      <td>14642.0</td>\\n      <td>2878.0</td>\\n      <td>324.0</td>\\n      <td>1707.0</td>\\n      <td>128.0</td>\\n      <td>197.0</td>\\n      <td>0.0</td>\\n      <td>3052.0</td>\\n      <td>1899.0</td>\\n      <td>19040.0</td>\\n      <td>1959.0</td>\\n      <td>14251.0</td>\\n      <td>268.0</td>\\n      <td>20.0</td>\\n      <td>2129.0</td>\\n      <td>44705.0</td>\\n      <td>552.0</td>\\n      <td>3099.0</td>\\n      <td>9908.0</td>\\n      <td>5118.0</td>\\n      <td>33084.0</td>\\n      <td>3817.0</td>\\n      <td>703.0</td>\\n      <td>1531.0</td>\\n      <td>518.0</td>\\n      <td>2497.0</td>\\n      <td>791.0</td>\\n      <td>9928.0</td>\\n      <td>99787.0</td>\\n      <td>8393.0</td>\\n      <td>38307.0</td>\\n      <td>2752.0</td>\\n      <td>1975.0</td>\\n      <td>50646.0</td>\\n      <td>13733.0</td>\\n      <td>189.0</td>\\n      <td>1305.0</td>\\n      <td>12161.0</td>\\n      <td>672.0</td>\\n      <td>2023.0</td>\\n      <td>4043.0</td>\\n      <td>15736.0</td>\\n      <td>2234.0</td>\\n      <td>3228.0</td>\\n      <td>491.0</td>\\n      <td>7604.0</td>\\n      <td>3343.0</td>\\n      <td>7017.0</td>\\n      <td>10453.0</td>\\n      <td>16360.0</td>\\n      <td>4189.0</td>\\n      <td>29198.0</td>\\n      <td>3959.0</td>\\n      <td>14779.0</td>\\n      <td>1129.0</td>\\n      <td>4902.0</td>\\n      <td>1466.0</td>\\n      <td>2637.0</td>\\n      <td>9706.0</td>\\n      <td>9614.0</td>\\n      <td>33038.0</td>\\n      <td>10984.0</td>\\n      <td>6190.0</td>\\n      <td>33403.0</td>\\n      <td>5820.0</td>\\n      <td>15461.0</td>\\n      <td>1462.0</td>\\n      <td>3406.0</td>\\n      <td>1526.0</td>\\n      <td>1132.0</td>\\n      <td>1526.0</td>\\n      <td>3497.0</td>\\n      <td>35241.0</td>\\n      <td>2015.0</td>\\n      <td>5209.0</td>\\n      <td>3640.0</td>\\n      <td>12066.0</td>\\n      <td>82476.0</td>\\n      <td>8504.0</td>\\n      <td>24199.0</td>\\n      <td>198285.0</td>\\n      <td>5753.0</td>\\n      <td>358.0</td>\\n      <td>1436.0</td>\\n      <td>9498.0</td>\\n      <td>5538.0</td>\\n      <td>9696.0</td>\\n      <td>3122.0</td>\\n      <td>8322.0</td>\\n      <td>1073.0</td>\\n      <td>6482.0</td>\\n      <td>1059.0</td>\\n      <td>565.0</td>\\n      <td>3105.0</td>\\n      <td>1647.0</td>\\n      <td>13179.0</td>\\n      <td>1274.0</td>\\n      <td>1288.0</td>\\n      <td>3485.0</td>\\n      <td>2364.0</td>\\n      <td>2822.0</td>\\n      <td>1148.0</td>\\n      <td>3373.0</td>\\n      <td>10483.0</td>\\n      <td>973.0</td>\\n      <td>32234.0</td>\\n      <td>2717.0</td>\\n      <td>1671.0</td>\\n      <td>2003.0</td>\\n      <td>217.0</td>\\n      <td>4428.0</td>\\n      <td>4040.0</td>\\n      <td>88.0</td>\\n      <td>0.0</td>\\n      <td>11525.0</td>\\n      <td>749.0</td>\\n      <td>9256.0</td>\\n      <td>2356.0</td>\\n      <td>481.0</td>\\n      <td>11488.0</td>\\n      <td>744.0</td>\\n      <td>7356.0</td>\\n      <td>2492.0</td>\\n      <td>3292.0</td>\\n      <td>1721.0</td>\\n      <td>684.0</td>\\n      <td>103.0</td>\\n      <td>1799.0</td>\\n      <td>1646.0</td>\\n      <td>384.0</td>\\n      <td>1500.0</td>\\n      <td>21475.0</td>\\n      <td>1327.0</td>\\n      <td>2582.0</td>\\n      <td>859.0</td>\\n      <td>2690.0</td>\\n      <td>857.0</td>\\n      <td>738.0</td>\\n      <td>1796.0</td>\\n      <td>1691.0</td>\\n      <td>1125.0</td>\\n      <td>4972.0</td>\\n      <td>735.0</td>\\n      <td>367.0</td>\\n      <td>685.0</td>\\n      <td>705.0</td>\\n      <td>1532.0</td>\\n      <td>4154.0</td>\\n      <td>1772.0</td>\\n      <td>9176.0</td>\\n      <td>936.0</td>\\n      <td>62.0</td>\\n      <td>1846.0</td>\\n      <td>2035.0</td>\\n      <td>1360.0</td>\\n      <td>11725.0</td>\\n      <td>2288.0</td>\\n      <td>798.0</td>\\n      <td>1817.0</td>\\n      <td>2639.0</td>\\n      <td>229.0</td>\\n      <td>161.0</td>\\n      <td>922.0</td>\\n      <td>2116.0</td>\\n      <td>1053.0</td>\\n      <td>1065.0</td>\\n      <td>1076.0</td>\\n      <td>2523.0</td>\\n      <td>1384.0</td>\\n      <td>1095.0</td>\\n      <td>809.0</td>\\n      <td>867.0</td>\\n      <td>1126.0</td>\\n      <td>1160.0</td>\\n      <td>6924.0</td>\\n      <td>533.0</td>\\n      <td>5579.0</td>\\n      <td>1547.0</td>\\n      <td>770.0</td>\\n      <td>746.0</td>\\n      <td>1790.0</td>\\n      <td>28536.0</td>\\n      <td>3452.0</td>\\n      <td>1071.0</td>\\n      <td>1173.0</td>\\n      <td>706.0</td>\\n      <td>4602.0</td>\\n      <td>1978.0</td>\\n      <td>7149.0</td>\\n      <td>595.0</td>\\n      <td>716.0</td>\\n      <td>515.0</td>\\n      <td>2118.0</td>\\n      <td>1235.0</td>\\n      <td>12592.0</td>\\n      <td>2877.0</td>\\n      <td>162.0</td>\\n      <td>373.0</td>\\n      <td>273.0</td>\\n      <td>4532.0</td>\\n      <td>486.0</td>\\n      <td>57280.0</td>\\n      <td>8495.0</td>\\n      <td>2528.0</td>\\n      <td>393.0</td>\\n      <td>590.0</td>\\n      <td>9016.0</td>\\n      <td>835.0</td>\\n      <td>2361.0</td>\\n      <td>3186.0</td>\\n      <td>8095.0</td>\\n      <td>366.0</td>\\n      <td>843.0</td>\\n      <td>25.0</td>\\n      <td>528.0</td>\\n      <td>11156.0</td>\\n      <td>1594.0</td>\\n      <td>3000.0</td>\\n      <td>935.0</td>\\n      <td>3566.0</td>\\n      <td>2384.0</td>\\n      <td>1260.0</td>\\n      <td>17153.0</td>\\n      <td>54.0</td>\\n      <td>597.0</td>\\n      <td>94.0</td>\\n      <td>0.0</td>\\n      <td>718.0</td>\\n      <td>80.0</td>\\n      <td>1514.0</td>\\n      <td>519.0</td>\\n      <td>890.0</td>\\n      <td>966.0</td>\\n      <td>257.0</td>\\n      <td>81.0</td>\\n      <td>1135.0</td>\\n      <td>635.0</td>\\n      <td>372.0</td>\\n      <td>995.0</td>\\n      <td>190.0</td>\\n      <td>2206.0</td>\\n      <td>89.0</td>\\n      <td>1062.0</td>\\n      <td>1763.0</td>\\n      <td>95.0</td>\\n      <td>760.0</td>\\n      <td>177.0</td>\\n      <td>2505.0</td>\\n      <td>0.0</td>\\n      <td>0.0</td>\\n      <td>2135.0</td>\\n      <td>221.0</td>\\n      <td>3671.0</td>\\n      <td>2188.0</td>\\n      <td>1120.0</td>\\n      <td>678.0</td>\\n      <td>1363.0</td>\\n      <td>184.0</td>\\n      <td>1188.0</td>\\n      <td>272.0</td>\\n      <td>0.0</td>\\n      <td>74.0</td>\\n      <td>0.0</td>\\n      <td>729.0</td>\\n      <td>1695.0</td>\\n      <td>107.0</td>\\n      <td>124.0</td>\\n      <td>667.0</td>\\n      <td>651.0</td>\\n      <td>163.0</td>\\n      <td>39128.0</td>\\n      <td>700.0</td>\\n      <td>373.0</td>\\n      <td>0.0</td>\\n      <td>692.0</td>\\n      <td>178.0</td>\\n      <td>3604.0</td>\\n      <td>84.0</td>\\n      <td>154.0</td>\\n      <td>0.0</td>\\n      <td>5796.0</td>\\n      <td>249.0</td>\\n      <td>608.0</td>\\n      <td>962.0</td>\\n      <td>265.0</td>\\n      <td>323.0</td>\\n      <td>0.0</td>\\n      <td>1155.0</td>\\n      <td>72.0</td>\\n      <td>586.0</td>\\n      <td>1467.0</td>\\n      <td>198.0</td>\\n      <td>1097.0</td>\\n      <td>1525.0</td>\\n      <td>372.0</td>\\n      <td>0.0</td>\\n      <td>0.0</td>\\n      <td>92.0</td>\\n      <td>1516.0</td>\\n      <td>116.0</td>\\n      <td>545.0</td>\\n      <td>155.0</td>\\n      <td>3836.0</td>\\n      <td>374.0</td>\\n      <td>126.0</td>\\n      <td>1818.0</td>\\n      <td>678.0</td>\\n      <td>0.0</td>\\n      <td>862.0</td>\\n      <td>2985.0</td>\\n      <td>418.0</td>\\n      <td>20512.0</td>\\n      <td>1606.0</td>\\n      <td>12994.0</td>\\n      <td>0.0</td>\\n      <td>461.0</td>\\n      <td>44.0</td>\\n      <td>278.0</td>\\n      <td>274.0</td>\\n      <td>250.0</td>\\n      <td>896.0</td>\\n      <td>337.0</td>\\n      <td>366.0</td>\\n      <td>10714.0</td>\\n      <td>139.0</td>\\n      <td>0.0</td>\\n      <td>302.0</td>\\n      <td>0.0</td>\\n      <td>364.0</td>\\n      <td>0.0</td>\\n      <td>30650.0</td>\\n      <td>5594.0</td>\\n      <td>2179.0</td>\\n      <td>292.0</td>\\n      <td>166.0</td>\\n      <td>2685.0</td>\\n      <td>292.0</td>\\n      <td>2212.0</td>\\n      <td>5908.0</td>\\n      <td>291.0</td>\\n      <td>2683.0</td>\\n      <td>11.0</td>\\n      <td>182.0</td>\\n      <td>165.0</td>\\n      <td>559.0</td>\\n      <td>2592.0</td>\\n      <td>3531.0</td>\\n      <td>387.0</td>\\n      <td>1743.0</td>\\n      <td>4220.0</td>\\n      <td>245.0</td>\\n      <td>781.0</td>\\n      <td>581.0</td>\\n      <td>2760.0</td>\\n      <td>4813.0</td>\\n      <td>1799.0</td>\\n      <td>1179.0</td>\\n      <td>974.0</td>\\n      <td>313.0</td>\\n      <td>134.0</td>\\n      <td>5562.0</td>\\n      <td>2755.0</td>\\n      <td>28.0</td>\\n      <td>0.0</td>\\n      <td>16167.0</td>\\n      <td>32.0</td>\\n      <td>696.0</td>\\n      <td>2173.0</td>\\n      <td>454.0</td>\\n      <td>1699.0</td>\\n      <td>448.0</td>\\n      <td>1348.0</td>\\n      <td>6776.0</td>\\n      <td>3446.0</td>\\n      <td>1334.0</td>\\n      <td>1247.0</td>\\n      <td>627.0</td>\\n      <td>3514.0</td>\\n      <td>1840.0</td>\\n      <td>84.0</td>\\n      <td>356.0</td>\\n      <td>3748.0</td>\\n      <td>466.0</td>\\n      <td>168.0</td>\\n      <td>10745.0</td>\\n      <td>3778.0</td>\\n      <td>78540.0</td>\\n      <td>2068.0</td>\\n      <td>526.0</td>\\n      <td>11467.0</td>\\n      <td>718.0</td>\\n      <td>1583.0</td>\\n      <td>290.0</td>\\n      <td>1485.0</td>\\n      <td>118.0</td>\\n      <td>890.0</td>\\n      <td>70.0</td>\\n      <td>289.0</td>\\n      <td>2186.0</td>\\n      <td>2289.0</td>\\n      <td>283.0</td>\\n      <td>5530.0</td>\\n      <td>1006.0</td>\\n      <td>1855.0</td>\\n      <td>51.0</td>\\n      <td>1419.0</td>\\n      <td>1301.0</td>\\n      <td>624.0</td>\\n      <td>521.0</td>\\n      <td>2490.0</td>\\n      <td>167.0</td>\\n      <td>959.0</td>\\n      <td>718.0</td>\\n      <td>91.0</td>\\n      <td>587.0</td>\\n      <td>580.0</td>\\n      <td>1191.0</td>\\n      <td>779.0</td>\\n      <td>0.0</td>\\n      <td>3431.0</td>\\n      <td>1013.0</td>\\n      <td>276.0</td>\\n      <td>2035.0</td>\\n      <td>4728.0</td>\\n      <td>329.0</td>\\n      <td>260.0</td>\\n      <td>53.0</td>\\n      <td>1393.0</td>\\n      <td>1770.0</td>\\n      <td>0.0</td>\\n      <td>2781.0</td>\\n      <td>196.0</td>\\n      <td>419.0</td>\\n      <td>190.0</td>\\n      <td>2151.0</td>\\n      <td>2087.0</td>\\n      <td>4695.0</td>\\n      <td>1620.0</td>\\n      <td>145.0</td>\\n      <td>1279.0</td>\\n      <td>1331.0</td>\\n      <td>80.0</td>\\n      <td>0.0</td>\\n      <td>671.0</td>\\n      <td>35.0</td>\\n      <td>8981.0</td>\\n      <td>396.0</td>\\n      <td>382.0</td>\\n      <td>741.0</td>\\n      <td>752.0</td>\\n      <td>57.0</td>\\n      <td>29.0</td>\\n      <td>19103.0</td>\\n      <td>9401.0</td>\\n      <td>20920.0</td>\\n      <td>4912.0</td>\\n      <td>10148.0</td>\\n      <td>6605.0</td>\\n      <td>7665.0</td>\\n      <td>21825.0</td>\\n      <td>79609.0</td>\\n      <td>38874.0</td>\\n      <td>982.0</td>\\n      <td>316.0</td>\\n      <td>2229.0</td>\\n      <td>4519.0</td>\\n      <td>3335.0</td>\\n      <td>7322.0</td>\\n      <td>94932.0</td>\\n      <td>990.0</td>\\n      <td>13406.0</td>\\n      <td>5420.0</td>\\n      <td>8064.0</td>\\n      <td>4639.0</td>\\n      <td>18554.0</td>\\n      <td>13397.0</td>\\n      <td>5052.0</td>\\n      <td>138950.0</td>\\n      <td>7550.0</td>\\n      <td>1788.0</td>\\n      <td>24483.0</td>\\n      <td>27105.0</td>\\n      <td>9113.0</td>\\n      <td>15441.0</td>\\n      <td>1725.0</td>\\n      <td>4571.0</td>\\n      <td>6192.0</td>\\n      <td>149250.0</td>\\n      <td>31657.0</td>\\n      <td>4854.0</td>\\n      <td>8922.0</td>\\n      <td>28917.0</td>\\n      <td>4211.0</td>\\n      <td>3096.0</td>\\n      <td>2916.0</td>\\n      <td>7107.0</td>\\n      <td>14568.0</td>\\n      <td>628.0</td>\\n      <td>8726.0</td>\\n      <td>25006.0</td>\\n      <td>26283.0</td>\\n      <td>12312.0</td>\\n      <td>15792.0</td>\\n      <td>57613.0</td>\\n      <td>22587.0</td>\\n      <td>298.0</td>\\n      <td>23704.0</td>\\n      <td>9392.0</td>\\n      <td>28185.0</td>\\n      <td>9885.0</td>\\n      <td>8508.0</td>\\n      <td>14736.0</td>\\n      <td>6427.0</td>\\n      <td>9442.0</td>\\n      <td>2385.0</td>\\n      <td>4667.0</td>\\n      <td>3363.0</td>\\n      <td>2782.0</td>\\n      <td>275.0</td>\\n      <td>16377.0</td>\\n      <td>400.0</td>\\n      <td>450.0</td>\\n      <td>3038.0</td>\\n      <td>338.0</td>\\n      <td>196.0</td>\\n      <td>431.0</td>\\n      <td>1416.0</td>\\n      <td>31.0</td>\\n      <td>14.0</td>\\n      <td>1460.0</td>\\n      <td>3.0</td>\\n      <td>3706.0</td>\\n      <td>69.0</td>\\n      <td>4668.0</td>\\n      <td>8475.0</td>\\n      <td>58834.0</td>\\n      <td>140491.0</td>\\n      <td>106820.0</td>\\n      <td>6852.0</td>\\n      <td>1188.0</td>\\n      <td>29705.0</td>\\n      <td>8366.0</td>\\n      <td>23137.0</td>\\n      <td>2073.0</td>\\n      <td>31709.0</td>\\n      <td>924.0</td>\\n      <td>18317.0</td>\\n      <td>26849.0</td>\\n      <td>5536.0</td>\\n      <td>197458.0</td>\\n      <td>188883.0</td>\\n      <td>5471.0</td>\\n      <td>1249.0</td>\\n      <td>12532.0</td>\\n      <td>1174.0</td>\\n      <td>8807.0</td>\\n      <td>10201.0</td>\\n      <td>11117.0</td>\\n      <td>5881.0</td>\\n      <td>39746.0</td>\\n      <td>13802.0</td>\\n      <td>162484.0</td>\\n      <td>56.0</td>\\n      <td>301285.0</td>\\n      <td>16279.0</td>\\n      <td>186855.0</td>\\n      <td>32365.0</td>\\n      <td>507847.0</td>\\n      <td>243.0</td>\\n      <td>252637.0</td>\\n      <td>182279.0</td>\\n      <td>269901.0</td>\\n      <td>2238.0</td>\\n      <td>254438.0</td>\\n      <td>676.0</td>\\n      <td>122.0</td>\\n      <td>3159.0</td>\\n      <td>3386.0</td>\\n      <td>320.0</td>\\n      <td>1342.0</td>\\n      <td>1121.0</td>\\n      <td>1534.0</td>\\n      <td>13475.0</td>\\n      <td>780.0</td>\\n      <td>19326.0</td>\\n      <td>8604.0</td>\\n      <td>14989.0</td>\\n      <td>3990.0</td>\\n      <td>844.0</td>\\n      <td>1549.0</td>\\n      <td>557.0</td>\\n      <td>2266.0</td>\\n      <td>3969.0</td>\\n      <td>1268.0</td>\\n      <td>4746.0</td>\\n      <td>3448.0</td>\\n      <td>4482.0</td>\\n      <td>2078.0</td>\\n      <td>83201.0</td>\\n      <td>1133.0</td>\\n      <td>1798.0</td>\\n      <td>2859.0</td>\\n      <td>4690.0</td>\\n      <td>7398.0</td>\\n      <td>1245.0</td>\\n      <td>1815.0</td>\\n      <td>14033.0</td>\\n      <td>2585.0</td>\\n      <td>3880.0</td>\\n      <td>2632.0</td>\\n      <td>3474.0</td>\\n      <td>19071.0</td>\\n      <td>24716.0</td>\\n      <td>1058.0</td>\\n      <td>48056.0</td>\\n      <td>91.0</td>\\n      <td>281.0</td>\\n      <td>11853.0</td>\\n      <td>287.0</td>\\n      <td>5059.0</td>\\n      <td>8761.0</td>\\n      <td>9.0</td>\\n      <td>45.0</td>\\n      <td>261345.0</td>\\n      <td>691.0</td>\\n      <td>4234.0</td>\\n      <td>707.0</td>\\n      <td>1015.0</td>\\n      <td>1130.0</td>\\n      <td>3567.0</td>\\n      <td>497.0</td>\\n      <td>9971.0</td>\\n      <td>2606.0</td>\\n      <td>218.0</td>\\n      <td>21517.0</td>\\n      <td>1234.0</td>\\n      <td>299977.0</td>\\n      <td>2186.0</td>\\n      <td>1490.0</td>\\n      <td>672.0</td>\\n      <td>507.0</td>\\n      <td>639.0</td>\\n      <td>3104.0</td>\\n      <td>20064.0</td>\\n      <td>317.0</td>\\n      <td>1303.0</td>\\n      <td>39227.0</td>\\n      <td>2837.0</td>\\n      <td>156.0</td>\\n      <td>7900.0</td>\\n      <td>15518.0</td>\\n      <td>3581.0</td>\\n      <td>8885.0</td>\\n      <td>1607.0</td>\\n      <td>4993.0</td>\\n      <td>31660.0</td>\\n      <td>732739.0</td>\\n      <td>1462.0</td>\\n      <td>1503.0</td>\\n      <td>33775.0</td>\\n      <td>1264.0</td>\\n      <td>1617.0</td>\\n      <td>3563.0</td>\\n      <td>116.0</td>\\n      <td>1664.0</td>\\n      <td>1351.0</td>\\n      <td>1203.0</td>\\n      <td>1714.0</td>\\n      <td>1174.0</td>\\n      <td>927.0</td>\\n      <td>1094.0</td>\\n      <td>10321.0</td>\\n      <td>460.0</td>\\n      <td>0.0</td>\\n      <td>286.0</td>\\n      <td>4558.0</td>\\n      <td>29529.0</td>\\n      <td>73.0</td>\\n      <td>2303.0</td>\\n      <td>202.0</td>\\n      <td>59.0</td>\\n      <td>813.0</td>\\n      <td>3094.0</td>\\n      <td>731.0</td>\\n      <td>216365.0</td>\\n      <td>322.0</td>\\n      <td>1544.0</td>\\n      <td>1218.0</td>\\n      <td>3631.0</td>\\n      <td>213.0</td>\\n      <td>1529.0</td>\\n      <td>2103.0</td>\\n      <td>527.0</td>\\n      <td>748.0</td>\\n      <td>454.0</td>\\n      <td>425.0</td>\\n      <td>120.0</td>\\n      <td>1021.0</td>\\n      <td>57.0</td>\\n      <td>1441.0</td>\\n      <td>474.0</td>\\n      <td>561.0</td>\\n      <td>2774.0</td>\\n      <td>1313.0</td>\\n      <td>1160.0</td>\\n      <td>2565.0</td>\\n      <td>1929.0</td>\\n      <td>2042.0</td>\\n      <td>432.0</td>\\n      <td>3837.0</td>\\n      <td>3664.0</td>\\n      <td>387.0</td>\\n      <td>6141.0</td>\\n      <td>2085.0</td>\\n      <td>563.0</td>\\n      <td>451.0</td>\\n      <td>2294.0</td>\\n      <td>2269.0</td>\\n      <td>93.0</td>\\n      <td>75860.0</td>\\n      <td>235.0</td>\\n      <td>1491.0</td>\\n      <td>2352.0</td>\\n      <td>3287.0</td>\\n      <td>634.0</td>\\n      <td>371.0</td>\\n      <td>6717.0</td>\\n      <td>4131.0</td>\\n      <td>584.0</td>\\n      <td>12550.0</td>\\n      <td>10703.0</td>\\n      <td>640.0</td>\\n      <td>268.0</td>\\n      <td>679.0</td>\\n      <td>1285.0</td>\\n      <td>63.0</td>\\n      <td>10331.0</td>\\n      <td>88.0</td>\\n      <td>487.0</td>\\n      <td>1168.0</td>\\n      <td>15866.0</td>\\n      <td>575.0</td>\\n      <td>925.0</td>\\n      <td>5122.0</td>\\n      <td>3915.0</td>\\n      <td>864.0</td>\\n      <td>7930.0</td>\\n      <td>2642.0</td>\\n      <td>1988.0</td>\\n      <td>6077.0</td>\\n      <td>1279.0</td>\\n      <td>12071.0</td>\\n      <td>2317.0</td>\\n      <td>2868.0</td>\\n      <td>5566.0</td>\\n      <td>1225.0</td>\\n      <td>3028.0</td>\\n      <td>8626.0</td>\\n      <td>3868.0</td>\\n      <td>5407.0</td>\\n      <td>6301.0</td>\\n      <td>4968.0</td>\\n      <td>12696.0</td>\\n      <td>15147.0</td>\\n      <td>739.0</td>\\n      <td>3001.0</td>\\n      <td>3200.0</td>\\n      <td>6461.0</td>\\n      <td>5678.0</td>\\n      <td>13960.0</td>\\n      <td>30011.0</td>\\n      <td>11912.0</td>\\n      <td>3275.0</td>\\n      <td>532.0</td>\\n      <td>4748.0</td>\\n      <td>15212.0</td>\\n      <td>3031.0</td>\\n      <td>1701.0</td>\\n      <td>2244.0</td>\\n      <td>15413.0</td>\\n      <td>3467.0</td>\\n      <td>7061.0</td>\\n      <td>6400.0</td>\\n      <td>26300.0</td>\\n      <td>2040.0</td>\\n      <td>7149.0</td>\\n      <td>12958.0</td>\\n      <td>16692.0</td>\\n      <td>11531.0</td>\\n      <td>10138.0</td>\\n      <td>17196.0</td>\\n      <td>6949.0</td>\\n      <td>4895.0</td>\\n      <td>13481.0</td>\\n      <td>3347.0</td>\\n      <td>21554.0</td>\\n      <td>4230.0</td>\\n      <td>2976.0</td>\\n      <td>9904.0</td>\\n      <td>6222.0</td>\\n      <td>11800.0</td>\\n      <td>3333.0</td>\\n      <td>9425.0</td>\\n      <td>3509.0</td>\\n      <td>3653.0</td>\\n      <td>812.0</td>\\n      <td>14296.0</td>\\n      <td>5254.0</td>\\n      <td>1972.0</td>\\n      <td>7373.0</td>\\n      <td>3291.0</td>\\n      <td>1973.0</td>\\n      <td>7689.0</td>\\n      <td>3539.0</td>\\n      <td>6740.0</td>\\n      <td>4680.0</td>\\n      <td>5486.0</td>\\n      <td>2608.0</td>\\n      <td>4399.0</td>\\n      <td>24.0</td>\\n      <td>4405.0</td>\\n      <td>9243.0</td>\\n      <td>13996.0</td>\\n      <td>4147.0</td>\\n      <td>2728.0</td>\\n      <td>3890.0</td>\\n      <td>4049.0</td>\\n      <td>3358.0</td>\\n      <td>5285.0</td>\\n      <td>190.0</td>\\n      <td>870.0</td>\\n      <td>186.0</td>\\n      <td>1560.0</td>\\n      <td>2106.0</td>\\n      <td>396.0</td>\\n      <td>850.0</td>\\n      <td>878.0</td>\\n      <td>615.0</td>\\n      <td>2961.0</td>\\n      <td>7648.0</td>\\n      <td>1050.0</td>\\n      <td>255.0</td>\\n      <td>1055.0</td>\\n      <td>4370.0</td>\\n      <td>6994.0</td>\\n      <td>545.0</td>\\n      <td>576.0</td>\\n      <td>5288.0</td>\\n      <td>437.0</td>\\n      <td>49.0</td>\\n      <td>2153.0</td>\\n      <td>197.0</td>\\n      <td>9095.0</td>\\n      <td>2917.0</td>\\n      <td>4687.0</td>\\n      <td>738.0</td>\\n      <td>1088.0</td>\\n      <td>1405.0</td>\\n      <td>706.0</td>\\n      <td>519.0</td>\\n      <td>901.0</td>\\n      <td>388.0</td>\\n      <td>1326.0</td>\\n      <td>1750.0</td>\\n      <td>9010.0</td>\\n      <td>2630.0</td>\\n      <td>2104.0</td>\\n      <td>20117.0</td>\\n      <td>1274.0</td>\\n      <td>334.0</td>\\n      <td>1443.0</td>\\n      <td>496.0</td>\\n      <td>299.0</td>\\n      <td>235.0</td>\\n      <td>2052.0</td>\\n      <td>32.0</td>\\n      <td>22579.0</td>\\n      <td>6214.0</td>\\n      <td>13312.0</td>\\n      <td>1592.0</td>\\n      <td>5738.0</td>\\n      <td>31513.0</td>\\n      <td>107.0</td>\\n      <td>2632.0</td>\\n      <td>2790.0</td>\\n      <td>2854.0</td>\\n      <td>392.0</td>\\n      <td>1046.0</td>\\n      <td>844.0</td>\\n      <td>1107.0</td>\\n      <td>230.0</td>\\n      <td>541.0</td>\\n      <td>208.0</td>\\n      <td>1879.0</td>\\n      <td>2405.0</td>\\n      <td>36.0</td>\\n      <td>1928.0</td>\\n      <td>670.0</td>\\n      <td>1403.0</td>\\n      <td>269.0</td>\\n      <td>403.0</td>\\n      <td>968.0</td>\\n      <td>2608.0</td>\\n      <td>3519.0</td>\\n      <td>1270.0</td>\\n      <td>75.0</td>\\n      <td>423.0</td>\\n      <td>188.0</td>\\n      <td>2431.0</td>\\n      <td>1314.0</td>\\n      <td>3719.0</td>\\n      <td>3790.0</td>\\n      <td>978.0</td>\\n      <td>2364.0</td>\\n      <td>2335.0</td>\\n      <td>1725.0</td>\\n      <td>153.0</td>\\n      <td>138.0</td>\\n      <td>690.0</td>\\n      <td>351.0</td>\\n      <td>122.0</td>\\n      <td>494.0</td>\\n      <td>1893.0</td>\\n      <td>38.0</td>\\n      <td>239.0</td>\\n      <td>4867.0</td>\\n      <td>658.0</td>\\n      <td>135.0</td>\\n      <td>32155.0</td>\\n      <td>145.0</td>\\n      <td>3992.0</td>\\n      <td>182312.0</td>\\n      <td>46949.0</td>\\n      <td>343.0</td>\\n      <td>2944.0</td>\\n      <td>1438.0</td>\\n      <td>408.0</td>\\n      <td>4708.0</td>\\n      <td>705.0</td>\\n      <td>0.0</td>\\n      <td>632.0</td>\\n      <td>755.0</td>\\n      <td>2312.0</td>\\n      <td>245.0</td>\\n      <td>2069.0</td>\\n      <td>13.0</td>\\n      <td>978.0</td>\\n      <td>321.0</td>\\n      <td>5210.0</td>\\n      <td>1071.0</td>\\n      <td>58.0</td>\\n      <td>317.0</td>\\n      <td>204.0</td>\\n      <td>4727.0</td>\\n      <td>131.0</td>\\n      <td>610.0</td>\\n      <td>261.0</td>\\n      <td>875.0</td>\\n      <td>566.0</td>\\n      <td>41.0</td>\\n      <td>454.0</td>\\n      <td>3778.0</td>\\n      <td>1829.0</td>\\n      <td>85.0</td>\\n      <td>1428.0</td>\\n      <td>0.0</td>\\n      <td>65.0</td>\\n      <td>2118.0</td>\\n      <td>63.0</td>\\n      <td>0.0</td>\\n      <td>866.0</td>\\n      <td>1402.0</td>\\n      <td>56.0</td>\\n      <td>868.0</td>\\n      <td>357.0</td>\\n      <td>0.0</td>\\n      <td>514.0</td>\\n      <td>7.0</td>\\n      <td>2998.0</td>\\n      <td>323.0</td>\\n      <td>156.0</td>\\n      <td>34.0</td>\\n      <td>418.0</td>\\n      <td>173.0</td>\\n      <td>372.0</td>\\n      <td>175.0</td>\\n      <td>60.0</td>\\n      <td>1026.0</td>\\n      <td>682.0</td>\\n      <td>2856.0</td>\\n      <td>2501.0</td>\\n      <td>218.0</td>\\n      <td>136.0</td>\\n      <td>1428.0</td>\\n      <td>534.0</td>\\n      <td>375.0</td>\\n      <td>159.0</td>\\n      <td>1717.0</td>\\n      <td>69.0</td>\\n      <td>2.0</td>\\n      <td>426.0</td>\\n      <td>334.0</td>\\n      <td>145.0</td>\\n      <td>13267.0</td>\\n      <td>3476.0</td>\\n      <td>261.0</td>\\n      <td>0.0</td>\\n      <td>0.0</td>\\n      <td>0.0</td>\\n      <td>94.0</td>\\n      <td>349.0</td>\\n      <td>112.0</td>\\n      <td>47.0</td>\\n      <td>2771.0</td>\\n      <td>235.0</td>\\n      <td>417.0</td>\\n      <td>673.0</td>\\n      <td>226.0</td>\\n      <td>143.0</td>\\n      <td>459.0</td>\\n      <td>331.0</td>\\n      <td>235.0</td>\\n      <td>1496.0</td>\\n      <td>380.0</td>\\n      <td>1449.0</td>\\n      <td>9640.0</td>\\n      <td>806.0</td>\\n      <td>2892.0</td>\\n      <td>0.0</td>\\n      <td>522.0</td>\\n      <td>3575.0</td>\\n      <td>44761.0</td>\\n      <td>234.0</td>\\n      <td>421.0</td>\\n      <td>107.0</td>\\n      <td>58.0</td>\\n      <td>398.0</td>\\n      <td>1328.0</td>\\n      <td>0.0</td>\\n      <td>141.0</td>\\n      <td>53.0</td>\\n      <td>90.0</td>\\n      <td>20.0</td>\\n      <td>13062.0</td>\\n      <td>3215.0</td>\\n      <td>0.0</td>\\n      <td>0.0</td>\\n      <td>80.0</td>\\n      <td>616.0</td>\\n      <td>94.0</td>\\n      <td>1175.0</td>\\n      <td>3.0</td>\\n      <td>152.0</td>\\n      <td>101.0</td>\\n      <td>48.0</td>\\n      <td>0.0</td>\\n      <td>124.0</td>\\n      <td>170.0</td>\\n      <td>8874.0</td>\\n      <td>1590.0</td>\\n      <td>0.0</td>\\n      <td>0.0</td>\\n      <td>2531.0</td>\\n      <td>0.0</td>\\n      <td>405.0</td>\\n      <td>282.0</td>\\n      <td>190.0</td>\\n      <td>170.0</td>\\n      <td>40.0</td>\\n      <td>153.0</td>\\n      <td>20.0</td>\\n      <td>1401.0</td>\\n      <td>307.0</td>\\n      <td>1337.0</td>\\n      <td>2117.0</td>\\n      <td>581.0</td>\\n      <td>229.0</td>\\n      <td>567.0</td>\\n      <td>144.0</td>\\n      <td>491.0</td>\\n      <td>6081.0</td>\\n      <td>856.0</td>\\n      <td>2445.0</td>\\n      <td>959.0</td>\\n      <td>337.0</td>\\n      <td>343.0</td>\\n      <td>0.0</td>\\n      <td>123.0</td>\\n      <td>93.0</td>\\n      <td>0.0</td>\\n      <td>798.0</td>\\n      <td>27.0</td>\\n      <td>127.0</td>\\n      <td>1090.0</td>\\n      <td>278.0</td>\\n      <td>156.0</td>\\n      <td>0.0</td>\\n      <td>361.0</td>\\n      <td>2686.0</td>\\n      <td>1425.0</td>\\n      <td>265177.0</td>\\n      <td>477.0</td>\\n      <td>2132.0</td>\\n      <td>0.0</td>\\n      <td>0.0</td>\\n      <td>1109.0</td>\\n      <td>415.0</td>\\n      <td>57.0</td>\\n      <td>2190.0</td>\\n      <td>153.0</td>\\n      <td>3247.0</td>\\n      <td>78.0</td>\\n      <td>59.0</td>\\n      <td>225.0</td>\\n      <td>39716.0</td>\\n      <td>224.0</td>\\n      <td>1808.0</td>\\n      <td>287.0</td>\\n      <td>748.0</td>\\n      <td>468.0</td>\\n      <td>399.0</td>\\n      <td>65720.0</td>\\n      <td>6062.0</td>\\n      <td>23544.0</td>\\n      <td>3465.0</td>\\n      <td>466.0</td>\\n      <td>29.0</td>\\n      <td>58412.0</td>\\n      <td>496226.0</td>\\n      <td>112272.0</td>\\n      <td>136941.0</td>\\n      <td>21418.0</td>\\n      <td>35352.0</td>\\n      <td>514823.0</td>\\n      <td>53572.0</td>\\n      <td>364001.0</td>\\n      <td>27615.0</td>\\n      <td>147906.0</td>\\n      <td>334003.0</td>\\n      <td>202951.0</td>\\n      <td>198752.0</td>\\n      <td>246623.0</td>\\n      <td>296579.0</td>\\n      <td>19051.0</td>\\n      <td>135903.0</td>\\n      <td>46895.0</td>\\n      <td>327297.0</td>\\n      <td>207.0</td>\\n      <td>40351.0</td>\\n      <td>45004.0</td>\\n      <td>290.0</td>\\n      <td>4102.0</td>\\n      <td>5514.0</td>\\n      <td>504.0</td>\\n      <td>2097.0</td>\\n      <td>0.0</td>\\n      <td>16769.0</td>\\n      <td>3798.0</td>\\n      <td>653.0</td>\\n      <td>208.0</td>\\n      <td>0.0</td>\\n      <td>376.0</td>\\n      <td>4864.0</td>\\n      <td>767.0</td>\\n      <td>0.0</td>\\n      <td>2456.0</td>\\n      <td>53236.0</td>\\n      <td>10.0</td>\\n      <td>3193.0</td>\\n      <td>511.0</td>\\n      <td>2730.0</td>\\n      <td>1297.0</td>\\n      <td>45442.0</td>\\n      <td>91.0</td>\\n      <td>11474.0</td>\\n      <td>3196.0</td>\\n      <td>774.0</td>\\n      <td>2751.0</td>\\n      <td>1663.0</td>\\n      <td>300.0</td>\\n      <td>451.0</td>\\n      <td>19.0</td>\\n      <td>2483.0</td>\\n      <td>34946.0</td>\\n      <td>3452.0</td>\\n      <td>22146.0</td>\\n      <td>2810.0</td>\\n      <td>892.0</td>\\n      <td>1297.0</td>\\n      <td>4061.0</td>\\n      <td>1387.0</td>\\n      <td>1199.0</td>\\n      <td>11559.0</td>\\n      <td>579.0</td>\\n      <td>794.0</td>\\n      <td>40789.0</td>\\n      <td>161758.0</td>\\n      <td>1677.0</td>\\n      <td>478.0</td>\\n      <td>5643.0</td>\\n      <td>2066.0</td>\\n      <td>2684.0</td>\\n      <td>148.0</td>\\n      <td>1809.0</td>\\n      <td>316.0</td>\\n      <td>956.0</td>\\n      <td>1737.0</td>\\n      <td>2590.0</td>\\n      <td>66544.0</td>\\n      <td>2303.0</td>\\n      <td>620865.0</td>\\n      <td>5973826.0</td>\\n      <td>20652.0</td>\\n      <td>28222.0</td>\\n      <td>45657.0</td>\\n      <td>6562.0</td>\\n      <td>103690.0</td>\\n      <td>11383.0</td>\\n      <td>1102.0</td>\\n      <td>1412.0</td>\\n      <td>15986.0</td>\\n      <td>10673.0</td>\\n      <td>127628.0</td>\\n      <td>3179.0</td>\\n      <td>11090.0</td>\\n      <td>320.0</td>\\n      <td>321.0</td>\\n      <td>659.0</td>\\n      <td>1721.0</td>\\n      <td>11632.0</td>\\n      <td>509117.0</td>\\n      <td>8554.0</td>\\n      <td>6578.0</td>\\n      <td>495.0</td>\\n      <td>17963.0</td>\\n      <td>4597.0</td>\\n      <td>7338.0</td>\\n      <td>3087.0</td>\\n      <td>1439.0</td>\\n      <td>385376.0</td>\\n      <td>1355.0</td>\\n      <td>1499.0</td>\\n      <td>13585.0</td>\\n      <td>1609.0</td>\\n      <td>107.0</td>\\n      <td>1491.0</td>\\n      <td>645.0</td>\\n      <td>494.0</td>\\n      <td>4912.0</td>\\n      <td>2665.0</td>\\n      <td>2669.0</td>\\n      <td>6941.0</td>\\n      <td>19030.0</td>\\n      <td>8949.0</td>\\n      <td>15202.0</td>\\n      <td>3234.0</td>\\n      <td>516.0</td>\\n      <td>1612.0</td>\\n      <td>852.0</td>\\n      <td>11029.0</td>\\n      <td>12319.0</td>\\n      <td>1852.0</td>\\n      <td>1464.0</td>\\n      <td>430.0</td>\\n      <td>11942.0</td>\\n      <td>12176.0</td>\\n      <td>8012.0</td>\\n      <td>16660.0</td>\\n      <td>522.0</td>\\n      <td>580.0</td>\\n      <td>7802.0</td>\\n      <td>1544.0</td>\\n      <td>10307.0</td>\\n      <td>20839.0</td>\\n      <td>8320.0</td>\\n      <td>20590.0</td>\\n      <td>6918.0</td>\\n      <td>19452.0</td>\\n      <td>811.0</td>\\n      <td>880.0</td>\\n      <td>8947.0</td>\\n      <td>2157.0</td>\\n      <td>40293.0</td>\\n      <td>4001.0</td>\\n      <td>12140.0</td>\\n      <td>5304.0</td>\\n      <td>14819.0</td>\\n      <td>5172.0</td>\\n      <td>3558.0</td>\\n      <td>562.0</td>\\n      <td>6380.0</td>\\n      <td>1379.0</td>\\n      <td>12762.0</td>\\n      <td>2080.0</td>\\n      <td>3666.0</td>\\n      <td>6263.0</td>\\n      <td>2377.0</td>\\n      <td>908.0</td>\\n      <td>896.0</td>\\n      <td>2600.0</td>\\n      <td>4583.0</td>\\n      <td>70111.0</td>\\n      <td>632.0</td>\\n      <td>5468.0</td>\\n      <td>7537.0</td>\\n      <td>10116.0</td>\\n      <td>6736.0</td>\\n      <td>4316.0</td>\\n      <td>4842.0</td>\\n      <td>12340.0</td>\\n      <td>413.0</td>\\n      <td>5843.0</td>\\n      <td>1780.0</td>\\n      <td>681.0</td>\\n      <td>1482.0</td>\\n      <td>5884.0</td>\\n      <td>1878.0</td>\\n      <td>11869.0</td>\\n      <td>4238.0</td>\\n      <td>16063.0</td>\\n      <td>2634.0</td>\\n      <td>19938.0</td>\\n      <td>9315.0</td>\\n      <td>5254.0</td>\\n      <td>3705.0</td>\\n      <td>9388.0</td>\\n      <td>1555.0</td>\\n      <td>4875.0</td>\\n      <td>637.0</td>\\n      <td>1121.0</td>\\n      <td>417.0</td>\\n      <td>11972.0</td>\\n      <td>10088.0</td>\\n      <td>43688.0</td>\\n      <td>1382.0</td>\\n      <td>1425.0</td>\\n      <td>642.0</td>\\n      <td>14914.0</td>\\n      <td>6257.0</td>\\n      <td>10954.0</td>\\n      <td>2063.0</td>\\n      <td>194.0</td>\\n      <td>34.0</td>\\n      <td>893.0</td>\\n      <td>1329.0</td>\\n      <td>0.0</td>\\n      <td>1539.0</td>\\n      <td>234.0</td>\\n      <td>133.0</td>\\n      <td>11068.0</td>\\n      <td>20271.0</td>\\n      <td>176.0</td>\\n      <td>1580.0</td>\\n      <td>121.0</td>\\n      <td>527.0</td>\\n      <td>412.0</td>\\n      <td>947.0</td>\\n      <td>734.0</td>\\n      <td>0.0</td>\\n      <td>4144.0</td>\\n      <td>405.0</td>\\n      <td>181.0</td>\\n      <td>216.0</td>\\n      <td>389.0</td>\\n      <td>986.0</td>\\n      <td>351.0</td>\\n      <td>1499.0</td>\\n      <td>661.0</td>\\n      <td>652.0</td>\\n      <td>1288.0</td>\\n      <td>453.0</td>\\n      <td>6498.0</td>\\n      <td>1057.0</td>\\n      <td>595.0</td>\\n      <td>136.0</td>\\n      <td>348.0</td>\\n      <td>675.0</td>\\n      <td>908.0</td>\\n      <td>496.0</td>\\n      <td>440.0</td>\\n      <td>750.0</td>\\n      <td>1299.0</td>\\n      <td>296.0</td>\\n      <td>109.0</td>\\n      <td>694.0</td>\\n      <td>0.0</td>\\n      <td>3882.0</td>\\n      <td>71.0</td>\\n      <td>3144.0</td>\\n      <td>590.0</td>\\n      <td>786.0</td>\\n      <td>1076.0</td>\\n      <td>913.0</td>\\n      <td>8830.0</td>\\n      <td>214.0</td>\\n      <td>2035.0</td>\\n      <td>342.0</td>\\n      <td>0.0</td>\\n      <td>202.0</td>\\n      <td>1146.0</td>\\n      <td>14816.0</td>\\n      <td>2226.0</td>\\n      <td>11251.0</td>\\n      <td>601.0</td>\\n      <td>3528.0</td>\\n      <td>5954.0</td>\\n      <td>738.0</td>\\n      <td>21486.0</td>\\n      <td>1507.0</td>\\n      <td>962.0</td>\\n      <td>11045.0</td>\\n      <td>5945.0</td>\\n      <td>2403.0</td>\\n      <td>18220.0</td>\\n      <td>1891.0</td>\\n      <td>2331.0</td>\\n      <td>132403.0</td>\\n      <td>9799.0</td>\\n      <td>3250.0</td>\\n      <td>5808.0</td>\\n      <td>9859.0</td>\\n      <td>9217.0</td>\\n      <td>1633.0</td>\\n      <td>125445.0</td>\\n      <td>1979.0</td>\\n      <td>1803.0</td>\\n      <td>10756.0</td>\\n      <td>7818.0</td>\\n      <td>1714.0</td>\\n      <td>67313.0</td>\\n      <td>4188.0</td>\\n      <td>3125.0</td>\\n      <td>395.0</td>\\n      <td>2554.0</td>\\n      <td>1408.0</td>\\n      <td>2321.0</td>\\n      <td>3448.0</td>\\n      <td>2392.0</td>\\n      <td>1250.0</td>\\n      <td>1777.0</td>\\n      <td>2550.0</td>\\n      <td>10958.0</td>\\n      <td>3798.0</td>\\n      <td>11885.0</td>\\n      <td>1220.0</td>\\n      <td>20761.0</td>\\n      <td>84588.0</td>\\n      <td>3033.0</td>\\n      <td>62877.0</td>\\n      <td>11305.0</td>\\n      <td>10198.0</td>\\n      <td>1377.0</td>\\n      <td>5790.0</td>\\n      <td>11892.0</td>\\n      <td>4076.0</td>\\n      <td>31836.0</td>\\n      <td>691.0</td>\\n      <td>415.0</td>\\n      <td>1158.0</td>\\n      <td>1333.0</td>\\n      <td>6092.0</td>\\n      <td>811.0</td>\\n      <td>1611.0</td>\\n      <td>10445.0</td>\\n      <td>168.0</td>\\n      <td>16574.0</td>\\n      <td>2488.0</td>\\n      <td>6416.0</td>\\n      <td>4749.0</td>\\n      <td>5975.0</td>\\n      <td>5054.0</td>\\n      <td>1846.0</td>\\n      <td>2588.0</td>\\n      <td>2055.0</td>\\n      <td>38527.0</td>\\n      <td>62182.0</td>\\n      <td>27835.0</td>\\n      <td>7259.0</td>\\n      <td>884.0</td>\\n      <td>27.0</td>\\n      <td>1441.0</td>\\n      <td>770.0</td>\\n      <td>11854.0</td>\\n      <td>5772.0</td>\\n      <td>17411.0</td>\\n      <td>1485.0</td>\\n      <td>17991.0</td>\\n      <td>2617.0</td>\\n      <td>2013.0</td>\\n      <td>70.0</td>\\n      <td>170.0</td>\\n      <td>114.0</td>\\n      <td>1391.0</td>\\n      <td>194.0</td>\\n      <td>1874.0</td>\\n      <td>4895.0</td>\\n      <td>3764.0</td>\\n      <td>1678.0</td>\\n      <td>1385.0</td>\\n      <td>471.0</td>\\n      <td>13.0</td>\\n      <td>18431.0</td>\\n      <td>100.0</td>\\n      <td>3861.0</td>\\n      <td>727.0</td>\\n      <td>301.0</td>\\n      <td>6303.0</td>\\n      <td>1099.0</td>\\n      <td>6062.0</td>\\n      <td>155.0</td>\\n      <td>5.0</td>\\n      <td>3843.0</td>\\n      <td>1417.0</td>\\n      <td>2785.0</td>\\n      <td>279.0</td>\\n      <td>1998.0</td>\\n      <td>0.0</td>\\n      <td>186.0</td>\\n      <td>685.0</td>\\n      <td>788.0</td>\\n      <td>2813.0</td>\\n      <td>108.0</td>\\n      <td>534.0</td>\\n      <td>3465.0</td>\\n      <td>556.0</td>\\n      <td>608.0</td>\\n      <td>510.0</td>\\n      <td>2887.0</td>\\n      <td>2650.0</td>\\n      <td>465.0</td>\\n      <td>150.0</td>\\n      <td>412.0</td>\\n      <td>336.0</td>\\n      <td>2563.0</td>\\n      <td>1992.0</td>\\n      <td>6248.0</td>\\n      <td>1336.0</td>\\n      <td>401.0</td>\\n      <td>5053.0</td>\\n      <td>510.0</td>\\n      <td>620.0</td>\\n      <td>1126.0</td>\\n      <td>41940.0</td>\\n      <td>1796.0</td>\\n      <td>3287.0</td>\\n      <td>2121.0</td>\\n      <td>1048.0</td>\\n      <td>1948.0</td>\\n      <td>3034.0</td>\\n      <td>1241.0</td>\\n      <td>2844.0</td>\\n      <td>529.0</td>\\n      <td>445.0</td>\\n      <td>8493.0</td>\\n      <td>1504.0</td>\\n      <td>2063.0</td>\\n      <td>1564.0</td>\\n      <td>2050.0</td>\\n      <td>607.0</td>\\n      <td>37461.0</td>\\n      <td>1.0</td>\\n      <td>6415.0</td>\\n      <td>10078.0</td>\\n      <td>134.0</td>\\n      <td>120.0</td>\\n      <td>637.0</td>\\n      <td>373.0</td>\\n      <td>1609.0</td>\\n      <td>12596.0</td>\\n      <td>47.0</td>\\n      <td>417.0</td>\\n      <td>193.0</td>\\n      <td>484.0</td>\\n      <td>149.0</td>\\n      <td>2085.0</td>\\n      <td>1642.0</td>\\n      <td>25.0</td>\\n      <td>43.0</td>\\n      <td>45.0</td>\\n      <td>262.0</td>\\n      <td>2470.0</td>\\n      <td>1402.0</td>\\n      <td>829.0</td>\\n      <td>713.0</td>\\n      <td>82.0</td>\\n      <td>4757.0</td>\\n      <td>2223.0</td>\\n      <td>3588.0</td>\\n      <td>5006.0</td>\\n      <td>21378.0</td>\\n      <td>900.0</td>\\n      <td>35032.0</td>\\n      <td>3491.0</td>\\n      <td>0.0</td>\\n      <td>0.0</td>\\n      <td>7068.0</td>\\n      <td>659.0</td>\\n      <td>0.0</td>\\n      <td>281.0</td>\\n      <td>1852.0</td>\\n      <td>13253.0</td>\\n      <td>2.0</td>\\n      <td>3440.0</td>\\n      <td>6270.0</td>\\n      <td>86524.0</td>\\n      <td>4460.0</td>\\n      <td>28917.0</td>\\n      <td>3282.0</td>\\n      <td>94327.0</td>\\n      <td>6651.0</td>\\n      <td>3039.0</td>\\n      <td>147840.0</td>\\n      <td>8700.0</td>\\n      <td>6692.0</td>\\n      <td>30.0</td>\\n      <td>8499.0</td>\\n      <td>5880.0</td>\\n      <td>86267.0</td>\\n      <td>1364.0</td>\\n      <td>1485.0</td>\\n      <td>1554.0</td>\\n      <td>9467.0</td>\\n      <td>2050.0</td>\\n      <td>21999.0</td>\\n      <td>39650.0</td>\\n      <td>183109.0</td>\\n      <td>673.0</td>\\n      <td>10088.0</td>\\n      <td>3325.0</td>\\n      <td>120.0</td>\\n      <td>15583.0</td>\\n      <td>652.0</td>\\n      <td>431.0</td>\\n      <td>4218.0</td>\\n      <td>4923.0</td>\\n      <td>1047.0</td>\\n      <td>2230.0</td>\\n      <td>51696.0</td>\\n      <td>107230.0</td>\\n      <td>7479.0</td>\\n      <td>15691.0</td>\\n      <td>80679.0</td>\\n      <td>51489.0</td>\\n      <td>7103.0</td>\\n      <td>628.0</td>\\n      <td>5839.0</td>\\n      <td>3146.0</td>\\n      <td>31591.0</td>\\n      <td>209589.0</td>\\n      <td>1526.0</td>\\n      <td>71372.0</td>\\n      <td>14281.0</td>\\n      <td>1733.0</td>\\n      <td>429116.0</td>\\n      <td>5649.0</td>\\n      <td>367.0</td>\\n      <td>19425.0</td>\\n      <td>2271.0</td>\\n      <td>1967.0</td>\\n      <td>101.0</td>\\n      <td>6389.0</td>\\n      <td>1977.0</td>\\n      <td>1826.0</td>\\n      <td>1.0</td>\\n      <td>968.0</td>\\n      <td>523.0</td>\\n      <td>7650.0</td>\\n      <td>2531.0</td>\\n      <td>23152.0</td>\\n      <td>2640.0</td>\\n      <td>33658.0</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>134516.0</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>NaN</td>\\n      <td>4688.0</td>\\n      <td>25651.0</td>\\n      <td>1573.0</td>\\n      <td>200242.0</td>\\n      <td>13273.0</td>\\n      <td>16597.0</td>\\n      <td>2458.0</td>\\n      <td>13720.0</td>\\n      <td>1319.0</td>\\n      <td>28762.0</td>\\n      <td>5175.0</td>\\n      <td>3053.0</td>\\n      <td>14585.0</td>\\n      <td>16170.0</td>\\n      <td>2743.0</td>\\n      <td>44232.0</td>\\n      <td>7990.0</td>\\n      <td>4168.0</td>\\n      <td>7017.0</td>\\n      <td>13940.0</td>\\n      <td>8301.0</td>\\n      <td>10446.0</td>\\n      <td>7019.0</td>\\n      <td>14889.0</td>\\n      <td>3063.0</td>\\n      <td>7165.0</td>\\n      <td>33243.0</td>\\n      <td>8209.0</td>\\n      <td>58786.0</td>\\n      <td>10604.0</td>\\n      <td>4294.0</td>\\n      <td>38453.0</td>\\n      <td>3507.0</td>\\n      <td>8680.0</td>\\n      <td>9179.0</td>\\n      <td>9932.0</td>\\n      <td>7089.0</td>\\n      <td>32849.0</td>\\n      <td>5812.0</td>\\n      <td>2155.0</td>\\n      <td>1092.0</td>\\n      <td>6351.0</td>\\n      <td>4836.0</td>\\n      <td>19489.0</td>\\n      <td>10174.0</td>\\n      <td>45940.0</td>\\n      <td>3273.0</td>\\n      <td>37307.0</td>\\n      <td>14971.0</td>\\n      <td>2694.0</td>\\n      <td>4.0</td>\\n      <td>8145.0</td>\\n      <td>15425.0</td>\\n      <td>291.0</td>\\n      <td>3129.0</td>\\n      <td>502.0</td>\\n      <td>963.0</td>\\n      <td>1278.0</td>\\n      <td>2141.0</td>\\n      <td>341.0</td>\\n      <td>851.0</td>\\n      <td>922.0</td>\\n      <td>99.0</td>\\n      <td>340.0</td>\\n      <td>77.0</td>\\n      <td>975.0</td>\\n      <td>3211.0</td>\\n      <td>350.0</td>\\n      <td>537.0</td>\\n      <td>2550.0</td>\\n      <td>637.0</td>\\n      <td>208.0</td>\\n      <td>319.0</td>\\n      <td>425.0</td>\\n      <td>158.0</td>\\n      <td>779.0</td>\\n      <td>621.0</td>\\n      <td>882.0</td>\\n      <td>1430.0</td>\\n      <td>257.0</td>\\n      <td>845.0</td>\\n      <td>109.0</td>\\n      <td>156.0</td>\\n      <td>9.0</td>\\n      <td>1496.0</td>\\n      <td>648.0</td>\\n      <td>6.0</td>\\n      <td>534.0</td>\\n      <td>1194.0</td>\\n      <td>2.0</td>\\n      <td>595.0</td>\\n      <td>1303.0</td>\\n      <td>1497.0</td>\\n      <td>3467.0</td>\\n      <td>822.0</td>\\n      <td>202.0</td>\\n      <td>1051.0</td>\\n      <td>58.0</td>\\n      <td>1355.0</td>\\n      <td>87.0</td>\\n      <td>284.0</td>\\n      <td>23393.0</td>\\n      <td>639.0</td>\\n      <td>1696.0</td>\\n      <td>9425.0</td>\\n      <td>202.0</td>\\n      <td>71.0</td>\\n      <td>1304.0</td>\\n      <td>119.0</td>\\n      <td>880.0</td>\\n      <td>54.0</td>\\n      <td>130.0</td>\\n      <td>1381.0</td>\\n      <td>404.0</td>\\n      <td>2684.0</td>\\n      <td>2081.0</td>\\n      <td>10.0</td>\\n      <td>793.0</td>\\n      <td>1199.0</td>\\n      <td>370.0</td>\\n      <td>3195.0</td>\\n      <td>4267.0</td>\\n      <td>1788.0</td>\\n      <td>730.0</td>\\n      <td>6352.0</td>\\n      <td>4396.0</td>\\n      <td>1936.0</td>\\n      <td>346.0</td>\\n      <td>3705.0</td>\\n      <td>5845.0</td>\\n      <td>2014.0</td>\\n      <td>2117.0</td>\\n      <td>993.0</td>\\n      <td>1561.0</td>\\n      <td>2597.0</td>\\n      <td>3770.0</td>\\n      <td>3239.0</td>\\n      <td>3959.0</td>\\n      <td>61886.0</td>\\n      <td>2332.0</td>\\n      <td>1428.0</td>\\n      <td>3323.0</td>\\n      <td>4778.0</td>\\n      <td>4089.0</td>\\n      <td>1594.0</td>\\n      <td>3216.0</td>\\n      <td>6246.0</td>\\n      <td>4823.0</td>\\n      <td>1150.0</td>\\n      <td>7501.0</td>\\n      <td>1482.0</td>\\n      <td>6700.0</td>\\n      <td>21061.0</td>\\n      <td>442.0</td>\\n      <td>4759.0</td>\\n      <td>3306.0</td>\\n      <td>4063.0</td>\\n      <td>3585.0</td>\\n      <td>3485.0</td>\\n      <td>1966.0</td>\\n      <td>1775.0</td>\\n      <td>1661.0</td>\\n      <td>927.0</td>\\n      <td>1035.0</td>\\n      <td>3372.0</td>\\n      <td>1548.0</td>\\n      <td>18845.0</td>\\n      <td>627.0</td>\\n      <td>2837.0</td>\\n      <td>3615.0</td>\\n      <td>969.0</td>\\n      <td>1254.0</td>\\n      <td>1909.0</td>\\n      <td>4074.0</td>\\n      <td>12073.0</td>\\n      <td>2073.0</td>\\n      <td>1862.0</td>\\n      <td>6471.0</td>\\n      <td>6982.0</td>\\n      <td>3498.0</td>\\n      <td>964.0</td>\\n      <td>4614.0</td>\\n      <td>9285.0</td>\\n      <td>274.0</td>\\n      <td>800.0</td>\\n      <td>4266.0</td>\\n      <td>2679.0</td>\\n      <td>1267.0</td>\\n      <td>1076.0</td>\\n      <td>1797.0</td>\\n      <td>9215.0</td>\\n      <td>2938.0</td>\\n      <td>2172.0</td>\\n      <td>6992.0</td>\\n      <td>21003.0</td>\\n      <td>821.0</td>\\n      <td>534.0</td>\\n      <td>3990.0</td>\\n      <td>97770.0</td>\\n      <td>2151.0</td>\\n      <td>1243.0</td>\\n      <td>9839.0</td>\\n      <td>22844.0</td>\\n      <td>4290.0</td>\\n      <td>1745.0</td>\\n      <td>1648.0</td>\\n      <td>514.0</td>\\n      <td>1281.0</td>\\n      <td>232.0</td>\\n      <td>1987.0</td>\\n      <td>9170.0</td>\\n      <td>1093.0</td>\\n      <td>3653.0</td>\\n      <td>2366.0</td>\\n      <td>9913.0</td>\\n      <td>10172.0</td>\\n      <td>5550.0</td>\\n      <td>1801.0</td>\\n      <td>13834.0</td>\\n      <td>2809.0</td>\\n      <td>221.0</td>\\n      <td>204.0</td>\\n      <td>5546.0</td>\\n      <td>1407.0</td>\\n      <td>947.0</td>\\n      <td>1210.0</td>\\n      <td>5316.0</td>\\n      <td>362.0</td>\\n      <td>5000.0</td>\\n      <td>15298.0</td>\\n      <td>212995.0</td>\\n      <td>932.0</td>\\n      <td>0.0</td>\\n      <td>1465.0</td>\\n      <td>14064.0</td>\\n      <td>27891.0</td>\\n      <td>14928.0</td>\\n      <td>675.0</td>\\n      <td>196.0</td>\\n      <td>3116.0</td>\\n      <td>6417.0</td>\\n      <td>1173.0</td>\\n      <td>2449.0</td>\\n      <td>5690.0</td>\\n      <td>1544.0</td>\\n      <td>1026.0</td>\\n      <td>150490.0</td>\\n      <td>1958.0</td>\\n      <td>205.0</td>\\n      <td>3741.0</td>\\n      <td>1132.0</td>\\n      <td>2761.0</td>\\n      <td>5732.0</td>\\n      <td>137.0</td>\\n      <td>537.0</td>\\n      <td>369.0</td>\\n      <td>855.0</td>\\n      <td>741.0</td>\\n      <td>32689.0</td>\\n      <td>112.0</td>\\n      <td>778.0</td>\\n      <td>19144.0</td>\\n      <td>1132.0</td>\\n      <td>266.0</td>\\n      <td>1499.0</td>\\n      <td>2346.0</td>\\n      <td>568.0</td>\\n      <td>1081.0</td>\\n      <td>1011.0</td>\\n      <td>1275.0</td>\\n      <td>394.0</td>\\n      <td>1664.0</td>\\n      <td>222358.0</td>\\n      <td>3138.0</td>\\n      <td>5887.0</td>\\n      <td>5574.0</td>\\n      <td>94.0</td>\\n      <td>30817.0</td>\\n      <td>409.0</td>\\n      <td>1085.0</td>\\n      <td>244.0</td>\\n      <td>2681.0</td>\\n      <td>930.0</td>\\n      <td>18551.0</td>\\n      <td>221.0</td>\\n      <td>122336.0</td>\\n      <td>14658.0</td>\\n      <td>2428.0</td>\\n      <td>1183.0</td>\\n      <td>3765.0</td>\\n      <td>3597.0</td>\\n      <td>561.0</td>\\n      <td>1737.0</td>\\n      <td>169.0</td>\\n      <td>49458.0</td>\\n      <td>1103.0</td>\\n      <td>981.0</td>\\n      <td>1337.0</td>\\n      <td>1782.0</td>\\n      <td>29216.0</td>\\n      <td>1209.0</td>\\n      <td>1523.0</td>\\n      <td>29.0</td>\\n      <td>935.0</td>\\n      <td>3095.0</td>\\n      <td>2044.0</td>\\n      <td>10735.0</td>\\n      <td>13347.0</td>\\n      <td>5435.0</td>\\n      <td>12262.0</td>\\n      <td>11161.0</td>\\n      <td>334.0</td>\\n      <td>988.0</td>\\n      <td>1129.0</td>\\n      <td>331.0</td>\\n      <td>5416.0</td>\\n      <td>434247.0</td>\\n      <td>8571.0</td>\\n      <td>481.0</td>\\n      <td>483.0</td>\\n      <td>12584.0</td>\\n      <td>62.0</td>\\n      <td>5635.0</td>\\n      <td>266295.0</td>\\n      <td>2473.0</td>\\n      <td>4044.0</td>\\n      <td>5846.0</td>\\n      <td>4390.0</td>\\n      <td>1942.0</td>\\n      <td>3657.0</td>\\n      <td>520.0</td>\\n      <td>7383.0</td>\\n      <td>1953.0</td>\\n      <td>0.0</td>\\n      <td>452.0</td>\\n      <td>2375.0</td>\\n      <td>4549.0</td>\\n      <td>27.0</td>\\n      <td>25532.0</td>\\n      <td>751.0</td>\\n      <td>6384.0</td>\\n      <td>11396.0</td>\\n      <td>811.0</td>\\n      <td>2401.0</td>\\n      <td>9438.0</td>\\n      <td>1728.0</td>\\n      <td>257.0</td>\\n      <td>46.0</td>\\n      <td>2409.0</td>\\n      <td>315.0</td>\\n      <td>0.0</td>\\n      <td>206.0</td>\\n      <td>6593.0</td>\\n      <td>1228.0</td>\\n      <td>1588.0</td>\\n      <td>8109.0</td>\\n      <td>4671.0</td>\\n      <td>1304.0</td>\\n      <td>5671.0</td>\\n      <td>2542.0</td>\\n      <td>1556.0</td>\\n      <td>8889.0</td>\\n      <td>2185.0</td>\\n      <td>218.0</td>\\n      <td>1285.0</td>\\n      <td>451.0</td>\\n      <td>0.0</td>\\n      <td>39788.0</td>\\n      <td>1146.0</td>\\n      <td>1213.0</td>\\n      <td>2197.0</td>\\n      <td>1166.0</td>\\n      <td>237.0</td>\\n      <td>8120.0</td>\\n      <td>20231.0</td>\\n      <td>681.0</td>\\n      <td>22927.0</td>\\n      <td>97.0</td>\\n      <td>7100.0</td>\\n      <td>155.0</td>\\n      <td>16834.0</td>\\n      <td>1179.0</td>\\n      <td>375.0</td>\\n      <td>528.0</td>\\n      <td>1685.0</td>\\n      <td>29126.0</td>\\n      <td>4979.0</td>\\n      <td>757.0</td>\\n      <td>84.0</td>\\n      <td>12461.0</td>\\n      <td>5879.0</td>\\n      <td>1799.0</td>\\n      <td>1111.0</td>\\n      <td>66545.0</td>\\n      <td>1037.0</td>\\n      <td>356.0</td>\\n      <td>7170.0</td>\\n      <td>3497.0</td>\\n      <td>6218.0</td>\\n      <td>7216.0</td>\\n      <td>2692.0</td>\\n      <td>1436.0</td>\\n      <td>4713.0</td>\\n      <td>21434.0</td>\\n      <td>1046.0</td>\\n      <td>879.0</td>\\n      <td>11732.0</td>\\n      <td>899.0</td>\\n      <td>1072.0</td>\\n      <td>3113.0</td>\\n      <td>1525.0</td>\\n      <td>2004.0</td>\\n      <td>36.0</td>\\n      <td>828.0</td>\\n      <td>5898.0</td>\\n      <td>1224.0</td>\\n      <td>3327.0</td>\\n      <td>1441.0</td>\\n      <td>2892.0</td>\\n      <td>1854.0</td>\\n      <td>11042.0</td>\\n      <td>524.0</td>\\n      <td>412.0</td>\\n      <td>1847.0</td>\\n      <td>15.0</td>\\n      <td>5155.0</td>\\n      <td>170.0</td>\\n      <td>20594.0</td>\\n      <td>646.0</td>\\n      <td>24969.0</td>\\n      <td>842.0</td>\\n      <td>49.0</td>\\n      <td>192.0</td>\\n      <td>479.0</td>\\n      <td>864.0</td>\\n      <td>145920.0</td>\\n      <td>12692.0</td>\\n      <td>38.0</td>\\n      <td>1905.0</td>\\n      <td>308.0</td>\\n      <td>5201.0</td>\\n      <td>13172.0</td>\\n      <td>78272.0</td>\\n      <td>1064.0</td>\\n      <td>694.0</td>\\n      <td>1.0</td>\\n      <td>2104.0</td>\\n      <td>515.0</td>\\n      <td>4797.0</td>\\n      <td>17465.0</td>\\n      <td>4702.0</td>\\n      <td>14953.0</td>\\n      <td>11412.0</td>\\n      <td>2163.0</td>\\n      <td>440.0</td>\\n      <td>10094.0</td>\\n      <td>53516.0</td>\\n      <td>8410.0</td>\\n      <td>282.0</td>\\n      <td>10132.0</td>\\n      <td>1150.0</td>\\n      <td>8032.0</td>\\n      <td>26153.0</td>\\n      <td>4590.0</td>\\n      <td>622.0</td>\\n      <td>4104.0</td>\\n      <td>5396.0</td>\\n      <td>1170.0</td>\\n      <td>1918.0</td>\\n      <td>1026.0</td>\\n      <td>2699.0</td>\\n      <td>109.0</td>\\n      <td>1506.0</td>\\n      <td>1648.0</td>\\n      <td>278.0</td>\\n      <td>0.0</td>\\n      <td>7030.0</td>\\n      <td>196.0</td>\\n      <td>313.0</td>\\n      <td>625.0</td>\\n      <td>144.0</td>\\n      <td>736.0</td>\\n      <td>620.0</td>\\n      <td>152.0</td>\\n      <td>70.0</td>\\n      <td>191.0</td>\\n      <td>80.0</td>\\n      <td>0.0</td>\\n      <td>57467.0</td>\\n      <td>5283.0</td>\\n      <td>416.0</td>\\n      <td>350.0</td>\\n      <td>346.0</td>\\n      <td>626.0</td>\\n      <td>204.0</td>\\n      <td>816.0</td>\\n      <td>15768.0</td>\\n      <td>1616.0</td>\\n      <td>7572.0</td>\\n      <td>0.0</td>\\n      <td>7328.0</td>\\n      <td>564.0</td>\\n      <td>287.0</td>\\n      <td>72.0</td>\\n      <td>10579.0</td>\\n      <td>0.0</td>\\n      <td>1973.0</td>\\n      <td>0.0</td>\\n      <td>268.0</td>\\n      <td>17.0</td>\\n      <td>123.0</td>\\n      <td>507.0</td>\\n      <td>122.0</td>\\n      <td>508.0</td>\\n      <td>844.0</td>\\n      <td>570.0</td>\\n      <td>971.0</td>\\n      <td>120.0</td>\\n      <td>1877.0</td>\\n      <td>535.0</td>\\n      <td>4163.0</td>\\n      <td>4170.0</td>\\n      <td>15431.0</td>\\n      <td>1240.0</td>\\n      <td>848.0</td>\\n      <td>660.0</td>\\n      <td>583.0</td>\\n      <td>33839.0</td>\\n      <td>1583.0</td>\\n      <td>6.0</td>\\n      <td>2626.0</td>\\n      <td>556.0</td>\\n      <td>2090.0</td>\\n      <td>764.0</td>\\n      <td>800.0</td>\\n      <td>947.0</td>\\n      <td>1693.0</td>\\n      <td>200.0</td>\\n      <td>1274.0</td>\\n      <td>1178.0</td>\\n      <td>4234.0</td>\\n      <td>1056.0</td>\\n      <td>268.0</td>\\n      <td>4535.0</td>\\n      <td>12186.0</td>\\n      <td>20863.0</td>\\n      <td>228.0</td>\\n      <td>5200.0</td>\\n      <td>108.0</td>\\n      <td>38.0</td>\\n      <td>3322.0</td>\\n      <td>308.0</td>\\n      <td>5436.0</td>\\n      <td>216.0</td>\\n      <td>1738.0</td>\\n      <td>4485.0</td>\\n      <td>295.0</td>\\n      <td>129303.0</td>\\n      <td>1750.0</td>\\n      <td>1608.0</td>\\n      <td>3936.0</td>\\n      <td>1686.0</td>\\n      <td>2036.0</td>\\n      <td>1237.0</td>\\n      <td>1955.0</td>\\n      <td>2632.0</td>\\n      <td>846.0</td>\\n      <td>5193.0</td>\\n      <td>46.0</td>\\n      <td>575.0</td>\\n      <td>1640.0</td>\\n      <td>2457.0</td>\\n      <td>613.0</td>\\n      <td>2750.0</td>\\n      <td>1619.0</td>\\n      <td>4439.0</td>\\n      <td>9044.0</td>\\n      <td>7631.0</td>\\n      <td>49124.0</td>\\n      <td>4637.0</td>\\n      <td>0.0</td>\\n      <td>1269.0</td>\\n      <td>3685.0</td>\\n      <td>4804.0</td>\\n      <td>1176.0</td>\\n      <td>556.0</td>\\n      <td>289.0</td>\\n      <td>97.0</td>\\n      <td>1488.0</td>\\n      <td>201.0</td>\\n      <td>26815.0</td>\\n      <td>1016.0</td>\\n      <td>444.0</td>\\n      <td>3329.0</td>\\n      <td>525.0</td>\\n      <td>1659.0</td>\\n      <td>5104.0</td>\\n      <td>2762.0</td>\\n      <td>70.0</td>\\n      <td>7437.0</td>\\n      <td>1222.0</td>\\n      <td>1722.0</td>\\n      <td>268.0</td>\\n      <td>538.0</td>\\n      <td>7634.0</td>\\n      <td>12314.0</td>\\n      <td>6615.0</td>\\n      <td>1062.0</td>\\n      <td>10.0</td>\\n      <td>3046.0</td>\\n      <td>1001.0</td>\\n      <td>6367.0</td>\\n      <td>3325.0</td>\\n      <td>4564.0</td>\\n      <td>2358.0</td>\\n      <td>243.0</td>\\n      <td>10102.0</td>\\n      <td>884.0</td>\\n      <td>2358.0</td>\\n      <td>827.0</td>\\n      <td>43443.0</td>\\n      <td>1451.0</td>\\n      <td>308.0</td>\\n      <td>332.0</td>\\n      <td>1070.0</td>\\n      <td>12767.0</td>\\n      <td>3254.0</td>\\n      <td>7154.0</td>\\n      <td>341.0</td>\\n      <td>4818.0</td>\\n      <td>1079.0</td>\\n      <td>1870.0</td>\\n      <td>1611.0</td>\\n      <td>11077.0</td>\\n      <td>3360.0</td>\\n      <td>4781.0</td>\\n      <td>9080.0</td>\\n      <td>3124.0</td>\\n      <td>890.0</td>\\n      <td>14166.0</td>\\n      <td>690.0</td>\\n      <td>2055.0</td>\\n      <td>611.0</td>\\n      <td>912.0</td>\\n      <td>17184.0</td>\\n      <td>2877.0</td>\\n      <td>3730.0</td>\\n      <td>721.0</td>\\n      <td>849.0</td>\\n      <td>1581.0</td>\\n      <td>901.0</td>\\n      <td>3161.0</td>\\n      <td>1178.0</td>\\n      <td>1454.0</td>\\n      <td>1547.0</td>\\n      <td>1282.0</td>\\n      <td>28712.0</td>\\n      <td>4111.0</td>\\n      <td>270.0</td>\\n      <td>16161.0</td>\\n      <td>252.0</td>\\n      <td>1411.0</td>\\n      <td>1937.0</td>\\n      <td>63.0</td>\\n      <td>12783.0</td>\\n      <td>18.0</td>\\n      <td>5053.0</td>\\n      <td>1702.0</td>\\n      <td>3753.0</td>\\n      <td>37.0</td>\\n      <td>190904.0</td>\\n      <td>3326.0</td>\\n      <td>3453.0</td>\\n      <td>799.0</td>\\n      <td>1928.0</td>\\n      <td>287.0</td>\\n      <td>1202.0</td>\\n      <td>2461.0</td>\\n      <td>531.0</td>\\n      <td>149.0</td>\\n      <td>46307.0</td>\\n      <td>0.0</td>\\n      <td>5682.0</td>\\n      <td>164.0</td>\\n      <td>55893.0</td>\\n      <td>34429.0</td>\\n      <td>871.0</td>\\n      <td>4941.0</td>\\n      <td>292.0</td>\\n      <td>0.0</td>\\n      <td>2228.0</td>\\n      <td>12798.0</td>\\n      <td>1648.0</td>\\n      <td>55386.0</td>\\n      <td>485.0</td>\\n      <td>3817.0</td>\\n      <td>934.0</td>\\n      <td>22.0</td>\\n      <td>858.0</td>\\n      <td>4622.0</td>\\n      <td>0.0</td>\\n      <td>401.0</td>\\n      <td>176.0</td>\\n      <td>3590.0</td>\\n      <td>13.0</td>\\n      <td>1209.0</td>\\n      <td>1122.0</td>\\n      <td>447.0</td>\\n      <td>670.0</td>\\n      <td>194.0</td>\\n      <td>1959.0</td>\\n      <td>5342.0</td>\\n      <td>1631.0</td>\\n      <td>16352.0</td>\\n      <td>446.0</td>\\n      <td>407.0</td>\\n      <td>6056.0</td>\\n      <td>986.0</td>\\n      <td>1731.0</td>\\n      <td>863.0</td>\\n      <td>118.0</td>\\n      <td>4636.0</td>\\n      <td>2183.0</td>\\n      <td>1796.0</td>\\n      <td>1665.0</td>\\n      <td>1046.0</td>\\n      <td>157.0</td>\\n      <td>603.0</td>\\n      <td>1914.0</td>\\n      <td>213.0</td>\\n      <td>446.0</td>\\n      <td>149.0</td>\\n      <td>1288.0</td>\\n      <td>2591.0</td>\\n      <td>1597.0</td>\\n      <td>239.0</td>\\n      <td>206.0</td>\\n      <td>403.0</td>\\n      <td>568.0</td>\\n      <td>1042.0</td>\\n      <td>18.0</td>\\n      <td>62.0</td>\\n      <td>1.0</td>\\n      <td>274.0</td>\\n      <td>2729.0</td>\\n      <td>0.0</td>\\n      <td>797.0</td>\\n      <td>55.0</td>\\n      <td>2056.0</td>\\n      <td>942.0</td>\\n      <td>1008.0</td>\\n      <td>728.0</td>\\n      <td>2783.0</td>\\n      <td>881.0</td>\\n      <td>18139.0</td>\\n      <td>652.0</td>\\n      <td>1092.0</td>\\n      <td>2183.0</td>\\n      <td>3318.0</td>\\n      <td>3816.0</td>\\n      <td>1399.0</td>\\n      <td>444.0</td>\\n      <td>13345.0</td>\\n      <td>6509.0</td>\\n      <td>1319.0</td>\\n      <td>741.0</td>\\n      <td>762.0</td>\\n      <td>4410.0</td>\\n      <td>814.0</td>\\n      <td>4895.0</td>\\n      <td>1819.0</td>\\n      <td>6844.0</td>\\n      <td>699.0</td>\\n      <td>541.0</td>\\n      <td>324.0</td>\\n      <td>1106.0</td>\\n      <td>598.0</td>\\n      <td>3489.0</td>\\n      <td>718.0</td>\\n      <td>18729.0</td>\\n      <td>1459.0</td>\\n      <td>2846.0</td>\\n      <td>241.0</td>\\n      <td>2234.0</td>\\n      <td>2468.0</td>\\n      <td>2945.0</td>\\n      <td>10258.0</td>\\n      <td>2746.0</td>\\n      <td>1045.0</td>\\n      <td>365.0</td>\\n      <td>128548.0</td>\\n      <td>1243.0</td>\\n      <td>2343.0</td>\\n      <td>2411.0</td>\\n      <td>11079.0</td>\\n      <td>5923.0</td>\\n      <td>160.0</td>\\n      <td>1778.0</td>\\n      <td>1165.0</td>\\n      <td>2994.0</td>\\n      <td>248.0</td>\\n      <td>24482.0</td>\\n      <td>1501.0</td>\\n      <td>10127.0</td>\\n      <td>567.0</td>\\n      <td>1886.0</td>\\n      <td>506.0</td>\\n      <td>3490.0</td>\\n      <td>5552.0</td>\\n      <td>2044.0</td>\\n      <td>1171.0</td>\\n      <td>1284.0</td>\\n      <td>1040.0</td>\\n      <td>823.0</td>\\n      <td>1029.0</td>\\n      <td>8183.0</td>\\n      <td>439.0</td>\\n      <td>8850.0</td>\\n      <td>25548.0</td>\\n      <td>9508.0</td>\\n      <td>825.0</td>\\n      <td>11017.0</td>\\n      <td>2501.0</td>\\n      <td>552.0</td>\\n      <td>906.0</td>\\n      <td>1035.0</td>\\n      <td>746.0</td>\\n      <td>425.0</td>\\n      <td>279.0</td>\\n      <td>4236.0</td>\\n      <td>723.0</td>\\n      <td>31.0</td>\\n      <td>459.0</td>\\n      <td>2345.0</td>\\n      <td>515.0</td>\\n      <td>3331.0</td>\\n      <td>35.0</td>\\n      <td>455.0</td>\\n      <td>476.0</td>\\n      <td>895.0</td>\\n      <td>232.0</td>\\n      <td>768.0</td>\\n      <td>317.0</td>\\n      <td>502.0</td>\\n      <td>0.0</td>\\n      <td>1397.0</td>\\n      <td>74.0</td>\\n    </tr>\\n  </tbody>\\n</table>\\n</div>\", \"text/plain\": \"state_name        Alabama                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Alaska                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Arizona                                                                                                                                                           Arkansas                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 California                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Colorado                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Connecticut                                                                                     Delaware                                District of Columbia    Florida                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Georgia                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Guam    Hawaii                                                    Idaho                                                                                                                                                                                                                                                                                                                                                                                                                                   Illinois                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Indiana                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Iowa                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Kansas                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Kentucky                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Louisiana                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Maine                                                                                                                                                            Maryland                                                                                                                                                                                                                                                                    Massachusetts                                                                                                                                                    Michigan                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Minnesota                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Mississippi                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Missouri                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Montana                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Nebraska                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Nevada                                                                                                                                                                  New Hampshire                                                                                                   New Jersey                                                                                                                                                                                                                                  New Mexico                                                                                                                                                                                                                                                                                                                             New York                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               North Carolina                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   North Dakota                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Northern Mariana Islands                    Ohio                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Oklahoma                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Oregon                                                                                                                                                                                                                                                                                                                                                    Pennsylvania                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Puerto Rico                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Rhode Island                                                     South Carolina                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              South Dakota                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             Tennessee                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Texas                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Utah                                                                                                                                                                                                                                                                                     Vermont                                                                                                                                      Virgin Islands                              Virginia                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Washington                                                                                                                                                                                                                                                                                                                                                                                                      West Virginia                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Wisconsin                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Wyoming                                                                                                                                                                                                                           \\ncounty            Autauga    Baldwin   Barbour      Bibb    Blount   Bullock    Butler   Calhoun  Chambers  Cherokee   Chilton  Choctaw    Clarke      Clay Cleburne    Coffee   Colbert   Conecuh    Coosa Covington  Crenshaw   Cullman      Dale    Dallas    DeKalb    Elmore  Escambia    Etowah   Fayette  Franklin    Geneva   Greene      Hale     Henry   Houston   Jackson  Jefferson    Lamar Lauderdale  Lawrence        Lee Limestone   Lowndes     Macon    Madison   Marengo    Marion  Marshall     Mobile    Monroe Montgomery    Morgan     Perry   Pickens      Pike  Randolph   Russell     Shelby St. Clair   Sumter Talladega Tallapoosa Tuscaloosa    Walker Washington    Wilcox   Winston Aleutians East Borough Aleutians West Census Area  Anchorage Bethel Census Area Bristol Bay Borough Denali Borough Dillingham Census Area Fairbanks North Star Borough Haines Borough Juneau City and Borough Kenai Peninsula Borough Ketchikan Gateway Borough Kodiak Island Borough Kusilvak Census Area Lake and Peninsula Borough Matanuska-Susitna Borough Nome Census Area North Slope Borough Northwest Arctic Borough Petersburg Borough Prince of Wales-Hyder Census Area Sitka City and Borough Skagway Municipality Southeast Fairbanks Census Area  Unknown Valdez-Cordova Census Area Wrangell City and Borough Yukon-Koyukuk Census Area    Apache   Cochise  Coconino      Gila    Graham Greenlee    La Paz    Maricopa    Mohave     Navajo       Pima      Pinal Santa Cruz Unknown   Yavapai       Yuma Arkansas   Ashley    Baxter     Benton     Boone  Bradley  Calhoun   Carroll    Chicot    Clark     Clay Cleburne Cleveland  Columbia   Conway Craighead  Crawford Crittenden    Cross   Dallas    Desha     Drew  Faulkner Franklin   Fulton   Garland    Grant    Greene Hempstead Hot Spring    Howard Independence    Izard   Jackson Jefferson   Johnson Lafayette  Lawrence       Lee   Lincoln Little River     Logan    Lonoke  Madison   Marion    Miller Mississippi   Monroe Montgomery   Nevada   Newton Ouachita    Perry  Phillips     Pike  Poinsett     Polk      Pope  Prairie    Pulaski  Randolph    Saline    Scott   Searcy Sebastian    Sevier    Sharp St. Francis    Stone     Union   Unknown Van Buren Washington     White Woodruff      Yell    Alameda  Alpine   Amador     Butte Calaveras    Colusa Contra Costa Del Norte El Dorado     Fresno     Glenn  Humboldt   Imperial     Inyo       Kern      Kings      Lake    Lassen Los Angeles    Madera      Marin Mariposa Mendocino     Merced   Modoc     Mono   Monterey      Napa    Nevada      Orange    Placer   Plumas   Riverside Sacramento San Benito San Bernardino   San Diego San Francisco San Joaquin San Luis Obispo  San Mateo Santa Barbara Santa Clara Santa Cruz    Shasta  Sierra Siskiyou     Solano     Sonoma Stanislaus    Sutter    Tehama  Trinity     Tulare  Tuolumne Unknown    Ventura      Yolo      Yuba      Adams  Alamosa   Arapahoe Archuleta    Baca     Bent    Boulder Broomfield  Chaffee Cheyenne Clear Creek  Conejos Costilla  Crowley  Custer    Delta     Denver Dolores   Douglas     Eagle    El Paso   Elbert   Fremont  Garfield  Gilpin    Grand Gunnison Hinsdale Huerfano Jackson  Jefferson   Kiowa Kit Carson  La Plata     Lake   Larimer Las Animas  Lincoln     Logan      Mesa Mineral   Moffat Montezuma  Montrose    Morgan    Otero    Ouray     Park Phillips   Pitkin  Prowers    Pueblo Rio Blanco Rio Grande    Routt Saguache San Juan San Miguel Sedgwick    Summit   Teller Unknown Washington       Weld     Yuma   Fairfield   Hartford Litchfield Middlesex  New Haven New London   Tolland  Unknown   Windham      Kent New Castle     Sussex  Unknown District of Columbia    Alachua     Baker        Bay  Bradford    Brevard     Broward   Calhoun Charlotte    Citrus       Clay    Collier  Columbia    DeSoto     Dixie      Duval   Escambia   Flagler  Franklin   Gadsden Gilchrist   Glades      Gulf  Hamilton    Hardee    Hendry  Hernando Highlands Hillsborough    Holmes Indian River   Jackson Jefferson Lafayette       Lake        Lee       Leon      Levy   Liberty   Madison    Manatee     Marion    Martin  Miami-Dade    Monroe    Nassau   Okaloosa Okeechobee     Orange    Osceola Palm Beach      Pasco   Pinellas       Polk    Putnam Santa Rosa   Sarasota   Seminole  St. Johns  St. Lucie    Sumter  Suwannee    Taylor     Union   Unknown    Volusia   Wakulla    Walton Washington   Appling Atkinson     Bacon    Baker   Baldwin     Banks    Barrow    Bartow  Ben Hill  Berrien       Bibb Bleckley Brantley    Brooks     Bryan   Bulloch     Burke     Butts  Calhoun    Camden  Candler   Carroll   Catoosa  Charlton    Chatham Chattahoochee Chattooga   Cherokee    Clarke     Clay    Clayton   Clinch       Cobb    Coffee  Colquitt  Columbia      Cook    Coweta Crawford     Crisp     Dade    Dawson     DeKalb   Decatur     Dodge    Dooly Dougherty   Douglas     Early   Echols Effingham    Elbert   Emanuel    Evans    Fannin   Fayette     Floyd   Forsyth  Franklin     Fulton    Gilmer Glascock     Glynn    Gordon     Grady    Greene   Gwinnett Habersham       Hall  Hancock  Haralson    Harris      Hart    Heard      Henry   Houston    Irwin   Jackson   Jasper Jeff Davis Jefferson  Jenkins  Johnson     Jones    Lamar   Lanier   Laurens       Lee   Liberty  Lincoln     Long   Lowndes   Lumpkin    Macon   Madison   Marion  McDuffie McIntosh Meriwether   Miller  Mitchell    Monroe Montgomery    Morgan    Murray   Muscogee    Newton    Oconee Oglethorpe  Paulding     Peach   Pickens    Pierce     Pike      Polk  Pulaski    Putnam Quitman    Rabun Randolph   Richmond  Rockdale   Schley  Screven Seminole  Spalding  Stephens  Stewart    Sumter   Talbot Taliaferro  Tattnall   Taylor  Telfair  Terrell    Thomas      Tift    Toombs    Towns Treutlen     Troup   Turner   Twiggs     Union   Unknown     Upson    Walker    Walton      Ware   Warren Washington     Wayne Webster  Wheeler     White  Whitfield   Wilcox   Wilkes Wilkinson     Worth   Unknown    Hawaii   Honolulu Kalawao    Kauai      Maui Unknown        Ada    Adams   Bannock Bear Lake  Benewah   Bingham    Blaine    Boise    Bonner Bonneville Boundary    Butte   Camas     Canyon  Caribou    Cassia   Clark Clearwater   Custer   Elmore Franklin  Fremont      Gem  Gooding    Idaho Jefferson    Jerome  Kootenai     Latah    Lemhi    Lewis  Lincoln   Madison  Minidoka Nez Perce   Oneida   Owyhee   Payette    Power Shoshone    Teton Twin Falls Unknown   Valley Washington     Adams Alexander     Bond     Boone    Brown    Bureau  Calhoun  Carroll      Cass  Champaign Christian    Clark     Clay   Clinton     Coles        Cook Crawford Cumberland  De Witt    DeKalb   Douglas     DuPage    Edgar  Edwards Effingham   Fayette     Ford  Franklin    Fulton Gallatin   Greene    Grundy Hamilton  Hancock   Hardin Henderson     Henry  Iroquois   Jackson   Jasper Jefferson    Jersey Jo Daviess  Johnson       Kane  Kankakee   Kendall      Knox   LaSalle       Lake Lawrence       Lee Livingston     Logan     Macon  Macoupin    Madison    Marion Marshall    Mason   Massac McDonough    McHenry    McLean   Menard   Mercer    Monroe Montgomery    Morgan Moultrie      Ogle    Peoria     Perry    Piatt     Pike    Pope  Pulaski   Putnam  Randolph Richland Rock Island    Saline  Sangamon Schuyler    Scott    Shelby  St. Clair    Stark Stephenson  Tazewell     Union   Unknown Vermilion   Wabash    Warren Washington    Wayne    White Whiteside       Will Williamson  Winnebago  Woodford     Adams      Allen Bartholomew   Benton Blackford     Boone    Brown  Carroll      Cass     Clark      Clay   Clinton Crawford   Daviess    DeKalb  Dearborn   Decatur  Delaware    Dubois    Elkhart   Fayette     Floyd Fountain Franklin   Fulton    Gibson     Grant    Greene   Hamilton   Hancock  Harrison Hendricks     Henry    Howard Huntington   Jackson    Jasper      Jay Jefferson  Jennings   Johnson      Knox Kosciusko  LaGrange   LaPorte       Lake  Lawrence   Madison     Marion  Marshall   Martin     Miami    Monroe Montgomery    Morgan   Newton     Noble     Ohio   Orange     Owen    Parke    Perry     Pike    Porter     Posey  Pulaski    Putnam  Randolph    Ripley     Rush     Scott    Shelby  Spencer St. Joseph   Starke   Steuben Sullivan Switzerland Tippecanoe   Tipton    Union Unknown Vanderburgh Vermillion      Vigo    Wabash   Warren   Warrick Washington     Wayne     Wells     White   Whitley    Adair    Adams Allamakee Appanoose  Audubon    Benton Black Hawk     Boone    Bremer Buchanan Buena Vista   Butler  Calhoun   Carroll     Cass    Cedar Cerro Gordo Cherokee Chickasaw   Clarke      Clay  Clayton   Clinton  Crawford    Dallas    Davis  Decatur  Delaware Des Moines Dickinson   Dubuque    Emmet  Fayette    Floyd Franklin  Fremont   Greene   Grundy  Guthrie  Hamilton  Hancock   Hardin Harrison     Henry   Howard Humboldt      Ida     Iowa   Jackson    Jasper Jefferson    Johnson     Jones   Keokuk  Kossuth       Lee       Linn    Louisa    Lucas     Lyon  Madison   Mahaska    Marion  Marshall    Mills Mitchell   Monona   Monroe Montgomery Muscatine   O'Brien  Osceola     Page Palo Alto  Plymouth Pocahontas       Polk Pottawattamie Poweshiek Ringgold      Sac     Scott   Shelby     Sioux     Story      Tama   Taylor    Union  Unknown Van Buren   Wapello    Warren Washington    Wayne   Webster Winnebago Winneshiek   Woodbury    Worth    Wright    Allen Anderson Atchison   Barber    Barton  Bourbon    Brown    Butler    Chase Chautauqua  Cherokee Cheyenne    Clark     Clay    Cloud   Coffey Comanche    Cowley  Crawford  Decatur Dickinson Doniphan   Douglas  Edwards     Elk     Ellis Ellsworth    Finney      Ford  Franklin     Geary     Gove   Graham    Grant     Gray Greeley Greenwood Hamilton   Harper    Harvey  Haskell Hodgeman  Jackson Jefferson  Jewell    Johnson   Kearny  Kingman    Kiowa  Labette    Lane Leavenworth Lincoln     Linn    Logan      Lyon   Marion Marshall McPherson    Meade     Miami Mitchell Montgomery   Morris   Morton   Nemaha   Neosho     Ness   Norton    Osage Osborne   Ottawa   Pawnee Phillips Pottawatomie    Pratt  Rawlins      Reno Republic     Rice     Riley    Rooks     Rush  Russell    Saline    Scott   Sedgwick    Seward   Shawnee Sheridan  Sherman   Smith Stafford  Stanton  Stevens   Sumner   Thomas    Trego  Unknown Wabaunsee Wallace Washington Wichita   Wilson Woodson  Wyandotte     Adair    Allen Anderson  Ballard    Barren     Bath      Bell     Boone  Bourbon      Boyd    Boyle  Bracken Breathitt Breckinridge   Bullitt   Butler Caldwell  Calloway  Campbell Carlisle  Carroll   Carter    Casey Christian    Clark     Clay  Clinton Crittenden Cumberland   Daviess Edmonson  Elliott   Estill    Fayette  Fleming    Floyd  Franklin   Fulton Gallatin  Garrard    Grant    Graves   Grayson    Green   Greenup  Hancock    Hardin   Harlan Harrison     Hart Henderson    Henry  Hickman   Hopkins  Jackson  Jefferson Jessamine  Johnson    Kenton    Knott      Knox    Larue    Laurel Lawrence      Lee   Leslie  Letcher    Lewis  Lincoln Livingston     Logan     Lyon   Madison Magoffin   Marion Marshall   Martin    Mason McCracken McCreary   McLean    Meade  Menifee   Mercer Metcalfe   Monroe Montgomery   Morgan Muhlenberg    Nelson Nicholas      Ohio    Oldham     Owen   Owsley Pendleton     Perry      Pike   Powell   Pulaski Robertson Rockcastle    Rowan  Russell     Scott    Shelby  Simpson  Spencer    Taylor     Todd    Trigg  Trimble    Union Unknown    Warren Washington    Wayne  Webster   Whitley    Wolfe Woodford    Acadia     Allen Ascension Assumption Avoyelles Beauregard Bienville   Bossier      Caddo  Calcasieu Caldwell  Cameron Catahoula Claiborne Concordia   De Soto East Baton Rouge East Carroll East Feliciana Evangeline  Franklin     Grant    Iberia Iberville   Jackson  Jefferson Jefferson Davis  LaSalle  Lafayette Lafourche   Lincoln Livingston   Madison Morehouse Natchitoches    Orleans   Ouachita Plaquemines Pointe Coupee   Rapides Red River  Richland    Sabine St. Bernard St. Charles St. Helena St. James St. John the Baptist St. Landry St. Martin  St. Mary St. Tammany Tangipahoa   Tensas Terrebonne     Union   Unknown Vermilion    Vernon Washington   Webster West Baton Rouge West Carroll West Feliciana      Winn Androscoggin Aroostook Cumberland Franklin  Hancock Kennebec     Knox  Lincoln   Oxford Penobscot Piscataquis Sagadahoc Somerset Unknown    Waldo Washington      York  Allegany Anne Arundel  Baltimore Baltimore city   Calvert  Caroline   Carroll     Cecil   Charles Dorchester  Frederick  Garrett   Harford     Howard     Kent Montgomery Prince George's Queen Anne's Somerset St. Mary's    Talbot Unknown Washington  Wicomico Worcester    Barnstable Berkshire    Bristol    Dukes      Essex  Franklin    Hampden Hampshire  Middlesex Nantucket    Norfolk   Plymouth    Suffolk   Unknown  Worcester   Alcona    Alger   Allegan   Alpena   Antrim   Arenac   Baraga     Barry       Bay   Benzie   Berrien    Branch   Calhoun      Cass Charlevoix Cheboygan Chippewa    Clare   Clinton Crawford     Delta Dickinson     Eaton    Emmet    Genesee  Gladwin  Gogebic Grand Traverse   Gratiot Hillsdale  Houghton    Huron    Ingham     Ionia    Iosco     Iron  Isabella   Jackson Kalamazoo Kalkaska       Kent Keweenaw     Lake    Lapeer Leelanau   Lenawee Livingston     Luce Mackinac     Macomb Manistee Marquette    Mason  Mecosta Menominee   Midland Missaukee    Monroe  Montcalm Montmorency  Muskegon   Newaygo    Oakland    Oceana   Ogemaw Ontonagon  Osceola   Oscoda   Otsego     Ottawa Presque Isle Roscommon   Saginaw  Sanilac Schoolcraft Shiawassee St. Clair St. Joseph   Tuscola   Unknown Van Buren  Washtenaw      Wayne  Wexford    Aitkin      Anoka    Becker  Beltrami    Benton Big Stone Blue Earth     Brown   Carlton    Carver      Cass Chippewa   Chisago      Clay Clearwater    Cook Cottonwood Crow Wing     Dakota    Dodge   Douglas Faribault Fillmore  Freeborn   Goodhue    Grant   Hennepin  Houston  Hubbard    Isanti    Itasca  Jackson  Kanabec Kandiyohi  Kittson Koochiching Lac qui Parle     Lake Lake of the Woods  Le Sueur  Lincoln      Lyon Mahnomen Marshall    Martin    McLeod   Meeker Mille Lacs  Morrison     Mower   Murray  Nicollet    Nobles   Norman   Olmsted Otter Tail Pennington      Pine Pipestone      Polk     Pope     Ramsey Red Lake  Redwood Renville      Rice     Rock   Roseau     Scott Sherburne   Sibley St. Louis    Stearns    Steele  Stevens    Swift      Todd Traverse  Unknown  Wabasha   Wadena    Waseca Washington  Watonwan   Wilkin    Winona    Wright Yellow Medicine       Adams    Alcorn    Amite    Attala   Benton   Bolivar   Calhoun  Carroll Chickasaw  Choctaw Claiborne    Clarke      Clay   Coahoma    Copiah Covington     DeSoto   Forrest Franklin    George   Greene   Grenada   Hancock  Harrison      Hinds    Holmes Humphreys Issaquena  Itawamba   Jackson    Jasper Jefferson Jefferson Davis     Jones   Kemper Lafayette     Lamar Lauderdale Lawrence     Leake       Lee   Leflore   Lincoln   Lowndes   Madison    Marion  Marshall    Monroe Montgomery   Neshoba    Newton   Noxubee Oktibbeha    Panola Pearl River    Perry      Pike  Pontotoc  Prentiss  Quitman    Rankin     Scott  Sharkey   Simpson     Smith    Stone Sunflower Tallahatchie      Tate    Tippah Tishomingo   Tunica     Union Unknown  Walthall    Warren Washington     Wayne  Webster Wilkinson   Winston Yalobusha     Yazoo     Adair   Andrew Atchison   Audrain     Barry   Barton    Bates   Benton Bollinger      Boone  Buchanan    Butler Caldwell  Callaway    Camden Cape Girardeau  Carroll   Carter      Cass    Cedar Chariton Christian    Clark      Clay  Clinton      Cole    Cooper  Crawford     Dade   Dallas  Daviess   DeKalb     Dent  Douglas   Dunklin  Franklin Gasconade   Gentry     Greene   Grundy Harrison    Henry  Hickory     Holt   Howard    Howell     Iron    Jackson    Jasper  Jefferson   Johnson    Joplin Kansas City     Knox   Laclede Lafayette  Lawrence    Lewis   Lincoln     Linn Livingston    Macon  Madison   Maries    Marion  McDonald  Mercer    Miller Mississippi  Moniteau   Monroe Montgomery   Morgan New Madrid    Newton   Nodaway   Oregon    Osage    Ozark  Pemiscot     Perry    Pettis    Phelps     Pike    Platte      Polk   Pulaski   Putnam    Ralls Randolph      Ray Reynolds   Ripley    Saline Schuyler Scotland     Scott  Shannon   Shelby St. Charles St. Clair St. Francois  St. Louis St. Louis city Ste. Genevieve  Stoddard     Stone Sullivan     Taney    Texas Unknown   Vernon    Warren Washington    Wayne   Webster   Worth   Wright Beaverhead  Big Horn   Blaine Broadwater   Carbon  Carter   Cascade Chouteau   Custer Daniels   Dawson Deer Lodge   Fallon   Fergus  Flathead  Gallatin Garfield   Glacier Golden Valley  Granite      Hill Jefferson Judith Basin     Lake Lewis and Clark Liberty  Lincoln  Madison  McCone Meagher Mineral  Missoula Musselshell     Park Petroleum Phillips  Pondera Powder River   Powell Prairie   Ravalli Richland Roosevelt  Rosebud  Sanders Sheridan Silver Bow Stillwater Sweet Grass    Teton    Toole Treasure Unknown   Valley Wheatland  Wibaux Yellowstone     Adams Antelope Arthur  Banner Blaine    Boone Box Butte     Boyd    Brown   Buffalo     Burt   Butler      Cass    Cedar    Chase   Cherry Cheyenne     Clay    Colfax   Cuming   Custer    Dakota    Dawes    Dawson   Deuel    Dixon     Dodge    Douglas   Dundy Fillmore Franklin Frontier   Furnas      Gage  Garden Garfield   Gosper   Grant  Greeley      Hall Hamilton   Harlan   Hayes Hitchcock     Holt  Hooker   Howard Jefferson  Johnson  Kearney    Keith Keya Paha  Kimball     Knox  Lancaster   Lincoln   Logan    Loup   Madison McPherson  Merrick  Morrill    Nance   Nemaha Nuckolls     Otoe  Pawnee  Perkins   Phelps   Pierce    Platte     Polk Red Willow Richardson    Rock    Saline      Sarpy  Saunders Scotts Bluff   Seward Sheridan Sherman   Sioux  Stanton   Thayer  Thomas Thurston  Unknown   Valley Washington    Wayne  Webster Wheeler     York Carson City Churchill       Clark  Douglas      Elko Esmeralda  Eureka Humboldt   Lander  Lincoln      Lyon Mineral       Nye Pershing  Storey Unknown     Washoe White Pine       Belknap  Carroll Cheshire     Coos  Grafton Hillsborough Merrimack Rockingham Strafford Sullivan  Unknown   Atlantic     Bergen Burlington     Camden  Cape May Cumberland      Essex Gloucester     Hudson Hunterdon     Mercer  Middlesex   Monmouth     Morris      Ocean    Passaic     Salem   Somerset    Sussex      Union   Unknown    Warren Bernalillo  Catron    Chaves    Cibola   Colfax     Curry De Baca   Do\\u00f1a Ana      Eddy    Grant Guadalupe Harding  Hidalgo       Lea  Lincoln Los Alamos      Luna   McKinley    Mora     Otero     Quay Rio Arriba Roosevelt  San Juan San Miguel  Sandoval  Santa Fe   Sierra  Socorro     Taos Torrance    Union Unknown  Valencia    Albany Allegany    Broome Cattaraugus    Cayuga Chautauqua   Chemung Chenango  Clinton  Columbia Cortland Delaware   Dutchess       Erie    Essex Franklin   Fulton   Genesee    Greene Hamilton  Herkimer Jefferson    Lewis Livingston   Madison     Monroe Montgomery      Nassau New York City   Niagara    Oneida   Onondaga   Ontario     Orange  Orleans    Oswego   Otsego    Putnam Rensselaer   Rockland  Saratoga Schenectady Schoharie Schuyler   Seneca St. Lawrence   Steuben     Suffolk  Sullivan     Tioga  Tompkins    Ulster Unknown    Warren Washington     Wayne Westchester  Wyoming    Yates       Alamance Alexander Alleghany     Anson     Ashe    Avery  Beaufort    Bertie    Bladen Brunswick  Buncombe     Burke  Cabarrus  Caldwell   Camden  Carteret  Caswell   Catawba   Chatham  Cherokee   Chowan     Clay Cleveland  Columbus    Craven Cumberland Currituck     Dare  Davidson     Davie    Duplin     Durham Edgecombe    Forsyth  Franklin     Gaston    Gates   Graham Granville    Greene   Guilford   Halifax   Harnett   Haywood Henderson  Hertford      Hoke     Hyde   Iredell   Jackson   Johnston    Jones       Lee    Lenoir   Lincoln     Macon  Madison    Martin  McDowell Mecklenburg Mitchell Montgomery     Moore      Nash New Hanover Northampton    Onslow    Orange  Pamlico Pasquotank    Pender Perquimans    Person      Pitt     Polk  Randolph  Richmond   Robeson Rockingham     Rowan Rutherford   Sampson  Scotland    Stanly    Stokes     Surry    Swain Transylvania  Tyrrell      Union     Vance       Wake   Warren Washington   Watauga     Wayne    Wilkes    Wilson    Yadkin   Yancey        Adams   Barnes   Benson Billings Bottineau   Bowman    Burke   Burleigh       Cass Cavalier   Dickey  Divide     Dunn     Eddy   Emmons   Foster Golden Valley Grand Forks    Grant   Griggs Hettinger   Kidder  LaMoure    Logan  McHenry McIntosh McKenzie   McLean   Mercer    Morton Mountrail   Nelson   Oliver  Pembina   Pierce   Ramsey   Ransom Renville Richland   Rolette  Sargent Sheridan    Sioux   Slope     Stark   Steele  Stutsman   Towner   Traill Unknown     Walsh      Ward    Wells  Williams                   Saipan Tinian Unknown    Adams     Allen   Ashland Ashtabula    Athens  Auglaize   Belmont     Brown     Butler  Carroll Champaign     Clark  Clermont   Clinton Columbiana Coshocton  Crawford   Cuyahoga     Darke  Defiance  Delaware      Erie Fairfield  Fayette   Franklin    Fulton   Gallia    Geauga    Greene Guernsey   Hamilton   Hancock   Hardin Harrison    Henry  Highland  Hocking    Holmes     Huron   Jackson Jefferson      Knox      Lake  Lawrence   Licking     Logan    Lorain      Lucas   Madison  Mahoning    Marion    Medina    Meigs    Mercer     Miami   Monroe Montgomery   Morgan    Morrow Muskingum    Noble    Ottawa Paulding    Perry  Pickaway     Pike   Portage    Preble    Putnam  Richland      Ross  Sandusky    Scioto    Seneca    Shelby      Stark     Summit  Trumbull Tuscarawas     Union Unknown Van Wert   Vinton    Warren Washington     Wayne  Williams      Wood  Wyandot     Adair  Alfalfa    Atoka   Beaver   Beckham   Blaine     Bryan     Caddo  Canadian    Carter  Cherokee  Choctaw Cimarron  Cleveland     Coal  Comanche   Cotton    Craig     Creek    Custer  Delaware    Dewey    Ellis  Garfield    Garvin     Grady    Grant    Greer   Harmon   Harper  Haskell   Hughes   Jackson Jefferson Johnston       Kay Kingfisher    Kiowa  Latimer  Le Flore   Lincoln     Logan     Love    Major Marshall     Mayes   McClain McCurtain McIntosh   Murray  Muskogee    Noble   Nowata Okfuskee   Oklahoma  Okmulgee     Osage    Ottawa   Pawnee     Payne Pittsburg  Pontotoc Pottawatomie Pushmataha Roger Mills    Rogers  Seminole  Sequoyah  Stephens     Texas  Tillman      Tulsa Unknown   Wagoner Washington  Washita    Woods  Woodward    Baker   Benton Clackamas  Clatsop Columbia     Coos    Crook    Curry Deschutes  Douglas Gilliam   Grant  Harney Hood River   Jackson Jefferson Josephine  Klamath     Lake      Lane   Lincoln      Linn   Malheur     Marion   Morrow  Multnomah      Polk Sherman Tillamook  Umatilla     Union Unknown Wallowa    Wasco Washington Wheeler   Yamhill        Adams  Allegheny Armstrong    Beaver   Bedford      Berks     Blair  Bradford      Bucks    Butler   Cambria Cameron    Carbon    Centre    Chester  Clarion Clearfield  Clinton  Columbia  Crawford Cumberland    Dauphin   Delaware      Elk      Erie   Fayette  Forest  Franklin   Fulton   Greene Huntingdon   Indiana Jefferson  Juniata Lackawanna  Lancaster  Lawrence   Lebanon     Lehigh    Luzerne  Lycoming   McKean    Mercer   Mifflin    Monroe Montgomery  Montour Northampton Northumberland    Perry Philadelphia      Pike   Potter Schuylkill   Snyder  Somerset Sullivan Susquehanna    Tioga     Union Unknown  Venango   Warren Washington    Wayne Westmoreland  Wyoming       York    Adjuntas   Aguada Aguadilla Aguas Buenas Aibonito   Anasco   Arecibo   Arroyo Barceloneta Barranquitas   Bayamon Cabo Rojo    Caguas    Camuy Canovanas  Carolina   Catano    Cayey    Ceiba   Ciales    Cidra    Coamo  Comerio   Corozal Culebra    Dorado   Fajardo  Florida  Guanica  Guayama Guayanilla  Guaynabo    Gurabo  Hatillo Hormigueros   Humacao  Isabela   Jayuya Juana Diaz   Juncos    Lajas    Lares Las Marias Las Piedras    Loiza Luquillo    Manati  Maricao  Maunabo  Mayaguez     Moca  Morovis  Naguabo Naranjito Orocovis Patillas Penuelas     Ponce Quebradillas   Rincon Rio Grande Sabana Grande  Salinas San German   San Juan San Lorenzo San Sebastian Santa Isabel  Toa Alta  Toa Baja Trujillo Alto   Unknown   Utuado Vega Alta Vega Baja  Vieques Villalba  Yabucoa    Yauco      Bristol      Kent   Newport Providence   Unknown Washington      Abbeville     Aiken Allendale  Anderson   Bamberg  Barnwell   Beaufort   Berkeley  Calhoun Charleston  Cherokee   Chester Chesterfield Clarendon  Colleton Darlington    Dillon Dorchester Edgefield Fairfield  Florence Georgetown Greenville Greenwood   Hampton      Horry    Jasper   Kershaw Lancaster   Laurens       Lee  Lexington    Marion  Marlboro McCormick  Newberry    Oconee Orangeburg   Pickens   Richland    Saluda Spartanburg    Sumter     Union Unknown Williamsburg       York       Aurora    Beadle  Bennett Bon Homme Brookings     Brown    Brule  Buffalo    Butte Campbell Charles Mix    Clark      Clay Codington   Corson   Custer   Davison      Day    Deuel    Dewey  Douglas  Edmunds Fall River    Faulk    Grant  Gregory   Haakon   Hamlin     Hand   Hanson Harding    Hughes Hutchinson    Hyde  Jackson  Jerauld   Jones Kingsbury     Lake  Lawrence   Lincoln    Lyman Marshall   McCook McPherson     Meade Mellette    Miner  Minnehaha    Moody Oglala Lakota Pennington  Perkins   Potter  Roberts  Sanborn    Spink  Stanley   Sully     Todd    Tripp   Turner     Union Unknown Walworth   Yankton  Ziebach  Anderson   Bedford   Benton   Bledsoe    Blount   Bradley  Campbell   Cannon   Carroll    Carter  Cheatham   Chester Claiborne     Clay     Cocke    Coffee  Crockett Cumberland   Davidson    DeKalb   Decatur   Dickson      Dyer   Fayette  Fentress  Franklin    Gibson     Giles  Grainger    Greene   Grundy   Hamblen   Hamilton  Hancock  Hardeman    Hardin   Hawkins   Haywood Henderson     Henry   Hickman  Houston Humphreys  Jackson Jefferson   Johnson       Knox      Lake Lauderdale  Lawrence    Lewis   Lincoln    Loudon     Macon   Madison    Marion  Marshall     Maury    McMinn   McNairy    Meigs    Monroe Montgomery    Moore   Morgan     Obion   Overton    Perry  Pickett     Polk    Putnam      Rhea     Roane Robertson Rutherford    Scott Sequatchie    Sevier     Shelby     Smith  Stewart  Sullivan     Sumner    Tipton Trousdale   Unicoi    Union   Unknown Van Buren    Warren Washington     Wayne   Weakley     White Williamson    Wilson  Anderson   Andrews  Angelina  Aransas   Archer Armstrong  Atascosa   Austin   Bailey  Bandera   Bastrop  Baylor       Bee       Bell       Bexar   Blanco Borden   Bosque     Bowie   Brazoria     Brazos Brewster Briscoe   Brooks     Brown Burleson    Burnet  Caldwell   Calhoun Callahan    Cameron     Camp   Carson     Cass   Castro  Chambers  Cherokee Childress     Clay  Cochran     Coke  Coleman     Collin Collingsworth Colorado     Comal Comanche   Concho     Cooke   Coryell  Cottle    Crane Crockett   Crosby Culberson   Dallam      Dallas    Dawson    DeWitt Deaf Smith   Delta     Denton Dickens   Dimmit   Donley    Duval Eastland      Ector  Edwards    El Paso     Ellis     Erath    Falls    Fannin  Fayette   Fisher    Floyd   Foard  Fort Bend Franklin Freestone      Frio   Gaines  Galveston    Garza Gillespie Glasscock   Goliad  Gonzales      Gray   Grayson     Gregg    Grimes Guadalupe      Hale    Hall Hamilton Hansford Hardeman    Hardin      Harris  Harrison  Hartley  Haskell       Hays Hemphill Henderson    Hidalgo      Hill   Hockley      Hood   Hopkins  Houston    Howard Hudspeth      Hunt Hutchinson   Irion     Jack   Jackson   Jasper Jeff Davis  Jefferson Jim Hogg Jim Wells   Johnson     Jones    Karnes   Kaufman  Kendall  Kenedy    Kent      Kerr  Kimble   King  Kinney   Kleberg     Knox La Salle     Lamar      Lamb Lampasas    Lavaca      Lee     Leon   Liberty Limestone Lipscomb Live Oak    Llano Loving    Lubbock     Lynn   Madison   Marion   Martin    Mason Matagorda  Maverick McCulloch   McLennan McMullen    Medina   Menard   Midland     Milam    Mills Mitchell Montague Montgomery     Moore   Morris  Motley Nacogdoches   Navarro   Newton    Nolan     Nueces Ochiltree  Oldham    Orange Palo Pinto   Panola    Parker    Parmer    Pecos      Polk     Potter Presidio    Rains   Randall   Reagan     Real Red River   Reeves  Refugio Roberts Robertson  Rockwall  Runnels      Rusk   Sabine San Augustine San Jacinto San Patricio San Saba Schleicher    Scurry Shackelford    Shelby  Sherman      Smith Somervell     Starr Stephens Sterling Stonewall   Sutton  Swisher     Tarrant    Taylor Terrell    Terry Throckmorton     Titus Tom Green     Travis  Trinity    Tyler Unknown   Upshur   Upton    Uvalde Val Verde Van Zandt  Victoria    Walker    Waller     Ward Washington       Webb   Wharton  Wheeler   Wichita Wilbarger   Willacy Williamson    Wilson  Winkler      Wise      Wood   Yoakum    Young   Zapata   Zavala   Beaver Box Elder     Cache   Carbon Daggett      Davis Duchesne    Emery Garfield    Grand      Iron     Juab     Kane  Millard   Morgan   Piute    Rich  Salt Lake  San Juan   Sanpete   Sevier    Summit    Tooele   Uintah  Unknown       Utah   Wasatch Washington   Wayne      Weber  Addison Bennington Caledonia Chittenden   Essex Franklin Grand Isle Lamoille   Orange  Orleans  Rutland Unknown Washington  Windham  Windsor      St. Croix St. John St. Thomas Unknown  Accomack Albemarle Alexandria city Alleghany   Amelia  Amherst Appomattox Arlington   Augusta    Bath   Bedford    Bland Botetourt Bristol city Brunswick Buchanan Buckingham Buena Vista city  Campbell Caroline   Carroll Charles City Charlotte Charlottesville city Chesapeake city Chesterfield   Clarke Colonial Heights city Covington city   Craig  Culpeper Cumberland Danville city Dickenson Dinwiddie Emporia city    Essex    Fairfax Fairfax city Falls Church city  Fauquier    Floyd Fluvanna  Franklin Franklin city Frederick Fredericksburg city Galax city    Giles Gloucester Goochland  Grayson   Greene Greensville  Halifax Hampton city   Hanover Harrisonburg city    Henrico     Henry Highland Hopewell city Isle of Wight James City King George King William King and Queen Lancaster      Lee Lexington city    Loudoun   Louisa Lunenburg Lynchburg city  Madison Manassas Park city Manassas city Martinsville city  Mathews Mecklenburg Middlesex Montgomery   Nelson New Kent Newport News city Norfolk city Northampton Northumberland Norton city Nottoway   Orange     Page  Patrick Petersburg city Pittsylvania Poquoson city Portsmouth city Powhatan Prince Edward Prince George Prince William  Pulaski Radford city Rappahannock Richmond Richmond city   Roanoke Roanoke city Rockbridge Rockingham  Russell Salem city    Scott Shenandoah     Smyth Southampton Spotsylvania  Stafford Staunton city Suffolk city    Surry   Sussex  Tazewell Unknown Virginia Beach city    Warren Washington Waynesboro city Westmoreland Williamsburg city Winchester city      Wise    Wythe      York      Adams   Asotin     Benton    Chelan  Clallam     Clark Columbia   Cowlitz   Douglas   Ferry  Franklin Garfield     Grant Grays Harbor   Island Jefferson       King    Kitsap  Kittitas Klickitat     Lewis  Lincoln    Mason  Okanogan  Pacific Pend Oreille     Pierce San Juan    Skagit Skamania  Snohomish    Spokane  Stevens  Thurston Unknown Wahkiakum Walla Walla   Whatcom   Whitman     Yakima       Barbour  Berkeley    Boone  Braxton   Brooke    Cabell Calhoun     Clay Doddridge   Fayette   Gilmer    Grant Greenbrier Hampshire  Hancock    Hardy  Harrison  Jackson Jefferson   Kanawha    Lewis  Lincoln     Logan   Marion Marshall    Mason McDowell    Mercer  Mineral    Mingo Monongalia   Monroe   Morgan Nicholas      Ohio Pendleton Pleasants Pocahontas  Preston    Putnam   Raleigh Randolph  Ritchie    Roane  Summers   Taylor   Tucker    Tyler Unknown   Upshur     Wayne Webster   Wetzel    Wirt      Wood  Wyoming     Adams  Ashland    Barron Bayfield      Brown  Buffalo  Burnett   Calumet  Chippewa     Clark  Columbia Crawford       Dane     Dodge      Door   Douglas      Dunn Eau Claire Florence Fond du Lac   Forest     Grant     Green Green Lake      Iowa     Iron   Jackson Jefferson    Juneau    Kenosha  Kewaunee La Crosse Lafayette  Langlade   Lincoln Manitowoc  Marathon Marinette Marquette Menominee  Milwaukee    Monroe    Oconto    Oneida  Outagamie   Ozaukee    Pepin    Pierce      Polk   Portage    Price     Racine Richland      Rock     Rusk      Sauk   Sawyer   Shawano Sheboygan St. Croix   Taylor Trempealeau   Unknown   Vernon    Vilas  Walworth Washburn Washington   Waukesha   Waupaca  Waushara  Winnebago      Wood    Albany Big Horn  Campbell   Carbon Converse    Crook   Fremont   Goshen Hot Springs  Johnson   Laramie  Lincoln   Natrona Niobrara      Park   Platte  Sheridan Sublette Sweetwater     Teton     Uinta Unknown Washakie   Weston\\nconfirmed_cases  370662.0  1127507.0  174840.0  148219.0  349468.0  119697.0  201832.0  740887.0  266821.0  120792.0  291187.0  73785.0  223181.0  108488.0  81456.0  305190.0  382578.0  101927.0  41572.0  283436.0  100997.0  494812.0  293052.0  350520.0  592516.0  563060.0  290139.0  774935.0  101831.0  378225.0  135981.0  69527.0  142583.0  109359.0  619518.0  379999.0  4241109.0  82672.0   450940.0  146599.0  1062969.0  502126.0  140960.0  102042.0  1696898.0  171541.0  193639.0  877630.0  2778755.0  118429.0  1836756.0  804949.0  104120.0  152000.0  229100.0  137271.0  334536.0  1280177.0  512115.0  99323.0  440143.0   267773.0  1664904.0  500720.0   119259.0  110796.0  165170.0                 2875.0                    17883.0  1448355.0           102289.0             13174.0         3828.0                 9438.0                     335620.0         2224.0                 86134.0                225097.0                   20323.0               33528.0              32264.0                      943.0                  303951.0          19998.0             41807.0                  31903.0             2869.0                            5825.0                17570.0                738.0                         21088.0  23533.0                    29381.0                    3181.0                   18308.0  834942.0  478249.0  994627.0  328861.0  219039.0  22228.0  126418.0  30144245.0  885235.0  1324578.0  5444110.0  2317603.0   624614.0    13.0  672192.0  2730124.0  99987.0  99075.0  115503.0  1510270.0  166872.0  67265.0  11947.0  160475.0  171422.0  89904.0  84409.0  88145.0   41703.0  113149.0  72955.0  730103.0  324006.0   429641.0  98229.0  32820.0  69245.0  88039.0  555777.0  76393.0  49114.0  426518.0  65383.0  273055.0   93727.0   387859.0  100883.0     224445.0  82694.0  147287.0  644732.0  176017.0   27181.0  120924.0  207650.0  419650.0      71541.0  101164.0  281149.0  83727.0  33609.0  221173.0    365261.0  32879.0    30998.0  52758.0  45995.0  72802.0  26573.0  113007.0  45707.0  168165.0  78041.0  456667.0  37709.0  2027440.0  104690.0  513355.0  34664.0  32470.0  789668.0  255985.0  68184.0    330667.0  58187.0  195244.0  358737.0   43635.0  1985759.0  268318.0  18864.0  257123.0  4319856.0  2827.0  85707.0  516050.0   65984.0  100912.0    3292835.0   41567.0  294763.0  5401142.0  115881.0  115677.0  2486469.0  39360.0  6042885.0  1521392.0  112498.0  226223.0  59976957.0  839936.0  1243628.0  17618.0  187074.0  1649808.0  9011.0  54922.0  1997925.0  384599.0  147546.0  11731923.0  838843.0  18471.0  12947120.0  4674911.0   261093.0     12451039.0  10827207.0     2289679.0   3823964.0        768331.0  2089742.0     1801476.0   4664377.0   537760.0  407494.0  1541.0  58878.0  1377978.0  1530230.0  3207195.0  391378.0  164470.0  10621.0  3125147.0  102183.0     7.0  2713987.0  607446.0  250430.0  2987086.0  74118.0  2994287.0   21869.0  9609.0  24789.0  1110606.0   209279.0  83452.0   5049.0     17548.0  16036.0   9894.0  77278.0  7128.0  70023.0  4019537.0  1740.0  986875.0  338855.0  2548795.0  57250.0  196199.0  257918.0  7517.0  33703.0  78072.0   1153.0  12004.0  2251.0  2027485.0  2221.0    29535.0  116163.0  30104.0  924342.0    19544.0  24647.0  274126.0  418682.0  4404.0  23636.0   63488.0  125956.0  226881.0  61425.0  10051.0  22660.0  14693.0  65095.0  49097.0  646704.0    11557.0    29028.0  61898.0  30329.0   1829.0    26767.0   7719.0  158089.0  59737.0  6823.0    23610.0  1547929.0  35860.0   5920424.0  4264912.0   600463.0  504691.0  4415214.0   709833.0  398645.0  86781.0  313268.0  766563.0  2637082.0  1713448.0  37284.0            3644621.0  1541591.0  256360.0  1127568.0  185658.0  1900201.0  15184060.0  118466.0  661325.0  552253.0  1012841.0  2578370.0  673381.0  325820.0  135198.0  6021293.0  2339366.0  346073.0  104921.0  480190.0  100444.0  99486.0  147042.0  159846.0  254119.0  413531.0  626903.0  450851.0    8217627.0  149634.0     654832.0  511538.0  103870.0  182202.0  1449706.0  4205959.0  1854478.0  190288.0  101694.0  182737.0  2336760.0  1739926.0  958531.0  33036396.0  404045.0  403631.0  1072588.0   279833.0  7989282.0  2478503.0  9329977.0  1932695.0  4549325.0  3809838.0  398453.0  1015713.0  1722982.0  1823333.0  1109266.0  1518137.0  462427.0  473833.0  222786.0  153907.0  298430.0  2166172.0  205495.0  427588.0   201559.0  197080.0  88156.0  119374.0  19339.0  380511.0  102217.0  456504.0  664035.0  146494.0  96775.0  1092627.0  89879.0  93754.0  104963.0  203640.0  488052.0  164828.0  157599.0  56707.0  237126.0  80021.0  683872.0  257353.0  113221.0  1529891.0      274008.0  146289.0  1326975.0  955760.0  24688.0  1493989.0  72119.0  4129249.0  422102.0  414727.0  802019.0  117971.0  644912.0  35798.0  140768.0  62056.0  155760.0  3959866.0  224587.0  118964.0  81212.0  737932.0  778380.0  113959.0  52489.0  270963.0  139483.0  183614.0  74367.0  127354.0  408817.0  656120.0  865091.0  155600.0  5782192.0  178806.0  10234.0  631255.0  415333.0  147015.0  102432.0  5663706.0  355502.0  1914707.0  84044.0  132430.0  161563.0  107551.0  48328.0  1150536.0  657637.0  59714.0  424153.0  60394.0   134038.0  141284.0  72480.0  78698.0  105930.0  90541.0  60211.0  335684.0  171367.0  206053.0  42688.0  45491.0  860392.0  168061.0  54226.0  145285.0  40006.0  122993.0  52802.0   115814.0  53624.0  180717.0  145096.0    55777.0  102255.0  208575.0  1141744.0  542748.0  175445.0    75402.0  636032.0  137833.0  136663.0  154406.0  94217.0  298444.0  58192.0  137804.0  9682.0  75976.0  73439.0  1376105.0  389112.0  22992.0  70299.0  67839.0  318629.0  209739.0  88847.0  223565.0  35726.0     4573.0  151791.0  44540.0  86160.0  82232.0  304053.0  372076.0  236365.0  67023.0  48465.0  596588.0  72125.0  36221.0  131900.0  557231.0  207983.0  316976.0  419781.0  351196.0  28547.0   142521.0  212059.0  9976.0  53107.0  163969.0  1002619.0  59793.0  57591.0   65048.0  127181.0  869347.0  164214.0  1842606.0    22.0  15271.0  107138.0   202.0  3020647.0  11231.0  396378.0   15520.0  31014.0  251072.0  203479.0  16399.0  100177.0   717787.0  29320.0  11267.0  5064.0  1778085.0  37389.0  215304.0  5422.0    37385.0  14323.0  95785.0  56922.0  63736.0  88522.0  91135.0  60087.0  146739.0  200387.0  776898.0  143270.0  34816.0  16039.0  34304.0  338663.0  183280.0  182684.0  12456.0  75039.0  179449.0  49849.0  52348.0  50675.0   667360.0  1219.0  26460.0    83273.0  394127.0   23955.0  91338.0  383205.0  24368.0  179206.0  19208.0  83879.0  104809.0  1085820.0  158846.0  66176.0  65080.0  315141.0  329761.0  39394758.0  99258.0    57196.0  49878.0  494327.0  117070.0  5109381.0  61645.0  20478.0  234472.0  140948.0  59343.0  181017.0  110788.0  20217.0  66684.0  236260.0  30205.0  75597.0  11890.0   24029.0  217460.0  145818.0  298069.0  59687.0  182781.0  112214.0    92765.0  61581.0  3717903.0  855140.0  643440.0  245327.0  530269.0  4610889.0  86800.0  160532.0   167684.0  143957.0  544273.0  182810.0  1439638.0  203339.0  32648.0  58002.0  44261.0  138736.0  1451732.0  776125.0  41292.0  61147.0  196554.0   113644.0  198676.0  76807.0  265010.0  888866.0  106589.0  59293.0  73396.0  9085.0  45839.0  18455.0  248869.0  65036.0    856322.0  100015.0  857654.0  25010.0  20042.0  115258.0  1708334.0  21251.0   218421.0  571294.0  137058.0  310908.0  324807.0  52130.0  107429.0    64632.0  80241.0  56322.0  315596.0  4166034.0   342266.0  1924930.0  149572.0  137648.0  1937223.0    376952.0  37746.0   51795.0  302560.0  38518.0  83661.0  533200.0  598636.0  109047.0  206725.0  34063.0  167868.0  173121.0  235033.0  158600.0  532608.0  287876.0  1902484.0  163973.0  368977.0  73669.0  91455.0  85543.0  176759.0  361702.0  129720.0  1485922.0  316374.0  173288.0  810939.0  263657.0  411082.0   117587.0  267306.0  146204.0  87725.0  109967.0  107714.0  800904.0  168926.0  445211.0  178965.0  493823.0  3159001.0  197429.0  566375.0  5908511.0  320569.0  38155.0  164880.0  566681.0   172128.0  254053.0  60210.0  285013.0  24981.0  87004.0  64878.0  58627.0  85242.0  53252.0  795317.0  119304.0  46158.0  156679.0  113085.0  135597.0  69464.0  124744.0  331254.0  83143.0  1828774.0  95108.0  146550.0  98121.0     27475.0   858432.0  64078.0  31858.0     8.0   1032299.0    58351.0  563352.0  140974.0  23998.0  348803.0    83609.0  365054.0  114472.0  154936.0  126615.0  34644.0  14696.0   85186.0   58137.0  26226.0  131369.0  1225502.0  136927.0  158389.0  96243.0    472519.0  84979.0  78051.0  179956.0  66434.0  93149.0    307790.0  78596.0   69280.0  62628.0  107332.0  90825.0  293841.0  250074.0  725589.0  40896.0  26645.0  121303.0   245180.0  144327.0  873551.0  76623.0  84187.0  90895.0  78115.0  32224.0  41084.0  69513.0  72806.0  106396.0  73914.0  99965.0  96534.0  174695.0  49323.0  65615.0  41467.0  78979.0  119844.0  232216.0   59003.0  1056954.0  157897.0  45359.0  90271.0  181436.0  1280548.0  127044.0  35836.0  90408.0  66492.0  120086.0  185265.0  458273.0  81560.0  63159.0  44201.0  45099.0    40303.0  331506.0  115156.0  49233.0  85630.0   56980.0  280350.0    52412.0  3858027.0      618849.0   93050.0  19554.0  73070.0  981421.0  76044.0  383032.0  701606.0  199996.0  45434.0  59831.0  34712.0   32865.0  319130.0  270463.0   147833.0  25213.0  343685.0   80363.0    89924.0  1365192.0  32389.0  150917.0  28841.0  31088.0  83229.0  13322.0  140885.0  52935.0  54469.0  288836.0  17991.0     7267.0  111920.0  17055.0  15734.0  30243.0  43578.0  36159.0   6179.0  131999.0  243077.0  14750.0   61904.0  40770.0  480898.0  14654.0  4026.0  217586.0   51085.0  611203.0  687139.0  107111.0  105835.0  22987.0  12491.0  70915.0  37558.0  6001.0   21135.0  15289.0  28223.0  144775.0  27575.0  10216.0  72256.0   63134.0  8506.0  2771261.0  34271.0  29360.0  10170.0  87814.0  6766.0    522439.0  7328.0  27685.0  16032.0  287564.0  38002.0  36607.0  119498.0  30725.0  100442.0  17803.0   117108.0  17187.0  11541.0  73307.0  59080.0  22222.0  75683.0  41466.0  6947.0  22438.0  67065.0  36395.0      69216.0  37271.0  18798.0  406388.0  26229.0  35695.0  361447.0  27834.0  19043.0  39329.0  231549.0  38291.0  2552711.0  412273.0  765594.0  23126.0  32766.0  9673.0  16484.0  14809.0  39409.0  69905.0  55596.0  17141.0      0.0   26629.0  9568.0    18959.0  9245.0  27020.0  6851.0  1542143.0  102640.0  90830.0  51207.0  15821.0  193841.0  27025.0  126837.0  495851.0  56034.0  155037.0  98554.0  15834.0   30014.0      40978.0  267332.0  92636.0  51835.0  163475.0  286368.0  19955.0  44025.0  69224.0  67250.0  318719.0  95708.0  96164.0  44602.0    25130.0    28765.0  387885.0  44080.0  42551.0  40744.0  1853589.0  34300.0  94671.0  153719.0  33139.0  29563.0  55389.0  67208.0  197867.0  101530.0  56977.0  122289.0  27811.0  385900.0  99822.0  51872.0  75651.0  211485.0  53191.0  18057.0  202045.0  77518.0  4121871.0  176963.0  62980.0  604959.0  50675.0  125817.0  52744.0  240370.0  33242.0  49950.0  24826.0  50966.0  51155.0  70117.0    27214.0  142273.0  20693.0  389366.0  38088.0  89838.0  91968.0  35493.0  44032.0  251274.0  54320.0  34648.0  71323.0  13924.0  68949.0  37023.0  62879.0    87386.0  27081.0   208647.0  179252.0  15710.0  125243.0  261759.0  23692.0  16967.0   32559.0  100273.0  165315.0  37748.0  218438.0    6370.0    53200.0  69801.0  75362.0  183987.0  263450.0  76124.0  62281.0  102804.0  44771.0  41518.0  19539.0  70552.0   951.0  945989.0    50387.0  63737.0  54042.0  141653.0  15354.0  79140.0  591296.0  303897.0  806773.0   162010.0  290169.0   196162.0  113903.0  758771.0  1912420.0  1527394.0  74877.0  42089.0   89606.0   99477.0  116060.0  195748.0        3066400.0     121419.0       281367.0   250805.0  249298.0  104873.0  567250.0  320801.0  140010.0  4009167.0        248333.0  99230.0  1760552.0  736132.0  289577.0   798387.0  162281.0  171549.0     253667.0  3007887.0  1369346.0    163223.0      207383.0  881679.0   72397.0  170244.0  179155.0    305519.0    405263.0    76373.0  174479.0             372847.0   668107.0   419810.0  369217.0   1507975.0   944784.0  29078.0   716821.0  206590.0  250818.0  367747.0  197219.0   346003.0  265645.0         188899.0      79212.0       129457.0  131812.0     196745.0   18940.0   611432.0  24716.0  23800.0  92330.0  19532.0  16469.0  43716.0   93508.0      4244.0   20799.0  38529.0   928.0  28792.0    14412.0  302518.0  258285.0    2368148.0  4056706.0      3537899.0  220672.0  141433.0  485909.0  271682.0  637000.0   130775.0  1017254.0  56244.0  728251.0  1172698.0  73822.0  5336053.0       6830963.0     145869.0  94596.0   302840.0  112545.0   400.0   487938.0  475241.0  207761.0      516916.0  233022.0  2987245.0  27782.0  5645084.0  123002.0  2447214.0  358802.0  7884235.0   34418.0  2957339.0  2714013.0  6551555.0  832289.0  4106385.0  17740.0  21280.0  339036.0  64934.0  35604.0  34069.0  30804.0  165438.0  384320.0  32794.0  663217.0  409691.0  541848.0  199644.0    51226.0   40983.0  98596.0  62845.0  249977.0  38592.0  189547.0  119926.0  280051.0  76796.0  1600902.0  59600.0  66673.0       169129.0  181451.0  152595.0  132142.0  80566.0  907978.0  266536.0  73323.0  56590.0  215047.0  885923.0  913802.0  32139.0  3289396.0   4638.0  16186.0  311590.0  36073.0  433179.0   519184.0  61769.0  24671.0  4363582.0  35097.0  262050.0  56489.0  96237.0  114422.0  242036.0   25879.0  510602.0  168108.0     12500.0  777058.0  144148.0  5762554.0  140881.0  42879.0   20166.0  44836.0  15790.0  79216.0  1195053.0      22148.0   49777.0  909530.0  71464.0     13963.0   192335.0  430575.0   254457.0  171947.0  281458.0  258623.0  1223618.0  9444432.0  52946.0   52393.0  2002667.0  148529.0  173561.0  240849.0   26941.0   405543.0  101491.0  140369.0  427279.0  100015.0  80829.0  237182.0  460584.0    32858.0  5069.0    80864.0  259810.0  2130239.0  79518.0  183786.0   52375.0  58351.0  153990.0  163827.0  23400.0  7294457.0  57191.0  76901.0  142456.0  154127.0  47918.0  49486.0  382977.0  15380.0     35397.0       28937.0  29077.0            8276.0  134105.0  32093.0  206662.0  22886.0  35632.0  118287.0  170571.0  98133.0   107944.0  161922.0  328838.0  55870.0  153260.0  512504.0  27161.0  709787.0   226952.0    51862.0  126638.0   66970.0  181953.0  40013.0  2994212.0  17177.0  68245.0  66849.0  414286.0  63897.0  81243.0  768003.0  464515.0  62840.0  675443.0  1352426.0  177735.0  38069.0  47376.0  183470.0  12078.0  57295.0  83396.0  56877.0  134741.0  1254903.0  107846.0  32173.0  242819.0  640900.0         54631.0    194474.0  169941.0  74280.0  164083.0  55379.0  337889.0  109417.0  89764.0  150505.0  43060.0   95606.0  124188.0  126745.0  212010.0  254999.0  179688.0  1245113.0  536127.0  44616.0  159401.0  81279.0  215066.0  146743.0  877881.0  1458014.0  223532.0   78214.0   15852.0  179794.0  775230.0  126247.0   51286.0         74832.0  534493.0  70230.0  399766.0  379137.0   482953.0  97504.0  225025.0  603735.0  290854.0  255350.0  335091.0  706992.0  174273.0  249088.0  270626.0    99687.0  357912.0  165699.0  115289.0  344845.0  296063.0    208184.0  83019.0  247003.0  260977.0  172742.0  69094.0  734394.0  271162.0  45890.0  209384.0  112314.0  86718.0  271186.0     136146.0  217497.0  154422.0   135105.0  88998.0  216106.0  2144.0  116599.0  276051.0   442052.0  192524.0  68917.0   62274.0  166096.0   96863.0  231271.0  110121.0  73157.0  16560.0  137526.0  134787.0  57641.0  45509.0  77423.0   73500.0  1017686.0  651651.0  194134.0  32222.0  228651.0  235587.0       505759.0  41064.0  25669.0  388039.0  36582.0  18398.0  384663.0  22853.0  490735.0  79281.0  503991.0  104845.0  104005.0  30562.0  52486.0  30704.0  48097.0  41231.0  43656.0  173575.0  453609.0   42159.0  40800.0  1469075.0  44169.0  36978.0  83196.0  31094.0  22001.0  43616.0  157072.0  20349.0  1790202.0  521168.0  1128954.0  251311.0  320617.0   2582379.0  11858.0  171438.0  141832.0  168440.0  35282.0  227839.0  28001.0    77921.0  51538.0  75868.0  29369.0  161717.0  237578.0  7736.0  134317.0     83725.0  105819.0  30795.0    29786.0  96546.0   128392.0  323595.0  175801.0  33855.0  73480.0  26888.0  116857.0  148314.0  304324.0  144928.0  76727.0  174732.0  171654.0  167328.0  11586.0  40357.0  98310.0  62057.0  20770.0  45024.0  184354.0  10523.0  14454.0  248570.0  31769.0  18954.0   2112403.0   25011.0     476023.0  5813393.0      1650669.0        81535.0  149578.0  111091.0  59107.0  285754.0  85378.0   425.0  58731.0  137947.0   117689.0  46076.0  164582.0  6670.0  75785.0    45876.0  191355.0  38280.0    14965.0  46633.0  7858.0  363653.0  18917.0  55599.0  7231.0  47338.0    56425.0  14422.0  43918.0  519796.0  603724.0   5224.0  104626.0        2443.0  10415.0  102292.0   37126.0       3996.0  94418.0        216080.0  6106.0  59415.0  35813.0  8415.0  8798.0  5297.0  370568.0     16178.0  49218.0     528.0  28645.0  23513.0       6720.0  37952.0  6181.0  106353.0  49083.0  103446.0  96529.0  20446.0  17817.0   146583.0    33130.0     17903.0  16136.0  50971.0   2591.0     0.0  43674.0    8364.0  6483.0    971916.0  178820.0  27068.0  998.0  1230.0  845.0  25719.0   43304.0  10216.0  12316.0  318765.0  32225.0  49824.0  107029.0  31489.0  20324.0  14687.0  35541.0  33870.0  203622.0  52030.0  42083.0  551828.0  37405.0  299716.0  3091.0  34770.0  327405.0  4391658.0  5064.0  24980.0  13887.0   7641.0  20551.0  107656.0  5801.0   6921.0  11455.0  1133.0  10189.0  620521.0  52312.0  10005.0  2877.0    8004.0  40288.0  3515.0  32914.0   26530.0  25324.0  42643.0  28699.0    1797.0  15359.0  42524.0  1678764.0  179349.0  3042.0  1875.0  291639.0    1648.0  37946.0  28323.0  20129.0  30526.0  15828.0  60380.0  7614.0  11934.0  46736.0  34878.0  331624.0  26385.0    45003.0    26230.0  7724.0  199509.0  1115351.0  119432.0     243908.0  74305.0  21870.0  9941.0  2129.0  18838.0  18653.0  2581.0  64598.0  24437.0  15165.0   100125.0  57682.0  16588.0  1106.0  82013.0    226387.0   66102.0  14648193.0  98751.0  265009.0     873.0  2190.0  45959.0  23773.0  12584.0  126352.0  8215.0  142050.0  13232.0  4071.0  1804.0  2579136.0    22080.0       76099.0  44377.0  59160.0  23602.0  60382.0    1306428.0  236338.0   683873.0  185594.0  22777.0  26075.0  1122202.0  6329113.0  1991401.0  2782020.0  258949.0   908988.0  6098871.0  1207606.0  5893005.0  390694.0  2349382.0  5464413.0  3332046.0  2327723.0  3560974.0  5339371.0  269765.0  1600675.0  438099.0  5092371.0  225922.0  419716.0  2461507.0  3168.0  403282.0  210150.0  21994.0  277584.0  3031.0  1204916.0  259299.0  44398.0   20864.0   558.0  23158.0  417411.0  66502.0    13343.0  159982.0  1098886.0  3923.0  316580.0  21579.0   127897.0   91228.0  894160.0    39529.0  510624.0  423864.0  26106.0  53949.0  64096.0  37876.0  17086.0   592.0  267550.0  879845.0  82354.0  572496.0    115333.0  104470.0   174951.0  258352.0  82852.0  59226.0  162280.0  95740.0  46000.0  1374513.0  3259679.0  38836.0  29891.0  91366.0  127639.0  103711.0   5078.0  100472.0   70564.0  34078.0    86115.0  150384.0  1974124.0    68337.0  12715638.0    66041397.0  544541.0  719675.0  1367972.0  164358.0  3323862.0  98122.0  163178.0  76498.0  467528.0   265974.0  4244950.0  316121.0    384223.0   29118.0  25416.0  39291.0     114388.0  194106.0  12677187.0  424491.0  111652.0  129648.0  614296.0     0.0  100478.0    80910.0  125233.0  10508851.0  62078.0  28012.0       874074.0  159513.0   49447.0  121094.0  78294.0  88969.0  194838.0  116409.0  184799.0  378531.0  690256.0  518345.0  890999.0  423108.0  23425.0  181895.0  94568.0  791808.0  369938.0  113514.0  71156.0  30095.0  495982.0  322638.0  364620.0  1163807.0   39499.0  71358.0  662077.0  146984.0  522181.0  1683211.0  298693.0  1698678.0  266476.0  1208695.0  27187.0  30126.0  372359.0  139335.0  2024561.0  242263.0  492634.0  138884.0  447701.0  134556.0  255924.0  23932.0  685155.0  162119.0  1013147.0  33513.0  367683.0  252858.0  383268.0  132072.0  43200.0  104515.0  228512.0   6172191.0  48673.0   199234.0  378124.0  514395.0    859585.0    105150.0  556733.0  519910.0  45871.0   146815.0  225243.0    40040.0  110436.0  951866.0  62343.0  696521.0  224928.0  958209.0   315894.0  762997.0   301795.0  480324.0  221931.0  381695.0  126139.0  335026.0  44706.0      66043.0  21210.0  1031621.0  242245.0  3828052.0  86948.0    42308.0  193092.0  804474.0  326106.0  506253.0  189520.0  56260.0      12007.0  75912.0  76320.0   3785.0   39872.0  17378.0  13877.0  1023901.0  1624120.0  25233.0  41426.0  8738.0  28409.0  28771.0  32281.0  33193.0       14542.0    695449.0  11287.0  19135.0   18485.0  16435.0  29465.0  14667.0  33706.0  22436.0  76236.0  82887.0  65571.0  347154.0   89578.0  26761.0  10165.0  43523.0  27160.0  89955.0  34217.0  17893.0  92547.0  100297.0  23896.0   6513.0  43915.0  2324.0  332650.0  10187.0  190882.0  15370.0  55853.0  3878.0  103895.0  529290.0  24309.0  274462.0                  12736.0  264.0  2491.0  64549.0  488820.0  115273.0  245513.0  201897.0  215807.0  227498.0  107721.0  1673721.0  56526.0  100509.0  568375.0  611028.0  116265.0   513214.0   91773.0  129854.0  4836405.0  253614.0  132864.0  654255.0  273267.0  613898.0  93945.0  6598315.0  129135.0  75712.0  248398.0  522815.0  91848.0  3703616.0  244113.0  98240.0  25668.0  99724.0  104656.0  69864.0  142951.0  180984.0  100771.0  146712.0  125553.0  658874.0  196859.0  609763.0  122279.0  806894.0  1924831.0  204627.0  994804.0  870144.0  509699.0  44712.0  301649.0  468329.0  42537.0  2232498.0  27264.0  100907.0  236404.0  46100.0  144033.0  58679.0  91730.0  729715.0  71721.0  411593.0  151046.0  208428.0  366609.0  265554.0  185750.0  200920.0  169047.0  189893.0  1058107.0  1660781.0  648239.0   366409.0  188431.0  1304.0  79340.0  25024.0  926502.0   136577.0  346720.0  106759.0  522006.0  79467.0  141778.0  33466.0  75969.0  20229.0  120632.0  37087.0  261808.0  202397.0  669260.0  163006.0  238957.0  80205.0   6547.0  1397163.0  25117.0  464481.0  21518.0  94765.0  279836.0  180036.0  208193.0  19630.0  12374.0  374760.0  135838.0  264574.0  18449.0  33558.0  12474.0  16233.0  60798.0  62037.0  187501.0   19481.0  48560.0  175414.0    89707.0  30704.0  34246.0  246651.0  129409.0  144737.0  53304.0  38291.0  63383.0  163990.0  240485.0  276924.0  85729.0  57122.0  415997.0  49474.0  42818.0  79109.0  4282892.0  193253.0  222192.0  192320.0  66267.0  450452.0  200491.0  161602.0     348914.0    43039.0     14266.0  435198.0  123821.0  187296.0  150184.0  354513.0  32031.0  3806467.0  7293.0  332957.0   256029.0  34940.0  41453.0  168459.0  26466.0  86871.0  670903.0  42008.0  51007.0  46691.0  23098.0  13108.0  247890.0  82358.0  2156.0  8082.0  7143.0    57708.0  347096.0  111883.0   59930.0  97487.0  11622.0  405409.0  101401.0  161332.0  291386.0  1124803.0  90671.0  1890125.0  136905.0  3400.0   15521.0  582507.0  102860.0     1.0  7635.0  64766.0  1182490.0   429.0  188454.0     247631.0  3316642.0  164127.0  523091.0  129999.0  1992179.0  342631.0  146213.0  2489286.0  434181.0  359492.0  4163.0  161212.0  586190.0  1723860.0  82052.0   152621.0  79325.0  213313.0  178947.0   596240.0  1029699.0  2983549.0  49412.0  565334.0  277550.0  9237.0  546448.0  27074.0  72058.0   179573.0  229506.0   70755.0  73706.0   737969.0  2151974.0  213612.0  652735.0  1693615.0  1323855.0  249594.0  50861.0  277557.0  142324.0  544525.0  3300740.0  62937.0   1353479.0       287114.0  79366.0    9965399.0  161357.0  21021.0   452752.0  98576.0  164987.0   6092.0     82442.0  75547.0  153349.0    18.0  83521.0  36295.0   453840.0  80267.0     933726.0  39866.0  1336351.0     32468.0  69541.0   94230.0      59742.0  36090.0  53058.0  174161.0  31462.0     48131.0      94425.0  723316.0   75817.0  349813.0  66547.0  139931.0  573583.0  88803.0  85144.0  28278.0  55547.0  72431.0  62018.0  48397.0  123720.0  3783.0  160068.0  101064.0  58786.0  24035.0  62486.0    39005.0  348799.0  117191.0  65683.0     33724.0  109698.0  65385.0  47822.0    74570.0  86935.0  32055.0  69878.0    19707.0     93665.0  58643.0  47610.0  110632.0  13761.0  25620.0  160796.0  80711.0  98584.0  51944.0  122518.0  67742.0  34382.0  29024.0  195481.0      43743.0  35302.0   124224.0       37916.0  86041.0    50347.0  1471552.0    100245.0      112450.0      40590.0  264449.0  283619.0      224126.0  375911.0  43143.0  139539.0  186535.0  17362.0  43405.0  64653.0  86823.0     139932.0  633016.0  159222.0  5190154.0  949116.0   285581.0       119251.0  753784.0   64251.0  938027.0  111718.0  131032.0  1038849.0  1028483.0  84952.0  2940239.0  243090.0  205582.0     243596.0  221273.0  210328.0   411981.0  212967.0   807834.0  139958.0  155554.0  971705.0   384711.0  3198685.0  421998.0  117342.0  2130846.0  148755.0  416988.0  437676.0  340610.0  143430.0  1520020.0  178696.0  187616.0   42378.0  262609.0  375819.0   575268.0  739121.0  2804533.0  125754.0   1528887.0  630458.0  126872.0     0.0     253328.0  1194346.0      29971.0  237493.0  24523.0   96211.0  208733.0  337731.0  44626.0  39822.0  52649.0   8501.0     72602.0  19470.0  127275.0  231321.0  31684.0  47501.0  168388.0  30424.0  26573.0  69989.0  25106.0  22470.0    30406.0  25341.0  49775.0  33469.0  12296.0  36480.0  20539.0  18780.0  5485.0  133075.0    42309.0  8425.0  16414.0  24441.0  4507.0   31398.0  68434.0  154876.0  475451.0  43636.0  14120.0  43791.0   11191.0  149344.0  14009.0  16051.0  2168267.0  35348.0      132720.0   750383.0  14510.0  18840.0  63000.0  19213.0  44926.0  17460.0  6734.0  73599.0  40984.0  66867.0  122055.0    58.0  39921.0  149429.0  18037.0  323098.0  343815.0  79519.0  214519.0  613117.0  659436.0  156591.0  80123.0  188416.0  283484.0  201174.0  116054.0  101440.0  56549.0  185850.0  307578.0  125676.0   285075.0  6440443.0  136687.0  101496.0  313650.0  335933.0  272199.0  123519.0  220572.0  354989.0  162465.0  105333.0  318261.0  82025.0  431193.0  2218647.0  22508.0  300429.0  208200.0  215779.0  193706.0  225127.0  152296.0  133074.0  57353.0   72931.0  73243.0  259176.0  152871.0  2226977.0  205629.0   222058.0  282114.0  68701.0  174286.0  285101.0  242570.0  600422.0  126102.0  186318.0  611316.0  287959.0  166547.0  57438.0  244757.0   768898.0  41849.0  80819.0  275811.0  164160.0  50329.0  36390.0  83794.0  722722.0  212125.0  244939.0  512667.0  2223322.0  93332.0    62456.0  619694.0  6659977.0  162954.0  55850.0  641909.0  1211218.0  443311.0  404768.0  85701.0  81364.0  120859.0   35262.0  263128.0   626766.0  228470.0  237965.0  188941.0  1317541.0  883011.0  528963.0  110844.0  505390.0  57793.0  26118.0    5293.0  202749.0  88176.0  57420.0  33902.0  359807.0  7711.0  287472.0  1136305.0  11049348.0  27684.0  594.0  62618.0  321397.0  2091428.0  1410079.0  61546.0  4780.0  52555.0  190543.0  79937.0  169644.0  280614.0  138383.0  30865.0  3800623.0  71081.0  12174.0  87779.0  61679.0  268976.0  277064.0   60261.0  30240.0  15103.0  20103.0  19109.0  3243259.0        7734.0  90950.0  644292.0  62554.0  18616.0  113784.0  322933.0  7557.0  26735.0  36646.0  22299.0   17714.0  55868.0  17917241.0  114433.0  169770.0   235311.0  7270.0  2902371.0  8385.0  47050.0  17883.0  75824.0  44422.0  1087277.0  12036.0  7810026.0  937832.0  189083.0  83790.0  132972.0  95909.0  16564.0  29685.0  3347.0  3245185.0  33342.0   74003.0  164542.0  89155.0  2267474.0  22946.0   74243.0    3858.0  26545.0  185265.0  114966.0  479821.0  578869.0  216440.0  599327.0  447712.0  9786.0  32953.0  34177.0  11314.0  266482.0  25800069.0  218488.0  28236.0  15834.0  1209029.0  23574.0  264864.0  5670121.0  142700.0  121898.0  218402.0  112280.0  87631.0  202617.0  20924.0  347615.0    69898.0  3358.0  28512.0  106479.0  94581.0     5257.0  1475689.0  25343.0  257639.0  694347.0  196945.0  142441.0  668882.0  76587.0  1635.0  2581.0  133035.0  9120.0  189.0  9915.0  161365.0  16001.0  66340.0  294003.0  103268.0  49531.0  177857.0  52430.0  56449.0  376713.0  104872.0  12733.0  66117.0  35546.0   45.0  3121266.0  34003.0  128990.0  29444.0  25475.0  18785.0  193246.0  658333.0   32224.0  1669658.0   3902.0  233161.0  10344.0  882109.0  101050.0  14408.0  30716.0  62969.0  2273958.0  285184.0  38819.0  3063.0    310123.0  332714.0  31531.0  72109.0  3522706.0   56203.0  6215.0  394590.0   121206.0  92814.0  484998.0  100633.0  93756.0  209345.0  1474937.0  33310.0  29027.0  994888.0  22603.0  19721.0   39125.0  69937.0  51046.0  2951.0   68871.0  383767.0  52411.0  179995.0  20391.0       50179.0     42483.0     262866.0  25466.0    13678.0  168433.0      7641.0  110993.0  13722.0  1071992.0   35350.0  640963.0  33169.0   3674.0    3513.0  23368.0  34538.0  11699110.0  815828.0  2135.0  87794.0       2725.0  312110.0  924749.0  5726023.0  36247.0  47667.0     0.0  93959.0  9579.0  150545.0  426197.0  174411.0  746122.0  759643.0  164719.0  41209.0   144319.0  2532189.0  239021.0  20865.0  646777.0   65259.0  197585.0  1880765.0  161105.0  32166.0  209354.0  123270.0  56753.0  90633.0  66614.0  82165.0  16417.0  204077.0  809525.0  58081.0   500.0  1592938.0  44049.0  25523.0  19999.0  26076.0  206797.0  44758.0  20473.0  51659.0  43513.0  4149.0  4251.0  8521328.0  164025.0  102981.0  68414.0  284576.0  286155.0  61944.0  27275.0  4826166.0  240056.0   984847.0  3419.0  1257629.0  27348.0    33126.0   13374.0   241469.0  3824.0  41190.0     4692.0  17799.0  15179.0  13143.0  34031.0  2043.0    47994.0  37221.0  28622.0        85623.0  11404.0   118864.0   419.0  275638.0  266059.0        868987.0   33666.0  28694.0  92469.0    48466.0  962686.0  154212.0  5460.0  198473.0  19628.0   84747.0      50979.0   67475.0  44981.0   166403.0          27498.0  120397.0  79329.0  119003.0      19007.0   30591.0             225846.0        867810.0    1317478.0  25877.0               60776.0        14382.0  9208.0  305664.0    22979.0      185817.0   29378.0   84463.0      52432.0  34131.0  4918840.0      31079.0           18255.0  211799.0  38897.0  72494.0  140373.0       72137.0  259732.0            111000.0    90755.0  27509.0    59737.0   61805.0  64294.0  48745.0    146999.0  83907.0     372210.0  294127.0          491798.0  1219485.0  225455.0   2473.0       87578.0      143912.0   179763.0     55109.0      35182.0        14734.0   26737.0  85167.0        33422.0  1539770.0  71420.0   24015.0       306493.0  25421.0           132413.0      422883.0           82117.0  17641.0    144524.0   21107.0   386653.0  23417.0  48379.0          542771.0     929844.0     72607.0        33505.0      8993.0  69186.0  77763.0  99596.0  56696.0        152667.0     205673.0       19140.0        472117.0  56649.0      121492.0      170895.0      2814968.0  68452.0     123468.0      13341.0  88029.0      980160.0  281048.0     432119.0    31344.0   333773.0  81452.0    85827.0  68772.0   210653.0  108379.0    129166.0     457127.0  465553.0       82476.0     388170.0  21407.0  96811.0  101889.0    87.0           1421057.0  116029.0   172164.0         73814.0      62544.0           39450.0        133658.0  117419.0  69740.0  117750.0   160532.0  51349.0  1098908.0  436779.0  52081.0  918994.0   4561.0  165015.0  260112.0  8575.0  948472.0   4423.0  608096.0     113604.0  91307.0   20386.0  5766070.0  287863.0  127934.0   39505.0  132875.0  14401.0  94899.0  192817.0  26204.0      24065.0  2231739.0   8445.0  284205.0  14162.0  2131727.0  1797172.0  60216.0  333999.0  9352.0    2841.0    236519.0  323420.0  232149.0  2621530.0       34916.0  348630.0  62635.0  11001.0  57181.0  274383.0  6850.0  12856.0   10873.0  121344.0  17305.0  41573.0    55247.0   40330.0  70712.0  33114.0  137681.0  83481.0  145201.0  596202.0  22257.0  43609.0  120181.0  91890.0  96900.0  46671.0  43854.0  133125.0  96861.0  94648.0   397155.0  37463.0  28591.0  33538.0  137606.0   14817.0   12215.0    19230.0  66453.0  170124.0  149303.0  81419.0  12525.0  17189.0  21157.0  35469.0  13327.0  12971.0     2.0  42977.0  110930.0  5822.0  34268.0  9262.0  209760.0  56347.0   90479.0  54308.0  259152.0  51950.0  2420279.0  59112.0  61579.0  369476.0  343095.0  183887.0  290859.0  87046.0  2620891.0  730828.0  138678.0  176843.0  214030.0   619986.0  28457.0    747209.0  68996.0  317064.0  157303.0   116358.0  100807.0  39277.0  119920.0  487228.0  150961.0  1106455.0  153170.0  742020.0   95657.0  123611.0  145478.0  450472.0  801017.0  281641.0   94182.0   43592.0  8041732.0  209761.0  293602.0  185377.0  1301363.0  468499.0  35655.0  206737.0  156924.0  418135.0  58253.0  1609270.0  70136.0  922796.0  58013.0  317940.0  73100.0  317723.0  757605.0  383747.0  97376.0    204844.0  278999.0  90640.0  97950.0  694675.0  54702.0   852759.0  2489173.0  364916.0  145641.0  1252300.0  345113.0  223981.0  39923.0  213744.0  62716.0  50224.0  22033.0  288212.0  49115.0     13325.0  26067.0  396680.0  58949.0  346156.0   6775.0  110820.0  23255.0  141098.0  34359.0   151156.0  158919.0  105421.0    37.0  41244.0  27239.0\\ndeaths             5683.0    12446.0    2035.0    2687.0    3855.0    3163.0    8091.0   10868.0    9840.0    2815.0    4775.0   2902.0    2961.0    2329.0   1371.0    2111.0    5400.0    2246.0    651.0    5106.0    4377.0    4765.0    7363.0    5045.0    4877.0    9726.0    4629.0    9532.0    1855.0    5474.0    1110.0   2980.0    5737.0    1088.0    5356.0    2831.0    73355.0    838.0     6639.0    3694.0    13105.0    4791.0    5735.0    3649.0    15955.0    4058.0    6068.0    8820.0    60927.0    1603.0    37490.0    6275.0     992.0    3010.0    2171.0    3436.0     481.0    11738.0    6712.0   4038.0    6191.0    19340.0    23215.0   15674.0     2909.0    2684.0    2715.0                    0.0                        0.0     7992.0              364.0                 0.0            0.0                   38.0                       2176.0            0.0                   300.0                   673.0                       0.0                  30.0                 81.0                        0.0                     795.0              0.0                48.0                      0.0                0.0                              64.0                    0.0                  0.0                           119.0     23.0                      130.0                       0.0                     314.0   32439.0   12646.0   31510.0   11344.0    4589.0    410.0    3091.0    608930.0   42176.0    46741.0   124265.0    40119.0    11565.0   107.0   16745.0    62144.0   1978.0   1835.0    2229.0    18733.0    4050.0   1225.0     37.0    2536.0    3198.0   1054.0   2130.0   2785.0    1621.0    3449.0    981.0    7674.0    3852.0     8239.0   2659.0    696.0   1032.0   1192.0    5465.0   1056.0   1275.0   10534.0    562.0    2830.0     924.0     4934.0    1752.0       6092.0    480.0     851.0   15478.0    1246.0     534.0    3578.0    2683.0    3367.0       4137.0     575.0    4403.0    806.0    519.0    2440.0      8827.0    272.0     1104.0   2268.0   2805.0   1395.0    230.0    2382.0    394.0    3780.0   1236.0    5198.0    664.0    34532.0    3558.0    5689.0    293.0    253.0   12644.0    2901.0   2084.0      1592.0   2295.0    7480.0       6.0     735.0    21661.0    5006.0     46.0    4832.0    75187.0     0.0   2343.0    7094.0    2172.0     955.0      40409.0     154.0     700.0    66630.0     811.0    1538.0    56509.0   2197.0    62450.0    14307.0    1970.0     238.0   1331978.0   11722.0    19948.0    445.0    3037.0    24119.0     2.0    464.0    15445.0    2818.0    1854.0    225712.0    9737.0      7.0    233000.0    77308.0     2292.0       171282.0    167372.0       23513.0     72833.0          5318.0    33271.0       19782.0     74379.0     4073.0    5204.0     0.0    258.0    12578.0    19777.0    59545.0    2754.0    1991.0     45.0    52701.0    1072.0     4.0    27823.0   12435.0    1549.0    55585.0   2123.0    93253.0       0.0     8.0    211.0    21942.0     8883.0   4936.0     88.0       293.0    145.0    156.0    559.0     0.0   1034.0   106971.0     0.0   17515.0    2520.0    47096.0    744.0     514.0    1482.0    31.0    276.0   1673.0      0.0    629.0     0.0    69552.0    29.0      945.0     877.0      0.0   12264.0      109.0     47.0    3089.0    4909.0    23.0    664.0    1306.0    3624.0   11781.0   1617.0    360.0    302.0    167.0    573.0    871.0   14899.0       72.0      543.0   2131.0    485.0      0.0        0.0    191.0     918.0    890.0    35.0      389.0    40293.0    248.0    353607.0   354064.0    36572.0   46283.0   276756.0    30195.0   17274.0    159.0    4953.0   25851.0    70945.0    48853.0     15.0             146395.0    11382.0    3239.0    19147.0    2063.0    53266.0    254355.0    2698.0   29562.0   20136.0    20717.0    42064.0   10434.0    5463.0    1517.0    75627.0    41943.0    5223.0     550.0    7617.0    2282.0   1077.0    2287.0    1426.0    2228.0    8358.0   23965.0   17680.0     124091.0    1623.0      19116.0   12550.0    1759.0    2070.0    31735.0    89851.0    14949.0    1721.0    1591.0    3594.0    59210.0    46680.0   25117.0    581489.0    3966.0    6671.0    19541.0     4880.0    84857.0    30777.0   263141.0    37387.0   133666.0    95209.0    7734.0    13439.0    54852.0    36397.0    12541.0    50361.0   13610.0   13053.0    2309.0    5035.0      45.0    48354.0    1829.0    5082.0     4050.0    6130.0   1007.0    2729.0   1033.0   11835.0    1509.0    9360.0   18077.0    4196.0   2429.0    30524.0   3577.0   2139.0    4950.0    2568.0    5832.0    2348.0    9169.0   1931.0    2327.0   3460.0   15020.0    3750.0    1788.0    28643.0         317.0    3684.0    18478.0    8322.0    642.0    32311.0   1635.0    88649.0   10205.0    7415.0   10418.0    2488.0    9304.0    744.0    4566.0    914.0    1578.0    72278.0    5599.0    4093.0   3837.0   45256.0   14573.0    8294.0    344.0    3809.0    1898.0    5422.0   1212.0    3757.0    9597.0   10412.0    8935.0    2561.0   119514.0    3032.0    293.0   15373.0    8400.0    3791.0    4266.0    80659.0   13679.0    30014.0   8717.0    2719.0    4354.0    2731.0   1205.0    19088.0   15889.0   1277.0    6856.0    762.0     3596.0    4535.0   5299.0   3693.0    2009.0   3527.0   1339.0   12020.0    6791.0    3470.0   1296.0    629.0   15018.0    2542.0   2532.0    2183.0   1473.0    3090.0   1127.0     2402.0    265.0   10933.0    8921.0     1042.0     708.0    2132.0    28706.0   14666.0    5036.0     2391.0   10482.0    4225.0    2150.0    3716.0   2082.0    3881.0   3043.0    4868.0   261.0   1639.0   6763.0    30556.0    7592.0    405.0   2155.0   1679.0   12412.0    6016.0   2332.0   14590.0   1204.0        0.0    2484.0   1751.0   3553.0   7683.0   13289.0   11443.0    7624.0   2448.0   1570.0   17978.0   4916.0   1687.0    3900.0    1012.0   13832.0    6416.0   11641.0   10827.0    862.0     2631.0    5002.0   450.0   1955.0    3485.0    11427.0   5097.0   1026.0    3159.0    6910.0   10424.0    3156.0    21421.0     0.0     37.0    2607.0     6.0    30364.0    241.0    2714.0     124.0    394.0    2820.0    1692.0    254.0     491.0     5842.0    274.0      0.0     0.0    18494.0    627.0    1578.0     0.0      115.0    119.0    910.0    376.0    784.0    818.0    754.0    556.0     786.0    1757.0    8134.0     152.0    423.0    303.0    476.0     639.0    1527.0    6089.0     38.0   1066.0    1755.0    269.0   2656.0    164.0    11173.0     0.0    196.0     1199.0    4235.0     278.0   1328.0    6464.0    317.0    3766.0     52.0   2228.0    2578.0     6748.0    4572.0   1632.0   1620.0    6968.0    7447.0   1268257.0   1182.0     1361.0   1151.0    7866.0    1581.0   140001.0   1702.0    204.0    1969.0    3110.0   2182.0    2055.0     897.0    374.0   2451.0    2182.0    385.0   1192.0    140.0     159.0    1966.0    3935.0    5944.0   2155.0    8576.0    2776.0     1413.0    438.0    79144.0   19426.0    7545.0    4872.0   14547.0   117022.0   1148.0    2377.0     2750.0    1548.0   13050.0    2718.0    32912.0    4131.0    438.0   1515.0    720.0    4768.0    29118.0    6949.0    211.0   1281.0    5825.0     2113.0    5254.0   1052.0    3135.0   14642.0    2878.0    324.0   1707.0   128.0    197.0      0.0    3052.0   1899.0     19040.0    1959.0   14251.0    268.0     20.0    2129.0    44705.0    552.0     3099.0    9908.0    5118.0   33084.0    3817.0    703.0    1531.0      518.0   2497.0    791.0    9928.0    99787.0     8393.0    38307.0    2752.0    1975.0    50646.0     13733.0    189.0    1305.0   12161.0    672.0   2023.0    4043.0   15736.0    2234.0    3228.0    491.0    7604.0    3343.0    7017.0   10453.0   16360.0    4189.0    29198.0    3959.0   14779.0   1129.0   4902.0   1466.0    2637.0    9706.0    9614.0    33038.0   10984.0    6190.0   33403.0    5820.0   15461.0     1462.0    3406.0    1526.0   1132.0    1526.0    3497.0   35241.0    2015.0    5209.0    3640.0   12066.0    82476.0    8504.0   24199.0   198285.0    5753.0    358.0    1436.0    9498.0     5538.0    9696.0   3122.0    8322.0   1073.0   6482.0   1059.0    565.0   3105.0   1647.0   13179.0    1274.0   1288.0    3485.0    2364.0    2822.0   1148.0    3373.0   10483.0    973.0    32234.0   2717.0    1671.0   2003.0       217.0     4428.0   4040.0     88.0     0.0     11525.0      749.0    9256.0    2356.0    481.0   11488.0      744.0    7356.0    2492.0    3292.0    1721.0    684.0    103.0    1799.0    1646.0    384.0    1500.0    21475.0    1327.0    2582.0    859.0      2690.0    857.0    738.0    1796.0   1691.0   1125.0      4972.0    735.0     367.0    685.0     705.0   1532.0    4154.0    1772.0    9176.0    936.0     62.0    1846.0     2035.0    1360.0   11725.0   2288.0    798.0   1817.0   2639.0    229.0    161.0    922.0   2116.0    1053.0   1065.0   1076.0   2523.0    1384.0   1095.0    809.0    867.0   1126.0    1160.0    6924.0     533.0     5579.0    1547.0    770.0    746.0    1790.0    28536.0    3452.0   1071.0   1173.0    706.0    4602.0    1978.0    7149.0    595.0    716.0    515.0   2118.0     1235.0   12592.0    2877.0    162.0    373.0     273.0    4532.0      486.0    57280.0        8495.0    2528.0    393.0    590.0    9016.0    835.0    2361.0    3186.0    8095.0    366.0    843.0     25.0     528.0   11156.0    1594.0     3000.0    935.0    3566.0    2384.0     1260.0    17153.0     54.0     597.0     94.0      0.0    718.0     80.0    1514.0    519.0    890.0     966.0    257.0       81.0    1135.0    635.0    372.0    995.0    190.0   2206.0     89.0    1062.0    1763.0     95.0     760.0    177.0    2505.0      0.0     0.0    2135.0     221.0    3671.0    2188.0    1120.0     678.0   1363.0    184.0   1188.0    272.0     0.0      74.0      0.0    729.0    1695.0    107.0    124.0    667.0     651.0   163.0    39128.0    700.0    373.0      0.0    692.0   178.0      3604.0    84.0    154.0      0.0    5796.0    249.0    608.0     962.0    265.0     323.0      0.0     1155.0     72.0    586.0   1467.0    198.0   1097.0   1525.0    372.0     0.0      0.0     92.0   1516.0        116.0    545.0    155.0    3836.0    374.0    126.0    1818.0    678.0      0.0    862.0    2985.0    418.0    20512.0    1606.0   12994.0      0.0    461.0    44.0    278.0    274.0    250.0    896.0    337.0    366.0  10714.0     139.0     0.0      302.0     0.0    364.0     0.0    30650.0    5594.0   2179.0    292.0    166.0    2685.0    292.0    2212.0    5908.0    291.0    2683.0     11.0    182.0     165.0        559.0    2592.0   3531.0    387.0    1743.0    4220.0    245.0    781.0    581.0   2760.0    4813.0   1799.0   1179.0    974.0      313.0      134.0    5562.0   2755.0     28.0      0.0    16167.0     32.0    696.0    2173.0    454.0   1699.0    448.0   1348.0    6776.0    3446.0   1334.0    1247.0    627.0    3514.0   1840.0     84.0    356.0    3748.0    466.0    168.0   10745.0   3778.0    78540.0    2068.0    526.0   11467.0    718.0    1583.0    290.0    1485.0    118.0    890.0     70.0    289.0   2186.0   2289.0      283.0    5530.0   1006.0    1855.0     51.0   1419.0   1301.0    624.0    521.0    2490.0    167.0    959.0    718.0     91.0    587.0    580.0   1191.0      779.0      0.0     3431.0    1013.0    276.0    2035.0    4728.0    329.0    260.0      53.0    1393.0    1770.0      0.0    2781.0     196.0      419.0    190.0   2151.0    2087.0    4695.0   1620.0    145.0    1279.0   1331.0     80.0      0.0    671.0    35.0    8981.0      396.0    382.0    741.0     752.0     57.0     29.0   19103.0    9401.0   20920.0     4912.0   10148.0     6605.0    7665.0   21825.0    79609.0    38874.0    982.0    316.0    2229.0    4519.0    3335.0    7322.0          94932.0        990.0        13406.0     5420.0    8064.0    4639.0   18554.0   13397.0    5052.0   138950.0          7550.0   1788.0    24483.0   27105.0    9113.0    15441.0    1725.0    4571.0       6192.0   149250.0    31657.0      4854.0        8922.0   28917.0    4211.0    3096.0    2916.0      7107.0     14568.0      628.0    8726.0              25006.0    26283.0    12312.0   15792.0     57613.0    22587.0    298.0    23704.0    9392.0   28185.0    9885.0    8508.0    14736.0    6427.0           9442.0       2385.0         4667.0    3363.0       2782.0     275.0    16377.0    400.0    450.0   3038.0    338.0    196.0    431.0    1416.0        31.0      14.0   1460.0     3.0   3706.0       69.0    4668.0    8475.0      58834.0   140491.0       106820.0    6852.0    1188.0   29705.0    8366.0   23137.0     2073.0    31709.0    924.0   18317.0    26849.0   5536.0   197458.0        188883.0       5471.0   1249.0    12532.0    1174.0  8807.0    10201.0   11117.0    5881.0       39746.0   13802.0   162484.0     56.0   301285.0   16279.0   186855.0   32365.0   507847.0     243.0   252637.0   182279.0   269901.0    2238.0   254438.0    676.0    122.0    3159.0   3386.0    320.0   1342.0   1121.0    1534.0   13475.0    780.0   19326.0    8604.0   14989.0    3990.0      844.0    1549.0    557.0   2266.0    3969.0   1268.0    4746.0    3448.0    4482.0   2078.0    83201.0   1133.0   1798.0         2859.0    4690.0    7398.0    1245.0   1815.0   14033.0    2585.0   3880.0   2632.0    3474.0   19071.0   24716.0   1058.0    48056.0     91.0    281.0   11853.0    287.0    5059.0     8761.0      9.0     45.0   261345.0    691.0    4234.0    707.0   1015.0    1130.0    3567.0     497.0    9971.0    2606.0       218.0   21517.0    1234.0   299977.0    2186.0   1490.0     672.0    507.0    639.0   3104.0    20064.0        317.0    1303.0   39227.0   2837.0       156.0     7900.0   15518.0     3581.0    8885.0    1607.0    4993.0    31660.0   732739.0   1462.0    1503.0    33775.0    1264.0    1617.0    3563.0     116.0     1664.0    1351.0    1203.0    1714.0    1174.0    927.0    1094.0   10321.0      460.0     0.0      286.0    4558.0    29529.0     73.0    2303.0     202.0     59.0     813.0    3094.0    731.0   216365.0    322.0   1544.0    1218.0    3631.0    213.0   1529.0    2103.0    527.0       748.0         454.0    425.0             120.0    1021.0     57.0    1441.0    474.0    561.0    2774.0    1313.0   1160.0     2565.0    1929.0    2042.0    432.0    3837.0    3664.0    387.0    6141.0     2085.0      563.0     451.0    2294.0    2269.0     93.0    75860.0    235.0   1491.0   2352.0    3287.0    634.0    371.0    6717.0    4131.0    584.0   12550.0    10703.0     640.0    268.0    679.0    1285.0     63.0  10331.0     88.0    487.0    1168.0    15866.0     575.0    925.0    5122.0    3915.0           864.0      7930.0    2642.0   1988.0    6077.0   1279.0   12071.0    2317.0   2868.0    5566.0   1225.0    3028.0    8626.0    3868.0    5407.0    6301.0    4968.0    12696.0   15147.0    739.0    3001.0   3200.0    6461.0    5678.0   13960.0    30011.0   11912.0    3275.0     532.0    4748.0   15212.0    3031.0    1701.0          2244.0   15413.0   3467.0    7061.0    6400.0    26300.0   2040.0    7149.0   12958.0   16692.0   11531.0   10138.0   17196.0    6949.0    4895.0   13481.0     3347.0   21554.0    4230.0    2976.0    9904.0    6222.0     11800.0   3333.0    9425.0    3509.0    3653.0    812.0   14296.0    5254.0   1972.0    7373.0    3291.0   1973.0    7689.0       3539.0    6740.0    4680.0     5486.0   2608.0    4399.0    24.0    4405.0    9243.0    13996.0    4147.0   2728.0    3890.0    4049.0    3358.0    5285.0     190.0    870.0    186.0    1560.0    2106.0    396.0    850.0    878.0     615.0     2961.0    7648.0    1050.0    255.0    1055.0    4370.0         6994.0    545.0    576.0    5288.0    437.0     49.0    2153.0    197.0    9095.0   2917.0    4687.0     738.0    1088.0   1405.0    706.0    519.0    901.0    388.0   1326.0    1750.0    9010.0    2630.0   2104.0    20117.0   1274.0    334.0   1443.0    496.0    299.0    235.0    2052.0     32.0    22579.0    6214.0    13312.0    1592.0    5738.0     31513.0    107.0    2632.0    2790.0    2854.0    392.0    1046.0    844.0     1107.0    230.0    541.0    208.0    1879.0    2405.0    36.0    1928.0       670.0    1403.0    269.0      403.0    968.0     2608.0    3519.0    1270.0     75.0    423.0    188.0    2431.0    1314.0    3719.0    3790.0    978.0    2364.0    2335.0    1725.0    153.0    138.0    690.0    351.0    122.0    494.0    1893.0     38.0    239.0    4867.0    658.0    135.0     32155.0     145.0       3992.0   182312.0        46949.0          343.0    2944.0    1438.0    408.0    4708.0    705.0     0.0    632.0     755.0     2312.0    245.0    2069.0    13.0    978.0      321.0    5210.0   1071.0       58.0    317.0   204.0    4727.0    131.0    610.0   261.0    875.0      566.0     41.0    454.0    3778.0    1829.0     85.0    1428.0           0.0     65.0    2118.0      63.0          0.0    866.0          1402.0    56.0    868.0    357.0     0.0   514.0     7.0    2998.0       323.0    156.0      34.0    418.0    173.0        372.0    175.0    60.0    1026.0    682.0    2856.0   2501.0    218.0    136.0     1428.0      534.0       375.0    159.0   1717.0     69.0     2.0    426.0     334.0   145.0     13267.0    3476.0    261.0    0.0     0.0    0.0     94.0     349.0    112.0     47.0    2771.0    235.0    417.0     673.0    226.0    143.0    459.0    331.0    235.0    1496.0    380.0   1449.0    9640.0    806.0    2892.0     0.0    522.0    3575.0    44761.0   234.0    421.0    107.0     58.0    398.0    1328.0     0.0    141.0     53.0    90.0     20.0   13062.0   3215.0      0.0     0.0      80.0    616.0    94.0   1175.0       3.0    152.0    101.0     48.0       0.0    124.0    170.0     8874.0    1590.0     0.0     0.0    2531.0       0.0    405.0    282.0    190.0    170.0     40.0    153.0    20.0   1401.0    307.0   1337.0    2117.0    581.0      229.0      567.0   144.0     491.0     6081.0     856.0       2445.0    959.0    337.0   343.0     0.0    123.0     93.0     0.0    798.0     27.0    127.0     1090.0    278.0    156.0     0.0    361.0      2686.0    1425.0    265177.0    477.0    2132.0       0.0     0.0   1109.0    415.0     57.0    2190.0   153.0    3247.0     78.0    59.0   225.0    39716.0      224.0        1808.0    287.0    748.0    468.0    399.0      65720.0    6062.0    23544.0    3465.0    466.0     29.0    58412.0   496226.0   112272.0   136941.0   21418.0    35352.0   514823.0    53572.0   364001.0   27615.0   147906.0   334003.0   202951.0   198752.0   246623.0   296579.0   19051.0   135903.0   46895.0   327297.0     207.0   40351.0    45004.0   290.0    4102.0    5514.0    504.0    2097.0     0.0    16769.0    3798.0    653.0     208.0     0.0    376.0    4864.0    767.0        0.0    2456.0    53236.0    10.0    3193.0    511.0     2730.0    1297.0   45442.0       91.0   11474.0    3196.0    774.0   2751.0   1663.0    300.0    451.0    19.0    2483.0   34946.0   3452.0   22146.0      2810.0     892.0     1297.0    4061.0   1387.0   1199.0   11559.0    579.0    794.0    40789.0   161758.0   1677.0    478.0   5643.0    2066.0    2684.0    148.0    1809.0     316.0    956.0     1737.0    2590.0    66544.0     2303.0    620865.0     5973826.0   20652.0   28222.0    45657.0    6562.0   103690.0  11383.0    1102.0   1412.0   15986.0    10673.0   127628.0    3179.0     11090.0     320.0    321.0    659.0       1721.0   11632.0    509117.0    8554.0    6578.0     495.0   17963.0  4597.0    7338.0     3087.0    1439.0    385376.0   1355.0   1499.0        13585.0    1609.0     107.0    1491.0    645.0    494.0    4912.0    2665.0    2669.0    6941.0   19030.0    8949.0   15202.0    3234.0    516.0    1612.0    852.0   11029.0   12319.0    1852.0   1464.0    430.0   11942.0   12176.0    8012.0    16660.0     522.0    580.0    7802.0    1544.0   10307.0    20839.0    8320.0    20590.0    6918.0    19452.0    811.0    880.0    8947.0    2157.0    40293.0    4001.0   12140.0    5304.0   14819.0    5172.0    3558.0    562.0    6380.0    1379.0    12762.0   2080.0    3666.0    6263.0    2377.0     908.0    896.0    2600.0    4583.0     70111.0    632.0     5468.0    7537.0   10116.0      6736.0      4316.0    4842.0   12340.0    413.0     5843.0    1780.0      681.0    1482.0    5884.0   1878.0   11869.0    4238.0   16063.0     2634.0   19938.0     9315.0    5254.0    3705.0    9388.0    1555.0    4875.0    637.0       1121.0    417.0    11972.0   10088.0    43688.0   1382.0     1425.0     642.0   14914.0    6257.0   10954.0    2063.0    194.0         34.0    893.0   1329.0      0.0    1539.0    234.0    133.0    11068.0    20271.0    176.0   1580.0   121.0    527.0    412.0    947.0    734.0           0.0      4144.0    405.0    181.0     216.0    389.0    986.0    351.0   1499.0    661.0    652.0   1288.0    453.0    6498.0    1057.0    595.0    136.0    348.0    675.0    908.0    496.0    440.0    750.0    1299.0    296.0    109.0    694.0     0.0    3882.0     71.0    3144.0    590.0    786.0  1076.0     913.0    8830.0    214.0    2035.0                    342.0    0.0   202.0   1146.0   14816.0    2226.0   11251.0     601.0    3528.0    5954.0     738.0    21486.0   1507.0     962.0   11045.0    5945.0    2403.0    18220.0    1891.0    2331.0   132403.0    9799.0    3250.0    5808.0    9859.0    9217.0   1633.0   125445.0    1979.0   1803.0   10756.0    7818.0   1714.0    67313.0    4188.0   3125.0    395.0   2554.0    1408.0   2321.0    3448.0    2392.0    1250.0    1777.0    2550.0   10958.0    3798.0   11885.0    1220.0   20761.0    84588.0    3033.0   62877.0   11305.0   10198.0   1377.0    5790.0   11892.0   4076.0    31836.0    691.0     415.0    1158.0   1333.0    6092.0    811.0   1611.0   10445.0    168.0   16574.0    2488.0    6416.0    4749.0    5975.0    5054.0    1846.0    2588.0    2055.0    38527.0    62182.0   27835.0     7259.0     884.0    27.0   1441.0    770.0   11854.0     5772.0   17411.0    1485.0   17991.0   2617.0    2013.0     70.0    170.0    114.0    1391.0    194.0    1874.0    4895.0    3764.0    1678.0    1385.0    471.0     13.0    18431.0    100.0    3861.0    727.0    301.0    6303.0    1099.0    6062.0    155.0      5.0    3843.0    1417.0    2785.0    279.0   1998.0      0.0    186.0    685.0    788.0    2813.0     108.0    534.0    3465.0      556.0    608.0    510.0    2887.0    2650.0     465.0    150.0    412.0    336.0    2563.0    1992.0    6248.0   1336.0    401.0    5053.0    510.0    620.0   1126.0    41940.0    1796.0    3287.0    2121.0   1048.0    1948.0    3034.0    1241.0       2844.0      529.0       445.0    8493.0    1504.0    2063.0    1564.0    2050.0    607.0    37461.0     1.0    6415.0    10078.0    134.0    120.0     637.0    373.0   1609.0   12596.0     47.0    417.0    193.0    484.0    149.0    2085.0   1642.0    25.0    43.0    45.0      262.0    2470.0    1402.0     829.0    713.0     82.0    4757.0    2223.0    3588.0    5006.0    21378.0    900.0    35032.0    3491.0     0.0       0.0    7068.0     659.0     0.0   281.0   1852.0    13253.0     2.0    3440.0       6270.0    86524.0    4460.0   28917.0    3282.0    94327.0    6651.0    3039.0   147840.0    8700.0    6692.0    30.0    8499.0    5880.0    86267.0   1364.0     1485.0   1554.0    9467.0    2050.0    21999.0    39650.0   183109.0    673.0   10088.0    3325.0   120.0   15583.0    652.0    431.0     4218.0    4923.0    1047.0   2230.0    51696.0   107230.0    7479.0   15691.0    80679.0    51489.0    7103.0    628.0    5839.0    3146.0   31591.0   209589.0   1526.0     71372.0        14281.0   1733.0     429116.0    5649.0    367.0    19425.0   2271.0    1967.0    101.0      6389.0   1977.0    1826.0     1.0    968.0    523.0     7650.0   2531.0      23152.0   2640.0    33658.0         NaN      NaN       NaN          NaN      NaN      NaN       NaN      NaN         NaN          NaN       NaN       NaN       NaN      NaN       NaN       NaN      NaN      NaN      NaN      NaN      NaN      NaN      NaN       NaN     NaN       NaN       NaN      NaN      NaN      NaN        NaN       NaN       NaN      NaN         NaN       NaN      NaN      NaN        NaN      NaN      NaN      NaN        NaN         NaN      NaN      NaN       NaN      NaN      NaN       NaN      NaN      NaN      NaN       NaN      NaN      NaN      NaN       NaN          NaN      NaN        NaN           NaN      NaN        NaN        NaN         NaN           NaN          NaN       NaN       NaN           NaN  134516.0      NaN       NaN       NaN      NaN      NaN      NaN      NaN       4688.0   25651.0    1573.0   200242.0   13273.0    16597.0         2458.0   13720.0    1319.0   28762.0    5175.0    3053.0    14585.0    16170.0   2743.0    44232.0    7990.0    4168.0       7017.0   13940.0    8301.0    10446.0    7019.0    14889.0    3063.0    7165.0   33243.0     8209.0    58786.0   10604.0    4294.0    38453.0    3507.0    8680.0    9179.0    9932.0    7089.0    32849.0    5812.0    2155.0    1092.0    6351.0    4836.0    19489.0   10174.0    45940.0    3273.0     37307.0   14971.0    2694.0     4.0       8145.0    15425.0        291.0    3129.0    502.0     963.0    1278.0    2141.0    341.0    851.0    922.0     99.0       340.0     77.0     975.0    3211.0    350.0    537.0    2550.0    637.0    208.0    319.0    425.0    158.0      779.0    621.0    882.0   1430.0    257.0    845.0    109.0    156.0     9.0    1496.0      648.0     6.0    534.0   1194.0     2.0     595.0   1303.0    1497.0    3467.0    822.0    202.0   1051.0      58.0    1355.0     87.0    284.0    23393.0    639.0        1696.0     9425.0    202.0     71.0   1304.0    119.0    880.0     54.0   130.0   1381.0    404.0   2684.0    2081.0    10.0    793.0    1199.0    370.0    3195.0    4267.0   1788.0     730.0    6352.0    4396.0    1936.0    346.0    3705.0    5845.0    2014.0    2117.0     993.0   1561.0    2597.0    3770.0    3239.0     3959.0    61886.0    2332.0    1428.0    3323.0    4778.0    4089.0    1594.0    3216.0    6246.0    4823.0    1150.0    7501.0   1482.0    6700.0    21061.0    442.0    4759.0    3306.0    4063.0    3585.0    3485.0    1966.0    1775.0   1661.0     927.0   1035.0    3372.0    1548.0    18845.0     627.0     2837.0    3615.0    969.0    1254.0    1909.0    4074.0   12073.0    2073.0    1862.0    6471.0    6982.0    3498.0    964.0    4614.0     9285.0    274.0    800.0    4266.0    2679.0   1267.0   1076.0   1797.0    9215.0    2938.0    2172.0    6992.0    21003.0    821.0      534.0    3990.0    97770.0    2151.0   1243.0    9839.0    22844.0    4290.0    1745.0   1648.0    514.0    1281.0     232.0    1987.0     9170.0    1093.0    3653.0    2366.0     9913.0   10172.0    5550.0    1801.0   13834.0   2809.0    221.0     204.0    5546.0   1407.0    947.0   1210.0    5316.0   362.0    5000.0    15298.0    212995.0    932.0    0.0   1465.0   14064.0    27891.0    14928.0    675.0   196.0   3116.0    6417.0   1173.0    2449.0    5690.0    1544.0   1026.0   150490.0   1958.0    205.0   3741.0   1132.0    2761.0    5732.0     137.0    537.0    369.0    855.0    741.0    32689.0         112.0    778.0   19144.0   1132.0    266.0    1499.0    2346.0   568.0   1081.0   1011.0   1275.0     394.0   1664.0    222358.0    3138.0    5887.0     5574.0    94.0    30817.0   409.0   1085.0    244.0   2681.0    930.0    18551.0    221.0   122336.0   14658.0    2428.0   1183.0    3765.0   3597.0    561.0   1737.0   169.0    49458.0   1103.0     981.0    1337.0   1782.0    29216.0   1209.0    1523.0      29.0    935.0    3095.0    2044.0   10735.0   13347.0    5435.0   12262.0   11161.0   334.0    988.0   1129.0    331.0    5416.0    434247.0    8571.0    481.0    483.0    12584.0     62.0    5635.0   266295.0    2473.0    4044.0    5846.0    4390.0   1942.0    3657.0    520.0    7383.0     1953.0     0.0    452.0    2375.0   4549.0       27.0    25532.0    751.0    6384.0   11396.0     811.0    2401.0    9438.0   1728.0   257.0    46.0    2409.0   315.0    0.0   206.0    6593.0   1228.0   1588.0    8109.0    4671.0   1304.0    5671.0   2542.0   1556.0    8889.0    2185.0    218.0   1285.0    451.0    0.0    39788.0   1146.0    1213.0   2197.0   1166.0    237.0    8120.0   20231.0     681.0    22927.0     97.0    7100.0    155.0   16834.0    1179.0    375.0    528.0   1685.0    29126.0    4979.0    757.0    84.0     12461.0    5879.0   1799.0   1111.0    66545.0    1037.0   356.0    7170.0     3497.0   6218.0    7216.0    2692.0   1436.0    4713.0    21434.0   1046.0    879.0   11732.0    899.0   1072.0    3113.0   1525.0   2004.0    36.0     828.0    5898.0   1224.0    3327.0   1441.0        2892.0      1854.0      11042.0    524.0      412.0    1847.0        15.0    5155.0    170.0    20594.0     646.0   24969.0    842.0     49.0     192.0    479.0    864.0    145920.0   12692.0    38.0   1905.0        308.0    5201.0   13172.0    78272.0   1064.0    694.0     1.0   2104.0   515.0    4797.0   17465.0    4702.0   14953.0   11412.0    2163.0    440.0    10094.0    53516.0    8410.0    282.0   10132.0    1150.0    8032.0    26153.0    4590.0    622.0    4104.0    5396.0   1170.0   1918.0   1026.0   2699.0    109.0    1506.0    1648.0    278.0     0.0     7030.0    196.0    313.0    625.0    144.0     736.0    620.0    152.0     70.0    191.0    80.0     0.0    57467.0    5283.0     416.0    350.0     346.0     626.0    204.0    816.0    15768.0    1616.0     7572.0     0.0     7328.0    564.0      287.0      72.0    10579.0     0.0   1973.0        0.0    268.0     17.0    123.0    507.0   122.0      508.0    844.0    570.0          971.0    120.0     1877.0   535.0    4163.0    4170.0         15431.0    1240.0    848.0    660.0      583.0   33839.0    1583.0     6.0    2626.0    556.0    2090.0        764.0     800.0    947.0     1693.0            200.0    1274.0   1178.0    4234.0       1056.0     268.0               4535.0         12186.0      20863.0    228.0                5200.0          108.0    38.0    3322.0      308.0        5436.0     216.0    1738.0       4485.0    295.0   129303.0       1750.0            1608.0    3936.0   1686.0   2036.0    1237.0        1955.0    2632.0               846.0     5193.0     46.0      575.0    1640.0   2457.0    613.0      2750.0   1619.0       4439.0    9044.0            7631.0    49124.0    4637.0      0.0        1269.0        3685.0     4804.0      1176.0        556.0          289.0      97.0   1488.0          201.0    26815.0   1016.0     444.0         3329.0    525.0             1659.0        5104.0            2762.0     70.0      7437.0    1222.0     1722.0    268.0    538.0            7634.0      12314.0      6615.0         1062.0        10.0   3046.0   1001.0   6367.0   3325.0          4564.0       2358.0         243.0         10102.0    884.0        2358.0         827.0        43443.0   1451.0        308.0        332.0   1070.0       12767.0    3254.0       7154.0      341.0     4818.0   1079.0     1870.0   1611.0    11077.0    3360.0      4781.0       9080.0    3124.0         890.0      14166.0    690.0   2055.0     611.0   912.0             17184.0    2877.0     3730.0           721.0        849.0            1581.0           901.0    3161.0   1178.0    1454.0     1547.0   1282.0    28712.0    4111.0    270.0   16161.0    252.0    1411.0    1937.0    63.0   12783.0     18.0    5053.0       1702.0   3753.0      37.0   190904.0    3326.0    3453.0     799.0    1928.0    287.0   1202.0    2461.0    531.0        149.0    46307.0      0.0    5682.0    164.0    55893.0    34429.0    871.0    4941.0   292.0       0.0      2228.0   12798.0    1648.0    55386.0         485.0    3817.0    934.0     22.0    858.0    4622.0     0.0    401.0     176.0    3590.0     13.0   1209.0     1122.0     447.0    670.0    194.0    1959.0   5342.0    1631.0   16352.0    446.0    407.0    6056.0    986.0   1731.0    863.0    118.0    4636.0   2183.0   1796.0     1665.0   1046.0    157.0    603.0    1914.0     213.0     446.0      149.0   1288.0    2591.0    1597.0    239.0    206.0    403.0    568.0   1042.0     18.0     62.0     1.0    274.0    2729.0     0.0    797.0    55.0    2056.0    942.0    1008.0    728.0    2783.0    881.0    18139.0    652.0   1092.0    2183.0    3318.0    3816.0    1399.0    444.0    13345.0    6509.0    1319.0     741.0     762.0     4410.0    814.0      4895.0   1819.0    6844.0     699.0      541.0     324.0   1106.0     598.0    3489.0     718.0    18729.0    1459.0    2846.0     241.0    2234.0    2468.0    2945.0   10258.0    2746.0    1045.0     365.0   128548.0    1243.0    2343.0    2411.0    11079.0    5923.0    160.0    1778.0    1165.0    2994.0    248.0    24482.0   1501.0   10127.0    567.0    1886.0    506.0    3490.0    5552.0    2044.0   1171.0      1284.0    1040.0    823.0   1029.0    8183.0    439.0     8850.0    25548.0    9508.0     825.0    11017.0    2501.0     552.0    906.0    1035.0    746.0    425.0    279.0    4236.0    723.0        31.0    459.0    2345.0    515.0    3331.0     35.0     455.0    476.0     895.0    232.0      768.0     317.0     502.0     0.0   1397.0     74.0\"}, \"execution_count\": 10, \"metadata\": {}, \"output_type\": \"execute_result\"}], \"source\": \"transformed.head()\"}, {\"cell_type\": \"markdown\", \"metadata\": {}, \"source\": \"Creating dummy variables for categorical datasets is another popular ML/stats preperation step that can be difficult in SQL but a single function in Kolas\"}, {\"cell_type\": \"code\", \"execution_count\": 14, \"metadata\": {}, \"outputs\": [], \"source\": \"dummies = ks.get_dummies(dfq)\"}, {\"cell_type\": \"code\", \"execution_count\": null, \"metadata\": {}, \"outputs\": [], \"source\": \"dummies\"}, {\"cell_type\": \"markdown\", \"metadata\": {}, \"source\": \"Additional data manipulation techniques (ex. time series functionality) and quick access to plots are also some of the many helpful features of using Python at BQ scale\"}, {\"cell_type\": \"code\", \"execution_count\": 86, \"metadata\": {}, \"outputs\": [{\"data\": {\"text/plain\": \"<AxesSubplot:xlabel='state_name'>\"}, \"execution_count\": 86, \"metadata\": {}, \"output_type\": \"execute_result\"}, {\"data\": {\"image/png\": \"iVBORw0KGgoAAAANSUhEUgAAAXoAAAEKCAYAAAAcgp5RAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjMuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/Il7ecAAAACXBIWXMAAAsTAAALEwEAmpwYAABcE0lEQVR4nO29eZwcd3nn/376np5bmpE0umVZNr5tWTY2xhw2JNiQOASWmE3ikGRjTDiW3exmSTa7C5tfyGuT/Da7/AI4hmUTNgmEew0YDPjCYGQsy7ZsyddIlqx7RnP39PT9/f1R9e2u6anuru7pc+b7fr30Uk91dXdVd9VTT32eS5RSGAwGg2Hl4mv1BhgMBoOhsRhDbzAYDCscY+gNBoNhhWMMvcFgMKxwjKE3GAyGFY4x9AaDwbDC8WToReRtIvKiiIyKyMdcnhcR+ZT9/AER2W0vv1BEnnb8mxWRj9Z5HwwGg8FQBqmURy8ifuAl4K3ACeAJ4L1KqUOOdW4FPgzcCrwW+J9Kqde6vM9J4LVKqWP13AmDwWAwlMaLR38tMKqUOqKUSgFfBm4rWuc24IvKYi8wICIjRevcDBw2Rt5gMBiaS8DDOpuA446/T2B57ZXW2QScdiy7HfiSl40aGhpS27dv97KqwWAwGIAnn3zynFJq2O05L4ZeXJYV6z1l1xGREPDLwB+V/BCRO4E7AbZu3cq+ffs8bJrBYDAYAESkpFriRbo5AWxx/L0ZOFXlOrcA+5VSZ0t9iFLqHqXUHqXUnuFh14uSwWAwGGrAi6F/AtglIjtsz/x24N6ide4F7rCzb64DZpRSTtnmvXiUbQwGg8FQXypKN0qpjIh8CLgf8ANfUEodFJG77OfvBu7DyrgZBeLAb+vXi0gUK2Pn/fXffIPBYDBUwotGj1LqPixj7lx2t+OxAj5Y4rVxYO0yttFgMBgMy8BUxhoMBsMKxxh6g8FgWOEYQ28wGAwrHGPoDYYVwJHxGL/y6Z8yE0+3elMMbYgx9AbDCuC5U7M8fXyaI+dird4UQxtiDL3BsAJIpLMAzCezLd6S1cnjRyb4o28caPVmlMQY+g7iwIlpvv7kiVZvhqENSWZyAMSSmRZvyerkkZfG+dLPj5PJ5lq9Ka4YQ99B/P1jx/jT7x6qvKJh1ZG0Pfp4yhj6VrBgf//6gttuGEPfQUzFU8wbj83ggjYw5vhoDYm09f0bQ29YNpPzKdJZRapNDyZD6yhIN0ajbwXJvEffnt+/MfQdxFQ8BRivzbCUZD4Ya46NVpCXbtLt6YQZQ99BTM3bht7osIYiTDC2tSSMRm+oB+lsjtmEdRKbFDpDMVoyMMHY1qA9em3w2w1j6DuEaUfFo/HoDcVoycA4Aa3BBGMNdUHr82B0WMNSErZHb6Sb1pAwwVhDPZicdxr69jyYDK2j4NEbQ98KEiYYa6gH08ajN5TBBGNbi5FuDHVhcr6g0ZuAm6EYLRmY+E1r0NKZCcYaloVTozdFMYZitEcZN8dGS1hImfRKQx2YnE8RDfnxiZFuDEtJmmBsy8jlVN7Am2CsYVlMzadY0x2iOxQwt+eGJRQMTa5tOyiuVJxevPHoDctiKm4Z+mjYbzx6wxKc2R4mK6u5OHV5k3VjWBaT8TQD0RDd4QDzKXMiGxaTyGQJBazTOWbu+JpKwiHXJDpZuhGRt4nIiyIyKiIfc3leRORT9vMHRGS347kBEfmaiLwgIs+LyPX13IHVwtR8ijXRoCXdGI/eUEQynWNtdwiAuDk+mspCagV49CLiBz4N3AJcDLxXRC4uWu0WYJf9707gs47n/ifwfaXUa4ArgOfrsN2rjqn5FIPdIbrDfpNZYViEUopkJsvaHsvQm4Bsc0mknRp9e56bXjz6a4FRpdQRpVQK+DJwW9E6twFfVBZ7gQERGRGRPuANwP8CUEqllFLT9dv81UEqk2MumWFNNERPOGBOZMMiMjlFTsGa7jDQHI0+kc7ygX94kqPn5hv+We2OU67p5GDsJuC44+8T9jIv65wHjAP/W0SeEpHPi0j3MrZ3VTK9YOXQD3SHiIYCpmDKsAgdDNTSTTMcgRNTcb733Bl+/spkwz+r3UmkVoahF5dlyuM6AWA38Fml1FXAPLBE4wcQkTtFZJ+I7BsfH/ewWauHKbsqdo0djDUFUwYn2rissQ19M2I4CynrMxfatBK0mSwKxrbp9+HF0J8Atjj+3gyc8rjOCeCEUupxe/nXsAz/EpRS9yil9iil9gwPD3vZ9lWDbmg22B2kO+Q3Hr1hEUsMfROOD23gjaEvaPTRkL+jPfongF0iskNEQsDtwL1F69wL3GFn31wHzCilTiulzgDHReRCe72bgUP12vjVgm5/sKbb8ujjqSy5XPFNlWG1kiySbpqh0ecNvUn1zX8HA13B/G/RbgQqraCUyojIh4D7AT/wBaXUQRG5y37+buA+4FZgFIgDv+14iw8D/2hfJI4UPWfwgPboLenGD1heW28k2MrNMrQJ2qPs7wo2rUWGNm7tKlU0Ey3d9HUF29ajr2joAZRS92EZc+eyux2PFfDBEq99GthT+yYadItiXTAFEE9ljaE3AIWUvkjQb8dwGm/otYGPG4++4NFHg8wstKesaipjO4DJ+TQ94QChgI/ukGXoTYqlQaO9yHDAR0+4OQV1RqMvoL///jaWboyh7wCm4ikGuy3vPe/Rm8wbg03e0Ad9REP+5gRjU8bQaxLpLD6BnnD7SjfG0HcAk/Mp1kStQFt3yNLojUdv0GgZJRzw2x5984KxCSPdsJDKEgn6iQR9HV0Za2gxlkdvG/q8Rm8MvcFCe5GRoM9qetdEjd549FYw1jL0/s7tdWNoPVPxFIPaow8bj96wmKTDo29WMFZLNyYYa2U9dQX9hAM+I90YamdqPu0w9IWsG4MBXIKxTSyYMumV1ncRDvoIB/yksjmybVjjYgx9m5PMZIklM6wpCsaaVsUGTSEY66c77G9uwZQx9CTTWSIBP+GgZU5TbejVG0Pf5kzHrT43WqOPBu2CKZN1Y7ApBGOt9Ntm5tGbyljrYtcVsqQbaM9WxcbQtznOqliAgN9HJOgzc2MNeZzSTXc4QCqTI93gubEmvbJAIp0jEvQRsZ2wdtTpjaFvc6YcVbGaZnlths4gaY8RFJGm1VmYXjcFEulsPhir/243jKFvc/Itirsdhj4cMOPiDHmS6RwR28j06KysBt/xLdhphJmcavjdQ7tjBWP9hAPGozfUyGS80KJYEw35TU96Q55kxjI00LxgvbNQarXLN9aF1qHRt2EuvTH0bc6U7kXvkG56wmbKlKFAMp3LG5lm9UJyGvfVXh2bSGfpCvnyWTcmGGuomsn5FL2RAEF/4aeKNqn60dAZJDMOQ98kj37B1qX149XMgk6vNNKNoVamHVWxmp6wn/lV7kUZCiTtEnwoVE43Ov02kcrm40aruXhPKUUiXeh1AyYYa6iByXg6n0OviYaMR28okHBINz1N9Oh13Gg1e/TprCKnsPPojUdvqJGp+RRroosHjDSr57ihM0hmsnkjk5duGhjDSWdzZHIqf6e5mjX6BUexmimYMtTM5HzKxaO3pBtrsJdhtZPM5PKBQO3RNzIYq42blm5Ws0evG8p1hQotEEzWjaFqpuKFXvSa7nCAbE615S2iofno9D6wPMtGz43VHrwx9IV9N8FYQ80k0lniqewSj75ZOqyhM0hksnlvUlfHNjIYm/fooyYYqwezm2CsoWbyDc2iS6UbMI3NDBbOPHpofAxHG3rtgLSjYWsWibx04yPk1xq98egNVZBvaNa9NBgLjQ24GToHZzAWLGmvkcfGQrF0s4o9eqd0E/D7CPikc4OxIvI2EXlRREZF5GMuz4uIfMp+/oCI7HY8d1REnhWRp0VkXz03fqWjG5ot8eiNdGNw4CyYAuwpU42XbgaiJr0y3yI6WIiRtGMwNlBpBRHxA58G3gqcAJ4QkXuVUoccq90C7LL/vRb4rP2/5s1KqXN12+pVQsGjX1owBZiiKcOigh1Nd8jf2GCsbdy6QwHCAd8qN/SWUddVwuGgv2Olm2uBUaXUEaVUCvgycFvROrcBX1QWe4EBERmp87auOqZdWhSDVTAFxqM3WN0jc4olHn1DNfqUbdxCfrpC/lUt3eiLng7ERgK+toxZeDH0m4Djjr9P2Mu8rqOAH4jIkyJyZ60buhqZtFsUD7gUTIEx9AbnGMGiYGwjNXodgAz66QoaQw/WRQ/a16OvKN0A4rKsuFKn3Do3KKVOicg64Ici8oJS6sdLPsS6CNwJsHXrVg+btfKZiqfoK2poBs6sG2PoVzvJfGWmMxjb2Lmx+QCkNvRt6ME2C2cwFmyNvkODsSeALY6/NwOnvK6jlNL/jwHfxJKClqCUukcptUcptWd4eNjb1q9wJudTS/R5cJa5t98BZWguiYzO4y4Oxja+YKor5CcS9LelVNEsnHn0oA19+3n0Xgz9E8AuEdkhIiHgduDeonXuBe6ws2+uA2aUUqdFpFtEegFEpBv4BeC5Om7/imYqvrT9AVgHk98nxqM3uHr0PaHGzo0teLE+oqHV7dE7B7Nb//s7M+tGKZURkQ8B9wN+4AtKqYMicpf9/N3AfcCtwCgQB37bfvl64Jsioj/rn5RS36/7XqxQpuIp1vVGliwXkYZnVhg6A+dgcI0z/bY4kF8PFtJZQn4fAb+PrpB/Vc8vTqSzVtsJn6Veh4O+tvw+vGj0KKXuwzLmzmV3Ox4r4IMurzsCXLHMbVy1TM2nuXB9n+tzVsBt9XpSBgv3YGwh/XYgWv/PXEhlC1kmQT/jc8n6f0iHUJzaGg74mYilWrhF7pjK2DbG0uiDrs+ZKVMGKEg3kaLKWGhcsN4anWd9XpfR6PM59GBdcDs1GGtoAQuprD3cwf3Wu9t49AYKwdhwUTAWGteq2DlG0GTdZBcFwjs5GGtoAbr9QXGLYo3R6A1QIhjbYI/ekm5sQ28KppZIN8bQGzyj2x+UCqY1uvrR0Bm4BmMbXGex4JRuVnvWTSa3yNBHgp1bGWtoAbpFsVsePdgeveleuepJZhbncYNzylRjDE6iSLpJZ1XDUjnbnUSqWLoxHr2hCibj7i2KNd3hAHHTj37VU5zHDQWNPt4gR6BYo3dux2ojkckuDsYGfKQyubYb82kMfZsyNe/eoljT6OpHQ2dQkG7cPPoGavS2dKP/X63yjTNeAYWgeLt59cbQtymT8ylEoL+rhEcfCpDM5Mis0ltmg4VO5QsXZX40snLamVIY1R59anUeh4nM0mAsGENv8IjV0CxIwO/+E3WbnvQGyJfbO6WbQuV0Y46NRdKN7dHH06vz7jKRXhqMhUI2VLtgDH2bMhVPlwzEQuOLYgydQSKTJRTwYbcZydNIaW8htbhgSi9bjbgFY8F49AaPTM2nGIy6yzZQSKFrVMDN0BkUDwbXdIcDDTk2lFJ2kZCt0QdXt0bvFowF2q461hj6NqVUi2JNo1PoDJ2BNS/Wv2R5o+bGak+1WLpZjVk3mWyOdFYVafSWSU20WQdLY+jblKl4qmTGDThS6Ix001IS6Swf/Mf9HD0335LPT2YWSweannBjKqe1RNNlf6a+s1xYhcFYt1kAeki4kW4Mnpicd+9Fr+kONTaFzuCNYxNxvvvsaX4yeq4ln19Sugk1pnI6P0awSKNfjRJifoygMxgbMMFYg0cWUlmSmVwFj16fYO11QK02YkmrglkPcm82yUy2jHTTOENfrNGvRulG392EF+XRG4/e4JFKVbHQ+A6FBm/MJazvf8puWdFskpncohx6TXfDpZvFGv1qDMbqgKubRm+CsYaKVKqKhcaXuRu8oS+0U63y6Mtk3TSixiJRQrpZlRp9enFgGpyGvr2+D2Po25CZBcs7LFUVC4WKRJN101pitkc/3SKPvrgyU9OoubELRbq03yeEAr5V6dEXZCyXYKzJujFUYtY29L2R0obe5xOiIb/Jumkx2qPXbaWbTTmPHupfUKelG+fFpSvoZ2EV3lmWC8YmjHRjqITWfXsj5Uf6RkMB06q4xczlPfr2CsY2qrFZcdYNrN4pU1q6ibgFY41Hb6jEbMLy6PvKSDdg5Uob6aa1FDT6FgZjXTz6qO6FVOfjw82LtYaPtJdhawau0o0Jxhq8or1E7ZWVIhoKGOmmxWiNfjaRJptrfg/y4lF2mkZlZRVn3YDl0a7GXjeJ9FIZK+ATfGKCsQYPzCUy9IQD+H1Sdr0e05O+5ejvX6lCEL2ZlPLoexqUlaU9d6d0Ew35V2UefdLF0ItIW06Z8mToReRtIvKiiIyKyMdcnhcR+ZT9/AER2V30vF9EnhKR79Rrw1cyc4l0RX0erFxpUzDVWuYcF9pWpFiWzKMPNSgY6zLRqivoX5VpvsXFY5p2nBtb0dCLiB/4NHALcDHwXhG5uGi1W4Bd9r87gc8WPf+vgeeXvbWrhFmPhj7awQPCf3ToLM+dnGn1ZiybWCKNvvGaanLmTSabI5tTFYKx9dfou4L+RW2RI8HVqdHng7FFd1ThgL8jg7HXAqNKqSNKqRTwZeC2onVuA76oLPYCAyIyAiAim4G3A5+v43avaOYSmbKplZqeDs66+U//9zn+5wMvt3ozlk0smWGkvwtofkA26dJUS1MIxtZfo3fKNmDJOO3mwTaDhXSWoF+WDAcKB30dGYzdBBx3/H3CXuZ1nf8B/CHQXpe4NmYukaHPk0ffuClCjUQpxcR8iiPjsVZvyrKJJTJsWaMNfXM9+sJg8OamV3YVSRVdQd+qDca6BcLDAV9HavRuEcHi9ALXdUTkHcCYUurJih8icqeI7BORfePj4x42a+ViafQePPqw5dG328T5Siyks6QyOV6djHf8zNu5ZIYtg1Gg+bn0hcHgS09jPTe2/sHYpW2Ro6HAqs2jdzf0nRmMPQFscfy9GTjlcZ0bgF8WkaNYks9NIvIPbh+ilLpHKbVHKbVneHjY4+avTCzpxoNHHwqgVOc1lNISRzqrODG10OKtqR2lFLFkhg39EQI+aZl04xaMbdTc2ISLdLOa0yvdZLOODMYCTwC7RGSHiISA24F7i9a5F7jDzr65DphRSp1WSv2RUmqzUmq7/boHlVK/Uc8dWGkopexgrBePvjFFMY3GGbQ8cq5z5Zt4KotSVgXzQDTU9GBsvnuii3QDjUm/dZdu/KSyuYbfnb10dq4lKaylSLh8F9ChHr1SKgN8CLgfK3PmK0qpgyJyl4jcZa92H3AEGAU+B/x+g7Z3xZPMWOPJvHr00HkDwp0n65Hx1kxmqgfaiPaEgwxGgy3Q6Et79GB3sGyAoS+WK7pCur9L44ybUop3f/Yx/vaRww37jGopr9G3l/NV2ZoASqn7sIy5c9ndjscK+GCF93gYeLjqLVxleG1/AJ3bk95pEI+0aARfPchXMEcCDHaHmi/dlAnGgpV+24jK2OGe8KJlhVbF2YrV3LWSSOeYTWQ4Od0+Ut9COut6NxUO+joyvdLQRLTx8JJ106lTprRB3LKmq6Mzb7QR7Q0HGIwG2yoYC42ZG5tIu6VXBvLPNQp9F3gulmzYZ1RLIp0jEloh0o2huXjtXAmNa0XbaKZtLXv31sHOlm6cHn20BR59Zmn3RCfdoUDdnYBSGj001uHIG/q51nQJdSORzi4ploLODcYamshconIvek2+zL3Diqam4mm6Q34uWN/L2Fyy46QnjZ4X2xO2grHT8VRTU10TLu0InDQkGJsqrdE3MvurPT36pXc3YDx6gwdmF6rx6BtT/dhopuMpBqIhdg53A/BKh3r1zi6jg9Eg6axq6kWrIN2U8OgbEIxNpHOu6ZVAQ1MstaGfjKfapvYikc65a/RtGIw1hr7NqMaj78lLN+11UFViKp5isDvIecM9QOemWOY1ejsYC80dKaiNSamsm3pXTmeyOVLZXEnpppFyhY5/KNW6aV7FuBWPQaEytp0KGY2hbzOqCcZ2anrlVDzNYDTE1jVRRDo3xVJr9N3hQH6QezNTLJP5plol8uhDAVLZHKk6yQg6fbLY0OvjsBnSDcB4m8g3iXTWPRgb9KOUVRDYLhhD32bMJdKIFPT3coQCPkJ+H/MdlnWjpZtI0M/mwa6WpVimszne/qlHefCFszW9PpbMEAn6CPp9DEatO7BmBmQTFTz67jr3pM/Piy3OumlCMHbWYejPxVrv0edyimSmtHQD7TU31hj6NmPWHjriqzB0RBNtQApdo7E8esswnjfU07IUy7OzCQ6emuVnhydqev1cMkNP2NqPgaiWbprv0Yf8pYOxUL86C7cxggCRJgZjAc7Ntd6jL5fx1I5zY42h98BDL47xuj9/oCnDFazOlZX1eU13h7UqzuasFg8DdkHYjqFuXjk33xI9U3uGxydrK8KJOXoS6QtXM/XjZCZHyO8r6RR01zmGs1DC0Oc1+gZ69NMLaYZ6rItpO2TeFC567ho9tNfcWGPoPfDY6DlOzSQ41YSqPK9DRzTdHebRzy6kUargAe8c7iaeynJ2tvkn77jtGZ6Yjtf0+lgyk/ea+7uCiDRXuklmsiVTK6GQlVUvjz4/Lza0+DPzlbEN9uhH+ruIBH35362VaFmmVAsEaK+5scbQe+CwHSwcb0Kxhtcxghorha59PIdK6GDlYLct3ejMmxbIN9pgLMej14Y+4PfRF2ludWwincvLBG7Uu6Cu1Oi8gN+KFTXa0Pd3BRnuDbeFR1+46Lnn0YORbjqOw7YRasYBttKlG+3xao9+x5CVS9+KgKw29DML6XyPoWqYS2bocVyUrcZmbeTR1zkrq5R0A1Y1aKPz6Pu7ggz1hNsiGJtvKOcSjNUplyYY20Ek0lmOT1q39hNNMvQrWbrRHq9OR9zQF6Er6G9JiqXzwn2yhr74sWSaXkcTL10d2yxKDQbX5Oss6mSAE2W82K5Q+Z70SqllxWFmF9L0R7WhbwOPPn9346bRG4++4zg2ESdnH5/N8CS8TpfSdIc6TbqxPF4dvPT5hB1D3S0pmhqfS+YHe+uLeTXEEm4efXOzbkpVxUL9K6fLefRdQX9Z6ea9n9vLn3/vhZo+VynFdNzp0bfe0CfLfBf64muCsR3EYYd23OgDzBo6Uq1H31nSjfZ4tXQDsGPYyrxpNuOxJBes7wWoetKVni7lbMs7GA0xNd9c6cbNo9TUu421livcpZvyhv7ZEzN8Y/9Jcrnqvfp4KksmpyyNvifExHzr2yCYYOwKY3TMMvTb10YbbugX0lmyOVWdRx8OEO8ojz6F3yeLKn93DnVzfDLedA9ofM4y9NGQn+NT1Xn0ekDMIo++O9QCj770KaznxtY9GOsi3URD/pItEOaTGeZTWc7FkjxzYrrqz9U59P1dQYZ6w1YbhCa3hC5mIVUmj15LN8bQdw6Hx2NsGuhiy5pow6WbfPuDrio8+pC/rmXujWYqbuXQixRyv88b7iGn4NWJ2tIca+VcLMm63jCbB7uq9uidveg1g9Eg8VS2aRcsKxhbWropzI1tbMEUWBp9qcrYMUc65I+er74KWRv6ga5gfuhJq9sVl/su8sHYNmpVbAx9BQ6Px9i5rqcp2mA1Dc009S5zbzRW+4PF+9eKzJv5ZIZ4Kstwb5gtg9HqDb2jF72mUB3bHPkmmSnv0YMVkK1XMHYhlSXgE4IulbhdZQaE6+ymSNDHA8+PVf25+vvUHj20vmiqIN2UCca2kfNlDH0ZcjnF4bF5dg53M9QT4lws2dAKztkqho5o6l0U02im7YZmTs6z2xU3M/NGG5+hHtujn4xX9ds658Vqmt3YrNTMUif1bFXsNnREEwmWlm7G5hIA/NLlG3nhzFzVgW/t0ffZwVhovaHXFzW3OoZ8MNZ49J3BmdkEC+ksO4d7WNsTJpHONbRxUzWdKzUFj759DqpyTMXTSzz63ohVCNPMoindAXG4N8yWNVHmkpn8LAAvOHvRa5rdBsGLR99dx+EjCyW6NUL5rBt9Ub392q0APFClfDPr1OjbpA1CskQnTzDB2I5DZ9zsHO5piiehD+hq0yuhkzz61KKMG43uedMsdGOsYVujB6oKyDp70Wua3ZO+Uh492NJNvTT6VGmPPhoqbejH5pIEfMJVWwY4f10PP6pSvskHY6NBesIBwoHWt0FYSGXxCQT9S/sMhfw+RIyh7xgO2xk356/raYonUc28WE2nzY2diqfynq+TncPdTdXonR795sEoACeqMvSFMYKaZks3yXT5YCxYgf3phfpceMpKN2WCseNzSYZ6wvh8ws0XrWPvkYmqKpFnFtL4fUJvOICI2G0QWh+M7Qr6FyUVaETEGj5ipJvOYHQ8Rl8kwFBPKO/RN7LfjQ7GVtMCIRrSRTHtc1CVIpHOkkjnSnr0k/OpplWW6mKpwWiILXlD7z0g6x6MtX63Znr05fLoAUb6uzgzk6hLbKmSdJPK5Mi65MmPzSVZ12edP2+9aD2ZnOLHL417/tzphRR9kUDeqLZD0VQiUz4+0m5zYz0ZehF5m4i8KCKjIvIxl+dFRD5lP39ARHbbyyMi8nMReUZEDorIJ+q9A43k8Ng8O9f1ICJ5Qz8x31iP3u+TvPH2Qk8HefRTRe0PnJw3pMcKNserH59LsrYnbOX0dwXoDQeqChLOJZdq9JGgn66gn6kmaPSZbI5MTlX06DcOdBFPZety8VlIZV3b8kL5cYLjc8l8WuRVWwdZ0x3iR4e86/QzCxn6uwrOz1BPuA2km1wFQ99ec2MrGnoR8QOfBm4BLgbeKyIXF612C7DL/ncn8Fl7eRK4SSl1BXAl8DYRua4+m954Do/H2Gl3V1yrpZsGe/Q94YDr7WApomE93acDDP384vYHTpqdeXMuVjA+IsLmNdWlWMYSGYJ+WRIMbVZjs8Jg8PKn8KaBCAAn69BiO1FGutH9b9x0+vG5RN6j9/uEN1+4jodeHPdc3aobmmmGe0Otl24qVCWHg76O63VzLTCqlDqilEoBXwZuK1rnNuCLymIvMCAiI/bfOpUiaP9rn0GKZZhNpBmbS+YNfdDvYyAabLhGX40+D84pQu3jPZTCrf2BZsuaKAGfNC3zZnwuybCdkw2webCr6mCs20W5WdWxXg39xgEr0FyPWQoLZdI58z3pi3T6TDbHxHyK4d5IftlbLlrHzEKafcemPH3uzEKafscxM9QTZnI+6SoTNYtkhdTWTpRuNgHHHX+fsJd5WkdE/CLyNDAG/FAp9bjbh4jInSKyT0T2jY971+8ahfYsd9qeJsDa7lBjs26qbGgG2AGhDvHodUOz7qX7GPT72Lom2rTMGx0g1OjqWK9adnFDM81gtFmGvnSvFSf1NvSVPPpi6WZiPoVSLLqo3njBMCG/z3Oa5Uw8tUS6yanmTvMqptxFD6xCqk6rjHXTEYrPhpLrKKWySqkrgc3AtSJyqduHKKXuUUrtUUrtGR4e9rBZjcWZcaMZ6gkz0cBbxmobmoElO/SGA00LAC6Hcho9WPJNM6QbpRTnYqlFxmfLYJR4KutZdnHOi3UyEA025bfI90OvEIxd2x0iFPBxaiax7M9cSOXKBmNhaT2H1tLXOb7rnnCA63au5YeHznq6sFrSTeG8GG6D6thEOlfyoged6dGfALY4/t4MnKp2HaXUNPAw8LZqN7IVHB6PEfQLW9ZE88uGGjzdptqhI5pGb1e90NKN0ztzsmOom1cm5ht+Sz67kCGVzS2RbsB7u+JYIrOoz42m2R59pWCsiLBpoKvxGn2JcYK6Ktb5XQO89aJ1HJ2I56e3lUJ3dC326KHVhr6CRt9pwVjgCWCXiOwQkRBwO3Bv0Tr3AnfY2TfXATNKqdMiMiwiAwAi0gW8BaitKXWTGR2LsW1t96K+HsM94Xz+dSOYS6SrqorVDLdBupkXpuNpuoL+kre85w33kMrkGj6bdzy21PjoC7rXgGwsWUq6CTKzkG74xSqZ9qbRA2wa6Fr2d6qUqphHD0sNvZtHD3DTReuBylWysWSGrN2iWNMO1bGVpBvL0HeQR6+UygAfAu4Hnge+opQ6KCJ3ichd9mr3AUeAUeBzwO/by0eAh0TkANYF44dKqe/UeR8agpVx071o2druEHOJTMOu1LUEY0F79K0fr1aJqXjaNeNGs32t9X0fa3AXy7F8n5uChLTJ9ui9Fk0V96LXDHaHUKpQzdkotBGppNEDbByI1DRBy0k6q8jmlOt0KSjUcySKpJux2UJPISebBrq4eKSvYjfLQudKRzBWSzct7GCZTFdKr/S3VdaNJ6uilLoPy5g7l93teKyAD7q87gBw1TK3semkszmOTcT5xUs2LFquD7CJWCof5KoXSqmqp0tphnvC+ZL+dqZU+wONNryN7jXu5mX2RYL0dwU9Z97MlQnGghWPWNNdel+Xiw70efHoNw50MTaXrNjWuBylBoNrSkk347Ek/V1B19e95aJ1/M1Do0zOl/6udLyjz+HR94YDhAK+ht5dV2KhknQT9JmZse3Oq5NxMjmVT63UNFIbnE9lyanq2h9ohnpCzCUzbRXld2MqnnLNuNEU2vw21tDru5/hnsii5VvWeO9LXzwvVlOojm3sPhTSK7149JZTcnam9uO2XP915/LiYOzYbHKJPq+58YJhcgqeerV0mqWzoZlGRFru3JSLVwBE2syjN4beBZ1xs3PdYkO/toHaYC296DX6RGp1tWAlpuPpsh69NpKNHsc3Ppck5PctGfCyeSDqKRibzuZIpHPu0o326Bu8D/lgbIWsG7BkElhe0dRCfjC4++dFSqRXjtvDXdzYasdFymUEzbgYerDurlvl0SulKraIDgc7Lxi76jjskkMPFKbbNEAPr2W6lKbZWQhf2Xec+549XfXrSjU00wT9PnrDgYZnrVg59KElxU7ao6+U8qfbTVSSbhpJNcHYeuTSlxsM7lxeXDA1Npco6dEP9YQJ+ITTZbYrr9EXHTfDPa2rjk1lc+RU+fhIxwVjVyOHx2Os7wsv8a4baVCX49EPNfACVMy5WJI/+dZzfO7RI1W9LpdTzCwsHTpSzEB3sOGyx3jMXU7YPBglmclV/B7detFrBmxpqtGGvtxw6mJG+i2Jqh6GvtTnBf0+gn5ZpNErpRifK+3R+33C+r4Ip8t49NOlPPoWZprpGoaVVhm76nD2uHHSFfLTHfI3JNpfy3QpTTPHq33xsaOkMjlOT1dXgDObSJNT7u0PnFh56I2VPc7NlTL03vrSl2sn3RsOEPBJw/ehGo8+EvQz1BPm1Ezthl5n05TVpYuGj1hxo1xJjx6si1C5C9DMQpqAS6M/qw1CqiVtEJL5i175PPpsTpH22M+n0RhDX4RSitExd0MPsLZBnoQOOtWSR6+zVRqt0cdTGb649xhg3ZJ7bUoFjvYHZaQbsC4EzfDoi9P9wHsuvdsYQY2INGUfqgnGgtXcrNq5uE7y0k2ZzqrFc2ML2U2RUi9hZKCrrEevG5oVy2xDPSGyOdW03v9OKslYUPD228WrN4a+iPFYkrlEZok+rxnqCTWkVXHBS6xeugkH/PRFAg336L+67wTT8TTvvnozOQVnq7iwVGp/oGl098dsTjFRQrrRQctKAdn80JESF+XBaLB5wVgPHj1YOn0jNXqwLgJOj17n0Jfz6Df2RzgzkyBXwjMv7lyp0U3SSh3zn3l4lI/fe7Dk5y4HT9JNm82NNYa+iMNjdiB2nbtHP9QTboh0U5gXW72hh8a3Qchkc3z+J0fYvXWAd1w+AlA2iFbMTLwwDq4cjW4hMDmfIqfcjU93OMCa7lBFz7ecRg/NaYOQSOcI+X34fN5aWluGvvYBJNpTL2fclnj0MfeqWCcj/RFSdodLN2YX0q7HzFCZtuFKKf7hZ8dqShjwwoJH6QaMR9+26Dmx55cy9A0yqHMJS4usNDGoFI26AGnuP3iW45ML3PmG8wpZHFU0yvLq0Q9Eg8wlMlXJQtWgf7thF+kGYMtgV8XqWLd5sU6a0djMKn7yfqxsHOhiIV37AJKEF+lmiUfv3ufGyYh9LJ0uET+Yjrt79OXiUscm4pyaSTAeS5JqgKFNVAhMQ0FSM4a+TTk8HiMa8rOhz11XHOoOMRmvfxBItz+oZuiIk+EG5hUrpbjnx4fZvjbKWy/ekM/iqMaj96rR6wtBveacFqN146ESxmfzYOUBJLEKHv0a+xhpJF4GgztZ7gAST9JN0L8oj348ZtUrlGpiB7CxX6d+ujsNpaSbchlwjx2eAEApODu7/K6dxXgz9L5F67YaY+iLODw+z87hnpIGd6g3jGpAL+xa2x9oGlkp+PgrkzxzYoZ/deN51pDmSJDeSKBsEK2Y6XgKn1SWphpdWaoNfSmPfvOaLk5OLZTUjMHy6EUoOfJRB2PrMae1FMl0rqp2BpsG7OKkWg19qrIu3RVcPCB83K6KLee8jNgXoFIefSlD3xcJEPK7t0F47PC5/ONqjlGv5A19me/fBGPbnMNjS5uZOWlULn0tveidNLINwj0/PsLa7hDvvnpzftnG/upa307ZwyMqacqFgqMGefSx8gHCzYNRUtlcvvGZG3MJ9+lSmsFokHRWMZ9qnDeXyGSr8ug3Diwvl34hnSUU8OEv8/tFiqSbUvUKTnS/fDeDnMspZhNpBlwMvYhYd7FFv5NSip8dnuCyTf1A6QvIctDB2HIyVl6jNx59+zGbSHNyeqFkaiVYBybU39BbHn3thr5RwxhePjvHgy+Mccf12xd5cyMDkapOIqtzZeUmX4UWAo3x6M/NJYmG/HSXkF02e+hiGUu696LXNHofoHqPfk13iHDAV7N0U6m3C9jSTWpx1k25QCxYBrtULv1cMoNSixuaORlyqY596WyMifkU79ptDcErJQkth4SXYGzQBGPblsdGrVu+1563tuQ6zg6W9aTWoSMafadR71z6e358hEjQx29ev23R8pH+rqqKpqzOlZX3ryDdNM6jd8uh12wZrJxLX2qMoKbR+wDVB2P1AJJaDd9CqrKhjxYHY8u0P3Ay0u9eHZvP1Cpp6JfKlVq2ecvF6215sf4evZd4RS3BWKVUw0aC1u5CrkAeemGc3kiA3VsHSq7TKOnGCsYu39DXsw3C2dkE33r6JLdfs3VJG9mN/REm5lMVmztppubT+SBuOQa7G9srpngoeDFeJk2V6kWv0d9VIwOyyUyuKkMPVubNcoKx5aQKsNMrbSOYyuSYiqfLFkvlt6u/i71HJpYsL9XQTDPUE+bZkzOLlv10dIJta6NsHoyysb/2C1s5vLVAKB2MTaSz/M2Do5ycXuBcLMlELMXkfIqJ+SRru8Ps/eOb677NxtDbKKV4+KUx3rBrmIC/9AlULgi0HGaXKd00og3Cdw6cJp1V/M7rdyx5TqfFnZlJsH2odExDMx1PcdFIX8X1ukN+gv7GtRAYn0uWleYiQT/DveGyHv1cMlM2k6QZ7ZaTmZyrdl2OjQMRHn5xvKbPqzRRCazvLpHOkcupQhqrF49+IMLZuSTZnFoUA6ho6HtDTMynyOUUPp+QyeZ4/MgE77hiJP++jdHoKxerlQvG7j0ywd88NMqGvgjr+yOM9Ee4dFMfa7rDrO+r/H3VgjH0Ns+fnuPsbJI3XVh+MLmIsLYnVNec9VxOEUtmamp/oCkUkNTP0B88NcP6vjA7XAz5Rt0oa2bBk6GvNF1KU00Lgd/8X4/zjstH+LVrtlZcV3MuluS6MtIcWF59uX43sUSazWUGzwzm2y03UqPPEvZgRJ0sZwCJpdGXv4PQHn8iky05QtCNkf4usjnF2FyCkf7C91roXOke2xnuCZPNKaYX0qzpDnHw1CxzyQzX7xzKv++BEzOur10Oel5suWyiQsHUUo/+6DmrKPPeD9/g6Y6nHhiN3uahF8cAeGMFQw/WLWM92yDEUlbQaTnSjW6DUM87jUOnZrm4hBeeL3TxcGucSGdZSGfzskwlrDYI5Y1kIp3l0ZfPcfcjRzynMWo5oZxGD5Vz6StJN9oDbWQrByuPvjpjvanCAJLpeIpvPXXS9bmFlDfpRq+rs5a8ePSFjKDFx9L0Qvlh8vouVl9UdP789faFfGN/hElbXqwnXuTKvEbvMnzk6ESc7pC/ZIpvIzCG3ubhF8e4dFOfpyusFe2vn0Et1w2xGupZtZtIZxkdi3HxxhKGvr98/rOTSrfgxQx46GCpT+5Xzs2zv8yEIif64lzJ+GwZtPrClCqKqxSMDfh99EUCjZVu0tUFY6HyAJLPP/oKH/3npxkdm1vyXLnB4Joux4DwvEfvQYrQXnzxseRFo4eCXPnY4XNcsL4n//sWqm7rq9MvpLNlc+ihfNbN0Yl5tq3trrk4shaMoceK7j95bIo3X7jO0/pr69xuQPeiL5VG5pV6tkEYHYuRySkuHul3fT4S9LOmO+SpDYLX9geawWjlnvRjc4XP/dqTJzy977hHL3PrmiiZnHIdqJ3NWfnx5Tx6sAKyjfboq22XUWkAiR7U/eSxpRdOLxq9vhAk0tn877O224NH31+I9ziZWUgT8vtK7qfT0KcyOZ44OsnrbNnGet/qK7i9kEjnKt7dhPylg7HHJuJsH4rWdZsqYQw98OjoODkFb/Jo6LV0U6/Kx3p59MN19OgPnZoFKOnRg50W5+Ek0p0cvWj01nqVjaTujHjRSB/feea0p9tzrwHCXet7AXjp7FLPdj7l7bcaaHBjs0S6ep19Q3/pNggnpxd44Yy1v/uPTS/9PA/plc65seNzSdbYxVCV6OsK0BX0L5FudEOzUp7vsCOl+Onj0yTSOa7fWYi/jNTQk8kLCQ93Uz6fEHKZMpXJ5jg+GWf72spxrXpiDD1WWuVANMiVWwY8rT/UEyKdVcwu1CfndTnTpZwM9yytFKyVQ6dniYb8bFtT2vMY6S/fS1yjvfNKQ0c0XloIaA34A2/ayVwyw/0Hz1R833yfm57y23HBeisr50UXQ1+pz43GS5xhOdSSXpkfQOJi6B98wYpRnTfU7SqFeUqvDC3W6L1q0CLimiFTqv2Bpq/LyoA7F0vx2OFz+IRFgXYtL56pIC8ePTfPn333kOf+VV6+C9DjBBc7ICenF8jkVHsaehF5m4i8KCKjIvIxl+dFRD5lP39ARHbby7eIyEMi8ryIHBSRf13vHVguuZziETutslx5t5P8MO46ec910+jr2Abh0KlZLhrpK9uyYONA+elAmnxDs26vHn3lFgJjcwkCPuHWSzewaaCLr+93DyI6KRj68gaoNxJk00AXL55xMfRl5sU6GYyGGtaTPpPNkcmpqj16sJqbuXn0Dz5/lu1ro7zzqk28PBbL6+MaLxq9lna0Ru9Fn9ds7O9a4nmX6lypERGGekKMzyV5bHSCSzf1L1rfq7z4radP8rlHX+GFM7OetjWZzlXU6MF9nODRCSuby0umWj2paOhFxA98GrgFuBh4r4hcXLTaLcAu+9+dwGft5RngD5RSFwHXAR90eW1LOXhqlnOxFG9+TeVsG43WHeslk+jpUss39PXZrlxOceh06YwbzUh/F7OJTH5Ydimq1+grtxAYm7UqXAN+H7+6exM/eXl8icZbzPhckr5IwFOB14Ubel2lm0q96DWNnDKVyuqCnepvyDcNLh1AEk9l+OnhCW56zXp2bxsE4CmHV5/LKRLpXMXvTTd5S9iGvpqsEjcZsJJHD1YCwvGpOE8dn1ok25R732JeHrNakx885c3QJzJZT999OOBbknWjUyu3r20/jf5aYFQpdUQplQK+DNxWtM5twBeVxV5gQERGlFKnlVL7AZRSc8DzwKY6bv+yeejFMUTgDbu8G/qhXssQ1asNwuwyh45oCv1ulrddJ6YWiCUzXFJGn4dCWlylzJvpeIpI0OfJwIK3FgJjDo/xV3dbE6++WSI1UHMulvKU7gdwwfpeDo/Hlsz8rNSLXrNxIMJ8KtuQ2QWJKubFFqOrRZ2y2E9HJ0hlctx80Tqu2DKAT2D/q9P557VX6jW9Umv0w1V49CMDXUv6x3sy9D1h9h2dJJ1ViwKx+ff1IC+OnrUM/SGPht5LqilYmTeJIunm6MQ80ZDf83FYL7wcKZuA446/T7DUWFdcR0S2A1cBj1e9lQ3koRfHuHzzAGur8D7q3QZhLpGxswuqvxV3Uq9+N4dOW0Um5QKx4MziKH8ieW1opvHSBmFsrtAwa8dQN3u2DfK1J4+X1fXH58r3uXFy4YYe0lmV98A0BY2+vAG61O6e+GwDCnbyYwRrOF7cBpA8+MJZesIBrtm+hp5wgAs39C3y6L30doHCheDMbIJUNleVR7+xP7Kkf7w3Qx8ipyDgE67ZPrj0fSvIi5lsjiPntEfv7bdKZCqnV4LVxtjNo292aiV4M/RuW1R8NpVdR0R6gK8DH1VKuV42ReROEdknIvvGx2sr066WyfkUTx+f5s0eiqScDEZD+KSehn557Q809WqDcPDULH6fcIGdfVIKr7n0VkOzKgy9riwtY+jH5xL5uaEA77p6M4fH53mmjGH10jZXo/e9OCBbaV6s5tJN/YjAMyemPX1eNSSX49EX5dIrpXjg+THecMFQPkNm99YBnnp1Oh+c9GrotaPyqq1DrysxvMeN4pz3bE4xlyjfagIKzs1VWweIhpb+JpXkxVcn46SzioFokEOnZsvOIdAspLwVq4WDS4OxxybiTZdtwJuhPwFscfy9GTjldR0RCWIZ+X9USn2j1Icope5RSu1RSu0ZHq7O8NbKoy+PoxSe8+c1fp+wprt+RVNzy+xFr8m3UF6uR39qlp3D3RXvMNb3RRDx6tF7l6UKvWLcpZuMPWPUWV7/9stHCAd8fO3J466vgcoNzZzsHO7B7xNeKgrIetXoe8IBdg73NKQEX0sptQVjFxv6g6dmGZtLcvNr1ufX2b11kFgyw8t24VR+XqxH6eaYbeir9eih4DTMeiyy07/n9S6yDVSWF7U+f+tlI8ynshyrMBgerGK1Shc90Fk3BY8+k81xfCre9EAseDP0TwC7RGSHiISA24F7i9a5F7jDzr65DphRSp0W6/7kfwHPK6X+e123vA489MIYa7tD+SEF1TDUE65bp8jZZU6X0kSCVhuE5V6AvARiAYJ+H+t63dP1nHhtUawZ6Crv0Z+LpVBqcdVlXyTIL16ygW+XyKlfSGWJJTOeDX0k6Gf72mg+t1yTz7qpYOgBLt/cz4ETM3WfNOWlH3opigeQPPC8FaNy9ni62g7I6nz6hEePPhTwEfAJr05qj746jd7aLstp8FpNre8qb3AJxFrPl5cXR21D/8tXbAS8yTfeg7H+RYNHTk0nSGdVe3r0SqkM8CHgfqxg6leUUgdF5C4Ructe7T7gCDAKfA74fXv5DcBvAjeJyNP2v1vrvRO1kM0pHnlpnDdeMFxx6pEblqFvL48eLPlmOWmfk/MpTs8kKurzGi/Brul4uirpJuD30RsJlPToddVlcbuKd1+9mZmFNA88P7bkNfq38qrRg3vmTSyRIRrye0rFvWLzAOdiybqX4C/Ho1/THSIS9BUM/QtnuWrL4hjVtrVR1nSH8vn0XqUbvY72nr00NNP0hAOL+scXGpqVN/Q3X7SeL7xvD9fuWOP6fCV58eWzc2zsj3DV1gECPqmYeZPJ5khnVU0e/dEJnXHTnh49Sqn7lFIXKKV2KqX+zF52t1LqbvuxUkp90H7+MqXUPnv5T5RSopS6XCl1pf3vvsbtjncOnJhmKp7mTa+pTrbRrK2y381zJ2f4mwdfdn1uLpFedsaNZrltEJ4/bVfElmh9UMzGgQinymj0SlndBauRbkBXx7rvh66KLTYkN5w/xIa+CF/fv7QlQjVNtjQXrO/l2GQ8L11A5YZmTi7fbH2HB+qs0xeCsdV79CLCRnsAydhsggMnZrj5ovVL1tm9dYD9disEvf9docqfFwn5ySnrbsPr96Rx9o/36tEH/T5ues36ksHNDf3l5cXR8Rjnr+8lHPCza31vRUOfyFTuRa+JBP3uhr5NpZsVyUMvjuMTeMMud22vEkM9Yc/plYl0lg9/6Sn+6gcvlczNrpdHP7zMOw0vrQ+c6ElTpeSJ2USGbE5VlXUDurK0lEfv3jDL7xPeuXsTj7w0zoMvnF30XKWh4G5cuL4XpQq392D1oq8UiNVcNNJHwCdlA8S1sJxgLFg6/cnphXzH1ptcnJ2rtg5y5Nw8U/OpvEfvxbhpT3ddb6TqzBJndex0lY3wShH0+xjuCbt69LmcYnQsxq51ViX0JRv7OHSqvNRWjWxm5dEXnISj5+J0Bf1V3enUi1Vr6H9w8AxXbxusSlJwMtQTJp7Kehr99ZmHD/OKnab33QOnlzy/3OlSToYrSDczC+myF4JDp2cZ6Y8smShVipH+CAvp7JJKSk217Q805QqOxuYSiLjLMO973XZ2DnfzO3+3j4986Skm7H3V+1zNSXbBhqWZN7FE+XmxTiJBPxdu6K27R69zs2tNx7U85wUeeH6Mjf0RXrNhaXaV1umfOj7lWaN3rlNLnrhTBqy242nZ9x1wlxdPTi+QSOc432Hoz8VSZQfD67sb71k3BY/+2MQ829ZGm55aCavU0I+OzfHCmTneftlIze9RGPRR3qsfHYvx2YdHeedVm7h2xxrue3axoc/aQ0fqptH3hJhLlG6D8Idfe4Z3fuanSwqBNOV60LtRKZc+3/6gaummdK+Ys7NJ1kRDBF0mga3vi/CdD9/IR9+yi+89d5q3/PdH+Mb+E4zNJRHB8wUMLC01FPAtuguLVeHRA1y+eYADJ2Y8pe15ZbkevR5A8ujL57jponWuhufyzf34fcL+Y9MO6caDoQ9pj756Q+/sH6+zbpbb0VW/r1vCgM4qKnj0ltRWLiD79PFpAHYOV5ZfwgH/ovPwlYn5lujzsEoN/befOY2IlVJVK/nipDLesVKKP/7ms0RDAf7j2y/i7ZeN8PJYjJeLPERYfvuD4u1y89qzOcVjhyc4PrnAvU8XZ8jaPejHS/egd6NSsGtqOR59iV4x4xWGTocCPj76lgu47yM3smOom3/7lWf4/KNHWBMNlR0TWYzfJ+xa17Mo8yaW8K7RA1yxuZ+5RMZT2p5XlhOMhULmzUI6uyit0kk0FOCikV6ePDZVdTAWavToHbn0Mwvpqqqpy76vfadQLMm8bFfEao/+ohHrzubgydI6/Y+eP8va7hBXbllanFWMMxibzSmra2UL9HlYhYZeKcV3DpzitTvWVFXQUYw2qBNlDP1XnzzBz1+Z5I9ueQ1DPWFuuXQDIvBdh1c/q3vR1zEYC+5tEF48M8dcIkPAJ3z2kcNLvMyXzs6RzanaPPoSmSXT+T431Qdj55IZ1zsPq/1B5d9u1/pevnrX6/j4L1ntlbbWkNZ24freRbn0VjDW+75cvnkAqG9ANh+MXYZGD5bO7NYfRnP11kGeOTGdd0Y8afTL9OjB6h8/HU/VRbYB68IWT2WXdJsdHYsx3BvOOyG9kSDb10ZLBmTT2RwPvTDGm1+zzlPWVSToJ5NTZLI5Tk0vtCy1ElahoX/hzByHx+f5JTtvtlZ0v5tSufQTsSSfvO95rtk+yHv2WLVk6/oiXLNtsXyjC3D6uuoUjNXVsS464xNHJwH4g1+4kNGxGD98fnHAstpALFgXloBPSjaOKvSirzIY2126383YbNKzIfH7hPfdsIMf/+Gb+dvfuLqqbQBLpz8zm2DG3o5qq5gvWN9DOODjmeP1C8jqXje1erubBi1D//rzh8q+x+5tg8RTWZ45MY2ItwtLPTz6U7ZHXy9Dn8+lL7rrfNkRiNVcsrGfg6fdf6t9R6eYTWR4y0Xud0HF6O8rlc3lM262GemmOXz7mVP4fcItl9Yu20BB6y0V2PzkfS8QS2T4s3detihP/9bLNvDS2Vh+XFu9etFryrVB+PnRSTb2R/i9G3ewdU2Uzzx8eNHt7KHTs/SEA2wZ9O51+H3C+r5IyVzxVyfjBP1StdZaqI5dfCHN5RTnYt4NvWaoJ1zTHdyFegjJ2BxKqarSK8GqCbhkY19Fj76a1tLao/cy1MONjQNdXL65n9srDFXfvdWSJ/YemaQr6PcURIw4sm6qZcTh0dfV0LtUxyplZdycX2ToL97Yx/HJBdfkgh89f5ZQwMeNHjP18gPC07l8e+IdRrppPJZsc5rX7VxbVVDODT2M282gPnb4HF/ff4L3v/G8Jf1ibrlsxJJvDliDMurVi16j2yAUNzZTSvHEK5Ps2b6GgN/H+994Hs8cn84PVAbdg7636gKyUo2jMtkc3zlwmjdf6O1W10mh383iE24yniKTU01LUbtQZ96cmWMhnSWnKve5KebyzQM8d2qGTIkA+JPHprjs4/fzjB3oq0QykyPol6q/U03Q7+PeD72et1xc3jPdPNjFUE+YWDLjSZ+HQqviWjz6SNDPYDRoe/QZ+ruWd45qNrpUx56ZTRBLZlw8eututriTpVKKHz1/lht2rqXb44VeZ+YkMlmOnpsnEvS1JLUSVpmhf/bkDK9Oxvmly5cn22iGesP8ZPQcH7/3IP/pW8/xH7/5LH/0jWf59189wNY1UT58064lr1nfF2HPtsG8fDOXrK9HHwn66XW5AB2fXGBsLsk1dgXhu3ZvZl1vmM88PApYnvLzHlsfFFOqOvbRl89xLpbkXVdvrvo98z3pizz6fLHUMuIr1TDSH6E3HOCls3Oep0sVc8WWfhLpHKPjMdfn7/nxYdJZxaMve2vml0znag7EVoOIcPW2AcC7TLQcjR70sbRgjRGsk0c/3GvLiw6PXtdGnL9usSNWKvNmdCzGsYl4xYujE6dHf8zOuKmlCr8erCpD/50Dpwn6hV+8ZENd3u/G84c4N5fkW0+f5LvPnub+g2f40fNnCfqFv3z35SVPjlsvG+HFs3OMjsXyAaJ6efSgZ8cuNpA/t/X5a7dbhj4S9POvbtzBT0cneOb4NK9OxplPZfMHejVsHOjizExiSXD3a/tPMBgNVt00Dpw96YsMfb79QXM8IxHhgg29vHBmjjmPveiLyQdkXXT6Vyfi/OCQFStx9oAvR9Jjr5V6oOUbL6mVYP0uvZFAzXfMGwcinJ5O1DUYm5cXHR69zrjZtX6xRz/cG2Zdb3iJR6/jWaWylNzQ538yk+OVc1YOfauon3Vpc3I5xXeeOcUbdg3TX2UGSCk+cdulfOK2S6t+3S2XjvCJbx/ivmdPoy/w9TT0Qz1Li6aeeGWS/q7golvVf/nabXz6ocN85uFRbrvSGh9QTSBWs3EgQsruKKlv2WfiaX546Cz/8tqtNWnJBY9+sXSTr4qtQQOulQvW9/K950577lxZzI613fSGAzxzYpr3XLNl0XN//7Oj+EV43a4hnnp1CqVURS080SSPHshPnPIq3fzGddt4++UjVaWxOhnp7+JnhyeYT2XrZuit913cquPlsRiD0WBe6nRyyca+JZk3Dzw/xmWb+vMD1r2gPfp4KsPxyQXPQdxGsGo8+qeOT3FqJsE7rlheELYebOgvyDdziQzhgK+uJ+5wT3hJ1s0TRye5ZvvgolvHnnCA37p+G/cfPMv/ffokAZ8sCU55QWc1OG+Nv/PsKVKZHO/aXb1sA5bWG/L7lkg34yXaHzSSC9f3MB1P84o9oKJaQ+/zCZdu6l/SsngukeafnzjO2y8f4ZZLNzAVT+eDduVIZrI1p1ZWy2Wb+gn6xbOhjwT9+eOhFkbsyVxQuaFZde+7WF4cHZvj/HU9rhfVSzb2MzoeywfIz8WS7H91qmpDrc/pYxNxUtlcy3LoYRUZ+m8/c5pQwNfSq6qTWy8b4YUzczx9fLpu+rymuA3C+FySI+fm2bN9aYe/992wg66gn/sPnuX8dT01pezpbAlnsOvrT57ggvU9XLqp+jsEsCSTgWhwSdHU2GyCXo9zX+uFboXwpN3kq9pgLMDlW/p54czsokEUX913glgyw2/fsIOrtg4A5BuJlSOZydWccVMtkaCfa7avqcqTXQ4bHReJenr0G/sj+aIppRQvj8WW6POaSzb2kc2p/HD4B18YQyl4y8XVSZC66ZwuuGuldLMqDH02p7jv2dPcdOG6uhvVWrnlMitO8Pgrk/TVUbaBpW0Q9tn6/DUuhn5Nd4jbr7XkhFoCsVAomtIe/ZHxGPtfneZduzcvq6+HWwdL5wjBZqFTLJ+0+7P3VlEwpbli8wDprOKF09ZJn80p/u6xo1y9bZArtwywa10vPeEATx33ZuibeaG75449/Ld3Xd6UzxpxXFDqLd2kMpa8ODGfYjqeXpJxoykEZC355keHzrKxP1L1+aHvul48Y71Pq1IrYZUY+p+/MsnYXLItZBvNSH9XvnFUPfV5cFTtzltG8omjU0SCvpIDVn7vxvOIhvz5jJxqGYwGCQcKPc6/sf8kPoFfuWp5c+AHosElBVOWoW+ePg+wtifMUE84f8LW5NEXtSx+4PmzvDoZ53dfvwOwAoZXbhnID/soRyLdPOkGLKnKazB2uWinAerT50aTb68wnSgZiNVsWdNFbyTAwVMzJNJZHn35HDdfVLoVcin0xfjFM3OEAz7WN/m4dbIqDP13DpyiK+h3bcfaSnSvnXrfZRQPCX/i6CRXbhkoebu/caCLvX98M7+2Z4vr85XI9zi3M2+++dRJXr9rmPXLTIF09+gTTdXnNRdu6EEnFXWHaxvht6Y7lG9Z/IWfvsKmgS5+wZGut3vrAC+cmS0531STzHibWdqJ6PGUUG/pplAdO5pvZuYu3YgIF49YAdmfHZ5gIZ2tKq1Soy/Gp2YSLU2thFVg6DPZHN9/7gw3X7TOdXhwK7nVlm/q1f5A42yDEEtmOHhqJp9WWYq+SHBZB+JIf4TT0wvsPTLByekF3rV7ed48WG0QnFk3Sqmq2h/UE134FqoxcC4i9mjBaQ6emmHvkUl+63XbFmWnXLV1kJyqPFA82WSPvpmEAr68o1LfYGyh6vblsRg94QDryzgMl2y0Yir3HzxDd8jPdedVf7frPE5aqc/DKjD0j78yycR8infUqUiqnoz0d/E7N+zgrTV4C+VwtkHYf2yKnMI1EFtPdNHU1/afoDccqEutgu5Jr9s0zCYyJDO5pks3UNDpvfaid+PyzQOMjsX4mwdHiYb8/FpRCwIdkH2qQj59qskafbPRzc3q6dGv7Q4RCvg4PZPItz4oJ8VcsrGPRDrHN586yRsvHK7p4u68GLcy4wZWQR79T0fPEfAJb7igtklSjeY/250V68laRx+ek9ML+KSQD90oNg5EODub4PvPneGXr9hYF0M0GA2SyffrDzKui6VaIt1Yhr4WfV5zxeZ+cgq+99wZfuv6bUsM2UA0xHnD3Tz1avmAbLM1+mYz0t/Fy2Mx13kDtSIidi59gpfHYrzpguGy619iZ4slM7maM/Wcox5b1Ydes+IN/d4jE1yxZaDtZJtGotsgjM8leeHMHJds7K8697taRvq7yCmIp7I1tTxwo9DYLE1vJJhvf1BLH5Xlssv26JfzPV62uRAMf98NO1zXuWrLIA+9OFa2cCqZya1oQ//Wi9fXPUEBLHnxhdOzjM8lSwZiNTuHewgFfGSyuZoqu2GxdNOq9sSalXu0APPJDAdOzNSkr3U6w71hTs0kePr4tGtaZb3RGui2tVH21OnuobjfTSuqYjU94QCbB7uWZejX9UbYMdTNWy9eXzLVbve2ASbnU7xaYlCJUoqFdLZplbGt4F1Xb+Yv/8UVdX/fjfadApQOxGqCfh9Xbh7guvPWMlhjOwe/Twj6rYu1kW4ayJPHpsjkFK/dUXq4wkplqCfMzw5PkMzkuHZHY2UbgC12j/NfvWp5ufNOijtYjrVQugH4yM27PFeIluKf338d3WXuLnVvmf2vTrn2Ln/kpXHiqWy+y6LBO9oZATxVgN/9m1fjX+axHA74EcmxoUlN+Eqxog393iMTBHySz1dfTQzb7WUBrt7WeI9+53APn3rvVbzlovqlsBb3pB+bTRIJ+pYVEF0O76kx/dRJpbuRC9b30h3ys//YNO+8aqkEdvcjhxnpjyx7cM5qRLdmiAR9+Slb5VhuK3OwArIj/ZGWplaCR+lGRN4mIi+KyKiIfMzleRGRT9nPHxCR3Y7nviAiYyLyXD033At7j0xw+eZ+z/2jVxJ6ePl5Q91N0bRFhF++YmNdYyF5j36+IN2s643U7Y6hHfH7hCu2DLhWyD716hR7j0zyu6/f0bQWCCsJPSv3/HU9TTO8kaC/5bINeDD0IuIHPg3cAlwMvFdEilNFbgF22f/uBD7reO7vgLfVY2OrIZ7S+vzqk22gELBshj7fKHRWyvRCQbpp1eCGZrJ76yDPn54jnlpcOHX3I4fpiwS4/dryk6EM7miPvpI+X0/+49sv4oNvPr9pn1cKL27BtcCoUuqIUioFfBm4rWid24AvKou9wICIjAAopX4MTNZzo72g9fnVauh10UmtbQ3agYDfR18kkG+DYA0FXwWGftsA2Zxa1O3y8HiMHxw6yx3Xb294BtVKZdNgFwGfcNFI8wz9rZeNcOWWgaZ9Xim8GPpNwHHH3yfsZdWu01RWsz4PcOXWAc4b7uYNHudbtiuD3YU2COOzze9z0wqu3GIds87CqXseOULI7+N9N2xvzUatAPoiQb71wRu44/rtrd6UpuPFNXATs1QN65T/EJE7sWQftm5d/q3p3iOTXLZK9XmA12zo48E/eFOrN2PZDERDTMXTLKSyzCUzLcmhbzZrukPsGOpmv104dXY2wTefOsmvXbMlf6dmqI1LSzT2W+l48ehPAM50g83AqRrWKYtS6h6l1B6l1J7h4fJVa5WIpzI8c3x61co2K4nBaJDpeKrpIwRbzVVbB/ITp77wk1fI5HL83o3ntXqzDB2KF0P/BLBLRHaISAi4Hbi3aJ17gTvs7JvrgBml1Ok6b6tnVrs+v5LQHSzzxVItzkduFldtHeRcLMXBU7P84+Ov8vbLN7K1xdWVhs6loqFXSmWADwH3A88DX1FKHRSRu0TkLnu1+4AjwCjwOeD39etF5EvAz4ALReSEiPxunfdhCXuPTOD3Sd0qNA2tQ0+Z0u0PVotHv9tucPaxbxwglszw/jcYb95QO54EbKXUfVjG3LnsbsdjBXywxGvfu5wNrIXHj0yu2vz5lcZgNMRcMpOfXrVaDP2F63uJhvw8d3KWG3cNrVpt2VAfVlzVRTyV4ZkT06uy7cFKRBdNvXR2joBP8v1vVjoBv48rNg8A8IE37Wztxhg6nhXn8u4/Nk06q1ZlI7OViG6D8OLZGMO94ZaXkjeT26/dwtY1Ua43sSbDMllxhj6vz3dwRaihgPbgXz47V3KY80rltis3cduVLS1HMawQVpx0s/fIBJdtanz/dUNz0OPk4qksw6ugWMpgaAQrytBrfd6kVa4cnL3AV0P7A4OhEawoQ6/1+dcafX7FMOgYEL1aMm4Mhnqzogz946+Y/PmVRlfQn2/Juxr63BgMjWBFGfq9Rya4dFM/vZH6TY83tBYRyXv1xqM3GGpjxRj6RDrLM8dX53zYlY7OvDEavcFQGysmNSUS9PPTj92EVaRrWEkM5D16I90YDLWwYgw9sCpa2K5GBqMhRArjEQ0GQ3WsGOnGsHLZsibKlsEoAb85XA2GWlhRHr1hZfLRt+ziX71+R6s3w2DoWIyhN7Q90VCAaMgcqgZDrZh7YYPBYFjhGENvMBgMKxxj6A0Gg2GFYwy9wWAwrHCMoTcYDIYVjjH0BoPBsMIxht5gMBhWONKOvWFEZBw4VuPLh4BzddycdmOl7x+s/H00+9f5tOM+blNKDbs90ZaGfjmIyD6l1J5Wb0ejWOn7Byt/H83+dT6dto9GujEYDIYVjjH0BoPBsMJZiYb+nlZvQINZ6fsHK38fzf51Ph21jytOozcYDAbDYlaiR28wGAwGB8bQGwwGwwqnIwy9iGwXkeeKln1cRP6diLxPRDZ6eI+HRaTu6VAiskFEviwih0XkkIjcJyIX1Ptzqtiej4pI1PH3fSIyUMP7bBeRf1nm+ayIPC0iB0XkGRH5tyJS9nhy+x07GRFZLyL/JCJHRORJEfmZiLyz1dvlFRGJOR7fKiIvi8jWGt7nV0Tk4mVsx1ERGar19WXet6pzU38fIrJRRL7mWP4lETkgIv+mDtu0R0Q+tdz3qZaOMPQVeB9Q0dA3AhER4JvAw0qpnUqpi4E/Bta3YntsPgrkDb1S6lal1HQN77MdKGnogQWl1JVKqUuAtwK3Av+lhs9pCCLib/D7C/At4MdKqfOUUlcDtwObG/m5jUBEbgb+P+BtSqlXa3iLXwFqNvSNYDnnplLqlFLq3fb7bABep5S6XCn11x4/u+SUHKXUPqXURzztRD1RSrX9Pyyj81zRso8D/w6IAS8CTwNdwH8GngCew4qM64Dzw8B/A34OvATcWIftugnrRC9eLsBf2tvwLPBr9vI32dvxNeAF4B8d23cU+ASw337Na+zl3cAX7H16CrjNXu4H/spe9wDwYeAjQMpe9pDjfYfsx3fY6z4D/B972d8B73Zse8z+fy8wY3+v/8ZlH2NFf58HTNj77rf3/wn7895f/Dvajx+193c/1skE8Bngl+3H3wS+YD/+XeD/sR9/C3gSOAjc6dwm4L8CjwOvB37D/r2fBv4W8NfxmLwZeKTEc+8D/sbx93eAN9mPPwvss7f9E451jgKfBH5mP78buB84DNzVoPMqBtwIHNHHm73c9Xuz1/8z+/jZi2U0XwdMAq/Y6+/EOsb32K8ZAo6WOmadxyjW+ft94P3Ay8Cw/bwPGMU+jpd5bvYAD1A4z25zOfadx+kBYMHetxuBK+19P2Afn4MO+/JJ4BHgDyhhb7BswHfsx9cCj2Gd148BFzbid1ZKrQhDnz+o7OVrHI//D/BLjh/i/7Uf3wr8qA7b9RHgr12Wvwv4oX1grwdeBUbsH3kGy+vzYZ3Ur3cc7PrA/33g8/bjTwK/YT8esA+abuADwNeBgHO/cRj2opPoEqwL4lDR+n+Hu6HPH5Al9j3msmzK3t87gT+xl4WxDNcOFp9AUSBiP94F7LMf3w78pf3458Be+/H/Bn6xaNu7sC6ma+2/FfAe+/FFwLeBoP33Z4A76nhMuv729nPvo7Sh19vut4/Jyx2/0wfsx3+NZUh6gWFgrEHnVRrLSF/uWFbye7O/X30+/YXjNy4+hh7G3dCXO2a3Az9yfNZ/AT5qP/4F4Ot1OjcDQJ9j20YpOFtuhj7/2P77APBG+/F/Bf6HY58/U/QdLLE3LDb0fY7v4i3V7mM1/zpFuimVA+q2/M0i8riIPIt1Vb/E8dw37P+fxPoBG8XrgS8ppbJKqbNYV/lr7Od+rpQ6oZTKYXkJzu1w275fAD4mIk9jHTwRYCvWgXG3UioDoJSarLBNNwFfU0qd87h+LYhjm++wt/lxYC2WMXcSBD5n/05fpXDr/yhwo635HgLOisgIcD2W1wPwERHRXuUWx3tnsQwJWB731cAT9nbcjHXX0RBE5NN2rOKJCqu+R0T2Y3lxl7BY8rjX/v9Z4HGl1JxSahxI1BJn8UAa6zv9Xceyct9bCuuiBbWdQ+WO2f8L/G+l1Bftv7+AdQcK8DtYF/p6IMAnReQA1oVlEx6lVhHpBwaUUo/Yi/4eeINjlX8uekkle9MPfNWOW/01i21VXemUicsTwGDRsjVYt4t5RCSC5YHsUUodF5GPYxlGTdL+P0t99v0g8G6X5eKyrHgb3LbDbfsEeJdS6sVFH2BpkKUugG6UWj+DHaux3zNUxXs6t+c8rO0esz/rw0qp+4vW2e74898AZ4Er7M9PACilTorIIPA24MdYv/N7sLytORF5E5bBuF4pFReRhyn8xgmlVNaxv3+vlPqjWvbHAwex7tywt/uDdkBxH47v1CYCICI7sO5Cr1FKTYnI3+F+fOZYfJzkaMy5msP6bn8kIn+slPok5b+3tLLdT8qfQ879d+5fuWP2p8AtIvJPyuK4iJwVkZuA1wK/7n23gNLn5q9j3SVdrZRKi8jRom1cDvNFf1eyN3+KJbG+0z43Hq7TdiyhIzx6pVQMOG0HjRCRNViG4CfAHNYtLhR+sHMi0oP7D11PHgTCIvJ7eoGIXIMlYfyaiPhFZBjrqv/zGj/jfuDDthFGRK6yl/8AuEsHfuzvBBZ/H04ewPIm1xatfxTLgwO4DcvTLvc+S7D38W4suULZ2/wBEQnaz18gIt1FL+sHTtt3Nr+JJWVofoYVVP4xlof/7+z/9eumbCP/GuC6Epv1APBuEVmn91dEtnnZH488CERE5AOOZToIfhS4UkR8IrIFS4sF61Z9HpgRkfXALXXcnppQSsWBdwC/LiK/S23fW/GxcpTCMeU8B0sds2DF1iawHDXN54F/AL7iuIB7pdS5uQ1LCkuLyJvtvz2hlJoBpkTkRnvRb2LdrddKP3DSfvy+ZbxPRTrC0NvcAfyJfTv5IFYg6zCWPni3vTwJfA7r1vdbWMHAhmEbtXcCb7VTuA5ixQ7+iULQ80HgD5VSZ2r8mD/FMr4H7Fu8P7WXfx5L+z9gyxg6Q+Ye4Hsi8lDRth7ECqQ9Yq//3+2nPge8UUR+juU5aa/kAJCx5Qi3tLIusdMrsW6Bf4AVTNbbdgjYb2/z37LUo/kM8Fsishe4gMXe0KNY2uUoVtBsDQVD/30gYN96/ymWfLMEpdQh4E+AH9jr/hArTlIX7N/+V7C+u1fs7+/vgf+A5Z2+gnUc/pW9DyilnsGSbA5iSRM/rdf2LAdbQnkb1ve1i+q/ty8D/15EnhKRnVj7/AEReQxLB9eUOmY1H8W6eP6F/fe9WMHTqmWbMufmfcAeEdmH5d2/UOVb/xbwl/Z3cyWWTl8rfwH8uYj8lMWOTt0xLRAMBkNbIlbdy18rpW6suLKhLJ2i0RsMhlWEiHwMK0unWm3e4ILx6A0Gg2GF00kavcFgMBhqwBh6g8FgWOEYQ29YUUhRU7flrmcwrASMRm9YUdgFMHt0BfBy1zMYVgLGozd0LCLSLSLftXP9nxOR/4LVyfQhXUcgIp8VkX1itVP+hL3sIy7r/YJYbYb3i8hX7YK7Up97VEQ+Ya/7rF24hYhcKyKP2fnkj4nIhfby94nIt0Tk23bO/YfEauv8lIjs1YVDIrJTRL4vVsvjR/X7GgzLplFNdMw/86/R/7BaEHzO8Xc/S5u6lWsiphu8DWFV4Xbbf/8H4D+X+dyjuDegc21ShVX1OEqhSdkMdkdKrB4nH7UfPwDssh+/Fniw1d+x+bcy/pk8ekMn8yzwVyLy37A6Aj5qd4pw8h4RuROrZmQEq4nYgaJ1rrOX/9R+fQirDUM5nA2rftV+3A/8vYjswurpEnSs/5BSag6YE5EZrA6Reh8ut+8gXofV5Eq/JlxhGwwGTxhDb+hYlFIvicjVWG1g/1xEfuB8Xio3EcuvCvxQKfXeKj7erWFVuSZVxU3KnA3MAlgy6rRS6soqtsFg8ITR6A0di1gjJONKqX/A6q+ym8UNtso1EXOutxe4QUTOt983KrWNg6y5SZVSahZ4RUT+hb0NIiJX1LANBsMSjEdv6GQuw2owlcPqrf4BrL713xOR00qpN4uIbiJ2hMVNxO4pWu99wJdERMslf4I15KUa/gJLuvm3WM3squXXgc+KyJ9gyT5fxmqMZzAsC5NeaTAYDCscI90YDAbDCsdINwZDCUTkm1izbp38B1U0OctgaHeMdGMwGAwrHCPdGAwGwwrHGHqDwWBY4RhDbzAYDCscY+gNBoNhhWMMvcFgMKxwjKE3GAyGFc7/D9Z0V3TBN0luAAAAAElFTkSuQmCC\\n\", \"text/plain\": \"<Figure size 432x288 with 1 Axes>\"}, \"metadata\": {\"needs_background\": \"light\"}, \"output_type\": \"display_data\"}], \"source\": \"state_grouped = dfq.groupby('state_name').sum() \\nstate_death_rate = state_grouped['deaths'] / state_grouped['confirmed_cases']\\nstate_death_rate.plot()\"}], \"metadata\": {\"kernelspec\": {\"display_name\": \"Python 3\", \"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.8.6\"}}, \"nbformat\": 4, \"nbformat_minor\": 4}"
  },
  {
    "path": "examples/python/query_results.py",
    "content": "#!/usr/bin/env python\n# Copyright 2018 Google Inc. All Rights Reserved.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n#       http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\n# An example that shows how to query BigQuery and read those results into Spark.\n#\n# It relies on https://pypi.org/project/google-cloud-bigquery. To see how to\n# install python libraries into Google Cloud Dataproc see\n# https://cloud.google.com/dataproc/docs/tutorials/python-configuration\n\nfrom __future__ import print_function\nimport time\nfrom google.cloud import bigquery\nfrom pyspark.sql import SparkSession\n\n# Currently this only supports queries which have at least 10 MB of results\nQUERY = \"\"\"\nSELECT *\nFROM `bigquery-public-data.san_francisco.bikeshare_stations` s\nJOIN `bigquery-public-data.san_francisco.bikeshare_trips` t\nON s.station_id = t.start_station_id\n\"\"\"\n\nspark = SparkSession.builder.appName('Query Results').getOrCreate()\nbq = bigquery.Client()\n\nprint('Querying BigQuery')\nquery_job = bq.query(QUERY)\n\n# Wait for query execution\nquery_job.result()\n\ndf = spark.read.format('bigquery') \\\n    .option('dataset', query_job.destination.dataset_id) \\\n    .load(query_job.destination.table_id)\n\nprint('Reading query results into Spark')\ndf.show()\n\n"
  },
  {
    "path": "examples/python/shakespeare.py",
    "content": "#!/usr/bin/env python\n# Copyright 2018 Google Inc. All Rights Reserved.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n#       http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nfrom __future__ import print_function\nimport tempfile\nfrom pyspark.sql import SparkSession\n\nspark = SparkSession.builder.appName('Shakespeare WordCount').getOrCreate()\n\ntable = 'bigquery-public-data.samples.shakespeare'\ndf = spark.read.format('bigquery').load(table)\n# Only these columns will be read\ndf = df.select('word', 'word_count')\n# The filters that are allowed will be automatically pushed down.\n# Those that are not will be computed client side\ndf = df.where(\"word_count > 0 AND word NOT LIKE '%\\\\'%'\")\n# Further processing is done inside Spark\ndf = df.groupBy('word').sum('word_count')\ndf = df.orderBy(df['sum(word_count)'].desc()).cache()\n\nprint('The resulting schema is')\ndf.printSchema()\n\nprint('The top words in shakespeare are')\ndf.show()\n\n# Use tempfile just to get random directory name. Spark will create the\n# directory in the default file system anyways.\npath = tempfile.mkdtemp(prefix='spark-bigquery')\nprint('Writing table out to {}'.format(path))\ndf.write.csv(path)\n"
  },
  {
    "path": "mvnw",
    "content": "#!/bin/sh\n# ----------------------------------------------------------------------------\n# Licensed to the Apache Software Foundation (ASF) under one\n# or more contributor license agreements.  See the NOTICE file\n# distributed with this work for additional information\n# regarding copyright ownership.  The ASF licenses this file\n# to you under the Apache License, Version 2.0 (the\n# \"License\"); you may not use this file except in compliance\n# with the License.  You may obtain a copy of the License at\n#\n#    http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing,\n# software distributed under the License is distributed on an\n# \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n# KIND, either express or implied.  See the License for the\n# specific language governing permissions and limitations\n# under the License.\n# ----------------------------------------------------------------------------\n\n# ----------------------------------------------------------------------------\n# Maven Start Up Batch script\n#\n# Required ENV vars:\n# ------------------\n#   JAVA_HOME - location of a JDK home dir\n#\n# Optional ENV vars\n# -----------------\n#   M2_HOME - location of maven2's installed home dir\n#   MAVEN_OPTS - parameters passed to the Java VM when running Maven\n#     e.g. to debug Maven itself, use\n#       set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000\n#   MAVEN_SKIP_RC - flag to disable loading of mavenrc files\n# ----------------------------------------------------------------------------\n\nif [ -z \"$MAVEN_SKIP_RC\" ] ; then\n\n  if [ -f /etc/mavenrc ] ; then\n    . /etc/mavenrc\n  fi\n\n  if [ -f \"$HOME/.mavenrc\" ] ; then\n    . \"$HOME/.mavenrc\"\n  fi\n\nfi\n\n# OS specific support.  $var _must_ be set to either true or false.\ncygwin=false;\ndarwin=false;\nmingw=false\ncase \"`uname`\" in\n  CYGWIN*) cygwin=true ;;\n  MINGW*) mingw=true;;\n  Darwin*) darwin=true\n    # Use /usr/libexec/java_home if available, otherwise fall back to /Library/Java/Home\n    # See https://developer.apple.com/library/mac/qa/qa1170/_index.html\n    if [ -z \"$JAVA_HOME\" ]; then\n      if [ -x \"/usr/libexec/java_home\" ]; then\n        export JAVA_HOME=\"`/usr/libexec/java_home`\"\n      else\n        export JAVA_HOME=\"/Library/Java/Home\"\n      fi\n    fi\n    ;;\nesac\n\nif [ -z \"$JAVA_HOME\" ] ; then\n  if [ -r /etc/gentoo-release ] ; then\n    JAVA_HOME=`java-config --jre-home`\n  fi\nfi\n\nif [ -z \"$M2_HOME\" ] ; then\n  ## resolve links - $0 may be a link to maven's home\n  PRG=\"$0\"\n\n  # need this for relative symlinks\n  while [ -h \"$PRG\" ] ; do\n    ls=`ls -ld \"$PRG\"`\n    link=`expr \"$ls\" : '.*-> \\(.*\\)$'`\n    if expr \"$link\" : '/.*' > /dev/null; then\n      PRG=\"$link\"\n    else\n      PRG=\"`dirname \"$PRG\"`/$link\"\n    fi\n  done\n\n  saveddir=`pwd`\n\n  M2_HOME=`dirname \"$PRG\"`/..\n\n  # make it fully qualified\n  M2_HOME=`cd \"$M2_HOME\" && pwd`\n\n  cd \"$saveddir\"\n  # echo Using m2 at $M2_HOME\nfi\n\n# For Cygwin, ensure paths are in UNIX format before anything is touched\nif $cygwin ; then\n  [ -n \"$M2_HOME\" ] &&\n    M2_HOME=`cygpath --unix \"$M2_HOME\"`\n  [ -n \"$JAVA_HOME\" ] &&\n    JAVA_HOME=`cygpath --unix \"$JAVA_HOME\"`\n  [ -n \"$CLASSPATH\" ] &&\n    CLASSPATH=`cygpath --path --unix \"$CLASSPATH\"`\nfi\n\n# For Mingw, ensure paths are in UNIX format before anything is touched\nif $mingw ; then\n  [ -n \"$M2_HOME\" ] &&\n    M2_HOME=\"`(cd \"$M2_HOME\"; pwd)`\"\n  [ -n \"$JAVA_HOME\" ] &&\n    JAVA_HOME=\"`(cd \"$JAVA_HOME\"; pwd)`\"\nfi\n\nif [ -z \"$JAVA_HOME\" ]; then\n  javaExecutable=\"`which javac`\"\n  if [ -n \"$javaExecutable\" ] && ! [ \"`expr \\\"$javaExecutable\\\" : '\\([^ ]*\\)'`\" = \"no\" ]; then\n    # readlink(1) is not available as standard on Solaris 10.\n    readLink=`which readlink`\n    if [ ! `expr \"$readLink\" : '\\([^ ]*\\)'` = \"no\" ]; then\n      if $darwin ; then\n        javaHome=\"`dirname \\\"$javaExecutable\\\"`\"\n        javaExecutable=\"`cd \\\"$javaHome\\\" && pwd -P`/javac\"\n      else\n        javaExecutable=\"`readlink -f \\\"$javaExecutable\\\"`\"\n      fi\n      javaHome=\"`dirname \\\"$javaExecutable\\\"`\"\n      javaHome=`expr \"$javaHome\" : '\\(.*\\)/bin'`\n      JAVA_HOME=\"$javaHome\"\n      export JAVA_HOME\n    fi\n  fi\nfi\n\nif [ -z \"$JAVACMD\" ] ; then\n  if [ -n \"$JAVA_HOME\"  ] ; then\n    if [ -x \"$JAVA_HOME/jre/sh/java\" ] ; then\n      # IBM's JDK on AIX uses strange locations for the executables\n      JAVACMD=\"$JAVA_HOME/jre/sh/java\"\n    else\n      JAVACMD=\"$JAVA_HOME/bin/java\"\n    fi\n  else\n    JAVACMD=\"`which java`\"\n  fi\nfi\n\nif [ ! -x \"$JAVACMD\" ] ; then\n  echo \"Error: JAVA_HOME is not defined correctly.\" >&2\n  echo \"  We cannot execute $JAVACMD\" >&2\n  exit 1\nfi\n\nif [ -z \"$JAVA_HOME\" ] ; then\n  echo \"Warning: JAVA_HOME environment variable is not set.\"\nfi\n\nCLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher\n\n# traverses directory structure from process work directory to filesystem root\n# first directory with .mvn subdirectory is considered project base directory\nfind_maven_basedir() {\n\n  if [ -z \"$1\" ]\n  then\n    echo \"Path not specified to find_maven_basedir\"\n    return 1\n  fi\n\n  basedir=\"$1\"\n  wdir=\"$1\"\n  while [ \"$wdir\" != '/' ] ; do\n    if [ -d \"$wdir\"/.mvn ] ; then\n      basedir=$wdir\n      break\n    fi\n    # workaround for JBEAP-8937 (on Solaris 10/Sparc)\n    if [ -d \"${wdir}\" ]; then\n      wdir=`cd \"$wdir/..\"; pwd`\n    fi\n    # end of workaround\n  done\n  echo \"${basedir}\"\n}\n\n# concatenates all lines of a file\nconcat_lines() {\n  if [ -f \"$1\" ]; then\n    echo \"$(tr -s '\\n' ' ' < \"$1\")\"\n  fi\n}\n\nBASE_DIR=`find_maven_basedir \"$(pwd)\"`\nif [ -z \"$BASE_DIR\" ]; then\n  exit 1;\nfi\n\n##########################################################################################\n# Extension to allow automatically downloading the maven-wrapper.jar from Maven-central\n# This allows using the maven wrapper in projects that prohibit checking in binary data.\n##########################################################################################\nif [ -r \"$BASE_DIR/.mvn/wrapper/maven-wrapper.jar\" ]; then\n    if [ \"$MVNW_VERBOSE\" = true ]; then\n      echo \"Found .mvn/wrapper/maven-wrapper.jar\"\n    fi\nelse\n    if [ \"$MVNW_VERBOSE\" = true ]; then\n      echo \"Couldn't find .mvn/wrapper/maven-wrapper.jar, downloading it ...\"\n    fi\n    if [ -n \"$MVNW_REPOURL\" ]; then\n      jarUrl=\"$MVNW_REPOURL/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar\"\n    else\n      jarUrl=\"https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar\"\n    fi\n    while IFS=\"=\" read key value; do\n      case \"$key\" in (wrapperUrl) jarUrl=\"$value\"; break ;;\n      esac\n    done < \"$BASE_DIR/.mvn/wrapper/maven-wrapper.properties\"\n    if [ \"$MVNW_VERBOSE\" = true ]; then\n      echo \"Downloading from: $jarUrl\"\n    fi\n    wrapperJarPath=\"$BASE_DIR/.mvn/wrapper/maven-wrapper.jar\"\n    if $cygwin; then\n      wrapperJarPath=`cygpath --path --windows \"$wrapperJarPath\"`\n    fi\n\n    if command -v wget > /dev/null; then\n        if [ \"$MVNW_VERBOSE\" = true ]; then\n          echo \"Found wget ... using wget\"\n        fi\n        if [ -z \"$MVNW_USERNAME\" ] || [ -z \"$MVNW_PASSWORD\" ]; then\n            wget \"$jarUrl\" -O \"$wrapperJarPath\"\n        else\n            wget --http-user=$MVNW_USERNAME --http-password=$MVNW_PASSWORD \"$jarUrl\" -O \"$wrapperJarPath\"\n        fi\n    elif command -v curl > /dev/null; then\n        if [ \"$MVNW_VERBOSE\" = true ]; then\n          echo \"Found curl ... using curl\"\n        fi\n        if [ -z \"$MVNW_USERNAME\" ] || [ -z \"$MVNW_PASSWORD\" ]; then\n            curl -o \"$wrapperJarPath\" \"$jarUrl\" -f\n        else\n            curl --user $MVNW_USERNAME:$MVNW_PASSWORD -o \"$wrapperJarPath\" \"$jarUrl\" -f\n        fi\n\n    else\n        if [ \"$MVNW_VERBOSE\" = true ]; then\n          echo \"Falling back to using Java to download\"\n        fi\n        javaClass=\"$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.java\"\n        # For Cygwin, switch paths to Windows format before running javac\n        if $cygwin; then\n          javaClass=`cygpath --path --windows \"$javaClass\"`\n        fi\n        if [ -e \"$javaClass\" ]; then\n            if [ ! -e \"$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.class\" ]; then\n                if [ \"$MVNW_VERBOSE\" = true ]; then\n                  echo \" - Compiling MavenWrapperDownloader.java ...\"\n                fi\n                # Compiling the Java class\n                (\"$JAVA_HOME/bin/javac\" \"$javaClass\")\n            fi\n            if [ -e \"$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.class\" ]; then\n                # Running the downloader\n                if [ \"$MVNW_VERBOSE\" = true ]; then\n                  echo \" - Running MavenWrapperDownloader.java ...\"\n                fi\n                (\"$JAVA_HOME/bin/java\" -cp .mvn/wrapper MavenWrapperDownloader \"$MAVEN_PROJECTBASEDIR\")\n            fi\n        fi\n    fi\nfi\n##########################################################################################\n# End of extension\n##########################################################################################\n\nexport MAVEN_PROJECTBASEDIR=${MAVEN_BASEDIR:-\"$BASE_DIR\"}\nif [ \"$MVNW_VERBOSE\" = true ]; then\n  echo $MAVEN_PROJECTBASEDIR\nfi\nMAVEN_OPTS=\"$(concat_lines \"$MAVEN_PROJECTBASEDIR/.mvn/jvm.config\") $MAVEN_OPTS\"\n\n# For Cygwin, switch paths to Windows format before running java\nif $cygwin; then\n  [ -n \"$M2_HOME\" ] &&\n    M2_HOME=`cygpath --path --windows \"$M2_HOME\"`\n  [ -n \"$JAVA_HOME\" ] &&\n    JAVA_HOME=`cygpath --path --windows \"$JAVA_HOME\"`\n  [ -n \"$CLASSPATH\" ] &&\n    CLASSPATH=`cygpath --path --windows \"$CLASSPATH\"`\n  [ -n \"$MAVEN_PROJECTBASEDIR\" ] &&\n    MAVEN_PROJECTBASEDIR=`cygpath --path --windows \"$MAVEN_PROJECTBASEDIR\"`\nfi\n\n# Provide a \"standardized\" way to retrieve the CLI args that will\n# work with both Windows and non-Windows executions.\nMAVEN_CMD_LINE_ARGS=\"$MAVEN_CONFIG $@\"\nexport MAVEN_CMD_LINE_ARGS\n\nWRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain\n\nexec \"$JAVACMD\" \\\n  $MAVEN_OPTS \\\n  -classpath \"$MAVEN_PROJECTBASEDIR/.mvn/wrapper/maven-wrapper.jar\" \\\n  \"-Dmaven.home=${M2_HOME}\" \"-Dmaven.multiModuleProjectDirectory=${MAVEN_PROJECTBASEDIR}\" \\\n  ${WRAPPER_LAUNCHER} $MAVEN_CONFIG \"$@\"\n"
  },
  {
    "path": "mvnw.cmd",
    "content": "@REM ----------------------------------------------------------------------------\n@REM Licensed to the Apache Software Foundation (ASF) under one\n@REM or more contributor license agreements.  See the NOTICE file\n@REM distributed with this work for additional information\n@REM regarding copyright ownership.  The ASF licenses this file\n@REM to you under the Apache License, Version 2.0 (the\n@REM \"License\"); you may not use this file except in compliance\n@REM with the License.  You may obtain a copy of the License at\n@REM\n@REM    http://www.apache.org/licenses/LICENSE-2.0\n@REM\n@REM Unless required by applicable law or agreed to in writing,\n@REM software distributed under the License is distributed on an\n@REM \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n@REM KIND, either express or implied.  See the License for the\n@REM specific language governing permissions and limitations\n@REM under the License.\n@REM ----------------------------------------------------------------------------\n\n@REM ----------------------------------------------------------------------------\n@REM Maven Start Up Batch script\n@REM\n@REM Required ENV vars:\n@REM JAVA_HOME - location of a JDK home dir\n@REM\n@REM Optional ENV vars\n@REM M2_HOME - location of maven2's installed home dir\n@REM MAVEN_BATCH_ECHO - set to 'on' to enable the echoing of the batch commands\n@REM MAVEN_BATCH_PAUSE - set to 'on' to wait for a keystroke before ending\n@REM MAVEN_OPTS - parameters passed to the Java VM when running Maven\n@REM     e.g. to debug Maven itself, use\n@REM set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000\n@REM MAVEN_SKIP_RC - flag to disable loading of mavenrc files\n@REM ----------------------------------------------------------------------------\n\n@REM Begin all REM lines with '@' in case MAVEN_BATCH_ECHO is 'on'\n@echo off\n@REM set title of command window\ntitle %0\n@REM enable echoing by setting MAVEN_BATCH_ECHO to 'on'\n@if \"%MAVEN_BATCH_ECHO%\" == \"on\"  echo %MAVEN_BATCH_ECHO%\n\n@REM set %HOME% to equivalent of $HOME\nif \"%HOME%\" == \"\" (set \"HOME=%HOMEDRIVE%%HOMEPATH%\")\n\n@REM Execute a user defined script before this one\nif not \"%MAVEN_SKIP_RC%\" == \"\" goto skipRcPre\n@REM check for pre script, once with legacy .bat ending and once with .cmd ending\nif exist \"%HOME%\\mavenrc_pre.bat\" call \"%HOME%\\mavenrc_pre.bat\"\nif exist \"%HOME%\\mavenrc_pre.cmd\" call \"%HOME%\\mavenrc_pre.cmd\"\n:skipRcPre\n\n@setlocal\n\nset ERROR_CODE=0\n\n@REM To isolate internal variables from possible post scripts, we use another setlocal\n@setlocal\n\n@REM ==== START VALIDATION ====\nif not \"%JAVA_HOME%\" == \"\" goto OkJHome\n\necho.\necho Error: JAVA_HOME not found in your environment. >&2\necho Please set the JAVA_HOME variable in your environment to match the >&2\necho location of your Java installation. >&2\necho.\ngoto error\n\n:OkJHome\nif exist \"%JAVA_HOME%\\bin\\java.exe\" goto init\n\necho.\necho Error: JAVA_HOME is set to an invalid directory. >&2\necho JAVA_HOME = \"%JAVA_HOME%\" >&2\necho Please set the JAVA_HOME variable in your environment to match the >&2\necho location of your Java installation. >&2\necho.\ngoto error\n\n@REM ==== END VALIDATION ====\n\n:init\n\n@REM Find the project base dir, i.e. the directory that contains the folder \".mvn\".\n@REM Fallback to current working directory if not found.\n\nset MAVEN_PROJECTBASEDIR=%MAVEN_BASEDIR%\nIF NOT \"%MAVEN_PROJECTBASEDIR%\"==\"\" goto endDetectBaseDir\n\nset EXEC_DIR=%CD%\nset WDIR=%EXEC_DIR%\n:findBaseDir\nIF EXIST \"%WDIR%\"\\.mvn goto baseDirFound\ncd ..\nIF \"%WDIR%\"==\"%CD%\" goto baseDirNotFound\nset WDIR=%CD%\ngoto findBaseDir\n\n:baseDirFound\nset MAVEN_PROJECTBASEDIR=%WDIR%\ncd \"%EXEC_DIR%\"\ngoto endDetectBaseDir\n\n:baseDirNotFound\nset MAVEN_PROJECTBASEDIR=%EXEC_DIR%\ncd \"%EXEC_DIR%\"\n\n:endDetectBaseDir\n\nIF NOT EXIST \"%MAVEN_PROJECTBASEDIR%\\.mvn\\jvm.config\" goto endReadAdditionalConfig\n\n@setlocal EnableExtensions EnableDelayedExpansion\nfor /F \"usebackq delims=\" %%a in (\"%MAVEN_PROJECTBASEDIR%\\.mvn\\jvm.config\") do set JVM_CONFIG_MAVEN_PROPS=!JVM_CONFIG_MAVEN_PROPS! %%a\n@endlocal & set JVM_CONFIG_MAVEN_PROPS=%JVM_CONFIG_MAVEN_PROPS%\n\n:endReadAdditionalConfig\n\nSET MAVEN_JAVA_EXE=\"%JAVA_HOME%\\bin\\java.exe\"\nset WRAPPER_JAR=\"%MAVEN_PROJECTBASEDIR%\\.mvn\\wrapper\\maven-wrapper.jar\"\nset WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain\n\nset DOWNLOAD_URL=\"https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar\"\n\nFOR /F \"tokens=1,2 delims==\" %%A IN (\"%MAVEN_PROJECTBASEDIR%\\.mvn\\wrapper\\maven-wrapper.properties\") DO (\n    IF \"%%A\"==\"wrapperUrl\" SET DOWNLOAD_URL=%%B\n)\n\n@REM Extension to allow automatically downloading the maven-wrapper.jar from Maven-central\n@REM This allows using the maven wrapper in projects that prohibit checking in binary data.\nif exist %WRAPPER_JAR% (\n    if \"%MVNW_VERBOSE%\" == \"true\" (\n        echo Found %WRAPPER_JAR%\n    )\n) else (\n    if not \"%MVNW_REPOURL%\" == \"\" (\n        SET DOWNLOAD_URL=\"%MVNW_REPOURL%/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar\"\n    )\n    if \"%MVNW_VERBOSE%\" == \"true\" (\n        echo Couldn't find %WRAPPER_JAR%, downloading it ...\n        echo Downloading from: %DOWNLOAD_URL%\n    )\n\n    powershell -Command \"&{\"^\n\t\t\"$webclient = new-object System.Net.WebClient;\"^\n\t\t\"if (-not ([string]::IsNullOrEmpty('%MVNW_USERNAME%') -and [string]::IsNullOrEmpty('%MVNW_PASSWORD%'))) {\"^\n\t\t\"$webclient.Credentials = new-object System.Net.NetworkCredential('%MVNW_USERNAME%', '%MVNW_PASSWORD%');\"^\n\t\t\"}\"^\n\t\t\"[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; $webclient.DownloadFile('%DOWNLOAD_URL%', '%WRAPPER_JAR%')\"^\n\t\t\"}\"\n    if \"%MVNW_VERBOSE%\" == \"true\" (\n        echo Finished downloading %WRAPPER_JAR%\n    )\n)\n@REM End of extension\n\n@REM Provide a \"standardized\" way to retrieve the CLI args that will\n@REM work with both Windows and non-Windows executions.\nset MAVEN_CMD_LINE_ARGS=%*\n\n%MAVEN_JAVA_EXE% %JVM_CONFIG_MAVEN_PROPS% %MAVEN_OPTS% %MAVEN_DEBUG_OPTS% -classpath %WRAPPER_JAR% \"-Dmaven.multiModuleProjectDirectory=%MAVEN_PROJECTBASEDIR%\" %WRAPPER_LAUNCHER% %MAVEN_CONFIG% %*\nif ERRORLEVEL 1 goto error\ngoto end\n\n:error\nset ERROR_CODE=1\n\n:end\n@endlocal & set ERROR_CODE=%ERROR_CODE%\n\nif not \"%MAVEN_SKIP_RC%\" == \"\" goto skipRcPost\n@REM check for post script, once with legacy .bat ending and once with .cmd ending\nif exist \"%HOME%\\mavenrc_post.bat\" call \"%HOME%\\mavenrc_post.bat\"\nif exist \"%HOME%\\mavenrc_post.cmd\" call \"%HOME%\\mavenrc_post.cmd\"\n:skipRcPost\n\n@REM pause the script if MAVEN_BATCH_PAUSE is set to 'on'\nif \"%MAVEN_BATCH_PAUSE%\" == \"on\" pause\n\nif \"%MAVEN_TERMINATE_CMD%\" == \"on\" exit %ERROR_CODE%\n\nexit /B %ERROR_CODE%\n"
  },
  {
    "path": "pom.xml",
    "content": "<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n    xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n    xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\">\n  <modelVersion>4.0.0</modelVersion>\n  <parent>\n    <groupId>com.google.cloud.spark</groupId>\n    <artifactId>spark-bigquery-parent</artifactId>\n    <version>${revision}</version>\n    <relativePath>spark-bigquery-parent</relativePath>\n  </parent>\n\n  <artifactId>spark-bigquery-reactor</artifactId>\n  <packaging>pom</packaging>\n  <name>Spark BigQuery Connector Reactor</name>\n\n  <licenses>\n    <license>\n      <name>Apache License, Version 2.0</name>\n      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>\n      <distribution>repo</distribution>\n    </license>\n  </licenses>\n\n  <developers>\n    <developer>\n      <organization>Google Inc.</organization>\n      <organizationUrl>http://www.google.com</organizationUrl>\n    </developer>\n  </developers>\n\n  <scm>\n    <connection>\n      scm:git:git@github.com:GoogleCloudDataproc/spark-bigquery-connector.git\n    </connection>\n    <developerConnection>\n      scm:git:git@github.com:GoogleCloudDataproc/spark-bigquery-connector.git\n    </developerConnection>\n    <url>git@github.com:GoogleCloudDataproc/spark-bigquery-connector.git</url>\n  </scm>\n\n  <issueManagement>\n    <system>GitHub Issues</system>\n    <url>\n      https://github.com/GoogleCloudDataproc/spark-bigquery-connector/issues\n    </url>\n  </issueManagement>\n\n  <modules>\n    <module>spark-bigquery-parent</module>\n    <module>bigquery-connector-common</module>\n    <module>spark-bigquery-tests</module>\n    <module>spark-bigquery-scala-212-support</module>\n    <module>spark-bigquery-connector-common</module>\n    <module>spark-bigquery-python-lib</module>\n  </modules>\n\n  <profiles>\n    <profile>\n      <id>all</id>\n      <activation>\n        <activeByDefault>false</activeByDefault>\n      </activation>\n      <modules>\n        <module>spark-bigquery-dsv1</module>\n        <module>spark-bigquery-dsv2</module>\n      </modules>\n    </profile>\n    <profile>\n      <id>dsv1</id>\n      <activation>\n        <activeByDefault>false</activeByDefault>\n      </activation>\n      <modules>\n        <module>spark-bigquery-dsv1</module>\n      </modules>\n    </profile>\n    <profile>\n      <id>dsv1_2.11</id>\n      <activation>\n        <activeByDefault>false</activeByDefault>\n      </activation>\n      <modules>\n        <module>spark-bigquery-dsv1/spark-bigquery-dsv1-parent</module>\n        <module>spark-bigquery-dsv1/spark-bigquery-dsv1-spark2-support</module>\n        <module>spark-bigquery-dsv1/spark-bigquery-dsv1-spark3-support</module>\n        <module>spark-bigquery-dsv1/spark-bigquery_2.11</module>\n        <module>spark-bigquery-dsv1/spark-bigquery-with-dependencies-parent\n        </module>\n        <module>spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.11\n        </module>\n      </modules>\n    </profile>\n    <profile>\n      <id>dsv1_2.12</id>\n      <activation>\n        <activeByDefault>false</activeByDefault>\n      </activation>\n      <modules>\n        <module>spark-bigquery-dsv1/spark-bigquery-dsv1-parent</module>\n        <module>spark-bigquery-dsv1/spark-bigquery-dsv1-spark2-support</module>\n        <module>spark-bigquery-dsv1/spark-bigquery-dsv1-spark3-support</module>\n        <module>spark-bigquery-dsv1/spark-bigquery_2.12</module>\n        <module>spark-bigquery-dsv1/spark-bigquery-with-dependencies-parent\n        </module>\n        <module>spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.12\n        </module>\n      </modules>\n    </profile>\n    <profile>\n      <id>dsv1_2.13</id>\n      <activation>\n        <activeByDefault>false</activeByDefault>\n      </activation>\n      <modules>\n        <module>spark-bigquery-dsv1/spark-bigquery-dsv1-parent</module>\n        <module>spark-bigquery-dsv1/spark-bigquery-dsv1-spark2-support</module>\n        <module>spark-bigquery-dsv1/spark-bigquery-dsv1-spark3-support</module>\n        <module>spark-bigquery-dsv1/spark-bigquery_2.13</module>\n        <module>spark-bigquery-dsv1/spark-bigquery-with-dependencies-parent\n        </module>\n        <module>spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.13\n        </module>\n      </modules>\n    </profile>\n    <profile>\n      <id>dsv2</id>\n      <activation>\n        <activeByDefault>false</activeByDefault>\n      </activation>\n      <modules>\n        <module>spark-bigquery-dsv2</module>\n      </modules>\n    </profile>\n    <profile>\n      <id>dsv2_2.4</id>\n      <activation>\n        <activeByDefault>false</activeByDefault>\n      </activation>\n      <modules>\n        <module>spark-bigquery-dsv2/spark-bigquery-dsv2-common</module>\n        <module>spark-bigquery-dsv2/spark-bigquery-dsv2-parent</module>\n        <module>spark-bigquery-dsv2/spark-2.4-bigquery</module>\n      </modules>\n    </profile>\n    <profile>\n      <id>dsv2_3.1</id>\n      <activation>\n        <activeByDefault>false</activeByDefault>\n      </activation>\n      <modules>\n        <module>spark-bigquery-dsv2/spark-bigquery-dsv2-common</module>\n        <module>spark-bigquery-dsv2/spark-bigquery-dsv2-parent</module>\n        <module>spark-bigquery-dsv2/spark-3.1-bigquery-lib</module>\n        <module>spark-bigquery-dsv2/spark-3.1-bigquery</module>\n      </modules>\n    </profile>\n    <profile>\n      <id>dsv2_3.2</id>\n      <activation>\n        <activeByDefault>false</activeByDefault>\n      </activation>\n      <modules>\n        <module>spark-bigquery-dsv2/spark-bigquery-dsv2-common</module>\n        <module>spark-bigquery-dsv2/spark-bigquery-dsv2-parent</module>\n        <module>spark-bigquery-dsv2/spark-3.1-bigquery-lib</module>\n        <module>spark-bigquery-dsv2/spark-bigquery-metrics</module>\n        <module>spark-bigquery-dsv2/spark-3.2-bigquery-lib</module>\n        <module>spark-bigquery-dsv2/spark-3.2-bigquery</module>\n      </modules>\n    </profile>\n    <profile>\n      <id>dsv2_3.3</id>\n      <activation>\n        <activeByDefault>false</activeByDefault>\n      </activation>\n      <modules>\n        <module>spark-bigquery-dsv2/spark-bigquery-dsv2-common</module>\n        <module>spark-bigquery-dsv2/spark-bigquery-dsv2-parent</module>\n        <module>spark-bigquery-dsv2/spark-3.1-bigquery-lib</module>\n        <module>spark-bigquery-dsv2/spark-bigquery-metrics</module>\n        <module>spark-bigquery-dsv2/spark-3.2-bigquery-lib</module>\n        <module>spark-bigquery-dsv2/spark-3.3-bigquery-lib</module>\n        <module>spark-bigquery-dsv2/spark-3.3-bigquery</module>\n      </modules>\n    </profile>\n    <profile>\n      <id>dsv2_3.4</id>\n      <activation>\n        <activeByDefault>false</activeByDefault>\n      </activation>\n      <modules>\n        <module>spark-bigquery-dsv2/spark-bigquery-dsv2-common</module>\n        <module>spark-bigquery-dsv2/spark-bigquery-dsv2-parent</module>\n        <module>spark-bigquery-dsv2/spark-3.1-bigquery-lib</module>\n        <module>spark-bigquery-dsv2/spark-bigquery-metrics</module>\n        <module>spark-bigquery-dsv2/spark-3.2-bigquery-lib</module>\n        <module>spark-bigquery-dsv2/spark-3.3-bigquery-lib</module>\n        <module>spark-bigquery-dsv2/spark-3.4-bigquery-lib</module>\n        <module>spark-bigquery-dsv2/spark-3.4-bigquery</module>\n      </modules>\n    </profile>\n    <profile>\n      <id>dsv2_3.5</id>\n      <activation>\n        <activeByDefault>false</activeByDefault>\n      </activation>\n      <modules>\n        <module>spark-bigquery-dsv2/spark-bigquery-dsv2-common</module>\n        <module>spark-bigquery-dsv2/spark-bigquery-dsv2-parent</module>\n        <module>spark-bigquery-dsv2/spark-3.1-bigquery-lib</module>\n        <module>spark-bigquery-dsv2/spark-bigquery-metrics</module>\n        <module>spark-bigquery-dsv2/spark-3.2-bigquery-lib</module>\n        <module>spark-bigquery-dsv2/spark-3.3-bigquery-lib</module>\n        <module>spark-bigquery-dsv2/spark-3.4-bigquery-lib</module>\n        <module>spark-bigquery-dsv2/spark-3.5-bigquery-lib</module>\n        <module>spark-bigquery-dsv2/spark-3.5-bigquery</module>\n      </modules>\n    </profile>\n    <profile>\n      <id>dsv2_4.0</id>\n      <activation>\n        <activeByDefault>false</activeByDefault>\n      </activation>\n      <modules>\n        <module>spark-bigquery-dsv2/spark-bigquery-dsv2-common</module>\n        <module>spark-bigquery-dsv2/spark-bigquery-dsv2-parent</module>\n        <module>spark-bigquery-dsv2/spark-3.1-bigquery-lib</module>\n        <module>spark-bigquery-dsv2/spark-bigquery-metrics</module>\n        <module>spark-bigquery-dsv2/spark-3.2-bigquery-lib</module>\n        <module>spark-bigquery-dsv2/spark-3.3-bigquery-lib</module>\n        <module>spark-bigquery-dsv2/spark-3.4-bigquery-lib</module>\n        <module>spark-bigquery-dsv2/spark-3.5-bigquery-lib</module>\n        <module>spark-bigquery-dsv2/spark-4.0-bigquery-lib</module>\n        <module>spark-bigquery-dsv2/spark-4.0-bigquery</module>\n      </modules>\n    </profile>\n    <profile>\n      <id>dsv2_4.1</id>\n      <activation>\n        <activeByDefault>false</activeByDefault>\n      </activation>\n      <modules>\n        <module>spark-bigquery-dsv2/spark-bigquery-dsv2-common</module>\n        <module>spark-bigquery-dsv2/spark-bigquery-dsv2-parent</module>\n        <module>spark-bigquery-dsv2/spark-3.1-bigquery-lib</module>\n        <module>spark-bigquery-dsv2/spark-bigquery-metrics</module>\n        <module>spark-bigquery-dsv2/spark-3.2-bigquery-lib</module>\n        <module>spark-bigquery-dsv2/spark-3.3-bigquery-lib</module>\n        <module>spark-bigquery-dsv2/spark-3.4-bigquery-lib</module>\n        <module>spark-bigquery-dsv2/spark-3.5-bigquery-lib</module>\n        <module>spark-bigquery-dsv2/spark-4.0-bigquery-lib</module>\n        <module>spark-bigquery-dsv2/spark-4.1-bigquery-lib</module>\n        <module>spark-bigquery-dsv2/spark-4.1-bigquery</module>\n      </modules>\n    </profile>\n    <profile>\n      <id>coverage</id>\n      <activation>\n        <activeByDefault>false</activeByDefault>\n      </activation>\n      <modules>\n        <module>coverage</module>\n      </modules>\n    </profile>\n  </profiles>\n</project>\n"
  },
  {
    "path": "scalastyle-config.xml",
    "content": "<!--\n  ~ Licensed to the Apache Software Foundation (ASF) under one or more\n  ~ contributor license agreements.  See the NOTICE file distributed with\n  ~ this work for additional information regarding copyright ownership.\n  ~ The ASF licenses this file to You under the Apache License, Version 2.0\n  ~ (the \"License\"); you may not use this file except in compliance with\n  ~ the License.  You may obtain a copy of the License at\n  ~\n  ~    http://www.apache.org/licenses/LICENSE-2.0\n  ~\n  ~ Unless required by applicable law or agreed to in writing, software\n  ~ distributed under the License is distributed on an \"AS IS\" BASIS,\n  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  ~ See the License for the specific language governing permissions and\n  ~ limitations under the License.\n  -->\n<!--\nThis configuration was taken from Apache Spark (with minor edits).\n\nIf you wish to turn off checking for a section of code, you can put a comment in the source\nbefore and after the section, with the following syntax:\n\n  // scalastyle:off\n  ...  // stuff that breaks the styles\n  // scalastyle:on\n\nYou can also disable only one rule, by specifying its rule id, as specified in:\n  http://www.scalastyle.org/rules-0.7.0.html\n\n  // scalastyle:off no.finalize\n  override def finalize(): Unit = ...\n  // scalastyle:on no.finalize\n\nThis file is divided into 3 sections:\n (1) rules that we enforce.\n (2) rules that we would like to enforce, but haven't cleaned up the codebase to turn on yet\n     (or we need to make the scalastyle rule more configurable).\n (3) rules that we don't want to enforce.\n-->\n\n<scalastyle>\n  <name>Scalastyle standard configuration</name>\n\n  <!-- ================================================================================ -->\n  <!--                               rules we enforce                                   -->\n  <!-- ================================================================================ -->\n\n  <check level=\"error\" class=\"org.scalastyle.file.FileTabChecker\" enabled=\"true\"></check>\n\n  <check level=\"error\" class=\"org.scalastyle.file.HeaderMatchesChecker\" enabled=\"true\">\n    <parameters>\n       <parameter name=\"header\"><![CDATA[/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */]]></parameter>\n    </parameters>\n  </check>\n\n  <check level=\"error\" class=\"org.scalastyle.scalariform.SpacesAfterPlusChecker\" enabled=\"true\"></check>\n\n  <check level=\"error\" class=\"org.scalastyle.scalariform.SpacesBeforePlusChecker\" enabled=\"true\"></check>\n\n  <check level=\"error\" class=\"org.scalastyle.file.WhitespaceEndOfLineChecker\" enabled=\"true\"></check>\n\n  <check level=\"error\" class=\"org.scalastyle.file.FileLineLengthChecker\" enabled=\"true\">\n    <parameters>\n      <parameter name=\"maxLineLength\"><![CDATA[100]]></parameter>\n      <parameter name=\"tabSize\"><![CDATA[2]]></parameter>\n      <parameter name=\"ignoreImports\">true</parameter>\n    </parameters>\n  </check>\n\n  <check level=\"error\" class=\"org.scalastyle.scalariform.ClassNamesChecker\" enabled=\"true\">\n    <parameters><parameter name=\"regex\"><![CDATA[[A-Z][A-Za-z]*]]></parameter></parameters>\n  </check>\n\n  <check level=\"error\" class=\"org.scalastyle.scalariform.ObjectNamesChecker\" enabled=\"true\">\n    <parameters><parameter name=\"regex\"><![CDATA[[A-Z][A-Za-z]*]]></parameter></parameters>\n  </check>\n\n  <check level=\"error\" class=\"org.scalastyle.scalariform.PackageObjectNamesChecker\" enabled=\"true\">\n    <parameters><parameter name=\"regex\"><![CDATA[^[a-z][A-Za-z]*$]]></parameter></parameters>\n  </check>\n\n  <check level=\"error\" class=\"org.scalastyle.scalariform.ParameterNumberChecker\" enabled=\"true\">\n    <parameters><parameter name=\"maxParameters\"><![CDATA[10]]></parameter></parameters>\n  </check>\n\n  <check level=\"error\" class=\"org.scalastyle.scalariform.NoFinalizeChecker\" enabled=\"true\"></check>\n\n  <check level=\"error\" class=\"org.scalastyle.scalariform.CovariantEqualsChecker\" enabled=\"true\"></check>\n\n  <check level=\"error\" class=\"org.scalastyle.scalariform.StructuralTypeChecker\" enabled=\"true\"></check>\n\n  <check level=\"error\" class=\"org.scalastyle.scalariform.UppercaseLChecker\" enabled=\"true\"></check>\n\n  <check level=\"error\" class=\"org.scalastyle.scalariform.IfBraceChecker\" enabled=\"true\">\n    <parameters>\n      <parameter name=\"singleLineAllowed\"><![CDATA[true]]></parameter>\n      <parameter name=\"doubleLineAllowed\"><![CDATA[true]]></parameter>\n    </parameters>\n  </check>\n\n  <check level=\"error\" class=\"org.scalastyle.scalariform.PublicMethodsHaveTypeChecker\" enabled=\"true\"></check>\n\n  <check level=\"error\" class=\"org.scalastyle.file.NewLineAtEofChecker\" enabled=\"true\"></check>\n\n  <check customId=\"nonascii\" level=\"error\" class=\"org.scalastyle.scalariform.NonASCIICharacterChecker\" enabled=\"true\"></check>\n\n  <check level=\"error\" class=\"org.scalastyle.scalariform.SpaceAfterCommentStartChecker\" enabled=\"true\"></check>\n\n  <check level=\"error\" class=\"org.scalastyle.scalariform.EnsureSingleSpaceBeforeTokenChecker\" enabled=\"true\">\n   <parameters>\n     <parameter name=\"tokens\">ARROW, EQUALS, ELSE, TRY, CATCH, FINALLY, LARROW, RARROW</parameter>\n   </parameters>\n  </check>\n\n  <check level=\"error\" class=\"org.scalastyle.scalariform.EnsureSingleSpaceAfterTokenChecker\" enabled=\"true\">\n    <parameters>\n     <parameter name=\"tokens\">ARROW, EQUALS, COMMA, COLON, IF, ELSE, DO, WHILE, FOR, MATCH, TRY, CATCH, FINALLY, LARROW, RARROW</parameter>\n    </parameters>\n  </check>\n\n  <!-- ??? usually shouldn't be checked into the code base. -->\n  <check level=\"error\" class=\"org.scalastyle.scalariform.NotImplementedErrorUsage\" enabled=\"true\"></check>\n\n  <!-- As of SPARK-7977 all printlns need to be wrapped in '// scalastyle:off/on println' -->\n  <check customId=\"println\" level=\"error\" class=\"org.scalastyle.scalariform.TokenChecker\" enabled=\"true\">\n    <parameters><parameter name=\"regex\">^println$</parameter></parameters>\n    <customMessage><![CDATA[Are you sure you want to println? If yes, wrap the code block with\n      // scalastyle:off println\n      println(...)\n      // scalastyle:on println]]></customMessage>\n  </check>\n\n  <check customId=\"visiblefortesting\" level=\"error\" class=\"org.scalastyle.file.RegexChecker\" enabled=\"true\">\n    <parameters><parameter name=\"regex\">@VisibleForTesting</parameter></parameters>\n    <customMessage><![CDATA[\n      @VisibleForTesting causes classpath issues. Please note this in the java doc instead (SPARK-11615).\n    ]]></customMessage>\n  </check>\n\n  <check customId=\"mutablesynchronizedbuffer\" level=\"error\" class=\"org.scalastyle.file.RegexChecker\" enabled=\"true\">\n    <parameters><parameter name=\"regex\">mutable\\.SynchronizedBuffer</parameter></parameters>\n    <customMessage><![CDATA[\n      Are you sure that you want to use mutable.SynchronizedBuffer? In most cases, you should use\n      java.util.concurrent.ConcurrentLinkedQueue instead.\n      If you must use mutable.SynchronizedBuffer, wrap the code block with\n      // scalastyle:off mutablesynchronizedbuffer\n      mutable.SynchronizedBuffer[...]\n      // scalastyle:on mutablesynchronizedbuffer\n    ]]></customMessage>\n  </check>\n\n  <check customId=\"classforname\" level=\"error\" class=\"org.scalastyle.file.RegexChecker\" enabled=\"true\">\n    <parameters><parameter name=\"regex\">Class\\.forName</parameter></parameters>\n    <customMessage><![CDATA[\n      Are you sure that you want to use Class.forName? In most cases, you should use Utils.classForName instead.\n      If you must use Class.forName, wrap the code block with\n      // scalastyle:off classforname\n      Class.forName(...)\n      // scalastyle:on classforname\n    ]]></customMessage>\n  </check>\n\n  <check customId=\"awaitresult\" level=\"error\" class=\"org.scalastyle.file.RegexChecker\" enabled=\"true\">\n    <parameters><parameter name=\"regex\">Await\\.result</parameter></parameters>\n    <customMessage><![CDATA[\n      Are you sure that you want to use Await.result? In most cases, you should use ThreadUtils.awaitResult instead.\n      If you must use Await.result, wrap the code block with\n      // scalastyle:off awaitresult\n      Await.result(...)\n      // scalastyle:on awaitresult\n    ]]></customMessage>\n  </check>\n\n  <check customId=\"awaitready\" level=\"error\" class=\"org.scalastyle.file.RegexChecker\" enabled=\"true\">\n    <parameters><parameter name=\"regex\">Await\\.ready</parameter></parameters>\n    <customMessage><![CDATA[\n      Are you sure that you want to use Await.ready? In most cases, you should use ThreadUtils.awaitReady instead.\n      If you must use Await.ready, wrap the code block with\n      // scalastyle:off awaitready\n      Await.ready(...)\n      // scalastyle:on awaitready\n    ]]></customMessage>\n  </check>\n\n  <!-- As of SPARK-9613 JavaConversions should be replaced with JavaConverters -->\n  <check customId=\"javaconversions\" level=\"error\" class=\"org.scalastyle.scalariform.TokenChecker\" enabled=\"true\">\n    <parameters><parameter name=\"regex\">JavaConversions</parameter></parameters>\n    <customMessage>Instead of importing implicits in scala.collection.JavaConversions._, import\n    scala.collection.JavaConverters._ and use .asScala / .asJava methods</customMessage>\n  </check>\n\n  <check customId=\"commonslang2\" level=\"error\" class=\"org.scalastyle.scalariform.TokenChecker\" enabled=\"true\">\n    <parameters><parameter name=\"regex\">org\\.apache\\.commons\\.lang\\.</parameter></parameters>\n    <customMessage>Use Commons Lang 3 classes (package org.apache.commons.lang3.*) instead\n    of Commons Lang 2 (package org.apache.commons.lang.*)</customMessage>\n  </check>\n\n  <check customId=\"extractopt\" level=\"error\" class=\"org.scalastyle.scalariform.TokenChecker\" enabled=\"true\">\n    <parameters><parameter name=\"regex\">extractOpt</parameter></parameters>\n    <customMessage>Use Utils.jsonOption(x).map(.extract[T]) instead of .extractOpt[T], as the latter\n    is slower.  </customMessage>\n  </check>\n\n  <check level=\"error\" class=\"org.scalastyle.scalariform.ImportOrderChecker\" enabled=\"true\"/>\n\n  <check level=\"error\" class=\"org.scalastyle.scalariform.DisallowSpaceBeforeTokenChecker\" enabled=\"true\">\n    <parameters>\n      <parameter name=\"tokens\">COMMA</parameter>\n    </parameters>\n  </check>\n\n  <!-- SPARK-3854: Single Space between ')' and '{' -->\n  <check customId=\"SingleSpaceBetweenRParenAndLCurlyBrace\" level=\"error\" class=\"org.scalastyle.file.RegexChecker\" enabled=\"true\">\n    <parameters><parameter name=\"regex\">\\)\\{</parameter></parameters>\n    <customMessage><![CDATA[\n      Single Space between ')' and `{`.\n    ]]></customMessage>\n  </check>\n\n  <check customId=\"NoScalaDoc\" level=\"error\" class=\"org.scalastyle.file.RegexChecker\" enabled=\"true\">\n    <parameters><parameter name=\"regex\">(?m)^(\\s*)/[*][*].*$(\\r|)\\n^\\1  [*]</parameter></parameters>\n    <customMessage>Use Javadoc style indentation for multiline comments</customMessage>\n  </check>\n\n  <check customId=\"OmitBracesInCase\" level=\"error\" class=\"org.scalastyle.file.RegexChecker\" enabled=\"true\">\n    <parameters><parameter name=\"regex\">case[^\\n>]*=>\\s*\\{</parameter></parameters>\n    <customMessage>Omit braces in case clauses.</customMessage>\n  </check>\n\n  <!-- SPARK-16877: Avoid Java annotations -->\n  <check customId=\"OverrideJavaCase\" level=\"error\" class=\"org.scalastyle.scalariform.TokenChecker\" enabled=\"true\">\n    <parameters><parameter name=\"regex\">^Override$</parameter></parameters>\n    <customMessage>override modifier should be used instead of @java.lang.Override.</customMessage>\n  </check>\n\n  <check level=\"error\" class=\"org.scalastyle.scalariform.DeprecatedJavaChecker\" enabled=\"true\"></check>\n\n  <!-- ================================================================================ -->\n  <!--       rules we'd like to enforce, but haven't cleaned up the codebase yet        -->\n  <!-- ================================================================================ -->\n\n  <!-- We cannot turn the following two on, because it'd fail a lot of string interpolation use cases. -->\n  <!-- Ideally the following two rules should be configurable to rule out string interpolation. -->\n  <check level=\"error\" class=\"org.scalastyle.scalariform.NoWhitespaceBeforeLeftBracketChecker\" enabled=\"false\"></check>\n  <check level=\"error\" class=\"org.scalastyle.scalariform.NoWhitespaceAfterLeftBracketChecker\" enabled=\"false\"></check>\n\n  <!-- This breaks symbolic method names so we don't turn it on. -->\n  <!-- Maybe we should update it to allow basic symbolic names, and then we are good to go. -->\n  <check level=\"error\" class=\"org.scalastyle.scalariform.MethodNamesChecker\" enabled=\"false\">\n    <parameters>\n    <parameter name=\"regex\"><![CDATA[^[a-z][A-Za-z0-9]*$]]></parameter>\n    </parameters>\n  </check>\n\n  <!-- Should turn this on, but we have a few places that need to be fixed first -->\n  <check level=\"error\" class=\"org.scalastyle.scalariform.EqualsHashCodeChecker\" enabled=\"true\"></check>\n\n  <!-- ================================================================================ -->\n  <!--                               rules we don't want                                -->\n  <!-- ================================================================================ -->\n\n  <check level=\"error\" class=\"org.scalastyle.scalariform.IllegalImportsChecker\" enabled=\"false\">\n    <parameters><parameter name=\"illegalImports\"><![CDATA[sun._,java.awt._]]></parameter></parameters>\n  </check>\n\n  <!-- We want the opposite of this: NewLineAtEofChecker -->\n  <check level=\"error\" class=\"org.scalastyle.file.NoNewLineAtEofChecker\" enabled=\"false\"></check>\n\n  <!-- This one complains about all kinds of random things. Disable. -->\n  <check level=\"error\" class=\"org.scalastyle.scalariform.SimplifyBooleanExpressionChecker\" enabled=\"false\"></check>\n\n  <!-- We use return quite a bit for control flows and guards -->\n  <check level=\"error\" class=\"org.scalastyle.scalariform.ReturnChecker\" enabled=\"false\"></check>\n\n  <!-- We use null a lot in low level code and to interface with 3rd party code -->\n  <check level=\"error\" class=\"org.scalastyle.scalariform.NullChecker\" enabled=\"false\"></check>\n\n  <!-- Doesn't seem super big deal here ... -->\n  <check level=\"error\" class=\"org.scalastyle.scalariform.NoCloneChecker\" enabled=\"false\"></check>\n\n  <!-- Doesn't seem super big deal here ... -->\n  <check level=\"error\" class=\"org.scalastyle.file.FileLengthChecker\" enabled=\"false\">\n    <parameters><parameter name=\"maxFileLength\">800></parameter></parameters>\n  </check>\n\n  <!-- Doesn't seem super big deal here ... -->\n  <check level=\"error\" class=\"org.scalastyle.scalariform.NumberOfTypesChecker\" enabled=\"false\">\n    <parameters><parameter name=\"maxTypes\">30</parameter></parameters>\n  </check>\n\n  <!-- Doesn't seem super big deal here ... -->\n  <check level=\"error\" class=\"org.scalastyle.scalariform.CyclomaticComplexityChecker\" enabled=\"false\">\n    <parameters><parameter name=\"maximum\">10</parameter></parameters>\n  </check>\n\n  <!-- Doesn't seem super big deal here ... -->\n  <check level=\"error\" class=\"org.scalastyle.scalariform.MethodLengthChecker\" enabled=\"false\">\n    <parameters><parameter name=\"maxLength\">50</parameter></parameters>\n  </check>\n\n  <!-- Not exactly feasible to enforce this right now. -->\n  <!-- It is also infrequent that somebody introduces a new class with a lot of methods. -->\n  <check level=\"error\" class=\"org.scalastyle.scalariform.NumberOfMethodsInTypeChecker\" enabled=\"false\">\n    <parameters><parameter name=\"maxMethods\"><![CDATA[30]]></parameter></parameters>\n  </check>\n\n  <!-- Doesn't seem super big deal here, and we have a lot of magic numbers ... -->\n  <check level=\"error\" class=\"org.scalastyle.scalariform.MagicNumberChecker\" enabled=\"false\">\n    <parameters><parameter name=\"ignore\">-1,0,1,2,3</parameter></parameters>\n  </check>\n\n</scalastyle>\n"
  },
  {
    "path": "scripts/verify-shading.sh",
    "content": "#!/bin/sh\n\n# Copyright 2024 Google LLC\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n#     https://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nJAR_FILE=\"$1\"\n\njar tvf \"${JAR_FILE}\" | \\\n  grep -v META-INF | \\\n  grep -E \"\\.class$\" | \\\n  grep -v com/google/cloud/spark/bigquery | \\\n  grep -v com/google/cloud/bigquery/connector/common | \\\n  grep -vE 'org/apache/spark/sql/.*SparkSqlUtils.class'\n\nif [ $? -eq 0 ]; then\n  # grep found classes where there shouldn't be any. Print error message and exit\n  echo \"\"\n  echo \"Found unshaded classes, please fix above findings\"\n  exit 1\nelse\n  echo \"No unshaded classes found\"\n  exit 0\nfi\n"
  },
  {
    "path": "spark-bigquery-connector-common/pom.xml",
    "content": "<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n         xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\">\n    <modelVersion>4.0.0</modelVersion>\n    <parent>\n        <groupId>com.google.cloud.spark</groupId>\n        <artifactId>spark-bigquery-parent</artifactId>\n        <version>${revision}</version>\n        <relativePath>../spark-bigquery-parent</relativePath>\n    </parent>\n\n    <artifactId>spark-bigquery-connector-common</artifactId>\n    <name>Spark BigQuery Connector Common Library</name>\n    <packaging>jar</packaging>\n    <licenses>\n        <license>\n            <name>Apache License, Version 2.0</name>\n            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>\n            <distribution>repo</distribution>\n        </license>\n    </licenses>\n    <dependencies>\n        <dependency>\n            <groupId>${project.groupId}</groupId>\n            <artifactId>bigquery-connector-common</artifactId>\n            <version>${project.version}</version>\n        </dependency>\n        <dependency>\n            <groupId>com.google.errorprone</groupId>\n            <artifactId>error_prone_annotations</artifactId>\n        </dependency>\n        <dependency>\n            <groupId>io.openlineage</groupId>\n            <artifactId>spark-extension-interfaces</artifactId>\n        </dependency>\n        <dependency>\n            <groupId>io.openlineage</groupId>\n            <artifactId>spark-extension-entrypoint</artifactId>\n            <version>1.0.0</version>\n            <scope>provided</scope>\n        </dependency>\n        <dependency>\n            <groupId>org.apache.beam</groupId>\n            <artifactId>beam-sdks-java-io-hadoop-common</artifactId>\n            <version>2.43.0</version>\n            <exclusions>\n                <exclusion>\n                    <groupId>org.apache.beam</groupId>\n                    <artifactId>beam-sdks-java-core</artifactId>\n                </exclusion>\n            </exclusions>\n        </dependency>\n        <dependency>\n            <groupId>org.apache.spark</groupId>\n            <artifactId>spark-sql_2.13</artifactId>\n            <version>3.3.0</version>\n            <scope>provided</scope>\n            <exclusions>\n                <exclusion>\n                    <groupId>io.netty</groupId>\n                    <artifactId>netty</artifactId>\n                </exclusion>\n            </exclusions>\n        </dependency>\n        <dependency>\n            <groupId>org.apache.spark</groupId>\n            <artifactId>spark-mllib_2.13</artifactId>\n            <version>3.3.0</version>\n            <scope>provided</scope>\n            <exclusions>\n                <exclusion>\n                    <groupId>io.netty</groupId>\n                    <artifactId>netty</artifactId>\n                </exclusion>\n            </exclusions>\n        </dependency>\n        <dependency>\n            <groupId>org.apache.arrow</groupId>\n            <artifactId>arrow-compression</artifactId>\n        </dependency>\n        <dependency>\n            <groupId>org.apache.arrow</groupId>\n            <artifactId>arrow-vector</artifactId>\n        </dependency>\n        <dependency>\n            <groupId>com.google.cloud</groupId>\n            <artifactId>google-cloud-dataproc</artifactId>\n            <scope>test</scope>\n        </dependency>\n        <dependency>\n            <groupId>com.google.cloud</groupId>\n            <artifactId>google-cloud-storage</artifactId>\n            <scope>test</scope>\n        </dependency>\n    </dependencies>\n    <build>\n        <plugins>\n            <plugin>\n                <groupId>org.apache.maven.plugins</groupId>\n                <artifactId>maven-jar-plugin</artifactId>\n                <version>3.2.0</version>\n                <executions>\n                    <execution>\n                        <id>default-jar</id>\n                        <phase>package</phase>\n                        <goals>\n                            <goal>jar</goal>\n                        </goals>\n                    </execution>\n                    <execution>\n                        <id>test-jar</id>\n                        <goals>\n                            <goal>test-jar</goal>\n                        </goals>\n                    </execution>\n                </executions>\n            </plugin>\n            <plugin>\n                <groupId>org.codehaus.mojo</groupId>\n                <artifactId>build-helper-maven-plugin</artifactId>\n                <version>3.0.0</version>\n                <executions>\n                    <execution>\n                        <phase>generate-sources</phase>\n                        <goals>\n                            <goal>add-source</goal>\n                        </goals>\n                        <configuration>\n                            <sources>\n                                <source>third_party/apache-spark/src/main/java</source>\n                            </sources>\n                        </configuration>\n                    </execution>\n                </executions>\n            </plugin>\n        </plugins>\n    </build>\n</project>\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/build/resources/spark-bigquery-connector.properties",
    "content": "connector.version=${project.version}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/ArrowBinaryIterator.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery;\n\nimport com.google.cloud.bigquery.connector.common.ArrowReaderIterator;\nimport com.google.cloud.bigquery.connector.common.ArrowUtil;\nimport com.google.cloud.bigquery.connector.common.BigQueryConnectorException;\nimport com.google.cloud.bigquery.connector.common.BigQueryStorageReadRowsTracer;\nimport com.google.cloud.bigquery.connector.common.DecompressReadRowsResponse;\nimport com.google.cloud.bigquery.storage.v1.ReadRowsResponse;\nimport com.google.cloud.bigquery.storage.v1.ReadSession.TableReadOptions.ResponseCompressionCodec;\nimport com.google.common.collect.ImmutableList;\nimport com.google.protobuf.ByteString;\nimport java.io.ByteArrayInputStream;\nimport java.io.IOException;\nimport java.io.SequenceInputStream;\nimport java.util.Arrays;\nimport java.util.Iterator;\nimport java.util.List;\nimport java.util.Map;\nimport java.util.Optional;\nimport java.util.function.Function;\nimport java.util.stream.Collectors;\nimport org.apache.arrow.compression.CommonsCompressionFactory;\nimport org.apache.arrow.memory.BufferAllocator;\nimport org.apache.arrow.vector.VectorSchemaRoot;\nimport org.apache.arrow.vector.ipc.ArrowStreamReader;\nimport org.apache.spark.sql.catalyst.InternalRow;\nimport org.apache.spark.sql.types.StructField;\nimport org.apache.spark.sql.types.StructType;\nimport org.apache.spark.sql.vectorized.ColumnVector;\nimport org.apache.spark.sql.vectorized.ColumnarBatch;\n\npublic class ArrowBinaryIterator implements Iterator<InternalRow> {\n\n  private static long maxAllocation = Long.MAX_VALUE;\n  private final Optional<BigQueryStorageReadRowsTracer> bigQueryStorageReadRowsTracer;\n  ArrowReaderIterator arrowReaderIterator;\n  Iterator<InternalRow> currentIterator;\n  List<String> columnsInOrder;\n  Map<String, StructField> userProvidedFieldMap;\n\n  public ArrowBinaryIterator(\n      List<String> columnsInOrder,\n      ByteString schema,\n      ReadRowsResponse readRowsResponse,\n      Optional<StructType> userProvidedSchema,\n      Optional<BigQueryStorageReadRowsTracer> bigQueryStorageReadRowsTracer,\n      ResponseCompressionCodec responseCompressionCodec) {\n    BufferAllocator allocator =\n        ArrowUtil.newRootAllocator(maxAllocation)\n            .newChildAllocator(\"ArrowBinaryIterator\", 0, maxAllocation);\n\n    try {\n      SequenceInputStream bytesWithSchemaStream =\n          new SequenceInputStream(\n              new ByteArrayInputStream(schema.toByteArray()),\n              DecompressReadRowsResponse.decompressArrowRecordBatch(\n                  readRowsResponse, responseCompressionCodec));\n      ArrowStreamReader arrowStreamReader =\n          new ArrowStreamReader(\n              bytesWithSchemaStream, allocator, CommonsCompressionFactory.INSTANCE);\n      arrowReaderIterator = new ArrowReaderIterator(arrowStreamReader);\n    } catch (IOException e) {\n      throw new BigQueryConnectorException(\n          \"Failed to decode Arrow binary for a ReadRowsResponse\", e);\n    }\n    currentIterator = ImmutableList.<InternalRow>of().iterator();\n    this.columnsInOrder = columnsInOrder;\n\n    List<StructField> userProvidedFieldList =\n        Arrays.stream(userProvidedSchema.orElse(new StructType()).fields())\n            .collect(Collectors.toList());\n\n    this.userProvidedFieldMap =\n        userProvidedFieldList.stream()\n            .collect(Collectors.toMap(StructField::name, Function.identity()));\n\n    this.bigQueryStorageReadRowsTracer = bigQueryStorageReadRowsTracer;\n  }\n\n  @Override\n  public boolean hasNext() {\n    while (!currentIterator.hasNext()) {\n      if (!arrowReaderIterator.hasNext()) {\n        return false;\n      }\n      currentIterator = toArrowRows(arrowReaderIterator.next(), columnsInOrder);\n    }\n\n    return currentIterator.hasNext();\n  }\n\n  @Override\n  public InternalRow next() {\n    return currentIterator.next();\n  }\n\n  private Iterator<InternalRow> toArrowRows(VectorSchemaRoot root, List<String> namesInOrder) {\n    ColumnVector[] columns =\n        namesInOrder.stream()\n            .map(name -> root.getVector(name))\n            .map(\n                vector ->\n                    ArrowSchemaConverter.newArrowSchemaConverter(\n                        vector, userProvidedFieldMap.get(vector.getName())))\n            .collect(Collectors.toList())\n            .toArray(new ColumnVector[0]);\n\n    ColumnarBatch batch = new ColumnarBatch(columns);\n    batch.setNumRows(root.getRowCount());\n    bigQueryStorageReadRowsTracer.ifPresent(tracer -> tracer.rowsParseFinished(root.getRowCount()));\n    return batch.rowIterator();\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/AvroBinaryIterator.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery;\n\nimport com.google.cloud.bigquery.Schema;\nimport com.google.cloud.bigquery.connector.common.BigQueryConnectorException;\nimport com.google.cloud.bigquery.connector.common.BigQueryStorageReadRowsTracer;\nimport com.google.cloud.bigquery.connector.common.DecompressReadRowsResponse;\nimport com.google.cloud.bigquery.storage.v1.ReadRowsResponse;\nimport com.google.cloud.bigquery.storage.v1.ReadSession.TableReadOptions.ResponseCompressionCodec;\nimport java.io.IOException;\nimport java.io.UncheckedIOException;\nimport java.util.Iterator;\nimport java.util.List;\nimport java.util.Optional;\nimport org.apache.avro.generic.GenericDatumReader;\nimport org.apache.avro.generic.GenericRecord;\nimport org.apache.avro.io.BinaryDecoder;\nimport org.apache.avro.io.DecoderFactory;\nimport org.apache.spark.sql.catalyst.InternalRow;\nimport org.apache.spark.sql.types.StructType;\nimport org.slf4j.Logger;\nimport org.slf4j.LoggerFactory;\n\npublic class AvroBinaryIterator implements Iterator<InternalRow> {\n\n  private static final Logger log = LoggerFactory.getLogger(AvroBinaryIterator.class);\n  private final Optional<BigQueryStorageReadRowsTracer> bigQueryStorageReadRowsTracer;\n  private long numberOfRowsParsed = 0;\n  GenericDatumReader reader;\n  List<String> columnsInOrder;\n  BinaryDecoder in;\n  Schema bqSchema;\n  Optional<StructType> userProvidedSchema;\n\n  private final SchemaConverters schemaConverters;\n\n  /**\n   * An iterator for scanning over rows serialized in Avro format\n   *\n   * @param bqSchema Schema of underlying BigQuery source\n   * @param columnsInOrder Sequence of columns in the schema\n   * @param schema Schema in avro format\n   * @param rowsInBytes Rows serialized in binary format for Avro\n   */\n  public AvroBinaryIterator(\n      Schema bqSchema,\n      List<String> columnsInOrder,\n      org.apache.avro.Schema schema,\n      ReadRowsResponse response,\n      Optional<StructType> userProvidedSchema,\n      Optional<BigQueryStorageReadRowsTracer> bigQueryStorageReadRowsTracer,\n      SchemaConvertersConfiguration schemaConvertersConfiguration,\n      ResponseCompressionCodec responseCompressionCodec) {\n    reader = new GenericDatumReader<GenericRecord>(schema);\n    this.bqSchema = bqSchema;\n    this.columnsInOrder = columnsInOrder;\n    try {\n      in =\n          new DecoderFactory()\n              .binaryDecoder(\n                  DecompressReadRowsResponse.decompressAvroRecordBatch(\n                      response, responseCompressionCodec),\n                  null);\n    } catch (IOException e) {\n      throw new BigQueryConnectorException(\n          \"Failed to decode Avro binary for a ReadRowsResponse\", e);\n    }\n    this.userProvidedSchema = userProvidedSchema;\n    this.bigQueryStorageReadRowsTracer = bigQueryStorageReadRowsTracer;\n    this.schemaConverters = SchemaConverters.from(schemaConvertersConfiguration);\n  }\n\n  @Override\n  public boolean hasNext() {\n    try {\n      // Avro iterator is used in both V1 and V2\n      if (bigQueryStorageReadRowsTracer.isPresent() && in.isEnd()) {\n        // Avro parsing is done row by row as opposed to Arrow where whole batch is processed once.\n        // Due to this, row parse time could potentially include some application time.\n        // One way to address this is to update tracer interface to support recording per row\n        // parsing time, along with batch mode.\n        bigQueryStorageReadRowsTracer.get().rowsParseFinished(numberOfRowsParsed);\n      }\n      return !in.isEnd();\n    } catch (IOException e) {\n      throw new UncheckedIOException(e);\n    }\n  }\n\n  @Override\n  public InternalRow next() {\n    try {\n      numberOfRowsParsed++;\n      return schemaConverters.convertToInternalRow(\n          bqSchema, columnsInOrder, (GenericRecord) reader.read(null, in), userProvidedSchema);\n    } catch (IOException e) {\n      throw new UncheckedIOException(e);\n    }\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/BigQueryConnectorUtils.java",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery;\n\nimport org.apache.spark.sql.SparkSession;\nimport org.slf4j.Logger;\nimport org.slf4j.LoggerFactory;\n\npublic class BigQueryConnectorUtils {\n\n  private static Logger logger = LoggerFactory.getLogger(BigQueryConnectorUtils.class);\n\n  private BigQueryConnectorUtils() {}\n\n  public static void enablePushdownSession(SparkSession spark) {\n    logger.warn(\n        \"Full query pushdown is no longer supported. Column projection and row filtering (predicate pushdown) are supported like before.\");\n  }\n\n  public static void disablePushdownSession(SparkSession spark) {\n    // no op;\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/BigQueryRelation.java",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\npackage com.google.cloud.spark.bigquery;\n\nimport com.google.cloud.bigquery.TableId;\nimport com.google.cloud.bigquery.TableInfo;\nimport com.google.cloud.bigquery.connector.common.BigQueryUtil;\nimport org.apache.spark.sql.SQLContext;\nimport org.apache.spark.sql.sources.BaseRelation;\nimport org.apache.spark.sql.types.StructType;\n\npublic class BigQueryRelation extends BaseRelation {\n\n  private final SparkBigQueryConfig options;\n  private final TableInfo table;\n  private final SQLContext sqlContext;\n  private final TableId tableId;\n  private final String tableName;\n\n  public BigQueryRelation(SparkBigQueryConfig options, TableInfo table, SQLContext sqlContext) {\n    this.options = options;\n    this.table = table;\n    this.sqlContext = sqlContext;\n    this.tableId = table.getTableId();\n    this.tableName = BigQueryUtil.friendlyTableName(tableId);\n  }\n\n  @Override\n  public SQLContext sqlContext() {\n    return this.sqlContext;\n  }\n\n  @Override\n  public StructType schema() {\n    SchemaConverters sc = SchemaConverters.from(SchemaConvertersConfiguration.from(options));\n    return options.getSchema().orElse(sc.toSpark(sc.getSchemaWithPseudoColumns(table)));\n  }\n\n  public TableId getTableId() {\n    return tableId;\n  }\n\n  public String getTableName() {\n    return tableName;\n  }\n\n  // Should be used for logging purposes only, not for any internal use!\n  protected String getTableNameForLogging() {\n    return options\n        .getQuery()\n        .map(\n            query ->\n                tableName\n                    + \" created from \\\"\"\n                    + BigQueryUtil.prepareQueryForLog(query, /* maxLength */ 50)\n                    + \"\\\"\")\n        .orElse(BigQueryUtil.friendlyTableName(options.getTableId()));\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/BigQueryRelationProviderBase.java",
    "content": "/*\n * Copyright 2025 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery;\n\nimport com.google.cloud.bigquery.TableDefinition;\nimport com.google.cloud.bigquery.TableInfo;\nimport com.google.cloud.bigquery.connector.common.BigQueryClient;\nimport com.google.cloud.bigquery.connector.common.BigQueryClientFactory;\nimport com.google.cloud.bigquery.connector.common.BigQueryUtil;\nimport com.google.cloud.bigquery.connector.common.LoggingBigQueryTracerFactory;\nimport com.google.cloud.spark.bigquery.direct.DirectBigQueryRelation;\nimport com.google.cloud.spark.bigquery.write.CreatableRelationProviderHelper;\nimport com.google.common.collect.ImmutableMap;\nimport com.google.inject.Injector;\nimport java.util.List;\nimport java.util.Map;\nimport java.util.Optional;\nimport java.util.function.Supplier;\nimport org.apache.spark.sql.Dataset;\nimport org.apache.spark.sql.Row;\nimport org.apache.spark.sql.SQLContext;\nimport org.apache.spark.sql.SaveMode;\nimport org.apache.spark.sql.execution.streaming.Sink;\nimport org.apache.spark.sql.sources.BaseRelation;\nimport org.apache.spark.sql.sources.DataSourceRegister;\nimport org.apache.spark.sql.streaming.OutputMode;\nimport org.apache.spark.sql.types.StructType;\n\npublic class BigQueryRelationProviderBase implements DataSourceRegister {\n\n  private final Supplier<GuiceInjectorCreator> getGuiceInjectorCreator;\n\n  public BigQueryRelationProviderBase(Supplier<GuiceInjectorCreator> getGuiceInjectorCreator) {\n    this.getGuiceInjectorCreator = getGuiceInjectorCreator;\n    BigQueryUtilScala.validateScalaVersionCompatibility();\n  }\n\n  public BigQueryRelationProviderBase() {\n    this(() -> new GuiceInjectorCreator() {}); // Default creator\n  }\n\n  public BaseRelation createRelation(SQLContext sqlContext, Map<String, String> parameters) {\n    return createRelationInternal(sqlContext, parameters, Optional.empty());\n  }\n\n  public BaseRelation createRelation(\n      SQLContext sqlContext, Map<String, String> parameters, StructType schema) {\n    return createRelationInternal(sqlContext, parameters, Optional.of(schema));\n  }\n\n  public Sink createSink(\n      SQLContext sqlContext,\n      Map<String, String> parameters,\n      List<String> partitionColumns, // Scala Seq\n      OutputMode outputMode) {\n    Injector injector =\n        getGuiceInjectorCreator.get().createGuiceInjector(sqlContext, parameters, Optional.empty());\n    SparkBigQueryConfig opts = injector.getInstance(SparkBigQueryConfig.class);\n    BigQueryClient bigQueryClient = injector.getInstance(BigQueryClient.class);\n    return new BigQueryStreamingSink(\n        sqlContext, parameters, partitionColumns, outputMode, opts, bigQueryClient);\n  }\n\n  protected BigQueryRelation createRelationInternal(\n      SQLContext sqlContext, Map<String, String> parameters, Optional<StructType> schema) {\n    Injector injector =\n        getGuiceInjectorCreator.get().createGuiceInjector(sqlContext, parameters, schema);\n    SparkBigQueryConfig opts = injector.getInstance(SparkBigQueryConfig.class);\n    BigQueryClient bigQueryClient = injector.getInstance(BigQueryClient.class);\n    TableInfo tableInfo = bigQueryClient.getReadTable(opts.toReadTableOptions());\n    String tableName = BigQueryUtil.friendlyTableName(opts.getTableId());\n    BigQueryClientFactory bigQueryReadClientFactory =\n        injector.getInstance(BigQueryClientFactory.class);\n    LoggingBigQueryTracerFactory bigQueryTracerFactory =\n        injector.getInstance(LoggingBigQueryTracerFactory.class);\n\n    TableInfo table =\n        Optional.ofNullable(tableInfo)\n            .orElseThrow(() -> new RuntimeException(\"Table \" + tableName + \" not found\"));\n\n    TableDefinition.Type tableType = table.getDefinition().getType();\n\n    if (tableType == TableDefinition.Type.TABLE\n        || tableType == TableDefinition.Type.EXTERNAL\n        || tableType == TableDefinition.Type.SNAPSHOT) {\n      return new DirectBigQueryRelation(\n          opts,\n          table,\n          bigQueryClient,\n          bigQueryReadClientFactory,\n          bigQueryTracerFactory,\n          sqlContext);\n    } else if (tableType == TableDefinition.Type.VIEW\n        || tableType == TableDefinition.Type.MATERIALIZED_VIEW) {\n      if (opts.isViewsEnabled()) {\n        return new DirectBigQueryRelation(\n            opts,\n            table,\n            bigQueryClient,\n            bigQueryReadClientFactory,\n            bigQueryTracerFactory,\n            sqlContext);\n      } else {\n        throw new RuntimeException(\n            String.format(\n                \"Views were not enabled. You can enable views by setting '%s' to true. \"\n                    + \"Notice additional cost may occur.\",\n                SparkBigQueryConfig.VIEWS_ENABLED_OPTION));\n      }\n    } else {\n      throw new UnsupportedOperationException(\n          \"The type of table \" + tableName + \" is currently not supported: \" + tableType);\n    }\n  }\n\n  public BaseRelation createRelation(\n      SQLContext sqlContext, SaveMode mode, Map<String, String> parameters, Dataset<Row> data) {\n    ImmutableMap<String, String> customDefaults = ImmutableMap.of();\n    return new CreatableRelationProviderHelper()\n        .createRelation(sqlContext, mode, parameters, data, customDefaults);\n  }\n\n  @Override\n  public String shortName() {\n    return \"bigquery\";\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/BigQueryStreamWriter.java",
    "content": "/*\n * Copyright 2025 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery;\n\nimport com.google.cloud.bigquery.TableInfo;\nimport com.google.cloud.bigquery.connector.common.BigQueryClient;\nimport com.google.cloud.spark.bigquery.write.BigQueryWriteHelper;\nimport com.google.common.collect.Streams;\nimport java.util.Optional;\nimport java.util.ServiceLoader;\nimport org.apache.spark.rdd.RDD;\nimport org.apache.spark.sql.Dataset;\nimport org.apache.spark.sql.Row;\nimport org.apache.spark.sql.SQLContext;\nimport org.apache.spark.sql.SaveMode;\nimport org.apache.spark.sql.streaming.OutputMode;\nimport org.apache.spark.sql.types.StructType;\nimport org.slf4j.Logger;\nimport org.slf4j.LoggerFactory;\n\npublic final class BigQueryStreamWriter {\n\n  private static final Logger log = LoggerFactory.getLogger(BigQueryStreamWriter.class);\n\n  private BigQueryStreamWriter() {}\n\n  /**\n   * Convert streaming dataframe to fixed dataframe by Getting partitioned RDD and mapping to Row\n   * dataframe\n   *\n   * @param data Streaming dataframe\n   * @param sqlContext Spark SQLContext\n   * @param opts Spark BigQuery Options\n   */\n  public static void writeBatch(\n      Dataset<Row> data,\n      SQLContext sqlContext,\n      OutputMode outputMode,\n      SparkBigQueryConfig opts,\n      BigQueryClient bigQueryClient) {\n    StructType schema = data.schema();\n    String sparkVersion = sqlContext.sparkSession().version();\n\n    // Assuming DataFrameToRDDConverter.convertToRDD returns RDD<Row>\n    // The original Scala code uses a polymorphic dispatch.\n    // In Java, this might involve an explicit cast or a generic type.\n    RDD<Row> rowRdd = dataFrameToRDDConverterFactory(sparkVersion).convertToRDD(data);\n\n    // Create fixed dataframe\n    Dataset<Row> dataFrame = sqlContext.createDataFrame(rowRdd, schema);\n    TableInfo table =\n        bigQueryClient.getTable(opts.getTableId()); // returns Table, not Optional<Table>\n    SaveMode saveMode = getSaveMode(outputMode);\n\n    BigQueryWriteHelper helper =\n        new BigQueryWriteHelper(\n            bigQueryClient, sqlContext, saveMode, opts, dataFrame, Optional.ofNullable(table));\n    helper.writeDataFrameToBigQuery();\n  }\n\n  /**\n   * Convert Output mode to save mode Complete => Truncate Append => Append (Default) Update => Not\n   * yet supported\n   *\n   * @param outputMode\n   * @return SaveMode\n   * @throws UnsupportedOperationException\n   */\n  private static SaveMode getSaveMode(OutputMode outputMode) {\n    if (outputMode.equals(OutputMode.Complete())) { // Use .equals() for object comparison\n      return SaveMode.Overwrite;\n    } else if (outputMode.equals(OutputMode.Update())) {\n      throw new UnsupportedOperationException(\"Updates are not yet supported\");\n    } else { // Append or other modes\n      return SaveMode.Append;\n    }\n  }\n\n  public static DataFrameToRDDConverter dataFrameToRDDConverterFactory(String sparkVersion) {\n    ServiceLoader<DataFrameToRDDConverter> serviceLoader =\n        ServiceLoader.load(DataFrameToRDDConverter.class);\n    return Streams.stream(serviceLoader.iterator())\n        .filter(converter -> converter.supports(sparkVersion))\n        .findFirst()\n        .orElseThrow(\n            () ->\n                new IllegalStateException(\n                    \"Could not find an implementation of \"\n                        + DataFrameToRDDConverter.class.getCanonicalName()));\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/BigQueryStreamingSink.java",
    "content": "/*\n * Copyright 2025 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery;\n\nimport com.google.cloud.bigquery.connector.common.BigQueryClient;\nimport java.util.List;\nimport java.util.Map;\nimport org.apache.spark.sql.Dataset;\nimport org.apache.spark.sql.Row;\nimport org.apache.spark.sql.SQLContext;\nimport org.apache.spark.sql.execution.streaming.Sink;\nimport org.apache.spark.sql.streaming.OutputMode;\nimport org.slf4j.Logger;\nimport org.slf4j.LoggerFactory;\n\n// Note: Scala case classes have auto-generated equals, hashCode, toString, and constructor.\n// For Java, you'd typically use a regular class and implement these if needed, or use records (Java\n// 14+).\npublic class BigQueryStreamingSink implements Sink {\n\n  private static final Logger log = LoggerFactory.getLogger(BigQueryStreamingSink.class);\n\n  private final SQLContext sqlContext;\n  private final Map<String, String> parameters;\n  private final List<String> partitionColumns; // Changed from Seq<String>\n  private final OutputMode outputMode;\n  private final SparkBigQueryConfig opts;\n  private final BigQueryClient bigQueryClient;\n\n  private volatile long latestBatchId = -1L;\n\n  public BigQueryStreamingSink(\n      SQLContext sqlContext,\n      Map<String, String> parameters,\n      List<String> partitionColumns, // Changed from Seq<String>\n      OutputMode outputMode,\n      SparkBigQueryConfig opts,\n      BigQueryClient bigQueryClient) {\n    this.sqlContext = sqlContext;\n    this.parameters = parameters;\n    this.partitionColumns = partitionColumns;\n    this.outputMode = outputMode;\n    this.opts = opts;\n    this.bigQueryClient = bigQueryClient;\n  }\n\n  // The original Scala addBatch is not explicitly throwing IOException,\n  // but Sink.addBatch might allow it.\n  // In Java, if an overridden method in an interface doesn't declare an exception,\n  // the overriding method cannot declare a checked exception.\n  // Sink.addBatch in Spark does not declare IOException.\n  @Override\n  public void addBatch(long batchId, Dataset<Row> data) {\n    if (batchId <= latestBatchId) {\n      log.warn(\"Skipping as already committed batch \" + batchId);\n    } else {\n      log.debug(\"addBatch(\" + batchId + \")\");\n      // Assuming BigQueryStreamWriter.writeBatch doesn't throw checked exceptions\n      // or they are handled internally/converted to RuntimeException\n      BigQueryStreamWriter.writeBatch(data, sqlContext, outputMode, opts, bigQueryClient);\n      latestBatchId = batchId;\n    }\n  }\n\n  // Getters if needed for the fields (like in Scala case classes)\n  public SQLContext getSqlContext() {\n    return sqlContext;\n  }\n\n  public Map<String, String> getParameters() {\n    return parameters;\n  }\n\n  public List<String> getPartitionColumns() {\n    return partitionColumns;\n  }\n\n  public OutputMode getOutputMode() {\n    return outputMode;\n  }\n\n  public SparkBigQueryConfig getOpts() {\n    return opts;\n  }\n\n  public BigQueryClient getBigQueryClient() {\n    return bigQueryClient;\n  }\n\n  public long getLatestBatchId() {\n    return latestBatchId;\n  }\n\n  // If this class were to be used in contexts requiring equals/hashCode (e.g., collections):\n  @Override\n  public boolean equals(Object o) {\n    // Basic implementation, needs to be more robust for a real case class equivalent\n    if (this == o) return true;\n    if (o == null || getClass() != o.getClass()) return false;\n    BigQueryStreamingSink that = (BigQueryStreamingSink) o;\n    return latestBatchId == that.latestBatchId\n        && java.util.Objects.equals(sqlContext, that.sqlContext)\n        && java.util.Objects.equals(parameters, that.parameters)\n        && java.util.Objects.equals(partitionColumns, that.partitionColumns)\n        && java.util.Objects.equals(outputMode, that.outputMode)\n        && java.util.Objects.equals(opts, that.opts)\n        && java.util.Objects.equals(bigQueryClient, that.bigQueryClient);\n  }\n\n  @Override\n  public int hashCode() {\n    return java.util.Objects.hash(\n        sqlContext, parameters, partitionColumns, outputMode, opts, bigQueryClient, latestBatchId);\n  }\n\n  @Override\n  public String toString() {\n    return \"BigQueryStreamingSink(\"\n        + \"sqlContext=\"\n        + sqlContext\n        + \", parameters=\"\n        + parameters\n        + \", partitionColumns=\"\n        + partitionColumns\n        + \", outputMode=\"\n        + outputMode\n        + \", opts=\"\n        + opts\n        + \", bigQueryClient=\"\n        + bigQueryClient\n        + \", latestBatchId=\"\n        + latestBatchId\n        + ')';\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/BigQueryUtilScala.java",
    "content": "/*\n * Copyright 2025 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery;\n\nimport java.io.InputStream;\nimport java.util.Optional;\nimport java.util.Properties;\n\n/**\n * Static helpers for working with BigQuery, relevant only to the Scala code, now translated for\n * Java usage where applicable.\n */\npublic final class BigQueryUtilScala { // Renamed from BigQueryUtilScalaHelper to match original\n\n  private BigQueryUtilScala() {} // Private constructor for utility class\n\n  // validating that the connector's scala version and the runtime's scala\n  // version are the same\n  public static void validateScalaVersionCompatibility() {\n    // In Java, this check might be different or rely on other mechanisms\n    // if the primary concern is Spark's Scala binary compatibility.\n    // For a direct translation of the Scala logic:\n    String runtimeScalaVersion;\n    try {\n      // Attempt to get Scala version from properties if available in a pure Java context.\n      // This is tricky as `scala.util.Properties.versionNumberString()` is Scala-specific.\n      // If running in a Spark environment, SparkContext might provide Scala version.\n      // For a standalone Java library, this check might be omitted or re-thought.\n      // As a placeholder, we'll assume it can be fetched or is less critical\n      // when this specific method is called from Java.\n      // If strictly needed, one might try to load Scala library classes dynamically.\n      Class<?> scalaPropsClass = Class.forName(\"scala.util.Properties$\");\n      Object scalaPropsModule = scalaPropsClass.getField(\"MODULE$\").get(null);\n      runtimeScalaVersion =\n          (String) scalaPropsClass.getMethod(\"versionNumberString\").invoke(scalaPropsModule);\n      runtimeScalaVersion = trimVersion(runtimeScalaVersion);\n    } catch (Exception e) {\n      // Could not determine runtime Scala version, or Scala libraries not present.\n      // Depending on requirements, either log a warning, throw, or proceed.\n      // For this translation, we'll indicate that it couldn't be determined.\n      System.err.println(\n          \"Warning: Could not determine runtime Scala version for compatibility check from Java.\");\n      // If this check is critical, the application might need to ensure Scala libraries are on the\n      // classpath\n      // or handle this situation more gracefully.\n      // For now, let's not throw an error to allow Java code to proceed.\n      // This part is inherently difficult to translate perfectly without Scala runtime.\n      return; // Or handle as an error\n    }\n\n    Properties buildProperties = new Properties();\n    try (InputStream stream =\n        BigQueryUtilScala.class.getResourceAsStream(\"/spark-bigquery-connector.properties\")) {\n      if (stream == null) {\n        throw new IllegalStateException(\"Could not load spark-bigquery-connector.properties\");\n      }\n      buildProperties.load(stream);\n    } catch (java.io.IOException e) {\n      throw new IllegalStateException(\"Failed to load spark-bigquery-connector.properties\", e);\n    }\n\n    String connectorScalaVersion = buildProperties.getProperty(\"scala.binary.version\");\n\n    if (connectorScalaVersion == null) {\n      throw new IllegalStateException(\n          \"Property 'scala.binary.version' not found in spark-bigquery-connector.properties\");\n    }\n\n    if (runtimeScalaVersion != null && !runtimeScalaVersion.equals(connectorScalaVersion)) {\n      throw new IllegalStateException(\n          String.format(\n                  \"This connector was made for Scala %s, it was not meant to run on Scala %s\",\n                  connectorScalaVersion, runtimeScalaVersion)\n              .replace('\\n', ' '));\n    }\n  }\n\n  private static String trimVersion(String version) {\n    return version.substring(0, version.lastIndexOf('.'));\n  }\n\n  public static <T> Optional<T> toOption(java.util.Optional<T> javaOptional) {\n    // This method seems to convert a Java Optional to a Java Optional,\n    // which is redundant. In Scala, it converted Java Optional to Scala Option.\n    // If the intent is to ensure it's a Java Optional, the input is already that.\n    // Perhaps it was meant for a different conversion in the Scala context.\n    // For a direct Java equivalent of the Scala `toOption`, it would take a Java Optional\n    // and return a Java Optional, effectively being an identity function for the type.\n    return javaOptional;\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/DataFrameToRDDConverter.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery;\n\nimport org.apache.spark.rdd.RDD;\nimport org.apache.spark.sql.Dataset;\nimport org.apache.spark.sql.Row;\n\npublic interface DataFrameToRDDConverter {\n  RDD<Row> convertToRDD(Dataset<Row> data);\n\n  boolean supports(String sparkVersion);\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/DataSourceVersion.java",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery;\n\nimport java.util.Map;\n\n/**\n * A single place to put data source implementations customizations, in order to avoid a general\n * `if(dataSource==v1) {...} else {...}` throughout the code.\n */\npublic enum DataSourceVersion {\n  V1,\n  V2;\n\n  public void updateOptionsMap(Map<String, String> optionsMap) {\n    // these updates are v2 only\n    if (this == V2) {\n      // no need for the spark-avro module, we have an internal copy of avro\n      optionsMap.put(SparkBigQueryConfig.VALIDATE_SPARK_AVRO_PARAM.toLowerCase(), \"false\");\n      // DataSource V2 implementation uses Java only\n      optionsMap.put(\n          SparkBigQueryConfig.INTERMEDIATE_FORMAT_OPTION.toLowerCase(),\n          SparkBigQueryConfig.IntermediateFormat.AVRO.toString());\n    }\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/GuiceInjectorCreator.java",
    "content": "/*\n * Copyright 2025 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery;\n\nimport com.google.cloud.bigquery.connector.common.BigQueryClientModule;\nimport com.google.common.collect.ImmutableMap;\nimport com.google.inject.Guice;\nimport com.google.inject.Injector;\nimport java.util.Map;\nimport java.util.Optional;\nimport org.apache.spark.sql.SQLContext;\nimport org.apache.spark.sql.types.StructType;\n\n// Interface for GuiceInjectorCreator\ninterface GuiceInjectorCreator {\n  default Injector createGuiceInjector(\n      SQLContext sqlContext, Map<String, String> parameters, Optional<StructType> schema) {\n    org.apache.spark.sql.SparkSession spark = sqlContext.sparkSession();\n    return Guice.createInjector(\n        new BigQueryClientModule(),\n        new SparkBigQueryConnectorModule(\n            spark,\n            parameters,\n            ImmutableMap.of(), // Assuming empty java.util.Map for the third param\n            schema,\n            DataSourceVersion.V1,\n            true, // tableIsMandatory\n            java.util.Optional.empty()));\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/InjectorBuilder.java",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery;\n\nimport com.google.cloud.bigquery.connector.common.BigQueryClientModule;\nimport com.google.common.collect.ImmutableMap;\nimport com.google.inject.Guice;\nimport com.google.inject.Injector;\nimport java.util.Map;\nimport java.util.Optional;\nimport org.apache.spark.sql.SparkSession;\nimport org.apache.spark.sql.types.StructType;\n\npublic class InjectorBuilder {\n\n  private SparkSession spark = SparkSession.active();\n  private Optional<StructType> schema = Optional.empty();\n  private Map<String, String> options = ImmutableMap.<String, String>of();\n  private Map<String, String> customDefaults = ImmutableMap.<String, String>of();\n  private boolean tableIsMandatory = true;\n  private DataSourceVersion dataSourceVersion = DataSourceVersion.V2;\n  private Optional<SparkBigQueryConfig> config = Optional.empty();\n\n  public InjectorBuilder withSpark(SparkSession spark) {\n    this.spark = spark;\n    return this;\n  }\n\n  public InjectorBuilder withSchema(StructType schema) {\n    this.schema = Optional.ofNullable(schema);\n    return this;\n  }\n\n  public InjectorBuilder withOptions(Map<String, String> options) {\n    this.options = ImmutableMap.copyOf(options);\n    return this;\n  }\n\n  public InjectorBuilder withTableIsMandatory(boolean tableIsMandatory) {\n    this.tableIsMandatory = tableIsMandatory;\n    return this;\n  }\n\n  public InjectorBuilder withDataSourceVersion(DataSourceVersion dataSourceVersion) {\n    this.dataSourceVersion = dataSourceVersion;\n    return this;\n  }\n\n  public InjectorBuilder withCustomDefaults(Map<String, String> customDefaults) {\n    this.customDefaults = customDefaults;\n    return this;\n  }\n\n  public InjectorBuilder withConfig(SparkBigQueryConfig config) {\n    this.config = Optional.of(config);\n    return this;\n  }\n\n  public Injector build() {\n    return Guice.createInjector(\n        new BigQueryClientModule(),\n        new SparkBigQueryConnectorModule(\n            spark, options, customDefaults, schema, dataSourceVersion, tableIsMandatory, config));\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/InjectorFactory.java",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery;\n\nimport com.google.cloud.bigquery.connector.common.BigQueryClientModule;\nimport com.google.common.collect.ImmutableMap;\nimport com.google.inject.Guice;\nimport com.google.inject.Injector;\nimport java.util.Map;\nimport java.util.Optional;\nimport org.apache.spark.sql.SparkSession;\nimport org.apache.spark.sql.types.StructType;\n\npublic class InjectorFactory {\n  private InjectorFactory() {}\n\n  public static Injector createInjector(\n      StructType schema, Map<String, String> options, boolean tableIsMandatory) {\n    SparkSession spark = SparkSession.active();\n    return createInjector(spark, schema, options, tableIsMandatory);\n  }\n\n  public static Injector createInjector(\n      SparkSession spark,\n      StructType schema,\n      Map<String, String> options,\n      boolean tableIsMandatory) {\n    Map<String, String> customDefaults = ImmutableMap.of();\n    return Guice.createInjector(\n        new BigQueryClientModule(),\n        new SparkBigQueryConnectorModule(\n            spark,\n            options,\n            customDefaults,\n            Optional.ofNullable(schema),\n            DataSourceVersion.V2,\n            tableIsMandatory,\n            Optional.empty()));\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/InternalRowIterator.java",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\npackage com.google.cloud.spark.bigquery;\n\nimport com.google.cloud.bigquery.connector.common.BigQueryStorageReadRowsTracer;\nimport com.google.cloud.bigquery.connector.common.ReadRowsHelper;\nimport com.google.cloud.bigquery.storage.v1.ReadRowsResponse;\nimport com.google.common.collect.ImmutableList;\nimport java.util.Iterator;\nimport org.apache.spark.sql.catalyst.InternalRow;\nimport org.slf4j.Logger;\nimport org.slf4j.LoggerFactory;\n\n/** Iterator on InternalRow that wraps the conversion from Avro/Arrow schema to InternalRow */\npublic class InternalRowIterator implements Iterator<InternalRow> {\n  private Iterator<ReadRowsResponse> readRowsResponses;\n  private ReadRowsResponseToInternalRowIteratorConverter converter;\n  private ReadRowsHelper readRowsHelper;\n  private final BigQueryStorageReadRowsTracer bigQueryStorageReadRowsTracer;\n  private Iterator<InternalRow> rows = ImmutableList.<InternalRow>of().iterator();\n  private static final Logger log = LoggerFactory.getLogger(InternalRowIterator.class);\n\n  public InternalRowIterator(\n      Iterator<ReadRowsResponse> readRowsResponses,\n      ReadRowsResponseToInternalRowIteratorConverter converter,\n      ReadRowsHelper readRowsHelper,\n      BigQueryStorageReadRowsTracer bigQueryStorageReadRowsTracer) {\n    this.readRowsResponses = readRowsResponses;\n    this.converter = converter;\n    this.readRowsHelper = readRowsHelper;\n    this.bigQueryStorageReadRowsTracer = bigQueryStorageReadRowsTracer;\n  }\n\n  @Override\n  public boolean hasNext() {\n    while (!rows.hasNext()) {\n      bigQueryStorageReadRowsTracer.readRowsResponseRequested();\n      if (!readRowsResponses.hasNext()) {\n        try {\n          bigQueryStorageReadRowsTracer.finished();\n        } catch (Exception e) {\n          log.debug(\"Failure finishing tracer. stream:{} exception:{}\", readRowsHelper, e);\n        } finally {\n          readRowsHelper.close();\n        }\n        return false;\n      }\n      ReadRowsResponse readRowsResponse = readRowsResponses.next();\n      bigQueryStorageReadRowsTracer.readRowsResponseObtained(\n          readRowsResponse == null ? 0 : converter.getBatchSizeInBytes(readRowsResponse));\n      bigQueryStorageReadRowsTracer.nextBatchNeeded();\n      bigQueryStorageReadRowsTracer.rowsParseStarted();\n      rows = converter.convert(readRowsResponse);\n    }\n\n    return true;\n  }\n\n  @Override\n  public InternalRow next() {\n    return rows.next();\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/PartitionOverwriteMode.java",
    "content": "package com.google.cloud.spark.bigquery;\n\npublic enum PartitionOverwriteMode {\n  STATIC,\n  DYNAMIC\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/ProtobufUtils.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery;\n\nimport com.google.cloud.bigquery.Field;\nimport com.google.cloud.bigquery.FieldList;\nimport com.google.cloud.bigquery.LegacySQLTypeName;\nimport com.google.cloud.bigquery.Schema;\nimport com.google.cloud.bigquery.storage.v1.ProtoRows;\nimport com.google.cloud.bigquery.storage.v1.ProtoSchema;\nimport com.google.cloud.bigquery.storage.v1.ProtoSchemaConverter;\nimport com.google.common.annotations.VisibleForTesting;\nimport com.google.common.base.Preconditions;\nimport com.google.common.cache.CacheBuilder;\nimport com.google.common.cache.CacheLoader;\nimport com.google.common.cache.LoadingCache;\nimport com.google.common.collect.ImmutableMap;\nimport com.google.protobuf.DescriptorProtos;\nimport com.google.protobuf.DescriptorProtos.FieldDescriptorProto.Type;\nimport com.google.protobuf.Descriptors;\nimport com.google.protobuf.DynamicMessage;\nimport java.math.BigDecimal;\nimport java.util.ArrayList;\nimport java.util.HashMap;\nimport java.util.List;\nimport java.util.Map;\nimport java.util.Optional;\nimport java.util.concurrent.TimeUnit;\nimport org.apache.spark.sql.Row;\nimport org.apache.spark.sql.SparkSqlUtils;\nimport org.apache.spark.sql.catalyst.InternalRow;\nimport org.apache.spark.sql.catalyst.expressions.GenericInternalRow;\nimport org.apache.spark.sql.catalyst.util.ArrayData;\nimport org.apache.spark.sql.catalyst.util.MapData;\nimport org.apache.spark.sql.types.ArrayType;\nimport org.apache.spark.sql.types.BinaryType;\nimport org.apache.spark.sql.types.BooleanType;\nimport org.apache.spark.sql.types.ByteType;\nimport org.apache.spark.sql.types.DataType;\nimport org.apache.spark.sql.types.DataTypes;\nimport org.apache.spark.sql.types.DateType;\nimport org.apache.spark.sql.types.Decimal;\nimport org.apache.spark.sql.types.DecimalType;\nimport org.apache.spark.sql.types.DoubleType;\nimport org.apache.spark.sql.types.FloatType;\nimport org.apache.spark.sql.types.IntegerType;\nimport org.apache.spark.sql.types.LongType;\nimport org.apache.spark.sql.types.MapType;\nimport org.apache.spark.sql.types.Metadata;\nimport org.apache.spark.sql.types.ShortType;\nimport org.apache.spark.sql.types.StringType;\nimport org.apache.spark.sql.types.StructField;\nimport org.apache.spark.sql.types.StructType;\nimport org.apache.spark.sql.types.TimestampType;\nimport org.jetbrains.annotations.NotNull;\nimport org.slf4j.Logger;\nimport org.slf4j.LoggerFactory;\nimport scala.Function1;\nimport scala.Tuple2;\nimport scala.collection.mutable.IndexedSeq;\n\npublic class ProtobufUtils {\n\n  public static final class ProtobufSchemaFieldCacheEntry {\n    private DataType sparkType;\n    private boolean nullable;\n    private Descriptors.Descriptor nestedTypeDescriptor;\n    private Descriptors.FieldDescriptor fieldDescriptor;\n    private Optional<TypeConverter> typeConverterOptional;\n    private Optional<SupportedCustomDataType> customDataTypeOptional;\n\n    public ProtobufSchemaFieldCacheEntry(\n        DataType sparkType,\n        boolean nullable,\n        Descriptors.Descriptor nestedTypeDescriptor,\n        Descriptors.FieldDescriptor fieldDescriptor,\n        Optional<TypeConverter> typeConverterOptional,\n        Optional<SupportedCustomDataType> customDataTypeOptional) {\n      this.sparkType = sparkType;\n      this.nullable = nullable;\n      this.nestedTypeDescriptor = nestedTypeDescriptor;\n      this.fieldDescriptor = fieldDescriptor;\n      this.typeConverterOptional = typeConverterOptional;\n      this.customDataTypeOptional = customDataTypeOptional;\n    }\n\n    public DataType getSparkType() {\n      return sparkType;\n    }\n\n    public boolean getNullable() {\n      return nullable;\n    }\n\n    public Descriptors.Descriptor getNestedTypeDescriptor() {\n      return nestedTypeDescriptor;\n    }\n\n    public Descriptors.FieldDescriptor getFieldDescriptor() {\n      return fieldDescriptor;\n    }\n\n    public Optional<TypeConverter> getTypeConverterOptional() {\n      return typeConverterOptional;\n    }\n\n    public Optional<SupportedCustomDataType> getCustomDataTypeOptional() {\n      return customDataTypeOptional;\n    }\n  }\n\n  private static ProtobufSchemaFieldCacheEntry computeProtobufSchemaFieldEntry(\n      StructType schema, Descriptors.Descriptor schemaDescriptor, int fieldIndex) {\n    StructField sparkField = schema.fields()[fieldIndex];\n    int protoFieldNumber = fieldIndex + 1;\n    return new ProtobufSchemaFieldCacheEntry(\n        sparkField.dataType(),\n        sparkField.nullable(),\n        schemaDescriptor.findNestedTypeByName(\n            ProtobufUtils.RESERVED_NESTED_TYPE_NAME + (protoFieldNumber)),\n        schemaDescriptor.findFieldByNumber(protoFieldNumber),\n        SparkBigQueryUtil.getTypeConverterStream()\n            .filter(tc -> tc.supportsSparkType(sparkField.dataType()))\n            .findFirst(),\n        SupportedCustomDataType.of(sparkField.dataType()));\n  }\n\n  static final Logger logger = LoggerFactory.getLogger(ProtobufUtils.class);\n  // The maximum nesting depth of a BigQuery RECORD:\n  private static final int MAX_BIGQUERY_NESTED_DEPTH = 15;\n  // For every message, a nested type is name \"STRUCT\"+i, where i is the\n  // number of the corresponding field that is of this type in the containing message.\n  private static final String RESERVED_NESTED_TYPE_NAME = \"STRUCT\";\n\n  private static final LoadingCache<MapType, StructType> MAP_TYPE_STRUCT_TYPE_CACHE =\n      CacheBuilder.<MapType, StructType>newBuilder()\n          .maximumSize(10_000) // 10,000 map types should be enough for most applications\n          .expireAfterWrite(24, TimeUnit.HOURS) // Type definition don't really expire\n          .build(\n              new CacheLoader<MapType, StructType>() {\n                @Override\n                public StructType load(MapType key) {\n                  return ProtobufUtils.createMapStructType(key);\n                }\n              });\n\n  private static final ImmutableMap<LegacySQLTypeName, DescriptorProtos.FieldDescriptorProto.Type>\n      BigQueryToProtoType =\n          new ImmutableMap.Builder<LegacySQLTypeName, DescriptorProtos.FieldDescriptorProto.Type>()\n              .put(LegacySQLTypeName.BYTES, DescriptorProtos.FieldDescriptorProto.Type.TYPE_BYTES)\n              .put(LegacySQLTypeName.INTEGER, DescriptorProtos.FieldDescriptorProto.Type.TYPE_INT64)\n              .put(LegacySQLTypeName.BOOLEAN, DescriptorProtos.FieldDescriptorProto.Type.TYPE_BOOL)\n              .put(LegacySQLTypeName.FLOAT, DescriptorProtos.FieldDescriptorProto.Type.TYPE_DOUBLE)\n              .put(\n                  LegacySQLTypeName.NUMERIC, DescriptorProtos.FieldDescriptorProto.Type.TYPE_STRING)\n              .put(\n                  LegacySQLTypeName.BIGNUMERIC,\n                  DescriptorProtos.FieldDescriptorProto.Type.TYPE_STRING)\n              .put(LegacySQLTypeName.STRING, DescriptorProtos.FieldDescriptorProto.Type.TYPE_STRING)\n              .put(LegacySQLTypeName.JSON, DescriptorProtos.FieldDescriptorProto.Type.TYPE_STRING)\n              .put(\n                  LegacySQLTypeName.TIMESTAMP,\n                  DescriptorProtos.FieldDescriptorProto.Type.TYPE_INT64)\n              .put(LegacySQLTypeName.DATE, DescriptorProtos.FieldDescriptorProto.Type.TYPE_INT32)\n              .put(\n                  LegacySQLTypeName.DATETIME, DescriptorProtos.FieldDescriptorProto.Type.TYPE_INT64)\n              .put(\n                  LegacySQLTypeName.GEOGRAPHY,\n                  DescriptorProtos.FieldDescriptorProto.Type.TYPE_BYTES)\n              .build();\n  private static final ImmutableMap<String, DescriptorProtos.FieldDescriptorProto.Type>\n      SparkToProtoType =\n          new ImmutableMap.Builder<String, DescriptorProtos.FieldDescriptorProto.Type>()\n              .put(\n                  DataTypes.BinaryType.json(),\n                  DescriptorProtos.FieldDescriptorProto.Type.TYPE_BYTES)\n              .put(DataTypes.ByteType.json(), DescriptorProtos.FieldDescriptorProto.Type.TYPE_INT64)\n              .put(\n                  DataTypes.ShortType.json(), DescriptorProtos.FieldDescriptorProto.Type.TYPE_INT64)\n              .put(\n                  DataTypes.IntegerType.json(),\n                  DescriptorProtos.FieldDescriptorProto.Type.TYPE_INT64)\n              .put(DataTypes.LongType.json(), DescriptorProtos.FieldDescriptorProto.Type.TYPE_INT64)\n              .put(\n                  DataTypes.BooleanType.json(),\n                  DescriptorProtos.FieldDescriptorProto.Type.TYPE_BOOL)\n              .put(\n                  DataTypes.FloatType.json(),\n                  DescriptorProtos.FieldDescriptorProto.Type.TYPE_DOUBLE)\n              .put(\n                  DataTypes.DoubleType.json(),\n                  DescriptorProtos.FieldDescriptorProto.Type.TYPE_DOUBLE)\n              .put(\n                  SchemaConverters.NUMERIC_SPARK_TYPE.json(),\n                  DescriptorProtos.FieldDescriptorProto.Type.TYPE_STRING)\n              .put(\n                  DataTypes.StringType.json(),\n                  DescriptorProtos.FieldDescriptorProto.Type.TYPE_STRING)\n              .put(\n                  DataTypes.TimestampType.json(),\n                  DescriptorProtos.FieldDescriptorProto.Type.TYPE_INT64)\n              .put(DataTypes.DateType.json(), DescriptorProtos.FieldDescriptorProto.Type.TYPE_INT32)\n              .build();\n  private static final ImmutableMap<Field.Mode, DescriptorProtos.FieldDescriptorProto.Label>\n      BigQueryModeToProtoFieldLabel =\n          new ImmutableMap.Builder<Field.Mode, DescriptorProtos.FieldDescriptorProto.Label>()\n              .put(Field.Mode.NULLABLE, DescriptorProtos.FieldDescriptorProto.Label.LABEL_OPTIONAL)\n              .put(Field.Mode.REPEATED, DescriptorProtos.FieldDescriptorProto.Label.LABEL_REPEATED)\n              .put(Field.Mode.REQUIRED, DescriptorProtos.FieldDescriptorProto.Label.LABEL_REQUIRED)\n              .build();\n\n  /** BigQuery Schema ==> ProtoSchema converter utils: */\n  public static ProtoSchema toProtoSchema(Schema schema) throws IllegalArgumentException {\n    try {\n      Descriptors.Descriptor descriptor = toDescriptor(schema);\n      return ProtoSchemaConverter.convert(descriptor);\n    } catch (Descriptors.DescriptorValidationException e) {\n      throw new IllegalArgumentException(\"Could not build Proto-Schema from BigQuery schema\", e);\n    }\n  }\n\n  public static ProtoSchema toProtoSchema(StructType schema) throws IllegalArgumentException {\n    try {\n      Descriptors.Descriptor descriptor = toDescriptor(schema);\n      return ProtoSchemaConverter.convert(descriptor);\n    } catch (Descriptors.DescriptorValidationException e) {\n      throw new IllegalArgumentException(\"Could not build Proto-Schema from Spark schema\", e);\n    }\n  }\n\n  private static Descriptors.Descriptor toDescriptor(Schema schema)\n      throws Descriptors.DescriptorValidationException {\n    DescriptorProtos.DescriptorProto.Builder descriptorBuilder =\n        DescriptorProtos.DescriptorProto.newBuilder().setName(\"Schema\");\n\n    FieldList fields = schema.getFields();\n\n    int initialDepth = 0;\n    DescriptorProtos.DescriptorProto descriptorProto =\n        buildDescriptorProtoWithFields(descriptorBuilder, fields, initialDepth);\n\n    return createDescriptorFromProto(descriptorProto);\n  }\n\n  private static Descriptors.Descriptor createDescriptorFromProto(\n      DescriptorProtos.DescriptorProto descriptorProto)\n      throws Descriptors.DescriptorValidationException {\n    DescriptorProtos.FileDescriptorProto fileDescriptorProto =\n        DescriptorProtos.FileDescriptorProto.newBuilder().addMessageType(descriptorProto).build();\n\n    Descriptors.Descriptor descriptor =\n        Descriptors.FileDescriptor.buildFrom(\n                fileDescriptorProto, new Descriptors.FileDescriptor[] {})\n            .getMessageTypes()\n            .get(0);\n\n    return descriptor;\n  }\n\n  @VisibleForTesting\n  protected static DescriptorProtos.DescriptorProto buildDescriptorProtoWithFields(\n      DescriptorProtos.DescriptorProto.Builder descriptorBuilder, FieldList fields, int depth) {\n    Preconditions.checkArgument(\n        depth < MAX_BIGQUERY_NESTED_DEPTH,\n        \"Tried to convert a BigQuery schema that exceeded BigQuery maximum nesting depth\");\n    int messageNumber = 1;\n    for (Field field : fields) {\n      String fieldName = field.getName();\n      DescriptorProtos.FieldDescriptorProto.Label fieldLabel = toProtoFieldLabel(field.getMode());\n      FieldList subFields = field.getSubFields();\n\n      if (field.getType() == LegacySQLTypeName.RECORD) {\n        String recordTypeName =\n            RESERVED_NESTED_TYPE_NAME\n                + messageNumber; // TODO: Maintain this as a reserved nested-type name, which no\n        // column can have.\n        DescriptorProtos.DescriptorProto.Builder nestedFieldTypeBuilder =\n            descriptorBuilder.addNestedTypeBuilder();\n        nestedFieldTypeBuilder.setName(recordTypeName);\n        DescriptorProtos.DescriptorProto nestedFieldType =\n            buildDescriptorProtoWithFields(nestedFieldTypeBuilder, subFields, depth + 1);\n\n        descriptorBuilder.addField(\n            createProtoFieldBuilder(fieldName, fieldLabel, messageNumber)\n                .setTypeName(recordTypeName));\n      } else {\n        DescriptorProtos.FieldDescriptorProto.Type fieldType = toProtoFieldType(field.getType());\n        descriptorBuilder.addField(\n            createProtoFieldBuilder(fieldName, fieldLabel, messageNumber, fieldType));\n      }\n      messageNumber++;\n    }\n    return descriptorBuilder.build();\n  }\n\n  private static DescriptorProtos.FieldDescriptorProto.Builder createProtoFieldBuilder(\n      String fieldName, DescriptorProtos.FieldDescriptorProto.Label fieldLabel, int messageNumber) {\n    return DescriptorProtos.FieldDescriptorProto.newBuilder()\n        .setName(fieldName)\n        .setLabel(fieldLabel)\n        .setNumber(messageNumber);\n  }\n\n  @VisibleForTesting\n  protected static DescriptorProtos.FieldDescriptorProto.Builder createProtoFieldBuilder(\n      String fieldName,\n      DescriptorProtos.FieldDescriptorProto.Label fieldLabel,\n      int messageNumber,\n      DescriptorProtos.FieldDescriptorProto.Type fieldType) {\n    return createProtoFieldBuilder(fieldName, fieldLabel, messageNumber).setType(fieldType);\n  }\n\n  private static DescriptorProtos.FieldDescriptorProto.Label toProtoFieldLabel(Field.Mode mode) {\n    return Preconditions.checkNotNull(\n        BigQueryModeToProtoFieldLabel.get(mode),\n        new IllegalArgumentException(\"A BigQuery Field Mode was invalid: \" + mode.name()));\n  }\n\n  // NOTE: annotations for DATETIME and TIMESTAMP objects are currently unsupported for external\n  // users,\n  // but if they become available, it would be advisable to append an annotation to the\n  // protoFieldBuilder\n  // for these and other types.\n  private static DescriptorProtos.FieldDescriptorProto.Type toProtoFieldType(\n      LegacySQLTypeName bqType) {\n    if (LegacySQLTypeName.RECORD.equals(bqType)) {\n      throw new IllegalStateException(\n          \"Program attempted to return an atomic data-type for a RECORD\");\n    }\n    return Preconditions.checkNotNull(\n        BigQueryToProtoType.get(bqType),\n        new IllegalArgumentException(\"Unexpected type: \" + bqType.name()));\n  }\n\n  /**\n   * Spark Row --> ProtoRows converter utils: To be used by the DataWriters facing the BigQuery\n   * Storage Write API\n   */\n  public static ProtoRows toProtoRows(StructType sparkSchema, InternalRow[] rows) {\n    try {\n      Descriptors.Descriptor schemaDescriptor = toDescriptor(sparkSchema);\n      ProtoRows.Builder protoRows = ProtoRows.newBuilder();\n      Map<Integer, ProtobufSchemaFieldCacheEntry> fieldIndexToEntryMap = new HashMap<>();\n      DynamicMessage.Builder messageBuilder = DynamicMessage.newBuilder(schemaDescriptor);\n\n      for (InternalRow row : rows) {\n        DynamicMessage rowMessage =\n            buildSingleRowMessage(\n                sparkSchema,\n                schemaDescriptor,\n                row,\n                Optional.of(fieldIndexToEntryMap),\n                messageBuilder);\n        protoRows.addSerializedRows(rowMessage.toByteString());\n      }\n      return protoRows.build();\n    } catch (Exception e) {\n      throw new RuntimeException(\"Could not convert Internal Rows to Proto Rows.\", e);\n    }\n  }\n\n  public static DynamicMessage buildSingleRowMessage(\n      StructType schema,\n      Descriptors.Descriptor schemaDescriptor,\n      InternalRow row,\n      Optional<Map<Integer, ProtobufSchemaFieldCacheEntry>> fieldIndexToEntryMap,\n      DynamicMessage.Builder messageBuilder) {\n    messageBuilder.clear();\n\n    for (int fieldIndex = 0; fieldIndex < schemaDescriptor.getFields().size(); fieldIndex++) {\n      int fieldIndexCopy = fieldIndex;\n      ProtobufSchemaFieldCacheEntry protobufSchemaFieldEntry =\n          fieldIndexToEntryMap.isPresent()\n              ? fieldIndexToEntryMap\n                  .get()\n                  .computeIfAbsent(\n                      fieldIndexCopy,\n                      k -> {\n                        return computeProtobufSchemaFieldEntry(\n                            schema, schemaDescriptor, fieldIndexCopy);\n                      })\n              : computeProtobufSchemaFieldEntry(schema, schemaDescriptor, fieldIndexCopy);\n      Object sparkValue = row.get(fieldIndex, protobufSchemaFieldEntry.getSparkType());\n      Object protoValue =\n          convertSparkValueToProtoRowValue(\n              protobufSchemaFieldEntry.getSparkType(),\n              sparkValue,\n              protobufSchemaFieldEntry.getNullable(),\n              protobufSchemaFieldEntry.getNestedTypeDescriptor(),\n              protobufSchemaFieldEntry.getTypeConverterOptional(),\n              protobufSchemaFieldEntry.getCustomDataTypeOptional());\n\n      if (protoValue == null) {\n        continue;\n      }\n\n      messageBuilder.setField(protobufSchemaFieldEntry.getFieldDescriptor(), protoValue);\n    }\n\n    return messageBuilder.build();\n  }\n\n  public static Descriptors.Descriptor toDescriptor(StructType schema)\n      throws Descriptors.DescriptorValidationException {\n    DescriptorProtos.DescriptorProto.Builder descriptorBuilder =\n        DescriptorProtos.DescriptorProto.newBuilder().setName(\"Schema\");\n\n    int initialDepth = 0;\n    DescriptorProtos.DescriptorProto descriptorProto =\n        buildDescriptorProtoWithFields(descriptorBuilder, schema.fields(), initialDepth);\n\n    return createDescriptorFromProto(descriptorProto);\n  }\n\n  /*\n  Takes a value in Spark format and converts it into ProtoRows format (to eventually be given to BigQuery).\n   */\n  private static Object convertSparkValueToProtoRowValue(\n      DataType sparkType,\n      Object sparkValue,\n      boolean nullable,\n      Descriptors.Descriptor nestedTypeDescriptor,\n      Optional<TypeConverter> typeConverterOptional,\n      Optional<SupportedCustomDataType> customDataTypeOptional) {\n    if (sparkValue == null) {\n      if (!nullable) {\n        throw new IllegalArgumentException(\"Non-nullable field was null.\");\n      } else {\n        return null;\n      }\n    }\n\n    if (typeConverterOptional.isPresent()) {\n      return typeConverterOptional.get().sparkToProtoValue(sparkValue);\n    }\n\n    // UDT support\n    if (customDataTypeOptional.isPresent()) {\n      sparkType = customDataTypeOptional.map(SupportedCustomDataType::getSqlType).orElse(sparkType);\n      InternalRow internalRow;\n      if (sparkValue instanceof InternalRow) {\n        // Spark 2.4\n        internalRow = (InternalRow) sparkValue;\n      } else {\n        // spark 3.x\n        internalRow = customDataTypeOptional.get().serialize(sparkValue);\n      }\n      return buildSingleRowMessage(\n          (StructType) sparkType,\n          nestedTypeDescriptor,\n          internalRow,\n          /*fieldIndexToEntryMap*/ Optional.empty(),\n          DynamicMessage.newBuilder(nestedTypeDescriptor));\n    }\n\n    if (sparkType instanceof ArrayType) {\n      ArrayType arrayType = (ArrayType) sparkType;\n      DataType elementType = arrayType.elementType();\n      boolean containsNull = arrayType.containsNull();\n      Optional<TypeConverter> typeConverterElementOptional =\n          SparkBigQueryUtil.getTypeConverterStream()\n              .filter(tc -> tc.supportsSparkType(elementType))\n              .findFirst();\n      Optional<SupportedCustomDataType> customDataTypeElementOptional =\n          SupportedCustomDataType.of(elementType);\n      List<Object> protoValue = new ArrayList<>();\n      // having issues to convert WrappedArray to Object[] in Java\n      if (sparkValue instanceof ArrayData) {\n        Object[] sparkArrayData = ((ArrayData) sparkValue).toObjectArray(elementType);\n        for (Object sparkElement : sparkArrayData) {\n          Object converted =\n              convertSparkValueToProtoRowValue(\n                  elementType,\n                  sparkElement,\n                  containsNull,\n                  nestedTypeDescriptor,\n                  typeConverterElementOptional,\n                  customDataTypeElementOptional);\n          if (converted == null) {\n            continue;\n          }\n          protoValue.add(converted);\n        }\n      } else {\n        IndexedSeq<Object> sparkArrayData = (IndexedSeq<Object>) sparkValue;\n        int sparkArrayDataLength = sparkArrayData.length();\n        for (int i = 0; i < sparkArrayDataLength; i++) {\n          Object converted =\n              convertSparkValueToProtoRowValue(\n                  elementType,\n                  sparkArrayData.apply(i),\n                  containsNull,\n                  nestedTypeDescriptor,\n                  typeConverterElementOptional,\n                  customDataTypeElementOptional);\n          if (converted == null) {\n            continue;\n          }\n          protoValue.add(converted);\n        }\n      }\n      return protoValue;\n    }\n\n    if (sparkType instanceof StructType) {\n      InternalRow internalRow = null;\n      if (sparkValue instanceof Row) {\n        internalRow = SparkSqlUtils.getInstance().rowToInternalRow((Row) sparkValue);\n      } else {\n        internalRow = (InternalRow) sparkValue;\n      }\n      return buildSingleRowMessage(\n          (StructType) sparkType,\n          nestedTypeDescriptor,\n          internalRow,\n          /*fieldIndexToEntryMap*/ Optional.empty(),\n          DynamicMessage.newBuilder(nestedTypeDescriptor));\n    }\n\n    if (sparkType instanceof ByteType\n        || sparkType instanceof ShortType\n        || sparkType instanceof IntegerType\n        || sparkType instanceof LongType) {\n      return ((Number) sparkValue).longValue();\n    }\n    if (sparkType instanceof TimestampType) {\n      return SparkBigQueryUtil.sparkTimestampToBigQuery(sparkValue);\n    } // TODO: CalendarInterval\n\n    if (sparkType instanceof DateType) {\n      return SparkBigQueryUtil.sparkDateToBigQuery(sparkValue);\n    }\n\n    if (sparkType instanceof FloatType || sparkType instanceof DoubleType) {\n      return ((Number) sparkValue).doubleValue();\n    }\n\n    if (sparkType instanceof DecimalType) {\n      return convertDecimalToString(sparkValue);\n    }\n\n    if (sparkType instanceof BooleanType) {\n      return sparkValue;\n    }\n\n    if (sparkType instanceof BinaryType) {\n      return sparkValue;\n    }\n\n    if (sparkType instanceof StringType) {\n      return sparkValue.toString();\n    }\n\n    if (sparkType instanceof MapType) {\n      // converting the map into ARRAY<STRUCT<key, value>> and making a recursive call\n      MapType mapType = (MapType) sparkType;\n      // As the same map<key, value> will be converted to the same STRUCT<key, value>, it is best to\n      // cache this conversion instead of re-creating it for every value\n      StructType mapStructType = MAP_TYPE_STRUCT_TYPE_CACHE.getUnchecked(mapType);\n      List<InternalRow> entries = new ArrayList<>();\n      if (sparkValue instanceof scala.collection.Map) {\n        // Spark 3.x\n        scala.collection.Map map = (scala.collection.Map) sparkValue;\n        map.foreach(\n            new Function1<Tuple2, Object>() {\n              @Override\n              public Object apply(Tuple2 entry) {\n                return entries.add(new GenericInternalRow(new Object[] {entry._1(), entry._2()}));\n              }\n\n              @Override\n              public <A> Function1<A, Object> compose(Function1<A, Tuple2> g) {\n                return Function1.super.compose(g);\n              }\n\n              @Override\n              public <A> Function1<Tuple2, A> andThen(Function1<Object, A> g) {\n                return Function1.super.andThen(g);\n              }\n            });\n      } else {\n        // Spark 2.4\n        MapData map = (MapData) sparkValue;\n        Object[] keys = map.keyArray().toObjectArray(mapType.keyType());\n        Object[] values = map.valueArray().toObjectArray(mapType.valueType());\n        Optional<TypeConverter> typeConverterMapKeyOptional =\n            SparkBigQueryUtil.getTypeConverterStream()\n                .filter(tc -> tc.supportsSparkType(mapType.keyType()))\n                .findFirst();\n        Optional<SupportedCustomDataType> customDataTypeMapKeyOptional =\n            SupportedCustomDataType.of(mapType.keyType());\n        Optional<TypeConverter> typeConverterMapValueOptional =\n            SparkBigQueryUtil.getTypeConverterStream()\n                .filter(tc -> tc.supportsSparkType(mapType.valueType()))\n                .findFirst();\n        Optional<SupportedCustomDataType> customDataTypeMapValueOptional =\n            SupportedCustomDataType.of(mapType.valueType());\n        for (int i = 0; i < map.numElements(); i++) {\n          Object key =\n              convertSparkValueToProtoRowValue(\n                  mapType.keyType(),\n                  keys[i], /* nullable */\n                  false,\n                  nestedTypeDescriptor,\n                  typeConverterMapKeyOptional,\n                  customDataTypeMapKeyOptional);\n          Object value =\n              convertSparkValueToProtoRowValue(\n                  mapType.valueType(),\n                  values[i],\n                  mapType.valueContainsNull(),\n                  nestedTypeDescriptor,\n                  typeConverterMapValueOptional,\n                  customDataTypeMapValueOptional);\n          entries.add(new GenericInternalRow(new Object[] {key, value}));\n        }\n      }\n      ArrayData resultArray = ArrayData.toArrayData(entries.stream().toArray());\n      ArrayType resultArrayType = ArrayType.apply(mapStructType, /* containsNull */ false);\n      Optional<TypeConverter> typeConverterArrayOptional =\n          SparkBigQueryUtil.getTypeConverterStream()\n              .filter(tc -> tc.supportsSparkType(resultArrayType))\n              .findFirst();\n      Optional<SupportedCustomDataType> customDataTypeArrayOptional =\n          SupportedCustomDataType.of(resultArrayType);\n      return convertSparkValueToProtoRowValue(\n          resultArrayType,\n          resultArray,\n          nullable,\n          nestedTypeDescriptor,\n          typeConverterArrayOptional,\n          customDataTypeArrayOptional);\n    }\n\n    throw new IllegalStateException(\"Unexpected type: \" + sparkType);\n  }\n\n  private static DescriptorProtos.DescriptorProto buildDescriptorProtoWithFields(\n      DescriptorProtos.DescriptorProto.Builder descriptorBuilder, StructField[] fields, int depth) {\n    Preconditions.checkArgument(\n        depth < MAX_BIGQUERY_NESTED_DEPTH, \"Spark Schema exceeds BigQuery maximum nesting depth.\");\n    int messageNumber = 1;\n    for (StructField field : fields) {\n      String fieldName = field.name();\n      DescriptorProtos.FieldDescriptorProto.Label fieldLabel =\n          field.nullable()\n              ? DescriptorProtos.FieldDescriptorProto.Label.LABEL_OPTIONAL\n              : DescriptorProtos.FieldDescriptorProto.Label.LABEL_REQUIRED;\n\n      DataType sparkType = field.dataType();\n      // UDT support\n      sparkType =\n          SupportedCustomDataType.of(sparkType)\n              .map(SupportedCustomDataType::getSqlType)\n              .orElse(sparkType);\n\n      if (sparkType instanceof ArrayType) {\n        ArrayType arrayType = (ArrayType) sparkType;\n        /* DescriptorProtos.FieldDescriptorProto.Label elementLabel = arrayType.containsNull() ?\n        DescriptorProtos.FieldDescriptorProto.Label.LABEL_OPTIONAL :\n        DescriptorProtos.FieldDescriptorProto.Label.LABEL_REQUIRED; TODO: how to support null instances inside an array (repeated field) in BigQuery?*/\n        sparkType = arrayType.elementType();\n        fieldLabel = DescriptorProtos.FieldDescriptorProto.Label.LABEL_REPEATED;\n      }\n\n      DescriptorProtos.FieldDescriptorProto.Builder protoFieldBuilder;\n      if (sparkType instanceof StructType || sparkType instanceof MapType) {\n        String nestedName =\n            RESERVED_NESTED_TYPE_NAME\n                + messageNumber; // TODO: Maintain this as a reserved nested-type name, which no\n        // column can have.\n        StructField[] subFields = null;\n        if (sparkType instanceof StructType) {\n          StructType structType = (StructType) sparkType;\n          subFields = structType.fields();\n        } else {\n          // Map type\n          MapType mapType = (MapType) sparkType;\n          fieldLabel = DescriptorProtos.FieldDescriptorProto.Label.LABEL_REPEATED;\n          subFields = createMapStructFields(mapType);\n        }\n\n        DescriptorProtos.DescriptorProto.Builder nestedFieldTypeBuilder =\n            descriptorBuilder.addNestedTypeBuilder().setName(nestedName);\n        buildDescriptorProtoWithFields(nestedFieldTypeBuilder, subFields, depth + 1);\n\n        protoFieldBuilder =\n            createProtoFieldBuilder(fieldName, fieldLabel, messageNumber).setTypeName(nestedName);\n      } else {\n        DescriptorProtos.FieldDescriptorProto.Type fieldType = toProtoFieldType(sparkType);\n        protoFieldBuilder =\n            createProtoFieldBuilder(fieldName, fieldLabel, messageNumber, fieldType);\n      }\n      descriptorBuilder.addField(protoFieldBuilder);\n      messageNumber++;\n    }\n    return descriptorBuilder.build();\n  }\n\n  static StructType createMapStructType(MapType mapType) {\n    return new StructType(createMapStructFields(mapType));\n  }\n\n  @NotNull\n  static StructField[] createMapStructFields(MapType mapType) {\n    return new StructField[] {\n      StructField.apply( //\n          \"key\", //\n          mapType.keyType(), //\n          /* nullable */ false, //\n          Metadata.empty()),\n      StructField.apply( //\n          \"value\", //\n          mapType.valueType(), //\n          mapType.valueContainsNull(), //\n          Metadata.empty())\n    };\n  }\n\n  private static DescriptorProtos.FieldDescriptorProto.Type toProtoFieldType(DataType sparkType) {\n    Optional<DescriptorProtos.FieldDescriptorProto.Type> protoFieldType =\n        SparkBigQueryUtil.getTypeConverterStream()\n            .filter(tc -> tc.supportsSparkType(sparkType))\n            .map(tc -> tc.toProtoFieldType(sparkType))\n            .findFirst();\n    if (protoFieldType.isPresent()) {\n      return protoFieldType.get();\n    }\n\n    if (sparkType instanceof MapType) {;\n    }\n    if (sparkType instanceof DecimalType) {\n      return Type.TYPE_STRING;\n    }\n    return Preconditions.checkNotNull(\n        SparkToProtoType.get(sparkType.json()),\n        new IllegalStateException(\"Unexpected type: \" + sparkType));\n  }\n\n  private static String convertDecimalToString(Object decimal) {\n    BigDecimal bigDecimal =\n        decimal instanceof Decimal ? ((Decimal) decimal).toJavaBigDecimal() : (BigDecimal) decimal;\n    return bigDecimal.toPlainString();\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/ReadRowsResponseToInternalRowIteratorConverter.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery;\n\nimport static com.google.common.base.Optional.fromJavaUtil;\n\nimport com.google.cloud.bigquery.Schema;\nimport com.google.cloud.bigquery.connector.common.BigQueryStorageReadRowsTracer;\nimport com.google.cloud.bigquery.storage.v1.ReadRowsResponse;\nimport com.google.cloud.bigquery.storage.v1.ReadSession.TableReadOptions.ResponseCompressionCodec;\nimport com.google.protobuf.ByteString;\nimport java.io.Serializable;\nimport java.util.Iterator;\nimport java.util.List;\nimport java.util.Optional;\nimport org.apache.spark.sql.catalyst.InternalRow;\nimport org.apache.spark.sql.types.StructType;\n\npublic interface ReadRowsResponseToInternalRowIteratorConverter {\n\n  static ReadRowsResponseToInternalRowIteratorConverter avro(\n      final Schema bqSchema,\n      final List<String> columnsInOrder,\n      final String rawAvroSchema,\n      final Optional<StructType> userProvidedSchema,\n      final Optional<BigQueryStorageReadRowsTracer> bigQueryStorageReadRowsTracer,\n      final SchemaConvertersConfiguration schemaConvertersConfiguration,\n      final ResponseCompressionCodec responseCompressionCodec) {\n    return new Avro(\n        bqSchema,\n        columnsInOrder,\n        rawAvroSchema,\n        fromJavaUtil(userProvidedSchema),\n        fromJavaUtil(bigQueryStorageReadRowsTracer),\n        schemaConvertersConfiguration,\n        responseCompressionCodec);\n  }\n\n  static ReadRowsResponseToInternalRowIteratorConverter arrow(\n      final List<String> columnsInOrder,\n      final ByteString arrowSchema,\n      final Optional<StructType> userProvidedSchema,\n      final Optional<BigQueryStorageReadRowsTracer> bigQueryStorageReadRowsTracer,\n      final ResponseCompressionCodec responseCompressionCodec) {\n    return new Arrow(\n        columnsInOrder,\n        arrowSchema,\n        fromJavaUtil(userProvidedSchema),\n        fromJavaUtil(bigQueryStorageReadRowsTracer),\n        responseCompressionCodec);\n  }\n\n  Iterator<InternalRow> convert(ReadRowsResponse response);\n\n  int getBatchSizeInBytes(ReadRowsResponse response);\n\n  class Avro implements ReadRowsResponseToInternalRowIteratorConverter, Serializable {\n\n    private static final long serialVersionUID = 2994401325376236028L;\n    private final com.google.cloud.bigquery.Schema bqSchema;\n    private final List<String> columnsInOrder;\n    private final String rawAvroSchema;\n    private final com.google.common.base.Optional<StructType> userProvidedSchema;\n    private final com.google.common.base.Optional<BigQueryStorageReadRowsTracer>\n        bigQueryStorageReadRowsTracer;\n    private final SchemaConvertersConfiguration schemaConvertersConfiguration;\n    private final ResponseCompressionCodec responseCompressionCodec;\n\n    public Avro(\n        Schema bqSchema,\n        List<String> columnsInOrder,\n        String rawAvroSchema,\n        com.google.common.base.Optional<StructType> userProvidedSchema,\n        com.google.common.base.Optional<BigQueryStorageReadRowsTracer>\n            bigQueryStorageReadRowsTracer,\n        SchemaConvertersConfiguration schemaConvertersConfiguration,\n        ResponseCompressionCodec responseCompressionCodec) {\n      this.bqSchema = bqSchema;\n      this.columnsInOrder = columnsInOrder;\n      this.rawAvroSchema = rawAvroSchema;\n      this.userProvidedSchema = userProvidedSchema;\n      this.bigQueryStorageReadRowsTracer = bigQueryStorageReadRowsTracer;\n      this.schemaConvertersConfiguration = schemaConvertersConfiguration;\n      this.responseCompressionCodec = responseCompressionCodec;\n    }\n\n    @Override\n    public Iterator<InternalRow> convert(ReadRowsResponse response) {\n      return new AvroBinaryIterator(\n          bqSchema,\n          columnsInOrder,\n          new org.apache.avro.Schema.Parser().parse(rawAvroSchema),\n          response,\n          userProvidedSchema.toJavaUtil(),\n          bigQueryStorageReadRowsTracer.toJavaUtil(),\n          schemaConvertersConfiguration,\n          responseCompressionCodec);\n    }\n\n    @Override\n    public int getBatchSizeInBytes(ReadRowsResponse response) {\n      if (response.getUncompressedByteSize() > 0) {\n        return (int) response.getUncompressedByteSize();\n      }\n      return response.getAvroRows().getSerializedBinaryRows().size();\n    }\n  }\n\n  class Arrow implements ReadRowsResponseToInternalRowIteratorConverter, Serializable {\n\n    private static final long serialVersionUID = -524013378047083342L;\n    private final List<String> columnsInOrder;\n    private final ByteString arrowSchema;\n    private final com.google.common.base.Optional<StructType> userProvidedSchema;\n    private final com.google.common.base.Optional<BigQueryStorageReadRowsTracer>\n        bigQueryStorageReadRowsTracer;\n    private final ResponseCompressionCodec responseCompressionCodec;\n\n    public Arrow(\n        List<String> columnsInOrder,\n        ByteString arrowSchema,\n        com.google.common.base.Optional<StructType> userProvidedSchema,\n        com.google.common.base.Optional<BigQueryStorageReadRowsTracer>\n            bigQueryStorageReadRowsTracer,\n        ResponseCompressionCodec responseCompressionCodec) {\n      this.columnsInOrder = columnsInOrder;\n      this.arrowSchema = arrowSchema;\n      this.userProvidedSchema = userProvidedSchema;\n      this.bigQueryStorageReadRowsTracer = bigQueryStorageReadRowsTracer;\n      this.responseCompressionCodec = responseCompressionCodec;\n    }\n\n    @Override\n    public Iterator<InternalRow> convert(ReadRowsResponse response) {\n\n      return new ArrowBinaryIterator(\n          columnsInOrder,\n          arrowSchema,\n          response,\n          userProvidedSchema.toJavaUtil(),\n          bigQueryStorageReadRowsTracer.toJavaUtil(),\n          responseCompressionCodec);\n    }\n\n    @Override\n    public int getBatchSizeInBytes(ReadRowsResponse response) {\n      if (response.getUncompressedByteSize() > 0) {\n        return (int) response.getUncompressedByteSize();\n      }\n      return response.getArrowRecordBatch().getSerializedRecordBatch().size();\n    }\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/SchemaConverters.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery;\n\nimport com.google.cloud.bigquery.Field;\nimport com.google.cloud.bigquery.Field.Mode;\nimport com.google.cloud.bigquery.FieldList;\nimport com.google.cloud.bigquery.LegacySQLTypeName;\nimport com.google.cloud.bigquery.Schema;\nimport com.google.cloud.bigquery.StandardTableDefinition;\nimport com.google.cloud.bigquery.TableDefinition;\nimport com.google.cloud.bigquery.TableInfo;\nimport com.google.cloud.bigquery.TimePartitioning;\nimport com.google.cloud.bigquery.TimePartitioning.Type;\nimport com.google.cloud.bigquery.connector.common.BigQueryUtil;\nimport com.google.common.annotations.VisibleForTesting;\nimport com.google.common.base.Preconditions;\nimport java.math.BigDecimal;\nimport java.math.BigInteger;\nimport java.nio.ByteBuffer;\nimport java.util.*;\nimport java.util.function.Function;\nimport java.util.stream.Collectors;\nimport org.apache.avro.generic.GenericRecord;\nimport org.apache.avro.util.Utf8;\nimport org.apache.spark.sql.catalyst.InternalRow;\nimport org.apache.spark.sql.catalyst.expressions.GenericInternalRow;\nimport org.apache.spark.sql.catalyst.util.GenericArrayData;\nimport org.apache.spark.sql.types.*;\nimport org.apache.spark.unsafe.types.UTF8String;\n\npublic class SchemaConverters {\n\n  static final DecimalType NUMERIC_SPARK_TYPE =\n      DataTypes.createDecimalType(\n          BigQueryUtil.DEFAULT_NUMERIC_PRECISION, BigQueryUtil.DEFAULT_NUMERIC_SCALE);\n  // The maximum nesting depth of a BigQuery RECORD:\n  static final int MAX_BIGQUERY_NESTED_DEPTH = 15;\n  // Numeric cannot have more than 29 digits left of the dot. For more details\n  // https://cloud.google.com/bigquery/docs/reference/standard-sql/data-types#parameterized_decimal_type\n  private static final int NUMERIC_MAX_LEFT_OF_DOT_DIGITS = 29;\n\n  private final SchemaConvertersConfiguration configuration;\n\n  private SchemaConverters(SchemaConvertersConfiguration configuration) {\n    this.configuration = configuration;\n  }\n\n  public static SchemaConverters from(SchemaConvertersConfiguration configuration) {\n    return new SchemaConverters(configuration);\n  }\n\n  /** Convert a BigQuery schema to a Spark schema */\n  public StructType toSpark(Schema schema) {\n    List<StructField> fieldList =\n        schema.getFields().stream().map(this::convert).collect(Collectors.toList());\n    StructType structType = new StructType(fieldList.toArray(new StructField[0]));\n\n    return structType;\n  }\n\n  /**\n   * Retrieves and returns BigQuery Schema from TableInfo. If the table support pseudo columns, they\n   * are added to schema before schema is returned to the caller.\n   */\n  public Schema getSchemaWithPseudoColumns(TableInfo tableInfo) {\n    TimePartitioning timePartitioning = null;\n    TableDefinition tableDefinition = tableInfo.getDefinition();\n    if (tableDefinition instanceof StandardTableDefinition) {\n      timePartitioning = ((StandardTableDefinition) tableDefinition).getTimePartitioning();\n    }\n    boolean tableSupportsPseudoColumns =\n        timePartitioning != null\n            && timePartitioning.getField() == null\n            && timePartitioning.getType() != null;\n\n    Schema schema = tableDefinition.getSchema();\n    if (tableSupportsPseudoColumns) {\n      ArrayList<Field> fields = new ArrayList<Field>(schema.getFields());\n      fields.add(\n          createBigQueryFieldBuilder(\n                  \"_PARTITIONTIME\", LegacySQLTypeName.TIMESTAMP, Field.Mode.NULLABLE, null)\n              .build());\n      // Issue #748: _PARTITIONDATE exists only when partition type is day (not hour/month/year)\n      if (timePartitioning.getType().equals(Type.DAY)) {\n        fields.add(\n            createBigQueryFieldBuilder(\n                    \"_PARTITIONDATE\", LegacySQLTypeName.DATE, Field.Mode.NULLABLE, null)\n                .build());\n      }\n      schema = Schema.of(fields);\n    }\n    return schema;\n  }\n\n  public InternalRow convertToInternalRow(\n      Schema schema,\n      List<String> namesInOrder,\n      GenericRecord record,\n      Optional<StructType> userProvidedSchema) {\n    List<StructField> userProvidedFieldList =\n        Arrays.stream(userProvidedSchema.orElse(new StructType()).fields())\n            .collect(Collectors.toList());\n\n    return convertAll(schema.getFields(), record, namesInOrder, userProvidedFieldList);\n  }\n\n  Object convert(Field field, Object value, StructField userProvidedField) {\n    if (value == null) {\n      return null;\n    }\n\n    if (field.getMode() == Field.Mode.REPEATED) {\n      // rather than recurring down we strip off the repeated mode\n      // Due to serialization issues, reconstruct the type using reflection:\n      // See: https://github.com/googleapis/google-cloud-java/issues/3942\n      LegacySQLTypeName fType = LegacySQLTypeName.valueOfStrict(field.getType().name());\n      Field nestedField =\n          Field.newBuilder(field.getName(), fType, field.getSubFields())\n              // As long as this is not repeated it works, but technically arrays cannot contain\n              // nulls, so select required instead of nullable.\n              .setMode(Field.Mode.REQUIRED)\n              .build();\n\n      List<Object> valueList = (List<Object>) value;\n      return new GenericArrayData(\n          valueList.stream()\n              .map(v -> convert(nestedField, v, getStructFieldForRepeatedMode(userProvidedField)))\n              .collect(Collectors.toList()));\n    }\n\n    return convertByBigQueryType(field, value, userProvidedField);\n  }\n\n  private StructField getStructFieldForRepeatedMode(StructField field) {\n    StructField nestedField = null;\n\n    if (field != null) {\n      ArrayType arrayType = ((ArrayType) field.dataType());\n      nestedField =\n          new StructField(\n              field.name(),\n              arrayType.elementType(),\n              arrayType.containsNull(),\n              Metadata.empty()); // safe to pass empty metadata as it is not used anywhere\n    }\n    return nestedField;\n  }\n\n  Object convertByBigQueryType(Field bqField, Object value, StructField userProvidedField) {\n    if (LegacySQLTypeName.INTEGER.equals(bqField.getType())) {\n      if (userProvidedField != null) {\n        DataType userProvidedType = userProvidedField.dataType();\n        if (userProvidedType.equals(DataTypes.IntegerType)) {\n          return Integer.valueOf(((Number) value).intValue());\n        }\n        if (userProvidedType.equals(DataTypes.ShortType)) {\n          return Short.valueOf(((Number) value).shortValue());\n        }\n        if (userProvidedType.equals(DataTypes.ByteType)) {\n          return Byte.valueOf(((Number) value).byteValue());\n        }\n      }\n      // regular long value\n      return value;\n    }\n    if (LegacySQLTypeName.FLOAT.equals(bqField.getType())\n        || LegacySQLTypeName.BOOLEAN.equals(bqField.getType())\n        || LegacySQLTypeName.DATE.equals(bqField.getType())\n        || LegacySQLTypeName.TIME.equals(bqField.getType())\n        || LegacySQLTypeName.TIMESTAMP.equals(bqField.getType())) {\n      return value;\n    }\n\n    if (LegacySQLTypeName.STRING.equals(bqField.getType())\n        || LegacySQLTypeName.DATETIME.equals(bqField.getType())\n        || LegacySQLTypeName.GEOGRAPHY.equals(bqField.getType())\n        || LegacySQLTypeName.JSON.equals(bqField.getType())) {\n      return UTF8String.fromBytes(((Utf8) value).getBytes());\n    }\n\n    if (LegacySQLTypeName.BYTES.equals(bqField.getType())) {\n      return getBytes((ByteBuffer) value);\n    }\n\n    if (LegacySQLTypeName.NUMERIC.equals(bqField.getType())\n        || LegacySQLTypeName.BIGNUMERIC.equals(bqField.getType())) {\n      byte[] bytes = getBytes((ByteBuffer) value);\n      int scale =\n          Optional.ofNullable(bqField.getScale())\n              .map(Long::intValue)\n              .orElse(BigQueryUtil.DEFAULT_NUMERIC_SCALE);\n      BigDecimal b = new BigDecimal(new BigInteger(bytes), scale);\n      int precision =\n          Optional.ofNullable(bqField.getPrecision())\n              .map(Long::intValue)\n              .orElse(BigQueryUtil.DEFAULT_NUMERIC_PRECISION);\n      Decimal d = Decimal.apply(b, precision, scale);\n\n      return d;\n    }\n\n    if (LegacySQLTypeName.RECORD.equals(bqField.getType())) {\n      List<String> namesInOrder = null;\n      List<StructField> structList = null;\n\n      if (userProvidedField != null) {\n        StructType userStructType =\n            (StructType) SupportedCustomDataType.toSqlType(userProvidedField.dataType());\n        structList = Arrays.stream(userStructType.fields()).collect(Collectors.toList());\n\n        namesInOrder = structList.stream().map(StructField::name).collect(Collectors.toList());\n      } else {\n        namesInOrder =\n            bqField.getSubFields().stream().map(Field::getName).collect(Collectors.toList());\n      }\n\n      return convertAll(bqField.getSubFields(), (GenericRecord) value, namesInOrder, structList);\n    }\n\n    throw new IllegalStateException(\"Unexpected type: \" + bqField.getType());\n  }\n\n  private byte[] getBytes(ByteBuffer buf) {\n    byte[] bytes = new byte[buf.remaining()];\n    buf.get(bytes);\n\n    return bytes;\n  }\n\n  // Schema is not recursive so add helper for sequence of fields\n  GenericInternalRow convertAll(\n      FieldList fieldList,\n      GenericRecord record,\n      List<String> namesInOrder,\n      List<StructField> userProvidedFieldList) {\n    Map<String, Object> fieldMap = new HashMap<>();\n\n    Map<String, StructField> userProvidedFieldMap =\n        userProvidedFieldList == null\n            ? new HashMap<>()\n            : userProvidedFieldList.stream()\n                .collect(Collectors.toMap(StructField::name, Function.identity()));\n\n    fieldList.stream()\n        .forEach(\n            field ->\n                fieldMap.put(\n                    field.getName(),\n                    convert(\n                        field,\n                        record.get(field.getName()),\n                        userProvidedFieldMap.get(field.getName()))));\n\n    Object[] values = new Object[namesInOrder.size()];\n    for (int i = 0; i < namesInOrder.size(); i++) {\n      values[i] = fieldMap.get(namesInOrder.get(i));\n    }\n\n    return new GenericInternalRow(values);\n  }\n\n  /**\n   * Create a function that converts an Avro row with the given BigQuery schema to a Spark SQL row\n   *\n   * <p>The conversion is based on the BigQuery schema, not Avro Schema, because the Avro schema is\n   * very painful to use.\n   *\n   * <p>Not guaranteed to be stable across all versions of Spark.\n   */\n  @VisibleForTesting\n  StructField convert(Field field) {\n    DataType dataType = getDataType(field);\n    boolean nullable = true;\n\n    if (field.getMode() == Field.Mode.REQUIRED) {\n      nullable = false;\n    } else if (field.getMode() == Field.Mode.REPEATED) {\n      dataType = new ArrayType(dataType, true);\n    }\n\n    MetadataBuilder metadataBuilder = new MetadataBuilder();\n    if (field.getDescription() != null) {\n      metadataBuilder.putString(\"description\", field.getDescription());\n      metadataBuilder.putString(\"comment\", field.getDescription());\n    }\n    // JSON\n    if (LegacySQLTypeName.JSON.equals(field.getType())) {\n      metadataBuilder.putString(\"sqlType\", \"JSON\");\n    }\n\n    Metadata metadata = metadataBuilder.build();\n    return convertMap(field, metadata) //\n        .orElse(new StructField(field.getName(), dataType, nullable, metadata));\n  }\n\n  Optional<StructField> convertMap(Field field, Metadata metadata) {\n    if (!configuration.getAllowMapTypeConversion()) {\n      return Optional.empty();\n    }\n    if (field.getMode() != Field.Mode.REPEATED) {\n      return Optional.empty();\n    }\n    if (field.getType() != LegacySQLTypeName.RECORD) {\n      return Optional.empty();\n    }\n    FieldList subFields = field.getSubFields();\n    if (subFields.size() != 2) {\n      return Optional.empty();\n    }\n    Set<String> subFieldNames = subFields.stream().map(Field::getName).collect(Collectors.toSet());\n    if (!subFieldNames.contains(\"key\") || !subFieldNames.contains(\"value\")) {\n      // no \"key\" or \"value\" fields\n      return Optional.empty();\n    }\n    Field key = subFields.get(\"key\");\n    Field value = subFields.get(\"value\");\n    // If the BigQuery 'key' field is NULLABLE, this cannot be safely converted\n    // to a Spark Map. It should remain an Array of Structs.\n    if (key.getMode() != Field.Mode.REQUIRED) {\n      return Optional.empty();\n    }\n    MapType mapType = DataTypes.createMapType(convert(key).dataType(), convert(value).dataType());\n    // The returned type is not nullable because the original field is a REPEATED, not NULLABLE.\n    // There are some compromises we need to do as BigQuery has no native MAP type\n    return Optional.of(new StructField(field.getName(), mapType, /* nullable */ false, metadata));\n  }\n\n  private DataType getDataType(Field field) {\n    return getCustomDataType(field)\n        .map(udt -> (DataType) udt)\n        .orElseGet(() -> getStandardDataType(field));\n  }\n\n  @VisibleForTesting\n  Optional<UserDefinedType> getCustomDataType(Field field) {\n    // metadata is kept in the description\n    String description = field.getDescription();\n    if (description != null) {\n      // All supported types are serialized to records\n      if (LegacySQLTypeName.RECORD.equals(field.getType())) {\n        // we don't have many types, so we keep parsing to minimum\n        return SupportedCustomDataType.forDescription(description)\n            .map(SupportedCustomDataType::getSparkDataType);\n      }\n    }\n    return Optional.empty();\n  }\n\n  private DataType getStandardDataType(Field field) {\n    Optional<DataType> sparkType =\n        SparkBigQueryUtil.getTypeConverterStream()\n            .filter(tc -> tc.supportsBigQueryType(field.getType()))\n            .map(tc -> tc.toSparkType(field.getType()))\n            .findFirst();\n    if (sparkType.isPresent()) {\n      return sparkType.get();\n    }\n\n    if (LegacySQLTypeName.INTEGER.equals(field.getType())) {\n      return DataTypes.LongType;\n    } else if (LegacySQLTypeName.FLOAT.equals(field.getType())) {\n      return DataTypes.DoubleType;\n    } else if (LegacySQLTypeName.NUMERIC.equals(field.getType())) {\n      return createDecimalTypeFromNumericField(\n          field,\n          LegacySQLTypeName.NUMERIC,\n          BigQueryUtil.DEFAULT_NUMERIC_PRECISION,\n          BigQueryUtil.DEFAULT_NUMERIC_SCALE);\n    } else if (LegacySQLTypeName.BIGNUMERIC.equals(field.getType())) {\n      int precision =\n          Optional.ofNullable(field.getPrecision())\n              .map(Long::intValue)\n              .orElse(configuration.getBigNumericDefaultPrecision());\n      if (precision > DecimalType.MAX_PRECISION()) {\n        throw new IllegalArgumentException(\n            String.format(\n                \"BigNumeric precision is too wide (%d), Spark can only handle decimal types with max precision of %d, \"\n                    + \"If your data is within Spark's precision, you can set it using bigNumericDefaultPrecision\",\n                precision, DecimalType.MAX_PRECISION()));\n      }\n      int scale =\n          Optional.ofNullable(field.getScale())\n              .map(Long::intValue)\n              .orElse(configuration.getBigNumericDefaultScale());\n      if (scale > DecimalType.MAX_SCALE()) {\n        throw new IllegalArgumentException(\n            String.format(\n                \"BigNumeric scale is too wide (%d), Spark can only handle decimal types with max scale of %d, \"\n                    + \"If your data is within Spark's scale, you can set it using bigNumericDefaultScale\",\n                scale, DecimalType.MAX_SCALE()));\n      }\n      return createDecimalTypeFromNumericField(\n          field,\n          LegacySQLTypeName.BIGNUMERIC,\n          configuration.getBigNumericDefaultPrecision(),\n          configuration.getBigNumericDefaultScale());\n    } else if (LegacySQLTypeName.STRING.equals(field.getType())) {\n      return DataTypes.StringType;\n    } else if (LegacySQLTypeName.BOOLEAN.equals(field.getType())) {\n      return DataTypes.BooleanType;\n    } else if (LegacySQLTypeName.BYTES.equals(field.getType())) {\n      return DataTypes.BinaryType;\n    } else if (LegacySQLTypeName.DATE.equals(field.getType())) {\n      return DataTypes.DateType;\n    } else if (LegacySQLTypeName.TIMESTAMP.equals(field.getType())) {\n      return DataTypes.TimestampType;\n    } else if (LegacySQLTypeName.TIME.equals(field.getType())) {\n      return DataTypes.LongType;\n      // TODO(#5): add a timezone to allow parsing to timestamp\n      // This can be safely cast to TimestampType, but doing so causes the date to be inferred\n      // as the current date. It's safer to leave as a stable string and give the user the\n      // option of casting themselves.\n    } else if (LegacySQLTypeName.DATETIME.equals(field.getType())) {\n      return DataTypes.StringType;\n    } else if (LegacySQLTypeName.RECORD.equals(field.getType())) {\n      List<StructField> structFields =\n          field.getSubFields().stream().map(this::convert).collect(Collectors.toList());\n      return new StructType(structFields.toArray(new StructField[0]));\n    } else if (LegacySQLTypeName.GEOGRAPHY.equals(field.getType())) {\n      return DataTypes.StringType;\n    } else if (LegacySQLTypeName.JSON.equals(field.getType())) {\n      return DataTypes.StringType;\n    } else {\n      throw new IllegalStateException(\"Unexpected type: \" + field.getType());\n    }\n  }\n\n  @VisibleForTesting\n  static DecimalType createDecimalTypeFromNumericField(\n      Field field, LegacySQLTypeName expectedType, int defaultPrecision, int defaultScale) {\n    Preconditions.checkArgument(\n        field.getType().equals(expectedType),\n        \"Field %s must be of type NUMERIC, instead it is of type %s\",\n        field.getName(),\n        field.getType());\n    Optional<Integer> precisionOpt = Optional.ofNullable(field.getPrecision()).map(Long::intValue);\n    Optional<Integer> scaleOpt = Optional.ofNullable(field.getScale()).map(Long::intValue);\n    // Both exist\n    if (precisionOpt.isPresent() && scaleOpt.isPresent()) {\n      return DataTypes.createDecimalType(precisionOpt.get(), scaleOpt.get());\n    }\n    // Both missing\n    if (!precisionOpt.isPresent() && !scaleOpt.isPresent()) {\n      return DataTypes.createDecimalType(defaultPrecision, defaultScale);\n    }\n    // Either precision or scale exists, but not both\n    int maxLeftOfDotDigits = defaultPrecision - defaultScale;\n    if (precisionOpt.isPresent()) {\n      Integer precision = precisionOpt.get().intValue();\n      return DataTypes.createDecimalType(precision, Math.max(0, precision - maxLeftOfDotDigits));\n    }\n    // only scale exists\n    Integer scale = scaleOpt.get();\n    return DataTypes.createDecimalType(scale + maxLeftOfDotDigits, scale);\n  }\n\n  /** Spark ==> BigQuery Schema Converter utils: */\n  public Schema toBigQuerySchema(StructType sparkSchema) {\n    FieldList bigQueryFields = sparkToBigQueryFields(sparkSchema, 0);\n    return Schema.of(bigQueryFields);\n  }\n\n  /**\n   * Returns a FieldList of all the Spark StructField objects, converted to BigQuery Field objects\n   */\n  private FieldList sparkToBigQueryFields(StructType sparkStruct, int depth) {\n    Preconditions.checkArgument(\n        depth < MAX_BIGQUERY_NESTED_DEPTH, \"Spark Schema exceeds BigQuery maximum nesting depth.\");\n    List<Field> bqFields = new ArrayList<>();\n    for (StructField field : sparkStruct.fields()) {\n      bqFields.add(createBigQueryColumn(field, depth));\n    }\n    return FieldList.of(bqFields);\n  }\n\n  /** Converts a single StructField to a BigQuery Field (column). */\n  @VisibleForTesting\n  protected Field createBigQueryColumn(StructField sparkField, int depth) {\n    DataType sparkType = sparkField.dataType();\n    String fieldName = sparkField.name();\n    Field.Mode fieldMode = (sparkField.nullable()) ? Field.Mode.NULLABLE : Field.Mode.REQUIRED;\n    FieldList subFields = null;\n    LegacySQLTypeName fieldType;\n    OptionalLong scale = OptionalLong.empty();\n    long precision = 0;\n\n    if (sparkType instanceof ArrayType) {\n      ArrayType arrayType = (ArrayType) sparkType;\n\n      fieldMode = Field.Mode.REPEATED;\n      sparkType = arrayType.elementType();\n    }\n\n    Optional<SupportedCustomDataType> supportedCustomDataTypeOptional =\n        SupportedCustomDataType.of(sparkType);\n    // not using lambda as we need to affect method level variables\n    if (supportedCustomDataTypeOptional.isPresent()) {\n      SupportedCustomDataType supportedCustomDataType = supportedCustomDataTypeOptional.get();\n      sparkType = supportedCustomDataType.getSqlType();\n    }\n    if (sparkType instanceof StructType) {\n      subFields = sparkToBigQueryFields((StructType) sparkType, depth + 1);\n      fieldType = LegacySQLTypeName.RECORD;\n    } else if (sparkType instanceof MapType) {\n      MapType mapType = (MapType) sparkType;\n      fieldMode = Field.Mode.REPEATED;\n      fieldType = LegacySQLTypeName.RECORD;\n      subFields =\n          FieldList.of(\n              buildMapTypeField(\n                  \"key\", mapType.keyType(), sparkField.metadata(), Mode.REQUIRED, depth),\n              buildMapTypeField(\n                  \"value\",\n                  mapType.valueType(),\n                  sparkField.metadata(),\n                  mapType.valueContainsNull() ? Mode.NULLABLE : Mode.REQUIRED,\n                  depth));\n    } else if (sparkType instanceof DecimalType) {\n      DecimalType decimalType = (DecimalType) sparkType;\n      int leftOfDotDigits = decimalType.precision() - decimalType.scale();\n      fieldType =\n          (decimalType.scale() > BigQueryUtil.DEFAULT_NUMERIC_SCALE\n                  || leftOfDotDigits > NUMERIC_MAX_LEFT_OF_DOT_DIGITS)\n              ? LegacySQLTypeName.BIGNUMERIC\n              : LegacySQLTypeName.NUMERIC;\n      scale = OptionalLong.of(decimalType.scale());\n      precision = decimalType.precision();\n    } else {\n      fieldType = toBigQueryType(sparkType, sparkField.metadata());\n    }\n\n    Field.Builder fieldBuilder =\n        createBigQueryFieldBuilder(fieldName, fieldType, fieldMode, subFields);\n    Optional<String> description =\n        getDescriptionOrCommentOfField(sparkField, supportedCustomDataTypeOptional);\n\n    if (description.isPresent()) {\n      fieldBuilder.setDescription(description.get());\n    }\n\n    // if this is a decimal type\n    if (scale.isPresent()) {\n      fieldBuilder.setPrecision(precision);\n      fieldBuilder.setScale(scale.getAsLong());\n    }\n\n    return fieldBuilder.build();\n  }\n\n  public static Optional<String> getDescriptionOrCommentOfField(\n      StructField field, Optional<SupportedCustomDataType> supportedCustomDataTypeOptional) {\n    Optional<String> description = Optional.empty();\n\n    if (!field.getComment().isEmpty()) {\n      description = Optional.of(field.getComment().get());\n    } else if (field.metadata().contains(\"description\")\n        && field.metadata().getString(\"description\") != null) {\n      description = Optional.of(field.metadata().getString(\"description\"));\n    }\n\n    Optional<String> marker =\n        supportedCustomDataTypeOptional.map(SupportedCustomDataType::getTypeMarker);\n\n    // skipping some lambdas for readability\n    if (description.isPresent()) {\n      String descriptionString = description.get();\n      return Optional.of(\n          marker.map(value -> descriptionString + \" \" + value).orElse(descriptionString));\n    }\n    // no description, so the field marker determines the result\n    return marker;\n  }\n\n  private Field buildMapTypeField(\n      String fieldName, DataType sparkType, Metadata metadata, Mode fieldMode, int depth) {\n    LegacySQLTypeName sqlType = toBigQueryType(sparkType, metadata);\n    if (sqlType == LegacySQLTypeName.RECORD) {\n      FieldList subFields = sparkToBigQueryFields((StructType) sparkType, depth + 1);\n      return createBigQueryFieldBuilder(fieldName, sqlType, fieldMode, subFields).build();\n    } else {\n      return createBigQueryFieldBuilder(fieldName, sqlType, fieldMode, null).build();\n    }\n  }\n\n  @VisibleForTesting\n  protected LegacySQLTypeName toBigQueryType(DataType elementType, Metadata metadata) {\n    Optional<LegacySQLTypeName> bigQueryType =\n        SparkBigQueryUtil.getTypeConverterStream()\n            .filter(tc -> tc.supportsSparkType(elementType))\n            .map(tc -> tc.toBigQueryType(elementType))\n            .findFirst();\n    if (bigQueryType.isPresent()) {\n      return bigQueryType.get();\n    }\n\n    if (elementType instanceof BinaryType) {\n      return LegacySQLTypeName.BYTES;\n    }\n    if (elementType instanceof ByteType\n        || elementType instanceof ShortType\n        || elementType instanceof IntegerType\n        || elementType instanceof LongType) {\n      return LegacySQLTypeName.INTEGER;\n    }\n    if (elementType instanceof BooleanType) {\n      return LegacySQLTypeName.BOOLEAN;\n    }\n    if (elementType instanceof FloatType || elementType instanceof DoubleType) {\n      return LegacySQLTypeName.FLOAT;\n    }\n    if (elementType instanceof StringType) {\n      if (SparkBigQueryUtil.isJson(metadata)) {\n        return LegacySQLTypeName.JSON;\n      }\n      return LegacySQLTypeName.STRING;\n    }\n    if (elementType instanceof TimestampType) {\n      return LegacySQLTypeName.TIMESTAMP;\n    }\n    if (elementType instanceof DateType) {\n      return LegacySQLTypeName.DATE;\n    }\n    if (elementType instanceof StructType) {\n      return LegacySQLTypeName.RECORD;\n    }\n    throw new IllegalArgumentException(\"Data type not expected: \" + elementType.simpleString());\n  }\n\n  private Field.Builder createBigQueryFieldBuilder(\n      String name, LegacySQLTypeName type, Field.Mode mode, FieldList subFields) {\n    return Field.newBuilder(name, type, subFields).setMode(mode);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/SchemaConvertersConfiguration.java",
    "content": "/*\n * Copyright 2023 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery;\n\nimport com.google.cloud.bigquery.connector.common.BigQueryUtil;\nimport com.google.common.base.Objects;\nimport java.io.Serializable;\n\npublic class SchemaConvertersConfiguration implements Serializable {\n\n  private static final long serialVersionUID = -5971771984509805208L;\n  private final boolean allowMapTypeConversion;\n  private int bigNumericDefaultPrecision;\n  private int bigNumericDefaultScale;\n\n  private SchemaConvertersConfiguration(\n      boolean allowMapTypeConversion, int bigNumericDefaultPrecision, int bigNumericDefaultScale) {\n    this.allowMapTypeConversion = allowMapTypeConversion;\n    this.bigNumericDefaultPrecision = bigNumericDefaultPrecision;\n    this.bigNumericDefaultScale = bigNumericDefaultScale;\n  }\n\n  public static SchemaConvertersConfiguration from(SparkBigQueryConfig config) {\n    return SchemaConvertersConfiguration.of(\n        config.getAllowMapTypeConversion(),\n        config.getBigNumericDefaultPrecision(),\n        config.getBigNumericDefaultScale());\n  }\n\n  public static SchemaConvertersConfiguration of(boolean allowMapTypeConversion) {\n    return new SchemaConvertersConfiguration(\n        allowMapTypeConversion,\n        BigQueryUtil.DEFAULT_BIG_NUMERIC_PRECISION,\n        BigQueryUtil.DEFAULT_BIG_NUMERIC_SCALE);\n  }\n\n  public static SchemaConvertersConfiguration of(\n      boolean allowMapTypeConversion, int bigNumericDefaultPrecision, int bigNumericDefaultScale) {\n    return new SchemaConvertersConfiguration(\n        allowMapTypeConversion, bigNumericDefaultPrecision, bigNumericDefaultScale);\n  }\n\n  public static SchemaConvertersConfiguration createDefault() {\n    return new SchemaConvertersConfiguration(\n        SparkBigQueryConfig.ALLOW_MAP_TYPE_CONVERSION_DEFAULT,\n        BigQueryUtil.DEFAULT_BIG_NUMERIC_PRECISION,\n        BigQueryUtil.DEFAULT_BIG_NUMERIC_SCALE);\n  }\n\n  public boolean getAllowMapTypeConversion() {\n    return allowMapTypeConversion;\n  }\n\n  public int getBigNumericDefaultPrecision() {\n    return bigNumericDefaultPrecision;\n  }\n\n  public int getBigNumericDefaultScale() {\n    return bigNumericDefaultScale;\n  }\n\n  @Override\n  public boolean equals(Object o) {\n    if (this == o) return true;\n    if (o == null || getClass() != o.getClass()) return false;\n    SchemaConvertersConfiguration that = (SchemaConvertersConfiguration) o;\n    return Objects.equal(allowMapTypeConversion, that.allowMapTypeConversion)\n        && Objects.equal(bigNumericDefaultPrecision, that.bigNumericDefaultPrecision)\n        && Objects.equal(bigNumericDefaultScale, that.bigNumericDefaultScale);\n  }\n\n  @Override\n  public int hashCode() {\n    return Objects.hashCode(\n        allowMapTypeConversion, bigNumericDefaultPrecision, bigNumericDefaultScale);\n  }\n\n  @Override\n  public String toString() {\n    return \"SchemaConvertersConfiguration{\"\n        + \"allowMapTypeConversion=\"\n        + allowMapTypeConversion\n        + '}';\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/SparkBigQueryConfig.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery;\n\nimport static com.google.cloud.bigquery.connector.common.BigQueryConfigurationUtil.DEFAULT_FALLBACK;\nimport static com.google.cloud.bigquery.connector.common.BigQueryConfigurationUtil.defaultBilledProject;\nimport static com.google.cloud.bigquery.connector.common.BigQueryConfigurationUtil.empty;\nimport static com.google.cloud.bigquery.connector.common.BigQueryConfigurationUtil.fromJavaUtil;\nimport static com.google.cloud.bigquery.connector.common.BigQueryConfigurationUtil.getAnyBooleanOption;\nimport static com.google.cloud.bigquery.connector.common.BigQueryConfigurationUtil.getAnyOption;\nimport static com.google.cloud.bigquery.connector.common.BigQueryConfigurationUtil.getAnyOptionsWithPrefix;\nimport static com.google.cloud.bigquery.connector.common.BigQueryConfigurationUtil.getOption;\nimport static com.google.cloud.bigquery.connector.common.BigQueryConfigurationUtil.getOptionFromMultipleParams;\nimport static com.google.cloud.bigquery.connector.common.BigQueryConfigurationUtil.getRequiredOption;\nimport static com.google.cloud.bigquery.connector.common.BigQueryConfigurationUtil.removePrefixFromMapKeys;\nimport static com.google.cloud.bigquery.connector.common.BigQueryUtil.firstPresent;\nimport static com.google.cloud.bigquery.connector.common.BigQueryUtil.parseTableId;\nimport static com.google.cloud.spark.bigquery.SparkBigQueryUtil.scalaMapToJavaMap;\nimport static java.lang.String.format;\n\nimport com.google.api.gax.retrying.RetrySettings;\nimport com.google.auth.Credentials;\nimport com.google.cloud.ServiceOptions;\nimport com.google.cloud.bigquery.FormatOptions;\nimport com.google.cloud.bigquery.JobInfo;\nimport com.google.cloud.bigquery.ParquetOptions;\nimport com.google.cloud.bigquery.QueryJobConfiguration;\nimport com.google.cloud.bigquery.QueryJobConfiguration.Priority;\nimport com.google.cloud.bigquery.RangePartitioning;\nimport com.google.cloud.bigquery.TableId;\nimport com.google.cloud.bigquery.TimePartitioning;\nimport com.google.cloud.bigquery.connector.common.BigQueryClient;\nimport com.google.cloud.bigquery.connector.common.BigQueryConfig;\nimport com.google.cloud.bigquery.connector.common.BigQueryConnectorException;\nimport com.google.cloud.bigquery.connector.common.BigQueryCredentialsSupplier;\nimport com.google.cloud.bigquery.connector.common.BigQueryProxyConfig;\nimport com.google.cloud.bigquery.connector.common.BigQueryUtil;\nimport com.google.cloud.bigquery.connector.common.MaterializationConfiguration;\nimport com.google.cloud.bigquery.connector.common.QueryParameterHelper;\nimport com.google.cloud.bigquery.connector.common.ReadSessionCreatorConfig;\nimport com.google.cloud.bigquery.connector.common.ReadSessionCreatorConfigBuilder;\nimport com.google.cloud.bigquery.storage.v1.ArrowSerializationOptions.CompressionCodec;\nimport com.google.cloud.bigquery.storage.v1.DataFormat;\nimport com.google.cloud.bigquery.storage.v1.ReadSession.TableReadOptions.ResponseCompressionCodec;\nimport com.google.common.annotations.VisibleForTesting;\nimport com.google.common.base.Preconditions;\nimport com.google.common.base.Splitter;\nimport com.google.common.collect.ImmutableList;\nimport com.google.common.collect.ImmutableMap;\nimport com.google.common.collect.Sets;\nimport java.io.IOException;\nimport java.io.Serializable;\nimport java.time.format.DateTimeFormatter;\nimport java.time.format.DateTimeParseException;\nimport java.util.Arrays;\nimport java.util.Collections;\nimport java.util.HashMap;\nimport java.util.List;\nimport java.util.Locale;\nimport java.util.Map;\nimport java.util.Optional;\nimport java.util.OptionalInt;\nimport java.util.OptionalLong;\nimport java.util.Set;\nimport java.util.regex.Pattern;\nimport java.util.stream.Collectors;\nimport java.util.stream.Stream;\nimport org.apache.hadoop.conf.Configuration;\nimport org.apache.hadoop.security.UserGroupInformation;\nimport org.apache.spark.sql.SparkSession;\nimport org.apache.spark.sql.execution.datasources.DataSource;\nimport org.apache.spark.sql.internal.SQLConf;\nimport org.apache.spark.sql.types.StructType;\nimport org.checkerframework.checker.nullness.qual.Nullable;\nimport org.threeten.bp.Duration;\n\npublic class SparkBigQueryConfig\n    implements BigQueryConfig,\n        BigQueryClient.CreateTableOptions,\n        BigQueryClient.LoadDataOptions,\n        Serializable {\n\n  private static final long serialVersionUID = 728392817473829L;\n\n  public static final int MAX_TRACE_ID_LENGTH = 256;\n  public static final TableId QUERY_DUMMY_TABLE_ID = TableId.of(\"QUERY\", \"QUERY\");\n\n  public enum WriteMethod {\n    DIRECT,\n    INDIRECT;\n\n    public static WriteMethod from(@Nullable String writeMethod) {\n      try {\n        return WriteMethod.valueOf(writeMethod.toUpperCase(Locale.ENGLISH));\n      } catch (RuntimeException e) {\n        throw new IllegalArgumentException(\n            \"WriteMethod can be only \" + Arrays.toString(WriteMethod.values()));\n      }\n    }\n  }\n\n  public static final String IMPERSONATION_GLOBAL = \"gcpImpersonationServiceAccount\";\n  public static final String IMPERSONATION_FOR_USER_PREFIX =\n      \"gcpImpersonationServiceAccountForUser.\";\n  public static final String IMPERSONATION_FOR_GROUP_PREFIX =\n      \"gcpImpersonationServiceAccountForGroup.\";\n\n  public static final String VIEWS_ENABLED_OPTION = \"viewsEnabled\";\n  public static final String USE_AVRO_LOGICAL_TYPES_OPTION = \"useAvroLogicalTypes\";\n  public static final String DATE_PARTITION_PARAM = \"datePartition\";\n  public static final String VALIDATE_SPARK_AVRO_PARAM = \"validateSparkAvroInternalParam\";\n  public static final String ENABLE_LIST_INFERENCE = \"enableListInference\";\n  public static final String INTERMEDIATE_FORMAT_OPTION = \"intermediateFormat\";\n  public static final String WRITE_METHOD_PARAM = \"writeMethod\";\n  public static final String WRITE_AT_LEAST_ONCE_OPTION = \"writeAtLeastOnce\";\n  @VisibleForTesting static final DataFormat DEFAULT_READ_DATA_FORMAT = DataFormat.ARROW;\n\n  @VisibleForTesting\n  static final IntermediateFormat DEFAULT_INTERMEDIATE_FORMAT = IntermediateFormat.PARQUET;\n\n  @VisibleForTesting\n  static final CompressionCodec DEFAULT_ARROW_COMPRESSION_CODEC =\n      CompressionCodec.COMPRESSION_UNSPECIFIED;\n\n  @VisibleForTesting\n  static final ResponseCompressionCodec DEFAULT_RESPONSE_COMPRESSION_CODEC =\n      ResponseCompressionCodec.RESPONSE_COMPRESSION_CODEC_UNSPECIFIED;\n\n  static final String GCS_CONFIG_CREDENTIALS_FILE_PROPERTY =\n      \"google.cloud.auth.service.account.json.keyfile\";\n  static final String GCS_CONFIG_PROJECT_ID_PROPERTY = \"fs.gs.project.id\";\n  private static final String READ_DATA_FORMAT_OPTION = \"readDataFormat\";\n  private static final ImmutableList<String> PERMITTED_READ_DATA_FORMATS =\n      ImmutableList.of(DataFormat.ARROW.toString(), DataFormat.AVRO.toString());\n  private static final String CONF_PREFIX = \"spark.datasource.bigquery.\";\n  private static final int DEFAULT_BIGQUERY_CLIENT_CONNECT_TIMEOUT = 60 * 1000;\n  private static final int DEFAULT_BIGQUERY_CLIENT_READ_TIMEOUT = 60 * 1000;\n  private static final Pattern QUICK_LOWERCASE_QUERY_PATTERN =\n      Pattern.compile(\"(?i)^\\\\s*(select|with|\\\\()\\\\b[\\\\s\\\\S]*\");\n  private static final Pattern HAS_WHITESPACE_PATTERN = Pattern.compile(\"\\\\s\");\n  private static final Pattern SQL_KEYWORD_PATTERN =\n      Pattern.compile(\"(?i)\\\\b(select|from|where|join|group by|order by|union all)\\\\b\");\n  // Both MIN values correspond to the lower possible value that will actually make the code work.\n  // 0 or less would make code hang or other bad side effects.\n  public static final int MIN_BUFFERED_RESPONSES_PER_STREAM = 1;\n  public static final int MIN_STREAMS_PER_PARTITION = 1;\n  private static final int DEFAULT_BIGQUERY_CLIENT_RETRIES = 10;\n  private static final String ARROW_COMPRESSION_CODEC_OPTION = \"arrowCompressionCodec\";\n  private static final String RESPONSE_COMPRESSION_CODEC_OPTION = \"responseCompressionCodec\";\n  private static final WriteMethod DEFAULT_WRITE_METHOD = WriteMethod.INDIRECT;\n  public static final int DEFAULT_CACHE_EXPIRATION_IN_MINUTES = 15;\n  static final String BIGQUERY_JOB_LABEL_PREFIX = \"bigQueryJobLabel.\";\n  static final String BIGQUERY_TABLE_LABEL_PREFIX = \"bigQueryTableLabel.\";\n  public static final Priority DEFAULT_JOB_PRIORITY = Priority.INTERACTIVE;\n  static final String ALLOW_MAP_TYPE_CONVERSION = \"allowMapTypeConversion\";\n  static final Boolean ALLOW_MAP_TYPE_CONVERSION_DEFAULT = true;\n  public static final String partitionOverwriteModeProperty =\n      \"spark.sql.sources.partitionOverwriteMode\";\n\n  public PartitionOverwriteMode partitionOverwriteModeValue = PartitionOverwriteMode.STATIC;\n  public static final String BIGQUERY_JOB_TIMEOUT_IN_MINUTES = \"bigQueryJobTimeoutInMinutes\";\n  static final long BIGQUERY_JOB_TIMEOUT_IN_MINUTES_DEFAULT = 6 * 60; // 6 hrs\n\n  public static final String GPN_ATTRIBUTION = \"GPN\";\n\n  public static final String BIG_NUMERIC_DEFAULT_PRECISION = \"bigNumericDefaultPrecision\";\n  public static final String BIG_NUMERIC_DEFAULT_SCALE = \"bigNumericDefaultScale\";\n\n  private static final String DATAPROC_SYSTEM_BUCKET_CONFIGURATION = \"fs.gs.system.bucket\";\n\n  TableId tableId;\n  // as the config needs to be Serializable, internally it uses\n  // com.google.common.base.Optional<String> but externally it uses the regular java.util.Optional\n  com.google.common.base.Optional<String> query = empty();\n  String parentProjectId;\n  boolean useParentProjectForMetadataOperations;\n  com.google.common.base.Optional<String> accessTokenProviderFQCN;\n  com.google.common.base.Optional<String> accessTokenProviderConfig;\n  String loggedInUserName;\n  Set<String> loggedInUserGroups;\n  com.google.common.base.Optional<String> impersonationServiceAccount;\n  com.google.common.base.Optional<Map<String, String>> impersonationServiceAccountsForUsers;\n  com.google.common.base.Optional<Map<String, String>> impersonationServiceAccountsForGroups;\n  com.google.common.base.Optional<String> credentialsKey;\n  com.google.common.base.Optional<String> credentialsFile;\n  com.google.common.base.Optional<String> accessToken;\n  com.google.common.base.Optional<ImmutableList<String>> credentialsScopes;\n  com.google.common.base.Optional<String> filter = empty();\n  com.google.common.base.Optional<StructType> schema = empty();\n  Integer maxParallelism = null;\n  Integer preferredMinParallelism = null;\n  int defaultParallelism = 1;\n  com.google.common.base.Optional<String> temporaryGcsBucket = empty();\n  com.google.common.base.Optional<String> persistentGcsBucket = empty();\n  com.google.common.base.Optional<String> persistentGcsPath = empty();\n  // These properties are used to configure the catalog specifically, allowing\n  // separation between the catalog's project/location and the job's billing/execution\n  // project/location.\n  com.google.common.base.Optional<String> catalogProjectId = empty();\n  com.google.common.base.Optional<String> catalogLocation = empty();\n\n  IntermediateFormat intermediateFormat = DEFAULT_INTERMEDIATE_FORMAT;\n  DataFormat readDataFormat = DEFAULT_READ_DATA_FORMAT;\n  boolean combinePushedDownFilters = true;\n  boolean viewsEnabled = false;\n  com.google.common.base.Optional<String> materializationProject = empty();\n  com.google.common.base.Optional<String> materializationDataset = empty();\n  int materializationExpirationTimeInMinutes;\n  com.google.common.base.Optional<String> partitionField = empty();\n  Long partitionExpirationMs = null;\n  com.google.common.base.Optional<Boolean> partitionRequireFilter = empty();\n  com.google.common.base.Optional<TimePartitioning.Type> partitionType = empty();\n  com.google.common.base.Optional<Long> partitionRangeStart = empty();\n  com.google.common.base.Optional<Long> partitionRangeEnd = empty();\n  com.google.common.base.Optional<Long> partitionRangeInterval = empty();\n  com.google.common.base.Optional<ImmutableList<String>> clusteredFields = empty();\n  com.google.common.base.Optional<JobInfo.CreateDisposition> createDisposition = empty();\n  boolean optimizedEmptyProjection = true;\n  boolean useAvroLogicalTypes = false;\n  List<String> decimalTargetTypes = Collections.emptyList();\n  List<JobInfo.SchemaUpdateOption> loadSchemaUpdateOptions = Collections.emptyList();\n  int maxReadRowsRetries = 3;\n  boolean pushAllFilters = true;\n  boolean enableModeCheckForSchemaFields = true;\n  private com.google.common.base.Optional<String> encodedCreateReadSessionRequest = empty();\n  private com.google.common.base.Optional<String> bigQueryStorageGrpcEndpoint = empty();\n  private com.google.common.base.Optional<String> bigQueryHttpEndpoint = empty();\n  private int numBackgroundThreadsPerStream = 0;\n  private int numPrebufferReadRowsResponses = MIN_BUFFERED_RESPONSES_PER_STREAM;\n  private int numStreamsPerPartition = MIN_STREAMS_PER_PARTITION;\n  private int channelPoolSize = 1;\n  private com.google.common.base.Optional<Integer> flowControlWindowBytes =\n      com.google.common.base.Optional.absent();\n  private boolean enableReadSessionCaching = true;\n  private long readSessionCacheDurationMins = 5L;\n  private Long snapshotTimeMillis = null;\n  private SparkBigQueryProxyAndHttpConfig sparkBigQueryProxyAndHttpConfig;\n  private CompressionCodec arrowCompressionCodec = DEFAULT_ARROW_COMPRESSION_CODEC;\n  private ResponseCompressionCodec responseCompressionCodec = DEFAULT_RESPONSE_COMPRESSION_CODEC;\n  private WriteMethod writeMethod = DEFAULT_WRITE_METHOD;\n  boolean writeAtLeastOnce = false;\n  private int cacheExpirationTimeInMinutes = DEFAULT_CACHE_EXPIRATION_IN_MINUTES;\n  // used to create BigQuery ReadSessions\n  private com.google.common.base.Optional<String> traceId;\n  private Map<String, String> bigQueryJobLabels = Collections.emptyMap();\n  private Map<String, String> bigQueryTableLabels = Collections.emptyMap();\n  private com.google.common.base.Optional<Long> createReadSessionTimeoutInSeconds;\n  private QueryJobConfiguration.Priority queryJobPriority = DEFAULT_JOB_PRIORITY;\n\n  private com.google.common.base.Optional<String> destinationTableKmsKeyName = empty();\n\n  private boolean allowMapTypeConversion = ALLOW_MAP_TYPE_CONVERSION_DEFAULT;\n  private long bigQueryJobTimeoutInMinutes = BIGQUERY_JOB_TIMEOUT_IN_MINUTES_DEFAULT;\n  private com.google.common.base.Optional<String> gpn;\n  private int bigNumericDefaultPrecision;\n  private int bigNumericDefaultScale;\n  private QueryParameterHelper queryParameterHelper;\n\n  @VisibleForTesting\n  SparkBigQueryConfig() {\n    // empty\n  }\n\n  // new higher level method, as spark 3 need to parse the table specific options separately from\n  // the catalog ones\n  public static SparkBigQueryConfig from(\n      Map<String, String> options,\n      ImmutableMap<String, String> customDefaults,\n      DataSourceVersion dataSourceVersion,\n      SparkSession spark,\n      Optional<StructType> schema,\n      boolean tableIsMandatory) {\n    return from(\n        options,\n        customDefaults,\n        dataSourceVersion,\n        spark,\n        schema,\n        tableIsMandatory,\n        Optional.empty());\n  }\n\n  public static SparkBigQueryConfig from(\n      Map<String, String> options,\n      ImmutableMap<String, String> customDefaults,\n      DataSourceVersion dataSourceVersion,\n      SparkSession spark,\n      Optional<StructType> schema,\n      boolean tableIsMandatory,\n      Optional<TableId> overrideTableId) {\n    Map<String, String> optionsMap = new HashMap<>(options);\n    dataSourceVersion.updateOptionsMap(optionsMap);\n    return SparkBigQueryConfig.from(\n        ImmutableMap.copyOf(optionsMap),\n        ImmutableMap.copyOf(scalaMapToJavaMap(spark.conf().getAll())),\n        spark.sparkContext().hadoopConfiguration(),\n        customDefaults,\n        spark.sparkContext().defaultParallelism(),\n        spark.sessionState().conf(),\n        spark.version(),\n        schema,\n        tableIsMandatory,\n        overrideTableId);\n  }\n\n  @VisibleForTesting\n  public static SparkBigQueryConfig from(\n      Map<String, String> optionsInput,\n      ImmutableMap<String, String> originalGlobalOptions,\n      Configuration hadoopConfiguration,\n      ImmutableMap<String, String> customDefaults,\n      int defaultParallelism,\n      SQLConf sqlConf,\n      String sparkVersion,\n      Optional<StructType> schema,\n      boolean tableIsMandatory) {\n    return from(\n        optionsInput,\n        originalGlobalOptions,\n        hadoopConfiguration,\n        customDefaults,\n        defaultParallelism,\n        sqlConf,\n        sparkVersion,\n        schema,\n        tableIsMandatory,\n        Optional.empty());\n  }\n\n  @VisibleForTesting\n  public static SparkBigQueryConfig from(\n      Map<String, String> optionsInput,\n      ImmutableMap<String, String> originalGlobalOptions,\n      Configuration hadoopConfiguration,\n      ImmutableMap<String, String> customDefaults,\n      int defaultParallelism,\n      SQLConf sqlConf,\n      String sparkVersion,\n      Optional<StructType> schema,\n      boolean tableIsMandatory,\n      Optional<TableId> overrideTableId) {\n    SparkBigQueryConfig config = new SparkBigQueryConfig();\n\n    ImmutableMap<String, String> options = toLowerCaseKeysMap(optionsInput);\n    ImmutableMap<String, String> globalOptions = normalizeConf(originalGlobalOptions);\n    config.sparkBigQueryProxyAndHttpConfig =\n        SparkBigQueryProxyAndHttpConfig.from(options, globalOptions, hadoopConfiguration);\n    // Issue #247\n    // we need those parameters in case a read from query is issued\n    config.viewsEnabled = getAnyBooleanOption(globalOptions, options, VIEWS_ENABLED_OPTION, false);\n    MaterializationConfiguration materializationConfiguration =\n        MaterializationConfiguration.from(globalOptions, options);\n    config.materializationProject = materializationConfiguration.getMaterializationProject();\n    config.materializationDataset = materializationConfiguration.getMaterializationDataset();\n    config.materializationExpirationTimeInMinutes =\n        materializationConfiguration.getMaterializationExpirationTimeInMinutes();\n\n    // get the table details\n    com.google.common.base.Optional<String> fallbackDataset = config.materializationDataset;\n    Optional<String> fallbackProject =\n        com.google.common.base.Optional.fromNullable(\n                hadoopConfiguration.get(GCS_CONFIG_PROJECT_ID_PROPERTY))\n            .toJavaUtil();\n    Optional<String> datasetParam = getOption(options, \"dataset\").or(fallbackDataset).toJavaUtil();\n    Optional<String> projectParam =\n        firstPresent(getOption(options, \"project\").toJavaUtil(), fallbackProject);\n    config.partitionType =\n        getOption(options, \"partitionType\").transform(TimePartitioning.Type::valueOf);\n    config.partitionRangeStart =\n        getOption(options, \"partitionRangeStart\").transform(Long::parseLong);\n    config.partitionRangeEnd = getOption(options, \"partitionRangeEnd\").transform(Long::parseLong);\n    config.partitionRangeInterval =\n        getOption(options, \"partitionRangeInterval\").transform(Long::parseLong);\n    if (overrideTableId.isPresent()) {\n      config.tableId = overrideTableId.get();\n    } else {\n      // checking for query\n      Optional<String> tableParam =\n          getOptionFromMultipleParams(options, ImmutableList.of(\"table\", \"path\"), DEFAULT_FALLBACK)\n              .toJavaUtil();\n      Optional<String> datePartitionParam = getOption(options, DATE_PARTITION_PARAM).toJavaUtil();\n      datePartitionParam.ifPresent(\n          date ->\n              validateDateFormat(date, config.getPartitionTypeOrDefault(), DATE_PARTITION_PARAM));\n      if (tableParam.isPresent()) {\n        String tableParamStr = tableParam.get().trim();\n        if (isQuery(tableParamStr)) {\n          // it is a query in practice\n          config.query = com.google.common.base.Optional.of(tableParamStr);\n          config.tableId =\n              datasetParam\n                  .map(\n                      ignored ->\n                          parseTableId(\"QUERY\", datasetParam, projectParam, datePartitionParam))\n                  .orElse(QUERY_DUMMY_TABLE_ID);\n        } else {\n          config.tableId =\n              parseTableId(tableParamStr, datasetParam, projectParam, datePartitionParam);\n        }\n      } else {\n        // no table has been provided, it is either a query or an error\n        config.query = getOption(options, \"query\").transform(String::trim);\n        if (config.query.isPresent()) {\n          config.tableId =\n              datasetParam\n                  .map(\n                      ignored ->\n                          parseTableId(\"QUERY\", datasetParam, projectParam, datePartitionParam))\n                  .orElse(QUERY_DUMMY_TABLE_ID);\n        } else if (tableIsMandatory) {\n          // No table nor query were set. We cannot go further.\n          throw new IllegalArgumentException(\"No table has been specified\");\n        }\n      }\n    }\n\n    config.parentProjectId =\n        getAnyOption(globalOptions, options, \"parentProject\").or(defaultBilledProject());\n    config.catalogProjectId = getOption(options, \"projectId\");\n    config.catalogLocation = getOption(options, \"bigquery_location\");\n    config.useParentProjectForMetadataOperations =\n        getAnyBooleanOption(globalOptions, options, \"useParentProjectForMetadataOperations\", false);\n    config.accessTokenProviderFQCN = getAnyOption(globalOptions, options, \"gcpAccessTokenProvider\");\n    config.accessTokenProviderConfig =\n        getAnyOption(globalOptions, options, \"gcpAccessTokenProviderConfig\");\n    try {\n      UserGroupInformation ugiCurrentUser = UserGroupInformation.getCurrentUser();\n      config.loggedInUserName = ugiCurrentUser.getShortUserName();\n      config.loggedInUserGroups = Sets.newHashSet(ugiCurrentUser.getGroupNames());\n    } catch (IOException e) {\n      throw new BigQueryConnectorException(\n          \"Failed to get the UserGroupInformation current user\", e);\n    }\n    config.impersonationServiceAccount = getAnyOption(globalOptions, options, IMPERSONATION_GLOBAL);\n    config.impersonationServiceAccountsForUsers =\n        removePrefixFromMapKeys(\n            getAnyOptionsWithPrefix(\n                globalOptions, options, IMPERSONATION_FOR_USER_PREFIX.toLowerCase()),\n            IMPERSONATION_FOR_USER_PREFIX.toLowerCase());\n    config.impersonationServiceAccountsForGroups =\n        removePrefixFromMapKeys(\n            getAnyOptionsWithPrefix(\n                globalOptions, options, IMPERSONATION_FOR_GROUP_PREFIX.toLowerCase()),\n            IMPERSONATION_FOR_GROUP_PREFIX.toLowerCase());\n    config.accessToken = getAnyOption(globalOptions, options, \"gcpAccessToken\");\n    config.credentialsKey = getAnyOption(globalOptions, options, \"credentials\");\n    config.credentialsFile =\n        fromJavaUtil(\n            firstPresent(\n                getAnyOption(globalOptions, options, \"credentialsFile\").toJavaUtil(),\n                com.google.common.base.Optional.fromNullable(\n                        hadoopConfiguration.get(GCS_CONFIG_CREDENTIALS_FILE_PROPERTY))\n                    .toJavaUtil()));\n    config.credentialsScopes =\n        getAnyOption(globalOptions, options, \"credentialsScopes\")\n            .transform(SparkBigQueryConfig::splitOnComma);\n    config.filter = getOption(options, \"filter\");\n    config.schema = fromJavaUtil(schema);\n    config.maxParallelism =\n        getAnyOption(globalOptions, options, ImmutableList.of(\"maxParallelism\", \"parallelism\"))\n            .transform(Integer::valueOf)\n            .orNull();\n    config.preferredMinParallelism =\n        getAnyOption(globalOptions, options, \"preferredMinParallelism\")\n            .transform(Integer::valueOf)\n            .orNull();\n    config.defaultParallelism = defaultParallelism;\n    config.temporaryGcsBucket =\n        stripPrefix(getAnyOption(globalOptions, options, \"temporaryGcsBucket\"))\n            .or(\n                com.google.common.base.Optional.fromNullable(\n                    hadoopConfiguration.get(DATAPROC_SYSTEM_BUCKET_CONFIGURATION)));\n    config.persistentGcsBucket =\n        stripPrefix(getAnyOption(globalOptions, options, \"persistentGcsBucket\"));\n    config.persistentGcsPath = getOption(options, \"persistentGcsPath\");\n    WriteMethod writeMethodDefault =\n        Optional.ofNullable(customDefaults.get(WRITE_METHOD_PARAM))\n            .map(WriteMethod::from)\n            .orElse(DEFAULT_WRITE_METHOD);\n    config.writeMethod =\n        getAnyOption(globalOptions, options, WRITE_METHOD_PARAM)\n            .transform(WriteMethod::from)\n            .or(writeMethodDefault);\n    config.writeAtLeastOnce =\n        getAnyBooleanOption(globalOptions, options, WRITE_AT_LEAST_ONCE_OPTION, false);\n\n    boolean validateSparkAvro =\n        config.writeMethod == WriteMethod.INDIRECT\n            && Boolean.valueOf(getRequiredOption(options, VALIDATE_SPARK_AVRO_PARAM, () -> \"true\"));\n    boolean enableListInferenceForParquetMode =\n        getAnyBooleanOption(globalOptions, options, ENABLE_LIST_INFERENCE, false);\n    String intermediateFormatOption =\n        getAnyOption(globalOptions, options, INTERMEDIATE_FORMAT_OPTION)\n            .transform(String::toLowerCase)\n            .or(DEFAULT_INTERMEDIATE_FORMAT.getDataSource());\n    config.intermediateFormat =\n        IntermediateFormat.from(\n            intermediateFormatOption,\n            sparkVersion,\n            sqlConf,\n            validateSparkAvro,\n            enableListInferenceForParquetMode);\n    String readDataFormatParam =\n        getAnyOption(globalOptions, options, READ_DATA_FORMAT_OPTION)\n            .transform(String::toUpperCase)\n            .or(DEFAULT_READ_DATA_FORMAT.toString());\n    if (!PERMITTED_READ_DATA_FORMATS.contains(readDataFormatParam)) {\n      throw new IllegalArgumentException(\n          format(\n              \"Data read format '%s' is not supported. Supported formats are '%s'\",\n              readDataFormatParam, String.join(\",\", PERMITTED_READ_DATA_FORMATS)));\n    }\n    config.useAvroLogicalTypes =\n        getAnyBooleanOption(globalOptions, options, USE_AVRO_LOGICAL_TYPES_OPTION, false);\n    config.readDataFormat = DataFormat.valueOf(readDataFormatParam);\n    config.combinePushedDownFilters =\n        getAnyBooleanOption(globalOptions, options, \"combinePushedDownFilters\", true);\n\n    config.partitionField = getOption(options, \"partitionField\");\n    config.partitionExpirationMs =\n        getOption(options, \"partitionExpirationMs\").transform(Long::valueOf).orNull();\n    config.partitionRequireFilter =\n        getOption(options, \"partitionRequireFilter\").transform(Boolean::valueOf);\n    config.clusteredFields =\n        getOption(options, \"clusteredFields\").transform(SparkBigQueryConfig::splitOnComma);\n\n    config.createDisposition =\n        getOption(options, \"createDisposition\")\n            .transform(String::toUpperCase)\n            .transform(JobInfo.CreateDisposition::valueOf);\n\n    config.optimizedEmptyProjection =\n        getAnyBooleanOption(globalOptions, options, \"optimizedEmptyProjection\", true);\n\n    boolean allowFieldAddition =\n        getAnyBooleanOption(globalOptions, options, \"allowFieldAddition\", false);\n    boolean allowFieldRelaxation =\n        getAnyBooleanOption(globalOptions, options, \"allowFieldRelaxation\", false);\n    ImmutableList.Builder<JobInfo.SchemaUpdateOption> loadSchemaUpdateOptions =\n        ImmutableList.builder();\n    if (allowFieldAddition) {\n      loadSchemaUpdateOptions.add(JobInfo.SchemaUpdateOption.ALLOW_FIELD_ADDITION);\n    }\n    if (allowFieldRelaxation) {\n      loadSchemaUpdateOptions.add(JobInfo.SchemaUpdateOption.ALLOW_FIELD_RELAXATION);\n    }\n    config.loadSchemaUpdateOptions = Collections.unmodifiableList(loadSchemaUpdateOptions.build());\n    config.decimalTargetTypes =\n        getOption(options, \"decimalTargetTypes\")\n            .transform(SparkBigQueryConfig::splitOnComma)\n            .or(ImmutableList.of());\n    config.bigQueryStorageGrpcEndpoint =\n        getAnyOption(globalOptions, options, \"bigQueryStorageGrpcEndpoint\");\n    config.bigQueryHttpEndpoint = getAnyOption(globalOptions, options, \"bigQueryHttpEndpoint\");\n    config.encodedCreateReadSessionRequest =\n        getAnyOption(globalOptions, options, \"bqEncodedCreateReadSessionRequest\");\n    config.numBackgroundThreadsPerStream =\n        getAnyOption(globalOptions, options, \"bqBackgroundThreadsPerStream\")\n            .transform(Integer::parseInt)\n            .or(0);\n    config.pushAllFilters = getAnyBooleanOption(globalOptions, options, \"pushAllFilters\", true);\n    config.enableModeCheckForSchemaFields =\n        getAnyBooleanOption(globalOptions, options, \"enableModeCheckForSchemaFields\", true);\n    config.numPrebufferReadRowsResponses =\n        getAnyOption(globalOptions, options, \"bqPrebufferResponsesPerStream\")\n            .transform(Integer::parseInt)\n            .or(MIN_BUFFERED_RESPONSES_PER_STREAM);\n    config.flowControlWindowBytes =\n        getAnyOption(globalOptions, options, \"bqFlowControlWindowBytes\")\n            .transform(Integer::parseInt);\n\n    config.numStreamsPerPartition =\n        getAnyOption(globalOptions, options, \"bqNumStreamsPerPartition\")\n            .transform(Integer::parseInt)\n            .or(MIN_STREAMS_PER_PARTITION);\n    // Calculating the default channel pool size\n    int sparkExecutorCores =\n        Integer.parseInt(globalOptions.getOrDefault(\"spark.executor.cores\", \"1\"));\n    int defaultChannelPoolSize = sparkExecutorCores * config.numStreamsPerPartition;\n\n    config.channelPoolSize =\n        getAnyOption(globalOptions, options, \"bqChannelPoolSize\")\n            .transform(Integer::parseInt)\n            .or(defaultChannelPoolSize);\n    config.enableReadSessionCaching =\n        getAnyBooleanOption(globalOptions, options, \"enableReadSessionCaching\", true);\n    config.readSessionCacheDurationMins =\n        getAnyOption(globalOptions, options, \"readSessionCacheDurationMins\")\n            .transform(Long::parseLong)\n            .or(5L);\n    if (!(config.readSessionCacheDurationMins > 0L\n        && config.readSessionCacheDurationMins <= 300L)) {\n      throw new IllegalArgumentException(\"readSessionCacheDurationMins should be > 0 and <= 300\");\n    }\n\n    String arrowCompressionCodecParam =\n        getAnyOption(globalOptions, options, ARROW_COMPRESSION_CODEC_OPTION)\n            .transform(String::toUpperCase)\n            .or(DEFAULT_ARROW_COMPRESSION_CODEC.toString());\n\n    try {\n      config.arrowCompressionCodec = CompressionCodec.valueOf(arrowCompressionCodecParam);\n    } catch (IllegalArgumentException e) {\n      throw new IllegalArgumentException(\n          format(\n              \"Compression codec '%s' for Arrow is not supported. Supported formats are %s\",\n              arrowCompressionCodecParam, Arrays.toString(CompressionCodec.values())));\n    }\n\n    String responseCompressionCodecParam =\n        getAnyOption(globalOptions, options, RESPONSE_COMPRESSION_CODEC_OPTION)\n            .transform(String::toUpperCase)\n            .or(DEFAULT_RESPONSE_COMPRESSION_CODEC.toString());\n\n    try {\n      config.responseCompressionCodec =\n          ResponseCompressionCodec.valueOf(responseCompressionCodecParam);\n    } catch (IllegalArgumentException e) {\n      throw new IllegalArgumentException(\n          format(\n              \"Response compression codec '%s' is not supported. Supported formats are %s\",\n              responseCompressionCodecParam, Arrays.toString(ResponseCompressionCodec.values())));\n    }\n\n    config.cacheExpirationTimeInMinutes =\n        getAnyOption(globalOptions, options, \"cacheExpirationTimeInMinutes\")\n            .transform(Integer::parseInt)\n            .or(DEFAULT_CACHE_EXPIRATION_IN_MINUTES);\n    if (config.cacheExpirationTimeInMinutes < 0) {\n      throw new IllegalArgumentException(\n          \"cacheExpirationTimeInMinutes must have a positive value, the configured value is \"\n              + config.cacheExpirationTimeInMinutes);\n    }\n\n    com.google.common.base.Optional<String> traceApplicationNameParam =\n        getAnyOption(globalOptions, options, \"traceApplicationName\")\n            .or(com.google.common.base.Optional.fromNullable(\"traceApplicationName\"));\n    config.traceId =\n        traceApplicationNameParam.transform(\n            traceApplicationName -> {\n              String traceJobIdParam =\n                  getAnyOption(globalOptions, options, \"traceJobId\")\n                      .or(SparkBigQueryUtil.getJobId(sqlConf));\n              String traceIdParam = \"Spark:\" + traceApplicationName + \":\" + traceJobIdParam;\n              if (traceIdParam.length() > MAX_TRACE_ID_LENGTH) {\n                throw new IllegalArgumentException(\n                    String.format(\n                        \"trace ID cannot longer than %d. Provided value was [%s]\",\n                        MAX_TRACE_ID_LENGTH, traceIdParam));\n              }\n              return traceIdParam;\n            });\n\n    config.bigQueryJobLabels =\n        parseBigQueryLabels(globalOptions, options, BIGQUERY_JOB_LABEL_PREFIX);\n    config.bigQueryTableLabels =\n        parseBigQueryLabels(globalOptions, options, BIGQUERY_TABLE_LABEL_PREFIX);\n\n    config.createReadSessionTimeoutInSeconds =\n        getAnyOption(globalOptions, options, \"createReadSessionTimeoutInSeconds\")\n            .transform(Long::parseLong);\n\n    config.queryJobPriority =\n        getAnyOption(globalOptions, options, \"queryJobPriority\")\n            .transform(String::toUpperCase)\n            .transform(Priority::valueOf)\n            .or(DEFAULT_JOB_PRIORITY);\n\n    config.destinationTableKmsKeyName =\n        getAnyOption(globalOptions, options, \"destinationTableKmsKeyName\");\n\n    config.allowMapTypeConversion =\n        getAnyOption(globalOptions, options, ALLOW_MAP_TYPE_CONVERSION)\n            .transform(Boolean::valueOf)\n            .or(ALLOW_MAP_TYPE_CONVERSION_DEFAULT);\n\n    config.partitionOverwriteModeValue =\n        getAnyOption(globalOptions, options, partitionOverwriteModeProperty)\n            .transform(String::toUpperCase)\n            .transform(PartitionOverwriteMode::valueOf)\n            .or(PartitionOverwriteMode.STATIC);\n\n    config.bigQueryJobTimeoutInMinutes =\n        getAnyOption(globalOptions, options, BIGQUERY_JOB_TIMEOUT_IN_MINUTES)\n            .transform(Long::valueOf)\n            .or(BIGQUERY_JOB_TIMEOUT_IN_MINUTES_DEFAULT);\n\n    config.gpn = getAnyOption(globalOptions, options, GPN_ATTRIBUTION);\n\n    config.snapshotTimeMillis =\n        getOption(options, \"snapshotTimeMillis\").transform(Long::valueOf).orNull();\n    config.bigNumericDefaultPrecision =\n        getAnyOption(globalOptions, options, BIG_NUMERIC_DEFAULT_PRECISION)\n            .transform(Integer::parseInt)\n            .or(BigQueryUtil.DEFAULT_BIG_NUMERIC_PRECISION);\n    config.bigNumericDefaultScale =\n        getAnyOption(globalOptions, options, BIG_NUMERIC_DEFAULT_SCALE)\n            .transform(Integer::parseInt)\n            .or(BigQueryUtil.DEFAULT_BIG_NUMERIC_SCALE);\n    config.queryParameterHelper = BigQueryUtil.parseQueryParameters(options);\n    return config;\n  }\n\n  private static ImmutableList<String> splitOnComma(String value) {\n    return Splitter.on(\",\")\n        .trimResults()\n        .omitEmptyStrings()\n        .splitToStream(value)\n        .collect(ImmutableList.toImmutableList());\n  }\n\n  // strip gs:// prefix if exists\n  private static com.google.common.base.Optional<String> stripPrefix(\n      com.google.common.base.Optional<String> bucket) {\n    return bucket.transform(\n        path -> {\n          if (path.startsWith(\"gs://\")) {\n            return path.substring(5);\n          } else {\n            return path;\n          }\n        });\n  }\n\n  @VisibleForTesting\n  // takes only the options with the BIGQUERY_JOB_LABEL_PREFIX prefix, and strip them of this\n  // prefix.\n  // The `options` map overrides the `globalOptions` map.\n  static Map<String, String> parseBigQueryLabels(\n      ImmutableMap<String, String> globalOptions,\n      ImmutableMap<String, String> options,\n      String labelPrefix) {\n\n    String lowerCasePrefix = labelPrefix.toLowerCase(Locale.ROOT);\n\n    ImmutableMap<String, String> allOptions =\n        ImmutableMap.<String, String>builder() //\n            .putAll(globalOptions) //\n            .putAll(options) //\n            .buildKeepingLast();\n\n    ImmutableMap.Builder<String, String> result = ImmutableMap.<String, String>builder();\n    for (Map.Entry<String, String> entry : allOptions.entrySet()) {\n      if (entry.getKey().toLowerCase(Locale.ROOT).startsWith(lowerCasePrefix)) {\n        result.put(entry.getKey().substring(labelPrefix.length()), entry.getValue());\n      }\n    }\n\n    return Collections.unmodifiableMap(result.build());\n  }\n\n  private static ImmutableMap<String, String> toLowerCaseKeysMap(Map<String, String> map) {\n    Map<String, String> result = new HashMap<>();\n    for (Map.Entry<String, String> entry : map.entrySet()) {\n      result.put(entry.getKey().toLowerCase(Locale.ROOT), entry.getValue());\n    }\n    return ImmutableMap.copyOf(result);\n  }\n\n  @VisibleForTesting\n  static boolean isQuery(String tableParamStr) {\n    if (tableParamStr == null || tableParamStr.trim().isEmpty()) {\n      return false;\n    }\n    String potentialQuery = tableParamStr.trim();\n\n    // If the string is quoted with backticks, it is recognized as a table identifier, not a query.\n    if (potentialQuery.startsWith(\"`\") && potentialQuery.endsWith(\"`\")) {\n      return false;\n    }\n\n    // Check for common query-starting keyword.\n    if (QUICK_LOWERCASE_QUERY_PATTERN.matcher(potentialQuery).matches()) {\n      return true;\n    }\n\n    // Might be a query with a leading comment, OR could be a table name with spaces.\n    return HAS_WHITESPACE_PATTERN.matcher(potentialQuery).find()\n        && SQL_KEYWORD_PATTERN.matcher(potentialQuery).find();\n  }\n\n  private static void validateDateFormat(\n      String date, TimePartitioning.Type partitionType, String optionName) {\n    try {\n      Map<TimePartitioning.Type, DateTimeFormatter> formatterMap =\n          ImmutableMap.<TimePartitioning.Type, DateTimeFormatter>of(\n              TimePartitioning.Type.HOUR, DateTimeFormatter.ofPattern(\"yyyyMMddHH\"), //\n              TimePartitioning.Type.DAY, DateTimeFormatter.BASIC_ISO_DATE, //\n              TimePartitioning.Type.MONTH, DateTimeFormatter.ofPattern(\"yyyyMM\"), //\n              TimePartitioning.Type.YEAR, DateTimeFormatter.ofPattern(\"yyyy\"));\n      DateTimeFormatter dateTimeFormatter = formatterMap.get(partitionType);\n      dateTimeFormatter.parse(date);\n    } catch (DateTimeParseException e) {\n      throw new IllegalArgumentException(\n          String.format(\"Invalid argument for option %s, format is YYYYMMDD\", optionName));\n    }\n  }\n\n  static ImmutableMap<String, String> normalizeConf(Map<String, String> conf) {\n    Map<String, String> normalizeConf =\n        conf.entrySet().stream()\n            .filter(e -> e.getKey().startsWith(CONF_PREFIX))\n            .collect(\n                Collectors.toMap(\n                    e -> e.getKey().substring(CONF_PREFIX.length()), e -> e.getValue()));\n    Map<String, String> result = new HashMap<>(conf);\n    result.putAll(normalizeConf);\n    return ImmutableMap.copyOf(result);\n  }\n\n  public Credentials createCredentials() {\n\n    return new BigQueryCredentialsSupplier(\n            accessTokenProviderFQCN.toJavaUtil(),\n            accessTokenProviderConfig.toJavaUtil(),\n            accessToken.toJavaUtil(),\n            credentialsKey.toJavaUtil(),\n            credentialsFile.toJavaUtil(),\n            loggedInUserName,\n            loggedInUserGroups,\n            impersonationServiceAccountsForUsers.toJavaUtil(),\n            impersonationServiceAccountsForGroups.toJavaUtil(),\n            impersonationServiceAccount.toJavaUtil(),\n            credentialsScopes.toJavaUtil(),\n            sparkBigQueryProxyAndHttpConfig.getProxyUri(),\n            sparkBigQueryProxyAndHttpConfig.getProxyUsername(),\n            sparkBigQueryProxyAndHttpConfig.getProxyPassword())\n        .getCredentials();\n  }\n\n  public TableId getTableId() {\n    return tableId;\n  }\n\n  /** Always populate the project id, even if it is null. */\n  public TableId getTableIdWithExplicitProject() {\n    if (tableId.getProject() != null) {\n      return tableId;\n    }\n    return TableId.of(\n        // if the table was not set, this is the used project\n        ServiceOptions.getDefaultProjectId(), tableId.getDataset(), tableId.getTable());\n  }\n\n  /** Returns the table id, without the added partition id if it exists. */\n  public TableId getTableIdWithoutThePartition() {\n    String tableAndPartition = tableId.getTable();\n    if (!tableAndPartition.contains(\"$\")) {\n      // there is no partition id\n      return tableId;\n    }\n    String table = tableAndPartition.substring(0, tableAndPartition.indexOf('$'));\n    return tableId.getProject() != null\n        ? TableId.of(tableId.getProject(), tableId.getDataset(), table)\n        : TableId.of(tableId.getDataset(), table);\n  }\n\n  public Optional<String> getQuery() {\n    return query.toJavaUtil();\n  }\n\n  public QueryParameterHelper getQueryParameterHelper() {\n    return queryParameterHelper;\n  }\n\n  @Override\n  public String getParentProjectId() {\n    return parentProjectId;\n  }\n\n  @Override\n  public Optional<String> getCatalogProjectId() {\n    return catalogProjectId.toJavaUtil();\n  }\n\n  @Override\n  public Optional<String> getCatalogLocation() {\n    return catalogLocation.toJavaUtil();\n  }\n\n  @Override\n  public boolean useParentProjectForMetadataOperations() {\n    return useParentProjectForMetadataOperations;\n  }\n\n  @Override\n  public Optional<String> getAccessTokenProviderFQCN() {\n    return accessTokenProviderFQCN.toJavaUtil();\n  }\n\n  @Override\n  public Optional<String> getAccessTokenProviderConfig() {\n    return accessTokenProviderConfig.toJavaUtil();\n  }\n\n  @Override\n  public String getLoggedInUserName() {\n    return loggedInUserName;\n  }\n\n  @Override\n  public Set<String> getLoggedInUserGroups() {\n    return loggedInUserGroups;\n  }\n\n  @Override\n  public Optional<Map<String, String>> getImpersonationServiceAccountsForUsers() {\n    return impersonationServiceAccountsForUsers.toJavaUtil();\n  }\n\n  @Override\n  public Optional<Map<String, String>> getImpersonationServiceAccountsForGroups() {\n    return impersonationServiceAccountsForGroups.toJavaUtil();\n  }\n\n  @Override\n  public Optional<String> getImpersonationServiceAccount() {\n    return impersonationServiceAccount.toJavaUtil();\n  }\n\n  @Override\n  public Optional<String> getCredentialsKey() {\n    return credentialsKey.toJavaUtil();\n  }\n\n  @Override\n  public Optional<String> getCredentialsFile() {\n    return credentialsFile.toJavaUtil();\n  }\n\n  @Override\n  public Optional<String> getAccessToken() {\n    return accessToken.toJavaUtil();\n  }\n\n  @Override\n  public Optional<ImmutableList<String>> getCredentialsScopes() {\n    return credentialsScopes.toJavaUtil();\n  }\n\n  public Optional<String> getFilter() {\n    return filter.toJavaUtil();\n  }\n\n  public Optional<StructType> getSchema() {\n    return schema.toJavaUtil();\n  }\n\n  public OptionalInt getMaxParallelism() {\n    return maxParallelism == null ? OptionalInt.empty() : OptionalInt.of(maxParallelism);\n  }\n\n  public OptionalInt getPreferredMinParallelism() {\n    return preferredMinParallelism == null\n        ? OptionalInt.empty()\n        : OptionalInt.of(preferredMinParallelism);\n  }\n\n  public int getDefaultParallelism() {\n    return defaultParallelism;\n  }\n\n  public Optional<String> getTemporaryGcsBucket() {\n    return temporaryGcsBucket.toJavaUtil();\n  }\n\n  public Optional<String> getPersistentGcsBucket() {\n    return persistentGcsBucket.toJavaUtil();\n  }\n\n  public Optional<String> getPersistentGcsPath() {\n    return persistentGcsPath.toJavaUtil();\n  }\n\n  public IntermediateFormat getIntermediateFormat() {\n    return intermediateFormat;\n  }\n\n  public DataFormat getReadDataFormat() {\n    return readDataFormat;\n  }\n\n  public CompressionCodec getArrowCompressionCodec() {\n    return arrowCompressionCodec;\n  }\n\n  public ResponseCompressionCodec getResponseCompressionCodec() {\n    return responseCompressionCodec;\n  }\n\n  public boolean isCombinePushedDownFilters() {\n    return combinePushedDownFilters;\n  }\n\n  @Override\n  public boolean isUseAvroLogicalTypes() {\n    return useAvroLogicalTypes;\n  }\n\n  public ImmutableList<String> getDecimalTargetTypes() {\n    return ImmutableList.copyOf(decimalTargetTypes);\n  }\n\n  public boolean isViewsEnabled() {\n    return viewsEnabled;\n  }\n\n  @Override\n  public Optional<String> getMaterializationProject() {\n    return materializationProject.toJavaUtil();\n  }\n\n  @Override\n  public Optional<String> getMaterializationDataset() {\n    return materializationDataset.toJavaUtil();\n  }\n\n  public int getMaterializationExpirationTimeInMinutes() {\n    return materializationExpirationTimeInMinutes;\n  }\n\n  public Optional<String> getPartitionField() {\n    return partitionField.toJavaUtil();\n  }\n\n  public OptionalLong getPartitionExpirationMs() {\n    return partitionExpirationMs == null\n        ? OptionalLong.empty()\n        : OptionalLong.of(partitionExpirationMs);\n  }\n\n  public Optional<Boolean> getPartitionRequireFilter() {\n    return partitionRequireFilter.toJavaUtil();\n  }\n\n  public Optional<TimePartitioning.Type> getPartitionType() {\n    return partitionType.toJavaUtil();\n  }\n\n  public Optional<RangePartitioning.Range> getPartitionRange() {\n    if (partitionRangeStart.isPresent()\n        && partitionRangeEnd.isPresent()\n        && partitionRangeInterval.isPresent()) {\n      return Optional.of(\n          RangePartitioning.Range.newBuilder()\n              .setStart(partitionRangeStart.get())\n              .setEnd(partitionRangeEnd.get())\n              .setInterval(partitionRangeInterval.get())\n              .build());\n    }\n    return Optional.empty();\n  }\n\n  public TimePartitioning.Type getPartitionTypeOrDefault() {\n    return partitionType.or(TimePartitioning.Type.DAY);\n  }\n\n  public Optional<ImmutableList<String>> getClusteredFields() {\n    return clusteredFields.transform(fields -> ImmutableList.copyOf(fields)).toJavaUtil();\n  }\n\n  public Optional<JobInfo.CreateDisposition> getCreateDisposition() {\n    return createDisposition.toJavaUtil();\n  }\n\n  public boolean isOptimizedEmptyProjection() {\n    return optimizedEmptyProjection;\n  }\n\n  public ImmutableList<JobInfo.SchemaUpdateOption> getLoadSchemaUpdateOptions() {\n    return ImmutableList.copyOf(loadSchemaUpdateOptions);\n  }\n\n  public int getMaxReadRowsRetries() {\n    return maxReadRowsRetries;\n  }\n\n  public boolean getPushAllFilters() {\n    return pushAllFilters;\n  }\n\n  public boolean getEnableModeCheckForSchemaFields() {\n    return enableModeCheckForSchemaFields;\n  }\n\n  // in order to simplify the configuration, the BigQuery client settings are fixed. If needed\n  // we will add configuration properties for them.\n\n  @Override\n  public int getBigQueryClientConnectTimeout() {\n    return sparkBigQueryProxyAndHttpConfig\n        .getHttpConnectTimeout()\n        .orElse(DEFAULT_BIGQUERY_CLIENT_CONNECT_TIMEOUT);\n  }\n\n  @Override\n  public int getBigQueryClientReadTimeout() {\n    return sparkBigQueryProxyAndHttpConfig\n        .getHttpReadTimeout()\n        .orElse(DEFAULT_BIGQUERY_CLIENT_READ_TIMEOUT);\n  }\n\n  @Override\n  public BigQueryProxyConfig getBigQueryProxyConfig() {\n    return sparkBigQueryProxyAndHttpConfig;\n  }\n\n  @Override\n  public Optional<String> getBigQueryStorageGrpcEndpoint() {\n    return bigQueryStorageGrpcEndpoint.toJavaUtil();\n  }\n\n  @Override\n  public Optional<String> getBigQueryHttpEndpoint() {\n    return bigQueryHttpEndpoint.toJavaUtil();\n  }\n\n  @Override\n  public int getCacheExpirationTimeInMinutes() {\n    return cacheExpirationTimeInMinutes;\n  }\n\n  @Override\n  public Optional<Long> getCreateReadSessionTimeoutInSeconds() {\n    return createReadSessionTimeoutInSeconds.toJavaUtil();\n  }\n\n  public PartitionOverwriteMode getPartitionOverwriteModeValue() {\n    return partitionOverwriteModeValue;\n  }\n\n  @Override\n  public int getChannelPoolSize() {\n    return channelPoolSize;\n  }\n\n  @Override\n  public Optional<Integer> getFlowControlWindowBytes() {\n    return flowControlWindowBytes.toJavaUtil();\n  }\n\n  @Override\n  public Priority getQueryJobPriority() {\n    return queryJobPriority;\n  }\n\n  @Override\n  public Optional<String> getKmsKeyName() {\n    return destinationTableKmsKeyName.toJavaUtil();\n  }\n\n  @Override\n  public RetrySettings getBigQueryClientRetrySettings() {\n    int maxAttempts =\n        sparkBigQueryProxyAndHttpConfig.getHttpMaxRetry().orElse(DEFAULT_BIGQUERY_CLIENT_RETRIES);\n    return getRetrySettings(maxAttempts);\n  }\n\n  private static RetrySettings getRetrySettings(int maxAttempts) {\n    return RetrySettings.newBuilder()\n        .setMaxAttempts(maxAttempts)\n        .setTotalTimeout(Duration.ofMinutes(10))\n        .setInitialRpcTimeout(Duration.ofSeconds(60))\n        .setMaxRpcTimeout(Duration.ofMinutes(5))\n        .setRpcTimeoutMultiplier(1.6)\n        .setRetryDelayMultiplier(1.6)\n        .setInitialRetryDelay(Duration.ofMillis(1250))\n        .setMaxRetryDelay(Duration.ofSeconds(5))\n        .build();\n  }\n\n  // for V2 write with BigQuery Storage Write API\n  public RetrySettings getBigqueryDataWriteHelperRetrySettings() {\n    return getRetrySettings(5);\n  }\n\n  public WriteMethod getWriteMethod() {\n    return writeMethod;\n  }\n\n  public boolean isWriteAtLeastOnce() {\n    return writeAtLeastOnce;\n  }\n\n  public Optional<String> getTraceId() {\n    return traceId.toJavaUtil();\n  }\n\n  @Override\n  public ImmutableMap<String, String> getBigQueryJobLabels() {\n    return ImmutableMap.copyOf(bigQueryJobLabels);\n  }\n\n  public boolean getAllowMapTypeConversion() {\n    return allowMapTypeConversion;\n  }\n\n  public long getBigQueryJobTimeoutInMinutes() {\n    return bigQueryJobTimeoutInMinutes;\n  }\n\n  public ImmutableMap<String, String> getBigQueryTableLabels() {\n    return ImmutableMap.copyOf(bigQueryTableLabels);\n  }\n\n  public Optional<String> getGpn() {\n    return gpn.toJavaUtil();\n  }\n\n  public OptionalLong getSnapshotTimeMillis() {\n    return snapshotTimeMillis == null ? OptionalLong.empty() : OptionalLong.of(snapshotTimeMillis);\n  }\n\n  public int getBigNumericDefaultPrecision() {\n    return bigNumericDefaultPrecision;\n  }\n\n  public int getBigNumericDefaultScale() {\n    return bigNumericDefaultScale;\n  }\n\n  public ReadSessionCreatorConfig toReadSessionCreatorConfig() {\n    return new ReadSessionCreatorConfigBuilder()\n        .setViewsEnabled(viewsEnabled)\n        .setMaterializationProject(materializationProject.toJavaUtil())\n        .setMaterializationDataset(materializationDataset.toJavaUtil())\n        .setMaterializationExpirationTimeInMinutes(materializationExpirationTimeInMinutes)\n        .setReadDataFormat(readDataFormat)\n        .setMaxReadRowsRetries(maxReadRowsRetries)\n        .setViewEnabledParamName(VIEWS_ENABLED_OPTION)\n        .setDefaultParallelism(defaultParallelism)\n        .setMaxParallelism(getMaxParallelism())\n        .setPreferredMinParallelism(getPreferredMinParallelism())\n        .setRequestEncodedBase(encodedCreateReadSessionRequest.toJavaUtil())\n        .setBigQueryStorageGrpcEndpoint(bigQueryStorageGrpcEndpoint.toJavaUtil())\n        .setBigQueryHttpEndpoint(bigQueryHttpEndpoint.toJavaUtil())\n        .setBackgroundParsingThreads(numBackgroundThreadsPerStream)\n        .setPushAllFilters(pushAllFilters)\n        .setPrebufferReadRowsResponses(numPrebufferReadRowsResponses)\n        .setStreamsPerPartition(numStreamsPerPartition)\n        .setArrowCompressionCodec(arrowCompressionCodec)\n        .setResponseCompressionCodec(responseCompressionCodec)\n        .setTraceId(traceId.toJavaUtil())\n        .setEnableReadSessionCaching(enableReadSessionCaching)\n        .setReadSessionCacheDurationMins(readSessionCacheDurationMins)\n        .setSnapshotTimeMillis(getSnapshotTimeMillis())\n        .build();\n  }\n\n  public BigQueryClient.ReadTableOptions toReadTableOptions() {\n    return new BigQueryClient.ReadTableOptions() {\n      @Override\n      public TableId tableId() {\n        return SparkBigQueryConfig.this.getTableId();\n      }\n\n      @Override\n      public Optional<String> query() {\n        return SparkBigQueryConfig.this.getQuery();\n      }\n\n      @Override\n      public boolean viewsEnabled() {\n        return SparkBigQueryConfig.this.isViewsEnabled();\n      }\n\n      @Override\n      public String viewEnabledParamName() {\n        return SparkBigQueryConfig.VIEWS_ENABLED_OPTION;\n      }\n\n      @Override\n      public QueryParameterHelper getQueryParameterHelper() {\n        return SparkBigQueryConfig.this.getQueryParameterHelper();\n      }\n\n      @Override\n      public int expirationTimeInMinutes() {\n        return SparkBigQueryConfig.this.getMaterializationExpirationTimeInMinutes();\n      }\n\n      @Override\n      public Optional<String> getKmsKeyName() {\n        return SparkBigQueryConfig.this.getKmsKeyName();\n      }\n    };\n  }\n\n  public enum IntermediateFormat {\n    AVRO(\"avro\", FormatOptions.avro()),\n    AVRO_2_3(\"com.databricks.spark.avro\", FormatOptions.avro()),\n    ORC(\"orc\", FormatOptions.orc()),\n    PARQUET(\"parquet\", FormatOptions.parquet()),\n    PARQUET_LIST_INFERENCE_ENABLED(\n        \"parquet\", ParquetOptions.newBuilder().setEnableListInference(true).build());\n\n    private static Set<String> PERMITTED_DATA_SOURCES =\n        Stream.of(values())\n            .map(IntermediateFormat::getDataSource)\n            .filter(dataSource -> !dataSource.contains(\".\"))\n            .collect(Collectors.toSet());\n\n    private final String dataSource;\n    private final FormatOptions formatOptions;\n\n    IntermediateFormat(String dataSource, FormatOptions formatOptions) {\n      this.dataSource = dataSource;\n      this.formatOptions = formatOptions;\n    }\n\n    public static IntermediateFormat from(\n        String format,\n        String sparkVersion,\n        SQLConf sqlConf,\n        boolean validateSparkAvro,\n        boolean enableListInferenceForParquetMode) {\n      Preconditions.checkArgument(\n          PERMITTED_DATA_SOURCES.contains(format.toLowerCase()),\n          \"Data write format '%s' is not supported. Supported formats are %s\",\n          format,\n          PERMITTED_DATA_SOURCES);\n\n      if (validateSparkAvro && format.equalsIgnoreCase(\"avro\")) {\n        IntermediateFormat intermediateFormat = isSpark24OrAbove(sparkVersion) ? AVRO : AVRO_2_3;\n\n        try {\n          DataSource.lookupDataSource(intermediateFormat.getDataSource(), sqlConf);\n        } catch (Exception ae) {\n          throw missingAvroException(sparkVersion, ae);\n        }\n\n        return intermediateFormat;\n      }\n\n      if (enableListInferenceForParquetMode && format.equalsIgnoreCase(\"parquet\")) {\n        return PARQUET_LIST_INFERENCE_ENABLED;\n      }\n\n      // we have made sure that the format exist in the precondition, so findFirst() will\n      // always find an instance\n      return Stream.of(values())\n          .filter(intermediateFormat -> intermediateFormat.getDataSource().equalsIgnoreCase(format))\n          .findFirst()\n          .get();\n    }\n\n    static boolean isSpark24OrAbove(String sparkVersion) {\n      return sparkVersion.compareTo(\"2.4\") > 0;\n    }\n\n    // could not load the spark-avro data source\n    @VisibleForTesting\n    static IllegalStateException missingAvroException(String sparkVersion, Exception cause) {\n      String avroPackage;\n      if (isSpark24OrAbove(sparkVersion)) {\n        String scalaVersion = scala.util.Properties.versionNumberString();\n        String scalaShortVersion = scalaVersion.substring(0, scalaVersion.lastIndexOf('.'));\n        avroPackage =\n            String.format(\"org.apache.spark:spark-avro_%s:%s\", scalaShortVersion, sparkVersion);\n      } else {\n        avroPackage = \"com.databricks:spark-avro_2.11:4.0.0\";\n      }\n      String message =\n          String.format(\n              \"Avro writing is not supported, as the spark-avro has not been found. \"\n                  + \"Please re-run spark with the --packages %s parameter\",\n              avroPackage);\n\n      return new IllegalStateException(message, cause);\n    }\n\n    public String getDataSource() {\n      return dataSource;\n    }\n\n    public FormatOptions getFormatOptions() {\n      return formatOptions;\n    }\n\n    public String getFileSuffix() {\n      return getFormatOptions().getType().toLowerCase();\n    }\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/SparkBigQueryConnectorModule.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery;\n\nimport com.google.cloud.bigquery.connector.common.BigQueryClient;\nimport com.google.cloud.bigquery.connector.common.BigQueryConfig;\nimport com.google.cloud.bigquery.connector.common.BigQueryJobCompletionListener;\nimport com.google.cloud.bigquery.connector.common.EnvironmentContext;\nimport com.google.cloud.bigquery.connector.common.UserAgentProvider;\nimport com.google.cloud.spark.bigquery.events.BigQueryJobCompletedEvent;\nimport com.google.common.collect.ImmutableMap;\nimport com.google.inject.Binder;\nimport com.google.inject.Module;\nimport com.google.inject.Provides;\nimport com.google.inject.Singleton;\nimport java.util.Map;\nimport java.util.Optional;\nimport org.apache.spark.scheduler.SparkListener;\nimport org.apache.spark.scheduler.SparkListenerApplicationEnd;\nimport org.apache.spark.sql.SparkSession;\nimport org.apache.spark.sql.types.StructType;\nimport org.slf4j.Logger;\nimport org.slf4j.LoggerFactory;\n\npublic class SparkBigQueryConnectorModule implements Module {\n\n  private static Logger logger = LoggerFactory.getLogger(SparkBigQueryConnectorModule.class);\n  private static boolean registeredCleanupListener = false;\n\n  private final SparkSession spark;\n  private final Map<String, String> options;\n  private final Map<String, String> customDefaults;\n  private final Optional<StructType> schema;\n  private final DataSourceVersion dataSourceVersion;\n  private final boolean tableIsMandatory;\n  private final Optional<SparkBigQueryConfig> config;\n\n  public SparkBigQueryConnectorModule(\n      SparkSession spark,\n      Map<String, String> options,\n      Map<String, String> customDefaults,\n      Optional<StructType> schema,\n      DataSourceVersion dataSourceVersion,\n      boolean tableIsMandatory,\n      Optional<SparkBigQueryConfig> config) {\n    this.spark = spark;\n    this.options = options;\n    this.customDefaults = customDefaults;\n    this.schema = schema;\n    this.dataSourceVersion = dataSourceVersion;\n    this.tableIsMandatory = tableIsMandatory;\n    this.config = config;\n  }\n\n  @Override\n  public void configure(Binder binder) {\n    binder.bind(BigQueryConfig.class).toProvider(this::provideSparkBigQueryConfig);\n    if (!registeredCleanupListener) {\n      logger.info(\"Registering cleanup jobs listener, should happen just once\");\n      spark\n          .sparkContext()\n          .addSparkListener(\n              new SparkListener() {\n                @Override\n                public void onApplicationEnd(SparkListenerApplicationEnd applicationEnd) {\n                  logger.info(\"In SparkListener.onApplicationEnd, going to activate cleanup jobs\");\n                  BigQueryClient.runCleanupJobs();\n                }\n              });\n      registeredCleanupListener = true;\n    }\n  }\n\n  @Singleton\n  @Provides\n  public SparkSession provideSparkSession() {\n    return spark;\n  }\n\n  @Singleton\n  @Provides\n  public DataSourceVersion provideDataSourceVersion() {\n    return dataSourceVersion;\n  }\n\n  @Singleton\n  @Provides\n  public SparkBigQueryConfig provideSparkBigQueryConfig() {\n    return config.orElseGet(\n        () ->\n            SparkBigQueryConfig.from(\n                options,\n                ImmutableMap.copyOf(customDefaults),\n                dataSourceVersion,\n                spark,\n                schema,\n                tableIsMandatory));\n  }\n\n  @Singleton\n  @Provides\n  public UserAgentProvider provideUserAgentProvider() {\n    return new SparkBigQueryConnectorUserAgentProvider(\n        dataSourceVersion.toString().toLowerCase(), provideSparkBigQueryConfig().getGpn());\n  }\n\n  @Singleton\n  @Provides\n  public EnvironmentContext provideEnvironmentContext() {\n    return new EnvironmentContext(\n        SparkBigQueryUtil.extractJobLabels(spark.sparkContext().getConf()));\n  }\n\n  @Singleton\n  @Provides\n  public BigQueryJobCompletionListener provideBigQueryJobCompletionListener() {\n    return completedJob ->\n        BigQueryJobCompletedEvent.from(completedJob)\n            .ifPresent(event -> spark.sparkContext().listenerBus().post(event));\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/SparkBigQueryConnectorUserAgentProvider.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery;\n\nimport static java.lang.String.format;\n\nimport com.google.cloud.bigquery.connector.common.GcpUtil;\nimport com.google.cloud.bigquery.connector.common.UserAgentProvider;\nimport com.google.common.annotations.VisibleForTesting;\nimport com.google.gson.JsonObject;\nimport java.util.Optional;\nimport scala.util.Properties;\n\n/** Provides the versions of the client environment in an anonymous way. */\npublic class SparkBigQueryConnectorUserAgentProvider implements UserAgentProvider {\n\n  // getGcpZone() and not getGcpRegion for backwards compatibility\n  @VisibleForTesting\n  static String GCP_REGION_PART =\n      GcpUtil.getGcpZone().map(region -> \" region/\" + region).orElse(\"\");\n\n  @VisibleForTesting\n  static String DATAPROC_IMAGE_PART =\n      Optional.ofNullable(System.getenv(\"DATAPROC_IMAGE_VERSION\"))\n          .map(image -> \" dataproc-image/\" + image)\n          .orElse(\"\");\n\n  // In order to avoid using SparkContext or SparkSession, we are going directly to the source\n  private static String SPARK_VERSION = org.apache.spark.package$.MODULE$.SPARK_VERSION();\n  private static String JAVA_VERSION = System.getProperty(\"java.runtime.version\");\n  private static String SCALA_VERSION = Properties.versionNumberString();\n  static final String USER_AGENT =\n      format(\n          \"spark/%s java/%s scala/%s%s%s\",\n          SPARK_VERSION, JAVA_VERSION, SCALA_VERSION, GCP_REGION_PART, DATAPROC_IMAGE_PART);\n\n  private String dataSourceVersion;\n  private Optional<String> gpn;\n\n  public SparkBigQueryConnectorUserAgentProvider(String dataSourceVersion, Optional<String> gpn) {\n    this.dataSourceVersion = dataSourceVersion;\n    this.gpn = gpn;\n  }\n\n  @Override\n  public String getUserAgent() {\n\n    StringBuilder userAgentBuilder = new StringBuilder();\n    userAgentBuilder\n        .append(\"spark-bigquery-connector/\")\n        .append(SparkBigQueryUtil.CONNECTOR_VERSION);\n    gpn.ifPresent(s -> userAgentBuilder.append(\" (GPN:\").append(s).append(\") \"));\n    userAgentBuilder.append(USER_AGENT).append(\" datasource/\").append(dataSourceVersion);\n\n    return userAgentBuilder.toString();\n  }\n\n  @Override\n  /*\n   * Creates JsonObject of the conenctor info as Json format is used at the receiver of this event.\n   */\n  public String getConnectorInfo() {\n    JsonObject jsonObject = new JsonObject();\n    jsonObject.addProperty(\"connectorVersion\", SparkBigQueryUtil.CONNECTOR_VERSION);\n    jsonObject.addProperty(\"datasource\", dataSourceVersion);\n    jsonObject.addProperty(\"dataprocImage\", DATAPROC_IMAGE_PART);\n    jsonObject.addProperty(\"gcpRegion\", GCP_REGION_PART);\n    jsonObject.addProperty(\"sparkVersion\", SPARK_VERSION);\n    jsonObject.addProperty(\"javaVersion\", JAVA_VERSION);\n    jsonObject.addProperty(\"scalaVersion\", SCALA_VERSION);\n    gpn.ifPresent(s -> jsonObject.addProperty(\"GPN\", s));\n    return jsonObject.toString();\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/SparkBigQueryConnectorVersionProvider.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery;\n\nimport static java.lang.String.format;\n\nimport com.google.cloud.bigquery.connector.common.VersionProvider;\nimport org.apache.spark.SparkContext;\nimport scala.util.Properties;\n\npublic class SparkBigQueryConnectorVersionProvider implements VersionProvider {\n\n  private SparkContext sparkContext;\n\n  public SparkBigQueryConnectorVersionProvider(SparkContext sparkContext) {\n    this.sparkContext = sparkContext;\n  }\n\n  @Override\n  public String getVersion() {\n    return format(\n        \"spark-bigquery-connector/%s spark/%s java/%s scala/%s\",\n        SparkBigQueryUtil.CONNECTOR_VERSION,\n        sparkContext.version(),\n        System.getProperty(\"java.runtime.version\"),\n        Properties.versionNumberString());\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/SparkBigQueryLineageProvider.java",
    "content": "/*\n * Copyright 2024 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery;\n\nimport io.openlineage.spark.extension.OpenLineageExtensionProvider;\nimport io.openlineage.spark.shade.extension.v1.lifecycle.plan.SparkOpenLineageExtensionVisitor;\n\npublic class SparkBigQueryLineageProvider implements OpenLineageExtensionProvider {\n  @Override\n  public String getVisitorClassName() {\n    return SparkOpenLineageExtensionVisitor.class.getCanonicalName();\n  }\n\n  @Override\n  public String shadedPackage() {\n    return \"com.google.cloud.spark.bigquery.repackaged.io.openlineage.spark.shade\";\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/SparkBigQueryProxyAndHttpConfig.java",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery;\n\nimport static com.google.cloud.bigquery.connector.common.BigQueryUtil.firstPresent;\nimport static com.google.common.base.Optional.fromJavaUtil;\nimport static com.google.common.base.Optional.fromNullable;\nimport static com.google.common.base.Preconditions.checkArgument;\n\nimport com.google.cloud.bigquery.connector.common.BigQueryProxyConfig;\nimport com.google.cloud.bigquery.connector.common.BigQueryProxyTransporterBuilder;\nimport com.google.common.annotations.VisibleForTesting;\nimport com.google.common.base.Objects;\nimport com.google.common.base.Strings;\nimport com.google.common.collect.ImmutableMap;\nimport java.io.Serializable;\nimport java.net.URI;\nimport java.net.URISyntaxException;\nimport java.util.Map;\nimport java.util.Optional;\nimport org.apache.hadoop.conf.Configuration;\n\npublic class SparkBigQueryProxyAndHttpConfig implements BigQueryProxyConfig, Serializable {\n\n  // HTTP proxy with address in host:port format\n  public static final String PROXY_ADDRESS_OPTION = \"proxyAddress\";\n  public static final String PROXY_USERNAME_OPTION = \"proxyUsername\";\n  public static final String PROXY_PASSWORD_OPTION = \"proxyPassword\";\n  public static final String HTTP_MAX_RETRY_OPTION = \"httpMaxRetry\";\n  public static final String HTTP_CONNECT_TIMEOUT_OPTION = \"httpConnectTimeout\";\n  public static final String HTTP_READ_TIMEOUT_OPTION = \"httpReadTimeout\";\n\n  // HTTP proxy with address in host:port format\n  public static final String GCS_CONFIG_PROXY_ADDRESS_PROPERTY = \"fs.gs.proxy.address\";\n  public static final String GCS_CONFIG_PROXY_USERNAME_PROPERTY = \"fs.gs.proxy.username\";\n  public static final String GCS_CONFIG_PROXY_PASSWORD_PROPERTY = \"fs.gs.proxy.password\";\n  public static final String GCS_CONFIG_HTTP_MAX_RETRY_PROPERTY = \"fs.gs.http.max.retry\";\n  public static final String GCS_CONFIG_HTTP_CONNECT_TIMEOUT_PROPERTY =\n      \"fs.gs.http.connect-timeout\";\n  public static final String GCS_CONFIG_HTTP_READ_TIMEOUT_PROPERTY = \"fs.gs.http.read-timeout\";\n  private static final long serialVersionUID = 1651319822547810178L;\n\n  private com.google.common.base.Optional<URI> proxyUri;\n  private com.google.common.base.Optional<String> proxyUsername;\n  private com.google.common.base.Optional<String> proxyPassword;\n  private com.google.common.base.Optional<Integer> httpMaxRetry;\n  private com.google.common.base.Optional<Integer> httpConnectTimeout;\n  private com.google.common.base.Optional<Integer> httpReadTimeout;\n\n  @VisibleForTesting\n  SparkBigQueryProxyAndHttpConfig() {\n    // empty\n  }\n\n  @VisibleForTesting\n  public static SparkBigQueryProxyAndHttpConfig from(\n      Map<String, String> options,\n      ImmutableMap<String, String> globalOptions,\n      Configuration hadoopConfiguration)\n      throws IllegalArgumentException {\n    SparkBigQueryProxyAndHttpConfig config = new SparkBigQueryProxyAndHttpConfig();\n\n    com.google.common.base.Optional<String> proxyAddress =\n        getProperty(\n            options,\n            globalOptions,\n            hadoopConfiguration,\n            PROXY_ADDRESS_OPTION,\n            GCS_CONFIG_PROXY_ADDRESS_PROPERTY);\n    config.proxyUri = fromNullable(parseProxyAddress(proxyAddress.or(\"\")));\n    config.proxyUsername =\n        getProperty(\n            options,\n            globalOptions,\n            hadoopConfiguration,\n            PROXY_USERNAME_OPTION,\n            GCS_CONFIG_PROXY_USERNAME_PROPERTY);\n    config.proxyPassword =\n        getProperty(\n            options,\n            globalOptions,\n            hadoopConfiguration,\n            PROXY_PASSWORD_OPTION,\n            GCS_CONFIG_PROXY_PASSWORD_PROPERTY);\n    checkProxyParamsValidity(config);\n\n    config.httpMaxRetry =\n        getProperty(\n                options,\n                globalOptions,\n                hadoopConfiguration,\n                HTTP_MAX_RETRY_OPTION,\n                GCS_CONFIG_HTTP_MAX_RETRY_PROPERTY)\n            .transform(Integer::valueOf);\n    config.httpConnectTimeout =\n        getProperty(\n                options,\n                globalOptions,\n                hadoopConfiguration,\n                HTTP_CONNECT_TIMEOUT_OPTION,\n                GCS_CONFIG_HTTP_CONNECT_TIMEOUT_PROPERTY)\n            .transform(Integer::valueOf);\n    config.httpReadTimeout =\n        getProperty(\n                options,\n                globalOptions,\n                hadoopConfiguration,\n                HTTP_READ_TIMEOUT_OPTION,\n                GCS_CONFIG_HTTP_READ_TIMEOUT_PROPERTY)\n            .transform(Integer::valueOf);\n    checkHttpParamsValidity(config);\n\n    return config;\n  }\n\n  private static void checkProxyParamsValidity(SparkBigQueryProxyAndHttpConfig config)\n      throws IllegalArgumentException {\n    if (!config.proxyUri.isPresent()\n        && (config.proxyUsername.isPresent() || config.proxyPassword.isPresent())) {\n      throw new IllegalArgumentException(\n          \"Please set proxyAddress in order to use a proxy. \"\n              + \"Setting proxyUsername or proxyPassword is not enough\");\n    }\n\n    BigQueryProxyTransporterBuilder.checkProxyParamsValidity(\n        config.getProxyUsername(), config.getProxyPassword());\n  }\n\n  private static void checkHttpParamsValidity(SparkBigQueryProxyAndHttpConfig config)\n      throws IllegalArgumentException {\n    // Not checking for httpConnectTimeout and httpReadTimeout as negative values are allowed for\n    // these parameters.\n    // A negative number is for the default value (20000). And 0 for an infinite timeout.\n    if (config.getHttpMaxRetry().isPresent() && config.getHttpMaxRetry().get() < 0) {\n      throw new IllegalArgumentException(\"Http Max Retry value cannot be negative\");\n    }\n  }\n\n  private static com.google.common.base.Optional<String> getProperty(\n      Map<String, String> options,\n      ImmutableMap<String, String> globalOptions,\n      Configuration hadoopConfiguration,\n      String bqOption,\n      String gcsProperty) {\n    return fromJavaUtil(\n        firstPresent(\n            getFirstOrSecondOption(options, globalOptions, bqOption).toJavaUtil(),\n            fromNullable(hadoopConfiguration.get(gcsProperty)).toJavaUtil()));\n  }\n\n  private static com.google.common.base.Optional<String> getFirstOrSecondOption(\n      Map<String, String> options, ImmutableMap<String, String> globalOptions, String name) {\n    return com.google.common.base.Optional.fromNullable(options.get(name.toLowerCase()))\n        .or(com.google.common.base.Optional.fromNullable(globalOptions.get(name)));\n  }\n\n  @VisibleForTesting\n  static URI parseProxyAddress(String proxyAddress) {\n    if (Strings.isNullOrEmpty(proxyAddress)) {\n      return null;\n    }\n    String uriString = (proxyAddress.contains(\"//\") ? \"\" : \"//\") + proxyAddress;\n    try {\n      URI uri = new URI(uriString);\n      String scheme = uri.getScheme();\n      String host = uri.getHost();\n      int port = uri.getPort();\n      checkArgument(\n          Strings.isNullOrEmpty(scheme) || scheme.matches(\"https?\"),\n          \"Proxy address '%s' has invalid scheme '%s'.\",\n          proxyAddress,\n          scheme);\n      checkArgument(!Strings.isNullOrEmpty(host), \"Proxy address '%s' has no host.\", proxyAddress);\n      checkArgument(port != -1, \"Proxy address '%s' has no port.\", proxyAddress);\n      checkArgument(\n          uri.equals(new URI(scheme, null, host, port, null, null, null)),\n          \"Invalid proxy address '%s'.\",\n          proxyAddress);\n      return uri;\n    } catch (URISyntaxException e) {\n      throw new IllegalArgumentException(\n          String.format(\"Invalid proxy address '%s'.\", proxyAddress), e);\n    }\n  }\n\n  public Optional<URI> getProxyUri() {\n    return proxyUri.toJavaUtil();\n  }\n\n  public Optional<String> getProxyUsername() {\n    return proxyUsername.toJavaUtil();\n  }\n\n  public Optional<String> getProxyPassword() {\n    return proxyPassword.toJavaUtil();\n  }\n\n  Optional<Integer> getHttpMaxRetry() {\n    return httpMaxRetry.toJavaUtil();\n  }\n\n  Optional<Integer> getHttpConnectTimeout() {\n    return httpConnectTimeout.toJavaUtil();\n  }\n\n  Optional<Integer> getHttpReadTimeout() {\n    return httpReadTimeout.toJavaUtil();\n  }\n\n  @Override\n  public boolean equals(Object o) {\n    if (this == o) {\n      return true;\n    }\n    if (!(o instanceof SparkBigQueryProxyAndHttpConfig)) {\n      return false;\n    }\n    SparkBigQueryProxyAndHttpConfig that = (SparkBigQueryProxyAndHttpConfig) o;\n    return Objects.equal(proxyUri, that.proxyUri)\n        && Objects.equal(proxyUsername, that.proxyUsername)\n        && Objects.equal(proxyPassword, that.proxyPassword)\n        && Objects.equal(httpMaxRetry, that.httpMaxRetry)\n        && Objects.equal(httpConnectTimeout, that.httpConnectTimeout)\n        && Objects.equal(httpReadTimeout, that.httpReadTimeout);\n  }\n\n  @Override\n  public int hashCode() {\n    return Objects.hashCode(\n        proxyUri, proxyUsername, proxyPassword, httpMaxRetry, httpConnectTimeout, httpReadTimeout);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/SparkBigQueryUtil.java",
    "content": "/*\n * Copyright 2020 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery;\n\nimport static com.google.cloud.bigquery.connector.common.BigQueryConfigurationUtil.DEFAULT_FALLBACK;\nimport static com.google.cloud.bigquery.connector.common.BigQueryConfigurationUtil.getOptionFromMultipleParams;\n\nimport com.google.cloud.bigquery.JobInfo;\nimport com.google.cloud.bigquery.TableId;\nimport com.google.cloud.bigquery.TableInfo;\nimport com.google.cloud.bigquery.connector.common.BigQueryConfigurationUtil;\nimport com.google.cloud.bigquery.connector.common.BigQueryUtil;\nimport com.google.common.annotations.VisibleForTesting;\nimport com.google.common.base.Preconditions;\nimport com.google.common.collect.ImmutableList;\nimport com.google.common.collect.ImmutableMap;\nimport com.google.common.collect.ImmutableMap.Builder;\nimport com.google.common.collect.ImmutableSet;\nimport java.io.IOException;\nimport java.io.UncheckedIOException;\nimport java.time.Instant;\nimport java.time.LocalDate;\nimport java.util.List;\nimport java.util.Map;\nimport java.util.Optional;\nimport java.util.Properties;\nimport java.util.ServiceLoader;\nimport java.util.UUID;\nimport java.util.concurrent.TimeUnit;\nimport java.util.stream.Stream;\nimport javax.validation.constraints.NotNull;\nimport org.apache.hadoop.conf.Configuration;\nimport org.apache.hadoop.fs.FileSystem;\nimport org.apache.hadoop.fs.Path;\nimport org.apache.spark.SparkConf;\nimport org.apache.spark.sql.SaveMode;\nimport org.apache.spark.sql.SparkSession;\nimport org.apache.spark.sql.internal.SQLConf;\nimport org.apache.spark.sql.sources.Filter;\nimport org.apache.spark.sql.types.Metadata;\n\n/** Spark related utilities */\npublic class SparkBigQueryUtil {\n\n  private static final String SPARK_YARN_TAGS = \"spark.yarn.tags\";\n\n  private static final long MICROS_PER_SECOND = TimeUnit.SECONDS.toMicros(1);\n  private static final long MIN_SECONDS = Math.floorDiv(Long.MIN_VALUE, MICROS_PER_SECOND);\n\n  static final Properties BUILD_PROPERTIES = loadBuildProperties();\n\n  static final String CONNECTOR_VERSION = BUILD_PROPERTIES.getProperty(\"connector.version\");\n\n  private static final ImmutableSet<TypeConverter> typeConverters;\n\n  static {\n    ServiceLoader<TypeConverter> serviceLoader = ServiceLoader.load(TypeConverter.class);\n    typeConverters = ImmutableSet.copyOf(serviceLoader.iterator());\n  }\n\n  private static Properties loadBuildProperties() {\n    try {\n      Properties buildProperties = new Properties();\n      buildProperties.load(\n          SparkBigQueryUtil.class.getResourceAsStream(\"/spark-bigquery-connector.properties\"));\n      return buildProperties;\n    } catch (IOException e) {\n      throw new UncheckedIOException(e);\n    }\n  }\n\n  /**\n   * Optimizing the URI list for BigQuery load, using the Spark specific file prefix and suffix\n   * patterns, based on <code>BigQueryUtil.optimizeLoadUriList()</code>\n   *\n   * @param uris A list of URIs to be loaded by BigQuery load\n   * @return an optimized list of URIs\n   */\n  public static List<String> optimizeLoadUriListForSpark(List<String> uris) {\n    return BigQueryUtil.optimizeLoadUriList(uris, \".*/part-\", \"-[-\\\\w\\\\.]+\");\n  }\n\n  /**\n   * Checks whether temporaryGcsBucket or persistentGcsBucket parameters are present in the config\n   * and creates a org.apache.hadoop.fs.Path object backed by GCS. When the indirect write method in\n   * dsv1 is used, the data is written first to this GCS path and is then loaded into BigQuery\n   *\n   * @param config SparkBigQueryConfig\n   * @param conf Hadoop configuration parameters\n   * @param applicationId A unique identifier for the Spark application\n   * @return org.apache.hadoop.fs.Path object backed by GCS\n   */\n  public static Path createGcsPath(\n      SparkBigQueryConfig config, Configuration conf, String applicationId) {\n    Path gcsPath;\n    try {\n      Preconditions.checkArgument(\n          config.getTemporaryGcsBucket().isPresent() || config.getPersistentGcsBucket().isPresent(),\n          \"Either temporary or persistent GCS bucket must be set\");\n\n      // Throw exception if persistentGcsPath already exists in persistentGcsBucket\n      if (config.getPersistentGcsBucket().isPresent()\n          && config.getPersistentGcsPath().isPresent()) {\n        gcsPath =\n            new Path(\n                String.format(\n                    \"%s/%s\",\n                    getBucketAndScheme(config.getPersistentGcsBucket().get()),\n                    config.getPersistentGcsPath().get()));\n        FileSystem fs = gcsPath.getFileSystem(conf);\n        if (fs.exists(gcsPath)) {\n          throw new IllegalArgumentException(\n              String.format(\n                  \"Path %s already exists in %s bucket\",\n                  config.getPersistentGcsPath().get(), config.getPersistentGcsBucket().get()));\n        }\n      } else if (config.getTemporaryGcsBucket().isPresent()) {\n        gcsPath = getUniqueGcsPath(config.getTemporaryGcsBucket().get(), applicationId, conf);\n      } else {\n        gcsPath = getUniqueGcsPath(config.getPersistentGcsBucket().get(), applicationId, conf);\n      }\n    } catch (IOException e) {\n      throw new UncheckedIOException(e);\n    }\n    return gcsPath;\n  }\n\n  private static Path getUniqueGcsPath(String gcsBucket, String applicationId, Configuration conf)\n      throws IOException {\n    boolean needNewPath = true;\n    Path gcsPath = null;\n    String gcsBucketAndScheme = getBucketAndScheme(gcsBucket);\n    while (needNewPath) {\n      gcsPath =\n          new Path(\n              String.format(\n                  \"%s/.spark-bigquery-%s-%s\",\n                  gcsBucketAndScheme, applicationId, UUID.randomUUID()));\n      FileSystem fs = gcsPath.getFileSystem(conf);\n      needNewPath = fs.exists(gcsPath);\n    }\n\n    return gcsPath;\n  }\n\n  private static String getBucketAndScheme(String gcsBucket) {\n    return gcsBucket.contains(\"://\") ? gcsBucket : \"gs://\" + gcsBucket;\n  }\n\n  public static String getJobId(SQLConf sqlConf) {\n    return getJobIdInternal(\n        sqlConf.getConfString(\"spark.yarn.tags\", \"missing\"),\n        sqlConf.getConfString(\"spark.app.id\", \"generated-\" + UUID.randomUUID()));\n  }\n\n  @VisibleForTesting\n  // try to extract the dataproc job first, if not than use the applicationId\n  static String getJobIdInternal(String yarnTags, String applicationId) {\n    return Stream.of(yarnTags.split(\",\"))\n        .filter(tag -> tag.startsWith(\"dataproc_job_\"))\n        .findFirst()\n        .orElseGet(() -> applicationId);\n  }\n\n  public static JobInfo.WriteDisposition saveModeToWriteDisposition(SaveMode saveMode) {\n    if (saveMode == SaveMode.ErrorIfExists) {\n      return JobInfo.WriteDisposition.WRITE_EMPTY;\n    }\n    // SaveMode.Ignore is handled in the data source level. If it has arrived here it means tha\n    // table does not exist\n    if (saveMode == SaveMode.Append || saveMode == SaveMode.Ignore) {\n      return JobInfo.WriteDisposition.WRITE_APPEND;\n    }\n    if (saveMode == SaveMode.Overwrite) {\n      return JobInfo.WriteDisposition.WRITE_TRUNCATE;\n    }\n    throw new IllegalArgumentException(\"SaveMode \" + saveMode + \" is currently not supported.\");\n  }\n\n  public static TableId parseSimpleTableId(SparkSession spark, Map<String, String> options) {\n    ImmutableMap<String, String> globalOptions =\n        ImmutableMap.copyOf(scalaMapToJavaMap(spark.conf().getAll()));\n    return BigQueryConfigurationUtil.parseSimpleTableId(globalOptions, options);\n  }\n\n  public static long sparkTimestampToBigQuery(Object sparkValue) {\n    if (sparkValue instanceof Long) {\n      return ((Number) sparkValue).longValue();\n    }\n\n    if (sparkValue instanceof Instant) {\n      Instant instant = (Instant) sparkValue;\n      long epochSeconds = instant.getEpochSecond();\n      if (epochSeconds == MIN_SECONDS) {\n        long us = Math.multiplyExact(epochSeconds + 1, MICROS_PER_SECOND);\n        return Math.addExact(\n            us, TimeUnit.NANOSECONDS.toMicros(instant.getNano()) - MICROS_PER_SECOND);\n      } else {\n        long us = Math.multiplyExact(epochSeconds, MICROS_PER_SECOND);\n        return Math.addExact(us, TimeUnit.NANOSECONDS.toMicros(instant.getNano()));\n      }\n    }\n\n    // need to return timestamp in epoch microseconds\n    java.sql.Timestamp timestamp = (java.sql.Timestamp) sparkValue;\n    long epochMillis = timestamp.getTime();\n    int micros = (timestamp.getNanos() / 1000) % 1000;\n    return epochMillis * 1000 + micros;\n  }\n\n  public static int sparkDateToBigQuery(Object sparkValue) {\n    if (sparkValue instanceof Number) {\n      return ((Number) sparkValue).intValue();\n    }\n\n    if (sparkValue instanceof LocalDate) {\n      LocalDate localDate = (LocalDate) sparkValue;\n      return Math.toIntExact(localDate.toEpochDay());\n    }\n\n    java.sql.Date sparkDate = (java.sql.Date) sparkValue;\n    return (int) sparkDate.toLocalDate().toEpochDay();\n  }\n\n  public static String getTableNameFromOptions(Map<String, String> options) {\n    // options.get(\"table\") when the \"table\" option is used, options.get(\"path\") is set when\n    // .load(\"table_name) is used\n    Optional<String> tableParam =\n        getOptionFromMultipleParams(options, ImmutableList.of(\"table\", \"path\"), DEFAULT_FALLBACK)\n            .toJavaUtil();\n    String tableParamStr = tableParam.get().trim().replaceAll(\"\\\\s+\", \" \");\n    TableId tableId = BigQueryUtil.parseTableId(tableParamStr);\n    return BigQueryUtil.friendlyTableName(tableId);\n  }\n\n  // scala version agnostic conversion, that's why no JavaConverters are used\n  public static <K, V> ImmutableMap<K, V> scalaMapToJavaMap(\n      scala.collection.immutable.Map<K, V> map) {\n    ImmutableMap.Builder<K, V> result = ImmutableMap.<K, V>builder();\n    map.foreach(entry -> result.put(entry._1(), entry._2()));\n    return result.build();\n  }\n\n  public static boolean isDataFrameShowMethodInStackTrace() {\n    for (StackTraceElement stackTraceElement : Thread.currentThread().getStackTrace()) {\n      if (stackTraceElement.getClassName().equals(\"org.apache.spark.sql.Dataset\")\n          && stackTraceElement.getMethodName().equals(\"showString\")) {\n        return true;\n      }\n    }\n\n    return false;\n  }\n\n  public static boolean isJson(Metadata metadata) {\n    return metadata.contains(\"sqlType\") && \"JSON\".equals(metadata.getString(\"sqlType\"));\n  }\n\n  public static ImmutableList<Filter> extractPartitionAndClusteringFilters(\n      TableInfo table, ImmutableList<Filter> filters) {\n\n    ImmutableList<String> partitionFields = BigQueryUtil.getPartitionFields(table);\n    ImmutableList<String> clusteringFields = BigQueryUtil.getClusteringFields(table);\n\n    ImmutableList.Builder<String> filterFields = ImmutableList.builder();\n    filterFields.addAll(partitionFields);\n    filterFields.addAll(clusteringFields);\n\n    return filterFields.build().stream()\n        .flatMap(field -> filtersOnField(filters, field))\n        .collect(ImmutableList.toImmutableList());\n  }\n\n  @VisibleForTesting\n  static Stream<Filter> filtersOnField(ImmutableList<Filter> filters, String field) {\n    return filters.stream()\n        .filter(\n            filter ->\n                Stream.of(filter.references()).anyMatch(reference -> reference.equals(field)));\n  }\n\n  public static Stream<TypeConverter> getTypeConverterStream() {\n    return typeConverters.stream();\n  }\n\n  @NotNull\n  public static ImmutableMap<String, String> extractJobLabels(SparkConf sparkConf) {\n    Builder<String, String> labels = ImmutableMap.builder();\n    ImmutableList<String> tags =\n        Stream.of(Optional.ofNullable(sparkConf.get(SPARK_YARN_TAGS, null)))\n            .filter(Optional::isPresent)\n            .flatMap(value -> Stream.of(value.get().split(\",\")))\n            .collect(ImmutableList.toImmutableList());\n    tags.stream()\n        .filter(tag -> tag.startsWith(\"dataproc_job_\"))\n        .findFirst()\n        .ifPresent(\n            tag ->\n                labels.put(\n                    \"dataproc_job_id\",\n                    BigQueryUtil.sanitizeLabelValue(tag.substring(tag.lastIndexOf('_') + 1))));\n    tags.stream()\n        .filter(tag -> tag.startsWith(\"dataproc_uuid_\"))\n        .findFirst()\n        .ifPresent(\n            tag ->\n                labels.put(\n                    \"dataproc_job_uuid\",\n                    BigQueryUtil.sanitizeLabelValue(tag.substring(tag.lastIndexOf('_') + 1))));\n    return labels.build();\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/SparkFilterUtils.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery;\n\nimport static java.lang.String.format;\n\nimport com.google.cloud.bigquery.storage.v1.DataFormat;\nimport com.google.common.collect.ImmutableList;\nimport java.sql.Date;\nimport java.sql.Timestamp;\nimport java.time.Instant;\nimport java.time.LocalDate;\nimport java.time.LocalDateTime;\nimport java.time.format.DateTimeFormatter;\nimport java.util.Arrays;\nimport java.util.Map;\nimport java.util.Optional;\nimport java.util.stream.Collectors;\nimport java.util.stream.Stream;\nimport java.util.stream.StreamSupport;\nimport org.apache.spark.sql.sources.*;\nimport org.apache.spark.sql.types.ArrayType;\nimport org.apache.spark.sql.types.StructField;\nimport org.apache.spark.sql.types.StructType;\n\npublic class SparkFilterUtils {\n\n  private SparkFilterUtils() {}\n\n  // Structs are not handled\n  public static boolean isTopLevelFieldHandled(\n      boolean pushAllFilters,\n      Filter filter,\n      DataFormat readDataFormat,\n      Map<String, StructField> fields) {\n    if (pushAllFilters) {\n      return true;\n    }\n    if (filter instanceof EqualTo) {\n      EqualTo equalTo = (EqualTo) filter;\n      return isFilterWithNamedFieldHandled(\n          pushAllFilters, filter, readDataFormat, fields, equalTo.attribute());\n    }\n    if (filter instanceof EqualNullSafe) {\n      EqualNullSafe equalNullSafe = (EqualNullSafe) filter;\n      return isFilterWithNamedFieldHandled(\n          pushAllFilters, filter, readDataFormat, fields, equalNullSafe.attribute());\n    }\n    if (filter instanceof GreaterThan) {\n      GreaterThan greaterThan = (GreaterThan) filter;\n      return isFilterWithNamedFieldHandled(\n          pushAllFilters, filter, readDataFormat, fields, greaterThan.attribute());\n    }\n    if (filter instanceof GreaterThanOrEqual) {\n      GreaterThanOrEqual greaterThanOrEqual = (GreaterThanOrEqual) filter;\n      return isFilterWithNamedFieldHandled(\n          pushAllFilters, filter, readDataFormat, fields, greaterThanOrEqual.attribute());\n    }\n    if (filter instanceof LessThan) {\n      LessThan lessThan = (LessThan) filter;\n      return isFilterWithNamedFieldHandled(\n          pushAllFilters, filter, readDataFormat, fields, lessThan.attribute());\n    }\n    if (filter instanceof LessThanOrEqual) {\n      LessThanOrEqual lessThanOrEqual = (LessThanOrEqual) filter;\n      return isFilterWithNamedFieldHandled(\n          pushAllFilters, filter, readDataFormat, fields, lessThanOrEqual.attribute());\n    }\n    if (filter instanceof In) {\n      In in = (In) filter;\n      return isFilterWithNamedFieldHandled(\n          pushAllFilters, filter, readDataFormat, fields, in.attribute());\n    }\n    if (filter instanceof IsNull) {\n      IsNull isNull = (IsNull) filter;\n      return isFilterWithNamedFieldHandled(\n          pushAllFilters, filter, readDataFormat, fields, isNull.attribute());\n    }\n    if (filter instanceof IsNotNull) {\n      IsNotNull isNotNull = (IsNotNull) filter;\n      return isFilterWithNamedFieldHandled(\n          pushAllFilters, filter, readDataFormat, fields, isNotNull.attribute());\n    }\n    if (filter instanceof And) {\n      And and = (And) filter;\n      return isTopLevelFieldHandled(pushAllFilters, and.left(), readDataFormat, fields)\n          && isTopLevelFieldHandled(pushAllFilters, and.right(), readDataFormat, fields);\n    }\n    if (filter instanceof Or) {\n      Or or = (Or) filter;\n      return readDataFormat == DataFormat.AVRO\n          && isTopLevelFieldHandled(pushAllFilters, or.left(), readDataFormat, fields)\n          && isTopLevelFieldHandled(pushAllFilters, or.right(), readDataFormat, fields);\n    }\n    if (filter instanceof Not) {\n      Not not = (Not) filter;\n      return isTopLevelFieldHandled(pushAllFilters, not.child(), readDataFormat, fields);\n    }\n    if (filter instanceof StringStartsWith) {\n      StringStartsWith stringStartsWith = (StringStartsWith) filter;\n      return isFilterWithNamedFieldHandled(\n          pushAllFilters, filter, readDataFormat, fields, stringStartsWith.attribute());\n    }\n    if (filter instanceof StringEndsWith) {\n      StringEndsWith stringEndsWith = (StringEndsWith) filter;\n      return isFilterWithNamedFieldHandled(\n          pushAllFilters, filter, readDataFormat, fields, stringEndsWith.attribute());\n    }\n    if (filter instanceof StringContains) {\n      StringContains stringContains = (StringContains) filter;\n      return isFilterWithNamedFieldHandled(\n          pushAllFilters, filter, readDataFormat, fields, stringContains.attribute());\n    }\n\n    throw new IllegalArgumentException(format(\"Invalid filter: %s\", filter));\n  }\n\n  static boolean isFilterWithNamedFieldHandled(\n      boolean pushAllFilters,\n      Filter filter,\n      DataFormat readDataFormat,\n      Map<String, StructField> fields,\n      String fieldName) {\n    return Optional.ofNullable(fields.get(fieldName))\n        .filter(\n            field ->\n                ((field.dataType() instanceof StructType)\n                    || (field.dataType() instanceof ArrayType)))\n        .map(field -> false)\n        .orElse(isHandled(pushAllFilters, filter, readDataFormat));\n  }\n\n  public static boolean isHandled(\n      boolean pushAllFilters, Filter filter, DataFormat readDataFormat) {\n    if (pushAllFilters) {\n      return true;\n    }\n    if (filter instanceof EqualTo\n        || filter instanceof GreaterThan\n        || filter instanceof GreaterThanOrEqual\n        || filter instanceof LessThan\n        || filter instanceof LessThanOrEqual\n        || filter instanceof In\n        || filter instanceof IsNull\n        || filter instanceof IsNotNull\n        || filter instanceof StringStartsWith\n        || filter instanceof StringEndsWith\n        || filter instanceof StringContains\n        || filter instanceof EqualNullSafe) {\n      return true;\n    }\n    if (filter instanceof And) {\n      And and = (And) filter;\n      return isHandled(pushAllFilters, and.left(), readDataFormat)\n          && isHandled(pushAllFilters, and.right(), readDataFormat);\n    }\n    if (filter instanceof Or) {\n      Or or = (Or) filter;\n      return readDataFormat == DataFormat.AVRO\n          && isHandled(pushAllFilters, or.left(), readDataFormat)\n          && isHandled(pushAllFilters, or.right(), readDataFormat);\n    }\n    if (filter instanceof Not) {\n      return isHandled(pushAllFilters, ((Not) filter).child(), readDataFormat);\n    }\n    return false;\n  }\n\n  public static Iterable<Filter> handledFilters(\n      boolean pushAllFilters, DataFormat readDataFormat, Filter... filters) {\n    return handledFilters(pushAllFilters, readDataFormat, ImmutableList.copyOf(filters));\n  }\n\n  public static Iterable<Filter> handledFilters(\n      boolean pushAllFilters, DataFormat readDataFormat, Iterable<Filter> filters) {\n    return StreamSupport.stream(filters.spliterator(), false)\n        .filter(f -> isHandled(pushAllFilters, f, readDataFormat))\n        .collect(Collectors.toList());\n  }\n\n  public static Iterable<Filter> unhandledFilters(\n      boolean pushAllFilters, DataFormat readDataFormat, Filter... filters) {\n    return unhandledFilters(pushAllFilters, readDataFormat, ImmutableList.copyOf(filters));\n  }\n\n  public static Iterable<Filter> unhandledFilters(\n      boolean pushAllFilters, DataFormat readDataFormat, Iterable<Filter> filters) {\n    return StreamSupport.stream(filters.spliterator(), false)\n        .filter(f -> !isHandled(pushAllFilters, f, readDataFormat))\n        .collect(Collectors.toList());\n  }\n\n  public static String getCompiledFilter(\n      boolean pushAllFilters,\n      DataFormat readDataFormat,\n      Optional<String> configFilter,\n      Filter... pushedFilters) {\n    String compiledPushedFilter =\n        compileFilters(\n            handledFilters(pushAllFilters, readDataFormat, ImmutableList.copyOf(pushedFilters)));\n    return Stream.of(\n            configFilter,\n            compiledPushedFilter.isEmpty()\n                ? Optional.<String>empty()\n                : Optional.of(compiledPushedFilter))\n        .filter(Optional::isPresent)\n        .map(Optional::get)\n        .map(filter -> filter.startsWith(\"(\") && filter.endsWith(\")\") ? filter : \"(\" + filter + \")\")\n        .collect(Collectors.joining(\" AND \"));\n  }\n\n  // Mostly copied from JDBCRDD.scala\n  public static String compileFilter(Filter filter) {\n    if (filter instanceof EqualTo) {\n      EqualTo equalTo = (EqualTo) filter;\n      return format(\"%s = %s\", quote(equalTo.attribute()), compileValue(equalTo.value()));\n    }\n    if (filter instanceof EqualNullSafe) {\n      EqualNullSafe equalNullSafe = (EqualNullSafe) filter;\n      String left = quote(equalNullSafe.attribute());\n      String right = compileValue(equalNullSafe.value());\n      return format(\n          \"(%1$s IS NULL AND %2$s IS NULL) OR (%1$s IS NOT NULL AND %2$s IS NOT NULL AND %1$s = %2$s)\",\n          left, right);\n    }\n    if (filter instanceof GreaterThan) {\n      GreaterThan greaterThan = (GreaterThan) filter;\n      return format(\"%s > %s\", quote(greaterThan.attribute()), compileValue(greaterThan.value()));\n    }\n    if (filter instanceof GreaterThanOrEqual) {\n      GreaterThanOrEqual greaterThanOrEqual = (GreaterThanOrEqual) filter;\n      return format(\n          \"%s >= %s\",\n          quote(greaterThanOrEqual.attribute()), compileValue(greaterThanOrEqual.value()));\n    }\n    if (filter instanceof LessThan) {\n      LessThan lessThan = (LessThan) filter;\n      return format(\"%s < %s\", quote(lessThan.attribute()), compileValue(lessThan.value()));\n    }\n    if (filter instanceof LessThanOrEqual) {\n      LessThanOrEqual lessThanOrEqual = (LessThanOrEqual) filter;\n      return format(\n          \"%s <= %s\", quote(lessThanOrEqual.attribute()), compileValue(lessThanOrEqual.value()));\n    }\n    if (filter instanceof In) {\n      In in = (In) filter;\n      return format(\n          \"%s IN %s\",\n          quote(in.attribute()), compileValue(in.values(), /*arrayStart=*/ '(', /*arrayEnd=*/ ')'));\n    }\n    if (filter instanceof IsNull) {\n      IsNull isNull = (IsNull) filter;\n      return format(\"%s IS NULL\", quote(isNull.attribute()));\n    }\n    if (filter instanceof IsNotNull) {\n      IsNotNull isNotNull = (IsNotNull) filter;\n      return format(\"%s IS NOT NULL\", quote(isNotNull.attribute()));\n    }\n    if (filter instanceof And) {\n      And and = (And) filter;\n      return format(\"(%s) AND (%s)\", compileFilter(and.left()), compileFilter(and.right()));\n    }\n    if (filter instanceof Or) {\n      Or or = (Or) filter;\n      return format(\"(%s) OR (%s)\", compileFilter(or.left()), compileFilter(or.right()));\n    }\n    if (filter instanceof Not) {\n      Not not = (Not) filter;\n      return format(\"NOT (%s)\", compileFilter(not.child()));\n    }\n    if (filter instanceof StringStartsWith) {\n      StringStartsWith stringStartsWith = (StringStartsWith) filter;\n      return format(\n          \"%s LIKE '%s%%'\", quote(stringStartsWith.attribute()), escape(stringStartsWith.value()));\n    }\n    if (filter instanceof StringEndsWith) {\n      StringEndsWith stringEndsWith = (StringEndsWith) filter;\n      return format(\n          \"%s LIKE '%%%s'\", quote(stringEndsWith.attribute()), escape(stringEndsWith.value()));\n    }\n    if (filter instanceof StringContains) {\n      StringContains stringContains = (StringContains) filter;\n      return format(\n          \"%s LIKE '%%%s%%'\", quote(stringContains.attribute()), escape(stringContains.value()));\n    }\n\n    throw new IllegalArgumentException(format(\"Invalid filter: %s\", filter));\n  }\n\n  public static String compileFilters(Iterable<Filter> filters) {\n    return StreamSupport.stream(filters.spliterator(), false)\n        .map(SparkFilterUtils::compileFilter)\n        .sorted()\n        .map(filter -> \"(\" + filter + \")\")\n        .collect(Collectors.joining(\" AND \"));\n  }\n\n  /** Converts value to SQL expression. */\n  static String compileValue(Object value) {\n    return compileValue(value, /*arrayStart=*/ '[', /*arrayEnd=*/ ']');\n  }\n\n  /** Converts value to SQL expression customizing array start/end values. */\n  static String compileValue(Object value, char arrayStart, char arrayEnd) {\n    if (value == null) {\n      return null;\n    }\n    if (value instanceof String) {\n      return \"'\" + escape((String) value) + \"'\";\n    }\n    if (value instanceof Date || value instanceof LocalDate) {\n      return \"DATE '\" + value + \"'\";\n    }\n    if (value instanceof Timestamp || value instanceof Instant) {\n      final Instant instant;\n      if (value instanceof Timestamp) {\n        instant = ((Timestamp) value).toInstant();\n      } else {\n        instant = (Instant) value;\n      }\n      // Instant uses ISO-8601 representation.\n      return \"TIMESTAMP '\" + instant.toString() + \"'\";\n    }\n    if (value instanceof LocalDateTime) {\n      DateTimeFormatter formatter = DateTimeFormatter.ofPattern(\"yyyy-MM-dd HH:mm:ss.SSSSSS\");\n      return \"DATETIME '\" + ((LocalDateTime) value).format(formatter) + \"'\";\n    }\n    if (value instanceof Object[]) {\n      return Arrays.stream((Object[]) value)\n          .map(SparkFilterUtils::compileValue)\n          .collect(\n              Collectors.joining(\n                  \", \", Character.toString(arrayStart), Character.toString(arrayEnd)));\n    }\n    return value.toString();\n  }\n\n  static String escape(String value) {\n    return value.replace(\"'\", \"\\\\'\");\n  }\n\n  // Converting BigQuery field name into the quoted field name for BigQuery SQL\n  // foo         -> `foo`\n  // foo.bar     -> `foo`.`bar`\n  // foo.bar.baz -> `foo`.`bar`.`baz`\n  static String quote(String value) {\n    return value.contains(\".\")\n        ? Arrays.stream(value.split(\"\\\\.\")).collect(Collectors.joining(\"`.`\", \"`\", \"`\"))\n        : \"`\" + value + \"`\";\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/SupportedCustomDataType.java",
    "content": "/*\n * Copyright 2020 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery;\n\nimport com.google.common.base.Preconditions;\nimport java.util.Optional;\nimport java.util.stream.Stream;\nimport org.apache.spark.ml.linalg.SQLDataTypes;\nimport org.apache.spark.sql.catalyst.InternalRow;\nimport org.apache.spark.sql.types.DataType;\nimport org.apache.spark.sql.types.UserDefinedType;\n\npublic enum SupportedCustomDataType {\n  SPARK_ML_VECTOR(\"vector\", SQLDataTypes.VectorType()),\n  SPARK_ML_MATRIX(\"matrix\", SQLDataTypes.MatrixType());\n\n  private final String typeMarker;\n  private final UserDefinedType sparkDataType;\n\n  SupportedCustomDataType(String typeMarker, DataType sparkDataType) {\n    this.typeMarker = \"{spark.type=\" + typeMarker + \"}\";\n    this.sparkDataType = (UserDefinedType) sparkDataType;\n  }\n\n  public UserDefinedType getSparkDataType() {\n    return sparkDataType;\n  }\n\n  public String getTypeMarker() {\n    return typeMarker;\n  }\n\n  public DataType getSqlType() {\n    return sparkDataType.sqlType();\n  }\n\n  public InternalRow serialize(Object obj) {\n    return (InternalRow) this.sparkDataType.serialize(obj);\n  }\n\n  public static Optional<SupportedCustomDataType> of(DataType dataType) {\n    Preconditions.checkNotNull(dataType);\n    return Stream.of(values())\n        .filter(supportedCustomDataType -> supportedCustomDataType.sparkDataType.equals(dataType))\n        .findFirst();\n  }\n\n  public static Optional<SupportedCustomDataType> forDescription(String description) {\n    Preconditions.checkNotNull(description, \"description cannot be null\");\n    return Stream.of(values())\n        .filter(dataType -> description.endsWith(dataType.typeMarker))\n        .findFirst();\n  }\n\n  public static DataType toSqlType(DataType dataType) {\n    return SupportedCustomDataType.of(dataType)\n        .map(SupportedCustomDataType::getSqlType)\n        .orElse(dataType);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/SupportsQueryPushdown.java",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\npackage com.google.cloud.spark.bigquery;\n\nimport com.google.cloud.spark.bigquery.direct.BigQueryRDDFactory;\nimport java.util.Optional;\n\npublic interface SupportsQueryPushdown {\n  BigQueryRDDFactory getBigQueryRDDFactory();\n\n  // Spark 3.1 DataSourceV2 connector does not create a Filter node in the logical plan. Instead,\n  // we get all the filters from the ScanBuilder\n  Optional<String> getPushdownFilters();\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/TypeConverter.java",
    "content": "/*\n * Copyright 2023 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery;\n\nimport com.google.cloud.bigquery.LegacySQLTypeName;\nimport com.google.protobuf.DescriptorProtos;\nimport org.apache.spark.sql.types.DataType;\n\npublic interface TypeConverter<T> {\n  DataType toSparkType(LegacySQLTypeName bigQueryType);\n\n  LegacySQLTypeName toBigQueryType(DataType sparkType);\n\n  DescriptorProtos.FieldDescriptorProto.Type toProtoFieldType(DataType sparkType);\n\n  boolean supportsBigQueryType(LegacySQLTypeName bigQueryType);\n\n  boolean supportsSparkType(DataType sparkType);\n\n  T sparkToProtoValue(Object sparkValue);\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/direct/BigQueryPartition.java",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\npackage com.google.cloud.spark.bigquery.direct;\n\nimport org.apache.spark.Partition;\n\npublic class BigQueryPartition implements Partition {\n  private final String stream;\n  private final int index;\n\n  public BigQueryPartition(String stream, int index) {\n    this.stream = stream;\n    this.index = index;\n  }\n\n  public String getStream() {\n    return stream;\n  }\n\n  @Override\n  public int index() {\n    return index;\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/direct/BigQueryRDDContext.java",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\npackage com.google.cloud.spark.bigquery.direct;\n\nimport com.google.cloud.bigquery.Schema;\nimport com.google.cloud.bigquery.connector.common.BigQueryClientFactory;\nimport com.google.cloud.bigquery.connector.common.BigQueryStorageReadRowsTracer;\nimport com.google.cloud.bigquery.connector.common.BigQueryTracerFactory;\nimport com.google.cloud.bigquery.connector.common.BigQueryUtil;\nimport com.google.cloud.bigquery.connector.common.ReadRowsHelper;\nimport com.google.cloud.bigquery.storage.v1.DataFormat;\nimport com.google.cloud.bigquery.storage.v1.ReadRowsRequest;\nimport com.google.cloud.bigquery.storage.v1.ReadRowsResponse;\nimport com.google.cloud.bigquery.storage.v1.ReadSession;\nimport com.google.cloud.spark.bigquery.InternalRowIterator;\nimport com.google.cloud.spark.bigquery.ReadRowsResponseToInternalRowIteratorConverter;\nimport com.google.cloud.spark.bigquery.SchemaConverters;\nimport com.google.cloud.spark.bigquery.SchemaConvertersConfiguration;\nimport com.google.cloud.spark.bigquery.SparkBigQueryConfig;\nimport com.google.cloud.spark.bigquery.metrics.SparkMetricsSource;\nimport com.google.common.base.Joiner;\nimport java.io.Serializable;\nimport java.util.Arrays;\nimport java.util.Iterator;\nimport java.util.List;\nimport java.util.Optional;\nimport org.apache.spark.InterruptibleIterator;\nimport org.apache.spark.Partition;\nimport org.apache.spark.SparkEnv;\nimport org.apache.spark.TaskContext;\nimport org.apache.spark.sql.catalyst.InternalRow;\nimport org.apache.spark.sql.types.StructType;\n\nclass BigQueryRDDContext implements Serializable {\n\n  private static long serialVersionUID = -2219993393692435055L;\n\n  private final Partition[] partitions;\n  private final ReadSession readSession;\n  private final String[] columnsInOrder;\n  private final Schema bqSchema;\n  private final SparkBigQueryConfig options;\n  private final BigQueryClientFactory bigQueryClientFactory;\n  private final BigQueryTracerFactory bigQueryTracerFactory;\n\n  private List<String> streamNames;\n\n  public BigQueryRDDContext(\n      Partition[] parts,\n      ReadSession readSession,\n      Schema bqSchema,\n      String[] columnsInOrder,\n      SparkBigQueryConfig options,\n      BigQueryClientFactory bigQueryClientFactory,\n      BigQueryTracerFactory bigQueryTracerFactory) {\n\n    this.partitions = parts;\n    this.readSession = readSession;\n    this.columnsInOrder = columnsInOrder;\n    this.bigQueryClientFactory = bigQueryClientFactory;\n    this.bigQueryTracerFactory = bigQueryTracerFactory;\n    this.options = options;\n    this.bqSchema = bqSchema;\n    this.streamNames = BigQueryUtil.getStreamNames(readSession);\n  }\n\n  public scala.collection.Iterator<InternalRow> compute(Partition split, TaskContext context) {\n    BigQueryPartition bigQueryPartition = (BigQueryPartition) split;\n    SparkMetricsSource sparkMetricsSource = new SparkMetricsSource();\n    SparkEnv.get().metricsSystem().registerSource(sparkMetricsSource);\n    // Read session metrics are not supported for dsv1\n    BigQueryStorageReadRowsTracer tracer =\n        bigQueryTracerFactory.newReadRowsTracer(\n            Joiner.on(\",\").join(streamNames), sparkMetricsSource, Optional.empty());\n\n    ReadRowsRequest.Builder request =\n        ReadRowsRequest.newBuilder().setReadStream(bigQueryPartition.getStream());\n\n    ReadRowsHelper readRowsHelper =\n        new ReadRowsHelper(\n            bigQueryClientFactory,\n            request,\n            options.toReadSessionCreatorConfig().toReadRowsHelperOptions(),\n            Optional.of(tracer));\n    Iterator<ReadRowsResponse> readRowsResponseIterator = readRowsHelper.readRows();\n\n    StructType schema =\n        options\n            .getSchema()\n            .orElse(\n                SchemaConverters.from(SchemaConvertersConfiguration.from(options))\n                    .toSpark(bqSchema));\n\n    ReadRowsResponseToInternalRowIteratorConverter converter;\n    if (options.getReadDataFormat().equals(DataFormat.AVRO)) {\n      converter =\n          ReadRowsResponseToInternalRowIteratorConverter.avro(\n              bqSchema,\n              Arrays.asList(columnsInOrder),\n              readSession.getAvroSchema().getSchema(),\n              Optional.of(schema),\n              Optional.of(tracer),\n              SchemaConvertersConfiguration.from(options),\n              options.getResponseCompressionCodec());\n    } else {\n      converter =\n          ReadRowsResponseToInternalRowIteratorConverter.arrow(\n              Arrays.asList(columnsInOrder),\n              readSession.getArrowSchema().getSerializedSchema(),\n              Optional.of(schema),\n              Optional.of(tracer),\n              options.getResponseCompressionCodec());\n    }\n\n    return new InterruptibleIterator<InternalRow>(\n        context,\n        new ScalaIterator<InternalRow>(\n            new InternalRowIterator(readRowsResponseIterator, converter, readRowsHelper, tracer)));\n  }\n\n  public Partition[] getPartitions() {\n    return partitions;\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/direct/BigQueryRDDFactory.java",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\npackage com.google.cloud.spark.bigquery.direct;\n\nimport com.google.cloud.bigquery.Field;\nimport com.google.cloud.bigquery.Schema;\nimport com.google.cloud.bigquery.StandardTableDefinition;\nimport com.google.cloud.bigquery.TableDefinition;\nimport com.google.cloud.bigquery.TableId;\nimport com.google.cloud.bigquery.TableInfo;\nimport com.google.cloud.bigquery.connector.common.BigQueryClient;\nimport com.google.cloud.bigquery.connector.common.BigQueryClientFactory;\nimport com.google.cloud.bigquery.connector.common.BigQueryConnectorException;\nimport com.google.cloud.bigquery.connector.common.BigQueryTracerFactory;\nimport com.google.cloud.bigquery.connector.common.BigQueryUtil;\nimport com.google.cloud.bigquery.connector.common.ParameterMode;\nimport com.google.cloud.bigquery.connector.common.QueryParameterHelper;\nimport com.google.cloud.bigquery.connector.common.ReadSessionCreator;\nimport com.google.cloud.bigquery.connector.common.ReadSessionResponse;\nimport com.google.cloud.bigquery.storage.v1.ReadSession;\nimport com.google.cloud.spark.bigquery.SchemaConverters;\nimport com.google.cloud.spark.bigquery.SchemaConvertersConfiguration;\nimport com.google.cloud.spark.bigquery.SparkBigQueryConfig;\nimport com.google.common.annotations.VisibleForTesting;\nimport com.google.common.collect.ImmutableList;\nimport com.google.common.collect.ImmutableMap;\nimport com.google.common.collect.Streams;\nimport java.lang.reflect.Constructor;\nimport java.util.List;\nimport java.util.Set;\nimport java.util.stream.Collectors;\nimport java.util.stream.Stream;\nimport org.apache.spark.Partition;\nimport org.apache.spark.SparkContext;\nimport org.apache.spark.rdd.RDD;\nimport org.apache.spark.sql.SQLContext;\nimport org.apache.spark.sql.catalyst.InternalRow;\nimport org.slf4j.Logger;\nimport org.slf4j.LoggerFactory;\n\n/**\n * Wrapper class for generating BigQueryRDD. Extracted this logic out so that we can reuse it from\n * 1) Dsv1 buildScan 2) Dsv1 pushdown functionality 3) Dsv2 pushdown functionality\n */\npublic class BigQueryRDDFactory {\n\n  private static final Logger log = LoggerFactory.getLogger(BigQueryRDDFactory.class);\n\n  private static final String QUERY_JOB_LABEL = \"query_source\";\n  private static final String QUERY_PUSHDOWN_JOB_LABEL_VALUE = \"spark_query_pushdown\";\n\n  private final BigQueryClient bigQueryClient;\n  private final SparkBigQueryConfig options;\n  private final BigQueryClientFactory bigQueryReadClientFactory;\n  private final BigQueryTracerFactory bigQueryTracerFactory;\n  private final SQLContext sqlContext;\n\n  public BigQueryRDDFactory(\n      BigQueryClient bigQueryClient,\n      BigQueryClientFactory bigQueryReadClientFactory,\n      BigQueryTracerFactory bigQueryTracerFactory,\n      SparkBigQueryConfig options,\n      SQLContext sqlContext) {\n    this.bigQueryClient = bigQueryClient;\n    this.options = options;\n    this.bigQueryReadClientFactory = bigQueryReadClientFactory;\n    this.bigQueryTracerFactory = bigQueryTracerFactory;\n    this.sqlContext = sqlContext;\n  }\n\n  /**\n   * Creates RDD from the SQL string that is passed in. This functionality is invoked from the query\n   * pushdown module\n   */\n  public RDD<InternalRow> buildScanFromSQL(String sql) {\n    log.info(\"Materializing the following sql query to a BigQuery table: {}\", sql);\n\n    TableInfo actualTable =\n        bigQueryClient.materializeQueryToTable(\n            sql,\n            options.getMaterializationExpirationTimeInMinutes(),\n            // Label to add to Query Job indicating that it was invoked as part of query pushdown\n            ImmutableMap.<String, String>builder()\n                .put(QUERY_JOB_LABEL, QUERY_PUSHDOWN_JOB_LABEL_VALUE)\n                .build(),\n            new QueryParameterHelper(ParameterMode.NONE, null, null));\n\n    TableDefinition actualTableDefinition = actualTable.getDefinition();\n\n    // We do require requiredColumns to be passed in for pushdown. If we don't, an\n    // ArrayIndexOutOfBounds\n    // exception is thrown\n    List<String> requiredColumns =\n        actualTableDefinition.getSchema().getFields().stream()\n            .map(Field::getName)\n            .collect(Collectors.toList());\n\n    log.info(\n        \"Querying table {}, requiredColumns=[{}]\",\n        actualTable.getTableId().getProject()\n            + \":\"\n            + actualTable.getTableId().getDataset()\n            + \":\"\n            + actualTable.getTableId().getTable(),\n        requiredColumns.toString());\n\n    ReadSessionCreator readSessionCreator =\n        new ReadSessionCreator(\n            options.toReadSessionCreatorConfig(), bigQueryClient, bigQueryReadClientFactory);\n\n    return (RDD<InternalRow>)\n        createRddFromTable(\n            actualTable.getTableId(),\n            readSessionCreator,\n            requiredColumns.toArray(new String[0]),\n            \"\");\n  }\n\n  // Creates BigQueryRDD from the BigQuery table that is passed in. Note that we return RDD<?>\n  // instead of BigQueryRDD or RDD<InternalRow>. This is because the casting rules in Java are a lot\n  // stricter than Java due to which we cannot go from RDD<InternalRow> to RDD<Row>\n  public RDD<?> createRddFromTable(\n      TableId tableId,\n      ReadSessionCreator readSessionCreator,\n      String[] requiredColumns,\n      String filter) {\n    ReadSessionResponse readSessionResponse =\n        readSessionCreator.create(\n            tableId, ImmutableList.copyOf(requiredColumns), BigQueryUtil.emptyIfNeeded(filter));\n    ReadSession readSession = readSessionResponse.getReadSession();\n    TableInfo actualTable = readSessionResponse.getReadTableInfo();\n\n    List<BigQueryPartition> partitions =\n        Streams.mapWithIndex(\n                readSession.getStreamsList().stream(),\n                (readStream, index) ->\n                    new BigQueryPartition(readStream.getName(), Math.toIntExact(index)))\n            .collect(Collectors.toList());\n\n    log.info(\n        \"Created read session for table '{}': {}\",\n        BigQueryUtil.friendlyTableName(tableId),\n        readSession.getName());\n\n    Set<String> requiredColumnSet = Stream.of(requiredColumns).collect(Collectors.toSet());\n    Schema prunedSchema =\n        Schema.of(\n            SchemaConverters.from(SchemaConvertersConfiguration.from(options))\n                .getSchemaWithPseudoColumns(actualTable).getFields().stream()\n                .filter(f -> requiredColumnSet.contains(f.getName()))\n                .collect(Collectors.toList()));\n\n    return createRDD(\n        sqlContext,\n        partitions.toArray(new BigQueryPartition[0]),\n        readSession,\n        prunedSchema,\n        requiredColumns,\n        options,\n        bigQueryReadClientFactory,\n        bigQueryTracerFactory);\n  }\n\n  // Moved from BigQueryRDD.scanTable\n  @VisibleForTesting\n  RDD<InternalRow> createRDD(\n      SQLContext sqlContext,\n      Partition[] partitions,\n      ReadSession readSession,\n      Schema bqSchema,\n      String[] columnsInOrder,\n      SparkBigQueryConfig options,\n      BigQueryClientFactory bigQueryClientFactory,\n      BigQueryTracerFactory bigQueryTracerFactory) {\n    // Unfortunately we need to use reflection here due to a cyclic dependency issue, and the fact\n    // that RDD constructor dependencies are different between Scala 2.12 and Scala 2.13. In Scala\n    // 2.13 `scala.collection.Seq` is mapped to `scala.collection.immutable.Seq` and this is why we\n    // need two classes each compiled against different Scala version.\n    //\n    // The BigQueryRDD implementations have a compilation dependency on BigQueryPartition (of this\n    // project), while the BigQueryRDDFactory need to initialize them, so we have a cyclic\n    // dependency. In order to solve it, we use reflection to dynamically load the appropriate\n    // BigQueryRDD version.\n    String bigQueryRDDClassName = \"com.google.cloud.spark.bigquery.direct.Scala213BigQueryRDD\";\n    String scalaVersion = scala.util.Properties.versionNumberString();\n    if (scalaVersion.compareTo(\"2.13\") < 0) {\n      // Run uses Scala 2.11/2.12\n      bigQueryRDDClassName = \"com.google.cloud.spark.bigquery.direct.PreScala213BigQueryRDD\";\n    }\n    try {\n      Class<? extends RDD<InternalRow>> clazz =\n          (Class<? extends RDD<InternalRow>>) Class.forName(bigQueryRDDClassName);\n      Constructor<? extends RDD<InternalRow>> constructor =\n          clazz.getConstructor(SparkContext.class, BigQueryRDDContext.class);\n\n      RDD<InternalRow> bigQueryRDD =\n          constructor.newInstance(\n              sqlContext.sparkContext(),\n              new BigQueryRDDContext(\n                  partitions,\n                  readSession,\n                  bqSchema,\n                  columnsInOrder,\n                  options,\n                  bigQueryClientFactory,\n                  bigQueryTracerFactory));\n\n      return bigQueryRDD;\n    } catch (Exception e) {\n      throw new BigQueryConnectorException(\n          String.format(\n              \"Could not initialize a BigQuery RDD class of type [%s}\", bigQueryRDDClassName),\n          e);\n    }\n  }\n\n  public long getNumBytes(TableDefinition tableDefinition) {\n    TableDefinition.Type tableType = tableDefinition.getType();\n    if (TableDefinition.Type.EXTERNAL == tableType\n        || (options.isViewsEnabled()\n            && (TableDefinition.Type.VIEW == tableType\n                || TableDefinition.Type.MATERIALIZED_VIEW == tableType))) {\n      return sqlContext.sparkSession().sessionState().conf().defaultSizeInBytes();\n    } else {\n      StandardTableDefinition standardTableDefinition = (StandardTableDefinition) tableDefinition;\n      return standardTableDefinition.getNumBytes();\n    }\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/direct/DirectBigQueryRelation.java",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\npackage com.google.cloud.spark.bigquery.direct;\n\nimport com.google.cloud.bigquery.TableDefinition;\nimport com.google.cloud.bigquery.TableId;\nimport com.google.cloud.bigquery.TableInfo;\nimport com.google.cloud.bigquery.connector.common.BigQueryClient;\nimport com.google.cloud.bigquery.connector.common.BigQueryClientFactory;\nimport com.google.cloud.bigquery.connector.common.BigQueryTracerFactory;\nimport com.google.cloud.bigquery.connector.common.BigQueryUtil;\nimport com.google.cloud.bigquery.connector.common.ReadSessionCreator;\nimport com.google.cloud.spark.bigquery.BigQueryRelation;\nimport com.google.cloud.spark.bigquery.SparkBigQueryConfig;\nimport com.google.cloud.spark.bigquery.SparkFilterUtils;\nimport com.google.cloud.spark.bigquery.write.BigQueryInsertableRelationBase;\nimport com.google.cloud.spark.bigquery.write.CreatableRelationProviderHelper;\nimport com.google.common.collect.ImmutableList;\nimport com.google.common.collect.Iterables;\nimport java.io.Serializable;\nimport java.util.Arrays;\nimport java.util.Objects;\nimport java.util.Optional;\nimport java.util.stream.Collectors;\nimport org.apache.spark.rdd.RDD;\nimport org.apache.spark.sql.Dataset;\nimport org.apache.spark.sql.Row;\nimport org.apache.spark.sql.SQLContext;\nimport org.apache.spark.sql.SaveMode;\nimport org.apache.spark.sql.catalyst.InternalRow;\nimport org.apache.spark.sql.sources.Filter;\nimport org.apache.spark.sql.sources.InsertableRelation;\nimport org.apache.spark.sql.sources.PrunedFilteredScan;\nimport org.apache.spark.sql.sources.PrunedScan;\nimport org.apache.spark.sql.sources.TableScan;\nimport org.slf4j.Logger;\nimport org.slf4j.LoggerFactory;\nimport scala.Function1;\nimport scala.runtime.AbstractFunction1;\n\npublic class DirectBigQueryRelation extends BigQueryRelation\n    implements TableScan, PrunedScan, PrunedFilteredScan, InsertableRelation {\n\n  private final SparkBigQueryConfig options;\n  private final TableInfo table;\n  private final BigQueryClient bigQueryClient;\n  private final BigQueryClientFactory bigQueryReadClientFactory;\n  private final BigQueryTracerFactory bigQueryTracerFactory;\n  private final SQLContext sqlContext;\n  private final TableDefinition defaultTableDefinition;\n  private final BigQueryRDDFactory bigQueryRDDFactory;\n\n  private String compiledFilter = \"\";\n\n  public static int emptyRowRDDsCreated = 0;\n  private static final Logger log = LoggerFactory.getLogger(DirectBigQueryRelation.class);\n\n  public DirectBigQueryRelation(\n      SparkBigQueryConfig options,\n      TableInfo table,\n      BigQueryClient bigQueryClient,\n      BigQueryClientFactory bigQueryReadClientFactory,\n      BigQueryTracerFactory bigQueryTracerFactory,\n      SQLContext sqlContext) {\n    super(options, table, sqlContext);\n    this.options = options;\n    this.table = table;\n    this.bigQueryClient = bigQueryClient;\n    this.bigQueryReadClientFactory = bigQueryReadClientFactory;\n    this.bigQueryTracerFactory = bigQueryTracerFactory;\n    this.sqlContext = sqlContext;\n    this.defaultTableDefinition = table.getDefinition();\n    this.bigQueryRDDFactory =\n        new BigQueryRDDFactory(\n            bigQueryClient, bigQueryReadClientFactory, bigQueryTracerFactory, options, sqlContext);\n  }\n\n  @Override\n  public boolean needConversion() {\n    return false;\n  }\n\n  @Override\n  public long sizeInBytes() {\n    return bigQueryRDDFactory.getNumBytes(defaultTableDefinition);\n  }\n\n  @Override\n  public RDD<Row> buildScan() {\n    return buildScan(schema().fieldNames());\n  }\n\n  @Override\n  public RDD<Row> buildScan(String[] requiredColumns) {\n    return buildScan(requiredColumns, new Filter[0]);\n  }\n\n  @Override\n  public RDD<Row> buildScan(String[] requiredColumns, Filter[] filters) {\n    compiledFilter = getCompiledFilter(filters);\n    log.info(\n        \"|Querying table {}, parameters sent from Spark:\"\n            + \"|requiredColumns=[{}],\"\n            + \"|filter=[{}]\",\n        getTableNameForLogging(),\n        String.join(\",\", requiredColumns),\n        compiledFilter);\n    ReadSessionCreator readSessionCreator =\n        new ReadSessionCreator(\n            options.toReadSessionCreatorConfig(), bigQueryClient, bigQueryReadClientFactory);\n    if (options.isOptimizedEmptyProjection() && requiredColumns.length == 0) {\n      TableInfo actualTable =\n          readSessionCreator.getActualTable(\n              table,\n              ImmutableList.copyOf(requiredColumns),\n              BigQueryUtil.emptyIfNeeded(compiledFilter));\n      return (RDD<Row>)\n          generateEmptyRowRDD(\n              actualTable, readSessionCreator.isInputTableAView(table) ? \"\" : compiledFilter);\n    } else if (requiredColumns.length == 0) {\n      log.debug(\"Not using optimized empty projection\");\n    }\n\n    return (RDD<Row>)\n        bigQueryRDDFactory.createRddFromTable(\n            getTableId(), readSessionCreator, requiredColumns, compiledFilter);\n  }\n\n  @Override\n  public Filter[] unhandledFilters(Filter[] filters) {\n    // If a manual filter has been specified tell Spark they are all unhandled\n    if (options.getFilter().isPresent()) {\n      return filters;\n    }\n    log.debug(\n        \"unhandledFilters: {}\",\n        Arrays.stream(filters).map(f -> f.toString()).collect(Collectors.joining(\" \")));\n    return Iterables.toArray(\n        SparkFilterUtils.unhandledFilters(\n            options.getPushAllFilters(),\n            options.getReadDataFormat(),\n            ImmutableList.copyOf(filters)),\n        Filter.class);\n  }\n\n  public BigQueryRDDFactory getBigQueryRDDFactory() {\n    return this.bigQueryRDDFactory;\n  }\n\n  // VisibleForTesting\n  String getCompiledFilter(Filter[] filters) {\n    if (options.isCombinePushedDownFilters()) {\n      // new behaviour, fixing\n      // https://github.com/GoogleCloudPlatform/spark-bigquery-connector/issues/74\n      return SparkFilterUtils.getCompiledFilter(\n          options.getPushAllFilters(), options.getReadDataFormat(), options.getFilter(), filters);\n    } else {\n      // old behaviour, kept for backward compatibility\n      // If a manual filter has been specified do not push down anything.\n      return options\n          .getFilter()\n          .orElse(\n              SparkFilterUtils.compileFilters(\n                  SparkFilterUtils.handledFilters(\n                      options.getPushAllFilters(),\n                      options.getReadDataFormat(),\n                      ImmutableList.copyOf(filters))));\n    }\n  }\n\n  private RDD<?> generateEmptyRowRDD(TableInfo tableInfo, String filter) {\n    emptyRowRDDsCreated += 1;\n    Optional<String> optionalFilter =\n        (filter.length() == 0) ? Optional.empty() : Optional.of(filter);\n    long numberOfRows = bigQueryClient.calculateTableSize(tableInfo, optionalFilter);\n\n    Function1<Object, InternalRow> objectToInternalRowConverter =\n        new ObjectToInternalRowConverter();\n\n    log.info(\"Used optimized BQ count(*) path. Count: {}\", numberOfRows);\n    return sqlContext\n        .sparkContext()\n        .range(0, numberOfRows, 1, sqlContext.sparkContext().defaultParallelism())\n        .map(\n            objectToInternalRowConverter, scala.reflect.ClassTag$.MODULE$.apply(InternalRow.class));\n  }\n\n  @Override\n  public void insert(Dataset<Row> data, boolean overwrite) {\n    SaveMode mode = overwrite ? SaveMode.Overwrite : SaveMode.Append;\n    BigQueryInsertableRelationBase bigQueryInsertableRelation =\n        new CreatableRelationProviderHelper()\n            .createBigQueryInsertableRelation(sqlContext, data.schema(), mode, options);\n    bigQueryInsertableRelation.insert(data, overwrite);\n  }\n\n  private static class ObjectToInternalRowConverter extends AbstractFunction1<Object, InternalRow>\n      implements Serializable {\n\n    private static final long serialVersionUID = 8504174848470344221L;\n\n    @Override\n    public InternalRow apply(Object v1) {\n      return InternalRow.empty();\n    }\n  }\n\n  static String toSqlTableReference(TableId tableId) {\n    return tableId.getProject() + '.' + tableId.getDataset() + '.' + tableId.getTable();\n  }\n\n  @Override\n  public boolean equals(Object o) {\n    if (this == o) {\n      return true;\n    }\n\n    if (o == null || getClass() != o.getClass()) {\n      return false;\n    }\n\n    DirectBigQueryRelation that = (DirectBigQueryRelation) o;\n    return getTableId().equals(that.getTableId())\n        && schema().equals(that.schema())\n        && // compare Spark schemas to ignore field ids\n        compiledFilter.equals(that.compiledFilter);\n  }\n\n  @Override\n  public int hashCode() {\n    return Objects.hash(getTableId(), schema(), compiledFilter);\n  }\n\n  @Override\n  public String toString() {\n    return \"DirectBigQueryRelation[\" + getTableNameForLogging() + \"]\";\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/direct/Scala213BigQueryRDD.java",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\npackage com.google.cloud.spark.bigquery.direct;\n\nimport org.apache.spark.Dependency;\nimport org.apache.spark.Partition;\nimport org.apache.spark.SparkContext;\nimport org.apache.spark.TaskContext;\nimport org.apache.spark.rdd.RDD;\nimport org.apache.spark.sql.catalyst.InternalRow;\nimport scala.collection.immutable.Seq;\nimport scala.collection.immutable.Seq$;\n\n// This method relies on the scala.Seq alias, which is different in Scala 2.12 and 2.13. In Scala\n// 2.12 scala.Seq points to scala.collection.Seq whereas in Scala 2.13 it points to\n// scala.collection.immutable.Seq.\nclass Scala213BigQueryRDD extends RDD<InternalRow> {\n\n  // Added suffix so that CPD wouldn't mark as duplicate\n  private final BigQueryRDDContext ctx213;\n\n  public Scala213BigQueryRDD(SparkContext sparkContext, BigQueryRDDContext ctx) {\n    super(\n        sparkContext,\n        (Seq<Dependency<?>>) Seq$.MODULE$.<Dependency<?>>newBuilder().result(),\n        scala.reflect.ClassTag$.MODULE$.apply(InternalRow.class));\n\n    this.ctx213 = ctx;\n  }\n\n  @Override\n  public scala.collection.Iterator<InternalRow> compute(Partition split, TaskContext context) {\n    return ctx213.compute(split, context);\n  }\n\n  @Override\n  public Partition[] getPartitions() {\n    return ctx213.getPartitions();\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/direct/ScalaIterator.java",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.direct;\n\nimport java.util.Iterator;\nimport scala.collection.AbstractIterator;\n\n// Scala version agnostic conversion\nclass ScalaIterator<T> extends AbstractIterator<T> {\n\n  private Iterator<T> underlying;\n\n  public ScalaIterator(Iterator<T> underlying) {\n    this.underlying = underlying;\n  }\n\n  @Override\n  public boolean hasNext() {\n    return underlying.hasNext();\n  }\n\n  @Override\n  public T next() {\n    return underlying.next();\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/events/BigQueryJobCompletedEvent.java",
    "content": "/*\n * Copyright 2023 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.events;\n\nimport com.google.cloud.bigquery.JobConfiguration;\nimport com.google.cloud.bigquery.JobId;\nimport com.google.cloud.bigquery.JobInfo;\nimport com.google.cloud.bigquery.JobStatus;\nimport com.google.common.base.Preconditions;\nimport java.io.Serializable;\nimport java.util.Optional;\nimport org.apache.spark.scheduler.SparkListenerEvent;\n\npublic abstract class BigQueryJobCompletedEvent implements SparkListenerEvent, Serializable {\n\n  private static final long serialVersionUID = 5831270570484516631L;\n  protected final JobInfo jobInfo;\n\n  protected BigQueryJobCompletedEvent(JobInfo jobInfo, JobConfiguration.Type expectedType) {\n    Preconditions.checkArgument(\n        expectedType.equals(jobInfo.getConfiguration().getType()),\n        \"Created event of the wrong type, expected to be \"\n            + expectedType\n            + \", got \"\n            + jobInfo.getConfiguration().getType());\n    this.jobInfo = jobInfo;\n  }\n\n  public static Optional<BigQueryJobCompletedEvent> from(JobInfo completedJob) {\n    switch (completedJob.getConfiguration().getType()) {\n      case QUERY:\n        return Optional.of(new QueryJobCompletedEvent(completedJob));\n      case LOAD:\n        return Optional.of(new LoadJobCompletedEvent(completedJob));\n      default:\n        return Optional.empty();\n    }\n  }\n\n  public JobInfo getJobInfo() {\n    return jobInfo;\n  }\n\n  public String getEtag() {\n    return jobInfo.getEtag();\n  }\n\n  public String getGeneratedId() {\n    return jobInfo.getGeneratedId();\n  }\n\n  public JobId getJobId() {\n    return jobInfo.getJobId();\n  }\n\n  public String getSelfLink() {\n    return jobInfo.getSelfLink();\n  }\n\n  public JobStatus getStatus() {\n    return jobInfo.getStatus();\n  }\n\n  public String getUserEmail() {\n    return jobInfo.getUserEmail();\n  }\n\n  @Override\n  public boolean logEvent() {\n    return false;\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/events/LoadJobCompletedEvent.java",
    "content": "/*\n * Copyright 2023 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.events;\n\nimport com.google.cloud.bigquery.JobConfiguration.Type;\nimport com.google.cloud.bigquery.JobInfo;\nimport com.google.cloud.bigquery.JobStatistics;\nimport com.google.cloud.bigquery.LoadJobConfiguration;\n\npublic class LoadJobCompletedEvent extends BigQueryJobCompletedEvent {\n\n  public LoadJobCompletedEvent(JobInfo jobInfo) {\n    super(jobInfo, Type.LOAD);\n  }\n\n  public LoadJobConfiguration getLoadJobConfiguration() {\n    return jobInfo.getConfiguration();\n  }\n\n  public JobStatistics.LoadStatistics getLoadJobStatistics() {\n    return jobInfo.getStatistics();\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/events/QueryJobCompletedEvent.java",
    "content": "/*\n * Copyright 2023 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.events;\n\nimport com.google.cloud.bigquery.JobConfiguration.Type;\nimport com.google.cloud.bigquery.JobInfo;\nimport com.google.cloud.bigquery.JobStatistics;\nimport com.google.cloud.bigquery.QueryJobConfiguration;\n\npublic class QueryJobCompletedEvent extends BigQueryJobCompletedEvent {\n\n  public QueryJobCompletedEvent(JobInfo jobInfo) {\n    super(jobInfo, Type.QUERY);\n  }\n\n  public QueryJobConfiguration getQueryJobConfiguration() {\n    return jobInfo.getConfiguration();\n  }\n\n  public JobStatistics.QueryStatistics getQueryJobStatistics() {\n    return jobInfo.getStatistics();\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/examples/JavaShakespeare.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.examples;\n\nimport java.io.PrintStream;\nimport org.apache.spark.sql.Dataset;\nimport org.apache.spark.sql.Row;\nimport org.apache.spark.sql.SparkSession;\n\npublic class JavaShakespeare {\n\n  public static void main(String[] args) {\n    SparkSession spark = SparkSession.builder().appName(\"spark-bigquery-demo\").getOrCreate();\n\n    String outputBigqueryTable = \"wordcount_dataset.wordcount_output\";\n    if (args.length == 1) {\n      outputBigqueryTable = args[0];\n    } else if (args.length > 1) {\n      usage();\n    }\n\n    // Use the Cloud Storage bucket for temporary BigQuery export data used\n    // by the connector. This assumes the Cloud Storage connector for\n    // Hadoop is configured.\n    String bucket = spark.sparkContext().hadoopConfiguration().get(\"fs.gs.system.bucket\");\n    spark.conf().set(\"temporaryGcsBucket\", bucket);\n\n    // Load data in from BigQuery.\n    Dataset<Row> wordsDF =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"table\", \"bigquery-public-data.samples.shakespeare\")\n            .load()\n            .cache();\n\n    wordsDF.show();\n    wordsDF.printSchema();\n    wordsDF.createOrReplaceTempView(\"words\");\n\n    // Perform word count.\n    Dataset<Row> wordCountDF =\n        spark.sql(\"SELECT word, SUM(word_count) AS word_count FROM words GROUP BY word\");\n\n    wordCountDF.show();\n    wordCountDF.printSchema();\n\n    // Saving the data to BigQuery\n    wordCountDF.write().format(\"bigquery\").option(\"table\", outputBigqueryTable).save();\n  }\n\n  private static void usage() {\n    PrintStream out = System.out;\n    out.println(\"usage: spark [OUTPUT_BIGQUERY_TABLE]\");\n    out.println(\"[OUTPUT_BIGQUERY_TABLE]       Set the output bigquery table to \");\n    out.println(\"                              OUTPUT_BIGQUERY_TABLE. By default the location\");\n    out.println(\"                              is wordcount_dataset.wordcount_output\");\n    System.exit(1);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/metrics/DataOrigin.java",
    "content": "/*\n * Copyright 2024 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.metrics;\n\npublic enum DataOrigin {\n  NOT_SPECIFIED,\n  TABLE,\n  BIGLAKE,\n  VIEW,\n  QUERY\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/metrics/SparkBigQueryConnectorMetricsUtils.java",
    "content": "/*\n * Copyright 2023 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.metrics;\n\nimport com.google.cloud.spark.bigquery.SparkBigQueryConfig;\nimport java.lang.reflect.Method;\nimport java.util.Optional;\nimport org.apache.spark.SparkContext;\nimport org.apache.spark.scheduler.SparkListenerEvent;\nimport org.slf4j.Logger;\nimport org.slf4j.LoggerFactory;\n\npublic class SparkBigQueryConnectorMetricsUtils {\n  private static final Logger logger =\n      LoggerFactory.getLogger(SparkBigQueryConnectorMetricsUtils.class);\n\n  public static void postInputFormatEvent(SparkContext sparkContext) {\n    try {\n      Class<?> eventClass = Class.forName(\"com.google.cloud.spark.events.InputFormatEvent\");\n\n      sparkContext\n          .listenerBus()\n          .post(\n              (SparkListenerEvent)\n                  eventClass.getConstructor(String.class, long.class).newInstance(\"bigquery\", -1L));\n    } catch (ReflectiveOperationException ignored) {\n      logger.debug(\"spark.events.InputFormatEvent library not in class path\");\n    }\n  }\n\n  public static void postConnectorVersion(SparkContext sparkContext, String connectorVersion) {\n\n    try {\n      Class<?> eventBuilderClass =\n          Class.forName(\n              \"com.google.cloud.spark.events.BigQueryConnectorVersionEvent$BigQueryConnectorVersionEventBuilder\");\n      Method buildMethod = eventBuilderClass.getDeclaredMethod(\"build\");\n\n      sparkContext\n          .listenerBus()\n          .post(\n              (SparkListenerEvent)\n                  buildMethod.invoke(\n                      eventBuilderClass\n                          .getDeclaredConstructor(String.class)\n                          .newInstance(connectorVersion)));\n    } catch (ReflectiveOperationException ignored) {\n      logger.debug(\"spark.events.BigQueryConnectorVersionEvent library not in class path\");\n    }\n  }\n\n  public static void postWriteSessionMetrics(\n      long timestamp,\n      SparkBigQueryConfig.WriteMethod writeMethod,\n      long bytesWritten,\n      Optional<SparkBigQueryConfig.IntermediateFormat> intermediateDataFormat,\n      SparkContext sparkContext) {\n    try {\n      // Reflection is used here to load classes in spark events jar which is google\n      // internal and not available during complie time.\n      Class<?> eventBuilderClass =\n          Class.forName(\n              \"com.google.cloud.spark.events.SparkBigQueryConnectorWriteEvent$SparkBigQueryConnectorWriteEventBuilder\");\n\n      Object builderInstance =\n          eventBuilderClass.getDeclaredConstructor(long.class).newInstance(timestamp);\n      eventBuilderClass\n          .getMethod(\"setBytesWritten\", long.class)\n          .invoke(builderInstance, bytesWritten);\n\n      if (intermediateDataFormat.isPresent()) {\n        Class<?> dataFormatEnum = Class.forName(\"com.google.cloud.spark.events.DataFormat\");\n        Object[] dataFormatEnumConstants = dataFormatEnum.getEnumConstants();\n        Object generatedDataFormatEnumValue = dataFormatEnumConstants[0];\n        for (Object constant : dataFormatEnumConstants) {\n          Method nameMethod = constant.getClass().getMethod(\"name\");\n          String name = (String) nameMethod.invoke(constant);\n          if (name.equalsIgnoreCase(intermediateDataFormat.get().getDataSource())) {\n            generatedDataFormatEnumValue = constant;\n            break;\n          }\n        }\n        eventBuilderClass\n            .getMethod(\"setIntermediateDataFormat\", dataFormatEnum)\n            .invoke(builderInstance, generatedDataFormatEnumValue);\n      }\n\n      Class<?> dataWriteMethodEnum = Class.forName(\"com.google.cloud.spark.events.DataWriteMethod\");\n      Object[] dataWriteMethodConstants = dataWriteMethodEnum.getEnumConstants();\n      Object generatedDataWriteMethodEnumValue = dataWriteMethodConstants[0];\n      for (Object constant : dataWriteMethodConstants) {\n        Method nameMethod = constant.getClass().getMethod(\"name\");\n        String name = (String) nameMethod.invoke(constant);\n        if (name.equalsIgnoreCase(writeMethod.toString())) {\n          generatedDataWriteMethodEnumValue = constant;\n          break;\n        }\n      }\n      eventBuilderClass\n          .getMethod(\"setWriteMethod\", dataWriteMethodEnum)\n          .invoke(builderInstance, generatedDataWriteMethodEnumValue);\n\n      Method buildMethod = eventBuilderClass.getDeclaredMethod(\"build\");\n\n      sparkContext.listenerBus().post((SparkListenerEvent) buildMethod.invoke(builderInstance));\n\n    } catch (ReflectiveOperationException ex) {\n      logger.debug(\"spark.events.SparkBigQueryConnectorWriteEvent library not in class path\");\n    }\n  }\n\n  public static String getAccumulatorNameForMetric(String metricName, String sessionName) {\n    return String.format(\"%s-%s\", sessionName, metricName);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/metrics/SparkBigQueryReadSessionMetrics.java",
    "content": "/*\n * Copyright 2023 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.metrics;\n\nimport com.google.cloud.bigquery.connector.common.ReadSessionMetrics;\nimport com.google.cloud.bigquery.storage.v1.DataFormat;\nimport com.google.cloud.bigquery.storage.v1.ReadSession;\nimport com.google.common.base.Objects;\nimport java.io.Serializable;\nimport java.lang.reflect.Method;\nimport org.apache.spark.scheduler.SparkListener;\nimport org.apache.spark.scheduler.SparkListenerEvent;\nimport org.apache.spark.scheduler.SparkListenerJobEnd;\nimport org.apache.spark.sql.SparkSession;\nimport org.apache.spark.util.LongAccumulator;\nimport org.slf4j.Logger;\nimport org.slf4j.LoggerFactory;\n\npublic class SparkBigQueryReadSessionMetrics extends SparkListener\n    implements Serializable, ReadSessionMetrics {\n  private static final String BYTES_READ = \"bytesRead\";\n  private static final String ROWS_READ = \"rowsRead\";\n  private static final String PARSE_TIME = \"parseTime\";\n  private static final String SCAN_TIME = \"scanTime\";\n  private static final long serialVersionUID = -8188694570364436143L;\n  private final LongAccumulator bytesReadAccumulator;\n  public final LongAccumulator rowsReadAccumulator;\n  private final LongAccumulator scanTimeAccumulator;\n  private final LongAccumulator parseTimeAccumulator;\n  private final String sessionId;\n  private final long timestamp;\n  private final DataFormat readDataFormat;\n  private final DataOrigin dataOrigin;\n  public long numReadStreams;\n\n  private static final Logger logger =\n      LoggerFactory.getLogger(SparkBigQueryReadSessionMetrics.class);\n\n  private SparkBigQueryReadSessionMetrics(\n      SparkSession sparkSession,\n      String sessionName,\n      long timestamp,\n      DataFormat readDataFormat,\n      DataOrigin dataOrigin,\n      long numReadStreams) {\n    this.sessionId = sessionName;\n    this.timestamp = timestamp;\n    this.readDataFormat = readDataFormat;\n    this.dataOrigin = dataOrigin;\n    this.numReadStreams = numReadStreams;\n\n    this.bytesReadAccumulator =\n        sparkSession\n            .sparkContext()\n            .longAccumulator(\n                SparkBigQueryConnectorMetricsUtils.getAccumulatorNameForMetric(\n                    BYTES_READ, sessionName));\n    this.rowsReadAccumulator =\n        sparkSession\n            .sparkContext()\n            .longAccumulator(\n                SparkBigQueryConnectorMetricsUtils.getAccumulatorNameForMetric(\n                    ROWS_READ, sessionName));\n    this.scanTimeAccumulator =\n        sparkSession\n            .sparkContext()\n            .longAccumulator(\n                SparkBigQueryConnectorMetricsUtils.getAccumulatorNameForMetric(\n                    SCAN_TIME, sessionName));\n    this.parseTimeAccumulator =\n        sparkSession\n            .sparkContext()\n            .longAccumulator(\n                SparkBigQueryConnectorMetricsUtils.getAccumulatorNameForMetric(\n                    PARSE_TIME, sessionName));\n  }\n\n  @Override\n  public int hashCode() {\n    return Objects.hashCode(\n        this.sessionId,\n        this.bytesReadAccumulator.id(),\n        this.rowsReadAccumulator.id(),\n        this.parseTimeAccumulator.id(),\n        this.scanTimeAccumulator.id());\n  }\n\n  @Override\n  public boolean equals(Object o) {\n    if (o instanceof SparkBigQueryReadSessionMetrics) {\n      SparkBigQueryReadSessionMetrics listenerObject = (SparkBigQueryReadSessionMetrics) o;\n      return listenerObject.sessionId.equals(this.sessionId)\n          && listenerObject.bytesReadAccumulator.id() == this.bytesReadAccumulator.id()\n          && listenerObject.rowsReadAccumulator.id() == this.rowsReadAccumulator.id()\n          && listenerObject.scanTimeAccumulator.id() == this.scanTimeAccumulator.id()\n          && listenerObject.parseTimeAccumulator.id() == this.parseTimeAccumulator.id();\n    }\n    return false;\n  }\n\n  public static SparkBigQueryReadSessionMetrics from(\n      SparkSession sparkSession,\n      ReadSession readSession,\n      long timestamp,\n      com.google.cloud.bigquery.storage.v1.DataFormat readDataFormat,\n      DataOrigin dataOrigin,\n      long numReadStreams) {\n    return new SparkBigQueryReadSessionMetrics(\n        sparkSession, readSession.getName(), timestamp, readDataFormat, dataOrigin, numReadStreams);\n  }\n\n  public void incrementBytesReadAccumulator(long value) {\n    bytesReadAccumulator.add(value);\n  }\n\n  public void incrementRowsReadAccumulator(long value) {\n    rowsReadAccumulator.add(value);\n  }\n\n  public void incrementScanTimeAccumulator(long value) {\n    scanTimeAccumulator.add(value);\n  }\n\n  public void incrementParseTimeAccumulator(long value) {\n    parseTimeAccumulator.add(value);\n  }\n\n  public long getBytesRead() {\n    return bytesReadAccumulator.value();\n  }\n\n  public long getRowsRead() {\n    return rowsReadAccumulator.value();\n  }\n\n  public long getScanTime() {\n    return scanTimeAccumulator.value();\n  }\n\n  public long getParseTime() {\n    return parseTimeAccumulator.value();\n  }\n\n  public long getNumReadStreams() {\n    return numReadStreams;\n  }\n\n  public LongAccumulator getBytesReadAccumulator() {\n    return bytesReadAccumulator;\n  }\n\n  public LongAccumulator getRowsReadAccumulator() {\n    return rowsReadAccumulator;\n  }\n\n  public LongAccumulator getParseTimeAccumulator() {\n    return parseTimeAccumulator;\n  }\n\n  public LongAccumulator getScanTimeAccumulator() {\n    return scanTimeAccumulator;\n  }\n\n  @Override\n  public void onJobEnd(SparkListenerJobEnd jobEnd) {\n    try {\n      Class<?> eventBuilderClass =\n          Class.forName(\n              \"com.google.cloud.spark.events.SparkBigQueryConnectorReadSessionEvent$SparkBigQueryConnectorReadSessionEventBuilder\");\n\n      Object builderInstance =\n          eventBuilderClass.getDeclaredConstructor(long.class).newInstance(timestamp);\n      eventBuilderClass\n          .getMethod(\"setBytesRead\", long.class)\n          .invoke(builderInstance, getBytesRead());\n      eventBuilderClass\n          .getMethod(\"setNumberOfReadStreams\", long.class)\n          .invoke(builderInstance, numReadStreams);\n      eventBuilderClass\n          .getMethod(\"setParseTimeInMs\", long.class)\n          .invoke(builderInstance, getParseTime());\n      eventBuilderClass\n          .getMethod(\"setScanTimeInMs\", long.class)\n          .invoke(builderInstance, getScanTime());\n\n      Class<?> dataFormatEnum = Class.forName(\"com.google.cloud.spark.events.DataFormat\");\n      Object[] dataFormatEnumConstants = dataFormatEnum.getEnumConstants();\n      Object generatedDataFormatEnumValue = dataFormatEnumConstants[0];\n      for (Object constant : dataFormatEnumConstants) {\n        Method nameMethod = constant.getClass().getMethod(\"name\");\n        String name = (String) nameMethod.invoke(constant);\n        if (name.equals(readDataFormat.toString())) {\n          generatedDataFormatEnumValue = constant;\n          break;\n        }\n      }\n      eventBuilderClass\n          .getMethod(\"setReadDataFormat\", dataFormatEnum)\n          .invoke(builderInstance, generatedDataFormatEnumValue);\n\n      Class<?> dataOriginEnum = Class.forName(\"com.google.cloud.spark.events.DataOrigin\");\n      Object[] dataOriginEnumConstants = dataOriginEnum.getEnumConstants();\n      Object generatedDataOriginEnumValue = dataOriginEnumConstants[0];\n      for (Object constant : dataOriginEnumConstants) {\n        Method nameMethod = constant.getClass().getMethod(\"name\");\n        String name = (String) nameMethod.invoke(constant);\n        if (name.equals(dataOrigin.toString())) {\n          generatedDataOriginEnumValue = constant;\n          break;\n        }\n      }\n      eventBuilderClass\n          .getMethod(\"setDataOrigin\", dataOriginEnum)\n          .invoke(builderInstance, generatedDataOriginEnumValue);\n\n      Method buildMethod = eventBuilderClass.getDeclaredMethod(\"build\");\n\n      SparkSession.active()\n          .sparkContext()\n          .listenerBus()\n          .post((SparkListenerEvent) buildMethod.invoke(builderInstance));\n\n      SparkSession.active().sparkContext().removeSparkListener(this);\n    } catch (ReflectiveOperationException ex) {\n      logger.debug(\"spark.events.SparkBigQueryConnectorReadSessionEvent library not in class path\");\n    }\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/metrics/SparkMetricsSource.java",
    "content": "package com.google.cloud.spark.bigquery.metrics;\n\nimport com.codahale.metrics.Counter;\nimport com.codahale.metrics.MetricRegistry;\nimport com.codahale.metrics.Timer;\nimport com.google.cloud.bigquery.connector.common.BigQueryMetrics;\nimport java.io.Serializable;\nimport java.util.concurrent.TimeUnit;\nimport org.apache.spark.metrics.source.Source;\n\npublic class SparkMetricsSource implements Source, Serializable, BigQueryMetrics {\n  private static final long serialVersionUID = -6847838588830697961L;\n  private transient MetricRegistry registry;\n  private transient Timer parseTime;\n  private transient Timer timeInSpark;\n  private transient Counter bytesRead;\n  private transient Counter rowsRead;\n  private transient Timer scanTime;\n\n  public SparkMetricsSource() {\n    registry = new MetricRegistry();\n    parseTime = new Timer();\n    timeInSpark = new Timer();\n    bytesRead = new Counter();\n    rowsRead = new Counter();\n    scanTime = new Timer();\n    registry.register(\"parseTime\", parseTime);\n    registry.register(\"timeInSpark\", timeInSpark);\n    registry.register(\"bytesRead\", bytesRead);\n    registry.register(\"rowsRead\", rowsRead);\n    registry.register(\"scanTime\", scanTime);\n  }\n\n  @Override\n  public String sourceName() {\n    return \"bigquery-metrics-source\";\n  }\n\n  @Override\n  public MetricRegistry metricRegistry() {\n    return registry;\n  }\n\n  @Override\n  public void updateParseTime(long val) {\n    parseTime.update(val, TimeUnit.MILLISECONDS);\n  }\n\n  @Override\n  public void updateTimeInSpark(long val) {\n    timeInSpark.update(val, TimeUnit.MILLISECONDS);\n  }\n\n  @Override\n  public void incrementBytesReadCounter(long val) {\n    bytesRead.inc(val);\n  }\n\n  @Override\n  public void incrementRowsReadCounter(long val) {\n    rowsRead.inc(val);\n  }\n\n  @Override\n  public void updateScanTime(long val) {\n    scanTime.update(val, TimeUnit.MILLISECONDS);\n  }\n\n  public Timer getParseTime() {\n    return this.parseTime;\n  }\n\n  public Timer getTimeInSpark() {\n    return this.timeInSpark;\n  }\n\n  public Timer getScanTime() {\n    return this.scanTime;\n  }\n\n  public Counter getBytesRead() {\n    return this.bytesRead;\n  }\n\n  public Counter getRowsRead() {\n    return this.rowsRead;\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/pushdowns/SparkBigQueryPushdown.java",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.pushdowns;\n\nimport org.apache.spark.sql.SparkSession;\n\npublic interface SparkBigQueryPushdown {\n\n  boolean supportsSparkVersion(String sparkVersion);\n\n  void enable(SparkSession spark);\n\n  void disable(SparkSession spark);\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/util/HdfsUtils.java",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.util;\n\nimport java.io.IOException;\nimport java.io.UncheckedIOException;\nimport java.util.Iterator;\nimport org.apache.hadoop.fs.RemoteIterator;\n\npublic class HdfsUtils {\n\n  /** Converts HDFS RemoteIterator to java.util.Iterator */\n  public static <T> Iterator<T> toJavaUtilIterator(final RemoteIterator<T> remoteIterator) {\n    return new Iterator<T>() {\n      @Override\n      public boolean hasNext() {\n        try {\n          return remoteIterator.hasNext();\n        } catch (IOException e) {\n          throw new UncheckedIOException(e);\n        }\n      }\n\n      @Override\n      public T next() {\n        try {\n          return remoteIterator.next();\n        } catch (IOException e) {\n          throw new UncheckedIOException(e);\n        }\n      }\n    };\n  }\n\n  public static <T> Iterable<T> toJavaUtilIterable(final RemoteIterator<T> remoteIterator) {\n    return () -> toJavaUtilIterator(remoteIterator);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/write/BigQueryDataSourceWriterInsertableRelation.java",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.write;\n\nimport com.google.cloud.bigquery.Schema;\nimport com.google.cloud.bigquery.connector.common.BigQueryClient;\nimport com.google.cloud.bigquery.connector.common.BigQueryConnectorException;\nimport com.google.cloud.spark.bigquery.SchemaConverters;\nimport com.google.cloud.spark.bigquery.SchemaConvertersConfiguration;\nimport com.google.cloud.spark.bigquery.SparkBigQueryConfig;\nimport com.google.cloud.spark.bigquery.write.context.BigQueryDirectDataSourceWriterContext;\nimport com.google.cloud.spark.bigquery.write.context.BigQueryIndirectDataSourceWriterContext;\nimport com.google.cloud.spark.bigquery.write.context.DataSourceWriterContext;\nimport com.google.cloud.spark.bigquery.write.context.WriterCommitMessageContext;\nimport com.google.inject.Injector;\nimport java.util.Arrays;\nimport java.util.List;\nimport java.util.stream.Collectors;\nimport org.apache.spark.api.java.JavaRDD;\nimport org.apache.spark.sql.Dataset;\nimport org.apache.spark.sql.Row;\nimport org.apache.spark.sql.SQLContext;\n\npublic class BigQueryDataSourceWriterInsertableRelation extends BigQueryInsertableRelationBase {\n\n  private final Injector injector;\n\n  public BigQueryDataSourceWriterInsertableRelation(\n      BigQueryClient bigQueryClient,\n      SQLContext sqlContext,\n      SparkBigQueryConfig config,\n      Injector injector) {\n    super(bigQueryClient, sqlContext, config);\n    this.injector = injector;\n  }\n\n  @Override\n  public void insert(Dataset<Row> data, boolean overwrite) {\n    logger.debug(\"Inserting data={}, overwrite={}\", data, overwrite);\n    // Creating the context is deferred to here as the direct DataSourceWriterContext creates the\n    // table upon construction, which interferes with teh ErrorIfExists and Ignore save modes.\n    DataSourceWriterContext ctx = null;\n    SparkBigQueryConfig.WriteMethod writeMethod = config.getWriteMethod();\n    if (writeMethod == SparkBigQueryConfig.WriteMethod.DIRECT) {\n      ctx = injector.getInstance(BigQueryDirectDataSourceWriterContext.class);\n    } else if (writeMethod == SparkBigQueryConfig.WriteMethod.INDIRECT) {\n      ctx = injector.getInstance(BigQueryIndirectDataSourceWriterContext.class);\n    } else {\n      // can't really happen, here to guard from new write methods\n      throw new IllegalArgumentException(\"Unknown write method \" + writeMethod);\n    }\n    // Here we are mimicking the DataSource v2 API behaviour in oder to use the shared code. The\n    // partition handler iterates on each partition separately, invoking the DataWriter interface.\n    // The result of the iteration is a WriterCommitMessageContext which is used to perform the\n    // global commit, or abort if needed.\n    try {\n      JavaRDD<Row> rowsRDD = data.toJavaRDD();\n      int numPartitions = rowsRDD.getNumPartitions();\n      if (numPartitions == 0) {\n        // The DataFrame is empty, no streams will be generated. We need to create the table if it\n        // does not exist.\n        Schema bigQuerySchema =\n            SchemaConverters.from(SchemaConvertersConfiguration.from(config))\n                .toBigQuerySchema(data.schema());\n        bigQueryClient.createTableIfNeeded(getTableId(), bigQuerySchema, config);\n      } else {\n        // Write the data into separate WriteStream (one oer partition, return the\n        // WriterCommitMessageContext containing the stream name.\n        DataSourceWriterContextPartitionHandler partitionHandler =\n            new DataSourceWriterContextPartitionHandler(\n                ctx.createWriterContextFactory(), System.currentTimeMillis());\n\n        JavaRDD<WriterCommitMessageContext> writerCommitMessagesRDD =\n            rowsRDD.mapPartitionsWithIndex(partitionHandler, false);\n        WriterCommitMessageContext[] writerCommitMessages =\n            writerCommitMessagesRDD.collect().toArray(new WriterCommitMessageContext[0]);\n        if (writerCommitMessages.length == numPartitions) {\n          List<Exception> errors =\n              Arrays.stream(writerCommitMessages)\n                  .filter(msg -> msg.getError().isPresent())\n                  .map(msg -> msg.getError().get())\n                  .collect(Collectors.toList());\n          if (errors.isEmpty()) {\n            // All is well, let's commit\n            ctx.commit(writerCommitMessages);\n          } else {\n            // oops, has some errors\n            if (errors.size() == 1) {\n              logger.error(\n                  \"Encountered errors in one partition, aborting the write\", errors.get(0));\n            } else {\n              logger.error(\n                  \"Encountered errors in \"\n                      + errors.size()\n                      + \" partitions, aborting the write. Errors listed below\");\n              int i = 1;\n              for (Exception e : errors) {\n                logger.error(\"Error #\" + i, e);\n                i++;\n              }\n            }\n            throw new BigQueryConnectorException(\"Write error in partitions.\", errors.get(0));\n          }\n        } else {\n          // missing commit messages, so abort\n          ctx.abort(writerCommitMessages);\n          throw new BigQueryConnectorException(\n              String.format(\n                  \"It seems that %s out of %s partitions have failed, aborting\",\n                  numPartitions - writerCommitMessages.length, numPartitions));\n        }\n      }\n    } catch (Exception e) {\n      ctx.abort(new WriterCommitMessageContext[] {});\n      throw new BigQueryConnectorException(\"unexpected issue trying to save \" + data, e);\n    }\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/write/BigQueryDeprecatedIndirectInsertableRelation.java",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.write;\n\nimport com.google.cloud.bigquery.connector.common.BigQueryClient;\nimport com.google.cloud.spark.bigquery.SparkBigQueryConfig;\nimport org.apache.spark.sql.Dataset;\nimport org.apache.spark.sql.Row;\nimport org.apache.spark.sql.SQLContext;\nimport org.apache.spark.sql.SaveMode;\n\n/**\n * The original indirect insertable relation, using Spark's write. Intermediate formats are Parquet,\n * ORC or Avro. Deprecated in favor of BigQueryDataSourceWriterInsertableRelation.\n */\npublic class BigQueryDeprecatedIndirectInsertableRelation extends BigQueryInsertableRelationBase {\n\n  public BigQueryDeprecatedIndirectInsertableRelation(\n      BigQueryClient bigQueryClient, SQLContext sqlContext, SparkBigQueryConfig config) {\n    super(bigQueryClient, sqlContext, config);\n  }\n\n  @Override\n  public void insert(Dataset<Row> data, boolean overwrite) {\n    logger.debug(\"Inserting data={}, overwrite={}\", data, overwrite);\n    // the helper also supports the v2 api\n    SaveMode saveMode = overwrite ? SaveMode.Overwrite : SaveMode.Append;\n    BigQueryWriteHelper helper =\n        new BigQueryWriteHelper(bigQueryClient, sqlContext, saveMode, config, data, table);\n    helper.writeDataFrameToBigQuery();\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/write/BigQueryInsertableRelationBase.java",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.write;\n\nimport com.google.cloud.bigquery.TableId;\nimport com.google.cloud.bigquery.TableInfo;\nimport com.google.cloud.bigquery.connector.common.BigQueryClient;\nimport com.google.cloud.spark.bigquery.SchemaConverters;\nimport com.google.cloud.spark.bigquery.SchemaConvertersConfiguration;\nimport com.google.cloud.spark.bigquery.SparkBigQueryConfig;\nimport java.math.BigInteger;\nimport java.util.Optional;\nimport org.apache.spark.sql.SQLContext;\nimport org.apache.spark.sql.sources.BaseRelation;\nimport org.apache.spark.sql.sources.InsertableRelation;\nimport org.apache.spark.sql.types.StructType;\nimport org.slf4j.Logger;\nimport org.slf4j.LoggerFactory;\n\npublic abstract class BigQueryInsertableRelationBase extends BaseRelation\n    implements InsertableRelation {\n\n  protected final Logger logger = LoggerFactory.getLogger(getClass());\n\n  protected final BigQueryClient bigQueryClient;\n  protected final SQLContext sqlContext;\n  protected final SparkBigQueryConfig config;\n  protected final Optional<TableInfo> table;\n\n  protected BigQueryInsertableRelationBase(\n      BigQueryClient bigQueryClient, SQLContext sqlContext, SparkBigQueryConfig config) {\n    this.bigQueryClient = bigQueryClient;\n    this.sqlContext = sqlContext;\n    this.config = config;\n    this.table = Optional.ofNullable(bigQueryClient.getTable(config.getTableId()));\n  }\n\n  @Override\n  public SQLContext sqlContext() {\n    return sqlContext;\n  }\n\n  @Override\n  public StructType schema() {\n    return SchemaConverters.from(SchemaConvertersConfiguration.from(config))\n        .toSpark(table.get().getDefinition().getSchema());\n  }\n\n  /** Does this table exist? */\n  public boolean exists() {\n    return table.isPresent();\n  }\n\n  /** Is this table empty? A none-existing table is considered to be empty */\n  public boolean isEmpty() {\n    return numberOfRows().map(n -> n.longValue() == 0).orElse(true);\n  }\n\n  /** Returns the number of rows in the table. If the table does not exist return None */\n  private Optional<BigInteger> numberOfRows() {\n    return table.map(TableInfo::getNumRows);\n  }\n\n  public TableId getTableId() {\n    return config.getTableId();\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/write/BigQueryWriteHelper.java",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.write;\n\nimport com.google.cloud.bigquery.Field;\nimport com.google.cloud.bigquery.FormatOptions;\nimport com.google.cloud.bigquery.Job;\nimport com.google.cloud.bigquery.JobInfo;\nimport com.google.cloud.bigquery.JobStatistics;\nimport com.google.cloud.bigquery.Schema;\nimport com.google.cloud.bigquery.TableDefinition;\nimport com.google.cloud.bigquery.TableId;\nimport com.google.cloud.bigquery.TableInfo;\nimport com.google.cloud.bigquery.connector.common.BigQueryClient;\nimport com.google.cloud.bigquery.connector.common.BigQueryConnectorException;\nimport com.google.cloud.bigquery.connector.common.BigQueryUtil;\nimport com.google.cloud.spark.bigquery.PartitionOverwriteMode;\nimport com.google.cloud.spark.bigquery.SchemaConverters;\nimport com.google.cloud.spark.bigquery.SchemaConvertersConfiguration;\nimport com.google.cloud.spark.bigquery.SparkBigQueryConfig;\nimport com.google.cloud.spark.bigquery.SparkBigQueryUtil;\nimport com.google.cloud.spark.bigquery.SupportedCustomDataType;\nimport com.google.cloud.spark.bigquery.metrics.SparkBigQueryConnectorMetricsUtils;\nimport com.google.cloud.spark.bigquery.util.HdfsUtils;\nimport com.google.common.collect.Streams;\nimport java.io.IOException;\nimport java.util.List;\nimport java.util.Map;\nimport java.util.Optional;\nimport java.util.function.Function;\nimport java.util.stream.Collectors;\nimport java.util.stream.Stream;\nimport org.apache.hadoop.conf.Configuration;\nimport org.apache.hadoop.fs.FileSystem;\nimport org.apache.hadoop.fs.Path;\nimport org.apache.spark.SparkContext;\nimport org.apache.spark.sql.Dataset;\nimport org.apache.spark.sql.Row;\nimport org.apache.spark.sql.SQLContext;\nimport org.apache.spark.sql.SaveMode;\nimport org.apache.spark.sql.types.StructField;\nimport org.apache.spark.sql.types.StructType;\nimport org.slf4j.Logger;\nimport org.slf4j.LoggerFactory;\n\npublic class BigQueryWriteHelper {\n\n  private static final Logger logger = LoggerFactory.getLogger(BigQueryWriteHelper.class);\n\n  private final BigQueryClient bigQueryClient;\n  private final SaveMode saveMode;\n  private final SparkBigQueryConfig config;\n  private final Dataset<Row> data;\n  private final Optional<TableInfo> tableInfo;\n  private final Configuration conf;\n  private final Path gcsPath;\n  private final Optional<IntermediateDataCleaner> createTemporaryPathDeleter;\n\n  private final Schema tableSchema;\n  private final JobInfo.WriteDisposition writeDisposition;\n\n  private Optional<TableId> temporaryTableId = Optional.empty();\n  private final SparkContext sparkContext;\n\n  public BigQueryWriteHelper(\n      BigQueryClient bigQueryClient,\n      SQLContext sqlContext,\n      SaveMode saveMode,\n      SparkBigQueryConfig config,\n      Dataset<Row> data,\n      Optional<TableInfo> tableInfo) {\n    this.bigQueryClient = bigQueryClient;\n    verifySaveMode(saveMode);\n    this.saveMode = saveMode;\n    this.config = config;\n    this.data = data;\n    this.tableInfo = tableInfo;\n    this.conf = sqlContext.sparkContext().hadoopConfiguration();\n    this.gcsPath =\n        SparkBigQueryUtil.createGcsPath(config, conf, sqlContext.sparkContext().applicationId());\n    this.createTemporaryPathDeleter =\n        config.getTemporaryGcsBucket().map(unused -> new IntermediateDataCleaner(gcsPath, conf));\n\n    Schema schema =\n        SchemaConverters.from(SchemaConvertersConfiguration.from(config))\n            .toBigQuerySchema(data.schema());\n    if (tableInfo.isPresent()) {\n      schema =\n          BigQueryUtil.adjustSchemaIfNeeded(\n              schema,\n              tableInfo.get().getDefinition().getSchema(),\n              config\n                  .getLoadSchemaUpdateOptions()\n                  .contains(JobInfo.SchemaUpdateOption.ALLOW_FIELD_RELAXATION));\n    }\n    this.tableSchema = schema;\n    this.writeDisposition = SparkBigQueryUtil.saveModeToWriteDisposition(saveMode);\n    this.sparkContext = sqlContext.sparkContext();\n  }\n\n  public void writeDataFrameToBigQuery() {\n    // If the CreateDisposition is CREATE_NEVER, and the table does not exist,\n    // there's no point in writing the data to GCS in the first place as it going\n    // to file on the BigQuery side.\n    if (config\n        .getCreateDisposition()\n        .map(cd -> !tableExists() && cd == JobInfo.CreateDisposition.CREATE_NEVER)\n        .orElse(false)) {\n      throw new BigQueryConnectorException(\n          String.format(\n              \"For table %s Create Disposition is CREATE_NEVER and the table does not exists. Aborting the insert\",\n              friendlyTableName()));\n    }\n\n    try {\n      // based on pmkc's suggestion at https://git.io/JeWRt\n      createTemporaryPathDeleter.ifPresent(\n          cleaner -> Runtime.getRuntime().addShutdownHook(cleaner));\n\n      String format = config.getIntermediateFormat().getDataSource();\n      data.write().format(format).save(gcsPath.toString());\n\n      if (writeDisposition == JobInfo.WriteDisposition.WRITE_TRUNCATE\n          && config.getPartitionOverwriteModeValue() == PartitionOverwriteMode.DYNAMIC\n          && bigQueryClient.tableExists(config.getTableId())\n          && bigQueryClient.isTablePartitioned(config.getTableId())) {\n        temporaryTableId =\n            Optional.of(\n                bigQueryClient\n                    .createTempTableAfterCheckingSchema(\n                        config.getTableId(),\n                        tableSchema,\n                        config.getEnableModeCheckForSchemaFields())\n                    .getTableId());\n        loadDataToBigQuery();\n        Job queryJob =\n            bigQueryClient.overwriteDestinationWithTemporaryDynamicPartitons(\n                temporaryTableId.get(), config.getTableId());\n        bigQueryClient.waitForJob(queryJob);\n      } else {\n        loadDataToBigQuery();\n      }\n      updateMetadataIfNeeded();\n    } catch (Exception e) {\n      throw new BigQueryConnectorException(\"Failed to write to BigQuery\", e);\n    } finally {\n      cleanTemporaryGcsPathIfNeeded();\n    }\n  }\n\n  void loadDataToBigQuery() throws IOException {\n    FileSystem fs = gcsPath.getFileSystem(conf);\n    FormatOptions formatOptions = config.getIntermediateFormat().getFormatOptions();\n    String suffix = \".\" + formatOptions.getType().toLowerCase();\n    List<String> sourceUris =\n        SparkBigQueryUtil.optimizeLoadUriListForSpark(\n            Streams.stream(HdfsUtils.toJavaUtilIterator(fs.listFiles(gcsPath, false)))\n                .map(file -> file.getPath().toString())\n                .filter(path -> path.toLowerCase().endsWith(suffix))\n                .collect(Collectors.toList()));\n    // Solving Issue #248\n    List<String> optimizedSourceUris = SparkBigQueryUtil.optimizeLoadUriListForSpark(sourceUris);\n    JobInfo.WriteDisposition writeDisposition =\n        SparkBigQueryUtil.saveModeToWriteDisposition(saveMode);\n    TableId destinationTableId = temporaryTableId.orElse(config.getTableId());\n    JobStatistics.LoadStatistics loadStatistics =\n        bigQueryClient.loadDataIntoTable(\n            config,\n            optimizedSourceUris,\n            formatOptions,\n            writeDisposition,\n            Optional.of(tableSchema),\n            destinationTableId);\n\n    long currentTimeMillis = System.currentTimeMillis();\n    SparkBigQueryConnectorMetricsUtils.postWriteSessionMetrics(\n        currentTimeMillis,\n        SparkBigQueryConfig.WriteMethod.INDIRECT,\n        loadStatistics.getOutputBytes(),\n        Optional.of(config.getIntermediateFormat()),\n        sparkContext);\n  }\n\n  String friendlyTableName() {\n    return BigQueryUtil.friendlyTableName(config.getTableId());\n  }\n\n  void updateMetadataIfNeeded() {\n    updateTableMetadataIfNeeded(data.schema(), config, bigQueryClient);\n  }\n\n  public static void updateTableMetadataIfNeeded(\n      StructType sparkSchema, SparkBigQueryConfig config, BigQueryClient bigQueryClient) {\n    Map<String, StructField> fieldsToUpdate =\n        Stream.of(sparkSchema.fields())\n            .filter(\n                field -> {\n                  Optional<SupportedCustomDataType> supportedCustomDataType =\n                      SupportedCustomDataType.of(field.dataType());\n                  return supportedCustomDataType.isPresent()\n                      || SchemaConverters.getDescriptionOrCommentOfField(\n                              field, supportedCustomDataType)\n                          .isPresent();\n                })\n            .collect(Collectors.toMap(StructField::name, Function.identity()));\n\n    if (!fieldsToUpdate.isEmpty() || !config.getBigQueryTableLabels().isEmpty()) {\n      TableInfo originalTableInfo = bigQueryClient.getTable(config.getTableIdWithoutThePartition());\n      TableInfo.Builder updatedTableInfo = originalTableInfo.toBuilder();\n\n      if (!fieldsToUpdate.isEmpty()) {\n        logger.debug(\"updating schema, found fields to update: {}\", fieldsToUpdate.keySet());\n        TableDefinition originalTableDefinition = originalTableInfo.getDefinition();\n        Schema originalSchema = originalTableDefinition.getSchema();\n        Schema updatedSchema =\n            Schema.of(\n                originalSchema.getFields().stream()\n                    .map(\n                        field ->\n                            Optional.ofNullable(fieldsToUpdate.get(field.getName()))\n                                .map(sparkSchemaField -> updatedField(field, sparkSchemaField))\n                                .orElse(field))\n                    .collect(Collectors.toList()));\n        updatedTableInfo.setDefinition(\n            originalTableDefinition.toBuilder().setSchema(updatedSchema).build());\n      }\n\n      if (!config.getBigQueryTableLabels().isEmpty()) {\n        updatedTableInfo.setLabels(config.getBigQueryTableLabels()).build();\n      }\n\n      bigQueryClient.update(updatedTableInfo.build());\n    }\n  }\n\n  static Field updatedField(Field field, StructField sparkSchemaField) {\n    Field.Builder newField = field.toBuilder();\n    Optional<String> bqDescription =\n        SchemaConverters.getDescriptionOrCommentOfField(\n            sparkSchemaField, SupportedCustomDataType.of(sparkSchemaField.dataType()));\n    bqDescription.ifPresent(newField::setDescription);\n    return newField.build();\n  }\n\n  void cleanTemporaryGcsPathIfNeeded() {\n    // TODO(davidrab): add flag to disable the deletion?\n    logger.info(\"Cleaning temporary GCS path\");\n    createTemporaryPathDeleter.ifPresent(IntermediateDataCleaner::deletePath);\n  }\n\n  static void verifySaveMode(SaveMode saveMode) {\n    if (saveMode == SaveMode.ErrorIfExists || saveMode == SaveMode.Ignore) {\n      throw new UnsupportedOperationException(\"SaveMode \" + saveMode + \" is not supported\");\n    }\n  }\n\n  private boolean tableExists() {\n    return tableInfo.isPresent();\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/write/CreatableRelationProviderHelper.java",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.write;\n\nimport static com.google.cloud.spark.bigquery.SparkBigQueryUtil.scalaMapToJavaMap;\n\nimport com.google.cloud.bigquery.connector.common.BigQueryClient;\nimport com.google.cloud.bigquery.connector.common.BigQueryUtil;\nimport com.google.cloud.spark.bigquery.DataSourceVersion;\nimport com.google.cloud.spark.bigquery.InjectorBuilder;\nimport com.google.cloud.spark.bigquery.SparkBigQueryConfig;\nimport com.google.cloud.spark.bigquery.write.context.BigQueryDataSourceWriterModule;\nimport com.google.common.annotations.VisibleForTesting;\nimport com.google.inject.Injector;\nimport java.util.Map;\nimport java.util.UUID;\nimport org.apache.spark.sql.*;\nimport org.apache.spark.sql.sources.BaseRelation;\nimport org.apache.spark.sql.types.StructType;\n\npublic class CreatableRelationProviderHelper {\n\n  public BaseRelation createRelation(\n      SQLContext sqlContext,\n      SaveMode saveMode,\n      scala.collection.immutable.Map<String, String> parameters,\n      Dataset<Row> data,\n      Map<String, String> customDefaults) {\n    Map<String, String> properties = scalaMapToJavaMap(parameters);\n    return createRelation(sqlContext, saveMode, properties, data, customDefaults);\n  }\n\n  public BaseRelation createRelation(\n      SQLContext sqlContext,\n      SaveMode saveMode,\n      Map<String, String> parameters,\n      Dataset<Row> data,\n      Map<String, String> customDefaults) {\n    BigQueryInsertableRelationBase relation =\n        createBigQueryInsertableRelation(sqlContext, data, parameters, saveMode, customDefaults);\n\n    switch (saveMode) {\n      case Append:\n        relation.insert(data, /* overwrite */ false);\n        break;\n      case Overwrite:\n        relation.insert(data, /* overwrite */ true);\n        break;\n      case ErrorIfExists:\n        if (!relation.exists()) {\n          relation.insert(data, /* overwrite */ false);\n          break;\n        } else {\n          throw new IllegalArgumentException(\n              \"SaveMode is set to ErrorIfExists and Table \"\n                  + BigQueryUtil.friendlyTableName(relation.getTableId())\n                  + \"already exists. Did you want to add data to the table by setting \"\n                  + \"the SaveMode to Append? Example: \"\n                  + \"df.write.format.options.mode(SaveMode.Append).save()\");\n        }\n      case Ignore:\n        if (!relation.exists()) {\n          relation.insert(data, /* overwrite */ false);\n          break;\n        }\n    }\n\n    return relation;\n  }\n\n  @VisibleForTesting\n  BigQueryInsertableRelationBase createBigQueryInsertableRelation(\n      SQLContext sqlContext,\n      Dataset<Row> data,\n      Map<String, String> properties,\n      SaveMode saveMode,\n      Map<String, String> customDefaults) {\n    Injector injector =\n        new InjectorBuilder()\n            .withDataSourceVersion(DataSourceVersion.V1)\n            .withSpark(sqlContext.sparkSession())\n            .withSchema(data.schema())\n            .withOptions(properties)\n            .withCustomDefaults(customDefaults)\n            .withTableIsMandatory(true)\n            .build();\n\n    return createBigQueryInsertableRelationInternal(data.schema(), saveMode, injector);\n  }\n\n  public BigQueryInsertableRelationBase createBigQueryInsertableRelation(\n      SQLContext sqlContext, StructType schema, SaveMode saveMode, SparkBigQueryConfig config) {\n    Injector injector =\n        new InjectorBuilder()\n            .withDataSourceVersion(DataSourceVersion.V1)\n            .withSpark(sqlContext.sparkSession())\n            .withSchema(schema)\n            .withConfig(config)\n            .withTableIsMandatory(true)\n            .build();\n\n    return createBigQueryInsertableRelationInternal(schema, saveMode, injector);\n  }\n\n  public BigQueryInsertableRelationBase createBigQueryInsertableRelationFromInjector(\n      StructType schema, SaveMode saveMode, Injector injector) {\n    return createBigQueryInsertableRelationInternal(schema, saveMode, injector);\n  }\n\n  private BigQueryInsertableRelationBase createBigQueryInsertableRelationInternal(\n      StructType schema, SaveMode saveMode, Injector injector) {\n    SparkBigQueryConfig config = injector.getInstance(SparkBigQueryConfig.class);\n    BigQueryClient bigQueryClient = injector.getInstance(BigQueryClient.class);\n    SQLContext sqlContext = injector.getInstance(SparkSession.class).sqlContext();\n\n    SparkBigQueryConfig.WriteMethod writeMethod = config.getWriteMethod();\n    if (writeMethod == SparkBigQueryConfig.WriteMethod.INDIRECT) {\n      return new BigQueryDeprecatedIndirectInsertableRelation(bigQueryClient, sqlContext, config);\n    }\n    // Need DataSourceWriterContext\n    Injector writerInjector =\n        injector.createChildInjector(\n            new BigQueryDataSourceWriterModule(\n                config, UUID.randomUUID().toString(), schema, saveMode));\n    return new BigQueryDataSourceWriterInsertableRelation(\n        bigQueryClient, sqlContext, config, writerInjector);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/write/DataSourceWriterContextPartitionHandler.java",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.write;\n\nimport com.google.cloud.spark.bigquery.write.context.DataWriterContext;\nimport com.google.cloud.spark.bigquery.write.context.DataWriterContextFactory;\nimport com.google.cloud.spark.bigquery.write.context.WriterCommitMessageContext;\nimport com.google.common.collect.ImmutableList;\nimport com.google.common.collect.Iterators;\nimport java.io.Serializable;\nimport java.util.Iterator;\nimport java.util.Optional;\nimport org.apache.spark.TaskContext;\nimport org.apache.spark.api.java.function.Function2;\nimport org.apache.spark.sql.Row;\nimport org.apache.spark.sql.SparkSqlUtils;\nimport org.apache.spark.sql.catalyst.InternalRow;\nimport org.slf4j.Logger;\nimport org.slf4j.LoggerFactory;\n\npublic class DataSourceWriterContextPartitionHandler\n    implements Function2<Integer, Iterator<Row>, Iterator<WriterCommitMessageContext>>,\n        Serializable {\n\n  private static final long serialVersionUID = 1427566429084782311L;\n  private static Logger logger =\n      LoggerFactory.getLogger(DataSourceWriterContextPartitionHandler.class);\n\n  private final DataWriterContextFactory dataWriterContextFactory;\n  private long epoch;\n  private long taskId;\n\n  public DataSourceWriterContextPartitionHandler(\n      DataWriterContextFactory dataWriterContextFactory, long epoch) {\n    this.dataWriterContextFactory = dataWriterContextFactory;\n    this.epoch = epoch;\n    TaskContext tc = TaskContext.get();\n    this.taskId = tc != null ? tc.taskAttemptId() : 0;\n  }\n\n  @Override\n  public Iterator<WriterCommitMessageContext> call(Integer partitionId, Iterator<Row> rowIterator)\n      throws Exception {\n    try (DataWriterContext dataWriterContext =\n        dataWriterContextFactory.createDataWriterContext(partitionId, taskId, epoch)) {\n      try {\n        while (rowIterator.hasNext()) {\n          Row row = rowIterator.next();\n          InternalRow internalRow = SparkSqlUtils.getInstance().rowToInternalRow(row);\n          dataWriterContext.write(internalRow);\n        }\n        return Iterators.forArray(dataWriterContext.commit());\n      } catch (Exception e) {\n        logger.warn(\n            \"Encountered error writing partition {} in task id {} for epoch {}. Calling DataWriter.abort()\",\n            partitionId,\n            taskId,\n            epoch,\n            e);\n        dataWriterContext.abort();\n        return ImmutableList.<WriterCommitMessageContext>of(writerCommitMessageWithError(e))\n            .iterator();\n      }\n    }\n  }\n\n  private static WriterCommitMessageContext writerCommitMessageWithError(Exception e) {\n    return new WriterCommitMessageContext() {\n      @Override\n      public Optional<Exception> getError() {\n        return Optional.of(e);\n      }\n    };\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/write/IntermediateDataCleaner.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.write;\n\nimport org.apache.hadoop.conf.Configuration;\nimport org.apache.hadoop.fs.FileSystem;\nimport org.apache.hadoop.fs.Path;\nimport org.slf4j.Logger;\nimport org.slf4j.LoggerFactory;\n\n/**\n * Responsible for recursively deleting the intermediate path. Implementing Runnable in order to act\n * as shutdown hook.\n */\npublic class IntermediateDataCleaner extends Thread {\n  private static final Logger logger = LoggerFactory.getLogger(IntermediateDataCleaner.class);\n\n  /** the path to delete */\n  private final Path path;\n  /** the hadoop configuration */\n  private final Configuration conf;\n\n  public IntermediateDataCleaner(Path path, Configuration conf) {\n    this.path = path;\n    this.conf = conf;\n  }\n\n  @Override\n  public void run() {\n    deletePath();\n  }\n\n  public void deletePath() {\n    try {\n      logger.info(\"Deleting path \" + path + \" if it exists\");\n      // Create a copy of the config to avoid polluting the global state\n      Configuration cleanConf = new Configuration(conf);\n\n      // Force a fresh instance that isn't already closed by Spark\n      String scheme = path.toUri().getScheme();\n      if (scheme != null) {\n        cleanConf.set(\"fs.\" + scheme + \".impl.disable.cache\", \"true\");\n      }\n\n      // Use the specific URI to ensure GCS is targeted\n      FileSystem fs = FileSystem.get(path.toUri(), cleanConf);\n      if (pathExists(fs, path)) {\n        fs.delete(path, true);\n      }\n      logger.info(\"Path \" + path + \" no longer exists)\");\n    } catch (Exception e) {\n      logger.error(\"Failed to delete path \" + path, e);\n    }\n  }\n\n  public void deleteEpochPath(long epochId) {\n    Path epochPath = new Path(path + \"/\" + epochId);\n    try {\n      logger.info(\"Deleting epoch path \" + epochPath + \" if it exists\");\n      FileSystem fs = epochPath.getFileSystem(conf);\n      if (pathExists(fs, epochPath)) {\n        fs.delete(epochPath, true);\n      }\n      logger.info(\"Path \" + epochPath + \" no longer exists)\");\n    } catch (Exception e) {\n      logger.error(\"Failed to delete path \" + epochPath, e);\n    }\n  }\n\n  // fs.exists can throw exception on missing path\n  private boolean pathExists(FileSystem fs, Path path) {\n    try {\n      return fs.exists(path);\n    } catch (Exception e) {\n      return false;\n    }\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/write/context/AvroIntermediateRecordWriter.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.write.context;\n\nimport java.io.IOException;\nimport java.io.OutputStream;\nimport org.apache.avro.Schema;\nimport org.apache.avro.file.DataFileWriter;\nimport org.apache.avro.generic.GenericDatumWriter;\nimport org.apache.avro.generic.GenericRecord;\nimport org.apache.avro.io.DatumWriter;\n\npublic class AvroIntermediateRecordWriter implements IntermediateRecordWriter {\n\n  private final OutputStream outputStream;\n  private final DatumWriter<GenericRecord> writer;\n  private final DataFileWriter<GenericRecord> dataFileWriter;\n\n  AvroIntermediateRecordWriter(Schema schema, OutputStream outputStream) throws IOException {\n    this.outputStream = outputStream;\n    this.writer = new GenericDatumWriter<>(schema);\n    this.dataFileWriter = new DataFileWriter<>(writer);\n    this.dataFileWriter.create(schema, outputStream);\n  }\n\n  @Override\n  public void write(GenericRecord record) throws IOException {\n    dataFileWriter.append(record);\n  }\n\n  @Override\n  public void close() throws IOException {\n    try {\n      dataFileWriter.flush();\n    } finally {\n      dataFileWriter.close();\n    }\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/write/context/BigQueryDataSourceWriterModule.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.write.context;\n\nimport com.google.api.gax.retrying.RetrySettings;\nimport com.google.cloud.bigquery.TableId;\nimport com.google.cloud.bigquery.connector.common.BigQueryClient;\nimport com.google.cloud.bigquery.connector.common.BigQueryClientFactory;\nimport com.google.cloud.spark.bigquery.SchemaConvertersConfiguration;\nimport com.google.cloud.spark.bigquery.SparkBigQueryConfig;\nimport com.google.cloud.spark.bigquery.SparkBigQueryUtil;\nimport com.google.cloud.spark.bigquery.write.IntermediateDataCleaner;\nimport com.google.inject.Binder;\nimport com.google.inject.Module;\nimport com.google.inject.Provides;\nimport com.google.inject.Singleton;\nimport java.io.IOException;\nimport java.util.Optional;\nimport org.apache.hadoop.fs.Path;\nimport org.apache.spark.sql.SaveMode;\nimport org.apache.spark.sql.SparkSession;\nimport org.apache.spark.sql.types.StructType;\n\npublic class BigQueryDataSourceWriterModule implements Module {\n\n  private final SparkBigQueryConfig tableConfig;\n  private final String writeUUID;\n  private final StructType sparkSchema;\n  private final SaveMode mode;\n\n  public BigQueryDataSourceWriterModule(\n      SparkBigQueryConfig tableConfig, String writeUUID, StructType sparkSchema, SaveMode mode) {\n    this.tableConfig = tableConfig;\n    this.writeUUID = writeUUID;\n    this.sparkSchema = sparkSchema;\n    this.mode = mode;\n  }\n\n  @Override\n  public void configure(Binder binder) {\n    // empty\n  }\n\n  @Singleton\n  @Provides\n  public BigQueryDirectDataSourceWriterContext provideDirectDataSourceWriterContext(\n      BigQueryClient bigQueryClient,\n      BigQueryClientFactory bigQueryWriteClientFactory,\n      SparkSession spark) {\n    TableId tableId = tableConfig.getTableId();\n    RetrySettings bigqueryDataWriteHelperRetrySettings =\n        tableConfig.getBigqueryDataWriteHelperRetrySettings();\n    return new BigQueryDirectDataSourceWriterContext(\n        bigQueryClient,\n        bigQueryWriteClientFactory,\n        tableId,\n        writeUUID,\n        mode,\n        sparkSchema,\n        bigqueryDataWriteHelperRetrySettings,\n        com.google.common.base.Optional.fromJavaUtil(tableConfig.getTraceId()),\n        tableConfig.getEnableModeCheckForSchemaFields(),\n        tableConfig.getBigQueryTableLabels(),\n        SchemaConvertersConfiguration.from(tableConfig),\n        tableConfig.getKmsKeyName(), // needs to be serializable\n        tableConfig.isWriteAtLeastOnce()\n            && !mode.equals(\n                SaveMode\n                    .Overwrite), // writeAtLeastOnce mode is currently not supported in OverWrite\n        // mode.\n        tableConfig.getPartitionOverwriteModeValue(),\n        tableConfig.getClusteredFields(),\n        spark.sparkContext());\n  }\n\n  @Singleton\n  @Provides\n  public BigQueryIndirectDataSourceWriterContext provideIndirectDataSourceWriterContext(\n      BigQueryClient bigQueryClient, SparkSession spark) throws IOException {\n    Path gcsPath =\n        SparkBigQueryUtil.createGcsPath(\n            tableConfig,\n            spark.sparkContext().hadoopConfiguration(),\n            spark.sparkContext().applicationId());\n    Optional<IntermediateDataCleaner> intermediateDataCleaner =\n        tableConfig\n            .getTemporaryGcsBucket()\n            .map(\n                ignored ->\n                    new IntermediateDataCleaner(\n                        gcsPath, spark.sparkContext().hadoopConfiguration()));\n    // based on pmkc's suggestion at https://git.io/JeWRt\n    intermediateDataCleaner.ifPresent(cleaner -> Runtime.getRuntime().addShutdownHook(cleaner));\n    return new BigQueryIndirectDataSourceWriterContext(\n        bigQueryClient,\n        tableConfig,\n        spark.sparkContext().hadoopConfiguration(),\n        sparkSchema,\n        writeUUID,\n        mode,\n        gcsPath,\n        intermediateDataCleaner,\n        spark.sparkContext());\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/write/context/BigQueryDirectDataSourceWriterContext.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.write.context;\n\nimport static com.google.cloud.spark.bigquery.ProtobufUtils.toProtoSchema;\n\nimport com.google.api.gax.retrying.RetrySettings;\nimport com.google.cloud.bigquery.Job;\nimport com.google.cloud.bigquery.Schema;\nimport com.google.cloud.bigquery.TableId;\nimport com.google.cloud.bigquery.TableInfo;\nimport com.google.cloud.bigquery.connector.common.BigQueryClient;\nimport com.google.cloud.bigquery.connector.common.BigQueryClientFactory;\nimport com.google.cloud.bigquery.connector.common.BigQueryConnectorException;\nimport com.google.cloud.bigquery.connector.common.BigQueryUtil;\nimport com.google.cloud.bigquery.connector.common.ComparisonResult;\nimport com.google.cloud.bigquery.storage.v1.BatchCommitWriteStreamsRequest;\nimport com.google.cloud.bigquery.storage.v1.BatchCommitWriteStreamsResponse;\nimport com.google.cloud.bigquery.storage.v1.BigQueryWriteClient;\nimport com.google.cloud.bigquery.storage.v1.ProtoSchema;\nimport com.google.cloud.spark.bigquery.PartitionOverwriteMode;\nimport com.google.cloud.spark.bigquery.SchemaConverters;\nimport com.google.cloud.spark.bigquery.SchemaConvertersConfiguration;\nimport com.google.cloud.spark.bigquery.SparkBigQueryConfig;\nimport com.google.cloud.spark.bigquery.metrics.SparkBigQueryConnectorMetricsUtils;\nimport com.google.common.base.Optional;\nimport com.google.common.base.Preconditions;\nimport com.google.common.collect.ImmutableList;\nimport com.google.common.collect.ImmutableMap;\nimport java.util.Arrays;\nimport org.apache.spark.SparkContext;\nimport org.apache.spark.sql.SaveMode;\nimport org.apache.spark.sql.catalyst.InternalRow;\nimport org.apache.spark.sql.types.StructType;\nimport org.slf4j.Logger;\nimport org.slf4j.LoggerFactory;\n\npublic class BigQueryDirectDataSourceWriterContext implements DataSourceWriterContext {\n\n  final Logger logger = LoggerFactory.getLogger(BigQueryDirectDataSourceWriterContext.class);\n\n  private final BigQueryClient bigQueryClient;\n  private final BigQueryClientFactory writeClientFactory;\n  private final TableId destinationTableId;\n  private final StructType sparkSchema;\n  private final ProtoSchema protoSchema;\n  private final String writeUUID;\n  private final RetrySettings bigqueryDataWriterHelperRetrySettings;\n  private final Optional<String> traceId;\n  private final boolean enableModeCheckForSchemaFields;\n  private final ImmutableMap<String, String> tableLabels;\n\n  private final BigQueryTable tableToWrite;\n  private final String tablePathForBigQueryStorage;\n  private final SchemaConvertersConfiguration schemaConvertersConfiguration;\n  private final Optional<String> destinationTableKmsKeyName;\n  private final boolean writeAtLeastOnce;\n\n  private BigQueryWriteClient writeClient;\n  private Optional<TableInfo> tableInfo = Optional.absent();\n\n  private PartitionOverwriteMode overwriteMode;\n\n  enum WritingMode {\n    IGNORE_INPUTS,\n    APPEND_AT_LEAST_ONCE,\n    OVERWRITE,\n    ALL_ELSE\n  }\n\n  private WritingMode writingMode = WritingMode.ALL_ELSE;\n  private final SparkContext sparkContext;\n\n  public BigQueryDirectDataSourceWriterContext(\n      BigQueryClient bigQueryClient,\n      BigQueryClientFactory bigQueryWriteClientFactory,\n      TableId destinationTableId,\n      String writeUUID,\n      SaveMode saveMode,\n      StructType sparkSchema,\n      RetrySettings bigqueryDataWriterHelperRetrySettings,\n      Optional<String> traceId,\n      boolean enableModeCheckForSchemaFields,\n      ImmutableMap<String, String> tableLabels,\n      SchemaConvertersConfiguration schemaConvertersConfiguration,\n      java.util.Optional<String> destinationTableKmsKeyName,\n      boolean writeAtLeastOnce,\n      PartitionOverwriteMode overwriteMode,\n      java.util.Optional<ImmutableList<String>> clusteredFields,\n      SparkContext sparkContext)\n      throws IllegalArgumentException {\n    this.bigQueryClient = bigQueryClient;\n    this.writeClientFactory = bigQueryWriteClientFactory;\n    this.destinationTableId = destinationTableId;\n    this.writeUUID = writeUUID;\n    this.sparkSchema = sparkSchema;\n    this.bigqueryDataWriterHelperRetrySettings = bigqueryDataWriterHelperRetrySettings;\n    this.traceId = traceId;\n    this.enableModeCheckForSchemaFields = enableModeCheckForSchemaFields;\n    this.tableLabels = tableLabels;\n    this.schemaConvertersConfiguration = schemaConvertersConfiguration;\n    this.destinationTableKmsKeyName = Optional.fromJavaUtil(destinationTableKmsKeyName);\n    this.writeAtLeastOnce = writeAtLeastOnce;\n    this.sparkContext = sparkContext;\n    Schema bigQuerySchema =\n        SchemaConverters.from(this.schemaConvertersConfiguration).toBigQuerySchema(sparkSchema);\n    try {\n      this.protoSchema = toProtoSchema(sparkSchema);\n    } catch (IllegalArgumentException e) {\n      throw new BigQueryConnectorException.InvalidSchemaException(\n          \"Could not convert Spark schema to protobuf descriptor\", e);\n    }\n    this.tableToWrite =\n        getOrCreateTable(saveMode, destinationTableId, bigQuerySchema, clusteredFields);\n    this.tablePathForBigQueryStorage =\n        bigQueryClient.createTablePathForBigQueryStorage(tableToWrite.getTableId());\n\n    if (!writingMode.equals(WritingMode.IGNORE_INPUTS)) {\n      this.writeClient = writeClientFactory.getBigQueryWriteClient();\n    }\n    this.overwriteMode = overwriteMode;\n  }\n\n  /**\n   * This function determines whether the destination table exists: if it doesn't, we will create a\n   * table and Spark will directly write to it.\n   *\n   * @param saveMode the SaveMode supplied by the user.\n   * @param destinationTableId the TableId, as was supplied by the user\n   * @param bigQuerySchema the bigQuery schema\n   * @return The TableId to which Spark will do the writing: whether that is the destinationTableID\n   *     or the temporaryTableId.\n   */\n  private BigQueryTable getOrCreateTable(\n      SaveMode saveMode,\n      TableId destinationTableId,\n      Schema bigQuerySchema,\n      java.util.Optional<ImmutableList<String>> clusteredFields)\n      throws IllegalArgumentException {\n    if (bigQueryClient.tableExists(destinationTableId)) {\n      TableInfo destinationTable = bigQueryClient.getTable(destinationTableId);\n      Schema tableSchema = destinationTable.getDefinition().getSchema();\n      ComparisonResult schemaWritableResult =\n          BigQueryUtil.schemaWritable(\n              bigQuerySchema, // sourceSchema\n              tableSchema, // destinationSchema\n              false, // regardFieldOrder\n              enableModeCheckForSchemaFields);\n      Preconditions.checkArgument(\n          schemaWritableResult.valuesAreEqual(),\n          new BigQueryConnectorException.InvalidSchemaException(\n              \"Destination table's schema is not compatible with dataframe's schema. \"\n                  + schemaWritableResult.makeMessage()));\n      switch (saveMode) {\n        case Append:\n          if (writeAtLeastOnce) {\n            writingMode = WritingMode.APPEND_AT_LEAST_ONCE;\n            return new BigQueryTable(\n                bigQueryClient.createTempTable(destinationTableId, tableSchema).getTableId(), true);\n          }\n          break;\n        case Overwrite:\n          writingMode = WritingMode.OVERWRITE;\n          return new BigQueryTable(\n              bigQueryClient.createTempTable(destinationTableId, tableSchema).getTableId(), true);\n        case Ignore:\n          writingMode = WritingMode.IGNORE_INPUTS;\n          break;\n        case ErrorIfExists:\n          throw new IllegalArgumentException(\"Table already exists in BigQuery\");\n      }\n      return new BigQueryTable(destinationTable.getTableId(), false);\n    } else {\n      return new BigQueryTable(\n          bigQueryClient\n              .createTable(\n                  destinationTableId,\n                  bigQuerySchema,\n                  BigQueryClient.CreateTableOptions.of(\n                      destinationTableKmsKeyName.toJavaUtil(), tableLabels, clusteredFields))\n              .getTableId(),\n          true);\n    }\n  }\n\n  @Override\n  public DataWriterContextFactory<InternalRow> createWriterContextFactory() {\n    return new BigQueryDirectDataWriterContextFactory(\n        writeClientFactory,\n        tablePathForBigQueryStorage,\n        sparkSchema,\n        protoSchema,\n        writingMode.equals(WritingMode.IGNORE_INPUTS),\n        bigqueryDataWriterHelperRetrySettings,\n        traceId,\n        writeAtLeastOnce);\n  }\n\n  @Override\n  public void onDataWriterCommit(WriterCommitMessageContext message) {}\n\n  /**\n   * This function will determine, based on the WritingMode: if in IGNORE_INPUTS mode, no work is to\n   * be done; otherwise all streams will be batch committed using the BigQuery Storage Write API,\n   * and then: if in OVERWRITE mode, the overwriteDestinationWithTemporary function from\n   * BigQueryClient will be called to replace the destination table with all the data from the\n   * temporary table; if in OVERWRITE mode with dynamic partitions enabled,\n   * overwriteDestinationWithTemporaryDynamicPartitons from BigQueryClient will be called to replace\n   * the required partitions;if in ALL_ELSE mode no more work needs to be done.\n   *\n   * @see WritingMode\n   * @see BigQueryClient#overwriteDestinationWithTemporary(TableId temporaryTableId, TableId\n   *     destinationTableId)\n   * @param messages the BigQueryWriterCommitMessage array returned by the BigQueryDataWriter's.\n   */\n  @Override\n  public void commit(WriterCommitMessageContext[] messages) {\n    if (writingMode.equals(WritingMode.IGNORE_INPUTS)) return;\n    logger.info(\n        \"BigQuery DataSource writer {} committed with messages:\\n{}\",\n        writeUUID,\n        Arrays.toString(messages));\n    long bytesWritten = 0;\n    if (!writeAtLeastOnce) {\n      BatchCommitWriteStreamsRequest.Builder batchCommitWriteStreamsRequest =\n          BatchCommitWriteStreamsRequest.newBuilder().setParent(tablePathForBigQueryStorage);\n      for (WriterCommitMessageContext message : messages) {\n        bytesWritten += ((BigQueryDirectWriterCommitMessageContext) message).getBytesWritten();\n        batchCommitWriteStreamsRequest.addWriteStreams(\n            ((BigQueryDirectWriterCommitMessageContext) message).getWriteStreamName());\n      }\n      BatchCommitWriteStreamsResponse batchCommitWriteStreamsResponse =\n          writeClient.batchCommitWriteStreams(batchCommitWriteStreamsRequest.build());\n\n      if (!batchCommitWriteStreamsResponse.hasCommitTime()) {\n        throw new BigQueryConnectorException(\n            \"DataSource writer failed to batch commit its BigQuery write-streams\");\n      }\n\n      logger.info(\n          \"BigQuery DataSource writer has committed at time: {}\",\n          batchCommitWriteStreamsResponse.getCommitTime());\n    }\n\n    if (writingMode.equals(WritingMode.APPEND_AT_LEAST_ONCE)\n        || writingMode.equals(WritingMode.OVERWRITE)) {\n      Job queryJob =\n          (writingMode.equals(WritingMode.OVERWRITE))\n              ? overwriteMode == PartitionOverwriteMode.STATIC\n                  ? bigQueryClient.overwriteDestinationWithTemporary(\n                      tableToWrite.getTableId(), destinationTableId)\n                  : bigQueryClient.overwriteDestinationWithTemporaryDynamicPartitons(\n                      tableToWrite.getTableId(), destinationTableId)\n              : bigQueryClient.appendDestinationWithTemporary(\n                  tableToWrite.getTableId(), destinationTableId);\n      bigQueryClient.waitForJob(queryJob);\n      Preconditions.checkState(\n          bigQueryClient.deleteTable(tableToWrite.getTableId()),\n          new BigQueryConnectorException(\n              String.format(\"Could not delete temporary table %s from BigQuery\", tableToWrite)));\n    }\n\n    if (!tableLabels.isEmpty()) {\n      TableInfo originalTableInfo = bigQueryClient.getTable(destinationTableId);\n      TableInfo.Builder updatedTableInfo = originalTableInfo.toBuilder();\n      updatedTableInfo.setLabels(tableLabels);\n      bigQueryClient.update(updatedTableInfo.build());\n    }\n    long currentTimeMillis = System.currentTimeMillis();\n    SparkBigQueryConnectorMetricsUtils.postWriteSessionMetrics(\n        currentTimeMillis,\n        SparkBigQueryConfig.WriteMethod.DIRECT,\n        bytesWritten,\n        java.util.Optional.empty(),\n        sparkContext);\n  }\n\n  /**\n   * If not in WritingMode IGNORE_INPUTS, the BigQuery Storage Write API WriteClient is shut down.\n   *\n   * @see BigQueryWriteClient\n   * @param messages the BigQueryWriterCommitMessage array returned by the BigQueryDataWriter's.\n   */\n  @Override\n  public void abort(WriterCommitMessageContext[] messages) {\n    logger.warn(\"BigQuery Data Source writer {} aborted\", writeUUID);\n    if (writingMode.equals(WritingMode.IGNORE_INPUTS)) return;\n\n    // Deletes the preliminary table we wrote to (if it exists):\n    if (tableToWrite.toDeleteOnAbort()) {\n      bigQueryClient.deleteTable(tableToWrite.getTableId());\n    }\n  }\n\n  @Override\n  public void setTableInfo(TableInfo tableInfo) {\n    this.tableInfo = Optional.fromNullable(tableInfo);\n  }\n\n  // Used for the getOrCreateTable output, to indicate if the table should be deleted on abort\n  static class BigQueryTable {\n    private final TableId tableId;\n    private final boolean toDeleteOnAbort;\n\n    public BigQueryTable(TableId tableId, boolean toDeleteOnAbort) {\n      this.tableId = tableId;\n      this.toDeleteOnAbort = toDeleteOnAbort;\n    }\n\n    public TableId getTableId() {\n      return tableId;\n    }\n\n    public boolean toDeleteOnAbort() {\n      return toDeleteOnAbort;\n    }\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/write/context/BigQueryDirectDataWriterContext.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.write.context;\n\nimport static com.google.cloud.spark.bigquery.ProtobufUtils.ProtobufSchemaFieldCacheEntry;\nimport static com.google.cloud.spark.bigquery.ProtobufUtils.buildSingleRowMessage;\nimport static com.google.cloud.spark.bigquery.ProtobufUtils.toDescriptor;\n\nimport com.google.api.gax.retrying.RetrySettings;\nimport com.google.cloud.bigquery.connector.common.BigQueryClientFactory;\nimport com.google.cloud.bigquery.connector.common.BigQueryConnectorException;\nimport com.google.cloud.bigquery.connector.common.BigQueryDirectDataWriterHelper;\nimport com.google.cloud.bigquery.connector.common.WriteStreamStatistics;\nimport com.google.cloud.bigquery.storage.v1.ProtoSchema;\nimport com.google.common.base.Optional;\nimport com.google.protobuf.ByteString;\nimport com.google.protobuf.Descriptors;\nimport com.google.protobuf.DynamicMessage;\nimport java.io.IOException;\nimport java.util.HashMap;\nimport java.util.Map;\nimport org.apache.spark.sql.catalyst.InternalRow;\nimport org.apache.spark.sql.types.StructType;\nimport org.slf4j.Logger;\nimport org.slf4j.LoggerFactory;\n\npublic class BigQueryDirectDataWriterContext implements DataWriterContext<InternalRow> {\n  final Logger logger = LoggerFactory.getLogger(BigQueryDirectDataWriterContext.class);\n\n  private final int partitionId;\n  private final long taskId;\n  private final long epochId;\n  private final String tablePath;\n  private final StructType sparkSchema;\n  private final Descriptors.Descriptor schemaDescriptor;\n  private final Map<Integer, ProtobufSchemaFieldCacheEntry> fieldIndexToEntryMap;\n  private final DynamicMessage.Builder messageBuilder;\n\n  /**\n   * A helper object to assist the BigQueryDataWriter with all the writing: essentially does all the\n   * interaction with BigQuery Storage Write API.\n   */\n  private BigQueryDirectDataWriterHelper writerHelper;\n\n  public BigQueryDirectDataWriterContext(\n      int partitionId,\n      long taskId,\n      long epochId,\n      BigQueryClientFactory writeClientFactory,\n      String tablePath,\n      StructType sparkSchema,\n      ProtoSchema protoSchema,\n      RetrySettings bigqueryDataWriterHelperRetrySettings,\n      Optional<String> traceId,\n      boolean writeAtLeastOnce) {\n    this.partitionId = partitionId;\n    this.taskId = taskId;\n    this.epochId = epochId;\n    this.tablePath = tablePath;\n    this.sparkSchema = sparkSchema;\n    try {\n      this.schemaDescriptor = toDescriptor(sparkSchema);\n    } catch (Descriptors.DescriptorValidationException e) {\n      throw new BigQueryConnectorException.InvalidSchemaException(\n          \"Could not convert spark-schema to descriptor object\", e);\n    }\n    this.fieldIndexToEntryMap = new HashMap<>();\n    this.messageBuilder = DynamicMessage.newBuilder(this.schemaDescriptor);\n\n    this.writerHelper =\n        new BigQueryDirectDataWriterHelper(\n            writeClientFactory,\n            tablePath,\n            protoSchema,\n            bigqueryDataWriterHelperRetrySettings,\n            traceId,\n            partitionId,\n            writeAtLeastOnce);\n  }\n\n  @Override\n  public void write(InternalRow record) throws IOException {\n    ByteString message =\n        buildSingleRowMessage(\n                sparkSchema,\n                schemaDescriptor,\n                record,\n                java.util.Optional.of(fieldIndexToEntryMap),\n                messageBuilder)\n            .toByteString();\n    writerHelper.addRow(message);\n  }\n\n  @Override\n  public WriterCommitMessageContext commit() throws IOException {\n    logger.debug(\"Data Writer {} finalizeStream()\", partitionId);\n\n    WriteStreamStatistics stats = writerHelper.finalizeStream();\n    String writeStreamName = writerHelper.getWriteStreamName();\n\n    logger.debug(\n        \"Data Writer {}'s write-stream has finalized with row count: {}\",\n        partitionId,\n        stats.getRowCount());\n\n    return new BigQueryDirectWriterCommitMessageContext(\n        writeStreamName,\n        partitionId,\n        taskId,\n        epochId,\n        tablePath,\n        stats.getRowCount(),\n        stats.getBytesWritten());\n  }\n\n  @Override\n  public void abort() throws IOException {\n    logger.debug(\"Data Writer {} abort()\", partitionId);\n    writerHelper.abort();\n  }\n\n  @Override\n  public void close() throws IOException {\n    // empty\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/write/context/BigQueryDirectDataWriterContextFactory.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.write.context;\n\nimport com.google.api.gax.retrying.RetrySettings;\nimport com.google.cloud.bigquery.connector.common.BigQueryClientFactory;\nimport com.google.cloud.bigquery.storage.v1.ProtoSchema;\nimport com.google.common.base.Optional;\nimport org.apache.spark.sql.catalyst.InternalRow;\nimport org.apache.spark.sql.types.StructType;\n\npublic class BigQueryDirectDataWriterContextFactory\n    implements DataWriterContextFactory<InternalRow> {\n  private final BigQueryClientFactory writeClientFactory;\n  private final String tablePath;\n  private final StructType sparkSchema;\n  private final ProtoSchema protoSchema;\n  private final boolean ignoreInputs;\n  private final RetrySettings bigqueryDataWriterHelperRetrySettings;\n  private final Optional<String> traceId;\n  private final boolean writeAtLeastOnce;\n\n  public BigQueryDirectDataWriterContextFactory(\n      BigQueryClientFactory writeClientFactory,\n      String tablePath,\n      StructType sparkSchema,\n      ProtoSchema protoSchema,\n      boolean ignoreInputs,\n      RetrySettings bigqueryDataWriterHelperRetrySettings,\n      Optional<String> traceId,\n      boolean writeAtLeastOnce) {\n    this.writeClientFactory = writeClientFactory;\n    this.tablePath = tablePath;\n    this.sparkSchema = sparkSchema;\n    this.protoSchema = protoSchema;\n    this.ignoreInputs = ignoreInputs;\n    this.bigqueryDataWriterHelperRetrySettings = bigqueryDataWriterHelperRetrySettings;\n    this.traceId = traceId;\n    this.writeAtLeastOnce = writeAtLeastOnce;\n  }\n\n  /**\n   * If ignoreInputs is true, return a NoOpDataWriter, a stub class that performs no operations upon\n   * the call of its methods; otherwise return BigQueryDataWriter.\n   *\n   * @see NoOpDataWriterContext\n   * @see BigQueryDirectDataWriterContext\n   * @param partitionId The partitionId of the DataWriter to be created\n   * @param taskId the taskId\n   * @param epochId the epochId\n   * @return The DataWriter to be used.\n   */\n  @Override\n  public DataWriterContext<InternalRow> createDataWriterContext(\n      int partitionId, long taskId, long epochId) {\n    if (ignoreInputs) {\n      return new NoOpDataWriterContext();\n    }\n    return new BigQueryDirectDataWriterContext(\n        partitionId,\n        taskId,\n        epochId,\n        writeClientFactory,\n        tablePath,\n        sparkSchema,\n        protoSchema,\n        bigqueryDataWriterHelperRetrySettings,\n        traceId,\n        writeAtLeastOnce);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/write/context/BigQueryDirectWriterCommitMessageContext.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.write.context;\n\npublic class BigQueryDirectWriterCommitMessageContext implements WriterCommitMessageContext {\n\n  private static final long serialVersionUID = -1562914502592461805L;\n  private final String writeStreamName;\n  private final int partitionId;\n  private final long taskId;\n  private final long epochId;\n  private final String tablePath;\n  private final long rowCount;\n  private final long bytesWritten;\n\n  public BigQueryDirectWriterCommitMessageContext(\n      String writeStreamName /*List<String> writeStreamNames*/,\n      int partitionId,\n      long taskId,\n      long epochId,\n      String tablePath,\n      long rowCount,\n      long bytesWritten) {\n    this.writeStreamName = writeStreamName;\n    this.partitionId = partitionId;\n    this.taskId = taskId;\n    this.epochId = epochId;\n    this.tablePath = tablePath;\n    this.rowCount = rowCount;\n    this.bytesWritten = bytesWritten;\n  }\n\n  public String getWriteStreamName() {\n    return writeStreamName;\n  }\n\n  public int getPartitionId() {\n    return partitionId;\n  }\n\n  public long getTaskId() {\n    return taskId;\n  }\n\n  public long getEpochId() {\n    return epochId;\n  }\n\n  public String getTablePath() {\n    return tablePath;\n  }\n\n  public long getRowCount() {\n    return rowCount;\n  }\n\n  public long getBytesWritten() {\n    return bytesWritten;\n  }\n\n  @Override\n  public String toString() {\n    return \"BigQueryWriterCommitMessage{\"\n        + \"partitionId=\"\n        + partitionId\n        + \", taskId=\"\n        + taskId\n        + \", epochId=\"\n        + epochId\n        + \", tableId='\"\n        + tablePath\n        + '\\''\n        + '}';\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/write/context/BigQueryIndirectDataSourceWriterContext.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.write.context;\n\nimport com.google.cloud.bigquery.FormatOptions;\nimport com.google.cloud.bigquery.Job;\nimport com.google.cloud.bigquery.JobInfo;\nimport com.google.cloud.bigquery.JobStatistics;\nimport com.google.cloud.bigquery.Schema;\nimport com.google.cloud.bigquery.TableId;\nimport com.google.cloud.bigquery.TableInfo;\nimport com.google.cloud.bigquery.connector.common.BigQueryClient;\nimport com.google.cloud.bigquery.connector.common.BigQueryUtil;\nimport com.google.cloud.spark.bigquery.AvroSchemaConverter;\nimport com.google.cloud.spark.bigquery.PartitionOverwriteMode;\nimport com.google.cloud.spark.bigquery.SchemaConverters;\nimport com.google.cloud.spark.bigquery.SchemaConvertersConfiguration;\nimport com.google.cloud.spark.bigquery.SparkBigQueryConfig;\nimport com.google.cloud.spark.bigquery.SparkBigQueryUtil;\nimport com.google.cloud.spark.bigquery.metrics.SparkBigQueryConnectorMetricsUtils;\nimport com.google.cloud.spark.bigquery.write.BigQueryWriteHelper;\nimport com.google.cloud.spark.bigquery.write.IntermediateDataCleaner;\nimport java.io.IOException;\nimport java.io.UncheckedIOException;\nimport java.util.List;\nimport java.util.Optional;\nimport java.util.stream.Collectors;\nimport java.util.stream.Stream;\nimport org.apache.beam.sdk.io.hadoop.SerializableConfiguration;\nimport org.apache.hadoop.conf.Configuration;\nimport org.apache.hadoop.fs.Path;\nimport org.apache.spark.SparkContext;\nimport org.apache.spark.sql.SaveMode;\nimport org.apache.spark.sql.catalyst.InternalRow;\nimport org.apache.spark.sql.types.StructType;\nimport org.slf4j.Logger;\nimport org.slf4j.LoggerFactory;\n\n/**\n * A DataSourceWriter implemented by first writing the DataFrame's data into GCS in an intermediate\n * format, and then triggering a BigQuery load job on this data. Hence the \"indirect\" - the data\n * goes through an intermediate storage.\n */\npublic class BigQueryIndirectDataSourceWriterContext implements DataSourceWriterContext {\n\n  private static final Logger logger =\n      LoggerFactory.getLogger(BigQueryIndirectDataSourceWriterContext.class);\n\n  private final BigQueryClient bigQueryClient;\n  private final SparkBigQueryConfig config;\n  private final Configuration hadoopConfiguration;\n  private final StructType sparkSchema;\n  private final String writeUUID;\n  private final SaveMode saveMode;\n  private final Path gcsPath;\n  private final Optional<IntermediateDataCleaner> intermediateDataCleaner;\n\n  private Optional<TableInfo> tableInfo = Optional.empty();\n\n  private Optional<TableId> temporaryTableId = Optional.empty();\n  private final JobInfo.WriteDisposition writeDisposition;\n\n  private final SparkContext sparkContext;\n\n  public BigQueryIndirectDataSourceWriterContext(\n      BigQueryClient bigQueryClient,\n      SparkBigQueryConfig config,\n      Configuration hadoopConfiguration,\n      StructType sparkSchema,\n      String writeUUID,\n      SaveMode saveMode,\n      Path gcsPath,\n      Optional<IntermediateDataCleaner> intermediateDataCleaner,\n      SparkContext sparkContext) {\n    this.bigQueryClient = bigQueryClient;\n    this.config = config;\n    this.hadoopConfiguration = hadoopConfiguration;\n    this.sparkSchema = sparkSchema;\n    this.writeUUID = writeUUID;\n    this.saveMode = saveMode;\n    this.gcsPath = gcsPath;\n    this.intermediateDataCleaner = intermediateDataCleaner;\n    this.writeDisposition = SparkBigQueryUtil.saveModeToWriteDisposition(saveMode);\n    this.sparkContext = sparkContext;\n  }\n\n  @Override\n  public DataWriterContextFactory<InternalRow> createWriterContextFactory() {\n    org.apache.avro.Schema avroSchema = AvroSchemaConverter.sparkSchemaToAvroSchema(sparkSchema);\n    return new BigQueryIndirectDataWriterContextFactory(\n        new SerializableConfiguration(hadoopConfiguration),\n        gcsPath.toString(),\n        sparkSchema,\n        avroSchema.toString());\n  }\n\n  @Override\n  public void onDataStreamingWriterCommit(long epochId, WriterCommitMessageContext[] messages) {\n    commitMessages(messages, epochId);\n  }\n\n  @Override\n  public void onDataStreamingWriterAbort(long epochId, WriterCommitMessageContext[] messages) {\n    try {\n      logger.warn(\n          \"Aborting epoch {} from streaming write {} for table {}\",\n          epochId,\n          writeUUID,\n          BigQueryUtil.friendlyTableName(config.getTableId()));\n    } finally {\n      cleanTemporaryGcsPathIfNeeded(epochId);\n    }\n  }\n\n  @Override\n  public void commit(WriterCommitMessageContext[] messages) {\n    commitMessages(messages, 0);\n  }\n\n  @Override\n  public void abort(WriterCommitMessageContext[] messages) {\n    try {\n      logger.warn(\n          \"Aborting write {} for table {}\",\n          writeUUID,\n          BigQueryUtil.friendlyTableName(config.getTableId()));\n    } finally {\n      cleanTemporaryGcsPathIfNeeded(0);\n    }\n  }\n\n  @Override\n  public void setTableInfo(TableInfo tableInfo) {\n    this.tableInfo = Optional.ofNullable(tableInfo);\n  }\n\n  private void commitMessages(WriterCommitMessageContext[] messages, long epochId) {\n    logger.info(\n        \"Data has been successfully written to GCS. Going to load {} files to BigQuery\",\n        messages.length);\n    try {\n      List<String> sourceUris =\n          Stream.of(messages)\n              .map(msg -> ((BigQueryIndirectWriterCommitMessageContext) msg).getUri())\n              .collect(Collectors.toList());\n\n      Schema schema =\n          SchemaConverters.from(SchemaConvertersConfiguration.from(config))\n              .toBigQuerySchema(sparkSchema);\n      if (tableInfo.isPresent()) {\n        schema =\n            BigQueryUtil.adjustSchemaIfNeeded(\n                schema,\n                tableInfo.get().getDefinition().getSchema(),\n                config\n                    .getLoadSchemaUpdateOptions()\n                    .contains(JobInfo.SchemaUpdateOption.ALLOW_FIELD_RELAXATION));\n      }\n      if (writeDisposition == JobInfo.WriteDisposition.WRITE_TRUNCATE\n          && config.getPartitionOverwriteModeValue() == PartitionOverwriteMode.DYNAMIC\n          && bigQueryClient.tableExists(config.getTableId())\n          && bigQueryClient.isTablePartitioned(config.getTableId())) {\n        temporaryTableId =\n            Optional.of(\n                bigQueryClient\n                    .createTempTableAfterCheckingSchema(\n                        config.getTableId(), schema, config.getEnableModeCheckForSchemaFields())\n                    .getTableId());\n        loadDataToBigQuery(sourceUris, schema);\n        Job queryJob =\n            bigQueryClient.overwriteDestinationWithTemporaryDynamicPartitons(\n                temporaryTableId.get(), config.getTableId());\n        bigQueryClient.waitForJob(queryJob);\n      } else {\n        loadDataToBigQuery(sourceUris, schema);\n      }\n      if (writeDisposition == JobInfo.WriteDisposition.WRITE_TRUNCATE) {\n        updateMetadataIfNeeded();\n      }\n    } catch (IOException e) {\n      throw new UncheckedIOException(e);\n    } finally {\n      cleanTemporaryGcsPathIfNeeded(epochId);\n    }\n    logger.info(\"Data has been successfully loaded to BigQuery\");\n  }\n\n  void loadDataToBigQuery(List<String> sourceUris, Schema schema) throws IOException {\n    // Solving Issue #248\n    List<String> optimizedSourceUris = SparkBigQueryUtil.optimizeLoadUriListForSpark(sourceUris);\n    TableId destinationTableId = temporaryTableId.orElse(config.getTableId());\n    JobStatistics.LoadStatistics loadStatistics =\n        bigQueryClient.loadDataIntoTable(\n            config,\n            optimizedSourceUris,\n            FormatOptions.avro(),\n            writeDisposition,\n            Optional.of(schema),\n            destinationTableId);\n\n    long currentTimeMillis = System.currentTimeMillis();\n    SparkBigQueryConnectorMetricsUtils.postWriteSessionMetrics(\n        currentTimeMillis,\n        SparkBigQueryConfig.WriteMethod.INDIRECT,\n        loadStatistics.getOutputBytes(),\n        Optional.of(config.getIntermediateFormat()),\n        sparkContext);\n  }\n\n  void updateMetadataIfNeeded() {\n    BigQueryWriteHelper.updateTableMetadataIfNeeded(sparkSchema, config, bigQueryClient);\n  }\n\n  void cleanTemporaryGcsPathIfNeeded(long epochId) {\n    intermediateDataCleaner.ifPresent(cleaner -> cleaner.deleteEpochPath(epochId));\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/write/context/BigQueryIndirectDataWriterContext.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.write.context;\n\nimport com.google.cloud.spark.bigquery.AvroSchemaConverter;\nimport java.io.IOException;\nimport org.apache.avro.Schema;\nimport org.apache.avro.generic.GenericRecord;\nimport org.apache.hadoop.fs.FSDataOutputStream;\nimport org.apache.hadoop.fs.FileSystem;\nimport org.apache.hadoop.fs.Path;\nimport org.apache.spark.sql.catalyst.InternalRow;\nimport org.apache.spark.sql.types.StructType;\nimport org.slf4j.Logger;\nimport org.slf4j.LoggerFactory;\n\nclass BigQueryIndirectDataWriterContext implements DataWriterContext<InternalRow> {\n\n  private static final Logger logger =\n      LoggerFactory.getLogger(BigQueryIndirectDataWriterContext.class);\n  Path path;\n  FileSystem fs;\n  FSDataOutputStream outputStream;\n  StructType sparkSchema;\n  Schema avroSchema;\n  IntermediateRecordWriter intermediateRecordWriter;\n  private int partitionId;\n\n  protected BigQueryIndirectDataWriterContext(\n      int partitionId,\n      Path path,\n      FileSystem fs,\n      StructType sparkSchema,\n      Schema avroSchema,\n      IntermediateRecordWriter intermediateRecordWriter) {\n    this.partitionId = partitionId;\n    this.path = path;\n    this.fs = fs;\n    this.sparkSchema = sparkSchema;\n    this.avroSchema = avroSchema;\n    this.intermediateRecordWriter = intermediateRecordWriter;\n  }\n\n  @Override\n  public void write(InternalRow record) throws IOException {\n    GenericRecord avroRecord =\n        AvroSchemaConverter.sparkRowToAvroGenericData(record, sparkSchema, avroSchema);\n    intermediateRecordWriter.write(avroRecord);\n  }\n\n  @Override\n  public WriterCommitMessageContext commit() throws IOException {\n    intermediateRecordWriter.close();\n    return new BigQueryIndirectWriterCommitMessageContext(path.toString());\n  }\n\n  @Override\n  public void abort() throws IOException {\n    logger.warn(\n        \"Writing of partition {} has been aborted, attempting to delete {}\", partitionId, path);\n    fs.delete(path, false);\n  }\n\n  @Override\n  public void close() throws IOException {\n    // empty\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/write/context/BigQueryIndirectDataWriterContextFactory.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.write.context;\n\nimport java.io.IOException;\nimport java.io.UncheckedIOException;\nimport java.util.UUID;\nimport org.apache.avro.Schema;\nimport org.apache.beam.sdk.io.hadoop.SerializableConfiguration;\nimport org.apache.hadoop.fs.FileSystem;\nimport org.apache.hadoop.fs.Path;\nimport org.apache.spark.sql.catalyst.InternalRow;\nimport org.apache.spark.sql.types.StructType;\n\nclass BigQueryIndirectDataWriterContextFactory implements DataWriterContextFactory<InternalRow> {\n\n  SerializableConfiguration conf;\n  String gcsDirPath;\n  StructType sparkSchema;\n  String avroSchemaJson;\n\n  public BigQueryIndirectDataWriterContextFactory(\n      SerializableConfiguration conf,\n      String gcsDirPath,\n      StructType sparkSchema,\n      String avroSchemaJson) {\n    this.conf = conf;\n    this.gcsDirPath = gcsDirPath;\n    this.sparkSchema = sparkSchema;\n    this.avroSchemaJson = avroSchemaJson;\n  }\n\n  @Override\n  public DataWriterContext<InternalRow> createDataWriterContext(\n      int partitionId, long taskId, long epochId) {\n    try {\n      Schema avroSchema = new Schema.Parser().parse(avroSchemaJson);\n\n      UUID uuid = new UUID(taskId, epochId);\n      String fileName = String.format(\"part-%06d-%s.avro\", partitionId, uuid);\n      Path path = new Path(gcsDirPath + \"/\" + epochId, fileName);\n      FileSystem fs = path.getFileSystem(conf.get());\n      IntermediateRecordWriter intermediateRecordWriter =\n          new AvroIntermediateRecordWriter(avroSchema, fs.create(path));\n      return new BigQueryIndirectDataWriterContext(\n          partitionId, path, fs, sparkSchema, avroSchema, intermediateRecordWriter);\n    } catch (IOException e) {\n      throw new UncheckedIOException(e);\n    }\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/write/context/BigQueryIndirectWriterCommitMessageContext.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.write.context;\n\nclass BigQueryIndirectWriterCommitMessageContext implements WriterCommitMessageContext {\n\n  private static final long serialVersionUID = -6646939344980582239L;\n  private final String uri;\n\n  public BigQueryIndirectWriterCommitMessageContext(String uri) {\n    this.uri = uri;\n  }\n\n  public String getUri() {\n    return uri;\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/write/context/DataSourceWriterContext.java",
    "content": "/*\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.write.context;\n\nimport com.google.cloud.bigquery.JobInfo;\nimport com.google.cloud.bigquery.TableId;\nimport com.google.cloud.bigquery.TableInfo;\nimport com.google.cloud.bigquery.connector.common.BigQueryClient;\nimport com.google.cloud.bigquery.connector.common.BigQueryUtil;\nimport com.google.cloud.spark.bigquery.DataSourceVersion;\nimport com.google.cloud.spark.bigquery.SparkBigQueryConfig;\nimport com.google.common.collect.ImmutableMap;\nimport com.google.inject.Injector;\nimport java.util.Map;\nimport java.util.Optional;\nimport org.apache.spark.sql.SaveMode;\nimport org.apache.spark.sql.SparkSession;\nimport org.apache.spark.sql.catalyst.InternalRow;\nimport org.apache.spark.sql.types.StructType;\n\npublic interface DataSourceWriterContext {\n\n  DataWriterContextFactory<InternalRow> createWriterContextFactory();\n\n  default boolean useCommitCoordinator() {\n    return true;\n  }\n\n  default void onDataWriterCommit(WriterCommitMessageContext message) {}\n\n  default void onDataStreamingWriterCommit(long epochId, WriterCommitMessageContext[] messages) {}\n\n  default void onDataStreamingWriterAbort(long epochId, WriterCommitMessageContext[] messages) {}\n\n  void commit(WriterCommitMessageContext[] messages);\n\n  void abort(WriterCommitMessageContext[] messages);\n\n  void setTableInfo(TableInfo tableInfo);\n\n  static Optional<DataSourceWriterContext> create(\n      Injector injector,\n      String writeUUID,\n      StructType schema,\n      SaveMode mode,\n      Map<String, String> options) {\n    SparkBigQueryConfig tableConfig = injector.getInstance(SparkBigQueryConfig.class);\n    if (tableConfig.getTableId() == null) {\n      // the config was created for the catalog, we need to parse the tableId from the options\n      SparkSession spark = injector.getInstance(SparkSession.class);\n      tableConfig =\n          SparkBigQueryConfig.from(\n              options,\n              ImmutableMap.of(),\n              DataSourceVersion.V2,\n              spark,\n              Optional.of(schema),\n              true /* tableIsMandatory */);\n    }\n    Injector writerInjector =\n        injector.createChildInjector(\n            new BigQueryDataSourceWriterModule(tableConfig, writeUUID, schema, mode));\n    // first verify if we need to do anything at all, based on the table existence and the save\n    // mode.\n    BigQueryClient bigQueryClient = writerInjector.getInstance(BigQueryClient.class);\n    TableId tableId = tableConfig.getTableId();\n    TableInfo table = bigQueryClient.getTable(tableId);\n    if (table != null) {\n      // table already exists\n      if (mode == SaveMode.Ignore) {\n        return Optional.empty();\n      }\n      if (mode == SaveMode.ErrorIfExists) {\n        throw new IllegalArgumentException(\n            String.format(\n                \"SaveMode is set to ErrorIfExists and table '%s' already exists. Did you want \"\n                    + \"to add data to the table by setting the SaveMode to Append? Example: \"\n                    + \"df.write.format.options.mode(\\\"append\\\").save()\",\n                BigQueryUtil.friendlyTableName(table.getTableId())));\n      }\n    } else {\n      // table does not exist\n      // If the CreateDisposition is CREATE_NEVER, and the table does not exist,\n      // there's no point in writing the data to GCS in the first place as it going\n      // to fail on the BigQuery side.\n      boolean createNever =\n          tableConfig\n              .getCreateDisposition()\n              .map(createDisposition -> createDisposition == JobInfo.CreateDisposition.CREATE_NEVER)\n              .orElse(false);\n      if (createNever) {\n        throw new IllegalArgumentException(\n            String.format(\n                \"For table %s Create Disposition is CREATE_NEVER and the table does not exists.\"\n                    + \" Aborting the insert\",\n                BigQueryUtil.friendlyTableName(tableId)));\n      }\n    }\n    DataSourceWriterContext dataSourceWriterContext = null;\n    switch (tableConfig.getWriteMethod()) {\n      case DIRECT:\n        dataSourceWriterContext =\n            writerInjector.getInstance(BigQueryDirectDataSourceWriterContext.class);\n        break;\n      case INDIRECT:\n        dataSourceWriterContext =\n            writerInjector.getInstance(BigQueryIndirectDataSourceWriterContext.class);\n        break;\n    }\n    dataSourceWriterContext.setTableInfo(table);\n    return Optional.of(dataSourceWriterContext);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/write/context/DataWriterContext.java",
    "content": "/*\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.write.context;\n\nimport java.io.Closeable;\nimport java.io.IOException;\n\n/**\n * An internal version to Spark DataSource DataWriter interface\n *\n * @param <T>\n */\npublic interface DataWriterContext<T> extends Closeable {\n  void write(T row) throws IOException;\n\n  WriterCommitMessageContext commit() throws IOException;\n\n  void abort() throws IOException;\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/write/context/DataWriterContextFactory.java",
    "content": "/*\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.write.context;\n\nimport java.io.Serializable;\n\npublic interface DataWriterContextFactory<T> extends Serializable {\n\n  DataWriterContext<T> createDataWriterContext(int partitionId, long taskId, long epochId);\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/write/context/IntermediateRecordWriter.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.write.context;\n\nimport java.io.Closeable;\nimport java.io.IOException;\nimport org.apache.avro.generic.GenericRecord;\n\npublic interface IntermediateRecordWriter extends Closeable {\n\n  void write(GenericRecord avroRecord) throws IOException;\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/write/context/NoOpDataWriterContext.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.write.context;\n\nimport java.io.IOException;\nimport org.apache.spark.sql.catalyst.InternalRow;\n\npublic class NoOpDataWriterContext implements DataWriterContext<InternalRow> {\n  @Override\n  public void write(InternalRow record) throws IOException {}\n\n  @Override\n  public WriterCommitMessageContext commit() throws IOException {\n    return null;\n  }\n\n  @Override\n  public void abort() throws IOException {}\n\n  @Override\n  public void close() throws IOException {\n    // empty\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/com/google/cloud/spark/bigquery/write/context/WriterCommitMessageContext.java",
    "content": "/*\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.write.context;\n\nimport java.io.Serializable;\nimport java.util.Optional;\n\npublic interface WriterCommitMessageContext extends Serializable {\n\n  default Optional<Exception> getError() {\n    return Optional.empty();\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/org/apache/spark/sql/Scala213SparkSqlUtils.java",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.apache.spark.sql;\n\nimport java.util.List;\nimport java.util.stream.Collectors;\nimport java.util.stream.Stream;\nimport org.apache.spark.sql.catalyst.InternalRow;\nimport org.apache.spark.sql.catalyst.analysis.SimpleAnalyzer$;\nimport org.apache.spark.sql.catalyst.encoders.ExpressionEncoder;\nimport org.apache.spark.sql.catalyst.encoders.RowEncoder;\nimport org.apache.spark.sql.catalyst.expressions.Attribute;\nimport org.apache.spark.sql.catalyst.expressions.AttributeReference;\nimport org.apache.spark.sql.catalyst.expressions.NamedExpression;\nimport org.apache.spark.sql.types.StructType;\nimport scala.collection.JavaConverters;\nimport scala.collection.mutable.ListBuffer;\n\npublic class Scala213SparkSqlUtils extends SparkSqlUtils {\n\n  @Override\n  public boolean supportsScalaVersion(String scalaVersion) {\n    return scalaVersion.compareTo(\"2.13\") >= 0;\n  }\n\n  @Override\n  public InternalRow rowToInternalRow(Row row) {\n    return InternalRow.fromSeq(row.toSeq());\n  }\n\n  // This method relies on the scala.Seq alias, which is different in Scala 2.12 and 2.13. In Scala\n  // 2.12 scala.Seq points to scala.collection.Seq whereas in Scala 2.13 it points to\n  // scala.collection.immutable.Seq.\n  @Override\n  public ExpressionEncoder<Row> createExpressionEncoder(StructType schema) {\n    List<Attribute> attributes =\n        JavaConverters.asJavaCollection(toAttributes(schema)).stream()\n            .map(Attribute::toAttribute)\n            .collect(Collectors.toList());\n    ExpressionEncoder<Row> expressionEncoder =\n        RowEncoder.apply(schema)\n            .resolveAndBind(\n                JavaConverters.asScalaIteratorConverter(attributes.iterator()).asScala().toSeq(),\n                SimpleAnalyzer$.MODULE$);\n    return expressionEncoder;\n  }\n\n  // `toAttributes` is protected[sql] starting spark 3.2.0, so we need this call to be in the same\n  // package. Since Scala 2.13/Spark 3.3 forbids it, the implementation has been ported to Java\n  public static scala.collection.immutable.Seq<AttributeReference> toAttributes(StructType schema) {\n    return JavaConverters.asScalaBuffer(\n            Stream.of(schema.fields())\n                .map(\n                    field ->\n                        new AttributeReference(\n                            field.name(),\n                            field.dataType(),\n                            field.nullable(),\n                            field.metadata(),\n                            NamedExpression.newExprId(),\n                            new ListBuffer<String>().toStream()))\n                .collect(Collectors.toList()))\n        .toSeq();\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/java/org/apache/spark/sql/SparkSqlUtils.java",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.apache.spark.sql;\n\nimport com.google.common.collect.Streams;\nimport java.util.ServiceLoader;\nimport org.apache.spark.sql.catalyst.InternalRow;\nimport org.apache.spark.sql.catalyst.encoders.ExpressionEncoder;\nimport org.apache.spark.sql.types.StructType;\n\npublic abstract class SparkSqlUtils {\n  private static SparkSqlUtils instance;\n\n  public static SparkSqlUtils getInstance() {\n    String scalaVersion = scala.util.Properties.versionNumberString();\n    if (instance == null) {\n      ServiceLoader<SparkSqlUtils> serviceLoader = ServiceLoader.load(SparkSqlUtils.class);\n      instance =\n          Streams.stream(serviceLoader.iterator())\n              .filter(s -> s.supportsScalaVersion(scalaVersion))\n              .findFirst()\n              .orElseThrow(\n                  () ->\n                      new IllegalArgumentException(\n                          String.format(\n                              \"Could not load instance of '%', please check the META-INF/services directory in the connector's jar\",\n                              SparkSqlUtils.class.getCanonicalName())));\n    }\n    return instance;\n  }\n\n  public abstract boolean supportsScalaVersion(String scalaVersion);\n\n  public abstract InternalRow rowToInternalRow(Row row);\n\n  public abstract ExpressionEncoder<Row> createExpressionEncoder(StructType schema);\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/resources/META-INF/services/io.openlineage.spark.extension.OpenLineageExtensionProvider",
    "content": "com.google.cloud.spark.bigquery.SparkBigQueryLineageProvider\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/main/resources/META-INF/services/org.apache.spark.sql.SparkSqlUtils",
    "content": "org.apache.spark.sql.Scala213SparkSqlUtils\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/AvroSchemaConverterTest.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery;\n\nimport static com.google.common.truth.Truth.assertThat;\n\nimport com.google.cloud.bigquery.connector.common.BigQueryUtil;\nimport com.google.common.collect.ImmutableList;\nimport java.math.BigDecimal;\nimport java.nio.ByteBuffer;\nimport org.apache.avro.Conversions;\nimport org.apache.avro.LogicalTypes;\nimport org.apache.avro.Schema;\nimport org.apache.avro.SchemaBuilder;\nimport org.apache.avro.generic.GenericData;\nimport org.apache.spark.sql.catalyst.InternalRow;\nimport org.apache.spark.sql.catalyst.expressions.GenericInternalRow;\nimport org.apache.spark.sql.types.DataTypes;\nimport org.apache.spark.sql.types.Decimal;\nimport org.apache.spark.sql.types.StructType;\nimport org.junit.Test;\n\npublic class AvroSchemaConverterTest {\n\n  @Test\n  public void testSchemaConversion() {\n    StructType sparkSchema = TestConstants.ALL_TYPES_TABLE_SCHEMA;\n    Schema avroSchema = AvroSchemaConverter.sparkSchemaToAvroSchema(sparkSchema);\n    Schema.Field[] fields =\n        avroSchema.getFields().toArray(new Schema.Field[avroSchema.getFields().size()]);\n    checkField(fields[0], \"int_req\", Schema.create(Schema.Type.LONG));\n    checkField(fields[1], \"int_null\", nullable(Schema.Type.LONG));\n    checkField(fields[2], \"bl\", nullable(Schema.Type.BOOLEAN));\n    checkField(fields[3], \"str\", nullable(Schema.Type.STRING));\n    checkField(\n        fields[4],\n        \"day\",\n        nullable(LogicalTypes.date().addToSchema(SchemaBuilder.builder().intType())));\n    checkField(\n        fields[5],\n        \"ts\",\n        nullable(LogicalTypes.timestampMicros().addToSchema(SchemaBuilder.builder().longType())));\n    checkField(fields[6], \"dt\", nullable(Schema.Type.STRING));\n    checkField(fields[7], \"tm\", nullable(Schema.Type.LONG));\n    checkField(fields[8], \"binary\", nullable(Schema.Type.BYTES));\n    checkField(fields[9], \"float\", nullable(Schema.Type.DOUBLE));\n    checkField(\n        fields[10],\n        \"nums\",\n        nullable(\n            Schema.createRecord(\n                \"nums\",\n                null,\n                null,\n                false,\n                ImmutableList.of(\n                    new Schema.Field(\"min\", nullable(numericDecimal(\"min\")), null, (Object) null),\n                    new Schema.Field(\"max\", nullable(numericDecimal(\"max\")), null, (Object) null),\n                    new Schema.Field(\"pi\", nullable(numericDecimal(\"pi\")), null, (Object) null),\n                    new Schema.Field(\n                        \"big_pi\", nullable(numericDecimal(\"big_pi\")), null, (Object) null)))));\n\n    checkField(\n        fields[11],\n        \"big_numeric_nums\",\n        nullable(\n            Schema.createRecord(\n                \"big_numeric_nums\",\n                null,\n                null,\n                false,\n                ImmutableList.of(\n                    new Schema.Field(\n                        \"min\", nullable(bignumericDecimal(\"min\")), null, (Object) null),\n                    new Schema.Field(\n                        \"max\", nullable(bignumericDecimal(\"max\")), null, (Object) null)))));\n\n    checkField(fields[12], \"int_arr\", nullable(Schema.createArray(nullable(Schema.Type.LONG))));\n    checkField(\n        fields[13],\n        \"int_struct_arr\",\n        nullable(\n            Schema.createArray(\n                nullable(\n                    Schema.createRecord(\n                        \"int_struct_arr\",\n                        null,\n                        null,\n                        false,\n                        ImmutableList.of(\n                            new Schema.Field(\n                                \"i\", nullable(Schema.Type.LONG), null, (Object) null)))))));\n    checkField(\n        fields[14],\n        \"str_json\",\n        nullable(SchemaBuilder.builder().stringBuilder().prop(\"sqlType\", \"JSON\").endString()));\n  }\n\n  @Test\n  public void testConvertIntegers() {\n    InternalRow row =\n        new GenericInternalRow(\n            new Object[] {\n              Byte.valueOf(\"0\"), Short.valueOf(\"1\"), Integer.valueOf(2), Long.valueOf(3)\n            });\n    StructType sparkSchema =\n        DataTypes.createStructType(\n            ImmutableList.of(\n                DataTypes.createStructField(\"byte_f\", DataTypes.ByteType, false),\n                DataTypes.createStructField(\"short_f\", DataTypes.ShortType, false),\n                DataTypes.createStructField(\"int_f\", DataTypes.IntegerType, false),\n                DataTypes.createStructField(\"long_f\", DataTypes.LongType, false)));\n\n    Schema avroSchema =\n        SchemaBuilder.record(\"root\")\n            .fields() //\n            .name(\"byte_f\")\n            .type(SchemaBuilder.builder().longType())\n            .noDefault() //\n            .name(\"short_f\")\n            .type(SchemaBuilder.builder().longType())\n            .noDefault() //\n            .name(\"int_f\")\n            .type(SchemaBuilder.builder().longType())\n            .noDefault() //\n            .name(\"long_f\")\n            .type(SchemaBuilder.builder().longType())\n            .noDefault() //\n            .endRecord();\n    GenericData.Record result =\n        AvroSchemaConverter.sparkRowToAvroGenericData(row, sparkSchema, avroSchema);\n    assertThat(result.getSchema()).isEqualTo(avroSchema);\n    assertThat(result.get(0)).isEqualTo(Long.valueOf(0));\n    assertThat(result.get(1)).isEqualTo(Long.valueOf(1));\n    assertThat(result.get(2)).isEqualTo(Long.valueOf(2));\n    assertThat(result.get(3)).isEqualTo(Long.valueOf(3));\n  }\n\n  @Test\n  public void testConvertNull() {\n    InternalRow row = new GenericInternalRow(new Object[] {null});\n    StructType sparkSchema =\n        DataTypes.createStructType(\n            ImmutableList.of(DataTypes.createStructField(\"null_f\", DataTypes.LongType, true)));\n\n    Schema avroSchema =\n        SchemaBuilder.record(\"root\")\n            .fields() //\n            .name(\"long_f\")\n            .type(\n                SchemaBuilder.unionOf()\n                    .type(SchemaBuilder.builder().longType())\n                    .and()\n                    .nullType()\n                    .endUnion())\n            .noDefault() //\n            .endRecord();\n    GenericData.Record result =\n        AvroSchemaConverter.sparkRowToAvroGenericData(row, sparkSchema, avroSchema);\n    assertThat(result.getSchema()).isEqualTo(avroSchema);\n    assertThat(result.get(0)).isNull();\n  }\n\n  @Test\n  public void testConvertNullable() {\n    InternalRow row = new GenericInternalRow(new Object[] {Long.valueOf(0)});\n    StructType sparkSchema =\n        DataTypes.createStructType(\n            ImmutableList.of(DataTypes.createStructField(\"null_f\", DataTypes.LongType, true)));\n\n    Schema avroSchema =\n        SchemaBuilder.record(\"root\")\n            .fields() //\n            .name(\"long_f\")\n            .type(\n                SchemaBuilder.unionOf()\n                    .type(SchemaBuilder.builder().longType())\n                    .and()\n                    .nullType()\n                    .endUnion())\n            .noDefault() //\n            .endRecord();\n    GenericData.Record result =\n        AvroSchemaConverter.sparkRowToAvroGenericData(row, sparkSchema, avroSchema);\n    assertThat(result.getSchema()).isEqualTo(avroSchema);\n    assertThat(result.get(0)).isEqualTo(Long.valueOf(0));\n  }\n\n  @Test\n  public void testConvertDecimal() {\n    InternalRow row =\n        new GenericInternalRow(\n            new Object[] {\n              Decimal.apply(BigDecimal.valueOf(123.456), BigQueryUtil.DEFAULT_NUMERIC_PRECISION, 3)\n            });\n    StructType sparkSchema =\n        DataTypes.createStructType(\n            ImmutableList.of(\n                DataTypes.createStructField(\n                    \"decimal_f\",\n                    DataTypes.createDecimalType(BigQueryUtil.DEFAULT_NUMERIC_PRECISION, 3),\n                    false)));\n\n    Schema avroSchema =\n        SchemaBuilder.record(\"root\")\n            .fields() //\n            .name(\"decimal_f\")\n            .type(numericDecimal(\"decimal_f\"))\n            .noDefault() //\n            .endRecord();\n    GenericData.Record result =\n        AvroSchemaConverter.sparkRowToAvroGenericData(row, sparkSchema, avroSchema);\n    assertThat(result.getSchema()).isEqualTo(avroSchema);\n    Conversions.DecimalConversion decimalConversion = new Conversions.DecimalConversion();\n    assertThat(\n            decimalConversion.fromBytes(\n                (ByteBuffer) result.get(0),\n                avroSchema.getField(\"decimal_f\").schema(),\n                LogicalTypes.decimal(BigQueryUtil.DEFAULT_NUMERIC_PRECISION, 3)))\n        .isEqualTo(BigDecimal.valueOf(123.456));\n  }\n\n  @Test\n  public void testConvertDoubles() {\n    InternalRow row =\n        new GenericInternalRow(new Object[] {Float.valueOf(\"0.0\"), Double.valueOf(\"1.1\")});\n    StructType sparkSchema =\n        DataTypes.createStructType(\n            ImmutableList.of(\n                DataTypes.createStructField(\"float_f\", DataTypes.FloatType, false),\n                DataTypes.createStructField(\"double_f\", DataTypes.DoubleType, false)));\n\n    Schema avroSchema =\n        SchemaBuilder.record(\"root\")\n            .fields() //\n            .name(\"float_f\")\n            .type(SchemaBuilder.builder().doubleType())\n            .noDefault() //\n            .name(\"double_f\")\n            .type(SchemaBuilder.builder().doubleType())\n            .noDefault() //\n            .endRecord();\n    GenericData.Record result =\n        AvroSchemaConverter.sparkRowToAvroGenericData(row, sparkSchema, avroSchema);\n    assertThat(result.getSchema()).isEqualTo(avroSchema);\n    assertThat(result.get(0)).isEqualTo(Double.valueOf(0.0));\n    assertThat(result.get(1)).isEqualTo(Double.valueOf(1.1));\n  }\n\n  @Test\n  public void testConvertDateTime() {\n    InternalRow row =\n        new GenericInternalRow(new Object[] {Integer.valueOf(15261), Long.valueOf(1318608914000L)});\n    StructType sparkSchema =\n        DataTypes.createStructType(\n            ImmutableList.of(\n                DataTypes.createStructField(\"date_f\", DataTypes.DateType, false),\n                DataTypes.createStructField(\"ts_f\", DataTypes.TimestampType, false)));\n    Schema avroSchema =\n        SchemaBuilder.record(\"root\")\n            .fields() //\n            .name(\"date_f\")\n            .type(LogicalTypes.date().addToSchema(SchemaBuilder.builder().intType()))\n            .noDefault() //\n            .name(\"ts_f\")\n            .type(LogicalTypes.timestampMicros().addToSchema(SchemaBuilder.builder().longType()))\n            .noDefault() //\n            .endRecord();\n    GenericData.Record result =\n        AvroSchemaConverter.sparkRowToAvroGenericData(row, sparkSchema, avroSchema);\n    assertThat(result.getSchema()).isEqualTo(avroSchema);\n    assertThat(result.get(0)).isEqualTo(15261);\n    assertThat(result.get(1)).isEqualTo(1318608914000L);\n  }\n\n  @Test\n  public void testComparisonToSparkAvro() {}\n\n  private void checkField(Schema.Field field, String name, Schema schema) {\n    assertThat(field.name()).isEqualTo(name);\n    assertThat(field.schema()).isEqualTo(schema);\n  }\n\n  private Schema numericDecimal(String name) {\n    return LogicalTypes.decimal(38, 9).addToSchema(SchemaBuilder.builder().bytesType());\n  }\n\n  private Schema bignumericDecimal(String name) {\n    return LogicalTypes.decimal(38, 38).addToSchema(SchemaBuilder.builder().bytesType());\n  }\n\n  Schema nullable(Schema schema) {\n    return Schema.createUnion(schema, Schema.create(Schema.Type.NULL));\n  }\n\n  Schema nullable(Schema.Type type) {\n    return nullable(Schema.create(type));\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/BigQueryRelationProviderTestBase.java",
    "content": "/*\n * Copyright 2025 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery;\n\nimport static com.google.common.truth.Truth.assertThat; // Google Truth\nimport static org.mockito.ArgumentMatchers.any;\nimport static org.mockito.Mockito.validateMockitoUsage;\nimport static org.mockito.Mockito.verify;\nimport static org.mockito.Mockito.when;\n\nimport com.google.api.client.util.Base64;\nimport com.google.cloud.bigquery.Field;\nimport com.google.cloud.bigquery.LegacySQLTypeName;\nimport com.google.cloud.bigquery.Schema;\nimport com.google.cloud.bigquery.StandardTableDefinition;\nimport com.google.cloud.bigquery.Table;\nimport com.google.cloud.bigquery.TableId;\nimport com.google.cloud.bigquery.TableInfo;\nimport com.google.cloud.bigquery.connector.common.BigQueryClient;\nimport com.google.cloud.bigquery.connector.common.BigQueryClientFactory;\nimport com.google.cloud.bigquery.connector.common.BigQueryUtil;\nimport com.google.cloud.spark.bigquery.direct.DirectBigQueryRelation;\nimport com.google.common.base.Throwables; // For getting root cause\nimport com.google.inject.Binder;\nimport com.google.inject.Guice;\nimport com.google.inject.Injector;\nimport com.google.inject.Module;\nimport java.util.HashMap;\nimport java.util.Map;\nimport java.util.Optional;\nimport java.util.function.Supplier;\nimport org.apache.hadoop.conf.Configuration;\nimport org.apache.spark.SparkContext;\nimport org.apache.spark.sql.SQLContext;\nimport org.apache.spark.sql.SparkSession;\nimport org.apache.spark.sql.sources.BaseRelation;\nimport org.apache.spark.sql.types.StructType;\nimport org.junit.After;\nimport org.junit.Assert; // For fail()\nimport org.junit.Before;\nimport org.junit.Test;\nimport org.mockito.Mock;\nimport org.mockito.MockitoAnnotations;\n\npublic abstract class BigQueryRelationProviderTestBase {\n\n  private static final TableId ID = TableId.of(\"testproject\", \"test_dataset\", \"test_table\");\n  private static final String TABLE_NAME_FULL = \"testproject:test_dataset.test_table\";\n  private static final TableInfo TABLE_INFO =\n      TableInfo.of(\n          ID,\n          StandardTableDefinition.newBuilder()\n              .setSchema(Schema.of(Field.of(\"foo\", LegacySQLTypeName.STRING)))\n              .setNumBytes(42L)\n              .build());\n\n  @Mock private SQLContext sqlCtx;\n  @Mock private SparkContext sc;\n  private Configuration hadoopConf;\n  @Mock private SparkBigQueryConfig config;\n  @Mock private BigQueryClient.ReadTableOptions readTableOptions;\n  @Mock private BigQueryClient bigQueryClient;\n  @Mock private BigQueryClientFactory bigQueryReadClientFactory;\n\n  private BigQueryRelationProviderBase provider;\n\n  @Mock private Table tableMock;\n\n  private SparkSession sparkSession;\n\n  @Before\n  public void setUp() {\n    MockitoAnnotations.initMocks(this);\n    hadoopConf = new Configuration(false);\n\n    when(config.getTableId()).thenReturn(ID);\n    when(config.toReadTableOptions()).thenReturn(readTableOptions);\n\n    final Injector injector =\n        Guice.createInjector(\n            new Module() {\n              @Override\n              public void configure(Binder binder) {\n                binder.bind(SparkBigQueryConfig.class).toInstance(config);\n                binder.bind(BigQueryClient.class).toInstance(bigQueryClient);\n                binder.bind(BigQueryClientFactory.class).toInstance(bigQueryReadClientFactory);\n                binder\n                    .bind(\n                        com.google.cloud.bigquery.connector.common.LoggingBigQueryTracerFactory\n                            .class)\n                    .toInstance(\n                        new com.google.cloud.bigquery.connector.common\n                            .LoggingBigQueryTracerFactory());\n              }\n            });\n\n    GuiceInjectorCreator injectorCreator =\n        new GuiceInjectorCreator() {\n          @Override\n          public Injector createGuiceInjector(\n              SQLContext sqlContext, Map<String, String> parameters, Optional<StructType> schema) {\n            return injector;\n          }\n        };\n    provider = createProvider(() -> injectorCreator);\n\n    when(tableMock.getTableId()).thenReturn(TABLE_INFO.getTableId());\n    when(tableMock.getDefinition()).thenReturn(TABLE_INFO.getDefinition());\n\n    sparkSession =\n        SparkSession.builder()\n            .master(\"local[*]\")\n            .appName(\"BigQueryRelationProviderSuiteApp\")\n            .getOrCreate();\n\n    when(sqlCtx.sparkContext()).thenReturn(sc);\n    when(sc.hadoopConfiguration()).thenReturn(hadoopConf);\n    when(sc.version()).thenReturn(\"2.4.0\");\n    when(sqlCtx.sparkSession()).thenReturn(sparkSession);\n    when(sqlCtx.getAllConfs()).thenReturn(scala.collection.immutable.Map$.MODULE$.empty());\n  }\n\n  @After\n  public void tearDown() {\n    validateMockitoUsage();\n    if (sparkSession != null) {\n      sparkSession.stop();\n    }\n  }\n\n  @Test\n  public void tableExists() {\n    when(bigQueryClient.getReadTable(any(BigQueryClient.ReadTableOptions.class)))\n        .thenReturn(tableMock);\n\n    Map<String, String> params = new HashMap<>();\n    params.put(\"table\", TABLE_NAME_FULL);\n    params.put(\"parentProject\", ID.getProject());\n\n    BaseRelation relation = provider.createRelation(sqlCtx, params);\n    assertThat(relation).isNotNull();\n    assertThat(relation).isInstanceOf(DirectBigQueryRelation.class);\n\n    verify(bigQueryClient).getReadTable(any(BigQueryClient.ReadTableOptions.class));\n  }\n\n  @Test\n  public void tableDoesNotExist() {\n    when(bigQueryClient.getReadTable(any(BigQueryClient.ReadTableOptions.class))).thenReturn(null);\n\n    Map<String, String> params = new HashMap<>();\n    params.put(\"table\", TABLE_NAME_FULL);\n    params.put(\"parentProject\", ID.getProject());\n\n    try {\n      provider.createRelation(sqlCtx, params);\n      Assert.fail(\"Expected a RuntimeException to be thrown\");\n    } catch (RuntimeException e) {\n      assertThat(e)\n          .hasMessageThat()\n          .contains(\"Table \" + BigQueryUtil.friendlyTableName(ID) + \" not found\");\n    }\n    verify(bigQueryClient).getReadTable(any(BigQueryClient.ReadTableOptions.class));\n  }\n\n  // Example of using @Test(expected) if only the exception type is of interest\n  @Test(expected = RuntimeException.class)\n  public void tableDoesNotExistWithExpectedExceptionAnnotation() {\n    when(bigQueryClient.getReadTable(any(BigQueryClient.ReadTableOptions.class))).thenReturn(null);\n    Map<String, String> params = new HashMap<>();\n    params.put(\"table\", TABLE_NAME_FULL);\n    params.put(\"parentProject\", ID.getProject());\n    provider.createRelation(sqlCtx, params);\n  }\n\n  @Test\n  public void credentialsParameterIsUsedToInitializeBigQueryOptions() {\n    BigQueryRelationProviderBase defaultProvider = createProvider();\n    String invalidCredentials = Base64.encodeBase64String(\"{}\".getBytes());\n\n    Map<String, String> params = new HashMap<>();\n    params.put(\"parentProject\", ID.getProject());\n    params.put(\"credentials\", invalidCredentials);\n    params.put(\"table\", TABLE_NAME_FULL);\n\n    try {\n      defaultProvider.createRelation(sqlCtx, params);\n      Assert.fail(\"Expected an Exception to be thrown due to invalid credentials\");\n    } catch (Exception e) {\n      // Check the root cause or the direct message\n      Throwable rootCause = Throwables.getRootCause(e);\n      String rootCauseMessage = rootCause.getMessage() != null ? rootCause.getMessage() : \"\";\n      String directMessage = e.getMessage() != null ? e.getMessage() : \"\";\n\n      assertThat(\n              directMessage.contains(\"Failed to create Credentials from key\")\n                  || rootCauseMessage.contains(\"Failed to create Credentials from key\")\n                  || directMessage.contains(\"Invalid credentials\")\n                  || rootCauseMessage.contains(\"Invalid credentials\"))\n          .isTrue();\n    }\n  }\n\n  abstract BigQueryRelationProviderBase createProvider(\n      Supplier<GuiceInjectorCreator> injectorCreator);\n\n  abstract BigQueryRelationProviderBase createProvider();\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/BigQueryRelationTest.java",
    "content": "/*\n * Copyright 2023 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery;\n\nimport static com.google.common.truth.Truth.assertThat;\n\nimport com.google.cloud.bigquery.Field;\nimport com.google.cloud.bigquery.LegacySQLTypeName;\nimport com.google.cloud.bigquery.Schema;\nimport com.google.cloud.bigquery.StandardTableDefinition;\nimport com.google.cloud.bigquery.TableId;\nimport com.google.cloud.bigquery.TableInfo;\nimport com.google.cloud.bigquery.ViewDefinition;\nimport com.google.common.collect.ImmutableMap;\nimport java.util.Optional;\nimport org.apache.hadoop.conf.Configuration;\nimport org.apache.spark.sql.internal.SQLConf;\nimport org.junit.Test;\n\npublic class BigQueryRelationTest {\n\n  @Test\n  public void testCreateTableNameForLogging_withTable() {\n    BigQueryRelation relation =\n        new BigQueryRelation(\n            SparkBigQueryConfig.from(\n                ImmutableMap.of(\"path\", \"dataset.table\"),\n                ImmutableMap.of(),\n                new Configuration(),\n                ImmutableMap.of(),\n                1,\n                new SQLConf(),\n                \"1.2.3\",\n                Optional.empty(), /* tableIsMandatory */\n                true),\n            TableInfo.of(\n                TableId.of(\"should\", \"not_be\", \"seen\"), ViewDefinition.of(\"SELECT foo FROM bar\")),\n            null);\n    String result = relation.getTableNameForLogging();\n    assertThat(result).isEqualTo(\"dataset.table\");\n  }\n\n  @Test\n  public void testCreateTableNameForLogging_fromQuery() {\n    BigQueryRelation relation =\n        new BigQueryRelation(\n            SparkBigQueryConfig.from(\n                ImmutableMap.of(\"query\", \"SELECT foo FROM bar\", \"dataset\", \"dataset\"),\n                ImmutableMap.of(),\n                new Configuration(),\n                ImmutableMap.of(),\n                1,\n                new SQLConf(),\n                \"1.2.3\",\n                Optional.empty(), /* tableIsMandatory */\n                true),\n            TableInfo.of(\n                TableId.of(\"project\", \"dataset\", \"_bqc_UUID\"),\n                StandardTableDefinition.of(Schema.of(Field.of(\"foo\", LegacySQLTypeName.STRING)))),\n            null);\n    String result = relation.getTableNameForLogging();\n    assertThat(result).isEqualTo(\"project.dataset._bqc_UUID created from \\\"SELECT foo FROM bar\\\"\");\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/DataSourceOptions.java",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery;\n\nimport java.util.HashMap;\nimport java.util.Locale;\nimport java.util.Map;\n\nclass DataSourceOptions {\n  private final Map<String, String> keyLowerCasedMap;\n\n  public DataSourceOptions(Map<String, String> originalMap) {\n    keyLowerCasedMap = new HashMap<>(originalMap.size());\n    for (Map.Entry<String, String> entry : originalMap.entrySet()) {\n      keyLowerCasedMap.put(entry.getKey().toLowerCase(Locale.ENGLISH), entry.getValue());\n    }\n  }\n\n  public Map<String, String> asMap() {\n    return new HashMap<>(keyLowerCasedMap);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/InjectorBuilderTest.java",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery;\n\nimport static com.google.common.truth.Truth.assertThat;\n\nimport com.google.cloud.bigquery.connector.common.UserAgentProvider;\nimport com.google.common.collect.ImmutableMap;\nimport com.google.inject.Injector;\nimport org.apache.spark.sql.SparkSession;\nimport org.apache.spark.sql.types.StructType;\nimport org.junit.Test;\n\npublic class InjectorBuilderTest {\n\n  @Test\n  public void testDefaults() {\n    SparkSession unused = SparkSession.builder().master(\"local[1]\").getOrCreate();\n    Injector injector =\n        new InjectorBuilder().withOptions(ImmutableMap.of(\"table\", \"foo.bar\")).build();\n    SparkBigQueryConfig config = injector.getInstance(SparkBigQueryConfig.class);\n    assertThat(config.getTableId().getTable()).isEqualTo(\"bar\");\n    UserAgentProvider userAgentProvider = injector.getInstance(UserAgentProvider.class);\n    assertThat(userAgentProvider.getUserAgent()).contains(\"v2\");\n  }\n\n  @Test\n  public void testParams() {\n    SparkSession spark = SparkSession.builder().master(\"local[1]\").appName(\"test\").getOrCreate();\n    ImmutableMap<String, String> options =\n        ImmutableMap.<String, String>builder()\n            .put(\"table\", \"foo.bar\")\n            .put(\"GPN\", \"testUser\")\n            .build();\n    Injector injector =\n        new InjectorBuilder()\n            .withOptions(options)\n            .withCustomDefaults(ImmutableMap.of(\"writeMethod\", \"INDIRECT\"))\n            .withSpark(spark)\n            .withDataSourceVersion(DataSourceVersion.V1)\n            .withSchema(new StructType())\n            .withTableIsMandatory(false)\n            .build();\n    SparkBigQueryConfig config = injector.getInstance(SparkBigQueryConfig.class);\n    assertThat(config.getTableId().getTable()).isEqualTo(\"bar\");\n    assertThat(config.getWriteMethod()).isEqualTo(SparkBigQueryConfig.WriteMethod.INDIRECT);\n    UserAgentProvider userAgentProvider = injector.getInstance(UserAgentProvider.class);\n    assertThat(userAgentProvider.getUserAgent()).contains(\"v1\");\n    assertThat(userAgentProvider.getUserAgent()).contains(\"(GPN:testUser)\");\n  }\n\n  @Test\n  public void testConnectorInfo() {\n    SparkSession.builder()\n        .master(\"local[1]\")\n        .config(\"spark.driver.bindAddress\", \"127.0.0.1\")\n        .getOrCreate();\n    ImmutableMap<String, String> options =\n        ImmutableMap.<String, String>builder()\n            .put(\"table\", \"foo.bar\")\n            .put(\"GPN\", \"testUser\")\n            .build();\n    Injector injector = new InjectorBuilder().withOptions(options).build();\n    SparkBigQueryConfig config = injector.getInstance(SparkBigQueryConfig.class);\n    assertThat(config.getTableId().getTable()).isEqualTo(\"bar\");\n    UserAgentProvider userAgentProvider = injector.getInstance(UserAgentProvider.class);\n    assertThat(userAgentProvider.getConnectorInfo()).contains(\"v2\");\n    assertThat(userAgentProvider.getConnectorInfo()).contains(\"testUser\");\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/MockResponsesBatch.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery;\n\nimport com.google.cloud.bigquery.storage.v1.ReadRowsResponse;\nimport java.util.Iterator;\nimport java.util.LinkedList;\nimport java.util.Queue;\n\nclass MockResponsesBatch implements Iterator<ReadRowsResponse> {\n\n  private Queue<Object> responses = new LinkedList<>();\n\n  void addResponse(ReadRowsResponse response) {\n    responses.add(response);\n  }\n\n  void addException(RuntimeException exception) {\n    responses.add(exception);\n  }\n\n  @Override\n  public boolean hasNext() {\n    return !responses.isEmpty();\n  }\n\n  @Override\n  public ReadRowsResponse next() {\n    Object next = responses.poll();\n    if (next instanceof ReadRowsResponse) {\n      return (ReadRowsResponse) next;\n    } else if (next instanceof RuntimeException) {\n      throw (RuntimeException) next;\n    }\n    return null;\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/MockSparkBigQueryPushdown.java",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery;\n\nimport com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdown;\nimport org.apache.spark.sql.SparkSession;\n\npublic class MockSparkBigQueryPushdown implements SparkBigQueryPushdown {\n\n  public static boolean enabledWasCalled = false;\n  public static boolean disabledWasCalled = false;\n\n  @Override\n  public boolean supportsSparkVersion(String sparkVersion) {\n    return true;\n  }\n\n  @Override\n  public void enable(SparkSession spark) {\n    enabledWasCalled = true;\n  }\n\n  @Override\n  public void disable(SparkSession spark) {\n    disabledWasCalled = true;\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/OptimizeLoadUriListTest.java",
    "content": "/*\n * Copyright 2020 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery;\n\nimport static com.google.common.truth.Truth.assertThat;\n\nimport java.util.Arrays;\nimport java.util.List;\nimport java.util.stream.Collectors;\nimport java.util.stream.IntStream;\nimport org.junit.Test;\nimport org.junit.runner.RunWith;\nimport org.junit.runners.Parameterized;\n\n@RunWith(Parameterized.class)\npublic class OptimizeLoadUriListTest {\n\n  private List<String> input;\n  private List<String> expected;\n\n  public OptimizeLoadUriListTest(List<String> input, List<String> expected) {\n    this.input = input;\n    this.expected = expected;\n  }\n\n  @Parameterized.Parameters(name = \"{index}: Should get {1}\")\n  public static Iterable<Object[]> data() {\n    return Arrays.asList(\n        new Object[] {\n          // input 1\n          Arrays.asList(\n              \"gs://bucket/path/to/part-00000-bc3a92eb-414e-4110-9fd4-70cc41e6c43b-c000.csv\",\n              \"gs://bucket/path/to/part-00001-bc3a92eb-414e-4110-9fd4-70cc41e6c43b-c000.csv\"),\n          // output 1\n          Arrays.asList(\n              \"gs://bucket/path/to/part-00000-bc3a92eb-414e-4110-9fd4-70cc41e6c43b-c000.csv\",\n              \"gs://bucket/path/to/part-00001-bc3a92eb-414e-4110-9fd4-70cc41e6c43b-c000.csv\")\n        },\n        new Object[] {\n          // input 2\n          Arrays.asList(\n              \"gs://bucket/path/to/part-00000-2a70634c-f292-46f4-ba71-36a4af58f777-c000.avro\",\n              \"gs://bucket/path/to/part-00001-2a70634c-f292-46f4-ba71-36a4af58f777-c000.avro\",\n              \"gs://bucket/path/to/part-00002-2a70634c-f292-46f4-ba71-36a4af58f777-c000.avro\",\n              \"gs://bucket/path/to/part-00003-2a70634c-f292-46f4-ba71-36a4af58f777-c000.avro\",\n              \"gs://bucket/path/to/part-00004-2a70634c-f292-46f4-ba71-36a4af58f777-c000.avro\",\n              \"gs://bucket/path/to/part-00005-2a70634c-f292-46f4-ba71-36a4af58f777-c000.avro\",\n              \"gs://bucket/path/to/part-00006-2a70634c-f292-46f4-ba71-36a4af58f777-c000.avro\",\n              \"gs://bucket/path/to/part-00007-2a70634c-f292-46f4-ba71-36a4af58f777-c000.avro\",\n              \"gs://bucket/path/to/part-00008-2a70634c-f292-46f4-ba71-36a4af58f777-c000.avro\",\n              \"gs://bucket/path/to/part-00009-2a70634c-f292-46f4-ba71-36a4af58f777-c000.avro\",\n              \"gs://bucket/path/to/part-00010-2a70634c-f292-46f4-ba71-36a4af58f777-c000.avro\"),\n          // output 2\n          Arrays.asList(\n              \"gs://bucket/path/to/part-0000*-2a70634c-f292-46f4-ba71-36a4af58f777-c000.avro\",\n              \"gs://bucket/path/to/part-00010-2a70634c-f292-46f4-ba71-36a4af58f777-c000.avro\")\n        },\n        new Object[] {\n          // input 3\n          IntStream.range(100, 200)\n              .mapToObj(\n                  i ->\n                      String.format(\n                          \"gs://bucket/path/to/part-00%d-5ef57800-1b61-4b15-af3c-f766f84d179c-c000.snappy.parquet\",\n                          i))\n              .collect(Collectors.toList()),\n          // output 3\n          Arrays.asList(\n              \"gs://bucket/path/to/part-001*-5ef57800-1b61-4b15-af3c-f766f84d179c-c000.snappy.parquet\")\n        },\n        new Object[] {\n          // input 4\n          IntStream.range(100, 211)\n              .mapToObj(\n                  i ->\n                      String.format(\n                          \"gs://bucket/path/to/part-00%s-2a70634c-f292-46f4-ba71-36a4af58f777-c000.json\",\n                          i))\n              .collect(Collectors.toList()),\n          // output 4\n          Arrays.asList(\n              \"gs://bucket/path/to/part-001*-2a70634c-f292-46f4-ba71-36a4af58f777-c000.json\",\n              \"gs://bucket/path/to/part-0020*-2a70634c-f292-46f4-ba71-36a4af58f777-c000.json\",\n              \"gs://bucket/path/to/part-00210-2a70634c-f292-46f4-ba71-36a4af58f777-c000.json\")\n        },\n        new Object[] { // size of 1\n          // input 5\n          Arrays.asList(\n              \"gs://bucket/path/to/part-00000-2a70634c-f292-46f4-ba71-36a4af58f777-c000.avro\"),\n          // output 5\n          Arrays.asList(\n              \"gs://bucket/path/to/part-00000-2a70634c-f292-46f4-ba71-36a4af58f777-c000.avro\")\n        },\n        new Object[] { // empty\n          // input 6\n          Arrays.asList(),\n          // output 6\n          Arrays.asList()\n        });\n  }\n\n  @Test\n  public void test() {\n    List<String> actual = SparkBigQueryUtil.optimizeLoadUriListForSpark(input);\n    assertThat(actual).containsExactlyElementsIn(expected);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/ProtobufUtilsTest.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery;\n\nimport static com.google.cloud.spark.bigquery.ProtobufUtils.buildDescriptorProtoWithFields;\nimport static com.google.cloud.spark.bigquery.ProtobufUtils.buildSingleRowMessage;\nimport static com.google.cloud.spark.bigquery.ProtobufUtils.toDescriptor;\nimport static com.google.cloud.spark.bigquery.ProtobufUtils.toProtoRows;\nimport static com.google.cloud.spark.bigquery.ProtobufUtils.toProtoSchema;\nimport static com.google.common.truth.Truth.assertThat;\nimport static org.junit.Assert.fail;\n\nimport com.google.cloud.bigquery.Field;\nimport com.google.cloud.bigquery.LegacySQLTypeName;\nimport com.google.cloud.bigquery.Schema;\nimport com.google.cloud.bigquery.storage.v1.ProtoRows;\nimport com.google.cloud.bigquery.storage.v1.ProtoSchema;\nimport com.google.cloud.bigquery.storage.v1.ProtoSchemaConverter;\nimport com.google.protobuf.DescriptorProtos;\nimport com.google.protobuf.Descriptors;\nimport com.google.protobuf.DynamicMessage;\nimport com.google.protobuf.Message;\nimport java.math.BigDecimal;\nimport java.math.MathContext;\nimport java.util.HashMap;\nimport java.util.Map;\nimport java.util.Optional;\nimport org.apache.spark.sql.catalyst.InternalRow;\nimport org.apache.spark.sql.catalyst.expressions.GenericInternalRow;\nimport org.apache.spark.sql.catalyst.util.ArrayData;\nimport org.apache.spark.sql.types.DataTypes;\nimport org.apache.spark.sql.types.Decimal;\nimport org.apache.spark.sql.types.DecimalType;\nimport org.apache.spark.sql.types.Metadata;\nimport org.apache.spark.sql.types.StructField;\nimport org.apache.spark.sql.types.StructType;\nimport org.apache.spark.unsafe.types.UTF8String;\nimport org.junit.AssumptionViolatedException;\nimport org.junit.Test;\n\npublic class ProtobufUtilsTest {\n\n  // Numeric is a fixed precision Decimal Type with 38 digits of precision and 9 digits of scale.\n  // See https://cloud.google.com/bigquery/docs/reference/standard-sql/data-types#numeric-type\n  private static final int BQ_NUMERIC_PRECISION = 38;\n  private static final int BQ_NUMERIC_SCALE = 9;\n  private static final int BQ_BIGNUMERIC_SCALE = 38;\n  private static final DecimalType NUMERIC_SPARK_TYPE =\n      DataTypes.createDecimalType(BQ_NUMERIC_PRECISION, BQ_NUMERIC_SCALE);\n  private static final DecimalType BIGNUMERIC_SPARK_TYPE =\n      DataTypes.createDecimalType(BQ_NUMERIC_PRECISION, BQ_BIGNUMERIC_SCALE);\n  // The maximum nesting depth of a BigQuery RECORD:\n  private static final int MAX_BIGQUERY_NESTED_DEPTH = 15;\n\n  @Test\n  public void testBigQueryRecordToDescriptor() throws Exception {\n    DescriptorProtos.DescriptorProto expected = NESTED_STRUCT_DESCRIPTOR.setName(\"Struct\").build();\n    DescriptorProtos.DescriptorProto converted =\n        buildDescriptorProtoWithFields(\n            DescriptorProtos.DescriptorProto.newBuilder().setName(\"Struct\"),\n            BIGQUERY_NESTED_STRUCT_FIELD.getSubFields(),\n            0);\n\n    assertThat(converted).isEqualTo(expected);\n  }\n\n  @Test\n  public void testBigQueryToProtoSchema() throws Exception {\n    ProtoSchema converted = toProtoSchema(BIG_BIGQUERY_SCHEMA);\n    ProtoSchema expected =\n        ProtoSchemaConverter.convert(\n            Descriptors.FileDescriptor.buildFrom(\n                    DescriptorProtos.FileDescriptorProto.newBuilder()\n                        .addMessageType(\n                            DescriptorProtos.DescriptorProto.newBuilder()\n                                .addField(PROTO_INTEGER_FIELD.clone().setNumber(1))\n                                .addField(PROTO_STRING_FIELD.clone().setNumber(2))\n                                .addField(PROTO_ARRAY_FIELD.clone().setNumber(3))\n                                .addNestedType(NESTED_STRUCT_DESCRIPTOR.clone())\n                                .addField(PROTO_STRUCT_FIELD.clone().setNumber(4))\n                                .addField(PROTO_DOUBLE_FIELD.clone().setName(\"Float\").setNumber(5))\n                                .addField(PROTO_BOOLEAN_FIELD.clone().setNumber(6))\n                                .addField(PROTO_BYTES_FIELD.clone().setNumber(7))\n                                .addField(PROTO_DATE_FIELD.clone().setNumber(8))\n                                .addField(\n                                    PROTO_STRING_FIELD.clone().setName(\"Numeric\").setNumber(9))\n                                .addField(\n                                    PROTO_STRING_FIELD.clone().setName(\"BigNumeric\").setNumber(10))\n                                .addField(\n                                    PROTO_INTEGER_FIELD.clone().setName(\"TimeStamp\").setNumber(11))\n                                .setName(\"Schema\")\n                                .build())\n                        .build(),\n                    new Descriptors.FileDescriptor[] {})\n                .getMessageTypes()\n                .get(0));\n\n    for (int i = 0; i < expected.getProtoDescriptor().getFieldList().size(); i++) {\n      assertThat(converted.getProtoDescriptor().getField(i))\n          .isEqualTo(expected.getProtoDescriptor().getField(i));\n    }\n  }\n\n  @Test\n  public void testSparkStructRowToDynamicMessage() throws Exception {\n    Map<Integer, ProtobufUtils.ProtobufSchemaFieldCacheEntry> fieldIndexToEntryMap =\n        new HashMap<>();\n    StructType schema = new StructType().add(SPARK_NESTED_STRUCT_FIELD);\n    Descriptors.Descriptor schemaDescriptor = toDescriptor(schema);\n    Message converted =\n        buildSingleRowMessage(\n            schema,\n            schemaDescriptor,\n            STRUCT_INTERNAL_ROW,\n            Optional.of(fieldIndexToEntryMap),\n            DynamicMessage.newBuilder(schemaDescriptor));\n    DynamicMessage expected = StructRowMessage;\n    assertThat(converted.toString()).isEqualTo(expected.toString());\n    assertThat(!fieldIndexToEntryMap.isEmpty());\n    Message convertedSecond =\n        buildSingleRowMessage(\n            schema,\n            schemaDescriptor,\n            STRUCT_INTERNAL_ROW,\n            Optional.of(fieldIndexToEntryMap),\n            DynamicMessage.newBuilder(schemaDescriptor));\n    assertThat(convertedSecond.toString()).isEqualTo(expected.toString());\n  }\n\n  private InternalRow getDummyRow() {\n    return new GenericInternalRow(\n        new Object[] {\n          1,\n          UTF8String.fromString(\"A\"),\n          ArrayData.toArrayData(new int[] {0, 1, 2}),\n          INTERNAL_STRUCT_DATA,\n          3.14,\n          true,\n          new byte[] {11, 0x7F},\n          1594080000000L,\n          1594080000000L,\n          Decimal.apply(\n              new BigDecimal(\n                  \"-99999999999999999999999999999.999999999\",\n                  new MathContext(BQ_NUMERIC_PRECISION)),\n              BQ_NUMERIC_PRECISION,\n              BQ_NUMERIC_SCALE),\n          Decimal.apply(new BigDecimal(\"0.78960446186580977117854925043439539146\"))\n        });\n  }\n\n  @Test\n  public void testSparkRowToProtoRow() throws Exception {\n    ProtoRows converted =\n        toProtoRows(BIG_SPARK_SCHEMA, new InternalRow[] {getDummyRow(), getDummyRow()});\n\n    ProtoRows expected = MY_PROTO_ROWS;\n\n    assertThat(converted.getSerializedRows(0).toByteArray())\n        .isEqualTo(expected.getSerializedRows(0).toByteArray());\n    assertThat(converted.getSerializedRows(1).toByteArray())\n        .isEqualTo(expected.getSerializedRows(0).toByteArray());\n  }\n\n  @Test\n  public void testSettingARequiredFieldAsNull() throws Exception {\n    try {\n      ProtoRows converted =\n          toProtoRows(\n              new StructType()\n                  .add(new StructField(\"String\", DataTypes.StringType, false, Metadata.empty())),\n              new InternalRow[] {new GenericInternalRow(new Object[] {null})});\n      fail(\"Convert did not assert field's /'Required/' status\");\n    } catch (Exception ignored) {\n    }\n    try {\n      ProtoRows converted =\n          toProtoRows(\n              new StructType()\n                  .add(new StructField(\"String\", DataTypes.StringType, true, Metadata.empty())),\n              new InternalRow[] {new GenericInternalRow(new Object[] {null})});\n    } catch (Exception e) {\n      fail(\"A nullable field could not be set to null.\");\n    }\n  }\n\n  public final StructType MY_STRUCT =\n      DataTypes.createStructType(\n          new StructField[] {\n            new StructField(\"Number\", DataTypes.IntegerType, true, Metadata.empty()),\n            new StructField(\"String\", DataTypes.StringType, true, Metadata.empty())\n          });\n\n  public final StructField SPARK_INTEGER_FIELD =\n      new StructField(\"Number\", DataTypes.IntegerType, true, Metadata.empty());\n  public final StructField SPARK_STRING_FIELD =\n      new StructField(\"String\", DataTypes.StringType, false, Metadata.empty());\n  public final StructField SPARK_NESTED_STRUCT_FIELD =\n      new StructField(\"Struct\", MY_STRUCT, true, Metadata.empty());\n  public final StructField SPARK_ARRAY_FIELD =\n      new StructField(\n          \"Array\", DataTypes.createArrayType(DataTypes.IntegerType), true, Metadata.empty());\n  public final StructField SPARK_DOUBLE_FIELD =\n      new StructField(\"Float\", DataTypes.DoubleType, true, Metadata.empty());\n  public final StructField SPARK_BOOLEAN_FIELD =\n      new StructField(\"Boolean\", DataTypes.BooleanType, true, Metadata.empty());\n  public final StructField SPARK_BINARY_FIELD =\n      new StructField(\"Binary\", DataTypes.BinaryType, true, Metadata.empty());\n  public final StructField SPARK_DATE_FIELD =\n      new StructField(\"Date\", DataTypes.DateType, true, Metadata.empty());\n  public final StructField SPARK_TIMESTAMP_FIELD =\n      new StructField(\"TimeStamp\", DataTypes.TimestampType, true, Metadata.empty());\n  public final StructField SPARK_NUMERIC_FIELD =\n      new StructField(\"Numeric\", NUMERIC_SPARK_TYPE, true, Metadata.empty());\n  public final StructField SPARK_BIGNUMERIC_FIELD =\n      new StructField(\"BigNumeric\", BIGNUMERIC_SPARK_TYPE, true, Metadata.empty());\n\n  public final StructType BIG_SPARK_SCHEMA =\n      new StructType()\n          .add(SPARK_INTEGER_FIELD)\n          .add(SPARK_STRING_FIELD)\n          .add(SPARK_ARRAY_FIELD)\n          .add(SPARK_NESTED_STRUCT_FIELD)\n          .add(SPARK_DOUBLE_FIELD)\n          .add(SPARK_BOOLEAN_FIELD)\n          .add(SPARK_BINARY_FIELD)\n          .add(SPARK_DATE_FIELD)\n          .add(SPARK_TIMESTAMP_FIELD)\n          .add(SPARK_NUMERIC_FIELD)\n          .add(SPARK_BIGNUMERIC_FIELD);\n\n  public final Field BIGQUERY_INTEGER_FIELD =\n      Field.newBuilder(\"Number\", LegacySQLTypeName.INTEGER).setMode(Field.Mode.NULLABLE).build();\n  public final Field BIGQUERY_STRING_FIELD =\n      Field.newBuilder(\"String\", LegacySQLTypeName.STRING).setMode(Field.Mode.REQUIRED).build();\n  public final Field BIGQUERY_NESTED_STRUCT_FIELD =\n      Field.newBuilder(\n              \"Struct\",\n              LegacySQLTypeName.RECORD,\n              Field.newBuilder(\"Number\", LegacySQLTypeName.INTEGER)\n                  .setMode(Field.Mode.NULLABLE)\n                  .build(),\n              Field.newBuilder(\"String\", LegacySQLTypeName.STRING)\n                  .setMode(Field.Mode.NULLABLE)\n                  .build())\n          .setMode(Field.Mode.NULLABLE)\n          .build();\n  public final Field BIGQUERY_ARRAY_FIELD =\n      Field.newBuilder(\"Array\", LegacySQLTypeName.INTEGER).setMode(Field.Mode.REPEATED).build();\n  public final Field BIGQUERY_FLOAT_FIELD =\n      Field.newBuilder(\"Float\", LegacySQLTypeName.FLOAT).setMode(Field.Mode.NULLABLE).build();\n  public final Field BIGQUERY_BOOLEAN_FIELD =\n      Field.newBuilder(\"Boolean\", LegacySQLTypeName.BOOLEAN).setMode(Field.Mode.NULLABLE).build();\n  public final Field BIGQUERY_BYTES_FIELD =\n      Field.newBuilder(\"Binary\", LegacySQLTypeName.BYTES).setMode(Field.Mode.NULLABLE).build();\n  public final Field BIGQUERY_DATE_FIELD =\n      Field.newBuilder(\"Date\", LegacySQLTypeName.DATE).setMode(Field.Mode.NULLABLE).build();\n  public final Field BIGQUERY_TIMESTAMP_FIELD =\n      Field.newBuilder(\"TimeStamp\", LegacySQLTypeName.TIMESTAMP)\n          .setMode(Field.Mode.NULLABLE)\n          .build();\n  public final Field BIGQUERY_NUMERIC_FIELD =\n      Field.newBuilder(\"Numeric\", LegacySQLTypeName.NUMERIC).setMode(Field.Mode.REQUIRED).build();\n  public final Field BIGQUERY_BIGNUMERIC_FIELD =\n      Field.newBuilder(\"BigNumeric\", LegacySQLTypeName.BIGNUMERIC)\n          .setMode(Field.Mode.REQUIRED)\n          .build();\n\n  public final Schema BIG_BIGQUERY_SCHEMA =\n      Schema.of(\n          BIGQUERY_INTEGER_FIELD,\n          BIGQUERY_STRING_FIELD,\n          BIGQUERY_ARRAY_FIELD,\n          BIGQUERY_NESTED_STRUCT_FIELD,\n          BIGQUERY_FLOAT_FIELD,\n          BIGQUERY_BOOLEAN_FIELD,\n          BIGQUERY_BYTES_FIELD,\n          BIGQUERY_DATE_FIELD,\n          BIGQUERY_NUMERIC_FIELD,\n          BIGQUERY_BIGNUMERIC_FIELD,\n          BIGQUERY_TIMESTAMP_FIELD);\n\n  public final DescriptorProtos.FieldDescriptorProto.Builder PROTO_INTEGER_FIELD =\n      DescriptorProtos.FieldDescriptorProto.newBuilder()\n          .setName(\"Number\")\n          .setNumber(1)\n          .setType(DescriptorProtos.FieldDescriptorProto.Type.TYPE_INT64)\n          .setLabel(DescriptorProtos.FieldDescriptorProto.Label.LABEL_OPTIONAL);\n  public final DescriptorProtos.FieldDescriptorProto.Builder PROTO_STRING_FIELD =\n      DescriptorProtos.FieldDescriptorProto.newBuilder()\n          .setName(\"String\")\n          .setNumber(1)\n          .setType(DescriptorProtos.FieldDescriptorProto.Type.TYPE_STRING)\n          .setLabel(DescriptorProtos.FieldDescriptorProto.Label.LABEL_REQUIRED);\n  public final DescriptorProtos.FieldDescriptorProto.Builder PROTO_ARRAY_FIELD =\n      DescriptorProtos.FieldDescriptorProto.newBuilder()\n          .setName(\"Array\")\n          .setNumber(1)\n          .setType(DescriptorProtos.FieldDescriptorProto.Type.TYPE_INT64)\n          .setLabel(DescriptorProtos.FieldDescriptorProto.Label.LABEL_REPEATED);\n  public final DescriptorProtos.DescriptorProto.Builder NESTED_STRUCT_DESCRIPTOR =\n      DescriptorProtos.DescriptorProto.newBuilder()\n          .setName(\"STRUCT4\")\n          .addField(PROTO_INTEGER_FIELD.clone())\n          .addField(\n              PROTO_STRING_FIELD\n                  .clone()\n                  .setNumber(2)\n                  .setLabel(DescriptorProtos.FieldDescriptorProto.Label.LABEL_OPTIONAL));\n  public final DescriptorProtos.FieldDescriptorProto.Builder PROTO_STRUCT_FIELD =\n      DescriptorProtos.FieldDescriptorProto.newBuilder()\n          .setName(\"Struct\")\n          .setNumber(1)\n          .setTypeName(\"STRUCT4\")\n          .setLabel(DescriptorProtos.FieldDescriptorProto.Label.LABEL_OPTIONAL);\n  public final DescriptorProtos.FieldDescriptorProto.Builder PROTO_DOUBLE_FIELD =\n      DescriptorProtos.FieldDescriptorProto.newBuilder()\n          .setName(\"Double\")\n          .setNumber(1)\n          .setType(DescriptorProtos.FieldDescriptorProto.Type.TYPE_DOUBLE)\n          .setLabel(DescriptorProtos.FieldDescriptorProto.Label.LABEL_OPTIONAL);\n  public final DescriptorProtos.FieldDescriptorProto.Builder PROTO_BOOLEAN_FIELD =\n      DescriptorProtos.FieldDescriptorProto.newBuilder()\n          .setName(\"Boolean\")\n          .setNumber(1)\n          .setType(DescriptorProtos.FieldDescriptorProto.Type.TYPE_BOOL)\n          .setLabel(DescriptorProtos.FieldDescriptorProto.Label.LABEL_OPTIONAL);\n  public final DescriptorProtos.FieldDescriptorProto.Builder PROTO_BYTES_FIELD =\n      DescriptorProtos.FieldDescriptorProto.newBuilder()\n          .setName(\"Binary\")\n          .setNumber(1)\n          .setType(DescriptorProtos.FieldDescriptorProto.Type.TYPE_BYTES)\n          .setLabel(DescriptorProtos.FieldDescriptorProto.Label.LABEL_OPTIONAL);\n  public final DescriptorProtos.FieldDescriptorProto.Builder PROTO_DATE_FIELD =\n      DescriptorProtos.FieldDescriptorProto.newBuilder()\n          .setName(\"Date\")\n          .setNumber(1)\n          .setType(DescriptorProtos.FieldDescriptorProto.Type.TYPE_INT32)\n          .setLabel(DescriptorProtos.FieldDescriptorProto.Label.LABEL_OPTIONAL);\n\n  public final InternalRow INTERNAL_STRUCT_DATA =\n      new GenericInternalRow(new Object[] {1, UTF8String.fromString(\"A\")});\n  public final InternalRow STRUCT_INTERNAL_ROW =\n      new GenericInternalRow(new Object[] {INTERNAL_STRUCT_DATA});\n\n  public Descriptors.Descriptor STRUCT_SCHEMA_DESCRIPTOR = createStructSchemaDescriptor();\n\n  public Descriptors.Descriptor createStructSchemaDescriptor() {\n    try {\n      return toDescriptor(new StructType().add(SPARK_NESTED_STRUCT_FIELD));\n    } catch (Descriptors.DescriptorValidationException e) {\n      throw new AssumptionViolatedException(\"Could not create STRUCT_SCHEMA_DESCRIPTOR\", e);\n    }\n  }\n\n  Descriptors.Descriptor STRUCT_DESCRIPTOR = createStructDescriptor();\n\n  public Descriptors.Descriptor createStructDescriptor() throws AssumptionViolatedException {\n    try {\n      return toDescriptor(MY_STRUCT);\n    } catch (Descriptors.DescriptorValidationException e) {\n      throw new AssumptionViolatedException(\"Could not create STRUCT_DESCRIPTOR.\", e);\n    }\n  }\n\n  public DynamicMessage StructRowMessage =\n      DynamicMessage.newBuilder(STRUCT_SCHEMA_DESCRIPTOR)\n          .setField(\n              STRUCT_SCHEMA_DESCRIPTOR.findFieldByNumber(1),\n              buildSingleRowMessage(\n                  MY_STRUCT,\n                  STRUCT_DESCRIPTOR,\n                  INTERNAL_STRUCT_DATA,\n                  /*fieldIndexToEntryMap*/ Optional.empty(),\n                  DynamicMessage.newBuilder(STRUCT_DESCRIPTOR)))\n          .build();\n\n  public Descriptors.Descriptor BIG_SCHEMA_ROW_DESCRIPTOR = createBigSchemaRowDescriptor();\n\n  public Descriptors.Descriptor createBigSchemaRowDescriptor() {\n    try {\n      return toDescriptor(BIG_SPARK_SCHEMA);\n    } catch (Descriptors.DescriptorValidationException e) {\n      throw new AssumptionViolatedException(\"Could not create BIG_SCHEMA_ROW_DESCRIPTOR\", e);\n    }\n  }\n\n  public ProtoRows MY_PROTO_ROWS =\n      ProtoRows.newBuilder()\n          .addSerializedRows(\n              DynamicMessage.newBuilder(BIG_SCHEMA_ROW_DESCRIPTOR)\n                  .setField(BIG_SCHEMA_ROW_DESCRIPTOR.findFieldByNumber(1), 1L)\n                  .setField(BIG_SCHEMA_ROW_DESCRIPTOR.findFieldByNumber(2), \"A\")\n                  .addRepeatedField(BIG_SCHEMA_ROW_DESCRIPTOR.findFieldByNumber(3), 0L)\n                  .addRepeatedField(BIG_SCHEMA_ROW_DESCRIPTOR.findFieldByNumber(3), 1L)\n                  .addRepeatedField(BIG_SCHEMA_ROW_DESCRIPTOR.findFieldByNumber(3), 2L)\n                  .setField(\n                      BIG_SCHEMA_ROW_DESCRIPTOR.findFieldByNumber(4),\n                      buildSingleRowMessage(\n                          MY_STRUCT,\n                          STRUCT_DESCRIPTOR,\n                          INTERNAL_STRUCT_DATA,\n                          /*fieldIndexToEntryMap*/ Optional.empty(),\n                          DynamicMessage.newBuilder(STRUCT_DESCRIPTOR)))\n                  .setField(BIG_SCHEMA_ROW_DESCRIPTOR.findFieldByNumber(5), 3.14)\n                  .setField(BIG_SCHEMA_ROW_DESCRIPTOR.findFieldByNumber(6), true)\n                  .setField(BIG_SCHEMA_ROW_DESCRIPTOR.findFieldByNumber(7), new byte[] {11, 0x7F})\n                  .setField(BIG_SCHEMA_ROW_DESCRIPTOR.findFieldByNumber(8), 647133184)\n                  .setField(BIG_SCHEMA_ROW_DESCRIPTOR.findFieldByNumber(9), 1594080000000L)\n                  .setField(\n                      BIG_SCHEMA_ROW_DESCRIPTOR.findFieldByNumber(10),\n                      \"-99999999999999999999999999999.999999999\")\n                  .setField(\n                      BIG_SCHEMA_ROW_DESCRIPTOR.findFieldByNumber(11),\n                      \"0.78960446186580977117854925043439539146\")\n                  .build()\n                  .toByteString())\n          .build();\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/SchemaConverterTest.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery;\n\nimport static com.google.cloud.spark.bigquery.SchemaConverters.*;\nimport static com.google.common.truth.Truth.assertThat;\nimport static org.junit.Assert.assertThrows;\nimport static org.junit.Assert.fail;\n\nimport com.google.cloud.bigquery.Field;\nimport com.google.cloud.bigquery.Field.Mode;\nimport com.google.cloud.bigquery.FieldList;\nimport com.google.cloud.bigquery.LegacySQLTypeName;\nimport com.google.cloud.bigquery.Schema;\nimport com.google.cloud.bigquery.StandardTableDefinition;\nimport com.google.cloud.bigquery.TableId;\nimport com.google.cloud.bigquery.TableInfo;\nimport com.google.cloud.bigquery.TimePartitioning;\nimport com.google.cloud.bigquery.connector.common.BigQueryUtil;\nimport java.util.Optional;\nimport org.apache.spark.ml.linalg.SQLDataTypes;\nimport org.apache.spark.sql.types.*;\nimport org.junit.Test;\n\npublic class SchemaConverterTest {\n\n  // Numeric is a fixed precision Decimal Type with 38 digits of precision and 9 digits of scale.\n  // See https://cloud.google.com/bigquery/docs/reference/standard-sql/data-types#numeric-type\n  private static final int BQ_NUMERIC_PRECISION = 38;\n  private static final int BQ_NUMERIC_SCALE = 9;\n  private static final int BQ_BIGNUMERIC_SCALE = 38;\n  private static final DecimalType NUMERIC_SPARK_TYPE =\n      DataTypes.createDecimalType(BQ_NUMERIC_PRECISION, BQ_NUMERIC_SCALE);\n  private static final DecimalType BIGNUMERIC_SPARK_TYPE =\n      DataTypes.createDecimalType(BQ_NUMERIC_PRECISION, BQ_BIGNUMERIC_SCALE);\n  // The maximum nesting depth of a BigQuery RECORD:\n  private static final int MAX_BIGQUERY_NESTED_DEPTH = 15;\n\n  private static final SchemaConvertersConfiguration SCHEMA_CONVERTERS_CONFIGURATION =\n      SchemaConvertersConfiguration.from(new SparkBigQueryConfig());\n\n  /*\n  BigQuery -> Spark tests, translated from SchemaConvertersSuite.scala\n   */\n  @Test\n  public void testEmptySchemaBigQueryToSparkConversion() throws Exception {\n    Schema bqSchema = Schema.of();\n    StructType expected = new StructType();\n    StructType result = SchemaConverters.from(SCHEMA_CONVERTERS_CONFIGURATION).toSpark(bqSchema);\n    assertThat(result).isEqualTo(expected);\n  }\n\n  @Test\n  public void testSingleFieldSchemaBigQueryToSparkConversion() throws Exception {\n    Schema bqSchema = Schema.of(Field.of(\"foo\", LegacySQLTypeName.STRING));\n    StructType expected =\n        new StructType().add(new StructField(\"foo\", DataTypes.StringType, true, Metadata.empty()));\n    StructType result = SchemaConverters.from(SCHEMA_CONVERTERS_CONFIGURATION).toSpark(bqSchema);\n    assertThat(result).isEqualTo(expected);\n  }\n\n  @Test\n  public void testFullFieldSchemaBigQueryToSparkConversion() throws Exception {\n    Schema bqSchema = BIG_BIGQUERY_SCHEMA2;\n\n    StructType expected = BIG_SPARK_SCHEMA2;\n\n    StructType result = SchemaConverters.from(SCHEMA_CONVERTERS_CONFIGURATION).toSpark(bqSchema);\n    assertThat(result).isEqualTo(expected);\n  }\n\n  @Test\n  public void testFieldHasDescriptionBigQueryToSpark() throws Exception {\n    Schema bqSchema =\n        Schema.of(\n            Field.newBuilder(\"name\", LegacySQLTypeName.STRING)\n                .setDescription(\"foo\")\n                .setMode(Field.Mode.NULLABLE)\n                .build());\n    StructType expected =\n        new StructType()\n            .add(\n                new StructField(\n                    \"name\",\n                    DataTypes.StringType,\n                    true,\n                    new MetadataBuilder()\n                        .putString(\"description\", \"foo\")\n                        .putString(\"comment\", \"foo\")\n                        .build()));\n\n    StructType result = SchemaConverters.from(SCHEMA_CONVERTERS_CONFIGURATION).toSpark(bqSchema);\n    assertThat(result).isEqualTo(expected);\n  }\n\n  @Test\n  public void testGetSchemaWithPseudoColumns() throws Exception {\n    Schema result =\n        SchemaConverters.from(SCHEMA_CONVERTERS_CONFIGURATION)\n            .getSchemaWithPseudoColumns(buildTableInfo(BIG_BIGQUERY_SCHEMA2, null));\n    assertThat(result).isEqualTo(BIG_BIGQUERY_SCHEMA2);\n\n    result =\n        SchemaConverters.from(SCHEMA_CONVERTERS_CONFIGURATION)\n            .getSchemaWithPseudoColumns(\n                buildTableInfo(\n                    BIG_BIGQUERY_SCHEMA2,\n                    TimePartitioning.newBuilder(TimePartitioning.Type.DAY)\n                        .setField(\"foo\")\n                        .build()));\n    assertThat(result).isEqualTo(BIG_BIGQUERY_SCHEMA2);\n\n    result =\n        SchemaConverters.from(SCHEMA_CONVERTERS_CONFIGURATION)\n            .getSchemaWithPseudoColumns(\n                buildTableInfo(\n                    BIG_BIGQUERY_SCHEMA2, TimePartitioning.of(TimePartitioning.Type.DAY)));\n    assertThat(result).isEqualTo(BIG_BIGQUERY_SCHEMA2_WITH_PSEUDO_COLUMNS);\n  }\n\n  @Test\n  public void testGetSchemaWithPseudoColumnsOfNoneDailyPartitioning() throws Exception {\n    Schema result =\n        SchemaConverters.from(SCHEMA_CONVERTERS_CONFIGURATION)\n            .getSchemaWithPseudoColumns(\n                buildTableInfo(\n                    BIG_BIGQUERY_SCHEMA2, TimePartitioning.of(TimePartitioning.Type.HOUR)));\n    Schema bigSchema2withJustPartitionTimePseudoColumn =\n        Schema.of(\n            BIG_BIGQUERY_SCHEMA2_WITH_PSEUDO_COLUMNS.getFields().stream()\n                .filter(field -> !field.getName().equals(\"_PARTITIONDATE\"))\n                .toArray(Field[]::new));\n    assertThat(result).isEqualTo(bigSchema2withJustPartitionTimePseudoColumn);\n  }\n\n  public TableInfo buildTableInfo(Schema schema, TimePartitioning timePartitioning) {\n    return TableInfo.of(\n        TableId.of(\"project\", \"dataset\", \"table\"),\n        StandardTableDefinition.newBuilder()\n            .setSchema(schema)\n            .setTimePartitioning(timePartitioning)\n            .build());\n  }\n\n  /*\n  Spark -> BigQuery conversion tests:\n   */\n  @Test\n  public void testSparkToBQSchema() throws Exception {\n    StructType schema = BIG_SPARK_SCHEMA;\n    Schema expected = BIG_BIGQUERY_SCHEMA;\n\n    Schema converted =\n        SchemaConverters.from(SCHEMA_CONVERTERS_CONFIGURATION).toBigQuerySchema(schema);\n\n    for (int i = 0; i < expected.getFields().size(); i++) {\n      if (i == 8) continue; // FIXME: delete this line when Timestamp conversion can be restored.\n      assertThat(converted.getFields().get(i)).isEqualTo(expected.getFields().get(i));\n    }\n  }\n\n  @Test\n  public void testDecimalTypeConversionFromSparkToBigQuery() throws Exception {\n    VerifyDecimalConversion(10, 0, LegacySQLTypeName.NUMERIC);\n    VerifyDecimalConversion(20, 9, LegacySQLTypeName.NUMERIC);\n    VerifyDecimalConversion(38, 9, LegacySQLTypeName.NUMERIC);\n    VerifyDecimalConversion(38, 4, LegacySQLTypeName.BIGNUMERIC);\n    VerifyDecimalConversion(38, 10, LegacySQLTypeName.BIGNUMERIC);\n    VerifyDecimalConversion(20, 15, LegacySQLTypeName.BIGNUMERIC);\n    VerifyDecimalConversion(38, 38, LegacySQLTypeName.BIGNUMERIC);\n  }\n\n  private void VerifyDecimalConversion(int precision, int scale, LegacySQLTypeName expectedType) {\n    Field field =\n        SchemaConverters.from(SCHEMA_CONVERTERS_CONFIGURATION)\n            .createBigQueryColumn(\n                simpleStructField(\"foo\", DataTypes.createDecimalType(precision, scale)), 1);\n    assertThat(field.getType()).isEqualTo(expectedType);\n    assertThat(field.getPrecision()).isEqualTo(precision);\n    assertThat(field.getScale()).isEqualTo(scale);\n  }\n\n  private Field getKeyValueRepeatedField() {\n    return Field.newBuilder(\n            \"foo\",\n            LegacySQLTypeName.RECORD,\n            Field.newBuilder(\"key\", LegacySQLTypeName.INTEGER).setMode(Mode.REQUIRED).build(),\n            Field.of(\"value\", LegacySQLTypeName.STRING))\n        .setMode(Mode.REPEATED)\n        .build();\n  }\n\n  @Test\n  public void testFailureOnTooWideBigNumericConversion() throws Exception {\n    assertThrows(\n        IllegalArgumentException.class,\n        () -> {\n          SchemaConverters.from(SCHEMA_CONVERTERS_CONFIGURATION)\n              .convert(\n                  Field.newBuilder(\"foo\", LegacySQLTypeName.BIGNUMERIC)\n                      .setPrecision(60L)\n                      .setScale(30L)\n                      .build());\n        });\n  }\n\n  @Test\n  public void testTimeTypesConversions() throws Exception {\n    // FIXME: restore this check when the Vortex team adds microsecond precision, and Timestamp\n    // conversion can be fixed.\n    // assertThat(toBigQueryType(DataTypes.TimestampType)).isEqualTo(LegacySQLTypeName.TIMESTAMP);\n    assertThat(\n            SchemaConverters.from(SCHEMA_CONVERTERS_CONFIGURATION)\n                .toBigQueryType(DataTypes.DateType, Metadata.empty()))\n        .isEqualTo(LegacySQLTypeName.DATE);\n  }\n\n  @Test\n  public void testDescriptionConversion() throws Exception {\n    String description = \"I love bananas\";\n    Field result =\n        SchemaConverters.from(SCHEMA_CONVERTERS_CONFIGURATION)\n            .createBigQueryColumn(\n                new StructField(\n                    \"Field\",\n                    DataTypes.IntegerType,\n                    true,\n                    new MetadataBuilder().putString(\"description\", description).build()),\n                0);\n\n    assertThat(result.getDescription()).isEqualTo(description);\n  }\n\n  @Test\n  public void testDescriptionConversionForSparkML() throws Exception {\n    String description = \"I love bananas\";\n    Field result =\n        SchemaConverters.from(SCHEMA_CONVERTERS_CONFIGURATION)\n            .createBigQueryColumn(\n                new StructField(\n                    \"Field\",\n                    SQLDataTypes.MatrixType(),\n                    true,\n                    new MetadataBuilder().putString(\"description\", description).build()),\n                0);\n\n    assertThat(result.getDescription())\n        .isEqualTo(description + \" \" + SupportedCustomDataType.SPARK_ML_MATRIX.getTypeMarker());\n  }\n\n  @Test\n  public void testSparkMLConversionNoDescription() throws Exception {\n    Field result =\n        SchemaConverters.from(SCHEMA_CONVERTERS_CONFIGURATION)\n            .createBigQueryColumn(\n                new StructField(\"Field\", SQLDataTypes.MatrixType(), true, Metadata.empty()), 0);\n\n    assertThat(result.getDescription())\n        .isEqualTo(SupportedCustomDataType.SPARK_ML_MATRIX.getTypeMarker());\n  }\n\n  @Test\n  public void testNoDescriptionConversion() throws Exception {\n    Field result =\n        SchemaConverters.from(SCHEMA_CONVERTERS_CONFIGURATION)\n            .createBigQueryColumn(\n                new StructField(\"Field\", DataTypes.IntegerType, true, Metadata.empty()), 0);\n\n    assertThat(result.getDescription()).isNull();\n  }\n\n  @Test\n  public void testCommentConversion() throws Exception {\n    StructField field =\n        StructField.apply(\n            \"foo\",\n            DataTypes.StringType,\n            true,\n            new MetadataBuilder().putString(\"comment\", \"bar\").build());\n    Optional<String> convertedComment =\n        SchemaConverters.getDescriptionOrCommentOfField(field, Optional.empty());\n    assertThat(convertedComment).isEqualTo(Optional.of(\"bar\"));\n  }\n\n  @Test\n  public void testMaximumNestingDepthError() throws Exception {\n    StructType inner = new StructType();\n    StructType superRecursiveSchema = inner;\n    for (int i = 0; i < MAX_BIGQUERY_NESTED_DEPTH + 1; i++) {\n      StructType outer =\n          new StructType()\n              .add(new StructField(\"struct\" + i, superRecursiveSchema, true, Metadata.empty()));\n      superRecursiveSchema = outer;\n    }\n\n    try {\n      SchemaConverters.from(SCHEMA_CONVERTERS_CONFIGURATION)\n          .createBigQueryColumn(superRecursiveSchema.fields()[0], 0);\n      fail(\"Did not detect super-recursive schema of depth = 16.\");\n    } catch (IllegalArgumentException e) {\n    }\n  }\n\n  @Test\n  public void testGetCustomDataType() {\n    Field.Builder field =\n        Field.newBuilder(\n            \"test\", LegacySQLTypeName.RECORD, Field.of(\"sub\", LegacySQLTypeName.INTEGER));\n    // no description\n    SchemaConverters sc = from(SCHEMA_CONVERTERS_CONFIGURATION);\n    assertThat(sc.getCustomDataType(field.build()).isPresent()).isFalse();\n    // empty marker\n    assertThat(sc.getCustomDataType(field.setDescription(\"foo\").build()).isPresent()).isFalse();\n    // only marker\n    assertThat(sc.getCustomDataType(field.setDescription(\"{spark.type=vector}\").build()))\n        .isEqualTo(Optional.of(SQLDataTypes.VectorType()));\n    // description and marker\n    assertThat(sc.getCustomDataType(field.setDescription(\"foo {spark.type=matrix}\").build()))\n        .isEqualTo(Optional.of(SQLDataTypes.MatrixType()));\n  }\n\n  @Test\n  public void testConvertBigQueryMapToSparkMap_not_repeated() {\n    Optional<StructField> field =\n        SchemaConverters.from(SCHEMA_CONVERTERS_CONFIGURATION)\n            .convertMap(\n                Field.newBuilder(\"foo\", LegacySQLTypeName.INTEGER).setMode(Mode.REQUIRED).build(),\n                Metadata.empty());\n    assertThat(field).isEqualTo(Optional.empty());\n  }\n\n  @Test\n  public void testConvertBigQueryMapToSparkMap_not_record() {\n    Optional<StructField> field =\n        SchemaConverters.from(SCHEMA_CONVERTERS_CONFIGURATION)\n            .convertMap(\n                Field.newBuilder(\"foo\", LegacySQLTypeName.INTEGER).setMode(Mode.REPEATED).build(),\n                Metadata.empty());\n    assertThat(field).isEqualTo(Optional.empty());\n  }\n\n  @Test\n  public void testConvertBigQueryMapToSparkMap_wrong_record_size() {\n    Optional<StructField> field =\n        SchemaConverters.from(SCHEMA_CONVERTERS_CONFIGURATION)\n            .convertMap(\n                Field.newBuilder(\n                        \"foo\", LegacySQLTypeName.RECORD, Field.of(\"foo\", LegacySQLTypeName.INTEGER))\n                    .setMode(Mode.REPEATED)\n                    .build(),\n                Metadata.empty());\n    assertThat(field).isEqualTo(Optional.empty());\n  }\n\n  @Test\n  public void testConvertBigQueryMapToSparkMap_wrong_record_fields() {\n    Optional<StructField> field =\n        SchemaConverters.from(SCHEMA_CONVERTERS_CONFIGURATION)\n            .convertMap(\n                Field.newBuilder(\n                        \"foo\",\n                        LegacySQLTypeName.RECORD,\n                        Field.of(\"foo\", LegacySQLTypeName.INTEGER),\n                        Field.of(\"bar\", LegacySQLTypeName.INTEGER))\n                    .setMode(Mode.REPEATED)\n                    .build(),\n                Metadata.empty());\n    assertThat(field).isEqualTo(Optional.empty());\n  }\n\n  @Test\n  public void testConvertBigQueryMapToSparkMap_with_actual_map() {\n    Optional<StructField> fieldOpt =\n        SchemaConverters.from(SCHEMA_CONVERTERS_CONFIGURATION)\n            .convertMap(getKeyValueRepeatedField(), Metadata.empty());\n    MapType longToStringMapType = DataTypes.createMapType(DataTypes.LongType, DataTypes.StringType);\n    assertThat(fieldOpt.isPresent()).isTrue();\n    StructField field = fieldOpt.get();\n    assertThat(field.dataType()).isEqualTo(longToStringMapType);\n    assertThat(field.name()).isEqualTo(\"foo\");\n  }\n\n  @Test\n  public void testConvertSparkMapToBigQueryMap_nested() {\n    MapType sparkNestedMapType =\n        DataTypes.createMapType(\n            DataTypes.IntegerType, new StructType().add(\"v\", DataTypes.IntegerType, false), true);\n    Field bigQueryType =\n        SchemaConverters.from(SchemaConvertersConfiguration.of(false))\n            .createBigQueryColumn(simpleStructField(\"nestedMap\", sparkNestedMapType), 2);\n    assertThat(bigQueryType.getType()).isEqualTo(LegacySQLTypeName.RECORD);\n    FieldList subFields = bigQueryType.getSubFields();\n    assertThat(subFields.size()).isEqualTo(2);\n    assertThat(subFields.get(0))\n        .isEqualTo(\n            Field.newBuilder(\"key\", LegacySQLTypeName.INTEGER).setMode(Mode.REQUIRED).build());\n    assertThat(subFields.get(1))\n        .isEqualTo(\n            Field.newBuilder(\n                    \"value\",\n                    LegacySQLTypeName.RECORD,\n                    FieldList.of(\n                        Field.newBuilder(\"v\", LegacySQLTypeName.INTEGER)\n                            .setMode(Mode.REQUIRED)\n                            .build()))\n                .setMode(Mode.NULLABLE)\n                .build());\n  }\n\n  @Test\n  public void testConvertBigQueryMapToSparkMap_nested() {\n    Field bigQueryNestedMapField =\n        Field.newBuilder(\n                \"map_complex\",\n                LegacySQLTypeName.RECORD,\n                FieldList.of(\n                    Field.newBuilder(\"key\", LegacySQLTypeName.STRING)\n                        .setMode(Mode.REQUIRED)\n                        .build(),\n                    Field.newBuilder(\n                            \"value\",\n                            LegacySQLTypeName.RECORD,\n                            FieldList.of(\n                                Field.newBuilder(\"v\", LegacySQLTypeName.INTEGER)\n                                    .setMode(Mode.REQUIRED)\n                                    .build()))\n                        .setMode(Mode.NULLABLE)\n                        .build()))\n            .setMode(Field.Mode.REPEATED)\n            .build();\n    Optional<StructField> sparkField =\n        SchemaConverters.from(SchemaConvertersConfiguration.of(true))\n            .convertMap(bigQueryNestedMapField, Metadata.empty());\n    assertThat(sparkField.isPresent()).isTrue();\n    StructField sparkMap = sparkField.get();\n    MapType sparkNestedMapType =\n        DataTypes.createMapType(\n            DataTypes.StringType, new StructType().add(\"v\", DataTypes.LongType, false), true);\n    assertThat(sparkMap.dataType()).isEqualTo(sparkNestedMapType);\n  }\n\n  @Test\n  public void testConvertBigQueryMapToSparkMap_mapTypeConversionDisabled() {\n    Optional<StructField> fieldOpt =\n        SchemaConverters.from(SchemaConvertersConfiguration.of(false))\n            .convertMap(getKeyValueRepeatedField(), Metadata.empty());\n    assertThat(fieldOpt.isPresent()).isFalse();\n  }\n\n  @Test\n  public void testConvertBigQueryToSparkArray_mapTypeConversionDisabled() {\n    StructField field =\n        SchemaConverters.from(SchemaConvertersConfiguration.of(false))\n            .convert(getKeyValueRepeatedField());\n    StructType elementType =\n        new StructType()\n            .add(\"key\", DataTypes.LongType, false)\n            .add(\"value\", DataTypes.StringType, true);\n    ArrayType arrayType = new ArrayType(elementType, true);\n    assertThat(field.dataType()).isEqualTo(arrayType);\n    assertThat(field.name()).isEqualTo(\"foo\");\n  }\n\n  @Test\n  public void testCreateDecimalTypeFromNumericField() throws Exception {\n    // new builder instance is needed for each test\n    assertDecimal(numeric(), 38, 9);\n    assertDecimal(numeric().setPrecision(20L), 20, 0);\n    assertDecimal(numeric().setPrecision(30L), 30, 1);\n    assertDecimal(numeric().setScale(5L), 34, 5);\n    assertDecimal(numeric().setPrecision(20L).setScale(5L), 20, 5);\n  }\n\n  @Test\n  public void testCreateDecimalTypeFromCustomBigNumericField() throws Exception {\n    Field customBigNumeric = Field.newBuilder(\"foo\", LegacySQLTypeName.BIGNUMERIC).build();\n    StructField field =\n        SchemaConverters.from(SchemaConvertersConfiguration.of(false, 38, 10))\n            .convert(customBigNumeric);\n    assertThat(field.dataType()).isEqualTo(DataTypes.createDecimalType(38, 10));\n  }\n\n  @Test\n  public void testCreateDecimalTypeFromCustomBigNumericField_wide() throws Exception {\n    Field customBigNumeric = Field.newBuilder(\"foo\", LegacySQLTypeName.BIGNUMERIC).build();\n    assertThrows(\n        IllegalArgumentException.class,\n        () -> {\n          SchemaConverters.from(SchemaConvertersConfiguration.of(false, 40, 10))\n              .convert(customBigNumeric);\n        });\n  }\n\n  private Field.Builder numeric() {\n    return Field.newBuilder(\"foo\", LegacySQLTypeName.NUMERIC);\n  }\n\n  private void assertDecimal(Field.Builder numeric, int expectedPrecision, int expectedScale) {\n    DecimalType decimalType =\n        SchemaConverters.createDecimalTypeFromNumericField(\n            numeric.build(),\n            LegacySQLTypeName.NUMERIC,\n            BigQueryUtil.DEFAULT_NUMERIC_PRECISION,\n            BigQueryUtil.DEFAULT_NUMERIC_SCALE);\n    assertThat(decimalType.precision()).isEqualTo(expectedPrecision);\n    assertThat(decimalType.scale()).isEqualTo(expectedScale);\n  }\n\n  public final StructType MY_STRUCT =\n      DataTypes.createStructType(\n          new StructField[] {\n            new StructField(\"Number\", DataTypes.IntegerType, true, Metadata.empty()),\n            new StructField(\"String\", DataTypes.StringType, true, Metadata.empty())\n          });\n\n  public final StructField SPARK_INTEGER_FIELD =\n      new StructField(\"Number\", DataTypes.IntegerType, true, Metadata.empty());\n  public final StructField SPARK_STRING_FIELD =\n      new StructField(\"String\", DataTypes.StringType, false, Metadata.empty());\n  public final StructField SPARK_NESTED_STRUCT_FIELD =\n      new StructField(\"Struct\", MY_STRUCT, true, Metadata.empty());\n  public final StructField SPARK_ARRAY_FIELD =\n      new StructField(\n          \"Array\", DataTypes.createArrayType(DataTypes.IntegerType), true, Metadata.empty());\n  public final StructField SPARK_DOUBLE_FIELD =\n      new StructField(\"Float\", DataTypes.DoubleType, true, Metadata.empty());\n  public final StructField SPARK_BOOLEAN_FIELD =\n      new StructField(\"Boolean\", DataTypes.BooleanType, true, Metadata.empty());\n  public final StructField SPARK_BINARY_FIELD =\n      new StructField(\"Binary\", DataTypes.BinaryType, true, Metadata.empty());\n  public final StructField SPARK_DATE_FIELD =\n      new StructField(\"Date\", DataTypes.DateType, true, Metadata.empty());\n  public final StructField SPARK_TIMESTAMP_FIELD =\n      new StructField(\"TimeStamp\", DataTypes.TimestampType, true, Metadata.empty());\n  public final StructField SPARK_MAP_FIELD =\n      new StructField(\n          \"map_f\",\n          DataTypes.createMapType(DataTypes.StringType, DataTypes.LongType),\n          false,\n          Metadata.empty());\n  public final StructField SPARK_JSON_FIELD =\n      new StructField(\n          \"json_f\", DataTypes.StringType, true, Metadata.fromJson(\"{\\\"sqlType\\\":\\\"JSON\\\"}\"));\n\n  public final StructType BIG_SPARK_SCHEMA =\n      new StructType()\n          .add(SPARK_INTEGER_FIELD)\n          .add(SPARK_STRING_FIELD)\n          .add(SPARK_ARRAY_FIELD)\n          .add(SPARK_NESTED_STRUCT_FIELD)\n          .add(SPARK_DOUBLE_FIELD)\n          .add(SPARK_BOOLEAN_FIELD)\n          .add(SPARK_BINARY_FIELD)\n          .add(SPARK_DATE_FIELD)\n          .add(SPARK_TIMESTAMP_FIELD)\n          .add(SPARK_JSON_FIELD)\n          .add(SPARK_MAP_FIELD);\n\n  public final Field BIGQUERY_INTEGER_FIELD =\n      Field.newBuilder(\"Number\", LegacySQLTypeName.INTEGER, (FieldList) null)\n          .setMode(Field.Mode.NULLABLE)\n          .build();\n  public final Field BIGQUERY_STRING_FIELD =\n      Field.newBuilder(\"String\", LegacySQLTypeName.STRING, (FieldList) null)\n          .setMode(Field.Mode.REQUIRED)\n          .build();\n  public final Field BIGQUERY_NESTED_STRUCT_FIELD =\n      Field.newBuilder(\n              \"Struct\",\n              LegacySQLTypeName.RECORD,\n              Field.newBuilder(\"Number\", LegacySQLTypeName.INTEGER, (FieldList) null)\n                  .setMode(Field.Mode.NULLABLE)\n                  .build(),\n              Field.newBuilder(\"String\", LegacySQLTypeName.STRING, (FieldList) null)\n                  .setMode(Field.Mode.NULLABLE)\n                  .build())\n          .setMode(Field.Mode.NULLABLE)\n          .build();\n  public final Field BIGQUERY_ARRAY_FIELD =\n      Field.newBuilder(\"Array\", LegacySQLTypeName.INTEGER, (FieldList) null)\n          .setMode(Field.Mode.REPEATED)\n          .build();\n  public final Field BIGQUERY_FLOAT_FIELD =\n      Field.newBuilder(\"Float\", LegacySQLTypeName.FLOAT, (FieldList) null)\n          .setMode(Field.Mode.NULLABLE)\n          .build();\n  public final Field BIGQUERY_BOOLEAN_FIELD =\n      Field.newBuilder(\"Boolean\", LegacySQLTypeName.BOOLEAN, (FieldList) null)\n          .setMode(Field.Mode.NULLABLE)\n          .build();\n  public final Field BIGQUERY_BYTES_FIELD =\n      Field.newBuilder(\"Binary\", LegacySQLTypeName.BYTES, (FieldList) null)\n          .setMode(Field.Mode.NULLABLE)\n          .build();\n  public final Field BIGQUERY_DATE_FIELD =\n      Field.newBuilder(\"Date\", LegacySQLTypeName.DATE, (FieldList) null)\n          .setMode(Field.Mode.NULLABLE)\n          .build();\n  public final Field BIGQUERY_TIMESTAMP_FIELD =\n      Field.newBuilder(\"TimeStamp\", LegacySQLTypeName.TIMESTAMP, (FieldList) null)\n          .setMode(Field.Mode.NULLABLE)\n          .build();\n  public final Field BIGQUERY_JSON_FIELD =\n      Field.newBuilder(\"json_f\", LegacySQLTypeName.JSON, (FieldList) null)\n          .setMode(Field.Mode.NULLABLE)\n          .build();\n\n  public final Field BIGQUERY_MAP_FIELD =\n      Field.newBuilder(\n              \"map_f\",\n              LegacySQLTypeName.RECORD,\n              FieldList.of(\n                  Field.newBuilder(\"key\", LegacySQLTypeName.STRING).setMode(Mode.REQUIRED).build(),\n                  Field.newBuilder(\"value\", LegacySQLTypeName.INTEGER)\n                      .setMode(Mode.NULLABLE)\n                      .build()))\n          .setMode(Field.Mode.REPEATED)\n          .build();\n\n  public final Schema BIG_BIGQUERY_SCHEMA =\n      Schema.of(\n          BIGQUERY_INTEGER_FIELD,\n          BIGQUERY_STRING_FIELD,\n          BIGQUERY_ARRAY_FIELD,\n          BIGQUERY_NESTED_STRUCT_FIELD,\n          BIGQUERY_FLOAT_FIELD,\n          BIGQUERY_BOOLEAN_FIELD,\n          BIGQUERY_BYTES_FIELD,\n          BIGQUERY_DATE_FIELD,\n          BIGQUERY_TIMESTAMP_FIELD,\n          BIGQUERY_JSON_FIELD,\n          BIGQUERY_MAP_FIELD);\n\n  public final StructType BIG_SPARK_SCHEMA2 =\n      new StructType()\n          .add(new StructField(\"foo\", DataTypes.StringType, true, Metadata.empty()))\n          .add(new StructField(\"bar\", DataTypes.LongType, true, Metadata.empty()))\n          .add(new StructField(\"required\", DataTypes.BooleanType, false, Metadata.empty()))\n          .add(\n              new StructField(\n                  \"binary_arr\",\n                  DataTypes.createArrayType(DataTypes.BinaryType, true),\n                  true,\n                  Metadata.empty()))\n          .add(new StructField(\"float\", DataTypes.DoubleType, true, Metadata.empty()))\n          .add(\n              new StructField(\n                  \"numeric\", DataTypes.createDecimalType(38, 9), true, Metadata.empty()))\n          .add(\n              new StructField(\n                  \"big_numeric\", DataTypes.createDecimalType(38, 38), true, Metadata.empty()))\n          .add(new StructField(\"date\", DataTypes.DateType, true, Metadata.empty()))\n          .add(\n              new StructField(\n                  \"times\",\n                  new StructType()\n                      .add(new StructField(\"time\", DataTypes.LongType, true, Metadata.empty()))\n                      .add(\n                          new StructField(\n                              \"timestamp\", DataTypes.TimestampType, true, Metadata.empty()))\n                      .add(\n                          new StructField(\n                              \"datetime\", DataTypes.StringType, true, Metadata.empty())),\n                  true,\n                  Metadata.empty()))\n          .add(SPARK_JSON_FIELD)\n          .add(SPARK_MAP_FIELD);\n\n  public final Schema BIG_BIGQUERY_SCHEMA2 =\n      Schema.of(\n          Field.of(\"foo\", LegacySQLTypeName.STRING),\n          Field.of(\"bar\", LegacySQLTypeName.INTEGER),\n          Field.newBuilder(\"required\", LegacySQLTypeName.BOOLEAN)\n              .setMode(Field.Mode.REQUIRED)\n              .build(),\n          Field.newBuilder(\"binary_arr\", LegacySQLTypeName.BYTES)\n              .setMode(Field.Mode.REPEATED)\n              .build(),\n          Field.of(\"float\", LegacySQLTypeName.FLOAT),\n          Field.newBuilder(\"numeric\", LegacySQLTypeName.NUMERIC)\n              .setPrecision(new Long(BQ_NUMERIC_PRECISION))\n              .setScale(new Long(BQ_NUMERIC_SCALE))\n              .build(),\n          Field.newBuilder(\"big_numeric\", LegacySQLTypeName.BIGNUMERIC)\n              .setPrecision(new Long(BQ_NUMERIC_PRECISION))\n              .setScale(new Long(BQ_BIGNUMERIC_SCALE))\n              .build(),\n          Field.of(\"date\", LegacySQLTypeName.DATE),\n          Field.of(\n              \"times\",\n              LegacySQLTypeName.RECORD,\n              Field.of(\"time\", LegacySQLTypeName.TIME),\n              Field.of(\"timestamp\", LegacySQLTypeName.TIMESTAMP),\n              Field.of(\"datetime\", LegacySQLTypeName.DATETIME)),\n          BIGQUERY_JSON_FIELD,\n          BIGQUERY_MAP_FIELD);\n\n  public final Schema BIG_BIGQUERY_SCHEMA2_WITH_PSEUDO_COLUMNS =\n      Schema.of(\n          Field.of(\"foo\", LegacySQLTypeName.STRING),\n          Field.of(\"bar\", LegacySQLTypeName.INTEGER),\n          Field.newBuilder(\"required\", LegacySQLTypeName.BOOLEAN)\n              .setMode(Field.Mode.REQUIRED)\n              .build(),\n          Field.newBuilder(\"binary_arr\", LegacySQLTypeName.BYTES)\n              .setMode(Field.Mode.REPEATED)\n              .build(),\n          Field.of(\"float\", LegacySQLTypeName.FLOAT),\n          Field.newBuilder(\"numeric\", LegacySQLTypeName.NUMERIC)\n              .setPrecision(new Long(BQ_NUMERIC_PRECISION))\n              .setScale(new Long(BQ_NUMERIC_SCALE))\n              .build(),\n          Field.newBuilder(\"big_numeric\", LegacySQLTypeName.BIGNUMERIC)\n              .setPrecision(new Long(BQ_NUMERIC_PRECISION))\n              .setScale(new Long(BQ_BIGNUMERIC_SCALE))\n              .build(),\n          Field.of(\"date\", LegacySQLTypeName.DATE),\n          Field.of(\n              \"times\",\n              LegacySQLTypeName.RECORD,\n              Field.of(\"time\", LegacySQLTypeName.TIME),\n              Field.of(\"timestamp\", LegacySQLTypeName.TIMESTAMP),\n              Field.of(\"datetime\", LegacySQLTypeName.DATETIME)),\n          BIGQUERY_JSON_FIELD,\n          BIGQUERY_MAP_FIELD,\n          Field.newBuilder(\"_PARTITIONTIME\", LegacySQLTypeName.TIMESTAMP)\n              .setMode(Field.Mode.NULLABLE)\n              .build(),\n          Field.newBuilder(\"_PARTITIONDATE\", LegacySQLTypeName.DATE)\n              .setMode(Field.Mode.NULLABLE)\n              .build());\n\n  private StructField simpleStructField(String name, DataType dataType) {\n    return StructField.apply(name, dataType, /* nullable */ true, Metadata.empty());\n  }\n  /* TODO: translate BigQuery to Spark row conversion tests, from SchemaIteratorSuite.scala\n  private final List<String> BIG_SCHEMA_NAMES_INORDER = Arrays.asList(\n          new String[]{\"Number\", \"String\", \"Array\", \"Struct\", \"Float\", \"Boolean\", \"Numeric\"});\n\n  private final org.apache.avro.Schema AVRO_SCHEMA = createAvroSchema();\n  private final org.apache.avro.Schema createAvroSchema() throws AssumptionViolatedException {\n      try {\n          org.apache.avro.Schema avroSchema = new org.apache.avro.Schema.Parser().\n                  parse(this.getClass().getResourceAsStream(\"/alltypes.avroschema.json\"));\n          return avroSchema;\n      } catch (IOException e) {\n          throw new AssumptionViolatedException(\"Could not create AVRO_SCHEMA\", e);\n      }\n  }\n   */\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/SparkBigQueryConfigTest.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery;\n\nimport static com.google.cloud.spark.bigquery.SparkBigQueryConfig.BIGQUERY_JOB_LABEL_PREFIX;\nimport static com.google.cloud.spark.bigquery.SparkBigQueryConfig.BIGQUERY_TABLE_LABEL_PREFIX;\nimport static com.google.common.truth.Truth.assertThat;\nimport static org.junit.Assert.assertThrows;\nimport static org.junit.Assert.fail;\n\nimport com.google.auth.oauth2.ImpersonatedCredentials;\nimport com.google.cloud.bigquery.JobInfo;\nimport com.google.cloud.bigquery.QueryJobConfiguration.Priority;\nimport com.google.cloud.bigquery.RangePartitioning;\nimport com.google.cloud.bigquery.TableId;\nimport com.google.cloud.bigquery.TimePartitioning;\nimport com.google.cloud.bigquery.connector.common.BigQueryUtil;\nimport com.google.cloud.bigquery.storage.v1.ArrowSerializationOptions.CompressionCodec;\nimport com.google.cloud.bigquery.storage.v1.DataFormat;\nimport com.google.cloud.bigquery.storage.v1.ReadSession.TableReadOptions.ResponseCompressionCodec;\nimport com.google.common.collect.ImmutableList;\nimport com.google.common.collect.ImmutableMap;\nimport java.io.ByteArrayOutputStream;\nimport java.io.IOException;\nimport java.io.ObjectOutputStream;\nimport java.nio.charset.StandardCharsets;\nimport java.util.Arrays;\nimport java.util.Base64;\nimport java.util.HashMap;\nimport java.util.Locale;\nimport java.util.Map;\nimport java.util.Optional;\nimport java.util.OptionalInt;\nimport java.util.OptionalLong;\nimport org.apache.hadoop.conf.Configuration;\nimport org.apache.hadoop.security.UserGroupInformation;\nimport org.apache.spark.sql.internal.SQLConf;\nimport org.junit.Assert;\nimport org.junit.Test;\n\npublic class SparkBigQueryConfigTest {\n\n  public static final int DEFAULT_PARALLELISM = 10;\n  public static final String SPARK_VERSION = \"2.4.0\";\n  private static ImmutableMap<String, String> build;\n  ImmutableMap<String, String> defaultOptions = ImmutableMap.of(\"table\", \"dataset.table\");\n  // \"project\", \"test_project\"); // to remove the need for default project\n  ImmutableMap<String, String> defaultGlobalOptions = ImmutableMap.of(\"spark.executor.cores\", \"1\");\n\n  @Test\n  public void testSerializability() throws IOException {\n    Configuration hadoopConfiguration = new Configuration();\n    DataSourceOptions options = new DataSourceOptions(defaultOptions);\n    // test to make sure all members can be serialized.\n    new ObjectOutputStream(new ByteArrayOutputStream())\n        .writeObject(\n            SparkBigQueryConfig.from(\n                options.asMap(),\n                ImmutableMap.of(),\n                hadoopConfiguration,\n                ImmutableMap.of(),\n                DEFAULT_PARALLELISM,\n                new SQLConf(),\n                SPARK_VERSION,\n                Optional.empty(), /* tableIsMandatory */\n                true));\n  }\n\n  @Test\n  public void testDefaults() {\n    Configuration hadoopConfiguration = new Configuration();\n    DataSourceOptions options = new DataSourceOptions(defaultOptions);\n    SparkBigQueryConfig config =\n        SparkBigQueryConfig.from(\n            options.asMap(),\n            defaultGlobalOptions,\n            hadoopConfiguration,\n            ImmutableMap.of(),\n            DEFAULT_PARALLELISM,\n            new SQLConf(),\n            SPARK_VERSION,\n            Optional.empty(), /* tableIsMandatory */\n            true);\n    assertThat(config.getTableId()).isEqualTo(TableId.of(\"dataset\", \"table\"));\n    assertThat(config.getFilter()).isEqualTo(Optional.empty());\n    assertThat(config.getSchema()).isEqualTo(Optional.empty());\n    assertThat(config.getMaxParallelism()).isEqualTo(OptionalInt.empty());\n    assertThat(config.getPreferredMinParallelism()).isEqualTo(OptionalInt.empty());\n    assertThat(config.getTemporaryGcsBucket()).isEqualTo(Optional.empty());\n    assertThat(config.getIntermediateFormat())\n        .isEqualTo(SparkBigQueryConfig.DEFAULT_INTERMEDIATE_FORMAT);\n    assertThat(config.getReadDataFormat()).isEqualTo(SparkBigQueryConfig.DEFAULT_READ_DATA_FORMAT);\n    assertThat(config.getMaterializationProject()).isEqualTo(Optional.empty());\n    assertThat(config.getMaterializationDataset()).isEqualTo(Optional.empty());\n    assertThat(config.getPartitionField()).isEqualTo(Optional.empty());\n    assertThat(config.getPartitionExpirationMs()).isEqualTo(OptionalLong.empty());\n    assertThat(config.getPartitionRequireFilter()).isEqualTo(Optional.empty());\n    assertThat(config.getPartitionType()).isEqualTo(Optional.empty());\n    assertThat(config.getPartitionRange()).isEqualTo(Optional.empty());\n    assertThat(config.getClusteredFields()).isEqualTo(Optional.empty());\n    assertThat(config.getCreateDisposition()).isEqualTo(Optional.empty());\n    assertThat(config.getLoadSchemaUpdateOptions()).isEqualTo(ImmutableList.of());\n    assertThat(config.getMaxReadRowsRetries()).isEqualTo(3);\n    assertThat(config.isUseAvroLogicalTypes()).isFalse();\n    assertThat(config.getDecimalTargetTypes()).isEmpty();\n    assertThat(config.getBigQueryClientConnectTimeout()).isEqualTo(60 * 1000);\n    assertThat(config.getBigQueryClientReadTimeout()).isEqualTo(60 * 1000);\n    assertThat(config.getBigQueryClientRetrySettings().getMaxAttempts()).isEqualTo(10);\n    assertThat(config.getArrowCompressionCodec())\n        .isEqualTo(CompressionCodec.COMPRESSION_UNSPECIFIED);\n    assertThat(config.getResponseCompressionCodec())\n        .isEqualTo(ResponseCompressionCodec.RESPONSE_COMPRESSION_CODEC_UNSPECIFIED);\n    assertThat(config.getWriteMethod()).isEqualTo(SparkBigQueryConfig.WriteMethod.INDIRECT);\n    assertThat(config.getCacheExpirationTimeInMinutes())\n        .isEqualTo(SparkBigQueryConfig.DEFAULT_CACHE_EXPIRATION_IN_MINUTES);\n    assertThat(config.getTraceId().isPresent()).isTrue();\n    assertThat(config.getTraceId().get().startsWith(\"Spark:traceApplicationName:\"));\n    assertThat(config.getBigQueryJobLabels()).isEmpty();\n    assertThat(config.getEnableModeCheckForSchemaFields()).isTrue();\n    assertThat(config.getQueryJobPriority()).isEqualTo(SparkBigQueryConfig.DEFAULT_JOB_PRIORITY);\n    assertThat(config.getKmsKeyName()).isEqualTo(Optional.empty());\n    assertThat(config.getAllowMapTypeConversion()).isTrue();\n    assertThat(config.getBigQueryJobTimeoutInMinutes()).isEqualTo(6 * 60);\n    assertThat(config.getGpn()).isEmpty();\n    assertThat(config.getSnapshotTimeMillis()).isEmpty();\n  }\n\n  @Test\n  public void testConfigFromOptions() {\n    Configuration hadoopConfiguration = new Configuration();\n    DataSourceOptions options =\n        new DataSourceOptions(\n            ImmutableMap.<String, String>builder()\n                .put(\"table\", \"test_t\")\n                .put(\"dataset\", \"test_d\")\n                .put(\"project\", \"test_p\")\n                .put(\"filter\", \"test > 0\")\n                .put(\"parentProject\", \"test_pp\")\n                .put(\"maxParallelism\", \"99\")\n                .put(\"preferredMinParallelism\", \"10\")\n                .put(\"viewsEnabled\", \"true\")\n                .put(\"viewMaterializationProject\", \"vmp\")\n                .put(\"viewMaterializationDataset\", \"vmd\")\n                .put(\"materializationExpirationTimeInMinutes\", \"100\")\n                .put(\"readDataFormat\", \"ARROW\")\n                .put(\"optimizedEmptyProjection\", \"false\")\n                .put(\"createDisposition\", \"CREATE_NEVER\")\n                .put(\"temporaryGcsBucket\", \"some_bucket\")\n                .put(\"intermediateFormat\", \"ORC\")\n                .put(\"useAvroLogicalTypes\", \"true\")\n                .put(\"decimalTargetTypes\", \"NUMERIC,BIGNUMERIC\")\n                .put(\"partitionRequireFilter\", \"true\")\n                .put(\"partitionType\", \"HOUR\")\n                .put(\"partitionField\", \"some_field\")\n                .put(\"partitionExpirationMs\", \"999\")\n                .put(\"clusteredFields\", \"field1,field2\")\n                .put(\"allowFieldAddition\", \"true\")\n                .put(\"allowFieldRelaxation\", \"true\")\n                .put(\"httpConnectTimeout\", \"10000\")\n                .put(\"httpReadTimeout\", \"20000\")\n                .put(\"httpMaxRetry\", \"5\")\n                .put(\"arrowCompressionCodec\", \"ZSTD\")\n                .put(\"responseCompressionCodec\", \"RESPONSE_COMPRESSION_CODEC_LZ4\")\n                .put(\"writeMethod\", \"direct\")\n                .put(\"cacheExpirationTimeInMinutes\", \"100\")\n                .put(\"traceJobId\", \"traceJobId\")\n                .put(\"traceApplicationName\", \"traceApplicationNameTest\")\n                .put(\"bigQueryJobLabel.foo\", \"bar\")\n                .put(\"enableModeCheckForSchemaFields\", \"false\")\n                .put(\"queryJobPriority\", \"batch\")\n                .put(\"destinationTableKmsKeyName\", \"some/key/name\")\n                .put(\"allowMapTypeConversion\", \"false\")\n                .put(\"bigQueryJobTimeoutInMinutes\", \"30\")\n                .put(\"GPN\", \"testUser\")\n                .put(\"snapshotTimeMillis\", \"123456789\")\n                .build());\n    SparkBigQueryConfig config =\n        SparkBigQueryConfig.from(\n            options.asMap(),\n            defaultGlobalOptions,\n            hadoopConfiguration,\n            ImmutableMap.of(),\n            DEFAULT_PARALLELISM,\n            new SQLConf(),\n            SPARK_VERSION,\n            Optional.empty(), /* tableIsMandatory */\n            true);\n    assertThat(config.getTableId()).isEqualTo(TableId.of(\"test_p\", \"test_d\", \"test_t\"));\n    assertThat(config.getFilter()).isEqualTo(Optional.of(\"test > 0\"));\n    assertThat(config.getSchema()).isEqualTo(Optional.empty());\n    assertThat(config.getMaxParallelism()).isEqualTo(OptionalInt.of(99));\n    assertThat(config.getPreferredMinParallelism()).isEqualTo(OptionalInt.of(10));\n    assertThat(config.getTemporaryGcsBucket()).isEqualTo(Optional.of(\"some_bucket\"));\n    assertThat(config.getIntermediateFormat())\n        .isEqualTo(SparkBigQueryConfig.IntermediateFormat.ORC);\n    assertThat(config.getReadDataFormat()).isEqualTo(DataFormat.ARROW);\n    assertThat(config.getMaterializationProject()).isEqualTo(Optional.of(\"vmp\"));\n    assertThat(config.getMaterializationDataset()).isEqualTo(Optional.of(\"vmd\"));\n    assertThat(config.getMaterializationExpirationTimeInMinutes()).isEqualTo(100);\n    assertThat(config.getPartitionType()).isEqualTo(Optional.of(TimePartitioning.Type.HOUR));\n    assertThat(config.getPartitionField()).isEqualTo(Optional.of(\"some_field\"));\n    assertThat(config.getPartitionExpirationMs()).isEqualTo(OptionalLong.of(999));\n    assertThat(config.getPartitionRequireFilter()).isEqualTo(Optional.of(true));\n    assertThat(config.getClusteredFields().get()).isEqualTo(ImmutableList.of(\"field1\", \"field2\"));\n    assertThat(config.getCreateDisposition())\n        .isEqualTo(Optional.of(JobInfo.CreateDisposition.CREATE_NEVER));\n    assertThat(config.getLoadSchemaUpdateOptions())\n        .isEqualTo(\n            ImmutableList.of(\n                JobInfo.SchemaUpdateOption.ALLOW_FIELD_ADDITION,\n                JobInfo.SchemaUpdateOption.ALLOW_FIELD_RELAXATION));\n    assertThat(config.getMaxReadRowsRetries()).isEqualTo(3);\n    assertThat(config.isUseAvroLogicalTypes()).isTrue();\n    assertThat(config.getDecimalTargetTypes()).isEqualTo(ImmutableList.of(\"NUMERIC\", \"BIGNUMERIC\"));\n    assertThat(config.getBigQueryClientConnectTimeout()).isEqualTo(10000);\n    assertThat(config.getBigQueryClientReadTimeout()).isEqualTo(20000);\n    assertThat(config.getBigQueryClientRetrySettings().getMaxAttempts()).isEqualTo(5);\n    assertThat(config.getArrowCompressionCodec()).isEqualTo(CompressionCodec.ZSTD);\n    assertThat(config.getResponseCompressionCodec())\n        .isEqualTo(ResponseCompressionCodec.RESPONSE_COMPRESSION_CODEC_LZ4);\n    assertThat(config.getWriteMethod()).isEqualTo(SparkBigQueryConfig.WriteMethod.DIRECT);\n    assertThat(config.getCacheExpirationTimeInMinutes()).isEqualTo(100);\n    assertThat(config.getTraceId())\n        .isEqualTo(Optional.of(\"Spark:traceApplicationNameTest:traceJobId\"));\n    assertThat(config.getBigQueryJobLabels()).hasSize(1);\n    assertThat(config.getBigQueryJobLabels()).containsEntry(\"foo\", \"bar\");\n    assertThat(config.getEnableModeCheckForSchemaFields()).isFalse();\n    assertThat(config.getQueryJobPriority()).isEqualTo(Priority.valueOf(\"BATCH\"));\n    assertThat(config.getKmsKeyName()).isEqualTo(Optional.of(\"some/key/name\"));\n    assertThat(config.getAllowMapTypeConversion()).isFalse();\n    assertThat(config.getBigQueryJobTimeoutInMinutes()).isEqualTo(30);\n    assertThat(config.getGpn().get()).isEqualTo(\"testUser\");\n    assertThat(config.getSnapshotTimeMillis()).hasValue(123456789L);\n    BigQueryUtil.verifySerialization(config);\n  }\n\n  @Test\n  public void testConfigFromOptions_rangePartitioning() {\n    Configuration hadoopConfiguration = new Configuration();\n    DataSourceOptions options =\n        new DataSourceOptions(\n            ImmutableMap.<String, String>builder()\n                .put(\"table\", \"test_t\")\n                .put(\"dataset\", \"test_d\")\n                .put(\"project\", \"test_p\")\n                .put(\"partitionRangeStart\", \"1\")\n                .put(\"partitionRangeEnd\", \"20\")\n                .put(\"partitionRangeInterval\", \"2\")\n                .put(\"partitionField\", \"some_field\")\n                .build());\n    SparkBigQueryConfig config =\n        SparkBigQueryConfig.from(\n            options.asMap(),\n            defaultGlobalOptions,\n            hadoopConfiguration,\n            ImmutableMap.of(),\n            DEFAULT_PARALLELISM,\n            new SQLConf(),\n            SPARK_VERSION,\n            Optional.empty(), /* tableIsMandatory */\n            true);\n    RangePartitioning.Range expectedRange =\n        RangePartitioning.Range.newBuilder().setStart(1L).setEnd(20L).setInterval(2L).build();\n    assertThat(config.getTableId()).isEqualTo(TableId.of(\"test_p\", \"test_d\", \"test_t\"));\n    assertThat(config.getPartitionRange()).isEqualTo(Optional.of(expectedRange));\n    assertThat(config.getPartitionField()).isEqualTo(Optional.of(\"some_field\"));\n  }\n\n  @Test\n  public void testCacheExpirationSetToZero() {\n    Configuration hadoopConfiguration = new Configuration();\n    DataSourceOptions options =\n        new DataSourceOptions(\n            ImmutableMap.<String, String>builder()\n                .put(\"table\", \"test_t\")\n                .put(\"dataset\", \"test_d\")\n                .put(\"project\", \"test_p\")\n                .put(\"cacheExpirationTimeInMinutes\", \"0\")\n                .build());\n    SparkBigQueryConfig config =\n        SparkBigQueryConfig.from(\n            options.asMap(),\n            defaultGlobalOptions,\n            hadoopConfiguration,\n            ImmutableMap.of(),\n            DEFAULT_PARALLELISM,\n            new SQLConf(),\n            SPARK_VERSION,\n            Optional.empty(), /* tableIsMandatory */\n            true);\n    assertThat(config.getCacheExpirationTimeInMinutes()).isEqualTo(0);\n  }\n\n  @Test\n  public void testCacheExpirationSetToNegative() {\n    Configuration hadoopConfiguration = new Configuration();\n    DataSourceOptions options =\n        new DataSourceOptions(\n            ImmutableMap.<String, String>builder()\n                .put(\"table\", \"test_t\")\n                .put(\"dataset\", \"test_d\")\n                .put(\"project\", \"test_p\")\n                .put(\"cacheExpirationTimeInMinutes\", \"-1\")\n                .build());\n\n    IllegalArgumentException exception =\n        Assert.assertThrows(\n            IllegalArgumentException.class,\n            () ->\n                SparkBigQueryConfig.from(\n                    options.asMap(),\n                    defaultGlobalOptions,\n                    hadoopConfiguration,\n                    ImmutableMap.of(),\n                    DEFAULT_PARALLELISM,\n                    new SQLConf(),\n                    SPARK_VERSION,\n                    Optional.empty(), /* tableIsMandatory */\n                    true));\n\n    assertThat(exception)\n        .hasMessageThat()\n        .contains(\n            \"cacheExpirationTimeInMinutes must have a positive value, the configured value is -1\");\n  }\n\n  @Test\n  public void testInvalidCompressionCodec() {\n    Configuration hadoopConfiguration = new Configuration();\n    DataSourceOptions options =\n        new DataSourceOptions(\n            ImmutableMap.<String, String>builder()\n                .put(\"table\", \"test_t\")\n                .put(\"dataset\", \"test_d\")\n                .put(\"project\", \"test_p\")\n                .put(\"arrowCompressionCodec\", \"randomCompression\")\n                .put(\"responseCompressionCodec\", \"randomCompression\")\n                .build());\n\n    IllegalArgumentException exception =\n        Assert.assertThrows(\n            IllegalArgumentException.class,\n            () ->\n                SparkBigQueryConfig.from(\n                    options.asMap(),\n                    defaultGlobalOptions,\n                    hadoopConfiguration,\n                    ImmutableMap.of(),\n                    DEFAULT_PARALLELISM,\n                    new SQLConf(),\n                    SPARK_VERSION,\n                    Optional.empty(), /* tableIsMandatory */\n                    true));\n\n    assertThat(exception)\n        .hasMessageThat()\n        .contains(\n            \"Compression codec 'RANDOMCOMPRESSION' for Arrow is not supported.\"\n                + \" Supported formats are \"\n                + Arrays.toString(CompressionCodec.values()));\n  }\n\n  @Test\n  public void testConfigFromGlobalOptions() {\n    Configuration hadoopConfiguration = new Configuration();\n    DataSourceOptions options =\n        new DataSourceOptions(\n            ImmutableMap.<String, String>builder().put(\"table\", \"dataset.table\").build());\n    ImmutableMap<String, String> globalOptions =\n        ImmutableMap.<String, String>builder()\n            .put(\"viewsEnabled\", \"true\")\n            .put(\"spark.datasource.bigquery.temporaryGcsBucket\", \"bucket\")\n            .put(\"bigQueryStorageGrpcEndpoint\", \"bqsge\")\n            .put(\"bigQueryHttpEndpoint\", \"bqhe\")\n            .put(\"bqEncodedCreateReadSessionRequest\", \"ec\")\n            .put(\"writeMethod\", \"direct\")\n            .putAll(defaultGlobalOptions)\n            .build();\n    SparkBigQueryConfig config =\n        SparkBigQueryConfig.from(\n            options.asMap(),\n            globalOptions,\n            hadoopConfiguration,\n            ImmutableMap.of(),\n            DEFAULT_PARALLELISM,\n            new SQLConf(),\n            SPARK_VERSION,\n            Optional.empty(), /* tableIsMandatory */\n            true);\n\n    assertThat(config.isViewsEnabled()).isTrue();\n    assertThat(config.getTemporaryGcsBucket()).isEqualTo(Optional.of(\"bucket\"));\n    assertThat(config.toReadSessionCreatorConfig().getBigQueryStorageGrpcEndpoint().get())\n        .isEqualTo(\"bqsge\");\n    assertThat(config.toReadSessionCreatorConfig().getBigQueryHttpEndpoint().get())\n        .isEqualTo(\"bqhe\");\n    assertThat(config.toReadSessionCreatorConfig().getRequestEncodedBase().get()).isEqualTo(\"ec\");\n    assertThat(config.getWriteMethod()).isEqualTo(SparkBigQueryConfig.WriteMethod.DIRECT);\n  }\n\n  @Test\n  public void testGetTableIdWithoutThePartition_PartitionExists() {\n    Configuration hadoopConfiguration = new Configuration();\n    DataSourceOptions options =\n        new DataSourceOptions(\n            ImmutableMap.of(\"table\", \"dataset.table\", \"datePartition\", \"20201010\"));\n    SparkBigQueryConfig config =\n        SparkBigQueryConfig.from(\n            options.asMap(),\n            defaultGlobalOptions,\n            hadoopConfiguration,\n            ImmutableMap.of(),\n            DEFAULT_PARALLELISM,\n            new SQLConf(),\n            SPARK_VERSION,\n            Optional.empty(), /* tableIsMandatory */\n            true);\n\n    assertThat(config.getTableId().getTable()).isEqualTo(\"table$20201010\");\n    assertThat(config.getTableIdWithoutThePartition().getTable()).isEqualTo(\"table\");\n    assertThat(config.getTableIdWithoutThePartition().getDataset())\n        .isEqualTo(config.getTableId().getDataset());\n    assertThat(config.getTableIdWithoutThePartition().getProject())\n        .isEqualTo(config.getTableId().getProject());\n  }\n\n  @Test\n  public void testGetTableIdWithoutThePartition_PartitionMissing() {\n    Configuration hadoopConfiguration = new Configuration();\n    DataSourceOptions options = new DataSourceOptions(defaultOptions);\n    SparkBigQueryConfig config =\n        SparkBigQueryConfig.from(\n            options.asMap(),\n            defaultGlobalOptions,\n            hadoopConfiguration,\n            ImmutableMap.of(),\n            DEFAULT_PARALLELISM,\n            new SQLConf(),\n            SPARK_VERSION,\n            Optional.empty(), /* tableIsMandatory */\n            true);\n\n    assertThat(config.getTableIdWithoutThePartition().getTable())\n        .isEqualTo(config.getTableId().getTable());\n    assertThat(config.getTableIdWithoutThePartition().getDataset())\n        .isEqualTo(config.getTableId().getDataset());\n    assertThat(config.getTableIdWithoutThePartition().getProject())\n        .isEqualTo(config.getTableId().getProject());\n  }\n\n  @Test\n  public void testQueryMatching() {\n    assertThat(SparkBigQueryConfig.isQuery(\"table\")).isFalse();\n    assertThat(SparkBigQueryConfig.isQuery(\"dataset.table\")).isFalse();\n    assertThat(SparkBigQueryConfig.isQuery(\"project.dataset.table\")).isFalse();\n\n    assertThat(SparkBigQueryConfig.isQuery(\"select a,b from table\")).isTrue();\n    assertThat(SparkBigQueryConfig.isQuery(\"SELECT\\n a,b\\nfrom table\")).isTrue();\n    assertThat(SparkBigQueryConfig.isQuery(\"SELECT\\ta,b from table\")).isTrue();\n    assertThat(SparkBigQueryConfig.isQuery(\"WITH bar AS (SELECT * FROM foo)\\nSELECT * FROM bar\"))\n        .isTrue();\n    assertThat(SparkBigQueryConfig.isQuery(\"select--comment\\n* from table\")).isTrue();\n    assertThat(SparkBigQueryConfig.isQuery(\"select col1 -- comment\\nfrom table\")).isTrue();\n    assertThat(SparkBigQueryConfig.isQuery(\"select col1 from table -- comment\")).isTrue();\n    assertThat(SparkBigQueryConfig.isQuery(\"# a comment\\nSELECT * from a\\nLIMIT 10\")).isTrue();\n    assertThat(SparkBigQueryConfig.isQuery(\"SELECT\\n*\\nfrom\\ntable\")).isTrue();\n    assertThat(SparkBigQueryConfig.isQuery(\"SELECT\\t*\\tfrom\\ttable\")).isTrue();\n    assertThat(SparkBigQueryConfig.isQuery(\"SELECT(COUNT(*))FROM`project.dataset.table`\")).isTrue();\n    assertThat(SparkBigQueryConfig.isQuery(\"select'asdf'\")).isTrue();\n    assertThat(SparkBigQueryConfig.isQuery(\"SELECT/**/*/**/FROM/**/table\")).isTrue();\n  }\n\n  @Test\n  public void testQueryMatchingWithSpacedTables() {\n    assertThat(SparkBigQueryConfig.isQuery(\"my table\")).isFalse();\n    assertThat(SparkBigQueryConfig.isQuery(\"dataset.my table\")).isFalse();\n    assertThat(SparkBigQueryConfig.isQuery(\"project.dataset.my table\")).isFalse();\n    assertThat(SparkBigQueryConfig.isQuery(\"project.my dataset.my table\")).isFalse();\n\n    assertThat(SparkBigQueryConfig.isQuery(\"`project.dataset.my table`\")).isFalse();\n\n    assertThat(SparkBigQueryConfig.isQuery(\"dataset.table_from_somewhere\")).isFalse();\n    assertThat(SparkBigQueryConfig.isQuery(\"dataset.show_all_unions\")).isFalse();\n\n    assertThat(SparkBigQueryConfig.isQuery(\"from\")).isFalse();\n    assertThat(SparkBigQueryConfig.isQuery(\"where\")).isFalse();\n    assertThat(SparkBigQueryConfig.isQuery(\"dataset.from\")).isFalse();\n\n    assertThat(SparkBigQueryConfig.isQuery(\"select * from `dataset.my table`\")).isTrue();\n    assertThat(\n            SparkBigQueryConfig.isQuery(\n                \"select field from `project.dataset.my table` where id > 10\"))\n        .isTrue();\n    assertThat(\n            SparkBigQueryConfig.isQuery(\n                \"WITH subset AS (SELECT * FROM `dataset.my table`)\\nSELECT * FROM subset\"))\n        .isTrue();\n\n    assertThat(SparkBigQueryConfig.isQuery(\"/* Query for marketing */ SELECT * FROM my_table\"))\n        .isTrue();\n    assertThat(SparkBigQueryConfig.isQuery(\"\\n-- Query for marketing\\nSELECT * FROM my_table\"))\n        .isTrue();\n\n    assertThat(SparkBigQueryConfig.isQuery(\"orders from 2023\")).isTrue();\n    assertThat(SparkBigQueryConfig.isQuery(\"`orders from 2023`\")).isFalse();\n    assertThat(SparkBigQueryConfig.isQuery(\"`my_project.my_dataset.sales group by product`\"))\n        .isFalse();\n  }\n\n  @Test\n  public void testJobLabelOverride() {\n    ImmutableMap<String, String> globalOptions =\n        ImmutableMap.<String, String>builder()\n            .put(\"bigQueryJobLabel.foo\", \"1\")\n            .put(\"bigQueryJobLabel.bar\", \"1\")\n            .putAll(defaultGlobalOptions)\n            .build();\n    ImmutableMap<String, String> options =\n        ImmutableMap.<String, String>builder()\n            .put(\"bigQueryJobLabel.foo\", \"2\")\n            .put(\"bigQueryJobLabel.baz\", \"2\")\n            .build();\n    Map<String, String> labels =\n        SparkBigQueryConfig.parseBigQueryLabels(globalOptions, options, BIGQUERY_JOB_LABEL_PREFIX);\n    assertThat(labels).hasSize(3);\n    assertThat(labels).containsEntry(\"foo\", \"2\");\n    assertThat(labels).containsEntry(\"bar\", \"1\");\n    assertThat(labels).containsEntry(\"baz\", \"2\");\n  }\n\n  @Test\n  public void testTableLabelOverride() {\n    ImmutableMap<String, String> globalOptions =\n        ImmutableMap.<String, String>builder()\n            .put(\"bigQueryTableLabel.foo\", \"1\")\n            .put(\"bigQueryTableLabel.bar\", \"1\")\n            .putAll(defaultGlobalOptions)\n            .build();\n    ImmutableMap<String, String> options =\n        ImmutableMap.<String, String>builder()\n            .put(\"bigQueryTableLabel.foo\", \"2\")\n            .put(\"bigQueryTableLabel.baz\", \"2\")\n            .build();\n    Map<String, String> labels =\n        SparkBigQueryConfig.parseBigQueryLabels(\n            globalOptions, options, BIGQUERY_TABLE_LABEL_PREFIX);\n    assertThat(labels).hasSize(3);\n    assertThat(labels).containsEntry(\"foo\", \"2\");\n    assertThat(labels).containsEntry(\"bar\", \"1\");\n    assertThat(labels).containsEntry(\"baz\", \"2\");\n  }\n\n  @Test\n  public void testCustomDefaults() {\n    Configuration hadoopConfiguration = new Configuration();\n    DataSourceOptions options = new DataSourceOptions(defaultOptions);\n    SparkBigQueryConfig config =\n        SparkBigQueryConfig.from(\n            options.asMap(),\n            defaultGlobalOptions,\n            hadoopConfiguration,\n            ImmutableMap.of(\"writeMethod\", \"INDIRECT\"),\n            DEFAULT_PARALLELISM,\n            new SQLConf(),\n            SPARK_VERSION,\n            Optional.empty(), /* tableIsMandatory */\n            true);\n\n    assertThat(config.getWriteMethod()).isEqualTo(SparkBigQueryConfig.WriteMethod.INDIRECT);\n  }\n\n  // ported from SparkBigQueryConfigSuite.scala\n\n  static Configuration hadoopConfiguration = new Configuration();\n\n  static {\n    hadoopConfiguration.set(\n        SparkBigQueryConfig.GCS_CONFIG_CREDENTIALS_FILE_PROPERTY, \"hadoop_cfile\");\n    hadoopConfiguration.set(SparkBigQueryConfig.GCS_CONFIG_PROJECT_ID_PROPERTY, \"hadoop_project\");\n  }\n\n  static ImmutableMap<String, String> parameters = ImmutableMap.of(\"table\", \"dataset.table\");\n  static ImmutableMap<String, String> emptyMap = ImmutableMap.of();\n  static String sparkVersion = \"2.4.0\";\n\n  private static Map<String, String> asDataSourceOptionsMap(Map<String, String> map) {\n    Map<String, String> result = new HashMap<>();\n    result.putAll(map);\n    for (Map.Entry<String, String> entry : map.entrySet()) {\n      result.put(entry.getKey().toLowerCase(Locale.US), entry.getValue());\n    }\n    return ImmutableMap.copyOf(result);\n  }\n\n  private Map<String, String> withParameter(String key, String value) {\n    return ImmutableMap.<String, String>builder().putAll(parameters).put(key, value).build();\n  }\n\n  private Map<String, String> withParameters(\n      String key1, String value1, String key2, String value2) {\n    return ImmutableMap.<String, String>builder()\n        .putAll(parameters)\n        .put(key1, value1)\n        .put(key2, value2)\n        .build();\n  }\n\n  @Test\n  public void testTakingCredentialsFileFromGcsHadoopConfig() {\n    SparkBigQueryConfig config =\n        SparkBigQueryConfig.from(\n            asDataSourceOptionsMap(parameters),\n            defaultGlobalOptions, // allConf\n            hadoopConfiguration,\n            emptyMap, // customDefaults\n            1,\n            new SQLConf(),\n            sparkVersion,\n            /* schema */ Optional.empty(),\n            /* tableIsMandatory */ true);\n    assertThat(config.getCredentialsFile()).isEqualTo(Optional.of(\"hadoop_cfile\"));\n  }\n\n  @Test\n  public void testTakingCredentialsFilefromTheProperties() {\n    SparkBigQueryConfig config =\n        SparkBigQueryConfig.from(\n            asDataSourceOptionsMap(withParameter(\"credentialsFile\", \"cfile\")),\n            defaultGlobalOptions, // allConf\n            new Configuration(),\n            emptyMap, // customDefaults\n            1,\n            new SQLConf(),\n            sparkVersion,\n            /* schema */ Optional.empty(),\n            /* tableIsMandatory */ true);\n    assertThat(config.getCredentialsFile()).isEqualTo(Optional.of(\"cfile\"));\n  }\n\n  @Test\n  public void testNoCredentialsFileIsProvided() {\n    SparkBigQueryConfig config =\n        SparkBigQueryConfig.from(\n            asDataSourceOptionsMap(parameters),\n            defaultGlobalOptions, // allConf\n            new Configuration(),\n            emptyMap, // customDefaults\n            1,\n            new SQLConf(),\n            sparkVersion,\n            /* schema */ Optional.empty(),\n            /* tableIsMandatory */ true);\n    assertThat(config.getCredentialsFile().isPresent()).isFalse();\n  }\n\n  @Test\n  public void testTakingProjectIdFromGcsHadoopConfig() {\n    SparkBigQueryConfig config =\n        SparkBigQueryConfig.from(\n            asDataSourceOptionsMap(parameters),\n            defaultGlobalOptions, // allConf\n            hadoopConfiguration,\n            emptyMap, // customDefaults\n            1,\n            new SQLConf(),\n            sparkVersion,\n            /* schema */ Optional.empty(),\n            /* tableIsMandatory */ true);\n    assertThat(config.getTableId().getProject()).isEqualTo(\"hadoop_project\");\n  }\n\n  @Test\n  public void testTakingProjectIdFromTheProperties() {\n    SparkBigQueryConfig config =\n        SparkBigQueryConfig.from(\n            asDataSourceOptionsMap(withParameter(\"project\", \"pid\")),\n            defaultGlobalOptions, // allConf\n            hadoopConfiguration,\n            emptyMap, // customDefaults\n            1,\n            new SQLConf(),\n            sparkVersion,\n            /* schema */ Optional.empty(),\n            /* tableIsMandatory */ true);\n    assertThat(config.getTableId().getProject()).isEqualTo(\"pid\");\n  }\n\n  @Test\n  public void testNoProjectIdIsProvided() {\n    SparkBigQueryConfig config =\n        SparkBigQueryConfig.from(\n            asDataSourceOptionsMap(parameters),\n            defaultGlobalOptions, // allConf\n            new Configuration(),\n            emptyMap, // customDefaults\n            1,\n            new SQLConf(),\n            sparkVersion,\n            /* schema */ Optional.empty(),\n            /* tableIsMandatory */ true);\n    assertThat(config.getTableId().getProject()).isNull();\n  }\n\n  @Test\n  public void testInvalidDataFormat() {\n    try {\n      SparkBigQueryConfig.from(\n          asDataSourceOptionsMap(withParameter(\"readDataFormat\", \"abc\")),\n          defaultGlobalOptions, // allConf\n          new Configuration(),\n          emptyMap, // customDefaults\n          1,\n          new SQLConf(),\n          sparkVersion,\n          /* schema */ Optional.empty(),\n          /* tableIsMandatory */ true);\n      fail(\"Should throw Exception\");\n    } catch (Exception e) {\n      assertThat(e.getMessage())\n          .isEqualTo(\"Data read format 'ABC' is not supported. Supported formats are 'ARROW,AVRO'\");\n    }\n  }\n\n  @Test\n  public void testDataFormatNoValueIsSet() {\n    SparkBigQueryConfig config =\n        SparkBigQueryConfig.from(\n            asDataSourceOptionsMap(parameters),\n            defaultGlobalOptions, // allConf\n            new Configuration(),\n            emptyMap, // customDefaults\n            1,\n            new SQLConf(),\n            sparkVersion,\n            /* schema */ Optional.empty(),\n            /* tableIsMandatory */ true);\n    assertThat(config.getReadDataFormat()).isEqualTo(DataFormat.ARROW);\n  }\n\n  @Test\n  public void testSetReadDataFormatAsAvro() {\n    SparkBigQueryConfig config =\n        SparkBigQueryConfig.from(\n            asDataSourceOptionsMap(withParameter(\"readDataFormat\", \"Avro\")),\n            defaultGlobalOptions, // allConf\n            new Configuration(),\n            emptyMap, // customDefaults\n            1,\n            new SQLConf(),\n            sparkVersion,\n            /* schema */ Optional.empty(),\n            /* tableIsMandatory */ true);\n    assertThat(config.getReadDataFormat()).isEqualTo(DataFormat.AVRO);\n  }\n\n  @Test\n  public void testGetAnyOptionWithFallbackOnlyNewConfigExist() {\n\n    SparkBigQueryConfig config =\n        SparkBigQueryConfig.from(\n            asDataSourceOptionsMap(withParameter(\"materializationProject\", \"foo\")),\n            defaultGlobalOptions, // allConf\n            new Configuration(),\n            emptyMap, // customDefaults\n            1,\n            new SQLConf(),\n            sparkVersion,\n            /* schema */ Optional.empty(),\n            /* tableIsMandatory */ true);\n    assertThat(config.getMaterializationProject()).isEqualTo(Optional.of(\"foo\"));\n  }\n\n  @Test\n  public void testKmsKeyPropagationToReadTableOptions() {\n    String kmsKeyName = \"projects/p/locations/l/keyRings/k/cryptoKeys/c\";\n    DataSourceOptions options =\n        new DataSourceOptions(\n            ImmutableMap.of(\"table\", \"dataset.table\", \"destinationTableKmsKeyName\", kmsKeyName));\n    SparkBigQueryConfig config =\n        SparkBigQueryConfig.from(\n            options.asMap(),\n            defaultGlobalOptions,\n            new Configuration(),\n            ImmutableMap.of(),\n            DEFAULT_PARALLELISM,\n            new SQLConf(),\n            SPARK_VERSION,\n            Optional.empty(),\n            true);\n\n    assertThat(config.getKmsKeyName()).isEqualTo(Optional.of(kmsKeyName));\n    assertThat(config.toReadTableOptions().getKmsKeyName()).isEqualTo(Optional.of(kmsKeyName));\n  }\n\n  @Test\n  public void testGetAnyOptionWithFallbackBothConfigsExist() {\n    SparkBigQueryConfig config =\n        SparkBigQueryConfig.from(\n            asDataSourceOptionsMap(\n                withParameters(\n                    \"materializationProject\", \"foo\", \"viewMaterializationProject\", \"bar\")),\n            defaultGlobalOptions, // allConf\n            new Configuration(),\n            emptyMap, // customDefaults\n            1,\n            new SQLConf(),\n            sparkVersion,\n            /* schema */ Optional.empty(),\n            /* tableIsMandatory */ true);\n    assertThat(config.getMaterializationProject()).isEqualTo(Optional.of(\"foo\"));\n  }\n\n  @Test\n  public void testGetAnyOptionWithFallbackOnlyFallbackExists() {\n    SparkBigQueryConfig config =\n        SparkBigQueryConfig.from(\n            asDataSourceOptionsMap(withParameter(\"viewMaterializationProject\", \"bar\")),\n            defaultGlobalOptions, // allConf\n            new Configuration(),\n            emptyMap, // customDefaults\n            1,\n            new SQLConf(),\n            sparkVersion,\n            /* schema */ Optional.empty(),\n            /* tableIsMandatory */ true);\n    assertThat(config.getMaterializationProject()).isEqualTo(Optional.of(\"bar\"));\n  }\n\n  @Test\n  public void testGetAnyOptionWithFallbackNoConfigExists() {\n    SparkBigQueryConfig config =\n        SparkBigQueryConfig.from(\n            asDataSourceOptionsMap(parameters),\n            defaultGlobalOptions, // allConf\n            new Configuration(),\n            emptyMap, // customDefaults\n            1,\n            new SQLConf(),\n            sparkVersion,\n            /* schema */ Optional.empty(),\n            /* tableIsMandatory */ true);\n    assertThat(config.getMaterializationProject()).isEqualTo(Optional.empty());\n  }\n\n  @Test\n  public void testMaxParallelismOnlyNewConfigExist() {\n    SparkBigQueryConfig config =\n        SparkBigQueryConfig.from(\n            asDataSourceOptionsMap(withParameter(\"maxParallelism\", \"3\")),\n            defaultGlobalOptions, // allConf\n            new Configuration(),\n            emptyMap, // customDefaults\n            1,\n            new SQLConf(),\n            sparkVersion,\n            /* schema */ Optional.empty(),\n            /* tableIsMandatory */ true);\n    assertThat(config.getMaxParallelism()).isEqualTo(OptionalInt.of(3));\n  }\n\n  @Test\n  public void testMaxParallelismBothConfigsExist() {\n    SparkBigQueryConfig config =\n        SparkBigQueryConfig.from(\n            asDataSourceOptionsMap(withParameters(\"maxParallelism\", \"3\", \"parallelism\", \"10\")),\n            defaultGlobalOptions, // allConf\n            new Configuration(),\n            emptyMap, // customDefaults\n            1,\n            new SQLConf(),\n            sparkVersion,\n            /* schema */ Optional.empty(),\n            /* tableIsMandatory */ true);\n    assertThat(config.getMaxParallelism()).isEqualTo(OptionalInt.of(3));\n  }\n\n  @Test\n  public void testMaxParallelismOnlyOldConfigExists() {\n    SparkBigQueryConfig config =\n        SparkBigQueryConfig.from(\n            asDataSourceOptionsMap(withParameter(\"parallelism\", \"10\")),\n            defaultGlobalOptions, // allConf\n            new Configuration(),\n            emptyMap, // customDefaults\n            1,\n            new SQLConf(),\n            sparkVersion,\n            /* schema */ Optional.empty(),\n            /* tableIsMandatory */ true);\n    assertThat(config.getMaxParallelism()).isEqualTo(OptionalInt.of(10));\n  }\n\n  @Test\n  public void testMaxParallelismNoConfigExists() {\n    SparkBigQueryConfig config =\n        SparkBigQueryConfig.from(\n            asDataSourceOptionsMap(parameters),\n            emptyMap, // allConf\n            new Configuration(),\n            emptyMap, // customDefaults\n            1,\n            new SQLConf(),\n            sparkVersion,\n            /* schema */ Optional.empty(),\n            /* tableIsMandatory */ true);\n    assertThat(config.getMaxParallelism()).isEqualTo(OptionalInt.empty());\n  }\n\n  @Test\n  public void testLoadSchemaUpdateOptionAllowFieldAddition() {\n    SparkBigQueryConfig config =\n        SparkBigQueryConfig.from(\n            asDataSourceOptionsMap(withParameter(\"allowFieldAddition\", \"true\")),\n            emptyMap, // allConf\n            new Configuration(),\n            emptyMap, // customDefaults\n            1,\n            new SQLConf(),\n            sparkVersion,\n            /* schema */ Optional.empty(),\n            /* tableIsMandatory */ true);\n    assertThat(config.getLoadSchemaUpdateOptions())\n        .contains(JobInfo.SchemaUpdateOption.ALLOW_FIELD_ADDITION);\n  }\n\n  @Test\n  public void testLoadSchemaUpdateOptionAllowFieldRelaxation() {\n    SparkBigQueryConfig config =\n        SparkBigQueryConfig.from(\n            asDataSourceOptionsMap(withParameter(\"allowFieldRelaxation\", \"true\")),\n            emptyMap, // allConf\n            new Configuration(),\n            emptyMap, // customDefaults\n            1,\n            new SQLConf(),\n            sparkVersion,\n            /* schema */ Optional.empty(),\n            /* tableIsMandatory */ true);\n    assertThat(config.getLoadSchemaUpdateOptions())\n        .contains(JobInfo.SchemaUpdateOption.ALLOW_FIELD_RELAXATION);\n  }\n\n  @Test\n  public void testLoadSchemaUpdateOptionBoth() {\n    SparkBigQueryConfig config =\n        SparkBigQueryConfig.from(\n            asDataSourceOptionsMap(\n                withParameters(\"allowFieldAddition\", \"true\", \"allowFieldRelaxation\", \"true\")),\n            emptyMap, // allConf\n            new Configuration(),\n            emptyMap, // customDefaults\n            1,\n            new SQLConf(),\n            sparkVersion,\n            /* schema */ Optional.empty(),\n            /* tableIsMandatory */ true);\n    assertThat(config.getLoadSchemaUpdateOptions())\n        .containsAtLeast(\n            JobInfo.SchemaUpdateOption.ALLOW_FIELD_ADDITION,\n            JobInfo.SchemaUpdateOption.ALLOW_FIELD_RELAXATION);\n  }\n\n  @Test\n  public void testLoadSchemaUpdateOptionNone() {\n    SparkBigQueryConfig config =\n        SparkBigQueryConfig.from(\n            asDataSourceOptionsMap(parameters),\n            emptyMap, // allConf\n            new Configuration(),\n            emptyMap, // customDefaults\n            1,\n            new SQLConf(),\n            sparkVersion,\n            /* schema */ Optional.empty(),\n            /* tableIsMandatory */ true);\n    assertThat(config.getLoadSchemaUpdateOptions()).isEmpty();\n  }\n\n  @Test\n  public void testNormalizeAllConf() {\n    Map<String, String> originalConf =\n        ImmutableMap.of(\n            \"key1\", \"val1\",\n            \"spark.datasource.bigquery.key2\", \"val2\",\n            \"key3\", \"val3\",\n            \"spark.datasource.bigquery.key3\", \"external val3\");\n    Map<String, String> normalizedConf = SparkBigQueryConfig.normalizeConf(originalConf);\n\n    assertThat(normalizedConf.get(\"key1\")).isEqualTo(\"val1\");\n    assertThat(normalizedConf.get(\"key2\")).isEqualTo(\"val2\");\n    assertThat(normalizedConf.get(\"key3\")).isEqualTo(\"external val3\");\n  }\n\n  @Test\n  public void testSetPersistentGcsPath() {\n    SparkBigQueryConfig config =\n        SparkBigQueryConfig.from(\n            asDataSourceOptionsMap(withParameter(\"persistentGcsPath\", \"/persistent/path\")),\n            emptyMap, // allConf\n            new Configuration(),\n            emptyMap, // customDefaults\n            1,\n            new SQLConf(),\n            sparkVersion,\n            /* schema */ Optional.empty(),\n            /* tableIsMandatory */ true);\n    assertThat(config.getPersistentGcsPath()).isEqualTo(Optional.of(\"/persistent/path\"));\n  }\n\n  @Test\n  public void testSetPersistentGcsBucket() {\n    SparkBigQueryConfig config =\n        SparkBigQueryConfig.from(\n            asDataSourceOptionsMap(withParameter(\"persistentGcsBucket\", \"foo\")),\n            emptyMap, // allConf\n            new Configuration(),\n            emptyMap, // customDefaults\n            1,\n            new SQLConf(),\n            sparkVersion,\n            /* schema */ Optional.empty(),\n            /* tableIsMandatory */ true);\n    assertThat(config.getPersistentGcsBucket()).isEqualTo(Optional.of(\"foo\"));\n  }\n\n  @Test\n  public void testSetPersistentGcsBucketWithPrefix() {\n    SparkBigQueryConfig config =\n        SparkBigQueryConfig.from(\n            asDataSourceOptionsMap(withParameter(\"persistentGcsBucket\", \"gs://foo\")),\n            emptyMap, // allConf\n            new Configuration(),\n            emptyMap, // customDefaults\n            1,\n            new SQLConf(),\n            sparkVersion,\n            /* schema */ Optional.empty(),\n            /* tableIsMandatory */ true);\n    assertThat(config.getPersistentGcsBucket()).isEqualTo(Optional.of(\"foo\"));\n  }\n\n  @Test\n  public void testSetTemporaryGcsBucket() {\n    SparkBigQueryConfig config =\n        SparkBigQueryConfig.from(\n            asDataSourceOptionsMap(withParameter(\"temporaryGcsBucket\", \"foo\")),\n            emptyMap, // allConf\n            new Configuration(),\n            emptyMap, // customDefaults\n            1,\n            new SQLConf(),\n            sparkVersion,\n            /* schema */ Optional.empty(),\n            /* tableIsMandatory */ true);\n    assertThat(config.getTemporaryGcsBucket()).isEqualTo(Optional.of(\"foo\"));\n  }\n\n  @Test\n  public void testSetTemporaryGcsBucketWithPrefix() {\n    SparkBigQueryConfig config =\n        SparkBigQueryConfig.from(\n            asDataSourceOptionsMap(withParameter(\"temporaryGcsBucket\", \"gs://foo\")),\n            emptyMap, // allConf\n            new Configuration(),\n            emptyMap, // customDefaults\n            1,\n            new SQLConf(),\n            sparkVersion,\n            /* schema */ Optional.empty(),\n            /* tableIsMandatory */ true);\n    assertThat(config.getTemporaryGcsBucket()).isEqualTo(Optional.of(\"foo\"));\n  }\n\n  @Test\n  public void testBqChannelPoolSize() {\n    SparkBigQueryConfig config =\n        SparkBigQueryConfig.from(\n            asDataSourceOptionsMap(withParameter(\"bqChannelPoolSize\", \"4\")),\n            emptyMap, // allConf\n            new Configuration(),\n            emptyMap, // customDefaults,\n            1,\n            new SQLConf(),\n            sparkVersion,\n            /* schema */ Optional.empty(),\n            /* tableIsMandatory */ true);\n    assertThat(config.getChannelPoolSize()).isEqualTo(4);\n  }\n\n  @Test\n  public void testBqFlowControWindow() {\n    SparkBigQueryConfig config =\n        SparkBigQueryConfig.from(\n            asDataSourceOptionsMap(withParameter(\"bqFlowControlWindowBytes\", \"12345\")),\n            emptyMap, // allConf\n            new Configuration(),\n            emptyMap, // customDefaults\n            1,\n            new SQLConf(),\n            sparkVersion,\n            /* schema */ Optional.empty(),\n            /* tableIsMandatory */ true);\n    assertThat(config.getFlowControlWindowBytes()).isEqualTo(Optional.of(12345));\n  }\n\n  @Test\n  public void testBadCredentials() {\n    SparkBigQueryConfig config =\n        SparkBigQueryConfig.from(\n            asDataSourceOptionsMap(\n                withParameter(\n                    \"credentials\",\n                    Base64.getEncoder().encodeToString(\"{}\".getBytes(StandardCharsets.UTF_8)))),\n            emptyMap, // allConf\n            new Configuration(),\n            emptyMap, // customDefaults\n            1,\n            new SQLConf(),\n            sparkVersion,\n            /* schema */ Optional.empty(),\n            /* tableIsMandatory */ true);\n\n    Exception e = assertThrows(Exception.class, () -> config.createCredentials());\n    assertThat(e.getMessage()).contains(\"Failed to create Credentials from key\");\n  }\n\n  @Test\n  public void testImpersonationGlobal() {\n    String sa = \"abc@example.iam.gserviceaccount.com\";\n    SparkBigQueryConfig config =\n        SparkBigQueryConfig.from(\n            asDataSourceOptionsMap(withParameter(\"gcpImpersonationServiceAccount\", sa)),\n            emptyMap, // allConf\n            new Configuration(),\n            emptyMap, // customDefaults\n            1,\n            new SQLConf(),\n            sparkVersion,\n            /* schema */ Optional.empty(),\n            /* tableIsMandatory */ true);\n\n    ImpersonatedCredentials credentials = (ImpersonatedCredentials) config.createCredentials();\n    assertThat(credentials.getAccount()).isEqualTo(sa);\n  }\n\n  @Test\n  public void testImpersonationGlobalForUser() {\n    String user = \"bob\";\n    String sa = \"bob@example.iam.gserviceaccount.com\";\n    UserGroupInformation ugi = UserGroupInformation.createRemoteUser(user);\n    ugi.doAs(\n        (java.security.PrivilegedAction<Void>)\n            () -> {\n              SparkBigQueryConfig config =\n                  SparkBigQueryConfig.from(\n                      asDataSourceOptionsMap(\n                          withParameter(\"gcpImpersonationServiceAccountForUser.\" + user, sa)),\n                      emptyMap, // allConf\n                      new Configuration(),\n                      emptyMap, // customDefaults\n                      1,\n                      new SQLConf(),\n                      sparkVersion,\n                      /* schema */ Optional.empty(),\n                      /* tableIsMandatory */ true);\n\n              ImpersonatedCredentials credentials =\n                  (ImpersonatedCredentials) config.createCredentials();\n              assertThat(credentials.getAccount()).isEqualTo(sa);\n              return null;\n            });\n  }\n\n  @Test\n  public void testImpersonationGlobalForGroup() {\n    String user = \"bob\";\n    String[] groups = new String[] {\"datascience\"};\n    String sa = \"datascience-team@example.iam.gserviceaccount.com\";\n    UserGroupInformation ugi = UserGroupInformation.createUserForTesting(user, groups);\n    ugi.doAs(\n        (java.security.PrivilegedAction<Void>)\n            () -> {\n              SparkBigQueryConfig config =\n                  SparkBigQueryConfig.from(\n                      asDataSourceOptionsMap(\n                          withParameter(\"gcpImpersonationServiceAccountForGroup.\" + groups[0], sa)),\n                      emptyMap, // allConf\n                      new Configuration(),\n                      emptyMap, // customDefaults\n                      1,\n                      new SQLConf(),\n                      sparkVersion,\n                      /* schema */ Optional.empty(),\n                      /* tableIsMandatory */ true);\n\n              ImpersonatedCredentials credentials =\n                  (ImpersonatedCredentials) config.createCredentials();\n              assertThat(credentials.getAccount()).isEqualTo(sa);\n              return null;\n            });\n  }\n\n  @Test\n  public void testMissingAvroMessage() {\n    Exception cause = new Exception(\"test\");\n    IllegalStateException before24 =\n        SparkBigQueryConfig.IntermediateFormat.missingAvroException(\"2.3.5\", cause);\n    assertThat(before24.getMessage()).contains(\"com.databricks:spark-avro_2.11:4.0.0\");\n    IllegalStateException after24 =\n        SparkBigQueryConfig.IntermediateFormat.missingAvroException(\"2.4.8\", cause);\n    assertThat(after24.getMessage()).contains(\"org.apache.spark:spark-avro_2.13:2.4.8\");\n  }\n\n  @Test\n  public void testEnableListInferenceWithDefaultIntermediateFormat() {\n    SparkBigQueryConfig config =\n        SparkBigQueryConfig.from(\n            asDataSourceOptionsMap(withParameter(\"enableListInference\", \"true\")),\n            emptyMap, // allConf\n            new Configuration(),\n            emptyMap, // customDefaults\n            1,\n            new SQLConf(),\n            sparkVersion,\n            /* schema */ Optional.empty(),\n            /* tableIsMandatory */ true);\n    assertThat(config.getIntermediateFormat())\n        .isEqualTo(SparkBigQueryConfig.IntermediateFormat.PARQUET_LIST_INFERENCE_ENABLED);\n  }\n\n  @Test\n  public void testSystemBucketAsDefaultTemporaryGcsBucket() {\n    Configuration hadoopConfiguration = new Configuration();\n    hadoopConfiguration.set(\"fs.gs.system.bucket\", \"foo\");\n    SparkBigQueryConfig config =\n        SparkBigQueryConfig.from(\n            asDataSourceOptionsMap(defaultOptions),\n            emptyMap, // allConf\n            hadoopConfiguration,\n            emptyMap, // customDefaults\n            1,\n            new SQLConf(),\n            sparkVersion,\n            /* schema */ Optional.empty(),\n            /* tableIsMandatory */ true);\n    assertThat(config.getTemporaryGcsBucket()).hasValue(\"foo\");\n  }\n\n  @Test\n  public void testLoadFromQueryConfig() {\n    SparkBigQueryConfig config =\n        SparkBigQueryConfig.from(\n            asDataSourceOptionsMap(\n                ImmutableMap.of( //\n                    \"query\", \"SELECT * FROM foo\", //\n                    \"materializationDataset\", \"materializationDataset\" //\n                    )),\n            emptyMap, // allConf\n            new Configuration(),\n            emptyMap, // customDefaults\n            1,\n            new SQLConf(),\n            sparkVersion,\n            /* schema */ Optional.empty(),\n            /* tableIsMandatory */ true);\n    assertThat(config.getTableId()).isNotNull();\n    assertThat(config.getTableId().getTable()).isEqualTo(\"QUERY\");\n  }\n\n  @Test\n  public void testCatalogProjectId() {\n    Map<String, String> optionsWithProject = new HashMap<>();\n    optionsWithProject.put(\"projectId\", \"my-catalog-project\");\n    optionsWithProject.put(\"table\", \"dataset.table\");\n\n    SparkBigQueryConfig configWithProject =\n        SparkBigQueryConfig.from(\n            optionsWithProject,\n            defaultGlobalOptions,\n            new Configuration(),\n            ImmutableMap.of(),\n            DEFAULT_PARALLELISM,\n            new SQLConf(),\n            SPARK_VERSION,\n            Optional.empty(),\n            true);\n\n    assertThat(configWithProject.getCatalogProjectId()).hasValue(\"my-catalog-project\");\n\n    SparkBigQueryConfig configWithoutProject =\n        SparkBigQueryConfig.from(\n            defaultOptions,\n            defaultGlobalOptions,\n            new Configuration(),\n            ImmutableMap.of(),\n            DEFAULT_PARALLELISM,\n            new SQLConf(),\n            SPARK_VERSION,\n            Optional.empty(),\n            true);\n\n    assertThat(configWithoutProject.getCatalogProjectId()).isEmpty();\n  }\n\n  @Test\n  public void testCatalogLocation() {\n    Map<String, String> optionsWithLocation = new HashMap<>();\n    optionsWithLocation.put(\"bigquery_location\", \"US\");\n    optionsWithLocation.put(\"table\", \"dataset.table\");\n\n    SparkBigQueryConfig configWithLocation =\n        SparkBigQueryConfig.from(\n            optionsWithLocation,\n            defaultGlobalOptions,\n            new Configuration(),\n            ImmutableMap.of(),\n            DEFAULT_PARALLELISM,\n            new SQLConf(),\n            SPARK_VERSION,\n            Optional.empty(),\n            true);\n\n    assertThat(configWithLocation.getCatalogLocation()).hasValue(\"US\");\n\n    SparkBigQueryConfig configWithoutLocation =\n        SparkBigQueryConfig.from(\n            defaultOptions,\n            defaultGlobalOptions,\n            new Configuration(),\n            ImmutableMap.of(),\n            DEFAULT_PARALLELISM,\n            new SQLConf(),\n            SPARK_VERSION,\n            Optional.empty(),\n            true);\n\n    assertThat(configWithoutLocation.getCatalogLocation()).isEmpty();\n  }\n\n  @Test\n  public void testCatalogProjectIdAndLocation() {\n    Map<String, String> optionsWithProjectAndLocation = new HashMap<>();\n    optionsWithProjectAndLocation.put(\"projectId\", \"my-catalog-project\");\n    optionsWithProjectAndLocation.put(\"bigquery_location\", \"EU\");\n    optionsWithProjectAndLocation.put(\"table\", \"dataset.table\");\n\n    SparkBigQueryConfig config =\n        SparkBigQueryConfig.from(\n            optionsWithProjectAndLocation,\n            defaultGlobalOptions,\n            new Configuration(),\n            ImmutableMap.of(),\n            DEFAULT_PARALLELISM,\n            new SQLConf(),\n            SPARK_VERSION,\n            Optional.empty(),\n            true);\n\n    assertThat(config.getCatalogProjectId()).hasValue(\"my-catalog-project\");\n    assertThat(config.getCatalogLocation()).hasValue(\"EU\");\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/SparkBigQueryProxyAndHttpConfigTest.java",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery;\n\nimport static com.google.common.truth.Truth.assertThat;\nimport static org.junit.Assert.assertThrows;\n\nimport com.google.api.client.http.apache.v2.ApacheHttpTransport;\nimport com.google.api.core.ApiFunction;\nimport com.google.auth.http.HttpTransportFactory;\nimport com.google.cloud.bigquery.connector.common.BigQueryProxyTransporterBuilder;\nimport com.google.common.collect.ImmutableMap;\nimport io.grpc.ManagedChannelBuilder;\nimport java.io.ByteArrayOutputStream;\nimport java.io.IOException;\nimport java.io.ObjectOutputStream;\nimport java.net.URI;\nimport java.net.URISyntaxException;\nimport java.util.*;\nimport org.apache.hadoop.conf.Configuration;\nimport org.apache.spark.sql.internal.SQLConf;\nimport org.junit.Test;\n\npublic class SparkBigQueryProxyAndHttpConfigTest {\n\n  private final ImmutableMap<String, String> defaultOptions =\n      ImmutableMap.<String, String>builder()\n          .put(\"proxyAddress\", \"http://bq-connector-host:1234\")\n          .put(\"proxyUsername\", \"bq-connector-user\")\n          .put(\"proxyPassword\", \"bq-connector-password\")\n          .put(\"httpMaxRetry\", \"10\")\n          .put(\"httpConnectTimeout\", \"10000\")\n          .put(\"httpReadTimeout\", \"20000\")\n          .build();\n\n  private final ImmutableMap<String, String> defaultGlobalOptions =\n      ImmutableMap.<String, String>builder()\n          .put(\"spark.datasource.bigquery.proxyAddress\", \"http://bq-connector-host-global:1234\")\n          .put(\"spark.datasource.bigquery.proxyUsername\", \"bq-connector-user-global\")\n          .put(\"spark.datasource.bigquery.proxyPassword\", \"bq-connector-password-global\")\n          .put(\"spark.datasource.bigquery.httpMaxRetry\", \"20\")\n          .put(\"spark.datasource.bigquery.httpConnectTimeout\", \"20000\")\n          .put(\"spark.datasource.bigquery.httpReadTimeout\", \"30000\")\n          .build();\n\n  private final Configuration defaultHadoopConfiguration = getHadoopConfiguration();\n\n  private Configuration getHadoopConfiguration() {\n    Configuration hadoopConfiguration = new Configuration();\n    hadoopConfiguration.set(\"fs.gs.proxy.address\", \"http://bq-connector-host-hadoop:1234\");\n    hadoopConfiguration.set(\"fs.gs.proxy.username\", \"bq-connector-user-hadoop\");\n    hadoopConfiguration.set(\"fs.gs.proxy.password\", \"bq-connector-password-hadoop\");\n    hadoopConfiguration.set(\"fs.gs.http.max.retry\", \"30\");\n    hadoopConfiguration.set(\"fs.gs.http.connect-timeout\", \"30000\");\n    hadoopConfiguration.set(\"fs.gs.http.read-timeout\", \"40000\");\n    return hadoopConfiguration;\n  }\n\n  private static final Optional<URI> optionalProxyURI =\n      Optional.of(URI.create(\"http://bq-connector-transporter-builder-host:1234\"));\n  private static final Optional<String> optionalProxyUserName =\n      Optional.of(\"transporter-builder-user\");\n  private static final Optional<String> optionalProxyPassword =\n      Optional.of(\"transporter-builder-password\");\n\n  @Test\n  public void testSerializability() throws IOException {\n    DataSourceOptions options = new DataSourceOptions(defaultOptions);\n    // test to make sure all members can be serialized.\n    new ObjectOutputStream(new ByteArrayOutputStream())\n        .writeObject(\n            SparkBigQueryProxyAndHttpConfig.from(\n                options.asMap(), defaultGlobalOptions, defaultHadoopConfiguration));\n  }\n\n  @Test\n  public void testConfigFromOptions() throws URISyntaxException {\n    Configuration emptyHadoopConfiguration = new Configuration();\n    DataSourceOptions options = new DataSourceOptions(defaultOptions);\n    SparkBigQueryProxyAndHttpConfig config =\n        SparkBigQueryProxyAndHttpConfig.from(\n            options.asMap(),\n            ImmutableMap.of(), // empty globalOptions\n            emptyHadoopConfiguration);\n\n    assertThat(config.getProxyUri())\n        .isEqualTo(Optional.of(getURI(\"http\", \"bq-connector-host\", 1234)));\n    assertThat(config.getProxyUsername()).isEqualTo(Optional.of(\"bq-connector-user\"));\n    assertThat(config.getProxyPassword()).isEqualTo(Optional.of(\"bq-connector-password\"));\n    assertThat(config.getHttpMaxRetry()).isEqualTo(Optional.of(10));\n    assertThat(config.getHttpConnectTimeout()).isEqualTo(Optional.of(10000));\n    assertThat(config.getHttpReadTimeout()).isEqualTo(Optional.of(20000));\n  }\n\n  @Test\n  public void testConfigFromGlobalOptions() throws URISyntaxException {\n    Configuration emptyHadoopConfiguration = new Configuration();\n    ImmutableMap<String, String> globalOptions =\n        SparkBigQueryConfig.normalizeConf(defaultGlobalOptions);\n    SparkBigQueryProxyAndHttpConfig config =\n        SparkBigQueryProxyAndHttpConfig.from(\n            ImmutableMap.of(), // empty options\n            globalOptions,\n            emptyHadoopConfiguration);\n\n    assertThat(config.getProxyUri())\n        .isEqualTo(Optional.of(getURI(\"http\", \"bq-connector-host-global\", 1234)));\n    assertThat(config.getProxyUsername()).isEqualTo(Optional.of(\"bq-connector-user-global\"));\n    assertThat(config.getProxyPassword()).isEqualTo(Optional.of(\"bq-connector-password-global\"));\n    assertThat(config.getHttpMaxRetry()).isEqualTo(Optional.of(20));\n    assertThat(config.getHttpConnectTimeout()).isEqualTo(Optional.of(20000));\n    assertThat(config.getHttpReadTimeout()).isEqualTo(Optional.of(30000));\n  }\n\n  @Test\n  public void testConfigFromHadoopConfigurationOptions() throws URISyntaxException {\n    SparkBigQueryProxyAndHttpConfig config =\n        SparkBigQueryProxyAndHttpConfig.from(\n            ImmutableMap.of(), // empty options\n            ImmutableMap.of(), // empty global options\n            defaultHadoopConfiguration);\n\n    assertThat(config.getProxyUri())\n        .isEqualTo(Optional.of(getURI(\"http\", \"bq-connector-host-hadoop\", 1234)));\n    assertThat(config.getProxyUsername()).isEqualTo(Optional.of(\"bq-connector-user-hadoop\"));\n    assertThat(config.getProxyPassword()).isEqualTo(Optional.of(\"bq-connector-password-hadoop\"));\n    assertThat(config.getHttpMaxRetry()).isEqualTo(Optional.of(30));\n    assertThat(config.getHttpConnectTimeout()).isEqualTo(Optional.of(30000));\n    assertThat(config.getHttpReadTimeout()).isEqualTo(Optional.of(40000));\n  }\n\n  @Test\n  public void testConfigWithAllThreeParameters() throws URISyntaxException {\n    DataSourceOptions options = new DataSourceOptions(defaultOptions);\n    ImmutableMap<String, String> globalOptions =\n        SparkBigQueryConfig.normalizeConf(defaultGlobalOptions);\n    SparkBigQueryProxyAndHttpConfig config =\n        SparkBigQueryProxyAndHttpConfig.from(\n            options.asMap(), globalOptions, defaultHadoopConfiguration);\n\n    assertThat(config.getProxyUri())\n        .isEqualTo(Optional.of(getURI(\"http\", \"bq-connector-host\", 1234)));\n    assertThat(config.getProxyUsername()).isEqualTo(Optional.of(\"bq-connector-user\"));\n    assertThat(config.getProxyPassword()).isEqualTo(Optional.of(\"bq-connector-password\"));\n    assertThat(config.getHttpMaxRetry()).isEqualTo(Optional.of(10));\n    assertThat(config.getHttpConnectTimeout()).isEqualTo(Optional.of(10000));\n    assertThat(config.getHttpReadTimeout()).isEqualTo(Optional.of(20000));\n  }\n\n  @Test\n  public void testConfigWithGlobalParametersAndHadoopConfig() throws URISyntaxException {\n    ImmutableMap<String, String> globalOptions =\n        SparkBigQueryConfig.normalizeConf(defaultGlobalOptions);\n    SparkBigQueryProxyAndHttpConfig config =\n        SparkBigQueryProxyAndHttpConfig.from(\n            ImmutableMap.of(), // empty options\n            globalOptions,\n            defaultHadoopConfiguration);\n\n    assertThat(config.getProxyUri())\n        .isEqualTo(Optional.of(getURI(\"http\", \"bq-connector-host-global\", 1234)));\n    assertThat(config.getProxyUsername()).isEqualTo(Optional.of(\"bq-connector-user-global\"));\n    assertThat(config.getProxyPassword()).isEqualTo(Optional.of(\"bq-connector-password-global\"));\n    assertThat(config.getHttpMaxRetry()).isEqualTo(Optional.of(20));\n    assertThat(config.getHttpConnectTimeout()).isEqualTo(Optional.of(20000));\n    assertThat(config.getHttpReadTimeout()).isEqualTo(Optional.of(30000));\n  }\n\n  @Test\n  public void testConfigViaSparkBigQueryConfigWithAllThreeParameters() throws URISyntaxException {\n    HashMap<String, String> sparkConfigOptions = new HashMap<>(defaultOptions);\n    sparkConfigOptions.put(\"table\", \"dataset.table\");\n    ImmutableMap<String, String> globalOptions =\n        SparkBigQueryConfig.normalizeConf(defaultGlobalOptions);\n    DataSourceOptions options = new DataSourceOptions(sparkConfigOptions);\n    SparkBigQueryConfig sparkConfig =\n        SparkBigQueryConfig.from(\n            options.asMap(),\n            globalOptions,\n            defaultHadoopConfiguration,\n            ImmutableMap.of(),\n            10,\n            new SQLConf(),\n            \"2.4.0\",\n            Optional.empty(), /* tableIsMandatory */\n            true);\n\n    SparkBigQueryProxyAndHttpConfig config =\n        (SparkBigQueryProxyAndHttpConfig) sparkConfig.getBigQueryProxyConfig();\n\n    assertThat(config.getProxyUri())\n        .isEqualTo(Optional.of(getURI(\"http\", \"bq-connector-host\", 1234)));\n    assertThat(config.getProxyUsername()).isEqualTo(Optional.of(\"bq-connector-user\"));\n    assertThat(config.getProxyPassword()).isEqualTo(Optional.of(\"bq-connector-password\"));\n    assertThat(config.getHttpMaxRetry()).isEqualTo(Optional.of(10));\n    assertThat(config.getHttpConnectTimeout()).isEqualTo(Optional.of(10000));\n    assertThat(config.getHttpReadTimeout()).isEqualTo(Optional.of(20000));\n  }\n\n  @Test\n  public void testConfigViaSparkBigQueryConfigWithGlobalOptionsAndHadoopConfiguration()\n      throws URISyntaxException {\n    HashMap<String, String> sparkConfigOptions = new HashMap<>();\n    sparkConfigOptions.put(\"table\", \"dataset.table\");\n    ImmutableMap<String, String> globalOptions =\n        SparkBigQueryConfig.normalizeConf(defaultGlobalOptions);\n    DataSourceOptions options = new DataSourceOptions(sparkConfigOptions);\n    SparkBigQueryConfig sparkConfig =\n        SparkBigQueryConfig.from(\n            options.asMap(), // contains only one key \"table\"\n            globalOptions,\n            defaultHadoopConfiguration,\n            ImmutableMap.of(),\n            10,\n            new SQLConf(),\n            \"2.4.0\",\n            Optional.empty(), /* tableIsMandatory */\n            true);\n\n    SparkBigQueryProxyAndHttpConfig config =\n        (SparkBigQueryProxyAndHttpConfig) sparkConfig.getBigQueryProxyConfig();\n\n    assertThat(config.getProxyUri())\n        .isEqualTo(Optional.of(getURI(\"http\", \"bq-connector-host-global\", 1234)));\n    assertThat(config.getProxyUsername()).isEqualTo(Optional.of(\"bq-connector-user-global\"));\n    assertThat(config.getProxyPassword()).isEqualTo(Optional.of(\"bq-connector-password-global\"));\n    assertThat(config.getHttpMaxRetry()).isEqualTo(Optional.of(20));\n    assertThat(config.getHttpConnectTimeout()).isEqualTo(Optional.of(20000));\n    assertThat(config.getHttpReadTimeout()).isEqualTo(Optional.of(30000));\n  }\n\n  @Test\n  public void testConfigViaSparkBigQueryConfigWithHadoopConfiguration() throws URISyntaxException {\n    HashMap<String, String> sparkConfigOptions = new HashMap<>();\n    sparkConfigOptions.put(\"table\", \"dataset.table\");\n    DataSourceOptions options = new DataSourceOptions(sparkConfigOptions);\n    SparkBigQueryConfig sparkConfig =\n        SparkBigQueryConfig.from(\n            options.asMap(), // contains only one key \"table\"\n            ImmutableMap.of(), // empty global options,\n            defaultHadoopConfiguration,\n            ImmutableMap.of(),\n            10,\n            new SQLConf(),\n            \"2.4.0\",\n            Optional.empty(), /* tableIsMandatory */\n            true);\n\n    SparkBigQueryProxyAndHttpConfig config =\n        (SparkBigQueryProxyAndHttpConfig) sparkConfig.getBigQueryProxyConfig();\n\n    assertThat(config.getProxyUri())\n        .isEqualTo(Optional.of(getURI(\"http\", \"bq-connector-host-hadoop\", 1234)));\n    assertThat(config.getProxyUsername()).isEqualTo(Optional.of(\"bq-connector-user-hadoop\"));\n    assertThat(config.getProxyPassword()).isEqualTo(Optional.of(\"bq-connector-password-hadoop\"));\n    assertThat(config.getHttpMaxRetry()).isEqualTo(Optional.of(30));\n    assertThat(config.getHttpConnectTimeout()).isEqualTo(Optional.of(30000));\n    assertThat(config.getHttpReadTimeout()).isEqualTo(Optional.of(40000));\n  }\n\n  @Test\n  public void testWhenProxyIsNotSetAndUserNamePasswordAreNotNull() {\n    ImmutableMap<String, String> optionsMap =\n        ImmutableMap.<String, String>builder()\n            .put(\"proxyUsername\", \"bq-connector-user\")\n            .put(\"proxyPassword\", \"bq-connector-password\")\n            .build();\n\n    Configuration emptyHadoopConfiguration = new Configuration();\n    DataSourceOptions options = new DataSourceOptions(optionsMap);\n\n    IllegalArgumentException exception =\n        assertThrows(\n            IllegalArgumentException.class,\n            () ->\n                SparkBigQueryProxyAndHttpConfig.from(\n                    options.asMap(), ImmutableMap.of(), emptyHadoopConfiguration));\n\n    assertThat(exception)\n        .hasMessageThat()\n        .contains(\n            \"Please set proxyAddress in order to use a proxy. \"\n                + \"Setting proxyUsername or proxyPassword is not enough\");\n  }\n\n  @Test\n  public void testWhenProxyIsSetAndUserNameIsNull() {\n    ImmutableMap<String, String> optionsMap =\n        ImmutableMap.<String, String>builder()\n            .put(\"proxyAddress\", \"http://bq-connector-host:1234\")\n            .put(\"proxyPassword\", \"bq-connector-password\")\n            .build();\n\n    Configuration emptyHadoopConfiguration = new Configuration();\n    DataSourceOptions options = new DataSourceOptions(optionsMap);\n\n    IllegalArgumentException exception =\n        assertThrows(\n            IllegalArgumentException.class,\n            () ->\n                SparkBigQueryProxyAndHttpConfig.from(\n                    options.asMap(), ImmutableMap.of(), emptyHadoopConfiguration));\n\n    assertThat(exception)\n        .hasMessageThat()\n        .contains(\"Both proxyUsername and proxyPassword should be defined or not defined together\");\n  }\n\n  @Test\n  public void testWhenProxyIsSetAndPasswordIsNull() {\n    ImmutableMap<String, String> optionsMap =\n        ImmutableMap.<String, String>builder()\n            .put(\"proxyAddress\", \"http://bq-connector-host:1234\")\n            .put(\"proxyUsername\", \"bq-connector-user\")\n            .build();\n\n    Configuration emptyHadoopConfiguration = new Configuration();\n    DataSourceOptions options = new DataSourceOptions(optionsMap);\n\n    IllegalArgumentException exception =\n        assertThrows(\n            IllegalArgumentException.class,\n            () ->\n                SparkBigQueryProxyAndHttpConfig.from(\n                    options.asMap(), ImmutableMap.of(), emptyHadoopConfiguration));\n\n    assertThat(exception)\n        .hasMessageThat()\n        .contains(\"Both proxyUsername and proxyPassword should be defined or not defined together\");\n  }\n\n  @Test\n  public void testParseProxyAddress() throws Exception {\n    // map of input string v/s expected return\n    HashMap<String, URI> inputOutputMap = new HashMap<>();\n    inputOutputMap.put(\"bq-connector-host:1234\", getURI(null, \"bq-connector-host\", 1234));\n    inputOutputMap.put(\"http://bq-connector-host:1234\", getURI(\"http\", \"bq-connector-host\", 1234));\n    inputOutputMap.put(\n        \"https://bq-connector-host:1234\", getURI(\"https\", \"bq-connector-host\", 1234));\n\n    for (Map.Entry<String, URI> entry : inputOutputMap.entrySet()) {\n      String address = entry.getKey();\n      URI expectedUri = entry.getValue();\n      URI uri = SparkBigQueryProxyAndHttpConfig.parseProxyAddress(address);\n      assertThat(uri).isEqualTo(expectedUri);\n    }\n  }\n\n  @Test\n  public void testParseProxyAddressIllegalPath() {\n    ArrayList<String> addresses = new ArrayList<>();\n    addresses.add(\"bq-connector-host-with-illegal-char^:1234\");\n    addresses.add(\"bq-connector-host:1234/some/path\");\n\n    for (String address : addresses) {\n      IllegalArgumentException exception =\n          assertThrows(\n              IllegalArgumentException.class,\n              () -> SparkBigQueryProxyAndHttpConfig.parseProxyAddress(address));\n      assertThat(exception)\n          .hasMessageThat()\n          .isEqualTo(String.format(\"Invalid proxy address '%s'.\", address));\n    }\n  }\n\n  @Test\n  public void testParseProxyAddressNoPort() {\n    ArrayList<String> addresses = new ArrayList<>();\n    addresses.add(\"bq-connector-host\");\n    addresses.add(\"http://bq-connector-host\");\n    addresses.add(\"https://bq-connector-host\");\n\n    for (String address : addresses) {\n      IllegalArgumentException exception =\n          assertThrows(\n              IllegalArgumentException.class,\n              () -> SparkBigQueryProxyAndHttpConfig.parseProxyAddress(address));\n      assertThat(exception)\n          .hasMessageThat()\n          .isEqualTo(String.format(\"Proxy address '%s' has no port.\", address));\n    }\n  }\n\n  @Test\n  public void testParseProxyAddressWrongScheme() {\n    ArrayList<String> addresses = new ArrayList<>();\n    addresses.add(\"socks5://bq-connector-host:1234\");\n    addresses.add(\"htt://bq-connector-host:1234\"); // a missing p in http\n\n    for (String address : addresses) {\n      IllegalArgumentException exception =\n          assertThrows(\n              IllegalArgumentException.class,\n              () -> SparkBigQueryProxyAndHttpConfig.parseProxyAddress(address));\n      assertThat(exception)\n          .hasMessageThat()\n          .contains(String.format(\"Proxy address '%s' has invalid scheme\", address));\n    }\n  }\n\n  @Test\n  public void testParseProxyAddressNoHost() {\n    String address = \":1234\";\n\n    IllegalArgumentException exception =\n        assertThrows(\n            IllegalArgumentException.class,\n            () -> SparkBigQueryProxyAndHttpConfig.parseProxyAddress(address));\n\n    assertThat(exception)\n        .hasMessageThat()\n        .isEqualTo(String.format(\"Proxy address '%s' has no host.\", address));\n  }\n\n  private URI getURI(String scheme, String host, int port) throws URISyntaxException {\n    return new URI(scheme, null, host, port, null, null, null);\n  }\n\n  @Test\n  public void testBigQueryProxyTransporterBuilder() {\n    ApiFunction<ManagedChannelBuilder, ManagedChannelBuilder> apiFunction =\n        BigQueryProxyTransporterBuilder.createGrpcChannelConfigurator(\n            optionalProxyURI, optionalProxyUserName, optionalProxyPassword);\n\n    assertThat(apiFunction.apply(ManagedChannelBuilder.forTarget(\"test-target\")))\n        .isInstanceOf(ManagedChannelBuilder.class);\n\n    HttpTransportFactory httpTransportFactory =\n        BigQueryProxyTransporterBuilder.createHttpTransportFactory(\n            optionalProxyURI, optionalProxyUserName, optionalProxyPassword);\n\n    assertThat(httpTransportFactory.create()).isInstanceOf(ApacheHttpTransport.class);\n  }\n\n  @Test\n  public void testBigQueryProxyTransporterBuilderWithErrors() {\n    IllegalArgumentException exceptionWithPasswordHttp =\n        assertThrows(\n            IllegalArgumentException.class,\n            () ->\n                BigQueryProxyTransporterBuilder.createHttpTransportFactory(\n                    optionalProxyURI, Optional.empty(), optionalProxyPassword));\n\n    IllegalArgumentException exceptionWithUserNameHttp =\n        assertThrows(\n            IllegalArgumentException.class,\n            () ->\n                BigQueryProxyTransporterBuilder.createHttpTransportFactory(\n                    optionalProxyURI, optionalProxyUserName, Optional.empty()));\n\n    IllegalArgumentException exceptionWithPasswordGrpc =\n        assertThrows(\n            IllegalArgumentException.class,\n            () ->\n                BigQueryProxyTransporterBuilder.createGrpcChannelConfigurator(\n                    optionalProxyURI, Optional.empty(), optionalProxyPassword));\n\n    IllegalArgumentException exceptionWithUserNameGrpc =\n        assertThrows(\n            IllegalArgumentException.class,\n            () ->\n                BigQueryProxyTransporterBuilder.createGrpcChannelConfigurator(\n                    optionalProxyURI, optionalProxyUserName, Optional.empty()));\n\n    Arrays.asList(\n            exceptionWithPasswordHttp,\n            exceptionWithUserNameHttp,\n            exceptionWithPasswordGrpc,\n            exceptionWithUserNameGrpc)\n        .stream()\n        .forEach(\n            exception ->\n                assertThat(exception)\n                    .hasMessageThat()\n                    .contains(\n                        \"Both proxyUsername and proxyPassword should be defined or not defined together\"));\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/SparkBigQueryUtilTest.java",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery;\n\nimport static com.google.common.truth.Truth.assertThat;\nimport static org.junit.Assert.assertThrows;\n\nimport com.google.cloud.bigquery.JobInfo;\nimport com.google.cloud.bigquery.StandardTableDefinition;\nimport com.google.cloud.bigquery.TableId;\nimport com.google.cloud.bigquery.TableInfo;\nimport com.google.cloud.bigquery.TimePartitioning;\nimport com.google.common.collect.ImmutableList;\nimport com.google.common.collect.ImmutableMap;\nimport java.sql.Date;\nimport java.sql.Timestamp;\nimport java.time.Instant;\nimport java.time.LocalDate;\nimport java.util.TimeZone;\nimport org.apache.spark.SparkConf;\nimport org.apache.spark.sql.SaveMode;\nimport org.apache.spark.sql.SparkSession;\nimport org.apache.spark.sql.internal.SQLConf;\nimport org.apache.spark.sql.sources.Filter;\nimport org.apache.spark.sql.sources.IsNotNull;\nimport org.apache.spark.sql.types.Metadata;\nimport org.junit.Test;\n\npublic class SparkBigQueryUtilTest {\n\n  private SQLConf sqlConf;\n\n  @Test\n  public void testGetJobIdInternal_hasTagsAndAppId() {\n    String jobId =\n        SparkBigQueryUtil.getJobIdInternal(\n            \"dataproc_hash_2cc09905-1a77-3473-9070-d067ea047f4f,dataproc_job_56324553ed9110908c83b6317f4faab,dataproc_master_index_0,dataproc_uuid_4342a069-0b69-504e-bea4-44986422f720\",\n            \"application_1646959792249_0001\");\n    assertThat(jobId).isEqualTo(\"dataproc_job_56324553ed9110908c83b6317f4faab\");\n  }\n\n  @Test\n  public void testGetJobIdInternal_missingTags_hasAppId() {\n    String jobId = SparkBigQueryUtil.getJobIdInternal(\"missing\", \"application_1646959792249_0001\");\n    assertThat(jobId).isEqualTo(\"application_1646959792249_0001\");\n  }\n\n  @Test\n  public void testGetJobIdInternal_missingBoth() {\n    String jobId = SparkBigQueryUtil.getJobIdInternal(\"missing\", \"\");\n    assertThat(jobId).isEqualTo(\"\");\n  }\n\n  @Test\n  public void testSaveModeToWriteDisposition() {\n    assertThat(SparkBigQueryUtil.saveModeToWriteDisposition(SaveMode.ErrorIfExists))\n        .isEqualTo(JobInfo.WriteDisposition.WRITE_EMPTY);\n    assertThat(SparkBigQueryUtil.saveModeToWriteDisposition(SaveMode.Append))\n        .isEqualTo(JobInfo.WriteDisposition.WRITE_APPEND);\n    assertThat(SparkBigQueryUtil.saveModeToWriteDisposition(SaveMode.Ignore))\n        .isEqualTo(JobInfo.WriteDisposition.WRITE_APPEND);\n    assertThat(SparkBigQueryUtil.saveModeToWriteDisposition(SaveMode.Overwrite))\n        .isEqualTo(JobInfo.WriteDisposition.WRITE_TRUNCATE);\n    assertThrows(\n        IllegalArgumentException.class, () -> SparkBigQueryUtil.saveModeToWriteDisposition(null));\n  }\n\n  @Test\n  public void testParseSimpleTableId() {\n    SparkSession spark = SparkSession.builder().master(\"local\").getOrCreate();\n    ImmutableMap<String, String> options = ImmutableMap.of(\"table\", \"dataset.table\");\n    TableId tableId = SparkBigQueryUtil.parseSimpleTableId(spark, options);\n    assertThat(tableId.getDataset()).isEqualTo(\"dataset\");\n    assertThat(tableId.getTable()).isEqualTo(\"table\");\n  }\n\n  @Test\n  public void testIsJson_SqlTypeJson() {\n    Metadata metadata = Metadata.fromJson(\"{\\\"sqlType\\\":\\\"JSON\\\"}\");\n    assertThat(SparkBigQueryUtil.isJson(metadata)).isTrue();\n  }\n\n  @Test\n  public void testIsJson_SqlTypeOther() {\n    Metadata metadata = Metadata.fromJson(\"{\\\"sqlType\\\":\\\"OTHER\\\"}\");\n    assertThat(SparkBigQueryUtil.isJson(metadata)).isFalse();\n  }\n\n  @Test\n  public void testIsJson_NoSqlType() {\n    Metadata metadata = Metadata.empty();\n    assertThat(SparkBigQueryUtil.isJson(metadata)).isFalse();\n  }\n\n  @Test\n  public void testExtractPartitionFilters_no_match() {\n    ImmutableList<Filter> filters =\n        SparkBigQueryUtil.extractPartitionAndClusteringFilters(\n            TableInfo.of(\n                TableId.of(\"dataset\", \"table\"),\n                StandardTableDefinition.newBuilder()\n                    .setTimePartitioning(\n                        TimePartitioning.newBuilder(TimePartitioning.Type.DAY)\n                            .setField(\"foo\")\n                            .build())\n                    .build()),\n            ImmutableList.of(IsNotNull.apply(\"bar\")));\n    assertThat(filters).isEmpty();\n  }\n\n  @Test\n  public void testExtractPartitionFilters_has_match() {\n    ImmutableList<Filter> filters =\n        SparkBigQueryUtil.extractPartitionAndClusteringFilters(\n            TableInfo.of(\n                TableId.of(\"dataset\", \"table\"),\n                StandardTableDefinition.newBuilder()\n                    .setTimePartitioning(\n                        TimePartitioning.newBuilder(TimePartitioning.Type.DAY)\n                            .setField(\"foo\")\n                            .build())\n                    .build()),\n            ImmutableList.of(IsNotNull.apply(\"foo\")));\n    assertThat(filters).hasSize(1);\n    assertThat(filters.get(0).references()).asList().containsExactly(\"foo\");\n  }\n\n  @Test\n  public void testExtractJobLabels_no_labels() {\n    ImmutableMap<String, String> labels = SparkBigQueryUtil.extractJobLabels(new SparkConf());\n    assertThat(labels).isEmpty();\n  }\n\n  @Test\n  public void testExtractJobLabels_with_labels() {\n    SparkConf sparkConf = new SparkConf();\n    sparkConf.set(\n        \"spark.yarn.tags\",\n        \"dataproc_hash_d371badb-9112-3812-8284-ee81f54d3558,dataproc_job_d8f27392957446dbbd7dc28df568e4eb,dataproc_master_index_0,dataproc_uuid_df379ef3-eeda-3234-8941-e1a36a1959a3\");\n    ImmutableMap<String, String> labels = SparkBigQueryUtil.extractJobLabels(sparkConf);\n    assertThat(labels).hasSize(2);\n    assertThat(labels).containsEntry(\"dataproc_job_id\", \"d8f27392957446dbbd7dc28df568e4eb\");\n    assertThat(labels).containsEntry(\"dataproc_job_uuid\", \"df379ef3-eeda-3234-8941-e1a36a1959a3\");\n  }\n\n  @Test\n  public void testSparkDateToBigQuery() {\n    assertThat(SparkBigQueryUtil.sparkDateToBigQuery(16929L)).isEqualTo(16929L);\n    assertThat(SparkBigQueryUtil.sparkDateToBigQuery(Date.valueOf(\"2016-05-08\"))).isEqualTo(16929);\n    assertThat(SparkBigQueryUtil.sparkDateToBigQuery(LocalDate.of(2016, 5, 8))).isEqualTo(16929);\n  }\n\n  @Test\n  public void testSparkTimestampToBigQuery() {\n    TimeZone.setDefault(TimeZone.getTimeZone(\"UTC\"));\n    assertThat(SparkBigQueryUtil.sparkTimestampToBigQuery(10L)).isEqualTo(10L);\n    assertThat(\n            SparkBigQueryUtil.sparkTimestampToBigQuery(Timestamp.valueOf(\"2016-05-08 00:00:01.01\")))\n        .isEqualTo(1462665601010000L);\n    assertThat(\n            SparkBigQueryUtil.sparkTimestampToBigQuery(Instant.parse(\"2016-05-08T00:00:01.010Z\")))\n        .isEqualTo(1462665601010000L);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/SparkFilterUtilsTest.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery;\n\nimport static com.google.common.truth.Truth.assertThat;\n\nimport com.google.cloud.bigquery.storage.v1.DataFormat;\nimport java.sql.Date;\nimport java.sql.Timestamp;\nimport java.text.ParseException;\nimport java.time.Instant;\nimport java.time.LocalDate;\nimport java.time.LocalDateTime;\nimport java.time.ZoneOffset;\nimport java.util.ArrayList;\nimport java.util.Arrays;\nimport java.util.Optional;\nimport java.util.TimeZone;\nimport org.apache.spark.sql.sources.*;\nimport org.junit.After;\nimport org.junit.Test;\nimport org.junit.runner.RunWith;\nimport org.junit.runners.Parameterized;\n\n@RunWith(Parameterized.class)\npublic class SparkFilterUtilsTest {\n\n  private static final TimeZone DEFAULT_TZ = TimeZone.getDefault();\n  private static final DataFormat ARROW = DataFormat.ARROW;\n  private static final DataFormat AVRO = DataFormat.AVRO;\n\n  @Parameterized.Parameters(name = \"{index}: dataFormat={0}, pushAllFilters={1}\")\n  public static Iterable<Object[]> data() {\n    return Arrays.asList(\n        new Object[] {AVRO, false},\n        new Object[] {AVRO, true},\n        new Object[] {ARROW, false},\n        new Object[] {ARROW, true});\n  }\n\n  private DataFormat dataFormat;\n  private boolean pushAllFilters;\n\n  public SparkFilterUtilsTest(DataFormat dataFormat, boolean pushAllFilters) {\n    this.dataFormat = dataFormat;\n    this.pushAllFilters = pushAllFilters;\n  }\n\n  @After\n  public void resetDefaultTimeZone() {\n    TimeZone.setDefault(DEFAULT_TZ);\n  }\n\n  @Test\n  public void testValidFilters() {\n    ArrayList<Filter> validFilters =\n        new ArrayList(\n            Arrays.asList(\n                EqualTo.apply(\"foo\", \"manatee\"),\n                EqualNullSafe.apply(\"foo\", \"manatee\"),\n                GreaterThan.apply(\"foo\", \"aardvark\"),\n                GreaterThanOrEqual.apply(\"bar\", 2),\n                LessThan.apply(\"foo\", \"zebra\"),\n                LessThanOrEqual.apply(\"bar\", 1),\n                In.apply(\"foo\", new Object[] {1, 2, 3}),\n                IsNull.apply(\"foo\"),\n                IsNotNull.apply(\"foo\"),\n                And.apply(IsNull.apply(\"foo\"), IsNotNull.apply(\"bar\")),\n                Not.apply(IsNull.apply(\"foo\")),\n                StringStartsWith.apply(\"foo\", \"abc\"),\n                StringEndsWith.apply(\"foo\", \"def\"),\n                StringContains.apply(\"foo\", \"abcdef\")));\n    if (dataFormat != ARROW || pushAllFilters) {\n      // If pushAllFilters isn't true, the following filter can't be handled for ARROW.\n      validFilters.add(Or.apply(IsNull.apply(\"foo\"), IsNotNull.apply(\"foo\")));\n    }\n    validFilters.forEach(\n        f ->\n            assertThat(SparkFilterUtils.unhandledFilters(pushAllFilters, dataFormat, f)).isEmpty());\n  }\n\n  @Test\n  public void testMultipleValidFiltersAreHandled() {\n    Filter valid1 = EqualTo.apply(\"foo\", \"bar\");\n    Filter valid2 = EqualTo.apply(\"bar\", 1);\n    assertThat(SparkFilterUtils.unhandledFilters(pushAllFilters, dataFormat, valid1, valid2))\n        .isEmpty();\n  }\n\n  @Test\n  public void testInvalidFilters() {\n    Filter valid1 = EqualTo.apply(\"foo\", \"bar\");\n    Filter valid2 = EqualTo.apply(\"bar\", 1);\n    Filter valid3 = EqualNullSafe.apply(\"foo\", \"bar\");\n    Filter avroValid = Or.apply(IsNull.apply(\"foo\"), IsNotNull.apply(\"foo\"));\n    Iterable<Filter> unhandled =\n        SparkFilterUtils.unhandledFilters(\n            pushAllFilters, dataFormat, valid1, valid2, valid3, avroValid);\n    if (pushAllFilters) {\n      assertThat(unhandled).isEmpty();\n    } else if (dataFormat == AVRO) {\n      assertThat(unhandled).isEmpty();\n    } else {\n      assertThat(unhandled).containsExactly(avroValid);\n    }\n  }\n\n  @Test\n  public void testNewFilterBehaviourWithFilterOption() {\n    if (dataFormat == ARROW && !pushAllFilters) {\n      // If pushAllFilters isn't true, the following test won't pass for ARROW.\n      return;\n    }\n    checkFilters(\n        pushAllFilters,\n        dataFormat,\n        \"(f>1)\",\n        \"(f>1) AND (`a` > 2)\",\n        Optional.of(\"f>1\"),\n        GreaterThan.apply(\"a\", 2));\n  }\n\n  @Test\n  public void testNewFilterBehaviourNoFilterOption() {\n    if (dataFormat == ARROW && !pushAllFilters) {\n      // If pushAllFilters isn't true, the following test won't pass for ARROW.\n      return;\n    }\n    checkFilters(\n        pushAllFilters, dataFormat, \"\", \"(`a` > 2)\", Optional.empty(), GreaterThan.apply(\"a\", 2));\n  }\n\n  private void checkFilters(\n      boolean pushAllFilters,\n      DataFormat readDateFormat,\n      String resultWithoutFilters,\n      String resultWithFilters,\n      Optional<String> configFilter,\n      Filter... filters) {\n    String result1 =\n        SparkFilterUtils.getCompiledFilter(pushAllFilters, readDateFormat, configFilter);\n    assertThat(result1).isEqualTo(resultWithoutFilters);\n    String result2 =\n        SparkFilterUtils.getCompiledFilter(pushAllFilters, readDateFormat, configFilter, filters);\n    assertThat(result2).isEqualTo(resultWithFilters);\n  }\n\n  @Test\n  public void testStringFilters() {\n    assertThat(SparkFilterUtils.compileFilter(StringStartsWith.apply(\"foo\", \"bar\")))\n        .isEqualTo(\"`foo` LIKE 'bar%'\");\n    assertThat(SparkFilterUtils.compileFilter(StringEndsWith.apply(\"foo\", \"bar\")))\n        .isEqualTo(\"`foo` LIKE '%bar'\");\n    assertThat(SparkFilterUtils.compileFilter(StringContains.apply(\"foo\", \"bar\")))\n        .isEqualTo(\"`foo` LIKE '%bar%'\");\n\n    assertThat(SparkFilterUtils.compileFilter(StringStartsWith.apply(\"foo\", \"b'ar\")))\n        .isEqualTo(\"`foo` LIKE 'b\\\\'ar%'\");\n    assertThat(SparkFilterUtils.compileFilter(StringEndsWith.apply(\"foo\", \"b'ar\")))\n        .isEqualTo(\"`foo` LIKE '%b\\\\'ar'\");\n    assertThat(SparkFilterUtils.compileFilter(StringContains.apply(\"foo\", \"b'ar\")))\n        .isEqualTo(\"`foo` LIKE '%b\\\\'ar%'\");\n  }\n\n  @Test\n  public void testNumericAndNullFilters() {\n\n    assertThat(SparkFilterUtils.compileFilter(EqualTo.apply(\"foo\", 1))).isEqualTo(\"`foo` = 1\");\n    assertThat(SparkFilterUtils.compileFilter(EqualNullSafe.apply(\"foo\", 1)))\n        .isEqualTo(\n            \"(`foo` IS NULL AND 1 IS NULL) OR (`foo` IS NOT NULL AND 1 IS NOT NULL AND `foo` = 1)\");\n    assertThat(SparkFilterUtils.compileFilter(GreaterThan.apply(\"foo\", 2))).isEqualTo(\"`foo` > 2\");\n    assertThat(SparkFilterUtils.compileFilter(GreaterThanOrEqual.apply(\"foo\", 3)))\n        .isEqualTo(\"`foo` >= 3\");\n    assertThat(SparkFilterUtils.compileFilter(LessThan.apply(\"foo\", 4))).isEqualTo(\"`foo` < 4\");\n    assertThat(SparkFilterUtils.compileFilter(LessThanOrEqual.apply(\"foo\", 5)))\n        .isEqualTo(\"`foo` <= 5\");\n    assertThat(SparkFilterUtils.compileFilter(In.apply(\"foo\", new Object[] {6, 7, 8})))\n        .isEqualTo(\"`foo` IN (6, 7, 8)\");\n    assertThat(SparkFilterUtils.compileFilter(IsNull.apply(\"foo\"))).isEqualTo(\"`foo` IS NULL\");\n    assertThat(SparkFilterUtils.compileFilter(IsNotNull.apply(\"foo\")))\n        .isEqualTo(\"`foo` IS NOT NULL\");\n    assertThat(\n            SparkFilterUtils.compileFilter(And.apply(IsNull.apply(\"foo\"), IsNotNull.apply(\"bar\"))))\n        .isEqualTo(\"(`foo` IS NULL) AND (`bar` IS NOT NULL)\");\n    assertThat(\n            SparkFilterUtils.compileFilter(Or.apply(IsNull.apply(\"foo\"), IsNotNull.apply(\"bar\"))))\n        .isEqualTo(\"(`foo` IS NULL) OR (`bar` IS NOT NULL)\");\n    assertThat(SparkFilterUtils.compileFilter(Not.apply(IsNull.apply(\"foo\"))))\n        .isEqualTo(\"NOT (`foo` IS NULL)\");\n  }\n\n  @Test\n  public void testDateFilters() throws ParseException {\n    assertThat(\n            SparkFilterUtils.compileFilter(\n                In.apply(\n                    \"datefield\",\n                    new Object[] {Date.valueOf(\"2020-09-01\"), Date.valueOf(\"2020-11-03\")})))\n        .isEqualTo(\"`datefield` IN (DATE '2020-09-01', DATE '2020-11-03')\");\n  }\n\n  @Test\n  public void testDateFilters_java8Time() {\n    assertThat(\n            SparkFilterUtils.compileFilter(\n                In.apply(\n                    \"datefield\",\n                    new Object[] {LocalDate.of(2020, 9, 1), LocalDate.of(2020, 11, 3)})))\n        .isEqualTo(\"`datefield` IN (DATE '2020-09-01', DATE '2020-11-03')\");\n  }\n\n  @Test\n  public void testTimestampFilters() throws ParseException {\n    TimeZone.setDefault(TimeZone.getTimeZone(\"UTC\"));\n    Timestamp ts1 = Timestamp.valueOf(\"2008-12-25 15:30:00\");\n    Timestamp ts2 = Timestamp.valueOf(\"2020-01-25 02:10:10\");\n    assertThat(SparkFilterUtils.compileFilter(In.apply(\"tsfield\", new Object[] {ts1, ts2})))\n        .isEqualTo(\n            \"`tsfield` IN (TIMESTAMP '2008-12-25T15:30:00Z', TIMESTAMP '2020-01-25T02:10:10Z')\");\n  }\n\n  @Test\n  public void testTimestampFilters_java8Time() {\n    Instant ts1 = LocalDateTime.of(2008, 12, 25, 15, 30, 0).toInstant(ZoneOffset.UTC);\n    Instant ts2 = LocalDateTime.of(2020, 1, 25, 2, 10, 10).toInstant(ZoneOffset.UTC);\n    assertThat(SparkFilterUtils.compileFilter(In.apply(\"tsfield\", new Object[] {ts1, ts2})))\n        .isEqualTo(\n            \"`tsfield` IN (TIMESTAMP '2008-12-25T15:30:00Z', TIMESTAMP '2020-01-25T02:10:10Z')\");\n  }\n\n  @Test\n  public void testTimestampFilters_timezone() {\n    TimeZone.setDefault(TimeZone.getTimeZone(\"UTC\"));\n    Filter part1 = IsNotNull.apply(\"t1\");\n    Filter part2 = GreaterThanOrEqual.apply(\"t1\", Timestamp.valueOf(\"2023-01-09 10:00:00.123456\"));\n    Filter part3 = LessThanOrEqual.apply(\"t1\", Timestamp.valueOf(\"2023-01-09 10:00:00.456789\"));\n    checkFilters(\n        pushAllFilters,\n        dataFormat,\n        \"\",\n        \"(`t1` <= TIMESTAMP '2023-01-09T10:00:00.456789Z') AND (`t1` >= TIMESTAMP '2023-01-09T10:00:00.123456Z') AND (`t1` IS NOT NULL)\",\n        Optional.empty(),\n        part1,\n        part2,\n        part3);\n    // should give same results regardless of local timezone\n    TimeZone.setDefault(TimeZone.getTimeZone(\"PST\"));\n    checkFilters(\n        pushAllFilters,\n        dataFormat,\n        \"\",\n        \"(`t1` <= TIMESTAMP '2023-01-09T10:00:00.456789Z') AND (`t1` >= TIMESTAMP '2023-01-09T10:00:00.123456Z') AND (`t1` IS NOT NULL)\",\n        Optional.empty(),\n        part1,\n        part2,\n        part3);\n  }\n\n  @Test\n  public void testFiltersWithNestedOrAnd_1() {\n    if (dataFormat == ARROW && !pushAllFilters) {\n      // If pushAllFilters isn't true, the following test won't pass for ARROW.\n      return;\n    }\n\n    // original query\n    // (c1 >= 500 or c1 <= 70 or c1 >= 900 or c3 <= 50) and\n    // (c1 >= 100 or c1 <= 700  or c2 <= 900) and\n    // (c1 >= 5000 or c1 <= 701)\n\n    Filter part1 =\n        Or.apply(\n            Or.apply(GreaterThanOrEqual.apply(\"c1\", 500), LessThanOrEqual.apply(\"c1\", 70)),\n            Or.apply(GreaterThanOrEqual.apply(\"c1\", 900), LessThanOrEqual.apply(\"c3\", 50)));\n\n    Filter part2 =\n        Or.apply(\n            Or.apply(GreaterThanOrEqual.apply(\"c1\", 100), LessThanOrEqual.apply(\"c1\", 700)),\n            LessThanOrEqual.apply(\"c2\", 900));\n\n    Filter part3 = Or.apply(GreaterThanOrEqual.apply(\"c1\", 5000), LessThanOrEqual.apply(\"c1\", 701));\n\n    checkFilters(\n        pushAllFilters,\n        dataFormat,\n        \"\",\n        \"(((`c1` >= 100) OR (`c1` <= 700)) OR (`c2` <= 900)) \"\n            + \"AND (((`c1` >= 500) OR (`c1` <= 70)) OR ((`c1` >= 900) OR \"\n            + \"(`c3` <= 50))) AND ((`c1` >= 5000) OR (`c1` <= 701))\",\n        Optional.empty(),\n        part1,\n        part2,\n        part3);\n  }\n\n  @Test\n  public void testFiltersWithNestedOrAnd_2() {\n    if (dataFormat == ARROW && !pushAllFilters) {\n      // If pushAllFilters isn't true, the following test won't pass for ARROW.\n      return;\n    }\n\n    // original query\n    // (c1 >= 500 and c2 <= 300) or (c1 <= 800 and c3 >= 230)\n\n    Filter filter =\n        Or.apply(\n            And.apply(GreaterThanOrEqual.apply(\"c1\", 500), LessThanOrEqual.apply(\"c2\", 300)),\n            And.apply(LessThanOrEqual.apply(\"c1\", 800), GreaterThanOrEqual.apply(\"c3\", 230)));\n\n    checkFilters(\n        pushAllFilters,\n        dataFormat,\n        \"\",\n        \"(((`c1` >= 500) AND (`c2` <= 300)) OR ((`c1` <= 800) AND (`c3` >= 230)))\",\n        Optional.empty(),\n        filter);\n  }\n\n  @Test\n  public void testFiltersWithNestedOrAnd_3() {\n    if (dataFormat == ARROW && !pushAllFilters) {\n      // If pushAllFilters isn't true, the following test won't pass for ARROW.\n      return;\n    }\n\n    // original query\n    // (((c1 >= 500 or c1 <= 70) and\n    // (c1 >= 900 or (c3 <= 50 and (c2 >= 20 or c3 > 200))))) and\n    // (((c1 >= 5000 or c1 <= 701) and (c2 >= 150 or c3 >= 100)) or\n    // ((c1 >= 50 or c1 <= 71) and (c2 >= 15 or c3 >= 10)))\n\n    Filter part1 = Or.apply(GreaterThanOrEqual.apply(\"c1\", 500), LessThanOrEqual.apply(\"c1\", 70));\n\n    Filter part2 =\n        Or.apply(\n            GreaterThanOrEqual.apply(\"c1\", 900),\n            And.apply(\n                LessThanOrEqual.apply(\"c3\", 50),\n                Or.apply(GreaterThanOrEqual.apply(\"c2\", 20), GreaterThan.apply(\"c3\", 200))));\n\n    Filter part3 =\n        Or.apply(\n            And.apply(\n                Or.apply(GreaterThanOrEqual.apply(\"c1\", 5000), LessThanOrEqual.apply(\"c1\", 701)),\n                Or.apply(GreaterThanOrEqual.apply(\"c2\", 150), GreaterThanOrEqual.apply(\"c3\", 100))),\n            And.apply(\n                Or.apply(GreaterThanOrEqual.apply(\"c1\", 50), LessThanOrEqual.apply(\"c1\", 71)),\n                Or.apply(GreaterThanOrEqual.apply(\"c2\", 15), GreaterThanOrEqual.apply(\"c3\", 10))));\n\n    checkFilters(\n        pushAllFilters,\n        dataFormat,\n        \"\",\n        \"((((`c1` >= 5000) OR (`c1` <= 701)) AND \"\n            + \"((`c2` >= 150) OR (`c3` >= 100))) OR (((`c1` >= 50) OR \"\n            + \"(`c1` <= 71)) AND ((`c2` >= 15) OR (`c3` >= 10)))) AND \"\n            + \"((`c1` >= 500) OR (`c1` <= 70)) AND ((`c1` >= 900) OR \"\n            + \"((`c3` <= 50) AND ((`c2` >= 20) OR (`c3` > 200))))\",\n        Optional.empty(),\n        part1,\n        part2,\n        part3);\n  }\n\n  @Test\n  public void testFiltersWithNestedOrAnd_4() {\n    if (dataFormat == ARROW && !pushAllFilters) {\n      // If pushAllFilters isn't true, the following test won't pass for ARROW.\n      return;\n    }\n\n    Filter part1 =\n        Or.apply(\n            Not.apply(EqualNullSafe.apply(\"c1\", 500)), Not.apply(EqualNullSafe.apply(\"c2\", 500)));\n\n    Filter part2 = EqualNullSafe.apply(\"c1\", 500);\n\n    Filter part3 = EqualNullSafe.apply(\"c2\", 500);\n\n    checkFilters(\n        pushAllFilters,\n        dataFormat,\n        \"\",\n        \"((NOT ((`c1` IS NULL AND 500 IS NULL) OR (`c1` IS NOT NULL \"\n            + \"AND 500 IS NOT NULL AND `c1` = 500))) \"\n            + \"OR (NOT ((`c2` IS NULL AND 500 IS NULL) OR (`c2` IS NOT NULL \"\n            + \"AND 500 IS NOT NULL AND `c2` = 500)))) \"\n            + \"AND ((`c1` IS NULL AND 500 IS NULL) OR (`c1` IS NOT NULL \"\n            + \"AND 500 IS NOT NULL AND `c1` = 500)) \"\n            + \"AND ((`c2` IS NULL AND 500 IS NULL) OR (`c2` IS NOT NULL \"\n            + \"AND 500 IS NOT NULL AND `c2` = 500))\",\n        Optional.empty(),\n        part1,\n        part2,\n        part3);\n  }\n\n  @Test\n  public void testQuote() {\n    assertThat(SparkFilterUtils.quote(\"foo\")).isEqualTo(\"`foo`\");\n    assertThat(SparkFilterUtils.quote(\"foo.bar\")).isEqualTo(\"`foo`.`bar`\");\n    assertThat(SparkFilterUtils.quote(\"foo.bar.baz\")).isEqualTo(\"`foo`.`bar`.`baz`\");\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/SupportedCustomDataTypeTest.java",
    "content": "/*\n * Copyright 2020 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery;\n\nimport static com.google.common.truth.Truth.assertThat;\n\nimport java.util.Optional;\nimport org.apache.spark.ml.linalg.SQLDataTypes;\nimport org.junit.Test;\n\npublic class SupportedCustomDataTypeTest {\n\n  @Test\n  public void testVector() throws Exception {\n    Optional<SupportedCustomDataType> vector =\n        SupportedCustomDataType.of(SQLDataTypes.VectorType());\n    assertThat(vector.isPresent()).isTrue();\n  }\n\n  @Test\n  public void testMatrix() throws Exception {\n    Optional<SupportedCustomDataType> matrix =\n        SupportedCustomDataType.of(SQLDataTypes.MatrixType());\n    assertThat(matrix.isPresent()).isTrue();\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/TestConstants.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery;\n\nimport static org.apache.spark.sql.functions.array;\nimport static org.apache.spark.sql.functions.from_utc_timestamp;\nimport static org.apache.spark.sql.functions.lit;\nimport static org.apache.spark.sql.functions.struct;\nimport static org.apache.spark.sql.functions.to_date;\n\nimport com.google.common.collect.ImmutableList;\nimport java.util.List;\nimport java.util.TimeZone;\nimport java.util.stream.Collectors;\nimport java.util.stream.Stream;\nimport org.apache.spark.sql.Column;\nimport org.apache.spark.sql.types.ArrayType;\nimport org.apache.spark.sql.types.DataTypes;\nimport org.apache.spark.sql.types.DecimalType;\nimport org.apache.spark.sql.types.Metadata;\nimport org.apache.spark.sql.types.MetadataBuilder;\nimport org.apache.spark.sql.types.StructField;\nimport org.apache.spark.sql.types.StructType;\n\npublic class TestConstants {\n\n  public static int BIG_NUMERIC_COLUMN_POSITION = 11;\n  public static String ALL_TYPES_TABLE_QUERY_TEMPLATE =\n      // Use DDL to support required fields\n      Stream.of(\n              \"create table %s.%s (\",\n              \"int_req int64 not null,\",\n              \"int_null int64,\",\n              \"bl bool,\",\n              \"str string,\",\n              \"day date,\",\n              \"ts timestamp,\",\n              \"dt datetime,\",\n              \"tm time,\",\n              \"binary bytes,\",\n              \"float float64,\",\n              \"nums struct<min numeric, max numeric, pi numeric, big_pi numeric>,\",\n              \"big_numeric_nums struct<min bignumeric, max bignumeric>,\",\n              \"int_arr array<int64>,\",\n              \"int_struct_arr array<struct<i int64>>\",\n              \") as\",\n              \"\",\n              \"select\",\n              \"42 as int_req,\",\n              \"null as int_null,\",\n              \"true as bl,\",\n              \"\\\"string\\\" as str,\",\n              \"cast(\\\"2019-03-18\\\" as date) as day,\",\n              \"cast(\\\"2019-03-18T01:23:45.678901\\\" as timestamp) as ts,\",\n              \"cast(\\\"2019-03-18T01:23:45.678901\\\"  as datetime) as dt,\",\n              \"cast(\\\"01:23:45.678901\\\" as time) as tm,\",\n              \"cast(\\\"bytes\\\" as bytes) as binary,\",\n              \"4.2 as float,\",\n              \"struct(\",\n              \"  cast(\\\"-99999999999999999999999999999.999999999\\\" as numeric) as min,\",\n              \"  cast(\\\"99999999999999999999999999999.999999999\\\" as numeric) as max,\",\n              \"  cast(3.14 as numeric) as pi,\",\n              \"  cast(\\\"31415926535897932384626433832.795028841\\\" as numeric) as big_pi\",\n              \") as nums,\",\n              \"struct(\",\n              \"  cast(\\\"-578960446186580977117854925043439539266.34992332820282019728792003956564819968\\\" as bignumeric) as min,\",\n              \"  cast(\\\"578960446186580977117854925043439539266.34992332820282019728792003956564819967\\\" as bignumeric) as max\",\n              \") as big_numeric_nums,\",\n              \"[1, 2, 3] as int_arr,\",\n              \"[(select as struct 1)] as int_struct_arr\")\n          .collect(Collectors.joining(\"\\n\"));\n  public static int ALL_TYPES_TABLE_SIZE = 224;\n  public static String STRUCT_COLUMN_ORDER_TEST_TABLE_QUERY_TEMPLATE =\n      // Use DDL to support required fields\n      Stream.of(\n              \"create table %s (\",\n              \"TypeDebugging.typeDebug.str string,\",\n              \"nums struct <\",\n              \"  num1 int64,\",\n              \"  num2 int64,\",\n              \"  num3 int64,\",\n              \"  stringStructArr array <struct<str1 string, str2 string, str3 string>>\",\n              \" >\",\n              \")\",\n              \"as\",\n              \"select\",\n              \"\\\"outer_string\\\" as str,\",\n              \"struct(\",\n              \" 1 as num1,\",\n              \" 2 as num2,\",\n              \" 3 as num3,\",\n              \" [\",\n              \"   struct(\\\"0:str1\\\" as str1, \\\"0:str2\\\" as str2, \\\"0:str3\\\" as str3),\",\n              \"   struct(\\\"1:str1\\\" as str1, \\\"1:str2\\\" as str2, \\\"1:str3\\\" as str3)\",\n              \" ] as stringStructArr\",\n              \") as nums\")\n          .collect(Collectors.joining(\"\\n\"));\n  public static ColumnOrderTestClass STRUCT_COLUMN_ORDER_TEST_TABLE_COLS =\n      new ColumnOrderTestClass(\n          new NumStruct(\n              3L,\n              2L,\n              1L,\n              ImmutableList.of(\n                  new StringStruct(\"0:str3\", \"0:str1\", \"0:str2\"),\n                  new StringStruct(\"1:str3\", \"1:str1\", \"1:str2\"))),\n          \"outer_string\");\n  private static DecimalType BQ_NUMERIC = DataTypes.createDecimalType(38, 9);\n  private static DecimalType BQ_BIGNUMERIC = DataTypes.createDecimalType(38, 38);\n  public static StructType ALL_TYPES_TABLE_SCHEMA =\n      new StructType(\n          copy(\n              new StructField(\"int_req\", DataTypes.LongType, false, Metadata.empty()),\n              new StructField(\"int_null\", DataTypes.LongType, true, Metadata.empty()),\n              new StructField(\"bl\", DataTypes.BooleanType, true, Metadata.empty()),\n              new StructField(\"str\", DataTypes.StringType, true, Metadata.empty()),\n              new StructField(\"day\", DataTypes.DateType, true, Metadata.empty()),\n              new StructField(\"ts\", DataTypes.TimestampType, true, Metadata.empty()),\n              new StructField(\"dt\", DataTypes.StringType, true, Metadata.empty()),\n              new StructField(\"tm\", DataTypes.LongType, true, Metadata.empty()),\n              new StructField(\"binary\", DataTypes.BinaryType, true, Metadata.empty()),\n              new StructField(\"float\", DataTypes.DoubleType, true, Metadata.empty()),\n              new StructField(\n                  \"nums\",\n                  new StructType(\n                      copy(\n                          new StructField(\"min\", BQ_NUMERIC, true, Metadata.empty()),\n                          new StructField(\"max\", BQ_NUMERIC, true, Metadata.empty()),\n                          new StructField(\"pi\", BQ_NUMERIC, true, Metadata.empty()),\n                          new StructField(\"big_pi\", BQ_NUMERIC, true, Metadata.empty()))),\n                  true,\n                  Metadata.empty()),\n              new StructField(\n                  \"big_numeric_nums\",\n                  new StructType(\n                      copy(\n                          new StructField(\"min\", BQ_BIGNUMERIC, true, Metadata.empty()),\n                          new StructField(\"max\", BQ_BIGNUMERIC, true, Metadata.empty()))),\n                  true,\n                  Metadata.empty()),\n              new StructField(\n                  \"int_arr\", new ArrayType(DataTypes.LongType, true), true, Metadata.empty()),\n              new StructField(\n                  \"int_struct_arr\",\n                  new ArrayType(\n                      new StructType(\n                          copy(new StructField(\"i\", DataTypes.LongType, true, Metadata.empty()))),\n                      true),\n                  true,\n                  Metadata.empty()),\n              new StructField(\n                  \"str_json\",\n                  DataTypes.StringType,\n                  true,\n                  new MetadataBuilder().putString(\"sqlType\", \"JSON\").build())));\n  public static Column[] ALL_TYPES_TABLE_COLS =\n      new Column[] {\n        lit(42L),\n        lit(null),\n        lit(true),\n        lit(\"string\"),\n        to_date(lit(\"2019-03-18\")),\n        from_utc_timestamp(lit(\"2019-03-18T01:23:45.678901\"), TimeZone.getDefault().getID()),\n        lit(\"2019-03-18T01:23:45.678901\"),\n        lit(5025678901L),\n        lit(\"bytes\").cast(\"BINARY\"),\n        lit(4.2),\n        struct(\n            lit(\"-99999999999999999999999999999.999999999\").cast(BQ_NUMERIC),\n            lit(\"99999999999999999999999999999.999999999\").cast(BQ_NUMERIC),\n            lit(3.14).cast(BQ_NUMERIC),\n            lit(\"31415926535897932384626433832.795028841\").cast(BQ_NUMERIC)),\n        struct(\n            lit(\"-0.34992332820282019728792003956564819968\"),\n            lit(\"0.34992332820282019728792003956564819967\")),\n        array(lit(1), lit(2), lit(3)),\n        array(struct(lit(1)))\n      };\n\n  private TestConstants() {}\n\n  private static <T> T[] copy(T... elements) {\n    return elements;\n  }\n\n  public static class StringStruct {\n    private String str3;\n    private String str1;\n    private String str2;\n\n    public StringStruct(String str3, String str1, String str2) {\n      this.str3 = str3;\n      this.str1 = str1;\n      this.str2 = str2;\n    }\n\n    public String getStr3() {\n      return str3;\n    }\n\n    public void setStr3(String str3) {\n      this.str3 = str3;\n    }\n\n    public String getStr1() {\n      return str1;\n    }\n\n    public void setStr1(String str1) {\n      this.str1 = str1;\n    }\n\n    public String getStr2() {\n      return str2;\n    }\n\n    public void setStr2(String str2) {\n      this.str2 = str2;\n    }\n  }\n\n  public static class NumStruct {\n    private Long num3;\n    private Long num2;\n    private Long num1;\n    private List<StringStruct> stringStructArr;\n\n    public NumStruct(Long num3, Long num2, Long num1, List<StringStruct> stringStructArr) {\n      this.num3 = num3;\n      this.num2 = num2;\n      this.num1 = num1;\n      this.stringStructArr = stringStructArr;\n    }\n\n    public Long getNum3() {\n      return num3;\n    }\n\n    public void setNum3(Long num3) {\n      this.num3 = num3;\n    }\n\n    public Long getNum2() {\n      return num2;\n    }\n\n    public void setNum2(Long num2) {\n      this.num2 = num2;\n    }\n\n    public Long getNum1() {\n      return num1;\n    }\n\n    public void setNum1(Long num1) {\n      this.num1 = num1;\n    }\n\n    public List<StringStruct> getStringStructArr() {\n      return stringStructArr;\n    }\n\n    public void setStringStructArr(List<StringStruct> stringStructArr) {\n      this.stringStructArr = stringStructArr;\n    }\n  }\n\n  public static class ColumnOrderTestClass {\n    private NumStruct nums;\n    private String str;\n\n    public ColumnOrderTestClass(NumStruct nums, String str) {\n      this.nums = nums;\n      this.str = str;\n    }\n\n    public NumStruct getNums() {\n      return nums;\n    }\n\n    public void setNums(NumStruct nums) {\n      this.nums = nums;\n    }\n\n    public String getStr() {\n      return str;\n    }\n\n    public void setStr(String str) {\n      this.str = str;\n    }\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/acceptance/AcceptanceTestConstants.java",
    "content": "/*\n * Copyright 2021 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\nimport com.google.common.base.Preconditions;\n\npublic class AcceptanceTestConstants {\n\n  public static final String REGION = \"us-west1\";\n  public static final String DATAPROC_ENDPOINT = REGION + \"-dataproc.googleapis.com:443\";\n  public static final String PROJECT_ID =\n      Preconditions.checkNotNull(\n          System.getenv(\"GOOGLE_CLOUD_PROJECT\"),\n          \"Please set the 'GOOGLE_CLOUD_PROJECT' environment variable\");\n  public static final String SERVERLESS_NETWORK_URI =\n      Preconditions.checkNotNull(\n          System.getenv(\"SERVERLESS_NETWORK_URI\"),\n          \"Please set the 'SERVERLESS_NETWORK_URI' environment variable\");\n  public static final String CONNECTOR_JAR_DIRECTORY = \"target\";\n\n  public static final String MIN_BIG_NUMERIC = \"-0.34992332820282019728792003956564819968\";\n\n  public static final String MAX_BIG_NUMERIC = \"0.34992332820282019728792003956564819967\";\n\n  public static final String BIGNUMERIC_TABLE_QUERY_TEMPLATE =\n      \"create table %s.%s (\\n\"\n          + \"    min bignumeric(38,38),\\n\"\n          + \"    max bignumeric(38,38)\\n\"\n          + \"    ) \\n\"\n          + \"    as \\n\"\n          + \"    select \\n\"\n          + \"    cast(\\\"\"\n          + MIN_BIG_NUMERIC\n          + \"\\\" as bignumeric) as min,\\n\"\n          + \"    cast(\\\"\"\n          + MAX_BIG_NUMERIC\n          + \"\\\" as bignumeric) as max\";\n\n  protected static final long SERVERLESS_BATCH_TIMEOUT_IN_SECONDS = 600;\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/acceptance/AcceptanceTestContext.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\npublic class AcceptanceTestContext {\n\n  final String testId;\n  final String clusterId;\n  final String connectorJarUri;\n  final String testBaseGcsDir;\n  final String bqDataset;\n  final String bqTable;\n  final String bqStreamTable;\n\n  public AcceptanceTestContext(\n      String testId, String clusterId, String testBaseGcsDir, String connectorJarUri) {\n    this.testId = testId;\n    this.clusterId = clusterId;\n    this.testBaseGcsDir = testBaseGcsDir;\n    this.connectorJarUri = connectorJarUri;\n    this.bqDataset = \"bq_acceptance_test_dataset_\" + testId.replace(\"-\", \"_\");\n    this.bqTable = \"bq_acceptance_test_table_\" + testId.replace(\"-\", \"_\");\n    this.bqStreamTable = \"bq_write_stream_test_table_\" + testId.replace(\"-\", \"_\");\n  }\n\n  public String getScriptUri(String testName) {\n    return testBaseGcsDir + \"/\" + testName + \"/script.py\";\n  }\n\n  public String getResultsDirUri(String testName) {\n    return testBaseGcsDir + \"/\" + testName + \"/results\";\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/acceptance/AcceptanceTestUtils.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\nimport com.google.cloud.WriteChannel;\nimport com.google.cloud.bigquery.BigQuery;\nimport com.google.cloud.bigquery.BigQuery.DatasetDeleteOption;\nimport com.google.cloud.bigquery.BigQueryOptions;\nimport com.google.cloud.bigquery.DatasetId;\nimport com.google.cloud.bigquery.DatasetInfo;\nimport com.google.cloud.bigquery.QueryJobConfiguration;\nimport com.google.cloud.storage.*;\nimport com.google.common.io.ByteStreams;\nimport java.io.*;\nimport java.net.URI;\nimport java.nio.ByteBuffer;\nimport java.nio.MappedByteBuffer;\nimport java.nio.channels.FileChannel;\nimport java.nio.charset.StandardCharsets;\nimport java.nio.file.Files;\nimport java.nio.file.Path;\nimport java.nio.file.Paths;\nimport java.nio.file.attribute.FileTime;\nimport java.util.Comparator;\nimport java.util.function.Predicate;\nimport java.util.stream.StreamSupport;\n\npublic class AcceptanceTestUtils {\n\n  // must be set in order to run the acceptance test\n  static final String BUCKET = System.getenv(\"ACCEPTANCE_TEST_BUCKET\");\n  private static final BigQuery bq = BigQueryOptions.getDefaultInstance().getService();\n\n  static Storage storage =\n      new StorageOptions.DefaultStorageFactory().create(StorageOptions.getDefaultInstance());\n\n  public static Path getArtifact(Path targetDir, String prefix, String suffix) {\n    Predicate<Path> prefixSuffixChecker = prefixSuffixChecker(prefix, suffix);\n    try {\n      return Files.list(targetDir)\n          .filter(Files::isRegularFile)\n          .filter(prefixSuffixChecker)\n          .max(Comparator.comparing(AcceptanceTestUtils::lastModifiedTime))\n          .get();\n    } catch (IOException e) {\n      throw new UncheckedIOException(e.getMessage(), e);\n    }\n  }\n\n  private static Predicate<Path> prefixSuffixChecker(final String prefix, final String suffix) {\n    return path -> {\n      String name = path.toFile().getName();\n      return name.startsWith(prefix) && name.endsWith(suffix) && name.indexOf(\"-javadoc\") == -1;\n    };\n  }\n\n  private static FileTime lastModifiedTime(Path path) {\n    try {\n      return Files.getLastModifiedTime(path);\n    } catch (IOException e) {\n      throw new UncheckedIOException(e.getMessage(), e);\n    }\n  }\n\n  public static BlobId copyToGcs(Path source, String destinationUri, String contentType)\n      throws Exception {\n    File sourceFile = source.toFile();\n    try (FileInputStream sourceInputStream = new FileInputStream(sourceFile)) {\n      FileChannel sourceFileChannel = sourceInputStream.getChannel();\n      MappedByteBuffer sourceContent =\n          sourceFileChannel.map(FileChannel.MapMode.READ_ONLY, 0, sourceFile.length());\n      return uploadToGcs(sourceContent, destinationUri, contentType);\n    } catch (IOException e) {\n      throw new UncheckedIOException(\n          String.format(\"Failed to write '%s' to '%s'\", source, destinationUri), e);\n    }\n  }\n\n  public static BlobId uploadToGcs(InputStream source, String destinationUri, String contentType)\n      throws Exception {\n    try {\n      ByteBuffer sourceContent = ByteBuffer.wrap(ByteStreams.toByteArray(source));\n      return uploadToGcs(sourceContent, destinationUri, contentType);\n    } catch (IOException e) {\n      throw new UncheckedIOException(String.format(\"Failed to write to '%s'\", destinationUri), e);\n    }\n  }\n\n  public static BlobId uploadToGcs(ByteBuffer content, String destinationUri, String contentType)\n      throws Exception {\n    URI uri = new URI(destinationUri);\n    BlobId blobId = BlobId.of(uri.getAuthority(), uri.getPath().substring(1));\n    BlobInfo blobInfo = BlobInfo.newBuilder(blobId).setContentType(contentType).build();\n    try (WriteChannel writer = storage.writer(blobInfo)) {\n      writer.write(content);\n    } catch (IOException e) {\n      throw new UncheckedIOException(String.format(\"Failed to write to '%s'\", destinationUri), e);\n    }\n    return blobId;\n  }\n\n  public static String createTestBaseGcsDir(String testId) {\n    return String.format(\"gs://%s/tests/%s\", BUCKET, testId);\n  }\n\n  public static String getCsv(String resultsDirUri) throws Exception {\n    URI uri = new URI(resultsDirUri);\n    Blob csvBlob =\n        StreamSupport.stream(\n                storage\n                    .list(\n                        uri.getAuthority(),\n                        Storage.BlobListOption.prefix(uri.getPath().substring(1)))\n                    .iterateAll()\n                    .spliterator(),\n                false)\n            .filter(blob -> blob.getName().endsWith(\"csv\"))\n            .findFirst()\n            .get();\n    return new String(storage.readAllBytes(csvBlob.getBlobId()), StandardCharsets.UTF_8);\n  }\n\n  public static void deleteGcsDir(String testBaseGcsDir) throws Exception {\n    URI uri = new URI(testBaseGcsDir);\n    BlobId[] blobIds =\n        StreamSupport.stream(\n                storage\n                    .list(\n                        uri.getAuthority(),\n                        Storage.BlobListOption.prefix(uri.getPath().substring(1)))\n                    .iterateAll()\n                    .spliterator(),\n                false)\n            .map(Blob::getBlobId)\n            .toArray(BlobId[]::new);\n    if (blobIds.length > 1) {\n      storage.delete(blobIds);\n    }\n  }\n\n  public static void createBqDataset(String dataset) {\n    DatasetId datasetId = DatasetId.of(dataset);\n    bq.create(DatasetInfo.of(datasetId));\n  }\n\n  public static int getNumOfRowsOfBqTable(String dataset, String table) {\n    return bq.getTable(dataset, table).getNumRows().intValue();\n  }\n\n  public static void runBqQuery(String query) throws Exception {\n    bq.query(QueryJobConfiguration.of(query));\n  }\n\n  public static void deleteBqDatasetAndTables(String dataset) {\n    bq.delete(DatasetId.of(dataset), DatasetDeleteOption.deleteContents());\n  }\n\n  static void uploadConnectorJar(String targetDir, String prefix, String connectorJarUri)\n      throws Exception {\n    Path targetDirPath = Paths.get(targetDir);\n    Path assemblyJar = AcceptanceTestUtils.getArtifact(targetDirPath, prefix, \".jar\");\n    AcceptanceTestUtils.copyToGcs(assemblyJar, connectorJarUri, \"application/java-archive\");\n  }\n\n  public static String generateClusterName(String testId) {\n    return String.format(\"sbc-acceptance-%s\", testId);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/acceptance/BigNumericDataprocServerlessAcceptanceTestBase.java",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\nimport static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestConstants.MAX_BIG_NUMERIC;\nimport static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestConstants.MIN_BIG_NUMERIC;\nimport static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils.runBqQuery;\nimport static com.google.common.truth.Truth.assertThat;\n\nimport com.google.cloud.dataproc.v1.Batch;\nimport com.google.cloud.dataproc.v1.Batch.State;\nimport java.io.FileInputStream;\nimport java.io.InputStream;\nimport java.nio.file.Path;\nimport java.nio.file.Paths;\nimport java.util.Arrays;\nimport org.junit.Test;\n\n/**\n * Tests the correct behavior of the python support lib and the BigNumeric python custom data type\n */\npublic class BigNumericDataprocServerlessAcceptanceTestBase\n    extends DataprocServerlessAcceptanceTestBase {\n\n  public BigNumericDataprocServerlessAcceptanceTestBase(\n      String connectorJarPrefix, String s8sImageVersion) {\n    super(connectorJarPrefix, s8sImageVersion);\n  }\n\n  @Test\n  public void testBatch() throws Exception {\n    Path pythonLibTargetDir = Paths.get(\"../../spark-bigquery-python-lib/target\");\n    Path pythonLibZip =\n        AcceptanceTestUtils.getArtifact(pythonLibTargetDir, \"spark-bigquery\", \".zip\");\n    String zipFileUri =\n        context.testBaseGcsDir + \"/\" + testName + \"/big_numeric_acceptance_test.zip\";\n    try (InputStream pythonLib = new FileInputStream(pythonLibZip.toFile())) {\n      AcceptanceTestUtils.uploadToGcs(pythonLib, zipFileUri, \"application/zip\");\n    }\n\n    runBqQuery(\n        String.format(\n            AcceptanceTestConstants.BIGNUMERIC_TABLE_QUERY_TEMPLATE,\n            context.bqDataset,\n            context.bqTable));\n    String tableName = context.bqDataset + \".\" + context.bqTable;\n\n    Batch batch =\n        createAndRunPythonBatch(\n            context,\n            testName,\n            \"big_numeric.py\",\n            zipFileUri,\n            Arrays.asList(tableName, context.getResultsDirUri(testName)));\n    assertThat(batch.getState()).isEqualTo(State.SUCCEEDED);\n    String output = AcceptanceTestUtils.getCsv(context.getResultsDirUri(testName));\n    assertThat(output.trim()).isEqualTo(MIN_BIG_NUMERIC + \",\" + MAX_BIG_NUMERIC);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/acceptance/DataprocAcceptanceTestBase.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\nimport static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestConstants.CONNECTOR_JAR_DIRECTORY;\nimport static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestConstants.DATAPROC_ENDPOINT;\nimport static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestConstants.MAX_BIG_NUMERIC;\nimport static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestConstants.MIN_BIG_NUMERIC;\nimport static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestConstants.PROJECT_ID;\nimport static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestConstants.REGION;\nimport static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils.createBqDataset;\nimport static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils.deleteBqDatasetAndTables;\nimport static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils.generateClusterName;\nimport static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils.getNumOfRowsOfBqTable;\nimport static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils.runBqQuery;\nimport static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils.uploadConnectorJar;\nimport static com.google.common.truth.Truth.assertThat;\nimport static org.junit.Assume.assumeTrue;\n\nimport com.google.cloud.dataproc.v1.*;\nimport com.google.common.collect.ImmutableList;\nimport java.io.FileInputStream;\nimport java.nio.file.Path;\nimport java.nio.file.Paths;\nimport java.time.Duration;\nimport java.util.Arrays;\nimport java.util.List;\nimport java.util.Map;\nimport java.util.concurrent.CompletableFuture;\nimport java.util.concurrent.TimeUnit;\nimport java.util.stream.Collectors;\nimport org.junit.Test;\n\npublic class DataprocAcceptanceTestBase {\n  private static final long TIMEOUT_IN_SECONDS = 180;\n  protected static final ClusterProperty DISABLE_CONSCRYPT =\n      ClusterProperty.of(\"dataproc:dataproc.conscrypt.provider.enable\", \"false\", \"nc\");\n  protected static final ImmutableList<ClusterProperty> DISABLE_CONSCRYPT_LIST =\n      ImmutableList.<ClusterProperty>builder().add(DISABLE_CONSCRYPT).build();\n\n  private AcceptanceTestContext context;\n  private boolean sparkStreamingSupported;\n\n  protected DataprocAcceptanceTestBase(AcceptanceTestContext context) {\n    this(context, true);\n  }\n\n  protected DataprocAcceptanceTestBase(\n      AcceptanceTestContext context, boolean sparkStreamingSupported) {\n    this.context = context;\n    this.sparkStreamingSupported = sparkStreamingSupported;\n  }\n\n  protected static AcceptanceTestContext setup(\n      String dataprocImageVersion,\n      String connectorJarPrefix,\n      List<ClusterProperty> clusterProperties)\n      throws Exception {\n    String clusterPropertiesMarkers =\n        clusterProperties.isEmpty()\n            ? \"\"\n            : clusterProperties.stream()\n                .map(ClusterProperty::getMarker)\n                .collect(Collectors.joining(\"-\", \"-\", \"\"));\n    String testId =\n        String.format(\n            \"%s-%s%s%s\",\n            System.currentTimeMillis(),\n            dataprocImageVersion.charAt(0),\n            dataprocImageVersion.charAt(2),\n            clusterPropertiesMarkers);\n    Map<String, String> properties =\n        clusterProperties.stream()\n            .collect(Collectors.toMap(ClusterProperty::getKey, ClusterProperty::getValue));\n    String testBaseGcsDir = AcceptanceTestUtils.createTestBaseGcsDir(testId);\n    String connectorJarUri = testBaseGcsDir + \"/connector.jar\";\n    uploadConnectorJar(CONNECTOR_JAR_DIRECTORY, connectorJarPrefix, connectorJarUri);\n\n    String clusterName =\n        createClusterIfNeeded(dataprocImageVersion, testId, properties, connectorJarUri);\n    AcceptanceTestContext acceptanceTestContext =\n        new AcceptanceTestContext(testId, clusterName, testBaseGcsDir, connectorJarUri);\n    createBqDataset(acceptanceTestContext.bqDataset);\n    return acceptanceTestContext;\n  }\n\n  protected static void tearDown(AcceptanceTestContext context) throws Exception {\n    if (context != null) {\n      terminateCluster(context.clusterId);\n      AcceptanceTestUtils.deleteGcsDir(context.testBaseGcsDir);\n      deleteBqDatasetAndTables(context.bqDataset);\n    }\n  }\n\n  protected static String createClusterIfNeeded(\n      String dataprocImageVersion,\n      String testId,\n      Map<String, String> properties,\n      String connectorJarUri)\n      throws Exception {\n    String clusterName = generateClusterName(testId);\n    cluster(\n        client ->\n            client\n                .createClusterAsync(\n                    PROJECT_ID,\n                    REGION,\n                    createCluster(clusterName, dataprocImageVersion, properties, connectorJarUri))\n                .get());\n    return clusterName;\n  }\n\n  protected static void terminateCluster(String clusterName) throws Exception {\n    cluster(client -> client.deleteClusterAsync(PROJECT_ID, REGION, clusterName).get());\n  }\n\n  private static void cluster(ThrowingConsumer<ClusterControllerClient> command) throws Exception {\n    try (ClusterControllerClient clusterControllerClient =\n        ClusterControllerClient.create(\n            ClusterControllerSettings.newBuilder().setEndpoint(DATAPROC_ENDPOINT).build())) {\n      command.accept(clusterControllerClient);\n    }\n  }\n\n  private static Cluster createCluster(\n      String clusterName,\n      String dataprocImageVersion,\n      Map<String, String> properties,\n      String connectorJarUri) {\n    return Cluster.newBuilder()\n        .setClusterName(clusterName)\n        .setProjectId(PROJECT_ID)\n        .setConfig(\n            ClusterConfig.newBuilder()\n                .setGceClusterConfig(\n                    GceClusterConfig.newBuilder()\n                        .setNetworkUri(\"default\")\n                        .setInternalIpOnly(false)\n                        .setZoneUri(REGION + \"-a\")\n                        .putMetadata(\"SPARK_BQ_CONNECTOR_URL\", connectorJarUri))\n                .setMasterConfig(\n                    InstanceGroupConfig.newBuilder()\n                        .setNumInstances(1)\n                        .setMachineTypeUri(\"n1-standard-4\")\n                        .setDiskConfig(\n                            DiskConfig.newBuilder()\n                                .setBootDiskType(\"pd-standard\")\n                                .setBootDiskSizeGb(300)\n                                .setNumLocalSsds(0)))\n                .setWorkerConfig(\n                    InstanceGroupConfig.newBuilder()\n                        .setNumInstances(2)\n                        .setMachineTypeUri(\"n1-standard-4\")\n                        .setDiskConfig(\n                            DiskConfig.newBuilder()\n                                .setBootDiskType(\"pd-standard\")\n                                .setBootDiskSizeGb(300)\n                                .setNumLocalSsds(0)))\n                .setSoftwareConfig(\n                    SoftwareConfig.newBuilder()\n                        .setImageVersion(dataprocImageVersion)\n                        .putAllProperties(properties)))\n        .build();\n  }\n\n  @Test\n  public void testRead() throws Exception {\n    String testName = \"test-read\";\n    Job result =\n        createAndRunPythonJob(\n            testName,\n            \"read_shakespeare.py\",\n            null,\n            Arrays.asList(context.getResultsDirUri(testName)));\n    assertThat(result.getStatus().getState()).isEqualTo(JobStatus.State.DONE);\n    String output = AcceptanceTestUtils.getCsv(context.getResultsDirUri(testName));\n    assertThat(output.trim()).isEqualTo(\"spark,10\");\n  }\n\n  @Test\n  public void writeStream() throws Exception {\n    // TODO: Should be removed once streaming is supported in DSv2\n    assumeTrue(\"Spark streaming is not supported by this connector\", sparkStreamingSupported);\n    String testName = \"write-stream-test\";\n    String jsonFileName = \"write_stream_data.json\";\n    String jsonFileUri = context.testBaseGcsDir + \"/\" + testName + \"/json/\" + jsonFileName;\n\n    AcceptanceTestUtils.uploadToGcs(\n        getClass().getResourceAsStream(\"/acceptance/\" + jsonFileName),\n        jsonFileUri,\n        \"application/json\");\n\n    Job result =\n        createAndRunPythonJob(\n            testName,\n            \"write_stream.py\",\n            null,\n            Arrays.asList(\n                context.testBaseGcsDir + \"/\" + testName + \"/json/\",\n                context.bqDataset,\n                context.bqStreamTable,\n                AcceptanceTestUtils.BUCKET));\n\n    assertThat(result.getStatus().getState()).isEqualTo(JobStatus.State.DONE);\n    int numOfRows = getNumOfRowsOfBqTable(context.bqDataset, context.bqStreamTable);\n    assertThat(numOfRows == 2);\n  }\n\n  @Test\n  public void testBigNumeric() throws Exception {\n    String testName = \"test-big-numeric\";\n    Path pythonLibTargetDir = Paths.get(\"../../spark-bigquery-python-lib/target\");\n    Path pythonLibZip =\n        AcceptanceTestUtils.getArtifact(pythonLibTargetDir, \"spark-bigquery\", \".zip\");\n    String zipFileUri =\n        context.testBaseGcsDir + \"/\" + testName + \"/big_numeric_acceptance_test.zip\";\n    AcceptanceTestUtils.uploadToGcs(\n        new FileInputStream(pythonLibZip.toFile()), zipFileUri, \"application/zip\");\n\n    runBqQuery(\n        String.format(\n            AcceptanceTestConstants.BIGNUMERIC_TABLE_QUERY_TEMPLATE,\n            context.bqDataset,\n            context.bqTable));\n\n    String tableName = context.bqDataset + \".\" + context.bqTable;\n\n    Job result =\n        createAndRunPythonJob(\n            testName,\n            \"big_numeric.py\",\n            zipFileUri,\n            Arrays.asList(tableName, context.getResultsDirUri(testName)));\n\n    assertThat(result.getStatus().getState()).isEqualTo(JobStatus.State.DONE);\n    String output = AcceptanceTestUtils.getCsv(context.getResultsDirUri(testName));\n    assertThat(output.trim()).isEqualTo(MIN_BIG_NUMERIC + \",\" + MAX_BIG_NUMERIC);\n  }\n\n  private Job createAndRunPythonJob(\n      String testName, String pythonFile, String pythonZipUri, List<String> args) throws Exception {\n    AcceptanceTestUtils.uploadToGcs(\n        getClass().getResourceAsStream(\"/acceptance/\" + pythonFile),\n        context.getScriptUri(testName),\n        \"text/x-python\");\n\n    Job job =\n        Job.newBuilder()\n            .setPlacement(JobPlacement.newBuilder().setClusterName(context.clusterId))\n            .setPysparkJob(createPySparkJobBuilder(testName, pythonZipUri, args))\n            .build();\n\n    return runAndWait(job, Duration.ofSeconds(TIMEOUT_IN_SECONDS));\n  }\n\n  private PySparkJob.Builder createPySparkJobBuilder(\n      String testName, String pythonZipUri, List<String> args) {\n    PySparkJob.Builder builder =\n        PySparkJob.newBuilder()\n            .setMainPythonFileUri(context.getScriptUri(testName))\n            .addJarFileUris(context.connectorJarUri);\n\n    if (pythonZipUri != null && pythonZipUri.length() != 0) {\n      builder.addPythonFileUris(pythonZipUri);\n      builder.addFileUris(pythonZipUri);\n    }\n\n    if (args != null && args.size() != 0) {\n      builder.addAllArgs(args);\n    }\n\n    return builder;\n  }\n\n  private Job runAndWait(Job job, Duration timeout) throws Exception {\n    try (JobControllerClient jobControllerClient =\n        JobControllerClient.create(\n            JobControllerSettings.newBuilder().setEndpoint(DATAPROC_ENDPOINT).build())) {\n      Job request = jobControllerClient.submitJob(PROJECT_ID, REGION, job);\n      String jobId = request.getReference().getJobId();\n      CompletableFuture<Job> finishedJobFuture =\n          CompletableFuture.supplyAsync(\n              () -> waitForJobCompletion(jobControllerClient, PROJECT_ID, REGION, jobId));\n      Job jobInfo = finishedJobFuture.get(timeout.getSeconds(), TimeUnit.SECONDS);\n      return jobInfo;\n    }\n  }\n\n  Job waitForJobCompletion(\n      JobControllerClient jobControllerClient, String projectId, String region, String jobId) {\n    while (true) {\n      // Poll the service periodically until the Job is in a finished state.\n      Job jobInfo = jobControllerClient.getJob(projectId, region, jobId);\n      switch (jobInfo.getStatus().getState()) {\n        case DONE:\n        case CANCELLED:\n        case ERROR:\n          return jobInfo;\n        default:\n          try {\n            // Wait a second in between polling attempts.\n            TimeUnit.SECONDS.sleep(1);\n          } catch (InterruptedException e) {\n            throw new RuntimeException(e);\n          }\n      }\n    }\n  }\n\n  @FunctionalInterface\n  private interface ThrowingConsumer<T> {\n    void accept(T t) throws Exception;\n  }\n\n  protected static class ClusterProperty {\n    private String key;\n    private String value;\n    private String marker;\n\n    private ClusterProperty(String key, String value, String marker) {\n      this.key = key;\n      this.value = value;\n      this.marker = marker;\n    }\n\n    protected static ClusterProperty of(String key, String value, String marker) {\n      return new ClusterProperty(key, value, marker);\n    }\n\n    public String getKey() {\n      return key;\n    }\n\n    public String getValue() {\n      return value;\n    }\n\n    public String getMarker() {\n      return marker;\n    }\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/acceptance/DataprocServerlessAcceptanceTestBase.java",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\nimport static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestConstants.CONNECTOR_JAR_DIRECTORY;\nimport static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils.createBqDataset;\nimport static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils.deleteBqDatasetAndTables;\nimport static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils.generateClusterName;\nimport static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils.uploadConnectorJar;\n\nimport com.google.api.gax.longrunning.OperationFuture;\nimport com.google.api.gax.longrunning.OperationTimedPollAlgorithm;\nimport com.google.api.gax.retrying.RetrySettings;\nimport com.google.api.gax.retrying.TimedRetryAlgorithm;\nimport com.google.cloud.dataproc.v1.Batch;\nimport com.google.cloud.dataproc.v1.BatchControllerClient;\nimport com.google.cloud.dataproc.v1.BatchControllerSettings;\nimport com.google.cloud.dataproc.v1.BatchOperationMetadata;\nimport com.google.cloud.dataproc.v1.CreateBatchRequest;\nimport com.google.cloud.dataproc.v1.EnvironmentConfig;\nimport com.google.cloud.dataproc.v1.ExecutionConfig;\nimport com.google.cloud.dataproc.v1.PySparkBatch;\nimport com.google.cloud.dataproc.v1.RuntimeConfig;\nimport java.util.List;\nimport java.util.Locale;\nimport java.util.concurrent.TimeUnit;\nimport org.junit.After;\nimport org.junit.Before;\nimport org.threeten.bp.Duration;\n\npublic class DataprocServerlessAcceptanceTestBase {\n\n  BatchControllerClient batchController;\n  String testName =\n      getClass()\n          .getSimpleName()\n          .substring(0, getClass().getSimpleName().length() - 32)\n          .toLowerCase(Locale.ENGLISH);\n  String testId = String.format(\"%s-%s\", testName, System.currentTimeMillis());\n  String testBaseGcsDir = AcceptanceTestUtils.createTestBaseGcsDir(testId);\n  String connectorJarUri = testBaseGcsDir + \"/connector.jar\";\n  AcceptanceTestContext context =\n      new AcceptanceTestContext(\n          testId, generateClusterName(testId), testBaseGcsDir, connectorJarUri);\n\n  private final String connectorJarPrefix;\n  private final String s8sImageVersion;\n\n  public DataprocServerlessAcceptanceTestBase(String connectorJarPrefix, String s8sImageVersion) {\n    this.connectorJarPrefix = connectorJarPrefix;\n    this.s8sImageVersion = s8sImageVersion;\n  }\n\n  @Before\n  public void createBatchControllerClient() throws Exception {\n    uploadConnectorJar(CONNECTOR_JAR_DIRECTORY, connectorJarPrefix, context.connectorJarUri);\n    createBqDataset(context.bqDataset);\n\n    BatchControllerSettings.Builder batchControllerSettingsBuilder =\n        BatchControllerSettings.newBuilder().setEndpoint(AcceptanceTestConstants.DATAPROC_ENDPOINT);\n    TimedRetryAlgorithm timedRetryAlgorithm =\n        OperationTimedPollAlgorithm.create(\n            RetrySettings.newBuilder()\n                .setInitialRetryDelay(Duration.ofMillis(5000L))\n                .setRetryDelayMultiplier(1)\n                .setMaxRetryDelay(Duration.ofMillis(45000L))\n                .setInitialRpcTimeout(Duration.ZERO)\n                .setRpcTimeoutMultiplier(1.0)\n                .setMaxRpcTimeout(Duration.ofMillis(600000L))\n                .setTotalTimeout(Duration.ofMillis(600000L))\n                .build());\n    batchControllerSettingsBuilder\n        .createBatchOperationSettings()\n        .setPollingAlgorithm(timedRetryAlgorithm);\n\n    batchController = BatchControllerClient.create(batchControllerSettingsBuilder.build());\n  }\n\n  @After\n  public void tearDown() throws Exception {\n    batchController.close();\n    AcceptanceTestUtils.deleteGcsDir(context.testBaseGcsDir);\n    deleteBqDatasetAndTables(context.bqDataset);\n  }\n\n  protected Batch createAndRunPythonBatch(\n      AcceptanceTestContext context,\n      String testName,\n      String pythonFile,\n      String pythonZipUri,\n      List<String> args)\n      throws Exception {\n    AcceptanceTestUtils.uploadToGcs(\n        DataprocServerlessAcceptanceTestBase.class.getResourceAsStream(\"/acceptance/\" + pythonFile),\n        context.getScriptUri(testName),\n        \"text/x-python\");\n    String parent =\n        String.format(\n            \"projects/%s/locations/%s\",\n            AcceptanceTestConstants.PROJECT_ID, AcceptanceTestConstants.REGION);\n    Batch batch =\n        Batch.newBuilder()\n            .setName(parent + \"/batches/\" + context.clusterId)\n            .setPysparkBatch(createPySparkBatchBuilder(context, testName, pythonZipUri, args))\n            .setRuntimeConfig(\n                RuntimeConfig.newBuilder()\n                    .setVersion(s8sImageVersion)\n                    .putProperties(\"dataproc.sparkBqConnector.uri\", connectorJarUri))\n            .setEnvironmentConfig(\n                EnvironmentConfig.newBuilder()\n                    .setExecutionConfig(\n                        ExecutionConfig.newBuilder()\n                            .setNetworkUri(AcceptanceTestConstants.SERVERLESS_NETWORK_URI)))\n            .build();\n\n    OperationFuture<Batch, BatchOperationMetadata> batchAsync =\n        batchController.createBatchAsync(\n            CreateBatchRequest.newBuilder()\n                .setParent(parent)\n                .setBatchId(context.clusterId)\n                .setBatch(batch)\n                .build());\n\n    return batchAsync.get(\n        AcceptanceTestConstants.SERVERLESS_BATCH_TIMEOUT_IN_SECONDS, TimeUnit.SECONDS);\n  }\n\n  protected PySparkBatch.Builder createPySparkBatchBuilder(\n      AcceptanceTestContext context, String testName, String pythonZipUri, List<String> args) {\n    PySparkBatch.Builder builder =\n        PySparkBatch.newBuilder()\n            .setMainPythonFileUri(context.getScriptUri(testName))\n            .addJarFileUris(context.connectorJarUri);\n\n    if (pythonZipUri != null && pythonZipUri.length() != 0) {\n      builder.addPythonFileUris(pythonZipUri);\n      builder.addFileUris(pythonZipUri);\n    }\n\n    if (args != null && args.size() != 0) {\n      builder.addAllArgs(args);\n    }\n\n    return builder;\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/acceptance/ReadSheakspeareDataprocServerlessAcceptanceTestBase.java",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\nimport static com.google.common.truth.Truth.assertThat;\n\nimport com.google.cloud.dataproc.v1.Batch;\nimport com.google.cloud.dataproc.v1.Batch.State;\nimport java.util.Arrays;\nimport org.junit.Test;\n\n/** Tests basic functionality of the connector by reading a BigQuery table */\npublic class ReadSheakspeareDataprocServerlessAcceptanceTestBase\n    extends DataprocServerlessAcceptanceTestBase {\n\n  public ReadSheakspeareDataprocServerlessAcceptanceTestBase(\n      String connectorJarPrefix, String s8sImageVersion) {\n    super(connectorJarPrefix, s8sImageVersion);\n  }\n\n  @Test\n  public void testBatch() throws Exception {\n    Batch batch =\n        createAndRunPythonBatch(\n            context,\n            testName,\n            \"read_shakespeare.py\",\n            null,\n            Arrays.asList(context.getResultsDirUri(testName)));\n    assertThat(batch.getState()).isEqualTo(State.SUCCEEDED);\n    String output = AcceptanceTestUtils.getCsv(context.getResultsDirUri(testName));\n    assertThat(output.trim()).isEqualTo(\"spark,10\");\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/acceptance/WriteStreamDataprocServerlessAcceptanceTestBase.java",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\nimport static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils.getNumOfRowsOfBqTable;\nimport static com.google.common.truth.Truth.assertThat;\n\nimport com.google.cloud.dataproc.v1.Batch;\nimport com.google.cloud.dataproc.v1.Batch.State;\nimport java.util.Arrays;\nimport org.junit.Test;\n\n/** Test the writeStream support on an actual cluster. */\npublic class WriteStreamDataprocServerlessAcceptanceTestBase\n    extends DataprocServerlessAcceptanceTestBase {\n\n  public WriteStreamDataprocServerlessAcceptanceTestBase(\n      String connectorJarPrefix, String s8sImageVersion) {\n    super(connectorJarPrefix, s8sImageVersion);\n  }\n\n  @Test\n  public void testBatch() throws Exception {\n    String testName = \"write-stream-test\";\n    String jsonFileName = \"write_stream_data.json\";\n    String jsonFileUri = context.testBaseGcsDir + \"/\" + testName + \"/json/\" + jsonFileName;\n\n    AcceptanceTestUtils.uploadToGcs(\n        getClass().getResourceAsStream(\"/acceptance/\" + jsonFileName),\n        jsonFileUri,\n        \"application/json\");\n\n    Batch batch =\n        createAndRunPythonBatch(\n            context,\n            testName,\n            \"write_stream.py\",\n            null,\n            Arrays.asList(\n                context.testBaseGcsDir + \"/\" + testName + \"/json/\",\n                context.bqDataset,\n                context.bqStreamTable,\n                AcceptanceTestUtils.BUCKET));\n    assertThat(batch.getState()).isEqualTo(State.SUCCEEDED);\n\n    int numOfRows = getNumOfRowsOfBqTable(context.bqDataset, context.bqStreamTable);\n    assertThat(numOfRows).isEqualTo(2);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/direct/Scala213BigQueryRDDTest.java",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either exss or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.direct;\n\nimport static com.google.common.truth.Truth.assertThat;\n\nimport org.apache.spark.rdd.RDD;\nimport org.apache.spark.sql.SparkSession;\nimport org.apache.spark.sql.catalyst.InternalRow;\nimport org.junit.Test;\n\npublic class Scala213BigQueryRDDTest {\n\n  @Test\n  public void testCreateScala213BigQueryRDD() throws Exception {\n    SparkSession sparkSession =\n        SparkSession.builder().master(\"local\").appName(getClass().getName()).getOrCreate();\n\n    BigQueryRDDFactory factory =\n        new BigQueryRDDFactory(\n            null /* bigQueryClient */,\n            null /* bigQueryReadClientFactory */,\n            null /* bigQueryTracerFactory */,\n            null /* options */,\n            sparkSession.sqlContext());\n    RDD<InternalRow> result =\n        factory.createRDD(\n            sparkSession.sqlContext(),\n            null /* Partition[] */,\n            null /* ReadSession */,\n            null /* Schema */,\n            null /* columnsInOrder */,\n            null /* options */,\n            null /* bigQueryReadClientFactory */,\n            null /* bigQueryTracerFactory */);\n\n    assertThat(result).isInstanceOf(Scala213BigQueryRDD.class);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/integration/CatalogIntegrationTestBase.java",
    "content": "/*\n * Copyright 2025 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\nimport static com.google.common.truth.Truth.assertThat;\n\nimport com.google.cloud.bigquery.BigQuery;\nimport com.google.cloud.bigquery.Dataset;\nimport com.google.cloud.bigquery.DatasetId;\nimport com.google.cloud.bigquery.QueryJobConfiguration;\nimport com.google.cloud.bigquery.Table;\nimport com.google.cloud.bigquery.TableId;\nimport java.util.List;\nimport java.util.stream.Collectors;\nimport org.apache.spark.sql.Row;\nimport org.apache.spark.sql.RowFactory;\nimport org.apache.spark.sql.SparkSession;\nimport org.junit.After;\nimport org.junit.AfterClass;\nimport org.junit.Before;\nimport org.junit.BeforeClass;\nimport org.junit.ClassRule;\nimport org.junit.Ignore;\nimport org.junit.Test;\n\npublic class CatalogIntegrationTestBase {\n\n  public static final String DEFAULT_NAMESPACE = \"default\";\n  @ClassRule public static TestDataset testDataset = new TestDataset();\n\n  BigQuery bigquery = IntegrationTestUtils.getBigquery();\n\n  protected SparkSession spark;\n  private static SparkSession globalSpark;\n  private String testTable;\n\n  @BeforeClass\n  public static void setupGlobalSpark() {\n    globalSpark =\n        SparkSession.builder()\n            .appName(\"catalog test\")\n            .master(\"local[*]\")\n            .config(\"spark.sql.legacy.createHiveTableByDefault\", \"false\")\n            .config(\"spark.sql.sources.default\", \"bigquery\")\n            .config(\"spark.datasource.bigquery.writeMethod\", \"direct\")\n            .config(\"spark.sql.defaultCatalog\", \"bigquery\")\n            .config(\"spark.sql.catalog.bigquery\", \"com.google.cloud.spark.bigquery.BigQueryCatalog\")\n            .getOrCreate();\n  }\n\n  @AfterClass\n  public static void teardownGlobalSpark() {\n    if (globalSpark != null) {\n      globalSpark.stop();\n      globalSpark = null;\n    }\n  }\n\n  @Before\n  public void setupSparkSession() {\n    // We use newSession() to ensure that each test gets a fresh SparkSession with\n    // isolated\n    // SQL configurations (including catalog configs), preventing tests from\n    // interfering with\n    // each other's state. The underlying SparkContext is reused.\n    spark = globalSpark.newSession();\n  }\n\n  @After\n  public void teardownSparkSession() {\n    spark = null;\n  }\n\n  @Before\n  public void renameTestTable() {\n    testTable =\n        String.format(\n            \"test_%s_%s\",\n            Long.toHexString(System.currentTimeMillis()), Long.toHexString(System.nanoTime()));\n  }\n\n  @After\n  public void cleanTestTable() throws Exception {\n    Table table = bigquery.getTable(TableId.of(\"default\", testTable));\n    if (table != null) {\n      table.delete();\n    }\n  }\n\n  @Test\n  public void testCreateTableInDefaultNamespace() throws Exception {\n    internalTestCreateTable(DEFAULT_NAMESPACE);\n  }\n\n  @Test\n  public void testCreateTableInCustomNamespace() throws Exception {\n    internalTestCreateTable(testDataset.testDataset);\n  }\n\n  private void internalTestCreateTable(String dataset) throws InterruptedException {\n    assertThat(bigquery.getDataset(DatasetId.of(dataset))).isNotNull();\n    spark.sql(\"CREATE TABLE \" + fullTableName(dataset) + \"(id int, data string);\");\n    Table table = bigquery.getTable(TableId.of(dataset, testTable));\n    assertThat(table).isNotNull();\n    assertThat(selectCountStarFrom(dataset, testTable)).isEqualTo(0L);\n  }\n\n  @Test\n  public void testCreateTableAndInsertInDefaultNamespace() throws Exception {\n    internalTestCreateTableAndInsert(DEFAULT_NAMESPACE);\n  }\n\n  @Test\n  public void testCreateTableAndInsertInCustomNamespace() throws Exception {\n    internalTestCreateTableAndInsert(testDataset.testDataset);\n  }\n\n  private void internalTestCreateTableAndInsert(String dataset) throws InterruptedException {\n    assertThat(bigquery.getDataset(DatasetId.of(dataset))).isNotNull();\n    spark.sql(\"CREATE TABLE \" + fullTableName(dataset) + \"(id int, data string);\");\n    spark.sql(String.format(\"INSERT INTO `%s`.`%s` VALUES (1, 'foo');\", dataset, testTable));\n    Table table = bigquery.getTable(TableId.of(dataset, testTable));\n    assertThat(table).isNotNull();\n    assertThat(selectCountStarFrom(dataset, testTable)).isEqualTo(1L);\n  }\n\n  @Test\n  public void testCreateTableAsSelectInDefaultNamespace() throws Exception {\n    internalTestCreateTableAsSelect(DEFAULT_NAMESPACE);\n  }\n\n  @Test\n  public void testCreateTableAsSelectInCustomNamespace() throws Exception {\n    internalTestCreateTableAsSelect(testDataset.testDataset);\n  }\n\n  private void internalTestCreateTableAsSelect(String dataset) throws InterruptedException {\n    assertThat(bigquery.getDataset(DatasetId.of(dataset))).isNotNull();\n    spark.sql(\"CREATE TABLE \" + fullTableName(dataset) + \" AS SELECT 1 AS id, 'foo' AS data;\");\n    Table table = bigquery.getTable(TableId.of(dataset, testTable));\n    assertThat(table).isNotNull();\n    assertThat(selectCountStarFrom(dataset, testTable)).isEqualTo(1L);\n  }\n\n  @Test\n  @Ignore(\"unsupported\")\n  public void testCreateTableWithExplicitTargetInDefaultNamespace() throws Exception {\n    internalTestCreateTableWithExplicitTarget(DEFAULT_NAMESPACE);\n  }\n\n  @Test\n  @Ignore(\"unsupported\")\n  public void testCreateTableWithExplicitTargetInCustomNamespace() throws Exception {\n    internalTestCreateTableWithExplicitTarget(testDataset.testDataset);\n  }\n\n  private void internalTestCreateTableWithExplicitTarget(String dataset)\n      throws InterruptedException {\n    assertThat(bigquery.getDataset(DatasetId.of(dataset))).isNotNull();\n    spark.sql(\n        \"CREATE TABLE \"\n            + fullTableName(dataset)\n            + \" OPTIONS (table='bigquery-public-data.samples.shakespeare')\");\n    List<Row> result =\n        spark\n            .sql(\n                \"SELECT word, SUM(word_count) FROM \"\n                    + fullTableName(dataset)\n                    + \" WHERE word='spark' GROUP BY word;\")\n            .collectAsList();\n    assertThat(result).hasSize(1);\n    Row resultRow = result.get(0);\n    assertThat(resultRow.getString(0)).isEqualTo(\"spark\");\n    assertThat(resultRow.getLong(1)).isEqualTo(10L);\n  }\n\n  private String fullTableName(String dataset) {\n    return dataset.equals(DEFAULT_NAMESPACE)\n        ? \"`\" + testTable + \"`\"\n        : \"`\" + dataset + \"`.`\" + testTable + \"`\";\n  }\n\n  // this is needed as with direct write the table's metadata can e updated only after few minutes.\n  // Queries take pending data into account though.\n  private long selectCountStarFrom(String dataset, String table) throws InterruptedException {\n    return bigquery\n        .query(\n            QueryJobConfiguration.of(\n                String.format(\"SELECT COUNT(*) FROM `%s`.`%s`\", dataset, table)))\n        .getValues()\n        .iterator()\n        .next()\n        .get(0)\n        .getLongValue();\n  }\n\n  @Test\n  public void testReadFromDifferentBigQueryProject() throws Exception {\n    List<Row> df =\n        spark\n            .sql(\"SELECT * from `bigquery-public-data`.`samples`.`shakespeare` WHERE word='spark'\")\n            .collectAsList();\n    assertThat(df).hasSize(9);\n  }\n\n  @Test\n  public void testListNamespaces() throws Exception {\n    String database =\n        String.format(\"show_databases_test_%s_%s\", System.currentTimeMillis(), System.nanoTime());\n    DatasetId datasetId = DatasetId.of(database);\n    bigquery.create(Dataset.newBuilder(datasetId).build());\n    List<Row> databases = spark.sql(\"SHOW DATABASES\").collectAsList();\n    assertThat(databases).contains(RowFactory.create(database));\n    bigquery.delete(datasetId);\n  }\n\n  @Test\n  public void testCreateNamespace() throws Exception {\n    String database =\n        String.format(\"create_database_test_%s_%s\", System.currentTimeMillis(), System.nanoTime());\n    DatasetId datasetId = DatasetId.of(database);\n    spark.sql(\"CREATE DATABASE \" + database + \";\");\n    Dataset dataset = bigquery.getDataset(datasetId);\n    assertThat(dataset).isNotNull();\n    bigquery.delete(datasetId);\n  }\n\n  @Test\n  public void testCreateNamespaceWithLocation() throws Exception {\n    String database =\n        String.format(\"create_database_test_%s_%s\", System.currentTimeMillis(), System.nanoTime());\n    DatasetId datasetId = DatasetId.of(database);\n    spark.sql(\n        \"CREATE DATABASE \"\n            + database\n            + \" COMMENT 'foo' WITH DBPROPERTIES (bigquery_location = 'us-east1');\");\n    Dataset dataset = bigquery.getDataset(datasetId);\n    assertThat(dataset).isNotNull();\n    assertThat(dataset.getLocation()).isEqualTo(\"us-east1\");\n    assertThat(dataset.getDescription()).isEqualTo(\"foo\");\n    bigquery.delete(datasetId);\n  }\n\n  @Test\n  public void testDropDatabase() {\n    String database =\n        String.format(\"drop_database_test_%s_%s\", System.currentTimeMillis(), System.nanoTime());\n    DatasetId datasetId = DatasetId.of(database);\n    bigquery.create(Dataset.newBuilder(datasetId).build());\n    spark.sql(\"DROP DATABASE \" + database + \";\");\n    Dataset dataset = bigquery.getDataset(datasetId);\n    assertThat(dataset).isNull();\n  }\n\n  @Test\n  public void testCatalogInitializationWithProject() {\n    try {\n      spark\n          .conf()\n          .set(\n              \"spark.sql.catalog.public_catalog\",\n              \"com.google.cloud.spark.bigquery.BigQueryCatalog\");\n      // Use 'projectId' instead of 'project' - this is the correct property name\n      spark.conf().set(\"spark.sql.catalog.public_catalog.projectId\", \"bigquery-public-data\");\n\n      // Add a small delay to ensure catalog is fully initialized\n      Thread.sleep(2000);\n\n      // Verify catalog is accessible before querying\n      try {\n        spark.sql(\"USE public_catalog\");\n      } catch (Exception e) {\n        // Catalog might not support USE, that's okay\n      }\n\n      List<Row> rows = spark.sql(\"SHOW DATABASES IN public_catalog\").collectAsList();\n      List<String> databaseNames =\n          rows.stream().map(row -> row.getString(0)).collect(Collectors.toList());\n      assertThat(databaseNames).contains(\"samples\");\n\n      List<Row> data =\n          spark.sql(\"SELECT * FROM public_catalog.samples.shakespeare LIMIT 10\").collectAsList();\n      assertThat(data).hasSize(10);\n    } catch (Exception e) {\n      // Log the full stack trace to help debug cloud build failures\n      e.printStackTrace();\n      throw new RuntimeException(\"Test failed with detailed error\", e);\n    } finally {\n      // Clean up catalog configuration to avoid interference with other tests\n      try {\n        spark.conf().unset(\"spark.sql.catalog.public_catalog\");\n        spark.conf().unset(\"spark.sql.catalog.public_catalog.projectId\");\n      } catch (Exception ignored) {\n      }\n    }\n  }\n\n  @Test\n  public void testCreateCatalogWithLocation() throws Exception {\n    String database = String.format(\"create_db_with_location_%s\", System.nanoTime());\n    DatasetId datasetId = DatasetId.of(database);\n    try {\n      spark\n          .conf()\n          .set(\n              \"spark.sql.catalog.test_location_catalog\",\n              \"com.google.cloud.spark.bigquery.BigQueryCatalog\");\n      spark.conf().set(\"spark.sql.catalog.test_location_catalog.bigquery_location\", \"EU\");\n\n      // Add delay for catalog initialization\n      Thread.sleep(2000);\n\n      spark.sql(\"CREATE DATABASE test_location_catalog.\" + database);\n      Dataset dataset = bigquery.getDataset(datasetId);\n      assertThat(dataset).isNotNull();\n      assertThat(dataset.getLocation()).isEqualTo(\"EU\");\n    } finally {\n      bigquery.delete(datasetId, BigQuery.DatasetDeleteOption.deleteContents());\n      // Clean up catalog configuration\n      try {\n        spark.conf().unset(\"spark.sql.catalog.test_location_catalog\");\n        spark.conf().unset(\"spark.sql.catalog.test_location_catalog.bigquery_location\");\n      } catch (Exception ignored) {\n      }\n    }\n  }\n\n  @Test\n  public void testCreateTableAsSelectWithProjectAndLocation() {\n    String database = String.format(\"ctas_db_with_location_%s\", System.nanoTime());\n    String newTable = \"ctas_table_from_public\";\n    DatasetId datasetId = DatasetId.of(database);\n    try {\n      spark\n          .conf()\n          .set(\n              \"spark.sql.catalog.public_catalog\",\n              \"com.google.cloud.spark.bigquery.BigQueryCatalog\");\n      // Use 'projectId' instead of 'project'\n      spark.conf().set(\"spark.sql.catalog.public_catalog.projectId\", \"bigquery-public-data\");\n      spark\n          .conf()\n          .set(\n              \"spark.sql.catalog.test_catalog_as_select\",\n              \"com.google.cloud.spark.bigquery.BigQueryCatalog\");\n      spark.conf().set(\"spark.sql.catalog.test_catalog_as_select.bigquery_location\", \"EU\");\n\n      // Add delay for catalog initialization\n      Thread.sleep(2000);\n\n      spark.sql(\"CREATE DATABASE test_catalog_as_select.\" + database);\n\n      // Add another small delay after database creation\n      Thread.sleep(1000);\n\n      spark.sql(\n          \"CREATE TABLE test_catalog_as_select.\"\n              + database\n              + \".\"\n              + newTable\n              + \" AS SELECT * FROM public_catalog.samples.shakespeare LIMIT 10\");\n      Dataset dataset = bigquery.getDataset(datasetId);\n      assertThat(dataset).isNotNull();\n      assertThat(dataset.getLocation()).isEqualTo(\"EU\");\n      Table table = bigquery.getTable(TableId.of(datasetId.getDataset(), newTable));\n      assertThat(table).isNotNull();\n    } catch (Exception e) {\n      e.printStackTrace();\n      throw new RuntimeException(\"Test failed with detailed error\", e);\n    } finally {\n      bigquery.delete(datasetId, BigQuery.DatasetDeleteOption.deleteContents());\n      // Clean up catalog configurations\n      try {\n        spark.conf().unset(\"spark.sql.catalog.public_catalog\");\n        spark.conf().unset(\"spark.sql.catalog.public_catalog.projectId\");\n        spark.conf().unset(\"spark.sql.catalog.test_catalog_as_select\");\n        spark.conf().unset(\"spark.sql.catalog.test_catalog_as_select.bigquery_location\");\n      } catch (Exception ignored) {\n      }\n    }\n  }\n\n  private static SparkSession createSparkSession() {\n    return SparkSession.builder()\n        .appName(\"catalog test\")\n        .master(\"local[*]\")\n        .config(\"spark.sql.legacy.createHiveTableByDefault\", \"false\")\n        .config(\"spark.sql.sources.default\", \"bigquery\")\n        .config(\"spark.datasource.bigquery.writeMethod\", \"direct\")\n        .config(\"spark.sql.defaultCatalog\", \"bigquery\")\n        .config(\"spark.sql.catalog.bigquery\", \"com.google.cloud.spark.bigquery.BigQueryCatalog\")\n        .getOrCreate();\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/integration/IntegrationTestUtils.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\nimport static com.google.common.truth.Truth.assertThat;\nimport static com.google.common.truth.Truth.assertWithMessage;\n\nimport com.google.cloud.bigquery.BigQuery;\nimport com.google.cloud.bigquery.BigQueryOptions;\nimport com.google.cloud.bigquery.DatasetId;\nimport com.google.cloud.bigquery.DatasetInfo;\nimport com.google.cloud.bigquery.ExternalTableDefinition;\nimport com.google.cloud.bigquery.FormatOptions;\nimport com.google.cloud.bigquery.Table;\nimport com.google.cloud.bigquery.TableDefinition;\nimport com.google.cloud.bigquery.TableId;\nimport com.google.cloud.bigquery.TableInfo;\nimport com.google.cloud.bigquery.TableResult;\nimport com.google.cloud.bigquery.ViewDefinition;\nimport com.google.cloud.bigquery.connector.common.BigQueryClient;\nimport com.google.cloud.spark.bigquery.SchemaConverters;\nimport com.google.cloud.spark.bigquery.SchemaConvertersConfiguration;\nimport com.google.cloud.spark.bigquery.SparkBigQueryConfig;\nimport com.google.common.cache.Cache;\nimport com.google.common.cache.CacheBuilder;\nimport com.google.common.collect.ImmutableMap;\nimport java.util.Optional;\nimport java.util.concurrent.TimeUnit;\nimport org.apache.spark.sql.Row;\nimport org.apache.spark.sql.SparkSession;\nimport org.apache.spark.sql.types.Metadata;\nimport org.apache.spark.sql.types.MetadataBuilder;\nimport org.apache.spark.sql.types.StructField;\nimport org.apache.spark.sql.types.StructType;\nimport org.slf4j.Logger;\nimport org.slf4j.LoggerFactory;\n\npublic class IntegrationTestUtils {\n\n  static Logger logger = LoggerFactory.getLogger(IntegrationTestUtils.class);\n\n  private static Cache<String, TableInfo> destinationTableCache =\n      CacheBuilder.newBuilder().expireAfterWrite(15, TimeUnit.MINUTES).maximumSize(1000).build();\n\n  public static BigQuery getBigquery() {\n    return BigQueryOptions.getDefaultInstance().getService();\n  }\n\n  private static BigQueryClient getBigQueryClient() {\n    return new BigQueryClient(\n        getBigquery(),\n        Optional.empty(),\n        Optional.empty(),\n        destinationTableCache,\n        ImmutableMap.of(),\n        SparkBigQueryConfig.DEFAULT_JOB_PRIORITY,\n        Optional.empty(),\n        6 * 60);\n  }\n\n  public static void createDataset(String dataset) {\n    BigQuery bq = getBigquery();\n    DatasetId datasetId = DatasetId.of(dataset);\n    logger.warn(\"Creating test dataset: {}\", datasetId);\n    bq.create(DatasetInfo.of(datasetId));\n  }\n\n  public static TableResult runQuery(String query) {\n    return getBigQueryClient().query(query);\n  }\n\n  public static void runQuery(String query, Object... args) {\n    getBigQueryClient().query(String.format(query, args));\n  }\n\n  public static Iterable<Table> listTables(DatasetId datasetId, TableDefinition.Type... types) {\n    return getBigQueryClient().listTables(datasetId, types);\n  }\n\n  public static void createBigLakeTable(\n      String dataset,\n      String table,\n      StructType schema,\n      String sourceURI,\n      FormatOptions formatOptions) {\n    BigQuery bq = getBigquery();\n    TableId tableId = TableId.of(dataset, table);\n    TableInfo tableInfo =\n        TableInfo.newBuilder(\n                tableId,\n                ExternalTableDefinition.newBuilder(\n                        sourceURI,\n                        SchemaConverters.from(SchemaConvertersConfiguration.createDefault())\n                            .toBigQuerySchema(schema),\n                        formatOptions)\n                    .setConnectionId(TestConstants.BIGLAKE_CONNECTION_ID)\n                    .build())\n            .build();\n    bq.create(tableInfo);\n  }\n\n  public static void deleteDatasetAndTables(String dataset) {\n    BigQuery bq = getBigquery();\n    logger.warn(\"Deleting test dataset '{}' and its contents\", dataset);\n    bq.delete(DatasetId.of(dataset), BigQuery.DatasetDeleteOption.deleteContents());\n  }\n\n  static Metadata metadata(String key, String value) {\n    MetadataBuilder metadata = new MetadataBuilder();\n    metadata.putString(key, value);\n    return metadata.build();\n  }\n\n  static SparkSession getOrCreateSparkSession(String applicationName) {\n    return SparkSession.builder().appName(applicationName).master(\"local\").getOrCreate();\n  }\n\n  static void createView(String dataset, String view) {\n    BigQuery bq = getBigquery();\n    String query = \"SELECT * FROM `bigquery-public-data.samples.shakespeare`\";\n    TableId tableId = TableId.of(dataset, view);\n    ViewDefinition viewDefinition = ViewDefinition.newBuilder(query).setUseLegacySql(false).build();\n    bq.create(TableInfo.of(tableId, viewDefinition));\n  }\n\n  public static void compareRows(Row row, Row expected) {\n    for (int i = 0; i < expected.length(); i++) {\n      // if (i == TestConstants.BIG_NUMERIC_COLUMN_POSITION) {\n      // TODO: Restore this code after\n      //  https://github.com/GoogleCloudDataproc/spark-bigquery-connector/issues/446\n      //  is fixed\n      //\n      // for (int j = 0; j < 2; j++) {\n      //   String bigNumericString = getBigNumericString(row, i, j);\n      //   String expectedBigNumericString = getBigNumericString(expected, i, j);\n      //   assertThat(bigNumericString).isEqualTo(expectedBigNumericString);\n      // }\n      // } else {\n      Object value = row.get(i);\n      assertWithMessage(\"value of field \" + expected.schema().fields()[i])\n          .that(value)\n          .isEqualTo(expected.get(i));\n      //     }\n    }\n  }\n\n  public static void compareBigNumericDataSetSchema(\n      StructType actualSchema, StructType expectedSchema) {\n\n    StructField[] actualFields = actualSchema.fields();\n    StructField[] expectedFields = expectedSchema.fields();\n\n    for (int i = 0; i < actualFields.length; i++) {\n      StructField actualField = actualFields[i];\n      StructField expectedField = expectedFields[i];\n      assertThat(actualField).isEqualTo(expectedField);\n      // TODO: Restore this code after\n      //  https://github.com/GoogleCloudDataproc/spark-bigquery-connector/issues/446\n      //  is fixed\n      //\n      // if (i == TestConstants.BIG_NUMERIC_COLUMN_POSITION) {\n      //   for (int j = 0; j < 2; j++) {\n      //     DataType actualFieldDataType = ((StructType) actualField.dataType()).fields()[j]\n      //         .dataType();\n      //     DataType expectedFieldDataType = ((StructType) expectedField.dataType()).fields()[j]\n      //         .dataType();\n      //     assertThat(actualFieldDataType).isEqualTo(DataTypes.StringType);\n      //     assertThat(expectedFieldDataType).isEqualTo(BigQueryDataTypes.BigNumericType);\n      //   }\n      //\n      // } else {\n      //   assertThat(actualField).isEqualTo(expectedField);\n      // }\n    }\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/integration/OpenLineageIntegrationTestBase.java",
    "content": "/*\n * Copyright 2024 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\nimport static com.google.common.truth.Truth.assertThat;\n\nimport java.io.File;\nimport java.io.FileNotFoundException;\nimport java.io.PrintWriter;\nimport java.util.ArrayList;\nimport java.util.List;\nimport java.util.Scanner;\nimport org.apache.spark.sql.Dataset;\nimport org.apache.spark.sql.Row;\nimport org.apache.spark.sql.SaveMode;\nimport org.apache.spark.sql.SparkSession;\nimport org.json.JSONObject;\nimport org.junit.After;\nimport org.junit.Before;\nimport org.junit.ClassRule;\nimport org.junit.Test;\nimport org.junit.rules.ExternalResource;\n\npublic class OpenLineageIntegrationTestBase {\n  @ClassRule public static TestDataset testDataset = new TestDataset();\n\n  @ClassRule public static CustomSessionFactory sessionFactory = new CustomSessionFactory();\n\n  protected SparkSession spark;\n  protected String testTable;\n  protected File lineageFile;\n\n  public OpenLineageIntegrationTestBase() {\n    this.spark = sessionFactory.spark;\n    this.lineageFile = sessionFactory.lineageFile;\n  }\n\n  @Before\n  public void createTestTable() {\n    testTable = \"test_\" + System.nanoTime();\n  }\n\n  @After\n  public void clearLineageFile() throws FileNotFoundException {\n    PrintWriter pw = new PrintWriter(lineageFile);\n    pw.close();\n  }\n\n  protected static class CustomSessionFactory extends ExternalResource {\n    SparkSession spark;\n    File lineageFile;\n\n    @Override\n    protected void before() throws Throwable {\n      lineageFile = File.createTempFile(\"openlineage_test_\" + System.nanoTime(), \".log\");\n      lineageFile.deleteOnExit();\n      spark =\n          SparkSession.builder()\n              .master(\"local\")\n              .appName(\"openlineage_test_bigquery_connector\")\n              .config(\"spark.ui.enabled\", \"false\")\n              .config(\"spark.default.parallelism\", 20)\n              .config(\"spark.extraListeners\", \"io.openlineage.spark.agent.OpenLineageSparkListener\")\n              .config(\"spark.openlineage.transport.type\", \"file\")\n              .config(\"spark.openlineage.transport.location\", lineageFile.getAbsolutePath())\n              .getOrCreate();\n      spark.sparkContext().setLogLevel(\"WARN\");\n    }\n  }\n\n  private List<JSONObject> parseEventLogs(File file) throws Exception {\n    // Adding a 1-second cushion, as it takes some time for all OpenLineage events to be emitted and\n    // saved to the file\n    Thread.sleep(1000);\n    List<JSONObject> eventList;\n    try (Scanner scanner = new Scanner(file)) {\n      eventList = new ArrayList<>();\n      while (scanner.hasNextLine()) {\n        String line = scanner.nextLine();\n        JSONObject event = new JSONObject(line);\n        if (!event.getJSONArray(\"inputs\").isEmpty() && !event.getJSONArray(\"outputs\").isEmpty()) {\n          eventList.add(event);\n        }\n      }\n    }\n    return eventList;\n  }\n\n  private String getFieldName(JSONObject event, String field) {\n    JSONObject eventField = (JSONObject) event.getJSONArray(field).get(0);\n    return eventField.getString(\"name\");\n  }\n\n  @Test\n  public void testLineageEvent() throws Exception {\n    String fullTableName =\n        TestConstants.PROJECT_ID + \".\" + testDataset.toString() + \".\" + testTable;\n    Dataset<Row> readDF =\n        spark.read().format(\"bigquery\").option(\"table\", TestConstants.SHAKESPEARE_TABLE).load();\n    readDF.createOrReplaceTempView(\"words\");\n    Dataset<Row> writeDF =\n        spark.sql(\"SELECT word, SUM(word_count) AS word_count FROM words GROUP BY word\");\n    writeDF\n        .write()\n        .format(\"bigquery\")\n        .mode(SaveMode.Append)\n        .option(\"table\", fullTableName)\n        .option(\"temporaryGcsBucket\", TestConstants.TEMPORARY_GCS_BUCKET)\n        .option(\"writeMethod\", \"direct\")\n        .save();\n    List<JSONObject> eventList = parseEventLogs(lineageFile);\n    assertThat(eventList)\n        .isNotEmpty(); // check if there is at least one event with both input and output\n    eventList.forEach(\n        (event) -> { // check if each of these events have the correct input and output\n          assertThat(getFieldName(event, \"inputs\")).matches(TestConstants.SHAKESPEARE_TABLE);\n          assertThat(getFieldName(event, \"outputs\")).matches(fullTableName);\n        });\n  }\n\n  @Test\n  public void testLineageEventWithQueryInput() throws Exception {\n    String fullTableName =\n        TestConstants.PROJECT_ID + \".\" + testDataset.toString() + \".\" + testTable;\n    Dataset<Row> readDF =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"viewsEnabled\", true)\n            .option(\"materializationDataset\", testDataset.toString())\n            .option(\"query\", \"SELECT * FROM `bigquery-public-data.samples.shakespeare`\")\n            .load();\n\n    readDF.createOrReplaceTempView(\"words\");\n    Dataset<Row> writeDF =\n        spark.sql(\"SELECT word, SUM(word_count) AS word_count FROM words GROUP BY word\");\n    writeDF\n        .write()\n        .format(\"bigquery\")\n        .mode(SaveMode.Append)\n        .option(\"table\", fullTableName)\n        .option(\"temporaryGcsBucket\", TestConstants.TEMPORARY_GCS_BUCKET)\n        .option(\"writeMethod\", \"direct\")\n        .save();\n    List<JSONObject> eventList = parseEventLogs(lineageFile);\n    assertThat(eventList)\n        .isNotEmpty(); // check if there is at least one event with both input and output\n    eventList.forEach(\n        (event) -> { // check if each of these events have the correct input and output\n          assertThat(getFieldName(event, \"inputs\")).matches(TestConstants.SHAKESPEARE_TABLE);\n          assertThat(getFieldName(event, \"outputs\")).matches(fullTableName);\n        });\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/integration/ReadByFormatIntegrationTestBase.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\nimport static com.google.cloud.spark.bigquery.integration.TestConstants.GA4_TABLE;\nimport static com.google.common.truth.Truth.assertThat;\nimport static org.apache.spark.sql.functions.col;\nimport static org.apache.spark.sql.functions.concat;\nimport static org.apache.spark.sql.functions.lit;\nimport static org.apache.spark.sql.functions.row_number;\nimport static org.hamcrest.CoreMatchers.is;\nimport static org.junit.Assume.assumeThat;\nimport static org.junit.Assume.assumeTrue;\n\nimport com.google.cloud.bigquery.BigQuery;\nimport com.google.cloud.bigquery.Field;\nimport com.google.cloud.bigquery.FieldList;\nimport com.google.cloud.bigquery.LegacySQLTypeName;\nimport com.google.cloud.bigquery.Schema;\nimport com.google.cloud.bigquery.StandardTableDefinition;\nimport com.google.cloud.bigquery.TableId;\nimport com.google.cloud.bigquery.TableInfo;\nimport com.google.cloud.spark.bigquery.integration.model.ColumnOrderTestClass;\nimport com.google.common.collect.ImmutableMap;\nimport com.google.common.collect.ImmutableSet;\nimport com.google.common.collect.Iterators;\nimport java.time.LocalDateTime;\nimport java.util.Arrays;\nimport java.util.List;\nimport java.util.Map;\nimport java.util.Optional;\nimport java.util.Set;\nimport java.util.stream.Collectors;\nimport org.apache.spark.sql.Dataset;\nimport org.apache.spark.sql.Encoders;\nimport org.apache.spark.sql.Row;\nimport org.apache.spark.sql.expressions.Window;\nimport org.apache.spark.sql.expressions.WindowSpec;\nimport org.apache.spark.sql.types.DataType;\nimport org.apache.spark.sql.types.DataTypes;\nimport org.apache.spark.sql.types.StructField;\nimport org.apache.spark.sql.types.StructType;\nimport org.junit.Test;\n\npublic class ReadByFormatIntegrationTestBase extends SparkBigQueryIntegrationTestBase {\n\n  private static final int LARGE_TABLE_NUMBER_OF_PARTITIONS = 138;\n  protected final String dataFormat;\n  protected final boolean userProvidedSchemaAllowed;\n  protected Optional<DataType> timeStampNTZType;\n\n  public ReadByFormatIntegrationTestBase(String dataFormat) {\n    this(dataFormat, true, Optional.empty());\n  }\n\n  public ReadByFormatIntegrationTestBase(String dataFormat, boolean userProvidedSchemaAllowed) {\n    this(dataFormat, userProvidedSchemaAllowed, Optional.empty());\n  }\n\n  public ReadByFormatIntegrationTestBase(\n      String dataFormat, boolean userProvidedSchemaAllowed, DataType timestampNTZType) {\n    this(dataFormat, userProvidedSchemaAllowed, Optional.of(timestampNTZType));\n  }\n\n  public ReadByFormatIntegrationTestBase(\n      String dataFormat, boolean userProvidedSchemaAllowed, Optional<DataType> timestampNTZType) {\n    super();\n    this.dataFormat = dataFormat;\n    this.userProvidedSchemaAllowed = userProvidedSchemaAllowed;\n    this.timeStampNTZType = timestampNTZType;\n  }\n\n  @Test\n  public void testViewWithDifferentColumnsForSelectAndFilter() {\n\n    Dataset<Row> df = getViewDataFrame();\n\n    // filer and select are pushed down to BQ\n    List<Row> result = df.select(\"corpus\").filter(\"word = 'spark'\").collectAsList();\n\n    assertThat(result).hasSize(9);\n    List<Row> filteredResult =\n        result.stream()\n            .filter(row -> \"hamlet\".equals(row.getString(0)))\n            .collect(Collectors.toList());\n    assertThat(filteredResult).hasSize(1);\n  }\n\n  @Test\n  public void testCachedViewWithDifferentColumnsForSelectAndFilter() {\n\n    Dataset<Row> df = getViewDataFrame();\n    Dataset<Row> cachedDF = df.cache();\n\n    // filter and select are run on the spark side as the view was cached\n    List<Row> result = cachedDF.select(\"corpus\").filter(\"word = 'spark'\").collectAsList();\n\n    assertThat(result).hasSize(9);\n    List<Row> filteredResult =\n        result.stream()\n            .filter(row -> \"hamlet\".equals(row.getString(0)))\n            .collect(Collectors.toList());\n    assertThat(filteredResult).hasSize(1);\n  }\n\n  @Test\n  public void testOutOfOrderColumns() {\n    Row row =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"table\", TestConstants.SHAKESPEARE_TABLE)\n            .option(\"readDataFormat\", dataFormat)\n            .load()\n            .select(\"word_count\", \"word\")\n            .head();\n    assertThat(row.get(0)).isInstanceOf(Long.class);\n    assertThat(row.get(1)).isInstanceOf(String.class);\n  }\n\n  @Test\n  public void testSelectAllColumnsFromATable() {\n    Row row =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"table\", TestConstants.SHAKESPEARE_TABLE)\n            .option(\"readDataFormat\", dataFormat)\n            .load()\n            .select(\"word_count\", \"word\", \"corpus\", \"corpus_date\")\n            .head();\n    assertThat(row.get(0)).isInstanceOf(Long.class);\n    assertThat(row.get(1)).isInstanceOf(String.class);\n    assertThat(row.get(2)).isInstanceOf(String.class);\n    assertThat(row.get(3)).isInstanceOf(Long.class);\n  }\n\n  @Test\n  public void testNumberOfPartitions() {\n    Dataset<Row> df =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"table\", TestConstants.LARGE_TABLE)\n            .option(\"maxParallelism\", \"5\")\n            .option(\"preferredMinParallelism\", \"5\")\n            .option(\"readDataFormat\", dataFormat)\n            .load();\n    assertThat(df.rdd().getNumPartitions()).isEqualTo(5);\n  }\n\n  @Test\n  public void testDefaultNumberOfPartitions() {\n    Dataset<Row> df =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"table\", TestConstants.LARGE_TABLE)\n            .option(\"readDataFormat\", dataFormat)\n            .load();\n\n    assertThat(df.rdd().getNumPartitions()).isEqualTo(LARGE_TABLE_NUMBER_OF_PARTITIONS);\n  }\n\n  @Test(timeout = 300_000)\n  public void testBalancedPartitions() {\n    // Select first partition\n    Dataset<Row> df =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"maxParallelism\", \"5\")\n            .option(\"preferredMinParallelism\", \"5\")\n            .option(\"readDataFormat\", dataFormat)\n            .option(\"filter\", \"year > 2000\")\n            .load(TestConstants.LARGE_TABLE)\n            .select(TestConstants.LARGE_TABLE_FIELD); // minimize payload\n    long sizeOfFirstPartition =\n        df.rdd()\n            .toJavaRDD()\n            .mapPartitions(rows -> Arrays.asList(Iterators.size(rows)).iterator())\n            .collect()\n            .get(0)\n            .longValue();\n\n    // Since we are only reading from a single stream, we can expect to get\n    // at least as many rows\n    // in that stream as a perfectly uniform distribution would command.\n    // Note that the assertion\n    // is on a range of rows because rows are assigned to streams on the\n    // server-side in\n    // indivisible units of many rows.\n\n    long idealPartitionSize = TestConstants.LARGE_TABLE_NUM_ROWS / df.rdd().getNumPartitions();\n    assertThat(sizeOfFirstPartition).isAtLeast((int) (idealPartitionSize * 0.9));\n    assertThat(sizeOfFirstPartition).isAtMost((int) (idealPartitionSize * 1.1));\n  }\n\n  @Test\n  public void testKeepingFiltersBehaviour() {\n    Set<String> newBehaviourWords =\n        extractWords(\n            spark\n                .read()\n                .format(\"bigquery\")\n                .option(\"table\", \"bigquery-public-data.samples.shakespeare\")\n                .option(\"filter\", \"length(word) = 1\")\n                .option(\"combinePushedDownFilters\", \"true\")\n                .option(\"readDataFormat\", dataFormat)\n                .load());\n\n    Set<String> oldBehaviourWords =\n        extractWords(\n            spark\n                .read()\n                .format(\"bigquery\")\n                .option(\"table\", \"bigquery-public-data.samples.shakespeare\")\n                .option(\"filter\", \"length(word) = 1\")\n                .option(\"combinePushedDownFilters\", \"false\")\n                .option(\"readDataFormat\", dataFormat)\n                .load());\n\n    assertThat(newBehaviourWords).isEqualTo(oldBehaviourWords);\n  }\n\n  @Test\n  public void testColumnOrderOfStruct() {\n    assumeTrue(\"user provided schema is not allowed for this connector\", userProvidedSchemaAllowed);\n    StructType schema = Encoders.bean(ColumnOrderTestClass.class).schema();\n\n    Dataset<ColumnOrderTestClass> dataset =\n        spark\n            .read()\n            .schema(schema)\n            .option(\"dataset\", testDataset.toString())\n            .option(\"table\", TestConstants.STRUCT_COLUMN_ORDER_TEST_TABLE_NAME)\n            .format(\"bigquery\")\n            .option(\"readDataFormat\", dataFormat)\n            .load()\n            .as(Encoders.bean(ColumnOrderTestClass.class));\n\n    ColumnOrderTestClass row = dataset.head();\n    assertThat(row).isEqualTo(TestConstants.STRUCT_COLUMN_ORDER_TEST_TABLE_COLS);\n  }\n\n  @Test\n  public void testConvertBigQueryMapToSparkMap() throws Exception {\n    BigQuery bigQuery = IntegrationTestUtils.getBigquery();\n    bigQuery.create(\n        TableInfo.newBuilder(\n                TableId.of(testDataset.toString(), testTable),\n                StandardTableDefinition.of(\n                    Schema.of(\n                        Field.newBuilder(\n                                \"map_field\",\n                                LegacySQLTypeName.RECORD,\n                                FieldList.of(\n                                    Field.newBuilder(\"key\", LegacySQLTypeName.STRING)\n                                        .setMode(Field.Mode.REQUIRED)\n                                        .build(),\n                                    Field.of(\"value\", LegacySQLTypeName.INTEGER)))\n                            .setMode(Field.Mode.REPEATED)\n                            .build())))\n            .build());\n    IntegrationTestUtils.runQuery(\n        String.format(\n            \"INSERT INTO %s.%s VALUES \"\n                + \"([STRUCT('a' as key, 1 as value),STRUCT('b' as key, 2 as value)]),\"\n                + \"([STRUCT('c' as key, 3 as value)])\",\n            testDataset, testTable));\n\n    Dataset<Row> df =\n        spark.read().format(\"bigquery\").load(String.format(\"%s.%s\", testDataset, testTable));\n    StructType schema = df.schema();\n    assertThat(schema.size()).isEqualTo(1);\n    StructField mapField = schema.apply(\"map_field\");\n    assertThat(mapField).isNotNull();\n    assertThat(mapField.dataType())\n        .isEqualTo(DataTypes.createMapType(DataTypes.StringType, DataTypes.LongType));\n    List<Row> rowList = df.collectAsList();\n    assertThat(rowList).hasSize(2);\n    List<Map<?, ?>> result =\n        rowList.stream().map(row -> scalaMapToJavaMap(row.getMap(0))).collect(Collectors.toList());\n    assertThat(result).contains(ImmutableMap.of(\"a\", Long.valueOf(1), \"b\", Long.valueOf(2)));\n    assertThat(result).contains(ImmutableMap.of(\"c\", Long.valueOf(3)));\n  }\n\n  @Test\n  public void testTimestampNTZReadFromBigQuery() {\n    assumeThat(timeStampNTZType.isPresent(), is(true));\n    BigQuery bigQuery = IntegrationTestUtils.getBigquery();\n    LocalDateTime dateTime = LocalDateTime.of(2023, 9, 18, 14, 30, 15, 234 * 1_000_000);\n    bigQuery.create(\n        TableInfo.newBuilder(\n                TableId.of(testDataset.toString(), testTable),\n                StandardTableDefinition.of(Schema.of(Field.of(\"foo\", LegacySQLTypeName.DATETIME))))\n            .build());\n    IntegrationTestUtils.runQuery(\n        String.format(\n            \"INSERT INTO %s.%s (foo) VALUES \" + \"('%s')\", testDataset, testTable, dateTime));\n\n    Dataset<Row> df =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"dataset\", testDataset.toString())\n            .option(\"table\", testTable)\n            .load();\n    StructType schema = df.schema();\n    assertThat(schema.apply(\"foo\").dataType()).isEqualTo(timeStampNTZType.get());\n    Row row = df.head();\n    assertThat(row.get(0)).isEqualTo(dateTime);\n  }\n\n  @Test\n  public void testWindowFunctionPartitionBy() {\n    WindowSpec windowSpec =\n        Window.partitionBy(\"user_pseudo_id\", \"event_timestamp\", \"event_name\")\n            .orderBy(\"event_bundle_sequence_id\");\n\n    Dataset<Row> df =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"table\", GA4_TABLE)\n            .option(\"readDataFormat\", dataFormat)\n            .load()\n            .withColumn(\"row_num\", row_number().over(windowSpec));\n\n    Dataset<Row> selectedDF =\n        df.select(\"user_pseudo_id\", \"event_name\", \"event_timestamp\", \"row_num\");\n\n    assertThat(selectedDF.columns().length).isEqualTo(4);\n    assertThat(\n            Arrays.stream(df.schema().fields())\n                .filter(field -> field.name().equals(\"row_num\"))\n                .count())\n        .isEqualTo(1);\n    assertThat(selectedDF.head().get(3)).isEqualTo(1);\n  }\n\n  @Test\n  public void testWindowFunctionPartitionByWithArray() {\n    assumeTrue(\"This test only works for AVRO dataformat\", dataFormat.equals(\"AVRO\"));\n    WindowSpec windowSpec =\n        Window.partitionBy(concat(col(\"user_pseudo_id\"), col(\"event_timestamp\"), col(\"event_name\")))\n            .orderBy(lit(\"window_ordering\"));\n\n    Dataset<Row> df =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"table\", GA4_TABLE)\n            .option(\"readDataFormat\", dataFormat)\n            .load()\n            .withColumn(\"row_num\", row_number().over(windowSpec));\n\n    Dataset<Row> selectedDF =\n        df.select(\"user_pseudo_id\", \"event_name\", \"event_timestamp\", \"event_params\", \"row_num\");\n\n    assertThat(selectedDF.columns().length).isEqualTo(5);\n    assertThat(\n            Arrays.stream(df.schema().fields())\n                .filter(field -> field.name().equals(\"row_num\"))\n                .count())\n        .isEqualTo(1);\n    assertThat(selectedDF.head().get(4)).isEqualTo(1);\n  }\n\n  static <K, V> Map<K, V> scalaMapToJavaMap(scala.collection.Map<K, V> map) {\n    ImmutableMap.Builder<K, V> result = ImmutableMap.<K, V>builder();\n    map.foreach(entry -> result.put(entry._1(), entry._2()));\n    return result.build();\n  }\n\n  Dataset<Row> getViewDataFrame() {\n    return spark\n        .read()\n        .format(\"bigquery\")\n        .option(\"dataset\", testDataset.toString())\n        .option(\"table\", TestConstants.SHAKESPEARE_VIEW)\n        .option(\"viewsEnabled\", \"true\")\n        .option(\"viewMaterializationProject\", System.getenv(\"GOOGLE_CLOUD_PROJECT\"))\n        .option(\"viewMaterializationDataset\", testDataset.toString())\n        .option(\"readDataFormat\", dataFormat)\n        .load();\n  }\n\n  Dataset<Row> readAllTypesTable() {\n    return spark\n        .read()\n        .format(\"bigquery\")\n        .option(\"dataset\", testDataset.toString())\n        .option(\"table\", TestConstants.ALL_TYPES_TABLE_NAME)\n        .load();\n  }\n\n  protected Set<String> extractWords(Dataset<Row> df) {\n    return ImmutableSet.copyOf(\n        df.select(\"word\").where(\"corpus_date = 0\").as(Encoders.STRING()).collectAsList());\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/integration/ReadFromQueryIntegrationTestBase.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\nimport static com.google.common.truth.Truth.assertThat;\nimport static org.junit.Assert.assertThrows;\n\nimport com.google.cloud.bigquery.BigQuery;\nimport com.google.cloud.bigquery.BigQueryOptions;\nimport com.google.cloud.bigquery.DatasetId;\nimport com.google.cloud.bigquery.JobConfiguration;\nimport com.google.cloud.bigquery.JobInfo;\nimport com.google.cloud.bigquery.QueryJobConfiguration;\nimport com.google.cloud.bigquery.Table;\nimport com.google.cloud.bigquery.TableDefinition;\nimport com.google.cloud.spark.bigquery.events.BigQueryJobCompletedEvent;\nimport com.google.common.collect.ImmutableList;\nimport com.google.common.collect.ImmutableMap;\nimport com.google.inject.ProvisionException;\nimport java.util.ArrayList;\nimport java.util.Arrays;\nimport java.util.Collections;\nimport java.util.List;\nimport java.util.Map;\nimport java.util.stream.StreamSupport;\nimport org.apache.spark.scheduler.SparkListener;\nimport org.apache.spark.scheduler.SparkListenerEvent;\nimport org.apache.spark.sql.Dataset;\nimport org.apache.spark.sql.Encoders;\nimport org.apache.spark.sql.Row;\nimport org.apache.spark.sql.types.DataTypes;\nimport org.apache.spark.sql.types.StructType;\nimport org.junit.After;\nimport org.junit.Before;\nimport org.junit.Test;\n\nclass ReadFromQueryIntegrationTestBase extends SparkBigQueryIntegrationTestBase {\n\n  private BigQuery bq;\n\n  private final boolean isDsv2OnSpark3AndAbove;\n\n  private TestBigQueryJobCompletionListener listener = new TestBigQueryJobCompletionListener();\n\n  @Before\n  public void addListener() {\n    listener.reset();\n    spark.sparkContext().addSparkListener(listener);\n  }\n\n  @After\n  public void removeListener() {\n    spark.sparkContext().removeSparkListener(listener);\n  }\n\n  protected ReadFromQueryIntegrationTestBase() {\n    this(false);\n  }\n\n  protected ReadFromQueryIntegrationTestBase(boolean isDsv2OnSpark3AndAbove) {\n    super();\n    this.bq = BigQueryOptions.getDefaultInstance().getService();\n    this.isDsv2OnSpark3AndAbove = isDsv2OnSpark3AndAbove;\n  }\n\n  @Test\n  public void testReadFromQuery_nomMterializationDataset() {\n    // the query suffix is to make sure that each format will have\n    // a different table created due to the destination table cache\n    String random = String.valueOf(System.nanoTime());\n    String query =\n        String.format(\n            \"SELECT corpus, word_count FROM `bigquery-public-data.samples.shakespeare` WHERE word='spark' AND '%s'='%s'\",\n            random, random);\n    internalTestReadFromQueryWithAdditionalOptions(query, Collections.emptyMap());\n  }\n\n  private void internalTestReadFromQueryToMaterializationDataset(String query) {\n    Map<String, String> additionalOptions =\n        ImmutableMap.of(\"materializationDataset\", testDataset.toString());\n    internalTestReadFromQueryWithAdditionalOptions(query, additionalOptions);\n  }\n\n  private void internalTestReadFromQueryWithAdditionalOptions(\n      String query, Map<String, String> additionalOptions) {\n    Dataset<Row> df =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"viewsEnabled\", true)\n            .options(additionalOptions)\n            .load(query);\n\n    validateResult(df);\n    // validate event publishing\n    List<JobInfo> jobInfos = listener.getJobInfos();\n    assertThat(jobInfos).hasSize(1);\n    JobInfo jobInfo = jobInfos.iterator().next();\n    assertThat(((QueryJobConfiguration) jobInfo.getConfiguration()).getQuery()).isEqualTo(query);\n  }\n\n  @Test\n  public void testReadFromQuery() {\n    // the query suffix is to make sure that each format will have\n    // a different table created due to the destination table cache\n    String random = String.valueOf(System.nanoTime());\n    String query =\n        String.format(\n            \"SELECT corpus, word_count FROM `bigquery-public-data.samples.shakespeare` WHERE word='spark' AND '%s'='%s'\",\n            random, random);\n    internalTestReadFromQueryToMaterializationDataset(query);\n  }\n\n  @Test\n  public void testReadFromQueryWithNewLine() {\n    // the query suffix is to make sure that each format will have\n    // a different table created due to the destination table cache\n    String random = String.valueOf(System.nanoTime());\n    String query =\n        String.format(\n            \"SELECT corpus, word_count FROM `bigquery-public-data.samples.shakespeare`\\n\"\n                + \"WHERE word='spark' AND '%s'='%s'\",\n            random, random);\n    internalTestReadFromQueryToMaterializationDataset(query);\n  }\n\n  @Test\n  public void testQueryOption() {\n    // the query suffix is to make sure that each format will have\n    // a different table created due to the destination table cache\n    String random = String.valueOf(System.nanoTime());\n    String query =\n        String.format(\n            \"SELECT corpus, word_count FROM `bigquery-public-data.samples.shakespeare` WHERE word='spark' AND '%s'='%s'\",\n            random, random);\n    Dataset<Row> df =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"viewsEnabled\", true)\n            .option(\"materializationDataset\", testDataset.toString())\n            .option(\"query\", query)\n            .load();\n\n    StructType expectedSchema =\n        DataTypes.createStructType(\n            ImmutableList.of(\n                DataTypes.createStructField(\"corpus\", DataTypes.StringType, true),\n                DataTypes.createStructField(\"word_count\", DataTypes.LongType, true)));\n\n    assertThat(df.schema()).isEqualTo(expectedSchema);\n\n    if (isDsv2OnSpark3AndAbove) {\n      Iterable<Table> tablesInDataset =\n          IntegrationTestUtils.listTables(\n              DatasetId.of(testDataset.toString()),\n              TableDefinition.Type.TABLE,\n              TableDefinition.Type.MATERIALIZED_VIEW);\n      assertThat(\n              StreamSupport.stream(tablesInDataset.spliterator(), false)\n                  .noneMatch(table -> table.getTableId().getTable().startsWith(\"_bqc_\")))\n          .isTrue();\n    }\n\n    validateResult(df);\n  }\n\n  @Test\n  public void testMaterializtionToAutoGeneratedTable() {\n    // the query suffix is to make sure that each format will have\n    // a different table created due to the destination table cache\n    String random = String.valueOf(System.nanoTime());\n    String query =\n        String.format(\n            \"SELECT corpus, word_count FROM `bigquery-public-data.samples.shakespeare` WHERE word='spark' AND '%s'='%s'\",\n            random, random);\n    Dataset<Row> df =\n        spark.read().format(\"bigquery\").option(\"viewsEnabled\", true).option(\"query\", query).load();\n    StructType expectedSchema =\n        DataTypes.createStructType(\n            ImmutableList.of(\n                DataTypes.createStructField(\"corpus\", DataTypes.StringType, true),\n                DataTypes.createStructField(\"word_count\", DataTypes.LongType, true)));\n    assertThat(df.schema()).isEqualTo(expectedSchema);\n    validateResult(df);\n  }\n\n  private void validateResult(Dataset<Row> df) {\n    long totalRows = df.count();\n    assertThat(totalRows).isEqualTo(9);\n\n    List<String> corpuses = df.select(\"corpus\").as(Encoders.STRING()).collectAsList();\n    List<String> expectedCorpuses =\n        Arrays.asList(\n            \"2kinghenryvi\",\n            \"3kinghenryvi\",\n            \"allswellthatendswell\",\n            \"hamlet\",\n            \"juliuscaesar\",\n            \"kinghenryv\",\n            \"kinglear\",\n            \"periclesprinceoftyre\",\n            \"troilusandcressida\");\n    assertThat(corpuses).containsExactlyElementsIn(expectedCorpuses);\n  }\n\n  @Test\n  public void testBadQuery() {\n    String badSql = \"SELECT bogus_column FROM `bigquery-public-data.samples.shakespeare`\";\n    // v1 throws BigQueryConnectorException\n    // v2 throws Guice ProviderException, as the table is materialized in teh module\n    assertThrows(\n        RuntimeException.class,\n        () -> {\n          spark\n              .read()\n              .format(\"bigquery\")\n              .option(\"viewsEnabled\", true)\n              .option(\"materializationDataset\", testDataset.toString())\n              .load(badSql);\n        });\n  }\n\n  @Test\n  public void testQueryJobPriority() {\n    String random = String.valueOf(System.nanoTime());\n    String query =\n        String.format(\n            \"SELECT corpus, word_count FROM `bigquery-public-data.samples.shakespeare` WHERE word='spark' AND '%s'='%s'\",\n            random, random);\n    Dataset<Row> df =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"viewsEnabled\", true)\n            .option(\"materializationDataset\", testDataset.toString())\n            .option(\"queryJobPriority\", \"batch\")\n            .load(query);\n\n    validateResult(df);\n  }\n\n  @Test\n  public void testReadFromLongQueryWithBigQueryJobTimeout() {\n    String query = \"SELECT * FROM `largesamples.wikipedia_pageviews_201001`\";\n    assertThrows(\n        RuntimeException.class,\n        () -> {\n          try {\n            spark\n                .read()\n                .format(\"bigquery\")\n                .option(\"viewsEnabled\", true)\n                .option(\"materializationDataset\", testDataset.toString())\n                .option(\"bigQueryJobTimeoutInMinutes\", \"1\")\n                .load(query)\n                .show();\n          } catch (Exception e) {\n            throw e;\n          }\n        });\n  }\n\n  @Test\n  public void testReadWithNamedParameters() {\n    listener.reset();\n    String namedParamQuery =\n        \"SELECT word, word_count FROM `bigquery-public-data.samples.shakespeare`\"\n            + \" WHERE corpus = @corpus AND word_count >= @min_word_count ORDER BY word_count DESC\";\n\n    Dataset<Row> df =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"query\", namedParamQuery)\n            .option(\"viewsEnabled\", \"true\")\n            .option(\"materializationDataset\", testDataset.toString())\n            .option(\"NamedParameters.corpus\", \"STRING:romeoandjuliet\")\n            .option(\"NamedParameters.min_word_count\", \"INT64:250\")\n            .load();\n\n    StructType expectedSchema =\n        DataTypes.createStructType(\n            ImmutableList.of(\n                DataTypes.createStructField(\"word\", DataTypes.StringType, true),\n                DataTypes.createStructField(\"word_count\", DataTypes.LongType, true)));\n    assertThat(df.schema()).isEqualTo(expectedSchema);\n\n    assertThat(df.count()).isGreaterThan(0L);\n\n    List<JobInfo> jobInfos = listener.getJobInfos();\n    assertThat(jobInfos).hasSize(1);\n    JobInfo jobInfo = jobInfos.iterator().next();\n    assertThat(jobInfo.getConfiguration().getType()).isEqualTo(JobConfiguration.Type.QUERY);\n    QueryJobConfiguration queryConfig = jobInfo.getConfiguration();\n    assertThat(queryConfig.getQuery()).isEqualTo(namedParamQuery);\n  }\n\n  @Test\n  public void testReadWithPositionalParameters() {\n    listener.reset();\n    String positionalParamQuery =\n        \"SELECT word, word_count FROM `bigquery-public-data.samples.shakespeare`\"\n            + \" WHERE corpus = ? AND word_count >= ? ORDER BY word_count DESC\";\n\n    Dataset<Row> df =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"query\", positionalParamQuery) // Use hardcoded query\n            .option(\"viewsEnabled\", \"true\")\n            .option(\"materializationDataset\", testDataset.toString())\n            .option(\"PositionalParameters.1\", \"STRING:romeoandjuliet\")\n            .option(\"PositionalParameters.2\", \"INT64:250\")\n            .load();\n\n    StructType expectedSchema =\n        DataTypes.createStructType(\n            ImmutableList.of(\n                DataTypes.createStructField(\"word\", DataTypes.StringType, true),\n                DataTypes.createStructField(\"word_count\", DataTypes.LongType, true)));\n    assertThat(df.schema()).isEqualTo(expectedSchema);\n\n    assertThat(df.count()).isGreaterThan(0L);\n\n    List<JobInfo> jobInfos = listener.getJobInfos();\n    assertThat(jobInfos).hasSize(1);\n    JobInfo jobInfo = jobInfos.iterator().next();\n    assertThat(jobInfo.getConfiguration().getType()).isEqualTo(JobConfiguration.Type.QUERY);\n    QueryJobConfiguration queryConfig = jobInfo.getConfiguration();\n    assertThat(queryConfig.getQuery()).isEqualTo(positionalParamQuery);\n  }\n\n  @Test\n  public void testReadWithMixedParametersFails() {\n    String queryForFailure =\n        \"SELECT word, word_count FROM `bigquery-public-data.samples.shakespeare`\"\n            + \" WHERE corpus = @corpus AND word_count >= @min_word_count ORDER BY word_count DESC\";\n\n    Exception thrown =\n        assertThrows(\n            Exception.class,\n            () -> {\n              spark\n                  .read()\n                  .format(\"bigquery\")\n                  .option(\"query\", queryForFailure)\n                  .option(\"viewsEnabled\", \"true\")\n                  .option(\"materializationDataset\", testDataset.toString())\n                  .option(\"NamedParameters.corpus\", \"STRING:whatever\")\n                  .option(\"PositionalParameters.1\", \"INT64:100\")\n                  .load()\n                  .show();\n            });\n\n    Throwable cause = thrown;\n    if (cause instanceof ProvisionException && cause.getCause() != null) {\n      cause = cause.getCause();\n    }\n\n    assertThat(cause).isInstanceOf(IllegalArgumentException.class);\n    assertThat(cause)\n        .hasMessageThat()\n        .contains(\"Cannot mix NamedParameters.* and PositionalParameters.* options.\");\n\n    assertThat(listener.getJobInfos()).isEmpty();\n  }\n\n  @Test\n  public void testReadFromQueryWithKmsKey() {\n    String random = String.valueOf(System.nanoTime());\n    String query =\n        String.format(\n            \"SELECT corpus, word_count FROM `bigquery-public-data.samples.shakespeare` WHERE word='spark' AND '%s'='%s'\",\n            random, random);\n    String envKmsKey = System.getenv(\"BIGQUERY_KMS_KEY_NAME\");\n    String kmsKeyName =\n        envKmsKey != null ? envKmsKey : \"projects/p/locations/l/keyRings/k/cryptoKeys/c\";\n    spark\n        .read()\n        .format(\"bigquery\")\n        .option(\"viewsEnabled\", true)\n        .option(\"materializationDataset\", testDataset.toString())\n        .option(\"destinationTableKmsKeyName\", kmsKeyName)\n        .load(query)\n        .collect();\n    // validate event publishing\n    List<JobInfo> jobInfos = listener.getJobInfos();\n    assertThat(jobInfos).hasSize(1);\n    JobInfo jobInfo = jobInfos.iterator().next();\n    assertThat(\n            ((QueryJobConfiguration) jobInfo.getConfiguration())\n                .getDestinationEncryptionConfiguration()\n                .getKmsKeyName())\n        .isEqualTo(kmsKeyName + \"/cryptoKeyVersions/1\");\n  }\n}\n\nclass TestBigQueryJobCompletionListener extends SparkListener {\n\n  private List<JobInfo> jobInfos = new ArrayList<>();\n\n  @Override\n  public void onOtherEvent(SparkListenerEvent event) {\n    if (event instanceof BigQueryJobCompletedEvent) {\n      jobInfos.add(((BigQueryJobCompletedEvent) event).getJobInfo());\n    }\n  }\n\n  public ImmutableList<JobInfo> getJobInfos() {\n    return ImmutableList.copyOf(jobInfos);\n  }\n\n  public void reset() {\n    jobInfos.clear();\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/integration/ReadIntegrationTestBase.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\nimport static com.google.cloud.spark.bigquery.integration.TestConstants.ALL_TYPES_TABLE_SCHEMA;\nimport static com.google.common.truth.Truth.assertThat;\nimport static org.junit.Assert.assertThrows;\nimport static org.junit.Assume.assumeTrue;\n\nimport com.google.cloud.bigquery.BigQuery;\nimport com.google.cloud.bigquery.BigQueryOptions;\nimport com.google.cloud.bigquery.FormatOptions;\nimport com.google.cloud.bigquery.Table;\nimport com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils;\nimport com.google.common.base.Preconditions;\nimport com.google.common.collect.ImmutableList;\nimport com.google.common.collect.ImmutableMap;\nimport java.sql.Timestamp;\nimport java.util.ArrayList;\nimport java.util.Arrays;\nimport java.util.Collection;\nimport java.util.List;\nimport java.util.Locale;\nimport java.util.Map;\nimport java.util.Optional;\nimport java.util.Set;\nimport java.util.TimeZone;\nimport java.util.stream.Collectors;\nimport java.util.stream.Stream;\nimport org.apache.spark.sql.Dataset;\nimport org.apache.spark.sql.Encoders;\nimport org.apache.spark.sql.Row;\nimport org.apache.spark.sql.types.DataType;\nimport org.apache.spark.sql.types.DataTypes;\nimport org.apache.spark.sql.types.Metadata;\nimport org.apache.spark.sql.types.MetadataBuilder;\nimport org.apache.spark.sql.types.StructField;\nimport org.apache.spark.sql.types.StructType;\nimport org.hamcrest.CoreMatchers;\nimport org.junit.After;\nimport org.junit.Assume;\nimport org.junit.Before;\nimport org.junit.Ignore;\nimport org.junit.Test;\nimport scala.collection.immutable.HashMap;\n\npublic class ReadIntegrationTestBase extends SparkBigQueryIntegrationTestBase {\n\n  private static final TimeZone DEFAULT_TZ = TimeZone.getDefault();\n  private static final Map<String, Collection<String>> FILTER_DATA =\n      ImmutableMap.<String, Collection<String>>builder()\n          .put(\"word_count == 4\", ImmutableList.of(\"'A\", \"'But\", \"'Faith\"))\n          .put(\"word_count > 3\", ImmutableList.of(\"'\", \"''Tis\", \"'A\"))\n          .put(\"word_count >= 2\", ImmutableList.of(\"'\", \"''Lo\", \"''O\"))\n          .put(\"word_count < 3\", ImmutableList.of(\"''All\", \"''Among\", \"''And\"))\n          .put(\"word_count <= 5\", ImmutableList.of(\"'\", \"''All\", \"''Among\"))\n          .put(\"word_count in(8, 9)\", ImmutableList.of(\"'\", \"'Faith\", \"'Tis\"))\n          .put(\"word_count is null\", ImmutableList.of())\n          .put(\"word_count is not null\", ImmutableList.of(\"'\", \"''All\", \"''Among\"))\n          .put(\n              \"word_count == 4 and corpus == 'twelfthnight'\",\n              ImmutableList.of(\"'Thou\", \"'em\", \"Art\"))\n          .put(\n              \"word_count == 4 or corpus > 'twelfthnight'\",\n              ImmutableList.of(\"'\", \"''Tis\", \"''twas\"))\n          .put(\"not word_count in(8, 9)\", ImmutableList.of(\"'\", \"''All\", \"''Among\"))\n          .put(\"corpus like 'king%'\", ImmutableList.of(\"'\", \"'A\", \"'Affectionate\"))\n          .put(\"corpus like '%kinghenryiv'\", ImmutableList.of(\"'\", \"'And\", \"'Anon\"))\n          .put(\"corpus like '%king%'\", ImmutableList.of(\"'\", \"'A\", \"'Affectionate\"))\n          .build();\n  protected final String PROJECT_ID =\n      Preconditions.checkNotNull(\n          System.getenv(\"GOOGLE_CLOUD_PROJECT\"),\n          \"Please set the GOOGLE_CLOUD_PROJECT env variable in order to read views\");\n\n  private static final StructType SHAKESPEARE_TABLE_SCHEMA_WITH_METADATA_COMMENT =\n      new StructType(\n          Stream.of(TestConstants.SHAKESPEARE_TABLE_SCHEMA.fields())\n              .map(\n                  field -> {\n                    Metadata metadata =\n                        new MetadataBuilder()\n                            .withMetadata(field.metadata())\n                            .putString(\"comment\", field.metadata().getString(\"description\"))\n                            .build();\n                    return new StructField(\n                        field.name(), field.dataType(), field.nullable(), metadata);\n                  })\n              .toArray(StructField[]::new));\n\n  private static final String LARGE_TABLE = \"bigquery-public-data.samples.natality\";\n  private static final String LARGE_TABLE_FIELD = \"is_male\";\n  private static final long LARGE_TABLE_NUM_ROWS = 33271914L;\n  private static final String NON_EXISTENT_TABLE = \"non-existent.non-existent.non-existent\";\n  private static final String ALL_TYPES_TABLE_NAME = \"all_types\";\n\n  protected StructType allTypesTableSchema;\n\n  protected final boolean userProvidedSchemaAllowed;\n\n  protected List<String> gcsObjectsToClean = new ArrayList<>();\n\n  BigQuery bigQuery = BigQueryOptions.getDefaultInstance().getService();\n\n  public ReadIntegrationTestBase() {\n    this(true, Optional.empty());\n  }\n\n  public ReadIntegrationTestBase(boolean userProvidedSchemaAllowed) {\n    this(userProvidedSchemaAllowed, Optional.empty());\n  }\n\n  public ReadIntegrationTestBase(boolean userProvidedSchemaAllowed, DataType timestampNTZType) {\n    this(userProvidedSchemaAllowed, Optional.of(timestampNTZType));\n  }\n\n  public ReadIntegrationTestBase(\n      boolean userProvidedSchemaAllowed, Optional<DataType> timeStampNTZType) {\n    super();\n    this.userProvidedSchemaAllowed = userProvidedSchemaAllowed;\n    intializeSchema(timeStampNTZType);\n  }\n\n  private void intializeSchema(Optional<DataType> timeStampNTZType) {\n    if (!timeStampNTZType.isPresent()) {\n      allTypesTableSchema = ALL_TYPES_TABLE_SCHEMA;\n      return;\n    }\n    allTypesTableSchema = new StructType();\n    for (StructField field : ALL_TYPES_TABLE_SCHEMA.fields()) {\n      DataType dateTimeType = field.name().equals(\"dt\") ? timeStampNTZType.get() : field.dataType();\n      allTypesTableSchema =\n          allTypesTableSchema.add(field.name(), dateTimeType, field.nullable(), field.metadata());\n    }\n  }\n\n  @Before\n  public void clearGcsObjectsToCleanList() {\n    gcsObjectsToClean.clear();\n  }\n\n  @After\n  public void cleanGcsObjects() throws Exception {\n    for (String object : gcsObjectsToClean) {\n      AcceptanceTestUtils.deleteGcsDir(object);\n    }\n  }\n\n  @After\n  public void resetDefaultTimeZone() {\n    TimeZone.setDefault(DEFAULT_TZ);\n  }\n\n  /**\n   * Generate a test to verify that the given DataFrame is equal to a known result and contains\n   * Nullable Schema.\n   */\n  private void testShakespeare(Dataset<Row> df) {\n    assertThat(df.schema()).isEqualTo(SHAKESPEARE_TABLE_SCHEMA_WITH_METADATA_COMMENT);\n    assertThat(df.count()).isEqualTo(TestConstants.SHAKESPEARE_TABLE_NUM_ROWS);\n    List<String> firstWords =\n        Arrays.asList(\n            (String[])\n                df.select(\"word\")\n                    .where(\"word >= 'a' AND word not like '%\\\\'%'\")\n                    .distinct()\n                    .as(Encoders.STRING())\n                    .sort(\"word\")\n                    .take(3));\n    assertThat(firstWords).containsExactly(\"a\", \"abaissiez\", \"abandon\");\n  }\n\n  @Test\n  public void testReadWithOption() {\n    testShakespeare(\n        spark.read().format(\"bigquery\").option(\"table\", TestConstants.SHAKESPEARE_TABLE).load());\n  }\n\n  @Test\n  public void testReadWithSimplifiedApi() {\n    testShakespeare(spark.read().format(\"bigquery\").load(TestConstants.SHAKESPEARE_TABLE));\n  }\n\n  @Test\n  @Ignore(\"DSv2 only\")\n  public void testReadCompressed() {\n    Dataset<Row> df =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"table\", TestConstants.SHAKESPEARE_TABLE)\n            .option(\"bqEncodedCreateReadSessionRequest\", \"EgZCBBoCEAI=\")\n            .load();\n    // Test early termination succeeds\n    df.head();\n    testShakespeare(df);\n  }\n\n  @Test\n  @Ignore(\"DSv2 only\")\n  public void testReadCompressedWith1BackgroundThreads() {\n    Dataset<Row> df =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"table\", TestConstants.SHAKESPEARE_TABLE)\n            .option(\"bqEncodedCreateReadSessionRequest\", \"EgZCBBoCEAI=\")\n            .option(\"bqBackgroundThreadsPerStream\", \"1\")\n            .load();\n    // Test early termination succeeds\n    df.head();\n    testShakespeare(df);\n  }\n\n  @Test\n  @Ignore(\"DSv2 only\")\n  public void testReadCompressedWith4BackgroundThreads() {\n    Dataset<Row> df =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"table\", TestConstants.SHAKESPEARE_TABLE)\n            .option(\"bqEncodedCreateReadSessionRequest\", \"EgZCBBoCEAI=\")\n            .option(\"bqBackgroundThreadsPerStream\", \"4\")\n            .load();\n    // Test early termination succeeds\n    df.head();\n    testShakespeare(df);\n  }\n\n  @Test\n  public void testReadSchemaPruned() {\n    Row res =\n        readAllTypesTable()\n            .select(\"str\", \"nested_struct.str\", \"nested_struct.inner_struct.str\")\n            .collectAsList()\n            .get(0);\n    assertThat(res.get(0)).isEqualTo(\"string\");\n    assertThat(res.get(1)).isEqualTo(\"stringa\");\n    assertThat(res.get(2)).isEqualTo(\"stringaa\");\n  }\n\n  @Test\n  public void testFilters() {\n    Dataset<Row> df = spark.read().format(\"bigquery\").load(TestConstants.SHAKESPEARE_TABLE);\n    assertThat(df.schema()).isEqualTo(SHAKESPEARE_TABLE_SCHEMA_WITH_METADATA_COMMENT);\n    assertThat(df.count()).isEqualTo(TestConstants.SHAKESPEARE_TABLE_NUM_ROWS);\n    FILTER_DATA.forEach(\n        (condition, expectedElements) -> {\n          List<String> firstWords =\n              Arrays.asList(\n                  (String[])\n                      df.select(\"word\")\n                          .where(condition)\n                          .distinct()\n                          .as(Encoders.STRING())\n                          .sort(\"word\")\n                          .take(3));\n          assertThat(firstWords).containsExactlyElementsIn(expectedElements);\n        });\n  }\n\n  Dataset<Row> readAllTypesTable() {\n    return spark\n        .read()\n        .format(\"bigquery\")\n        .option(\"dataset\", testDataset.toString())\n        .option(\"table\", ALL_TYPES_TABLE_NAME)\n        .load();\n  }\n\n  @Test\n  public void testCountWithFilters() {\n    long countResults =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"table\", \"bigquery-public-data.samples.shakespeare\")\n            .option(\"readDataFormat\", \"ARROW\")\n            .load()\n            .where(\"word_count = 1 OR corpus_date = 0\")\n            .count();\n\n    long countAfterCollect =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"table\", \"bigquery-public-data.samples.shakespeare\")\n            .option(\"readDataFormat\", \"ARROW\")\n            .load()\n            .where(\"word_count = 1 OR corpus_date = 0\")\n            .collectAsList()\n            .size();\n\n    assertThat(countResults).isEqualTo(countAfterCollect);\n  }\n\n  @Test\n  public void testKnownSizeInBytes() {\n    Dataset<Row> allTypesTable = readAllTypesTable();\n    long actualTableSize =\n        allTypesTable.queryExecution().analyzed().stats().sizeInBytes().longValue();\n    assertThat(actualTableSize).isEqualTo(TestConstants.ALL_TYPES_TABLE_SIZE);\n  }\n\n  @Test\n  public void testKnownSchema() {\n    Dataset<Row> allTypesTable = readAllTypesTable();\n    assertThat(allTypesTable.schema()).isEqualTo(allTypesTableSchema);\n  }\n\n  @Test\n  public void testUserDefinedSchema() {\n    assumeTrue(\"user provided schema is not allowed for this connector\", userProvidedSchemaAllowed);\n    // TODO(pmkc): consider a schema that wouldn't cause cast errors if read.\n    StructType expectedSchema =\n        new StructType(\n            new StructField[] {\n              new StructField(\"whatever\", DataTypes.ByteType, true, Metadata.empty())\n            });\n    Dataset<Row> table =\n        spark\n            .read()\n            .schema(expectedSchema)\n            .format(\"bigquery\")\n            .option(\"table\", TestConstants.SHAKESPEARE_TABLE)\n            .load();\n    assertThat(expectedSchema).isEqualTo(table.schema());\n  }\n\n  @Test\n  public void testNonExistentSchema() {\n    assertThrows(\n        \"Trying to read a non existing table should throw an exception\",\n        RuntimeException.class,\n        () -> {\n          spark.read().format(\"bigquery\").option(\"table\", NON_EXISTENT_TABLE).load();\n        });\n  }\n\n  @Test(timeout = 10_000) // 10 seconds\n  public void testHeadDoesNotTimeoutAndOOM() {\n    spark\n        .read()\n        .format(\"bigquery\")\n        .option(\"table\", LARGE_TABLE)\n        .load()\n        .select(LARGE_TABLE_FIELD)\n        .head();\n  }\n\n  @Test\n  public void testUnhandledFilterOnStruct() {\n    // Test fails on Spark 4.0.0\n    Assume.assumeThat(spark.version(), CoreMatchers.startsWith(\"3.\"));\n    Dataset<Row> df =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"table\", \"bigquery-public-data:samples.github_nested\")\n            .option(\"filter\", \"url like '%spark'\")\n            .load();\n\n    List<Row> result = df.select(\"url\").where(\"repository is not null\").collectAsList();\n\n    assertThat(result).hasSize(85);\n  }\n\n  @Test\n  public void testQueryMaterializedView() {\n    Dataset<Row> df =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"table\", \"bigquery-public-data:bigqueryml_ncaa.cume_games_view\")\n            .option(\"viewsEnabled\", \"true\")\n            .option(\"viewMaterializationProject\", PROJECT_ID)\n            .option(\"viewMaterializationDataset\", testDataset.toString())\n            .load();\n\n    assertThat(df.count()).isGreaterThan(1);\n  }\n\n  @Test\n  public void testQueryMaterializedView_noMaterializationDataset() {\n    Dataset<Row> df =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"dataset\", testDataset.toString())\n            .option(\"table\", TestConstants.SHAKESPEARE_VIEW)\n            .option(\"viewsEnabled\", \"true\")\n            .load();\n\n    assertThat(df.count()).isGreaterThan(1);\n  }\n\n  @Test\n  public void testOrAcrossColumnsAndFormats() {\n    List<Row> avroResults =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"table\", \"bigquery-public-data.samples.shakespeare\")\n            .option(\"filter\", \"word_count = 1 OR corpus_date = 0\")\n            .option(\"readDataFormat\", \"AVRO\")\n            .load()\n            .collectAsList();\n\n    List<Row> arrowResults =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"table\", \"bigquery-public-data.samples.shakespeare\")\n            .option(\"readDataFormat\", \"ARROW\")\n            .load()\n            .where(\"word_count = 1 OR corpus_date = 0\")\n            .collectAsList();\n\n    assertThat(avroResults).isEqualTo(arrowResults);\n  }\n\n  @Test\n  public void testArrowResponseCompressionCodec() {\n    List<Row> avroResultsUncompressed =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"table\", \"bigquery-public-data.samples.shakespeare\")\n            .option(\"filter\", \"word_count = 1 OR corpus_date = 0\")\n            .option(\"readDataFormat\", \"AVRO\")\n            .load()\n            .collectAsList();\n\n    List<Row> arrowResultsUncompressed =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"table\", \"bigquery-public-data.samples.shakespeare\")\n            .option(\"readDataFormat\", \"ARROW\")\n            .load()\n            .where(\"word_count = 1 OR corpus_date = 0\")\n            .collectAsList();\n\n    List<Row> arrowResultsWithLZ4ResponseCompression =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"table\", \"bigquery-public-data.samples.shakespeare\")\n            .option(\"readDataFormat\", \"ARROW\")\n            .option(\"responseCompressionCodec\", \"RESPONSE_COMPRESSION_CODEC_LZ4\")\n            .load()\n            .where(\"word_count = 1 OR corpus_date = 0\")\n            .collectAsList();\n\n    assertThat(avroResultsUncompressed).isEqualTo(arrowResultsWithLZ4ResponseCompression);\n    assertThat(arrowResultsUncompressed).isEqualTo(arrowResultsWithLZ4ResponseCompression);\n  }\n\n  @Test\n  public void testAvroResponseCompressionCodec() {\n    List<Row> arrowResultsUncompressed =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"table\", \"bigquery-public-data.samples.shakespeare\")\n            .option(\"filter\", \"word_count = 1 OR corpus_date = 0\")\n            .option(\"readDataFormat\", \"ARROW\")\n            .load()\n            .collectAsList();\n\n    List<Row> avroResultsUncompressed =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"table\", \"bigquery-public-data.samples.shakespeare\")\n            .option(\"readDataFormat\", \"AVRO\")\n            .load()\n            .where(\"word_count = 1 OR corpus_date = 0\")\n            .collectAsList();\n\n    List<Row> avroResultsWithLZ4ResponseCompression =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"table\", \"bigquery-public-data.samples.shakespeare\")\n            .option(\"readDataFormat\", \"AVRO\")\n            .option(\"responseCompressionCodec\", \"RESPONSE_COMPRESSION_CODEC_LZ4\")\n            .load()\n            .where(\"word_count = 1 OR corpus_date = 0\")\n            .collectAsList();\n\n    assertThat(arrowResultsUncompressed).isEqualTo(avroResultsWithLZ4ResponseCompression);\n    assertThat(avroResultsUncompressed).isEqualTo(avroResultsWithLZ4ResponseCompression);\n  }\n\n  @Test\n  public void testArrowCompressionCodec() {\n    List<Row> avroResults =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"table\", \"bigquery-public-data.samples.shakespeare\")\n            .option(\"filter\", \"word_count = 1 OR corpus_date = 0\")\n            .option(\"readDataFormat\", \"AVRO\")\n            .load()\n            .collectAsList();\n\n    List<Row> arrowResultsForZstdCodec =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"table\", \"bigquery-public-data.samples.shakespeare\")\n            .option(\"readDataFormat\", \"ARROW\")\n            .option(\"arrowCompressionCodec\", \"ZSTD\")\n            .load()\n            .where(\"word_count = 1 OR corpus_date = 0\")\n            .collectAsList();\n\n    assertThat(avroResults).isEqualTo(arrowResultsForZstdCodec);\n\n    List<Row> arrowResultsForLZ4FrameCodec =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"table\", \"bigquery-public-data.samples.shakespeare\")\n            .option(\"readDataFormat\", \"ARROW\")\n            .option(\"arrowCompressionCodec\", \"LZ4_FRAME\")\n            .load()\n            .where(\"word_count = 1 OR corpus_date = 0\")\n            .collectAsList();\n\n    assertThat(avroResults).isEqualTo(arrowResultsForLZ4FrameCodec);\n  }\n\n  private void uploadFileToGCS(String resourceName, String destinationURI, String contentType) {\n    try {\n      AcceptanceTestUtils.uploadToGcs(\n          getClass().getResourceAsStream(\"/integration/\" + resourceName),\n          destinationURI,\n          contentType);\n    } catch (Exception e) {\n      throw new RuntimeException(e);\n    }\n  }\n\n  @Test\n  public void testReadFromBigLakeTable_csv() {\n    testBigLakeTable(FormatOptions.csv(), TestConstants.SHAKESPEARE_CSV_FILENAME, \"text/csv\");\n  }\n\n  @Test\n  public void testReadFromBigLakeTable_json() {\n    testBigLakeTable(\n        FormatOptions.json(), TestConstants.SHAKESPEARE_JSON_FILENAME, \"application/json\");\n  }\n\n  @Test\n  public void testReadFromBigLakeTable_parquet() {\n    testBigLakeTable(\n        FormatOptions.parquet(),\n        TestConstants.SHAKESPEARE_PARQUET_FILENAME,\n        \"application/octet-stream\");\n  }\n\n  @Test\n  public void testReadFromBigLakeTable_avro() {\n    testBigLakeTable(\n        FormatOptions.avro(), TestConstants.SHAKESPEARE_AVRO_FILENAME, \"application/octet-stream\");\n  }\n\n  private void testBigLakeTable(FormatOptions formatOptions, String dataFileName, String mimeType) {\n    String table = testTable + \"_\" + formatOptions.getType().toLowerCase(Locale.US);\n    String sourceUri =\n        String.format(\"gs://%s/%s/%s\", TestConstants.TEMPORARY_GCS_BUCKET, table, dataFileName);\n    uploadFileToGCS(dataFileName, sourceUri, mimeType);\n    this.gcsObjectsToClean.add(sourceUri);\n    IntegrationTestUtils.createBigLakeTable(\n        testDataset.toString(),\n        table,\n        TestConstants.SHAKESPEARE_TABLE_SCHEMA,\n        sourceUri,\n        formatOptions);\n    Dataset<Row> df =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"dataset\", testDataset.toString())\n            .option(\"table\", table)\n            .load();\n    testShakespeare(df);\n  }\n\n  @Test\n  public void testReadFromTableSnapshot() {\n    String snapshot =\n        String.format(\"%s.%s.%s_snapshot\", TestConstants.PROJECT_ID, testDataset, testTable);\n    String allTypes =\n        String.format(\n            \"%s.%s.%s\", TestConstants.PROJECT_ID, testDataset, TestConstants.ALL_TYPES_TABLE_NAME);\n    IntegrationTestUtils.runQuery(\n        String.format(\"CREATE SNAPSHOT TABLE `%s` CLONE `%s`\", snapshot, allTypes));\n    Row[] allTypesRows =\n        (Row[])\n            spark\n                .read()\n                .format(\"bigquery\")\n                .option(\"dataset\", testDataset.toString())\n                .option(\"table\", allTypes)\n                .load()\n                .collect();\n    Row[] snapshotRows =\n        (Row[])\n            spark\n                .read()\n                .format(\"bigquery\")\n                .option(\"dataset\", testDataset.toString())\n                .option(\"table\", snapshot)\n                .load()\n                .collect();\n    assertThat(snapshotRows).isEqualTo(allTypesRows);\n  }\n\n  @Test\n  public void testReadFromTableWithSpacesInName() {\n    String tableNameWithSpaces = testTable + \" with spaces\";\n\n    String tableIdForBqSql =\n        String.format(\"`%s`.`%s`\", testDataset.toString(), tableNameWithSpaces);\n    IntegrationTestUtils.runQuery(\n        String.format(\n            \"CREATE TABLE %s (id INT64, data STRING) AS \"\n                + \"SELECT * FROM UNNEST([(1, 'foo'), (2, 'bar'), (3, 'baz')])\",\n            tableIdForBqSql));\n\n    String tableIdForConnector =\n        String.format(\"%s.%s\", testDataset.toString(), tableNameWithSpaces);\n\n    Dataset<Row> df = spark.read().format(\"bigquery\").load(tableIdForConnector);\n\n    StructType expectedSchema =\n        new StructType()\n            .add(\"id\", DataTypes.LongType, true)\n            .add(\"data\", DataTypes.StringType, true);\n\n    assertThat(df.schema()).isEqualTo(expectedSchema);\n    assertThat(df.count()).isEqualTo(3);\n\n    Dataset<Row> filteredDf =\n        spark.read().format(\"bigquery\").option(\"filter\", \"id > 1\").load(tableIdForConnector);\n\n    assertThat(filteredDf.count()).isEqualTo(2);\n\n    List<Row> rows = filteredDf.sort(\"id\").collectAsList();\n    assertThat(rows.get(0).getLong(0)).isEqualTo(2);\n    assertThat(rows.get(0).getString(1)).isEqualTo(\"bar\");\n  }\n\n  /**\n   * Setting the CreateReadSession timeout to 1000 seconds, which should create the read session\n   * since the timeout is more and data is less\n   */\n  @Test\n  public void testCreateReadSessionTimeout() {\n    assertThat(\n            spark\n                .read()\n                .format(\"bigquery\")\n                .option(\"table\", TestConstants.SHAKESPEARE_TABLE)\n                .option(\"createReadSessionTimeoutInSeconds\", 1000)\n                .load()\n                .collectAsList()\n                .size())\n        .isEqualTo(TestConstants.SHAKESPEARE_TABLE_NUM_ROWS);\n  }\n\n  /**\n   * Setting the CreateReadSession timeout to 1 second, to read the\n   * `bigquery-public-data.wikipedia.pageviews_2021` table. Should throw run time,\n   * DeadlineExceededException\n   */\n  @Test\n  @Ignore(\"Test has become flaky\")\n  public void testCreateReadSessionTimeoutWithLessTimeOnHugeData() {\n    Dataset<Row> df =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"table\", TestConstants.PUBLIC_DATA_WIKIPEDIA_PAGEVIEWS_2021)\n            .option(\"createReadSessionTimeoutInSeconds\", 1)\n            .option(\"preferredMinParallelism\", \"9000\")\n            .load();\n    assertThrows(\n        \"DEADLINE_EXCEEDED: deadline exceeded \",\n        com.google.api.gax.rpc.DeadlineExceededException.class,\n        () -> {\n          df.where(\n                  \"views>1000 AND title='Google' AND DATE(datehour) BETWEEN DATE('2021-01-01') AND\"\n                      + \" DATE('2021-07-01')\")\n              .collect();\n        });\n  }\n\n  @Test\n  public void testNestedFieldProjection() throws Exception {\n    Dataset<Row> githubNestedDF =\n        spark.read().format(\"bigquery\").load(\"bigquery-public-data:samples.github_nested\");\n    List<Row> repositoryUrlRows =\n        githubNestedDF\n            .filter(\n                \"repository.has_downloads = true AND url =\"\n                    + \" 'https://github.com/googleapi/googleapi'\")\n            .select(\"repository.url\")\n            .collectAsList();\n    assertThat(repositoryUrlRows).hasSize(4);\n    Set<String> uniqueUrls =\n        repositoryUrlRows.stream().map(row -> row.getString(0)).collect(Collectors.toSet());\n    assertThat(uniqueUrls).hasSize(1);\n    assertThat(uniqueUrls).contains(\"https://github.com/googleapi/googleapi\");\n  }\n\n  @Test\n  public void testReadFilteredTimestampField() {\n    TimeZone.setDefault(TimeZone.getTimeZone(\"PST\"));\n    spark.conf().set(\"spark.sql.session.timeZone\", \"UTC\");\n    IntegrationTestUtils.runQuery(\n        String.format(\n            \"CREATE TABLE `%s.%s` AS\\n\" + \"SELECT TIMESTAMP(\\\"2023-01-09 10:00:00\\\") as eventTime;\",\n            testDataset, testTable));\n    Dataset<Row> df =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"dataset\", testDataset.toString())\n            .option(\"table\", testTable)\n            .load();\n    Dataset<Row> filteredDF =\n        df.where(df.apply(\"eventTime\").between(\"2023-01-09 10:00:00\", \"2023-01-09 10:00:00\"));\n    List<Row> result = filteredDF.collectAsList();\n    assertThat(result).hasSize(1);\n    Row head = result.get(0);\n    assertThat(head.get(head.fieldIndex(\"eventTime\")))\n        .isEqualTo(Timestamp.valueOf(\"2023-01-09 02:00:00\"));\n  }\n\n  @Test\n  public void testPushDateTimePredicate() {\n    IntegrationTestUtils.runQuery(\n        String.format(\n            \"CREATE TABLE `%s.%s` (%s INTEGER, %s DATETIME) \"\n                + \"AS SELECT * FROM UNNEST([(1, DATETIME '2023-09-25 1:00:00'), \"\n                + \"(2, DATETIME '2023-09-29 10:00:00'), (3, DATETIME '2023-10-30 17:30:00')])\",\n            testDataset, testTable, \"orderId\", \"orderDateTime\"));\n    Dataset<Row> df =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"dataset\", testDataset.toString())\n            .option(\"table\", testTable)\n            .load()\n            .where(\"orderDateTime < '2023-10-25 10:00:00'\");\n    assertThat(df.count()).isEqualTo(2);\n  }\n\n  @Test\n  public void testPseudoColumnsRuntimeFilteringDate() {\n    IntegrationTestUtils.runQuery(\n        String.format(\n            \"CREATE TABLE `%s.%s` (%s INT64) PARTITION BY _PARTITIONDATE \",\n            testDataset, testTable, \"orderId\"));\n    IntegrationTestUtils.runQuery(\n        String.format(\n            \"INSERT INTO `%s.%s` (%s, _PARTITIONTIME) VALUES \"\n                + \"(101, \\\"2024-01-05 00:00:00 UTC\\\"),\"\n                + \"(102, \\\"2024-01-05 00:00:00 UTC\\\"),\"\n                + \"(201, \\\"2024-01-10 00:00:00 UTC\\\"),\"\n                + \"(202, \\\"2024-01-10 00:00:00 UTC\\\");\",\n            testDataset, testTable, \"orderId\"));\n    String dt = \"2024-01-05\";\n    Dataset<Row> df =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"dataset\", testDataset.toString())\n            .option(\"table\", testTable)\n            .option(\"filter\", \"_PARTITIONDATE = '\" + dt + \"'\")\n            .load()\n            .select(\"orderId\");\n    List<Row> rows = df.join(df, \"orderId\").orderBy(\"orderId\").collectAsList();\n    assertThat(rows.size()).isEqualTo(2);\n    assertThat(rows.get(0).getLong(0)).isEqualTo(101);\n    assertThat(rows.get(1).getLong(0)).isEqualTo(102);\n  }\n\n  @Test\n  public void testPseudoColumnsRuntimeFilteringHour() {\n    IntegrationTestUtils.runQuery(\n        String.format(\n            \"CREATE TABLE `%s.%s` (%s INT64) PARTITION BY TIMESTAMP_TRUNC(_PARTITIONTIME, HOUR) \",\n            testDataset, testTable, \"orderId\"));\n    IntegrationTestUtils.runQuery(\n        String.format(\n            \"INSERT INTO `%s.%s` (%s, _PARTITIONTIME) VALUES \"\n                + \"(101, \\\"2024-01-05 18:00:00 UTC\\\"),\"\n                + \"(102, \\\"2024-01-05 18:00:00 UTC\\\"),\"\n                + \"(201, \\\"2024-01-10 06:00:00 UTC\\\"),\"\n                + \"(202, \\\"2024-01-10 08:00:00 UTC\\\");\",\n            testDataset, testTable, \"orderId\"));\n    String dt = \"2024-01-05 18:00:00 UTC\";\n    Dataset<Row> df =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"dataset\", testDataset.toString())\n            .option(\"table\", testTable)\n            .option(\"filter\", \"_PARTITIONTIME = '\" + dt + \"'\")\n            .load()\n            .select(\"orderId\");\n    List<Row> rows = df.join(df, \"orderId\").orderBy(\"orderId\").collectAsList();\n    assertThat(rows.size()).isEqualTo(2);\n    assertThat(rows.get(0).getLong(0)).isEqualTo(101);\n    assertThat(rows.get(1).getLong(0)).isEqualTo(102);\n  }\n\n  @Test\n  public void testExecuteCommand() throws Exception {\n    Dataset<Row> output =\n        spark.executeCommand(\n            \"bigquery\",\n            String.format(\n                \"CREATE TABLE %s.%s AS SELECT 1 AS `id`, 'foo' AS `name`\",\n                testDataset.testDataset, testTable),\n            new HashMap<>());\n    assertThat(output.count()).isEqualTo(0L);\n    Table table = bigQuery.getTable(testDataset.testDataset, testTable);\n    assertThat(table).isNotNull();\n    assertThat(table.getDefinition().getSchema().getFields()).hasSize(2);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/integration/SparkBigQueryIntegrationTestBase.java",
    "content": "/*\n * Copyright 2021 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\nimport java.util.UUID;\nimport org.apache.spark.sql.SparkSession;\nimport org.junit.Before;\nimport org.junit.ClassRule;\nimport org.junit.rules.ExternalResource;\n\npublic class SparkBigQueryIntegrationTestBase {\n\n  @ClassRule public static SparkFactory sparkFactory = new SparkFactory();\n  @ClassRule public static TestDataset testDataset = new TestDataset();\n\n  protected SparkSession spark;\n  protected String testTable;\n\n  public SparkBigQueryIntegrationTestBase() {\n    this.spark = sparkFactory.spark;\n  }\n\n  @Before\n  public void createTestTable() {\n    testTable = \"test_\" + System.nanoTime();\n  }\n\n  protected static class SparkFactory extends ExternalResource {\n    SparkSession spark;\n\n    @Override\n    protected void before() throws Throwable {\n      String appName = \"integration-test-\" + UUID.randomUUID();\n      spark =\n          SparkSession.builder()\n              .master(\"local\")\n              .appName(appName)\n              .config(\"spark.hadoop.google.cloud.appName.v2\", appName)\n              .config(\"spark.ui.enabled\", \"false\")\n              .config(\"spark.default.parallelism\", 20)\n              .getOrCreate();\n      // reducing test's logs\n      spark.sparkContext().setLogLevel(\"WARN\");\n    }\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/integration/TestConstants.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\nimport static com.google.cloud.spark.bigquery.integration.IntegrationTestUtils.metadata;\nimport static org.apache.spark.sql.functions.array;\nimport static org.apache.spark.sql.functions.from_utc_timestamp;\nimport static org.apache.spark.sql.functions.lit;\nimport static org.apache.spark.sql.functions.struct;\nimport static org.apache.spark.sql.functions.to_date;\nimport static org.apache.spark.sql.types.DataTypes.BinaryType;\nimport static org.apache.spark.sql.types.DataTypes.BooleanType;\nimport static org.apache.spark.sql.types.DataTypes.ByteType;\nimport static org.apache.spark.sql.types.DataTypes.DateType;\nimport static org.apache.spark.sql.types.DataTypes.DoubleType;\nimport static org.apache.spark.sql.types.DataTypes.IntegerType;\nimport static org.apache.spark.sql.types.DataTypes.LongType;\nimport static org.apache.spark.sql.types.DataTypes.ShortType;\nimport static org.apache.spark.sql.types.DataTypes.StringType;\nimport static org.apache.spark.sql.types.DataTypes.TimestampType;\n\nimport com.google.cloud.spark.bigquery.integration.model.ColumnOrderTestClass;\nimport com.google.cloud.spark.bigquery.integration.model.NumStruct;\nimport com.google.cloud.spark.bigquery.integration.model.StringStruct;\nimport com.google.common.base.Preconditions;\nimport com.google.common.collect.ImmutableList;\nimport java.math.BigDecimal;\nimport java.math.MathContext;\nimport java.sql.Date;\nimport java.sql.Timestamp;\nimport java.util.Arrays;\nimport java.util.List;\nimport java.util.TimeZone;\nimport java.util.stream.Collectors;\nimport java.util.stream.Stream;\nimport org.apache.spark.sql.Column;\nimport org.apache.spark.sql.Row;\nimport org.apache.spark.sql.RowFactory;\nimport org.apache.spark.sql.types.ArrayType;\nimport org.apache.spark.sql.types.DataType;\nimport org.apache.spark.sql.types.DataTypes;\nimport org.apache.spark.sql.types.Decimal;\nimport org.apache.spark.sql.types.DecimalType;\nimport org.apache.spark.sql.types.Metadata;\nimport org.apache.spark.sql.types.MetadataBuilder;\nimport org.apache.spark.sql.types.StructField;\nimport org.apache.spark.sql.types.StructType;\n\npublic class TestConstants {\n\n  static final int BQ_NUMERIC_PRECISION = 38;\n  static final int BQ_NUMERIC_SCALE = 9;\n  static final int BQ_BIGNUMERIC_SCALE = 38;\n  static final DecimalType NUMERIC_SPARK_TYPE =\n      DataTypes.createDecimalType(BQ_NUMERIC_PRECISION, BQ_NUMERIC_SCALE);\n  static final DecimalType BIGNUMERIC_SPARK_TYPE =\n      DataTypes.createDecimalType(BQ_NUMERIC_PRECISION, BQ_BIGNUMERIC_SCALE);\n  static final String SHAKESPEARE_TABLE = \"bigquery-public-data.samples.shakespeare\";\n  static final String PUBLIC_DATA_WIKIPEDIA_PAGEVIEWS_2021 =\n      \"bigquery-public-data.wikipedia.pageviews_2021\";\n  static final long SHAKESPEARE_TABLE_NUM_ROWS = 164656L;\n  static final String PROJECT_ID =\n      Preconditions.checkNotNull(\n          System.getenv(\"GOOGLE_CLOUD_PROJECT\"),\n          \"Please set the GOOGLE_CLOUD_PROJECT env variable\");\n  static final String TEMPORARY_GCS_BUCKET_ENV_VARIABLE = \"TEMPORARY_GCS_BUCKET\";\n  static final String BIGLAKE_CONNECTION_ID_ENV_VARIABLE = \"BIGLAKE_CONNECTION_ID\";\n  static final String TEMPORARY_GCS_BUCKET =\n      Preconditions.checkNotNull(\n          System.getenv(TEMPORARY_GCS_BUCKET_ENV_VARIABLE),\n          \"Please set the %s env variable to point to a write enabled GCS bucket\",\n          TEMPORARY_GCS_BUCKET_ENV_VARIABLE);\n  static final String BIGLAKE_CONNECTION_ID =\n      Preconditions.checkNotNull(\n          System.getenv(BIGLAKE_CONNECTION_ID_ENV_VARIABLE),\n          \"Please set the BIGLAKE_CONNECTION_ID env variable in order to create biglake table\");\n  static final String SHAKESPEARE_CSV_FILENAME = \"shakespeare.csv\";\n  static final String SHAKESPEARE_JSON_FILENAME = \"shakespeare.json\";\n  static final String SHAKESPEARE_AVRO_FILENAME = \"shakespeare.avro\";\n  static final String SHAKESPEARE_PARQUET_FILENAME = \"shakespeare.parquet\";\n  static final StructType SHAKESPEARE_TABLE_SCHEMA =\n      new StructType(\n          new StructField[] {\n            StructField.apply(\n                \"word\",\n                DataTypes.StringType,\n                false,\n                metadata(\n                    \"description\",\n                    \"A single unique word (where whitespace is the delimiter) extracted from a\"\n                        + \" corpus.\")),\n            StructField.apply(\n                \"word_count\",\n                DataTypes.LongType,\n                false,\n                metadata(\"description\", \"The number of times this word appears in this corpus.\")),\n            StructField.apply(\n                \"corpus\",\n                DataTypes.StringType,\n                false,\n                metadata(\"description\", \"The work from which this word was extracted.\")),\n            StructField.apply(\n                \"corpus_date\",\n                DataTypes.LongType,\n                false,\n                metadata(\"description\", \"The year in which this corpus was published.\"))\n          });\n  static final String LARGE_TABLE = \"bigquery-public-data.samples.natality\";\n  static final String LARGE_TABLE_FIELD = \"is_male\";\n  static final long LARGE_TABLE_NUM_ROWS = 33271914L;\n  static final String LIBRARIES_PROJECTS_TABLE = \"bigquery-public-data.libraries_io.projects\";\n  static final String NON_EXISTENT_TABLE = \"non-existent.non-existent.non-existent\";\n  static final String STRUCT_COLUMN_ORDER_TEST_TABLE_NAME = \"struct_column_order\";\n  static final String ALL_TYPES_TABLE_NAME = \"all_types\";\n  static final String ALL_TYPES_VIEW_NAME = \"all_types_view\";\n  static final String SHAKESPEARE_VIEW = \"shakespeare_view\";\n  static final String DIFF_IN_SCHEMA_SRC_TABLE_NAME = \"src_table\";\n  static final String DIFF_IN_SCHEMA_SRC_TABLE_NAME_WITH_DESCRIPTION = \"src_table_with_description\";\n  static final String DIFF_IN_SCHEMA_DEST_TABLE_NAME = \"dest_table\";\n  static DataType BQ_NUMERIC = DataTypes.createDecimalType(38, 9);\n  static DataType BQ_BIGNUMERIC = DataTypes.createDecimalType(38, 38);\n  public static int BIG_NUMERIC_COLUMN_POSITION = 11;\n  public static final String GA4_TABLE =\n      \"bigquery-public-data.ga4_obfuscated_sample_ecommerce.events_20210131\";\n\n  public static StructType ALL_TYPES_TABLE_SCHEMA =\n      new StructType(\n          copy(\n              new StructField(\"int_req\", DataTypes.LongType, false, Metadata.empty()),\n              new StructField(\"int_null\", DataTypes.LongType, true, Metadata.empty()),\n              new StructField(\"bl\", DataTypes.BooleanType, true, Metadata.empty()),\n              new StructField(\"str\", DataTypes.StringType, true, Metadata.empty()),\n              new StructField(\"day\", DataTypes.DateType, true, Metadata.empty()),\n              new StructField(\"ts\", DataTypes.TimestampType, true, Metadata.empty()),\n              new StructField(\"dt\", DataTypes.StringType, true, Metadata.empty()),\n              new StructField(\"tm\", DataTypes.LongType, true, Metadata.empty()),\n              new StructField(\"binary\", DataTypes.BinaryType, true, Metadata.empty()),\n              new StructField(\"float\", DataTypes.DoubleType, true, Metadata.empty()),\n              new StructField(\n                  \"json_f\",\n                  DataTypes.StringType,\n                  true,\n                  Metadata.fromJson(\"{\\\"sqlType\\\":\\\"JSON\\\"}\")),\n              new StructField(\n                  \"nums\",\n                  new StructType(\n                      copy(\n                          new StructField(\"min\", BQ_NUMERIC, true, Metadata.empty()),\n                          new StructField(\"max\", BQ_NUMERIC, true, Metadata.empty()),\n                          new StructField(\"pi\", BQ_NUMERIC, true, Metadata.empty()),\n                          new StructField(\"big_pi\", BQ_NUMERIC, true, Metadata.empty()))),\n                  true,\n                  Metadata.empty()),\n              new StructField(\n                  \"big_numeric_nums\",\n                  new StructType(\n                      copy(\n                          new StructField(\"min\", BQ_BIGNUMERIC, true, Metadata.empty()),\n                          new StructField(\"max\", BQ_BIGNUMERIC, true, Metadata.empty()))),\n                  true,\n                  Metadata.empty()),\n              new StructField(\n                  \"int_arr\", new ArrayType(DataTypes.LongType, true), true, Metadata.empty()),\n              new StructField(\n                  \"int_struct_arr\",\n                  new ArrayType(\n                      new StructType(\n                          copy(new StructField(\"i\", DataTypes.LongType, true, Metadata.empty()))),\n                      true),\n                  true,\n                  Metadata.empty()),\n              new StructField(\n                  \"nested_struct\",\n                  new StructType(\n                      copy(\n                          new StructField(\"int_null\", DataTypes.LongType, true, Metadata.empty()),\n                          new StructField(\"str\", DataTypes.StringType, true, Metadata.empty()),\n                          new StructField(\n                              \"inner_struct\",\n                              new StructType(\n                                  copy(\n                                      new StructField(\n                                          \"bl\", DataTypes.BooleanType, true, Metadata.empty()),\n                                      new StructField(\n                                          \"str\", DataTypes.StringType, true, Metadata.empty()),\n                                      new StructField(\n                                          \"int_null\", DataTypes.LongType, true, Metadata.empty()))),\n                              true,\n                              Metadata.empty()))),\n                  true,\n                  Metadata.empty())));\n\n  public static String ALL_TYPES_TABLE_QUERY_TEMPLATE =\n      // Use DDL to support required fields\n      Stream.of(\n              \"create table %s.%s (\",\n              \"int_req int64 not null,\",\n              \"int_null int64,\",\n              \"bl bool,\",\n              \"str string,\",\n              \"day date,\",\n              \"ts timestamp,\",\n              \"dt datetime,\",\n              \"tm time,\",\n              \"binary bytes,\",\n              \"float float64,\",\n              \"json_f json,\",\n              \"nums struct<min numeric, max numeric, pi numeric, big_pi numeric>,\",\n              \"big_numeric_nums struct<min bignumeric(38,38), max bignumeric(38,38)>,\",\n              \"int_arr array<int64>,\",\n              \"int_struct_arr array<struct<i int64>>,\",\n              \"nested_struct struct<int_null int64, str string, inner_struct struct<bl bool, str string, int_null int64>>\",\n              \") as\",\n              \"\",\n              \"select\",\n              \"42 as int_req,\",\n              \"null as int_null,\",\n              \"true as bl,\",\n              \"\\\"string\\\" as str,\",\n              \"cast(\\\"2019-03-18\\\" as date) as day,\",\n              \"cast(\\\"2019-03-18T01:23:45.678901\\\" as timestamp) as ts,\",\n              \"cast(\\\"2019-03-18T01:23:45.678901\\\"  as datetime) as dt,\",\n              \"cast(\\\"01:23:45.678901\\\" as time) as tm,\",\n              \"cast(\\\"bytes\\\" as bytes) as binary,\",\n              \"4.2 as float,\",\n              \"JSON \\'{\\\"json\\\":\\\"true\\\"}\\' as json_f,\",\n              \"struct(\",\n              \"  cast(\\\"-99999999999999999999999999999.999999999\\\" as numeric) as min,\",\n              \"  cast(\\\"99999999999999999999999999999.999999999\\\" as numeric) as max,\",\n              \"  cast(3.14 as numeric) as pi,\",\n              \"  cast(\\\"31415926535897932384626433832.795028841\\\" as numeric) as big_pi\",\n              \") as nums,\",\n              \"struct(\",\n              \"cast(\\\"-0.34992332820282019728792003956564819968\\\" as bignumeric) as min,\",\n              \"cast(\\\"0.34992332820282019728792003956564819967\\\" as bignumeric) as max\",\n              \") as big_numeric_nums,\",\n              \"[1, 2, 3] as int_arr,\",\n              \"[(select as struct 1)] as int_struct_arr,\",\n              \"struct(\",\n              \"  1 as int_null,\",\n              \"  \\\"stringa\\\" as str,\",\n              \"  struct( true as bl, \\\"stringaa\\\" as str, 11 as int_null) \",\n              \") as nested_struct\")\n          .collect(Collectors.joining(\"\\n\"));\n\n  public static int ALL_TYPES_TABLE_SIZE = 266;\n  static String STRUCT_COLUMN_ORDER_TEST_TABLE_QUERY_TEMPLATE =\n      Stream.of(\n              \"create table %s.%s (\",\n              \"str string,\",\n              \"nums struct <\",\n              \"  num1 int64,\",\n              \"  num2 int64,\",\n              \"  num3 int64,\",\n              \"  strings array <struct<str1 string, str2 string, str3 string>>\",\n              \" >\",\n              \")\",\n              \"as\",\n              \"select\",\n              \"\\\"outer_string\\\" as str,\",\n              \"struct(\",\n              \" 1 as num1,\",\n              \" 2 as num2,\",\n              \" 3 as num3,\",\n              \" [\",\n              \"   struct(\\\"0:str1\\\" as str1, \\\"0:str2\\\" as str2, \\\"0:str3\\\" as str3),\",\n              \"   struct(\\\"1:str1\\\" as str1, \\\"1:str2\\\" as str2, \\\"1:str3\\\" as str3)\",\n              \" ] as string_struct_arr\",\n              \") as nums\")\n          .collect(Collectors.joining(\"\\n\"));\n\n  public static String DIFF_IN_SCHEMA_SRC_TABLE =\n      Stream.of(\n              \"create table %s.%s (\",\n              \"int_req int64 not null,\",\n              \"int_null int64,\",\n              \") as\",\n              \"\",\n              \"select\",\n              \"42 as int_req,\",\n              \"null as int_null\")\n          .collect(Collectors.joining(\"\\n\"));\n\n  public static String DIFF_IN_SCHEMA_SRC_TABLE_WITH_DESCRIPTION =\n      Stream.of(\n              \"create table %s.%s (\",\n              \"int_req int64 not null,\",\n              \"int_null int64 OPTIONS(description='An INTEGER field with description'),\",\n              \") as\",\n              \"\",\n              \"select\",\n              \"42 as int_req,\",\n              \"null as int_null\")\n          .collect(Collectors.joining(\"\\n\"));\n\n  public static String DIFF_IN_SCHEMA_DEST_TABLE =\n      Stream.of(\"create table %s.%s (\", \"int_req int64,\", \"int_null int64,\", \")\", \"\")\n          .collect(Collectors.joining(\"\\n\"));\n\n  public static String DIFF_IN_SCHEMA_DEST_TABLE_WITH_NULLABLE_FIELD =\n      Stream.of(\"create table %s.%s (\", \"int_null int64,\", \")\", \"\")\n          .collect(Collectors.joining(\"\\n\"));\n\n  public static String DIFF_IN_SCHEMA_DEST_TABLE_WITH_REQUIRED_FIELD =\n      Stream.of(\"create table %s.%s (\", \"int_req int64 not null,\", \")\", \"\")\n          .collect(Collectors.joining(\"\\n\"));\n\n  public static String DIFF_IN_SCHEMA_DEST_TABLE_WITH_REPEATED_FIELD =\n      Stream.of(\"create table %s.%s (\", \"int_rep ARRAY<INT64>,\", \")\", \"\")\n          .collect(Collectors.joining(\"\\n\"));\n\n  public static List<Column> ALL_TYPES_TABLE_COLS =\n      Arrays.asList(\n          lit(42L),\n          lit(null),\n          lit(true),\n          lit(\"string\"),\n          to_date(lit(\"2019-03-18\")),\n          from_utc_timestamp(lit(\"2019-03-18T01:23:45.678901\"), TimeZone.getDefault().getID()),\n          lit(\"2019-03-18T01:23:45.678901\"),\n          lit(5025678901L),\n          lit(\"bytes\").cast(\"BINARY\"),\n          lit(4.2),\n          lit(\"{\\\"json\\\":\\\"true\\\"}\"),\n          struct(\n              lit(\"-99999999999999999999999999999.999999999\").cast(BQ_NUMERIC),\n              lit(\"99999999999999999999999999999.999999999\").cast(BQ_NUMERIC),\n              lit(3.14).cast(BQ_NUMERIC),\n              lit(\"31415926535897932384626433832.795028841\").cast(BQ_NUMERIC)),\n          struct(\n              lit(\"-0.34992332820282019728792003956564819968\").cast(BQ_BIGNUMERIC),\n              lit(\"0.34992332820282019728792003956564819967\").cast(BQ_BIGNUMERIC)),\n          array(lit(1), lit(2), lit(3)),\n          array(struct(lit(1))),\n          struct(lit(1), lit(\"stringa\"), struct(lit(true), lit(\"stringaa\"), lit(11))));\n\n  public static Row ALL_TYPES_TABLE_ROW =\n      RowFactory.create(\n          42L,\n          null,\n          true,\n          \"string\",\n          Date.valueOf(\"2019-03-18\"),\n          new Timestamp(1552872225000L), // 2019-03-18 01:23:45\n          \"2019-03-18T01:23:45.678901\",\n          5025678901L,\n          new byte[] {98, 121, 116, 101, 115},\n          4.2,\n          \"{\\\"json\\\":\\\"true\\\"}\",\n          RowFactory.create(\n              Decimal.apply(\n                  new BigDecimal(\n                      \"-99999999999999999999999999999.999999999\",\n                      new MathContext(BQ_NUMERIC_PRECISION)),\n                  BQ_NUMERIC_PRECISION,\n                  BQ_NUMERIC_SCALE),\n              Decimal.apply(\n                  new BigDecimal(\n                      \"99999999999999999999999999999.999999999\",\n                      new MathContext(BQ_NUMERIC_PRECISION)),\n                  BQ_NUMERIC_PRECISION,\n                  BQ_NUMERIC_SCALE),\n              Decimal.apply(\n                  new BigDecimal(\"3.14\", new MathContext(BQ_NUMERIC_PRECISION)),\n                  BQ_NUMERIC_PRECISION,\n                  BQ_NUMERIC_SCALE),\n              Decimal.apply(\n                  new BigDecimal(\n                      \"31415926535897932384626433832.795028841\",\n                      new MathContext(BQ_NUMERIC_PRECISION)),\n                  BQ_NUMERIC_PRECISION,\n                  BQ_NUMERIC_SCALE)),\n          RowFactory.create(\n              Decimal.apply(\n                  new BigDecimal(\"-0.34992332820282019728792003956564819968\"),\n                  BQ_NUMERIC_PRECISION,\n                  BQ_BIGNUMERIC_SCALE),\n              Decimal.apply(\n                  new BigDecimal(\"0.34992332820282019728792003956564819967\"),\n                  BQ_NUMERIC_PRECISION,\n                  BQ_BIGNUMERIC_SCALE)),\n          new long[] {1L, 2L, 3L, 4L},\n          new Row[] {RowFactory.create(123L), RowFactory.create(1L)},\n          RowFactory.create(1L, \"stringa\", RowFactory.create(true, \"stringaa\", 11L)));\n\n  private static <T> T[] copy(T... elements) {\n    return elements;\n  }\n\n  public static ColumnOrderTestClass STRUCT_COLUMN_ORDER_TEST_TABLE_COLS =\n      new ColumnOrderTestClass(\n          new NumStruct(\n              3L,\n              2L,\n              1L,\n              ImmutableList.of(\n                  new StringStruct(\"0:str3\", \"0:str1\", \"0:str2\"),\n                  new StringStruct(\"1:str3\", \"1:str1\", \"1:str2\"))),\n          \"outer_string\");\n\n  // Constants for storage api tests.\n  public static final StructType STORAGE_API_ALL_TYPES_SCHEMA =\n      new StructType()\n          .add(\n              new StructField(\n                  \"int_req\",\n                  IntegerType,\n                  false,\n                  new MetadataBuilder().putString(\"description\", \"required integer\").build()))\n          .add(new StructField(\"int_null\", IntegerType, true, Metadata.empty()))\n          .add(new StructField(\"long\", LongType, true, Metadata.empty()))\n          .add(new StructField(\"short\", ShortType, true, Metadata.empty()))\n          .add(new StructField(\"bytenum\", ByteType, true, Metadata.empty()))\n          .add(new StructField(\"bool\", BooleanType, true, Metadata.empty()))\n          .add(new StructField(\"str\", StringType, true, Metadata.empty()))\n          .add(new StructField(\"date\", DateType, true, Metadata.empty()))\n          .add(new StructField(\"timestamp\", TimestampType, true, Metadata.empty()))\n          .add(new StructField(\"binary\", BinaryType, true, Metadata.empty()))\n          .add(new StructField(\"float\", DoubleType, true, Metadata.empty()))\n          .add(new StructField(\"json_f\", StringType, true, Metadata.empty()))\n          .add(\n              new StructField(\n                  \"nums\",\n                  new StructType()\n                      .add(new StructField(\"min\", NUMERIC_SPARK_TYPE, true, Metadata.empty()))\n                      .add(new StructField(\"max\", NUMERIC_SPARK_TYPE, true, Metadata.empty()))\n                      .add(new StructField(\"pi\", NUMERIC_SPARK_TYPE, true, Metadata.empty()))\n                      .add(new StructField(\"big_pi\", NUMERIC_SPARK_TYPE, true, Metadata.empty())),\n                  true,\n                  Metadata.empty()))\n          .add(\n              new StructField(\n                  \"big_numeric_nums\",\n                  new StructType()\n                      .add(new StructField(\"min\", BQ_BIGNUMERIC, true, Metadata.empty()))\n                      .add(new StructField(\"max\", BQ_BIGNUMERIC, true, Metadata.empty())),\n                  true,\n                  Metadata.empty()))\n          .add(new StructField(\"int_arr\", new ArrayType(IntegerType, true), true, Metadata.empty()))\n          .add(\n              new StructField(\n                  \"int_struct_arr\",\n                  new ArrayType(\n                      new StructType()\n                          .add(new StructField(\"i\", IntegerType, true, Metadata.empty())),\n                      true),\n                  true,\n                  Metadata.empty()));\n\n  // same as ALL_TYPES_SCHEMA, except all IntegerType's are LongType's.\n  public static final StructType STORAGE_API_ALL_TYPES_SCHEMA_BIGQUERY_REPRESENTATION =\n      new StructType()\n          .add(\n              new StructField(\n                  \"int_req\",\n                  LongType,\n                  false,\n                  new MetadataBuilder()\n                      .putString(\"description\", \"required integer\")\n                      .putString(\"comment\", \"required integer\")\n                      .build()))\n          .add(new StructField(\"int_null\", LongType, true, Metadata.empty()))\n          .add(new StructField(\"long\", LongType, true, Metadata.empty()))\n          .add(new StructField(\"short\", LongType, true, Metadata.empty()))\n          .add(new StructField(\"bytenum\", LongType, true, Metadata.empty()))\n          .add(new StructField(\"bool\", BooleanType, true, Metadata.empty()))\n          .add(new StructField(\"str\", StringType, true, Metadata.empty()))\n          .add(new StructField(\"date\", DateType, true, Metadata.empty()))\n          .add(new StructField(\"timestamp\", TimestampType, true, Metadata.empty()))\n          .add(new StructField(\"binary\", BinaryType, true, Metadata.empty()))\n          .add(new StructField(\"float\", DoubleType, true, Metadata.empty()))\n          .add(new StructField(\"json_f\", StringType, true, Metadata.empty()))\n          .add(\n              new StructField(\n                  \"nums\",\n                  new StructType()\n                      .add(new StructField(\"min\", NUMERIC_SPARK_TYPE, true, Metadata.empty()))\n                      .add(new StructField(\"max\", NUMERIC_SPARK_TYPE, true, Metadata.empty()))\n                      .add(new StructField(\"pi\", NUMERIC_SPARK_TYPE, true, Metadata.empty()))\n                      .add(new StructField(\"big_pi\", NUMERIC_SPARK_TYPE, true, Metadata.empty())),\n                  true,\n                  Metadata.empty()))\n          .add(\n              new StructField(\n                  \"big_numeric_nums\",\n                  new StructType()\n                      .add(new StructField(\"min\", BQ_BIGNUMERIC, true, Metadata.empty()))\n                      .add(new StructField(\"max\", BQ_BIGNUMERIC, true, Metadata.empty())),\n                  true,\n                  Metadata.empty()))\n          .add(new StructField(\"int_arr\", new ArrayType(LongType, true), true, Metadata.empty()))\n          .add(\n              new StructField(\n                  \"int_struct_arr\",\n                  new ArrayType(\n                      new StructType().add(new StructField(\"i\", LongType, true, Metadata.empty())),\n                      true),\n                  true,\n                  Metadata.empty()));\n\n  public static final Row[] STORAGE_API_ALL_TYPES_ROWS =\n      new Row[] {\n        RowFactory.create(\n            123456789,\n            null,\n            123456789L,\n            (short) 1024,\n            (byte) 127,\n            true,\n            \"hello\",\n            Date.valueOf(\"2019-03-18\"),\n            new Timestamp(1552872225000L), // 2019-03-18 01:23:45\n            new byte[] {\n              98, 121, 116, 101, 115\n            }, // byte[] representation of string \"bytes\" -> stored in BQ as Ynl0ZXM=\n            1.2345,\n            \"{\\\"json\\\":\\\"true\\\"}\",\n            RowFactory.create(\n                Decimal.apply(\n                    new BigDecimal(\n                        \"-99999999999999999999999999999.999999999\",\n                        new MathContext(BQ_NUMERIC_PRECISION)),\n                    BQ_NUMERIC_PRECISION,\n                    BQ_NUMERIC_SCALE),\n                Decimal.apply(\n                    new BigDecimal(\n                        \"99999999999999999999999999999.999999999\",\n                        new MathContext(BQ_NUMERIC_PRECISION)),\n                    BQ_NUMERIC_PRECISION,\n                    BQ_NUMERIC_SCALE),\n                Decimal.apply(\n                    new BigDecimal(\"3.14\", new MathContext(BQ_NUMERIC_PRECISION)),\n                    BQ_NUMERIC_PRECISION,\n                    BQ_NUMERIC_SCALE),\n                Decimal.apply(\n                    new BigDecimal(\n                        \"31415926535897932384626433832.795028841\",\n                        new MathContext(BQ_NUMERIC_PRECISION)),\n                    BQ_NUMERIC_PRECISION,\n                    BQ_NUMERIC_SCALE)),\n            RowFactory.create(\n                Decimal.apply(\n                    new BigDecimal(\"-0.34992332820282019728792003956564819968\"),\n                    BQ_NUMERIC_PRECISION,\n                    BQ_BIGNUMERIC_SCALE),\n                Decimal.apply(\n                    new BigDecimal(\"0.34992332820282019728792003956564819967\"),\n                    BQ_NUMERIC_PRECISION,\n                    BQ_BIGNUMERIC_SCALE)),\n            new int[] {1, 2, 3, 4},\n            new Row[] {RowFactory.create(1), RowFactory.create(1)})\n      };\n\n  public static final List<NumStruct> numStructDataset =\n      Arrays.asList(\n          new NumStruct(\n              1L, 2L, 3L, ImmutableList.of(new StringStruct(\"1:str3\", \"2:str1\", \"3:str2\"))),\n          new NumStruct(\n              2L, 3L, 4L, ImmutableList.of(new StringStruct(\"2:str3\", \"3:str1\", \"4:str2\"))));\n\n  public static final List<NumStruct> numStructDatasetForJoin =\n      Arrays.asList(\n          new NumStruct(\n              1L, 4L, 3L, ImmutableList.of(new StringStruct(\"3:str3\", \"4:str4\", \"3:str3\"))),\n          new NumStruct(\n              3L, 5L, 6L, ImmutableList.of(new StringStruct(\"6:str6\", \"5:str5\", \"3:str3\"))),\n          new NumStruct(\n              3L, 1L, 4L, ImmutableList.of(new StringStruct(\"3:str3\", \"1:str1\", \"4:str4\"))));\n\n  public static final List<NumStruct> numStructDatasetForWindow =\n      Arrays.asList(\n          new NumStruct(\n              1L, 3L, 4L, ImmutableList.of(new StringStruct(\"1:str3\", \"2:str1\", \"3:str2\"))),\n          new NumStruct(\n              2L, 2L, 6L, ImmutableList.of(new StringStruct(\"2:str3\", \"3:str1\", \"4:str2\"))),\n          new NumStruct(\n              1L, 3L, 5L, ImmutableList.of(new StringStruct(\"1:str3\", \"2:str1\", \"3:str2\"))),\n          new NumStruct(\n              2L, 2L, 7L, ImmutableList.of(new StringStruct(\"2:str3\", \"3:str1\", \"4:str2\"))));\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/integration/TestDataset.java",
    "content": "/*\n * Copyright 2025 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\nimport org.junit.rules.ExternalResource;\nimport org.junit.runner.Description;\nimport org.junit.runners.model.Statement;\n\npublic class TestDataset extends ExternalResource {\n\n  String testDataset;\n\n  @Override\n  public Statement apply(Statement base, Description description) {\n    // using hex string to shorten the dataset name\n    this.testDataset =\n        String.format(\n            \"spark_bq_%x_%x_%x\",\n            System.currentTimeMillis(), System.nanoTime(), description.getClassName().hashCode());\n    return super.apply(base, description);\n  }\n\n  @Override\n  protected void before() throws Throwable {\n    IntegrationTestUtils.createDataset(testDataset);\n    IntegrationTestUtils.runQuery(\n        String.format(\n            TestConstants.ALL_TYPES_TABLE_QUERY_TEMPLATE,\n            testDataset,\n            TestConstants.ALL_TYPES_TABLE_NAME));\n    IntegrationTestUtils.createView(testDataset, TestConstants.ALL_TYPES_VIEW_NAME);\n    IntegrationTestUtils.createView(testDataset, TestConstants.SHAKESPEARE_VIEW);\n    IntegrationTestUtils.runQuery(\n        String.format(\n            TestConstants.STRUCT_COLUMN_ORDER_TEST_TABLE_QUERY_TEMPLATE,\n            testDataset,\n            TestConstants.STRUCT_COLUMN_ORDER_TEST_TABLE_NAME));\n    IntegrationTestUtils.runQuery(\n        String.format(\n            TestConstants.DIFF_IN_SCHEMA_SRC_TABLE,\n            testDataset,\n            TestConstants.DIFF_IN_SCHEMA_SRC_TABLE_NAME));\n    IntegrationTestUtils.runQuery(\n        String.format(\n            TestConstants.DIFF_IN_SCHEMA_SRC_TABLE_WITH_DESCRIPTION,\n            testDataset,\n            TestConstants.DIFF_IN_SCHEMA_SRC_TABLE_NAME_WITH_DESCRIPTION));\n  }\n\n  @Override\n  protected void after() {\n    IntegrationTestUtils.deleteDatasetAndTables(testDataset);\n  }\n\n  @Override\n  public String toString() {\n    return testDataset;\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/integration/WriteIntegrationTestBase.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\nimport static com.google.common.truth.Truth.assertThat;\nimport static org.hamcrest.CoreMatchers.equalTo;\nimport static org.hamcrest.CoreMatchers.is;\nimport static org.junit.Assert.assertEquals;\nimport static org.junit.Assert.assertThrows;\nimport static org.junit.Assert.assertTrue;\nimport static org.junit.Assume.assumeThat;\n\nimport com.google.cloud.bigquery.BigQuery;\nimport com.google.cloud.bigquery.BigQueryOptions;\nimport com.google.cloud.bigquery.Field;\nimport com.google.cloud.bigquery.Field.Mode;\nimport com.google.cloud.bigquery.FieldValue;\nimport com.google.cloud.bigquery.FieldValueList;\nimport com.google.cloud.bigquery.LegacySQLTypeName;\nimport com.google.cloud.bigquery.QueryJobConfiguration;\nimport com.google.cloud.bigquery.RangePartitioning;\nimport com.google.cloud.bigquery.Schema;\nimport com.google.cloud.bigquery.StandardTableDefinition;\nimport com.google.cloud.bigquery.Table;\nimport com.google.cloud.bigquery.TableId;\nimport com.google.cloud.bigquery.TableInfo;\nimport com.google.cloud.bigquery.TableResult;\nimport com.google.cloud.bigquery.TimePartitioning;\nimport com.google.cloud.spark.bigquery.PartitionOverwriteMode;\nimport com.google.cloud.spark.bigquery.SchemaConverters;\nimport com.google.cloud.spark.bigquery.SchemaConvertersConfiguration;\nimport com.google.cloud.spark.bigquery.SparkBigQueryConfig;\nimport com.google.cloud.spark.bigquery.SparkBigQueryConfig.WriteMethod;\nimport com.google.cloud.spark.bigquery.integration.model.Data;\nimport com.google.cloud.spark.bigquery.integration.model.Friend;\nimport com.google.cloud.spark.bigquery.integration.model.Link;\nimport com.google.cloud.spark.bigquery.integration.model.Person;\nimport com.google.cloud.spark.bigquery.integration.model.RangeData;\nimport com.google.common.base.Preconditions;\nimport com.google.common.collect.ImmutableMap;\nimport com.google.common.collect.Streams;\nimport com.google.inject.ProvisionException;\nimport java.io.IOException;\nimport java.math.BigDecimal;\nimport java.nio.charset.StandardCharsets;\nimport java.nio.file.Files;\nimport java.nio.file.Path;\nimport java.sql.Date;\nimport java.sql.Timestamp;\nimport java.time.LocalDateTime;\nimport java.time.temporal.ChronoUnit;\nimport java.util.ArrayList;\nimport java.util.Arrays;\nimport java.util.Collections;\nimport java.util.Comparator;\nimport java.util.List;\nimport java.util.Map;\nimport java.util.Optional;\nimport java.util.TimeZone;\nimport java.util.concurrent.TimeoutException;\nimport java.util.concurrent.atomic.AtomicInteger;\nimport java.util.function.Predicate;\nimport java.util.stream.Collectors;\nimport org.apache.spark.ml.PipelineModel;\nimport org.apache.spark.ml.Transformer;\nimport org.apache.spark.ml.feature.MinMaxScaler;\nimport org.apache.spark.ml.feature.MinMaxScalerModel;\nimport org.apache.spark.ml.feature.VectorAssembler;\nimport org.apache.spark.ml.linalg.SQLDataTypes;\nimport org.apache.spark.package$;\nimport org.apache.spark.sql.Dataset;\nimport org.apache.spark.sql.Encoder;\nimport org.apache.spark.sql.Encoders;\nimport org.apache.spark.sql.Row;\nimport org.apache.spark.sql.RowFactory;\nimport org.apache.spark.sql.SaveMode;\nimport org.apache.spark.sql.execution.streaming.MemoryStream;\nimport org.apache.spark.sql.streaming.OutputMode;\nimport org.apache.spark.sql.streaming.StreamingQuery;\nimport org.apache.spark.sql.types.DataType;\nimport org.apache.spark.sql.types.DataTypes;\nimport org.apache.spark.sql.types.Decimal;\nimport org.apache.spark.sql.types.Metadata;\nimport org.apache.spark.sql.types.MetadataBuilder;\nimport org.apache.spark.sql.types.StructField;\nimport org.apache.spark.sql.types.StructType;\nimport org.hamcrest.CoreMatchers;\nimport org.junit.After;\nimport org.junit.Assert;\nimport org.junit.Assume;\nimport org.junit.Before;\nimport org.junit.Test;\nimport scala.Option;\nimport scala.Some;\nimport scala.collection.JavaConverters;\n\nabstract class WriteIntegrationTestBase extends SparkBigQueryIntegrationTestBase {\n\n  private static final TimeZone DEFAULT_TZ = TimeZone.getDefault();\n  protected static AtomicInteger id = new AtomicInteger(0);\n  protected final SparkBigQueryConfig.WriteMethod writeMethod;\n  protected Class<? extends Exception> expectedExceptionOnExistingTable;\n  protected BigQuery bq;\n  protected Optional<DataType> timeStampNTZType;\n\n  public WriteIntegrationTestBase(SparkBigQueryConfig.WriteMethod writeMethod) {\n    this(writeMethod, IllegalArgumentException.class, Optional.empty());\n  }\n\n  public WriteIntegrationTestBase(\n      SparkBigQueryConfig.WriteMethod writeMethod, DataType timeStampNTZType) {\n    this(writeMethod, IllegalArgumentException.class, Optional.of(timeStampNTZType));\n  }\n\n  public WriteIntegrationTestBase(\n      SparkBigQueryConfig.WriteMethod writeMethod,\n      Class<? extends Exception> expectedExceptionOnExistingTable,\n      Optional<DataType> timeStampNTZType) {\n    super();\n    this.writeMethod = writeMethod;\n    this.expectedExceptionOnExistingTable = expectedExceptionOnExistingTable;\n    this.bq = BigQueryOptions.getDefaultInstance().getService();\n    this.timeStampNTZType = timeStampNTZType;\n  }\n\n  private Metadata metadata(Map<String, String> map) {\n    MetadataBuilder metadata = new MetadataBuilder();\n    map.forEach((key, value) -> metadata.putString(key, value));\n    return metadata.build();\n  }\n\n  @Before\n  public void createTestTableName() {\n    // have a fresh table for each test\n    this.testTable = \"test_\" + System.nanoTime();\n  }\n\n  @After\n  public void resetDefaultTimeZone() {\n    TimeZone.setDefault(DEFAULT_TZ);\n  }\n\n  private String createDiffInSchemaDestTable(String schema) {\n    String destTableName = TestConstants.DIFF_IN_SCHEMA_DEST_TABLE_NAME + \"_\" + System.nanoTime();\n    IntegrationTestUtils.runQuery(String.format(schema, testDataset, destTableName));\n    return destTableName;\n  }\n\n  // Write tests. We have four save modes: Append, ErrorIfExists, Ignore and\n  // Overwrite. For each there are two behaviours - the table exists or not.\n  // See more at http://spark.apache.org/docs/2.3.2/api/java/org/apache/spark/sql/SaveMode.html\n\n  protected Dataset<Row> initialData() {\n    return spark\n        .createDataset(\n            Arrays.asList(\n                new Person(\n                    \"Abc\",\n                    Arrays.asList(new Friend(10, Arrays.asList(new Link(\"www.abc.com\"))))), //\n                new Person(\n                    \"Def\", Arrays.asList(new Friend(12, Arrays.asList(new Link(\"www.def.com\")))))),\n            Encoders.bean(Person.class))\n        .toDF();\n  }\n\n  protected Dataset<Row> additonalData() {\n    return spark\n        .createDataset(\n            Arrays.asList(\n                new Person(\n                    \"Xyz\", Arrays.asList(new Friend(10, Arrays.asList(new Link(\"www.xyz.com\"))))),\n                new Person(\n                    \"Pqr\", Arrays.asList(new Friend(12, Arrays.asList(new Link(\"www.pqr.com\")))))),\n            Encoders.bean(Person.class))\n        .toDF();\n  }\n\n  protected int testTableNumberOfRows() throws InterruptedException {\n    return testTableNumberOfRows(testTable);\n  }\n\n  protected int testTableNumberOfRows(String table) throws InterruptedException {\n    String query = String.format(\"select * from %s.%s\", testDataset.toString(), table);\n    return (int) bq.query(QueryJobConfiguration.of(query)).getTotalRows();\n  }\n\n  private StandardTableDefinition testPartitionedTableDefinition() {\n    return bq.getTable(testDataset.toString(), testTable + \"_partitioned\").getDefinition();\n  }\n\n  protected void writeToBigQueryAvroFormat(\n      Dataset<Row> df, SaveMode mode, String writeAtLeastOnce) {\n    writeToBigQuery(df, mode, \"avro\", writeAtLeastOnce);\n  }\n\n  protected void writeToBigQuery(Dataset<Row> df, SaveMode mode, String format) {\n    writeToBigQuery(df, mode, format, \"False\");\n  }\n\n  protected void writeToBigQuery(\n      Dataset<Row> df, SaveMode mode, String format, String writeAtLeastOnce) {\n    df.write()\n        .format(\"bigquery\")\n        .mode(mode)\n        .option(\"table\", fullTableName())\n        .option(\"temporaryGcsBucket\", TestConstants.TEMPORARY_GCS_BUCKET)\n        .option(\"intermediateFormat\", format)\n        .option(\"writeMethod\", writeMethod.toString())\n        .option(\"writeAtLeastOnce\", writeAtLeastOnce)\n        .save();\n  }\n\n  Dataset<Row> readAllTypesTable() {\n    return spark\n        .read()\n        .format(\"bigquery\")\n        .option(\"dataset\", testDataset.toString())\n        .option(\"table\", TestConstants.ALL_TYPES_TABLE_NAME)\n        .load();\n  }\n\n  private void writeToBigQuery_AppendSaveMode_Internal(String writeAtLeastOnce)\n      throws InterruptedException {\n    // initial write\n    writeToBigQueryAvroFormat(initialData(), SaveMode.Append, writeAtLeastOnce);\n    assertThat(testTableNumberOfRows()).isEqualTo(2);\n    assertThat(initialDataValuesExist()).isTrue();\n    // second write\n    writeToBigQueryAvroFormat(additonalData(), SaveMode.Append, writeAtLeastOnce);\n    assertThat(testTableNumberOfRows()).isEqualTo(4);\n    assertThat(additionalDataValuesExist()).isTrue();\n  }\n\n  @Test\n  public void testWriteToBigQuery_AppendSaveMode() throws InterruptedException {\n    writeToBigQuery_AppendSaveMode_Internal(\"False\");\n  }\n\n  @Test\n  public void testWriteToBigQuery_AppendSaveMode_AtLeastOnce() throws InterruptedException {\n    assumeThat(writeMethod, equalTo(WriteMethod.DIRECT));\n    writeToBigQuery_AppendSaveMode_Internal(\"True\");\n  }\n\n  private void writeToBigQuery_WithTableLabels_Internal(String writeAtLeastOnce) {\n    Dataset<Row> df = initialData();\n\n    df.write()\n        .format(\"bigquery\")\n        .mode(SaveMode.Append)\n        .option(\"table\", fullTableName())\n        .option(\"temporaryGcsBucket\", TestConstants.TEMPORARY_GCS_BUCKET)\n        .option(\"intermediateFormat\", \"avro\")\n        .option(\"writeMethod\", writeMethod.toString())\n        .option(\"writeAtLeastOnce\", writeAtLeastOnce)\n        .option(\"bigQueryTableLabel.alice\", \"bob\")\n        .option(\"bigQueryTableLabel.foo\", \"bar\")\n        .save();\n\n    Table bigQueryTable = bq.getTable(testDataset.toString(), testTable);\n    Map<String, String> tableLabels = bigQueryTable.getLabels();\n    assertEquals(2, tableLabels.size());\n    assertEquals(\"bob\", tableLabels.get(\"alice\"));\n    assertEquals(\"bar\", tableLabels.get(\"foo\"));\n  }\n\n  @Test\n  public void testWriteToBigQuery_WithTableLabels() {\n    writeToBigQuery_WithTableLabels_Internal(\"False\");\n  }\n\n  @Test\n  public void testWriteToBigQuery_WithTableLabels_AtLeastOnce() {\n    assumeThat(writeMethod, equalTo(WriteMethod.DIRECT));\n    writeToBigQuery_WithTableLabels_Internal(\"True\");\n  }\n\n  private void writeToBigQuery_EnableListInference_Internal(String writeAtLeastOnce)\n      throws InterruptedException {\n    Dataset<Row> df = initialData();\n    df.write()\n        .format(\"bigquery\")\n        .mode(SaveMode.Append)\n        .option(\"table\", fullTableName())\n        .option(\"temporaryGcsBucket\", TestConstants.TEMPORARY_GCS_BUCKET)\n        .option(\"intermediateFormat\", \"parquet\")\n        .option(\"writeMethod\", writeMethod.toString())\n        .option(\"writeAtLeastOnce\", writeAtLeastOnce)\n        .option(\"enableListInference\", true)\n        .save();\n\n    Dataset<Row> readDF =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"dataset\", testDataset.toString())\n            .option(\"table\", testTable)\n            .load();\n    SchemaConverters sc = SchemaConverters.from(SchemaConvertersConfiguration.createDefault());\n    Schema initialSchema = sc.toBigQuerySchema(df.schema());\n    Schema readSchema = sc.toBigQuerySchema(readDF.schema());\n    assertEquals(initialSchema, readSchema);\n  }\n\n  @Test\n  public void testWriteToBigQuery_EnableListInference() throws InterruptedException {\n    writeToBigQuery_EnableListInference_Internal(\"False\");\n  }\n\n  @Test\n  public void testWriteToBigQuery_EnableListInference_AtLeastOnce() throws InterruptedException {\n    assumeThat(writeMethod, equalTo(WriteMethod.DIRECT));\n    writeToBigQuery_EnableListInference_Internal(\"True\");\n  }\n\n  private void writeToBigQuery_ErrorIfExistsSaveMode_Internal(String writeAtLeastOnce)\n      throws InterruptedException {\n    // initial write\n    writeToBigQueryAvroFormat(initialData(), SaveMode.ErrorIfExists, writeAtLeastOnce);\n    assertThat(testTableNumberOfRows()).isEqualTo(2);\n    assertThat(initialDataValuesExist()).isTrue();\n    assertThrows(\n        expectedExceptionOnExistingTable,\n        () -> writeToBigQueryAvroFormat(additonalData(), SaveMode.ErrorIfExists, writeAtLeastOnce));\n  }\n\n  @Test\n  public void testWriteToBigQuery_ErrorIfExistsSaveMode() throws InterruptedException {\n    writeToBigQuery_ErrorIfExistsSaveMode_Internal(\"False\");\n  }\n\n  @Test\n  public void testWriteToBigQuery_ErrorIfExistsSaveMode_AtLeastOnce() throws InterruptedException {\n    assumeThat(writeMethod, equalTo(WriteMethod.DIRECT));\n    writeToBigQuery_ErrorIfExistsSaveMode_Internal(\"True\");\n  }\n\n  private void writeToBigQuery_IgnoreSaveMode_Internal(String writeAtLeastOnce)\n      throws InterruptedException {\n    // initial write\n    writeToBigQueryAvroFormat(initialData(), SaveMode.Ignore, writeAtLeastOnce);\n    assertThat(testTableNumberOfRows()).isEqualTo(2);\n    assertThat(initialDataValuesExist()).isTrue();\n    // second write\n    writeToBigQueryAvroFormat(additonalData(), SaveMode.Ignore, writeAtLeastOnce);\n    assertThat(testTableNumberOfRows()).isEqualTo(2);\n    assertThat(initialDataValuesExist()).isTrue();\n    assertThat(additionalDataValuesExist()).isFalse();\n  }\n\n  @Test\n  public void testWriteToBigQuery_IgnoreSaveMode() throws InterruptedException {\n    writeToBigQuery_IgnoreSaveMode_Internal(\"False\");\n  }\n\n  @Test\n  public void testWriteToBigQuery_IgnoreSaveMode_AtLeastOnce() throws InterruptedException {\n    assumeThat(writeMethod, equalTo(WriteMethod.DIRECT));\n    writeToBigQuery_IgnoreSaveMode_Internal(\"True\");\n  }\n\n  private void writeToBigQuery_OverwriteSaveMode_Internal(String writeAtLeastOnce)\n      throws InterruptedException {\n    // initial write\n    writeToBigQueryAvroFormat(initialData(), SaveMode.Overwrite, writeAtLeastOnce);\n    assertThat(testTableNumberOfRows()).isEqualTo(2);\n    assertThat(initialDataValuesExist()).isTrue();\n\n    // Adding a two minute cushion as the data takes some time to move from buffer to the actual\n    // table. Without this cushion, get the following error:\n    // \"UPDATE or DELETE statement over {DestinationTable} would affect rows in the streaming\n    // buffer, which is not supported\"\n    Thread.sleep(120 * 1000);\n\n    // second write\n    writeToBigQueryAvroFormat(additonalData(), SaveMode.Overwrite, writeAtLeastOnce);\n    assertThat(testTableNumberOfRows()).isEqualTo(2);\n    assertThat(initialDataValuesExist()).isFalse();\n    assertThat(additionalDataValuesExist()).isTrue();\n  }\n\n  @Test\n  public void testWriteToBigQuery_OverwriteSaveMode() throws InterruptedException {\n    writeToBigQuery_OverwriteSaveMode_Internal(\"False\");\n  }\n\n  @Test\n  public void testWriteToBigQuery_OverwriteSaveMode_AtLeastOnce() throws InterruptedException {\n    assumeThat(writeMethod, equalTo(WriteMethod.DIRECT));\n    writeToBigQuery_OverwriteSaveMode_Internal(\"True\");\n  }\n\n  @Test\n  public void testWriteToBigQuery_AvroFormat() throws InterruptedException {\n    writeToBigQuery(initialData(), SaveMode.ErrorIfExists, \"avro\");\n    assertThat(testTableNumberOfRows()).isEqualTo(2);\n    assertThat(initialDataValuesExist()).isTrue();\n  }\n\n  private void writeToBigQuerySimplifiedApi_Internal(String writeAtLeastOnce)\n      throws InterruptedException {\n    initialData()\n        .write()\n        .format(\"bigquery\")\n        .option(\"temporaryGcsBucket\", TestConstants.TEMPORARY_GCS_BUCKET)\n        .option(\"writeMethod\", writeMethod.toString())\n        .option(\"writeAtLeastOnce\", writeAtLeastOnce)\n        .save(fullTableName());\n    assertThat(testTableNumberOfRows()).isEqualTo(2);\n    assertThat(initialDataValuesExist()).isTrue();\n  }\n\n  @Test\n  public void testWriteToBigQuerySimplifiedApi() throws InterruptedException {\n    writeToBigQuerySimplifiedApi_Internal(\"False\");\n  }\n\n  @Test\n  public void testWriteToBigQuerySimplifiedApi_AtLeastOnce() throws InterruptedException {\n    assumeThat(writeMethod, equalTo(WriteMethod.DIRECT));\n    writeToBigQuerySimplifiedApi_Internal(\"True\");\n  }\n\n  @Test\n  public void testWriteToBigQueryAddingTheSettingsToSparkConf() throws InterruptedException {\n    spark.conf().set(\"temporaryGcsBucket\", TestConstants.TEMPORARY_GCS_BUCKET);\n    initialData()\n        .write()\n        .format(\"bigquery\")\n        .option(\"table\", fullTableName())\n        .option(\"writeMethod\", writeMethod.toString())\n        .save();\n    assertThat(testTableNumberOfRows()).isEqualTo(2);\n    assertThat(initialDataValuesExist()).isTrue();\n  }\n\n  private void directWriteToBigQueryWithDiffInSchema_Internal(String writeAtLeastOnce)\n      throws Exception {\n    assumeThat(writeMethod, equalTo(WriteMethod.DIRECT));\n    String destTableName = createDiffInSchemaDestTable(TestConstants.DIFF_IN_SCHEMA_DEST_TABLE);\n    int numOfRows = testTableNumberOfRows(destTableName);\n    assertThat(numOfRows).isEqualTo(0);\n    Dataset<Row> df =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"table\", testDataset + \".\" + TestConstants.DIFF_IN_SCHEMA_SRC_TABLE_NAME)\n            .load();\n\n    df.write()\n        .format(\"bigquery\")\n        .mode(SaveMode.Append)\n        .option(\"writeMethod\", writeMethod.toString())\n        .option(\"writeAtLeastOnce\", writeAtLeastOnce)\n        .save(testDataset + \".\" + destTableName);\n    numOfRows = testTableNumberOfRows(destTableName);\n    assertThat(numOfRows).isEqualTo(1);\n  }\n\n  @Test\n  public void testDirectWriteToBigQueryWithDiffInSchema() throws Exception {\n    directWriteToBigQueryWithDiffInSchema_Internal(\"False\");\n  }\n\n  @Test\n  public void testDirectWriteToBigQueryWithDiffInSchema_AtLeastOnce() throws Exception {\n    assumeThat(writeMethod, equalTo(WriteMethod.DIRECT));\n    directWriteToBigQueryWithDiffInSchema_Internal(\"True\");\n  }\n\n  private void directWriteToBigQueryWithDiffInSchemaAndDisableModeCheck_Internal(\n      String writeAtLeastOnce) throws Exception {\n    assumeThat(writeMethod, equalTo(WriteMethod.DIRECT));\n    String destTableName = createDiffInSchemaDestTable(TestConstants.DIFF_IN_SCHEMA_DEST_TABLE);\n    Dataset<Row> df =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"table\", testDataset + \".\" + TestConstants.DIFF_IN_SCHEMA_SRC_TABLE_NAME)\n            .load();\n\n    df.write()\n        .format(\"bigquery\")\n        .mode(SaveMode.Append)\n        .option(\"writeMethod\", writeMethod.toString())\n        .option(\"writeAtLeastOnce\", writeAtLeastOnce)\n        .option(\"enableModeCheckForSchemaFields\", false)\n        .save(testDataset + \".\" + destTableName);\n    int numOfRows = testTableNumberOfRows(destTableName);\n    assertThat(numOfRows).isEqualTo(1);\n  }\n\n  @Test\n  public void testDirectWriteToBigQueryWithDiffInSchemaAndDisableModeCheck() throws Exception {\n    directWriteToBigQueryWithDiffInSchemaAndDisableModeCheck_Internal(\"False\");\n  }\n\n  @Test\n  public void testDirectWriteToBigQueryWithDiffInSchemaAndDisableModeCheck_AtLeastOnce()\n      throws Exception {\n    assumeThat(writeMethod, equalTo(WriteMethod.DIRECT));\n    directWriteToBigQueryWithDiffInSchemaAndDisableModeCheck_Internal(\"True\");\n  }\n\n  private void directWriteToBigQueryWithDiffInDescription_Internal(String writeAtLeastOnce)\n      throws Exception {\n    assumeThat(writeMethod, equalTo(WriteMethod.DIRECT));\n    String destTableName = createDiffInSchemaDestTable(TestConstants.DIFF_IN_SCHEMA_DEST_TABLE);\n    int numOfRows = testTableNumberOfRows(destTableName);\n    assertThat(numOfRows).isEqualTo(0);\n    Dataset<Row> df =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\n                \"table\",\n                testDataset + \".\" + TestConstants.DIFF_IN_SCHEMA_SRC_TABLE_NAME_WITH_DESCRIPTION)\n            .load();\n\n    df.write()\n        .format(\"bigquery\")\n        .mode(SaveMode.Append)\n        .option(\"writeMethod\", writeMethod.toString())\n        .option(\"writeAtLeastOnce\", writeAtLeastOnce)\n        .save(testDataset + \".\" + destTableName);\n    numOfRows = testTableNumberOfRows(destTableName);\n    assertThat(numOfRows).isEqualTo(1);\n  }\n\n  @Test\n  public void testDirectWriteToBigQueryWithDiffInDescription() throws Exception {\n    directWriteToBigQueryWithDiffInDescription_Internal(\"False\");\n  }\n\n  @Test\n  public void testDirectWriteToBigQueryWithDiffInDescription_AtLeastOnce() throws Exception {\n    assumeThat(writeMethod, equalTo(WriteMethod.DIRECT));\n    directWriteToBigQueryWithDiffInDescription_Internal(\"True\");\n  }\n\n  @Test\n  public void testInDirectWriteToBigQueryWithDiffInSchemaAndModeCheck() throws Exception {\n    assumeThat(writeMethod, equalTo(SparkBigQueryConfig.WriteMethod.INDIRECT));\n    String destTableName = createDiffInSchemaDestTable(TestConstants.DIFF_IN_SCHEMA_DEST_TABLE);\n    Dataset<Row> df =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"table\", testDataset + \".\" + TestConstants.DIFF_IN_SCHEMA_SRC_TABLE_NAME)\n            .load();\n\n    df.write()\n        .format(\"bigquery\")\n        .mode(SaveMode.Append)\n        .option(\"writeMethod\", writeMethod.toString())\n        .option(\"temporaryGcsBucket\", TestConstants.TEMPORARY_GCS_BUCKET)\n        .option(\"enableModeCheckForSchemaFields\", true)\n        .save(testDataset + \".\" + destTableName);\n    int numOfRows = testTableNumberOfRows(destTableName);\n    assertThat(numOfRows).isEqualTo(1);\n  }\n\n  @Test\n  public void testIndirectWriteToBigQueryWithDiffInSchemaNullableFieldAndDisableModeCheck()\n      throws Exception {\n    assumeThat(writeMethod, equalTo(SparkBigQueryConfig.WriteMethod.INDIRECT));\n    String destTableName = createDiffInSchemaDestTable(TestConstants.DIFF_IN_SCHEMA_DEST_TABLE);\n    Dataset<Row> df =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"table\", testDataset + \".\" + TestConstants.DIFF_IN_SCHEMA_SRC_TABLE_NAME)\n            .load();\n\n    df.write()\n        .format(\"bigquery\")\n        .mode(SaveMode.Append)\n        .option(\"writeMethod\", writeMethod.toString())\n        .option(\"temporaryGcsBucket\", TestConstants.TEMPORARY_GCS_BUCKET)\n        .option(\"enableModeCheckForSchemaFields\", false)\n        .save(testDataset + \".\" + destTableName);\n    int numOfRows = testTableNumberOfRows(destTableName);\n    assertThat(numOfRows).isEqualTo(1);\n  }\n\n  @Test\n  public void testInDirectWriteToBigQueryWithDiffInDescription() throws Exception {\n    assumeThat(writeMethod, equalTo(WriteMethod.INDIRECT));\n    String destTableName = createDiffInSchemaDestTable(TestConstants.DIFF_IN_SCHEMA_DEST_TABLE);\n    Dataset<Row> df =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\n                \"table\",\n                testDataset + \".\" + TestConstants.DIFF_IN_SCHEMA_SRC_TABLE_NAME_WITH_DESCRIPTION)\n            .load();\n\n    df.write()\n        .format(\"bigquery\")\n        .mode(SaveMode.Append)\n        .option(\"temporaryGcsBucket\", TestConstants.TEMPORARY_GCS_BUCKET)\n        .option(\"writeMethod\", writeMethod.toString())\n        .save(testDataset + \".\" + destTableName);\n    int numOfRows = testTableNumberOfRows(destTableName);\n    assertThat(numOfRows).isEqualTo(1);\n  }\n\n  @Test\n  public void testInDirectWriteToBigQueryWithStreaming() throws TimeoutException, IOException {\n    assumeThat(writeMethod, equalTo(WriteMethod.INDIRECT));\n\n    // Skipping test for spark 4: only works for spark 3 for now.\n    String sparkVersion = package$.MODULE$.SPARK_VERSION();\n    Assume.assumeThat(sparkVersion, CoreMatchers.startsWith(\"3.\"));\n\n    Path inputDir = Files.createTempDirectory(\"bq_integration_test_input\");\n    Path jsonFile = inputDir.resolve(\"test_data_for_streaming.json\");\n    Files.write(jsonFile, \"{\\\"name\\\": \\\"spark\\\", \\\"age\\\": 100}\".getBytes(StandardCharsets.UTF_8));\n\n    StructType schema =\n        new StructType().add(\"name\", DataTypes.StringType).add(\"age\", DataTypes.LongType);\n    Dataset<Row> df =\n        spark.readStream().option(\"multiline\", \"true\").schema(schema).json(inputDir.toString());\n\n    String destTableName = testDataset + \".\" + \"test_stream_json_\" + System.nanoTime();\n    String checkPointLocation =\n        Files.createTempDirectory(\"bq_integration_test_checkpoint\").toString();\n\n    StreamingQuery writeStream =\n        df.writeStream()\n            .format(\"bigquery\")\n            .outputMode(OutputMode.Append())\n            .option(\"temporaryGcsBucket\", TestConstants.TEMPORARY_GCS_BUCKET)\n            .option(\"checkpointLocation\", checkPointLocation)\n            .option(\"table\", destTableName)\n            .start();\n    writeStream.processAllAvailable();\n    writeStream.stop();\n\n    List<Row> rows = spark.read().format(\"bigquery\").load(destTableName).collectAsList();\n    assertThat(rows).hasSize(1);\n    Row row = rows.get(0);\n    assertThat(row.getString(0)).isEqualTo(\"spark\");\n    assertThat(row.getLong(1)).isEqualTo(100L);\n  }\n\n  @Test\n  public void testInDirectWriteToBigQueryWithStreaming_AllTypes()\n      throws IOException, TimeoutException {\n    // Skipping test for spark 4: only works for spark 3.5 for now.\n    String sparkVersion = package$.MODULE$.SPARK_VERSION();\n    Assume.assumeThat(sparkVersion, CoreMatchers.startsWith(\"3.5\"));\n\n    StructType schema = TestConstants.ALL_TYPES_TABLE_SCHEMA;\n    Row row = TestConstants.ALL_TYPES_TABLE_ROW;\n    List<Row> rawRows = Collections.nCopies(20, row);\n\n    Dataset<Row> normalizedDF = spark.createDataFrame(rawRows, schema);\n    List<Row> rows = normalizedDF.collectAsList();\n    Encoder<Row> encoder = normalizedDF.encoder();\n\n    MemoryStream<Row> memoryStream =\n        new MemoryStream<>(\n            1, // id\n            spark.sqlContext(), // sqlContext\n            Option.apply(null),\n            encoder // Implicit encoder passed as final arg\n            );\n    memoryStream.addData(JavaConverters.asScalaBuffer(rows).toSeq());\n\n    String destTableName = testDataset + \".\" + \"test_streaming_allTypes\" + System.nanoTime();\n    String checkPointLocation =\n        Files.createTempDirectory(\"bq_integration_test_streaming_checkpoint\").toString();\n\n    StreamingQuery writeStream =\n        memoryStream\n            .toDF()\n            .writeStream()\n            .format(\"bigquery\")\n            .outputMode(OutputMode.Append())\n            .option(\"temporaryGcsBucket\", TestConstants.TEMPORARY_GCS_BUCKET)\n            .option(\"checkpointLocation\", checkPointLocation)\n            .option(\"table\", destTableName)\n            .start();\n    writeStream.processAllAvailable();\n    writeStream.stop();\n\n    List<Row> readRows = spark.read().format(\"bigquery\").load(destTableName).collectAsList();\n    assertThat(readRows).hasSize(20);\n    assertThat(readRows.get(0)).isEqualTo(rows.get(0));\n  }\n\n  private void writeDFNullableToBigQueryNullable_Internal(String writeAtLeastOnce)\n      throws Exception {\n    String destTableName =\n        createDiffInSchemaDestTable(TestConstants.DIFF_IN_SCHEMA_DEST_TABLE_WITH_NULLABLE_FIELD);\n    StructType srcSchema =\n        structType(StructField.apply(\"int_null\", DataTypes.IntegerType, true, Metadata.empty()));\n    List<Row> rows = Arrays.asList(RowFactory.create(25), RowFactory.create((Object) null));\n    Dataset<Row> df = spark.createDataFrame(rows, srcSchema);\n\n    df.write()\n        .format(\"bigquery\")\n        .mode(SaveMode.Append)\n        .option(\"temporaryGcsBucket\", TestConstants.TEMPORARY_GCS_BUCKET)\n        .option(\"writeMethod\", writeMethod.toString())\n        .option(\"writeAtLeastOnce\", writeAtLeastOnce)\n        .save(testDataset + \".\" + destTableName);\n    int numOfRows = testTableNumberOfRows(destTableName);\n    assertThat(numOfRows).isEqualTo(2);\n  }\n\n  @Test\n  public void testWriteDFNullableToBigQueryNullable() throws Exception {\n    writeDFNullableToBigQueryNullable_Internal(\"False\");\n  }\n\n  @Test\n  public void testWriteDFNullableToBigQueryNullable_AtLeastOnce() throws Exception {\n    assumeThat(writeMethod, equalTo(WriteMethod.DIRECT));\n    writeDFNullableToBigQueryNullable_Internal(\"True\");\n  }\n\n  private void writeDFNullableWithNonNullDataToBigQueryRequired_Internal(String writeAtLeastOnce)\n      throws Exception {\n    assumeThat(writeMethod, equalTo(WriteMethod.DIRECT));\n    String destTableName =\n        createDiffInSchemaDestTable(TestConstants.DIFF_IN_SCHEMA_DEST_TABLE_WITH_REQUIRED_FIELD);\n    StructType srcSchema =\n        structType(StructField.apply(\"int_req\", DataTypes.IntegerType, true, Metadata.empty()));\n    List<Row> rows = Arrays.asList(RowFactory.create(25));\n    Dataset<Row> df = spark.createDataFrame(rows, srcSchema);\n\n    df.write()\n        .format(\"bigquery\")\n        .mode(SaveMode.Append)\n        .option(\"temporaryGcsBucket\", TestConstants.TEMPORARY_GCS_BUCKET)\n        .option(\"writeMethod\", writeMethod.toString())\n        .option(\"writeAtLeastOnce\", writeAtLeastOnce)\n        .save(testDataset + \".\" + destTableName);\n    int numOfRows = testTableNumberOfRows(destTableName);\n    assertThat(numOfRows).isEqualTo(1);\n  }\n\n  @Test\n  public void testWriteDFNullableWithNonNullDataToBigQueryRequired() throws Exception {\n    writeDFNullableWithNonNullDataToBigQueryRequired_Internal(\"False\");\n  }\n\n  @Test\n  public void testWriteDFNullableWithNonNullDataToBigQueryRequired_AtLeastOnce() throws Exception {\n    assumeThat(writeMethod, equalTo(WriteMethod.DIRECT));\n    writeDFNullableWithNonNullDataToBigQueryRequired_Internal(\"True\");\n  }\n\n  @Test\n  public void testWriteNullableDFWithNullDataToBigQueryRequired() {\n    assumeThat(writeMethod, equalTo(WriteMethod.DIRECT));\n    String destTableName =\n        createDiffInSchemaDestTable(TestConstants.DIFF_IN_SCHEMA_DEST_TABLE_WITH_REQUIRED_FIELD);\n    StructType srcSchema =\n        structType(StructField.apply(\"int_req\", DataTypes.IntegerType, true, Metadata.empty()));\n    List<Row> rows = Arrays.asList(RowFactory.create((Object) null));\n    Dataset<Row> df = spark.createDataFrame(rows, srcSchema);\n\n    Assert.assertThrows(\n        \"INVALID_ARGUMENT: Errors found while processing rows.\",\n        Exception.class,\n        () ->\n            df.write()\n                .format(\"bigquery\")\n                .mode(SaveMode.Append)\n                .option(\"writeMethod\", writeMethod.toString())\n                .save(testDataset + \".\" + destTableName));\n  }\n\n  @Test\n  public void testWriteNullableDFToBigQueryRepeated() {\n    assumeThat(writeMethod, equalTo(WriteMethod.DIRECT));\n    String destTableName =\n        createDiffInSchemaDestTable(TestConstants.DIFF_IN_SCHEMA_DEST_TABLE_WITH_REPEATED_FIELD);\n    StructType srcSchema =\n        structType(StructField.apply(\"int_rep\", DataTypes.IntegerType, true, Metadata.empty()));\n    List<Row> rows = Arrays.asList(RowFactory.create(10));\n    Dataset<Row> df = spark.createDataFrame(rows, srcSchema);\n\n    Assert.assertThrows(\n        ProvisionException.class,\n        () ->\n            df.write()\n                .format(\"bigquery\")\n                .mode(SaveMode.Append)\n                .option(\"writeMethod\", writeMethod.toString())\n                .save(testDataset + \".\" + destTableName));\n  }\n\n  @Test\n  public void testWriteRequiredDFToBigQueryNullable() throws Exception {\n    String destTableName =\n        createDiffInSchemaDestTable(TestConstants.DIFF_IN_SCHEMA_DEST_TABLE_WITH_NULLABLE_FIELD);\n    StructType srcSchema =\n        structType(StructField.apply(\"int_null\", DataTypes.IntegerType, false, Metadata.empty()));\n    List<Row> rows = Arrays.asList(RowFactory.create(25));\n    Dataset<Row> df = spark.createDataFrame(rows, srcSchema);\n\n    df.write()\n        .format(\"bigquery\")\n        .mode(SaveMode.Append)\n        .option(\"temporaryGcsBucket\", TestConstants.TEMPORARY_GCS_BUCKET)\n        .option(\"writeMethod\", writeMethod.toString())\n        .save(testDataset + \".\" + destTableName);\n    int numOfRows = testTableNumberOfRows(destTableName);\n    assertThat(numOfRows).isEqualTo(1);\n  }\n\n  @Test\n  public void testWriteRequiredDFToBigQueryRequired() throws Exception {\n    String destTableName =\n        createDiffInSchemaDestTable(TestConstants.DIFF_IN_SCHEMA_DEST_TABLE_WITH_REQUIRED_FIELD);\n    StructType srcSchema =\n        structType(StructField.apply(\"int_req\", DataTypes.IntegerType, false, Metadata.empty()));\n    List<Row> rows = Arrays.asList(RowFactory.create(25));\n    Dataset<Row> df = spark.createDataFrame(rows, srcSchema);\n\n    df.write()\n        .format(\"bigquery\")\n        .mode(SaveMode.Append)\n        .option(\"temporaryGcsBucket\", TestConstants.TEMPORARY_GCS_BUCKET)\n        .option(\"writeMethod\", writeMethod.toString())\n        .save(testDataset + \".\" + destTableName);\n    int numOfRows = testTableNumberOfRows(destTableName);\n    assertThat(numOfRows).isEqualTo(1);\n  }\n\n  @Test\n  public void testWriteRequiredDFToBigQueryRepeated() {\n    assumeThat(writeMethod, equalTo(WriteMethod.DIRECT));\n    String destTableName =\n        createDiffInSchemaDestTable(TestConstants.DIFF_IN_SCHEMA_DEST_TABLE_WITH_REPEATED_FIELD);\n    StructType srcSchema =\n        structType(StructField.apply(\"int_rep\", DataTypes.IntegerType, false, Metadata.empty()));\n    List<Row> rows = Arrays.asList(RowFactory.create(10));\n    Dataset<Row> df = spark.createDataFrame(rows, srcSchema);\n\n    Assert.assertThrows(\n        ProvisionException.class,\n        () ->\n            df.write()\n                .format(\"bigquery\")\n                .mode(SaveMode.Append)\n                .option(\"writeMethod\", writeMethod.toString())\n                .save(testDataset + \".\" + destTableName));\n  }\n\n  @Test\n  public void testWriteRepeatedDFToBigQueryNullable() {\n    assumeThat(writeMethod, equalTo(WriteMethod.DIRECT));\n    String destTableName =\n        createDiffInSchemaDestTable(TestConstants.DIFF_IN_SCHEMA_DEST_TABLE_WITH_NULLABLE_FIELD);\n    StructType srcSchema =\n        structType(\n            StructField.apply(\n                \"int_null\",\n                DataTypes.createArrayType(DataTypes.IntegerType),\n                true,\n                Metadata.empty()));\n    List<Row> rows =\n        Arrays.asList(RowFactory.create(Arrays.asList(1, 2)), RowFactory.create((Object) null));\n    Dataset<Row> df = spark.createDataFrame(rows, srcSchema);\n\n    Assert.assertThrows(\n        ProvisionException.class,\n        () ->\n            df.write()\n                .format(\"bigquery\")\n                .mode(SaveMode.Append)\n                .option(\"writeMethod\", writeMethod.toString())\n                .save(testDataset + \".\" + destTableName));\n  }\n\n  @Test\n  public void testWriteRepeatedDFToBigQueryRequired() {\n    assumeThat(writeMethod, equalTo(WriteMethod.DIRECT));\n    String destTableName =\n        createDiffInSchemaDestTable(TestConstants.DIFF_IN_SCHEMA_DEST_TABLE_WITH_REQUIRED_FIELD);\n    StructType srcSchema =\n        structType(\n            StructField.apply(\n                \"int_req\",\n                DataTypes.createArrayType(DataTypes.IntegerType),\n                true,\n                Metadata.empty()));\n    List<Row> rows = Arrays.asList(RowFactory.create(Arrays.asList(1, 2)));\n    Dataset<Row> df = spark.createDataFrame(rows, srcSchema);\n\n    Assert.assertThrows(\n        ProvisionException.class,\n        () ->\n            df.write()\n                .format(\"bigquery\")\n                .mode(SaveMode.Append)\n                .option(\"temporaryGcsBucket\", TestConstants.TEMPORARY_GCS_BUCKET)\n                .option(\"writeMethod\", writeMethod.toString())\n                .save(testDataset + \".\" + destTableName));\n  }\n\n  @Test\n  public void testWriteRepeatedDFToBigQueryRepeated() {\n    String destTableName =\n        createDiffInSchemaDestTable(TestConstants.DIFF_IN_SCHEMA_DEST_TABLE_WITH_REPEATED_FIELD);\n    StructType srcSchema =\n        structType(\n            StructField.apply(\n                \"int_rep\",\n                DataTypes.createArrayType(DataTypes.IntegerType),\n                true,\n                Metadata.empty()));\n    List<Row> rows =\n        Arrays.asList(RowFactory.create(Arrays.asList(1, 2)), RowFactory.create((Object) null));\n    Dataset<Row> df = spark.createDataFrame(rows, srcSchema);\n\n    df.write()\n        .format(\"bigquery\")\n        .mode(SaveMode.Append)\n        .option(\"temporaryGcsBucket\", TestConstants.TEMPORARY_GCS_BUCKET)\n        .option(\"writeMethod\", writeMethod.toString())\n        .save(testDataset + \".\" + destTableName);\n  }\n\n  @Test\n  public void testWriteToBigQueryPartitionedAndClusteredTable() {\n    // partition write not supported in BQ Storage Write API\n    assumeThat(writeMethod, equalTo(SparkBigQueryConfig.WriteMethod.INDIRECT));\n\n    Dataset<Row> df =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"table\", TestConstants.LIBRARIES_PROJECTS_TABLE)\n            .load()\n            .where(\"platform = 'Sublime'\");\n\n    df.write()\n        .format(\"bigquery\")\n        .option(\"table\", fullTableNamePartitioned())\n        .option(\"temporaryGcsBucket\", TestConstants.TEMPORARY_GCS_BUCKET)\n        .option(\"partitionField\", \"created_timestamp\")\n        .option(\"clusteredFields\", \"platform\")\n        .option(\"writeMethod\", writeMethod.toString())\n        .mode(SaveMode.Overwrite)\n        .save();\n\n    StandardTableDefinition tableDefinition = testPartitionedTableDefinition();\n    assertThat(tableDefinition.getTimePartitioning().getField()).isEqualTo(\"created_timestamp\");\n    assertThat(tableDefinition.getClustering().getFields()).contains(\"platform\");\n  }\n\n  @Test\n  public void testWriteToBigQueryClusteredTable() {\n    Dataset<Row> df =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"table\", TestConstants.LIBRARIES_PROJECTS_TABLE)\n            .load()\n            .where(\"platform = 'Sublime'\");\n\n    df.write()\n        .format(\"bigquery\")\n        .option(\"table\", fullTableName())\n        .option(\"temporaryGcsBucket\", TestConstants.TEMPORARY_GCS_BUCKET)\n        .option(\"clusteredFields\", \"platform\")\n        .option(\"writeMethod\", writeMethod.toString())\n        .mode(SaveMode.Append)\n        .save();\n\n    StandardTableDefinition tableDefinition =\n        bq.getTable(testDataset.toString(), testTable).getDefinition();\n    assertThat(tableDefinition.getClustering().getFields()).contains(\"platform\");\n  }\n\n  @Test\n  public void testWriteWithTableLabels() throws Exception {\n    Dataset<Row> df = initialData();\n    spark.conf().set(\"bigQueryTableLabel.foo\", \"bar\");\n    df.write()\n        .format(\"bigquery\")\n        .option(\"writeMethod\", writeMethod.toString())\n        .option(\"temporaryGcsBucket\", TestConstants.TEMPORARY_GCS_BUCKET)\n        .option(\"dataset\", testDataset.toString())\n        .option(\"table\", testTable)\n        .save();\n    spark.conf().unset(\"bigQueryTableLabel.foo\");\n\n    Table table =\n        IntegrationTestUtils.getBigquery().getTable(TableId.of(testDataset.toString(), testTable));\n    assertThat(table).isNotNull();\n    Map<String, String> labels = table.getLabels();\n    assertThat(labels).isNotNull();\n    assertThat(labels).containsEntry(\"foo\", \"bar\");\n  }\n\n  protected Dataset<Row> overwriteSinglePartition(StructField dateField) {\n    // create partitioned table\n    String tableName = fullTableNamePartitioned() + \"_\" + id.getAndIncrement();\n    TableId tableId = TableId.of(testDataset.toString(), tableName);\n    Schema schema =\n        Schema.of(\n            Field.of(\"the_date\", LegacySQLTypeName.DATE),\n            Field.of(\"some_text\", LegacySQLTypeName.STRING));\n    TimePartitioning timePartitioning =\n        TimePartitioning.newBuilder(TimePartitioning.Type.DAY).setField(\"the_date\").build();\n    StandardTableDefinition tableDefinition =\n        StandardTableDefinition.newBuilder()\n            .setSchema(schema)\n            .setTimePartitioning(timePartitioning)\n            .build();\n    bq.create(TableInfo.of(tableId, tableDefinition));\n    // entering the data\n    try {\n      bq.query(\n          QueryJobConfiguration.of(\n              String.format(\n                  \"insert into `\"\n                      + fullTableName()\n                      + \"` (the_date, some_text) values ('2020-07-01', 'foo'), ('2020-07-02',\"\n                      + \" 'bar')\")));\n    } catch (InterruptedException e) {\n      throw new RuntimeException(e);\n    }\n\n    // overrding a single partition\n    List<Row> rows = Arrays.asList(RowFactory.create(Date.valueOf(\"2020-07-01\"), \"baz\"));\n    StructType newDataSchema =\n        new StructType(\n            new StructField[] {\n              dateField, new StructField(\"some_text\", DataTypes.StringType, true, Metadata.empty())\n            });\n    Dataset<Row> newDataDF = spark.createDataFrame(rows, newDataSchema);\n\n    newDataDF\n        .write()\n        .format(\"bigquery\")\n        .option(\"temporaryGcsBucket\", TestConstants.TEMPORARY_GCS_BUCKET)\n        .option(\"datePartition\", \"20200701\")\n        .mode(\"overwrite\")\n        .save(fullTableName());\n\n    Dataset<Row> resultDF = spark.read().format(\"bigquery\").load(fullTableName());\n    List<Row> result = resultDF.collectAsList();\n\n    assertThat(result).hasSize(2);\n    assertThat(result.stream().filter(row -> row.getString(1).equals(\"bar\")).count()).isEqualTo(1);\n    assertThat(result.stream().filter(row -> row.getString(1).equals(\"baz\")).count()).isEqualTo(1);\n\n    return resultDF;\n  }\n\n  // TODO: figure out why the table creation fails\n  // @Test\n  public void testOverwriteSinglePartition() {\n    overwriteSinglePartition(\n        new StructField(\"the_date\", DataTypes.DateType, true, Metadata.empty()));\n  }\n\n  // TODO: figure out why the table creation fails\n  // @Test\n  public void testOverwriteSinglePartitionWithComment() {\n    String comment = \"the partition field\";\n    Dataset<Row> resultDF =\n        overwriteSinglePartition(\n            new StructField(\"the_date\", DataTypes.DateType, true, Metadata.empty())\n                .withComment(comment));\n    assertThat(resultDF.schema().fields()[0].getComment()).isEqualTo(Some.apply(comment));\n  }\n\n  @Test\n  public void testWriteToBigQueryWithDescription() {\n    String testDescription = \"test description\";\n    String testComment = \"test comment\";\n\n    Metadata metadata = Metadata.fromJson(\"{\\\"description\\\": \\\"\" + testDescription + \"\\\"}\");\n\n    StructType[] schemas =\n        new StructType[] {\n          structType(new StructField(\"c1\", DataTypes.IntegerType, true, metadata)),\n          structType(\n              new StructField(\"c1\", DataTypes.IntegerType, true, Metadata.empty())\n                  .withComment(testComment)),\n          structType(\n              new StructField(\"c1\", DataTypes.IntegerType, true, metadata)\n                  .withComment(testComment)),\n          structType(new StructField(\"c1\", DataTypes.IntegerType, true, Metadata.empty()))\n        };\n\n    String[] readValues = new String[] {testDescription, testComment, testComment, null};\n\n    for (int i = 0; i < schemas.length; i++) {\n      List<Row> data = Arrays.asList(RowFactory.create(100), RowFactory.create(200));\n\n      Dataset<Row> descriptionDF = spark.createDataFrame(data, schemas[i]);\n\n      descriptionDF\n          .write()\n          .format(\"bigquery\")\n          .mode(SaveMode.Overwrite)\n          .option(\"table\", fullTableName() + \"_\" + i)\n          .option(\"temporaryGcsBucket\", TestConstants.TEMPORARY_GCS_BUCKET)\n          .option(\"intermediateFormat\", \"parquet\")\n          .option(\"writeMethod\", writeMethod.toString())\n          .save();\n\n      Dataset<Row> readDF =\n          spark\n              .read()\n              .format(\"bigquery\")\n              .option(\"dataset\", testDataset.toString())\n              .option(\"table\", testTable + \"_\" + i)\n              .load();\n\n      Optional<String> description =\n          SchemaConverters.getDescriptionOrCommentOfField(\n              readDF.schema().fields()[0], Optional.empty());\n\n      if (readValues[i] != null) {\n        assertThat(description.isPresent()).isTrue();\n        assertThat(description.orElse(\"\")).isEqualTo(readValues[i]);\n      } else {\n        assertThat(description.isPresent()).isFalse();\n      }\n    }\n  }\n\n  @Test\n  public void testWriteEmptyDataFrame() throws Exception {\n    Dataset<Row> df = spark.createDataFrame(Collections.emptyList(), Link.class);\n    writeToBigQueryAvroFormat(df, SaveMode.Append, \"False\");\n    assertThat(testTableNumberOfRows()).isEqualTo(0);\n  }\n\n  protected StructType structType(StructField... fields) {\n    return new StructType(fields);\n  }\n\n  @Test\n  public void testPartition_Hourly() {\n    testPartition(\"HOUR\");\n  }\n\n  @Test\n  public void testPartition_Daily() {\n    testPartition(\"DAY\");\n  }\n\n  @Test\n  public void testPartition_Monthly() {\n    testPartition(\"MONTH\");\n  }\n\n  @Test\n  public void testPartition_Yearly() {\n    testPartition(\"YEAR\");\n  }\n\n  private void testPartition(String partitionType) {\n    // partition write not supported in BQ Storage Write API\n    assumeThat(writeMethod, equalTo(SparkBigQueryConfig.WriteMethod.INDIRECT));\n\n    List<Data> data =\n        Arrays.asList(\n            new Data(\"a\", Timestamp.valueOf(\"2020-01-01 01:01:01\")),\n            new Data(\"b\", Timestamp.valueOf(\"2020-01-02 02:02:02\")),\n            new Data(\"c\", Timestamp.valueOf(\"2020-01-03 03:03:03\")));\n    Dataset<Row> df = spark.createDataset(data, Encoders.bean(Data.class)).toDF();\n    String table = testDataset.toString() + \".\" + testTable + \"_\" + partitionType;\n    df.write()\n        .format(\"bigquery\")\n        .option(\"temporaryGcsBucket\", TestConstants.TEMPORARY_GCS_BUCKET)\n        .option(\"partitionField\", \"ts\")\n        .option(\"partitionType\", partitionType)\n        .option(\"partitionRequireFilter\", \"true\")\n        .option(\"table\", table)\n        .option(\"writeMethod\", writeMethod.toString())\n        .save();\n\n    Dataset<Row> readDF = spark.read().format(\"bigquery\").load(table);\n    assertThat(readDF.count()).isEqualTo(3);\n  }\n\n  @Test\n  public void testPartitionRange() {\n    // partition write not supported in BQ Storage Write API\n    assumeThat(writeMethod, equalTo(SparkBigQueryConfig.WriteMethod.INDIRECT));\n\n    List<RangeData> data =\n        Arrays.asList(new RangeData(\"a\", 1L), new RangeData(\"b\", 5L), new RangeData(\"c\", 11L));\n    Dataset<Row> df = spark.createDataset(data, Encoders.bean(RangeData.class)).toDF();\n    String table = testDataset.toString() + \".\" + testTable + \"_range\";\n    df.write()\n        .format(\"bigquery\")\n        .option(\"temporaryGcsBucket\", TestConstants.TEMPORARY_GCS_BUCKET)\n        .option(\"partitionField\", \"rng\")\n        .option(\"partitionRangeStart\", \"1\")\n        .option(\"partitionRangeEnd\", \"21\")\n        .option(\"partitionRangeInterval\", \"2\")\n        .option(\"partitionRequireFilter\", \"true\")\n        .option(\"table\", table)\n        .option(\"writeMethod\", writeMethod.toString())\n        .save();\n\n    Dataset<Row> readDF = spark.read().format(\"bigquery\").load(table);\n    assertThat(readDF.count()).isEqualTo(3);\n    Table bqTable = bq.getTable(TableId.of(testDataset.toString(), testTable + \"_range\"));\n    assertThat(bqTable).isNotNull();\n    assertTrue(bqTable.getDefinition() instanceof StandardTableDefinition);\n    StandardTableDefinition bqTableDef = bqTable.getDefinition();\n    assertThat(bqTableDef.getRangePartitioning()).isNotNull();\n    RangePartitioning.Range expectedRange =\n        RangePartitioning.Range.newBuilder().setStart(1L).setEnd(21L).setInterval(2L).build();\n    String expectedField = \"rng\";\n    assertThat(bqTableDef.getRangePartitioning().getRange()).isEqualTo(expectedRange);\n    assertThat(bqTableDef.getRangePartitioning().getField()).isEqualTo(expectedField);\n  }\n\n  @Test\n  public void testCacheDataFrameInDataSource() {\n    // It takes some time for the data to be available for read via the Storage Read API, after it\n    // has been written\n    // using the Storage Write API hence this test becomes flaky!\n    // Thus ignoring this for V2\n    assumeThat(writeMethod, equalTo(SparkBigQueryConfig.WriteMethod.INDIRECT));\n\n    Dataset<Row> allTypesTable = readAllTypesTable();\n    writeToBigQuery(allTypesTable, SaveMode.Overwrite, \"avro\", \"False\");\n\n    Dataset<Row> df =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"dataset\", testDataset.toString())\n            .option(\"table\", testTable)\n            .option(\"readDataFormat\", \"arrow\")\n            .load()\n            .cache();\n\n    assertThat(df.head()).isEqualTo(allTypesTable.head());\n\n    // read from cache\n    assertThat(df.head()).isEqualTo(allTypesTable.head());\n    assertThat(df.schema()).isEqualTo(allTypesTable.schema());\n  }\n\n  @Test\n  public void testWriteJsonToANewTable() throws Exception {\n    assumeThat(writeMethod, equalTo(WriteMethod.INDIRECT));\n    Dataset<Row> df =\n        spark.createDataFrame(\n            Arrays.asList(\n                RowFactory.create(\"{\\\"key\\\":\\\"foo\\\",\\\"value\\\":1}\"),\n                RowFactory.create(\"{\\\"key\\\":\\\"bar\\\",\\\"value\\\":2}\")),\n            structType(\n                StructField.apply(\n                    \"jf\",\n                    DataTypes.StringType,\n                    true,\n                    Metadata.fromJson(\"{\\\"sqlType\\\":\\\"JSON\\\"}\"))));\n    df.write()\n        .format(\"bigquery\")\n        .mode(SaveMode.Append)\n        .option(\"temporaryGcsBucket\", TestConstants.TEMPORARY_GCS_BUCKET)\n        .option(\"intermediateFormat\", \"AVRO\")\n        .option(\"dataset\", testDataset.toString())\n        .option(\"table\", testTable)\n        .option(\"writeMethod\", writeMethod.toString())\n        .save();\n\n    Table table = bq.getTable(TableId.of(testDataset.toString(), testTable));\n    assertThat(table).isNotNull();\n    Schema schema = table.getDefinition().getSchema();\n    assertThat(schema).isNotNull();\n    assertThat(schema.getFields()).hasSize(1);\n    assertThat(schema.getFields().get(0).getType()).isEqualTo(LegacySQLTypeName.JSON);\n\n    // validating by querying a sub-field of the json\n    Dataset<Row> resultDF =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"viewsEnabled\", \"true\")\n            .option(\"materializationDataset\", testDataset.toString())\n            .load(String.format(\"SELECT jf.value FROM `%s.%s`\", testDataset.toString(), testTable));\n    // collecting the data to validate its content\n    List<String> result =\n        resultDF.collectAsList().stream().map(row -> row.getString(0)).collect(Collectors.toList());\n    assertThat(result).containsExactly(\"1\", \"2\");\n  }\n\n  @Test\n  public void testWriteJsonToAnExistingTable() throws Exception {\n    assumeThat(writeMethod, equalTo(WriteMethod.INDIRECT));\n    Table table =\n        bq.create(\n            TableInfo.of(\n                TableId.of(testDataset.toString(), testTable),\n                StandardTableDefinition.of(Schema.of(Field.of(\"jf\", LegacySQLTypeName.JSON)))));\n    assertThat(table).isNotNull();\n    Dataset<Row> df =\n        spark.createDataFrame(\n            Arrays.asList(\n                RowFactory.create(\"{\\\"key\\\":\\\"foo\\\",\\\"value\\\":1}\"),\n                RowFactory.create(\"{\\\"key\\\":\\\"bar\\\",\\\"value\\\":2}\")),\n            structType(\n                StructField.apply(\n                    \"jf\",\n                    DataTypes.StringType,\n                    true,\n                    Metadata.fromJson(\"{\\\"sqlType\\\":\\\"JSON\\\"}\"))));\n    df.write()\n        .format(\"bigquery\")\n        .mode(SaveMode.Append)\n        .option(\"temporaryGcsBucket\", TestConstants.TEMPORARY_GCS_BUCKET)\n        .option(\"intermediateFormat\", \"AVRO\")\n        .option(\"dataset\", testDataset.toString())\n        .option(\"table\", testTable)\n        .option(\"writeMethod\", writeMethod.toString())\n        .option(\"materializationDataset\", testDataset.toString())\n        .save();\n\n    // validating by querying a sub-field of the json\n    Dataset<Row> resultDF =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"viewsEnabled\", \"true\")\n            .load(String.format(\"SELECT jf.value FROM `%s.%s`\", testDataset.toString(), testTable));\n    // collecting the data to validate its content\n    List<String> result =\n        resultDF.collectAsList().stream().map(row -> row.getString(0)).collect(Collectors.toList());\n    assertThat(result).containsExactly(\"1\", \"2\");\n  }\n\n  @Test\n  public void testWriteMapToANewTable() throws Exception {\n    Dataset<Row> df =\n        spark.createDataFrame(\n            Arrays.asList(\n                RowFactory.create(ImmutableMap.of(\"a\", new Long(1), \"b\", new Long(2))),\n                RowFactory.create(ImmutableMap.of(\"c\", new Long(3)))),\n            structType(\n                StructField.apply(\n                    \"mf\",\n                    DataTypes.createMapType(DataTypes.StringType, DataTypes.LongType),\n                    false,\n                    Metadata.empty())));\n    df.write()\n        .format(\"bigquery\")\n        .mode(SaveMode.Append)\n        .option(\"temporaryGcsBucket\", TestConstants.TEMPORARY_GCS_BUCKET)\n        .option(\"intermediateFormat\", \"AVRO\")\n        .option(\"dataset\", testDataset.toString())\n        .option(\"table\", testTable)\n        .option(\"writeMethod\", writeMethod.toString())\n        .save();\n\n    Table table = bq.getTable(TableId.of(testDataset.toString(), testTable));\n    assertThat(table).isNotNull();\n    Schema schema = table.getDefinition().getSchema();\n    assertThat(schema).isNotNull();\n    assertThat(schema.getFields()).hasSize(1);\n    Field mapField = schema.getFields().get(0);\n    assertThat(mapField.getType()).isEqualTo(LegacySQLTypeName.RECORD);\n    assertThat(mapField.getMode()).isEqualTo(Mode.REPEATED);\n    assertThat(mapField.getSubFields())\n        .containsExactlyElementsIn(\n            Arrays.asList(\n                Field.newBuilder(\"key\", LegacySQLTypeName.STRING).setMode(Mode.REQUIRED).build(),\n                Field.newBuilder(\"value\", LegacySQLTypeName.INTEGER)\n                    .setMode(Mode.NULLABLE)\n                    .build()));\n\n    String sql =\n        (\"SELECT\\n\"\n                + \"  (SELECT COUNT(f.key) FROM TABLE, UNNEST(mf) AS f) AS total_keys,\\n\"\n                + \"  (SELECT COUNT(*) FROM TABLE) AS total_rows,\\n\"\n                + \"  (SELECT f.value FROM TABLE, UNNEST(mf) AS f WHERE f.key='b') AS b_value;\")\n            .replaceAll(\"TABLE\", testDataset.toString() + \".\" + testTable);\n\n    // validating by querying a sub-field of the json\n    Dataset<Row> resultDF =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"viewsEnabled\", \"true\")\n            .option(\"materializationDataset\", testDataset.toString())\n            .load(sql);\n    // collecting the data to validate its content\n    Row result = resultDF.head();\n    assertThat(result.getLong(0)).isEqualTo(3L);\n    assertThat(result.getLong(1)).isEqualTo(2L);\n    assertThat(result.getLong(2)).isEqualTo(2L);\n  }\n\n  @Test\n  public void testAllowFieldAddition() throws Exception {\n    assumeThat(writeMethod, equalTo(WriteMethod.INDIRECT));\n    StructType initialSchema =\n        structType(\n            StructField.apply(\"value\", DataTypes.StringType, true, Metadata.empty()),\n            StructField.apply(\"ds\", DataTypes.DateType, true, Metadata.empty()));\n    List<Row> rows =\n        Arrays.asList(\n            RowFactory.create(\"val1\", Date.valueOf(\"2023-04-13\")),\n            RowFactory.create(\"val2\", Date.valueOf(\"2023-04-14\")));\n    Dataset<Row> initialDF = spark.createDataFrame(rows, initialSchema);\n    // initial write\n    initialDF\n        .write()\n        .format(\"bigquery\")\n        .mode(SaveMode.Overwrite)\n        .option(\"dataset\", testDataset.toString())\n        .option(\"table\", testTable)\n        .option(\"temporaryGcsBucket\", TestConstants.TEMPORARY_GCS_BUCKET)\n        .option(\"intermediateFormat\", \"avro\")\n        .option(\"writeMethod\", writeMethod.toString())\n        .save();\n    assertThat(testTableNumberOfRows()).isEqualTo(2);\n\n    StructType finalSchema =\n        structType(\n            StructField.apply(\"value\", DataTypes.StringType, true, Metadata.empty()),\n            StructField.apply(\"ds\", DataTypes.DateType, true, Metadata.empty()),\n            StructField.apply(\"new_field\", DataTypes.StringType, true, Metadata.empty()));\n    List<Row> finalRows =\n        Arrays.asList(RowFactory.create(\"val3\", Date.valueOf(\"2023-04-15\"), \"newVal1\"));\n    Dataset<Row> finalDF = spark.createDataFrame(finalRows, finalSchema);\n    finalDF\n        .write()\n        .format(\"bigquery\")\n        .mode(SaveMode.Append)\n        .option(\"dataset\", testDataset.toString())\n        .option(\"table\", testTable)\n        .option(\"temporaryGcsBucket\", TestConstants.TEMPORARY_GCS_BUCKET)\n        .option(\"writeMethod\", writeMethod.toString())\n        .option(\"allowFieldAddition\", \"true\")\n        .option(\"allowFieldRelaxation\", \"true\")\n        .save();\n    assertThat(testTableNumberOfRows()).isEqualTo(3);\n\n    Dataset<Row> resultDF =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"dataset\", testDataset.toString())\n            .option(\"table\", testTable)\n            .load();\n    List<Row> result = resultDF.collectAsList();\n    assertThat(result).hasSize(3);\n    assertThat(result.stream().filter(row -> row.getString(2) == null).count()).isEqualTo(2);\n    assertThat(\n            result.stream()\n                .filter(row -> row.getString(2) != null && row.getString(2).equals(\"newVal1\"))\n                .count())\n        .isEqualTo(1);\n  }\n\n  @Test\n  public void testWriteToCmekManagedTable() throws Exception {\n    String destinationTableKmsKeyName =\n        Preconditions.checkNotNull(\n            System.getenv(\"BIGQUERY_KMS_KEY_NAME\"),\n            \"Please set the BIGQUERY_KMS_KEY_NAME to point to a pre-generated and configured KMS key\");\n    Dataset<Row> df = initialData();\n    df.write()\n        .format(\"bigquery\")\n        .mode(SaveMode.Append)\n        .option(\"table\", fullTableName())\n        .option(\"temporaryGcsBucket\", TestConstants.TEMPORARY_GCS_BUCKET)\n        .option(\"writeMethod\", writeMethod.toString())\n        .option(\"destinationTableKmsKeyName\", destinationTableKmsKeyName)\n        .save();\n\n    Table table =\n        IntegrationTestUtils.getBigquery().getTable(TableId.of(testDataset.toString(), testTable));\n    assertThat(table).isNotNull();\n    assertThat(table.getEncryptionConfiguration()).isNotNull();\n    assertThat(table.getEncryptionConfiguration().getKmsKeyName())\n        .isEqualTo(destinationTableKmsKeyName);\n  }\n\n  @Test\n  public void testWriteNumericsToWiderFields() throws Exception {\n    IntegrationTestUtils.runQuery(\n        String.format(\n            \"CREATE TABLE `%s.%s` (num NUMERIC(10,2), bignum BIGNUMERIC(20,15))\",\n            testDataset, testTable));\n    Decimal num = Decimal.apply(\"12345.6\");\n    Decimal bignum = Decimal.apply(\"12345.12345\");\n    Dataset<Row> df =\n        spark.createDataFrame(\n            Arrays.asList(RowFactory.create(num, bignum)),\n            structType(\n                StructField.apply(\"num\", DataTypes.createDecimalType(6, 1), true, Metadata.empty()),\n                StructField.apply(\n                    \"bignum\", DataTypes.createDecimalType(10, 5), true, Metadata.empty())));\n    df.write()\n        .format(\"bigquery\")\n        .mode(SaveMode.Append)\n        .option(\"dataset\", testDataset.toString())\n        .option(\"table\", testTable)\n        .option(\"temporaryGcsBucket\", TestConstants.TEMPORARY_GCS_BUCKET)\n        .option(\"writeMethod\", writeMethod.toString())\n        .save();\n\n    Dataset<Row> resultDF =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"dataset\", testDataset.toString())\n            .option(\"table\", testTable)\n            .load();\n    List<Row> result = resultDF.collectAsList();\n    assertThat(result).hasSize(1);\n    Row head = result.get(0);\n    assertThat(head.getDecimal(head.fieldIndex(\"num\"))).isEqualTo(new BigDecimal(\"12345.60\"));\n    assertThat(head.getDecimal(head.fieldIndex(\"bignum\")))\n        .isEqualTo(new BigDecimal(\"12345.123450000000000\"));\n  }\n\n  private void testWriteStringToTimeField_internal(SaveMode saveMode) {\n    // not supported for indirect writes\n    assumeThat(writeMethod, equalTo(WriteMethod.DIRECT));\n    IntegrationTestUtils.runQuery(\n        String.format(\n            \"CREATE TABLE `%s.%s` (name STRING, wake_up_time TIME)\", testDataset, testTable));\n    String name = \"abc\";\n    String wakeUpTime = \"10:00:00\";\n    Dataset<Row> df =\n        spark.createDataFrame(\n            Arrays.asList(RowFactory.create(name, wakeUpTime)),\n            structType(\n                StructField.apply(\"name\", DataTypes.StringType, true, Metadata.empty()),\n                StructField.apply(\"wake_up_time\", DataTypes.StringType, true, Metadata.empty())));\n    df.write()\n        .format(\"bigquery\")\n        .mode(saveMode)\n        .option(\"dataset\", testDataset.toString())\n        .option(\"table\", testTable)\n        .option(\"writeMethod\", writeMethod.toString())\n        .save();\n\n    Dataset<Row> resultDF =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"dataset\", testDataset.toString())\n            .option(\"table\", testTable)\n            .load();\n    List<Row> result = resultDF.collectAsList();\n    assertThat(result).hasSize(1);\n    Row head = result.get(0);\n    assertThat(head.getString(head.fieldIndex(\"name\"))).isEqualTo(\"abc\");\n    assertThat(head.getLong(head.fieldIndex(\"wake_up_time\"))).isEqualTo(36000000000L);\n  }\n\n  @Test\n  public void testWriteStringToTimeField_OverwriteSaveMode() {\n    testWriteStringToTimeField_internal(SaveMode.Overwrite);\n  }\n\n  @Test\n  public void testWriteStringToTimeField_AppendSaveMode() {\n    testWriteStringToTimeField_internal(SaveMode.Append);\n  }\n\n  private void testWriteStringToDateTimeField_internal(SaveMode saveMode) {\n    // not supported for indirect writes\n    assumeThat(writeMethod, equalTo(WriteMethod.DIRECT));\n    IntegrationTestUtils.runQuery(\n        String.format(\n            \"CREATE TABLE `%s.%s` (name STRING, datetime1 DATETIME)\", testDataset, testTable));\n    String name = \"abc\";\n    String dateTime1 = \"0001-01-01T01:22:24.999888\";\n    Dataset<Row> df =\n        spark.createDataFrame(\n            Arrays.asList(RowFactory.create(name, dateTime1)),\n            structType(\n                StructField.apply(\"name\", DataTypes.StringType, true, Metadata.empty()),\n                StructField.apply(\"datetime1\", DataTypes.StringType, true, Metadata.empty())));\n    df.write()\n        .format(\"bigquery\")\n        .mode(saveMode)\n        .option(\"dataset\", testDataset.toString())\n        .option(\"table\", testTable)\n        .option(\"writeMethod\", writeMethod.toString())\n        .save();\n\n    Dataset<Row> resultDF =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"dataset\", testDataset.toString())\n            .option(\"table\", testTable)\n            .load();\n    List<Row> result = resultDF.collectAsList();\n    assertThat(result).hasSize(1);\n    Row head = result.get(0);\n    assertThat(head.getString(head.fieldIndex(\"name\"))).isEqualTo(\"abc\");\n    if (timeStampNTZType.isPresent()) {\n      // For Spark 3.4+, BQ's datetime is converted to Spark's TimestampNTZ i.e. java LocalDateTime\n      LocalDateTime expected = LocalDateTime.of(1, 1, 1, 1, 22, 24).plus(999888, ChronoUnit.MICROS);\n      assertThat(head.get(head.fieldIndex(\"datetime1\"))).isEqualTo(expected);\n    } else {\n      assertThat(head.get(head.fieldIndex(\"datetime1\"))).isEqualTo(\"0001-01-01T01:22:24.999888\");\n    }\n  }\n\n  @Test\n  public void testWriteStringToDateTimeField_OverwriteSaveMode() {\n    testWriteStringToDateTimeField_internal(SaveMode.Overwrite);\n  }\n\n  @Test\n  public void testWriteStringToDateTimeField_AppendSaveMode() {\n    testWriteStringToDateTimeField_internal(SaveMode.Append);\n  }\n\n  @Test\n  public void testWriteToTimestampField() {\n    // not supported for indirect writes\n    assumeThat(writeMethod, equalTo(WriteMethod.DIRECT));\n    IntegrationTestUtils.runQuery(\n        String.format(\n            \"CREATE TABLE `%s.%s` (name STRING, timestamp1 TIMESTAMP)\", testDataset, testTable));\n    String name = \"abc\";\n    // ensure timezone differences don't influence writes\n    TimeZone.setDefault(TimeZone.getTimeZone(\"IST\"));\n    Timestamp timestamp1 = Timestamp.valueOf(\"1501-01-01 01:22:24.999888\");\n    Dataset<Row> df =\n        spark.createDataFrame(\n            Arrays.asList(RowFactory.create(name, timestamp1)),\n            structType(\n                StructField.apply(\"name\", DataTypes.StringType, true, Metadata.empty()),\n                StructField.apply(\"timestamp1\", DataTypes.TimestampType, true, Metadata.empty())));\n    df.write()\n        .format(\"bigquery\")\n        .mode(\"append\")\n        .option(\"dataset\", testDataset.toString())\n        .option(\"table\", testTable)\n        .option(\"writeMethod\", writeMethod.toString())\n        .save();\n    // ensure timezone differences don't influence reads\n    TimeZone.setDefault(TimeZone.getTimeZone(\"PST\"));\n\n    Dataset<Row> resultDF =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"dataset\", testDataset.toString())\n            .option(\"table\", testTable)\n            .load();\n    List<Row> result = resultDF.collectAsList();\n    assertThat(result).hasSize(1);\n    Row head = result.get(0);\n    assertThat(head.getString(head.fieldIndex(\"name\"))).isEqualTo(\"abc\");\n    assertThat(head.get(head.fieldIndex(\"timestamp1\"))).isEqualTo(timestamp1);\n  }\n\n  protected Dataset<Row> writeAndLoadDatasetOverwriteDynamicPartition(\n      Dataset<Row> df, boolean isPartitioned) {\n    df.write()\n        .format(\"bigquery\")\n        .mode(SaveMode.Overwrite)\n        .option(\"dataset\", testDataset.toString())\n        .option(\"table\", testTable)\n        .option(\"writeMethod\", writeMethod.toString())\n        .option(\n            \"spark.sql.sources.partitionOverwriteMode\", PartitionOverwriteMode.DYNAMIC.toString())\n        .option(\"temporaryGcsBucket\", TestConstants.TEMPORARY_GCS_BUCKET)\n        .save();\n\n    if (isPartitioned) {\n      IntegrationTestUtils.runQuery(\n          String.format(\n              \"ALTER TABLE %s.%s SET OPTIONS (require_partition_filter = false)\",\n              testDataset, testTable));\n    }\n\n    return spark\n        .read()\n        .format(\"bigquery\")\n        .option(\"dataset\", testDataset.toString())\n        .option(\"table\", testTable)\n        .load();\n  }\n\n  @Test\n  public void testOverwriteDynamicPartition_partitionTimestampByHour() {\n    String orderId = \"order_id\";\n    String orderDateTime = \"order_date_time\";\n    TimeZone.setDefault(TimeZone.getTimeZone(\"UTC\"));\n    IntegrationTestUtils.runQuery(\n        String.format(\n            \"CREATE TABLE `%s.%s` (%s INTEGER, %s TIMESTAMP) \"\n                + \"PARTITION BY timestamp_trunc(order_date_time, HOUR) OPTIONS (require_partition_filter = true) \"\n                + \"AS SELECT * FROM UNNEST([(1, TIMESTAMP '2023-09-28 1:00:00 UTC'), \"\n                + \"(2, TIMESTAMP '2023-09-28 10:00:00 UTC'), (3, TIMESTAMP '2023-09-28 10:30:00 UTC')]) \",\n            testDataset, testTable, orderId, orderDateTime));\n\n    Dataset<Row> df =\n        spark.createDataFrame(\n            Arrays.asList(\n                RowFactory.create(10, Timestamp.valueOf(\"2023-09-28 10:15:00\")),\n                RowFactory.create(20, Timestamp.valueOf(\"2023-09-30 12:00:00\"))),\n            structType(\n                StructField.apply(orderId, DataTypes.IntegerType, true, Metadata.empty()),\n                StructField.apply(orderDateTime, DataTypes.TimestampType, true, Metadata.empty())));\n\n    Dataset<Row> result = writeAndLoadDatasetOverwriteDynamicPartition(df, true);\n    assertThat(result.count()).isEqualTo(3);\n    List<Row> rows = result.collectAsList();\n    rows.sort(Comparator.comparing(row -> row.getLong(row.fieldIndex(orderId))));\n\n    Row row1 = rows.get(0);\n    Row row2 = rows.get(1);\n    Row row3 = rows.get(2);\n\n    assertThat(row1.getLong(row1.fieldIndex(orderId))).isEqualTo(1);\n    assertThat(row1.getTimestamp(row1.fieldIndex(orderDateTime)))\n        .isEqualTo(Timestamp.valueOf(\"2023-09-28 1:00:00\"));\n\n    assertThat(row2.getLong(row2.fieldIndex(orderId))).isEqualTo(10);\n    assertThat(row2.getTimestamp(row2.fieldIndex(orderDateTime)))\n        .isEqualTo(Timestamp.valueOf(\"2023-09-28 10:15:00\"));\n\n    assertThat(row3.getLong(row3.fieldIndex(orderId))).isEqualTo(20);\n    assertThat(row3.getTimestamp(row3.fieldIndex(orderDateTime)))\n        .isEqualTo(Timestamp.valueOf(\"2023-09-30 12:00:00\"));\n  }\n\n  @Test\n  public void testOverwriteDynamicPartition_partitionTimestampByDay() {\n    String orderId = \"order_id\";\n    String orderDateTime = \"order_date_time\";\n    TimeZone.setDefault(TimeZone.getTimeZone(\"UTC\"));\n    IntegrationTestUtils.runQuery(\n        String.format(\n            \"CREATE TABLE `%s.%s` (%s INTEGER, %s TIMESTAMP) \"\n                + \"PARTITION BY DATE(order_date_time) OPTIONS (require_partition_filter = true) \"\n                + \"AS SELECT * FROM UNNEST([(1, TIMESTAMP '2023-09-28 1:00:00 UTC'), \"\n                + \"(2, TIMESTAMP '2023-09-29 10:00:00 UTC'), (3, TIMESTAMP '2023-09-29 17:00:00 UTC')])\",\n            testDataset, testTable, orderId, orderDateTime));\n\n    Dataset<Row> df =\n        spark.createDataFrame(\n            Arrays.asList(\n                RowFactory.create(10, Timestamp.valueOf(\"2023-09-29 2:00:00\")),\n                RowFactory.create(20, Timestamp.valueOf(\"2023-09-30 12:00:00\"))),\n            structType(\n                StructField.apply(orderId, DataTypes.IntegerType, true, Metadata.empty()),\n                StructField.apply(orderDateTime, DataTypes.TimestampType, true, Metadata.empty())));\n\n    Dataset<Row> result = writeAndLoadDatasetOverwriteDynamicPartition(df, true);\n    assertThat(result.count()).isEqualTo(3);\n    List<Row> rows = result.collectAsList();\n    rows.sort(Comparator.comparing(row -> row.getLong(row.fieldIndex(orderId))));\n\n    Row row1 = rows.get(0);\n    Row row2 = rows.get(1);\n    Row row3 = rows.get(2);\n\n    assertThat(row1.getLong(row1.fieldIndex(orderId))).isEqualTo(1);\n    assertThat(row1.getTimestamp(row1.fieldIndex(orderDateTime)))\n        .isEqualTo(Timestamp.valueOf(\"2023-09-28 1:00:00\"));\n\n    assertThat(row2.getLong(row2.fieldIndex(orderId))).isEqualTo(10);\n    assertThat(row2.getTimestamp(row2.fieldIndex(orderDateTime)))\n        .isEqualTo(Timestamp.valueOf(\"2023-09-29 2:00:00\"));\n\n    assertThat(row3.getLong(row3.fieldIndex(orderId))).isEqualTo(20);\n    assertThat(row3.getTimestamp(row3.fieldIndex(orderDateTime)))\n        .isEqualTo(Timestamp.valueOf(\"2023-09-30 12:00:00\"));\n  }\n\n  @Test\n  public void testOverwriteDynamicPartition_partitionTimestampByMonth() {\n    String orderId = \"order_id\";\n    String orderDateTime = \"order_date_time\";\n    TimeZone.setDefault(TimeZone.getTimeZone(\"UTC\"));\n    IntegrationTestUtils.runQuery(\n        String.format(\n            \"CREATE TABLE `%s.%s` (%s INTEGER, %s TIMESTAMP) \"\n                + \"PARTITION BY timestamp_trunc(order_date_time, MONTH) OPTIONS (require_partition_filter = true) \"\n                + \"AS SELECT * FROM UNNEST([(1, TIMESTAMP '2023-09-28 1:00:00 UTC'), \"\n                + \"(2, TIMESTAMP '2023-10-20 10:00:00 UTC'), (3, TIMESTAMP '2023-10-25 12:00:00 UTC')])\",\n            testDataset, testTable, orderId, orderDateTime));\n\n    Dataset<Row> df =\n        spark.createDataFrame(\n            Arrays.asList(\n                RowFactory.create(10, Timestamp.valueOf(\"2023-10-29 2:00:00\")),\n                RowFactory.create(20, Timestamp.valueOf(\"2023-11-30 12:00:00\"))),\n            structType(\n                StructField.apply(orderId, DataTypes.IntegerType, true, Metadata.empty()),\n                StructField.apply(orderDateTime, DataTypes.TimestampType, true, Metadata.empty())));\n\n    Dataset<Row> result = writeAndLoadDatasetOverwriteDynamicPartition(df, true);\n    assertThat(result.count()).isEqualTo(3);\n    List<Row> rows = result.collectAsList();\n    rows.sort(Comparator.comparing(row -> row.getLong(row.fieldIndex(orderId))));\n\n    Row row1 = rows.get(0);\n    Row row2 = rows.get(1);\n    Row row3 = rows.get(2);\n\n    assertThat(row1.getLong(row1.fieldIndex(orderId))).isEqualTo(1);\n    assertThat(row1.getTimestamp(row1.fieldIndex(orderDateTime)))\n        .isEqualTo(Timestamp.valueOf(\"2023-09-28 1:00:00\"));\n\n    assertThat(row2.getLong(row2.fieldIndex(orderId))).isEqualTo(10);\n    assertThat(row2.getTimestamp(row2.fieldIndex(orderDateTime)))\n        .isEqualTo(Timestamp.valueOf(\"2023-10-29 2:00:00\"));\n\n    assertThat(row3.getLong(row3.fieldIndex(orderId))).isEqualTo(20);\n    assertThat(row3.getTimestamp(row3.fieldIndex(orderDateTime)))\n        .isEqualTo(Timestamp.valueOf(\"2023-11-30 12:00:00\"));\n  }\n\n  @Test\n  public void testOverwriteDynamicPartition_partitionTimestampByYear() {\n    String orderId = \"order_id\";\n    String orderDateTime = \"order_date_time\";\n    TimeZone.setDefault(TimeZone.getTimeZone(\"UTC\"));\n    IntegrationTestUtils.runQuery(\n        String.format(\n            \"CREATE TABLE `%s.%s` (%s INTEGER, %s TIMESTAMP) \"\n                + \"PARTITION BY timestamp_trunc(order_date_time, YEAR) OPTIONS (require_partition_filter = true) \"\n                + \"AS SELECT * FROM UNNEST([(1, TIMESTAMP '2022-09-28 1:00:00 UTC'), \"\n                + \"(2, TIMESTAMP '2023-10-20 10:00:00 UTC'), (2, TIMESTAMP '2023-10-25 12:00:00 UTC')])\",\n            testDataset, testTable, orderId, orderDateTime));\n\n    Dataset<Row> df =\n        spark.createDataFrame(\n            Arrays.asList(\n                RowFactory.create(10, Timestamp.valueOf(\"2023-10-29 2:00:00\")),\n                RowFactory.create(20, Timestamp.valueOf(\"2024-11-30 12:00:00\"))),\n            structType(\n                StructField.apply(orderId, DataTypes.IntegerType, true, Metadata.empty()),\n                StructField.apply(orderDateTime, DataTypes.TimestampType, true, Metadata.empty())));\n\n    Dataset<Row> result = writeAndLoadDatasetOverwriteDynamicPartition(df, true);\n    assertThat(result.count()).isEqualTo(3);\n    List<Row> rows = result.collectAsList();\n    rows.sort(Comparator.comparing(row -> row.getLong(row.fieldIndex(orderId))));\n\n    Row row1 = rows.get(0);\n    Row row2 = rows.get(1);\n    Row row3 = rows.get(2);\n\n    assertThat(row1.getLong(row1.fieldIndex(orderId))).isEqualTo(1);\n    assertThat(row1.getTimestamp(row1.fieldIndex(orderDateTime)))\n        .isEqualTo(Timestamp.valueOf(\"2022-09-28 1:00:00\"));\n\n    assertThat(row2.getLong(row2.fieldIndex(orderId))).isEqualTo(10);\n    assertThat(row2.getTimestamp(row2.fieldIndex(orderDateTime)))\n        .isEqualTo(Timestamp.valueOf(\"2023-10-29 2:00:00\"));\n\n    assertThat(row3.getLong(row3.fieldIndex(orderId))).isEqualTo(20);\n    assertThat(row3.getTimestamp(row3.fieldIndex(orderDateTime)))\n        .isEqualTo(Timestamp.valueOf(\"2024-11-30 12:00:00\"));\n  }\n\n  @Test\n  public void testOverwriteDynamicPartition_partitionDateByDay() {\n    String orderId = \"order_id\";\n    String orderDate = \"order_date\";\n    TimeZone.setDefault(TimeZone.getTimeZone(\"UTC\"));\n    IntegrationTestUtils.runQuery(\n        String.format(\n            \"CREATE TABLE `%s.%s` (%s INTEGER, %s DATE) \"\n                + \"PARTITION BY order_date OPTIONS (require_partition_filter = true) \"\n                + \"AS SELECT * FROM UNNEST([(1, DATE('2023-09-28')), (2, DATE('2023-09-29'))])\",\n            testDataset, testTable, orderId, orderDate));\n\n    Dataset<Row> df =\n        spark.createDataFrame(\n            Arrays.asList(\n                RowFactory.create(10, Date.valueOf(\"2023-09-29\")),\n                RowFactory.create(20, Date.valueOf(\"2023-09-30\"))),\n            structType(\n                StructField.apply(orderId, DataTypes.IntegerType, true, Metadata.empty()),\n                StructField.apply(orderDate, DataTypes.DateType, true, Metadata.empty())));\n\n    Dataset<Row> result = writeAndLoadDatasetOverwriteDynamicPartition(df, true);\n    assertThat(result.count()).isEqualTo(3);\n    List<Row> rows = result.collectAsList();\n    rows.sort(Comparator.comparing(row -> row.getLong(row.fieldIndex(orderId))));\n\n    Row row1 = rows.get(0);\n    Row row2 = rows.get(1);\n    Row row3 = rows.get(2);\n\n    assertThat(row1.getLong(row1.fieldIndex(orderId))).isEqualTo(1);\n    assertThat(row1.getDate(row1.fieldIndex(orderDate))).isEqualTo(Date.valueOf(\"2023-09-28\"));\n\n    assertThat(row2.getLong(row2.fieldIndex(orderId))).isEqualTo(10);\n    assertThat(row2.getDate(row2.fieldIndex(orderDate))).isEqualTo(Date.valueOf(\"2023-09-29\"));\n\n    assertThat(row3.getLong(row3.fieldIndex(orderId))).isEqualTo(20);\n    assertThat(row3.getDate(row3.fieldIndex(orderDate))).isEqualTo(Date.valueOf(\"2023-09-30\"));\n  }\n\n  @Test\n  public void testOverwriteDynamicPartition_partitionDateByMonth() {\n    String orderId = \"order_id\";\n    String orderDate = \"order_date\";\n    TimeZone.setDefault(TimeZone.getTimeZone(\"UTC\"));\n    IntegrationTestUtils.runQuery(\n        String.format(\n            \"CREATE TABLE `%s.%s` (%s INTEGER, %s DATE) \"\n                + \"PARTITION BY DATE_TRUNC(order_date, MONTH) OPTIONS (require_partition_filter = true) \"\n                + \"AS SELECT * FROM UNNEST([(1, DATE('2023-09-28')), \"\n                + \"(2, DATE('2023-10-29')), (2, DATE('2023-10-28'))])\",\n            testDataset, testTable, orderId, orderDate));\n\n    Dataset<Row> df =\n        spark.createDataFrame(\n            Arrays.asList(\n                RowFactory.create(10, Date.valueOf(\"2023-10-20\")),\n                RowFactory.create(20, Date.valueOf(\"2023-11-30\"))),\n            structType(\n                StructField.apply(orderId, DataTypes.IntegerType, true, Metadata.empty()),\n                StructField.apply(orderDate, DataTypes.DateType, true, Metadata.empty())));\n\n    Dataset<Row> result = writeAndLoadDatasetOverwriteDynamicPartition(df, true);\n    assertThat(result.count()).isEqualTo(3);\n    List<Row> rows = result.collectAsList();\n    rows.sort(Comparator.comparing(row -> row.getLong(row.fieldIndex(orderId))));\n\n    Row row1 = rows.get(0);\n    Row row2 = rows.get(1);\n    Row row3 = rows.get(2);\n\n    assertThat(row1.getLong(row1.fieldIndex(orderId))).isEqualTo(1);\n    assertThat(row1.getDate(row1.fieldIndex(orderDate))).isEqualTo(Date.valueOf(\"2023-09-28\"));\n\n    assertThat(row2.getLong(row2.fieldIndex(orderId))).isEqualTo(10);\n    assertThat(row2.getDate(row2.fieldIndex(orderDate))).isEqualTo(Date.valueOf(\"2023-10-20\"));\n\n    assertThat(row3.getLong(row3.fieldIndex(orderId))).isEqualTo(20);\n    assertThat(row3.getDate(row3.fieldIndex(orderDate))).isEqualTo(Date.valueOf(\"2023-11-30\"));\n  }\n\n  @Test\n  public void testOverwriteDynamicPartition_partitionDateByYear() {\n    String orderId = \"order_id\";\n    String orderDate = \"order_date\";\n    TimeZone.setDefault(TimeZone.getTimeZone(\"UTC\"));\n    IntegrationTestUtils.runQuery(\n        String.format(\n            \"CREATE TABLE `%s.%s` (%s INTEGER, %s DATE) \"\n                + \"PARTITION BY DATE_TRUNC(order_date, YEAR) OPTIONS (require_partition_filter = true) \"\n                + \"AS SELECT * FROM UNNEST([(1, DATE('2022-09-28')), \"\n                + \"(2, DATE('2023-10-29')), (2, DATE('2023-11-28'))])\",\n            testDataset, testTable, orderId, orderDate));\n\n    Dataset<Row> df =\n        spark.createDataFrame(\n            Arrays.asList(\n                RowFactory.create(10, Date.valueOf(\"2023-10-20\")),\n                RowFactory.create(20, Date.valueOf(\"2024-11-30\"))),\n            structType(\n                StructField.apply(orderId, DataTypes.IntegerType, true, Metadata.empty()),\n                StructField.apply(orderDate, DataTypes.DateType, true, Metadata.empty())));\n\n    Dataset<Row> result = writeAndLoadDatasetOverwriteDynamicPartition(df, true);\n    assertThat(result.count()).isEqualTo(3);\n    List<Row> rows = result.collectAsList();\n    rows.sort(Comparator.comparing(row -> row.getLong(row.fieldIndex(orderId))));\n\n    Row row1 = rows.get(0);\n    Row row2 = rows.get(1);\n    Row row3 = rows.get(2);\n\n    assertThat(row1.getLong(row1.fieldIndex(orderId))).isEqualTo(1);\n    assertThat(row1.getDate(row1.fieldIndex(orderDate))).isEqualTo(Date.valueOf(\"2022-09-28\"));\n\n    assertThat(row2.getLong(row2.fieldIndex(orderId))).isEqualTo(10);\n    assertThat(row2.getDate(row2.fieldIndex(orderDate))).isEqualTo(Date.valueOf(\"2023-10-20\"));\n\n    assertThat(row3.getLong(row3.fieldIndex(orderId))).isEqualTo(20);\n    assertThat(row3.getDate(row3.fieldIndex(orderDate))).isEqualTo(Date.valueOf(\"2024-11-30\"));\n  }\n\n  @Test\n  public void testOverwriteDynamicPartition_partitionDateTimeByHour() {\n    assumeThat(timeStampNTZType.isPresent(), is(true));\n    String orderId = \"order_id\";\n    String orderDateTime = \"order_date_time\";\n    TimeZone.setDefault(TimeZone.getTimeZone(\"UTC\"));\n    IntegrationTestUtils.runQuery(\n        String.format(\n            \"CREATE TABLE `%s.%s` (%s INTEGER, %s DATETIME) \"\n                + \"PARTITION BY timestamp_trunc(order_date_time, HOUR) OPTIONS (require_partition_filter = true) \"\n                + \"AS SELECT * FROM UNNEST([(1, DATETIME '2023-09-28 1:00:00'), \"\n                + \"(2, DATETIME '2023-09-28 10:00:00'), (3, DATETIME '2023-09-28 10:30:00')])\",\n            testDataset, testTable, orderId, orderDateTime));\n\n    Dataset<Row> df =\n        spark.createDataFrame(\n            Arrays.asList(\n                RowFactory.create(10, LocalDateTime.of(2023, 9, 28, 10, 15, 0)),\n                RowFactory.create(20, LocalDateTime.of(2023, 9, 30, 12, 0, 0))),\n            structType(\n                StructField.apply(orderId, DataTypes.IntegerType, true, Metadata.empty()),\n                StructField.apply(orderDateTime, timeStampNTZType.get(), true, Metadata.empty())));\n\n    Dataset<Row> result = writeAndLoadDatasetOverwriteDynamicPartition(df, true);\n    assertThat(result.count()).isEqualTo(3);\n    List<Row> rows = result.collectAsList();\n    rows.sort(Comparator.comparing(row -> row.getLong(row.fieldIndex(orderId))));\n\n    Row row1 = rows.get(0);\n    Row row2 = rows.get(1);\n    Row row3 = rows.get(2);\n\n    assertThat(row1.getLong(row1.fieldIndex(orderId))).isEqualTo(1);\n    assertThat(row1.get(row1.fieldIndex(orderDateTime)).toString()).isEqualTo(\"2023-09-28T01:00\");\n\n    assertThat(row2.getLong(row2.fieldIndex(orderId))).isEqualTo(10);\n    assertThat(row2.get(row2.fieldIndex(orderDateTime)).toString()).isEqualTo(\"2023-09-28T10:15\");\n\n    assertThat(row3.getLong(row3.fieldIndex(orderId))).isEqualTo(20);\n    assertThat(row3.get(row3.fieldIndex(orderDateTime)).toString()).isEqualTo(\"2023-09-30T12:00\");\n  }\n\n  @Test\n  public void testOverwriteDynamicPartition_partitionDateTimeByDay() {\n    assumeThat(timeStampNTZType.isPresent(), is(true));\n    String orderId = \"order_id\";\n    String orderDateTime = \"order_date_time\";\n    TimeZone.setDefault(TimeZone.getTimeZone(\"UTC\"));\n    IntegrationTestUtils.runQuery(\n        String.format(\n            \"CREATE TABLE `%s.%s` (%s INTEGER, %s DATETIME) \"\n                + \"PARTITION BY timestamp_trunc(order_date_time, DAY) OPTIONS (require_partition_filter = true) \"\n                + \"AS SELECT * FROM UNNEST([(1, DATETIME '2023-09-28 1:00:00'), \"\n                + \"(2, DATETIME '2023-09-29 10:00:00'), (3, DATETIME '2023-09-29 17:30:00')])\",\n            testDataset, testTable, orderId, orderDateTime));\n\n    Dataset<Row> df =\n        spark.createDataFrame(\n            Arrays.asList(\n                RowFactory.create(10, LocalDateTime.of(2023, 9, 29, 10, 15, 0)),\n                RowFactory.create(20, LocalDateTime.of(2023, 9, 30, 12, 0, 0))),\n            structType(\n                StructField.apply(orderId, DataTypes.IntegerType, true, Metadata.empty()),\n                StructField.apply(orderDateTime, timeStampNTZType.get(), true, Metadata.empty())));\n\n    Dataset<Row> result = writeAndLoadDatasetOverwriteDynamicPartition(df, true);\n    assertThat(result.count()).isEqualTo(3);\n    List<Row> rows = result.collectAsList();\n    rows.sort(Comparator.comparing(row -> row.getLong(row.fieldIndex(orderId))));\n\n    Row row1 = rows.get(0);\n    Row row2 = rows.get(1);\n    Row row3 = rows.get(2);\n\n    assertThat(row1.getLong(row1.fieldIndex(orderId))).isEqualTo(1);\n    assertThat(row1.get(row1.fieldIndex(orderDateTime)).toString()).isEqualTo(\"2023-09-28T01:00\");\n\n    assertThat(row2.getLong(row2.fieldIndex(orderId))).isEqualTo(10);\n    assertThat(row2.get(row2.fieldIndex(orderDateTime)).toString()).isEqualTo(\"2023-09-29T10:15\");\n\n    assertThat(row3.getLong(row3.fieldIndex(orderId))).isEqualTo(20);\n    assertThat(row3.get(row3.fieldIndex(orderDateTime)).toString()).isEqualTo(\"2023-09-30T12:00\");\n  }\n\n  @Test\n  public void testOverwriteDynamicPartition_partitionDateTimeByMonth() {\n    assumeThat(timeStampNTZType.isPresent(), is(true));\n    String orderId = \"order_id\";\n    String orderDateTime = \"order_date_time\";\n    TimeZone.setDefault(TimeZone.getTimeZone(\"UTC\"));\n    IntegrationTestUtils.runQuery(\n        String.format(\n            \"CREATE TABLE `%s.%s` (%s INTEGER, %s DATETIME) \"\n                + \"PARTITION BY timestamp_trunc(order_date_time, MONTH) OPTIONS (require_partition_filter = true) \"\n                + \"AS SELECT * FROM UNNEST([(1, DATETIME '2023-09-28 1:00:00'), \"\n                + \"(2, DATETIME '2023-10-29 10:00:00'), (3, DATETIME '2023-10-29 17:30:00')])\",\n            testDataset, testTable, orderId, orderDateTime));\n\n    Dataset<Row> df =\n        spark.createDataFrame(\n            Arrays.asList(\n                RowFactory.create(10, LocalDateTime.of(2023, 10, 20, 10, 15, 0)),\n                RowFactory.create(20, LocalDateTime.of(2023, 11, 30, 12, 0, 0))),\n            structType(\n                StructField.apply(orderId, DataTypes.IntegerType, true, Metadata.empty()),\n                StructField.apply(orderDateTime, timeStampNTZType.get(), true, Metadata.empty())));\n\n    Dataset<Row> result = writeAndLoadDatasetOverwriteDynamicPartition(df, true);\n    assertThat(result.count()).isEqualTo(3);\n    List<Row> rows = result.collectAsList();\n    rows.sort(Comparator.comparing(row -> row.getLong(row.fieldIndex(orderId))));\n\n    Row row1 = rows.get(0);\n    Row row2 = rows.get(1);\n    Row row3 = rows.get(2);\n\n    assertThat(row1.getLong(row1.fieldIndex(orderId))).isEqualTo(1);\n    assertThat(row1.get(row1.fieldIndex(orderDateTime)).toString()).isEqualTo(\"2023-09-28T01:00\");\n\n    assertThat(row2.getLong(row2.fieldIndex(orderId))).isEqualTo(10);\n    assertThat(row2.get(row2.fieldIndex(orderDateTime)).toString()).isEqualTo(\"2023-10-20T10:15\");\n\n    assertThat(row3.getLong(row3.fieldIndex(orderId))).isEqualTo(20);\n    assertThat(row3.get(row3.fieldIndex(orderDateTime)).toString()).isEqualTo(\"2023-11-30T12:00\");\n  }\n\n  @Test\n  public void testOverwriteDynamicPartition_partitionDateTimeByYear() {\n    assumeThat(timeStampNTZType.isPresent(), is(true));\n    String orderId = \"order_id\";\n    String orderDateTime = \"order_date_time\";\n    TimeZone.setDefault(TimeZone.getTimeZone(\"UTC\"));\n    IntegrationTestUtils.runQuery(\n        String.format(\n            \"CREATE TABLE `%s.%s` (%s INTEGER, %s DATETIME) \"\n                + \"PARTITION BY timestamp_trunc(order_date_time, YEAR) OPTIONS (require_partition_filter = true) \"\n                + \"AS SELECT * FROM UNNEST([(1, DATETIME '2022-09-28 1:00:00'), \"\n                + \"(2, DATETIME '2023-10-29 10:00:00'), (3, DATETIME '2023-11-29 17:30:00')])\",\n            testDataset, testTable, orderId, orderDateTime));\n\n    Dataset<Row> df =\n        spark.createDataFrame(\n            Arrays.asList(\n                RowFactory.create(10, LocalDateTime.of(2023, 10, 20, 10, 15, 0)),\n                RowFactory.create(20, LocalDateTime.of(2024, 11, 30, 12, 0, 0))),\n            structType(\n                StructField.apply(orderId, DataTypes.IntegerType, true, Metadata.empty()),\n                StructField.apply(orderDateTime, timeStampNTZType.get(), true, Metadata.empty())));\n\n    Dataset<Row> result = writeAndLoadDatasetOverwriteDynamicPartition(df, true);\n    assertThat(result.count()).isEqualTo(3);\n    List<Row> rows = result.collectAsList();\n    rows.sort(Comparator.comparing(row -> row.getLong(row.fieldIndex(orderId))));\n\n    Row row1 = rows.get(0);\n    Row row2 = rows.get(1);\n    Row row3 = rows.get(2);\n\n    assertThat(row1.getLong(row1.fieldIndex(orderId))).isEqualTo(1);\n    assertThat(row1.get(row1.fieldIndex(orderDateTime)).toString()).isEqualTo(\"2022-09-28T01:00\");\n\n    assertThat(row2.getLong(row2.fieldIndex(orderId))).isEqualTo(10);\n    assertThat(row2.get(row2.fieldIndex(orderDateTime)).toString()).isEqualTo(\"2023-10-20T10:15\");\n\n    assertThat(row3.getLong(row3.fieldIndex(orderId))).isEqualTo(20);\n    assertThat(row3.get(row3.fieldIndex(orderDateTime)).toString()).isEqualTo(\"2024-11-30T12:00\");\n  }\n\n  @Test\n  public void testOverwriteDynamicPartition_noTimePartitioning() {\n    String orderId = \"order_id\";\n    String orderDateTime = \"order_date_time\";\n    TimeZone.setDefault(TimeZone.getTimeZone(\"UTC\"));\n    IntegrationTestUtils.runQuery(\n        String.format(\n            \"CREATE TABLE `%s.%s` (%s INTEGER, %s TIMESTAMP) \"\n                + \"AS SELECT * FROM UNNEST([(1, TIMESTAMP '2023-09-28 1:00:00 UTC'), \"\n                + \"(2, TIMESTAMP '2023-09-29 10:00:00 UTC'), (3, TIMESTAMP '2023-09-29 17:00:00 UTC')])\",\n            testDataset, testTable, orderId, orderDateTime));\n\n    Dataset<Row> df =\n        spark.createDataFrame(\n            Arrays.asList(\n                RowFactory.create(10, Timestamp.valueOf(\"2023-09-29 2:00:00\")),\n                RowFactory.create(20, Timestamp.valueOf(\"2023-09-30 12:00:00\"))),\n            structType(\n                StructField.apply(orderId, DataTypes.IntegerType, true, Metadata.empty()),\n                StructField.apply(orderDateTime, DataTypes.TimestampType, true, Metadata.empty())));\n\n    Dataset<Row> result = writeAndLoadDatasetOverwriteDynamicPartition(df, false);\n    assertThat(result.count()).isEqualTo(2);\n    List<Row> rows = result.collectAsList();\n    rows.sort(Comparator.comparing(row -> row.getLong(row.fieldIndex(orderId))));\n\n    Row row1 = rows.get(0);\n    Row row2 = rows.get(1);\n\n    assertThat(row1.getLong(row1.fieldIndex(orderId))).isEqualTo(10);\n    assertThat(row1.getTimestamp(row1.fieldIndex(orderDateTime)))\n        .isEqualTo(Timestamp.valueOf(\"2023-09-29 2:00:00\"));\n\n    assertThat(row2.getLong(row2.fieldIndex(orderId))).isEqualTo(20);\n    assertThat(row2.getTimestamp(row2.fieldIndex(orderDateTime)))\n        .isEqualTo(Timestamp.valueOf(\"2023-09-30 12:00:00\"));\n  }\n\n  @Test\n  public void testOverwriteDynamicPartition_rangePartitioned() {\n    String orderId = \"order_id\";\n    String orderCount = \"order_count\";\n    TimeZone.setDefault(TimeZone.getTimeZone(\"UTC\"));\n    IntegrationTestUtils.runQuery(\n        String.format(\n            \"CREATE TABLE `%s.%s` (%s INTEGER, %s INTEGER) \"\n                + \"PARTITION BY RANGE_BUCKET(order_id, GENERATE_ARRAY(1, 100, 10)) OPTIONS (require_partition_filter = true)\"\n                + \"AS SELECT * FROM UNNEST([(1, 1000), \"\n                + \"(8, 1005), ( 21, 1010), (83, 1020)])\",\n            testDataset, testTable, orderId, orderCount));\n\n    Dataset<Row> df =\n        spark.createDataFrame(\n            Arrays.asList(\n                RowFactory.create(4, 2000),\n                RowFactory.create(20, 2050),\n                RowFactory.create(85, 3000),\n                RowFactory.create(90, 3050)),\n            structType(\n                StructField.apply(orderId, DataTypes.IntegerType, true, Metadata.empty()),\n                StructField.apply(orderCount, DataTypes.IntegerType, true, Metadata.empty())));\n\n    Dataset<Row> result = writeAndLoadDatasetOverwriteDynamicPartition(df, true);\n    assertThat(result.count()).isEqualTo(5);\n    List<Row> rows = result.collectAsList();\n    rows.sort(Comparator.comparing(row -> row.getLong(row.fieldIndex(orderId))));\n\n    Row row1 = rows.get(0);\n    Row row2 = rows.get(1);\n    Row row3 = rows.get(2);\n    Row row4 = rows.get(3);\n    Row row5 = rows.get(4);\n\n    assertThat(row1.getLong(row1.fieldIndex(orderId))).isEqualTo(4);\n    assertThat(row1.getLong(row1.fieldIndex(orderCount))).isEqualTo(2000);\n\n    assertThat(row2.getLong(row2.fieldIndex(orderId))).isEqualTo(20);\n    assertThat(row2.getLong(row2.fieldIndex(orderCount))).isEqualTo(2050);\n\n    assertThat(row3.getLong(row3.fieldIndex(orderId))).isEqualTo(21);\n    assertThat(row3.getLong(row3.fieldIndex(orderCount))).isEqualTo(1010);\n\n    assertThat(row4.getLong(row4.fieldIndex(orderId))).isEqualTo(85);\n    assertThat(row4.getLong(row4.fieldIndex(orderCount))).isEqualTo(3000);\n\n    assertThat(row5.getLong(row5.fieldIndex(orderId))).isEqualTo(90);\n    assertThat(row5.getLong(row5.fieldIndex(orderCount))).isEqualTo(3050);\n  }\n\n  @Test\n  public void testOverwriteDynamicPartition_rangePartitionedOutsideRangeLessThanStart() {\n    String orderId = \"order_id\";\n    String orderCount = \"order_count\";\n    TimeZone.setDefault(TimeZone.getTimeZone(\"UTC\"));\n    IntegrationTestUtils.runQuery(\n        String.format(\n            \"CREATE TABLE `%s.%s` (%s INTEGER, %s INTEGER) \"\n                + \"PARTITION BY RANGE_BUCKET(order_id, GENERATE_ARRAY(1, 100, 10)) OPTIONS (require_partition_filter = true)\"\n                + \"AS SELECT * FROM UNNEST([(1, 1000), \"\n                + \"(2, 1005), ( 150, 1010)])\",\n            testDataset, testTable, orderId, orderCount));\n\n    Dataset<Row> df =\n        spark.createDataFrame(\n            Arrays.asList(RowFactory.create(4, 2000), RowFactory.create(-10, 2050)),\n            structType(\n                StructField.apply(orderId, DataTypes.IntegerType, true, Metadata.empty()),\n                StructField.apply(orderCount, DataTypes.IntegerType, true, Metadata.empty())));\n\n    Dataset<Row> result = writeAndLoadDatasetOverwriteDynamicPartition(df, true);\n    assertThat(result.count()).isEqualTo(2);\n    List<Row> rows = result.collectAsList();\n    rows.sort(Comparator.comparing(row -> row.getLong(row.fieldIndex(orderId))));\n\n    Row row1 = rows.get(0);\n    Row row2 = rows.get(1);\n\n    assertThat(row1.getLong(row1.fieldIndex(orderId))).isEqualTo(-10);\n    assertThat(row1.getLong(row1.fieldIndex(orderCount))).isEqualTo(2050);\n\n    assertThat(row2.getLong(row2.fieldIndex(orderId))).isEqualTo(4);\n    assertThat(row2.getLong(row2.fieldIndex(orderCount))).isEqualTo(2000);\n  }\n\n  @Test\n  public void testOverwriteDynamicPartition_rangePartitionedOutsideRangeGreaterThanEnd() {\n    String orderId = \"order_id\";\n    String orderCount = \"order_count\";\n    TimeZone.setDefault(TimeZone.getTimeZone(\"UTC\"));\n    IntegrationTestUtils.runQuery(\n        String.format(\n            \"CREATE TABLE `%s.%s` (%s INTEGER, %s INTEGER) \"\n                + \"PARTITION BY RANGE_BUCKET(order_id, GENERATE_ARRAY(1, 100, 10)) OPTIONS (require_partition_filter = true)\"\n                + \"AS SELECT * FROM UNNEST([(1, 1000), \"\n                + \"(2, 1005), ( -1, 1010)])\",\n            testDataset, testTable, orderId, orderCount));\n\n    Dataset<Row> df =\n        spark.createDataFrame(\n            Arrays.asList(RowFactory.create(4, 2000), RowFactory.create(105, 2050)),\n            structType(\n                StructField.apply(orderId, DataTypes.IntegerType, true, Metadata.empty()),\n                StructField.apply(orderCount, DataTypes.IntegerType, true, Metadata.empty())));\n\n    Dataset<Row> result = writeAndLoadDatasetOverwriteDynamicPartition(df, true);\n    assertThat(result.count()).isEqualTo(2);\n    List<Row> rows = result.collectAsList();\n    rows.sort(Comparator.comparing(row -> row.getLong(row.fieldIndex(orderId))));\n\n    Row row1 = rows.get(0);\n    Row row2 = rows.get(1);\n\n    assertThat(row1.getLong(row1.fieldIndex(orderId))).isEqualTo(4);\n    assertThat(row1.getLong(row1.fieldIndex(orderCount))).isEqualTo(2000);\n\n    assertThat(row2.getLong(row2.fieldIndex(orderId))).isEqualTo(105);\n    assertThat(row2.getLong(row2.fieldIndex(orderCount))).isEqualTo(2050);\n  }\n\n  @Test\n  public void testOverwriteDynamicPartition_rangePartitionedBoundaryCondition() {\n    String orderId = \"order_id\";\n    String orderCount = \"order_count\";\n    TimeZone.setDefault(TimeZone.getTimeZone(\"UTC\"));\n    IntegrationTestUtils.runQuery(\n        String.format(\n            \"CREATE TABLE `%s.%s` (%s INTEGER, %s INTEGER) \"\n                + \"PARTITION BY RANGE_BUCKET(order_id, GENERATE_ARRAY(1, 100, 10)) OPTIONS (require_partition_filter = true)\"\n                + \"AS SELECT * FROM UNNEST([(1, 1000), \"\n                + \"(11, 1005), ( 100, 1010)])\",\n            testDataset, testTable, orderId, orderCount));\n\n    Dataset<Row> df =\n        spark.createDataFrame(\n            Arrays.asList(RowFactory.create(-1, 2000), RowFactory.create(5, 2050)),\n            structType(\n                StructField.apply(orderId, DataTypes.IntegerType, true, Metadata.empty()),\n                StructField.apply(orderCount, DataTypes.IntegerType, true, Metadata.empty())));\n\n    Dataset<Row> result = writeAndLoadDatasetOverwriteDynamicPartition(df, true);\n    assertThat(result.count()).isEqualTo(3);\n    List<Row> rows = result.collectAsList();\n    rows.sort(Comparator.comparing(row -> row.getLong(row.fieldIndex(orderId))));\n\n    Row row1 = rows.get(0);\n    Row row2 = rows.get(1);\n    Row row3 = rows.get(2);\n\n    assertThat(row1.getLong(row1.fieldIndex(orderId))).isEqualTo(-1);\n    assertThat(row1.getLong(row1.fieldIndex(orderCount))).isEqualTo(2000);\n\n    assertThat(row2.getLong(row2.fieldIndex(orderId))).isEqualTo(5);\n    assertThat(row2.getLong(row2.fieldIndex(orderCount))).isEqualTo(2050);\n\n    assertThat(row3.getLong(row3.fieldIndex(orderId))).isEqualTo(11);\n    assertThat(row3.getLong(row3.fieldIndex(orderCount))).isEqualTo(1005);\n  }\n\n  @Test\n  public void testOverwriteDynamicPartition_rangePartitionedWithNulls() {\n    String orderId = \"order_id\";\n    String orderCount = \"order_count\";\n    TimeZone.setDefault(TimeZone.getTimeZone(\"UTC\"));\n    IntegrationTestUtils.runQuery(\n        String.format(\n            \"CREATE TABLE `%s.%s` (%s INTEGER, %s INTEGER) \"\n                + \"PARTITION BY RANGE_BUCKET(order_id, GENERATE_ARRAY(1, 100, 10)) OPTIONS (require_partition_filter = true)\"\n                + \"AS SELECT * FROM UNNEST([(NULL, 1000), \"\n                + \"(11, 1005)])\",\n            testDataset, testTable, orderId, orderCount));\n\n    Dataset<Row> df =\n        spark.createDataFrame(\n            Arrays.asList(RowFactory.create(null, 2000), RowFactory.create(5, 2050)),\n            structType(\n                StructField.apply(orderId, DataTypes.IntegerType, true, Metadata.empty()),\n                StructField.apply(orderCount, DataTypes.IntegerType, true, Metadata.empty())));\n\n    Dataset<Row> result = writeAndLoadDatasetOverwriteDynamicPartition(df, true);\n    assertThat(result.count()).isEqualTo(3);\n\n    List<Row> rows = result.collectAsList();\n\n    Comparator<Row> rowComparator =\n        Comparator.comparing(\n            row -> {\n              Object value = row.get(row.fieldIndex(orderId));\n              if (value == null) {\n                return Long.MIN_VALUE;\n              }\n              return (Long) value;\n            });\n\n    rows.sort(rowComparator);\n\n    Row row1 = rows.get(0);\n    Row row2 = rows.get(1);\n    Row row3 = rows.get(2);\n\n    assertThat(row1.get(row1.fieldIndex(orderId))).isNull();\n    assertThat(row1.getLong(row1.fieldIndex(orderCount))).isEqualTo(2000);\n\n    assertThat(row2.getLong(row2.fieldIndex(orderId))).isEqualTo(5);\n    assertThat(row2.getLong(row2.fieldIndex(orderCount))).isEqualTo(2050);\n\n    assertThat(row3.getLong(row3.fieldIndex(orderId))).isEqualTo(11);\n    assertThat(row3.getLong(row3.fieldIndex(orderCount))).isEqualTo(1005);\n  }\n\n  public void testWriteSchemaSubset() throws Exception {\n    StructType initialSchema =\n        structType(\n            StructField.apply(\"key\", DataTypes.StringType, true, Metadata.empty()),\n            StructField.apply(\"value\", DataTypes.StringType, true, Metadata.empty()),\n            StructField.apply(\"ds\", DataTypes.DateType, true, Metadata.empty()));\n    List<Row> rows =\n        Arrays.asList(\n            RowFactory.create(\"key1\", \"val1\", Date.valueOf(\"2023-04-13\")),\n            RowFactory.create(\"key2\", \"val2\", Date.valueOf(\"2023-04-14\")));\n    Dataset<Row> initialDF = spark.createDataFrame(rows, initialSchema);\n    // initial write\n    initialDF\n        .write()\n        .format(\"bigquery\")\n        .mode(SaveMode.Append)\n        .option(\"dataset\", testDataset.toString())\n        .option(\"table\", testTable)\n        .option(\"temporaryGcsBucket\", TestConstants.TEMPORARY_GCS_BUCKET)\n        .option(\"writeMethod\", writeMethod.toString())\n        .save();\n    assertThat(testTableNumberOfRows()).isEqualTo(2);\n\n    StructType finalSchema =\n        structType(\n            StructField.apply(\"key\", DataTypes.StringType, true, Metadata.empty()),\n            StructField.apply(\"value\", DataTypes.StringType, true, Metadata.empty()));\n    List<Row> finalRows = Arrays.asList(RowFactory.create(\"key3\", \"val3\"));\n    Dataset<Row> finalDF = spark.createDataFrame(finalRows, finalSchema);\n    finalDF\n        .write()\n        .format(\"bigquery\")\n        .mode(SaveMode.Append)\n        .option(\"dataset\", testDataset.toString())\n        .option(\"table\", testTable)\n        .option(\"temporaryGcsBucket\", TestConstants.TEMPORARY_GCS_BUCKET)\n        .option(\"writeMethod\", writeMethod.toString())\n        .save();\n    assertThat(testTableNumberOfRows()).isEqualTo(3);\n  }\n\n  @Test\n  public void allowFieldAdditionWithNestedColumns() throws Exception {\n    assumeThat(writeMethod, equalTo(WriteMethod.INDIRECT));\n    StructType initialSchema =\n        structType(\n            StructField.apply(\"value\", DataTypes.StringType, true, Metadata.empty()),\n            StructField.apply(\"ds\", DataTypes.DateType, true, Metadata.empty()));\n    List<Row> rows =\n        Arrays.asList(\n            RowFactory.create(\"val1\", Date.valueOf(\"2023-04-13\")),\n            RowFactory.create(\"val2\", Date.valueOf(\"2023-04-14\")));\n    Dataset<Row> initialDF = spark.createDataFrame(rows, initialSchema);\n    // initial write\n    initialDF\n        .write()\n        .format(\"bigquery\")\n        .mode(SaveMode.Overwrite)\n        .option(\"dataset\", testDataset.toString())\n        .option(\"table\", testTable)\n        .option(\"temporaryGcsBucket\", TestConstants.TEMPORARY_GCS_BUCKET)\n        .option(\"writeMethod\", writeMethod.toString())\n        .save();\n    assertThat(testTableNumberOfRows()).isEqualTo(2);\n\n    StructType nestedSchema =\n        structType(\n            StructField.apply(\"value\", DataTypes.StringType, true, Metadata.empty()),\n            StructField.apply(\"ds\", DataTypes.DateType, true, Metadata.empty()),\n            StructField.apply(\n                \"nested_col\",\n                structType(\n                    StructField.apply(\"sub_field1\", DataTypes.StringType, true, Metadata.empty()),\n                    StructField.apply(\"sub_field2\", DataTypes.StringType, true, Metadata.empty())),\n                true,\n                Metadata.empty()));\n    List<Row> nestedData =\n        Arrays.asList(\n            RowFactory.create(\n                \"val5\", Date.valueOf(\"2023-04-15\"), RowFactory.create(\"str1\", \"str2\")),\n            RowFactory.create(\n                \"val6\", Date.valueOf(\"2023-04-16\"), RowFactory.create(\"str1\", \"str2\")));\n    Dataset<Row> nestedDF = spark.createDataFrame(nestedData, nestedSchema);\n\n    nestedDF\n        .write()\n        .format(\"bigquery\")\n        .mode(SaveMode.Append)\n        .option(\"dataset\", testDataset.toString())\n        .option(\"table\", testTable)\n        .option(\"temporaryGcsBucket\", TestConstants.TEMPORARY_GCS_BUCKET)\n        .option(\"writeMethod\", writeMethod.toString())\n        .option(\"allowFieldAddition\", \"true\")\n        .option(\"allowFieldRelaxation\", \"true\")\n        .save();\n\n    TableResult tableResult =\n        IntegrationTestUtils.runQuery(\n            String.format(\"SELECT * FROM `%s.%s`\", testDataset.testDataset, testTable));\n    assertThat(tableResult.getTotalRows()).isEqualTo(4);\n    FieldValue expectedRecord =\n        FieldValue.of(\n            FieldValue.Attribute.RECORD,\n            FieldValueList.of(\n                Arrays.asList(\n                    FieldValue.of(FieldValue.Attribute.PRIMITIVE, \"str1\", false),\n                    FieldValue.of(FieldValue.Attribute.PRIMITIVE, \"str2\", false))),\n            false);\n    List<FieldValue> nestedColList =\n        Streams.stream(tableResult.getValues())\n            .map(row -> row.get(\"nested_col\"))\n            .collect(Collectors.toList());\n    assertThat(nestedColList.stream().filter(FieldValue::isNull).count()).isEqualTo(2);\n    assertThat(nestedColList.stream().filter(not(FieldValue::isNull)).collect(Collectors.toList()))\n        .containsExactly(expectedRecord, expectedRecord);\n  }\n\n  @Test\n  public void allowFieldAdditionIntoNestedColumns() throws Exception {\n\n    assumeThat(writeMethod, equalTo(WriteMethod.INDIRECT));\n    StructType initialSchema =\n        structType(\n            StructField.apply(\"value\", DataTypes.StringType, true, Metadata.empty()),\n            StructField.apply(\"ds\", DataTypes.DateType, true, Metadata.empty()),\n            StructField.apply(\n                \"nested_col\",\n                structType(\n                    StructField.apply(\"sub_field1\", DataTypes.StringType, true, Metadata.empty()),\n                    StructField.apply(\"sub_field2\", DataTypes.StringType, true, Metadata.empty())),\n                true,\n                Metadata.empty()));\n    List<Row> initialData =\n        Arrays.asList(\n            RowFactory.create(\n                \"val5\", Date.valueOf(\"2023-04-15\"), RowFactory.create(\"str1\", \"str2\")),\n            RowFactory.create(\n                \"val6\", Date.valueOf(\"2023-04-16\"), RowFactory.create(\"str1\", \"str2\")));\n    Dataset<Row> initialDF = spark.createDataFrame(initialData, initialSchema);\n\n    initialDF\n        .write()\n        .format(\"bigquery\")\n        .mode(SaveMode.Append)\n        .option(\"dataset\", testDataset.toString())\n        .option(\"table\", testTable)\n        .option(\"temporaryGcsBucket\", TestConstants.TEMPORARY_GCS_BUCKET)\n        .option(\"writeMethod\", writeMethod.toString())\n        .option(\"allowFieldAddition\", \"true\")\n        .option(\"allowFieldRelaxation\", \"true\")\n        .save();\n    assertThat(testTableNumberOfRows()).isEqualTo(2);\n\n    StructType finalSchema =\n        structType(\n            StructField.apply(\"value\", DataTypes.StringType, true, Metadata.empty()),\n            StructField.apply(\"ds\", DataTypes.DateType, true, Metadata.empty()),\n            StructField.apply(\n                \"nested_col\",\n                structType(\n                    StructField.apply(\"sub_field1\", DataTypes.StringType, true, Metadata.empty()),\n                    StructField.apply(\"sub_field2\", DataTypes.StringType, true, Metadata.empty()),\n                    StructField.apply(\"sub_field3\", DataTypes.StringType, true, Metadata.empty())),\n                true,\n                Metadata.empty()));\n    List<Row> finalData =\n        Arrays.asList(\n            RowFactory.create(\n                \"val5\", Date.valueOf(\"2023-04-15\"), RowFactory.create(\"str1\", \"str2\", \"str3\")),\n            RowFactory.create(\n                \"val6\", Date.valueOf(\"2023-04-16\"), RowFactory.create(\"str1\", \"str2\", \"str3\")));\n    Dataset<Row> finalDF = spark.createDataFrame(finalData, finalSchema);\n\n    finalDF\n        .write()\n        .format(\"bigquery\")\n        .mode(SaveMode.Append)\n        .option(\"dataset\", testDataset.toString())\n        .option(\"table\", testTable)\n        .option(\"temporaryGcsBucket\", TestConstants.TEMPORARY_GCS_BUCKET)\n        .option(\"writeMethod\", writeMethod.toString())\n        .option(\"allowFieldAddition\", \"true\")\n        .option(\"allowFieldRelaxation\", \"true\")\n        .save();\n\n    TableResult tableResult =\n        IntegrationTestUtils.runQuery(\n            String.format(\"SELECT * FROM `%s.%s`\", testDataset.testDataset, testTable));\n    assertThat(tableResult.getTotalRows()).isEqualTo(4);\n    List<FieldValue> nestedColList =\n        Streams.stream(tableResult.getValues())\n            .map(row -> row.get(\"nested_col\"))\n            .collect(Collectors.toList());\n    assertThat(nestedColList.stream().filter(this::hasTwoValues).count()).isEqualTo(2);\n    assertThat(nestedColList.stream().filter(this::hasThreeValues).count()).isEqualTo(2);\n  }\n\n  private boolean hasTwoValues(FieldValue record) {\n    FieldValueList values = record.getRecordValue();\n    return !values.get(0).isNull() && !values.get(1).isNull() && values.get(2).isNull();\n  }\n\n  private boolean hasThreeValues(FieldValue record) {\n    FieldValueList values = record.getRecordValue();\n    return !values.get(0).isNull() && !values.get(1).isNull() && !values.get(2).isNull();\n  }\n\n  @Test\n  public void testWriteSparkMlTypes() {\n    // Spark ML types have issues on Spark 2.4\n    String sparkVersion = package$.MODULE$.SPARK_VERSION();\n    Assume.assumeThat(sparkVersion, CoreMatchers.startsWith(\"3.\"));\n\n    Dataset<Row> df =\n        spark.createDataFrame(\n            Arrays.asList(\n                RowFactory.create(\"1\", \"20230515\", 12345, 5678, 1234.12345),\n                RowFactory.create(\"2\", \"20230515\", 14789, 25836, 1234.12345),\n                RowFactory.create(\"3\", \"20230515\", 54321, 98765, 1234.12345)),\n            new StructType(\n                new StructField[] {\n                  StructField.apply(\"Seqno\", DataTypes.StringType, true, Metadata.empty()),\n                  StructField.apply(\"date1\", DataTypes.StringType, true, Metadata.empty()),\n                  StructField.apply(\"num1\", DataTypes.IntegerType, true, Metadata.empty()),\n                  StructField.apply(\"num2\", DataTypes.IntegerType, true, Metadata.empty()),\n                  StructField.apply(\"amt1\", DataTypes.DoubleType, true, Metadata.empty())\n                }));\n\n    List<Transformer> stages = new ArrayList<>();\n\n    VectorAssembler va = new VectorAssembler();\n    va.setInputCols(new String[] {\"num1\", \"num2\"});\n    va.setOutputCol(\"features_vector\");\n    df = va.transform(df);\n    stages.add(va);\n\n    MinMaxScaler minMaxScaler = new MinMaxScaler();\n    minMaxScaler.setInputCol(\"features_vector\");\n    minMaxScaler.setOutputCol(\"features\");\n    MinMaxScalerModel minMaxScalerModel = minMaxScaler.fit(df);\n    df = minMaxScalerModel.transform(df);\n    stages.add(minMaxScalerModel);\n\n    PipelineModel pipelineModel = new PipelineModel(\"pipeline\", stages);\n    df.show(false);\n    df.write()\n        .format(\"bigquery\")\n        .option(\"writeMethod\", writeMethod.toString())\n        .option(\"temporaryGcsBucket\", TestConstants.TEMPORARY_GCS_BUCKET)\n        .option(\"dataset\", testDataset.toString())\n        .option(\"table\", testTable)\n        .save();\n\n    Dataset<Row> result =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"dataset\", testDataset.toString())\n            .option(\"table\", testTable)\n            .load();\n    StructType resultSchema = result.schema();\n    assertThat(resultSchema.apply(\"features\").dataType()).isEqualTo(SQLDataTypes.VectorType());\n    result.show(false);\n    List<Row> values = result.collectAsList();\n    assertThat(values).hasSize(3);\n    Row row = values.get(0);\n    assertThat(row.get(row.fieldIndex(\"features\")))\n        .isInstanceOf(org.apache.spark.ml.linalg.Vector.class);\n  }\n\n  @Test\n  public void testTimestampNTZDirectWriteToBigQuery() throws InterruptedException {\n    assumeThat(writeMethod, equalTo(WriteMethod.DIRECT));\n    assumeThat(timeStampNTZType.isPresent(), is(true));\n    LocalDateTime time = LocalDateTime.of(2023, 9, 1, 12, 23, 34, 268543 * 1000);\n    List<Row> rows = Arrays.asList(RowFactory.create(time));\n    Dataset<Row> df =\n        spark.createDataFrame(\n            rows,\n            new StructType(\n                new StructField[] {\n                  StructField.apply(\"foo\", timeStampNTZType.get(), true, Metadata.empty())\n                }));\n    String table = testDataset.toString() + \".\" + testTable;\n    df.write()\n        .format(\"bigquery\")\n        .mode(SaveMode.Overwrite)\n        .option(\"table\", table)\n        .option(\"writeMethod\", SparkBigQueryConfig.WriteMethod.DIRECT.toString())\n        .save();\n    BigQuery bigQuery = IntegrationTestUtils.getBigquery();\n    TableResult result =\n        bigQuery.query(\n            QueryJobConfiguration.of(String.format(\"Select foo from %s\", fullTableName())));\n    assertThat(result.getSchema().getFields().get(0).getType())\n        .isEqualTo(LegacySQLTypeName.DATETIME);\n    assertThat(result.streamValues().findFirst().get().get(0).getValue())\n        .isEqualTo(\"2023-09-01T12:23:34.268543\");\n  }\n\n  @Test\n  public void testTimestampNTZIndirectWriteToBigQueryAvroFormat() throws InterruptedException {\n    assumeThat(writeMethod, equalTo(WriteMethod.INDIRECT));\n    assumeThat(timeStampNTZType.isPresent(), is(true));\n    LocalDateTime time = LocalDateTime.of(2023, 9, 1, 12, 23, 34, 268543 * 1000);\n    TableResult result = insertAndGetTimestampNTZToBigQuery(time, \"avro\");\n    assertThat(result.getSchema().getFields().get(0).getType())\n        .isEqualTo(LegacySQLTypeName.DATETIME);\n    assertThat(result.streamValues().findFirst().get().get(0).getValue())\n        .isEqualTo(\"2023-09-01T12:23:34.268543\");\n  }\n\n  @Test\n  public void testTimestampNTZIndirectWriteToBigQueryParquetFormat() throws InterruptedException {\n    assumeThat(writeMethod, equalTo(WriteMethod.INDIRECT));\n    assumeThat(timeStampNTZType.isPresent(), is(true));\n    LocalDateTime time = LocalDateTime.of(2023, 9, 15, 12, 36, 34, 268543 * 1000);\n    TableResult result = insertAndGetTimestampNTZToBigQuery(time, \"parquet\");\n    assertThat(result.getSchema().getFields().get(0).getType())\n        .isEqualTo(LegacySQLTypeName.DATETIME);\n    assertThat(result.streamValues().findFirst().get().get(0).getValue())\n        .isEqualTo(\"2023-09-15T12:36:34.268543\");\n  }\n\n  @Test\n  public void testTableDescriptionRemainsUnchanged() {\n    IntegrationTestUtils.runQuery(\n        String.format(\"CREATE TABLE `%s.%s` (name STRING, age INT64)\", testDataset, testTable));\n    String initialDescription = bq.getTable(testDataset.toString(), testTable).getDescription();\n    Dataset<Row> df =\n        spark.createDataFrame(\n            Arrays.asList(RowFactory.create(\"foo\", 10), RowFactory.create(\"bar\", 20)),\n            new StructType().add(\"name\", DataTypes.StringType).add(\"age\", DataTypes.IntegerType));\n    writeToBigQueryAvroFormat(df, SaveMode.Append, \"True\");\n    assertThat(initialDescription)\n        .isEqualTo(bq.getTable(testDataset.toString(), testTable).getDescription());\n    Dataset<Row> readDF =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"dataset\", testDataset.toString())\n            .option(\"table\", testTable)\n            .load();\n\n    assertThat(readDF.count()).isAtLeast(1);\n    assertThat(initialDescription)\n        .isEqualTo(bq.getTable(testDataset.toString(), testTable).getDescription());\n  }\n\n  @Test\n  public void testCountAfterWrite() {\n    IntegrationTestUtils.runQuery(\n        String.format(\"CREATE TABLE `%s.%s` (name STRING, age INT64)\", testDataset, testTable));\n    Dataset<Row> read1Df = spark.read().format(\"bigquery\").load(fullTableName());\n    assertThat(read1Df.count()).isEqualTo(0L);\n\n    Dataset<Row> dfToWrite =\n        spark.createDataFrame(\n            Arrays.asList(RowFactory.create(\"foo\", 10), RowFactory.create(\"bar\", 20)),\n            new StructType().add(\"name\", DataTypes.StringType).add(\"age\", DataTypes.IntegerType));\n    writeToBigQueryAvroFormat(dfToWrite, SaveMode.Append, \"false\");\n\n    Dataset<Row> read2Df = spark.read().format(\"bigquery\").load(fullTableName());\n    assertThat(read2Df.count()).isEqualTo(2L);\n  }\n\n  private TableResult insertAndGetTimestampNTZToBigQuery(LocalDateTime time, String format)\n      throws InterruptedException {\n    Preconditions.checkArgument(timeStampNTZType.isPresent(), \"timestampNTZType not present\");\n    List<Row> rows = Arrays.asList(RowFactory.create(time));\n    Dataset<Row> df =\n        spark.createDataFrame(\n            rows,\n            new StructType(\n                new StructField[] {\n                  StructField.apply(\"foo\", timeStampNTZType.get(), true, Metadata.empty())\n                }));\n    writeToBigQuery(df, SaveMode.Overwrite, format);\n    BigQuery bigQuery = IntegrationTestUtils.getBigquery();\n    TableResult result =\n        bigQuery.query(\n            QueryJobConfiguration.of(String.format(\"Select foo from %s\", fullTableName())));\n    return result;\n  }\n\n  protected long numberOfRowsWith(String name) {\n    try {\n      return bq.query(\n              QueryJobConfiguration.of(\n                  String.format(\"select name from %s where name='%s'\", fullTableName(), name)))\n          .getTotalRows();\n    } catch (InterruptedException e) {\n      throw new RuntimeException(e);\n    }\n  }\n\n  protected String fullTableName() {\n    return testDataset.toString() + \".\" + testTable;\n  }\n\n  protected String fullTableNamePartitioned() {\n    return fullTableName() + \"_partitioned\";\n  }\n\n  protected boolean additionalDataValuesExist() {\n    return numberOfRowsWith(\"Xyz\") == 1;\n  }\n\n  protected boolean initialDataValuesExist() {\n    return numberOfRowsWith(\"Abc\") == 1;\n  }\n\n  // the equivalent of Java 11 Predicate.not()\n  static <T> Predicate<T> not(Predicate<T> predicate) {\n    return predicate.negate();\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/integration/model/ColumnOrderTestClass.java",
    "content": "/*\n * Copyright 2021 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration.model;\n\nimport com.google.common.base.Objects;\n\npublic class ColumnOrderTestClass {\n\n  private NumStruct nums;\n  private String str;\n\n  public ColumnOrderTestClass() {}\n\n  public ColumnOrderTestClass(NumStruct nums, String str) {\n    this.nums = nums;\n    this.str = str;\n  }\n\n  public NumStruct getNums() {\n    return nums;\n  }\n\n  public void setNums(NumStruct nums) {\n    this.nums = nums;\n  }\n\n  public String getStr() {\n    return str;\n  }\n\n  public void setStr(String str) {\n    this.str = str;\n  }\n\n  @Override\n  public boolean equals(Object o) {\n    if (this == o) {\n      return true;\n    }\n    if (!(o instanceof ColumnOrderTestClass)) {\n      return false;\n    }\n    ColumnOrderTestClass that = (ColumnOrderTestClass) o;\n    return Objects.equal(nums, that.nums) && Objects.equal(str, that.str);\n  }\n\n  @Override\n  public int hashCode() {\n    return Objects.hashCode(nums, str);\n  }\n\n  @Override\n  public String toString() {\n    return \"ColumnOrderTestClass{\" + \"nums=\" + nums + \", str='\" + str + '\\'' + '}';\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/integration/model/Data.java",
    "content": "/*\n * Copyright 2021 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration.model;\n\nimport com.google.common.base.Objects;\nimport java.io.Serializable;\nimport java.sql.Timestamp;\n\npublic class Data implements Serializable {\n\n  private static final long serialVersionUID = 752810064619797197L;\n  private String str;\n  private java.sql.Timestamp ts;\n\n  public Data(String str, Timestamp ts) {\n    this.str = str;\n    this.ts = ts;\n  }\n\n  public String getStr() {\n    return str;\n  }\n\n  public void setStr(String str) {\n    this.str = str;\n  }\n\n  public Timestamp getTs() {\n    return ts;\n  }\n\n  public void setTs(Timestamp ts) {\n    this.ts = ts;\n  }\n\n  @Override\n  public boolean equals(Object o) {\n    if (this == o) {\n      return true;\n    }\n    if (!(o instanceof Data)) {\n      return false;\n    }\n    Data data = (Data) o;\n    return Objects.equal(str, data.str) && Objects.equal(ts, data.ts);\n  }\n\n  @Override\n  public int hashCode() {\n    return Objects.hashCode(str, ts);\n  }\n\n  @Override\n  public String toString() {\n    return \"Data{\" + \"str='\" + str + '\\'' + \", ts=\" + ts + '}';\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/integration/model/Friend.java",
    "content": "/*\n * Copyright 2021 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration.model;\n\nimport com.google.common.base.Objects;\nimport java.util.List;\n\npublic class Friend {\n\n  private int age;\n  private List<Link> links;\n\n  public Friend() {}\n\n  public Friend(int age, List<Link> links) {\n    this.age = age;\n    this.links = links;\n  }\n\n  public int getAge() {\n    return age;\n  }\n\n  public void setAge(int age) {\n    this.age = age;\n  }\n\n  public List<Link> getLinks() {\n    return links;\n  }\n\n  public void setLinks(List<Link> links) {\n    this.links = links;\n  }\n\n  @Override\n  public boolean equals(Object o) {\n    if (this == o) {\n      return true;\n    }\n    if (!(o instanceof Friend)) {\n      return false;\n    }\n    Friend friend = (Friend) o;\n    return age == friend.age && Objects.equal(links, friend.links);\n  }\n\n  @Override\n  public int hashCode() {\n    return Objects.hashCode(age, links);\n  }\n\n  @Override\n  public String toString() {\n    return \"Friend{\" + \"age=\" + age + \", links=\" + links + '}';\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/integration/model/Link.java",
    "content": "/*\n * Copyright 2021 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration.model;\n\nimport com.google.common.base.Objects;\nimport java.io.Serializable;\n\npublic class Link implements Serializable {\n\n  private static final long serialVersionUID = 914804886152047390L;\n  private String uri;\n\n  public Link() {}\n\n  public Link(String uri) {\n    this.uri = uri;\n  }\n\n  public String getUri() {\n    return uri;\n  }\n\n  public void setUri(String uri) {\n    this.uri = uri;\n  }\n\n  @Override\n  public boolean equals(Object o) {\n    if (this == o) {\n      return true;\n    }\n    if (!(o instanceof Link)) {\n      return false;\n    }\n    Link link = (Link) o;\n    return Objects.equal(uri, link.uri);\n  }\n\n  @Override\n  public int hashCode() {\n    return Objects.hashCode(uri);\n  }\n\n  @Override\n  public String toString() {\n    return \"Link{\" + \"uri='\" + uri + '\\'' + '}';\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/integration/model/NumStruct.java",
    "content": "/*\n * Copyright 2021 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration.model;\n\nimport com.google.common.base.Objects;\nimport java.util.List;\n\npublic class NumStruct {\n\n  private Long num3;\n  private Long num2;\n  private Long num1;\n  private List<StringStruct> strings;\n\n  public NumStruct() {}\n\n  public NumStruct(Long num3, Long num2, Long num1, List<StringStruct> strings) {\n    this.num3 = num3;\n    this.num2 = num2;\n    this.num1 = num1;\n    this.strings = strings;\n  }\n\n  public Long getNum3() {\n    return num3;\n  }\n\n  public void setNum3(Long num3) {\n    this.num3 = num3;\n  }\n\n  public Long getNum2() {\n    return num2;\n  }\n\n  public void setNum2(Long num2) {\n    this.num2 = num2;\n  }\n\n  public Long getNum1() {\n    return num1;\n  }\n\n  public void setNum1(Long num1) {\n    this.num1 = num1;\n  }\n\n  public List<StringStruct> getStrings() {\n    return strings;\n  }\n\n  public void setStrings(List<StringStruct> strings) {\n    this.strings = strings;\n  }\n\n  @Override\n  public boolean equals(Object o) {\n    if (this == o) {\n      return true;\n    }\n    if (!(o instanceof NumStruct)) {\n      return false;\n    }\n    NumStruct numStruct = (NumStruct) o;\n    return Objects.equal(num3, numStruct.num3)\n        && Objects.equal(num2, numStruct.num2)\n        && Objects.equal(num1, numStruct.num1)\n        && Objects.equal(strings, numStruct.strings);\n  }\n\n  @Override\n  public int hashCode() {\n    return Objects.hashCode(num3, num2, num1, strings);\n  }\n\n  @Override\n  public String toString() {\n    return \"NumStruct{\"\n        + \"num3=\"\n        + num3\n        + \", num2=\"\n        + num2\n        + \", num1=\"\n        + num1\n        + \", stringStructArr=\"\n        + strings\n        + '}';\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/integration/model/Person.java",
    "content": "/*\n * Copyright 2021 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration.model;\n\nimport com.google.common.base.Objects;\nimport java.util.List;\n\npublic class Person {\n\n  private String name;\n  private List<Friend> friends;\n\n  public Person() {}\n\n  public Person(String name, List<Friend> friends) {\n    this.name = name;\n    this.friends = friends;\n  }\n\n  public String getName() {\n    return name;\n  }\n\n  public void setName(String name) {\n    this.name = name;\n  }\n\n  public List<Friend> getFriends() {\n    return friends;\n  }\n\n  public void setFriends(List<Friend> friends) {\n    this.friends = friends;\n  }\n\n  @Override\n  public boolean equals(Object o) {\n    if (this == o) {\n      return true;\n    }\n    if (!(o instanceof Person)) {\n      return false;\n    }\n    Person person = (Person) o;\n    return Objects.equal(name, person.name) && Objects.equal(friends, person.friends);\n  }\n\n  @Override\n  public int hashCode() {\n    return Objects.hashCode(name, friends);\n  }\n\n  @Override\n  public String toString() {\n    return \"Person{\" + \"name='\" + name + '\\'' + \", friends=\" + friends + '}';\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/integration/model/RangeData.java",
    "content": "/*\n * Copyright 2021 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration.model;\n\nimport com.google.common.base.Objects;\nimport java.io.Serializable;\n\npublic class RangeData implements Serializable {\n\n  private static final long serialVersionUID = 194460107083111775L;\n  private String str;\n  private Long rng;\n\n  public RangeData(String str, Long rng) {\n    this.str = str;\n    this.rng = rng;\n  }\n\n  public String getStr() {\n    return str;\n  }\n\n  public void setStr(String str) {\n    this.str = str;\n  }\n\n  public Long getRng() {\n    return rng;\n  }\n\n  public void setRng(Long rng) {\n    this.rng = rng;\n  }\n\n  @Override\n  public boolean equals(Object o) {\n    if (this == o) {\n      return true;\n    }\n    if (!(o instanceof RangeData)) {\n      return false;\n    }\n    RangeData data = (RangeData) o;\n    return Objects.equal(str, data.str) && Objects.equal(rng, data.rng);\n  }\n\n  @Override\n  public int hashCode() {\n    return Objects.hashCode(str, rng);\n  }\n\n  @Override\n  public String toString() {\n    return \"Data{\" + \"str='\" + str + '\\'' + \", rng=\" + rng + '}';\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/integration/model/StringStruct.java",
    "content": "/*\n * Copyright 2021 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration.model;\n\nimport com.google.common.base.Objects;\n\npublic class StringStruct {\n\n  private String str3;\n  private String str1;\n  private String str2;\n\n  public StringStruct() {}\n\n  public StringStruct(String str3, String str1, String str2) {\n    this.str3 = str3;\n    this.str1 = str1;\n    this.str2 = str2;\n  }\n\n  public String getStr3() {\n    return str3;\n  }\n\n  public void setStr3(String str3) {\n    this.str3 = str3;\n  }\n\n  public String getStr1() {\n    return str1;\n  }\n\n  public void setStr1(String str1) {\n    this.str1 = str1;\n  }\n\n  public String getStr2() {\n    return str2;\n  }\n\n  public void setStr2(String str2) {\n    this.str2 = str2;\n  }\n\n  @Override\n  public boolean equals(Object o) {\n    if (this == o) {\n      return true;\n    }\n    if (!(o instanceof StringStruct)) {\n      return false;\n    }\n    StringStruct that = (StringStruct) o;\n    return Objects.equal(str3, that.str3)\n        && Objects.equal(str1, that.str1)\n        && Objects.equal(str2, that.str2);\n  }\n\n  @Override\n  public int hashCode() {\n    return Objects.hashCode(str3, str1, str2);\n  }\n\n  @Override\n  public String toString() {\n    return \"StringStruct{\"\n        + \"str3='\"\n        + str3\n        + '\\''\n        + \", str1='\"\n        + str1\n        + '\\''\n        + \", str2='\"\n        + str2\n        + '\\''\n        + '}';\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/metrics/SparkBigQueryReadSessionMetricsTest.java",
    "content": "package com.google.cloud.spark.bigquery.metrics;\n\nimport static com.google.common.truth.Truth.assertThat;\n\nimport com.google.cloud.bigquery.storage.v1.DataFormat;\nimport com.google.cloud.bigquery.storage.v1.ReadSession;\nimport org.apache.spark.SparkContext;\nimport org.apache.spark.sql.SparkSession;\nimport org.junit.After;\nimport org.junit.Before;\nimport org.junit.Test;\n\npublic class SparkBigQueryReadSessionMetricsTest {\n  SparkSession spark;\n\n  SparkContext sparkContext;\n\n  @Before\n  public void setup() throws Throwable {\n    spark =\n        SparkSession.builder()\n            .master(\"local\")\n            .config(\"spark.default.parallelism\", 20)\n            .config(\"spark.driver.bindAddress\", \"127.0.0.1\")\n            .getOrCreate();\n    sparkContext = spark.sparkContext();\n  }\n\n  @After\n  public void tearDown() {\n    if (sparkContext != null) {\n      sparkContext.stop();\n    }\n  }\n\n  @Test\n  public void testReadSessionMetricsAccumulator() {\n    String sessionName = \"projects/test-project/locations/us/sessions/testSession\";\n    long numReadStreams = 10;\n    SparkBigQueryReadSessionMetrics metrics =\n        SparkBigQueryReadSessionMetrics.from(\n            spark,\n            ReadSession.newBuilder().setName(sessionName).build(),\n            10L,\n            DataFormat.ARROW,\n            DataOrigin.QUERY,\n            numReadStreams);\n    assertThat(metrics.getNumReadStreams()).isEqualTo(numReadStreams);\n\n    metrics.incrementBytesReadAccumulator(1024);\n    metrics.incrementBytesReadAccumulator(2048);\n    assertThat(metrics.getBytesRead()).isEqualTo(3072);\n\n    metrics.incrementRowsReadAccumulator(1);\n    metrics.incrementRowsReadAccumulator(4);\n    assertThat(metrics.getRowsRead()).isEqualTo(5);\n\n    metrics.incrementParseTimeAccumulator(1000);\n    metrics.incrementParseTimeAccumulator(5000);\n    assertThat(metrics.getParseTime()).isEqualTo(6000);\n\n    metrics.incrementScanTimeAccumulator(1000);\n    metrics.incrementScanTimeAccumulator(5000);\n    assertThat(metrics.getScanTime()).isEqualTo(6000);\n  }\n\n  @Test\n  public void testSerialization() throws Exception {\n    String sessionName = \"projects/test-project/locations/us/sessions/testSession\";\n    SparkBigQueryReadSessionMetrics metrics =\n        SparkBigQueryReadSessionMetrics.from(\n            spark,\n            ReadSession.newBuilder().setName(sessionName).build(),\n            10L,\n            DataFormat.ARROW,\n            DataOrigin.QUERY,\n            10L);\n\n    java.io.ByteArrayOutputStream bos = new java.io.ByteArrayOutputStream();\n    java.io.ObjectOutputStream out = new java.io.ObjectOutputStream(bos);\n    out.writeObject(metrics);\n    out.close();\n\n    java.io.ByteArrayInputStream bis = new java.io.ByteArrayInputStream(bos.toByteArray());\n    java.io.ObjectInputStream in = new java.io.ObjectInputStream(bis);\n    SparkBigQueryReadSessionMetrics deserializedMetrics =\n        (SparkBigQueryReadSessionMetrics) in.readObject();\n\n    assertThat(deserializedMetrics.getNumReadStreams()).isEqualTo(10L);\n    assertThat(deserializedMetrics.getBytesRead()).isEqualTo(0);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/metrics/SparkMetricsSourceTest.java",
    "content": "package com.google.cloud.spark.bigquery.metrics;\n\nimport static com.google.common.truth.Truth.assertThat;\n\nimport org.junit.Test;\n\npublic class SparkMetricsSourceTest {\n\n  @Test\n  public void testNew() {\n    SparkMetricsSource sparkMetricsSource = new SparkMetricsSource();\n    assertThat(sparkMetricsSource.sourceName()).isEqualTo(\"bigquery-metrics-source\");\n  }\n\n  @Test\n  public void testParseTime() {\n    SparkMetricsSource sparkMetricsSource = new SparkMetricsSource();\n    assertThat(sparkMetricsSource.getParseTime().getCount()).isEqualTo(0);\n    sparkMetricsSource.updateParseTime(10);\n    assertThat(sparkMetricsSource.getParseTime().getCount()).isEqualTo(1);\n  }\n\n  @Test\n  public void testTimeInSpark() {\n    SparkMetricsSource sparkMetricsSource = new SparkMetricsSource();\n    assertThat(sparkMetricsSource.getTimeInSpark().getCount()).isEqualTo(0);\n    sparkMetricsSource.updateTimeInSpark(12);\n    sparkMetricsSource.updateTimeInSpark(56);\n    sparkMetricsSource.updateTimeInSpark(200);\n    assertThat(sparkMetricsSource.getTimeInSpark().getCount()).isEqualTo(3);\n  }\n\n  @Test\n  public void testBytesReadCounter() {\n    SparkMetricsSource sparkMetricsSource = new SparkMetricsSource();\n    assertThat(sparkMetricsSource.getBytesRead().getCount()).isEqualTo(0);\n    sparkMetricsSource.incrementBytesReadCounter(1);\n    sparkMetricsSource.incrementBytesReadCounter(2);\n    sparkMetricsSource.incrementBytesReadCounter(3);\n    assertThat(sparkMetricsSource.getBytesRead().getCount()).isEqualTo(6);\n  }\n\n  @Test\n  public void testRowsReadCounter() {\n    SparkMetricsSource sparkMetricsSource = new SparkMetricsSource();\n    assertThat(sparkMetricsSource.getRowsRead().getCount()).isEqualTo(0);\n    sparkMetricsSource.incrementRowsReadCounter(2);\n    sparkMetricsSource.incrementRowsReadCounter(3);\n    sparkMetricsSource.incrementRowsReadCounter(4);\n    assertThat(sparkMetricsSource.getRowsRead().getCount()).isEqualTo(9);\n  }\n\n  @Test\n  public void testScanTime() {\n    SparkMetricsSource sparkMetricsSource = new SparkMetricsSource();\n    assertThat(sparkMetricsSource.getScanTime().getCount()).isEqualTo(0);\n    sparkMetricsSource.updateScanTime(22);\n    sparkMetricsSource.updateScanTime(56);\n    assertThat(sparkMetricsSource.getScanTime().getCount()).isEqualTo(2);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/util/HdfsUtilsTest.java",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.util;\n\nimport static com.google.common.truth.Truth.assertThat;\n\nimport com.google.common.collect.Iterators;\nimport com.google.common.collect.Streams;\nimport java.nio.file.Files;\nimport java.util.Iterator;\nimport java.util.List;\nimport java.util.stream.Collectors;\nimport org.apache.hadoop.conf.Configuration;\nimport org.apache.hadoop.fs.FileSystem;\nimport org.apache.hadoop.fs.LocatedFileStatus;\nimport org.apache.hadoop.fs.Path;\nimport org.junit.BeforeClass;\nimport org.junit.Test;\n\npublic class HdfsUtilsTest {\n\n  static java.nio.file.Path testDir;\n\n  @BeforeClass\n  public static void createTestDirectory() throws Exception {\n    testDir = Files.createTempDirectory(\"ToIteratorTest\");\n    testDir.toFile().deleteOnExit();\n    Files.copy(\n        HdfsUtilsTest.class.getResourceAsStream(\"/ToIteratorTest/file1.txt\"),\n        testDir.resolve(\"file1.txt\"));\n    Files.copy(\n        HdfsUtilsTest.class.getResourceAsStream(\"/ToIteratorTest/file2.csv\"),\n        testDir.resolve(\"file2.csv\"));\n  }\n\n  @Test\n  public void toIteratorTest() throws Exception {\n    Path path = new Path(testDir.toFile().getAbsolutePath());\n    FileSystem fs = path.getFileSystem(new Configuration());\n    Iterator<LocatedFileStatus> it = HdfsUtils.toJavaUtilIterator(fs.listFiles(path, false));\n\n    assertThat(Iterators.size(it)).isEqualTo(2);\n\n    // fresh instance\n    it = HdfsUtils.toJavaUtilIterator(fs.listFiles(path, false));\n    List<LocatedFileStatus> textFiles =\n        Streams.stream(it)\n            .filter(f -> f.getPath().getName().endsWith(\".txt\"))\n            .collect(Collectors.toList());\n    assertThat(textFiles).hasSize(1);\n    assertThat(textFiles.iterator().next().getPath().getName()).endsWith(\"file1.txt\");\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/write/DataSourceWriterContextPartitionHandlerTest.java",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.write;\n\nimport static com.google.common.truth.Truth.assertThat;\nimport static org.mockito.Mockito.any;\nimport static org.mockito.Mockito.anyLong;\nimport static org.mockito.Mockito.atLeast;\nimport static org.mockito.Mockito.atLeastOnce;\nimport static org.mockito.Mockito.doThrow;\nimport static org.mockito.Mockito.mock;\nimport static org.mockito.Mockito.verify;\nimport static org.mockito.Mockito.when;\n\nimport com.google.cloud.spark.bigquery.write.context.DataWriterContext;\nimport com.google.cloud.spark.bigquery.write.context.DataWriterContextFactory;\nimport com.google.cloud.spark.bigquery.write.context.WriterCommitMessageContext;\nimport com.google.common.collect.Iterators;\nimport com.google.common.collect.Streams;\nimport java.io.IOException;\nimport java.util.Iterator;\nimport java.util.List;\nimport java.util.stream.Collectors;\nimport org.apache.spark.sql.Row;\nimport org.apache.spark.sql.catalyst.InternalRow;\nimport org.apache.spark.sql.catalyst.expressions.GenericRow;\nimport org.junit.Test;\nimport org.junit.runner.RunWith;\nimport org.mockito.junit.MockitoJUnitRunner;\n\n@RunWith(MockitoJUnitRunner.class)\npublic class DataSourceWriterContextPartitionHandlerTest {\n\n  private static final long EPOCH = 1000;\n\n  @Test\n  public void testGoodWrite() throws Exception {\n    WriterCommitMessageContext writerCommitMessage = new WriterCommitMessageContext() {};\n    DataWriterContext dataWriterContext = mock(DataWriterContext.class);\n    when(dataWriterContext.commit()).thenReturn(writerCommitMessage);\n    DataWriterContextFactory dataWriterContextFactory = mock(DataWriterContextFactory.class);\n    when(dataWriterContextFactory.createDataWriterContext(any(Integer.class), anyLong(), anyLong()))\n        .thenReturn(dataWriterContext);\n    DataSourceWriterContextPartitionHandler handler =\n        new DataSourceWriterContextPartitionHandler(dataWriterContextFactory, EPOCH);\n\n    Iterator<Row> rowIterator =\n        Iterators.forArray(\n            new GenericRow(new Object[] {1, \"a\"}), new GenericRow(new Object[] {2, \"b\"}));\n\n    Iterator<WriterCommitMessageContext> result = handler.call(0, rowIterator);\n\n    verify(dataWriterContext, atLeast(2)).write(any(InternalRow.class));\n    assertThat(result.hasNext()).isTrue();\n    assertThat(result.next()).isSameInstanceAs(writerCommitMessage);\n    assertThat(result.hasNext()).isFalse();\n  }\n\n  @Test\n  public void testBadWrite() throws Exception {\n    DataWriterContext dataWriterContext = mock(DataWriterContext.class);\n    doThrow(new IOException(\"testing bad write\"))\n        .when(dataWriterContext)\n        .write(any(InternalRow.class));\n    DataWriterContextFactory dataWriterContextFactory = mock(DataWriterContextFactory.class);\n    when(dataWriterContextFactory.createDataWriterContext(any(Integer.class), anyLong(), anyLong()))\n        .thenReturn(dataWriterContext);\n    DataSourceWriterContextPartitionHandler handler =\n        new DataSourceWriterContextPartitionHandler(dataWriterContextFactory, EPOCH);\n\n    Iterator<Row> rowIterator =\n        Iterators.forArray(\n            new GenericRow(new Object[] {1, \"a\"}), new GenericRow(new Object[] {2, \"b\"}));\n\n    Iterator<WriterCommitMessageContext> resultIterator = handler.call(0, rowIterator);\n\n    verify(dataWriterContext, atLeastOnce()).write(any(InternalRow.class));\n    verify(dataWriterContext).abort();\n    List<WriterCommitMessageContext> result =\n        Streams.stream(resultIterator).collect(Collectors.toList());\n    assertThat(result).hasSize(1);\n    assertThat(result.get(0).getError().isPresent()).isTrue();\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/test/java/com/google/cloud/spark/bigquery/write/context/BigQueryDirectDataSourceWriterContextTest.java",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.write.context;\n\nimport static org.junit.Assert.assertThrows;\nimport static org.mockito.Mockito.*;\n\nimport com.google.api.gax.retrying.RetrySettings;\nimport com.google.cloud.bigquery.Field;\nimport com.google.cloud.bigquery.LegacySQLTypeName;\nimport com.google.cloud.bigquery.Schema;\nimport com.google.cloud.bigquery.StandardTableDefinition;\nimport com.google.cloud.bigquery.TableId;\nimport com.google.cloud.bigquery.TableInfo;\nimport com.google.cloud.bigquery.connector.common.BigQueryClient;\nimport com.google.cloud.bigquery.connector.common.BigQueryClientFactory;\nimport com.google.cloud.spark.bigquery.PartitionOverwriteMode;\nimport com.google.cloud.spark.bigquery.SchemaConvertersConfiguration;\nimport com.google.common.base.Optional;\nimport com.google.common.collect.ImmutableMap;\nimport org.apache.spark.sql.SaveMode;\nimport org.apache.spark.sql.types.DataTypes;\nimport org.apache.spark.sql.types.Metadata;\nimport org.apache.spark.sql.types.StructField;\nimport org.apache.spark.sql.types.StructType;\nimport org.junit.Test;\nimport org.junit.runner.RunWith;\nimport org.mockito.Mock;\nimport org.mockito.junit.MockitoJUnitRunner;\n\n@RunWith(MockitoJUnitRunner.class)\npublic class BigQueryDirectDataSourceWriterContextTest {\n\n  @Mock BigQueryClient bigQueryClient;\n\n  @Mock BigQueryClientFactory bigQueryClientFactory;\n\n  @Mock RetrySettings bigqueryDataWriterHelperRetrySettings;\n\n  TableId destinationTableId = TableId.of(\"dataset\", \"table\");\n  String writeUUID = \"00000000-0000-0000-0000-000000000000\";\n  StructType sparkSchema =\n      new StructType(\n          new StructField[] {\n            StructField.apply(\"foo\", DataTypes.StringType, true, Metadata.empty())\n          });\n\n  TableInfo destinationTable =\n      TableInfo.newBuilder(\n              destinationTableId,\n              StandardTableDefinition.newBuilder()\n                  .setSchema(\n                      Schema.of(\n                          Field.newBuilder(\"foo\", LegacySQLTypeName.STRING)\n                              .setMode(Field.Mode.NULLABLE)\n                              .build()))\n                  .build())\n          .build();\n  TableInfo tempTable =\n      TableInfo.newBuilder(\n              TableId.of(\"dataset\", \"temp_table\"),\n              StandardTableDefinition.newBuilder()\n                  .setSchema(\n                      Schema.of(\n                          Field.newBuilder(\"foo\", LegacySQLTypeName.STRING)\n                              .setMode(Field.Mode.NULLABLE)\n                              .build()))\n                  .build())\n          .build();\n\n  @Test\n  public void testDeleteOnAbort_saveModeAppend() {\n    when(bigQueryClient.tableExists(any())).thenReturn(true);\n    when(bigQueryClient.getTable(any())).thenReturn(destinationTable);\n    when(bigQueryClient.createTablePathForBigQueryStorage(any())).thenReturn(\"\");\n    BigQueryDirectDataSourceWriterContext ctx =\n        createBigQueryDirectDataSourceWriterContext(SaveMode.Append);\n    ctx.abort(null);\n    verify(bigQueryClient, times(0)).deleteTable(any());\n  }\n\n  @Test\n  public void testDeleteOnAbort_saveModeErrorIfExists() {\n    when(bigQueryClient.tableExists(any())).thenReturn(true);\n    when(bigQueryClient.getTable(any())).thenReturn(destinationTable);\n    assertThrows(\n        IllegalArgumentException.class,\n        () -> {\n          BigQueryDirectDataSourceWriterContext ctx =\n              createBigQueryDirectDataSourceWriterContext(SaveMode.ErrorIfExists);\n        });\n  }\n\n  @Test\n  public void testDeleteOnAbort_saveModeIgnore() {\n    when(bigQueryClient.tableExists(any())).thenReturn(true);\n    when(bigQueryClient.getTable(any())).thenReturn(destinationTable);\n    when(bigQueryClient.createTablePathForBigQueryStorage(any())).thenReturn(\"\");\n    BigQueryDirectDataSourceWriterContext ctx =\n        createBigQueryDirectDataSourceWriterContext(SaveMode.Ignore);\n    ctx.abort(null);\n    verify(bigQueryClient, times(0)).deleteTable(any());\n  }\n\n  @Test\n  public void testDeleteOnAbort_saveModeOverwrite() {\n    when(bigQueryClient.tableExists(any())).thenReturn(true);\n    when(bigQueryClient.getTable(any())).thenReturn(destinationTable);\n    when(bigQueryClient.createTempTable(any(), any())).thenReturn(tempTable);\n    when(bigQueryClient.createTablePathForBigQueryStorage(any())).thenReturn(\"\");\n    BigQueryDirectDataSourceWriterContext ctx =\n        createBigQueryDirectDataSourceWriterContext(SaveMode.Overwrite);\n    ctx.abort(null);\n    verify(bigQueryClient, times(1)).deleteTable(any());\n  }\n\n  @Test\n  public void testDeleteOnAbort_newTable() {\n    when(bigQueryClient.tableExists(destinationTableId)).thenReturn(false);\n    when(bigQueryClient.createTable(any(), any(), any())).thenReturn(destinationTable);\n    when(bigQueryClient.createTablePathForBigQueryStorage(any())).thenReturn(\"\");\n    BigQueryDirectDataSourceWriterContext ctx =\n        createBigQueryDirectDataSourceWriterContext(SaveMode.Append);\n    ctx.abort(null);\n    verify(bigQueryClient, times(1)).deleteTable(any());\n  }\n\n  private BigQueryDirectDataSourceWriterContext createBigQueryDirectDataSourceWriterContext(\n      SaveMode saveMode) {\n    return new BigQueryDirectDataSourceWriterContext(\n        bigQueryClient,\n        bigQueryClientFactory,\n        destinationTableId,\n        writeUUID,\n        saveMode,\n        sparkSchema,\n        bigqueryDataWriterHelperRetrySettings,\n        Optional.absent(),\n        true,\n        ImmutableMap.<String, String>builder().build(),\n        SchemaConvertersConfiguration.createDefault(),\n        java.util.Optional.empty(),\n        false,\n        PartitionOverwriteMode.STATIC,\n        java.util.Optional.empty(),\n        null);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/test/java/org/apache/spark/sql/Scala213SparkSqlUtilsTest.java",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.apache.spark.sql;\n\nimport static com.google.common.truth.Truth.assertThat;\n\nimport org.apache.spark.sql.catalyst.InternalRow;\nimport org.apache.spark.sql.catalyst.expressions.GenericRow;\nimport org.apache.spark.unsafe.types.UTF8String;\nimport org.junit.Test;\n\npublic class Scala213SparkSqlUtilsTest {\n\n  @Test\n  public void testRowToInternalRow() throws Exception {\n    SparkSqlUtils ssu = SparkSqlUtils.getInstance();\n    assertThat(ssu).isInstanceOf(Scala213SparkSqlUtils.class);\n    Row row = new GenericRow(new Object[] {UTF8String.fromString(\"a\"), 1});\n    InternalRow internalRow = ssu.rowToInternalRow(row);\n    assertThat(internalRow.numFields()).isEqualTo(2);\n    assertThat(internalRow.getString(0).toString()).isEqualTo(\"a\");\n    assertThat(internalRow.getInt(1)).isEqualTo(1);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/test/resources/META-INF/services/com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdown",
    "content": "com.google.cloud.spark.bigquery.MockSparkBigQueryPushdown\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/test/resources/ToIteratorTest/file1.txt",
    "content": "hello world\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/test/resources/ToIteratorTest/file2.csv",
    "content": "hello,world\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/test/resources/acceptance/big_numeric.py",
    "content": "import sys\nfrom pyspark.sql import SparkSession\n\nspark = SparkSession.builder.appName('BigNumeric acceptance test').getOrCreate()\ntable = sys.argv[1]\n\ndf = spark.read.format(\"bigquery\").load(table)\n\nmin = \"-0.34992332820282019728792003956564819968\"\nmax = \"0.34992332820282019728792003956564819967\"\n\ndata = df.select(\"min\", \"max\").collect()\n\nfor row in data:\n  bigNumMin = row['min']\n  bigNumMax = row['max']\n  print(str(bigNumMin) == min)\n  print(str(bigNumMax) == max)\n\ndf.coalesce(1).write.csv(sys.argv[2])\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/test/resources/acceptance/read_shakespeare.py",
    "content": "#!/usr/bin/env python\n# Copyright 2018 Google Inc. All Rights Reserved.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n#       http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport sys\nfrom pyspark.sql import SparkSession\n\nspark = SparkSession.builder.appName('Shakespeare on Spark').getOrCreate()\n\ntable = 'bigquery-public-data.samples.shakespeare'\ndf = spark.read.format('bigquery').load(table)\n# Only these columns will be read\ndf = df.select('word', 'word_count')\n# The filters that are allowed will be automatically pushed down.\n# Those that are not will be computed client side\ndf = df.where(\"word_count > 0 AND word='spark'\")\n# Further processing is done inside Spark\ndf = df.groupBy('word').sum('word_count')\n\nprint('The resulting schema is')\ndf.printSchema()\n\nprint('Spark mentions in Shakespeare')\ndf.show()\n\ndf.coalesce(1).write.csv(sys.argv[1])"
  },
  {
    "path": "spark-bigquery-connector-common/src/test/resources/acceptance/write_stream.py",
    "content": "import sys\nfrom pyspark.sql import SparkSession\nfrom pyspark.sql.types import StructType\n\nspark = SparkSession.builder.appName('Write Stream Test').getOrCreate()\n\njson_location = sys.argv[1]\ndataset_name = sys.argv[2]\ntable_name = sys.argv[3]\ntemporary_gcs_bucket = sys.argv[4]\n\nschema = StructType().add(\"col1\", \"integer\").add(\"col2\", \"string\")\n\n# creating read stream from json(s)\nstreamingDF = spark.readStream.option(\"multiline\",\"true\").schema(schema).json(json_location)\n\n# writing to bigquery via write stream\nstream_writer = streamingDF.writeStream.format(\"bigquery\") \\\n    .option(\"checkpointLocation\", \"/tmp/\" + table_name + \"/\") \\\n    .outputMode(\"append\") \\\n    .option(\"table\", dataset_name + \".\" + table_name) \\\n    .option(\"temporaryGcsBucket\", temporary_gcs_bucket) \\\n    .start()\n\n# waiting for 60 seconds for the write to finish\nstream_writer.awaitTermination(60)\nstream_writer.stop()\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/test/resources/acceptance/write_stream_data.json",
    "content": "[{\n  \"col1\": 1,\n  \"col2\" : \"col2_1\"\n},\n{\n  \"col1\": 2,\n  \"col2\" : \"col2_2\"\n}]"
  },
  {
    "path": "spark-bigquery-connector-common/src/test/resources/alltypes.avroschema.json",
    "content": "{\"type\":\"record\",\"name\":\"__root__\",\"fields\":[{\"name\":\"int_req\",\"type\":\"long\"},{\"name\":\"int_null\",\"type\":[\"null\",\"long\"]},{\"name\":\"bl\",\"type\":[\"null\",\"boolean\"]},{\"name\":\"str\",\"type\":[\"null\",\"string\"]},{\"name\":\"day\",\"type\":[\"null\",{\"type\":\"int\",\"logicalType\":\"date\"}]},{\"name\":\"ts\",\"type\":[\"null\",{\"type\":\"long\",\"logicalType\":\"timestamp-micros\"}]},{\"name\":\"dt\",\"type\":[\"null\",{\"type\":\"string\",\"logicalType\":\"datetime\"}]},{\"name\":\"tm\",\"type\":[\"null\",{\"type\":\"long\",\"logicalType\":\"time-micros\"}]},{\"name\":\"binary\",\"type\":[\"null\",\"bytes\"]},{\"name\":\"float\",\"type\":[\"null\",\"double\"]},{\"name\":\"nums\",\"type\":[\"null\",{\"type\":\"record\",\"name\":\"__s_0\",\"fields\":[{\"name\":\"min\",\"type\":[\"null\",{\"type\":\"bytes\",\"logicalType\":\"decimal\",\"precision\":38,\"scale\":9}]},{\"name\":\"max\",\"type\":[\"null\",{\"type\":\"bytes\",\"logicalType\":\"decimal\",\"precision\":38,\"scale\":9}]},{\"name\":\"pi\",\"type\":[\"null\",{\"type\":\"bytes\",\"logicalType\":\"decimal\",\"precision\":38,\"scale\":9}]},{\"name\":\"big_pi\",\"type\":[\"null\",{\"type\":\"bytes\",\"logicalType\":\"decimal\",\"precision\":38,\"scale\":9}]}]}]},{\"name\":\"int_arr\",\"type\":{\"type\":\"array\",\"items\":\"long\"}},{\"name\":\"int_struct_arr\",\"type\":{\"type\":\"array\",\"items\":{\"type\":\"record\",\"name\":\"__s_1\",\"fields\":[{\"name\":\"i\",\"type\":[\"null\",\"long\"]}]}}}]}"
  },
  {
    "path": "spark-bigquery-connector-common/src/test/resources/integration/shakespeare.csv",
    "content": "profession,1,hamlet,1600\naugury,1,hamlet,1600\nundertakings,1,hamlet,1600\nsurmise,1,hamlet,1600\nreligion,1,hamlet,1600\nadvanced,1,hamlet,1600\nWormwood,1,hamlet,1600\nparchment,1,hamlet,1600\nvillany,1,hamlet,1600\ndigs,1,hamlet,1600\nauthorities,1,hamlet,1600\nPopp'd,1,hamlet,1600\nretrograde,1,hamlet,1600\ntax'd,1,hamlet,1600\ntomb,1,hamlet,1600\nmoral,1,hamlet,1600\nforeknowing,1,hamlet,1600\ndreadfully,1,hamlet,1600\nparted,1,hamlet,1600\nwillow,1,hamlet,1600\nname's,1,hamlet,1600\nrelief,1,hamlet,1600\ntransform,1,hamlet,1600\nBrutus,1,hamlet,1600\nswords,1,hamlet,1600\ngrew,1,hamlet,1600\npansies,1,hamlet,1600\ngrey,1,hamlet,1600\nmeed,1,hamlet,1600\nYouth,1,hamlet,1600\nbonny,1,hamlet,1600\n'Laertes,1,hamlet,1600\ninvisible,1,hamlet,1600\ninventors',1,hamlet,1600\nfruits,1,hamlet,1600\ndigested,1,hamlet,1600\nsmiles,1,hamlet,1600\nYours,1,hamlet,1600\nLonger,1,hamlet,1600\nmasterly,1,hamlet,1600\npestilence,1,hamlet,1600\nzone,1,hamlet,1600\ncalumnious,1,hamlet,1600\neasing,1,hamlet,1600\ndrop,1,hamlet,1600\nexception,1,hamlet,1600\nobservers,1,hamlet,1600\ninfected,1,hamlet,1600\nJohn,1,hamlet,1600\nImperious,1,hamlet,1600\nyeoman's,1,hamlet,1600\nwhiff,1,hamlet,1600\nafar,1,hamlet,1600\ndarest,1,hamlet,1600\nreputation,1,hamlet,1600\nUnpeg,1,hamlet,1600\nmightiest,1,hamlet,1600\nyielding,1,hamlet,1600\nHear,1,hamlet,1600\nchurlish,1,hamlet,1600\nPity,1,hamlet,1600\namble,1,hamlet,1600\nheir,1,hamlet,1600\n'ild,1,hamlet,1600\nFrenchman,1,hamlet,1600\nraw,1,hamlet,1600\nwish'd,1,hamlet,1600\nwatchman,1,hamlet,1600\no'erstep,1,hamlet,1600\nspectators,1,hamlet,1600\ndiscord,1,hamlet,1600\ncommutual,1,hamlet,1600\nleavens,1,hamlet,1600\nStay'd,1,hamlet,1600\nstately,1,hamlet,1600\ninstructs,1,hamlet,1600\n'should',1,hamlet,1600\nwoman's,1,hamlet,1600\nNew,1,hamlet,1600\nshadows,1,hamlet,1600\nperuse,1,hamlet,1600\nconfront,1,hamlet,1600\nAeneas',1,hamlet,1600\nconvoy,1,hamlet,1600\nflush,1,hamlet,1600\nadvantage,1,hamlet,1600\nhonours,1,hamlet,1600\nfemale,1,hamlet,1600\nbrows,1,hamlet,1600\nlawful,1,hamlet,1600\nwhensoever,1,hamlet,1600\nnipping,1,hamlet,1600\npeculiar,1,hamlet,1600\nhasty,1,hamlet,1600\ncannons,1,hamlet,1600\npaddling,1,hamlet,1600\nBestial,1,hamlet,1600\nglimpses,1,hamlet,1600\ndagger,1,hamlet,1600\nrock,1,hamlet,1600\nVulcan's,1,hamlet,1600\nConvert,1,hamlet,1600\nreplication,1,hamlet,1600\nMessengers,1,hamlet,1600\ncapability,1,hamlet,1600\nCharity,1,hamlet,1600\nfardels,1,hamlet,1600\nsterling,1,hamlet,1600\nfoolery,1,hamlet,1600\ntanned,1,hamlet,1600\nelement,1,hamlet,1600\nrot,1,hamlet,1600\nanoint,1,hamlet,1600\nobstinate,1,hamlet,1600\npreparation,1,hamlet,1600\nrascal,1,hamlet,1600\nbonds,1,hamlet,1600\nrobe,1,hamlet,1600\nrow,1,hamlet,1600\nscent,1,hamlet,1600\nhems,1,hamlet,1600\ncarters,1,hamlet,1600\npatches,1,hamlet,1600\ntanner,1,hamlet,1600\nmend,1,hamlet,1600\nheart's,1,hamlet,1600\nsteals,1,hamlet,1600\n'Adam,1,hamlet,1600\nWilt,1,hamlet,1600\ndotes,1,hamlet,1600\nungalled,1,hamlet,1600\nBear,1,hamlet,1600\nmandate,1,hamlet,1600\ntrivial,1,hamlet,1600\nchopine,1,hamlet,1600\nproclaim'd,1,hamlet,1600\neasily,1,hamlet,1600\nwhips,1,hamlet,1600\nspace,1,hamlet,1600\nbrands,1,hamlet,1600\nsimples,1,hamlet,1600\nActs,1,hamlet,1600\nboys,1,hamlet,1600\nspeedy,1,hamlet,1600\nSubscribed,1,hamlet,1600\ntruepenny,1,hamlet,1600\nRunning,1,hamlet,1600\nreserved,1,hamlet,1600\ndire,1,hamlet,1600\nharrow,1,hamlet,1600\nblastments,1,hamlet,1600\nmoiety,1,hamlet,1600\ndespised,1,hamlet,1600\nwarning,1,hamlet,1600\ndish,1,hamlet,1600\nemulate,1,hamlet,1600\nmess,1,hamlet,1600\nCock,1,hamlet,1600\neight,1,hamlet,1600\nseason'd,1,hamlet,1600\nincorporal,1,hamlet,1600\nwhine,1,hamlet,1600\ndrowns,1,hamlet,1600\nexcrements,1,hamlet,1600\nthorns,1,hamlet,1600\npardon't,1,hamlet,1600\nyounger,1,hamlet,1600\nwrap,1,hamlet,1600\nindict,1,hamlet,1600\ncontract,1,hamlet,1600\neasier,1,hamlet,1600\nthorny,1,hamlet,1600\nSeason,1,hamlet,1600\nfinger,1,hamlet,1600\nadjoin'd,1,hamlet,1600\naptly,1,hamlet,1600\ngroan,1,hamlet,1600\nbounteous,1,hamlet,1600\nherb,1,hamlet,1600\ncursing,1,hamlet,1600\ntheatre,1,hamlet,1600\nvain,1,hamlet,1600\nspake,1,hamlet,1600\nwharf,1,hamlet,1600\nPassing,1,hamlet,1600\neruption,1,hamlet,1600\ngreeted,1,hamlet,1600\nYorick,1,hamlet,1600\npurer,1,hamlet,1600\nBlack,1,hamlet,1600\nunwholesome,1,hamlet,1600\ndisease,1,hamlet,1600\nsighs,1,hamlet,1600\nskirts,1,hamlet,1600\ntoil,1,hamlet,1600\nutterance,1,hamlet,1600\nhent,1,hamlet,1600\nbrood,1,hamlet,1600\nwhipped,1,hamlet,1600\nunmatch'd,1,hamlet,1600\nlooked,1,hamlet,1600\nCries,1,hamlet,1600\nrid,1,hamlet,1600\nfought,1,hamlet,1600\nnaked,1,hamlet,1600\nunwrung,1,hamlet,1600\namber,1,hamlet,1600\nExceedingly,1,hamlet,1600\nslander,1,hamlet,1600\nsugar,1,hamlet,1600\nblanks,1,hamlet,1600\nvillanies,1,hamlet,1600\ndeclines,1,hamlet,1600\nlick,1,hamlet,1600\nmelodious,1,hamlet,1600\nexactly,1,hamlet,1600\nShards,1,hamlet,1600\nmatch'd,1,hamlet,1600\nconcernancy,1,hamlet,1600\nO'erbears,1,hamlet,1600\nTaint,1,hamlet,1600\nworms,1,hamlet,1600\nadmirable,1,hamlet,1600\nprey,1,hamlet,1600\nunfellowed,1,hamlet,1600\npocky,1,hamlet,1600\nblunted,1,hamlet,1600\nfust,1,hamlet,1600\ninclining,1,hamlet,1600\nreformed,1,hamlet,1600\nadvise,1,hamlet,1600\nrun,1,hamlet,1600\nlewdness,1,hamlet,1600\nsicklied,1,hamlet,1600\noffal,1,hamlet,1600\npick,1,hamlet,1600\nheedful,1,hamlet,1600\nlids,1,hamlet,1600\ncontrary,1,hamlet,1600\nfretful,1,hamlet,1600\nworks,1,hamlet,1600\nlief,1,hamlet,1600\nWhom,1,hamlet,1600\ndesign'd,1,hamlet,1600\nNiobe,1,hamlet,1600\nFix'd,1,hamlet,1600\nscruple,1,hamlet,1600\nStew'd,1,hamlet,1600\nneighbour'd,1,hamlet,1600\ntyrannous,1,hamlet,1600\nswear't,1,hamlet,1600\nthicker,1,hamlet,1600\nunwilling,1,hamlet,1600\nPERSONAE,1,hamlet,1600\nVidelicet,1,hamlet,1600\ncarp,1,hamlet,1600\nchurchyard,1,hamlet,1600\nunforced,1,hamlet,1600\nBlasting,1,hamlet,1600\nmoist,1,hamlet,1600\nmarshal,1,hamlet,1600\nmute,1,hamlet,1600\nunpolluted,1,hamlet,1600\ncart,1,hamlet,1600\nspark,1,hamlet,1600\nsanity,1,hamlet,1600\ncouched,1,hamlet,1600\nvailed,1,hamlet,1600\nshovel,1,hamlet,1600\nloathsome,1,hamlet,1600\ncase,1,hamlet,1600\nCalmly,1,hamlet,1600\ncongruing,1,hamlet,1600\nPretty,1,hamlet,1600\nthumb,1,hamlet,1600\nutter'd,1,hamlet,1600\nsoftly,1,hamlet,1600\nsong,1,hamlet,1600\nargues,1,hamlet,1600\nworser,1,hamlet,1600\nliar,1,hamlet,1600\nPrompted,1,hamlet,1600\nmistook,1,hamlet,1600\npleasing,1,hamlet,1600\npickers,1,hamlet,1600\naery,1,hamlet,1600\nbreach,1,hamlet,1600\nperformance,1,hamlet,1600\nvast,1,hamlet,1600\nstoops,1,hamlet,1600\naccidental,1,hamlet,1600\nsuccessive,1,hamlet,1600\nsanctified,1,hamlet,1600\nstirring,1,hamlet,1600\nbeneath,1,hamlet,1600\nlaw's,1,hamlet,1600\ncondolement,1,hamlet,1600\ndelivered,1,hamlet,1600\nfriending,1,hamlet,1600\ncounter,1,hamlet,1600\ntorrent,1,hamlet,1600\nsoon,1,hamlet,1600\npractises,1,hamlet,1600\nseven,1,hamlet,1600\nsons,1,hamlet,1600\ngiant,1,hamlet,1600\nlacks,1,hamlet,1600\nsterile,1,hamlet,1600\namazed,1,hamlet,1600\nbrothel,1,hamlet,1600\nfeels,1,hamlet,1600\nfeather,1,hamlet,1600\ninmost,1,hamlet,1600\nstock,1,hamlet,1600\nguards,1,hamlet,1600\nreform,1,hamlet,1600\nsadly,1,hamlet,1600\nspies,1,hamlet,1600\nditchers,1,hamlet,1600\nwhirlwind,1,hamlet,1600\nsole,1,hamlet,1600\nfavourite,1,hamlet,1600\nsold,1,hamlet,1600\nconfusion,1,hamlet,1600\nwrung,1,hamlet,1600\nusurp'st,1,hamlet,1600\nbefall'n,1,hamlet,1600\ncombination,1,hamlet,1600\nbearing,1,hamlet,1600\ntraduced,1,hamlet,1600\nbuffets,1,hamlet,1600\nCarve,1,hamlet,1600\nstream,1,hamlet,1600\nbackward,1,hamlet,1600\nsanctuarize,1,hamlet,1600\nconstantly,1,hamlet,1600\nhighness,1,hamlet,1600\nsorrows,1,hamlet,1600\nmaintains,1,hamlet,1600\npile,1,hamlet,1600\ncuffs,1,hamlet,1600\nprosperously,1,hamlet,1600\nsilver'd,1,hamlet,1600\nEcstasy,1,hamlet,1600\nstrutted,1,hamlet,1600\nresolve,1,hamlet,1600\ncorner,1,hamlet,1600\ndram,1,hamlet,1600\nquintessence,1,hamlet,1600\nPOLONIUS',1,hamlet,1600\nDangerous,1,hamlet,1600\nConfederate,1,hamlet,1600\nbroken,1,hamlet,1600\nCudgel,1,hamlet,1600\nclimatures,1,hamlet,1600\nprettiness,1,hamlet,1600\nConsent,1,hamlet,1600\nthou'rt,1,hamlet,1600\ndrab,1,hamlet,1600\nafterwards,1,hamlet,1600\novercome,1,hamlet,1600\nMuch,1,hamlet,1600\ngaffs,1,hamlet,1600\nhabits,1,hamlet,1600\nawry,1,hamlet,1600\nForward,1,hamlet,1600\nfunction,1,hamlet,1600\nrevels,1,hamlet,1600\ncombated,1,hamlet,1600\nbudge,1,hamlet,1600\ndejected,1,hamlet,1600\nrosemary,1,hamlet,1600\nupshot,1,hamlet,1600\nnecessaries,1,hamlet,1600\nnasty,1,hamlet,1600\nreechy,1,hamlet,1600\npursy,1,hamlet,1600\nexclaim,1,hamlet,1600\nspurns,1,hamlet,1600\npolicy,1,hamlet,1600\ntown,1,hamlet,1600\nberattle,1,hamlet,1600\nshadow's,1,hamlet,1600\nknaves,1,hamlet,1600\nsoil,1,hamlet,1600\nGrappling,1,hamlet,1600\nbodykins,1,hamlet,1600\nartless,1,hamlet,1600\npaper,1,hamlet,1600\nremiss,1,hamlet,1600\neclipse,1,hamlet,1600\ncollateral,1,hamlet,1600\nfinding,1,hamlet,1600\nEyes,1,hamlet,1600\nsixteen,1,hamlet,1600\nCain's,1,hamlet,1600\ndeject,1,hamlet,1600\nlikeness,1,hamlet,1600\nshrewdly,1,hamlet,1600\naffectation,1,hamlet,1600\nstalks,1,hamlet,1600\nMethinks,1,hamlet,1600\nricher,1,hamlet,1600\ninventorially,1,hamlet,1600\nscreen'd,1,hamlet,1600\ndeprive,1,hamlet,1600\ntoys,1,hamlet,1600\ntarget,1,hamlet,1600\nAssume,1,hamlet,1600\nbated,1,hamlet,1600\nmourn'd,1,hamlet,1600\ncalamity,1,hamlet,1600\nlesser,1,hamlet,1600\narithmetic,1,hamlet,1600\nThoughts,1,hamlet,1600\ningenious,1,hamlet,1600\nasked,1,hamlet,1600\nmoving,1,hamlet,1600\ndiscovers,1,hamlet,1600\nunshaken,1,hamlet,1600\nbatten,1,hamlet,1600\ndemonstrated,1,hamlet,1600\ncompanies,1,hamlet,1600\nunholy,1,hamlet,1600\nriotous,1,hamlet,1600\nsingeth,1,hamlet,1600\ncarnal,1,hamlet,1600\n'As'es,1,hamlet,1600\nimpress,1,hamlet,1600\nsoaks,1,hamlet,1600\nPerchance,1,hamlet,1600\ndiscovery,1,hamlet,1600\ndeserve,1,hamlet,1600\nshe's,1,hamlet,1600\nocean,1,hamlet,1600\noutface,1,hamlet,1600\nbetoken,1,hamlet,1600\nOPHELIA's,1,hamlet,1600\nweaker,1,hamlet,1600\nhereafter,1,hamlet,1600\nflashes,1,hamlet,1600\nRevisit'st,1,hamlet,1600\nacted,1,hamlet,1600\nWinner,1,hamlet,1600\nriband,1,hamlet,1600\nI'd,1,hamlet,1600\nswaddling,1,hamlet,1600\nspheres,1,hamlet,1600\nwhatsoever,1,hamlet,1600\nafflict,1,hamlet,1600\nunpregnant,1,hamlet,1600\nperdy,1,hamlet,1600\nresolutes,1,hamlet,1600\nOft,1,hamlet,1600\nspeeches,1,hamlet,1600\nmincing,1,hamlet,1600\nconceive,1,hamlet,1600\nconception,1,hamlet,1600\nPhoebus',1,hamlet,1600\nAddicted,1,hamlet,1600\nsplenitive,1,hamlet,1600\nvial,1,hamlet,1600\npajock,1,hamlet,1600\nclowns,1,hamlet,1600\nHappily,1,hamlet,1600\nVienna,1,hamlet,1600\nkey,1,hamlet,1600\ntenants,1,hamlet,1600\nthink'st,1,hamlet,1600\ngerman,1,hamlet,1600\nconjunctive,1,hamlet,1600\nLifts,1,hamlet,1600\nbastard,1,hamlet,1600\ncontaining,1,hamlet,1600\nstrewments,1,hamlet,1600\n'A,1,hamlet,1600\nportentous,1,hamlet,1600\nwall,1,hamlet,1600\nsaying,1,hamlet,1600\nvirtuous,1,hamlet,1600\nshrill,1,hamlet,1600\nBuys,1,hamlet,1600\nwhipping,1,hamlet,1600\nseals,1,hamlet,1600\nwake,1,hamlet,1600\ntraveller,1,hamlet,1600\nchronicles,1,hamlet,1600\nsociety,1,hamlet,1600\ntouches,1,hamlet,1600\ntithe,1,hamlet,1600\naudit,1,hamlet,1600\nchiefest,1,hamlet,1600\nunsure,1,hamlet,1600\nGis,1,hamlet,1600\nwedding,1,hamlet,1600\npeevish,1,hamlet,1600\nscorn,1,hamlet,1600\nsnatches,1,hamlet,1600\nabused,1,hamlet,1600\nlivest,1,hamlet,1600\nstealing,1,hamlet,1600\nbirds,1,hamlet,1600\nconvenience,1,hamlet,1600\nBear't,1,hamlet,1600\nbuyer,1,hamlet,1600\npasseth,1,hamlet,1600\nthunders,1,hamlet,1600\nbranches,1,hamlet,1600\nsatyr,1,hamlet,1600\npigeon,1,hamlet,1600\nlesson,1,hamlet,1600\nindiscretion,1,hamlet,1600\nhearsed,1,hamlet,1600\nHimself,1,hamlet,1600\nwindy,1,hamlet,1600\nPelion,1,hamlet,1600\nsummons,1,hamlet,1600\nsteps,1,hamlet,1600\nuneffectual,1,hamlet,1600\nwassail,1,hamlet,1600\nPole,1,hamlet,1600\nbringing,1,hamlet,1600\nerring,1,hamlet,1600\nrecords,1,hamlet,1600\n'a,1,hamlet,1600\nraised,1,hamlet,1600\npictures,1,hamlet,1600\nmantle,1,hamlet,1600\nknotted,1,hamlet,1600\nqualifies,1,hamlet,1600\nfollowed,1,hamlet,1600\n'O,1,hamlet,1600\nwhere's,1,hamlet,1600\ncompelled,1,hamlet,1600\nusual,1,hamlet,1600\nlarger,1,hamlet,1600\nstern,1,hamlet,1600\nwince,1,hamlet,1600\nadmittance,1,hamlet,1600\n's,1,hamlet,1600\nforthwith,1,hamlet,1600\nimitated,1,hamlet,1600\nHeavens,1,hamlet,1600\nchap,1,hamlet,1600\ndeeply,1,hamlet,1600\nstudy,1,hamlet,1600\nbeloved,1,hamlet,1600\npitiful,1,hamlet,1600\nDevoutly,1,hamlet,1600\nhatch'd,1,hamlet,1600\ngroans,1,hamlet,1600\nLucianus,1,hamlet,1600\nItself,1,hamlet,1600\nbarefoot,1,hamlet,1600\n'take,1,hamlet,1600\ndrains,1,hamlet,1600\ninhibition,1,hamlet,1600\nrelative,1,hamlet,1600\npuppets,1,hamlet,1600\ndally,1,hamlet,1600\noffends,1,hamlet,1600\ndebatement,1,hamlet,1600\ndearth,1,hamlet,1600\nthin,1,hamlet,1600\nplay'd,1,hamlet,1600\nrede,1,hamlet,1600\nmining,1,hamlet,1600\nnill,1,hamlet,1600\nGHOST,1,hamlet,1600\ntimber'd,1,hamlet,1600\nsere,1,hamlet,1600\nbellow,1,hamlet,1600\nsuffered,1,hamlet,1600\nSweets,1,hamlet,1600\nsuck'd,1,hamlet,1600\nsinners,1,hamlet,1600\nstuck,1,hamlet,1600\nabstract,1,hamlet,1600\nloosed,1,hamlet,1600\ndeclining,1,hamlet,1600\nthieves,1,hamlet,1600\nloneliness,1,hamlet,1600\ncoach,1,hamlet,1600\nworst,1,hamlet,1600\nmellow,1,hamlet,1600\nrear,1,hamlet,1600\npester,1,hamlet,1600\nFolded,1,hamlet,1600\nProvincial,1,hamlet,1600\nResembles,1,hamlet,1600\nhugger,1,hamlet,1600\ngrunt,1,hamlet,1600\nskins,1,hamlet,1600\ncompound,1,hamlet,1600\npasses,1,hamlet,1600\nRankly,1,hamlet,1600\nshipwrights,1,hamlet,1600\ntormenting,1,hamlet,1600\npoints,1,hamlet,1600\nhappen,1,hamlet,1600\nfawning,1,hamlet,1600\nmonster,1,hamlet,1600\nwinks,1,hamlet,1600\nroots,1,hamlet,1600\nturf,1,hamlet,1600\nafraid,1,hamlet,1600\nNormandy,1,hamlet,1600\nguarded,1,hamlet,1600\nancle,1,hamlet,1600\nOfficers,1,hamlet,1600\nDeliberate,1,hamlet,1600\ncalumny,1,hamlet,1600\nTush,1,hamlet,1600\nworlds,1,hamlet,1600\ndifferences,1,hamlet,1600\nseduce,1,hamlet,1600\nrepentance,1,hamlet,1600\ndocument,1,hamlet,1600\nWhereof,1,hamlet,1600\npoisoning,1,hamlet,1600\nproceeded,1,hamlet,1600\nannexment,1,hamlet,1600\naccepts,1,hamlet,1600\n'Lord,1,hamlet,1600\nTurk,1,hamlet,1600\ndunks,1,hamlet,1600\npoured,1,hamlet,1600\ncircumvent,1,hamlet,1600\ndraughts,1,hamlet,1600\nreconcilement,1,hamlet,1600\ncombined,1,hamlet,1600\nencounter'd,1,hamlet,1600\nsledded,1,hamlet,1600\nmixture,1,hamlet,1600\nquake,1,hamlet,1600\nConjures,1,hamlet,1600\nquestionable,1,hamlet,1600\nunnerved,1,hamlet,1600\nenvious,1,hamlet,1600\n'seems,1,hamlet,1600\neldest,1,hamlet,1600\nbehoves,1,hamlet,1600\nstung,1,hamlet,1600\ninstance,1,hamlet,1600\ntennis,1,hamlet,1600\nshowers,1,hamlet,1600\nassociates,1,hamlet,1600\nincorpsed,1,hamlet,1600\nbout,1,hamlet,1600\nworthy,1,hamlet,1600\npearl,1,hamlet,1600\nliegemen,1,hamlet,1600\nsaw't,1,hamlet,1600\nmaimed,1,hamlet,1600\nunkennel,1,hamlet,1600\nsty,1,hamlet,1600\nprinces,1,hamlet,1600\ndidest,1,hamlet,1600\nWhilst,1,hamlet,1600\nKing's,1,hamlet,1600\nmouthed,1,hamlet,1600\nmodel,1,hamlet,1600\nhumble,1,hamlet,1600\ntush,1,hamlet,1600\nspeechless,1,hamlet,1600\noverthrown,1,hamlet,1600\nstubbornness,1,hamlet,1600\nparagon,1,hamlet,1600\ncrier,1,hamlet,1600\nDanskers,1,hamlet,1600\nelder,1,hamlet,1600\nSeeming,1,hamlet,1600\ncomplete,1,hamlet,1600\ndroppings,1,hamlet,1600\nclutch,1,hamlet,1600\nfearful,1,hamlet,1600\nbride,1,hamlet,1600\nominous,1,hamlet,1600\nfeel,1,hamlet,1600\nbowl,1,hamlet,1600\nthing's,1,hamlet,1600\npunish,1,hamlet,1600\n'scapes,1,hamlet,1600\nrecovery,1,hamlet,1600\nnoblest,1,hamlet,1600\noffendendo,1,hamlet,1600\nbeaten,1,hamlet,1600\ncleave,1,hamlet,1600\nbeggars',1,hamlet,1600\nclaim,1,hamlet,1600\nswore,1,hamlet,1600\nblind,1,hamlet,1600\nimpetuous,1,hamlet,1600\ndevotion's,1,hamlet,1600\ncomrade,1,hamlet,1600\ngibes,1,hamlet,1600\nsuffering,1,hamlet,1600\nancient,1,hamlet,1600\ncrowner's,1,hamlet,1600\n'Now,1,hamlet,1600\nWhereto,1,hamlet,1600\nOld,1,hamlet,1600\npassion's,1,hamlet,1600\nprotestation,1,hamlet,1600\nspeaking,1,hamlet,1600\nwine,1,hamlet,1600\nGrating,1,hamlet,1600\nwing,1,hamlet,1600\nlion's,1,hamlet,1600\nwishes,1,hamlet,1600\nunbated,1,hamlet,1600\nBestow,1,hamlet,1600\nconveniently,1,hamlet,1600\ntax,1,hamlet,1600\nbourn,1,hamlet,1600\ncuckold,1,hamlet,1600\ntragedians,1,hamlet,1600\nsoever,1,hamlet,1600\ndistempered,1,hamlet,1600\nmonarchs,1,hamlet,1600\nrend,1,hamlet,1600\nsphere,1,hamlet,1600\nStop,1,hamlet,1600\nnight's,1,hamlet,1600\nusurp,1,hamlet,1600\nagreeing,1,hamlet,1600\nheaves,1,hamlet,1600\ndamnable,1,hamlet,1600\nAdvancing,1,hamlet,1600\nsteal,1,hamlet,1600\nobsequious,1,hamlet,1600\nstrew'd,1,hamlet,1600\ncellarage,1,hamlet,1600\nastonish,1,hamlet,1600\naccess,1,hamlet,1600\nFriend,1,hamlet,1600\nbouts,1,hamlet,1600\n'For,1,hamlet,1600\ngaged,1,hamlet,1600\ngoose,1,hamlet,1600\nruin,1,hamlet,1600\nponiards,1,hamlet,1600\nCousin,1,hamlet,1600\no'ertop,1,hamlet,1600\ncerements,1,hamlet,1600\nNymph,1,hamlet,1600\ncroaking,1,hamlet,1600\nimportuned,1,hamlet,1600\nseest,1,hamlet,1600\nturned,1,hamlet,1600\nscuffling,1,hamlet,1600\ndirectly,1,hamlet,1600\nCyclops',1,hamlet,1600\nthrown,1,hamlet,1600\naccuse,1,hamlet,1600\nportal,1,hamlet,1600\nsavageness,1,hamlet,1600\nmuddied,1,hamlet,1600\nUnhand,1,hamlet,1600\npierce,1,hamlet,1600\nambassador,1,hamlet,1600\nwindow,1,hamlet,1600\nhorrors,1,hamlet,1600\nhatch,1,hamlet,1600\nrebellion,1,hamlet,1600\nparching,1,hamlet,1600\nspringes,1,hamlet,1600\nungracious,1,hamlet,1600\nloins,1,hamlet,1600\nwart,1,hamlet,1600\npretty,1,hamlet,1600\nbaked,1,hamlet,1600\ncrescent,1,hamlet,1600\nfalconers,1,hamlet,1600\nbarefaced,1,hamlet,1600\nLying,1,hamlet,1600\ndoubts,1,hamlet,1600\nbone,1,hamlet,1600\nrule,1,hamlet,1600\nBurn,1,hamlet,1600\ndistress,1,hamlet,1600\nconveyance,1,hamlet,1600\noffice,1,hamlet,1600\ndealt,1,hamlet,1600\ncannoneer,1,hamlet,1600\nstirr'd,1,hamlet,1600\ncircumstances,1,hamlet,1600\nsteep,1,hamlet,1600\nrevel,1,hamlet,1600\nfortified,1,hamlet,1600\nLadies,1,hamlet,1600\nobserve,1,hamlet,1600\ninfallibly,1,hamlet,1600\nmarrow,1,hamlet,1600\nTermagant,1,hamlet,1600\nparty,1,hamlet,1600\npraises,1,hamlet,1600\nWhips,1,hamlet,1600\ntent,1,hamlet,1600\nsalary,1,hamlet,1600\nobjects,1,hamlet,1600\nhealthful,1,hamlet,1600\ncautel,1,hamlet,1600\nbewept,1,hamlet,1600\nproject,1,hamlet,1600\naspect,1,hamlet,1600\ncunnings,1,hamlet,1600\nenlarged,1,hamlet,1600\nknowledge,1,hamlet,1600\nFaith,1,hamlet,1600\nDeprived,1,hamlet,1600\nromage,1,hamlet,1600\npastors,1,hamlet,1600\naim'd,1,hamlet,1600\nrhapsody,1,hamlet,1600\nlife's,1,hamlet,1600\nmerriment,1,hamlet,1600\nmarriages,1,hamlet,1600\nI',1,hamlet,1600\ndefine,1,hamlet,1600\nDiscomfort,1,hamlet,1600\n'But,1,hamlet,1600\nDamon,1,hamlet,1600\no'ertook,1,hamlet,1600\nstatutes,1,hamlet,1600\nunkind,1,hamlet,1600\nTaken,1,hamlet,1600\nbuzzers,1,hamlet,1600\ncommended,1,hamlet,1600\nsteward,1,hamlet,1600\nprecisely,1,hamlet,1600\nhap,1,hamlet,1600\ndrinking,1,hamlet,1600\nPriam's,1,hamlet,1600\nbaker's,1,hamlet,1600\nrusty,1,hamlet,1600\nunyoke,1,hamlet,1600\ntrippingly,1,hamlet,1600\nsnuff,1,hamlet,1600\nWhile,1,hamlet,1600\ncrack,1,hamlet,1600\nsift,1,hamlet,1600\nprecurse,1,hamlet,1600\nBelike,1,hamlet,1600\nutter,1,hamlet,1600\nhorseback,1,hamlet,1600\noffend,1,hamlet,1600\ndistinguish,1,hamlet,1600\nStabs,1,hamlet,1600\nreligious,1,hamlet,1600\nforesaid,1,hamlet,1600\nresemble,1,hamlet,1600\ninvulnerable,1,hamlet,1600\npulse,1,hamlet,1600\nPossess,1,hamlet,1600\nmutine,1,hamlet,1600\npat,1,hamlet,1600\ncontroversy,1,hamlet,1600\naltogether,1,hamlet,1600\nshowing,1,hamlet,1600\npacking,1,hamlet,1600\nstubborn,1,hamlet,1600\n'Anon,1,hamlet,1600\nrecognizances,1,hamlet,1600\npah,1,hamlet,1600\ndepend,1,hamlet,1600\nWalks,1,hamlet,1600\nLooks,1,hamlet,1600\nchariest,1,hamlet,1600\nbawdry,1,hamlet,1600\ntransformation,1,hamlet,1600\neastward,1,hamlet,1600\nHic,1,hamlet,1600\nforgone,1,hamlet,1600\nbox,1,hamlet,1600\npendent,1,hamlet,1600\nFinger'd,1,hamlet,1600\nloath,1,hamlet,1600\nWhiles,1,hamlet,1600\nStick,1,hamlet,1600\nBecomes,1,hamlet,1600\ndragg'd,1,hamlet,1600\ngovern,1,hamlet,1600\ndeeds,1,hamlet,1600\nsequent,1,hamlet,1600\nTreason,1,hamlet,1600\nvigour,1,hamlet,1600\nThose,1,hamlet,1600\ndistilled,1,hamlet,1600\nwoundless,1,hamlet,1600\nbeggar'd,1,hamlet,1600\nretirement,1,hamlet,1600\nhew,1,hamlet,1600\nassault,1,hamlet,1600\ntrick'd,1,hamlet,1600\nHaving,1,hamlet,1600\nspots,1,hamlet,1600\nban,1,hamlet,1600\nPlay,1,hamlet,1600\nDrink,1,hamlet,1600\nmaids',1,hamlet,1600\nunmanly,1,hamlet,1600\nhopes,1,hamlet,1600\n'Thine,1,hamlet,1600\nBy'r,1,hamlet,1600\nflats,1,hamlet,1600\nNature,1,hamlet,1600\ninclined,1,hamlet,1600\nharlot,1,hamlet,1600\nsiege,1,hamlet,1600\nhoped,1,hamlet,1600\ncockle,1,hamlet,1600\nbat,1,hamlet,1600\nrazed,1,hamlet,1600\nbar,1,hamlet,1600\neale,1,hamlet,1600\ngratis,1,hamlet,1600\ncoted,1,hamlet,1600\neternity,1,hamlet,1600\nladyship,1,hamlet,1600\nmusty,1,hamlet,1600\norbed,1,hamlet,1600\nvanquisher,1,hamlet,1600\nUnmix'd,1,hamlet,1600\ndenies,1,hamlet,1600\nporches,1,hamlet,1600\ngreatly,1,hamlet,1600\nbelike,1,hamlet,1600\nAnswer,1,hamlet,1600\nexceed,1,hamlet,1600\nquaintly,1,hamlet,1600\ndenied,1,hamlet,1600\nbrings,1,hamlet,1600\nfantastic,1,hamlet,1600\ndreaded,1,hamlet,1600\nhouse's,1,hamlet,1600\nHey,1,hamlet,1600\npitied,1,hamlet,1600\ndiligence,1,hamlet,1600\ncompulsatory,1,hamlet,1600\nprops,1,hamlet,1600\nclosely,1,hamlet,1600\nencompassment,1,hamlet,1600\ninnocent,1,hamlet,1600\nthews,1,hamlet,1600\nskyish,1,hamlet,1600\nchanged,1,hamlet,1600\nLetters,1,hamlet,1600\nremainder,1,hamlet,1600\nconjoin'd,1,hamlet,1600\nexact,1,hamlet,1600\nillume,1,hamlet,1600\nExposing,1,hamlet,1600\nply,1,hamlet,1600\nmedicine,1,hamlet,1600\nespecial,1,hamlet,1600\ndelver,1,hamlet,1600\nbotch,1,hamlet,1600\ncarbuncles,1,hamlet,1600\nsovereignty,1,hamlet,1600\nCustom,1,hamlet,1600\nills,1,hamlet,1600\nblest,1,hamlet,1600\nbet,1,hamlet,1600\nowner,1,hamlet,1600\nulcer,1,hamlet,1600\nhusbands,1,hamlet,1600\nsurely,1,hamlet,1600\nbevy,1,hamlet,1600\ndeserved,1,hamlet,1600\ngambols,1,hamlet,1600\nTellus',1,hamlet,1600\nincontinency,1,hamlet,1600\no'erhear,1,hamlet,1600\nconsidered,1,hamlet,1600\npolitician,1,hamlet,1600\nsheeted,1,hamlet,1600\ncontracted,1,hamlet,1600\narrest,1,hamlet,1600\nfatted,1,hamlet,1600\npath,1,hamlet,1600\nthirties,1,hamlet,1600\neast,1,hamlet,1600\ninnovation,1,hamlet,1600\nrevenue,1,hamlet,1600\nconqueror,1,hamlet,1600\ninvestments,1,hamlet,1600\nannual,1,hamlet,1600\napplaud,1,hamlet,1600\n'would',1,hamlet,1600\nmermaid,1,hamlet,1600\nabhorred,1,hamlet,1600\nnave,1,hamlet,1600\nhides,1,hamlet,1600\ncracks,1,hamlet,1600\ntreachery,1,hamlet,1600\nHas,1,hamlet,1600\nlittlest,1,hamlet,1600\nAlmost,1,hamlet,1600\nchanges,1,hamlet,1600\ncovenant,1,hamlet,1600\npox,1,hamlet,1600\nnobility,1,hamlet,1600\nheroes,1,hamlet,1600\nexterior,1,hamlet,1600\nmalefactions,1,hamlet,1600\nstrew,1,hamlet,1600\ncountries,1,hamlet,1600\nVI,1,hamlet,1600\nyourselves,1,hamlet,1600\nDivided,1,hamlet,1600\ntumbled,1,hamlet,1600\nmonstrous,1,hamlet,1600\nRising,1,hamlet,1600\nLights,1,hamlet,1600\nherods,1,hamlet,1600\noutlive,1,hamlet,1600\nheads,1,hamlet,1600\nchurches,1,hamlet,1600\nSeems,1,hamlet,1600\nbecame,1,hamlet,1600\ngroaning,1,hamlet,1600\ntemple,1,hamlet,1600\ncorrupted,1,hamlet,1600\nthereunto,1,hamlet,1600\nnick,1,hamlet,1600\nincest,1,hamlet,1600\nchangeling,1,hamlet,1600\nwringing,1,hamlet,1600\nbung,1,hamlet,1600\nulcerous,1,hamlet,1600\nanchor's,1,hamlet,1600\ndevices,1,hamlet,1600\nRetires,1,hamlet,1600\ncourteous,1,hamlet,1600\nForgive,1,hamlet,1600\ntheft,1,hamlet,1600\nextinct,1,hamlet,1600\nwhore,1,hamlet,1600\nFordo,1,hamlet,1600\nunequal,1,hamlet,1600\nhaunt,1,hamlet,1600\nmoons,1,hamlet,1600\neterne,1,hamlet,1600\ngold,1,hamlet,1600\ncrawling,1,hamlet,1600\nspringe,1,hamlet,1600\ndrunkards,1,hamlet,1600\nweed,1,hamlet,1600\ncoinage,1,hamlet,1600\nsith,1,hamlet,1600\nreckless,1,hamlet,1600\nwriters,1,hamlet,1600\nunworthiest,1,hamlet,1600\nweek,1,hamlet,1600\nbehaved,1,hamlet,1600\nhandsaw,1,hamlet,1600\nbusy,1,hamlet,1600\nmetal,1,hamlet,1600\npreserved,1,hamlet,1600\nabatements,1,hamlet,1600\nincorrect,1,hamlet,1600\ncrash,1,hamlet,1600\nimagine,1,hamlet,1600\nbelief,1,hamlet,1600\nperdition,1,hamlet,1600\nSits,1,hamlet,1600\nwhereat,1,hamlet,1600\nbestowed,1,hamlet,1600\nMutes,1,hamlet,1600\nWriting,1,hamlet,1600\nbut',1,hamlet,1600\nscholar's,1,hamlet,1600\ninfusion,1,hamlet,1600\nwitching,1,hamlet,1600\nburn,1,hamlet,1600\nsorts,1,hamlet,1600\ncrust,1,hamlet,1600\nimmediately,1,hamlet,1600\ncanon,1,hamlet,1600\npresentment,1,hamlet,1600\nbreathing,1,hamlet,1600\nUngarter'd,1,hamlet,1600\nrepulsed,1,hamlet,1600\nharping,1,hamlet,1600\nSense,1,hamlet,1600\npetition,1,hamlet,1600\ndesirous,1,hamlet,1600\nmeats,1,hamlet,1600\n'tween,1,hamlet,1600\nshepherds,1,hamlet,1600\noppressor's,1,hamlet,1600\nyon,1,hamlet,1600\ncouch,1,hamlet,1600\nSirs,1,hamlet,1600\nweal,1,hamlet,1600\nsomewhat,1,hamlet,1600\ndouts,1,hamlet,1600\nparle,1,hamlet,1600\nimperial,1,hamlet,1600\nLife,1,hamlet,1600\npeople,1,hamlet,1600\nValentine,1,hamlet,1600\nbugs,1,hamlet,1600\nsustain,1,hamlet,1600\ninexplicable,1,hamlet,1600\ngum,1,hamlet,1600\nperilous,1,hamlet,1600\nfifty,1,hamlet,1600\ngape,1,hamlet,1600\nSundays,1,hamlet,1600\nmainly,1,hamlet,1600\ndisclose,1,hamlet,1600\nwiseness,1,hamlet,1600\nwaving,1,hamlet,1600\ncaptains,1,hamlet,1600\nsepulchre,1,hamlet,1600\ngore,1,hamlet,1600\nbacked,1,hamlet,1600\nDrawing,1,hamlet,1600\ntickled,1,hamlet,1600\novercame,1,hamlet,1600\nbended,1,hamlet,1600\nsuddenly,1,hamlet,1600\nprating,1,hamlet,1600\nDared,1,hamlet,1600\nantic,1,hamlet,1600\nprobation,1,hamlet,1600\nprick'd,1,hamlet,1600\nbulwark,1,hamlet,1600\nDidst,1,hamlet,1600\nConscience,1,hamlet,1600\neaten,1,hamlet,1600\nStoops,1,hamlet,1600\nartery,1,hamlet,1600\nRapier,1,hamlet,1600\nLAERTES',1,hamlet,1600\nRoughly,1,hamlet,1600\nunweeded,1,hamlet,1600\nHolds,1,hamlet,1600\nroyally,1,hamlet,1600\nconquest,1,hamlet,1600\nconjuration,1,hamlet,1600\nverity,1,hamlet,1600\ncurse,1,hamlet,1600\nbeget,1,hamlet,1600\ndespite,1,hamlet,1600\nnettles,1,hamlet,1600\nscann'd,1,hamlet,1600\nextravagant,1,hamlet,1600\nmystery,1,hamlet,1600\nmoods,1,hamlet,1600\nbuz,1,hamlet,1600\nbuy,1,hamlet,1600\nfathoms,1,hamlet,1600\nhilts,1,hamlet,1600\nbloat,1,hamlet,1600\nvacancy,1,hamlet,1600\nbeer,1,hamlet,1600\ngown,1,hamlet,1600\nMeet,1,hamlet,1600\ndivine,1,hamlet,1600\nsins,1,hamlet,1600\nlonged,1,hamlet,1600\npaint,1,hamlet,1600\ndismantled,1,hamlet,1600\nsavoury,1,hamlet,1600\nbeds,1,hamlet,1600\ninsinuation,1,hamlet,1600\nsister's,1,hamlet,1600\nhourly,1,hamlet,1600\nadheres,1,hamlet,1600\nUnsifted,1,hamlet,1600\nMasters,1,hamlet,1600\nashamed,1,hamlet,1600\nturns,1,hamlet,1600\ngrandsire,1,hamlet,1600\nshrouding,1,hamlet,1600\ncrowner,1,hamlet,1600\norderly,1,hamlet,1600\nimmortal,1,hamlet,1600\nresort,1,hamlet,1600\npin's,1,hamlet,1600\nMadness,1,hamlet,1600\nhurts,1,hamlet,1600\nuniversity,1,hamlet,1600\ncrowns,1,hamlet,1600\nPinch,1,hamlet,1600\nafoot,1,hamlet,1600\ngarb,1,hamlet,1600\ninheritance,1,hamlet,1600\nwarrantise,1,hamlet,1600\n'se,1,hamlet,1600\nrivet,1,hamlet,1600\njointly,1,hamlet,1600\nhoops,1,hamlet,1600\nriver,1,hamlet,1600\nbisson,1,hamlet,1600\ndogs,1,hamlet,1600\nescoted,1,hamlet,1600\nslave's,1,hamlet,1600\nnoted,1,hamlet,1600\nForth,1,hamlet,1600\nstooping,1,hamlet,1600\nstorm,1,hamlet,1600\ntaints,1,hamlet,1600\nraught,1,hamlet,1600\nmallecho,1,hamlet,1600\nflourishes,1,hamlet,1600\ncurls,1,hamlet,1600\ndeparted,1,hamlet,1600\nvirgin,1,hamlet,1600\nprophetic,1,hamlet,1600\ndeer,1,hamlet,1600\nmodesties,1,hamlet,1600\nmood,1,hamlet,1600\ncredent,1,hamlet,1600\nCannot,1,hamlet,1600\nbreast,1,hamlet,1600\nmagic,1,hamlet,1600\nFortune,1,hamlet,1600\naim,1,hamlet,1600\nHolla,1,hamlet,1600\nMethought,1,hamlet,1600\nsolidity,1,hamlet,1600\nretain,1,hamlet,1600\nPurpose,1,hamlet,1600\nbeck,1,hamlet,1600\nEverlasting,1,hamlet,1600\nflagon,1,hamlet,1600\nDevised,1,hamlet,1600\nyea,1,hamlet,1600\ntyrant,1,hamlet,1600\nexercises,1,hamlet,1600\naid,1,hamlet,1600\nclaw'd,1,hamlet,1600\ninstances,1,hamlet,1600\nhypocrites,1,hamlet,1600\nindividable,1,hamlet,1600\nfencing,1,hamlet,1600\nbattery,1,hamlet,1600\nsheen,1,hamlet,1600\ncarrion,1,hamlet,1600\nsheep,1,hamlet,1600\ncracked,1,hamlet,1600\nPart,1,hamlet,1600\npainting,1,hamlet,1600\nsheet,1,hamlet,1600\nmilch,1,hamlet,1600\ndebt,1,hamlet,1600\npromontory,1,hamlet,1600\nwreck,1,hamlet,1600\n'Adieu,1,hamlet,1600\nMaking,1,hamlet,1600\nunfledged,1,hamlet,1600\nmurderous,1,hamlet,1600\npraying,1,hamlet,1600\nbeam,1,hamlet,1600\nlegs,1,hamlet,1600\net,1,hamlet,1600\nnotes,1,hamlet,1600\nhandsome,1,hamlet,1600\nago,1,hamlet,1600\nnapkin,1,hamlet,1600\nUnless,1,hamlet,1600\nharbingers,1,hamlet,1600\nwhereon,1,hamlet,1600\nBeggar,1,hamlet,1600\nplays,1,hamlet,1600\ndeal,1,hamlet,1600\ndepends,1,hamlet,1600\nradiant,1,hamlet,1600\npriest,1,hamlet,1600\nfrock,1,hamlet,1600\n'Fore,1,hamlet,1600\nPays,1,hamlet,1600\nSprinkle,1,hamlet,1600\nslaughters,1,hamlet,1600\nrhymed,1,hamlet,1600\ninterim,1,hamlet,1600\nBesides,1,hamlet,1600\ncontinual,1,hamlet,1600\nmakers,1,hamlet,1600\neloquent,1,hamlet,1600\nstain'd,1,hamlet,1600\nlighted,1,hamlet,1600\nimperfections,1,hamlet,1600\ndeclension,1,hamlet,1600\nwaist,1,hamlet,1600\ntouch'd,1,hamlet,1600\nstockings,1,hamlet,1600\naffrighted,1,hamlet,1600\nlady's,1,hamlet,1600\nHyperion's,1,hamlet,1600\nturn'st,1,hamlet,1600\nwaits,1,hamlet,1600\nattractive,1,hamlet,1600\nclemency,1,hamlet,1600\nRest,1,hamlet,1600\npaintings,1,hamlet,1600\nList,1,hamlet,1600\nby'r,1,hamlet,1600\ntrophy,1,hamlet,1600\nhouses,1,hamlet,1600\nDirectly,1,hamlet,1600\ncrab,1,hamlet,1600\nstages,1,hamlet,1600\nuncharge,1,hamlet,1600\ngentlewoman,1,hamlet,1600\npossess'd,1,hamlet,1600\nyaw,1,hamlet,1600\nreckon,1,hamlet,1600\nquarry,1,hamlet,1600\nslips,1,hamlet,1600\nmazzard,1,hamlet,1600\nsmear'd,1,hamlet,1600\nedified,1,hamlet,1600\nmanner,1,hamlet,1600\nobservant,1,hamlet,1600\ntyrannically,1,hamlet,1600\nnewly,1,hamlet,1600\nbless'd,1,hamlet,1600\nsheepskins,1,hamlet,1600\nPlucks,1,hamlet,1600\nforgotten,1,hamlet,1600\ndoom,1,hamlet,1600\nrealm,1,hamlet,1600\nbutton,1,hamlet,1600\ntinct,1,hamlet,1600\nknow't,1,hamlet,1600\ncliff,1,hamlet,1600\nboard,1,hamlet,1600\nthreaten,1,hamlet,1600\npe,1,hamlet,1600\nNiggard,1,hamlet,1600\nmows,1,hamlet,1600\nrain'd,1,hamlet,1600\noverpeering,1,hamlet,1600\nbites,1,hamlet,1600\ndelay,1,hamlet,1600\nlabourer,1,hamlet,1600\ncomment,1,hamlet,1600\ndemi,1,hamlet,1600\nsmall,1,hamlet,1600\nsleeper's,1,hamlet,1600\ndicers',1,hamlet,1600\nAbsent,1,hamlet,1600\nnecessity,1,hamlet,1600\nPolacks,1,hamlet,1600\naside,1,hamlet,1600\nhalfpenny,1,hamlet,1600\nshipped,1,hamlet,1600\nmote,1,hamlet,1600\ngambol,1,hamlet,1600\nItalian,1,hamlet,1600\nacres,1,hamlet,1600\noutrageous,1,hamlet,1600\nwrinkled,1,hamlet,1600\nwhereof,1,hamlet,1600\nFortune's,1,hamlet,1600\ncollected,1,hamlet,1600\nbeautified,1,hamlet,1600\nconsonancy,1,hamlet,1600\ntether,1,hamlet,1600\naccount,1,hamlet,1600\nauspicious,1,hamlet,1600\nmilky,1,hamlet,1600\nscholar,1,hamlet,1600\nreveal,1,hamlet,1600\nInfects,1,hamlet,1600\ngyved,1,hamlet,1600\nunanel'd,1,hamlet,1600\n'twould,1,hamlet,1600\nenmity,1,hamlet,1600\nBegin,1,hamlet,1600\n'alone,1,hamlet,1600\nlover,1,hamlet,1600\ngyves,1,hamlet,1600\nexpostulate,1,hamlet,1600\nSeneca,1,hamlet,1600\noffences,1,hamlet,1600\nfind'st,1,hamlet,1600\nwarms,1,hamlet,1600\n'man,1,hamlet,1600\nstoup,1,hamlet,1600\noffer'd,1,hamlet,1600\nendure,1,hamlet,1600\nla,1,hamlet,1600\n'gins,1,hamlet,1600\nchallenger,1,hamlet,1600\nabominably,1,hamlet,1600\nsucked,1,hamlet,1600\nloss,1,hamlet,1600\nWouldst,1,hamlet,1600\nmoor,1,hamlet,1600\ncommands,1,hamlet,1600\nHAMLET's,1,hamlet,1600\nmope,1,hamlet,1600\noverlooked,1,hamlet,1600\nspent,1,hamlet,1600\nGrief,1,hamlet,1600\nColleagued,1,hamlet,1600\ncrib,1,hamlet,1600\nafternoon,1,hamlet,1600\nquoted,1,hamlet,1600\nweakest,1,hamlet,1600\ndole,1,hamlet,1600\napparel,1,hamlet,1600\nspend,1,hamlet,1600\nsqueak,1,hamlet,1600\nblue,1,hamlet,1600\nviolet,1,hamlet,1600\ndefy,1,hamlet,1600\nremoved,1,hamlet,1600\nfeats,1,hamlet,1600\nbeauteous,1,hamlet,1600\nsmart,1,hamlet,1600\nadventurous,1,hamlet,1600\nbetime,1,hamlet,1600\nnatured,1,hamlet,1600\n'HAMLET,1,hamlet,1600\nswaggering,1,hamlet,1600\nRashly,1,hamlet,1600\nhaps,1,hamlet,1600\nwestward,1,hamlet,1600\ninoculate,1,hamlet,1600\nhebenon,1,hamlet,1600\nserious,1,hamlet,1600\nknee,1,hamlet,1600\ndulls,1,hamlet,1600\ncomposed,1,hamlet,1600\nplastering,1,hamlet,1600\ngardeners,1,hamlet,1600\njocund,1,hamlet,1600\nuntimely,1,hamlet,1600\nwithered,1,hamlet,1600\nloan,1,hamlet,1600\nnighted,1,hamlet,1600\nacquaint,1,hamlet,1600\nreads,1,hamlet,1600\nnatures,1,hamlet,1600\nload,1,hamlet,1600\nCame,1,hamlet,1600\nevents,1,hamlet,1600\nhardly,1,hamlet,1600\nvalour,1,hamlet,1600\ndesk,1,hamlet,1600\neats,1,hamlet,1600\nhart,1,hamlet,1600\nHaply,1,hamlet,1600\nwinnowed,1,hamlet,1600\nhavoc,1,hamlet,1600\nplot,1,hamlet,1600\nlapsed,1,hamlet,1600\noppression,1,hamlet,1600\nhumourous,1,hamlet,1600\npersonal,1,hamlet,1600\nfierce,1,hamlet,1600\ndenote,1,hamlet,1600\naccounted,1,hamlet,1600\nThought,1,hamlet,1600\nability,1,hamlet,1600\ngrained,1,hamlet,1600\nContagion,1,hamlet,1600\nunmannerly,1,hamlet,1600\nfront,1,hamlet,1600\nambiguous,1,hamlet,1600\nfield,1,hamlet,1600\nfrighted,1,hamlet,1600\nenterprises,1,hamlet,1600\nwards,1,hamlet,1600\nremember'd,1,hamlet,1600\nsoldier's,1,hamlet,1600\nbrokers,1,hamlet,1600\naye,1,hamlet,1600\nsipping,1,hamlet,1600\nfrown'd,1,hamlet,1600\nhue,1,hamlet,1600\nfrost,1,hamlet,1600\nundiscover'd,1,hamlet,1600\ncrow,1,hamlet,1600\nmessenger,1,hamlet,1600\nadders,1,hamlet,1600\nLamond,1,hamlet,1600\nmiching,1,hamlet,1600\nkingly,1,hamlet,1600\nquarter'd,1,hamlet,1600\nverse,1,hamlet,1600\nimpression,1,hamlet,1600\nindued,1,hamlet,1600\nCall,1,hamlet,1600\ndisjoint,1,hamlet,1600\nhelpful,1,hamlet,1600\nweedy,1,hamlet,1600\npall,1,hamlet,1600\njoyfully,1,hamlet,1600\neisel,1,hamlet,1600\nwormwood,1,hamlet,1600\nRead,1,hamlet,1600\nspur,1,hamlet,1600\nsee't,1,hamlet,1600\nHappy,1,hamlet,1600\ncall'd,1,hamlet,1600\ntreads,1,hamlet,1600\ninterpret,1,hamlet,1600\nexpend,1,hamlet,1600\nTrumpets,1,hamlet,1600\nstrings,1,hamlet,1600\nBeware,1,hamlet,1600\nt',1,hamlet,1600\nPluck,1,hamlet,1600\nWorm's,1,hamlet,1600\nreach,1,hamlet,1600\nshut,1,hamlet,1600\nenvenom,1,hamlet,1600\nFull,1,hamlet,1600\ncrants,1,hamlet,1600\nhams,1,hamlet,1600\nforts,1,hamlet,1600\naccurst,1,hamlet,1600\naccord,1,hamlet,1600\npurgation,1,hamlet,1600\nknocking,1,hamlet,1600\nschool,1,hamlet,1600\nremembrances,1,hamlet,1600\nprovided,1,hamlet,1600\nhalt,1,hamlet,1600\nwisdoms,1,hamlet,1600\nmarching,1,hamlet,1600\npotency,1,hamlet,1600\ntest,1,hamlet,1600\nexcuse,1,hamlet,1600\nHum,1,hamlet,1600\nacquaintance,1,hamlet,1600\nponderous,1,hamlet,1600\nsmoothness,1,hamlet,1600\ncommendable,1,hamlet,1600\nmidnight,1,hamlet,1600\ndeaths,1,hamlet,1600\nShe's,1,hamlet,1600\nmettled,1,hamlet,1600\nshelf,1,hamlet,1600\nrashness,1,hamlet,1600\noped,1,hamlet,1600\noccasions,1,hamlet,1600\nweeps,1,hamlet,1600\nCouch,1,hamlet,1600\nslings,1,hamlet,1600\nyawn,1,hamlet,1600\nnightly,1,hamlet,1600\nplum,1,hamlet,1600\nhawk,1,hamlet,1600\npurged,1,hamlet,1600\naslant,1,hamlet,1600\nimpatient,1,hamlet,1600\ncozenage,1,hamlet,1600\nfatness,1,hamlet,1600\nhatchment,1,hamlet,1600\nRepast,1,hamlet,1600\nstraws,1,hamlet,1600\ndominions,1,hamlet,1600\nshent,1,hamlet,1600\nneglect,1,hamlet,1600\npain,1,hamlet,1600\n'Horatio,1,hamlet,1600\nbloodily,1,hamlet,1600\nstranger,1,hamlet,1600\nstricken,1,hamlet,1600\npaid,1,hamlet,1600\nsignet,1,hamlet,1600\nPuts,1,hamlet,1600\nsoe'er,1,hamlet,1600\nTender,1,hamlet,1600\nacquire,1,hamlet,1600\ndelve,1,hamlet,1600\napiece,1,hamlet,1600\nfooted,1,hamlet,1600\norisons,1,hamlet,1600\nsuspiration,1,hamlet,1600\ngoblin,1,hamlet,1600\noutbreak,1,hamlet,1600\ndevise,1,hamlet,1600\nstones,1,hamlet,1600\nhate,1,hamlet,1600\narrests,1,hamlet,1600\ndetermination,1,hamlet,1600\ndipping,1,hamlet,1600\nfear'd,1,hamlet,1600\nsolicitings,1,hamlet,1600\ndismay,1,hamlet,1600\nlaboursome,1,hamlet,1600\nrobustious,1,hamlet,1600\ncombat,1,hamlet,1600\nbespeak,1,hamlet,1600\nwinking,1,hamlet,1600\nshoe,1,hamlet,1600\nsliver,1,hamlet,1600\nnetted,1,hamlet,1600\nlovingly,1,hamlet,1600\nfall'n,1,hamlet,1600\nsandal,1,hamlet,1600\nHymen,1,hamlet,1600\nmoan,1,hamlet,1600\nflatter'd,1,hamlet,1600\nprolongs,1,hamlet,1600\nduke's,1,hamlet,1600\ngaudy,1,hamlet,1600\nchapless,1,hamlet,1600\nprepared,1,hamlet,1600\nHazard,1,hamlet,1600\ncourses,1,hamlet,1600\nyard,1,hamlet,1600\nobject,1,hamlet,1600\nCaps,1,hamlet,1600\npush,1,hamlet,1600\nstowed,1,hamlet,1600\naccidents,1,hamlet,1600\ngirl,1,hamlet,1600\ndews,1,hamlet,1600\nscarcely,1,hamlet,1600\nmonument,1,hamlet,1600\ninurn'd,1,hamlet,1600\no'erhasty,1,hamlet,1600\njuggled,1,hamlet,1600\nbeards,1,hamlet,1600\nmayst,1,hamlet,1600\n'mobled,1,hamlet,1600\nfolk,1,hamlet,1600\nfold,1,hamlet,1600\nconclusions,1,hamlet,1600\nWhite,1,hamlet,1600\nRobin,1,hamlet,1600\nHast,1,hamlet,1600\njester,1,hamlet,1600\nThaw,1,hamlet,1600\nopen'd,1,hamlet,1600\nshatter,1,hamlet,1600\nArm,1,hamlet,1600\nbeggars,1,hamlet,1600\nfurnish,1,hamlet,1600\nknock,1,hamlet,1600\nhavior,1,hamlet,1600\nbattalions,1,hamlet,1600\nboughs,1,hamlet,1600\nunprevailing,1,hamlet,1600\nbought,1,hamlet,1600\nWretched,1,hamlet,1600\npurchases,1,hamlet,1600\ninquire,1,hamlet,1600\nprate,1,hamlet,1600\npreparations,1,hamlet,1600\nAmong,1,hamlet,1600\ncrook,1,hamlet,1600\no'erdoing,1,hamlet,1600\nconvocation,1,hamlet,1600\nsequel,1,hamlet,1600\npartial,1,hamlet,1600\nHark,1,hamlet,1600\nparadox,1,hamlet,1600\nshuffled,1,hamlet,1600\ngrinning,1,hamlet,1600\nsmells,1,hamlet,1600\nSport,1,hamlet,1600\nministers,1,hamlet,1600\nCarrying,1,hamlet,1600\narray,1,hamlet,1600\nUnhousel'd,1,hamlet,1600\ndiction,1,hamlet,1600\nRicher,1,hamlet,1600\ncommingled,1,hamlet,1600\ncommerce,1,hamlet,1600\nporpentine,1,hamlet,1600\nconversation,1,hamlet,1600\ndemanded,1,hamlet,1600\nBaptista,1,hamlet,1600\nrivals,1,hamlet,1600\nStood,1,hamlet,1600\nessentially,1,hamlet,1600\nbeetles,1,hamlet,1600\nArt,1,hamlet,1600\nstrongest,1,hamlet,1600\nhowling,1,hamlet,1600\nhaving,1,hamlet,1600\nliver'd,1,hamlet,1600\njaws,1,hamlet,1600\nsuperfluous,1,hamlet,1600\ncompact,1,hamlet,1600\nheight,1,hamlet,1600\nnobler,1,hamlet,1600\nwitch,1,hamlet,1600\nfay,1,hamlet,1600\nnods,1,hamlet,1600\ncomma,1,hamlet,1600\nyesterday,1,hamlet,1600\nShows,1,hamlet,1600\ncalves,1,hamlet,1600\nlean,1,hamlet,1600\nroof,1,hamlet,1600\nprocession,1,hamlet,1600\nComes,1,hamlet,1600\nrood,1,hamlet,1600\nquickness,1,hamlet,1600\ntediousness,1,hamlet,1600\njustice,1,hamlet,1600\nbehove,1,hamlet,1600\nwhispers,1,hamlet,1600\ndistant,1,hamlet,1600\nthereabout,1,hamlet,1600\npalmy,1,hamlet,1600\ntried,1,hamlet,1600\ntarre,1,hamlet,1600\nperceived,1,hamlet,1600\nCollected,1,hamlet,1600\nbreathes,1,hamlet,1600\ngarments,1,hamlet,1600\nscullion,1,hamlet,1600\nbeteem,1,hamlet,1600\nbubbles,1,hamlet,1600\ngrizzled,1,hamlet,1600\ntrappings,1,hamlet,1600\nmoved,1,hamlet,1600\nfreeze,1,hamlet,1600\nshameful,1,hamlet,1600\nappal,1,hamlet,1600\nconsider'd,1,hamlet,1600\noutlives,1,hamlet,1600\nPours,1,hamlet,1600\nDrabbing,1,hamlet,1600\ndaisy,1,hamlet,1600\nrant,1,hamlet,1600\ncarried,1,hamlet,1600\nKeeps,1,hamlet,1600\nhoney,1,hamlet,1600\nscant,1,hamlet,1600\n'Thus,1,hamlet,1600\nerrors,1,hamlet,1600\npuzzles,1,hamlet,1600\ncarries,1,hamlet,1600\nempty,1,hamlet,1600\nSafely,1,hamlet,1600\ntokens,1,hamlet,1600\nschoolfellows,1,hamlet,1600\nshrunk,1,hamlet,1600\nnations,1,hamlet,1600\ngriefs,1,hamlet,1600\nblackest,1,hamlet,1600\nmischief,1,hamlet,1600\nguiltless,1,hamlet,1600\nbravery,1,hamlet,1600\nlender,1,hamlet,1600\nclamour,1,hamlet,1600\nweighing,1,hamlet,1600\nfaction,1,hamlet,1600\nqueen',1,hamlet,1600\nbuild,1,hamlet,1600\nSwitzers,1,hamlet,1600\ndistance,1,hamlet,1600\nexpress'd,1,hamlet,1600\nfiction,1,hamlet,1600\nprotests,1,hamlet,1600\nbuilt,1,hamlet,1600\nwilfully,1,hamlet,1600\nimponed,1,hamlet,1600\nincapable,1,hamlet,1600\n'Gainst,1,hamlet,1600\nassays,1,hamlet,1600\nrepose,1,hamlet,1600\npressures,1,hamlet,1600\ngarrison'd,1,hamlet,1600\nClaudio,1,hamlet,1600\nprimal,1,hamlet,1600\nElse,1,hamlet,1600\nHalf,1,hamlet,1600\nHecate's,1,hamlet,1600\nproverb,1,hamlet,1600\nlack'd,1,hamlet,1600\n'High,1,hamlet,1600\nrare,1,hamlet,1600\ndefeats,1,hamlet,1600\nobscure,1,hamlet,1600\nhire,1,hamlet,1600\nfaculties,1,hamlet,1600\npray'st,1,hamlet,1600\nbeats,1,hamlet,1600\nrestore,1,hamlet,1600\nlocks,1,hamlet,1600\npated,1,hamlet,1600\ngently,1,hamlet,1600\nacting,1,hamlet,1600\nposset,1,hamlet,1600\nalleys,1,hamlet,1600\nbodiless,1,hamlet,1600\nlenten,1,hamlet,1600\nknew'st,1,hamlet,1600\nshaking,1,hamlet,1600\npaddock,1,hamlet,1600\npales,1,hamlet,1600\nexhort,1,hamlet,1600\nconceited,1,hamlet,1600\nSprung,1,hamlet,1600\nFlourish,1,hamlet,1600\nAroused,1,hamlet,1600\nWas't,1,hamlet,1600\ncapons,1,hamlet,1600\nindifferently,1,hamlet,1600\n'Thou,1,hamlet,1600\nvapours,1,hamlet,1600\nducat,1,hamlet,1600\ngivers,1,hamlet,1600\nconveyances,1,hamlet,1600\nperusal,1,hamlet,1600\ntemperance,1,hamlet,1600\ndaily,1,hamlet,1600\nluxury,1,hamlet,1600\nomen,1,hamlet,1600\nremedy,1,hamlet,1600\nbrazen,1,hamlet,1600\nbears,1,hamlet,1600\nclothe,1,hamlet,1600\nglean,1,hamlet,1600\nPursued,1,hamlet,1600\nwildness,1,hamlet,1600\ncompanions,1,hamlet,1600\nhasten,1,hamlet,1600\n'Naked,1,hamlet,1600\nSleeps,1,hamlet,1600\n'As,1,hamlet,1600\nChristians,1,hamlet,1600\nobserved,1,hamlet,1600\n'beautified',1,hamlet,1600\nnonce,1,hamlet,1600\nsirrah,1,hamlet,1600\nextant,1,hamlet,1600\nmeditation,1,hamlet,1600\nhies,1,hamlet,1600\nLove,1,hamlet,1600\nmugger,1,hamlet,1600\nMars's,1,hamlet,1600\nGroped,1,hamlet,1600\nwandering,1,hamlet,1600\nchase,1,hamlet,1600\nlingers,1,hamlet,1600\nunimproved,1,hamlet,1600\nunlimited,1,hamlet,1600\nlikelihood,1,hamlet,1600\nLethe,1,hamlet,1600\nStriking,1,hamlet,1600\nThick,1,hamlet,1600\nSpurns,1,hamlet,1600\nSit,1,hamlet,1600\nlearning,1,hamlet,1600\nadmit,1,hamlet,1600\ncharm,1,hamlet,1600\nnarrow,1,hamlet,1600\ntristful,1,hamlet,1600\nunrighteous,1,hamlet,1600\naffections,1,hamlet,1600\ntowering,1,hamlet,1600\nsticks,1,hamlet,1600\nnut,1,hamlet,1600\nstays,1,hamlet,1600\nHigh,1,hamlet,1600\nquickly,1,hamlet,1600\nprogress,1,hamlet,1600\nBreathing,1,hamlet,1600\nfairy,1,hamlet,1600\nperform,1,hamlet,1600\nplurisy,1,hamlet,1600\ncoronation,1,hamlet,1600\nSoil,1,hamlet,1600\nloses,1,hamlet,1600\nloser,1,hamlet,1600\ncounsellor,1,hamlet,1600\nMonday,1,hamlet,1600\nsprings,1,hamlet,1600\nblurs,1,hamlet,1600\nevermore,1,hamlet,1600\ndares,1,hamlet,1600\nforest,1,hamlet,1600\nplaces,1,hamlet,1600\ndefective,1,hamlet,1600\nfang'd,1,hamlet,1600\ncrammed,1,hamlet,1600\nkindless,1,hamlet,1600\ncall't,1,hamlet,1600\nseveral,1,hamlet,1600\navouch,1,hamlet,1600\nfamous,1,hamlet,1600\ncloak,1,hamlet,1600\nsullies,1,hamlet,1600\nThyself,1,hamlet,1600\nHide,1,hamlet,1600\ntutor,1,hamlet,1600\ndirty,1,hamlet,1600\nhectic,1,hamlet,1600\nrecount,1,hamlet,1600\nLost,1,hamlet,1600\nengineer,1,hamlet,1600\nmourn,1,hamlet,1600\ninky,1,hamlet,1600\nappointment,1,hamlet,1600\nseasons,1,hamlet,1600\npetard,1,hamlet,1600\ncommune,1,hamlet,1600\ndevice,1,hamlet,1600\nerr,1,hamlet,1600\nembracing,1,hamlet,1600\nairy,1,hamlet,1600\nstrife,1,hamlet,1600\ngoblins,1,hamlet,1600\nairs,1,hamlet,1600\nlodge,1,hamlet,1600\n'He,1,hamlet,1600\nreigns,1,hamlet,1600\nlikewise,1,hamlet,1600\nrevolution,1,hamlet,1600\nkissed,1,hamlet,1600\nFree,1,hamlet,1600\nScattering,1,hamlet,1600\nfilial,1,hamlet,1600\nDelay,1,hamlet,1600\nmilk,1,hamlet,1600\nfoul'd,1,hamlet,1600\narrived,1,hamlet,1600\nexchange,1,hamlet,1600\ndeck'd,1,hamlet,1600\n'If,1,hamlet,1600\nespials,1,hamlet,1600\nflints,1,hamlet,1600\n'In,1,hamlet,1600\nnon,1,hamlet,1600\nsolid,1,hamlet,1600\nblench,1,hamlet,1600\nsatisfaction,1,hamlet,1600\nprize,1,hamlet,1600\n'It,1,hamlet,1600\nshreds,1,hamlet,1600\ndirge,1,hamlet,1600\nrange,1,hamlet,1600\npostscript,1,hamlet,1600\npanders,1,hamlet,1600\ntempest,1,hamlet,1600\ncommencement,1,hamlet,1600\nblanket,1,hamlet,1600\ncasual,1,hamlet,1600\ngroundlings,1,hamlet,1600\nbeauties,1,hamlet,1600\nobservation,1,hamlet,1600\nrests,1,hamlet,1600\nCostly,1,hamlet,1600\nreally,1,hamlet,1600\ndowry,1,hamlet,1600\nbeautied,1,hamlet,1600\nassay'd,1,hamlet,1600\nFrancisco,1,hamlet,1600\njangled,1,hamlet,1600\narraign,1,hamlet,1600\nlowest,1,hamlet,1600\ncaviare,1,hamlet,1600\ndecline,1,hamlet,1600\negg,1,hamlet,1600\nFather,1,hamlet,1600\nskin,1,hamlet,1600\nImpart,1,hamlet,1600\nvillanous,1,hamlet,1600\nvarnish,1,hamlet,1600\nunsmirched,1,hamlet,1600\nson's,1,hamlet,1600\nsoles,1,hamlet,1600\nmart,1,hamlet,1600\n'And,1,hamlet,1600\nHoist,1,hamlet,1600\nbrass'd,1,hamlet,1600\n'Doubt,1,hamlet,1600\nWeigh,1,hamlet,1600\nattribute,1,hamlet,1600\nfellies,1,hamlet,1600\ncoronet,1,hamlet,1600\nbefitted,1,hamlet,1600\nbecause,1,hamlet,1600\nwot,1,hamlet,1600\nwoo,1,hamlet,1600\nwon,1,hamlet,1600\ninfants,1,hamlet,1600\nunshaped,1,hamlet,1600\nflatter,1,hamlet,1600\nrevengeful,1,hamlet,1600\nminutes,1,hamlet,1600\ninch,1,hamlet,1600\nvision,1,hamlet,1600\ngates,1,hamlet,1600\naddress,1,hamlet,1600\nlapwing,1,hamlet,1600\ninfect,1,hamlet,1600\ndropping,1,hamlet,1600\nabridgement,1,hamlet,1600\nenviously,1,hamlet,1600\ncandied,1,hamlet,1600\nchide,1,hamlet,1600\ncraven,1,hamlet,1600\nheaven's,1,hamlet,1600\nmiss,1,hamlet,1600\nchough,1,hamlet,1600\ntotal,1,hamlet,1600\nfret,1,hamlet,1600\nbenefit,1,hamlet,1600\nthreatening,1,hamlet,1600\nhigher,1,hamlet,1600\nrequiem,1,hamlet,1600\nOssa,1,hamlet,1600\ndigged,1,hamlet,1600\nhypocrite,1,hamlet,1600\nfeelingly,1,hamlet,1600\nsearch,1,hamlet,1600\ncozen'd,1,hamlet,1600\ncrimeful,1,hamlet,1600\nPrison,1,hamlet,1600\nBuz,1,hamlet,1600\ntrifle,1,hamlet,1600\nborrow'd,1,hamlet,1600\nwantonness,1,hamlet,1600\nmarvel,1,hamlet,1600\ninstrumental,1,hamlet,1600\ngib,1,hamlet,1600\n'imponed,1,hamlet,1600\none's,1,hamlet,1600\nexpectancy,1,hamlet,1600\nmockery,1,hamlet,1600\nstake,1,hamlet,1600\nstairs,1,hamlet,1600\nPerhaps,1,hamlet,1600\nblasted,1,hamlet,1600\nmiraculous,1,hamlet,1600\nQuestion,1,hamlet,1600\nrendezvous,1,hamlet,1600\nfirm,1,hamlet,1600\nconverted,1,hamlet,1600\nwrath,1,hamlet,1600\nHautboys,1,hamlet,1600\npossession,1,hamlet,1600\nsans,1,hamlet,1600\nwoodcock,1,hamlet,1600\nrusset,1,hamlet,1600\nsuiting,1,hamlet,1600\nFeeds,1,hamlet,1600\nlecture,1,hamlet,1600\nlosing,1,hamlet,1600\ncuriously,1,hamlet,1600\nHowe'er,1,hamlet,1600\nmountebank,1,hamlet,1600\ntaste,1,hamlet,1600\ndoctor,1,hamlet,1600\npoll,1,hamlet,1600\nslight,1,hamlet,1600\naffairs,1,hamlet,1600\npole,1,hamlet,1600\nmaids,1,hamlet,1600\nopinion,1,hamlet,1600\nscanter,1,hamlet,1600\nsemblable,1,hamlet,1600\nordinant,1,hamlet,1600\nsale,1,hamlet,1600\nstalk,1,hamlet,1600\ngem,1,hamlet,1600\nflies,1,hamlet,1600\nstale,1,hamlet,1600\npound,1,hamlet,1600\ncarefully,1,hamlet,1600\nunhappily,1,hamlet,1600\nabate,1,hamlet,1600\nretire,1,hamlet,1600\nroars,1,hamlet,1600\npomp,1,hamlet,1600\nsafely,1,hamlet,1600\nturneth,1,hamlet,1600\nboarded,1,hamlet,1600\nConfess,1,hamlet,1600\nArmed,1,hamlet,1600\nWitness,1,hamlet,1600\nenters,1,hamlet,1600\nchanson,1,hamlet,1600\nproposer,1,hamlet,1600\nstatists,1,hamlet,1600\npersons,1,hamlet,1600\ngrave's,1,hamlet,1600\nnewborn,1,hamlet,1600\nHamlets,1,hamlet,1600\nmessage,1,hamlet,1600\nmurder',1,hamlet,1600\nthink't,1,hamlet,1600\nbodkin,1,hamlet,1600\n'not,1,hamlet,1600\no'ergrowth,1,hamlet,1600\nprivy,1,hamlet,1600\nprovoke,1,hamlet,1600\nthoroughly,1,hamlet,1600\noperant,1,hamlet,1600\nstomach,1,hamlet,1600\nflaxen,1,hamlet,1600\n'Twill,1,hamlet,1600\nbands,1,hamlet,1600\ncompulsive,1,hamlet,1600\nconfines,1,hamlet,1600\ncurb,1,hamlet,1600\nimaginations,1,hamlet,1600\nroughly,1,hamlet,1600\nrims,1,hamlet,1600\ncure,1,hamlet,1600\nPerpend,1,hamlet,1600\ncurd,1,hamlet,1600\nperturbed,1,hamlet,1600\nbawdy,1,hamlet,1600\nmartial,1,hamlet,1600\nhearer,1,hamlet,1600\nbread,1,hamlet,1600\nconfined,1,hamlet,1600\nbawds,1,hamlet,1600\nforgetting,1,hamlet,1600\nknife,1,hamlet,1600\nMoreover,1,hamlet,1600\nQueen's,1,hamlet,1600\nhappiness,1,hamlet,1600\ntenable,1,hamlet,1600\nsitting,1,hamlet,1600\nbounded,1,hamlet,1600\nhammers,1,hamlet,1600\npours,1,hamlet,1600\nobeys,1,hamlet,1600\ndifferent,1,hamlet,1600\ncreation,1,hamlet,1600\nhumanity,1,hamlet,1600\nharlot's,1,hamlet,1600\nallegiance,1,hamlet,1600\ninfluence,1,hamlet,1600\nabstinence,1,hamlet,1600\npioner,1,hamlet,1600\ndizzy,1,hamlet,1600\nbestow'd,1,hamlet,1600\ndawning,1,hamlet,1600\nlightness,1,hamlet,1600\nwalks,1,hamlet,1600\nDear,1,hamlet,1600\n'no',1,hamlet,1600\nsaws,1,hamlet,1600\nconjectures,1,hamlet,1600\nSaw,1,hamlet,1600\nobsequies,1,hamlet,1600\nsparrow,1,hamlet,1600\nSure,1,hamlet,1600\ngrosser,1,hamlet,1600\nresidence,1,hamlet,1600\nripe,1,hamlet,1600\nbellowed,1,hamlet,1600\nstanding,1,hamlet,1600\nnegligence,1,hamlet,1600\nvouch,1,hamlet,1600\ncontumely,1,hamlet,1600\ndefeated,1,hamlet,1600\nfulfill'd,1,hamlet,1600\nunmask,1,hamlet,1600\nnomination,1,hamlet,1600\nadulterate,1,hamlet,1600\nSleeping,1,hamlet,1600\nvenom'd,1,hamlet,1600\nidol,1,hamlet,1600\nEngland's,1,hamlet,1600\npatiently,1,hamlet,1600\nrecks,1,hamlet,1600\ncopied,1,hamlet,1600\nburthen,1,hamlet,1600\nglassy,1,hamlet,1600\nDisasters,1,hamlet,1600\nmachine,1,hamlet,1600\nmaid's,1,hamlet,1600\nstealers,1,hamlet,1600\n'We,1,hamlet,1600\nunseal,1,hamlet,1600\ncalled,1,hamlet,1600\nMercury,1,hamlet,1600\nstiff,1,hamlet,1600\nThink,1,hamlet,1600\ntunes,1,hamlet,1600\nblasts,1,hamlet,1600\nsate,1,hamlet,1600\nmoult,1,hamlet,1600\nquarrelling,1,hamlet,1600\nearnest,1,hamlet,1600\narmy,1,hamlet,1600\nspacious,1,hamlet,1600\nstaff,1,hamlet,1600\nprimy,1,hamlet,1600\nmould,1,hamlet,1600\npoet,1,hamlet,1600\nable,1,hamlet,1600\ndriven,1,hamlet,1600\ndrives,1,hamlet,1600\npoem,1,hamlet,1600\nsqueezing,1,hamlet,1600\ncommanded,1,hamlet,1600\n'To,1,hamlet,1600\nimportant,1,hamlet,1600\nhover,1,hamlet,1600\ngrowing,1,hamlet,1600\nunwatch'd,1,hamlet,1600\ncontraction,1,hamlet,1600\nyesty,1,hamlet,1600\nrite,1,hamlet,1600\nlibertine,1,hamlet,1600\nenseamed,1,hamlet,1600\nintend,1,hamlet,1600\ngarland,1,hamlet,1600\ngirdle,1,hamlet,1600\nfellow's,1,hamlet,1600\nopposing,1,hamlet,1600\nwood,1,hamlet,1600\nStarts,1,hamlet,1600\narrow,1,hamlet,1600\nthey'll,1,hamlet,1600\nExtorted,1,hamlet,1600\ndivulging,1,hamlet,1600\nassure,1,hamlet,1600\npride,1,hamlet,1600\nbilboes,1,hamlet,1600\nforward,1,hamlet,1600\njuice,1,hamlet,1600\ngreetings,1,hamlet,1600\nsallets,1,hamlet,1600\nlifted,1,hamlet,1600\nrags,1,hamlet,1600\ndying,1,hamlet,1600\nuncle's,1,hamlet,1600\nEats,1,hamlet,1600\npurples,1,hamlet,1600\nproceeding,1,hamlet,1600\nprick,1,hamlet,1600\nMass,1,hamlet,1600\nowl,1,hamlet,1600\nsplit,1,hamlet,1600\nwomen's,1,hamlet,1600\nmultitude,1,hamlet,1600\nchanted,1,hamlet,1600\nwhirling,1,hamlet,1600\nstithy,1,hamlet,1600\nbells,1,hamlet,1600\nthreats,1,hamlet,1600\nrawer,1,hamlet,1600\nwalk'd,1,hamlet,1600\nbounty,1,hamlet,1600\nThrown,1,hamlet,1600\nOffence's,1,hamlet,1600\nquiddities,1,hamlet,1600\nunsinew'd,1,hamlet,1600\nGiven,1,hamlet,1600\nchamberlain,1,hamlet,1600\nappliance,1,hamlet,1600\nshriving,1,hamlet,1600\ngrossly,1,hamlet,1600\ncataplasm,1,hamlet,1600\nsurprised,1,hamlet,1600\nangle,1,hamlet,1600\nfamiliar,1,hamlet,1600\nrequite,1,hamlet,1600\nmutes,1,hamlet,1600\nhusbandry,1,hamlet,1600\nbaseness,1,hamlet,1600\nbruit,1,hamlet,1600\nbreadth,1,hamlet,1600\nunfortified,1,hamlet,1600\nmettle,1,hamlet,1600\ndreamt,1,hamlet,1600\noblivion,1,hamlet,1600\nBid,1,hamlet,1600\no'erthrown,1,hamlet,1600\nsurrender,1,hamlet,1600\nquicksilver,1,hamlet,1600\nHerod,1,hamlet,1600\nnortherly,1,hamlet,1600\nrages,1,hamlet,1600\nnothing's,1,hamlet,1600\nDoom'd,1,hamlet,1600\ndaintier,1,hamlet,1600\nCraves,1,hamlet,1600\nfallen,1,hamlet,1600\nvalidity,1,hamlet,1600\nhonoured,1,hamlet,1600\ngender,1,hamlet,1600\ntaken,1,hamlet,1600\nconference,1,hamlet,1600\nindirections,1,hamlet,1600\nindex,1,hamlet,1600\nearthly,1,hamlet,1600\nwindlasses,1,hamlet,1600\nHail,1,hamlet,1600\ncertainty,1,hamlet,1600\nTropically,1,hamlet,1600\nteemed,1,hamlet,1600\nspeedier,1,hamlet,1600\nclapped,1,hamlet,1600\nanger,1,hamlet,1600\nweeping,1,hamlet,1600\nvicious,1,hamlet,1600\nforfeit,1,hamlet,1600\nforeign,1,hamlet,1600\nlabour'd,1,hamlet,1600\nsmelling,1,hamlet,1600\nopposite,1,hamlet,1600\nwomb,1,hamlet,1600\ncompass,1,hamlet,1600\nknight,1,hamlet,1600\nsupply,1,hamlet,1600\nimputation,1,hamlet,1600\nhaply,1,hamlet,1600\njowls,1,hamlet,1600\nrain,1,hamlet,1600\nfunctions,1,hamlet,1600\ncups,1,hamlet,1600\nsoldiers',1,hamlet,1600\nwheaten,1,hamlet,1600\nsewing,1,hamlet,1600\nshortens,1,hamlet,1600\napoplex'd,1,hamlet,1600\ntouching,1,hamlet,1600\nunsatisfied,1,hamlet,1600\nembark'd,1,hamlet,1600\noccurrents,1,hamlet,1600\nwooes,1,hamlet,1600\nflash,1,hamlet,1600\nwaste,1,hamlet,1600\nmarble,1,hamlet,1600\nCorpse,1,hamlet,1600\nfox,1,hamlet,1600\nsober,1,hamlet,1600\nope,1,hamlet,1600\nangry,1,hamlet,1600\nvalenced,1,hamlet,1600\nclout,1,hamlet,1600\no'ersways,1,hamlet,1600\nwhence,1,hamlet,1600\nfail,1,hamlet,1600\nheathen,1,hamlet,1600\nmightier,1,hamlet,1600\noutstretched,1,hamlet,1600\ncompare,1,hamlet,1600\nShow,1,hamlet,1600\nshocks,1,hamlet,1600\nminister,1,hamlet,1600\ngarlands,1,hamlet,1600\nclown,1,hamlet,1600\ndispatch'd,1,hamlet,1600\nfretted,1,hamlet,1600\npersever,1,hamlet,1600\nassail,1,hamlet,1600\nStrengthen,1,hamlet,1600\nprofane,1,hamlet,1600\nbrainish,1,hamlet,1600\nardour,1,hamlet,1600\nore,1,hamlet,1600\nperfections,1,hamlet,1600\ndiseases,1,hamlet,1600\nyond,1,hamlet,1600\nTime,1,hamlet,1600\ndiseased,1,hamlet,1600\nocculted,1,hamlet,1600\nreverted,1,hamlet,1600\nmessengers,1,hamlet,1600\nhighly,1,hamlet,1600\nweapons,1,hamlet,1600\nGrapple,1,hamlet,1600\ndoublet,1,hamlet,1600\ndelays,1,hamlet,1600\no'erhanging,1,hamlet,1600\nCornelius,1,hamlet,1600\nquest,1,hamlet,1600\nubique,1,hamlet,1600\nproportions,1,hamlet,1600\norb,1,hamlet,1600\nfoh,1,hamlet,1600\nsin's,1,hamlet,1600\ncloud,1,hamlet,1600\ndistract,1,hamlet,1600\no'errule,1,hamlet,1600\npreaching,1,hamlet,1600\nclearly,1,hamlet,1600\nHadst,1,hamlet,1600\ngrant,1,hamlet,1600\nsuppliance,1,hamlet,1600\nbedded,1,hamlet,1600\nGreeks,1,hamlet,1600\nrack,1,hamlet,1600\no'erweigh,1,hamlet,1600\ngrand,1,hamlet,1600\nAffront,1,hamlet,1600\nkites,1,hamlet,1600\nscorns,1,hamlet,1600\nmines,1,hamlet,1600\nCapitol,1,hamlet,1600\ncelebrated,1,hamlet,1600\nworn,1,hamlet,1600\nletter,1,hamlet,1600\nwit's,1,hamlet,1600\namities,1,hamlet,1600\nequivocation,1,hamlet,1600\nheavily,1,hamlet,1600\ncherub,1,hamlet,1600\nextolment,1,hamlet,1600\ncompany,1,hamlet,1600\nroses,1,hamlet,1600\nUnbated,1,hamlet,1600\nwore,1,hamlet,1600\nforestalled,1,hamlet,1600\nlodged,1,hamlet,1600\nallow,1,hamlet,1600\ncaution,1,hamlet,1600\nreturneth,1,hamlet,1600\nMars,1,hamlet,1600\nrestrain'd,1,hamlet,1600\nendeavour,1,hamlet,1600\nesteem'd,1,hamlet,1600\nminute,1,hamlet,1600\nbrute,1,hamlet,1600\ngalls,1,hamlet,1600\nsolicited,1,hamlet,1600\numbrage,1,hamlet,1600\nperfect,1,hamlet,1600\nlists,1,hamlet,1600\nchalice,1,hamlet,1600\nfilm,1,hamlet,1600\nscratch'd,1,hamlet,1600\nfill,1,hamlet,1600\nmoderate,1,hamlet,1600\nBow,1,hamlet,1600\nhowsoever,1,hamlet,1600\nwann'd,1,hamlet,1600\n'Run,1,hamlet,1600\nclad,1,hamlet,1600\ndalliance,1,hamlet,1600\npunish'd,1,hamlet,1600\nclepe,1,hamlet,1600\nengaged,1,hamlet,1600\nministering,1,hamlet,1600\nbarber's,1,hamlet,1600\nsmote,1,hamlet,1600\ndamnation,1,hamlet,1600\nblister,1,hamlet,1600\nfolly,1,hamlet,1600\nbark,1,hamlet,1600\nrebuke,1,hamlet,1600\nOccasion,1,hamlet,1600\nduties,1,hamlet,1600\nbare,1,hamlet,1600\nTransports,1,hamlet,1600\nventages,1,hamlet,1600\ndefinement,1,hamlet,1600\nanswer'd,1,hamlet,1600\nhost,1,hamlet,1600\n'havior,1,hamlet,1600\nunschool'd,1,hamlet,1600\ndaisies,1,hamlet,1600\nReceives,1,hamlet,1600\nneutral,1,hamlet,1600\nratified,1,hamlet,1600\npocket,1,hamlet,1600\nostentation,1,hamlet,1600\nReceived,1,hamlet,1600\nwealth,1,hamlet,1600\nAppears,1,hamlet,1600\nan't,1,hamlet,1600\nfaculty,1,hamlet,1600\nbesmirch,1,hamlet,1600\nwick,1,hamlet,1600\ndepart,1,hamlet,1600\nperceive,1,hamlet,1600\nBears,1,hamlet,1600\nbeware,1,hamlet,1600\nchiefly,1,hamlet,1600\nwagered,1,hamlet,1600\nscenes,1,hamlet,1600\nemphasis,1,hamlet,1600\nturbulent,1,hamlet,1600\njourneys,1,hamlet,1600\ntraitorous,1,hamlet,1600\nwatch'd,1,hamlet,1600\nopposites,1,hamlet,1600\nscholars,1,hamlet,1600\nbuttons,1,hamlet,1600\ncicatrice,1,hamlet,1600\nmeaning,1,hamlet,1600\ngilded,1,hamlet,1600\nnerve,1,hamlet,1600\nlunacies,1,hamlet,1600\nloggats,1,hamlet,1600\ncomfort,1,hamlet,1600\nbreeder,1,hamlet,1600\nstrikes,1,hamlet,1600\naunt,1,hamlet,1600\npublic,1,hamlet,1600\ncompetent,1,hamlet,1600\nCut,1,hamlet,1600\ndeliver'd,1,hamlet,1600\nobservance,1,hamlet,1600\n'Well,1,hamlet,1600\nunbraced,1,hamlet,1600\nfriendship,1,hamlet,1600\nbank,1,hamlet,1600\ncrowing,1,hamlet,1600\ncontriving,1,hamlet,1600\nhallow'd,1,hamlet,1600\nimpotence,1,hamlet,1600\nVisit,1,hamlet,1600\nTweaks,1,hamlet,1600\nbounds,1,hamlet,1600\ndisclaiming,1,hamlet,1600\nsecrets,1,hamlet,1600\nquillets,1,hamlet,1600\nNoise,1,hamlet,1600\nenactures,1,hamlet,1600\nownself,1,hamlet,1600\nlarge,1,hamlet,1600\nemperor,1,hamlet,1600\nevidence,1,hamlet,1600\nmatin,1,hamlet,1600\nblaze,1,hamlet,1600\ndrinks,1,hamlet,1600\nSaviour's,1,hamlet,1600\nsoul's,1,hamlet,1600\ngallant,1,hamlet,1600\no'erwhelm,1,hamlet,1600\nmildew'd,1,hamlet,1600\ncalendar,1,hamlet,1600\nconstant,1,hamlet,1600\nfalsely,1,hamlet,1600\nfruitful,1,hamlet,1600\nContagious,1,hamlet,1600\nEars,1,hamlet,1600\ncue,1,hamlet,1600\nconvey,1,hamlet,1600\nWorse,1,hamlet,1600\nuphoarded,1,hamlet,1600\nmortised,1,hamlet,1600\nasunder,1,hamlet,1600\nmothers,1,hamlet,1600\nchurchyards,1,hamlet,1600\nimplorators,1,hamlet,1600\nghost's,1,hamlet,1600\nBaked,1,hamlet,1600\nbeshrew,1,hamlet,1600\nshoon,1,hamlet,1600\nshoot,1,hamlet,1600\nLed,1,hamlet,1600\ndallying,1,hamlet,1600\ncreep,1,hamlet,1600\npledge,1,hamlet,1600\nMourners,1,hamlet,1600\nshook,1,hamlet,1600\nmutines,1,hamlet,1600\nbethought,1,hamlet,1600\nlecherous,1,hamlet,1600\npreceding,1,hamlet,1600\nAttends,1,hamlet,1600\ndexterity,1,hamlet,1600\nclear,1,hamlet,1600\nachievements,1,hamlet,1600\nfertile,1,hamlet,1600\nimposthume,1,hamlet,1600\narticles,1,hamlet,1600\ntemper'd,1,hamlet,1600\nfirmament,1,hamlet,1600\ngreet,1,hamlet,1600\nhollow,1,hamlet,1600\nmetals,1,hamlet,1600\nconcluded,1,hamlet,1600\ndishes,1,hamlet,1600\nimplements,1,hamlet,1600\nLives,1,hamlet,1600\ncut,1,hamlet,1600\nMouse,1,hamlet,1600\nNemean,1,hamlet,1600\nsurvivor,1,hamlet,1600\npangs,1,hamlet,1600\ncounterfeit,1,hamlet,1600\nsweaty,1,hamlet,1600\nfires,1,hamlet,1600\ncowards,1,hamlet,1600\nrequest,1,hamlet,1600\nanticipation,1,hamlet,1600\nmurdering,1,hamlet,1600\nwinter,1,hamlet,1600\nrabble,1,hamlet,1600\nflood,1,hamlet,1600\nRepent,1,hamlet,1600\nperiwig,1,hamlet,1600\nWhere's,1,hamlet,1600\n'Who,1,hamlet,1600\nresolution,1,hamlet,1600\nWherefore,1,hamlet,1600\nshove,1,hamlet,1600\nForm,1,hamlet,1600\nAwake,1,hamlet,1600\npotion,1,hamlet,1600\nUnite,1,hamlet,1600\nFall'n,1,hamlet,1600\nconjure,1,hamlet,1600\nactively,1,hamlet,1600\nborrowing,1,hamlet,1600\nfalsehood,1,hamlet,1600\ntask,1,hamlet,1600\nthrall'd,1,hamlet,1600\nblazon,1,hamlet,1600\nrendering,1,hamlet,1600\ngoodman,1,hamlet,1600\nfitted,1,hamlet,1600\nintents,1,hamlet,1600\nLends,1,hamlet,1600\nresponsive,1,hamlet,1600\nInquire,1,hamlet,1600\ncleft,1,hamlet,1600\nalso,1,hamlet,1600\nbawd,1,hamlet,1600\nsatisfied,1,hamlet,1600\nprenominate,1,hamlet,1600\ncountry's,1,hamlet,1600\ngarbage,1,hamlet,1600\nhung,1,hamlet,1600\nhave't,1,hamlet,1600\nhoodman,1,hamlet,1600\nseas,1,hamlet,1600\npronouncing,1,hamlet,1600\nMARGARET,1,hamlet,1600\ncool,1,hamlet,1600\nNero,1,hamlet,1600\nlying,1,hamlet,1600\ncontents,1,hamlet,1600\nbodes,1,hamlet,1600\nsoil'd,1,hamlet,1600\nCalls,1,hamlet,1600\nalways,1,hamlet,1600\nleaping,1,hamlet,1600\nimportunity,1,hamlet,1600\nlot,1,hamlet,1600\npacket,1,hamlet,1600\nlow,1,hamlet,1600\ntrophies,1,hamlet,1600\ncontagion,1,hamlet,1600\nugly,1,hamlet,1600\nacts,1,hamlet,1600\ntoils,1,hamlet,1600\ndrunk,1,hamlet,1600\nbabe,1,hamlet,1600\ndupp'd,1,hamlet,1600\ncaptain,1,hamlet,1600\nwoodcocks,1,hamlet,1600\nconverse,1,hamlet,1600\ncanonized,1,hamlet,1600\nlightest,1,hamlet,1600\nreckoning,1,hamlet,1600\npotently,1,hamlet,1600\noppress'd,1,hamlet,1600\nSeem,1,hamlet,1600\nmassy,1,hamlet,1600\ninsolence,1,hamlet,1600\nsexton's,1,hamlet,1600\nseed,1,hamlet,1600\ndistilment,1,hamlet,1600\nplentiful,1,hamlet,1600\nknowest,1,hamlet,1600\nfeathers,1,hamlet,1600\nintruding,1,hamlet,1600\nfitting,1,hamlet,1600\n'While,1,hamlet,1600\ngestures,1,hamlet,1600\ntrespass,1,hamlet,1600\nfaded,1,hamlet,1600\nended,1,hamlet,1600\nfrontier,1,hamlet,1600\ncourtesy,1,hamlet,1600\nprofanely,1,hamlet,1600\ngreenly,1,hamlet,1600\nsees,1,hamlet,1600\nlug,1,hamlet,1600\ntells,1,hamlet,1600\nselect,1,hamlet,1600\nsteep'd,1,hamlet,1600\nrender,1,hamlet,1600\nplanets,1,hamlet,1600\ncouplets,1,hamlet,1600\nthereof,1,hamlet,1600\nHyrcanian,1,hamlet,1600\nforgeries,1,hamlet,1600\ncourtier's,1,hamlet,1600\nratifiers,1,hamlet,1600\ncorses,1,hamlet,1600\nencumber'd,1,hamlet,1600\nestimation,1,hamlet,1600\nthereon,1,hamlet,1600\nDido,1,hamlet,1600\npirate,1,hamlet,1600\nsacred,1,hamlet,1600\nexploit,1,hamlet,1600\ntopp'd,1,hamlet,1600\nmatron's,1,hamlet,1600\nincrease,1,hamlet,1600\ncore,1,hamlet,1600\nPull'd,1,hamlet,1600\ncongregation,1,hamlet,1600\nHaste,1,hamlet,1600\nblazes,1,hamlet,1600\npour,1,hamlet,1600\nunused,1,hamlet,1600\nKnow,1,hamlet,1600\nThrough,1,hamlet,1600\ntherein,1,hamlet,1600\nThings,1,hamlet,1600\nmillion,1,hamlet,1600\ndrugs,1,hamlet,1600\nslender,1,hamlet,1600\nimpasted,1,hamlet,1600\nhuge,1,hamlet,1600\nbait,1,hamlet,1600\nreplies,1,hamlet,1600\nRoscius,1,hamlet,1600\ncountrymen,1,hamlet,1600\ndislike,1,hamlet,1600\njudicious,1,hamlet,1600\nUse,1,hamlet,1600\n'There,1,hamlet,1600\nself,1,hamlet,1600\nravel,1,hamlet,1600\nfairly,1,hamlet,1600\naccording,1,hamlet,1600\ngibber,1,hamlet,1600\nraven,1,hamlet,1600\nbelieved,1,hamlet,1600\nCry,1,hamlet,1600\nraves,1,hamlet,1600\npenetrable,1,hamlet,1600\nMeantime,1,hamlet,1600\ncases,1,hamlet,1600\nHonour'd,1,hamlet,1600\nposy,1,hamlet,1600\nJudgment,1,hamlet,1600\nNext,1,hamlet,1600\nbleeding,1,hamlet,1600\nundo,1,hamlet,1600\nalas,1,hamlet,1600\ntemperately,1,hamlet,1600\ngrieves,1,hamlet,1600\nbade,1,hamlet,1600\nAdmit,1,hamlet,1600\ngrieved,1,hamlet,1600\nchameleon's,1,hamlet,1600\nIlium,1,hamlet,1600\nsexton,1,hamlet,1600\nloudly,1,hamlet,1600\ngreeting,1,hamlet,1600\ncarriage,1,hamlet,1600\nherald,1,hamlet,1600\nregards,1,hamlet,1600\nplunge,1,hamlet,1600\ntrap,1,hamlet,1600\nseized,1,hamlet,1600\ndisappointed,1,hamlet,1600\nformal,1,hamlet,1600\nbarren,1,hamlet,1600\nfearing,1,hamlet,1600\ntatters,1,hamlet,1600\nflushing,1,hamlet,1600\nmatch,1,hamlet,1600\nPleasant,1,hamlet,1600\nbarrel,1,hamlet,1600\nhighest,1,hamlet,1600\nconvert,1,hamlet,1600\nIsrael,1,hamlet,1600\naright,1,hamlet,1600\nconsummation,1,hamlet,1600\nGonzago's,1,hamlet,1600\nunmaster'd,1,hamlet,1600\npooh,1,hamlet,1600\ncanopy,1,hamlet,1600\nbonnet,1,hamlet,1600\ndiggers,1,hamlet,1600\ncouple,1,hamlet,1600\npurport,1,hamlet,1600\ninvite,1,hamlet,1600\npalpable,1,hamlet,1600\npressure,1,hamlet,1600\ndrooping,1,hamlet,1600\nmaster's,1,hamlet,1600\nsheets,1,hamlet,1600\ndungeons,1,hamlet,1600\ncoil,1,hamlet,1600\nstarted,1,hamlet,1600\nRough,1,hamlet,1600\nborrower,1,hamlet,1600\nSlanders,1,hamlet,1600\npowerfully,1,hamlet,1600\ntriumph,1,hamlet,1600\ndonn'd,1,hamlet,1600\nappurtenance,1,hamlet,1600\nlicence,1,hamlet,1600\nswinish,1,hamlet,1600\nAdam's,1,hamlet,1600\nRightly,1,hamlet,1600\n'Forgive,1,hamlet,1600\npersuade,1,hamlet,1600\nPatrick,1,hamlet,1600\nYorick's,1,hamlet,1600\nlays,1,hamlet,1600\nseated,1,hamlet,1600\npeak,1,hamlet,1600\nwrist,1,hamlet,1600\nwrite,1,hamlet,1600\ndebate,1,hamlet,1600\nspades,1,hamlet,1600\nimpartment,1,hamlet,1600\nchecking,1,hamlet,1600\nconcernings,1,hamlet,1600\nconfound,1,hamlet,1600\nadoption,1,hamlet,1600\ndetecting,1,hamlet,1600\nPropose,1,hamlet,1600\nwearing,1,hamlet,1600\nfiends,1,hamlet,1600\neyases,1,hamlet,1600\nportraiture,1,hamlet,1600\nbarr'd,1,hamlet,1600\nsounded,1,hamlet,1600\nprivates,1,hamlet,1600\nvolume,1,hamlet,1600\npeal,1,hamlet,1600\nunknowing,1,hamlet,1600\nscarf'd,1,hamlet,1600\ndarkest,1,hamlet,1600\nHunts,1,hamlet,1600\nme',1,hamlet,1600\nabroad,1,hamlet,1600\nspite,1,hamlet,1600\ntruncheon's,1,hamlet,1600\nafeard,1,hamlet,1600\nQuoth,1,hamlet,1600\nrheum,1,hamlet,1600\nplausive,1,hamlet,1600\nharrows,1,hamlet,1600\nExamples,1,hamlet,1600\nwring,1,hamlet,1600\nunvalued,1,hamlet,1600\nParis,1,hamlet,1600\ndoing,1,hamlet,1600\ntenures,1,hamlet,1600\nFinding,1,hamlet,1600\nsadness,1,hamlet,1600\nbrooch,1,hamlet,1600\nFrailty,1,hamlet,1600\nimpious,1,hamlet,1600\nmargent,1,hamlet,1600\nmet,1,hamlet,1600\nmew,1,hamlet,1600\nheaded,1,hamlet,1600\nknocked,1,hamlet,1600\nlofty,1,hamlet,1600\ntrip,1,hamlet,1600\nhoneying,1,hamlet,1600\nunskilful,1,hamlet,1600\ndecayer,1,hamlet,1600\ndiameter,1,hamlet,1600\nlink'd,1,hamlet,1600\nreadiness,1,hamlet,1600\ngraveness,1,hamlet,1600\nhardy,1,hamlet,1600\nAccording,1,hamlet,1600\nhinges,1,hamlet,1600\nbeseech'd,1,hamlet,1600\nTreachery,1,hamlet,1600\nmurder'd,1,hamlet,1600\ndye,1,hamlet,1600\nfennel,1,hamlet,1600\nnoyance,1,hamlet,1600\ndetermine,1,hamlet,1600\nSingeing,1,hamlet,1600\nabuse,1,hamlet,1600\ncoagulate,1,hamlet,1600\nburnt,1,hamlet,1600\nwhit,1,hamlet,1600\nanimals,1,hamlet,1600\nforcing,1,hamlet,1600\ncrocodile,1,hamlet,1600\nbattlements,1,hamlet,1600\ntruster,1,hamlet,1600\nindentures,1,hamlet,1600\ncrafty,1,hamlet,1600\neleven,1,hamlet,1600\npernicious,1,hamlet,1600\nTears,1,hamlet,1600\nungored,1,hamlet,1600\nacross,1,hamlet,1600\nspills,1,hamlet,1600\ncrafts,1,hamlet,1600\nShark'd,1,hamlet,1600\nflights,1,hamlet,1600\nreels,1,hamlet,1600\nharmony,1,hamlet,1600\ncarouses,1,hamlet,1600\nstrokes,1,hamlet,1600\npartisan,1,hamlet,1600\nphysic,1,hamlet,1600\nharshly,1,hamlet,1600\nhomage,1,hamlet,1600\nsupposal,1,hamlet,1600\nmourning,1,hamlet,1600\nnephews,1,hamlet,1600\nstruggling,1,hamlet,1600\npursuest,1,hamlet,1600\nSleep,1,hamlet,1600\nvolley,1,hamlet,1600\nafflicts,1,hamlet,1600\ninsert,1,hamlet,1600\ncutpurse,1,hamlet,1600\nentreatments,1,hamlet,1600\ngleaned,1,hamlet,1600\nrespects,1,hamlet,1600\ntetter,1,hamlet,1600\ndirections,1,hamlet,1600\npolitic,1,hamlet,1600\ngulf,1,hamlet,1600\nlash,1,hamlet,1600\ngrounds,1,hamlet,1600\nsynod,1,hamlet,1600\nflaw,1,hamlet,1600\nplucks,1,hamlet,1600\ngules,1,hamlet,1600\nAbuses,1,hamlet,1600\npositively,1,hamlet,1600\nspilt,1,hamlet,1600\nliquid,1,hamlet,1600\npermanent,1,hamlet,1600\nbetter'd,1,hamlet,1600\nlimed,1,hamlet,1600\nlawyer,1,hamlet,1600\nRequite,1,hamlet,1600\nSunday,1,hamlet,1600\nsupervise,1,hamlet,1600\nMillions,1,hamlet,1600\nRepugnant,1,hamlet,1600\nfitness,1,hamlet,1600\nVII,1,hamlet,1600\nleperous,1,hamlet,1600\nthrowing,1,hamlet,1600\nshroud,1,hamlet,1600\nwithdrew,1,hamlet,1600\nmattering,1,hamlet,1600\nLooking,1,hamlet,1600\nmineral,1,hamlet,1600\nextent,1,hamlet,1600\npranks,1,hamlet,1600\nbetimes,1,hamlet,1600\nseverally,1,hamlet,1600\nhush,1,hamlet,1600\ncustomary,1,hamlet,1600\njade,1,hamlet,1600\ngets,1,hamlet,1600\nlazar,1,hamlet,1600\npagan,1,hamlet,1600\nOlympus,1,hamlet,1600\nwhet,1,hamlet,1600\ngrinding,1,hamlet,1600\nlisp,1,hamlet,1600\nlevied,1,hamlet,1600\ntributary,1,hamlet,1600\nbreaking,1,hamlet,1600\nsatirical,1,hamlet,1600\nYaughan,1,hamlet,1600\nappetite,1,hamlet,1600\njointress,1,hamlet,1600\nfelicity,1,hamlet,1600\nfrowningly,1,hamlet,1600\nbias,1,hamlet,1600\ncontend,1,hamlet,1600\nbooks,1,hamlet,1600\ncompell'd,1,hamlet,1600\ncell,1,hamlet,1600\nstiffly,1,hamlet,1600\ncompost,1,hamlet,1600\nstopping,1,hamlet,1600\nheadshake,1,hamlet,1600\nquietus,1,hamlet,1600\npassages,1,hamlet,1600\nimportunate,1,hamlet,1600\ntwentieth,1,hamlet,1600\nforestall,1,hamlet,1600\nchorus,1,hamlet,1600\nrebels,1,hamlet,1600\nsimple,1,hamlet,1600\nHyperion,1,hamlet,1600\nunreclaimed,1,hamlet,1600\nuncurrent,1,hamlet,1600\nmouths,1,hamlet,1600\nforgiveness,1,hamlet,1600\nunsanctified,1,hamlet,1600\nentrance,1,hamlet,1600\nwitness,1,hamlet,1600\nleads,1,hamlet,1600\nunproportioned,1,hamlet,1600\nwidow,1,hamlet,1600\nclouts,1,hamlet,1600\nanswerest,1,hamlet,1600\nswounds,1,hamlet,1600\nrises,1,hamlet,1600\nyesternight,1,hamlet,1600\njudges,1,hamlet,1600\nslay,1,hamlet,1600\nemploy,1,hamlet,1600\nlain,1,hamlet,1600\ncareless,1,hamlet,1600\nexpense,1,hamlet,1600\nfail'd,1,hamlet,1600\nTis,1,hamlet,1600\nglares,1,hamlet,1600\nunprofitable,1,hamlet,1600\nkick,1,hamlet,1600\ninvites,1,hamlet,1600\nattend,1,hamlet,1600\nprovide,1,hamlet,1600\nbray,1,hamlet,1600\ncentre,1,hamlet,1600\npebbles,1,hamlet,1600\njourneymen,1,hamlet,1600\nhappily,1,hamlet,1600\nPlautus,1,hamlet,1600\nExcitements,1,hamlet,1600\nBlasted,1,hamlet,1600\nhoar,1,hamlet,1600\ndragging,1,hamlet,1600\nstudent,1,hamlet,1600\ndark,1,hamlet,1600\nhonour's,1,hamlet,1600\nGracious,1,hamlet,1600\noffender's,1,hamlet,1600\nFalls,1,hamlet,1600\nsulphurous,1,hamlet,1600\nboisterous,1,hamlet,1600\nLest,1,hamlet,1600\ndressy,1,hamlet,1600\nweigh,1,hamlet,1600\nRefrain,1,hamlet,1600\nsounding,1,hamlet,1600\nattent,1,hamlet,1600\nrepel,1,hamlet,1600\ndue,1,hamlet,1600\nscrimers,1,hamlet,1600\ndug,1,hamlet,1600\ncolumbines,1,hamlet,1600\nweight,1,hamlet,1600\nRich,1,hamlet,1600\nwhored,1,hamlet,1600\nlord's,1,hamlet,1600\npelican,1,hamlet,1600\nlank,1,hamlet,1600\n'faith,1,hamlet,1600\nprimrose,1,hamlet,1600\nroasted,1,hamlet,1600\nglobe,1,hamlet,1600\nanother's,1,hamlet,1600\nkibe,1,hamlet,1600\nswallowed,1,hamlet,1600\nillusion,1,hamlet,1600\npoisons,1,hamlet,1600\nblossoms,1,hamlet,1600\nreverend,1,hamlet,1600\ninter,1,hamlet,1600\ncircumscribed,1,hamlet,1600\ninstantly,1,hamlet,1600\nDRAMATIS,1,hamlet,1600\nspendthrift,1,hamlet,1600\nClambering,1,hamlet,1600\nUntil,1,hamlet,1600\nshift,1,hamlet,1600\nsergeant,1,hamlet,1600\naltitude,1,hamlet,1600\nshine,1,hamlet,1600\nThrift,1,hamlet,1600\ntis,1,hamlet,1600\nbehold,1,hamlet,1600\npropose,1,hamlet,1600\nundergo,1,hamlet,1600\nO'ermaster,1,hamlet,1600\ngrapple,1,hamlet,1600\nleans,1,hamlet,1600\nswoopstake,1,hamlet,1600\nAngels,1,hamlet,1600\nduller,1,hamlet,1600\nrareness,1,hamlet,1600\ndamn,1,hamlet,1600\nbark'd,1,hamlet,1600\nwithers,1,hamlet,1600\nexit,1,hamlet,1600\nquietly,1,hamlet,1600\nunripe,1,hamlet,1600\nhe'll,1,hamlet,1600\nentreated,1,hamlet,1600\nbrevity,1,hamlet,1600\ndelated,1,hamlet,1600\nreserve,1,hamlet,1600\nCompounded,1,hamlet,1600\nwills,1,hamlet,1600\ngreatness,1,hamlet,1600\nconceal'd,1,hamlet,1600\nAffection,1,hamlet,1600\ncross,1,hamlet,1600\ncabin,1,hamlet,1600\nsoutherly,1,hamlet,1600\ngorge,1,hamlet,1600\nimpotent,1,hamlet,1600\ninheritor,1,hamlet,1600\nprivate,1,hamlet,1600\nExchange,1,hamlet,1600\ndwelling,1,hamlet,1600\nprofoundest,1,hamlet,1600\n'Choose,1,hamlet,1600\nsmelt,1,hamlet,1600\nAntiquity,1,hamlet,1600\nintil,1,hamlet,1600\nawake,1,hamlet,1600\npronounce,1,hamlet,1600\neyelids,1,hamlet,1600\nhellish,1,hamlet,1600\namaze,1,hamlet,1600\namen,1,hamlet,1600\nTry,1,hamlet,1600\nFall,1,hamlet,1600\nremorse,1,hamlet,1600\nbier,1,hamlet,1600\ntrifling,1,hamlet,1600\ntenantless,1,hamlet,1600\nThereto,1,hamlet,1600\nHonest,1,hamlet,1600\nforbear,1,hamlet,1600\nparley,1,hamlet,1600\nneighbour,1,hamlet,1600\nshirt,1,hamlet,1600\noaths,1,hamlet,1600\ntread,1,hamlet,1600\ngave't,1,hamlet,1600\nmarket,1,hamlet,1600\ncoped,1,hamlet,1600\nunpack,1,hamlet,1600\nfordoes,1,hamlet,1600\nBrief,1,hamlet,1600\nshare,1,hamlet,1600\ndip,1,hamlet,1600\ne'er,1,hamlet,1600\nhold'st,1,hamlet,1600\nHolding,1,hamlet,1600\njelly,1,hamlet,1600\nRetiring,1,hamlet,1600\nsharp,1,hamlet,1600\nvanish'd,1,hamlet,1600\nmonsters,1,hamlet,1600\nRemorseless,1,hamlet,1600\ndumbshows,1,hamlet,1600\nending,1,hamlet,1600\nhedge,1,hamlet,1600\nValentine's,1,hamlet,1600\nbeaver,1,hamlet,1600\nlads,1,hamlet,1600\nConfound,1,hamlet,1600\nforgery,1,hamlet,1600\ndaughters,1,hamlet,1600\nGrows,1,hamlet,1600\nattended,2,hamlet,1600\nevent,2,hamlet,1600\nheed,2,hamlet,1600\nheel,2,hamlet,1600\nregard,2,hamlet,1600\ngalled,2,hamlet,1600\nTouching,2,hamlet,1600\ntroubles,2,hamlet,1600\nforbid,2,hamlet,1600\nNorman,2,hamlet,1600\njoin,2,hamlet,1600\nred,2,hamlet,1600\nextremity,2,hamlet,1600\nsized,2,hamlet,1600\nfathers,2,hamlet,1600\nfor't,2,hamlet,1600\nfor's,2,hamlet,1600\nstation,2,hamlet,1600\njaw,2,hamlet,1600\nweasel,2,hamlet,1600\ntremble,2,hamlet,1600\nweary,2,hamlet,1600\nwears,2,hamlet,1600\nfollowing,2,hamlet,1600\nespecially,2,hamlet,1600\nlament,2,hamlet,1600\npeasant,2,hamlet,1600\nreaches,2,hamlet,1600\nmaggots,2,hamlet,1600\nassured,2,hamlet,1600\ndoubtful,2,hamlet,1600\nroar,2,hamlet,1600\nepitaph,2,hamlet,1600\nwaxes,2,hamlet,1600\njot,2,hamlet,1600\nmelt,2,hamlet,1600\nheld,2,hamlet,1600\nRebellious,2,hamlet,1600\nhelps,2,hamlet,1600\nviolets,2,hamlet,1600\nwhale,2,hamlet,1600\nWoo't,2,hamlet,1600\nsingle,2,hamlet,1600\ndirt,2,hamlet,1600\njoint,2,hamlet,1600\npainted,2,hamlet,1600\nclothes,2,hamlet,1600\nphilosophy,2,hamlet,1600\npardon'd,2,hamlet,1600\nfetters,2,hamlet,1600\ncelestial,2,hamlet,1600\nprisoner,2,hamlet,1600\nHelp,2,hamlet,1600\ndrum,2,hamlet,1600\ncomest,2,hamlet,1600\nbrook,2,hamlet,1600\ninstrument,2,hamlet,1600\nangels,2,hamlet,1600\nsuccession,2,hamlet,1600\nallowance,2,hamlet,1600\nwittingly,2,hamlet,1600\nits,2,hamlet,1600\nhorrid,2,hamlet,1600\nunder,2,hamlet,1600\nthou'lt,2,hamlet,1600\nyonder,2,hamlet,1600\nrue,2,hamlet,1600\nmalicious,2,hamlet,1600\nstrumpet,2,hamlet,1600\nabsolute,2,hamlet,1600\npleasures,2,hamlet,1600\nbuilds,2,hamlet,1600\ntrust,2,hamlet,1600\nremain,2,hamlet,1600\njoys,2,hamlet,1600\nwounded,2,hamlet,1600\nwhoreson,2,hamlet,1600\nproclaim,2,hamlet,1600\ncard,2,hamlet,1600\ndemand,2,hamlet,1600\nrub,2,hamlet,1600\npursue,2,hamlet,1600\nOnce,2,hamlet,1600\nplague,2,hamlet,1600\nOver,2,hamlet,1600\nstrength,2,hamlet,1600\ngraces,2,hamlet,1600\nalarm,2,hamlet,1600\nAfter,2,hamlet,1600\napparition,2,hamlet,1600\ndrive,2,hamlet,1600\nworking,2,hamlet,1600\nYoung,2,hamlet,1600\nmatters,2,hamlet,1600\nsat,2,hamlet,1600\nline,2,hamlet,1600\nJove,2,hamlet,1600\nopposed,2,hamlet,1600\nmind's,2,hamlet,1600\ncontrive,2,hamlet,1600\nwants,2,hamlet,1600\ncheek,2,hamlet,1600\ncalm,2,hamlet,1600\ndemands,2,hamlet,1600\nbreaks,2,hamlet,1600\ncalf,2,hamlet,1600\ndesperation,2,hamlet,1600\nAmbassador,2,hamlet,1600\nglass,2,hamlet,1600\nrites,2,hamlet,1600\nfools,2,hamlet,1600\nPale,2,hamlet,1600\nPoisoner,2,hamlet,1600\nwait,2,hamlet,1600\nkin,2,hamlet,1600\ncoldly,2,hamlet,1600\nview,2,hamlet,1600\nslightly,2,hamlet,1600\nproclaims,2,hamlet,1600\nhistory,2,hamlet,1600\nsin,2,hamlet,1600\nknavish,2,hamlet,1600\neager,2,hamlet,1600\nscourge,2,hamlet,1600\ndisclosed,2,hamlet,1600\nmerry,2,hamlet,1600\nObserve,2,hamlet,1600\ndeceived,2,hamlet,1600\nslaughter,2,hamlet,1600\nshe'll,2,hamlet,1600\nthrone,2,hamlet,1600\nlaying,2,hamlet,1600\nbeasts,2,hamlet,1600\nyield,2,hamlet,1600\nembrace,2,hamlet,1600\nchurch,2,hamlet,1600\nit's,2,hamlet,1600\nmiddle,2,hamlet,1600\nlevel,2,hamlet,1600\nwings,2,hamlet,1600\nsets,2,hamlet,1600\nTo't,2,hamlet,1600\nbecomes,2,hamlet,1600\namiss,2,hamlet,1600\nworse,2,hamlet,1600\nmerit,2,hamlet,1600\nLeaps,2,hamlet,1600\nwrote,2,hamlet,1600\nreceived,2,hamlet,1600\ncourtiers,2,hamlet,1600\nAmbassadors,2,hamlet,1600\nplots,2,hamlet,1600\nruns,2,hamlet,1600\nvariable,2,hamlet,1600\nactions,2,hamlet,1600\nseeks,2,hamlet,1600\ndearly,2,hamlet,1600\nassigns,2,hamlet,1600\nfruit,2,hamlet,1600\nwilling,2,hamlet,1600\nthence,2,hamlet,1600\nsum,2,hamlet,1600\naccent,2,hamlet,1600\ncease,2,hamlet,1600\npromise,2,hamlet,1600\nfeet,2,hamlet,1600\nflaming,2,hamlet,1600\nrelish,2,hamlet,1600\nmasters,2,hamlet,1600\nupon't,2,hamlet,1600\nbaser,2,hamlet,1600\ncamel,2,hamlet,1600\nwhisper,2,hamlet,1600\nrude,2,hamlet,1600\nprevent,2,hamlet,1600\ncomedy,2,hamlet,1600\nsconce,2,hamlet,1600\nMight,2,hamlet,1600\nmirth,2,hamlet,1600\nknees,2,hamlet,1600\nwant,2,hamlet,1600\nwipe,2,hamlet,1600\nknow'st,2,hamlet,1600\nsummit,2,hamlet,1600\ndiet,2,hamlet,1600\nwise,2,hamlet,1600\npuff'd,2,hamlet,1600\nheraldry,2,hamlet,1600\nseem'd,2,hamlet,1600\nworld's,2,hamlet,1600\nsables,2,hamlet,1600\nmerely,2,hamlet,1600\nwars,2,hamlet,1600\nbreeding,2,hamlet,1600\nadvancement,2,hamlet,1600\nwary,2,hamlet,1600\nwash,2,hamlet,1600\ndistrust,2,hamlet,1600\npraised,2,hamlet,1600\nspoke,2,hamlet,1600\ndistraction,2,hamlet,1600\nfoil,2,hamlet,1600\nwherefore,2,hamlet,1600\nscandal,2,hamlet,1600\nside,2,hamlet,1600\nburning,2,hamlet,1600\nmanners,2,hamlet,1600\nTakes,2,hamlet,1600\nmelancholy,2,hamlet,1600\nexercise,2,hamlet,1600\nenact,2,hamlet,1600\nAm,2,hamlet,1600\nquarrel,2,hamlet,1600\n'gentleman,2,hamlet,1600\nscarce,2,hamlet,1600\nblows,2,hamlet,1600\nbow,2,hamlet,1600\neternal,2,hamlet,1600\nknowing,2,hamlet,1600\nlobby,2,hamlet,1600\nhey,2,hamlet,1600\nblown,2,hamlet,1600\nsmile,2,hamlet,1600\nhitherto,2,hamlet,1600\nfates,2,hamlet,1600\nsensible,2,hamlet,1600\nperfume,2,hamlet,1600\nStand,2,hamlet,1600\ntreble,2,hamlet,1600\nkings,2,hamlet,1600\ncruel,2,hamlet,1600\nunless,2,hamlet,1600\ncreature,2,hamlet,1600\ntranslate,2,hamlet,1600\nsings,2,hamlet,1600\nhid,2,hamlet,1600\napprove,2,hamlet,1600\nfines,2,hamlet,1600\ncheerfully,2,hamlet,1600\nstrangely,2,hamlet,1600\ntribute,2,hamlet,1600\nDoubt,2,hamlet,1600\nsport,2,hamlet,1600\nstep,2,hamlet,1600\nUp,2,hamlet,1600\nJulius,2,hamlet,1600\nabsurd,2,hamlet,1600\nThence,2,hamlet,1600\nsirs,2,hamlet,1600\nvaliant,2,hamlet,1600\ndivide,2,hamlet,1600\nbulk,2,hamlet,1600\nstraw,2,hamlet,1600\nwas't,2,hamlet,1600\ncanker,2,hamlet,1600\nenvenom'd,2,hamlet,1600\n'the,2,hamlet,1600\nsooner,2,hamlet,1600\ndove,2,hamlet,1600\ndifference,2,hamlet,1600\nbell,2,hamlet,1600\nPrithee,2,hamlet,1600\ngot,2,hamlet,1600\ncat,2,hamlet,1600\nshuffling,2,hamlet,1600\norchard,2,hamlet,1600\ntables,2,hamlet,1600\nimmediate,2,hamlet,1600\nweak,2,hamlet,1600\nSave,2,hamlet,1600\ncraft,2,hamlet,1600\nbeyond,2,hamlet,1600\nPut,2,hamlet,1600\nhobby,2,hamlet,1600\na',2,hamlet,1600\nserpent,2,hamlet,1600\ncarpenter,2,hamlet,1600\njust,2,hamlet,1600\ntedious,2,hamlet,1600\nswift,2,hamlet,1600\ntravel,2,hamlet,1600\nused,2,hamlet,1600\nranker,2,hamlet,1600\nO'er,2,hamlet,1600\nenterprise,2,hamlet,1600\njump,2,hamlet,1600\npicture,2,hamlet,1600\nvouchers,2,hamlet,1600\nvantage,2,hamlet,1600\nnorth,2,hamlet,1600\nstay'd,2,hamlet,1600\npromised,2,hamlet,1600\nvoyage,2,hamlet,1600\nmole,2,hamlet,1600\nFear,2,hamlet,1600\nservant,2,hamlet,1600\nrepent,2,hamlet,1600\nstops,2,hamlet,1600\nconsider,2,hamlet,1600\nsable,2,hamlet,1600\nsafe,2,hamlet,1600\nyes,2,hamlet,1600\nweigh'd,2,hamlet,1600\nswearing,2,hamlet,1600\nplayer,2,hamlet,1600\nstone,2,hamlet,1600\nunworthy,2,hamlet,1600\ntragedy,2,hamlet,1600\nobligation,2,hamlet,1600\nRevenge,2,hamlet,1600\ncomical,2,hamlet,1600\ngait,2,hamlet,1600\ndignity,2,hamlet,1600\nlikely,2,hamlet,1600\nLast,2,hamlet,1600\nI've,2,hamlet,1600\nplayed,2,hamlet,1600\ngall,2,hamlet,1600\nRhenish,2,hamlet,1600\nforged,2,hamlet,1600\ndefence,2,hamlet,1600\nice,2,hamlet,1600\nHillo,2,hamlet,1600\nah,2,hamlet,1600\nNeptune's,2,hamlet,1600\n'Swounds,2,hamlet,1600\nwonderful,2,hamlet,1600\nfears,2,hamlet,1600\nwisely,2,hamlet,1600\nregion,2,hamlet,1600\ncrew,2,hamlet,1600\nGoes,2,hamlet,1600\nsometime,2,hamlet,1600\ntrail,2,hamlet,1600\nif't,2,hamlet,1600\nhadst,2,hamlet,1600\nsettled,2,hamlet,1600\nplaying,2,hamlet,1600\nwherein,2,hamlet,1600\npotent,2,hamlet,1600\nexpel,2,hamlet,1600\nall's,2,hamlet,1600\ncontinent,2,hamlet,1600\nnecessary,2,hamlet,1600\nlock'd,2,hamlet,1600\nloam,2,hamlet,1600\nBeen,2,hamlet,1600\nkilled,2,hamlet,1600\ngraves,2,hamlet,1600\nreasons,2,hamlet,1600\neasy,2,hamlet,1600\nkills,2,hamlet,1600\nweapon,2,hamlet,1600\nkeen,2,hamlet,1600\nsignify,2,hamlet,1600\nnearer,2,hamlet,1600\nsenseless,2,hamlet,1600\npalm,2,hamlet,1600\nquills,2,hamlet,1600\nperform'd,2,hamlet,1600\nhusband's,2,hamlet,1600\ntrade,2,hamlet,1600\nappears,2,hamlet,1600\nLady,2,hamlet,1600\ndeny,2,hamlet,1600\ndraws,2,hamlet,1600\nplain,2,hamlet,1600\ntrace,2,hamlet,1600\nforty,2,hamlet,1600\nmighty,2,hamlet,1600\npraise,2,hamlet,1600\npluck,2,hamlet,1600\ncity,2,hamlet,1600\nopen,2,hamlet,1600\nUnder,2,hamlet,1600\nvengeance,2,hamlet,1600\nbrothers,2,hamlet,1600\nask,2,hamlet,1600\npair,2,hamlet,1600\nship,2,hamlet,1600\nape,2,hamlet,1600\nmoney,2,hamlet,1600\napt,2,hamlet,1600\nprofound,2,hamlet,1600\ntwain,2,hamlet,1600\npace,2,hamlet,1600\ndismal,2,hamlet,1600\nproper,2,hamlet,1600\nawe,2,hamlet,1600\ngentry,2,hamlet,1600\nFell,2,hamlet,1600\nfood,2,hamlet,1600\nfond,2,hamlet,1600\nmaiden,2,hamlet,1600\nlock,2,hamlet,1600\nterm,2,hamlet,1600\nchance,2,hamlet,1600\nfed,2,hamlet,1600\nenemies,2,hamlet,1600\nbehavior,2,hamlet,1600\nLarded,2,hamlet,1600\nrecoveries,2,hamlet,1600\nwillingly,2,hamlet,1600\nlunacy,2,hamlet,1600\nbroke,2,hamlet,1600\nguest,2,hamlet,1600\nmoves,2,hamlet,1600\nprecedent,2,hamlet,1600\nspoken,2,hamlet,1600\ncapital,2,hamlet,1600\nspokes,2,hamlet,1600\nBetween,2,hamlet,1600\ndelicate,2,hamlet,1600\noften,2,hamlet,1600\nopinions,2,hamlet,1600\nunction,2,hamlet,1600\nPrologue,2,hamlet,1600\nequal,2,hamlet,1600\nVirtue,2,hamlet,1600\nglow,2,hamlet,1600\nforehead,2,hamlet,1600\nshouldst,2,hamlet,1600\napprehension,2,hamlet,1600\nantique,2,hamlet,1600\nbroad,2,hamlet,1600\nmountains,2,hamlet,1600\nsickly,2,hamlet,1600\nunknown,2,hamlet,1600\nsending,2,hamlet,1600\nnose,2,hamlet,1600\npatch,2,hamlet,1600\nenvy,2,hamlet,1600\nproceed,2,hamlet,1600\nimminent,2,hamlet,1600\nopposition,2,hamlet,1600\nprodigal,2,hamlet,1600\nPeace,2,hamlet,1600\nscale,2,hamlet,1600\nPointing,2,hamlet,1600\nrate,2,hamlet,1600\nspread,2,hamlet,1600\nScripture,2,hamlet,1600\nours,2,hamlet,1600\nfeature,2,hamlet,1600\nkneels,2,hamlet,1600\npastime,2,hamlet,1600\npregnant,2,hamlet,1600\nsubstance,2,hamlet,1600\nstrike,2,hamlet,1600\npicked,2,hamlet,1600\nmount,2,hamlet,1600\nbasket,2,hamlet,1600\ngarden,2,hamlet,1600\nfishmonger,2,hamlet,1600\nSet,2,hamlet,1600\nsay'st,2,hamlet,1600\nmouse,2,hamlet,1600\nchild,2,hamlet,1600\nprecious,2,hamlet,1600\nrugged,2,hamlet,1600\nhigh,2,hamlet,1600\nClowns,2,hamlet,1600\nSome,2,hamlet,1600\nArm'd,2,hamlet,1600\nfares,2,hamlet,1600\nLong,2,hamlet,1600\ncharitable,2,hamlet,1600\nteeth,2,hamlet,1600\nstrict,2,hamlet,1600\npurposes,2,hamlet,1600\nescape,2,hamlet,1600\npurposed,2,hamlet,1600\nblush,2,hamlet,1600\nbeggar,2,hamlet,1600\nnephew's,2,hamlet,1600\nreading,2,hamlet,1600\ndearest,2,hamlet,1600\nkissing,2,hamlet,1600\ncoward,2,hamlet,1600\nthick,2,hamlet,1600\nissue,2,hamlet,1600\nlabour,2,hamlet,1600\npurging,2,hamlet,1600\nfish,2,hamlet,1600\namazement,2,hamlet,1600\nnaught,2,hamlet,1600\napart,2,hamlet,1600\ntrouble,2,hamlet,1600\nRome,2,hamlet,1600\nones,2,hamlet,1600\nliving,2,hamlet,1600\nbreed,2,hamlet,1600\nknavery,2,hamlet,1600\npassage,2,hamlet,1600\nsting,2,hamlet,1600\nodd,2,hamlet,1600\nmajesties,2,hamlet,1600\nformer,2,hamlet,1600\nFriends,2,hamlet,1600\ndishonour,2,hamlet,1600\nfits,2,hamlet,1600\nstamp,2,hamlet,1600\ncapable,2,hamlet,1600\nbeckons,2,hamlet,1600\ndiadem,2,hamlet,1600\nrelieved,2,hamlet,1600\nfetch,2,hamlet,1600\nring,2,hamlet,1600\nmoment,2,hamlet,1600\nDead,2,hamlet,1600\ncloses,2,hamlet,1600\nhearers,2,hamlet,1600\nkettle,2,hamlet,1600\nsinews,2,hamlet,1600\nstick,2,hamlet,1600\nwax,2,hamlet,1600\nwar,2,hamlet,1600\nCan,2,hamlet,1600\nrise,2,hamlet,1600\nactors,2,hamlet,1600\nintent,2,hamlet,1600\noath,2,hamlet,1600\nmason,2,hamlet,1600\nbleed,2,hamlet,1600\nwag,2,hamlet,1600\nprovidence,2,hamlet,1600\nserve,2,hamlet,1600\nends,2,hamlet,1600\nsupper,2,hamlet,1600\nThrows,2,hamlet,1600\ncaught,2,hamlet,1600\ndrowned,2,hamlet,1600\nhair,2,hamlet,1600\nGives,2,hamlet,1600\nvulgar,2,hamlet,1600\nfix'd,2,hamlet,1600\nfaces,2,hamlet,1600\nserved,2,hamlet,1600\nmuddy,2,hamlet,1600\nrotten,2,hamlet,1600\ninform,2,hamlet,1600\ninclination,2,hamlet,1600\nlust,2,hamlet,1600\nserves,2,hamlet,1600\nhundred,2,hamlet,1600\nfalling,2,hamlet,1600\nwrong'd,2,hamlet,1600\n'closes,2,hamlet,1600\ngrass,2,hamlet,1600\nhideous,2,hamlet,1600\ngrieve,2,hamlet,1600\nevil,2,hamlet,1600\nminds,2,hamlet,1600\ncharacter,2,hamlet,1600\nunion,2,hamlet,1600\ngiving,2,hamlet,1600\ndesert,2,hamlet,1600\narticle,2,hamlet,1600\nfoe,2,hamlet,1600\ndaggers,2,hamlet,1600\nlasting,2,hamlet,1600\nfame,2,hamlet,1600\nreturns,2,hamlet,1600\npleased,2,hamlet,1600\nwounds,2,hamlet,1600\ntune,2,hamlet,1600\nfighting,2,hamlet,1600\nmobled,2,hamlet,1600\npassing,2,hamlet,1600\nwest,2,hamlet,1600\ntragical,2,hamlet,1600\n'em,2,hamlet,1600\nflame,2,hamlet,1600\nDrown'd,2,hamlet,1600\nExcellent,2,hamlet,1600\nvow,2,hamlet,1600\nrich,2,hamlet,1600\nthunder,2,hamlet,1600\nshown,2,hamlet,1600\nsmooth,2,hamlet,1600\nBarbary,2,hamlet,1600\nwonted,2,hamlet,1600\nlived,2,hamlet,1600\n'Good,2,hamlet,1600\nsalvation,2,hamlet,1600\nbird,2,hamlet,1600\nallow'd,2,hamlet,1600\nprophesy,2,hamlet,1600\nfate,2,hamlet,1600\ntrains,2,hamlet,1600\nflames,2,hamlet,1600\nweakness,2,hamlet,1600\nsongs,2,hamlet,1600\nfare,2,hamlet,1600\ntrumpets,2,hamlet,1600\nmischance,2,hamlet,1600\nfarm,2,hamlet,1600\nauthor,2,hamlet,1600\nache,2,hamlet,1600\nlap,2,hamlet,1600\nCaesar,2,hamlet,1600\ntalk,2,hamlet,1600\nwitchcraft,2,hamlet,1600\nsource,2,hamlet,1600\nrapier,2,hamlet,1600\nsultry,2,hamlet,1600\nempire,2,hamlet,1600\nholy,2,hamlet,1600\nchapel,2,hamlet,1600\nquit,2,hamlet,1600\nLay,2,hamlet,1600\nhole,2,hamlet,1600\nmethod,2,hamlet,1600\ndefect,2,hamlet,1600\nWho's,2,hamlet,1600\nasking,2,hamlet,1600\nstreets,2,hamlet,1600\ndefeat,2,hamlet,1600\nhorses,2,hamlet,1600\nvirtues,2,hamlet,1600\nfavours,2,hamlet,1600\ncholer,2,hamlet,1600\nprayers,2,hamlet,1600\nAnon,2,hamlet,1600\nhearts,2,hamlet,1600\nlungs,2,hamlet,1600\nprithee,2,hamlet,1600\nseat,2,hamlet,1600\nneglected,2,hamlet,1600\nsweat,2,hamlet,1600\naloof,2,hamlet,1600\neasiness,2,hamlet,1600\nneedful,2,hamlet,1600\nbaby,2,hamlet,1600\ncurrents,2,hamlet,1600\ngoodness,2,hamlet,1600\nSeek,2,hamlet,1600\npronounced,2,hamlet,1600\nsuppress,2,hamlet,1600\nmarvellous,2,hamlet,1600\n'twixt,2,hamlet,1600\narrows,2,hamlet,1600\ncomply,2,hamlet,1600\ncost,2,hamlet,1600\nsweep,2,hamlet,1600\nMine,2,hamlet,1600\n'Sblood,2,hamlet,1600\narrant,2,hamlet,1600\nEnglish,2,hamlet,1600\npestilent,2,hamlet,1600\nheavenly,2,hamlet,1600\ntree,2,hamlet,1600\nhours,2,hamlet,1600\nprayer,2,hamlet,1600\nremove,2,hamlet,1600\nsecure,2,hamlet,1600\nmirror,2,hamlet,1600\nblank,2,hamlet,1600\n'One,2,hamlet,1600\nNeither,2,hamlet,1600\ntalk'd,2,hamlet,1600\nRoman,2,hamlet,1600\nsickness,2,hamlet,1600\nblast,2,hamlet,1600\npassionate,2,hamlet,1600\nMarch,2,hamlet,1600\nchances,2,hamlet,1600\nnature's,2,hamlet,1600\n'friend,2,hamlet,1600\neffects,2,hamlet,1600\nservants,2,hamlet,1600\npetty,2,hamlet,1600\nlimbs,2,hamlet,1600\nbearers,2,hamlet,1600\nguts,2,hamlet,1600\nleast,2,hamlet,1600\n'scape,2,hamlet,1600\nforced,2,hamlet,1600\nbegins,2,hamlet,1600\ntreacherous,2,hamlet,1600\nmeeting,2,hamlet,1600\nemployment,2,hamlet,1600\nrights,2,hamlet,1600\nburns,2,hamlet,1600\nlips,2,hamlet,1600\nAway,2,hamlet,1600\nbeguile,2,hamlet,1600\nthither,2,hamlet,1600\ntruant,2,hamlet,1600\nlevies,2,hamlet,1600\npeep,2,hamlet,1600\nhurt,2,hamlet,1600\ndivinity,2,hamlet,1600\nassistant,2,hamlet,1600\noverdone,2,hamlet,1600\nentreaty,2,hamlet,1600\ngoing,2,hamlet,1600\nfollow'd,2,hamlet,1600\nwildly,2,hamlet,1600\nassurance,2,hamlet,1600\n'This,2,hamlet,1600\ncollection,2,hamlet,1600\ntardy,2,hamlet,1600\nnumbers,2,hamlet,1600\nreply,2,hamlet,1600\ndog,2,hamlet,1600\nrespect,2,hamlet,1600\nasleep,2,hamlet,1600\nharsh,2,hamlet,1600\nconfine,2,hamlet,1600\nshipwright,2,hamlet,1600\nprecepts,2,hamlet,1600\nliquor,2,hamlet,1600\ntoe,2,hamlet,1600\nHe's,2,hamlet,1600\ncatch,2,hamlet,1600\nlawless,2,hamlet,1600\nha't,2,hamlet,1600\ndestroy,2,hamlet,1600\ntoy,2,hamlet,1600\ndispatch,2,hamlet,1600\nfellowship,2,hamlet,1600\nBring,2,hamlet,1600\nvenom,2,hamlet,1600\nshake,2,hamlet,1600\narmed,2,hamlet,1600\nfrankly,2,hamlet,1600\nrewards,2,hamlet,1600\nhorridly,2,hamlet,1600\njealousy,2,hamlet,1600\nPolonius',2,hamlet,1600\nConceit,2,hamlet,1600\nrepair,2,hamlet,1600\nshoes,2,hamlet,1600\nobedience,2,hamlet,1600\nVoltimand,2,hamlet,1600\nWords,2,hamlet,1600\nundertake,2,hamlet,1600\ncrows,2,hamlet,1600\ndig,2,hamlet,1600\norigin,2,hamlet,1600\nmajestical,2,hamlet,1600\nfortunes,2,hamlet,1600\nbrave,3,hamlet,1600\nignorance,3,hamlet,1600\nguard,3,hamlet,1600\npity,3,hamlet,1600\nsuffer,3,hamlet,1600\npith,3,hamlet,1600\nadvice,3,hamlet,1600\nfancy,3,hamlet,1600\nguilt,3,hamlet,1600\nassay,3,hamlet,1600\ncountry,3,hamlet,1600\nmistress,3,hamlet,1600\nrat,3,hamlet,1600\ngenerous,3,hamlet,1600\nFie,3,hamlet,1600\nroyal,3,hamlet,1600\noffended,3,hamlet,1600\nscene,3,hamlet,1600\nexpress,3,hamlet,1600\nsleeps,3,hamlet,1600\nStay,3,hamlet,1600\njig,3,hamlet,1600\nmere,3,hamlet,1600\ngaming,3,hamlet,1600\nhonourable,3,hamlet,1600\noffer,3,hamlet,1600\nappear,3,hamlet,1600\nEre,3,hamlet,1600\ncalls,3,hamlet,1600\nthirty,3,hamlet,1600\nsort,3,hamlet,1600\nodds,3,hamlet,1600\nsore,3,hamlet,1600\njest,3,hamlet,1600\nyears,3,hamlet,1600\nincensed,3,hamlet,1600\npurse,3,hamlet,1600\ncorse,3,hamlet,1600\nRemember,3,hamlet,1600\ncheer,3,hamlet,1600\ngolden,3,hamlet,1600\ngross,3,hamlet,1600\npipe,3,hamlet,1600\nofficers,3,hamlet,1600\ncomplexion,3,hamlet,1600\naddition,3,hamlet,1600\nvisitation,3,hamlet,1600\nI'm,3,hamlet,1600\nDenmark's,3,hamlet,1600\nourself,3,hamlet,1600\nvice,3,hamlet,1600\nsuit,3,hamlet,1600\nnine,3,hamlet,1600\nactor,3,hamlet,1600\nworth,3,hamlet,1600\nskill,3,hamlet,1600\nmurderer,3,hamlet,1600\nsworn,3,hamlet,1600\nwinds,3,hamlet,1600\nsubject,3,hamlet,1600\n'I,3,hamlet,1600\ncounsel,3,hamlet,1600\nTheir,3,hamlet,1600\nlivery,3,hamlet,1600\ngather,3,hamlet,1600\nfaults,3,hamlet,1600\nThanks,3,hamlet,1600\nServant,3,hamlet,1600\nstuff,3,hamlet,1600\nscope,3,hamlet,1600\nappear'd,3,hamlet,1600\nindifferent,3,hamlet,1600\nconceit,3,hamlet,1600\ncourtier,3,hamlet,1600\nways,3,hamlet,1600\nborn,3,hamlet,1600\nencounter,3,hamlet,1600\nloose,3,hamlet,1600\nOsric,3,hamlet,1600\nwhite,3,hamlet,1600\nLeave,3,hamlet,1600\ncries,3,hamlet,1600\nSailor,3,hamlet,1600\nceremony,3,hamlet,1600\nsoldier,3,hamlet,1600\nedge,3,hamlet,1600\ndies,3,hamlet,1600\nwish,3,hamlet,1600\nbold,3,hamlet,1600\nanon,3,hamlet,1600\nbeating,3,hamlet,1600\nstop,3,hamlet,1600\nsteel,3,hamlet,1600\nruled,3,hamlet,1600\nbook,3,hamlet,1600\nparts,3,hamlet,1600\nnephew,3,hamlet,1600\nbitter,3,hamlet,1600\nha',3,hamlet,1600\nchamber,3,hamlet,1600\nhat,3,hamlet,1600\naboard,3,hamlet,1600\nargal,3,hamlet,1600\ndelights,3,hamlet,1600\nchaste,3,hamlet,1600\nboy,3,hamlet,1600\nsuffers,3,hamlet,1600\ncanst,3,hamlet,1600\nforce,3,hamlet,1600\nfinds,3,hamlet,1600\ntear,3,hamlet,1600\nSomething,3,hamlet,1600\nHa,3,hamlet,1600\npiteous,3,hamlet,1600\nHo,3,hamlet,1600\nbless,3,hamlet,1600\npast,3,hamlet,1600\nelection,3,hamlet,1600\npit,3,hamlet,1600\nproud,3,hamlet,1600\nIs't,3,hamlet,1600\nprove,3,hamlet,1600\nAdieu,3,hamlet,1600\nMurder,3,hamlet,1600\nsits,3,hamlet,1600\nbend,3,hamlet,1600\nSith,3,hamlet,1600\ngoodly,3,hamlet,1600\ncap,3,hamlet,1600\nchildren,3,hamlet,1600\ntricks,3,hamlet,1600\nbent,3,hamlet,1600\nshadow,3,hamlet,1600\nSaint,3,hamlet,1600\ntheme,3,hamlet,1600\nAbout,3,hamlet,1600\nambassadors,3,hamlet,1600\norgan,3,hamlet,1600\nrapiers,3,hamlet,1600\nuses,3,hamlet,1600\nsolemn,3,hamlet,1600\nGod's,3,hamlet,1600\nstory,3,hamlet,1600\nsail,3,hamlet,1600\naffection,3,hamlet,1600\nwhereto,3,hamlet,1600\nwretch,3,hamlet,1600\nSoldiers,3,hamlet,1600\nleft,3,hamlet,1600\ntongues,3,hamlet,1600\nliberal,3,hamlet,1600\nvouchsafe,3,hamlet,1600\nseeming,3,hamlet,1600\nstole,3,hamlet,1600\nsponge,3,hamlet,1600\nay,3,hamlet,1600\nrouse,3,hamlet,1600\nfeast,3,hamlet,1600\nlo,3,hamlet,1600\nReynaldo,3,hamlet,1600\nidle,3,hamlet,1600\nPoland,3,hamlet,1600\ncousin,3,hamlet,1600\nmorn,3,hamlet,1600\ncrimes,3,hamlet,1600\nloud,3,hamlet,1600\nYea,3,hamlet,1600\nYes,3,hamlet,1600\nlest,3,hamlet,1600\nlets,3,hamlet,1600\npure,3,hamlet,1600\nmen's,3,hamlet,1600\nwisest,3,hamlet,1600\naxe,3,hamlet,1600\noutward,3,hamlet,1600\nBreak,3,hamlet,1600\nnation,3,hamlet,1600\nHercules,3,hamlet,1600\nthrift,3,hamlet,1600\nre,3,hamlet,1600\nconfession,3,hamlet,1600\nPyrrhus',3,hamlet,1600\nshell,3,hamlet,1600\nwhether,3,hamlet,1600\nprepare,3,hamlet,1600\ndelight,3,hamlet,1600\nfiery,3,hamlet,1600\nfoot,3,hamlet,1600\ndreadful,3,hamlet,1600\nrogue,3,hamlet,1600\nfaithful,3,hamlet,1600\ncreatures,3,hamlet,1600\nforms,3,hamlet,1600\narmour,3,hamlet,1600\ntrick,3,hamlet,1600\nfew,3,hamlet,1600\nfee,3,hamlet,1600\nhits,3,hamlet,1600\nfantasy,3,hamlet,1600\ntrial,3,hamlet,1600\nnew,3,hamlet,1600\noccasion,3,hamlet,1600\nordnance,3,hamlet,1600\nwoo't,3,hamlet,1600\nhill,3,hamlet,1600\nhangers,3,hamlet,1600\nLords,3,hamlet,1600\nbelow,3,hamlet,1600\nrash,3,hamlet,1600\ntender,3,hamlet,1600\nestate,3,hamlet,1600\nAlack,3,hamlet,1600\nSoft,3,hamlet,1600\nborne,3,hamlet,1600\nignorant,3,hamlet,1600\ndoomsday,3,hamlet,1600\npowers,3,hamlet,1600\nplaced,3,hamlet,1600\nhistorical,3,hamlet,1600\ndoors,3,hamlet,1600\nleaves,3,hamlet,1600\nstart,3,hamlet,1600\nkisses,3,hamlet,1600\nfoolish,3,hamlet,1600\ndidst,3,hamlet,1600\nprocess,3,hamlet,1600\nchief,3,hamlet,1600\nknows,3,hamlet,1600\njudgments,3,hamlet,1600\nblow,3,hamlet,1600\nshoulder,3,hamlet,1600\nspecial,3,hamlet,1600\nmountain,3,hamlet,1600\nover,3,hamlet,1600\nBeing,3,hamlet,1600\ndesires,3,hamlet,1600\nGiving,3,hamlet,1600\nwed,3,hamlet,1600\nWere,3,hamlet,1600\nclose,3,hamlet,1600\nproved,3,hamlet,1600\nsalt,3,hamlet,1600\nneck,3,hamlet,1600\nunderstanding,3,hamlet,1600\nsides,3,hamlet,1600\nfive,3,hamlet,1600\nwin,3,hamlet,1600\nrecorders,3,hamlet,1600\nhears,3,hamlet,1600\nloving,3,hamlet,1600\nthird,3,hamlet,1600\nunseen,3,hamlet,1600\nrecover,3,hamlet,1600\nducats,3,hamlet,1600\nsave,3,hamlet,1600\ncount,3,hamlet,1600\nremains,3,hamlet,1600\nlikes,3,hamlet,1600\n'The,3,hamlet,1600\nstage,3,hamlet,1600\nrage,3,hamlet,1600\nwanton,3,hamlet,1600\nwont,3,hamlet,1600\nwheel,3,hamlet,1600\nhappy,3,hamlet,1600\nwondrous,3,hamlet,1600\nconsent,3,hamlet,1600\ncried,3,hamlet,1600\njudge,3,hamlet,1600\ntenders,3,hamlet,1600\nclay,3,hamlet,1600\nfie,3,hamlet,1600\nSweet,3,hamlet,1600\nMark,3,hamlet,1600\nprofit,3,hamlet,1600\nadmiration,3,hamlet,1600\nne'er,3,hamlet,1600\nassume,3,hamlet,1600\nmarried,3,hamlet,1600\ndistemper,3,hamlet,1600\nta'en,3,hamlet,1600\nunfold,3,hamlet,1600\nlines,3,hamlet,1600\npatient,3,hamlet,1600\nwaves,3,hamlet,1600\ntame,3,hamlet,1600\nEach,3,hamlet,1600\nJephthah,3,hamlet,1600\nlights,3,hamlet,1600\naffliction,3,hamlet,1600\notherwise,3,hamlet,1600\ncarry,3,hamlet,1600\naccident,3,hamlet,1600\nNone,3,hamlet,1600\ndozen,3,hamlet,1600\ngreen,3,hamlet,1600\nunto,3,hamlet,1600\nlives,3,hamlet,1600\nseal,3,hamlet,1600\nalong,3,hamlet,1600\ninward,3,hamlet,1600\nswear,3,hamlet,1600\nadieu,3,hamlet,1600\nsuits,3,hamlet,1600\npresence,3,hamlet,1600\nfeeling,3,hamlet,1600\nTruly,3,hamlet,1600\ndefend,3,hamlet,1600\nlook'd,3,hamlet,1600\nshapes,3,hamlet,1600\nfellows,3,hamlet,1600\nBelieve,3,hamlet,1600\nsecrecy,3,hamlet,1600\nGentlemen,3,hamlet,1600\n'twill,3,hamlet,1600\navoid,3,hamlet,1600\nnights,3,hamlet,1600\nheels,3,hamlet,1600\nentreat,3,hamlet,1600\nwretched,3,hamlet,1600\ngods,3,hamlet,1600\nexcellence,3,hamlet,1600\npost,3,hamlet,1600\ndistracted,3,hamlet,1600\nwhilst,3,hamlet,1600\nImporting,3,hamlet,1600\nmethought,3,hamlet,1600\nbestow,3,hamlet,1600\nslow,3,hamlet,1600\nnonny,3,hamlet,1600\nsmiling,3,hamlet,1600\nburst,3,hamlet,1600\nDoes,3,hamlet,1600\nsovereign,3,hamlet,1600\nladies,3,hamlet,1600\nheartily,3,hamlet,1600\nwithdraw,3,hamlet,1600\nliege,3,hamlet,1600\nE'en,3,hamlet,1600\nflat,3,hamlet,1600\npious,3,hamlet,1600\nsleeping,3,hamlet,1600\nrevenged,3,hamlet,1600\ncontent,3,hamlet,1600\ncorruption,3,hamlet,1600\nhonour'd,3,hamlet,1600\nTogether,3,hamlet,1600\ndry,3,hamlet,1600\nliest,3,hamlet,1600\nGonzago,3,hamlet,1600\nToo,3,hamlet,1600\nLUCIANUS,3,hamlet,1600\nambitious,3,hamlet,1600\ntempt,3,hamlet,1600\ndew,3,hamlet,1600\ndrown'd,3,hamlet,1600\njustly,3,hamlet,1600\norder,3,hamlet,1600\nturn'd,3,hamlet,1600\nenemy,3,hamlet,1600\ntreason,4,hamlet,1600\nquality,4,hamlet,1600\nV,4,hamlet,1600\nmotion,4,hamlet,1600\nleisure,4,hamlet,1600\npossible,4,hamlet,1600\ntreasure,4,hamlet,1600\nWhether,4,hamlet,1600\nbones,4,hamlet,1600\nspade,4,hamlet,1600\nTell,4,hamlet,1600\nviolent,4,hamlet,1600\nthroat,4,hamlet,1600\nSailors,4,hamlet,1600\nbirth,4,hamlet,1600\ngrown,4,hamlet,1600\ngrows,4,hamlet,1600\nheat,4,hamlet,1600\nfingers,4,hamlet,1600\nmaking,4,hamlet,1600\nvisit,4,hamlet,1600\nsix,4,hamlet,1600\nGet,4,hamlet,1600\nwarrant,4,hamlet,1600\ndeliver,4,hamlet,1600\nsends,4,hamlet,1600\nread,4,hamlet,1600\nfight,4,hamlet,1600\nsnow,4,hamlet,1600\nbore,4,hamlet,1600\nhabit,4,hamlet,1600\ndirect,4,hamlet,1600\nWhereon,4,hamlet,1600\nabove,4,hamlet,1600\ninfinite,4,hamlet,1600\n'Faith,4,hamlet,1600\nbrief,4,hamlet,1600\nBehind,4,hamlet,1600\nchoose,4,hamlet,1600\nseems,4,hamlet,1600\nlength,4,hamlet,1600\nhence,4,hamlet,1600\nincestuous,4,hamlet,1600\ndied,4,hamlet,1600\nproperty,4,hamlet,1600\ncunning,4,hamlet,1600\nwits,4,hamlet,1600\ntend,4,hamlet,1600\nsigh,4,hamlet,1600\n'Twere,4,hamlet,1600\nAh,4,hamlet,1600\npay,4,hamlet,1600\nshortly,4,hamlet,1600\nunnatural,4,hamlet,1600\nStill,4,hamlet,1600\nlands,4,hamlet,1600\nkept,4,hamlet,1600\nbegun,4,hamlet,1600\nflowers,4,hamlet,1600\npleasure,4,hamlet,1600\nmeant,4,hamlet,1600\nfortune's,4,hamlet,1600\nease,4,hamlet,1600\npate,4,hamlet,1600\nLet's,4,hamlet,1600\nquantity,4,hamlet,1600\nweep,4,hamlet,1600\nsorry,4,hamlet,1600\nPolack,4,hamlet,1600\nDanes,4,hamlet,1600\nwear,4,hamlet,1600\nWittenberg,4,hamlet,1600\ntwice,4,hamlet,1600\nherein,4,hamlet,1600\nstronger,4,hamlet,1600\nBoth,4,hamlet,1600\nquite,4,hamlet,1600\ndeep,4,hamlet,1600\ninstant,4,hamlet,1600\nimage,4,hamlet,1600\nha,4,hamlet,1600\ngallows,4,hamlet,1600\nburial,4,hamlet,1600\nHere's,4,hamlet,1600\nfavour,4,hamlet,1600\nviolence,4,hamlet,1600\ngain,4,hamlet,1600\nseeing,4,hamlet,1600\nlend,4,hamlet,1600\nspeed,4,hamlet,1600\nforget,4,hamlet,1600\nthyself,4,hamlet,1600\ncommend,4,hamlet,1600\nmonth,4,hamlet,1600\ndrift,4,hamlet,1600\ntwenty,4,hamlet,1600\nready,4,hamlet,1600\ncommandment,4,hamlet,1600\nthrice,4,hamlet,1600\nhall,4,hamlet,1600\nhalf,4,hamlet,1600\nweeds,4,hamlet,1600\nhang,4,hamlet,1600\nprince,4,hamlet,1600\nfour,4,hamlet,1600\narm,4,hamlet,1600\npresent,4,hamlet,1600\nreturn'd,4,hamlet,1600\nmock,4,hamlet,1600\nbosom,4,hamlet,1600\nputs,4,hamlet,1600\nexcept,4,hamlet,1600\nass,4,hamlet,1600\nsecret,4,hamlet,1600\nnative,4,hamlet,1600\nhere's,4,hamlet,1600\nchange,4,hamlet,1600\nlead,4,hamlet,1600\nInto,4,hamlet,1600\nShould,4,hamlet,1600\nkeeps,4,hamlet,1600\nmain,4,hamlet,1600\nnay,4,hamlet,1600\nAgainst,4,hamlet,1600\nrose,4,hamlet,1600\nsilence,4,hamlet,1600\nwonder,4,hamlet,1600\nentertainment,4,hamlet,1600\nhide,4,hamlet,1600\nyou'll,4,hamlet,1600\nfreely,4,hamlet,1600\nDoth,4,hamlet,1600\nSee,4,hamlet,1600\nmortal,4,hamlet,1600\nsoldiers,4,hamlet,1600\nstars,4,hamlet,1600\nMakes,4,hamlet,1600\n'gainst,4,hamlet,1600\nmass,4,hamlet,1600\nslave,4,hamlet,1600\nneed,4,hamlet,1600\nhorrible,4,hamlet,1600\npause,4,hamlet,1600\nwi',4,hamlet,1600\nflourish,4,hamlet,1600\nnext,4,hamlet,1600\ncursed,4,hamlet,1600\ndreams,4,hamlet,1600\nHeaven,4,hamlet,1600\nprologue,4,hamlet,1600\nangel,4,hamlet,1600\nglad,4,hamlet,1600\nfain,4,hamlet,1600\nmodesty,4,hamlet,1600\nmethinks,4,hamlet,1600\nworm,4,hamlet,1600\nFare,4,hamlet,1600\nwide,4,hamlet,1600\nUnto,4,hamlet,1600\nMother,4,hamlet,1600\npoison'd,4,hamlet,1600\npractise,4,hamlet,1600\nBeneath,4,hamlet,1600\ncensure,4,hamlet,1600\nWelcome,4,hamlet,1600\necstasy,4,hamlet,1600\ntale,4,hamlet,1600\nPriam,4,hamlet,1600\ncup,4,hamlet,1600\nwild,4,hamlet,1600\nholds,4,hamlet,1600\nfollows,4,hamlet,1600\nargument,4,hamlet,1600\nstrong,4,hamlet,1600\ndiscretion,4,hamlet,1600\ncry,4,hamlet,1600\nperson,4,hamlet,1600\nblame,4,hamlet,1600\nfuneral,4,hamlet,1600\nsend,4,hamlet,1600\naffair,4,hamlet,1600\nTwo,4,hamlet,1600\nbrow,4,hamlet,1600\nNothing,4,hamlet,1600\neat,4,hamlet,1600\nimagination,4,hamlet,1600\nclouds,4,hamlet,1600\nimports,4,hamlet,1600\nconsequence,4,hamlet,1600\nstraight,4,hamlet,1600\nmaker,4,hamlet,1600\nBefore,4,hamlet,1600\nthinking,4,hamlet,1600\nsometimes,4,hamlet,1600\nMad,4,hamlet,1600\nHecuba,4,hamlet,1600\nimpart,4,hamlet,1600\nspring,4,hamlet,1600\nThy,4,hamlet,1600\nperchance,4,hamlet,1600\nframe,4,hamlet,1600\nmonths,4,hamlet,1600\ncertain,4,hamlet,1600\nten,4,hamlet,1600\nkill,4,hamlet,1600\nremembrance,4,hamlet,1600\npastoral,4,hamlet,1600\nbreathe,4,hamlet,1600\nperhaps,4,hamlet,1600\ntold,5,hamlet,1600\nc,5,hamlet,1600\ntook,5,hamlet,1600\nhorse,5,hamlet,1600\nrather,5,hamlet,1600\ntruly,5,hamlet,1600\nMust,5,hamlet,1600\ngracious,5,hamlet,1600\ntrumpet,5,hamlet,1600\nhearing,5,hamlet,1600\nteach,5,hamlet,1600\nstands,5,hamlet,1600\nbound,5,hamlet,1600\n'twas,5,hamlet,1600\nSuch,5,hamlet,1600\ncountenance,5,hamlet,1600\nvile,5,hamlet,1600\nFrance,5,hamlet,1600\nOut,5,hamlet,1600\ntwelve,5,hamlet,1600\nfigure,5,hamlet,1600\nkill'd,5,hamlet,1600\nfault,5,hamlet,1600\nterms,5,hamlet,1600\nhumbly,5,hamlet,1600\nflesh,5,hamlet,1600\nFrench,5,hamlet,1600\ncolour,5,hamlet,1600\nFollow,5,hamlet,1600\nsick,5,hamlet,1600\nstir,5,hamlet,1600\nmorning,5,hamlet,1600\ndrown,5,hamlet,1600\nHold,5,hamlet,1600\npatience,5,hamlet,1600\nin's,5,hamlet,1600\nto't,5,hamlet,1600\nbid,5,hamlet,1600\nquiet,5,hamlet,1600\ngod,5,hamlet,1600\nbehind,5,hamlet,1600\nDies,5,hamlet,1600\nnunnery,5,hamlet,1600\nlonger,5,hamlet,1600\nsing,5,hamlet,1600\nbegin,5,hamlet,1600\nconfess,5,hamlet,1600\nstood,5,hamlet,1600\nAlexander,5,hamlet,1600\ndamn'd,5,hamlet,1600\ncarriages,5,hamlet,1600\nReads,5,hamlet,1600\nmoon,5,hamlet,1600\nknew,5,hamlet,1600\nforgot,5,hamlet,1600\nhard,5,hamlet,1600\nnatural,5,hamlet,1600\nliberty,5,hamlet,1600\nforth,5,hamlet,1600\ncourse,5,hamlet,1600\nye,5,hamlet,1600\narras,5,hamlet,1600\nmarch,5,hamlet,1600\nMadam,5,hamlet,1600\nreport,5,hamlet,1600\ngentle,5,hamlet,1600\nyear,5,hamlet,1600\nvisage,5,hamlet,1600\nTherefore,5,hamlet,1600\nDost,5,hamlet,1600\nyours,5,hamlet,1600\nknave,5,hamlet,1600\nCould,5,hamlet,1600\nthere's,5,hamlet,1600\npresently,5,hamlet,1600\nbrains,5,hamlet,1600\nget,5,hamlet,1600\nthrow,5,hamlet,1600\nbreak,5,hamlet,1600\nmorrow,5,hamlet,1600\ncloset,5,hamlet,1600\nSay,5,hamlet,1600\nPriest,5,hamlet,1600\naudience,5,hamlet,1600\nthemselves,5,hamlet,1600\nfound,5,hamlet,1600\ndanger,5,hamlet,1600\nShall,5,hamlet,1600\ndumb,5,hamlet,1600\ndisposition,5,hamlet,1600\nwent,5,hamlet,1600\ngifts,5,hamlet,1600\nBernardo,5,hamlet,1600\nsafety,5,hamlet,1600\nbase,5,hamlet,1600\ncock,5,hamlet,1600\nmotive,5,hamlet,1600\nfast,5,hamlet,1600\nman's,5,hamlet,1600\nshort,5,hamlet,1600\ndangerous,5,hamlet,1600\ngives,5,hamlet,1600\ncommission,5,hamlet,1600\nkingdom,5,hamlet,1600\nwe'll,5,hamlet,1600\nwhom,5,hamlet,1600\nplatform,5,hamlet,1600\nsouls,5,hamlet,1600\nreturn,5,hamlet,1600\nprison,5,hamlet,1600\nseason,5,hamlet,1600\nhonesty,5,hamlet,1600\nspirits,5,hamlet,1600\ndread,5,hamlet,1600\nMessenger,5,hamlet,1600\nwarlike,5,hamlet,1600\nWithout,5,hamlet,1600\ntry,5,hamlet,1600\ndare,5,hamlet,1600\nsudden,5,hamlet,1600\nland,5,hamlet,1600\nblessing,5,hamlet,1600\nshalt,5,hamlet,1600\ncannon,5,hamlet,1600\nwouldst,5,hamlet,1600\ndouble,6,hamlet,1600\nwrit,6,hamlet,1600\nwicked,6,hamlet,1600\nhealth,6,hamlet,1600\nwithal,6,hamlet,1600\nlaugh,6,hamlet,1600\nlies,6,hamlet,1600\ndamned,6,hamlet,1600\ntruth,6,hamlet,1600\ncast,6,hamlet,1600\nmercy,6,hamlet,1600\ncircumstance,6,hamlet,1600\ntoward,6,hamlet,1600\nsoft,6,hamlet,1600\nwager,6,hamlet,1600\nCORNELIUS,6,hamlet,1600\nwrong,6,hamlet,1600\nfoils,6,hamlet,1600\nbrain,6,hamlet,1600\npiece,6,hamlet,1600\nWherein,6,hamlet,1600\nfeed,6,hamlet,1600\nfalse,6,hamlet,1600\nOne,6,hamlet,1600\nThough,6,hamlet,1600\nDane,6,hamlet,1600\nWhat's,6,hamlet,1600\ndesperate,6,hamlet,1600\nbad,6,hamlet,1600\nproof,6,hamlet,1600\nstar,6,hamlet,1600\nHer,6,hamlet,1600\nwisdom,6,hamlet,1600\nhit,6,hamlet,1600\npass,6,hamlet,1600\nstruck,6,hamlet,1600\nvows,6,hamlet,1600\nDanish,6,hamlet,1600\nghost,6,hamlet,1600\nburied,6,hamlet,1600\ndoor,6,hamlet,1600\nmove,6,hamlet,1600\nElsinore,6,hamlet,1600\nbodies,6,hamlet,1600\nill,6,hamlet,1600\nlose,6,hamlet,1600\nhot,6,hamlet,1600\nchoice,6,hamlet,1600\nbrought,6,hamlet,1600\ndiscourse,6,hamlet,1600\nspeaks,6,hamlet,1600\nround,6,hamlet,1600\nChristian,6,hamlet,1600\npale,6,hamlet,1600\nMore,6,hamlet,1600\npoint,6,hamlet,1600\ntouch,6,hamlet,1600\nfat,6,hamlet,1600\nmaid,6,hamlet,1600\nnote,6,hamlet,1600\nbeast,6,hamlet,1600\nbeard,6,hamlet,1600\nslain,6,hamlet,1600\nmouth,6,hamlet,1600\nalready,6,hamlet,1600\ndream,6,hamlet,1600\nlet's,6,hamlet,1600\nseal'd,6,hamlet,1600\nletters,6,hamlet,1600\nwit,6,hamlet,1600\nsorrow,6,hamlet,1600\ncourt,6,hamlet,1600\nonly,6,hamlet,1600\nambition,6,hamlet,1600\nwhat's,6,hamlet,1600\npoison,6,hamlet,1600\ndull,6,hamlet,1600\nguilty,6,hamlet,1600\ntable,6,hamlet,1600\nThat's,6,hamlet,1600\nfly,6,hamlet,1600\nshows,6,hamlet,1600\nherself,6,hamlet,1600\npardon,6,hamlet,1600\nhome,6,hamlet,1600\neither,6,hamlet,1600\nGentleman,6,hamlet,1600\nsound,6,hamlet,1600\nPray,6,hamlet,1600\nhouse,6,hamlet,1600\nmother's,6,hamlet,1600\ncold,6,hamlet,1600\nAnother,6,hamlet,1600\nsister,6,hamlet,1600\nSince,6,hamlet,1600\nmarriage,6,hamlet,1600\nbeauty,6,hamlet,1600\nlist,6,hamlet,1600\nlaid,6,hamlet,1600\nMarcellus,6,hamlet,1600\nshape,6,hamlet,1600\nlack,6,hamlet,1600\ncrown,6,hamlet,1600\ndays,7,hamlet,1600\ntears,7,hamlet,1600\nunderstand,7,hamlet,1600\nPlayers,7,hamlet,1600\nconscience,7,hamlet,1600\nnoise,7,hamlet,1600\nblack,7,hamlet,1600\nsit,7,hamlet,1600\nenough,7,hamlet,1600\n'twere,7,hamlet,1600\nfell,7,hamlet,1600\nRosencrantz,7,hamlet,1600\nWas,7,hamlet,1600\n't,7,hamlet,1600\nlooks,7,hamlet,1600\nThese,7,hamlet,1600\nturn,7,hamlet,1600\ncommon,7,hamlet,1600\nking's,7,hamlet,1600\nfalls,7,hamlet,1600\nothers,7,hamlet,1600\nPyrrhus,7,hamlet,1600\nIII,7,hamlet,1600\nAn,7,hamlet,1600\nVOLTIMAND,7,hamlet,1600\nII,7,hamlet,1600\nbeg,7,hamlet,1600\nwhole,7,hamlet,1600\nHad,7,hamlet,1600\nobey,7,hamlet,1600\nLike,7,hamlet,1600\nneeds,7,hamlet,1600\nloves,7,hamlet,1600\nloved,7,hamlet,1600\nfool,7,hamlet,1600\nthanks,7,hamlet,1600\nrank,7,hamlet,1600\nwater,7,hamlet,1600\ngeneral,7,hamlet,1600\neffect,7,hamlet,1600\nbloody,7,hamlet,1600\nWe'll,7,hamlet,1600\nbeseech,7,hamlet,1600\nheavy,7,hamlet,1600\ndust,7,hamlet,1600\nreceive,7,hamlet,1600\nbrother's,7,hamlet,1600\ncoming,7,hamlet,1600\nwholesome,7,hamlet,1600\nSwear,7,hamlet,1600\nVery,7,hamlet,1600\nlaw,7,hamlet,1600\nlay,7,hamlet,1600\nPRINCE,7,hamlet,1600\nseek,7,hamlet,1600\nmadam,7,hamlet,1600\nPolonius,7,hamlet,1600\nMarry,7,hamlet,1600\ntop,7,hamlet,1600\nwoman,7,hamlet,1600\ndie,7,hamlet,1600\nAnd,263,hamlet,1600\nmeet,8,hamlet,1600\ntimes,8,hamlet,1600\njoy,8,hamlet,1600\nNever,8,hamlet,1600\ncharge,8,hamlet,1600\nsure,8,hamlet,1600\ncame,8,hamlet,1600\nsea,8,hamlet,1600\ndoubt,8,hamlet,1600\nheavens,8,hamlet,1600\nsun,8,hamlet,1600\ngrow,8,hamlet,1600\nservice,8,hamlet,1600\ncustom,8,hamlet,1600\ndesire,8,hamlet,1600\nhe's,8,hamlet,1600\neach,8,hamlet,1600\nmusic,8,hamlet,1600\nneither,8,hamlet,1600\nstay,8,hamlet,1600\nOn,8,hamlet,1600\nquick,8,hamlet,1600\ngave,8,hamlet,1600\nSpeak,8,hamlet,1600\nfarewell,8,hamlet,1600\nexcellent,8,hamlet,1600\nhusband,8,hamlet,1600\nlost,8,hamlet,1600\nless,8,hamlet,1600\nshot,8,hamlet,1600\nAre,8,hamlet,1600\njudgment,8,hamlet,1600\nHath,8,hamlet,1600\nthrough,8,hamlet,1600\nknown,8,hamlet,1600\nwoe,8,hamlet,1600\nsays,8,hamlet,1600\ntakes,8,hamlet,1600\nEven,8,hamlet,1600\nfall,8,hamlet,1600\nparticular,8,hamlet,1600\nlordship,8,hamlet,1600\nhour,8,hamlet,1600\nhope,8,hamlet,1600\nwilt,8,hamlet,1600\nwife,8,hamlet,1600\nback,8,hamlet,1600\nHamlet's,8,hamlet,1600\nfashion,8,hamlet,1600\nshame,8,hamlet,1600\npower,8,hamlet,1600\ne'en,8,hamlet,1600\nAlas,9,hamlet,1600\npeace,9,hamlet,1600\nhelp,9,hamlet,1600\nsight,9,hamlet,1600\ndraw,9,hamlet,1600\nbrother,9,hamlet,1600\nlight,9,hamlet,1600\nwalk,9,hamlet,1600\nFarewell,9,hamlet,1600\nAttendants,9,hamlet,1600\noffence,9,hamlet,1600\nin't,9,hamlet,1600\nears,9,hamlet,1600\nRe,9,hamlet,1600\ndost,9,hamlet,1600\nbreath,9,hamlet,1600\nage,9,hamlet,1600\ndevil,9,hamlet,1600\nplace,9,hamlet,1600\nKing,9,hamlet,1600\nalmost,9,hamlet,1600\nShe,9,hamlet,1600\nnear,9,hamlet,1600\nThus,9,hamlet,1600\narms,9,hamlet,1600\nmarry,9,hamlet,1600\nMake,9,hamlet,1600\nTill,9,hamlet,1600\nthree,9,hamlet,1600\ndo't,9,hamlet,1600\ngentlemen,9,hamlet,1600\ngiven,9,hamlet,1600\nthank,9,hamlet,1600\nalone,9,hamlet,1600\nseem,9,hamlet,1600\nhither,9,hamlet,1600\ntogether,9,hamlet,1600\nremember,9,hamlet,1600\nCaptain,9,hamlet,1600\non't,9,hamlet,1600\nIndeed,9,hamlet,1600\nbeing,9,hamlet,1600\nMay,9,hamlet,1600\nstrange,9,hamlet,1600\nTake,9,hamlet,1600\nhell,10,hamlet,1600\nevery,10,hamlet,1600\nwhile,10,hamlet,1600\nWhose,10,hamlet,1600\nanother,10,hamlet,1600\nfull,10,hamlet,1600\nsecond,10,hamlet,1600\nfellow,10,hamlet,1600\nhonour,10,hamlet,1600\nbring,10,hamlet,1600\nmurder,10,hamlet,1600\ntherefore,10,hamlet,1600\nWithin,10,hamlet,1600\nsince,10,hamlet,1600\nIV,10,hamlet,1600\nmemory,10,hamlet,1600\nthat's,10,hamlet,1600\nGuildenstern,10,hamlet,1600\nrevenge,10,hamlet,1600\nFRANCISCO,10,hamlet,1600\nfaith,10,hamlet,1600\naction,10,hamlet,1600\nnone,10,hamlet,1600\nthings,10,hamlet,1600\nere,10,hamlet,1600\nfree,10,hamlet,1600\nnews,10,hamlet,1600\nground,10,hamlet,1600\nfortune,10,hamlet,1600\nfine,10,hamlet,1600\nuncle,10,hamlet,1600\nhonest,10,hamlet,1600\naught,10,hamlet,1600\nskull,10,hamlet,1600\nlie,10,hamlet,1600\nphrase,10,hamlet,1600\ncommand,10,hamlet,1600\nthat,266,hamlet,1600\nbusiness,11,hamlet,1600\nthought,11,hamlet,1600\nvillain,11,hamlet,1600\nFORTINBRAS,11,hamlet,1600\nsaw,11,hamlet,1600\nsomething,11,hamlet,1600\nAside,11,hamlet,1600\nHere,11,hamlet,1600\nwind,11,hamlet,1600\nfriend,11,hamlet,1600\nmean,11,hamlet,1600\nenter,11,hamlet,1600\nbest,11,hamlet,1600\ndeed,11,hamlet,1600\no',11,hamlet,1600\nYet,11,hamlet,1600\nho,11,hamlet,1600\nfoul,11,hamlet,1600\nright,11,hamlet,1600\nfar,11,hamlet,1600\nFrom,11,hamlet,1600\nSir,11,hamlet,1600\nQueen,11,hamlet,1600\noft,11,hamlet,1600\nway,11,hamlet,1600\nface,11,hamlet,1600\nwork,11,hamlet,1600\npassion,11,hamlet,1600\ntill,11,hamlet,1600\nthousand,11,hamlet,1600\ngoes,11,hamlet,1600\nsleep,11,hamlet,1600\nmen,11,hamlet,1600\nlate,11,hamlet,1600\nvirtue,11,hamlet,1600\nhaste,12,hamlet,1600\nWould,12,hamlet,1600\nfurther,12,hamlet,1600\nOur,12,hamlet,1600\nafter,12,hamlet,1600\nsense,12,hamlet,1600\nvoice,12,hamlet,1600\nAt,12,hamlet,1600\nname,12,hamlet,1600\nhands,12,hamlet,1600\nMost,12,hamlet,1600\nform,12,hamlet,1600\nThou,12,hamlet,1600\nawhile,12,hamlet,1600\nmyself,12,hamlet,1600\nmind,12,hamlet,1600\nAll,12,hamlet,1600\nmark,12,hamlet,1600\nfire,12,hamlet,1600\nsame,12,hamlet,1600\nthine,12,hamlet,1600\nplease,12,hamlet,1600\nfit,12,hamlet,1600\nFortinbras,12,hamlet,1600\ngentleman,12,hamlet,1600\npurpose,12,hamlet,1600\nkind,12,hamlet,1600\nlady,12,hamlet,1600\nanswer,13,hamlet,1600\nNorway,13,hamlet,1600\nourselves,13,hamlet,1600\nGertrude,13,hamlet,1600\nThere's,13,hamlet,1600\ngrief,13,hamlet,1600\nair,13,hamlet,1600\nbear,13,hamlet,1600\nwelcome,13,hamlet,1600\nThan,13,hamlet,1600\ncastle,13,hamlet,1600\nLook,13,hamlet,1600\nstand,13,hamlet,1600\nWell,13,hamlet,1600\nduty,13,hamlet,1600\nbetween,13,hamlet,1600\nword,13,hamlet,1600\nsent,13,hamlet,1600\nlast,13,hamlet,1600\nSings,13,hamlet,1600\nDid,13,hamlet,1600\ndrink,14,hamlet,1600\nWho,14,hamlet,1600\nThere,14,hamlet,1600\nrest,14,hamlet,1600\nbed,14,hamlet,1600\ngone,14,hamlet,1600\nSecond,14,hamlet,1600\nact,14,hamlet,1600\ngrace,14,hamlet,1600\nroom,14,hamlet,1600\nheard,14,hamlet,1600\never,14,hamlet,1600\nreason,14,hamlet,1600\nmakes,14,hamlet,1600\nspirit,14,hamlet,1600\nUpon,15,hamlet,1600\nyourself,15,hamlet,1600\nNot,15,hamlet,1600\nbetter,15,hamlet,1600\nabout,15,hamlet,1600\nhas,15,hamlet,1600\ntongue,15,hamlet,1600\nsaid,15,hamlet,1600\nlong,15,hamlet,1600\nhast,15,hamlet,1600\nwatch,15,hamlet,1600\neye,15,hamlet,1600\nyoung,15,hamlet,1600\nyouth,15,hamlet,1600\nquestion,15,hamlet,1600\nstate,15,hamlet,1600\nstill,15,hamlet,1600\nwhy,15,hamlet,1600\nis't,15,hamlet,1600\nuse,15,hamlet,1600\nplayers,15,hamlet,1600\nlive,15,hamlet,1600\nwithout,15,hamlet,1600\nspeech,16,hamlet,1600\nNor,16,hamlet,1600\ndaughter,16,hamlet,1600\nsword,16,hamlet,1600\nBe,16,hamlet,1600\nart,16,hamlet,1600\nREYNALDO,16,hamlet,1600\nHave,16,hamlet,1600\nmajesty,16,hamlet,1600\nbelieve,16,hamlet,1600\neven,16,hamlet,1600\nfirst,16,hamlet,1600\nthoughts,16,hamlet,1600\nfollow,16,hamlet,1600\nother,16,hamlet,1600\nWill,17,hamlet,1600\nbody,17,hamlet,1600\ncause,17,hamlet,1600\nelse,17,hamlet,1600\nHis,17,hamlet,1600\nany,17,hamlet,1600\nnoble,17,hamlet,1600\nYour,17,hamlet,1600\nend,17,hamlet,1600\nonce,17,hamlet,1600\nbefore,17,hamlet,1600\ngrave,17,hamlet,1600\nfind,17,hamlet,1600\near,17,hamlet,1600\nmad,17,hamlet,1600\no'er,18,hamlet,1600\nfriends,18,hamlet,1600\nwords,18,hamlet,1600\nwithin,18,hamlet,1600\nBy,18,hamlet,1600\nnever,18,hamlet,1600\nGo,18,hamlet,1600\nkeep,18,hamlet,1600\nlittle,18,hamlet,1600\nthough,18,hamlet,1600\nLord,18,hamlet,1600\nmany,18,hamlet,1600\nfather's,18,hamlet,1600\nagainst,19,hamlet,1600\nfear,19,hamlet,1600\nblood,19,hamlet,1600\nhand,19,hamlet,1600\nThen,19,hamlet,1600\nold,19,hamlet,1600\nGive,20,hamlet,1600\ncall,20,hamlet,1600\nset,20,hamlet,1600\nmeans,20,hamlet,1600\nthose,20,hamlet,1600\nACT,20,hamlet,1600\nOphelia,20,hamlet,1600\nEngland,20,hamlet,1600\npoor,20,hamlet,1600\nhimself,20,hamlet,1600\nmadness,21,hamlet,1600\nPlayer,21,hamlet,1600\nWhich,21,hamlet,1600\nnor,21,hamlet,1600\nfair,21,hamlet,1600\ntwo,21,hamlet,1600\nSCENE,21,hamlet,1600\nNay,22,hamlet,1600\nson,22,hamlet,1600\nboth,22,hamlet,1600\nwhose,22,hamlet,1600\nput,22,hamlet,1600\ndone,22,hamlet,1600\nshow,22,hamlet,1600\nindeed,22,hamlet,1600\noff,22,hamlet,1600\neyes,22,hamlet,1600\nseen,22,hamlet,1600\nsweet,22,hamlet,1600\nNow,23,hamlet,1600\naway,23,hamlet,1600\nitself,23,hamlet,1600\nDenmark,23,hamlet,1600\ndoth,23,hamlet,1600\ni',23,hamlet,1600\nlook,23,hamlet,1600\ndoes,23,hamlet,1600\ncomes,23,hamlet,1600\nThey,23,hamlet,1600\npray,24,hamlet,1600\nworld,24,hamlet,1600\nDo,24,hamlet,1600\nearth,24,hamlet,1600\npart,24,hamlet,1600\nday,24,hamlet,1600\nhold,24,hamlet,1600\ntrue,24,hamlet,1600\nhead,25,hamlet,1600\nGood,25,hamlet,1600\nthing,25,hamlet,1600\n'Tis,25,hamlet,1600\nwere,25,hamlet,1600\nGhost,25,hamlet,1600\nleave,25,hamlet,1600\nWhen,25,hamlet,1600\nhis,281,hamlet,1600\nnothing,26,hamlet,1600\nbeen,26,hamlet,1600\nBERNARDO,26,hamlet,1600\nwho,26,hamlet,1600\nqueen,26,hamlet,1600\ngreat,26,hamlet,1600\ntake,26,hamlet,1600\nWhere,26,hamlet,1600\nnature,26,hamlet,1600\nmatter,27,hamlet,1600\nIs,27,hamlet,1600\ninto,27,hamlet,1600\ncould,27,hamlet,1600\ncannot,27,hamlet,1600\ndear,28,hamlet,1600\nCome,29,hamlet,1600\nWe,29,hamlet,1600\nGod,29,hamlet,1600\nOSRIC,29,hamlet,1600\nwhen,29,hamlet,1600\nHoratio,30,hamlet,1600\nmade,30,hamlet,1600\nwhere,30,hamlet,1600\nheart,30,hamlet,1600\nmight,30,hamlet,1600\ndead,31,hamlet,1600\nlife,32,hamlet,1600\nhear,32,hamlet,1600\nLaertes,32,hamlet,1600\ndown,32,hamlet,1600\nOr,32,hamlet,1600\nagain,32,hamlet,1600\nthus,32,hamlet,1600\nyet,33,hamlet,1600\nsoul,34,hamlet,1600\ncan,34,hamlet,1600\nhow,34,hamlet,1600\nI,546,hamlet,1600\nAy,35,hamlet,1600\nmine,35,hamlet,1600\nLet,35,hamlet,1600\nmother,36,hamlet,1600\nIn,36,hamlet,1600\nExeunt,36,hamlet,1600\nshe,37,hamlet,1600\nup,37,hamlet,1600\nown,37,hamlet,1600\ndeath,38,hamlet,1600\nthan,38,hamlet,1600\nhad,38,hamlet,1600\ngive,38,hamlet,1600\ntell,39,hamlet,1600\nplay,39,hamlet,1600\nExit,39,hamlet,1600\nupon,40,hamlet,1600\nheaven,40,hamlet,1600\none,40,hamlet,1600\nMARCELLUS,41,hamlet,1600\nthese,41,hamlet,1600\nOf,41,hamlet,1600\nHe,41,hamlet,1600\nsee,42,hamlet,1600\nwhich,43,hamlet,1600\nhere,43,hamlet,1600\nnot,299,hamlet,1600\nWith,44,hamlet,1600\nNo,44,hamlet,1600\nIf,44,hamlet,1600\nthen,45,hamlet,1600\nSo,45,hamlet,1600\ntime,45,hamlet,1600\n'tis,46,hamlet,1600\nthink,46,hamlet,1600\nWhy,47,hamlet,1600\nnight,47,hamlet,1600\nmake,47,hamlet,1600\nThis,47,hamlet,1600\nClown,48,hamlet,1600\ntoo,48,hamlet,1600\nmuch,49,hamlet,1600\nsay,49,hamlet,1600\n',50,hamlet,1600\nout,50,hamlet,1600\nYou,51,hamlet,1600\nam,51,hamlet,1600\nan,51,hamlet,1600\nman,51,hamlet,1600\nsome,52,hamlet,1600\nsuch,52,hamlet,1600\ngo,52,hamlet,1600\nfather,52,hamlet,1600\ndid,52,hamlet,1600\nshould,53,hamlet,1600\nFirst,54,hamlet,1600\nhath,54,hamlet,1600\nIt,55,hamlet,1600\ntheir,55,hamlet,1600\nspeak,55,hamlet,1600\nGUILDENSTERN,55,hamlet,1600\nmust,56,hamlet,1600\nHow,56,hamlet,1600\nI'll,56,hamlet,1600\nis,313,hamlet,1600\nvery,58,hamlet,1600\nthee,59,hamlet,1600\nlet,60,hamlet,1600\nEnter,61,hamlet,1600\nthere,62,hamlet,1600\nmay,62,hamlet,1600\nsir,64,hamlet,1600\nwell,65,hamlet,1600\nFor,66,hamlet,1600\nlove,67,hamlet,1600\nOPHELIA,67,hamlet,1600\nwould,67,hamlet,1600\nif,69,hamlet,1600\nus,69,hamlet,1600\nking,69,hamlet,1600\nROSENCRANTZ,70,hamlet,1600\nmost,70,hamlet,1600\nLAERTES,72,hamlet,1600\nAs,73,hamlet,1600\nMy,73,hamlet,1600\nknow,73,hamlet,1600\nthem,75,hamlet,1600\nat,75,hamlet,1600\nnow,75,hamlet,1600\nwas,76,hamlet,1600\nHamlet,77,hamlet,1600\ncome,77,hamlet,1600\nlike,78,hamlet,1600\nA,80,hamlet,1600\nthey,80,hamlet,1600\ngood,82,hamlet,1600\nor,82,hamlet,1600\nGERTRUDE,83,hamlet,1600\nQUEEN,83,hamlet,1600\nthy,83,hamlet,1600\nfrom,84,hamlet,1600\nher,85,hamlet,1600\nLORD,87,hamlet,1600\nmore,90,hamlet,1600\nWhat,90,hamlet,1600\nthou,91,hamlet,1600\nno,98,hamlet,1600\nby,99,hamlet,1600\nit,361,hamlet,1600\nBut,107,hamlet,1600\nour,107,hamlet,1600\nall,108,hamlet,1600\nshall,109,hamlet,1600\nwe,110,hamlet,1600\nO,112,hamlet,1600\nPOLONIUS,114,hamlet,1600\nwhat,116,hamlet,1600\nof,630,hamlet,1600\non,120,hamlet,1600\nKING,121,hamlet,1600\nCLAUDIUS,122,hamlet,1600\nare,123,hamlet,1600\nto,635,hamlet,1600\nThat,125,hamlet,1600\ndo,127,hamlet,1600\nHORATIO,128,hamlet,1600\nTo,128,hamlet,1600\nin,400,hamlet,1600\nThe,148,hamlet,1600\nHAMLET,407,hamlet,1600\nso,152,hamlet,1600\nwill,152,hamlet,1600\nas,154,hamlet,1600\nbut,162,hamlet,1600\nhave,165,hamlet,1600\nhe,178,hamlet,1600\nfor,181,hamlet,1600\nmy,441,hamlet,1600\nand,706,hamlet,1600\nhim,197,hamlet,1600\nlord,207,hamlet,1600\na,466,hamlet,1600\nbe,212,hamlet,1600\nwith,224,hamlet,1600\nyour,225,hamlet,1600\nthe,995,hamlet,1600\nme,234,hamlet,1600\nyou,499,hamlet,1600\nthis,248,hamlet,1600\nintermission,1,macbeth,1603\nattended,1,macbeth,1603\naugment,1,macbeth,1603\nsurmise,1,macbeth,1603\nevent,1,macbeth,1603\nslope,1,macbeth,1603\ngrandam,1,macbeth,1603\nassailable,1,macbeth,1603\ntold,1,macbeth,1603\nsleeve,1,macbeth,1603\nwashing,1,macbeth,1603\nunwelcome,1,macbeth,1603\nviewing,1,macbeth,1603\ndirest,1,macbeth,1603\nstaves,1,macbeth,1603\nReigns,1,macbeth,1603\nparted,1,macbeth,1603\nname's,1,macbeth,1603\nsnares,1,macbeth,1603\nhalfworld,1,macbeth,1603\nmeek,1,macbeth,1603\nwitness'd,1,macbeth,1603\nswords,1,macbeth,1603\nguise,1,macbeth,1603\nhappier,1,macbeth,1603\nrebuked,1,macbeth,1603\nconfused,1,macbeth,1603\ninvisible,1,macbeth,1603\naddress'd,1,macbeth,1603\njoin,1,macbeth,1603\ncoign,1,macbeth,1603\nports,1,macbeth,1603\nyawning,1,macbeth,1603\nVaulting,1,macbeth,1603\nfurbish'd,1,macbeth,1603\nbasis,1,macbeth,1603\nmarrowless,1,macbeth,1603\ntook,1,macbeth,1603\ninfected,1,macbeth,1603\necho,1,macbeth,1603\nthou'dst,1,macbeth,1603\ndames,1,macbeth,1603\ncomposition,1,macbeth,1603\nmotion,1,macbeth,1603\nLoves,1,macbeth,1603\nDitch,1,macbeth,1603\nassay,1,macbeth,1603\ndireful,1,macbeth,1603\nHead,1,macbeth,1603\ntremble,1,macbeth,1603\nweary,1,macbeth,1603\ncontradict,1,macbeth,1603\n'ild,1,macbeth,1603\nwears,1,macbeth,1603\nprophet,1,macbeth,1603\nplanted,1,macbeth,1603\nrat,1,macbeth,1603\nespecially,1,macbeth,1603\nvizards,1,macbeth,1603\ntreasure,1,macbeth,1603\nDays,1,macbeth,1603\nalike,1,macbeth,1603\nWhole,1,macbeth,1603\nshadows,1,macbeth,1603\nadvantage,1,macbeth,1603\nran,1,macbeth,1603\nFit,1,macbeth,1603\nwarders',1,macbeth,1603\nbroth,1,macbeth,1603\nEye,1,macbeth,1603\ncannons,1,macbeth,1603\nrock,1,macbeth,1603\nConvert,1,macbeth,1603\nMessengers,1,macbeth,1603\ndistill'd,1,macbeth,1603\nconsequences,1,macbeth,1603\nsleep',1,macbeth,1603\nexploits,1,macbeth,1603\noffended,1,macbeth,1603\nwren,1,macbeth,1603\nConfusion,1,macbeth,1603\nInfirm,1,macbeth,1603\nrobe,1,macbeth,1603\nmend,1,macbeth,1603\ndoubtful,1,macbeth,1603\nwestern,1,macbeth,1603\nsteals,1,macbeth,1603\nsainted,1,macbeth,1603\nroar,1,macbeth,1603\nassistance,1,macbeth,1603\nmuse,1,macbeth,1603\nspace,1,macbeth,1603\ndecision,1,macbeth,1603\nDoubly,1,macbeth,1603\nfrieze,1,macbeth,1603\nagitation,1,macbeth,1603\nconstruction,1,macbeth,1603\nheld,1,macbeth,1603\ndrowse,1,macbeth,1603\nsleeps,1,macbeth,1603\ndeservers,1,macbeth,1603\nLord's,1,macbeth,1603\nreserved,1,macbeth,1603\ndrowsy,1,macbeth,1603\nclears,1,macbeth,1603\nStay,1,macbeth,1603\ndeftly,1,macbeth,1603\nchimneys,1,macbeth,1603\ndisseat,1,macbeth,1603\nknoll'd,1,macbeth,1603\nflung,1,macbeth,1603\ncabin'd,1,macbeth,1603\ndash'd,1,macbeth,1603\nwrites,1,macbeth,1603\nslaughter'd,1,macbeth,1603\nHanging,1,macbeth,1603\npainted,1,macbeth,1603\npilot's,1,macbeth,1603\neasier,1,macbeth,1603\n'Come,1,macbeth,1603\nfinger,1,macbeth,1603\nBecame,1,macbeth,1603\nbounteous,1,macbeth,1603\nwherewith,1,macbeth,1603\nunderwrit,1,macbeth,1603\nsecurity,1,macbeth,1603\nprisoner,1,macbeth,1603\ngrim,1,macbeth,1603\nsighs,1,macbeth,1603\nHelp,1,macbeth,1603\nundaunted,1,macbeth,1603\nutterance,1,macbeth,1603\ncomest,1,macbeth,1603\ndrug,1,macbeth,1603\nhearted,1,macbeth,1603\ninstrument,1,macbeth,1603\nHell,1,macbeth,1603\nrid,1,macbeth,1603\nbrightest,1,macbeth,1603\nWife,1,macbeth,1603\nangels,1,macbeth,1603\nadvance,1,macbeth,1603\nsummer's,1,macbeth,1603\nvillanies,1,macbeth,1603\nstrangles,1,macbeth,1603\nappear,1,macbeth,1603\nunderstand,1,macbeth,1603\nUnknown,1,macbeth,1603\nmartlet,1,macbeth,1603\nDistinguishes,1,macbeth,1603\nstrangled,1,macbeth,1603\nweighty,1,macbeth,1603\npies,1,macbeth,1603\nsigns,1,macbeth,1603\nnought,1,macbeth,1603\nworms,1,macbeth,1603\nthirty,1,macbeth,1603\nlapp'd,1,macbeth,1603\ncrickets,1,macbeth,1603\nbeldams,1,macbeth,1603\nmalicious,1,macbeth,1603\nrue,1,macbeth,1603\nadvise,1,macbeth,1603\nodds,1,macbeth,1603\nworm's,1,macbeth,1603\npleasures,1,macbeth,1603\nstools,1,macbeth,1603\nErr,1,macbeth,1603\nBegan,1,macbeth,1603\nthirst,1,macbeth,1603\nRaze,1,macbeth,1603\norphans,1,macbeth,1603\njuggling,1,macbeth,1603\nremain,1,macbeth,1603\ninvested,1,macbeth,1603\nsurgeons,1,macbeth,1603\njoys,1,macbeth,1603\nabound,1,macbeth,1603\nGeese,1,macbeth,1603\nearls,1,macbeth,1603\nGolden,1,macbeth,1603\nUproar,1,macbeth,1603\nPERSONAE,1,macbeth,1603\ncard,1,macbeth,1603\nLight,1,macbeth,1603\ngruel,1,macbeth,1603\nclamorous,1,macbeth,1603\ngermens,1,macbeth,1603\ncool'd,1,macbeth,1603\nbaited,1,macbeth,1603\nHorrible,1,macbeth,1603\nLesser,1,macbeth,1603\nsoliciting,1,macbeth,1603\nhurlyburly's,1,macbeth,1603\nthumb,1,macbeth,1603\nlaced,1,macbeth,1603\nbridegroom,1,macbeth,1603\nquench'd,1,macbeth,1603\nperformance,1,macbeth,1603\nshrieks,1,macbeth,1603\nbeneath,1,macbeth,1603\nintemperance,1,macbeth,1603\nplague,1,macbeth,1603\ntiger's,1,macbeth,1603\nSoldier,1,macbeth,1603\nVIII,1,macbeth,1603\nreign,1,macbeth,1603\nchid,1,macbeth,1603\nalarm,1,macbeth,1603\nseven,1,macbeth,1603\npreys,1,macbeth,1603\ngraced,1,macbeth,1603\ngiant's,1,macbeth,1603\nBeelzebub,1,macbeth,1603\nsad,1,macbeth,1603\nsag,1,macbeth,1603\ntarrying,1,macbeth,1603\nruin's,1,macbeth,1603\ncamp,1,macbeth,1603\nWiped,1,macbeth,1603\nreconciled,1,macbeth,1603\nsole,1,macbeth,1603\nBloody,1,macbeth,1603\ngrove,1,macbeth,1603\nthousands,1,macbeth,1603\nsold,1,macbeth,1603\nconfusion,1,macbeth,1603\nSignifying,1,macbeth,1603\nYoung,1,macbeth,1603\nmatters,1,macbeth,1603\ntopple,1,macbeth,1603\ngrown,1,macbeth,1603\nbearing,1,macbeth,1603\ntost,1,macbeth,1603\nentrails,1,macbeth,1603\nCool,1,macbeth,1603\ndance,1,macbeth,1603\nbuffets,1,macbeth,1603\nbackward,1,macbeth,1603\ninhabit,1,macbeth,1603\nrhubarb,1,macbeth,1603\nhour's,1,macbeth,1603\nbathe,1,macbeth,1603\ncall'st,1,macbeth,1603\nriddles,1,macbeth,1603\nsorrows,1,macbeth,1603\nTongue,1,macbeth,1603\nopposed,1,macbeth,1603\nmongrels,1,macbeth,1603\ncorner,1,macbeth,1603\nlosest,1,macbeth,1603\ncrying,1,macbeth,1603\nlime,1,macbeth,1603\nincensed,1,macbeth,1603\nmind's,1,macbeth,1603\nlily,1,macbeth,1603\ncaps,1,macbeth,1603\nbrother,1,macbeth,1603\nKeep,1,macbeth,1603\ndrab,1,macbeth,1603\nafterwards,1,macbeth,1603\nprophesying,1,macbeth,1603\nplight,1,macbeth,1603\novercome,1,macbeth,1603\nfunction,1,macbeth,1603\nstalls,1,macbeth,1603\nWoe,1,macbeth,1603\nDireness,1,macbeth,1603\nConduct,1,macbeth,1603\nOurself,1,macbeth,1603\nFled,1,macbeth,1603\nseemeth,1,macbeth,1603\nvoices,1,macbeth,1603\ndiminutive,1,macbeth,1603\nassassination,1,macbeth,1603\nInfected,1,macbeth,1603\nmadness,1,macbeth,1603\nOutrun,1,macbeth,1603\nrepetition,1,macbeth,1603\nsacrilegious,1,macbeth,1603\npaper,1,macbeth,1603\neclipse,1,macbeth,1603\nofficers,1,macbeth,1603\nrides,1,macbeth,1603\nHecate,1,macbeth,1603\nrebels',1,macbeth,1603\ngalloping,1,macbeth,1603\nFather'd,1,macbeth,1603\nglare,1,macbeth,1603\nSmells,1,macbeth,1603\nPale,1,macbeth,1603\ntoys,1,macbeth,1603\nfurious,1,macbeth,1603\nAvaunt,1,macbeth,1603\nfume,1,macbeth,1603\nblessed,1,macbeth,1603\nthumbs,1,macbeth,1603\nStuck,1,macbeth,1603\nlesser,1,macbeth,1603\nbecoming,1,macbeth,1603\nThoughts,1,macbeth,1603\nLizard's,1,macbeth,1603\nmoving,1,macbeth,1603\noftentimes,1,macbeth,1603\nGentle,1,macbeth,1603\nvulnerable,1,macbeth,1603\nWin,1,macbeth,1603\ndiscovery,1,macbeth,1603\nPerchance,1,macbeth,1603\ndeserve,1,macbeth,1603\nwishest,1,macbeth,1603\nsafeties,1,macbeth,1603\nocean,1,macbeth,1603\nadhere,1,macbeth,1603\nseeking,1,macbeth,1603\nPainted,1,macbeth,1603\nacted,1,macbeth,1603\nskirr,1,macbeth,1603\ncherubim,1,macbeth,1603\ncopy's,1,macbeth,1603\nhail'd,1,macbeth,1603\ndeeper,1,macbeth,1603\nconceive,1,macbeth,1603\nwarrant,1,macbeth,1603\nminions,1,macbeth,1603\nusurper's,1,macbeth,1603\nDuff,1,macbeth,1603\nSoundly,1,macbeth,1603\nProducing,1,macbeth,1603\nthink'st,1,macbeth,1603\nagent,1,macbeth,1603\nworthiest,1,macbeth,1603\nourself,1,macbeth,1603\nenkindle,1,macbeth,1603\ninvention,1,macbeth,1603\nsaying,1,macbeth,1603\nvice,1,macbeth,1603\nruby,1,macbeth,1603\nvirtuous,1,macbeth,1603\nmemorise,1,macbeth,1603\nObserve,1,macbeth,1603\nHerein,1,macbeth,1603\nflying,1,macbeth,1603\ntraveller,1,macbeth,1603\nvaporous,1,macbeth,1603\nslaughter,1,macbeth,1603\nshe'll,1,macbeth,1603\naudit,1,macbeth,1603\nchiefest,1,macbeth,1603\nunsure,1,macbeth,1603\ntrammel,1,macbeth,1603\nlaying,1,macbeth,1603\nMean,1,macbeth,1603\nunprepared,1,macbeth,1603\nspy,1,macbeth,1603\nconcern,1,macbeth,1603\nscore,1,macbeth,1603\nstealing,1,macbeth,1603\ncouncil,1,macbeth,1603\ncurtain'd,1,macbeth,1603\ndeliver,1,macbeth,1603\nMeeting,1,macbeth,1603\nembrace,1,macbeth,1603\ncradle,1,macbeth,1603\nthunders,1,macbeth,1603\nknives,1,macbeth,1603\n'Amen,1,macbeth,1603\nHimself,1,macbeth,1603\n'Thane,1,macbeth,1603\ndelivers,1,macbeth,1603\nsteps,1,macbeth,1603\nWake,1,macbeth,1603\nwassail,1,macbeth,1603\nnourisher,1,macbeth,1603\nconfident,1,macbeth,1603\nchildren's,1,macbeth,1603\nRevenges,1,macbeth,1603\nmurderer,1,macbeth,1603\nsworn,1,macbeth,1603\nwinds,1,macbeth,1603\nParticular,1,macbeth,1603\nbrinded,1,macbeth,1603\nGall,1,macbeth,1603\npictures,1,macbeth,1603\nWar,1,macbeth,1603\ncountenance,1,macbeth,1603\nscour,1,macbeth,1603\nEsteem,1,macbeth,1603\ndignities,1,macbeth,1603\nThanes,1,macbeth,1603\nhotter,1,macbeth,1603\nSudden,1,macbeth,1603\nhunter,1,macbeth,1603\nkindly,1,macbeth,1603\nbow'd,1,macbeth,1603\ndesign,1,macbeth,1603\ndeeply,1,macbeth,1603\nunmann'd,1,macbeth,1603\nnecks,1,macbeth,1603\nmiddle,1,macbeth,1603\nsky,1,macbeth,1603\ngroans,1,macbeth,1603\nhatch'd,1,macbeth,1603\nsets,1,macbeth,1603\nchildhood,1,macbeth,1603\nItself,1,macbeth,1603\nrarer,1,macbeth,1603\nsuck,1,macbeth,1603\nDoubtful,1,macbeth,1603\nwade,1,macbeth,1603\nmerciless,1,macbeth,1603\npieces,1,macbeth,1603\ndrugg'd,1,macbeth,1603\nbough,1,macbeth,1603\nHear'st,1,macbeth,1603\nLamentings,1,macbeth,1603\ncombustion,1,macbeth,1603\namiss,1,macbeth,1603\nvisitings,1,macbeth,1603\nskipping,1,macbeth,1603\nswelling,1,macbeth,1603\nperseverance,1,macbeth,1603\nminion,1,macbeth,1603\nshriek,1,macbeth,1603\nesteem,1,macbeth,1603\ntaught,1,macbeth,1603\nvile,1,macbeth,1603\neverlasting,1,macbeth,1603\nbenediction,1,macbeth,1603\nfelt,1,macbeth,1603\nContending,1,macbeth,1603\nthrusts,1,macbeth,1603\ndigestion,1,macbeth,1603\nwhereabout,1,macbeth,1603\nguide,1,macbeth,1603\nrung,1,macbeth,1603\nturning,1,macbeth,1603\nrump,1,macbeth,1603\nWast,1,macbeth,1603\nsnow,1,macbeth,1603\npoints,1,macbeth,1603\npiece,1,macbeth,1603\nhearts',1,macbeth,1603\nrecommends,1,macbeth,1603\nrancours,1,macbeth,1603\nbanquets,1,macbeth,1603\nprofess,1,macbeth,1603\ncrime,1,macbeth,1603\npalaces,1,macbeth,1603\nBe't,1,macbeth,1603\ntwelve,1,macbeth,1603\nBestride,1,macbeth,1603\nLife's,1,macbeth,1603\ncharm's,1,macbeth,1603\nOfficers,1,macbeth,1603\nswoln,1,macbeth,1603\nbore,1,macbeth,1603\nworlds,1,macbeth,1603\nchoughs,1,macbeth,1603\nrepentance,1,macbeth,1603\nstanchless,1,macbeth,1603\nshriek'd,1,macbeth,1603\nyell'd,1,macbeth,1603\nseeds,1,macbeth,1603\nTurn,1,macbeth,1603\nTurk,1,macbeth,1603\nlater,1,macbeth,1603\nWash,1,macbeth,1603\nLetting,1,macbeth,1603\ncombined,1,macbeth,1603\nimaginings,1,macbeth,1603\nPosters,1,macbeth,1603\nfalls,1,macbeth,1603\nfeat,1,macbeth,1603\nactions,1,macbeth,1603\nterms,1,macbeth,1603\nQuarrels,1,macbeth,1603\nencounter,1,macbeth,1603\nloose,1,macbeth,1603\nSuspicion,1,macbeth,1603\neldest,1,macbeth,1603\nlated,1,macbeth,1603\ntaper,1,macbeth,1603\nexpedition,1,macbeth,1603\nlatch,1,macbeth,1603\nrelation,1,macbeth,1603\nwhite,1,macbeth,1603\ncyme,1,macbeth,1603\nswoop,1,macbeth,1603\nwilling,1,macbeth,1603\nWherein,1,macbeth,1603\npearl,1,macbeth,1603\ntable's,1,macbeth,1603\nLeave,1,macbeth,1603\nWreck'd,1,macbeth,1603\nKing's,1,macbeth,1603\nfortitude,1,macbeth,1603\nhumble,1,macbeth,1603\noverthrown,1,macbeth,1603\nvanished,1,macbeth,1603\npalter,1,macbeth,1603\nKings,1,macbeth,1603\nclutch,1,macbeth,1603\nfearful,1,macbeth,1603\nfeed,1,macbeth,1603\nwatchers,1,macbeth,1603\nrush,1,macbeth,1603\ncease,1,macbeth,1603\nWitches',1,macbeth,1603\nhumbly,1,macbeth,1603\nbeaten,1,macbeth,1603\n'Faith,1,macbeth,1603\nindissoluble,1,macbeth,1603\nrelish,1,macbeth,1603\nclaim,1,macbeth,1603\nsaucy,1,macbeth,1603\nmasters,1,macbeth,1603\n'scaped,1,macbeth,1603\nblind,1,macbeth,1603\nbrief,1,macbeth,1603\nsuffering,1,macbeth,1603\nminutely,1,macbeth,1603\nfarmer,1,macbeth,1603\nWhereto,1,macbeth,1603\nspeaking,1,macbeth,1603\nRestrain,1,macbeth,1603\nrooky,1,macbeth,1603\nwink,1,macbeth,1603\nwhined,1,macbeth,1603\nstuff'd,1,macbeth,1603\nceremony,1,macbeth,1603\nprofessions,1,macbeth,1603\nflesh,1,macbeth,1603\nHence,1,macbeth,1603\nse'nnights,1,macbeth,1603\ntiger,1,macbeth,1603\nrend,1,macbeth,1603\nseparated,1,macbeth,1603\ndedicate,1,macbeth,1603\nrugs,1,macbeth,1603\nStop,1,macbeth,1603\nBlow,1,macbeth,1603\nlength,1,macbeth,1603\nknees,1,macbeth,1603\nrooks,1,macbeth,1603\nbattle's,1,macbeth,1603\nwant,1,macbeth,1603\nstead,1,macbeth,1603\nabjure,1,macbeth,1603\naccess,1,macbeth,1603\nfruitless,1,macbeth,1603\ndoom's,1,macbeth,1603\nHover,1,macbeth,1603\nknow'st,1,macbeth,1603\nUnfix,1,macbeth,1603\nRetreat,1,macbeth,1603\ntrifles,1,macbeth,1603\ntrifled,1,macbeth,1603\nseest,1,macbeth,1603\nsucceed,1,macbeth,1603\nAssisted,1,macbeth,1603\nbladed,1,macbeth,1603\ntalk'st,1,macbeth,1603\nDespair,1,macbeth,1603\ndevil's,1,macbeth,1603\nbidding,1,macbeth,1603\nmalady,1,macbeth,1603\nstop,1,macbeth,1603\nbarefaced,1,macbeth,1603\nrule,1,macbeth,1603\nmelted,1,macbeth,1603\nmeal,1,macbeth,1603\nboot,1,macbeth,1603\nfortifies,1,macbeth,1603\nmatter,1,macbeth,1603\ndomestic,1,macbeth,1603\nLadies,1,macbeth,1603\ncrazed,1,macbeth,1603\nwast,1,macbeth,1603\nfoisons,1,macbeth,1603\nentry,1,macbeth,1603\nbook,1,macbeth,1603\nyesterdays,1,macbeth,1603\ncarousing,1,macbeth,1603\nsuborn'd,1,macbeth,1603\nFrench,1,macbeth,1603\ntend,1,macbeth,1603\nsmoked,1,macbeth,1603\ncolour,1,macbeth,1603\nwrongly,1,macbeth,1603\ngripe,1,macbeth,1603\ncompared,1,macbeth,1603\ninfirmity,1,macbeth,1603\ndigg'd,1,macbeth,1603\nsceptre,1,macbeth,1603\nwayward,1,macbeth,1603\nImplored,1,macbeth,1603\nPoint,1,macbeth,1603\nintelligence,1,macbeth,1603\nunbecoming,1,macbeth,1603\no'erleap,1,macbeth,1603\nCurbing,1,macbeth,1603\nfairest,1,macbeth,1603\ntending,1,macbeth,1603\ndareful,1,macbeth,1603\n'Glamis,1,macbeth,1603\nwherefore,1,macbeth,1603\nyouths,1,macbeth,1603\nrefrain,1,macbeth,1603\nwarder,1,macbeth,1603\ncontriver,1,macbeth,1603\nanticipatest,1,macbeth,1603\nsnores,1,macbeth,1603\nHours,1,macbeth,1603\nslaves,1,macbeth,1603\nDiscomfort,1,macbeth,1603\ninvest,1,macbeth,1603\nTakes,1,macbeth,1603\no'ertook,1,macbeth,1603\nmortality,1,macbeth,1603\nNorways',1,macbeth,1603\nThrobs,1,macbeth,1603\nClamour'd,1,macbeth,1603\nThreaten,1,macbeth,1603\nhat,1,macbeth,1603\nbacks,1,macbeth,1603\nCommencing,1,macbeth,1603\neminence,1,macbeth,1603\nsweeten,1,macbeth,1603\nsweeter,1,macbeth,1603\ncrack,1,macbeth,1603\nseventh,1,macbeth,1603\nsign,1,macbeth,1603\noffend,1,macbeth,1603\nhay,1,macbeth,1603\nsigh,1,macbeth,1603\nstreams,1,macbeth,1603\ndelights,1,macbeth,1603\nAh,1,macbeth,1603\nAm,1,macbeth,1603\nbrandish'd,1,macbeth,1603\nwomanly,1,macbeth,1603\nmistrust,1,macbeth,1603\nforge,1,macbeth,1603\no'erleaps,1,macbeth,1603\nscarce,1,macbeth,1603\nHid,1,macbeth,1603\nmotives,1,macbeth,1603\nbirthdom,1,macbeth,1603\nstreaks,1,macbeth,1603\npendent,1,macbeth,1603\nblows,1,macbeth,1603\nHim,1,macbeth,1603\nStick,1,macbeth,1603\nbellman,1,macbeth,1603\nTreason,1,macbeth,1603\nbeggar'd,1,macbeth,1603\nhew,1,macbeth,1603\namong,1,macbeth,1603\nmurderers,1,macbeth,1603\nassault,1,macbeth,1603\nDismiss,1,macbeth,1603\nLo,1,macbeth,1603\nNature,1,macbeth,1603\nsensible,1,macbeth,1603\noverbold,1,macbeth,1603\ninclined,1,macbeth,1603\nsiege,1,macbeth,1603\npays,1,macbeth,1603\nlands,1,macbeth,1603\nflaws,1,macbeth,1603\nproof,1,macbeth,1603\nmortals',1,macbeth,1603\ntreble,1,macbeth,1603\narbitrate,1,macbeth,1603\nin't,1,macbeth,1603\nin's,1,macbeth,1603\ndenies,1,macbeth,1603\nImpostors,1,macbeth,1603\nbrings,1,macbeth,1603\nspeakers,1,macbeth,1603\nhawk'd,1,macbeth,1603\nOh,1,macbeth,1603\npitied,1,macbeth,1603\nforce,1,macbeth,1603\nhid,1,macbeth,1603\nhit,1,macbeth,1603\nblanched,1,macbeth,1603\nSomething,1,macbeth,1603\nmedicine,1,macbeth,1603\ndemerits,1,macbeth,1603\nflowers,1,macbeth,1603\nchaudron,1,macbeth,1603\napprove,1,macbeth,1603\nMacdonwald,1,macbeth,1603\nmeant,1,macbeth,1603\nfitful,1,macbeth,1603\nunruly,1,macbeth,1603\nPronounce,1,macbeth,1603\nesteem'st,1,macbeth,1603\nappoint,1,macbeth,1603\ngrease,1,macbeth,1603\nbraggart,1,macbeth,1603\n'Aroint,1,macbeth,1603\ndespair,1,macbeth,1603\nadded,1,macbeth,1603\npast,1,macbeth,1603\nabhorred,1,macbeth,1603\nnave,1,macbeth,1603\ntroops,1,macbeth,1603\npass,1,macbeth,1603\npig,1,macbeth,1603\ncracks,1,macbeth,1603\nenrage,1,macbeth,1603\npit,1,macbeth,1603\nproud,1,macbeth,1603\nhemlock,1,macbeth,1603\nstep,1,macbeth,1603\nague,1,macbeth,1603\nrepeat'st,1,macbeth,1603\nnice,1,macbeth,1603\nBoil,1,macbeth,1603\npot,1,macbeth,1603\nsparrows,1,macbeth,1603\nmonstrous,1,macbeth,1603\nnobly,1,macbeth,1603\nbadged,1,macbeth,1603\nprove,1,macbeth,1603\nGone,1,macbeth,1603\nchurches,1,macbeth,1603\npitfall,1,macbeth,1603\nSeems,1,macbeth,1603\nbecame,1,macbeth,1603\nquiet,1,macbeth,1603\nThence,1,macbeth,1603\nulcerous,1,macbeth,1603\nvalour's,1,macbeth,1603\ntitles,1,macbeth,1603\nreferred,1,macbeth,1603\nsurprise,1,macbeth,1603\nfoully,1,macbeth,1603\ntheft,1,macbeth,1603\ngod,1,macbeth,1603\nannoyance,1,macbeth,1603\nsought,1,macbeth,1603\nwhisperings,1,macbeth,1603\nwhore,1,macbeth,1603\neterne,1,macbeth,1603\ngold,1,macbeth,1603\ndolour,1,macbeth,1603\nMurder,1,macbeth,1603\nmetaphysical,1,macbeth,1603\ncatalogue,1,macbeth,1603\nbe'st,1,macbeth,1603\nweep,1,macbeth,1603\nsits,1,macbeth,1603\nchallenge,1,macbeth,1603\nreckless,1,macbeth,1603\nprocreant,1,macbeth,1603\nnipple,1,macbeth,1603\nproportion,1,macbeth,1603\nnigh,1,macbeth,1603\nOpen,1,macbeth,1603\nLiar,1,macbeth,1603\nbend,1,macbeth,1603\nabsent,1,macbeth,1603\nReceive,1,macbeth,1603\nurine,1,macbeth,1603\nmankind,1,macbeth,1603\nwhereby,1,macbeth,1603\nloads,1,macbeth,1603\ncavern,1,macbeth,1603\nbehind,1,macbeth,1603\nbury,1,macbeth,1603\ntumble,1,macbeth,1603\nSits,1,macbeth,1603\ncow'd,1,macbeth,1603\nbelt,1,macbeth,1603\ngoodly,1,macbeth,1603\nunfix,1,macbeth,1603\nsorts,1,macbeth,1603\nThou'lt,1,macbeth,1603\nkindness,1,macbeth,1603\nlabour's,1,macbeth,1603\nreeking,1,macbeth,1603\nornament,1,macbeth,1603\nHeath,1,macbeth,1603\nhomely,1,macbeth,1603\nthickens,1,macbeth,1603\ndetraction,1,macbeth,1603\ntables,1,macbeth,1603\nlearned,1,macbeth,1603\ngaze,1,macbeth,1603\nactual,1,macbeth,1603\nCleanse,1,macbeth,1603\nbent,1,macbeth,1603\ngory,1,macbeth,1603\nDying,1,macbeth,1603\nShoughs,1,macbeth,1603\nfrailties,1,macbeth,1603\ninsane,1,macbeth,1603\ninitiate,1,macbeth,1603\nperilous,1,macbeth,1603\nunlock,1,macbeth,1603\nSaint,1,macbeth,1603\nDied,1,macbeth,1603\nmonuments,1,macbeth,1603\ncaptains,1,macbeth,1603\nArabia,1,macbeth,1603\ngore,1,macbeth,1603\nDisdaining,1,macbeth,1603\nfee'd,1,macbeth,1603\ntranspose,1,macbeth,1603\nsieve,1,macbeth,1603\nsleights,1,macbeth,1603\nantic,1,macbeth,1603\nprobation,1,macbeth,1603\ndisbursed,1,macbeth,1603\ntwice,1,macbeth,1603\njewel,1,macbeth,1603\ntransport,1,macbeth,1603\nDidst,1,macbeth,1603\ndespise,1,macbeth,1603\nequivocate,1,macbeth,1603\nlimbeck,1,macbeth,1603\ntheme,1,macbeth,1603\ntedious,1,macbeth,1603\nverity,1,macbeth,1603\nsentinel,1,macbeth,1603\nscann'd,1,macbeth,1603\ndiscomfort,1,macbeth,1603\nShakes,1,macbeth,1603\nMerciful,1,macbeth,1603\nrawness,1,macbeth,1603\npreserve,1,macbeth,1603\ngown,1,macbeth,1603\nEnough,1,macbeth,1603\nadmired,1,macbeth,1603\nWhate'er,1,macbeth,1603\nswine,1,macbeth,1603\ndivine,1,macbeth,1603\nhair'd,1,macbeth,1603\nenterprise,1,macbeth,1603\nroof'd,1,macbeth,1603\nToad,1,macbeth,1603\njump,1,macbeth,1603\nbonfire,1,macbeth,1603\n'Twas,1,macbeth,1603\nnonpareil,1,macbeth,1603\nbeds,1,macbeth,1603\ncharnel,1,macbeth,1603\nsmack,1,macbeth,1603\nsing,1,macbeth,1603\nstretch,1,macbeth,1603\nfulness,1,macbeth,1603\ngrace's,1,macbeth,1603\nexposure,1,macbeth,1603\nheap'd,1,macbeth,1603\ncalling,1,macbeth,1603\ngash,1,macbeth,1603\nturns,1,macbeth,1603\nbrew'd,1,macbeth,1603\nAuthorized,1,macbeth,1603\nuplifted,1,macbeth,1603\nharbinger,1,macbeth,1603\nhurts,1,macbeth,1603\nChief,1,macbeth,1603\ncrowned,1,macbeth,1603\nscorpions,1,macbeth,1603\ncrowns,1,macbeth,1603\njealousies,1,macbeth,1603\nanointed,1,macbeth,1603\nchafes,1,macbeth,1603\nquite,1,macbeth,1603\njointly,1,macbeth,1603\nsleepers,1,macbeth,1603\nsolemn,1,macbeth,1603\nnoblemen,1,macbeth,1603\nghost,1,macbeth,1603\nsanctity,1,macbeth,1603\neagles,1,macbeth,1603\ntaints,1,macbeth,1603\nsolely,1,macbeth,1603\ninterdiction,1,macbeth,1603\nsail,1,macbeth,1603\nprophetic,1,macbeth,1603\ndeer,1,macbeth,1603\nstay'd,1,macbeth,1603\naffection,1,macbeth,1603\nProfit,1,macbeth,1603\nharness,1,macbeth,1603\nSewer,1,macbeth,1603\nCountry,1,macbeth,1603\nbetray,1,macbeth,1603\nha,1,macbeth,1603\nmagic,1,macbeth,1603\naim,1,macbeth,1603\nMethought,1,macbeth,1603\nUnreal,1,macbeth,1603\nresolute,1,macbeth,1603\ndoff,1,macbeth,1603\nartificial,1,macbeth,1603\nmurky,1,macbeth,1603\nsatisfy,1,macbeth,1603\nraise,1,macbeth,1603\ntreatise,1,macbeth,1603\nburial,1,macbeth,1603\nrepent,1,macbeth,1603\nBest,1,macbeth,1603\njewels,1,macbeth,1603\n'Give,1,macbeth,1603\ntruest,1,macbeth,1603\nloon,1,macbeth,1603\nAdvise,1,macbeth,1603\ncasing,1,macbeth,1603\ndebt,1,macbeth,1603\nwreck,1,macbeth,1603\nstool,1,macbeth,1603\nMaking,1,macbeth,1603\nBless,1,macbeth,1603\nWanton,1,macbeth,1603\ntongued,1,macbeth,1603\nmurderous,1,macbeth,1603\nnewer,1,macbeth,1603\nshag,1,macbeth,1603\nlegs,1,macbeth,1603\nyew,1,macbeth,1603\nUnless,1,macbeth,1603\ndwell,1,macbeth,1603\nharbingers,1,macbeth,1603\nExcite,1,macbeth,1603\nplayer,1,macbeth,1603\nwhereon,1,macbeth,1603\nstone,1,macbeth,1603\nstruts,1,macbeth,1603\ninforms,1,macbeth,1603\ndignity,1,macbeth,1603\ndeaf,1,macbeth,1603\nvictory,1,macbeth,1603\nSafe,1,macbeth,1603\nFeed,1,macbeth,1603\npluck'd,1,macbeth,1603\ngild,1,macbeth,1603\nvault,1,macbeth,1603\ndrain,1,macbeth,1603\ninterim,1,macbeth,1603\nseeming,1,macbeth,1603\nsuggestion,1,macbeth,1603\nredress,1,macbeth,1603\ngall,1,macbeth,1603\ndwarfish,1,macbeth,1603\nthralls,1,macbeth,1603\noutwardly,1,macbeth,1603\ntouch'd,1,macbeth,1603\nstole,1,macbeth,1603\n'Here,1,macbeth,1603\nburied,1,macbeth,1603\nenfold,1,macbeth,1603\nhouses,1,macbeth,1603\nspongy,1,macbeth,1603\nspeed,1,macbeth,1603\nvoluptuousness,1,macbeth,1603\nprediction,1,macbeth,1603\nDirectly,1,macbeth,1603\nshed,1,macbeth,1603\nreckon,1,macbeth,1603\nquarry,1,macbeth,1603\nslips,1,macbeth,1603\naccompany,1,macbeth,1603\nmanner,1,macbeth,1603\namend,1,macbeth,1603\nforget,1,macbeth,1603\nnewly,1,macbeth,1603\ntemperate,1,macbeth,1603\nNeptune's,1,macbeth,1603\nfarrow,1,macbeth,1603\nColmekill,1,macbeth,1603\ndoom,1,macbeth,1603\nidiot,1,macbeth,1603\nReturning,1,macbeth,1603\ncures,1,macbeth,1603\nknow't,1,macbeth,1603\nbetray's,1,macbeth,1603\nDispute,1,macbeth,1603\ncommitted,1,macbeth,1603\ndemi,1,macbeth,1603\ncommendations,1,macbeth,1603\nwisely,1,macbeth,1603\nlo,1,macbeth,1603\nunprovokes,1,macbeth,1603\ncrew,1,macbeth,1603\nboasting,1,macbeth,1603\ncrave,1,macbeth,1603\naside,1,macbeth,1603\nquarters,1,macbeth,1603\nTold,1,macbeth,1603\naffeer'd,1,macbeth,1603\nmasterpiece,1,macbeth,1603\nLays,1,macbeth,1603\nmilks,1,macbeth,1603\nunshrinking,1,macbeth,1603\nMay't,1,macbeth,1603\nattendant,1,macbeth,1603\nconfineless,1,macbeth,1603\nTook,1,macbeth,1603\nmansionry,1,macbeth,1603\ntemper,1,macbeth,1603\ncarved,1,macbeth,1603\nnear'st,1,macbeth,1603\nsorriest,1,macbeth,1603\nmorn,1,macbeth,1603\n'twould,1,macbeth,1603\npristine,1,macbeth,1603\ninn,1,macbeth,1603\nscream,1,macbeth,1603\nhadst,1,macbeth,1603\nstudied,1,macbeth,1603\nstout,1,macbeth,1603\nloud,1,macbeth,1603\nmiserable,1,macbeth,1603\nsettled,1,macbeth,1603\n'gins,1,macbeth,1603\nlevy,1,macbeth,1603\nWouldst,1,macbeth,1603\n'bove,1,macbeth,1603\ncommands,1,macbeth,1603\nadd,1,macbeth,1603\ncompunctious,1,macbeth,1603\nAcquaint,1,macbeth,1603\nresolved,1,macbeth,1603\nbruited,1,macbeth,1603\ndiamond,1,macbeth,1603\nServants,1,macbeth,1603\nlest,1,macbeth,1603\nstatute,1,macbeth,1603\npotent,1,macbeth,1603\nSennet,1,macbeth,1603\nafternoon,1,macbeth,1603\nbides,1,macbeth,1603\nfilling,1,macbeth,1603\ncontinent,1,macbeth,1603\nGrace,1,macbeth,1603\nconfessing,1,macbeth,1603\nWhoever,1,macbeth,1603\nshow'd,1,macbeth,1603\nsailor's,1,macbeth,1603\nforgot,1,macbeth,1603\nserious,1,macbeth,1603\nhoodwink,1,macbeth,1603\ncomposed,1,macbeth,1603\nProtest,1,macbeth,1603\njocund,1,macbeth,1603\nuntimely,1,macbeth,1603\nStones,1,macbeth,1603\njourney,1,macbeth,1603\nDevilish,1,macbeth,1603\nreads,1,macbeth,1603\npure,1,macbeth,1603\nappease,1,macbeth,1603\ngoes't,1,macbeth,1603\nBlessing,1,macbeth,1603\nclimb,1,macbeth,1603\nwasteful,1,macbeth,1603\naccents,1,macbeth,1603\nevents,1,macbeth,1603\nhardly,1,macbeth,1603\nreasons,1,macbeth,1603\npersonal,1,macbeth,1603\nhare,1,macbeth,1603\nsoldiership,1,macbeth,1603\noutward,1,macbeth,1603\npark,1,macbeth,1603\nGorgon,1,macbeth,1603\nPerform,1,macbeth,1603\ncoveted,1,macbeth,1603\nblames,1,macbeth,1603\nparricide,1,macbeth,1603\npour'd,1,macbeth,1603\nsoldier's,1,macbeth,1603\naye,1,macbeth,1603\nhall,1,macbeth,1603\nArmy,1,macbeth,1603\ncrow,1,macbeth,1603\nspells,1,macbeth,1603\npoorly,1,macbeth,1603\nmessenger,1,macbeth,1603\nNimbly,1,macbeth,1603\nexasperate,1,macbeth,1603\nknit,1,macbeth,1603\nnearer,1,macbeth,1603\nCall,1,macbeth,1603\ndisjoint,1,macbeth,1603\nnation,1,macbeth,1603\npall,1,macbeth,1603\nbloodier,1,macbeth,1603\ncontinually,1,macbeth,1603\nperform'd,1,macbeth,1603\nhusband's,1,macbeth,1603\nweeds,1,macbeth,1603\nCourage,1,macbeth,1603\nStart,1,macbeth,1603\nequivocates,1,macbeth,1603\nStars,1,macbeth,1603\nredoubled,1,macbeth,1603\nBeware,1,macbeth,1603\nPluck,1,macbeth,1603\nLady,1,macbeth,1603\nnobleness,1,macbeth,1603\nswiftest,1,macbeth,1603\nmew'd,1,macbeth,1603\ntrace,1,macbeth,1603\navoided,1,macbeth,1603\nmedicines,1,macbeth,1603\nfoggy,1,macbeth,1603\nschool,1,macbeth,1603\nremembrancer,1,macbeth,1603\nprovided,1,macbeth,1603\nparticulars,1,macbeth,1603\nmomentary,1,macbeth,1603\nscreams,1,macbeth,1603\nHum,1,macbeth,1603\nmultitudinous,1,macbeth,1603\nguardian,1,macbeth,1603\npluck,1,macbeth,1603\nwooingly,1,macbeth,1603\nAugurs,1,macbeth,1603\nmidnight,1,macbeth,1603\nmettled,1,macbeth,1603\nUntimely,1,macbeth,1603\nweeps,1,macbeth,1603\nfork,1,macbeth,1603\nTyrant,1,macbeth,1603\nform,1,macbeth,1603\nWaiting,1,macbeth,1603\nknocks,1,macbeth,1603\nnightly,1,macbeth,1603\npurged,1,macbeth,1603\nstealthy,1,macbeth,1603\nask,1,macbeth,1603\nSpiteful,1,macbeth,1603\nBell,1,macbeth,1603\npain,1,macbeth,1603\nhangs,1,macbeth,1603\nreturn'd,1,macbeth,1603\nwinter's,1,macbeth,1603\nkind'st,1,macbeth,1603\nchastise,1,macbeth,1603\nprofound,1,macbeth,1603\nforsworn,1,macbeth,1603\ndeceitful,1,macbeth,1603\nSilver'd,1,macbeth,1603\ntwain,1,macbeth,1603\nShipwrecking,1,macbeth,1603\nstern'st,1,macbeth,1603\nstones,1,macbeth,1603\nfear'd,1,macbeth,1603\nshot,1,macbeth,1603\nputs,1,macbeth,1603\nproper,1,macbeth,1603\ndelinquents,1,macbeth,1603\ngentry,1,macbeth,1603\nfaithful,1,macbeth,1603\nNought's,1,macbeth,1603\ncounsellors,1,macbeth,1603\nrough,1,macbeth,1603\nFell,1,macbeth,1603\nnapkins,1,macbeth,1603\nimages,1,macbeth,1603\nprepared,1,macbeth,1603\nagents,1,macbeth,1603\nWeary,1,macbeth,1603\nbeetle,1,macbeth,1603\nAlarum,1,macbeth,1603\npurgative,1,macbeth,1603\ncoursed,1,macbeth,1603\ngirl,1,macbeth,1603\nscarcely,1,macbeth,1603\nfresh,1,macbeth,1603\nravin'd,1,macbeth,1603\nmagot,1,macbeth,1603\nrightly,1,macbeth,1603\nbeards,1,macbeth,1603\nunrough,1,macbeth,1603\nfeverous,1,macbeth,1603\nnearly,1,macbeth,1603\navouches,1,macbeth,1603\ndeny't,1,macbeth,1603\nApproaching,1,macbeth,1603\ningratitude,1,macbeth,1603\nBlood,1,macbeth,1603\nsupernatural,1,macbeth,1603\nExpire,1,macbeth,1603\nShe'll,1,macbeth,1603\nopen'd,1,macbeth,1603\nArm,1,macbeth,1603\nuntitled,1,macbeth,1603\nScotch,1,macbeth,1603\nKind,1,macbeth,1603\naweary,1,macbeth,1603\nboughs,1,macbeth,1603\nprate,1,macbeth,1603\neighth,1,macbeth,1603\nAccursed,1,macbeth,1603\ndeadly,1,macbeth,1603\nfew,1,macbeth,1603\nfee,1,macbeth,1603\nbrainsickly,1,macbeth,1603\nActing,1,macbeth,1603\nAgain,1,macbeth,1603\nlees,1,macbeth,1603\ncheque,1,macbeth,1603\nsweetly,1,macbeth,1603\nSinful,1,macbeth,1603\nnet,1,macbeth,1603\nvisited,1,macbeth,1603\nhiss,1,macbeth,1603\nbroil,1,macbeth,1603\nusually,1,macbeth,1603\nScarf,1,macbeth,1603\ndisplaced,1,macbeth,1603\nBoundless,1,macbeth,1603\nPertains,1,macbeth,1603\nguess,1,macbeth,1603\nliver'd,1,macbeth,1603\nmoves,1,macbeth,1603\nlead,1,macbeth,1603\nhousekeeper,1,macbeth,1603\ncapital,1,macbeth,1603\nsurgery,1,macbeth,1603\nnobles,1,macbeth,1603\nwitch,1,macbeth,1603\nShould,1,macbeth,1603\nrequited,1,macbeth,1603\nScale,1,macbeth,1603\nyesterday,1,macbeth,1603\nharp'd,1,macbeth,1603\nThreescore,1,macbeth,1603\nfan,1,macbeth,1603\ncontented,1,macbeth,1603\ndelicate,1,macbeth,1603\nopinions,1,macbeth,1603\nCommand,1,macbeth,1603\nrender'd,1,macbeth,1603\nsurfeited,1,macbeth,1603\noccasion,1,macbeth,1603\ndudgeon,1,macbeth,1603\nlavish,1,macbeth,1603\nravell'd,1,macbeth,1603\nsmother'd,1,macbeth,1603\nmurderer's,1,macbeth,1603\nuniversal,1,macbeth,1603\nMadam,1,macbeth,1603\nravishing,1,macbeth,1603\ngarments,1,macbeth,1603\nbubbles,1,macbeth,1603\ndestiny,1,macbeth,1603\nmortified,1,macbeth,1603\nrelations,1,macbeth,1603\nappal,1,macbeth,1603\npeers,1,macbeth,1603\nconsider'd,1,macbeth,1603\nventure,1,macbeth,1603\nsweaten,1,macbeth,1603\nDemand,1,macbeth,1603\ncarried,1,macbeth,1603\nKeeps,1,macbeth,1603\ncompass'd,1,macbeth,1603\nrank,1,macbeth,1603\nAdder's,1,macbeth,1603\nempty,1,macbeth,1603\nTen,1,macbeth,1603\nnot',1,macbeth,1603\ndress'd,1,macbeth,1603\nreported,1,macbeth,1603\nCanst,1,macbeth,1603\nmousing,1,macbeth,1603\nwrench'd,1,macbeth,1603\ngriefs,1,macbeth,1603\ncompt,1,macbeth,1603\nshouldst,1,macbeth,1603\nconspirers,1,macbeth,1603\nmischief,1,macbeth,1603\nhoarse,1,macbeth,1603\nclamour,1,macbeth,1603\nsurveying,1,macbeth,1603\nGenius,1,macbeth,1603\nretires,1,macbeth,1603\nEnchanting,1,macbeth,1603\nbuilt,1,macbeth,1603\nunknown,1,macbeth,1603\nfourth,1,macbeth,1603\nhermits,1,macbeth,1603\nHall,1,macbeth,1603\nrooted,1,macbeth,1603\nnose,1,macbeth,1603\npatch,1,macbeth,1603\nmidst,1,macbeth,1603\napply,1,macbeth,1603\ntrenched,1,macbeth,1603\nemptying,1,macbeth,1603\nbeast,1,macbeth,1603\nfoundations,1,macbeth,1603\nfraught,1,macbeth,1603\nwakes,1,macbeth,1603\naction,1,macbeth,1603\nproceed,1,macbeth,1603\ncastles,1,macbeth,1603\nobscure,1,macbeth,1603\nclatter,1,macbeth,1603\nfaculties,1,macbeth,1603\nperturbation,1,macbeth,1603\nHenceforth,1,macbeth,1603\nShow'd,1,macbeth,1603\nAlarum'd,1,macbeth,1603\ndress,1,macbeth,1603\ngently,1,macbeth,1603\nrestless,1,macbeth,1603\nscale,1,macbeth,1603\nnoon,1,macbeth,1603\nshaking,1,macbeth,1603\nLoyal,1,macbeth,1603\ntemperance,1,macbeth,1603\ncaptivity,1,macbeth,1603\nslipp'd,1,macbeth,1603\nremedy,1,macbeth,1603\nbravely,1,macbeth,1603\nfaint,1,macbeth,1603\nlimited,1,macbeth,1603\nblunt,1,macbeth,1603\nknots,1,macbeth,1603\ncompanions,1,macbeth,1603\nJew,1,macbeth,1603\nteems,1,macbeth,1603\nmaws,1,macbeth,1603\ncandle,1,macbeth,1603\novertake,1,macbeth,1603\nbestows,1,macbeth,1603\nAlack,1,macbeth,1603\nGraymalkin,1,macbeth,1603\nobserved,1,macbeth,1603\ndescended,1,macbeth,1603\nbottom,1,macbeth,1603\nchaps,1,macbeth,1603\noppressed,1,macbeth,1603\ndisloyal,1,macbeth,1603\nClean,1,macbeth,1603\nroughest,1,macbeth,1603\nmeasureless,1,macbeth,1603\nwritten,1,macbeth,1603\nposterity,1,macbeth,1603\nchickens,1,macbeth,1603\nCourt,1,macbeth,1603\nunaccompanied,1,macbeth,1603\nSit,1,macbeth,1603\nwolves,1,macbeth,1603\nSir,1,macbeth,1603\nalter,1,macbeth,1603\nBleed,1,macbeth,1603\nAll's,1,macbeth,1603\ntowering,1,macbeth,1603\nstays,1,macbeth,1603\nyou'ld,1,macbeth,1603\nexiled,1,macbeth,1603\nConsider,1,macbeth,1603\nescapes,1,macbeth,1603\nAdd,1,macbeth,1603\nBalm,1,macbeth,1603\nPaddock,1,macbeth,1603\nTherefore,1,macbeth,1603\nScarcely,1,macbeth,1603\nmouth,1,macbeth,1603\ngouts,1,macbeth,1603\nplaces,1,macbeth,1603\nyouth,1,macbeth,1603\nstared,1,macbeth,1603\nshares,1,macbeth,1603\nrejoicing,1,macbeth,1603\nnavigation,1,macbeth,1603\npartner's,1,macbeth,1603\nsecret'st,1,macbeth,1603\nanger'd,1,macbeth,1603\nfreely,1,macbeth,1603\navouch,1,macbeth,1603\nquarter,1,macbeth,1603\nsay'st,1,macbeth,1603\nThyself,1,macbeth,1603\nleaving,1,macbeth,1603\nchild,1,macbeth,1603\nvanquish'd,1,macbeth,1603\nglimmers,1,macbeth,1603\nunusual,1,macbeth,1603\nblaspheming,1,macbeth,1603\nMacduff's,1,macbeth,1603\nConvey,1,macbeth,1603\ninform'd,1,macbeth,1603\nattire,1,macbeth,1603\neffect,1,macbeth,1603\nconsort,1,macbeth,1603\nspurn,1,macbeth,1603\nspurs,1,macbeth,1603\npretend,1,macbeth,1603\nperformances,1,macbeth,1603\ndoors,1,macbeth,1603\nother's,1,macbeth,1603\njovial,1,macbeth,1603\nFree,1,macbeth,1603\nblessings,1,macbeth,1603\nbenison,1,macbeth,1603\narrived,1,macbeth,1603\nnod,1,macbeth,1603\nteeth,1,macbeth,1603\ndusty,1,macbeth,1603\nbleeds,1,macbeth,1603\nstars,1,macbeth,1603\nconclusion,1,macbeth,1603\nmightst,1,macbeth,1603\nshield,1,macbeth,1603\nantidote,1,macbeth,1603\nphysics,1,macbeth,1603\nplead,1,macbeth,1603\npricking,1,macbeth,1603\npurposes,1,macbeth,1603\ntempest,1,macbeth,1603\nwatched,1,macbeth,1603\nfoolish,1,macbeth,1603\nRemains,1,macbeth,1603\nSons,1,macbeth,1603\nblanket,1,macbeth,1603\nstarting,1,macbeth,1603\nscepter'd,1,macbeth,1603\nsilenced,1,macbeth,1603\nreading,1,macbeth,1603\nCould,1,macbeth,1603\negg,1,macbeth,1603\nskin,1,macbeth,1603\nconcord,1,macbeth,1603\npresently,1,macbeth,1603\nchief,1,macbeth,1603\npersuades,1,macbeth,1603\nranks,1,macbeth,1603\nmars,1,macbeth,1603\nfountain,1,macbeth,1603\nmissives,1,macbeth,1603\nknits,1,macbeth,1603\nI'ld,1,macbeth,1603\ndisheartens,1,macbeth,1603\nwoe,1,macbeth,1603\nunattended,1,macbeth,1603\nquoth,1,macbeth,1603\nwitches,1,macbeth,1603\ngallowglasses,1,macbeth,1603\ninch,1,macbeth,1603\nvision,1,macbeth,1603\ncraves,1,macbeth,1603\nSiward's,1,macbeth,1603\nthief,1,macbeth,1603\nsolicits,1,macbeth,1603\nspecial,1,macbeth,1603\npauser,1,macbeth,1603\ndowny,1,macbeth,1603\nregister'd,1,macbeth,1603\nbenefit,1,macbeth,1603\n'Sir,1,macbeth,1603\namazement,1,macbeth,1603\nButtress,1,macbeth,1603\nplenteous,1,macbeth,1603\nmissing,1,macbeth,1603\ndishonours,1,macbeth,1603\nThriftless,1,macbeth,1603\ndischarge,1,macbeth,1603\ntrifle,1,macbeth,1603\nnaught,1,macbeth,1603\nheaviest,1,macbeth,1603\nundivulged,1,macbeth,1603\nProceeding,1,macbeth,1603\nbodements,1,macbeth,1603\ngospell'd,1,macbeth,1603\nborrow'd,1,macbeth,1603\napart,1,macbeth,1603\nsmoke,1,macbeth,1603\nwarranted,1,macbeth,1603\ndainty,1,macbeth,1603\nBeing,1,macbeth,1603\nWhatever,1,macbeth,1603\nletters,1,macbeth,1603\nchuck,1,macbeth,1603\nUnspeak,1,macbeth,1603\nscrew,1,macbeth,1603\nstorehouse,1,macbeth,1603\nmockery,1,macbeth,1603\nstake,1,macbeth,1603\ndivision,1,macbeth,1603\nFilthy,1,macbeth,1603\nmiraculous,1,macbeth,1603\nstableness,1,macbeth,1603\nblasted,1,macbeth,1603\nQuestion,1,macbeth,1603\nStepp'd,1,macbeth,1603\ndesires,1,macbeth,1603\nDismay'd,1,macbeth,1603\nwrath,1,macbeth,1603\nconstrained,1,macbeth,1603\ndesired,1,macbeth,1603\nliving,1,macbeth,1603\nunder't,1,macbeth,1603\nHowe'er,1,macbeth,1603\ntrembling,1,macbeth,1603\ntaste,1,macbeth,1603\npole,1,macbeth,1603\naffairs,1,macbeth,1603\nmaids,1,macbeth,1603\nunmake,1,macbeth,1603\nmalevolence,1,macbeth,1603\nproved,1,macbeth,1603\n'Twixt,1,macbeth,1603\nrenown,1,macbeth,1603\nsting,1,macbeth,1603\nwrongs,1,macbeth,1603\nplay'dst,1,macbeth,1603\nsubstances,1,macbeth,1603\nflies,1,macbeth,1603\nsalt,1,macbeth,1603\nreflection,1,macbeth,1603\nsake,1,macbeth,1603\nretire,1,macbeth,1603\nsafely,1,macbeth,1603\nfits,1,macbeth,1603\nRun,1,macbeth,1603\nprologues,1,macbeth,1603\nstamp,1,macbeth,1603\nenters,1,macbeth,1603\ndesolate,1,macbeth,1603\nroast,1,macbeth,1603\nWe'ld,1,macbeth,1603\nhateful,1,macbeth,1603\nprovoke,1,macbeth,1603\nreceipt,1,macbeth,1603\ncross'd,1,macbeth,1603\ncloister'd,1,macbeth,1603\npretence,1,macbeth,1603\ncurs,1,macbeth,1603\nconfined,1,macbeth,1603\nring,1,macbeth,1603\nmeasured,1,macbeth,1603\nOutside,1,macbeth,1603\nbuckle,1,macbeth,1603\nhappiness,1,macbeth,1603\nthird,1,macbeth,1603\ntraffic,1,macbeth,1603\nswimmers,1,macbeth,1603\nTuesday,1,macbeth,1603\nbanish'd,1,macbeth,1603\ngap,1,macbeth,1603\ncreation,1,macbeth,1603\nDeal,1,macbeth,1603\nallegiance,1,macbeth,1603\ncloset,1,macbeth,1603\nstabs,1,macbeth,1603\nbestow'd,1,macbeth,1603\nhanded,1,macbeth,1603\nclosed,1,macbeth,1603\nDear,1,macbeth,1603\nverities,1,macbeth,1603\nSaw,1,macbeth,1603\nhearers,1,macbeth,1603\nDesire,1,macbeth,1603\nwalls,1,macbeth,1603\nripe,1,macbeth,1603\nfalcon,1,macbeth,1603\nsalutation,1,macbeth,1603\nfiled,1,macbeth,1603\nimpediments,1,macbeth,1603\ndeath's,1,macbeth,1603\nrebellious,1,macbeth,1603\nsave,1,macbeth,1603\nremains,1,macbeth,1603\nintegrity,1,macbeth,1603\nsubtle,1,macbeth,1603\nRoss,1,macbeth,1603\nGolgotha,1,macbeth,1603\ntorture,1,macbeth,1603\nchampion,1,macbeth,1603\nwidows,1,macbeth,1603\nisles,1,macbeth,1603\nThine,1,macbeth,1603\nbaboon's,1,macbeth,1603\nPlease't,1,macbeth,1603\nunwiped,1,macbeth,1603\nfrog,1,macbeth,1603\n'Black,1,macbeth,1603\nThrow,1,macbeth,1603\nWeep,1,macbeth,1603\narmy,1,macbeth,1603\nimperfect,1,macbeth,1603\nbotches,1,macbeth,1603\nstaff,1,macbeth,1603\nspacious,1,macbeth,1603\nmould,1,macbeth,1603\nRemove,1,macbeth,1603\nswarm,1,macbeth,1603\ncommanded,1,macbeth,1603\ngrowing,1,macbeth,1603\nintent,1,macbeth,1603\nrevolts,1,macbeth,1603\nclogs,1,macbeth,1603\nyesty,1,macbeth,1603\nhidden,1,macbeth,1603\nRoot,1,macbeth,1603\nIndustrious,1,macbeth,1603\nhandle,1,macbeth,1603\nEast,1,macbeth,1603\nrage,1,macbeth,1603\npride,1,macbeth,1603\nbolter'd,1,macbeth,1603\nenrages,1,macbeth,1603\nConfounds,1,macbeth,1603\napace,1,macbeth,1603\nvessels,1,macbeth,1603\nFinger,1,macbeth,1603\nSister,1,macbeth,1603\nnext,1,macbeth,1603\nThree,1,macbeth,1603\ncheaply,1,macbeth,1603\nsaluted,1,macbeth,1603\nwalk'd,1,macbeth,1603\npester'd,1,macbeth,1603\npossess,1,macbeth,1603\nGiven,1,macbeth,1603\nShame,1,macbeth,1603\nthroats,1,macbeth,1603\nnewt,1,macbeth,1603\nGives,1,macbeth,1603\nsurprised,1,macbeth,1603\nfamiliar,1,macbeth,1603\nfix'd,1,macbeth,1603\nfact,1,macbeth,1603\ngladly,1,macbeth,1603\npossets,1,macbeth,1603\nhusbandry,1,macbeth,1603\nlivelong,1,macbeth,1603\ndreamt,1,macbeth,1603\nmettle,1,macbeth,1603\nseize,1,macbeth,1603\nserved,1,macbeth,1603\nconference,1,macbeth,1603\nmarry,1,macbeth,1603\nwhat's,1,macbeth,1603\nreports,1,macbeth,1603\nearthly,1,macbeth,1603\npoison,1,macbeth,1603\nCommends,1,macbeth,1603\nanger,1,macbeth,1603\nforeign,1,macbeth,1603\nlabour'd,1,macbeth,1603\nCraving,1,macbeth,1603\nhack'd,1,macbeth,1603\nwomb,1,macbeth,1603\nlechery,1,macbeth,1603\nunseam'd,1,macbeth,1603\nCancel,1,macbeth,1603\ndroop,1,macbeth,1603\ndisposition,1,macbeth,1603\nAccounted,1,macbeth,1603\nunlineal,1,macbeth,1603\nBellona's,1,macbeth,1603\nconsent,1,macbeth,1603\ndull,1,macbeth,1603\nnest,1,macbeth,1603\nSweno,1,macbeth,1603\nyoke,1,macbeth,1603\nunity,1,macbeth,1603\ngrain,1,macbeth,1603\ndrops,1,macbeth,1603\nharvest,1,macbeth,1603\nfry,1,macbeth,1603\nmarble,1,macbeth,1603\nope,1,macbeth,1603\nangry,1,macbeth,1603\nunfortunate,1,macbeth,1603\nNoble,1,macbeth,1603\ncomparisons,1,macbeth,1603\ntravelling,1,macbeth,1603\nwatching,1,macbeth,1603\novercharged,1,macbeth,1603\nWhispers,1,macbeth,1603\ngrasp,1,macbeth,1603\nStrike,1,macbeth,1603\nhideous,1,macbeth,1603\nfain,1,macbeth,1603\ncreate,1,macbeth,1603\nwholesome,1,macbeth,1603\nhunger,1,macbeth,1603\n'cause,1,macbeth,1603\nboiling,1,macbeth,1603\ndispatch'd,1,macbeth,1603\nAntony's,1,macbeth,1603\nevil,1,macbeth,1603\ndurst,1,macbeth,1603\nHarpier,1,macbeth,1603\nBeauteous,1,macbeth,1603\ndiseased,1,macbeth,1603\nweapons,1,macbeth,1603\ncelebrates,1,macbeth,1603\ngiving,1,macbeth,1603\nPromised,1,macbeth,1603\nestablish,1,macbeth,1603\nboneless,1,macbeth,1603\nfog,1,macbeth,1603\nAcheron,1,macbeth,1603\nfoe,1,macbeth,1603\namends,1,macbeth,1603\nconstancy,1,macbeth,1603\nquell,1,macbeth,1603\ncrests,1,macbeth,1603\nsurcease,1,macbeth,1603\nswells,1,macbeth,1603\nsafest,1,macbeth,1603\nrace,1,macbeth,1603\nmethinks,1,macbeth,1603\nwoeful,1,macbeth,1603\nStabbing,1,macbeth,1603\npurveyor,1,macbeth,1603\nreturns,1,macbeth,1603\nkites,1,macbeth,1603\nworm,1,macbeth,1603\nworn,1,macbeth,1603\nletter,1,macbeth,1603\nmultiplying,1,macbeth,1603\nequivocation,1,macbeth,1603\nheavily,1,macbeth,1603\nappals,1,macbeth,1603\nfighting,1,macbeth,1603\ndo't,1,macbeth,1603\nscotch'd,1,macbeth,1603\nwest,1,macbeth,1603\nfie,1,macbeth,1603\nMalice,1,macbeth,1603\nclept,1,macbeth,1603\nbear't,1,macbeth,1603\npredominance,1,macbeth,1603\nunjust,1,macbeth,1603\nflame,1,macbeth,1603\nofficer,1,macbeth,1603\ndues,1,macbeth,1603\nchalice,1,macbeth,1603\nrich,1,macbeth,1603\nBoy,1,macbeth,1603\nribs,1,macbeth,1603\nsafety,1,macbeth,1603\nsavage,1,macbeth,1603\ndamnation,1,macbeth,1603\nfloat,1,macbeth,1603\nLead,1,macbeth,1603\nhose,1,macbeth,1603\nbark,1,macbeth,1603\nspeculation,1,macbeth,1603\nthereby,1,macbeth,1603\nNear,1,macbeth,1603\nniggard,1,macbeth,1603\nbare,1,macbeth,1603\nnotion,1,macbeth,1603\nmansion,1,macbeth,1603\nneutral,1,macbeth,1603\ntail,1,macbeth,1603\nshows,1,macbeth,1603\nunsex,1,macbeth,1603\ndivers,1,macbeth,1603\nunfold,1,macbeth,1603\nwealth,1,macbeth,1603\nherself,1,macbeth,1603\nscepters,1,macbeth,1603\nan't,1,macbeth,1603\nlinen,1,macbeth,1603\npractise,1,macbeth,1603\ndepart,1,macbeth,1603\nbutcher,1,macbeth,1603\nprospect,1,macbeth,1603\nperceive,1,macbeth,1603\nbeware,1,macbeth,1603\nwives,1,macbeth,1603\nbath,1,macbeth,1603\nwaves,1,macbeth,1603\nFoul,1,macbeth,1603\ndisasters,1,macbeth,1603\nepicures,1,macbeth,1603\nCut,1,macbeth,1603\nditch,1,macbeth,1603\nFillet,1,macbeth,1603\nintrenchant,1,macbeth,1603\ndeliver'd,1,macbeth,1603\nbane,1,macbeth,1603\ncock,1,macbeth,1603\nfounded,1,macbeth,1603\nTartar's,1,macbeth,1603\nbank,1,macbeth,1603\ntrains,1,macbeth,1603\nslaughterous,1,macbeth,1603\nVery,1,macbeth,1603\nOftener,1,macbeth,1603\ncream,1,macbeth,1603\ndisorder,1,macbeth,1603\nsecrets,1,macbeth,1603\naccustomed,1,macbeth,1603\ndam,1,macbeth,1603\nbill,1,macbeth,1603\ntrumpets,1,macbeth,1603\nWelcome,1,macbeth,1603\nmischance,1,macbeth,1603\nmasterdom,1,macbeth,1603\nsoul's,1,macbeth,1603\ntale,1,macbeth,1603\npredominant,1,macbeth,1603\nlap,1,macbeth,1603\nCaesar,1,macbeth,1603\ntalk,1,macbeth,1603\ncalendar,1,macbeth,1603\nListen,1,macbeth,1603\nkite,1,macbeth,1603\nwitchcraft,1,macbeth,1603\nmales,1,macbeth,1603\nsource,1,macbeth,1603\nunbatter'd,1,macbeth,1603\naffliction,1,macbeth,1603\nDisguising,1,macbeth,1603\nbind,1,macbeth,1603\nspaniels,1,macbeth,1603\nprovoker,1,macbeth,1603\nEarl,1,macbeth,1603\nstroke,1,macbeth,1603\nhaunting,1,macbeth,1603\nwatchful,1,macbeth,1603\nRather,1,macbeth,1603\ngreets,1,macbeth,1603\nhomeward,1,macbeth,1603\nblisters,1,macbeth,1603\nLed,1,macbeth,1603\nrecorded,1,macbeth,1603\npledge,1,macbeth,1603\njutty,1,macbeth,1603\nholds,1,macbeth,1603\nshook,1,macbeth,1603\nswears,1,macbeth,1603\nquit,1,macbeth,1603\nshort,1,macbeth,1603\nclean,1,macbeth,1603\nholp,1,macbeth,1603\nprofesses,1,macbeth,1603\nhole,1,macbeth,1603\ninhabitants,1,macbeth,1603\ngreyhounds,1,macbeth,1603\ndangerous,1,macbeth,1603\nconcluded,1,macbeth,1603\ndishes,1,macbeth,1603\nLiver,1,macbeth,1603\nLives,1,macbeth,1603\ndevour,1,macbeth,1603\nfollows,1,macbeth,1603\ndefect,1,macbeth,1603\ndragon,1,macbeth,1603\ncounterfeit,1,macbeth,1603\nfeasts,1,macbeth,1603\ndunnest,1,macbeth,1603\nfires,1,macbeth,1603\nsmear,1,macbeth,1603\nunto,1,macbeth,1603\npeerless,1,macbeth,1603\nrequest,1,macbeth,1603\nloyal,1,macbeth,1603\nargument,1,macbeth,1603\nListening,1,macbeth,1603\nfatherless,1,macbeth,1603\nmurdering,1,macbeth,1603\ncondemn,1,macbeth,1603\nhangman's,1,macbeth,1603\nWool,1,macbeth,1603\nWhere's,1,macbeth,1603\nresolution,1,macbeth,1603\nvirtues,1,macbeth,1603\nhorsed,1,macbeth,1603\nAwake,1,macbeth,1603\nseal,1,macbeth,1603\nCompell'd,1,macbeth,1603\nfavours,1,macbeth,1603\nspeculative,1,macbeth,1603\nMasking,1,macbeth,1603\nTurn'd,1,macbeth,1603\nconjure,1,macbeth,1603\nbuilding,1,macbeth,1603\nlegions,1,macbeth,1603\nSeize,1,macbeth,1603\nNose,1,macbeth,1603\nalso,1,macbeth,1603\ncribb'd,1,macbeth,1603\nsatisfied,1,macbeth,1603\nStriding,1,macbeth,1603\nyellow,1,macbeth,1603\navaricious,1,macbeth,1603\nseas,1,macbeth,1603\nhairs,1,macbeth,1603\ninterest,1,macbeth,1603\nperfumes,1,macbeth,1603\ncommission,1,macbeth,1603\nhearty,1,macbeth,1603\nofferings,1,macbeth,1603\nsupplies,1,macbeth,1603\ncool,1,macbeth,1603\nalways,1,macbeth,1603\nconvince,1,macbeth,1603\ndrenched,1,macbeth,1603\nbreasts,1,macbeth,1603\nfairer,1,macbeth,1603\nauger,1,macbeth,1603\nlow,1,macbeth,1603\ndeepest,1,macbeth,1603\nsweat,1,macbeth,1603\nacts,1,macbeth,1603\ntugg'd,1,macbeth,1603\nkingdom,1,macbeth,1603\nneedful,1,macbeth,1603\nsuits,1,macbeth,1603\nrabble's,1,macbeth,1603\nhealing,1,macbeth,1603\nLuxurious,1,macbeth,1603\nthereto,1,macbeth,1603\nSeek,1,macbeth,1603\npronounced,1,macbeth,1603\naught,1,macbeth,1603\nseed,1,macbeth,1603\nsupplied,1,macbeth,1603\nmaterial,1,macbeth,1603\nUnmannerly,1,macbeth,1603\nfeeling,1,macbeth,1603\nsouth,1,macbeth,1603\ncousins,1,macbeth,1603\npredecessors,1,macbeth,1603\nshipman's,1,macbeth,1603\nhounds,1,macbeth,1603\nnerves,1,macbeth,1603\nlowliness,1,macbeth,1603\nunkindness,1,macbeth,1603\ncoz,1,macbeth,1603\nwrack,1,macbeth,1603\nelves,1,macbeth,1603\ncamest,1,macbeth,1603\nangerly,1,macbeth,1603\nunderstood,1,macbeth,1603\nchestnuts,1,macbeth,1603\nburned,1,macbeth,1603\nconclude,1,macbeth,1603\nvalued,1,macbeth,1603\nvessel,1,macbeth,1603\ndauntless,1,macbeth,1603\ntells,1,macbeth,1603\nsweep,1,macbeth,1603\nMine,1,macbeth,1603\nprophecy,1,macbeth,1603\nbattle,1,macbeth,1603\nhound,1,macbeth,1603\nResolve,1,macbeth,1603\ncounsell'd,1,macbeth,1603\ncorn,1,macbeth,1603\nincarnadine,1,macbeth,1603\nKilling,1,macbeth,1603\nsacred,1,macbeth,1603\nPull't,1,macbeth,1603\nmarshall'st,1,macbeth,1603\nmonkey,1,macbeth,1603\nheavenly,1,macbeth,1603\nmodest,1,macbeth,1603\ndeign,1,macbeth,1603\navoid,1,macbeth,1603\nbriefly,1,macbeth,1603\nloyalty,1,macbeth,1603\ndwindle,1,macbeth,1603\ngenerals,1,macbeth,1603\ngoat,1,macbeth,1603\nresounds,1,macbeth,1603\ncistern,1,macbeth,1603\nentreat,1,macbeth,1603\ncroaks,1,macbeth,1603\nscreens,1,macbeth,1603\nrebel's,1,macbeth,1603\ntied,1,macbeth,1603\njudicious,1,macbeth,1603\nSend,1,macbeth,1603\nbake,1,macbeth,1603\ngibbet,1,macbeth,1603\nmodern,1,macbeth,1603\nraven,1,macbeth,1603\nbelieved,1,macbeth,1603\nsell,1,macbeth,1603\nSinel's,1,macbeth,1603\nfranchised,1,macbeth,1603\nmoon's,1,macbeth,1603\naloud,1,macbeth,1603\nvulture,1,macbeth,1603\ncases,1,macbeth,1603\ndistracted,1,macbeth,1603\nHyrcan,1,macbeth,1603\nDevotion,1,macbeth,1603\nwhilst,1,macbeth,1603\noppose,1,macbeth,1603\ngloss,1,macbeth,1603\nEdward,1,macbeth,1603\nleg,1,macbeth,1603\nled,1,macbeth,1603\nMoves,1,macbeth,1603\nNeither,1,macbeth,1603\nentomb,1,macbeth,1603\nmated,1,macbeth,1603\nmother's,1,macbeth,1603\nTiger,1,macbeth,1603\nghosts,1,macbeth,1603\nAnte,1,macbeth,1603\nronyon,1,macbeth,1603\nimpedes,1,macbeth,1603\nhailed,1,macbeth,1603\nhowl's,1,macbeth,1603\nRoman,1,macbeth,1603\nAleppo,1,macbeth,1603\ndeceive,1,macbeth,1603\nATTENDANT,1,macbeth,1603\ngreeting,1,macbeth,1603\nherald,1,macbeth,1603\nhowl,1,macbeth,1603\nsow's,1,macbeth,1603\nCure,1,macbeth,1603\nbarren,1,macbeth,1603\ncountryman,1,macbeth,1603\nCreeps,1,macbeth,1603\nFears,1,macbeth,1603\nblast,1,macbeth,1603\nlaudable,1,macbeth,1603\nravin,1,macbeth,1603\nprotest,1,macbeth,1603\nConfronted,1,macbeth,1603\naright,1,macbeth,1603\naffair,1,macbeth,1603\nripp'd,1,macbeth,1603\nmethought,1,macbeth,1603\nslumbery,1,macbeth,1603\nhowl'd,1,macbeth,1603\npalpable,1,macbeth,1603\nCurses,1,macbeth,1603\nRebellion's,1,macbeth,1603\nlid,1,macbeth,1603\nfairies,1,macbeth,1603\nUsing,1,macbeth,1603\nchanced,1,macbeth,1603\nthreat,1,macbeth,1603\nborrower,1,macbeth,1603\nuntie,1,macbeth,1603\nWisdom,1,macbeth,1603\nuntil,1,macbeth,1603\nTwo,1,macbeth,1603\noblivious,1,macbeth,1603\nColme's,1,macbeth,1603\nsorely,1,macbeth,1603\ncredulous,1,macbeth,1603\nstorms,1,macbeth,1603\nbreech'd,1,macbeth,1603\nswinish,1,macbeth,1603\nchoke,1,macbeth,1603\nsleek,1,macbeth,1603\neffects,1,macbeth,1603\nclearness,1,macbeth,1603\nrhinoceros,1,macbeth,1603\nupbraid,1,macbeth,1603\nbatter'd,1,macbeth,1603\nseated,1,macbeth,1603\nvouch'd,1,macbeth,1603\npeak,1,macbeth,1603\npetty,1,macbeth,1603\nunguarded,1,macbeth,1603\nwrite,1,macbeth,1603\ncloudy,1,macbeth,1603\nmar,1,macbeth,1603\nmarvell'st,1,macbeth,1603\ntreasonous,1,macbeth,1603\nconfound,1,macbeth,1603\nmaw,1,macbeth,1603\nfiends,1,macbeth,1603\nsounded,1,macbeth,1603\nstarts,1,macbeth,1603\ngums,1,macbeth,1603\nvolume,1,macbeth,1603\ngains,1,macbeth,1603\npeal,1,macbeth,1603\nGreater,1,macbeth,1603\ntaint,1,macbeth,1603\nStrong,1,macbeth,1603\nTowards,1,macbeth,1603\n'scape,1,macbeth,1603\nfuture,1,macbeth,1603\nvices,1,macbeth,1603\nforced,1,macbeth,1603\nstrides,1,macbeth,1603\nunfelt,1,macbeth,1603\nlearn,1,macbeth,1603\nforces,1,macbeth,1603\nlease,1,macbeth,1603\ndistresses,1,macbeth,1603\nFinding,1,macbeth,1603\ndread,1,macbeth,1603\nSaucy,1,macbeth,1603\nratify,1,macbeth,1603\ngot'st,1,macbeth,1603\nsister,1,macbeth,1603\nSavagely,1,macbeth,1603\ntreacherous,1,macbeth,1603\nparallel,1,macbeth,1603\nglory,1,macbeth,1603\nupward,1,macbeth,1603\nhardy,1,macbeth,1603\nreadiness,1,macbeth,1603\ncensures,1,macbeth,1603\nDoes,1,macbeth,1603\ngrafted,1,macbeth,1603\nSwelter'd,1,macbeth,1603\ncomforted,1,macbeth,1603\npleasant,1,macbeth,1603\nExcept,1,macbeth,1603\nmerciful,1,macbeth,1603\npowerful,1,macbeth,1603\nAway,1,macbeth,1603\nconvinces,1,macbeth,1603\nEight,1,macbeth,1603\nflighty,1,macbeth,1603\n'You'll,1,macbeth,1603\non's,1,macbeth,1603\nphysic,1,macbeth,1603\ndollars,1,macbeth,1603\nhomage,1,macbeth,1603\no'erbear,1,macbeth,1603\nbeguile,1,macbeth,1603\nwhiles,1,macbeth,1603\nprowess,1,macbeth,1603\nMarry,1,macbeth,1603\nfever,1,macbeth,1603\nRussian,1,macbeth,1603\ngulf,1,macbeth,1603\nperfectest,1,macbeth,1603\nunbend,1,macbeth,1603\nWherever,1,macbeth,1603\nplucks,1,macbeth,1603\nsheathe,1,macbeth,1603\nvirtue,1,macbeth,1603\nfitness,1,macbeth,1603\nundeeded,1,macbeth,1603\nLooking,1,macbeth,1603\nillness,1,macbeth,1603\nhush,1,macbeth,1603\nfright,1,macbeth,1603\nrecompense,1,macbeth,1603\npeep,1,macbeth,1603\nbesides,1,macbeth,1603\nBrandish'd,1,macbeth,1603\nextend,1,macbeth,1603\nsilver,1,macbeth,1603\nRound,1,macbeth,1603\nlist,1,macbeth,1603\n'Hail,1,macbeth,1603\nwhey,1,macbeth,1603\nlave,1,macbeth,1603\nhurt,1,macbeth,1603\nsword's,1,macbeth,1603\nmummy,1,macbeth,1603\nresembled,1,macbeth,1603\nwere't,1,macbeth,1603\nLent,1,macbeth,1603\nslab,1,macbeth,1603\nappetite,1,macbeth,1603\nGrapples,1,macbeth,1603\ncompose,1,macbeth,1603\nleafy,1,macbeth,1603\noracles,1,macbeth,1603\npyramids,1,macbeth,1603\nconflict,1,macbeth,1603\nshade,1,macbeth,1603\nadage,1,macbeth,1603\ntry,1,macbeth,1603\ntransported,1,macbeth,1603\nsilent,1,macbeth,1603\nDeath,1,macbeth,1603\nsmacking,1,macbeth,1603\nassurance,1,macbeth,1603\nTherein,1,macbeth,1603\nmouths,1,macbeth,1603\nunsanctified,1,macbeth,1603\nolden,1,macbeth,1603\nhired,1,macbeth,1603\nolder,1,macbeth,1603\nrises,1,macbeth,1603\npayment,1,macbeth,1603\nchamberlains,1,macbeth,1603\nshaft,1,macbeth,1603\ntherewithal,1,macbeth,1603\nexpense,1,macbeth,1603\ncareless,1,macbeth,1603\nbrag,1,macbeth,1603\nfail'd,1,macbeth,1603\ndistemper'd,1,macbeth,1603\nknowings,1,macbeth,1603\ndog,1,macbeth,1603\nconfirm,1,macbeth,1603\nrespect,1,macbeth,1603\nwrathful,1,macbeth,1603\ninvites,1,macbeth,1603\nportable,1,macbeth,1603\nfenny,1,macbeth,1603\ninstructions,1,macbeth,1603\nmatrons,1,macbeth,1603\nhappily,1,macbeth,1603\namazedly,1,macbeth,1603\nGracious,1,macbeth,1603\nswallow,1,macbeth,1603\nperchance,1,macbeth,1603\nSteep'd,1,macbeth,1603\nLest,1,macbeth,1603\nwhetstone,1,macbeth,1603\nframe,1,macbeth,1603\nUnsafe,1,macbeth,1603\nweighs,1,macbeth,1603\npent,1,macbeth,1603\nprimrose,1,macbeth,1603\ndry,1,macbeth,1603\nseeling,1,macbeth,1603\nillusion,1,macbeth,1603\nneeded,1,macbeth,1603\nwonders,1,macbeth,1603\nReign,1,macbeth,1603\nDRAMATIS,1,macbeth,1603\nlamp,1,macbeth,1603\nflout,1,macbeth,1603\nsergeant,1,macbeth,1603\nDue,1,macbeth,1603\ntie,1,macbeth,1603\ngash'd,1,macbeth,1603\nguests,1,macbeth,1603\nowlet's,1,macbeth,1603\nphysician,1,macbeth,1603\nMalcolm's,1,macbeth,1603\nPhysic,1,macbeth,1603\narmed,1,macbeth,1603\nfrankly,1,macbeth,1603\nAngels,1,macbeth,1603\ndame,1,macbeth,1603\npass'd,1,macbeth,1603\nChristendom,1,macbeth,1603\nshoal,1,macbeth,1603\nlargess,1,macbeth,1603\nFail,1,macbeth,1603\ndamn,1,macbeth,1603\nflown,1,macbeth,1603\nRide,1,macbeth,1603\nsmell,1,macbeth,1603\nstol'n,1,macbeth,1603\ndew,1,macbeth,1603\nTarquin's,1,macbeth,1603\nBounty,1,macbeth,1603\nreconcile,1,macbeth,1603\nscales,1,macbeth,1603\nspeaker,1,macbeth,1603\nblaspheme,1,macbeth,1603\nCarried,1,macbeth,1603\ncouriers,1,macbeth,1603\ntake't,1,macbeth,1603\namen,1,macbeth,1603\nremorse,1,macbeth,1603\nchappy,1,macbeth,1603\nFalse,1,macbeth,1603\nOpens,1,macbeth,1603\ncandles,1,macbeth,1603\nparley,1,macbeth,1603\nDestroying,1,macbeth,1603\nflattering,1,macbeth,1603\nbids,1,macbeth,1603\nshape,1,macbeth,1603\ntread,1,macbeth,1603\nmarket,1,macbeth,1603\nspoils,1,macbeth,1603\nLechery,1,macbeth,1603\nWords,1,macbeth,1603\nSticks,1,macbeth,1603\nprattler,1,macbeth,1603\nshare,1,macbeth,1603\nshard,1,macbeth,1603\nchambers,1,macbeth,1603\ne'er,1,macbeth,1603\nskinny,1,macbeth,1603\nsharp,1,macbeth,1603\nvanish'd,1,macbeth,1603\nmonsters,1,macbeth,1603\nshark,1,macbeth,1603\ninventor,1,macbeth,1603\ndegrees,1,macbeth,1603\nhedge,1,macbeth,1603\nConfound,1,macbeth,1603\ndaughters,1,macbeth,1603\nPrepares,1,macbeth,1603\nbrave,2,macbeth,1603\ntreason,2,macbeth,1603\nkingdom's,2,macbeth,1603\ntroubled,2,macbeth,1603\nregard,2,macbeth,1603\ntroubles,2,macbeth,1603\nforbid,2,macbeth,1603\npity,2,macbeth,1603\nc,2,macbeth,1603\nNay,2,macbeth,1603\nsmiles,2,macbeth,1603\nred,2,macbeth,1603\nadvice,2,macbeth,1603\nguilt,2,macbeth,1603\nstation,2,macbeth,1603\nmistress,2,macbeth,1603\nAlas,2,macbeth,1603\nfollowing,2,macbeth,1603\nFie,2,macbeth,1603\nwicked,2,macbeth,1603\nbrows,2,macbeth,1603\npurge,2,macbeth,1603\npreparation,2,macbeth,1603\nstopp'd,2,macbeth,1603\njoy,2,macbeth,1603\ndire,2,macbeth,1603\nNorway,2,macbeth,1603\ntruly,2,macbeth,1603\nTell,2,macbeth,1603\nsleepy,2,macbeth,1603\ndarkness,2,macbeth,1603\nprosperous,2,macbeth,1603\nrumour,2,macbeth,1603\noffer,2,macbeth,1603\ntears,2,macbeth,1603\nfought,2,macbeth,1603\nnaked,2,macbeth,1603\nEre,2,macbeth,1603\nsore,2,macbeth,1603\nPour,2,macbeth,1603\ncheeks,2,macbeth,1603\nlightning,2,macbeth,1603\nattempt,2,macbeth,1603\nsong,2,macbeth,1603\nwalking,2,macbeth,1603\nbreach,2,macbeth,1603\nstirring,2,macbeth,1603\nmercy,2,macbeth,1603\nbirth,2,macbeth,1603\namazed,2,macbeth,1603\nAfter,2,macbeth,1603\nslept,2,macbeth,1603\nyourself,2,macbeth,1603\npine,2,macbeth,1603\ncharms,2,macbeth,1603\nsucceeding,2,macbeth,1603\ntrumpet,2,macbeth,1603\nheat,2,macbeth,1603\nwants,2,macbeth,1603\nhearing,2,macbeth,1603\nglass,2,macbeth,1603\nmaking,2,macbeth,1603\naddition,2,macbeth,1603\nteach,2,macbeth,1603\nwail,2,macbeth,1603\nbegan,2,macbeth,1603\npartner,2,macbeth,1603\nimpress,2,macbeth,1603\nstands,2,macbeth,1603\nsin,2,macbeth,1603\nkey,2,macbeth,1603\ntooth,2,macbeth,1603\nrubs,2,macbeth,1603\nwake,2,macbeth,1603\nsociety,2,macbeth,1603\nFarewell,2,macbeth,1603\nsubject,2,macbeth,1603\nplenty,2,macbeth,1603\n'I,2,macbeth,1603\ndisgrace,2,macbeth,1603\nlooks,2,macbeth,1603\npitiful,2,macbeth,1603\nstuff,2,macbeth,1603\nourselves,2,macbeth,1603\nheavens,2,macbeth,1603\nThese,2,macbeth,1603\nOut,2,macbeth,1603\nturn,2,macbeth,1603\nfellow,2,macbeth,1603\ncommon,2,macbeth,1603\nabsence,2,macbeth,1603\nruns,2,macbeth,1603\nrelate,2,macbeth,1603\nmark'd,2,macbeth,1603\nvanishes,2,macbeth,1603\nfeet,2,macbeth,1603\npromise,2,macbeth,1603\nsauce,2,macbeth,1603\ncleave,2,macbeth,1603\ngrow,2,macbeth,1603\nmalice,2,macbeth,1603\nupon't,2,macbeth,1603\nothers,2,macbeth,1603\nboil,2,macbeth,1603\nFly,2,macbeth,1603\nmirth,2,macbeth,1603\nedge,2,macbeth,1603\ngoose,2,macbeth,1603\nwise,2,macbeth,1603\ncustom,2,macbeth,1603\nsooth,2,macbeth,1603\nsense,2,macbeth,1603\nhorrors,2,macbeth,1603\nvoice,2,macbeth,1603\nbond,2,macbeth,1603\ndoubts,2,macbeth,1603\nmeat,2,macbeth,1603\nwash,2,macbeth,1603\nsteel,2,macbeth,1603\nmanly,2,macbeth,1603\nmanhood,2,macbeth,1603\nbright,2,macbeth,1603\npraises,2,macbeth,1603\ndeserves,2,macbeth,1603\nsick,2,macbeth,1603\nFaith,2,macbeth,1603\nI',2,macbeth,1603\nstir,2,macbeth,1603\nmorning,2,macbeth,1603\ndrown,2,macbeth,1603\nstrongly,2,macbeth,1603\nHold,2,macbeth,1603\nWhile,2,macbeth,1603\nfoes,2,macbeth,1603\n'Fear,2,macbeth,1603\nmeasure,2,macbeth,1603\nballs,2,macbeth,1603\nquarrel,2,macbeth,1603\nneither,2,macbeth,1603\ntherefore,2,macbeth,1603\nHie,2,macbeth,1603\nWhiles,2,macbeth,1603\neternal,2,macbeth,1603\nstrangers,2,macbeth,1603\ngovern,2,macbeth,1603\nalarum,2,macbeth,1603\nStill,2,macbeth,1603\nblown,2,macbeth,1603\nsmile,2,macbeth,1603\nbad,2,macbeth,1603\nbat,2,macbeth,1603\ncanst,2,macbeth,1603\nto't,2,macbeth,1603\nbegun,2,macbeth,1603\n'Murder,2,macbeth,1603\nfinds,2,macbeth,1603\ntear,2,macbeth,1603\nbeg,2,macbeth,1603\nsovereignty,2,macbeth,1603\nbless,2,macbeth,1603\nstrangely,2,macbeth,1603\ndeserved,2,macbeth,1603\nwither'd,2,macbeth,1603\ntreachery,2,macbeth,1603\nears,2,macbeth,1603\nheads,2,macbeth,1603\ntemple,2,macbeth,1603\nhaunt,2,macbeth,1603\nroyalty,2,macbeth,1603\nThou'rt,2,macbeth,1603\ngave,2,macbeth,1603\nsorry,2,macbeth,1603\nwas't,2,macbeth,1603\nsooner,2,macbeth,1603\nrebel,2,macbeth,1603\nbelief,2,macbeth,1603\nPresent,2,macbeth,1603\nPrithee,2,macbeth,1603\ngot,2,macbeth,1603\ncat,2,macbeth,1603\nscruples,2,macbeth,1603\nstruck,2,macbeth,1603\nawaked,2,macbeth,1603\nweak,2,macbeth,1603\nweal,2,macbeth,1603\ntreasons,2,macbeth,1603\nimperial,2,macbeth,1603\nStrange,2,macbeth,1603\nbeyond,2,macbeth,1603\nDies,2,macbeth,1603\nserpent,2,macbeth,1603\nfarewell,2,macbeth,1603\neaten,2,macbeth,1603\ncurse,2,macbeth,1603\nbuy,2,macbeth,1603\nused,2,macbeth,1603\nlonger,2,macbeth,1603\nMeet,2,macbeth,1603\nbegin,2,macbeth,1603\n'Hold,2,macbeth,1603\ndogs,2,macbeth,1603\nstory,2,macbeth,1603\ninstant,2,macbeth,1603\nforgive,2,macbeth,1603\nimage,2,macbeth,1603\nbreast,2,macbeth,1603\ngift,2,macbeth,1603\nservant,2,macbeth,1603\nfavour,2,macbeth,1603\npainting,2,macbeth,1603\nbeat,2,macbeth,1603\ngain,2,macbeth,1603\ntongues,2,macbeth,1603\nweigh'd,2,macbeth,1603\nCousins,2,macbeth,1603\nBesides,2,macbeth,1603\nliars,2,macbeth,1603\nlighted,2,macbeth,1603\ndestruction,2,macbeth,1603\ntorches,2,macbeth,1603\ndefence,2,macbeth,1603\nmemory,2,macbeth,1603\ncruelty,2,macbeth,1603\nforgotten,2,macbeth,1603\nrouse,2,macbeth,1603\noh,2,macbeth,1603\nask'd,2,macbeth,1603\nattending,2,macbeth,1603\ncommend,2,macbeth,1603\nplant,2,macbeth,1603\nGoes,2,macbeth,1603\nabide,2,macbeth,1603\nLive,2,macbeth,1603\naccount,2,macbeth,1603\nmingle,2,macbeth,1603\nage,2,macbeth,1603\nif't,2,macbeth,1603\nendure,2,macbeth,1603\ncauses,2,macbeth,1603\nmoon,2,macbeth,1603\nYes,2,macbeth,1603\nMACBETH's,2,macbeth,1603\nspent,2,macbeth,1603\nloved,2,macbeth,1603\nsightless,2,macbeth,1603\ngreater,2,macbeth,1603\nspot,2,macbeth,1603\ncling,2,macbeth,1603\nnatures,2,macbeth,1603\nmen's,2,macbeth,1603\nCame,2,macbeth,1603\nthrice,2,macbeth,1603\ngraves,2,macbeth,1603\nWhence,2,macbeth,1603\nbrought,2,macbeth,1603\nspeaks,2,macbeth,1603\nMost,2,macbeth,1603\nkeen,2,macbeth,1603\npull,2,macbeth,1603\nsinks,2,macbeth,1603\nhalf,2,macbeth,1603\nspur,2,macbeth,1603\nnatural,2,macbeth,1603\ntrade,2,macbeth,1603\ninterpret,2,macbeth,1603\nappears,2,macbeth,1603\ndeny,2,macbeth,1603\nfirstlings,2,macbeth,1603\ndrawn,2,macbeth,1603\njoyful,2,macbeth,1603\ncourse,2,macbeth,1603\nopen,2,macbeth,1603\nUnder,2,macbeth,1603\ncastle's,2,macbeth,1603\ncharmed,2,macbeth,1603\ndelight,2,macbeth,1603\npaid,2,macbeth,1603\nmock,2,macbeth,1603\nwalked,2,macbeth,1603\nowed,2,macbeth,1603\npace,2,macbeth,1603\nhate,2,macbeth,1603\ndreadful,2,macbeth,1603\nrings,2,macbeth,1603\nfrets,2,macbeth,1603\nfall'n,2,macbeth,1603\nrevenge,2,macbeth,1603\npush,2,macbeth,1603\nfancies,2,macbeth,1603\nfold,2,macbeth,1603\nnearest,2,macbeth,1603\nsecret,2,macbeth,1603\nKing,2,macbeth,1603\ningredients,2,macbeth,1603\nbanquet,2,macbeth,1603\nbought,2,macbeth,1603\ntheirs,2,macbeth,1603\nSirrah,2,macbeth,1603\nfed,2,macbeth,1603\nministers,2,macbeth,1603\njudgment,2,macbeth,1603\nsicken,2,macbeth,1603\nleaf,2,macbeth,1603\nmarch,2,macbeth,1603\nComes,2,macbeth,1603\nroom,2,macbeth,1603\nenow,2,macbeth,1603\nmain,2,macbeth,1603\nsyllable,2,macbeth,1603\n'Thus,2,macbeth,1603\nhill,2,macbeth,1603\nIreland,2,macbeth,1603\ncouldst,2,macbeth,1603\ndistance,2,macbeth,1603\nsickly,2,macbeth,1603\n'Gainst,2,macbeth,1603\nnightgown,2,macbeth,1603\nrepose,2,macbeth,1603\nApparitions,2,macbeth,1603\nHecate's,2,macbeth,1603\nwonder,2,macbeth,1603\nlocks,2,macbeth,1603\nPeace,2,macbeth,1603\n'Sleep,2,macbeth,1603\nbears,2,macbeth,1603\ntender,2,macbeth,1603\nbeard,2,macbeth,1603\nestate,2,macbeth,1603\nours,2,macbeth,1603\nbanners,2,macbeth,1603\nyou'll,2,macbeth,1603\nignorant,2,macbeth,1603\nApproach,2,macbeth,1603\nforest,2,macbeth,1603\nseveral,2,macbeth,1603\npowers,2,macbeth,1603\nprecious,2,macbeth,1603\nplaced,2,macbeth,1603\nrugged,2,macbeth,1603\nleaves,2,macbeth,1603\navarice,2,macbeth,1603\nfantastical,2,macbeth,1603\nmile,2,macbeth,1603\napproaches,2,macbeth,1603\nMakes,2,macbeth,1603\nbosoms,2,macbeth,1603\nalready,2,macbeth,1603\n'gainst,2,macbeth,1603\ncourage,2,macbeth,1603\ncoward,2,macbeth,1603\nmark,2,macbeth,1603\nlet's,2,macbeth,1603\nwon,2,macbeth,1603\nbrains,2,macbeth,1603\ngreatest,2,macbeth,1603\nbeside,2,macbeth,1603\nheaven's,2,macbeth,1603\nfather's,2,macbeth,1603\nholily,2,macbeth,1603\ngin,2,macbeth,1603\nhorrible,2,macbeth,1603\nfire,2,macbeth,1603\npassage,2,macbeth,1603\nCumberland,2,macbeth,1603\nwit,2,macbeth,1603\nmessage,2,macbeth,1603\ncure,2,macbeth,1603\nknife,2,macbeth,1603\nselfsame,2,macbeth,1603\nclock,2,macbeth,1603\ncrown'd,2,macbeth,1603\nThus,2,macbeth,1603\nThink,2,macbeth,1603\nearnest,2,macbeth,1603\nWorthy,2,macbeth,1603\narms,2,macbeth,1603\ntailor,2,macbeth,1603\nbetween,2,macbeth,1603\nkinsmen,2,macbeth,1603\ndanger,2,macbeth,1603\nhags,2,macbeth,1603\nserve,2,macbeth,1603\nends,2,macbeth,1603\nprick,2,macbeth,1603\ncursed,2,macbeth,1603\ndreams,2,macbeth,1603\nfaced,2,macbeth,1603\ncharged,2,macbeth,1603\nangel,2,macbeth,1603\nrequire,2,macbeth,1603\nlust,2,macbeth,1603\nsticking,2,macbeth,1603\nrain,2,macbeth,1603\nwolf,2,macbeth,1603\ntimely,2,macbeth,1603\nminister,2,macbeth,1603\ntable,2,macbeth,1603\ngrieve,2,macbeth,1603\nground,2,macbeth,1603\nTime,2,macbeth,1603\nhighly,2,macbeth,1603\nsnake,2,macbeth,1603\ncloud,2,macbeth,1603\nShake,2,macbeth,1603\ngrant,2,macbeth,1603\ntruths,2,macbeth,1603\nkinsman,2,macbeth,1603\ntune,2,macbeth,1603\ncompany,2,macbeth,1603\nlodged,2,macbeth,1603\nride,2,macbeth,1603\ncaution,2,macbeth,1603\nSweet,2,macbeth,1603\nminute,2,macbeth,1603\nMark,2,macbeth,1603\noffices,2,macbeth,1603\npassion,2,macbeth,1603\nAttend,2,macbeth,1603\ncontinue,2,macbeth,1603\nfolly,2,macbeth,1603\nthunder,2,macbeth,1603\nUnto,2,macbeth,1603\npoison'd,2,macbeth,1603\nuncle,2,macbeth,1603\npatient,2,macbeth,1603\nrecoil,2,macbeth,1603\nkiss,2,macbeth,1603\nlarge,2,macbeth,1603\nnamed,2,macbeth,1603\necstasy,2,macbeth,1603\narm'd,2,macbeth,1603\nprovokes,2,macbeth,1603\ncarry,2,macbeth,1603\nAlready,2,macbeth,1603\nEvery,2,macbeth,1603\npardon,2,macbeth,1603\nLay,2,macbeth,1603\ngreen,2,macbeth,1603\ngreet,2,macbeth,1603\nfamine,2,macbeth,1603\nrevolt,2,macbeth,1603\nWherefore,2,macbeth,1603\nthou'ldst,2,macbeth,1603\nrobes,2,macbeth,1603\nAnon,2,macbeth,1603\nprithee,2,macbeth,1603\nsear,2,macbeth,1603\nseat,2,macbeth,1603\nswear,2,macbeth,1603\nblade,2,macbeth,1603\nadieu,2,macbeth,1603\ndrunk,2,macbeth,1603\nPrince,2,macbeth,1603\nbaby,2,macbeth,1603\ngoodness,2,macbeth,1603\nseek,2,macbeth,1603\neither,2,macbeth,1603\npresence,2,macbeth,1603\nfellows,2,macbeth,1603\ntidings,2,macbeth,1603\nsweet,2,macbeth,1603\nTrue,2,macbeth,1603\nexpectation,2,macbeth,1603\nsetting,2,macbeth,1603\nPray,2,macbeth,1603\nconfirm'd,2,macbeth,1603\nGentlemen,2,macbeth,1603\nhums,2,macbeth,1603\npour,2,macbeth,1603\nheels,2,macbeth,1603\nblame,2,macbeth,1603\nwretched,2,macbeth,1603\nremove,2,macbeth,1603\nSent,2,macbeth,1603\n'God,2,macbeth,1603\npost,2,macbeth,1603\nbleeding,2,macbeth,1603\nalas,2,macbeth,1603\nsent,2,macbeth,1603\nseason,2,macbeth,1603\nmadam,2,macbeth,1603\nsafer,2,macbeth,1603\ninvite,2,macbeth,1603\nbrow,2,macbeth,1603\nslow,2,macbeth,1603\nswearers,2,macbeth,1603\nleast,2,macbeth,1603\nabroad,2,macbeth,1603\nspite,2,macbeth,1603\nconsequence,2,macbeth,1603\nsmiling,2,macbeth,1603\ndoing,2,macbeth,1603\nstraight,2,macbeth,1603\ntrusted,2,macbeth,1603\nAccording,2,macbeth,1603\nsovereign,2,macbeth,1603\nevils,2,macbeth,1603\nSince,2,macbeth,1603\nabuse,2,macbeth,1603\nbattlements,2,macbeth,1603\nconfess'd,2,macbeth,1603\npernicious,2,macbeth,1603\nwound,2,macbeth,1603\nstrokes,2,macbeth,1603\nlion,2,macbeth,1603\nSleep,2,macbeth,1603\npious,2,macbeth,1603\nVII,2,macbeth,1603\nsleeping,2,macbeth,1603\nbetimes,2,macbeth,1603\nharms,2,macbeth,1603\nhuman,2,macbeth,1603\nNorthumberland,2,macbeth,1603\ngoing,2,macbeth,1603\ncontent,2,macbeth,1603\nspring,2,macbeth,1603\nentrance,2,macbeth,1603\nwitness,2,macbeth,1603\nnumbers,2,macbeth,1603\nlaid,2,macbeth,1603\npillows,2,macbeth,1603\nasleep,2,macbeth,1603\nprovide,2,macbeth,1603\nhonour'd,2,macbeth,1603\ntoe,2,macbeth,1603\ndestroy,2,macbeth,1603\nsupp'd,2,macbeth,1603\nblessing,2,macbeth,1603\ndispatch,2,macbeth,1603\nlamb,2,macbeth,1603\nliest,2,macbeth,1603\nshift,2,macbeth,1603\nvenom,2,macbeth,1603\nfilthy,2,macbeth,1603\nflower,2,macbeth,1603\ntrees,2,macbeth,1603\nInverness,2,macbeth,1603\nFair,2,macbeth,1603\ncorporal,2,macbeth,1603\nawake,2,macbeth,1603\ndone't,2,macbeth,1603\ndirection,2,macbeth,1603\norder,2,macbeth,1603\n'They,2,macbeth,1603\nsway,2,macbeth,1603\nsummer,2,macbeth,1603\nkerns,3,macbeth,1603\ninstruments,3,macbeth,1603\nStands,3,macbeth,1603\nsuffer,3,macbeth,1603\ntaking,3,macbeth,1603\ndays,3,macbeth,1603\ndrop,3,macbeth,1603\nfor't,3,macbeth,1603\nleisure,3,macbeth,1603\nHear,3,macbeth,1603\nknell,3,macbeth,1603\nwoman's,3,macbeth,1603\nNew,3,macbeth,1603\nhonours,3,macbeth,1603\nWhether,3,macbeth,1603\ndagger,3,macbeth,1603\nhaste,3,macbeth,1603\nbones,3,macbeth,1603\nhighness',3,macbeth,1603\nsingle,3,macbeth,1603\nScone,3,macbeth,1603\nmere,3,macbeth,1603\ndisease,3,macbeth,1603\ntoil,3,macbeth,1603\nhanged,3,macbeth,1603\nfury,3,macbeth,1603\nthroat,3,macbeth,1603\nhorrid,3,macbeth,1603\ncalls,3,macbeth,1603\nabsolute,3,macbeth,1603\ndamned,3,macbeth,1603\ncast,3,macbeth,1603\nPoor,3,macbeth,1603\nstrength,3,macbeth,1603\nsoon,3,macbeth,1603\ngraces,3,macbeth,1603\ncharge,3,macbeth,1603\ndraw,3,macbeth,1603\ngrows,3,macbeth,1603\nbabes,3,macbeth,1603\ngolden,3,macbeth,1603\nfools,3,macbeth,1603\nwait,3,macbeth,1603\nsomething,3,macbeth,1603\nexecution,3,macbeth,1603\nspeeches,3,macbeth,1603\nGet,3,macbeth,1603\nbound,3,macbeth,1603\nbody,3,macbeth,1603\nsea,3,macbeth,1603\nbirds,3,macbeth,1603\nsummons,3,macbeth,1603\nsprites,3,macbeth,1603\nMusic,3,macbeth,1603\nread,3,macbeth,1603\naccursed,3,macbeth,1603\nreceived,3,macbeth,1603\nvanish,3,macbeth,1603\nways,3,macbeth,1603\nking's,3,macbeth,1603\nabove,3,macbeth,1603\nwine,3,macbeth,1603\nwing,3,macbeth,1603\nporter,3,macbeth,1603\nMight,3,macbeth,1603\nOne,3,macbeth,1603\nwish,3,macbeth,1603\nseem'd,3,macbeth,1603\npretty,3,macbeth,1603\nmean,3,macbeth,1603\noffice,3,macbeth,1603\nhe's,3,macbeth,1603\nknowledge,3,macbeth,1603\nlife's,3,macbeth,1603\npatience,3,macbeth,1603\nboy,3,macbeth,1603\ndeeds,3,macbeth,1603\nunnatural,3,macbeth,1603\nhopes,3,macbeth,1603\nStand,3,macbeth,1603\nHer,3,macbeth,1603\nwhole,3,macbeth,1603\napplaud,3,macbeth,1603\nequivocator,3,macbeth,1603\nAlmost,3,macbeth,1603\nIs't,3,macbeth,1603\nVI,3,macbeth,1603\nyourselves,3,macbeth,1603\n'Amen',3,macbeth,1603\ndost,3,macbeth,1603\nChild,3,macbeth,1603\nshadow,3,macbeth,1603\nPut,3,macbeth,1603\njust,3,macbeth,1603\nWhither,3,macbeth,1603\nvantage,3,macbeth,1603\nGod's,3,macbeth,1603\npromised,3,macbeth,1603\nCannot,3,macbeth,1603\naid,3,macbeth,1603\nneeds,3,macbeth,1603\ndear,3,macbeth,1603\nlong,3,macbeth,1603\napproach,3,macbeth,1603\nDuncan's,3,macbeth,1603\ndamn'd,3,macbeth,1603\nsometime,3,macbeth,1603\nloves,3,macbeth,1603\ngrooms,3,macbeth,1603\nho,3,macbeth,1603\nspeak'st,3,macbeth,1603\nall's,3,macbeth,1603\nlose,3,macbeth,1603\ntwenty,3,macbeth,1603\nready,3,macbeth,1603\nDouble,3,macbeth,1603\neasy,3,macbeth,1603\nhard,3,macbeth,1603\nfront,3,macbeth,1603\nshut,3,macbeth,1603\nmarching,3,macbeth,1603\narm,3,macbeth,1603\nfoot,3,macbeth,1603\nalive,3,macbeth,1603\nfool,3,macbeth,1603\ndismal,3,macbeth,1603\nfiend,3,macbeth,1603\ntyranny,3,macbeth,1603\nAttendant,3,macbeth,1603\nmayst,3,macbeth,1603\nye,3,macbeth,1603\narmour,3,macbeth,1603\nright,3,macbeth,1603\nundone,3,macbeth,1603\ntouch,3,macbeth,1603\nArt,3,macbeth,1603\nguest,3,macbeth,1603\nspoken,3,macbeth,1603\nInto,3,macbeth,1603\nwatch,3,macbeth,1603\njustice,3,macbeth,1603\nkeeps,3,macbeth,1603\nbroad,3,macbeth,1603\nrapt,3,macbeth,1603\nfaith,3,macbeth,1603\nnewest,3,macbeth,1603\ntraitors,3,macbeth,1603\nShe,3,macbeth,1603\nperform,3,macbeth,1603\ndares,3,macbeth,1603\nquestion,3,macbeth,1603\nyours,3,macbeth,1603\nSome,3,macbeth,1603\ntowards,3,macbeth,1603\nmilk,3,macbeth,1603\nsoldiers,3,macbeth,1603\nstart,3,macbeth,1603\ndidst,3,macbeth,1603\nslave,3,macbeth,1603\nblow,3,macbeth,1603\nmiss,3,macbeth,1603\nneed,3,macbeth,1603\nover,3,macbeth,1603\ngashes,3,macbeth,1603\nfirm,3,macbeth,1603\nones,3,macbeth,1603\nHautboys,3,macbeth,1603\nclose,3,macbeth,1603\nmurders,3,macbeth,1603\nsides,3,macbeth,1603\nwin,3,macbeth,1603\nWe'll,3,macbeth,1603\nheath,3,macbeth,1603\nmoment,3,macbeth,1603\nbelieve,3,macbeth,1603\nstage,3,macbeth,1603\nwar,3,macbeth,1603\nCan,3,macbeth,1603\nambition,3,macbeth,1603\nbleed,3,macbeth,1603\nfound,3,macbeth,1603\nsupper,3,macbeth,1603\nhappy,3,macbeth,1603\nhair,3,macbeth,1603\nHeaven,3,macbeth,1603\nfail,3,macbeth,1603\nfile,3,macbeth,1603\nminds,3,macbeth,1603\ndesert,3,macbeth,1603\nwounds,3,macbeth,1603\nfit,3,macbeth,1603\nne'er,3,macbeth,1603\nsundry,3,macbeth,1603\nFare,3,macbeth,1603\nbird,3,macbeth,1603\nmunch'd,3,macbeth,1603\ngentleman,3,macbeth,1603\nfast,3,macbeth,1603\nlay,3,macbeth,1603\ngentlemen,3,macbeth,1603\nwild,3,macbeth,1603\nwilt,3,macbeth,1603\nsights,3,macbeth,1603\nholy,3,macbeth,1603\nNorweyan,3,macbeth,1603\ncut,3,macbeth,1603\ngives,3,macbeth,1603\nprayers,3,macbeth,1603\nhearts,3,macbeth,1603\nalone,3,macbeth,1603\nbabe,3,macbeth,1603\nlook'd,3,macbeth,1603\nperson,3,macbeth,1603\ntree,3,macbeth,1603\nKnow,3,macbeth,1603\nsouls,3,macbeth,1603\nbade,3,macbeth,1603\nFire,3,macbeth,1603\ntorch,3,macbeth,1603\nNothing,3,macbeth,1603\nservants,3,macbeth,1603\neat,3,macbeth,1603\nRing,3,macbeth,1603\nmad,3,macbeth,1603\nafeard,3,macbeth,1603\nAnother,3,macbeth,1603\nwarlike,3,macbeth,1603\nmet,3,macbeth,1603\nlips,3,macbeth,1603\nliege,3,macbeth,1603\nMay,3,macbeth,1603\nWithout,3,macbeth,1603\ncontend,3,macbeth,1603\nattend,3,macbeth,1603\ndue,3,macbeth,1603\ncatch,3,macbeth,1603\nland,3,macbeth,1603\ntop,3,macbeth,1603\nshine,3,macbeth,1603\nToo,3,macbeth,1603\nTake,3,macbeth,1603\ngreatness,3,macbeth,1603\nshame,3,macbeth,1603\nkind,3,macbeth,1603\npronounce,3,macbeth,1603\nDescends,3,macbeth,1603\nspirit,3,macbeth,1603\nkill,3,macbeth,1603\nremembrance,3,macbeth,1603\nobedience,3,macbeth,1603\nlack,3,macbeth,1603\nThrice,3,macbeth,1603\nlady,3,macbeth,1603\ntimes,4,macbeth,1603\nspeech,4,macbeth,1603\nhorse,4,macbeth,1603\nday's,4,macbeth,1603\nvillain,4,macbeth,1603\nMust,4,macbeth,1603\nviolent,4,macbeth,1603\ndrum,4,macbeth,1603\nlaugh,4,macbeth,1603\nsoul,4,macbeth,1603\ntrust,4,macbeth,1603\nWhom,4,macbeth,1603\nbecome,4,macbeth,1603\nsons,4,macbeth,1603\nsaw,4,macbeth,1603\nline,4,macbeth,1603\ncheer,4,macbeth,1603\nOnly,4,macbeth,1603\ncame,4,macbeth,1603\nNor,4,macbeth,1603\nhereafter,4,macbeth,1603\n'twere,4,macbeth,1603\nwalk,4,macbeth,1603\nthrone,4,macbeth,1603\nscorn,4,macbeth,1603\nyield,4,macbeth,1603\nnine,4,macbeth,1603\nworth,4,macbeth,1603\nSuch,4,macbeth,1603\ncause,4,macbeth,1603\nsecond,4,macbeth,1603\ndoubt,4,macbeth,1603\nThanks,4,macbeth,1603\nworse,4,macbeth,1603\nbrain,4,macbeth,1603\nafter,4,macbeth,1603\ncries,4,macbeth,1603\nsun,4,macbeth,1603\nfeel,4,macbeth,1603\nservice,4,macbeth,1603\nbring,4,macbeth,1603\nwind,4,macbeth,1603\nnight's,4,macbeth,1603\nseems,4,macbeth,1603\nbold,4,macbeth,1603\nspoke,4,macbeth,1603\nsenses,4,macbeth,1603\nAn,4,macbeth,1603\npay,4,macbeth,1603\ncruel,4,macbeth,1603\nstay,4,macbeth,1603\nOn,4,macbeth,1603\nsince,4,macbeth,1603\nfatal,4,macbeth,1603\nLet's,4,macbeth,1603\nplay,4,macbeth,1603\nvaliant,4,macbeth,1603\nDrum,4,macbeth,1603\nwhose,4,macbeth,1603\nburn,4,macbeth,1603\npeople,4,macbeth,1603\nSpeak,4,macbeth,1603\nswift,4,macbeth,1603\npains,4,macbeth,1603\nHere's,4,macbeth,1603\nstood,4,macbeth,1603\nsafe,4,macbeth,1603\nhusband,4,macbeth,1603\nthyself,4,macbeth,1603\nSeyton,4,macbeth,1603\nmove,4,macbeth,1603\nill,4,macbeth,1603\nspend,4,macbeth,1603\nact,4,macbeth,1603\nvalour,4,macbeth,1603\nfield,4,macbeth,1603\npale,4,macbeth,1603\nhang,4,macbeth,1603\nfoul,4,macbeth,1603\npoint,4,macbeth,1603\nbosom,4,macbeth,1603\nbroke,4,macbeth,1603\nhaving,4,macbeth,1603\nhere's,4,macbeth,1603\nroot,4,macbeth,1603\noften,4,macbeth,1603\nKnock,4,macbeth,1603\nnote,4,macbeth,1603\nHang,4,macbeth,1603\nhide,4,macbeth,1603\nslain,4,macbeth,1603\nstrike,4,macbeth,1603\ncharm,4,macbeth,1603\nquickly,4,macbeth,1603\nSee,4,macbeth,1603\nhigh,4,macbeth,1603\nbubble,4,macbeth,1603\nend,4,macbeth,1603\nwrought,4,macbeth,1603\nthere's,4,macbeth,1603\nlabour,4,macbeth,1603\nfree,4,macbeth,1603\nbreed,4,macbeth,1603\nsame,4,macbeth,1603\ndoctor,4,macbeth,1603\ncourt,4,macbeth,1603\nbreak,4,macbeth,1603\nflight,4,macbeth,1603\nheavy,4,macbeth,1603\nowl,4,macbeth,1603\nnews,4,macbeth,1603\nSiward,4,macbeth,1603\ntakes,4,macbeth,1603\nowe,4,macbeth,1603\nwent,4,macbeth,1603\nwhence,4,macbeth,1603\nEven,4,macbeth,1603\nfair,4,macbeth,1603\ncried,4,macbeth,1603\nMake,4,macbeth,1603\nwork,4,macbeth,1603\nperfect,4,macbeth,1603\nhost,4,macbeth,1603\nqueen,4,macbeth,1603\nlived,4,macbeth,1603\nEach,4,macbeth,1603\nis't,4,macbeth,1603\nman's,4,macbeth,1603\nthousand,4,macbeth,1603\nclear,4,macbeth,1603\nthank,4,macbeth,1603\nstrong,4,macbeth,1603\ncountry's,4,macbeth,1603\nnights,4,macbeth,1603\nself,4,macbeth,1603\nnature's,4,macbeth,1603\nremember,4,macbeth,1603\nmakes,4,macbeth,1603\nmeeting,4,macbeth,1603\non't,4,macbeth,1603\nHe's,4,macbeth,1603\nsuccess,4,macbeth,1603\nbehold,4,macbeth,1603\nmight,4,macbeth,1603\nten,4,macbeth,1603\nenemy,4,macbeth,1603\nanswer,5,macbeth,1603\no'er,5,macbeth,1603\nhelp,5,macbeth,1603\nhealth,5,macbeth,1603\nwithal,5,macbeth,1603\nunder,5,macbeth,1603\nterrible,5,macbeth,1603\nworld,5,macbeth,1603\ncare,5,macbeth,1603\nhorror,5,macbeth,1603\ntoward,5,macbeth,1603\nsure,5,macbeth,1603\nanother,5,macbeth,1603\nnoise,5,macbeth,1603\nTheir,5,macbeth,1603\n't,5,macbeth,1603\nmother,5,macbeth,1603\nGHOST,5,macbeth,1603\nworst,5,macbeth,1603\nafraid,5,macbeth,1603\nkill'd,5,macbeth,1603\nthence,5,macbeth,1603\nsoldier,5,macbeth,1603\ntitle,5,macbeth,1603\nanon,5,macbeth,1603\nfriend,5,macbeth,1603\nOF,5,macbeth,1603\ninnocent,5,macbeth,1603\nGo,5,macbeth,1603\nmeans,5,macbeth,1603\npleasure,5,macbeth,1603\nHad,5,macbeth,1603\ngrief,5,macbeth,1603\nwear,5,macbeth,1603\nLike,5,macbeth,1603\ngate,5,macbeth,1603\nBoth,5,macbeth,1603\ndoor,5,macbeth,1603\nfeast,5,macbeth,1603\nBanquo's,5,macbeth,1603\nharm,5,macbeth,1603\nround,5,macbeth,1603\ncall'd,5,macbeth,1603\nchance,5,macbeth,1603\nthanks,5,macbeth,1603\nfar,5,macbeth,1603\nthanes,5,macbeth,1603\nMacbeth's,5,macbeth,1603\nAgainst,5,macbeth,1603\nindeed,5,macbeth,1603\nwater,5,macbeth,1603\nalmost,5,macbeth,1603\ngentle,5,macbeth,1603\nFlourish,5,macbeth,1603\nmajesty,5,macbeth,1603\nyoung,5,macbeth,1603\nLord,5,macbeth,1603\ngeneral,5,macbeth,1603\ndearest,5,macbeth,1603\nthick,5,macbeth,1603\ngrave,5,macbeth,1603\nformer,5,macbeth,1603\nSay,5,macbeth,1603\nAlarums,5,macbeth,1603\nreceive,5,macbeth,1603\nfaces,5,macbeth,1603\nShow,5,macbeth,1603\n'em,5,macbeth,1603\nfill,5,macbeth,1603\nduties,5,macbeth,1603\ncomfort,5,macbeth,1603\nreason,5,macbeth,1603\nhome,5,macbeth,1603\nhonest,5,macbeth,1603\nhorses,5,macbeth,1603\nsound,5,macbeth,1603\ntraitor,5,macbeth,1603\nThings,5,macbeth,1603\nreturn,5,macbeth,1603\nhither,5,macbeth,1603\nsend,5,macbeth,1603\ngoes,5,macbeth,1603\npurpose,5,macbeth,1603\near,5,macbeth,1603\nspirits,5,macbeth,1603\nhostess,5,macbeth,1603\nmurder'd,5,macbeth,1603\nBefore,5,macbeth,1603\nthither,5,macbeth,1603\nDid,5,macbeth,1603\ndark,5,macbeth,1603\nBring,5,macbeth,1603\ncertain,5,macbeth,1603\nshake,5,macbeth,1603\ncommand,5,macbeth,1603\nwouldst,5,macbeth,1603\ndie,5,macbeth,1603\nwomen,5,macbeth,1603\nmeet,6,macbeth,1603\ntyrant's,6,macbeth,1603\nwhile,6,macbeth,1603\nSergeant,6,macbeth,1603\nhighness,6,macbeth,1603\ngracious,6,macbeth,1603\nsit,6,macbeth,1603\nOld,6,macbeth,1603\ndied,6,macbeth,1603\nmurder,6,macbeth,1603\ndesire,6,macbeth,1603\nchamber,6,macbeth,1603\nDonalbain,6,macbeth,1603\nbell,6,macbeth,1603\ndoth,6,macbeth,1603\nsaid,6,macbeth,1603\ndeep,6,macbeth,1603\nleft,6,macbeth,1603\nCAITHNESS,6,macbeth,1603\ncousin,6,macbeth,1603\nlost,6,macbeth,1603\nMore,6,macbeth,1603\npresent,6,macbeth,1603\nlittle,6,macbeth,1603\nhast,6,macbeth,1603\nthrough,6,macbeth,1603\nLords,6,macbeth,1603\nborne,6,macbeth,1603\nPorter,6,macbeth,1603\nmortal,6,macbeth,1603\nissue,6,macbeth,1603\nWere,6,macbeth,1603\nget,6,macbeth,1603\nthrow,6,macbeth,1603\nrise,6,macbeth,1603\nthemselves,6,macbeth,1603\nfall,6,macbeth,1603\nold,6,macbeth,1603\nplease,6,macbeth,1603\ncolours,6,macbeth,1603\nword,6,macbeth,1603\nForres,6,macbeth,1603\nfate,6,macbeth,1603\nmaster,6,macbeth,1603\nuse,6,macbeth,1603\nwe'll,6,macbeth,1603\nback,6,macbeth,1603\nseen,6,macbeth,1603\ntogether,6,macbeth,1603\ncold,6,macbeth,1603\nGreat,6,macbeth,1603\nfled,6,macbeth,1603\nweird,6,macbeth,1603\ntrue,6,macbeth,1603\nMan,6,macbeth,1603\nlate,6,macbeth,1603\nFife,6,macbeth,1603\ncrown,6,macbeth,1603\ncountry,7,macbeth,1603\nrather,7,macbeth,1603\nsisters,7,macbeth,1603\nlies,7,macbeth,1603\nblack,7,macbeth,1603\nenough,7,macbeth,1603\nfell,7,macbeth,1603\n's,7,macbeth,1603\nAttendants,7,macbeth,1603\nHere,7,macbeth,1603\nThose,7,macbeth,1603\nwisdom,7,macbeth,1603\nIV,7,macbeth,1603\nbid,7,macbeth,1603\nbest,7,macbeth,1603\nThunder,7,macbeth,1603\nRe,7,macbeth,1603\nGlamis,7,macbeth,1603\nbreath,7,macbeth,1603\nSoldiers,7,macbeth,1603\nfears,7,macbeth,1603\nYet,7,macbeth,1603\npart,7,macbeth,1603\nknocking,7,macbeth,1603\nknock,7,macbeth,1603\nHark,7,macbeth,1603\nFLEANCE,7,macbeth,1603\nknows,7,macbeth,1603\nstate,7,macbeth,1603\ntrouble,7,macbeth,1603\nHECATE,7,macbeth,1603\ncoming,7,macbeth,1603\nHail,7,macbeth,1603\ndaggers,7,macbeth,1603\nfortune,7,macbeth,1603\ntill,7,macbeth,1603\ngiven,7,macbeth,1603\nhold,7,macbeth,1603\nWho's,7,macbeth,1603\nseem,7,macbeth,1603\nwhom,7,macbeth,1603\nhouse,7,macbeth,1603\nWitches,7,macbeth,1603\nshalt,7,macbeth,1603\nhimself,7,macbeth,1603\ndouble,8,macbeth,1603\ndrink,8,macbeth,1603\ntruth,8,macbeth,1603\nlight,8,macbeth,1603\nbetter,8,macbeth,1603\nMalcolm,8,macbeth,1603\nMENTEITH,8,macbeth,1603\nfalse,8,macbeth,1603\ntell,8,macbeth,1603\nAt,8,macbeth,1603\nitself,8,macbeth,1603\nWithin,8,macbeth,1603\nenter,8,macbeth,1603\nGood,8,macbeth,1603\ngone,8,macbeth,1603\nOr,8,macbeth,1603\nchildren,8,macbeth,1603\ntongue,8,macbeth,1603\nYOUNG,8,macbeth,1603\ntyrant,8,macbeth,1603\nany,8,macbeth,1603\nearth,8,macbeth,1603\nless,8,macbeth,1603\ndevil,8,macbeth,1603\nforth,8,macbeth,1603\nthough,8,macbeth,1603\nHave,8,macbeth,1603\nLook,8,macbeth,1603\nthing,8,macbeth,1603\nstand,8,macbeth,1603\nsorrow,8,macbeth,1603\nonly,8,macbeth,1603\nheard,8,macbeth,1603\neven,8,macbeth,1603\nMurderers,8,macbeth,1603\nEnglish,8,macbeth,1603\nbusiness,9,macbeth,1603\nroyal,9,macbeth,1603\npeace,9,macbeth,1603\nsight,9,macbeth,1603\nwords,9,macbeth,1603\nhead,9,macbeth,1603\ncall,9,macbeth,1603\nagainst,9,macbeth,1603\nset,9,macbeth,1603\nborn,9,macbeth,1603\nThough,9,macbeth,1603\nrest,9,macbeth,1603\nThere's,9,macbeth,1603\neach,9,macbeth,1603\nkings,9,macbeth,1603\nII,9,macbeth,1603\nSEYTON,9,macbeth,1603\ncauldron,9,macbeth,1603\nthat's,9,macbeth,1603\ngrace,9,macbeth,1603\nFleance,9,macbeth,1603\nreport,9,macbeth,1603\ninto,9,macbeth,1603\nFrom,9,macbeth,1603\nmany,9,macbeth,1603\nmind,9,macbeth,1603\nthine,9,macbeth,1603\noff,9,macbeth,1603\nhope,9,macbeth,1603\nlives,9,macbeth,1603\nthus,9,macbeth,1603\ncry,9,macbeth,1603\nthoughts,9,macbeth,1603\nlast,9,macbeth,1603\nbeing,9,macbeth,1603\nlive,9,macbeth,1603\nThy,9,macbeth,1603\nWill,10,macbeth,1603\nhell,10,macbeth,1603\nWould,10,macbeth,1603\nfriends,10,macbeth,1603\nWhose,10,macbeth,1603\nfull,10,macbeth,1603\nNot,10,macbeth,1603\nfurther,10,macbeth,1603\nAside,10,macbeth,1603\naway,10,macbeth,1603\nhence,10,macbeth,1603\nWhat's,10,macbeth,1603\nwelcome,10,macbeth,1603\nKnocking,10,macbeth,1603\nnew,10,macbeth,1603\nere,10,macbeth,1603\nvery,10,macbeth,1603\nknown,10,macbeth,1603\nnear,10,macbeth,1603\nwhy,10,macbeth,1603\nWell,10,macbeth,1603\nhail,10,macbeth,1603\nfly,10,macbeth,1603\npalace,10,macbeth,1603\nhour,10,macbeth,1603\nEngland,10,macbeth,1603\nApparition,10,macbeth,1603\nfirst,10,macbeth,1603\nDONALBAIN,10,macbeth,1603\nwoman,10,macbeth,1603\nV,11,macbeth,1603\nANGUS,11,macbeth,1603\npray,11,macbeth,1603\nUpon,11,macbeth,1603\nServant,11,macbeth,1603\nhonour,11,macbeth,1603\nelse,11,macbeth,1603\nIII,11,macbeth,1603\nGod,11,macbeth,1603\nbear,11,macbeth,1603\ngive,11,macbeth,1603\nkeep,11,macbeth,1603\nThan,11,macbeth,1603\nHath,11,macbeth,1603\neye,11,macbeth,1603\nmyself,11,macbeth,1603\ncomes,11,macbeth,1603\nonce,11,macbeth,1603\nthink,11,macbeth,1603\nmorrow,11,macbeth,1603\nface,11,macbeth,1603\never,11,macbeth,1603\nfind,11,macbeth,1603\nBirnam,11,macbeth,1603\neyes,11,macbeth,1603\nlie,11,macbeth,1603\nMessenger,11,macbeth,1603\ntwo,11,macbeth,1603\nwithout,11,macbeth,1603\npower,11,macbeth,1603\nMACBETH,267,macbeth,1603\nGive,12,macbeth,1603\nson,12,macbeth,1603\nfight,12,macbeth,1603\nThere,12,macbeth,1603\nabout,12,macbeth,1603\nheaven,12,macbeth,1603\nBy,12,macbeth,1603\nbed,12,macbeth,1603\nnoble,12,macbeth,1603\nplace,12,macbeth,1603\nwood,12,macbeth,1603\nwife,12,macbeth,1603\nmuch,13,macbeth,1603\nNow,13,macbeth,1603\nnothing,13,macbeth,1603\nsword,13,macbeth,1603\nDo,13,macbeth,1603\nnever,13,macbeth,1603\nBe,13,macbeth,1603\nput,13,macbeth,1603\nhands,13,macbeth,1603\nshow,13,macbeth,1603\nAre,13,macbeth,1603\nmade,13,macbeth,1603\nnone,13,macbeth,1603\nALL,13,macbeth,1603\ncould,13,macbeth,1603\nDuncan,13,macbeth,1603\nTill,13,macbeth,1603\nthree,13,macbeth,1603\npoor,13,macbeth,1603\nleave,13,macbeth,1603\ndare,13,macbeth,1603\nthought,14,macbeth,1603\nevery,14,macbeth,1603\nsome,14,macbeth,1603\nGentlewoman,14,macbeth,1603\nname,14,macbeth,1603\ndead,14,macbeth,1603\nDunsinane,14,macbeth,1603\nhow,14,macbeth,1603\ncastle,14,macbeth,1603\nThen,14,macbeth,1603\n'Tis,14,macbeth,1603\ntake,14,macbeth,1603\nfather,14,macbeth,1603\nstrange,14,macbeth,1603\nhear,15,macbeth,1603\nWas,15,macbeth,1603\nboth,15,macbeth,1603\nworthy,15,macbeth,1603\nHis,15,macbeth,1603\ni',15,macbeth,1603\ndeed,15,macbeth,1603\nair,15,macbeth,1603\no',15,macbeth,1603\nart,15,macbeth,1603\nbloody,15,macbeth,1603\nScotland,15,macbeth,1603\nWhere,15,macbeth,1603\nshe,16,macbeth,1603\nlook,16,macbeth,1603\nThey,16,macbeth,1603\nSon,16,macbeth,1603\nother,16,macbeth,1603\nlife,17,macbeth,1603\nAy,17,macbeth,1603\ndown,17,macbeth,1603\nMacduff,17,macbeth,1603\nif,17,macbeth,1603\nthose,17,macbeth,1603\nYour,17,macbeth,1603\nstill,17,macbeth,1603\nown,17,macbeth,1603\nlet,17,macbeth,1603\nmen,17,macbeth,1603\ncannot,17,macbeth,1603\nthan,18,macbeth,1603\nhas,18,macbeth,1603\nthings,18,macbeth,1603\nway,18,macbeth,1603\nwhen,18,macbeth,1603\nCome,19,macbeth,1603\ndeath,19,macbeth,1603\nwithin,19,macbeth,1603\nNo,19,macbeth,1603\nlove,19,macbeth,1603\nHow,19,macbeth,1603\nAll,19,macbeth,1603\nday,19,macbeth,1603\nLet,19,macbeth,1603\nnature,19,macbeth,1603\nsuch,20,macbeth,1603\nOur,20,macbeth,1603\nagain,20,macbeth,1603\nnor,20,macbeth,1603\nbefore,20,macbeth,1603\nwho,20,macbeth,1603\nShall,20,macbeth,1603\nO,21,macbeth,1603\nCawdor,21,macbeth,1603\nthese,21,macbeth,1603\nIs,21,macbeth,1603\ncan,21,macbeth,1603\ngo,21,macbeth,1603\nwhere,21,macbeth,1603\nsleep,21,macbeth,1603\nWho,22,macbeth,1603\nWhy,22,macbeth,1603\nthen,22,macbeth,1603\nDUNCAN,22,macbeth,1603\nOf,22,macbeth,1603\nIt,22,macbeth,1603\nbeen,22,macbeth,1603\nmost,22,macbeth,1603\nThis,22,macbeth,1603\nheart,22,macbeth,1603\nWhen,22,macbeth,1603\ntoo,22,macbeth,1603\nblood,23,macbeth,1603\n'tis,23,macbeth,1603\ndoes,23,macbeth,1603\nYou,23,macbeth,1603\nhand,23,macbeth,1603\nThou,23,macbeth,1603\nBanquo,23,macbeth,1603\nExit,23,macbeth,1603\nSIWARD,24,macbeth,1603\nThird,24,macbeth,1603\nthane,24,macbeth,1603\n',25,macbeth,1603\nWith,25,macbeth,1603\nSo,25,macbeth,1603\nmine,25,macbeth,1603\nwell,25,macbeth,1603\nout,25,macbeth,1603\ngreat,25,macbeth,1603\nIf,26,macbeth,1603\nup,26,macbeth,1603\nspeak,26,macbeth,1603\nsir,27,macbeth,1603\nsee,27,macbeth,1603\nWe,27,macbeth,1603\nSecond,27,macbeth,1603\nmay,27,macbeth,1603\nFor,28,macbeth,1603\nthere,28,macbeth,1603\nor,28,macbeth,1603\nACT,28,macbeth,1603\nDoctor,29,macbeth,1603\nhad,29,macbeth,1603\nam,29,macbeth,1603\nan,29,macbeth,1603\none,29,macbeth,1603\nman,29,macbeth,1603\nSCENE,29,macbeth,1603\nMy,30,macbeth,1603\nIn,30,macbeth,1603\nknow,30,macbeth,1603\nwas,30,macbeth,1603\nhere,31,macbeth,1603\nmust,31,macbeth,1603\nking,32,macbeth,1603\nfear,33,macbeth,1603\nExeunt,33,macbeth,1603\nwere,33,macbeth,1603\nlord,34,macbeth,1603\nI'll,34,macbeth,1603\ncome,34,macbeth,1603\nsay,35,macbeth,1603\nnight,35,macbeth,1603\nWhich,35,macbeth,1603\nmake,35,macbeth,1603\nLENNOX,35,macbeth,1603\nAs,36,macbeth,1603\nHe,36,macbeth,1603\nby,36,macbeth,1603\ndone,36,macbeth,1603\nMurderer,36,macbeth,1603\ndid,36,macbeth,1603\nlike,37,macbeth,1603\nwould,37,macbeth,1603\nhath,39,macbeth,1603\nA,40,macbeth,1603\nshould,40,macbeth,1603\nnow,40,macbeth,1603\nher,41,macbeth,1603\ntime,43,macbeth,1603\nthy,43,macbeth,1603\nMacbeth,44,macbeth,1603\ngood,44,macbeth,1603\nwhich,45,macbeth,1603\nat,45,macbeth,1603\nmore,46,macbeth,1603\nwhat,47,macbeth,1603\nshall,47,macbeth,1603\nno,48,macbeth,1603\nfrom,48,macbeth,1603\nupon,49,macbeth,1603\nFirst,49,macbeth,1603\nBANQUO,50,macbeth,1603\nthem,50,macbeth,1603\nyet,50,macbeth,1603\nMALCOLM,51,macbeth,1603\nROSS,53,macbeth,1603\nthey,54,macbeth,1603\nas,54,macbeth,1603\nWitch,54,macbeth,1603\nus,55,macbeth,1603\nBut,55,macbeth,1603\ntheir,56,macbeth,1603\nWhat,58,macbeth,1603\non,59,macbeth,1603\nwe,60,macbeth,1603\nare,60,macbeth,1603\nthee,61,macbeth,1603\nwill,63,macbeth,1603\nEnter,64,macbeth,1603\nof,320,macbeth,1603\nthou,67,macbeth,1603\nbut,69,macbeth,1603\nI,325,macbeth,1603\ndo,70,macbeth,1603\nall,71,macbeth,1603\nso,71,macbeth,1603\nto,328,macbeth,1603\nTo,75,macbeth,1603\nfor,81,macbeth,1603\nthis,82,macbeth,1603\nhe,82,macbeth,1603\nhim,90,macbeth,1603\nThat,90,macbeth,1603\nMACDUFF,92,macbeth,1603\nLADY,94,macbeth,1603\nthe,607,macbeth,1603\nour,99,macbeth,1603\nyour,104,macbeth,1603\nme,112,macbeth,1603\nhave,117,macbeth,1603\nbe,125,macbeth,1603\nThe,126,macbeth,1603\nwith,129,macbeth,1603\nit,132,macbeth,1603\nhis,133,macbeth,1603\nthat,138,macbeth,1603\nAnd,151,macbeth,1603\nnot,154,macbeth,1603\nand,415,macbeth,1603\nmy,162,macbeth,1603\nis,164,macbeth,1603\nin,175,macbeth,1603\nyou,180,macbeth,1603\na,215,macbeth,1603\nattended,1,othello,1603\ntreason,1,othello,1603\nislanders,1,othello,1603\nalehouse,1,othello,1603\ncorrigible,1,othello,1603\ntroubled,1,othello,1603\nsleeve,1,othello,1603\nTouching,1,othello,1603\nimperfectly,1,othello,1603\nBoding,1,othello,1603\nasses,1,othello,1603\nlusty,1,othello,1603\nlusts,1,othello,1603\ndaws,1,othello,1603\nretiring,1,othello,1603\nDespise,1,othello,1603\nQuick,1,othello,1603\nrelief,1,othello,1603\nneighing,1,othello,1603\ntransform,1,othello,1603\nadvised,1,othello,1603\nlettuce,1,othello,1603\ngrew,1,othello,1603\nc,1,othello,1603\nconfused,1,othello,1603\ninvisible,1,othello,1603\nprovocation,1,othello,1603\ngardens,1,othello,1603\nm,1,othello,1603\ndepute,1,othello,1603\nYours,1,othello,1603\npith,1,othello,1603\nmasterly,1,othello,1603\npestilence,1,othello,1603\ngroom,1,othello,1603\nadvice,1,othello,1603\nextremity,1,othello,1603\no'erbearing,1,othello,1603\nValiant,1,othello,1603\nexception,1,othello,1603\ndilate,1,othello,1603\ninfected,1,othello,1603\ndames,1,othello,1603\nqualification,1,othello,1603\nmarrying,1,othello,1603\ndescription,1,othello,1603\ncomposition,1,othello,1603\nVillany,1,othello,1603\ndireful,1,othello,1603\nenfetter'd,1,othello,1603\nresist,1,othello,1603\nComfort,1,othello,1603\nforswear,1,othello,1603\ntremble,1,othello,1603\nweary,1,othello,1603\nDevesting,1,othello,1603\nwrit,1,othello,1603\nspan,1,othello,1603\nsuspicions,1,othello,1603\nconveniences,1,othello,1603\ncomplaints,1,othello,1603\ngenerous,1,othello,1603\nwoman'd,1,othello,1603\nspends,1,othello,1603\nwoman's,1,othello,1603\nNaked,1,othello,1603\nprocreants,1,othello,1603\nShall't,1,othello,1603\nwicked,1,othello,1603\nentire,1,othello,1603\ndine,1,othello,1603\nhonours,1,othello,1603\nram,1,othello,1603\nlower,1,othello,1603\ninference,1,othello,1603\nrock,1,othello,1603\nbones,1,othello,1603\nlabours,1,othello,1603\nThieves,1,othello,1603\nindign,1,othello,1603\nrot,1,othello,1603\nsupport,1,othello,1603\nrobs,1,othello,1603\noffended,1,othello,1603\nrascal,1,othello,1603\nesteems,1,othello,1603\nshoulders,1,othello,1603\nsuppose,1,othello,1603\nencave,1,othello,1603\ncounterfeits,1,othello,1603\nheart's,1,othello,1603\nWilt,1,othello,1603\nchiding,1,othello,1603\nVenetians,1,othello,1603\nroar,1,othello,1603\nWoo'd,1,othello,1603\nhush'd,1,othello,1603\nreside,1,othello,1603\nboys,1,othello,1603\nmelt,1,othello,1603\nheld,1,othello,1603\npuddled,1,othello,1603\nsleeps,1,othello,1603\nhelm,1,othello,1603\ncords,1,othello,1603\ndire,1,othello,1603\ndrowsy,1,othello,1603\nreserves,1,othello,1603\nStay,1,othello,1603\nlaughter,1,othello,1603\npolite,1,othello,1603\nsquadron,1,othello,1603\nduteous,1,othello,1603\npoisonous,1,othello,1603\nlieutenantry,1,othello,1603\nMuse,1,othello,1603\ndash'd,1,othello,1603\ndirt,1,othello,1603\ntrump,1,othello,1603\nbirdlime,1,othello,1603\npainted,1,othello,1603\nWhereby,1,othello,1603\nclothes,1,othello,1603\ncontract,1,othello,1603\nparagons,1,othello,1603\ndropp'd,1,othello,1603\nCried,1,othello,1603\nunwholesome,1,othello,1603\nvale,1,othello,1603\nblossom,1,othello,1603\nsighs,1,othello,1603\nprosperous,1,othello,1603\ndrum,1,othello,1603\nPerplex'd,1,othello,1603\nHell,1,othello,1603\nshifted,1,othello,1603\nlooked,1,othello,1603\nDescry,1,othello,1603\nsugar,1,othello,1603\nengluts,1,othello,1603\nbrawler,1,othello,1603\ncalms,1,othello,1603\ndeclined,1,othello,1603\nEre,1,othello,1603\nyears',1,othello,1603\nsour,1,othello,1603\ncharter,1,othello,1603\nfoams,1,othello,1603\nExceed,1,othello,1603\nunder,1,othello,1603\nadmirable,1,othello,1603\nworms,1,othello,1603\nsuggest,1,othello,1603\nteachest,1,othello,1603\ncalls,1,othello,1603\nthirty,1,othello,1603\nterrible,1,othello,1603\nSnatching,1,othello,1603\nmalicious,1,othello,1603\nadvise,1,othello,1603\nodds,1,othello,1603\nHorribly,1,othello,1603\ntoged,1,othello,1603\npick,1,othello,1603\npleasures,1,othello,1603\ncontrary,1,othello,1603\nQuite,1,othello,1603\nremain,1,othello,1603\nAbhor,1,othello,1603\nwing'd,1,othello,1603\nthicken,1,othello,1603\ncheques,1,othello,1603\nfleers,1,othello,1603\nStephen,1,othello,1603\nbecome,1,othello,1603\ntyrannous,1,othello,1603\ncheeks,1,othello,1603\nclasps,1,othello,1603\nPERSONAE,1,othello,1603\nwither,1,othello,1603\nunforced,1,othello,1603\nlocusts,1,othello,1603\nmarshal,1,othello,1603\ndemand,1,othello,1603\nsequestration,1,othello,1603\nquarries,1,othello,1603\nspare,1,othello,1603\nquirks,1,othello,1603\nbattles,1,othello,1603\nearly,1,othello,1603\nwalking,1,othello,1603\nargues,1,othello,1603\ncoffers,1,othello,1603\nliar,1,othello,1603\nindirect,1,othello,1603\npursue,1,othello,1603\nOnce,1,othello,1603\nvast,1,othello,1603\nsanctified,1,othello,1603\npractised,1,othello,1603\npractiser,1,othello,1603\nOver,1,othello,1603\ndelivered,1,othello,1603\nadvantages,1,othello,1603\nShared,1,othello,1603\nacknown,1,othello,1603\ncounter,1,othello,1603\nrecognizance,1,othello,1603\nchid,1,othello,1603\nbending,1,othello,1603\npalates,1,othello,1603\ngraces,1,othello,1603\npractises,1,othello,1603\ncriedst,1,othello,1603\nlacks,1,othello,1603\nsterile,1,othello,1603\ninstructed,1,othello,1603\nspied,1,othello,1603\nPlayers,1,othello,1603\nthank'd,1,othello,1603\nfeels,1,othello,1603\ncamp,1,othello,1603\npint,1,othello,1603\nfriend's,1,othello,1603\nguards,1,othello,1603\nsadly,1,othello,1603\nslept,1,othello,1603\nworking,1,othello,1603\nthousands,1,othello,1603\noffenceless,1,othello,1603\ngrieving,1,othello,1603\nunjustly,1,othello,1603\nbefall'n,1,othello,1603\nsat,1,othello,1603\nFilth,1,othello,1603\ncarry't,1,othello,1603\ndance,1,othello,1603\ntraduced,1,othello,1603\nfulsome,1,othello,1603\nstream,1,othello,1603\nbackward,1,othello,1603\ncape,1,othello,1603\natone,1,othello,1603\nCold,1,othello,1603\npilgrimage,1,othello,1603\ncorner,1,othello,1603\ndram,1,othello,1603\nDangerous,1,othello,1603\ncaps,1,othello,1603\nluscious,1,othello,1603\npatent,1,othello,1603\nrestitution,1,othello,1603\nhabits,1,othello,1603\ntoward,1,othello,1603\nheal,1,othello,1603\nconfessions,1,othello,1603\nFled,1,othello,1603\nHoney,1,othello,1603\nnecessaries,1,othello,1603\nexclaim,1,othello,1603\no'erwhelmed,1,othello,1603\nvoices,1,othello,1603\nbabes,1,othello,1603\nchop,1,othello,1603\nfacile,1,othello,1603\nexcelling,1,othello,1603\nvisages,1,othello,1603\neclipse,1,othello,1603\nbragging,1,othello,1603\nofficers,1,othello,1603\nYield,1,othello,1603\nstifles,1,othello,1603\nrites,1,othello,1603\nchains,1,othello,1603\ngrievance,1,othello,1603\nPale,1,othello,1603\ntoys,1,othello,1603\nAvaunt,1,othello,1603\ntwas,1,othello,1603\nblazoning,1,othello,1603\nbombast,1,othello,1603\nminerals,1,othello,1603\nabode,1,othello,1603\ninhuman,1,othello,1603\nwait,1,othello,1603\ncoldness,1,othello,1603\nPerfect,1,othello,1603\nkin,1,othello,1603\nCupid,1,othello,1603\nshrift,1,othello,1603\nsups,1,othello,1603\nperjured,1,othello,1603\nbelieve't,1,othello,1603\nConfine,1,othello,1603\ncities,1,othello,1603\ncarnal,1,othello,1603\nview,1,othello,1603\nPerchance,1,othello,1603\ndeserve,1,othello,1603\nprovender,1,othello,1603\nplucked,1,othello,1603\nexecution,1,othello,1603\nshamed,1,othello,1603\nMinion,1,othello,1603\nwage,1,othello,1603\nhereafter,1,othello,1603\nweaken,1,othello,1603\nDull,1,othello,1603\nshames,1,othello,1603\ncherubin,1,othello,1603\nOff,1,othello,1603\ncompliment,1,othello,1603\nboat,1,othello,1603\nsit,1,othello,1603\nconceive,1,othello,1603\nindignity,1,othello,1603\nhaggard,1,othello,1603\nlovers',1,othello,1603\nunwitted,1,othello,1603\nbrook's,1,othello,1603\nrobbing,1,othello,1603\nensteep'd,1,othello,1603\nthink'st,1,othello,1603\nMoorship's,1,othello,1603\nconjunctive,1,othello,1603\ntooth,1,othello,1603\nEgyptian,1,othello,1603\nassails,1,othello,1603\nmonarch,1,othello,1603\nPontic,1,othello,1603\nlikedst,1,othello,1603\nshrill,1,othello,1603\nBuys,1,othello,1603\nseals,1,othello,1603\nWrite,1,othello,1603\nwake,1,othello,1603\ndeceives,1,othello,1603\nunsure,1,othello,1603\nthrone,1,othello,1603\nanew,1,othello,1603\nbridal,1,othello,1603\nwedding,1,othello,1603\nbeasts,1,othello,1603\nintendment,1,othello,1603\ndoubtless,1,othello,1603\nseamy,1,othello,1603\nunprepared,1,othello,1603\nobservances,1,othello,1603\nspy,1,othello,1603\nhalter,1,othello,1603\nlivest,1,othello,1603\nwheresoever,1,othello,1603\ncradle,1,othello,1603\nrubb'd,1,othello,1603\nknives,1,othello,1603\nchamberers,1,othello,1603\nhelp'd,1,othello,1603\nsow,1,othello,1603\nAssays,1,othello,1603\nsummons,1,othello,1603\nSuch,1,othello,1603\nabuser,1,othello,1603\nabuses,1,othello,1603\nmurderer,1,othello,1603\nsycamore,1,othello,1603\nadvocation,1,othello,1603\nsworn,1,othello,1603\npictures,1,othello,1603\nunhoused,1,othello,1603\nshipp'd,1,othello,1603\nfollowed,1,othello,1603\nmelting,1,othello,1603\nwhere's,1,othello,1603\n'I,1,othello,1603\nashore,1,othello,1603\nSilence,1,othello,1603\nweapon'd,1,othello,1603\nattends,1,othello,1603\nlarger,1,othello,1603\n'scuse,1,othello,1603\nsurmises,1,othello,1603\naccommodation,1,othello,1603\nOutran,1,othello,1603\nforthwith,1,othello,1603\nmaidhood,1,othello,1603\nqualified,1,othello,1603\ncustody,1,othello,1603\nwhoring,1,othello,1603\nacquainted,1,othello,1603\ndeserts,1,othello,1603\nbeloved,1,othello,1603\nwager,1,othello,1603\nbewhored,1,othello,1603\nMusic,1,othello,1603\nbarefoot,1,othello,1603\nOther,1,othello,1603\nThanks,1,othello,1603\nyonder's,1,othello,1603\nfilches,1,othello,1603\npieces,1,othello,1603\nstuff,1,othello,1603\nunsuiting,1,othello,1603\nthin,1,othello,1603\nSpain,1,othello,1603\ntimber'd,1,othello,1603\naffect,1,othello,1603\nsuffered,1,othello,1603\npoverty,1,othello,1603\nsatiety,1,othello,1603\nswelling,1,othello,1603\nappetites,1,othello,1603\nensnared,1,othello,1603\nbreeches,1,othello,1603\npassed,1,othello,1603\nTrifles,1,othello,1603\nfortunately,1,othello,1603\nintrude,1,othello,1603\nvanish,1,othello,1603\nincontinently,1,othello,1603\ncarack,1,othello,1603\nsnow,1,othello,1603\nconceit,1,othello,1603\ndisrelish,1,othello,1603\ndances,1,othello,1603\nrecommends,1,othello,1603\nunkindly,1,othello,1603\nwinks,1,othello,1603\nroots,1,othello,1603\ngastness,1,othello,1603\nskies,1,othello,1603\nafraid,1,othello,1603\nDamn,1,othello,1603\ncrime,1,othello,1603\nBe't,1,othello,1603\nwive,1,othello,1603\ntwelve,1,othello,1603\nways,1,othello,1603\nTush,1,othello,1603\nWhereof,1,othello,1603\nTurn,1,othello,1603\nWash,1,othello,1603\nparrot,1,othello,1603\nWhereon,1,othello,1603\ndraughts,1,othello,1603\nBianco's,1,othello,1603\nbeggarly,1,othello,1603\nexceeding,1,othello,1603\nloathed,1,othello,1603\nactions,1,othello,1603\nruminate,1,othello,1603\nRoderigo's,1,othello,1603\nCannibals,1,othello,1603\ndearly,1,othello,1603\nPardon,1,othello,1603\ntaper,1,othello,1603\nexpedition,1,othello,1603\nfruit,1,othello,1603\ncivility,1,othello,1603\ngodliness,1,othello,1603\npearl,1,othello,1603\npageant,1,othello,1603\nbelong'd,1,othello,1603\ndisports,1,othello,1603\nWhilst,1,othello,1603\ncries,1,othello,1603\nhumble,1,othello,1603\nfortitude,1,othello,1603\nthicklips,1,othello,1603\nstubbornness,1,othello,1603\nconveniency,1,othello,1603\nvanity,1,othello,1603\ncomplete,1,othello,1603\naccent,1,othello,1603\nsevere,1,othello,1603\nrust,1,othello,1603\nbride,1,othello,1603\nrush,1,othello,1603\nfeet,1,othello,1603\nunbookish,1,othello,1603\nflaming,1,othello,1603\nbeaten,1,othello,1603\nsaucy,1,othello,1603\nrelish,1,othello,1603\nswore,1,othello,1603\nupon't,1,othello,1603\ngibes,1,othello,1603\ndial,1,othello,1603\ncorrupt,1,othello,1603\nhales,1,othello,1603\nDrown,1,othello,1603\n'Now,1,othello,1603\nWhereto,1,othello,1603\nexpectations,1,othello,1603\nprizes,1,othello,1603\nchoose,1,othello,1603\nrude,1,othello,1603\nstuff'd,1,othello,1603\napplause,1,othello,1603\nbauble,1,othello,1603\nsymbols,1,othello,1603\nRetire,1,othello,1603\nHence,1,othello,1603\nbaptism,1,othello,1603\nCrying,1,othello,1603\nBlow,1,othello,1603\ntitle,1,othello,1603\nlee'd,1,othello,1603\nAdvancing,1,othello,1603\nPlease,1,othello,1603\nobsequious,1,othello,1603\nPotations,1,othello,1603\ninflame,1,othello,1603\nstead,1,othello,1603\nwipe,1,othello,1603\naccess,1,othello,1603\nsmell'st,1,othello,1603\nMoors,1,othello,1603\nEnglishman,1,othello,1603\nhates,1,othello,1603\nunsafe,1,othello,1603\ndisplease,1,othello,1603\nUnfit,1,othello,1603\nCousin,1,othello,1603\nturned,1,othello,1603\ndied,1,othello,1603\nPrecious,1,othello,1603\nariseth,1,othello,1603\nsucceed,1,othello,1603\nimportunes,1,othello,1603\ndistressful,1,othello,1603\nimperious,1,othello,1603\nJanus,1,othello,1603\nsavageness,1,othello,1603\nthrows,1,othello,1603\nproperty,1,othello,1603\ndevil's,1,othello,1603\nheraldry,1,othello,1603\nseem'd,1,othello,1603\npierce,1,othello,1603\nuseth,1,othello,1603\nwindow,1,othello,1603\nsooty,1,othello,1603\nhorrors,1,othello,1603\nsummon,1,othello,1603\nbidding,1,othello,1603\nwarm,1,othello,1603\nincense,1,othello,1603\nmerely,1,othello,1603\nConserved,1,othello,1603\ndoubts,1,othello,1603\nBurn,1,othello,1603\nconveyance,1,othello,1603\ndealt,1,othello,1603\ncircumstances,1,othello,1603\nsteed,1,othello,1603\nconsecrate,1,othello,1603\nflowing,1,othello,1603\nsteep,1,othello,1603\nrevel,1,othello,1603\nsteel,1,othello,1603\ndomestic,1,othello,1603\ncoats,1,othello,1603\nwast,1,othello,1603\nFoh,1,othello,1603\nruled,1,othello,1603\nsweating,1,othello,1603\ncircumstanced,1,othello,1603\nboon,1,othello,1603\nsegregation,1,othello,1603\nmanhood,1,othello,1603\nsuborn'd,1,othello,1603\nbright,1,othello,1603\nupbraids,1,othello,1603\ninordinate,1,othello,1603\npraised,1,othello,1603\nparty,1,othello,1603\nRepair,1,othello,1603\ncolour,1,othello,1603\ngripe,1,othello,1603\nlevels,1,othello,1603\nwayward,1,othello,1603\nsympathy,1,othello,1603\nviper,1,othello,1603\ntainting,1,othello,1603\nPly,1,othello,1603\nhealthful,1,othello,1603\nunblest,1,othello,1603\noffers,1,othello,1603\nfeather'd,1,othello,1603\nsick,1,othello,1603\nbig,1,othello,1603\nshorter,1,othello,1603\nknowledge,1,othello,1603\nrefrain,1,othello,1603\ngrievous,1,othello,1603\nsplinter,1,othello,1603\nunperfectness,1,othello,1603\nlife's,1,othello,1603\nhousewifery,1,othello,1603\ncontrived,1,othello,1603\ntapers,1,othello,1603\ngratify,1,othello,1603\ninvest,1,othello,1603\nsilliness,1,othello,1603\nunkind,1,othello,1603\nparadoxes,1,othello,1603\nbesort,1,othello,1603\ndiscreet,1,othello,1603\nwaken'd,1,othello,1603\nbacks,1,othello,1603\nDrew,1,othello,1603\naboard,1,othello,1603\nplanet,1,othello,1603\nwanting,1,othello,1603\nWhile,1,othello,1603\noverthrow,1,othello,1603\nocular,1,othello,1603\nclimate,1,othello,1603\nsweeter,1,othello,1603\ncrack,1,othello,1603\nDraws,1,othello,1603\nhorror's,1,othello,1603\nguardage,1,othello,1603\nrefuse,1,othello,1603\ndiscern,1,othello,1603\nBounteous,1,othello,1603\n'Cursed,1,othello,1603\nHydra,1,othello,1603\ndistinguish,1,othello,1603\ncunning'st,1,othello,1603\nchronicle,1,othello,1603\nmeasure,1,othello,1603\n'Twere,1,othello,1603\nsores,1,othello,1603\nflattery,1,othello,1603\nleave't,1,othello,1603\nAh,1,othello,1603\nmesses,1,othello,1603\ninvent,1,othello,1603\naltogether,1,othello,1603\nstubborn,1,othello,1603\npay,1,othello,1603\ndepend,1,othello,1603\nsurety,1,othello,1603\npoppy,1,othello,1603\nmisgives,1,othello,1603\ngrise,1,othello,1603\nwronger,1,othello,1603\nThrowing,1,othello,1603\nknowing,1,othello,1603\ncod's,1,othello,1603\nsequent,1,othello,1603\nalarum,1,othello,1603\nhey,1,othello,1603\nassault,1,othello,1603\nharlotry,1,othello,1603\nspoil'd,1,othello,1603\nvoluntary,1,othello,1603\nhen,1,othello,1603\nDrink,1,othello,1603\nteem,1,othello,1603\nbag,1,othello,1603\nDismiss,1,othello,1603\nLo,1,othello,1603\nhitherto,1,othello,1603\nNature,1,othello,1603\n'Las,1,othello,1603\nmurmur'd,1,othello,1603\nsensible,1,othello,1603\nhalts,1,othello,1603\nsiege,1,othello,1603\ndiscords,1,othello,1603\nenshelter'd,1,othello,1603\nbutt,1,othello,1603\nin's,1,othello,1603\ndenies,1,othello,1603\n'whore,1,othello,1603\nAlbeit,1,othello,1603\nkept,1,othello,1603\ngreatly,1,othello,1603\nbelike,1,othello,1603\nfouler,1,othello,1603\nbestial,1,othello,1603\nEnwheel,1,othello,1603\ncables,1,othello,1603\nstab,1,othello,1603\nProclaim,1,othello,1603\nsings,1,othello,1603\nhie,1,othello,1603\nhid,1,othello,1603\ninnocent,1,othello,1603\nhip,1,othello,1603\ndifficulty,1,othello,1603\niteration,1,othello,1603\nfitchew,1,othello,1603\nenter'd,1,othello,1603\nmotions,1,othello,1603\naspics',1,othello,1603\ntear,1,othello,1603\ndemerits,1,othello,1603\nrequired,1,othello,1603\nespecial,1,othello,1603\nbeg,1,othello,1603\nportance,1,othello,1603\nRaise,1,othello,1603\nHo,1,othello,1603\nkinds,1,othello,1603\nmeant,1,othello,1603\ncoursers,1,othello,1603\nenchanted,1,othello,1603\nfortune's,1,othello,1603\nruffians,1,othello,1603\ndeserved,1,othello,1603\nMoor's,1,othello,1603\ndenotement,1,othello,1603\nlay't,1,othello,1603\nbruised,1,othello,1603\naddiction,1,othello,1603\nnourishing,1,othello,1603\neast,1,othello,1603\nfated,1,othello,1603\ninnovation,1,othello,1603\npate,1,othello,1603\nelection,1,othello,1603\ntreachery,1,othello,1603\nunmoving,1,othello,1603\nHas,1,othello,1603\nbilleted,1,othello,1603\nearn,1,othello,1603\nstep,1,othello,1603\ntemples,1,othello,1603\npox,1,othello,1603\nnobility,1,othello,1603\nnice,1,othello,1603\ncustomer,1,othello,1603\nvesture,1,othello,1603\ndevotion,1,othello,1603\nRising,1,othello,1603\noutlive,1,othello,1603\ncurled,1,othello,1603\nlipp'd,1,othello,1603\nthereunto,1,othello,1603\nunauthorized,1,othello,1603\nRetires,1,othello,1603\nForgive,1,othello,1603\ntrimm'd,1,othello,1603\ngod,1,othello,1603\nembay'd,1,othello,1603\nDrop,1,othello,1603\nmoons,1,othello,1603\ngowns,1,othello,1603\nlolls,1,othello,1603\nMurder,1,othello,1603\ndrunkards,1,othello,1603\narrivance,1,othello,1603\nbulk,1,othello,1603\nbehaved,1,othello,1603\nweek,1,othello,1603\nsulphur,1,othello,1603\nnigh,1,othello,1603\nReceive,1,othello,1603\nhumane,1,othello,1603\npreserved,1,othello,1603\nsooner,1,othello,1603\nJove's,1,othello,1603\ncontrol,1,othello,1603\nmiscarry,1,othello,1603\ndrunkenness,1,othello,1603\negregiously,1,othello,1603\nsuffer'd,1,othello,1603\n'Twould,1,othello,1603\ndifference,1,othello,1603\nDistinctly,1,othello,1603\nBond,1,othello,1603\nPlague,1,othello,1603\nburn,1,othello,1603\nkindness,1,othello,1603\nlanguishes,1,othello,1603\ngutter'd,1,othello,1603\ncap,1,othello,1603\nfluster'd,1,othello,1603\nlikings,1,othello,1603\nsincerity,1,othello,1603\ndisplanting,1,othello,1603\nfoolishly,1,othello,1603\ntell'st,1,othello,1603\nsounds,1,othello,1603\ncongregated,1,othello,1603\nnaming,1,othello,1603\n'tween,1,othello,1603\ndevilish,1,othello,1603\nstrives,1,othello,1603\ndote,1,othello,1603\nreference,1,othello,1603\nhungerly,1,othello,1603\nimmediate,1,othello,1603\ndisproportion,1,othello,1603\ndevised,1,othello,1603\nunquietness,1,othello,1603\ngaze,1,othello,1603\nactual,1,othello,1603\nprated,1,othello,1603\ncelebration,1,othello,1603\nwedlock,1,othello,1603\nlatest,1,othello,1603\nmutualities,1,othello,1603\nsigniors,1,othello,1603\nsigniory,1,othello,1603\nsustain,1,othello,1603\ngum,1,othello,1603\nshadow,1,othello,1603\nVeronesa,1,othello,1603\ningredient,1,othello,1603\nPrerogatived,1,othello,1603\nidleness,1,othello,1603\ngape,1,othello,1603\nSaint,1,othello,1603\ndisclose,1,othello,1603\nhobby,1,othello,1603\nBelief,1,othello,1603\nbefallen,1,othello,1603\ncaptains,1,othello,1603\ntempts,1,othello,1603\nrenounce,1,othello,1603\n'Indeed,1,othello,1603\nDisprove,1,othello,1603\nprating,1,othello,1603\nsalmon's,1,othello,1603\nfuturity,1,othello,1603\nFathers,1,othello,1603\nprobation,1,othello,1603\nDidst,1,othello,1603\neaten,1,othello,1603\nlust's,1,othello,1603\ndespise,1,othello,1603\ndelay'd,1,othello,1603\nsilk,1,othello,1603\nextreme,1,othello,1603\nUnlocks,1,othello,1603\nHolds,1,othello,1603\nfriendly,1,othello,1603\nanguish,1,othello,1603\nvenial,1,othello,1603\nconjuration,1,othello,1603\ntwinn'd,1,othello,1603\nnettles,1,othello,1603\nextravagant,1,othello,1603\ndenoted,1,othello,1603\nKnavery's,1,othello,1603\nwaterish,1,othello,1603\ninsinuating,1,othello,1603\nYe,1,othello,1603\namongst,1,othello,1603\nfrowns,1,othello,1603\npreserve,1,othello,1603\nbeer,1,othello,1603\nunhatch'd,1,othello,1603\nlonger,1,othello,1603\nMeet,1,othello,1603\npeople's,1,othello,1603\nWhate'er,1,othello,1603\nsated,1,othello,1603\nTraitors,1,othello,1603\nstronger,1,othello,1603\nsink,1,othello,1603\nstrip,1,othello,1603\nensue,1,othello,1603\ncudgelled,1,othello,1603\nWrench,1,othello,1603\npitch,1,othello,1603\nSans,1,othello,1603\nMasters,1,othello,1603\nvantage,1,othello,1603\ncalling,1,othello,1603\nnorth,1,othello,1603\nfooting,1,othello,1603\ngrandsire,1,othello,1603\nguesses,1,othello,1603\nlately,1,othello,1603\nacceptance,1,othello,1603\nBoth,1,othello,1603\nbeginning,1,othello,1603\njealousies,1,othello,1603\npotential,1,othello,1603\ngarb,1,othello,1603\ndealest,1,othello,1603\nShapes,1,othello,1603\nsmell't,1,othello,1603\nsolemn,1,othello,1603\nstore,1,othello,1603\nnoted,1,othello,1603\nstorm,1,othello,1603\nfailing,1,othello,1603\nprophetic,1,othello,1603\ndeep,1,othello,1603\npromised,1,othello,1603\nhear't,1,othello,1603\nbetray,1,othello,1603\nblowing,1,othello,1603\nHolla,1,othello,1603\nembraced,1,othello,1603\ncontinues,1,othello,1603\nyea,1,othello,1603\nBegot,1,othello,1603\ntyrant,1,othello,1603\nsatisfy,1,othello,1603\nraise,1,othello,1603\nFear,1,othello,1603\nsixpence,1,othello,1603\nrepute,1,othello,1603\nloop,1,othello,1603\nmoans,1,othello,1603\nfasten,1,othello,1603\nstood,1,othello,1603\nyoked,1,othello,1603\nwreck,1,othello,1603\nMaking,1,othello,1603\n'Help,1,othello,1603\nrecovered,1,othello,1603\nnewer,1,othello,1603\nlegs,1,othello,1603\nago,1,othello,1603\nUnless,1,othello,1603\nPast,1,othello,1603\nBreaks,1,othello,1603\ndeficient,1,othello,1603\nwhereon,1,othello,1603\ndriving,1,othello,1603\nhorrorable,1,othello,1603\nmortise,1,othello,1603\nunworthy,1,othello,1603\nplays,1,othello,1603\npropriety,1,othello,1603\ngait,1,othello,1603\ndepends,1,othello,1603\nseeing,1,othello,1603\nlikely,1,othello,1603\nitch,1,othello,1603\nBesides,1,othello,1603\nplayed,1,othello,1603\nmountebanks,1,othello,1603\nstain'd,1,othello,1603\npromulgate,1,othello,1603\nlend,1,othello,1603\noccupation's,1,othello,1603\nboast,1,othello,1603\nicy,1,othello,1603\naffrighted,1,othello,1603\ndefence,1,othello,1603\nice,1,othello,1603\nhell's,1,othello,1603\nmembers,1,othello,1603\nSwords,1,othello,1603\nDirectly,1,othello,1603\ngame,1,othello,1603\nmemory,1,othello,1603\ngentlewoman,1,othello,1603\nshed,1,othello,1603\nmazzard,1,othello,1603\npierced,1,othello,1603\ncruelty,1,othello,1603\nedified,1,othello,1603\nPioners,1,othello,1603\nforges,1,othello,1603\namend,1,othello,1603\nsuckle,1,othello,1603\ngrowth,1,othello,1603\nnewly,1,othello,1603\npiercing,1,othello,1603\nbless'd,1,othello,1603\nhumours,1,othello,1603\n'Certes,1,othello,1603\nslime,1,othello,1603\nWatch,1,othello,1603\nrouse,1,othello,1603\ndesignment,1,othello,1603\nReturning,1,othello,1603\nbetray'd,1,othello,1603\nfrights,1,othello,1603\nquestions,1,othello,1603\nclyster,1,othello,1603\nboard,1,othello,1603\nrain'd,1,othello,1603\nbodies,1,othello,1603\ndelay,1,othello,1603\ndemi,1,othello,1603\naccumulate,1,othello,1603\nwisely,1,othello,1603\nregion,1,othello,1603\nlo,1,othello,1603\nplant,1,othello,1603\nDevour,1,othello,1603\nOthers,1,othello,1603\nboasting,1,othello,1603\nfairness,1,othello,1603\nbanish,1,othello,1603\ncrave,1,othello,1603\nuncleanly,1,othello,1603\nwrangle,1,othello,1603\nmoth,1,othello,1603\nmalignant,1,othello,1603\nunhandsome,1,othello,1603\nlown,1,othello,1603\naccount,1,othello,1603\nReads,1,othello,1603\nscholar,1,othello,1603\nattendant,1,othello,1603\nblackness,1,othello,1603\nlook'st,1,othello,1603\ncousin,1,othello,1603\nTook,1,othello,1603\ninhibited,1,othello,1603\ntemper,1,othello,1603\neminent,1,othello,1603\nunswear,1,othello,1603\nage,1,othello,1603\nexpostulate,1,othello,1603\nif't,1,othello,1603\nbegg'd,1,othello,1603\nstillness,1,othello,1603\nmiserable,1,othello,1603\nimpediment,1,othello,1603\nstoup,1,othello,1603\nYea,1,othello,1603\nalteration,1,othello,1603\ncommands,1,othello,1603\nadd,1,othello,1603\nspeak'st,1,othello,1603\nachieved,1,othello,1603\nresolved,1,othello,1603\ndemonstrable,1,othello,1603\nServants,1,othello,1603\nwherein,1,othello,1603\nspent,1,othello,1603\nlest,1,othello,1603\ndispose,1,othello,1603\ndries,1,othello,1603\nknot,1,othello,1603\ndistempering,1,othello,1603\nunfolds,1,othello,1603\nskillet,1,othello,1603\nblue,1,othello,1603\nremoved,1,othello,1603\ndolt,1,othello,1603\nfeats,1,othello,1603\nsuspected,1,othello,1603\nstarr'd,1,othello,1603\nbegan't,1,othello,1603\nfiend's,1,othello,1603\nlock'd,1,othello,1603\ngreater,1,othello,1603\nbootless,1,othello,1603\nSaints,1,othello,1603\nshow'd,1,othello,1603\nserious,1,othello,1603\nslack,1,othello,1603\nMarcus,1,othello,1603\nclamours,1,othello,1603\nGoats,1,othello,1603\ngardeners,1,othello,1603\njourney,1,othello,1603\nRaising,1,othello,1603\nreads,1,othello,1603\nenchafed,1,othello,1603\nmarr'd,1,othello,1603\nBecause,1,othello,1603\nincontinent,1,othello,1603\ntoad,1,othello,1603\nexcels,1,othello,1603\nwisest,1,othello,1603\nCame,1,othello,1603\nclimb,1,othello,1603\nharm'd,1,othello,1603\nperdurable,1,othello,1603\nprescription,1,othello,1603\nevents,1,othello,1603\nvalour,1,othello,1603\nreasons,1,othello,1603\nSeeing,1,othello,1603\nclime,1,othello,1603\nHaply,1,othello,1603\ncritical,1,othello,1603\ntenderly,1,othello,1603\nbodily,1,othello,1603\ndenote,1,othello,1603\nability,1,othello,1603\npuny,1,othello,1603\nsoldiership,1,othello,1603\n'Sweet,1,othello,1603\noutward,1,othello,1603\nlingered,1,othello,1603\nstrangle,1,othello,1603\nplume,1,othello,1603\nfaints,1,othello,1603\ncozening,1,othello,1603\nincline,1,othello,1603\nmonkey's,1,othello,1603\nkeel,1,othello,1603\nleets,1,othello,1603\nlewd,1,othello,1603\naffects,1,othello,1603\nhall,1,othello,1603\nhaunts,1,othello,1603\nspells,1,othello,1603\nmessenger,1,othello,1603\nlabouring,1,othello,1603\nGeneral,1,othello,1603\nindues,1,othello,1603\nknit,1,othello,1603\nnearer,1,othello,1603\nvillainous,1,othello,1603\nnation,1,othello,1603\novert,1,othello,1603\nfig's,1,othello,1603\npalate,1,othello,1603\nnatural,1,othello,1603\nbrimstone,1,othello,1603\nserpent's,1,othello,1603\nshunned,1,othello,1603\ntrade,1,othello,1603\nexpend,1,othello,1603\nTrumpets,1,othello,1603\nstrings,1,othello,1603\nre,1,othello,1603\nMine's,1,othello,1603\nLady,1,othello,1603\nreach,1,othello,1603\nFull,1,othello,1603\nthinkest,1,othello,1603\nfour,1,othello,1603\nplain,1,othello,1603\nsighing,1,othello,1603\nbobb'd,1,othello,1603\nmedicines,1,othello,1603\nsuitors,1,othello,1603\nknocking,1,othello,1603\nschool,1,othello,1603\nsweetest,1,othello,1603\nPrizes,1,othello,1603\npleasance,1,othello,1603\nfortification,1,othello,1603\nspotted,1,othello,1603\ntest,1,othello,1603\nexcuse,1,othello,1603\nHum,1,othello,1603\nwhether,1,othello,1603\nmidnight,1,othello,1603\nvengeance,1,othello,1603\nPalestine,1,othello,1603\nbrothers,1,othello,1603\noccasions,1,othello,1603\ngyve,1,othello,1603\ngradation,1,othello,1603\nknocks,1,othello,1603\nyawn,1,othello,1603\nimpatient,1,othello,1603\nredeemed,1,othello,1603\nCommend,1,othello,1603\ntell's,1,othello,1603\nshaked,1,othello,1603\nimportancy,1,othello,1603\nBell,1,othello,1603\ncharmer,1,othello,1603\nreturn'd,1,othello,1603\nengage,1,othello,1603\nsequester,1,othello,1603\nwalked,1,othello,1603\nstrive,1,othello,1603\nshakes,1,othello,1603\nattach,1,othello,1603\nUtter,1,othello,1603\ntwain,1,othello,1603\nmedicinal,1,othello,1603\npace,1,othello,1603\nfoot,1,othello,1603\nIndian,1,othello,1603\nsupersubtle,1,othello,1603\nfear'd,1,othello,1603\nworldly,1,othello,1603\nOttoman,1,othello,1603\ndreadful,1,othello,1603\npertains,1,othello,1603\nmandragora,1,othello,1603\nrequisites,1,othello,1603\nchastity,1,othello,1603\ndepended,1,othello,1603\ntyranny,1,othello,1603\nprepared,1,othello,1603\nWears,1,othello,1603\nHot,1,othello,1603\nexcess,1,othello,1603\nbeneficial,1,othello,1603\nunlucky,1,othello,1603\ndyed,1,othello,1603\nmaiden,1,othello,1603\nrightly,1,othello,1603\nye,1,othello,1603\nMen's,1,othello,1603\nlock,1,othello,1603\nconclusions,1,othello,1603\nterm,1,othello,1603\nforegone,1,othello,1603\nHast,1,othello,1603\nShe'll,1,othello,1603\nKing,1,othello,1603\nKind,1,othello,1603\nfurnish,1,othello,1603\nroll,1,othello,1603\nthanks,1,othello,1603\nknock,1,othello,1603\nShore,1,othello,1603\nbought,1,othello,1603\nShe'ld,1,othello,1603\nDelighted,1,othello,1603\ninquire,1,othello,1603\nprate,1,othello,1603\ncaster,1,othello,1603\nessential,1,othello,1603\ndebitor,1,othello,1603\ndeadly,1,othello,1603\nstrangeness,1,othello,1603\nThink'st,1,othello,1603\nalacrity,1,othello,1603\nfed,1,othello,1603\nunshunnable,1,othello,1603\nchides,1,othello,1603\nAte,1,othello,1603\nbookish,1,othello,1603\nbehavior,1,othello,1603\nnet,1,othello,1603\nRicher,1,othello,1603\nfantasy,1,othello,1603\nextincted,1,othello,1603\nbroil,1,othello,1603\nconversation,1,othello,1603\nContent,1,othello,1603\nunblessed,1,othello,1603\ntragic,1,othello,1603\ndemanded,1,othello,1603\nbaboon,1,othello,1603\nhazard,1,othello,1603\ngain'd,1,othello,1603\ntasted,1,othello,1603\nbroke,1,othello,1603\nhowling,1,othello,1603\nhinge,1,othello,1603\ntreasures,1,othello,1603\nspoken,1,othello,1603\nservitor,1,othello,1603\nsurgery,1,othello,1603\nscapes,1,othello,1603\nHellespont,1,othello,1603\ndelighted,1,othello,1603\nexecute,1,othello,1603\nfan,1,othello,1603\nstrumpet's,1,othello,1603\nborrow,1,othello,1603\ncraftily,1,othello,1603\nscaped,1,othello,1603\ntherewith,1,othello,1603\nSteering,1,othello,1603\nrepeals,1,othello,1603\nsurfeited,1,othello,1603\nintermingle,1,othello,1603\nhapp'd,1,othello,1603\nkitchens,1,othello,1603\nPerdition,1,othello,1603\nbreeds,1,othello,1603\ndestiny,1,othello,1603\nWounds,1,othello,1603\nsyllable,1,othello,1603\nVirtue,1,othello,1603\nbedchamber,1,othello,1603\nventure,1,othello,1603\nbarbarian,1,othello,1603\nSulphur,1,othello,1603\nDemand,1,othello,1603\nExist,1,othello,1603\ncarried,1,othello,1603\nempty,1,othello,1603\nsaid'st,1,othello,1603\nTorments,1,othello,1603\ngriefs,1,othello,1603\nforehead,1,othello,1603\ncompt,1,othello,1603\nblackest,1,othello,1603\nalabaster,1,othello,1603\nechoes,1,othello,1603\nrascals,1,othello,1603\nDoes't,1,othello,1603\nsilence,1,othello,1603\nneedle,1,othello,1603\nbravery,1,othello,1603\ncalm'd,1,othello,1603\nantique,1,othello,1603\nclamour,1,othello,1603\ncouldst,1,othello,1603\nexpress'd,1,othello,1603\nmountains,1,othello,1603\nthinly,1,othello,1603\nprotests,1,othello,1603\nsmallest,1,othello,1603\nprosperity,1,othello,1603\nfourth,1,othello,1603\nthinks,1,othello,1603\nomit,1,othello,1603\ntends,1,othello,1603\nnumber'd,1,othello,1603\nfable,1,othello,1603\nHandkerchief,1,othello,1603\nindicted,1,othello,1603\nfraught,1,othello,1603\nwhipster,1,othello,1603\nwakes,1,othello,1603\nobscure,1,othello,1603\ngavest,1,othello,1603\nhire,1,othello,1603\nseriously,1,othello,1603\nCommitted,1,othello,1603\nimminent,1,othello,1603\ngrange,1,othello,1603\nsibyl,1,othello,1603\nblab,1,othello,1603\nprovoking,1,othello,1603\nopposition,1,othello,1603\nHang,1,othello,1603\nrestore,1,othello,1603\nscale,1,othello,1603\nnoon,1,othello,1603\nclog,1,othello,1603\ngivest,1,othello,1603\nguides,1,othello,1603\nAnthropophagi,1,othello,1603\ncurtains,1,othello,1603\nbelow,1,othello,1603\nLuccicos,1,othello,1603\nexceedingly,1,othello,1603\ncontention,1,othello,1603\nbottle,1,othello,1603\ndaily,1,othello,1603\nrout,1,othello,1603\nreconciliation,1,othello,1603\ncaptivity,1,othello,1603\nremedy,1,othello,1603\ntender,1,othello,1603\nclothe,1,othello,1603\ndrunkard,1,othello,1603\ncourtship,1,othello,1603\nunprovide,1,othello,1603\nscar,1,othello,1603\nours,1,othello,1603\ncompanions,1,othello,1603\nunbitted,1,othello,1603\nveritable,1,othello,1603\nhide,1,othello,1603\nthinkings,1,othello,1603\nbestows,1,othello,1603\nselling,1,othello,1603\ninwards,1,othello,1603\nmisuse,1,othello,1603\ncommoner,1,othello,1603\nsirrah,1,othello,1603\npregnant,1,othello,1603\nhies,1,othello,1603\nchase,1,othello,1603\nlikelihood,1,othello,1603\noppresses,1,othello,1603\nparlors,1,othello,1603\nbegrimed,1,othello,1603\newe,1,othello,1603\nborne,1,othello,1603\nwolves,1,othello,1603\nsticks,1,othello,1603\nheathenish,1,othello,1603\ngarden,1,othello,1603\narise,1,othello,1603\ngermans,1,othello,1603\nperform,1,othello,1603\nConvinced,1,othello,1603\nvoluble,1,othello,1603\nloses,1,othello,1603\nloser,1,othello,1603\ncounsellor,1,othello,1603\nodious,1,othello,1603\nhorned,1,othello,1603\nmisery,1,othello,1603\nCertain,1,othello,1603\nhousewife,1,othello,1603\nensnare,1,othello,1603\nshall't,1,othello,1603\ndefective,1,othello,1603\nLord,1,othello,1603\nseveral,1,othello,1603\nanger'd,1,othello,1603\nNoses,1,othello,1603\nquarter,1,othello,1603\nswallows,1,othello,1603\nPeter,1,othello,1603\ncloak,1,othello,1603\nprecious,1,othello,1603\ncrooking,1,othello,1603\nmourn,1,othello,1603\nsigh'd,1,othello,1603\nperformances,1,othello,1603\nscan,1,othello,1603\nTying,1,othello,1603\nstrife,1,othello,1603\nPeople,1,othello,1603\nother's,1,othello,1603\nlikewise,1,othello,1603\nsacrifice,1,othello,1603\nDestruction,1,othello,1603\nfantastical,1,othello,1603\nindustry,1,othello,1603\nexchange,1,othello,1603\nLong,1,othello,1603\nsinging,1,othello,1603\nmane,1,othello,1603\nCough,1,othello,1603\nteeth,1,othello,1603\nSolicit,1,othello,1603\nsolid,1,othello,1603\nprobable,1,othello,1603\nstart,1,othello,1603\nstars,1,othello,1603\nqualities,1,othello,1603\nprize,1,othello,1603\ndisproportion'd,1,othello,1603\ncreditor,1,othello,1603\nMakes,1,othello,1603\nflinty,1,othello,1603\nenriches,1,othello,1603\nescape,1,othello,1603\nRemains,1,othello,1603\ncommencement,1,othello,1603\ntranquil,1,othello,1603\nunproper,1,othello,1603\nTransported,1,othello,1603\npurposed,1,othello,1603\nwatches,1,othello,1603\nbeauties,1,othello,1603\nmutter,1,othello,1603\nconfidence,1,othello,1603\nminx,1,othello,1603\nowedst,1,othello,1603\nprocess,1,othello,1603\nbeggar,1,othello,1603\ninsolent,1,othello,1603\nUncle,1,othello,1603\n'gainst,1,othello,1603\ncourage,1,othello,1603\nmask,1,othello,1603\nskin,1,othello,1603\nDivinity,1,othello,1603\ndearest,1,othello,1603\ncoloquintida,1,othello,1603\ntented,1,othello,1603\npetticoats,1,othello,1603\nprofitless,1,othello,1603\npermission,1,othello,1603\nmars,1,othello,1603\nyell,1,othello,1603\ninjuries,1,othello,1603\ndaffest,1,othello,1603\nfountain,1,othello,1603\nwoe,1,othello,1603\nAny,1,othello,1603\nsensuality,1,othello,1603\nforsook,1,othello,1603\nFlorence,1,othello,1603\nbillow,1,othello,1603\nwoo,1,othello,1603\nleaden,1,othello,1603\nwon,1,othello,1603\nminutes,1,othello,1603\ngreatest,1,othello,1603\nRobs,1,othello,1603\nheaven's,1,othello,1603\nsoften'd,1,othello,1603\narch,1,othello,1603\njesses,1,othello,1603\nplenteous,1,othello,1603\nPleasure,1,othello,1603\nengender'd,1,othello,1603\nhypocrisy,1,othello,1603\nblacker,1,othello,1603\ndischarge,1,othello,1603\nhighwrought,1,othello,1603\ngraze,1,othello,1603\ngondolier,1,othello,1603\nconscionable,1,othello,1603\nWhatever,1,othello,1603\npreposterously,1,othello,1603\nthyme,1,othello,1603\nexpectancy,1,othello,1603\nmockery,1,othello,1603\ndiscarded,1,othello,1603\nstake,1,othello,1603\nPerhaps,1,othello,1603\nstatesmen,1,othello,1603\nGiving,1,othello,1603\nvapour,1,othello,1603\nfirm,1,othello,1603\ndullness,1,othello,1603\ndesired,1,othello,1603\npossession,1,othello,1603\nbolster,1,othello,1603\nwealthy,1,othello,1603\n'whore',1,othello,1603\nknavery,1,othello,1603\ntaste,1,othello,1603\nslight,1,othello,1603\npole,1,othello,1603\nprotectress,1,othello,1603\nunmake,1,othello,1603\nproved,1,othello,1603\ncapp'd,1,othello,1603\nrenown,1,othello,1603\nfinder,1,othello,1603\nwrongs,1,othello,1603\ncontemplation,1,othello,1603\nmerits,1,othello,1603\nexample,1,othello,1603\npraisest,1,othello,1603\nsuppertime,1,othello,1603\ncarefully,1,othello,1603\nanticipates,1,othello,1603\nwheeling,1,othello,1603\npurchase,1,othello,1603\npomp,1,othello,1603\nsafely,1,othello,1603\nmolestation,1,othello,1603\nboarded,1,othello,1603\nConfess,1,othello,1603\nexperience,1,othello,1603\nVouch,1,othello,1603\nRun,1,othello,1603\ndiscipline,1,othello,1603\nstamp,1,othello,1603\nfive,1,othello,1603\nroast,1,othello,1603\nRub,1,othello,1603\ncapable,1,othello,1603\nbeckons,1,othello,1603\ngoats,1,othello,1603\nWe'll,1,othello,1603\nWent,1,othello,1603\nthink't,1,othello,1603\nproposed,1,othello,1603\nprovoke,1,othello,1603\nstomach,1,othello,1603\nslanderer,1,othello,1603\nredemption,1,othello,1603\n'Twill,1,othello,1603\ncompulsive,1,othello,1603\nherbs,1,othello,1603\ndefunct,1,othello,1603\nbawdy,1,othello,1603\nbread,1,othello,1603\nbrimful,1,othello,1603\nsyrups,1,othello,1603\nring,1,othello,1603\nProcure,1,othello,1603\nservices,1,othello,1603\nthird,1,othello,1603\nsmock,1,othello,1603\nprime,1,othello,1603\nsitting,1,othello,1603\ngay,1,othello,1603\nbondage,1,othello,1603\nmeasures,1,othello,1603\nabandon,1,othello,1603\nfilch,1,othello,1603\nhumanity,1,othello,1603\ncreation,1,othello,1603\nse'nnight's,1,othello,1603\nrecover'd,1,othello,1603\nmanifest,1,othello,1603\nstabs,1,othello,1603\ncloset,1,othello,1603\nDead,1,othello,1603\ncoxcomb,1,othello,1603\ninterprets,1,othello,1603\nconspire,1,othello,1603\nDear,1,othello,1603\nbestow't,1,othello,1603\nclock,1,othello,1603\nSure,1,othello,1603\noffending,1,othello,1603\ngrosser,1,othello,1603\nChaos,1,othello,1603\nripe,1,othello,1603\nimpediments,1,othello,1603\ndeath's,1,othello,1603\nsave,1,othello,1603\nremains,1,othello,1603\ningraft,1,othello,1603\nniece,1,othello,1603\nDESDEMONA's,1,othello,1603\nSucceeds,1,othello,1603\ncertainly,1,othello,1603\nMatching,1,othello,1603\ntrance,1,othello,1603\ncopied,1,othello,1603\nDamn'd,1,othello,1603\nDian's,1,othello,1603\nmaid's,1,othello,1603\nshadowing,1,othello,1603\nlikes,1,othello,1603\nissues,1,othello,1603\nfruitfulness,1,othello,1603\nstick,1,othello,1603\nprofitably,1,othello,1603\nThrow,1,othello,1603\nimperfect,1,othello,1603\ncallat,1,othello,1603\nlinger,1,othello,1603\ntuned,1,othello,1603\nheave,1,othello,1603\nRemove,1,othello,1603\ntailor,1,othello,1603\nbarbarous,1,othello,1603\nreceive,1,othello,1603\ntrusty,1,othello,1603\nfancy's,1,othello,1603\nperforce,1,othello,1603\nnuptial,1,othello,1603\nstabbing,1,othello,1603\nintent,1,othello,1603\nambition,1,othello,1603\nclogs,1,othello,1603\ncommander,1,othello,1603\nhidden,1,othello,1603\ngarland,1,othello,1603\nchangeable,1,othello,1603\nsufferance,1,othello,1603\nfellow's,1,othello,1603\narts,1,othello,1603\nAbuse,1,othello,1603\nkinsmen,1,othello,1603\nslipper,1,othello,1603\nantres,1,othello,1603\njourney's,1,othello,1603\nimposition,1,othello,1603\ndying,1,othello,1603\nbereft,1,othello,1603\nswagger,1,othello,1603\nperadventure,1,othello,1603\nhusbands',1,othello,1603\nbearded,1,othello,1603\nPoison,1,othello,1603\nFourth,1,othello,1603\npleads,1,othello,1603\npredecessor,1,othello,1603\ncursed,1,othello,1603\npotting,1,othello,1603\nSoliciting,1,othello,1603\nbounty,1,othello,1603\nThrown,1,othello,1603\nGiven,1,othello,1603\nequivocal,1,othello,1603\ncaught,1,othello,1603\nnotice,1,othello,1603\nhair,1,othello,1603\ndrowned,1,othello,1603\nthroats,1,othello,1603\nsnorting,1,othello,1603\nGives,1,othello,1603\ngrossly,1,othello,1603\naffinity,1,othello,1603\nproduced,1,othello,1603\nrequite,1,othello,1603\ngladly,1,othello,1603\nprompt,1,othello,1603\nsolicitor,1,othello,1603\nbreadth,1,othello,1603\naffordeth,1,othello,1603\nrecoiling,1,othello,1603\nmettle,1,othello,1603\nblotted,1,othello,1603\nBid,1,othello,1603\nransom,1,othello,1603\nStraight,1,othello,1603\npenitent,1,othello,1603\nsuppliest,1,othello,1603\nserved,1,othello,1603\nwhereinto,1,othello,1603\ningener,1,othello,1603\n'willow,1,othello,1603\nslavery,1,othello,1603\narithmetician,1,othello,1603\npurest,1,othello,1603\nindex,1,othello,1603\nHail,1,othello,1603\nscored,1,othello,1603\nfun,1,othello,1603\nSwell,1,othello,1603\nfife,1,othello,1603\ninform,1,othello,1603\ntilting,1,othello,1603\nanger,1,othello,1603\nweeping,1,othello,1603\nvicious,1,othello,1603\nspleen,1,othello,1603\nforeign,1,othello,1603\ndisembark,1,othello,1603\ndevoted,1,othello,1603\nRude,1,othello,1603\nwomb,1,othello,1603\nbitterness,1,othello,1603\nwondrous,1,othello,1603\nfacility,1,othello,1603\nrail,1,othello,1603\nsupply,1,othello,1603\nimputation,1,othello,1603\ndislikes,1,othello,1603\nclip,1,othello,1603\ncups,1,othello,1603\nsoldiers',1,othello,1603\nstow'd,1,othello,1603\nwhistle,1,othello,1603\nvirtuously,1,othello,1603\ngrain,1,othello,1603\ndetermined,1,othello,1603\ndrops,1,othello,1603\nslubber,1,othello,1603\nunbonneted,1,othello,1603\nwooer,1,othello,1603\nembark'd,1,othello,1603\nwaste,1,othello,1603\nmarble,1,othello,1603\npagans,1,othello,1603\nuttermost,1,othello,1603\nope,1,othello,1603\ndiscern'st,1,othello,1603\nfail,1,othello,1603\ndelations,1,othello,1603\nwatching,1,othello,1603\ngifts,1,othello,1603\nheathen,1,othello,1603\nearnestness,1,othello,1603\nmince,1,othello,1603\nbelch,1,othello,1603\nhideous,1,othello,1603\nShow,1,othello,1603\nguilty,1,othello,1603\nsails,1,othello,1603\ntable,1,othello,1603\ncreate,1,othello,1603\nhunger,1,othello,1603\nsupervisor,1,othello,1603\nvomit,1,othello,1603\nRot,1,othello,1603\nSwear,1,othello,1603\ndurst,1,othello,1603\nMany,1,othello,1603\npractising,1,othello,1603\ngiving,1,othello,1603\nmodesty,1,othello,1603\ncovered,1,othello,1603\ntwiggen,1,othello,1603\ndeluding,1,othello,1603\nfoh,1,othello,1603\nplumed,1,othello,1603\nfoe,1,othello,1603\namends,1,othello,1603\ndistract,1,othello,1603\nProceed,1,othello,1603\ncatechise,1,othello,1603\nwert,1,othello,1603\nCall'd,1,othello,1603\nsafest,1,othello,1603\nDevil,1,othello,1603\nrack,1,othello,1603\nkinsman,1,othello,1603\nsilly,1,othello,1603\nduck,1,othello,1603\nscorns,1,othello,1603\nmines,1,othello,1603\nparcels,1,othello,1603\ndiscover,1,othello,1603\ndarlings,1,othello,1603\nNaples,1,othello,1603\nthrew,1,othello,1603\nworthiness,1,othello,1603\napprehensions,1,othello,1603\npalace,1,othello,1603\npassing,1,othello,1603\nwest,1,othello,1603\nskilful,1,othello,1603\nheartstrings,1,othello,1603\nfig,1,othello,1603\nepithets,1,othello,1603\nofficed,1,othello,1603\nminute,1,othello,1603\ngalls,1,othello,1603\nMark,1,othello,1603\nfix,1,othello,1603\noffices,1,othello,1603\nnotify,1,othello,1603\nperfect,1,othello,1603\nfill,1,othello,1603\npleases,1,othello,1603\nNonsuits,1,othello,1603\nsavage,1,othello,1603\ncontinue,1,othello,1603\ntravels',1,othello,1603\nsmote,1,othello,1603\nlascivious,1,othello,1603\npants,1,othello,1603\nparticular,1,othello,1603\ncogging,1,othello,1603\nincorporate,1,othello,1603\nmanured,1,othello,1603\nrefer,1,othello,1603\nfrize,1,othello,1603\nthereby,1,othello,1603\nthunder,1,othello,1603\nanswer'd,1,othello,1603\nloading,1,othello,1603\ndispraisingly,1,othello,1603\nauld,1,othello,1603\nloveliness,1,othello,1603\nshown,1,othello,1603\nwide,1,othello,1603\nsurge,1,othello,1603\nlined,1,othello,1603\nundo't,1,othello,1603\nuncle,1,othello,1603\nagnise,1,othello,1603\nwived,1,othello,1603\nprospect,1,othello,1603\nWork,1,othello,1603\nBarbary,1,othello,1603\nbeware,1,othello,1603\nfoaming,1,othello,1603\nOffend,1,othello,1603\n'Good,1,othello,1603\nmember,1,othello,1603\nFoul,1,othello,1603\nmeaning,1,othello,1603\nreproach,1,othello,1603\nstrikes,1,othello,1603\npublic,1,othello,1603\ndistaste,1,othello,1603\nextenuate,1,othello,1603\nvotarist,1,othello,1603\ndeliver'd,1,othello,1603\nfounded,1,othello,1603\nobservance,1,othello,1603\ngrapes,1,othello,1603\nfriendship,1,othello,1603\nsquabble,1,othello,1603\nbank,1,othello,1603\nWednesday,1,othello,1603\nDeputing,1,othello,1603\nplainness,1,othello,1603\nvital,1,othello,1603\nhallow'd,1,othello,1603\nmotive,1,othello,1603\nweakness,1,othello,1603\ntame,1,othello,1603\nsecrets,1,othello,1603\ndam,1,othello,1603\nunlawfully,1,othello,1603\nquillets,1,othello,1603\nlarge,1,othello,1603\nfavourably,1,othello,1603\nNeglecting,1,othello,1603\ndismay'd,1,othello,1603\nsentences,1,othello,1603\nflock,1,othello,1603\nmischance,1,othello,1603\nmeets,1,othello,1603\nPuff'd,1,othello,1603\nfavourable,1,othello,1603\nsoul's,1,othello,1603\necstasy,1,othello,1603\nache,1,othello,1603\nCaesar,1,othello,1603\ntimorous,1,othello,1603\ncoat,1,othello,1603\nindistinct,1,othello,1603\ntall,1,othello,1603\nconstant,1,othello,1603\namiable,1,othello,1603\ncable,1,othello,1603\nwider,1,othello,1603\naffliction,1,othello,1603\nmediators,1,othello,1603\nfruitful,1,othello,1603\notherwise,1,othello,1603\ncue,1,othello,1603\nhaunting,1,othello,1603\npuppies,1,othello,1603\nperish,1,othello,1603\nWorse,1,othello,1603\nrapier,1,othello,1603\nalms,1,othello,1603\ninsupportable,1,othello,1603\noutsport,1,othello,1603\nminx's,1,othello,1603\npledge,1,othello,1603\nshook,1,othello,1603\ndungeon,1,othello,1603\nholy,1,othello,1603\nGive't,1,othello,1603\nprofessed,1,othello,1603\nclear,1,othello,1603\nPride,1,othello,1603\nshort,1,othello,1603\nclean,1,othello,1603\nNone,1,othello,1603\nSwallow,1,othello,1603\nfertile,1,othello,1603\nsatisfying,1,othello,1603\nunlace,1,othello,1603\nguinea,1,othello,1603\ndistinctly,1,othello,1603\ndangerous,1,othello,1603\nMauritania,1,othello,1603\nproclaimed,1,othello,1603\ndevout,1,othello,1603\nsweats,1,othello,1603\ndishes,1,othello,1603\nLives,1,othello,1603\npartially,1,othello,1603\ncompasses,1,othello,1603\nsew'd,1,othello,1603\nboyish,1,othello,1603\ncarve,1,othello,1603\nunto,1,othello,1603\ndeathbed,1,othello,1603\nfamily,1,othello,1603\nmonumental,1,othello,1603\nloyal,1,othello,1603\nassist,1,othello,1603\ndepth,1,othello,1603\ntire,1,othello,1603\nwinter,1,othello,1603\nstreets,1,othello,1603\nruffian'd,1,othello,1603\nWhere's,1,othello,1603\nresolution,1,othello,1603\nundertook,1,othello,1603\nspeculative,1,othello,1603\nFall'n,1,othello,1603\nreach'd,1,othello,1603\ntask,1,othello,1603\nseen't,1,othello,1603\ncholer,1,othello,1603\nthou'ldst,1,othello,1603\nnotwithstanding,1,othello,1603\nBrave,1,othello,1603\nhonesty's,1,othello,1603\nbawd,1,othello,1603\ncope,1,othello,1603\nmanage,1,othello,1603\nArabian,1,othello,1603\nperfumed,1,othello,1603\nseat,1,othello,1603\nhairs,1,othello,1603\nadopt,1,othello,1603\nlovely,1,othello,1603\nhunt,1,othello,1603\nArraigning,1,othello,1603\nequinox,1,othello,1603\ncool,1,othello,1603\nvexation,1,othello,1603\npudding,1,othello,1603\ncontinuate,1,othello,1603\nneglected,1,othello,1603\nimportunity,1,othello,1603\nadieu,1,othello,1603\nexamples,1,othello,1603\neyed,1,othello,1603\nugly,1,othello,1603\ncaptain's,1,othello,1603\nletting,1,othello,1603\ndifficult,1,othello,1603\nsect,1,othello,1603\nfuller,1,othello,1603\nconverse,1,othello,1603\nneedful,1,othello,1603\nSees,1,othello,1603\nreckoning,1,othello,1603\nthereto,1,othello,1603\nSeek,1,othello,1603\nquat,1,othello,1603\nweep'st,1,othello,1603\ntook't,1,othello,1603\nkeep't,1,othello,1603\nwe'll,1,othello,1603\nquay,1,othello,1603\npresence,1,othello,1603\ncousins,1,othello,1603\ngestures,1,othello,1603\nended,1,othello,1603\nNe'er,1,othello,1603\nundertaker,1,othello,1603\nSteps,1,othello,1603\nothers',1,othello,1603\ndivorce,1,othello,1603\nsees,1,othello,1603\ncomply,1,othello,1603\ndrunken,1,othello,1603\nvehement,1,othello,1603\nperiod,1,othello,1603\nhound,1,othello,1603\nBelieve,1,othello,1603\n'Sblood,1,othello,1603\nestimation,1,othello,1603\nexpectation,1,othello,1603\nSpeaking,1,othello,1603\nsuspects,1,othello,1603\nKilling,1,othello,1603\nsacred,1,othello,1603\nEnglish,1,othello,1603\ntopp'd,1,othello,1603\nincrease,1,othello,1603\npurgatory,1,othello,1603\nassign,1,othello,1603\npestilent,1,othello,1603\nportents,1,othello,1603\nmodest,1,othello,1603\naffright,1,othello,1603\nmusician,1,othello,1603\nnights,1,othello,1603\nunused,1,othello,1603\ndownright,1,othello,1603\nheels,1,othello,1603\nreprobation,1,othello,1603\nplatform,1,othello,1603\ngoat,1,othello,1603\ngreedy,1,othello,1603\ncistern,1,othello,1603\nreplies,1,othello,1603\nkindred,1,othello,1603\nwarranty,1,othello,1603\nsuffice,1,othello,1603\nloathe,1,othello,1603\ninviting,1,othello,1603\nlovers,1,othello,1603\nremove,1,othello,1603\ngods,1,othello,1603\nmodern,1,othello,1603\nraven,1,othello,1603\nbelieved,1,othello,1603\nsell,1,othello,1603\nunfolding,1,othello,1603\nturban'd,1,othello,1603\nmillions,1,othello,1603\nTrumpet,1,othello,1603\nblank,1,othello,1603\ndistracted,1,othello,1603\nwhilst,1,othello,1603\nsnipe,1,othello,1603\ngloss,1,othello,1603\nprison,1,othello,1603\nNeither,1,othello,1603\nallowed,1,othello,1603\nconfirmations,1,othello,1603\nundo,1,othello,1603\nWillow,1,othello,1603\ngrieves,1,othello,1603\nsimpleness,1,othello,1603\nswell,1,othello,1603\ncold,1,othello,1603\nremedies,1,othello,1603\nRoman,1,othello,1603\nAleppo,1,othello,1603\ngreeting,1,othello,1603\nfineless,1,othello,1603\nsmall'st,1,othello,1603\ncountryman,1,othello,1603\nsorrow's,1,othello,1603\ngarter,1,othello,1603\nhorologe,1,othello,1603\nblast,1,othello,1603\naches,1,othello,1603\nseaside,1,othello,1603\nMistress,1,othello,1603\nslumbers,1,othello,1603\npalpable,1,othello,1603\nhunts,1,othello,1603\naerial,1,othello,1603\nmaster's,1,othello,1603\neven'd,1,othello,1603\nstartingly,1,othello,1603\nleagued,1,othello,1603\nJudge,1,othello,1603\nchances,1,othello,1603\nbags,1,othello,1603\nnature's,1,othello,1603\nRough,1,othello,1603\nlawn,1,othello,1603\nmixtures,1,othello,1603\ncircumscription,1,othello,1603\nepilepsy,1,othello,1603\nfobbed,1,othello,1603\nFire,1,othello,1603\nTempests,1,othello,1603\nthread,1,othello,1603\nAlmain,1,othello,1603\ncredulous,1,othello,1603\nslow,1,othello,1603\ndealings,1,othello,1603\nadversities,1,othello,1603\npliant,1,othello,1603\nchoke,1,othello,1603\nscattering,1,othello,1603\neffects,1,othello,1603\nrequested,1,othello,1603\nfustian,1,othello,1603\nfranker,1,othello,1603\nfeasting,1,othello,1603\nunvarnish'd,1,othello,1603\npetty,1,othello,1603\nstrawberries,1,othello,1603\nmoraler,1,othello,1603\nUnreconciled,1,othello,1603\ndisastrous,1,othello,1603\nclouds,1,othello,1603\nwearing,1,othello,1603\nfiends,1,othello,1603\nalter'd,1,othello,1603\nperjury,1,othello,1603\nconstrue,1,othello,1603\nGreater,1,othello,1603\nrelume,1,othello,1603\nPropontic,1,othello,1603\nhousewives,1,othello,1603\npray'd,1,othello,1603\nHowever,1,othello,1603\nBlush'd,1,othello,1603\nbalance,1,othello,1603\nunlike,1,othello,1603\nrheum,1,othello,1603\nsufficiency,1,othello,1603\nconsequence,1,othello,1603\nvices,1,othello,1603\nreward,1,othello,1603\nburst,1,othello,1603\nwring,1,othello,1603\naccountant,1,othello,1603\nlaughed,1,othello,1603\nforked,1,othello,1603\ninferior,1,othello,1603\nchidden,1,othello,1603\nunskilful,1,othello,1603\ntreacherous,1,othello,1603\nparallel,1,othello,1603\nlikelihoods,1,othello,1603\nDiablo,1,othello,1603\nshambles,1,othello,1603\nelbow,1,othello,1603\ncollied,1,othello,1603\nsovereign,1,othello,1603\nrestem,1,othello,1603\nexsufflicate,1,othello,1603\nevils,1,othello,1603\ndetermine,1,othello,1603\nSince,1,othello,1603\ngrievously,1,othello,1603\ndeterminate,1,othello,1603\ncinders,1,othello,1603\nmurder's,1,othello,1603\nwhiter,1,othello,1603\ninjointed,1,othello,1603\nwhip,1,othello,1603\nmerciful,1,othello,1603\ngarner'd,1,othello,1603\nlaps,1,othello,1603\nbody's,1,othello,1603\ncrocodile,1,othello,1603\nsuffocating,1,othello,1603\nbattlements,1,othello,1603\nheartily,1,othello,1603\npegs,1,othello,1603\nGreat,1,othello,1603\nfled,1,othello,1603\nUnkindness,1,othello,1603\nbethink,1,othello,1603\ncastigation,1,othello,1603\npunishment,1,othello,1603\nbang'd,1,othello,1603\neleven,1,othello,1603\nEight,1,othello,1603\ngulfs,1,othello,1603\ncrusadoes,1,othello,1603\nbellied,1,othello,1603\nAbused,1,othello,1603\nForsooth,1,othello,1603\nextern,1,othello,1603\nFaints,1,othello,1603\nbanner,1,othello,1603\nquestion'd,1,othello,1603\nlion,1,othello,1603\ncaroused,1,othello,1603\nindiscreet,1,othello,1603\nhomage,1,othello,1603\nnephews,1,othello,1603\namorous,1,othello,1603\nwhiles,1,othello,1603\ntelling,1,othello,1603\nGerman,1,othello,1603\nscion,1,othello,1603\nchrysolite,1,othello,1603\nrenew'd,1,othello,1603\ngull,1,othello,1603\nlethargy,1,othello,1603\nearliest,1,othello,1603\nphrase,1,othello,1603\npeck,1,othello,1603\nlash,1,othello,1603\nhyssop,1,othello,1603\nMan,1,othello,1603\nplucks,1,othello,1603\nfasting,1,othello,1603\npreposterous,1,othello,1603\nliquid,1,othello,1603\nflag,1,othello,1603\ntenderness,1,othello,1603\nSings,1,othello,1603\ncitizens,1,othello,1603\ncommonly,1,othello,1603\ngravity,1,othello,1603\nmammering,1,othello,1603\nPromethean,1,othello,1603\ncompel,1,othello,1603\nthrowing,1,othello,1603\nshroud,1,othello,1603\nextent,1,othello,1603\nmineral,1,othello,1603\nmaidens',1,othello,1603\ndiscontented,1,othello,1603\nyerk'd,1,othello,1603\nimporting,1,othello,1603\npeer,1,othello,1603\nextend,1,othello,1603\ngets,1,othello,1603\nkeepest,1,othello,1603\nOlympus,1,othello,1603\nhowbeit,1,othello,1603\nhuman,1,othello,1603\nopportunity,1,othello,1603\nmummy,1,othello,1603\nhurl,1,othello,1603\nsquire,1,othello,1603\npreferring,1,othello,1603\nintentively,1,othello,1603\nneigh,1,othello,1603\nfathom,1,othello,1603\ncell,1,othello,1603\nfollow'd,1,othello,1603\nJustice,1,othello,1603\nimportunate,1,othello,1603\ntry,1,othello,1603\nshrewd,1,othello,1603\nsilent,1,othello,1603\nrebels,1,othello,1603\nDeath,1,othello,1603\nwitty,1,othello,1603\n'This,1,othello,1603\nSpotted,1,othello,1603\nleads,1,othello,1603\nTraverse,1,othello,1603\nNote,1,othello,1603\nemploy,1,othello,1603\nEvades,1,othello,1603\npattern,1,othello,1603\nsieges,1,othello,1603\nconfirm,1,othello,1603\nessence,1,othello,1603\nprovide,1,othello,1603\nspinster,1,othello,1603\ntheoric,1,othello,1603\nsubstitute,1,othello,1603\nmangled,1,othello,1603\nharsh,1,othello,1603\nWhoe'er,1,othello,1603\npelt,1,othello,1603\nhappily,1,othello,1603\nconfine,1,othello,1603\nFetch't,1,othello,1603\ndart,1,othello,1603\nperchance,1,othello,1603\nPlies,1,othello,1603\nSteep'd,1,othello,1603\nboisterous,1,othello,1603\nframe,1,othello,1603\nRouse,1,othello,1603\npaddle,1,othello,1603\nweight,1,othello,1603\ncatch,1,othello,1603\nhumbled,1,othello,1603\npens,1,othello,1603\nbonfires,1,othello,1603\n'faith,1,othello,1603\ntoy,1,othello,1603\ninstruction,1,othello,1603\nglobe,1,othello,1603\ntop,1,othello,1603\nanother's,1,othello,1603\nhotly,1,othello,1603\nfellowship,1,othello,1603\nImpudent,1,othello,1603\nPreferment,1,othello,1603\nliest,1,othello,1603\nproclamation,1,othello,1603\n'hem,1,othello,1603\nsnatch,1,othello,1603\nsea's,1,othello,1603\nemperor's,1,othello,1603\nDRAMATIS,1,othello,1603\nsuccess,1,othello,1603\nleap'd,1,othello,1603\ndilatory,1,othello,1603\ndaughters',1,othello,1603\nguests,1,othello,1603\nsolicitation,1,othello,1603\ntis,1,othello,1603\ntin,1,othello,1603\nphysician,1,othello,1603\nTouch,1,othello,1603\nfilled,1,othello,1603\ndotage,1,othello,1603\npropose,1,othello,1603\nanswerable,1,othello,1603\nhousewives',1,othello,1603\nuncapable,1,othello,1603\nsweeting,1,othello,1603\nDesires,1,othello,1603\nToo,1,othello,1603\nfrankly,1,othello,1603\npass'd,1,othello,1603\ntopping,1,othello,1603\nbargain,1,othello,1603\nLeft,1,othello,1603\ntempt,1,othello,1603\nmeditations,1,othello,1603\ncircumcised,1,othello,1603\ntrees,1,othello,1603\ndivided,1,othello,1603\nAngelo,1,othello,1603\nProbal,1,othello,1603\ngorge,1,othello,1603\ndew,1,othello,1603\ngentler,1,othello,1603\nimpotent,1,othello,1603\nTalk,1,othello,1603\nstings,1,othello,1603\nStaying,1,othello,1603\ntinder,1,othello,1603\npress'd,1,othello,1603\ndisputed,1,othello,1603\nslip,1,othello,1603\nstomachs,1,othello,1603\ndarling,1,othello,1603\nIf't,1,othello,1603\nhellish,1,othello,1603\ntoads,1,othello,1603\ndivorcement,1,othello,1603\ncannon,1,othello,1603\nOpens,1,othello,1603\ndoting,1,othello,1603\nparley,1,othello,1603\nrepair,1,othello,1603\nHumbly,1,othello,1603\n'mongst,1,othello,1603\nbreathe,1,othello,1603\nmagnifico,1,othello,1603\nobedience,1,othello,1603\navaunt,1,othello,1603\nhangman,1,othello,1603\nshape,1,othello,1603\nprofit's,1,othello,1603\ncontaminated,1,othello,1603\nSpartan,1,othello,1603\nBells,1,othello,1603\nParted,1,othello,1603\nbreaths,1,othello,1603\nLechery,1,othello,1603\nPrick'd,1,othello,1603\nhunting,1,othello,1603\nperhaps,1,othello,1603\nfordoes,1,othello,1603\nprivately,1,othello,1603\nsands,1,othello,1603\norder,1,othello,1603\ndissemble,1,othello,1603\nenmesh,1,othello,1603\nprompter,1,othello,1603\nobserving,1,othello,1603\nusurped,1,othello,1603\ntoughness,1,othello,1603\nlose't,1,othello,1603\nswag,1,othello,1603\nwoo'd,1,othello,1603\ndegrees,1,othello,1603\nswan,1,othello,1603\nsummer,1,othello,1603\nweigh'st,1,othello,1603\ngennets,1,othello,1603\nsanctimony,1,othello,1603\nbrawl,2,othello,1603\nregard,2,othello,1603\nV,2,othello,1603\nswords,2,othello,1603\nfruits,2,othello,1603\nsuffer,2,othello,1603\nsmiles,2,othello,1603\ngallants,2,othello,1603\ntook,2,othello,1603\napprehend,2,othello,1603\nassay,2,othello,1603\nheir,2,othello,1603\nwish'd,2,othello,1603\nhorse,2,othello,1603\nPish,2,othello,1603\nran,2,othello,1603\nroyal,2,othello,1603\nlawful,2,othello,1603\nWhether,2,othello,1603\nNobody,2,othello,1603\nVillain,2,othello,1603\nDesdemona's,2,othello,1603\npreparation,2,othello,1603\nhealth,2,othello,1603\nmend,2,othello,1603\nstopp'd,2,othello,1603\ndotes,2,othello,1603\nBeat,2,othello,1603\nmandate,2,othello,1603\neasily,2,othello,1603\njot,2,othello,1603\ndespised,2,othello,1603\neight,2,othello,1603\nTell,2,othello,1603\njoint,2,othello,1603\nMust,2,othello,1603\ngroan,2,othello,1603\nbounteous,2,othello,1603\nvain,2,othello,1603\nprisoner,2,othello,1603\ngrim,2,othello,1603\nhonourable,2,othello,1603\nhearted,2,othello,1603\npottle,2,othello,1603\nfeeds,2,othello,1603\nallowance,2,othello,1603\nfury,2,othello,1603\nthroat,2,othello,1603\nwithal,2,othello,1603\nlaugh,2,othello,1603\ninclining,2,othello,1603\nrun,2,othello,1603\nabsolute,2,othello,1603\nmoist,2,othello,1603\nEntirely,2,othello,1603\ncase,2,othello,1603\nworser,2,othello,1603\ncats,2,othello,1603\nbreach,2,othello,1603\nbeneath,2,othello,1603\nsoon,2,othello,1603\nbirth,2,othello,1603\namazed,2,othello,1603\nsold,2,othello,1603\nmatters,2,othello,1603\nbearing,2,othello,1603\nJove,2,othello,1603\nsorrows,2,othello,1603\ncrying,2,othello,1603\nbroken,2,othello,1603\nthou'rt,2,othello,1603\nMuch,2,othello,1603\nconcerns,2,othello,1603\nfunction,2,othello,1603\nrevels,2,othello,1603\nfingers,2,othello,1603\nlift,2,othello,1603\npolicy,2,othello,1603\nknaves,2,othello,1603\ncomplexion,2,othello,1603\nsoft,2,othello,1603\nMethinks,2,othello,1603\nriches,2,othello,1603\nerrs,2,othello,1603\nbegan,2,othello,1603\nmoving,2,othello,1603\nconceits,2,othello,1603\nmonkeys,2,othello,1603\nhistory,2,othello,1603\nreturned,2,othello,1603\nconception,2,othello,1603\n'twere,2,othello,1603\nkey,2,othello,1603\nsubdued,2,othello,1603\nbode,2,othello,1603\ninvention,2,othello,1603\ndeceived,2,othello,1603\nhereabout,2,othello,1603\nGoing,2,othello,1603\npeevish,2,othello,1603\nscorn,2,othello,1603\nforsake,2,othello,1603\nperil,2,othello,1603\nlove's,2,othello,1603\nson,2,othello,1603\nerring,2,othello,1603\n'O,2,othello,1603\n't,2,othello,1603\ninstruct,2,othello,1603\nfaults,2,othello,1603\noffends,2,othello,1603\nbetwixt,2,othello,1603\namiss,2,othello,1603\nexhibition,2,othello,1603\nfelt,2,othello,1603\nmocks,2,othello,1603\nfight,2,othello,1603\ncompassing,2,othello,1603\nbrain,2,othello,1603\npiece,2,othello,1603\nprofess,2,othello,1603\nfigure,2,othello,1603\nbliss,2,othello,1603\ndirect,2,othello,1603\nruns,2,othello,1603\nrelate,2,othello,1603\nwhite,2,othello,1603\nLeave,2,othello,1603\nsaw't,2,othello,1603\nsup,2,othello,1603\nbrace,2,othello,1603\nreverence,2,othello,1603\nfearful,2,othello,1603\nfeed,2,othello,1603\nblind,2,othello,1603\nwhisper,2,othello,1603\nothers,2,othello,1603\nputting,2,othello,1603\nkneel,2,othello,1603\nknees,2,othello,1603\nwant,2,othello,1603\nknow'st,2,othello,1603\ndiet,2,othello,1603\nsooth,2,othello,1603\nFetch,2,othello,1603\nDane,2,othello,1603\nharbour,2,othello,1603\nbreeding,2,othello,1603\nwary,2,othello,1603\nrule,2,othello,1603\nmeat,2,othello,1603\ndesire,2,othello,1603\ngesture,2,othello,1603\nrules,2,othello,1603\nBlessed,2,othello,1603\nbook,2,othello,1603\nframed,2,othello,1603\nauthority,2,othello,1603\nI',2,othello,1603\nstir,2,othello,1603\nslaves,2,othello,1603\nstrongly,2,othello,1603\ndrinking,2,othello,1603\nsign,2,othello,1603\nStabs,2,othello,1603\nstreams,2,othello,1603\ngranted,2,othello,1603\nexercise,2,othello,1603\nperfection,2,othello,1603\npilot,2,othello,1603\nhang'd,2,othello,1603\nmutiny,2,othello,1603\nscarce,2,othello,1603\nbalmy,2,othello,1603\nguiltiness,2,othello,1603\neternal,2,othello,1603\nunnatural,2,othello,1603\nStill,2,othello,1603\nblown,2,othello,1603\ntold'st,2,othello,1603\nwarrior,2,othello,1603\nbay,2,othello,1603\nin't,2,othello,1603\npulls,2,othello,1603\nchanged,2,othello,1603\nmedicine,2,othello,1603\nfatal,2,othello,1603\nills,2,othello,1603\nrequires,2,othello,1603\ndinner,2,othello,1603\nnotorious,2,othello,1603\nsurely,2,othello,1603\nease,2,othello,1603\nproud,2,othello,1603\nglorious,2,othello,1603\nmatches,2,othello,1603\nheads,2,othello,1603\ncorrupted,2,othello,1603\nkiss'd,2,othello,1603\nhaunt,2,othello,1603\niniquity,2,othello,1603\nweed,2,othello,1603\nbe'st,2,othello,1603\nsith,2,othello,1603\nchallenge,2,othello,1603\nhills,2,othello,1603\nabsent,2,othello,1603\nperdition,2,othello,1603\ngoodly,2,othello,1603\ngot,2,othello,1603\ntricks,2,othello,1603\nlearned,2,othello,1603\nwear,2,othello,1603\nDies,2,othello,1603\njewel,2,othello,1603\ntedious,2,othello,1603\ndespite,2,othello,1603\nswift,2,othello,1603\nmystery,2,othello,1603\ngown,2,othello,1603\ndivine,2,othello,1603\ngate,2,othello,1603\njump,2,othello,1603\nbeds,2,othello,1603\nsing,2,othello,1603\nimmortal,2,othello,1603\nhurts,2,othello,1603\nimportune,2,othello,1603\nbegin,2,othello,1603\nquite,2,othello,1603\nuses,2,othello,1603\nForth,2,othello,1603\nGod's,2,othello,1603\nforgive,2,othello,1603\nmood,2,othello,1603\naim,2,othello,1603\ngift,2,othello,1603\nservant,2,othello,1603\nexcellent,2,othello,1603\nconsider,2,othello,1603\ncurrent,2,othello,1603\nbeat,2,othello,1603\ngain,2,othello,1603\nyes,2,othello,1603\nmurderous,2,othello,1603\ntongues,2,othello,1603\nhandsome,2,othello,1603\ndwell,2,othello,1603\nstone,2,othello,1603\ncaitiff,2,othello,1603\npluck'd,2,othello,1603\nengines,2,othello,1603\n'Fore,2,othello,1603\ninterim,2,othello,1603\nVillanous,2,othello,1603\nthrive,2,othello,1603\nenforce,2,othello,1603\npoise,2,othello,1603\nlady's,2,othello,1603\nrestraint,2,othello,1603\nappeared,2,othello,1603\nmakest,2,othello,1603\nwench,2,othello,1603\nfixed,2,othello,1603\nattending,2,othello,1603\nConcerning,2,othello,1603\nfears,2,othello,1603\nexpert,2,othello,1603\nstrain,2,othello,1603\nnecessity,2,othello,1603\nutmost,2,othello,1603\nwhereof,2,othello,1603\nmorn,2,othello,1603\nloss,2,othello,1603\nWouldst,2,othello,1603\npotent,2,othello,1603\ntwenty,2,othello,1603\nGuns,2,othello,1603\nIt's,2,othello,1603\nknee,2,othello,1603\nhot,2,othello,1603\nthrice,2,othello,1603\nchoice,2,othello,1603\nhark,2,othello,1603\npersonal,2,othello,1603\neasy,2,othello,1603\nkills,2,othello,1603\nfront,2,othello,1603\nsoldier's,2,othello,1603\npale,2,othello,1603\npalm,2,othello,1603\nfaintly,2,othello,1603\nappears,2,othello,1603\nliberty,2,othello,1603\nconsuls,2,othello,1603\nhardness,2,othello,1603\nforty,2,othello,1603\nmighty,2,othello,1603\nacquaintance,2,othello,1603\nunlawful,2,othello,1603\ncity,2,othello,1603\nweeps,2,othello,1603\nabhor,2,othello,1603\nnightly,2,othello,1603\nstranger,2,othello,1603\nremoving,2,othello,1603\nwasted,2,othello,1603\ndiest,2,othello,1603\nexquisite,2,othello,1603\nstones,2,othello,1603\nalive,2,othello,1603\nshot,2,othello,1603\nrings,2,othello,1603\nfall'n,2,othello,1603\nfood,2,othello,1603\ncourses,2,othello,1603\ncreatures,2,othello,1603\nass,2,othello,1603\nobject,2,othello,1603\naccidents,2,othello,1603\ngirl,2,othello,1603\nforms,2,othello,1603\nfancies,2,othello,1603\nchance,2,othello,1603\ntrick,2,othello,1603\nnative,2,othello,1603\nSometimes,2,othello,1603\nmaim'd,2,othello,1603\nwooing,2,othello,1603\nenjoy,2,othello,1603\nStood,2,othello,1603\nguess,2,othello,1603\nprays,2,othello,1603\nInto,2,othello,1603\nnotable,2,othello,1603\nyesterday,2,othello,1603\nComes,2,othello,1603\nKill,2,othello,1603\neducation,2,othello,1603\nscant,2,othello,1603\nrank,2,othello,1603\ndress'd,2,othello,1603\nrose,2,othello,1603\nmischief,2,othello,1603\nsession,2,othello,1603\nlords,2,othello,1603\nbuild,2,othello,1603\ndistance,2,othello,1603\nretires,2,othello,1603\nnote,2,othello,1603\nunknown,2,othello,1603\nlack'd,2,othello,1603\nproceed,2,othello,1603\nwaked,2,othello,1603\nBade,2,othello,1603\nPeace,2,othello,1603\nhint,2,othello,1603\nentertainment,2,othello,1603\nbeard,2,othello,1603\ndangers,2,othello,1603\nWear,2,othello,1603\ndisloyal,2,othello,1603\nSoft,2,othello,1603\nDown,2,othello,1603\nStriking,2,othello,1603\nSubdue,2,othello,1603\nvisage,2,othello,1603\ncharm,2,othello,1603\nAll's,2,othello,1603\naffections,2,othello,1603\nquickly,2,othello,1603\nignorant,2,othello,1603\nSet,2,othello,1603\nevermore,2,othello,1603\nsay'st,2,othello,1603\npowers,2,othello,1603\nDoth,2,othello,1603\nSea,2,othello,1603\nerr,2,othello,1603\ndevice,2,othello,1603\nstare,2,othello,1603\ntowards,2,othello,1603\nkissed,2,othello,1603\nCould,2,othello,1603\nvillanous,2,othello,1603\nranks,2,othello,1603\npersuaded,2,othello,1603\nissue,2,othello,1603\nquench,2,othello,1603\nunpin,2,othello,1603\ntasks,2,othello,1603\nchide,2,othello,1603\nDrunk,2,othello,1603\nbenefit,2,othello,1603\nover,2,othello,1603\nsearch,2,othello,1603\ntrifle,2,othello,1603\nlaughs,2,othello,1603\nMade,2,othello,1603\nchuck,2,othello,1603\none's,2,othello,1603\nsubdue,2,othello,1603\nthigh,2,othello,1603\ntrouble,2,othello,1603\ndivision,2,othello,1603\nmistress',2,othello,1603\nfills,2,othello,1603\nwrath,2,othello,1603\nweb,2,othello,1603\nliving,2,othello,1603\nFound,2,othello,1603\nbehalf,2,othello,1603\npause,2,othello,1603\npassage,2,othello,1603\nwi',2,othello,1603\nReputation,2,othello,1603\nmurders,2,othello,1603\nodd,2,othello,1603\nflies,2,othello,1603\nneck,2,othello,1603\nsides,2,othello,1603\nWitness,2,othello,1603\nsorrow,2,othello,1603\nbreak,2,othello,1603\nonly,2,othello,1603\nhears,2,othello,1603\nTuesday,2,othello,1603\nmoment,2,othello,1603\nrecover,2,othello,1603\nfrailty,2,othello,1603\noak,2,othello,1603\nGratiano,2,othello,1603\nSay,2,othello,1603\nquicken,2,othello,1603\nnegligence,2,othello,1603\nsubtle,2,othello,1603\ntorture,2,othello,1603\nnether,2,othello,1603\nAncient,2,othello,1603\nearnest,2,othello,1603\ndriven,2,othello,1603\nWorthy,2,othello,1603\narms,2,othello,1603\ncommanded,2,othello,1603\noath,2,othello,1603\nrage,2,othello,1603\nassure,2,othello,1603\ndanger,2,othello,1603\nproceeding,2,othello,1603\nprice,2,othello,1603\nwont,2,othello,1603\nforfend,2,othello,1603\nThree,2,othello,1603\nfamiliar,2,othello,1603\nraging,2,othello,1603\nbaseness,2,othello,1603\nseize,2,othello,1603\ngender,2,othello,1603\nreports,2,othello,1603\ndemonstrate,2,othello,1603\nprologue,2,othello,1603\ncharged,2,othello,1603\nangel,2,othello,1603\nSagittary,2,othello,1603\nkilling,2,othello,1603\nopposite,2,othello,1603\ncompass,2,othello,1603\nowe,2,othello,1603\nhaply,2,othello,1603\nbelie,2,othello,1603\nbeguiled,2,othello,1603\nstoutly,2,othello,1603\nunfortunate,2,othello,1603\nwrong'd,2,othello,1603\nStrike,2,othello,1603\nminister,2,othello,1603\nfain,2,othello,1603\nwholesome,2,othello,1603\ncried,2,othello,1603\nposition,2,othello,1603\nyond,2,othello,1603\njudge,2,othello,1603\nprattle,2,othello,1603\nmethinks,2,othello,1603\nfame,2,othello,1603\nhumour,2,othello,1603\npleased,2,othello,1603\nwounds,2,othello,1603\ntune,2,othello,1603\nfly,2,othello,1603\nfine,2,othello,1603\nsafety,2,othello,1603\nribs,2,othello,1603\ndamnation,2,othello,1603\nLead,2,othello,1603\nbark,2,othello,1603\nrebuke,2,othello,1603\nduties,2,othello,1603\nlordship,2,othello,1603\ntail,2,othello,1603\npocket,2,othello,1603\nunfold,2,othello,1603\nsmooth,2,othello,1603\nBarbara,2,othello,1603\npartly,2,othello,1603\npatient,2,othello,1603\nsenators,2,othello,1603\nincur,2,othello,1603\nprefer,2,othello,1603\nEach,2,othello,1603\ndrinks,2,othello,1603\nlights,2,othello,1603\nbind,2,othello,1603\nappearance,2,othello,1603\nsufficient,2,othello,1603\nstroke,2,othello,1603\nTrust,2,othello,1603\ntorment,2,othello,1603\nwilt,2,othello,1603\nholds,2,othello,1603\nEngland,2,othello,1603\ndozen,2,othello,1603\npopulous,2,othello,1603\nmaster,2,othello,1603\nhollow,2,othello,1603\ncut,2,othello,1603\ncounterfeit,2,othello,1603\nrequest,2,othello,1603\nrevolt,2,othello,1603\ndefeat,2,othello,1603\nAwake,2,othello,1603\nseal,2,othello,1603\nabilities,2,othello,1603\nseas,2,othello,1603\nalong,2,othello,1603\nlow,2,othello,1603\ncaptain,2,othello,1603\nsupplied,2,othello,1603\nTruly,2,othello,1603\ntrespass,2,othello,1603\nunkindness,2,othello,1603\nNews,2,othello,1603\ndiscretion,2,othello,1603\nvessel,2,othello,1603\ntells,2,othello,1603\ncost,2,othello,1603\nfellows,2,othello,1603\ntidings,2,othello,1603\nbattle,2,othello,1603\ntroop,2,othello,1603\nthrust,2,othello,1603\nperson,2,othello,1603\nHe'll,2,othello,1603\ntree,2,othello,1603\npour,2,othello,1603\ndrugs,2,othello,1603\nhuge,2,othello,1603\nSend,2,othello,1603\nport,2,othello,1603\nCry,2,othello,1603\naloud,2,othello,1603\ncases,2,othello,1603\ndeceive,2,othello,1603\nchose,2,othello,1603\naffair,2,othello,1603\nsafer,2,othello,1603\nbestow,2,othello,1603\npipes,2,othello,1603\nebb,2,othello,1603\nTwo,2,othello,1603\nbrow,2,othello,1603\nservants,2,othello,1603\npersuade,2,othello,1603\neat,2,othello,1603\nsuitor,2,othello,1603\nsenator,2,othello,1603\nimports,2,othello,1603\ntaint,2,othello,1603\nabroad,2,othello,1603\nforced,2,othello,1603\nbegins,2,othello,1603\nlearn,2,othello,1603\ndoing,2,othello,1603\nremember,2,othello,1603\nisland,2,othello,1603\nDoes,2,othello,1603\nnobody,2,othello,1603\nconjured,2,othello,1603\nMen,2,othello,1603\npowerful,2,othello,1603\nfashion,2,othello,1603\npernicious,2,othello,1603\nwound,2,othello,1603\nAmen,2,othello,1603\nmarriage,2,othello,1603\ndismiss,2,othello,1603\nKneels,2,othello,1603\naffined,2,othello,1603\ngrounds,2,othello,1603\nthither,2,othello,1603\nlate,2,othello,1603\ncanakin,2,othello,1603\npranks,2,othello,1603\nbetimes,2,othello,1603\nfright,2,othello,1603\nWithout,2,othello,1603\nwere't,2,othello,1603\nmoe,2,othello,1603\nentreats,2,othello,1603\nfrank,2,othello,1603\nsimple,2,othello,1603\nwitness,2,othello,1603\nYou'll,2,othello,1603\ninvited,2,othello,1603\nasleep,2,othello,1603\nWhip,2,othello,1603\nLest,2,othello,1603\ncashier'd,2,othello,1603\nsudden,2,othello,1603\nsupp'd,2,othello,1603\nrocks,2,othello,1603\npoisons,2,othello,1603\nlame,2,othello,1603\nBring,2,othello,1603\nDue,2,othello,1603\nfilthy,2,othello,1603\nbehold,2,othello,1603\nexit,2,othello,1603\nfrail,2,othello,1603\ndrown'd,2,othello,1603\ngloves,2,othello,1603\nten,2,othello,1603\namen,2,othello,1603\nremorse,2,othello,1603\ncharity,2,othello,1603\nforbear,2,othello,1603\nremembrance,2,othello,1603\nshirt,2,othello,1603\ncrown,2,othello,1603\nundertake,2,othello,1603\nFlorentine,2,othello,1603\nHollander,2,othello,1603\nlads,2,othello,1603\nbrave,3,othello,1603\nheed,3,othello,1603\nignorance,3,othello,1603\nparted,3,othello,1603\ndrop,3,othello,1603\nmotion,3,othello,1603\nFie,3,othello,1603\npeculiar,3,othello,1603\nsteals,3,othello,1603\nfinger,3,othello,1603\nviolent,3,othello,1603\nEither,3,othello,1603\nBeshrew,3,othello,1603\ninstrument,3,othello,1603\nnaked,3,othello,1603\nhanged,3,othello,1603\nslander,3,othello,1603\nworks,3,othello,1603\nWhom,3,othello,1603\nLight,3,othello,1603\nstirring,3,othello,1603\nPoor,3,othello,1603\nconscience,3,othello,1603\ngrows,3,othello,1603\ncircumstance,3,othello,1603\ngracious,3,othello,1603\ninjury,3,othello,1603\nKeep,3,othello,1603\nheat,3,othello,1603\nmadness,3,othello,1603\npaper,3,othello,1603\nmaking,3,othello,1603\naddition,3,othello,1603\nblessed,3,othello,1603\ngeneral's,3,othello,1603\nstands,3,othello,1603\nimpossible,3,othello,1603\n'A,3,othello,1603\nmerry,3,othello,1603\nfell,3,othello,1603\nscore,3,othello,1603\ncouncil,3,othello,1603\ndeliver,3,othello,1603\nwinds,3,othello,1603\nwight,3,othello,1603\npitiful,3,othello,1603\nread,3,othello,1603\nmerit,3,othello,1603\ncommon,3,othello,1603\ngive't,3,othello,1603\ncivil,3,othello,1603\nabsence,3,othello,1603\nloose,3,othello,1603\nsue,3,othello,1603\nfeel,3,othello,1603\npromise,3,othello,1603\ngalleys,3,othello,1603\nspeaking,3,othello,1603\nMusicians,3,othello,1603\ndies,3,othello,1603\ndirectly,3,othello,1603\ncustom,3,othello,1603\nworld's,3,othello,1603\nrest,3,othello,1603\nstop,3,othello,1603\nwits,3,othello,1603\nobserve,3,othello,1603\ninfirmity,3,othello,1603\nbitter,3,othello,1603\ndrown,3,othello,1603\noffend,3,othello,1603\nAm,3,othello,1603\nquarrel,3,othello,1603\nThose,3,othello,1603\nshortly,3,othello,1603\ndesperate,3,othello,1603\nsmile,3,othello,1603\nscurvy,3,othello,1603\nStand,3,othello,1603\nladyship,3,othello,1603\ncruel,3,othello,1603\nunless,3,othello,1603\nOh,3,othello,1603\nsince,3,othello,1603\nquick,3,othello,1603\npass,3,othello,1603\nears,3,othello,1603\nchanges,3,othello,1603\nAdieu,3,othello,1603\ngold,3,othello,1603\nbusy,3,othello,1603\ncouch,3,othello,1603\nweak,3,othello,1603\nBehold,3,othello,1603\npeople,3,othello,1603\nPut,3,othello,1603\ndrowning,3,othello,1603\ndegree,3,othello,1603\nsins,3,othello,1603\nLike,3,othello,1603\n'Twas,3,othello,1603\ngovernment,3,othello,1603\naffection,3,othello,1603\nbreast,3,othello,1603\nmagic,3,othello,1603\nstops,3,othello,1603\njewels,3,othello,1603\nsafe,3,othello,1603\nviolence,3,othello,1603\nnapkin,3,othello,1603\ngall,3,othello,1603\ncomforts,3,othello,1603\nforget,3,othello,1603\nmove,3,othello,1603\nsmall,3,othello,1603\nidle,3,othello,1603\nMyself,3,othello,1603\nhadst,3,othello,1603\nloud,3,othello,1603\nendure,3,othello,1603\nless,3,othello,1603\nill,3,othello,1603\nspend,3,othello,1603\npure,3,othello,1603\nfield,3,othello,1603\nround,3,othello,1603\nChristian,3,othello,1603\nsenate,3,othello,1603\nsee't,3,othello,1603\nhang,3,othello,1603\nshut,3,othello,1603\ngovernor,3,othello,1603\nopen,3,othello,1603\narm,3,othello,1603\nform,3,othello,1603\npain,3,othello,1603\nhangs,3,othello,1603\ndelight,3,othello,1603\npoint,3,othello,1603\ndevise,3,othello,1603\nputs,3,othello,1603\nduke's,3,othello,1603\nerror,3,othello,1603\nundone,3,othello,1603\ncheque,3,othello,1603\ntribe,3,othello,1603\nfar,3,othello,1603\njustice,3,othello,1603\noccasion,3,othello,1603\nproofs,3,othello,1603\nkeeps,3,othello,1603\nsurgeon,3,othello,1603\nmaid,3,othello,1603\nshouldst,3,othello,1603\nguiltless,3,othello,1603\nwater,3,othello,1603\n'Zounds,3,othello,1603\nwonder,3,othello,1603\ndeserving,3,othello,1603\nbears,3,othello,1603\nyear,3,othello,1603\nTherefore,3,othello,1603\nKissing,3,othello,1603\nmouth,3,othello,1603\nTurks,3,othello,1603\nere,3,othello,1603\nchild,3,othello,1603\nSee,3,othello,1603\neffect,3,othello,1603\ndoors,3,othello,1603\narrived,3,othello,1603\nkisses,3,othello,1603\npurposes,3,othello,1603\ntempest,3,othello,1603\nend,3,othello,1603\nwrought,3,othello,1603\nmass,3,othello,1603\nblow,3,othello,1603\nlabour,3,othello,1603\nthief,3,othello,1603\nspecial,3,othello,1603\napart,3,othello,1603\nhorrible,3,othello,1603\ndesires,3,othello,1603\nbreed,3,othello,1603\nsuspicion,3,othello,1603\nformer,3,othello,1603\nthrow,3,othello,1603\ncourt,3,othello,1603\ncure,3,othello,1603\nimport,3,othello,1603\nhappiness,3,othello,1603\nvouch,3,othello,1603\nThus,3,othello,1603\nbleed,3,othello,1603\nintend,3,othello,1603\npride,3,othello,1603\nwanton,3,othello,1603\nserve,3,othello,1603\ncoming,3,othello,1603\nSenators,3,othello,1603\ntakes,3,othello,1603\ntaken,3,othello,1603\ndisposition,3,othello,1603\nconsent,3,othello,1603\ndull,3,othello,1603\nwent,3,othello,1603\nstirs,3,othello,1603\nwhence,3,othello,1603\nevil,3,othello,1603\nprofane,3,othello,1603\nminds,3,othello,1603\nmessengers,3,othello,1603\narticle,3,othello,1603\ngrant,3,othello,1603\nlodges,3,othello,1603\nSweet,3,othello,1603\nExcellent,3,othello,1603\nvow,3,othello,1603\nrich,3,othello,1603\nfolly,3,othello,1603\nbare,3,othello,1603\npractise,3,othello,1603\nwives,3,othello,1603\ncensure,3,othello,1603\nfast,3,othello,1603\nWelcome,3,othello,1603\nfalsely,3,othello,1603\nwild,3,othello,1603\nEvery,3,othello,1603\nshore,3,othello,1603\naccident,3,othello,1603\ngreet,3,othello,1603\nArise,3,othello,1603\nHerald,3,othello,1603\nhave't,3,othello,1603\ncommission,3,othello,1603\nOttomites,3,othello,1603\ngoodness,3,othello,1603\ntalking,3,othello,1603\ntroth,3,othello,1603\ndefend,3,othello,1603\nLie,3,othello,1603\n'twixt,3,othello,1603\n'twill,3,othello,1603\nKnow,3,othello,1603\nwretched,3,othello,1603\nprayer,3,othello,1603\nsecure,3,othello,1603\nself,3,othello,1603\npost,3,othello,1603\nleg,3,othello,1603\nmatch,3,othello,1603\nprotest,3,othello,1603\nlip,3,othello,1603\ntriumph,3,othello,1603\nNothing,3,othello,1603\nwrite,3,othello,1603\nspite,3,othello,1603\nconduct,3,othello,1603\nAnother,3,othello,1603\nmet,3,othello,1603\nmurder'd,3,othello,1603\nwithdraw,3,othello,1603\nsometimes,3,othello,1603\nappetite,3,othello,1603\nLend,3,othello,1603\ngoing,3,othello,1603\nmouths,3,othello,1603\ndark,3,othello,1603\nFalls,3,othello,1603\ndue,3,othello,1603\nland,3,othello,1603\nreverend,3,othello,1603\ngnaw,3,othello,1603\nhe'll,3,othello,1603\nwills,3,othello,1603\nsmell,3,othello,1603\nprivate,3,othello,1603\njustly,3,othello,1603\nlack,3,othello,1603\ndirection,3,othello,1603\nwouldst,3,othello,1603\ne'er,3,othello,1603\nenemy,3,othello,1603\nwomen,3,othello,1603\nquality,4,othello,1603\nforbid,4,othello,1603\ninstruments,4,othello,1603\ndouble,4,othello,1603\nassured,4,othello,1603\nhers,4,othello,1603\nspake,4,othello,1603\nmere,4,othello,1603\nsight,4,othello,1603\ndrink,4,othello,1603\nnought,4,othello,1603\ntrust,4,othello,1603\ncare,4,othello,1603\nattempt,4,othello,1603\nplague,4,othello,1603\nseven,4,othello,1603\ncharms,4,othello,1603\nbrother,4,othello,1603\ntrumpet,4,othello,1603\nfools,4,othello,1603\nwalk,4,othello,1603\nvirtuous,4,othello,1603\nnine,4,othello,1603\nworth,4,othello,1603\nWas,4,othello,1603\ncounsel,4,othello,1603\nlooks,4,othello,1603\nmother,4,othello,1603\nvile,4,othello,1603\nworse,4,othello,1603\nheavens,4,othello,1603\nreceived,4,othello,1603\nborn,4,othello,1603\nfault,4,othello,1603\nfalls,4,othello,1603\nterms,4,othello,1603\nWherein,4,othello,1603\nsun,4,othello,1603\nabove,4,othello,1603\ngrow,4,othello,1603\nbrief,4,othello,1603\nmalice,4,othello,1603\ncuckold,4,othello,1603\nanon,4,othello,1603\ndispleasure,4,othello,1603\nparts,4,othello,1603\nwherefore,4,othello,1603\nmorning,4,othello,1603\nburning,4,othello,1603\nmanners,4,othello,1603\nHold,4,othello,1603\ntonight,4,othello,1603\ndeeds,4,othello,1603\ncanst,4,othello,1603\nwisdom,4,othello,1603\nIV,4,othello,1603\nwhole,4,othello,1603\nbless,4,othello,1603\nhusbands,4,othello,1603\nbell,4,othello,1603\nSave,4,othello,1603\nSpeak,4,othello,1603\ncurse,4,othello,1603\nstory,4,othello,1603\ninstant,4,othello,1603\nwretch,4,othello,1603\nCannot,4,othello,1603\nair,4,othello,1603\nrepent,4,othello,1603\nHere's,4,othello,1603\nliberal,4,othello,1603\ntrash,4,othello,1603\ntorches,4,othello,1603\nspeed,4,othello,1603\nknow't,4,othello,1603\ndamn'd,4,othello,1603\nearth,4,othello,1603\nmoon,4,othello,1603\nforgot,4,othello,1603\nclink,4,othello,1603\nbrought,4,othello,1603\ndiscourse,4,othello,1603\nCall,4,othello,1603\nforth,4,othello,1603\nship,4,othello,1603\napt,4,othello,1603\nrogue,4,othello,1603\nhere's,4,othello,1603\nlead,4,othello,1603\nroom,4,othello,1603\nthrough,4,othello,1603\nmain,4,othello,1603\nAgainst,4,othello,1603\nnose,4,othello,1603\nbeast,4,othello,1603\nrash,4,othello,1603\nLodovico,4,othello,1603\nunhappy,4,othello,1603\nquestion,4,othello,1603\nconclusion,4,othello,1603\npresently,4,othello,1603\nbrains,4,othello,1603\nBeing,4,othello,1603\nletters,4,othello,1603\nWere,4,othello,1603\nclose,4,othello,1603\nopinion,4,othello,1603\nsalt,4,othello,1603\nsake,4,othello,1603\nloving,4,othello,1603\nyou're,4,othello,1603\nrise,4,othello,1603\nthemselves,4,othello,1603\nsupper,4,othello,1603\nvillains,4,othello,1603\nrobb'd,4,othello,1603\nwife's,4,othello,1603\nTill,4,othello,1603\nfie,4,othello,1603\nprofit,4,othello,1603\nta'en,4,othello,1603\ncomfort,4,othello,1603\nVery,4,othello,1603\nOfficer,4,othello,1603\nwitchcraft,4,othello,1603\nman's,4,othello,1603\nthousand,4,othello,1603\ncup,4,othello,1603\ngreen,4,othello,1603\nWho's,4,othello,1603\nflood,4,othello,1603\napproved,4,othello,1603\nelements,4,othello,1603\nalone,4,othello,1603\ncondition,4,othello,1603\nhours,4,othello,1603\nentreat,4,othello,1603\nled,4,othello,1603\nbade,4,othello,1603\ngoes,4,othello,1603\nspirits,4,othello,1603\nwarlike,4,othello,1603\nabuse,4,othello,1603\nthinking,4,othello,1603\nAway,4,othello,1603\nconfess'd,4,othello,1603\nbeguile,4,othello,1603\nlast,4,othello,1603\ncredit,4,othello,1603\nbesides,4,othello,1603\nlist,4,othello,1603\nsentence,4,othello,1603\nlaid,4,othello,1603\nattend,4,othello,1603\ndispatch,4,othello,1603\ndamn,4,othello,1603\nshalt,4,othello,1603\nstol'n,4,othello,1603\nturn'd,4,othello,1603\npity,5,othello,1603\nfor't,5,othello,1603\nadvantage,5,othello,1603\nhaste,5,othello,1603\nlodging,5,othello,1603\nwhile,5,othello,1603\nHelp,5,othello,1603\nunderstand,5,othello,1603\nsaved,5,othello,1603\ncast,5,othello,1603\nsong,5,othello,1603\nmercy,5,othello,1603\ncharge,5,othello,1603\nAfter,5,othello,1603\nWhose,5,othello,1603\nsin,5,othello,1603\nGet,5,othello,1603\nbody,5,othello,1603\nshe'll,5,othello,1603\nraised,5,othello,1603\nthieves,5,othello,1603\nOur,5,othello,1603\nthence,5,othello,1603\nSailor,5,othello,1603\nsteal,5,othello,1603\ncunning,5,othello,1603\nspoke,5,othello,1603\neach,5,othello,1603\nmusic,5,othello,1603\nHis,5,othello,1603\nneither,5,othello,1603\nchaste,5,othello,1603\nhopes,5,othello,1603\nbad,5,othello,1603\nSinging,5,othello,1603\nSomething,5,othello,1603\napprove,5,othello,1603\nLet's,5,othello,1603\nHad,5,othello,1603\npast,5,othello,1603\nquiet,5,othello,1603\nobey,5,othello,1603\nbreath,5,othello,1603\ncitadel,5,othello,1603\nleft,5,othello,1603\nMontano,5,othello,1603\ncommitted,5,othello,1603\nlose,5,othello,1603\nknew,5,othello,1603\nnatures,5,othello,1603\nharm,5,othello,1603\nhard,5,othello,1603\nweapon,5,othello,1603\nwelcome,5,othello,1603\ndeny,5,othello,1603\nShe's,5,othello,1603\nmock,5,othello,1603\nbosom,5,othello,1603\nproper,5,othello,1603\nfond,5,othello,1603\nfresh,5,othello,1603\nright,5,othello,1603\nHark,5,othello,1603\ntouch,5,othello,1603\ntoken,5,othello,1603\nnew,5,othello,1603\nhaving,5,othello,1603\noften,5,othello,1603\nMadam,5,othello,1603\nmoved,5,othello,1603\nreport,5,othello,1603\nslain,5,othello,1603\nstrike,5,othello,1603\nyou'll,5,othello,1603\nyouth,5,othello,1603\nawhile,5,othello,1603\nfreely,5,othello,1603\nyours,5,othello,1603\nmortal,5,othello,1603\nsatisfaction,5,othello,1603\ndream,5,othello,1603\nI'ld,5,othello,1603\ndevils,5,othello,1603\nfather's,5,othello,1603\nThird,5,othello,1603\nones,5,othello,1603\nfire,5,othello,1603\ngrave,5,othello,1603\nwin,5,othello,1603\nfetch,5,othello,1603\nThink,5,othello,1603\nCan,5,othello,1603\npoison,5,othello,1603\nhundred,5,othello,1603\nweapons,5,othello,1603\nthree,5,othello,1603\ncompany,5,othello,1603\nmarried,5,othello,1603\nshows,5,othello,1603\nherself,5,othello,1603\nbase,5,othello,1603\ngentleman,5,othello,1603\ntale,5,othello,1603\ntalk,5,othello,1603\nlaw,5,othello,1603\ngiven,5,othello,1603\ngives,5,othello,1603\nswear,5,othello,1603\neither,5,othello,1603\ncourtesy,5,othello,1603\nPatience,5,othello,1603\npurpose,5,othello,1603\nsheets,5,othello,1603\nleast,5,othello,1603\nMessenger,5,othello,1603\nstreet,5,othello,1603\nbeauty,5,othello,1603\nThy,5,othello,1603\nrespect,5,othello,1603\nobedient,5,othello,1603\nHonest,5,othello,1603\nis,261,othello,1603\no'er,6,othello,1603\ndays,6,othello,1603\ncountry,6,othello,1603\nfollowing,6,othello,1603\npeace,6,othello,1603\njoy,6,othello,1603\nNever,6,othello,1603\ntruly,6,othello,1603\ndamned,6,othello,1603\nUpon,6,othello,1603\nsaw,6,othello,1603\nyears,6,othello,1603\ngross,6,othello,1603\nteach,6,othello,1603\nnoise,6,othello,1603\nRhodes,6,othello,1603\nsomething,6,othello,1603\nfurther,6,othello,1603\nshe's,6,othello,1603\nwarrant,6,othello,1603\nfleet,6,othello,1603\nvice,6,othello,1603\nAside,6,othello,1603\nTheir,6,othello,1603\nsecond,6,othello,1603\nourselves,6,othello,1603\nworst,6,othello,1603\nmonster,6,othello,1603\nVenetian,6,othello,1603\nhumbly,6,othello,1603\nseems,6,othello,1603\nOne,6,othello,1603\nhence,6,othello,1603\nwish,6,othello,1603\nThere's,6,othello,1603\ncreature,6,othello,1603\nOn,6,othello,1603\nSing,6,othello,1603\nused,6,othello,1603\npains,6,othello,1603\nfavour,6,othello,1603\nneeds,6,othello,1603\nseeming,6,othello,1603\nhands,6,othello,1603\nthyself,6,othello,1603\ndoor,6,othello,1603\nYes,6,othello,1603\nspeaks,6,othello,1603\npraise,6,othello,1603\nhate,6,othello,1603\nshow,6,othello,1603\nsignior,6,othello,1603\nMusician,6,othello,1603\nShould,6,othello,1603\ndelicate,6,othello,1603\nnay,6,othello,1603\nBianca,6,othello,1603\nDost,6,othello,1603\nchair,6,othello,1603\nThen,6,othello,1603\nlet's,6,othello,1603\naffairs,6,othello,1603\nnear,6,othello,1603\nsays,6,othello,1603\nTurkish,6,othello,1603\nwar,6,othello,1603\nhappy,6,othello,1603\nlust,6,othello,1603\nangry,6,othello,1603\nThat's,6,othello,1603\ndo't,6,othello,1603\nofficer,6,othello,1603\nperceive,6,othello,1603\nfate,6,othello,1603\nkiss,6,othello,1603\nLay,6,othello,1603\nstrong,6,othello,1603\nlives,6,othello,1603\nsatisfied,6,othello,1603\naught,6,othello,1603\nseek,6,othello,1603\nPray,6,othello,1603\nreturn,6,othello,1603\nsend,6,othello,1603\nalas,6,othello,1603\ntogether,6,othello,1603\nLieutenant,6,othello,1603\nsent,6,othello,1603\nsleep,6,othello,1603\nmad,6,othello,1603\nstraight,6,othello,1603\nBefore,6,othello,1603\non't,6,othello,1603\nIndeed,6,othello,1603\nsuspect,6,othello,1603\nfollow,6,othello,1603\nshame,6,othello,1603\npower,6,othello,1603\nvillany,7,othello,1603\ntimes,7,othello,1603\nguard,7,othello,1603\npossible,7,othello,1603\ntears,7,othello,1603\nWould,7,othello,1603\nfriends,7,othello,1603\ntown,7,othello,1603\nabused,7,othello,1603\noffence,7,othello,1603\nOut,7,othello,1603\nOfficers,7,othello,1603\nTurk,7,othello,1603\nboth,7,othello,1603\nvoice,7,othello,1603\nwars,7,othello,1603\nside,7,othello,1603\nchamber,7,othello,1603\nAt,7,othello,1603\nproof,7,othello,1603\nstay,7,othello,1603\nto't,7,othello,1603\nmeans,7,othello,1603\npleasure,7,othello,1603\nbid,7,othello,1603\nplay,7,othello,1603\nsport,7,othello,1603\nmonstrous,7,othello,1603\nsorry,7,othello,1603\ngrief,7,othello,1603\nbehind,7,othello,1603\nfarewell,7,othello,1603\ntongue,7,othello,1603\ndeed,7,othello,1603\no',7,othello,1603\nisle,7,othello,1603\nhalf,7,othello,1603\nMore,7,othello,1603\ncall'd,7,othello,1603\nask,7,othello,1603\njudgment,7,othello,1603\naction,7,othello,1603\nhigh,7,othello,1603\ndidst,7,othello,1603\nsame,7,othello,1603\nmorrow,7,othello,1603\nbetween,7,othello,1603\nface,7,othello,1603\nnext,7,othello,1603\nnews,7,othello,1603\nmarry,7,othello,1603\nMake,7,othello,1603\nplease,7,othello,1603\nletter,7,othello,1603\nword,7,othello,1603\ntill,7,othello,1603\nlay,7,othello,1603\nhearts,7,othello,1603\nprithee,7,othello,1603\nuse,7,othello,1603\nback,7,othello,1603\nseem,7,othello,1603\nwhom,7,othello,1603\nGentlemen,7,othello,1603\nheavenly,7,othello,1603\nblame,7,othello,1603\nsouls,7,othello,1603\near,7,othello,1603\nSignior,7,othello,1603\nMarry,7,othello,1603\ntwo,7,othello,1603\nstrange,7,othello,1603\ndog,7,othello,1603\nHe's,7,othello,1603\ncertain,7,othello,1603\nshake,7,othello,1603\nTake,7,othello,1603\ncommand,7,othello,1603\njealousy,7,othello,1603\nreputation,8,othello,1603\ntruth,8,othello,1603\ncame,8,othello,1603\nblack,8,othello,1603\ndoubt,8,othello,1603\nThese,8,othello,1603\nThere,8,othello,1603\nfellow,8,othello,1603\nancient,8,othello,1603\nwine,8,othello,1603\nwind,8,othello,1603\nsoldier,8,othello,1603\nwise,8,othello,1603\nbold,8,othello,1603\noffice,8,othello,1603\nWhat's,8,othello,1603\nIII,8,othello,1603\nHer,8,othello,1603\nWithin,8,othello,1603\nII,8,othello,1603\nIs't,8,othello,1603\njust,8,othello,1603\nGod,8,othello,1603\nha,8,othello,1603\nay,8,othello,1603\nSecond,8,othello,1603\nMost,8,othello,1603\npresent,8,othello,1603\nrevenge,8,othello,1603\nchange,8,othello,1603\nalmost,8,othello,1603\nfoolish,8,othello,1603\nmark,8,othello,1603\nslave,8,othello,1603\nget,8,othello,1603\nstill,8,othello,1603\nheavy,8,othello,1603\nbelieve,8,othello,1603\nHeaven,8,othello,1603\nduke,8,othello,1603\npassion,8,othello,1603\nhour,8,othello,1603\nhope,8,othello,1603\nhonesty,8,othello,1603\nlips,8,othello,1603\ndare,8,othello,1603\nkind,8,othello,1603\nthat,264,othello,1603\ntold,9,othello,1603\nstrumpet,9,othello,1603\ndraw,9,othello,1603\nwords,9,othello,1603\nbound,9,othello,1603\n'twas,9,othello,1603\nFarewell,9,othello,1603\nturn,9,othello,1603\nworthy,9,othello,1603\n'Faith,9,othello,1603\nservice,9,othello,1603\nmasters,9,othello,1603\nhas,9,othello,1603\npatience,9,othello,1603\nGo,9,othello,1603\nHa,9,othello,1603\nprove,9,othello,1603\nvaliant,9,othello,1603\nwhose,9,othello,1603\ni',9,othello,1603\npart,9,othello,1603\nbloody,9,othello,1603\nknows,9,othello,1603\nonce,9,othello,1603\noft,9,othello,1603\noff,9,othello,1603\nglad,9,othello,1603\nold,9,othello,1603\nfit,9,othello,1603\nne'er,9,othello,1603\nday,9,othello,1603\nhome,9,othello,1603\nthank,9,othello,1603\nmadam,9,othello,1603\nvirtue,9,othello,1603\nhurt,9,othello,1603\nDid,9,othello,1603\nspirit,9,othello,1603\nhimself,9,othello,1603\nanswer,10,othello,1603\nGive,10,othello,1603\nhead,10,othello,1603\nenough,10,othello,1603\nsea,10,othello,1603\nsword,10,othello,1603\nitself,10,othello,1603\nwhore,10,othello,1603\nweep,10,othello,1603\ndown,10,othello,1603\nPrithee,10,othello,1603\nlong,10,othello,1603\ncastle,10,othello,1603\nCassio's,10,othello,1603\ngentle,10,othello,1603\nSir,10,othello,1603\nyoung,10,othello,1603\nalready,10,othello,1603\nAll,10,othello,1603\nthere's,10,othello,1603\nShall,10,othello,1603\nfall,10,othello,1603\nfortune,10,othello,1603\nBrabantio,10,othello,1603\nis't,10,othello,1603\ngentlemen,10,othello,1603\npardon,10,othello,1603\ndrunk,10,othello,1603\nMay,10,othello,1603\nkill,10,othello,1603\nfortunes,10,othello,1603\nit,266,othello,1603\nhell,11,othello,1603\npurse,11,othello,1603\nOthello's,11,othello,1603\nanother,11,othello,1603\nsuit,11,othello,1603\nhonour,11,othello,1603\nhe's,11,othello,1603\nname,11,othello,1603\nAn,11,othello,1603\nsail,11,othello,1603\nthose,11,othello,1603\nact,11,othello,1603\nHave,11,othello,1603\nfaith,11,othello,1603\neye,11,othello,1603\nthings,11,othello,1603\nFrom,11,othello,1603\nmind,11,othello,1603\nknown,11,othello,1603\nthine,11,othello,1603\nwhy,11,othello,1603\nduty,11,othello,1603\nwhat's,11,othello,1603\nMichael,11,othello,1603\nhouse,11,othello,1603\nlie,11,othello,1603\nmakes,11,othello,1603\nwithout,11,othello,1603\nmeet,12,othello,1603\nspeech,12,othello,1603\nbusiness,12,othello,1603\nrather,12,othello,1603\nlies,12,othello,1603\ndeath,12,othello,1603\nset,12,othello,1603\nwithin,12,othello,1603\nkill'd,12,othello,1603\nmurder,12,othello,1603\nconfess,12,othello,1603\nEmilia,12,othello,1603\nloves,12,othello,1603\nloved,12,othello,1603\ngrace,12,othello,1603\nfool,12,othello,1603\nHath,12,othello,1603\nwatch,12,othello,1603\nnone,12,othello,1603\nSome,12,othello,1603\nknave,12,othello,1603\nwit,12,othello,1603\nreason,12,othello,1603\neyes,12,othello,1603\nhither,12,othello,1603\ncontent,12,othello,1603\nfull,13,othello,1603\nAttendants,13,othello,1603\nafter,13,othello,1603\nabout,13,othello,1603\nThough,13,othello,1603\nmean,13,othello,1603\nelse,13,othello,1603\nBe,13,othello,1603\nWe,13,othello,1603\njealous,13,othello,1603\nkeep,13,othello,1603\ncourse,13,othello,1603\nYour,13,othello,1603\nstand,13,othello,1603\nbeseech,13,othello,1603\nEven,13,othello,1603\nlive,13,othello,1603\ncall,14,othello,1603\nWho,14,othello,1603\nbetter,14,othello,1603\nagainst,14,othello,1603\nwrong,14,othello,1603\nbring,14,othello,1603\nblood,14,othello,1603\ndead,14,othello,1603\ndoes,14,othello,1603\nmoney,14,othello,1603\nthough,14,othello,1603\nThan,14,othello,1603\nwork,14,othello,1603\nseen,14,othello,1603\nthoughts,14,othello,1603\nfather,14,othello,1603\nnature,14,othello,1603\nSenator,14,othello,1603\ndie,14,othello,1603\nWill,15,othello,1603\nevery,15,othello,1603\nNor,15,othello,1603\ncause,15,othello,1603\ndaughter,15,othello,1603\nHere,15,othello,1603\nenter,15,othello,1603\ngone,15,othello,1603\nRe,15,othello,1603\ndoth,15,othello,1603\ndear,15,othello,1603\nAre,15,othello,1603\nACT,15,othello,1603\nLook,15,othello,1603\nmany,15,othello,1603\ncry,15,othello,1603\nfirst,15,othello,1603\nmight,15,othello,1603\nwillow,16,othello,1603\nlife,16,othello,1603\nyourself,16,othello,1603\ntherefore,16,othello,1603\nsaid,16,othello,1603\nbear,16,othello,1603\nThey,16,othello,1603\nfree,16,othello,1603\nbefore,16,othello,1603\nheard,16,othello,1603\npoor,16,othello,1603\nbeing,16,othello,1603\nWhere,16,othello,1603\nSCENE,16,othello,1603\nwoman,16,othello,1603\n',17,othello,1603\nmistress,17,othello,1603\nvillain,17,othello,1603\nfalse,17,othello,1603\nfriend,17,othello,1603\nWhich,17,othello,1603\nbest,17,othello,1603\ngave,17,othello,1603\nYet,17,othello,1603\nfoul,17,othello,1603\nstate,17,othello,1603\nWell,17,othello,1603\nway,17,othello,1603\nhold,17,othello,1603\nleave,17,othello,1603\nhelp,18,othello,1603\nsure,18,othello,1603\nsense,18,othello,1603\nthat's,18,othello,1603\nhast,18,othello,1603\nmade,18,othello,1603\ninto,18,othello,1603\nThou,18,othello,1603\ncould,18,othello,1603\nAlas,19,othello,1603\nNow,19,othello,1603\nNot,19,othello,1603\nfear,19,othello,1603\nlost,19,othello,1603\nmyself,19,othello,1603\nwho,19,othello,1603\nthing,19,othello,1603\nVenice,19,othello,1603\nfound,19,othello,1603\nClown,19,othello,1603\nGentleman,19,othello,1603\nthought,20,othello,1603\ndevil,20,othello,1603\nlittle,20,othello,1603\nmine,20,othello,1603\nfind,20,othello,1603\nsweet,20,othello,1603\nlady,20,othello,1603\nNay,21,othello,1603\nlight,21,othello,1603\ntell,21,othello,1603\nlook,21,othello,1603\nnoble,21,othello,1603\nFirst,21,othello,1603\nart,21,othello,1603\nWhen,21,othello,1603\npray,22,othello,1603\nBIANCA,22,othello,1603\nbeen,22,othello,1603\nhusband,22,othello,1603\nwhere,22,othello,1603\ncomes,22,othello,1603\nfair,22,othello,1603\neven,22,othello,1603\ntake,22,othello,1603\nnothing,23,othello,1603\naway,23,othello,1603\nbed,23,othello,1603\ndost,23,othello,1603\ngreat,23,othello,1603\nmen,23,othello,1603\nother,23,othello,1603\nthese,24,othello,1603\nGood,24,othello,1603\nlieutenant,24,othello,1603\nlike,25,othello,1603\nhear,25,othello,1603\nmatter,25,othello,1603\nBy,25,othello,1603\nExeunt,25,othello,1603\ndone,25,othello,1603\nho,25,othello,1603\nindeed,25,othello,1603\nme,281,othello,1603\nworld,26,othello,1603\nGRATIANO,26,othello,1603\nOthello,26,othello,1603\nplace,26,othello,1603\nhand,26,othello,1603\nRoderigo,27,othello,1603\nWith,27,othello,1603\nAy,27,othello,1603\nOF,27,othello,1603\nOf,27,othello,1603\ncan,27,othello,1603\nSo,27,othello,1603\nheart,27,othello,1603\nVENICE,27,othello,1603\nthus,27,othello,1603\ntrue,27,othello,1603\ncannot,27,othello,1603\nNo,28,othello,1603\nCyprus,28,othello,1603\nDUKE,28,othello,1603\nLet,28,othello,1603\nOr,29,othello,1603\ngeneral,29,othello,1603\nThis,29,othello,1603\nhandkerchief,29,othello,1603\nown,29,othello,1603\never,29,othello,1603\ntime,29,othello,1603\nwhich,30,othello,1603\nIn,30,othello,1603\nIs,30,othello,1603\nany,30,othello,1603\nhow,30,othello,1603\nup,30,othello,1603\nCome,31,othello,1603\nMONTANO,31,othello,1603\nDo,31,othello,1603\nput,31,othello,1603\ntoo,31,othello,1603\nmuch,32,othello,1603\nsoul,32,othello,1603\ngive,32,othello,1603\nwere,32,othello,1603\nwhen,32,othello,1603\nthan,34,othello,1603\nnever,34,othello,1603\nus,34,othello,1603\nExit,34,othello,1603\nnor,35,othello,1603\nwife,36,othello,1603\nShe,37,othello,1603\nBRABANTIO,37,othello,1603\nwe,38,othello,1603\nagain,38,othello,1603\n'Tis,38,othello,1603\nhonest,38,othello,1603\nYou,39,othello,1603\nsee,40,othello,1603\nLODOVICO,40,othello,1603\nvery,40,othello,1603\nDesdemona,41,othello,1603\nshould,41,othello,1603\ntheir,42,othello,1603\nthere,43,othello,1603\nIAGO,299,othello,1603\nan,44,othello,1603\nlet,44,othello,1603\nnot,300,othello,1603\nupon,46,othello,1603\nsir,46,othello,1603\n'tis,46,othello,1603\nmake,46,othello,1603\nour,46,othello,1603\nthem,47,othello,1603\nspeak,47,othello,1603\nman,47,othello,1603\nthen,48,othello,1603\nmost,48,othello,1603\nEnter,48,othello,1603\nWhy,49,othello,1603\nmay,49,othello,1603\none,50,othello,1603\nHe,51,othello,1603\nIt,51,othello,1603\nheaven,52,othello,1603\nyet,52,othello,1603\nout,52,othello,1603\nA,53,othello,1603\nhad,53,othello,1603\nHow,53,othello,1603\ncome,53,othello,1603\nin,309,othello,1603\nnight,54,othello,1603\ngo,54,othello,1603\nAs,55,othello,1603\nhath,55,othello,1603\nhere,56,othello,1603\nI'll,56,othello,1603\nmust,57,othello,1603\nMoor,57,othello,1603\nOTHELLO,313,othello,1603\nthey,58,othello,1603\nor,58,othello,1603\nsome,59,othello,1603\nMy,59,othello,1603\nthink,60,othello,1603\nI,828,othello,1603\ndid,61,othello,1603\nIago,62,othello,1603\nat,63,othello,1603\nknow,63,othello,1603\nwell,64,othello,1603\nsay,65,othello,1603\nsuch,65,othello,1603\nmore,65,othello,1603\nFor,66,othello,1603\nfrom,66,othello,1603\nwas,66,othello,1603\nIf,67,othello,1603\ngood,68,othello,1603\nif,71,othello,1603\nwould,72,othello,1603\nthy,74,othello,1603\nno,75,othello,1603\nwhat,75,othello,1603\nthee,76,othello,1603\nRODERIGO,77,othello,1603\nlove,78,othello,1603\nand,596,othello,1603\nby,85,othello,1603\nall,85,othello,1603\nnow,86,othello,1603\nshall,86,othello,1603\nThe,87,othello,1603\nlord,89,othello,1603\nBut,89,othello,1603\nam,90,othello,1603\nare,94,othello,1603\nWhat,103,othello,1603\non,108,othello,1603\nThat,108,othello,1603\nmy,368,othello,1603\nCassio,113,othello,1603\nas,116,othello,1603\nshe,118,othello,1603\nTo,123,othello,1603\nthou,124,othello,1603\nEMILIA,126,othello,1603\nCASSIO,131,othello,1603\nbut,133,othello,1603\nso,135,othello,1603\nwill,137,othello,1603\na,397,othello,1603\nO,146,othello,1603\nhis,162,othello,1603\nthe,674,othello,1603\nof,420,othello,1603\nfor,169,othello,1603\nhe,173,othello,1603\ndo,184,othello,1603\nDESDEMONA,186,othello,1603\nhim,187,othello,1603\nyou,444,othello,1603\nthis,192,othello,1603\nhave,193,othello,1603\nyour,194,othello,1603\nwith,195,othello,1603\nAnd,199,othello,1603\nher,208,othello,1603\nbe,210,othello,1603\nto,502,othello,1603\nLVII,1,sonnets,0\naugurs,1,sonnets,0\ndimm'd,1,sonnets,0\nplagues,1,sonnets,0\ntreason,1,sonnets,0\nsurmise,1,sonnets,0\nheed,1,sonnets,0\nUnthrifty,1,sonnets,0\nquality,1,sonnets,0\nwherever,1,sonnets,0\nC,1,sonnets,0\nL,1,sonnets,0\nimaginary,1,sonnets,0\nH,1,sonnets,0\nrelief,1,sonnets,0\nW,1,sonnets,0\nV,1,sonnets,0\nadvised,1,sonnets,0\ngrey,1,sonnets,0\nX,1,sonnets,0\nglazed,1,sonnets,0\nhappies,1,sonnets,0\nrebuked,1,sonnets,0\ngardens,1,sonnets,0\nmisplaced,1,sonnets,0\nmistaking,1,sonnets,0\nenjoyer,1,sonnets,0\ndisarm'd,1,sonnets,0\ndyer's,1,sonnets,0\nProud,1,sonnets,0\nlips',1,sonnets,0\nextremity,1,sonnets,0\nunions,1,sonnets,0\ndrop,1,sonnets,0\nafar,1,sonnets,0\nHAPPINESS,1,sonnets,0\ninterchange,1,sonnets,0\ncomposition,1,sonnets,0\nguilt,1,sonnets,0\nfor't,1,sonnets,0\nunrest,1,sonnets,0\ntops,1,sonnets,0\ncomplexion'd,1,sonnets,0\nvotary,1,sonnets,0\nwish'd,1,sonnets,0\nwatchman,1,sonnets,0\nburn'd,1,sonnets,0\nbrightness,1,sonnets,0\nreign'd,1,sonnets,0\nfuel,1,sonnets,0\nalike,1,sonnets,0\nspends,1,sonnets,0\ntravail,1,sonnets,0\nyoungly,1,sonnets,0\nJoin,1,sonnets,0\nCXLIII,1,sonnets,0\ntorn,1,sonnets,0\nEVER,1,sonnets,0\nfemale,1,sonnets,0\nbrows,1,sonnets,0\npitying,1,sonnets,0\nadding,1,sonnets,0\nWhether,1,sonnets,0\nsympathized,1,sonnets,0\nbones,1,sonnets,0\npurge,1,sonnets,0\npossesseth,1,sonnets,0\no'ertake,1,sonnets,0\nrobe,1,sonnets,0\nhems,1,sonnets,0\nsuppose,1,sonnets,0\nesteeming,1,sonnets,0\nimpeach'd,1,sonnets,0\nsteals,1,sonnets,0\nrents,1,sonnets,0\nWilt,1,sonnets,0\nBear,1,sonnets,0\nday's,1,sonnets,0\nmaturity,1,sonnets,0\nassistance,1,sonnets,0\nspace,1,sonnets,0\nepitaph,1,sonnets,0\ntesty,1,sonnets,0\nendless,1,sonnets,0\nrather,1,sonnets,0\nDisdains,1,sonnets,0\nNever,1,sonnets,0\nwailing,1,sonnets,0\nwhereupon,1,sonnets,0\nclears,1,sonnets,0\nmoiety,1,sonnets,0\noaths',1,sonnets,0\nalien,1,sonnets,0\nwarning,1,sonnets,0\nWeeds,1,sonnets,0\nduteous,1,sonnets,0\nApril's,1,sonnets,0\nseason'd,1,sonnets,0\nexceeds,1,sonnets,0\nmiss'd,1,sonnets,0\npray,1,sonnets,0\nTell,1,sonnets,0\ndrowns,1,sonnets,0\nwrites,1,sonnets,0\nNativity,1,sonnets,0\ndarkness,1,sonnets,0\nCXXIV,1,sonnets,0\nCXXIX,1,sonnets,0\nuphold,1,sonnets,0\nfinger,1,sonnets,0\nDespite,1,sonnets,0\nCXXII,1,sonnets,0\nimitate,1,sonnets,0\nherd,1,sonnets,0\nwherewith,1,sonnets,0\nEither,1,sonnets,0\ncelestial,1,sonnets,0\nhate's,1,sonnets,0\ndisease,1,sonnets,0\nprisoner,1,sonnets,0\nsighs,1,sonnets,0\nXXVII,1,sonnets,0\nlearn'd,1,sonnets,0\nBeshrew,1,sonnets,0\nexecutor,1,sonnets,0\nbrood,1,sonnets,0\nhearted,1,sonnets,0\n'cide,1,sonnets,0\nAngry,1,sonnets,0\nCries,1,sonnets,0\nrid,1,sonnets,0\nnaked,1,sonnets,0\nregisters,1,sonnets,0\nforbidden,1,sonnets,0\nadvance,1,sonnets,0\nblanks,1,sonnets,0\nfeeds,1,sonnets,0\nsuccession,1,sonnets,0\nmaintain,1,sonnets,0\ndeclines,1,sonnets,0\npraising,1,sonnets,0\nthemes,1,sonnets,0\nflow,1,sonnets,0\nrichly,1,sonnets,0\nHelen's,1,sonnets,0\nfury,1,sonnets,0\ndrink,1,sonnets,0\nappeal,1,sonnets,0\nstretched,1,sonnets,0\nderive,1,sonnets,0\nwithal,1,sonnets,0\nsigns,1,sonnets,0\npied,1,sonnets,0\nsuggest,1,sonnets,0\nteachest,1,sonnets,0\nLXXVIII,1,sonnets,0\ncommence,1,sonnets,0\nWound,1,sonnets,0\ngarments',1,sonnets,0\nblunter,1,sonnets,0\nadvocate,1,sonnets,0\ncheap,1,sonnets,0\nswerving,1,sonnets,0\ndreaming,1,sonnets,0\npress,1,sonnets,0\nrun,1,sonnets,0\npleasures,1,sonnets,0\nstamp'd,1,sonnets,0\ncontrary,1,sonnets,0\nOUR,1,sonnets,0\ninsults,1,sonnets,0\norphans,1,sonnets,0\nWhom,1,sonnets,0\nwounded,1,sonnets,0\nimpute,1,sonnets,0\nbecome,1,sonnets,0\ntyrannous,1,sonnets,0\ngoest,1,sonnets,0\ndescriptions,1,sonnets,0\nbower,1,sonnets,0\ncurious,1,sonnets,0\nclimb'd,1,sonnets,0\nXXI,1,sonnets,0\nsaved,1,sonnets,0\ndeservest,1,sonnets,0\nXXX,1,sonnets,0\nloathsome,1,sonnets,0\ncase,1,sonnets,0\nXXV,1,sonnets,0\nearly,1,sonnets,0\nCVII,1,sonnets,0\nfleets,1,sonnets,0\ndepartest,1,sonnets,0\nworser,1,sonnets,0\nExceeded,1,sonnets,0\nbreach,1,sonnets,0\nWELL,1,sonnets,0\nsuccessive,1,sonnets,0\ninheritors,1,sonnets,0\nPoor,1,sonnets,0\nmercy,1,sonnets,0\ntiger's,1,sonnets,0\nXVI,1,sonnets,0\nVIII,1,sonnets,0\ncharge,1,sonnets,0\ncounted,1,sonnets,0\ngraced,1,sonnets,0\nsurfeit,1,sonnets,0\nwreckful,1,sonnets,0\nsadly,1,sonnets,0\nspies,1,sonnets,0\nslept,1,sonnets,0\nWeighs,1,sonnets,0\nsole,1,sonnets,0\nsold,1,sonnets,0\nsap,1,sonnets,0\nbefits,1,sonnets,0\nExcuse,1,sonnets,0\nbearing,1,sonnets,0\nclosure,1,sonnets,0\nscarlet,1,sonnets,0\nbackward,1,sonnets,0\ninhabit,1,sonnets,0\nhammer'd,1,sonnets,0\nsilver'd,1,sonnets,0\nunswept,1,sonnets,0\ncrying,1,sonnets,0\nendow'd,1,sonnets,0\nmind's,1,sonnets,0\nbroken,1,sonnets,0\nassemble,1,sonnets,0\nPerforce,1,sonnets,0\nlily,1,sonnets,0\nboldness,1,sonnets,0\nTHESE,1,sonnets,0\ndeceivest,1,sonnets,0\nproceeds,1,sonnets,0\nsucceeding,1,sonnets,0\nafterwards,1,sonnets,0\nplight,1,sonnets,0\npatent,1,sonnets,0\nfunction,1,sonnets,0\ntoward,1,sonnets,0\nTriumph,1,sonnets,0\nworthier,1,sonnets,0\ncheer,1,sonnets,0\nsheaves,1,sonnets,0\noffenders,1,sonnets,0\nOnly,1,sonnets,0\nvoices,1,sonnets,0\nForgot,1,sonnets,0\nmadness,1,sonnets,0\nshadow's,1,sonnets,0\nsoil,1,sonnets,0\npaper,1,sonnets,0\npipe,1,sonnets,0\neclipse,1,sonnets,0\nhanging,1,sonnets,0\nrider,1,sonnets,0\nbeseem,1,sonnets,0\nlikeness,1,sonnets,0\njudgment's,1,sonnets,0\ncame,1,sonnets,0\nfools,1,sonnets,0\nBeauty's,1,sonnets,0\nsoft,1,sonnets,0\nMethinks,1,sonnets,0\nassail'd,1,sonnets,0\nfreedom,1,sonnets,0\npurity,1,sonnets,0\nXIX,1,sonnets,0\nXIV,1,sonnets,0\nlesser,1,sonnets,0\noverturn,1,sonnets,0\nwidow's,1,sonnets,0\nCoral,1,sonnets,0\nlimits,1,sonnets,0\nwidow'd,1,sonnets,0\nadmiring,1,sonnets,0\nGentle,1,sonnets,0\nSupposed,1,sonnets,0\nblesses,1,sonnets,0\nstealth,1,sonnets,0\nowners,1,sonnets,0\ndeserve,1,sonnets,0\ndiscloses,1,sonnets,0\npursuing,1,sonnets,0\nshamed,1,sonnets,0\nXLI,1,sonnets,0\nsunk,1,sonnets,0\nembassy,1,sonnets,0\nerst,1,sonnets,0\nthroned,1,sonnets,0\nspheres,1,sonnets,0\nwhatsoever,1,sonnets,0\nsoundless,1,sonnets,0\nboat,1,sonnets,0\nproclaims,1,sonnets,0\nXLV,1,sonnets,0\nhistory,1,sonnets,0\nsums,1,sonnets,0\nsunset,1,sonnets,0\nbound,1,sonnets,0\nfleece,1,sonnets,0\nwantonly,1,sonnets,0\nLXXXI,1,sonnets,0\nvial,1,sonnets,0\nUttering,1,sonnets,0\nSuns,1,sonnets,0\nbeseige,1,sonnets,0\nBeyond,1,sonnets,0\npaying,1,sonnets,0\nkey,1,sonnets,0\nages,1,sonnets,0\nlaugh'd,1,sonnets,0\npenance,1,sonnets,0\nsweet'st,1,sonnets,0\ntenants,1,sonnets,0\neager,1,sonnets,0\nsubdued,1,sonnets,0\nCrooked,1,sonnets,0\nLifts,1,sonnets,0\nTempteth,1,sonnets,0\n'scoped,1,sonnets,0\nwalk,1,sonnets,0\nsaying,1,sonnets,0\nsunken,1,sonnets,0\nvice,1,sonnets,0\nCreating,1,sonnets,0\nHerein,1,sonnets,0\nreproving,1,sonnets,0\nseals,1,sonnets,0\nwake,1,sonnets,0\ncorrespondence,1,sonnets,0\nsociety,1,sonnets,0\nPraising,1,sonnets,0\nDeserves,1,sonnets,0\nfamish'd,1,sonnets,0\nprognosticate,1,sonnets,0\nLXXXV,1,sonnets,0\nXII,1,sonnets,0\ndisabled,1,sonnets,0\ndisposed,1,sonnets,0\nabused,1,sonnets,0\nnine,1,sonnets,0\nscore,1,sonnets,0\nactor,1,sonnets,0\nfavourites,1,sonnets,0\nnymphs,1,sonnets,0\nlesson,1,sonnets,0\nXCI,1,sonnets,0\nwindy,1,sonnets,0\ndelivers,1,sonnets,0\nscorn'd,1,sonnets,0\nlimbecks,1,sonnets,0\nSpend'st,1,sonnets,0\nabuses,1,sonnets,0\nsalve,1,sonnets,0\nattainted,1,sonnets,0\nchildren's,1,sonnets,0\nrecords,1,sonnets,0\nunear'd,1,sonnets,0\nFarewell,1,sonnets,0\nraised,1,sonnets,0\nfamoused,1,sonnets,0\ngazers,1,sonnets,0\noutstripp'd,1,sonnets,0\nlooking,1,sonnets,0\nfangled,1,sonnets,0\nXCV,1,sonnets,0\npictured,1,sonnets,0\ncountenance,1,sonnets,0\nTheir,1,sonnets,0\nrefusest,1,sonnets,0\nPoints,1,sonnets,0\ngazeth,1,sonnets,0\nglutton,1,sonnets,0\nlivery,1,sonnets,0\nimitated,1,sonnets,0\npermit,1,sonnets,0\nhunted,1,sonnets,0\nmiddle,1,sonnets,0\nsky,1,sonnets,0\ngroans,1,sonnets,0\nXLII,1,sonnets,0\nMusic,1,sonnets,0\nlambs,1,sonnets,0\ndearths,1,sonnets,0\npolish'd,1,sonnets,0\nXLIV,1,sonnets,0\nniggarding,1,sonnets,0\nXLIX,1,sonnets,0\nPlods,1,sonnets,0\ndoubt,1,sonnets,0\nXCII,1,sonnets,0\nleague,1,sonnets,0\nrefigured,1,sonnets,0\nwar's,1,sonnets,0\nhearsay,1,sonnets,0\nsupposing,1,sonnets,0\nbough,1,sonnets,0\nXCIV,1,sonnets,0\ndearth,1,sonnets,0\nXCIX,1,sonnets,0\nplay'd,1,sonnets,0\no'ersnow'd,1,sonnets,0\nadverse,1,sonnets,0\nsuffered,1,sonnets,0\nforwards,1,sonnets,0\nsavour,1,sonnets,0\nvassalage,1,sonnets,0\nWISHING,1,sonnets,0\nSweets,1,sonnets,0\nGored,1,sonnets,0\nCXLVIII,1,sonnets,0\nminion,1,sonnets,0\nappetites,1,sonnets,0\nsharp'st,1,sonnets,0\nsuppress'd,1,sonnets,0\nreap,1,sonnets,0\nNeeds,1,sonnets,0\nthrusts,1,sonnets,0\nfelt,1,sonnets,0\nbroils,1,sonnets,0\neating,1,sonnets,0\nmiscall'd,1,sonnets,0\nXCVI,1,sonnets,0\ncompound,1,sonnets,0\nredeem,1,sonnets,0\nfullness,1,sonnets,0\nsnow,1,sonnets,0\nHarsh,1,sonnets,0\ngranting,1,sonnets,0\nCommit,1,sonnets,0\nconfounded,1,sonnets,0\ntwilight,1,sonnets,0\nMuses,1,sonnets,0\nbuilded,1,sonnets,0\ntransfix,1,sonnets,0\nLXIII,1,sonnets,0\nestimate,1,sonnets,0\ntempting,1,sonnets,0\nAskance,1,sonnets,0\nhabit,1,sonnets,0\nfigure,1,sonnets,0\ncivil,1,sonnets,0\nkill'd,1,sonnets,0\nbliss,1,sonnets,0\nWhereon,1,sonnets,0\nfalls,1,sonnets,0\nchurls,1,sonnets,0\nruns,1,sonnets,0\nCrowning,1,sonnets,0\ndecrease,1,sonnets,0\ndetain,1,sonnets,0\nterms,1,sonnets,0\nruminate,1,sonnets,0\ndearly,1,sonnets,0\ncherish,1,sonnets,0\nWooing,1,sonnets,0\nINSUING,1,sonnets,0\nsubtleties,1,sonnets,0\nworths,1,sonnets,0\nfruit,1,sonnets,0\nlatch,1,sonnets,0\ntallies,1,sonnets,0\nflatterer,1,sonnets,0\npearl,1,sonnets,0\ntribes,1,sonnets,0\nBeggar'd,1,sonnets,0\nrecite,1,sonnets,0\nsue,1,sonnets,0\nmouthed,1,sonnets,0\ncries,1,sonnets,0\nphysicians,1,sonnets,0\nabout,1,sonnets,0\nruth,1,sonnets,0\nelder,1,sonnets,0\nabundant,1,sonnets,0\nfrown'st,1,sonnets,0\noblation,1,sonnets,0\nbeseechers,1,sonnets,0\nHers,1,sonnets,0\nfeed,1,sonnets,0\nfearful,1,sonnets,0\nWant,1,sonnets,0\ncease,1,sonnets,0\npromise,1,sonnets,0\nbeaten,1,sonnets,0\ndirected,1,sonnets,0\nservice,1,sonnets,0\ncostly,1,sonnets,0\nsword,1,sonnets,0\nbases,1,sonnets,0\nProfitless,1,sonnets,0\nBetwixt,1,sonnets,0\nmarigold,1,sonnets,0\n'Now,1,sonnets,0\nchoose,1,sonnets,0\nwing,1,sonnets,0\nlion's,1,sonnets,0\nmemorial,1,sonnets,0\nyouth's,1,sonnets,0\nprevent,1,sonnets,0\nceremony,1,sonnets,0\nward,1,sonnets,0\ninfant's,1,sonnets,0\nHence,1,sonnets,0\nCXXVI,1,sonnets,0\nknights,1,sonnets,0\ntender'd,1,sonnets,0\nMight,1,sonnets,0\nwane,1,sonnets,0\nseems,1,sonnets,0\nVaunt,1,sonnets,0\nwardrobe,1,sonnets,0\nrent,1,sonnets,0\nusury,1,sonnets,0\nfoist,1,sonnets,0\nsalving,1,sonnets,0\nDuty,1,sonnets,0\nSuspect,1,sonnets,0\nhated,1,sonnets,0\ndies,1,sonnets,0\nSimply,1,sonnets,0\ntrifles,1,sonnets,0\nrenew,1,sonnets,0\nCXXXI,1,sonnets,0\nsubsist,1,sonnets,0\nsurmount,1,sonnets,0\ntranslated,1,sonnets,0\nseest,1,sonnets,0\nanon,1,sonnets,0\nyellow'd,1,sonnets,0\ndrain'd,1,sonnets,0\ndirectly,1,sonnets,0\nusest,1,sonnets,0\nensconce,1,sonnets,0\naccuse,1,sonnets,0\nwander'st,1,sonnets,0\nAuthorizing,1,sonnets,0\nwiry,1,sonnets,0\nsummon,1,sonnets,0\nwarm,1,sonnets,0\nvoice,1,sonnets,0\nbond,1,sonnets,0\nwary,1,sonnets,0\nspites,1,sonnets,0\nincertainty,1,sonnets,0\noffice,1,sonnets,0\nmistake,1,sonnets,0\nboot,1,sonnets,0\nLXIV,1,sonnets,0\nconsecrate,1,sonnets,0\nLXIX,1,sonnets,0\nLXII,1,sonnets,0\nBlessed,1,sonnets,0\nCXXXV,1,sonnets,0\nsuborn'd,1,sonnets,0\nparty,1,sonnets,0\nmeetness,1,sonnets,0\nXXXVIII,1,sonnets,0\nverdict,1,sonnets,0\ndistraction,1,sonnets,0\nsubstantial,1,sonnets,0\nintelligence,1,sonnets,0\nunbless,1,sonnets,0\nastonished,1,sonnets,0\ngrief's,1,sonnets,0\naspect,1,sonnets,0\nhe's,1,sonnets,0\nfeather'd,1,sonnets,0\nbig,1,sonnets,0\nsenses,1,sonnets,0\nstewards,1,sonnets,0\nenlarged,1,sonnets,0\nLXXXVII,1,sonnets,0\nscandal,1,sonnets,0\nengraft,1,sonnets,0\nauthority,1,sonnets,0\ngrind,1,sonnets,0\nlife's,1,sonnets,0\ndefine,1,sonnets,0\noutbraves,1,sonnets,0\nenfeebled,1,sonnets,0\nburning,1,sonnets,0\ndrown,1,sonnets,0\nleases,1,sonnets,0\nXVII,1,sonnets,0\nmortality,1,sonnets,0\nLeaving,1,sonnets,0\nmelancholy,1,sonnets,0\nwaken'd,1,sonnets,0\nhap,1,sonnets,0\nDulling,1,sonnets,0\ndrudge,1,sonnets,0\noverthrow,1,sonnets,0\nperspective,1,sonnets,0\npotions,1,sonnets,0\nDrawn,1,sonnets,0\nrefuse,1,sonnets,0\noffend,1,sonnets,0\nserving,1,sonnets,0\ntwire,1,sonnets,0\nstreams,1,sonnets,0\nsigh,1,sonnets,0\ncompeers,1,sonnets,0\nCXVII,1,sonnets,0\nIII,1,sonnets,0\nchronicle,1,sonnets,0\nreligious,1,sonnets,0\nBY,1,sonnets,0\ndelights,1,sonnets,0\nresemble,1,sonnets,0\npresagers,1,sonnets,0\nSlandering,1,sonnets,0\nPitiful,1,sonnets,0\nAm,1,sonnets,0\nspoil,1,sonnets,0\nAn,1,sonnets,0\nCX,1,sonnets,0\nCXXX,1,sonnets,0\nCV,1,sonnets,0\nwood's,1,sonnets,0\nCXXV,1,sonnets,0\ndepend,1,sonnets,0\nsurety,1,sonnets,0\nslander'd,1,sonnets,0\nneither,1,sonnets,0\nCI,1,sonnets,0\nchaste,1,sonnets,0\ninformer,1,sonnets,0\nCXXI,1,sonnets,0\nslander's,1,sonnets,0\nbalmy,1,sonnets,0\nCL,1,sonnets,0\nLV,1,sonnets,0\nsuffers,1,sonnets,0\nsequent,1,sonnets,0\nLX,1,sonnets,0\nrefined,1,sonnets,0\nmillion'd,1,sonnets,0\ndesperate,1,sonnets,0\nDrink,1,sonnets,0\nMR,1,sonnets,0\nprone,1,sonnets,0\nwarrior,1,sonnets,0\nO',1,sonnets,0\nbay,1,sonnets,0\nsiege,1,sonnets,0\nPhilomel,1,sonnets,0\nXXXIX,1,sonnets,0\nbar,1,sonnets,0\nXXXIV,1,sonnets,0\ntann'd,1,sonnets,0\nblots,1,sonnets,0\nUnlearned,1,sonnets,0\nOF,1,sonnets,0\ngainer,1,sonnets,0\ncreature,1,sonnets,0\nbeautiful,1,sonnets,0\nexceed,1,sonnets,0\ndenied,1,sonnets,0\nprevent'st,1,sonnets,0\npitied,1,sonnets,0\ntranslate,1,sonnets,0\nsings,1,sonnets,0\npaws,1,sonnets,0\ninhearse,1,sonnets,0\nwisdom,1,sonnets,0\nprophecies,1,sonnets,0\nashes,1,sonnets,0\nhabitation,1,sonnets,0\ntear,1,sonnets,0\nmedicine,1,sonnets,0\nII,1,sonnets,0\ndelves,1,sonnets,0\nIN,1,sonnets,0\nmiser,1,sonnets,0\nkinds,1,sonnets,0\nmeant,1,sonnets,0\nIV,1,sonnets,0\nills,1,sonnets,0\nIX,1,sonnets,0\nwhole,1,sonnets,0\nambush,1,sonnets,0\ndeserved,1,sonnets,0\nXXXII,1,sonnets,0\narrest,1,sonnets,0\neast,1,sonnets,0\nprizing,1,sonnets,0\nbid,1,sonnets,0\nfaring,1,sonnets,0\nRobb'd,1,sonnets,0\nimpregnable,1,sonnets,0\nenrich,1,sonnets,0\ncondemned,1,sonnets,0\nhides,1,sonnets,0\nLI,1,sonnets,0\n'hues',1,sonnets,0\nstem,1,sonnets,0\nfadeth,1,sonnets,0\nchanges,1,sonnets,0\n'thou,1,sonnets,0\nIs't,1,sonnets,0\nglorious,1,sonnets,0\nanchor'd,1,sonnets,0\nVI,1,sonnets,0\nrevenues,1,sonnets,0\nunbred,1,sonnets,0\nsire,1,sonnets,0\nSeems,1,sonnets,0\nquiet,1,sonnets,0\nbadges,1,sonnets,0\n'Amen',1,sonnets,0\nThence,1,sonnets,0\ntitles,1,sonnets,0\ndoubting,1,sonnets,0\ncritic,1,sonnets,0\ntheft,1,sonnets,0\nsummers',1,sonnets,0\ntrimm'd,1,sonnets,0\nCXLV,1,sonnets,0\nXV,1,sonnets,0\nsought,1,sonnets,0\nplants,1,sonnets,0\nCXLI,1,sonnets,0\nXI,1,sonnets,0\nCompare,1,sonnets,0\nXL,1,sonnets,0\nXC,1,sonnets,0\nquenched,1,sonnets,0\niniquity,1,sonnets,0\nWe,1,sonnets,0\ndivide,1,sonnets,0\nwrinkle,1,sonnets,0\nsits,1,sonnets,0\nsorry,1,sonnets,0\nwriters,1,sonnets,0\ntongue's,1,sonnets,0\nbusy,1,sonnets,0\nthriftless,1,sonnets,0\nCXIX,1,sonnets,0\nCXIV,1,sonnets,0\nuntold,1,sonnets,0\nrebel,1,sonnets,0\nCXII,1,sonnets,0\ndove,1,sonnets,0\ndifference,1,sonnets,0\nbell,1,sonnets,0\nawards,1,sonnets,0\ngoodly,1,sonnets,0\ncar,1,sonnets,0\nXLVI,1,sonnets,0\nOaths,1,sonnets,0\nhymn,1,sonnets,0\nTO,1,sonnets,0\nchildren,1,sonnets,0\nwarrantize,1,sonnets,0\nstruck,1,sonnets,0\nenclose,1,sonnets,0\npry,1,sonnets,0\ndefects,1,sonnets,0\ndevised,1,sonnets,0\nCXVI,1,sonnets,0\ndisperse,1,sonnets,0\nunsway'd,1,sonnets,0\njealous,1,sonnets,0\nheals,1,sonnets,0\ncancell'd,1,sonnets,0\nmonuments,1,sonnets,0\nLascivious,1,sonnets,0\nDeath's,1,sonnets,0\nlegacy,1,sonnets,0\ntickled,1,sonnets,0\nBook,1,sonnets,0\nforget'st,1,sonnets,0\neclipses,1,sonnets,0\nembassage,1,sonnets,0\nLXVIII,1,sonnets,0\nprick'd,1,sonnets,0\ntransport,1,sonnets,0\nkeep'st,1,sonnets,0\ngaol,1,sonnets,0\ndelay'd,1,sonnets,0\nFeeding,1,sonnets,0\ndeformed'st,1,sonnets,0\nHolds,1,sonnets,0\nruinate,1,sonnets,0\nSing,1,sonnets,0\nmerchandized,1,sonnets,0\nShowing,1,sonnets,0\nforgetful,1,sonnets,0\nmoods,1,sonnets,0\nAbove,1,sonnets,0\ngather'd,1,sonnets,0\nfrowns,1,sonnets,0\npreserve,1,sonnets,0\nO'er,1,sonnets,0\nXXXVI,1,sonnets,0\nadmired,1,sonnets,0\nWhate'er,1,sonnets,0\nXX,1,sonnets,0\nSETTING,1,sonnets,0\ngate,1,sonnets,0\njump,1,sonnets,0\nunfather'd,1,sonnets,0\ndwellers,1,sonnets,0\nruining,1,sonnets,0\nowest,1,sonnets,0\nimmortal,1,sonnets,0\nresort,1,sonnets,0\nacceptance,1,sonnets,0\nengross'd,1,sonnets,0\nimportune,1,sonnets,0\ncrowned,1,sonnets,0\nShifts,1,sonnets,0\nbegin,1,sonnets,0\nabysm,1,sonnets,0\nCLIII,1,sonnets,0\nETERNITY,1,sonnets,0\nAttending,1,sonnets,0\nuser,1,sonnets,0\nsolemn,1,sonnets,0\nentertain,1,sonnets,0\nghost,1,sonnets,0\nstorm,1,sonnets,0\noverplus,1,sonnets,0\ncurls,1,sonnets,0\ndeem,1,sonnets,0\nvirgin,1,sonnets,0\nprophetic,1,sonnets,0\ninstant,1,sonnets,0\nforgive,1,sonnets,0\nunfather'd',1,sonnets,0\neloquence,1,sonnets,0\npapers,1,sonnets,0\nconfess,1,sonnets,0\nCannot,1,sonnets,0\nFortune,1,sonnets,0\nsheds,1,sonnets,0\ntorments,1,sonnets,0\nbeck,1,sonnets,0\nyea,1,sonnets,0\nchoirs,1,sonnets,0\nservant,1,sonnets,0\nexcellent,1,sonnets,0\nrepent,1,sonnets,0\nstops,1,sonnets,0\nfaster,1,sonnets,0\nconsider,1,sonnets,0\nneedy,1,sonnets,0\ntruest,1,sonnets,0\nimpanneled,1,sonnets,0\nsable,1,sonnets,0\nallege,1,sonnets,0\ndebt,1,sonnets,0\nblenches,1,sonnets,0\nEve's,1,sonnets,0\nswearing,1,sonnets,0\nweakens,1,sonnets,0\nfountains,1,sonnets,0\nXCVII,1,sonnets,0\nCXXXIII,1,sonnets,0\ndeal,1,sonnets,0\nRevenge,1,sonnets,0\ngait,1,sonnets,0\ndignity,1,sonnets,0\ninterim,1,sonnets,0\ncontinual,1,sonnets,0\nstain'd,1,sonnets,0\nvictors,1,sonnets,0\nrainy,1,sonnets,0\ntouch'd,1,sonnets,0\nforged,1,sonnets,0\nstole,1,sonnets,0\nmetre,1,sonnets,0\nreckon,1,sonnets,0\npierced,1,sonnets,0\nmanner,1,sonnets,0\nhear'st,1,sonnets,0\nerred,1,sonnets,0\ntemperate,1,sonnets,0\nonset,1,sonnets,0\nforgotten,1,sonnets,0\nfixed,1,sonnets,0\ncured,1,sonnets,0\ncorrect,1,sonnets,0\nmove,1,sonnets,0\ncures,1,sonnets,0\nask'd,1,sonnets,0\nattending,1,sonnets,0\ncommend,1,sonnets,0\nSuffering,1,sonnets,0\ncommitted,1,sonnets,0\ngoverns,1,sonnets,0\naccumulate,1,sonnets,0\nregion,1,sonnets,0\nOthers,1,sonnets,0\nSiren,1,sonnets,0\nJunes,1,sonnets,0\nutmost,1,sonnets,0\nthrivers,1,sonnets,0\ncrave,1,sonnets,0\nidly,1,sonnets,0\nsituation,1,sonnets,0\nFortune's,1,sonnets,0\nstraying,1,sonnets,0\nprevailed,1,sonnets,0\ntwofold,1,sonnets,0\ndeface,1,sonnets,0\nsufficed,1,sonnets,0\ncarved,1,sonnets,0\naccusing,1,sonnets,0\nenmity,1,sonnets,0\nlover,1,sonnets,0\noffences,1,sonnets,0\nstout,1,sonnets,0\nloud,1,sonnets,0\nenjoys,1,sonnets,0\nsettled,1,sonnets,0\nendure,1,sonnets,0\nhoisted,1,sonnets,0\nalteration,1,sonnets,0\nsemblance,1,sonnets,0\nDesiring,1,sonnets,0\nstatute,1,sonnets,0\ndevil,1,sonnets,0\napparel,1,sonnets,0\ntwenty,1,sonnets,0\nremover,1,sonnets,0\ndefy,1,sonnets,0\nstrains,1,sonnets,0\nnecessary,1,sonnets,0\nact,1,sonnets,0\nlets,1,sonnets,0\nlock'd,1,sonnets,0\nXLVII,1,sonnets,0\nbootless,1,sonnets,0\nstatues,1,sonnets,0\nknew,1,sonnets,0\nWhoever,1,sonnets,0\nspot,1,sonnets,0\nseasons',1,sonnets,0\nCreep,1,sonnets,0\ndully,1,sonnets,0\nmadding,1,sonnets,0\ntyrants,1,sonnets,0\n''Tis,1,sonnets,0\ncomposed,1,sonnets,0\nbevel,1,sonnets,0\nloan,1,sonnets,0\nprescriptions,1,sonnets,0\nwithering,1,sonnets,0\nsun's,1,sonnets,0\nzealous,1,sonnets,0\nbristly,1,sonnets,0\ngraven,1,sonnets,0\naccents,1,sonnets,0\ngraves,1,sonnets,0\nWhence,1,sonnets,0\nHaply,1,sonnets,0\nwarm'd,1,sonnets,0\nornaments,1,sonnets,0\nplot,1,sonnets,0\nhindmost,1,sonnets,0\noppression,1,sonnets,0\ncherubins,1,sonnets,0\ntransgression,1,sonnets,0\neasy,1,sonnets,0\ndenote,1,sonnets,0\nkills,1,sonnets,0\nslide,1,sonnets,0\nhard,1,sonnets,0\ndiscourse,1,sonnets,0\nSeeking,1,sonnets,0\nbends,1,sonnets,0\nstrangle,1,sonnets,0\nProving,1,sonnets,0\nfront,1,sonnets,0\nindigest,1,sonnets,0\nweeks,1,sonnets,0\nfield,1,sonnets,0\nwards,1,sonnets,0\nStirr'd,1,sonnets,0\nseconds,1,sonnets,0\nstring,1,sonnets,0\nafford,1,sonnets,0\naye,1,sonnets,0\nXXXVII,1,sonnets,0\nfrost,1,sonnets,0\nconvertest,1,sonnets,0\noutright,1,sonnets,0\nONLY,1,sonnets,0\npoorly,1,sonnets,0\nlabouring,1,sonnets,0\nslanderers,1,sonnets,0\nkingly,1,sonnets,0\nknit,1,sonnets,0\nFairing,1,sonnets,0\ninflaming,1,sonnets,0\nunworthiness,1,sonnets,0\ncharacter'd,1,sonnets,0\nimpression,1,sonnets,0\nrhymers,1,sonnets,0\nverses,1,sonnets,0\ncounting,1,sonnets,0\neisel,1,sonnets,0\nseething,1,sonnets,0\nhusband's,1,sonnets,0\nCompared,1,sonnets,0\nHappy,1,sonnets,0\nacknowledge,1,sonnets,0\nbemoaned,1,sonnets,0\ncall'd,1,sonnets,0\ntreads,1,sonnets,0\nre,1,sonnets,0\nPluck,1,sonnets,0\nappears,1,sonnets,0\nfour,1,sonnets,0\nplain,1,sonnets,0\ndefense,1,sonnets,0\nbeweep,1,sonnets,0\nforty,1,sonnets,0\naddeth,1,sonnets,0\ntract,1,sonnets,0\nrudest,1,sonnets,0\nparticulars,1,sonnets,0\nFORTH,1,sonnets,0\nhalt,1,sonnets,0\nviewest,1,sonnets,0\nrudely,1,sonnets,0\npage,1,sonnets,0\nthralled,1,sonnets,0\nO'ercharged,1,sonnets,0\neased,1,sonnets,0\nkingdoms,1,sonnets,0\nharder,1,sonnets,0\nfurrows,1,sonnets,0\nreviewest,1,sonnets,0\nLaid,1,sonnets,0\nreturn'd,1,sonnets,0\npaid,1,sonnets,0\nfiery,1,sonnets,0\nlameness,1,sonnets,0\nwasted,1,sonnets,0\ndiest,1,sonnets,0\nmended,1,sonnets,0\nsharpen'd,1,sonnets,0\nfore,1,sonnets,0\nprofound,1,sonnets,0\nfooted,1,sonnets,0\nowes,1,sonnets,0\nmany's,1,sonnets,0\nBorne,1,sonnets,0\nheretic,1,sonnets,0\nDoubting,1,sonnets,0\nstones,1,sonnets,0\nshop,1,sonnets,0\ntempests,1,sonnets,0\nforlorn,1,sonnets,0\ndetermination,1,sonnets,0\nputs,1,sonnets,0\nexcept,1,sonnets,0\nflatter'd,1,sonnets,0\ngaudy,1,sonnets,0\nfood,1,sonnets,0\ncontain,1,sonnets,0\nimages,1,sonnets,0\ntyranny,1,sonnets,0\nbearer,1,sonnets,0\ncourses,1,sonnets,0\nunthrift,1,sonnets,0\nexcess,1,sonnets,0\nWeary,1,sonnets,0\nobject,1,sonnets,0\naccidents,1,sonnets,0\nscarcely,1,sonnets,0\nlight'st,1,sonnets,0\nrightly,1,sonnets,0\nerror,1,sonnets,0\nnearly,1,sonnets,0\nhateth,1,sonnets,0\ntombs,1,sonnets,0\nterm,1,sonnets,0\nPROMISED,1,sonnets,0\nsecret,1,sonnets,0\ntresses,1,sonnets,0\nforegone,1,sonnets,0\nHast,1,sonnets,0\nbodies',1,sonnets,0\nchance,1,sonnets,0\nKind,1,sonnets,0\nthanks,1,sonnets,0\nStrikes,1,sonnets,0\nCXXVIII,1,sonnets,0\nbanquet,1,sonnets,0\nboughs,1,sonnets,0\nBreathed,1,sonnets,0\nWretched,1,sonnets,0\nAmong,1,sonnets,0\nblooms,1,sonnets,0\npartial,1,sonnets,0\ntheirs,1,sonnets,0\nfew,1,sonnets,0\ncolour'd,1,sonnets,0\nfee,1,sonnets,0\npurchased,1,sonnets,0\nhits,1,sonnets,0\nfed,1,sonnets,0\ntouch,1,sonnets,0\nsmells,1,sonnets,0\nwights,1,sonnets,0\nLVIII,1,sonnets,0\narray,1,sonnets,0\nbehavior,1,sonnets,0\njustify,1,sonnets,0\nneeding,1,sonnets,0\nRicher,1,sonnets,0\nsicken,1,sonnets,0\nrhetoric,1,sonnets,0\nlonging,1,sonnets,0\nwresting,1,sonnets,0\ntrial,1,sonnets,0\npurple,1,sonnets,0\nexcel,1,sonnets,0\nenjoy,1,sonnets,0\nwillingly,1,sonnets,0\nexpiate,1,sonnets,0\nReceiving,1,sonnets,0\nHate,1,sonnets,0\npredict,1,sonnets,0\nbeams,1,sonnets,0\nhere's,1,sonnets,0\nroot,1,sonnets,0\njaws,1,sonnets,0\nmarch,1,sonnets,0\nunthrifts,1,sonnets,0\nnobler,1,sonnets,0\nwreck'd,1,sonnets,0\ndelighted,1,sonnets,0\naggravate,1,sonnets,0\nart's,1,sonnets,0\nluck,1,sonnets,0\nlacking,1,sonnets,0\nroof,1,sonnets,0\nXXXV,1,sonnets,0\nComes,1,sonnets,0\ntomb'd,1,sonnets,0\ndreading,1,sonnets,0\nactive,1,sonnets,0\nrestored,1,sonnets,0\nXXXI,1,sonnets,0\nroom,1,sonnets,0\nperceived,1,sonnets,0\ntincture,1,sonnets,0\nperceivest,1,sonnets,0\nfeel'st,1,sonnets,0\nbefriends,1,sonnets,0\nbreathes,1,sonnets,0\ngarments,1,sonnets,0\ncarcanet,1,sonnets,0\nequal,1,sonnets,0\nbreeds,1,sonnets,0\nissueless,1,sonnets,0\nstell'd,1,sonnets,0\nGrecian,1,sonnets,0\nmaid,1,sonnets,0\nXXVI,1,sonnets,0\nthreescore,1,sonnets,0\nrigor,1,sonnets,0\ndistills,1,sonnets,0\nworkings,1,sonnets,0\nhoney,1,sonnets,0\n'Thus,1,sonnets,0\nTen,1,sonnets,0\nsickle,1,sonnets,0\ndress'd,1,sonnets,0\nrosy,1,sonnets,0\nhill,1,sonnets,0\nCanst,1,sonnets,0\ngriefs,1,sonnets,0\nunprovident,1,sonnets,0\nbravery,1,sonnets,0\nindeed,1,sonnets,0\nbroad,1,sonnets,0\nlords,1,sonnets,0\nguilded,1,sonnets,0\nPotions,1,sonnets,0\ncouldst,1,sonnets,0\ndistance,1,sonnets,0\nGrowing,1,sonnets,0\nthinly,1,sonnets,0\nrolling,1,sonnets,0\nelipses,1,sonnets,0\nwilfully,1,sonnets,0\nTan,1,sonnets,0\nsickly,1,sonnets,0\nmotley,1,sonnets,0\n'Gainst,1,sonnets,0\nBetter,1,sonnets,0\nXXII,1,sonnets,0\nElse,1,sonnets,0\nXXIV,1,sonnets,0\nXXIX,1,sonnets,0\ncontains,1,sonnets,0\nnumber'd,1,sonnets,0\npenury,1,sonnets,0\ntoil'd,1,sonnets,0\ntrenches,1,sonnets,0\nstrengthen'd,1,sonnets,0\nafresh,1,sonnets,0\nproceed,1,sonnets,0\nHang,1,sonnets,0\nrestore,1,sonnets,0\ndress,1,sonnets,0\napple,1,sonnets,0\nconquer'd,1,sonnets,0\nunstained,1,sonnets,0\ngently,1,sonnets,0\nmounted,1,sonnets,0\nchopp'd,1,sonnets,0\nnoon,1,sonnets,0\nRobbing,1,sonnets,0\nInjurious,1,sonnets,0\nIncreasing,1,sonnets,0\nproudly,1,sonnets,0\nPresents,1,sonnets,0\nguides,1,sonnets,0\nconsumest,1,sonnets,0\nunfair,1,sonnets,0\nPointing,1,sonnets,0\ndeserving,1,sonnets,0\nforsaken,1,sonnets,0\nuntrimm'd,1,sonnets,0\nperusal,1,sonnets,0\ndisgraced,1,sonnets,0\nbeard,1,sonnets,0\nspread,1,sonnets,0\nfester,1,sonnets,0\nfaint,1,sonnets,0\nhasten,1,sonnets,0\ntenor,1,sonnets,0\nfeature,1,sonnets,0\nAlack,1,sonnets,0\nselling,1,sonnets,0\nmisuse,1,sonnets,0\nhied,1,sonnets,0\nneed'st,1,sonnets,0\ntravels,1,sonnets,0\nextant,1,sonnets,0\nburthens,1,sonnets,0\nmeditation,1,sonnets,0\nadmire,1,sonnets,0\ndecrepit,1,sonnets,0\nstick'st,1,sonnets,0\nchary,1,sonnets,0\nwandering,1,sonnets,0\nwritten,1,sonnets,0\nannoy,1,sonnets,0\nidolatry,1,sonnets,0\nBare,1,sonnets,0\nchips,1,sonnets,0\nFlatter,1,sonnets,0\nborne,1,sonnets,0\nvisage,1,sonnets,0\nalter,1,sonnets,0\nSin,1,sonnets,0\naffections,1,sonnets,0\nstays,1,sonnets,0\nquickly,1,sonnets,0\narise,1,sonnets,0\nprogress,1,sonnets,0\nthrall,1,sonnets,0\nlanguish'd,1,sonnets,0\no'erlook,1,sonnets,0\nLose,1,sonnets,0\nwho's,1,sonnets,0\nthreefold,1,sonnets,0\nsprings,1,sonnets,0\nKissing,1,sonnets,0\nhousewife,1,sonnets,0\nLord,1,sonnets,0\ndamask'd,1,sonnets,0\naccessary,1,sonnets,0\nrarities,1,sonnets,0\nseveral,1,sonnets,0\nExcusing,1,sonnets,0\npowers,1,sonnets,0\nsplendor,1,sonnets,0\ninvoked,1,sonnets,0\ncloak,1,sonnets,0\nbesmear'd,1,sonnets,0\nsullied,1,sonnets,0\nDrugs,1,sonnets,0\nplaced,1,sonnets,0\nCVIII,1,sonnets,0\nrecured,1,sonnets,0\nerr,1,sonnets,0\ntillage,1,sonnets,0\nstrife,1,sonnets,0\nyourself's,1,sonnets,0\nreigns,1,sonnets,0\nexpired,1,sonnets,0\nperfect'st,1,sonnets,0\nrevolution,1,sonnets,0\ntowards,1,sonnets,0\nblessings,1,sonnets,0\nLXVII,1,sonnets,0\nrandom,1,sonnets,0\nteeth,1,sonnets,0\nPresume,1,sonnets,0\nCrawls,1,sonnets,0\nmightst,1,sonnets,0\nvalley,1,sonnets,0\nbosoms,1,sonnets,0\nfoolish,1,sonnets,0\nXXVIII,1,sonnets,0\nresty,1,sonnets,0\nGrant,1,sonnets,0\ntowers,1,sonnets,0\npurposed,1,sonnets,0\nsmother,1,sonnets,0\n'Truth,1,sonnets,0\ndregs,1,sonnets,0\nalready,1,sonnets,0\nblush,1,sonnets,0\nprocess,1,sonnets,0\nnursed,1,sonnets,0\nbeggar,1,sonnets,0\nforgoing,1,sonnets,0\ndebateth,1,sonnets,0\nCould,1,sonnets,0\nannex'd,1,sonnets,0\nuntutor'd,1,sonnets,0\nfreezings,1,sonnets,0\nghastly,1,sonnets,0\nthere's,1,sonnets,0\nAND,1,sonnets,0\npartake,1,sonnets,0\ntenth,1,sonnets,0\ncounterpart,1,sonnets,0\nforests,1,sonnets,0\nonward,1,sonnets,0\ncoward,1,sonnets,0\nALL,1,sonnets,0\ncomes,1,sonnets,0\nranks,1,sonnets,0\nproudest,1,sonnets,0\nfoil'd,1,sonnets,0\nraiment,1,sonnets,0\nfountain,1,sonnets,0\nknown,1,sonnets,0\nachieve,1,sonnets,0\nveil,1,sonnets,0\nsteepy,1,sonnets,0\nThee,1,sonnets,0\nbecause,1,sonnets,0\nwoo,1,sonnets,0\nwon,1,sonnets,0\nblow,1,sonnets,0\nbrains,1,sonnets,0\nstarved,1,sonnets,0\nvision,1,sonnets,0\ngreatest,1,sonnets,0\npainful,1,sonnets,0\nConsumed,1,sonnets,0\nmournful,1,sonnets,0\ngates,1,sonnets,0\nentombed,1,sonnets,0\npurging,1,sonnets,0\nbeside,1,sonnets,0\nBEGETTER,1,sonnets,0\nseal'd,1,sonnets,0\ncaptive,1,sonnets,0\nCXL,1,sonnets,0\nCXI,1,sonnets,0\nPrison,1,sonnets,0\nBuy,1,sonnets,0\ntrifle,1,sonnets,0\npossessing,1,sonnets,0\nknowst,1,sonnets,0\nwantonness,1,sonnets,0\nsmoke,1,sonnets,0\nmarvel,1,sonnets,0\nhonouring,1,sonnets,0\nDecember's,1,sonnets,0\npreposterously,1,sonnets,0\ngluttoning,1,sonnets,0\nimpiety,1,sonnets,0\nCVI,1,sonnets,0\nCXXVII,1,sonnets,0\nengrafted,1,sonnets,0\ntrouble,1,sonnets,0\nsluttish,1,sonnets,0\nwet,1,sonnets,0\nGiving,1,sonnets,0\nLXXXVI,1,sonnets,0\nsang,1,sonnets,0\nscanted,1,sonnets,0\nCommanded,1,sonnets,0\nfirm,1,sonnets,0\ndullness,1,sonnets,0\nburiest,1,sonnets,0\nDevouring,1,sonnets,0\nbear'st,1,sonnets,0\nhardest,1,sonnets,0\nblindness,1,sonnets,0\nbanks,1,sonnets,0\nFeeds,1,sonnets,0\nproves,1,sonnets,0\nmethods,1,sonnets,0\nunletter'd,1,sonnets,0\ndoctor,1,sonnets,0\nreleasing,1,sonnets,0\ndignified,1,sonnets,0\nimprint,1,sonnets,0\nCXVIII,1,sonnets,0\nget,1,sonnets,0\ndignifies,1,sonnets,0\nstrained,1,sonnets,0\nXXIII,1,sonnets,0\nmerits,1,sonnets,0\nAwakes,1,sonnets,0\n'No,1,sonnets,0\nneck,1,sonnets,0\nunhappily,1,sonnets,0\npomp,1,sonnets,0\nfits,1,sonnets,0\ngirded,1,sonnets,0\nthrow,1,sonnets,0\nsides,1,sonnets,0\nstamp,1,sonnets,0\nrestful,1,sonnets,0\n'not,1,sonnets,0\nCXV,1,sonnets,0\nCXX,1,sonnets,0\nproposed,1,sonnets,0\nprovoke,1,sonnets,0\nyou've,1,sonnets,0\nreceipt,1,sonnets,0\ncross'd,1,sonnets,0\nimport,1,sonnets,0\nwoes,1,sonnets,0\nservices,1,sonnets,0\nwelfare,1,sonnets,0\nmeasured,1,sonnets,0\nthird,1,sonnets,0\nCXXXVIII,1,sonnets,0\ntraffic,1,sonnets,0\nnovel,1,sonnets,0\ndifferent,1,sonnets,0\nsteel'd,1,sonnets,0\nmoment,1,sonnets,0\nwaking,1,sonnets,0\naltering,1,sonnets,0\nriot,1,sonnets,0\ncloset,1,sonnets,0\ndecays,1,sonnets,0\nconspire,1,sonnets,0\nheard,1,sonnets,0\nsessions,1,sonnets,0\nquicker,1,sonnets,0\nSay,1,sonnets,0\nSap,1,sonnets,0\nrenewest,1,sonnets,0\nDesire,1,sonnets,0\ncouplement,1,sonnets,0\nripe,1,sonnets,0\namazeth,1,sonnets,0\nsalutation,1,sonnets,0\nenlighten,1,sonnets,0\nfiled,1,sonnets,0\nimpediments,1,sonnets,0\ndefeated,1,sonnets,0\nsave,1,sonnets,0\nremains,1,sonnets,0\nLXXXVIII,1,sonnets,0\nadulterate,1,sonnets,0\nshamefully,1,sonnets,0\nCXLII,1,sonnets,0\nidol,1,sonnets,0\ndecrees,1,sonnets,0\nCXLIV,1,sonnets,0\nDian's,1,sonnets,0\nCXLIX,1,sonnets,0\nowner's,1,sonnets,0\nliker,1,sonnets,0\nvow'd,1,sonnets,0\nThink,1,sonnets,0\nhooks,1,sonnets,0\nflourish,1,sonnets,0\nimperfect,1,sonnets,0\nspacious,1,sonnets,0\nlinger,1,sonnets,0\nrise,1,sonnets,0\ntuned,1,sonnets,0\nable,1,sonnets,0\nretention,1,sonnets,0\nWorthy,1,sonnets,0\nswart,1,sonnets,0\nreceive,1,sonnets,0\nmisprision,1,sonnets,0\nXLVIII,1,sonnets,0\nheats,1,sonnets,0\nprint,1,sonnets,0\nrite,1,sonnets,0\nhidden,1,sonnets,0\nRoot,1,sonnets,0\nnurseth,1,sonnets,0\nsufferance,1,sonnets,0\narts,1,sonnets,0\nassure,1,sonnets,0\nHiding,1,sonnets,0\nWISHETH,1,sonnets,0\nwoos,1,sonnets,0\nanticipate,1,sonnets,0\nforward,1,sonnets,0\nsaith,1,sonnets,0\nwanton,1,sonnets,0\ndying,1,sonnets,0\nbereft,1,sonnets,0\nRuin,1,sonnets,0\nbequest,1,sonnets,0\ninstinct,1,sonnets,0\ncovetous,1,sonnets,0\nLoving,1,sonnets,0\nadmitted,1,sonnets,0\nastronomy,1,sonnets,0\nwont,1,sonnets,0\ncomplain,1,sonnets,0\nLIV,1,sonnets,0\nLIX,1,sonnets,0\nLeese,1,sonnets,0\nLII,1,sonnets,0\ndross,1,sonnets,0\nenforced,1,sonnets,0\ntransferr'd,1,sonnets,0\nhair,1,sonnets,0\nresent,1,sonnets,0\nonwards,1,sonnets,0\nXVIII,1,sonnets,0\nnews,1,sonnets,0\ngrossly,1,sonnets,0\nintermix'd,1,sonnets,0\nfamiliar,1,sonnets,0\ngladly,1,sonnets,0\nvengeful,1,sonnets,0\noblivion,1,sonnets,0\nStraight,1,sonnets,0\nwatery,1,sonnets,0\nshallowest,1,sonnets,0\nvarying,1,sonnets,0\ntaker,1,sonnets,0\narising,1,sonnets,0\nslavery,1,sonnets,0\nwhat's,1,sonnets,0\nput'st,1,sonnets,0\nearthly,1,sonnets,0\npurest,1,sonnets,0\npoison,1,sonnets,0\ncharged,1,sonnets,0\nanger,1,sonnets,0\nrequire,1,sonnets,0\nsways,1,sonnets,0\ncompass,1,sonnets,0\nowe,1,sonnets,0\nEternal,1,sonnets,0\nCIX,1,sonnets,0\nconsent,1,sonnets,0\nCIV,1,sonnets,0\nCII,1,sonnets,0\nwolf,1,sonnets,0\ndetermined,1,sonnets,0\ndrops,1,sonnets,0\nharvest,1,sonnets,0\nmarble,1,sonnets,0\nbeguiled,1,sonnets,0\nsober,1,sonnets,0\nhundred,1,sonnets,0\nCXLVI,1,sonnets,0\nhighmost,1,sonnets,0\nwent,1,sonnets,0\nwatching,1,sonnets,0\ngifts,1,sonnets,0\nmightier,1,sonnets,0\nsatire,1,sonnets,0\nShow,1,sonnets,0\ntable,1,sonnets,0\ngrieve,1,sonnets,0\nlocked,1,sonnets,0\nSwear,1,sonnets,0\nEntitled,1,sonnets,0\ndurst,1,sonnets,0\nprofane,1,sonnets,0\nCLI,1,sonnets,0\nBeauteous,1,sonnets,0\ndates,1,sonnets,0\n'fore,1,sonnets,0\nmessengers,1,sonnets,0\ncompile,1,sonnets,0\ntuff,1,sonnets,0\ngiving,1,sonnets,0\nmiracle,1,sonnets,0\nlords',1,sonnets,0\nThat's,1,sonnets,0\nmeadows,1,sonnets,0\ncrystal,1,sonnets,0\nsaint,1,sonnets,0\nvictor,1,sonnets,0\nfoe,1,sonnets,0\namends,1,sonnets,0\nransoms,1,sonnets,0\naffable,1,sonnets,0\nlasting,1,sonnets,0\nCall'd,1,sonnets,0\ncrests,1,sonnets,0\ndarkly,1,sonnets,0\nanswers,1,sonnets,0\ntruths,1,sonnets,0\nrack,1,sonnets,0\nrace,1,sonnets,0\nwoeful,1,sonnets,0\npleased,1,sonnets,0\nendeared,1,sonnets,0\nworn,1,sonnets,0\nparallels,1,sonnets,0\ntune,1,sonnets,0\nthrew,1,sonnets,0\nfly,1,sonnets,0\nclerk,1,sonnets,0\nworthiness,1,sonnets,0\nworth's,1,sonnets,0\nlodged,1,sonnets,0\nclay,1,sonnets,0\ndancing,1,sonnets,0\nCIII,1,sonnets,0\nunjust,1,sonnets,0\nMars,1,sonnets,0\noffices,1,sonnets,0\ngazing,1,sonnets,0\nfilching,1,sonnets,0\nallay'd,1,sonnets,0\nLVI,1,sonnets,0\nyore,1,sonnets,0\ninvocate,1,sonnets,0\npassion,1,sonnets,0\nDoing,1,sonnets,0\nrunn'st,1,sonnets,0\nprofit,1,sonnets,0\nswallow'd,1,sonnets,0\nseparation,1,sonnets,0\nbattering,1,sonnets,0\ndecay'd,1,sonnets,0\nlascivious,1,sonnets,0\nexternal,1,sonnets,0\nminded,1,sonnets,0\nthunder,1,sonnets,0\nanswer'd,1,sonnets,0\nvanishing,1,sonnets,0\nloveliness,1,sonnets,0\nworship,1,sonnets,0\nIncapable,1,sonnets,0\nunset,1,sonnets,0\nherself,1,sonnets,0\nfawn,1,sonnets,0\npoison'd,1,sonnets,0\nfaculty,1,sonnets,0\nXXXIII,1,sonnets,0\nreeleth,1,sonnets,0\nqueen,1,sonnets,0\nmadmen's,1,sonnets,0\nperceive,1,sonnets,0\nAdvantage,1,sonnets,0\npartly,1,sonnets,0\npatient,1,sonnets,0\ntyrants',1,sonnets,0\nmarjoram,1,sonnets,0\nwrongfully,1,sonnets,0\ntruth's,1,sonnets,0\nsickle's,1,sonnets,0\nwaves,1,sonnets,0\nodours,1,sonnets,0\nreproach,1,sonnets,0\nregister,1,sonnets,0\nbird,1,sonnets,0\nLilies,1,sonnets,0\nLIII,1,sonnets,0\nstrumpeted,1,sonnets,0\ndispraise,1,sonnets,0\ngrievances,1,sonnets,0\nSpending,1,sonnets,0\nqualify,1,sonnets,0\nLXX,1,sonnets,0\nLXV,1,sonnets,0\ndeliver'd,1,sonnets,0\nfate,1,sonnets,0\nSteal,1,sonnets,0\nXCVIII,1,sonnets,0\nhallow'd,1,sonnets,0\nmightest,1,sonnets,0\ncools,1,sonnets,0\ntame,1,sonnets,0\nweakness,1,sonnets,0\nrising,1,sonnets,0\nwill'd,1,sonnets,0\ncrush'd,1,sonnets,0\nsongs,1,sonnets,0\nafloat,1,sonnets,0\nsurly,1,sonnets,0\ndrinks,1,sonnets,0\nfeeble,1,sonnets,0\nlap,1,sonnets,0\ntall,1,sonnets,0\nreckon'd,1,sonnets,0\nfalsely,1,sonnets,0\nvermilion,1,sonnets,0\nmatcheth,1,sonnets,0\norient,1,sonnets,0\nLean,1,sonnets,0\nbind,1,sonnets,0\nLXI,1,sonnets,0\naloft,1,sonnets,0\ncup,1,sonnets,0\nappearance,1,sonnets,0\nfresher,1,sonnets,0\ndestroys,1,sonnets,0\nhatred,1,sonnets,0\nperish,1,sonnets,0\nDescribe,1,sonnets,0\ncarry,1,sonnets,0\nolives,1,sonnets,0\nwild,1,sonnets,0\nshoot,1,sonnets,0\nshook,1,sonnets,0\nFeatured,1,sonnets,0\npardon,1,sonnets,0\naccident,1,sonnets,0\nswears,1,sonnets,0\nstrength's,1,sonnets,0\nthank,1,sonnets,0\nsparkling,1,sonnets,0\nclean,1,sonnets,0\nlour'st,1,sonnets,0\npicture's,1,sonnets,0\nvictories,1,sonnets,0\nshorn,1,sonnets,0\nNone,1,sonnets,0\nfrequent,1,sonnets,0\nfamine,1,sonnets,0\npupil,1,sonnets,0\ncut,1,sonnets,0\ndevour,1,sonnets,0\neffectually,1,sonnets,0\nfollows,1,sonnets,0\nfired,1,sonnets,0\nvariation,1,sonnets,0\nhonest,1,sonnets,0\nfeasts,1,sonnets,0\ncarve,1,sonnets,0\nunto,1,sonnets,0\nstaineth,1,sonnets,0\nranged,1,sonnets,0\nlily's,1,sonnets,0\nrevolt,1,sonnets,0\nspurring,1,sonnets,0\nbesiege,1,sonnets,0\ndefeat,1,sonnets,0\nhorses,1,sonnets,0\nwaning,1,sonnets,0\nwondering,1,sonnets,0\nbarrenly,1,sonnets,0\nseal,1,sonnets,0\ndespising,1,sonnets,0\nprefiguring,1,sonnets,0\ngild'st,1,sonnets,0\nbuilding,1,sonnets,0\ntask,1,sonnets,0\nlegions,1,sonnets,0\ncloying,1,sonnets,0\nmasked,1,sonnets,0\nblazon,1,sonnets,0\nfitted,1,sonnets,0\nintents,1,sonnets,0\nwife,1,sonnets,0\nprayers,1,sonnets,0\nsubscribes,1,sonnets,0\nAnon,1,sonnets,0\nApplying,1,sonnets,0\nXCIII,1,sonnets,0\nhung,1,sonnets,0\nevident,1,sonnets,0\nperfumed,1,sonnets,0\nCXXXVII,1,sonnets,0\nhairs,1,sonnets,0\nbetraying,1,sonnets,0\nplay'st,1,sonnets,0\nstores',1,sonnets,0\nfickle,1,sonnets,0\ncool,1,sonnets,0\nlying,1,sonnets,0\nTheirs,1,sonnets,0\ncontents,1,sonnets,0\nwaiting,1,sonnets,0\nCalls,1,sonnets,0\nalways,1,sonnets,0\nLXXXIV,1,sonnets,0\nLXXXIX,1,sonnets,0\nwinged,1,sonnets,0\nCXIII,1,sonnets,0\nBeated,1,sonnets,0\nneglected,1,sonnets,0\nbreasts,1,sonnets,0\nLXXXII,1,sonnets,0\nrearward,1,sonnets,0\nrecounting,1,sonnets,0\nadieu,1,sonnets,0\nlow,1,sonnets,0\neyed,1,sonnets,0\ndeepest,1,sonnets,0\ntrophies,1,sonnets,0\nugly,1,sonnets,0\ndrunk,1,sonnets,0\nlengths,1,sonnets,0\nSinks,1,sonnets,0\nLXXV,1,sonnets,0\nLXXX,1,sonnets,0\nadder's,1,sonnets,0\nkingdom,1,sonnets,0\ndecree,1,sonnets,0\npublish,1,sonnets,0\nreckoning,1,sonnets,0\nsingleness,1,sonnets,0\nfeathers,1,sonnets,0\nServing,1,sonnets,0\neither,1,sonnets,0\nadore,1,sonnets,0\nharmful,1,sonnets,0\nhounds,1,sonnets,0\nnerves,1,sonnets,0\nsupposed,1,sonnets,0\nLXXVI,1,sonnets,0\nwrack,1,sonnets,0\npresenteth,1,sonnets,0\nsees,1,sonnets,0\ndressing,1,sonnets,0\nshapes,1,sonnets,0\nLXXI,1,sonnets,0\nthereof,1,sonnets,0\nmix'd,1,sonnets,0\nSpeaking,1,sonnets,0\nassailed,1,sonnets,0\nthrust,1,sonnets,0\nXIII,1,sonnets,0\nLXVI,1,sonnets,0\nconfounding,1,sonnets,0\nsportive,1,sonnets,0\nwhate'er,1,sonnets,0\nLXXII,1,sonnets,0\ndispense,1,sonnets,0\nhouse,1,sonnets,0\nLXXIV,1,sonnets,0\nLXXIX,1,sonnets,0\nterm'd,1,sonnets,0\nThrough,1,sonnets,0\noutcast,1,sonnets,0\nClouds,1,sonnets,0\nbestowest,1,sonnets,0\nbait,1,sonnets,0\nbadness,1,sonnets,0\nunwoo'd,1,sonnets,0\nstopped,1,sonnets,0\nUse,1,sonnets,0\ngrow'st,1,sonnets,0\ninviting,1,sonnets,0\nunseeing,1,sonnets,0\ngusts,1,sonnets,0\nlearned's,1,sonnets,0\nfairly,1,sonnets,0\nmodern,1,sonnets,0\nraven,1,sonnets,0\nbelieved,1,sonnets,0\nindirectly,1,sonnets,0\nADVENTURER,1,sonnets,0\nmortgaged,1,sonnets,0\nsell,1,sonnets,0\nunfolding,1,sonnets,0\nJust,1,sonnets,0\nmillions,1,sonnets,0\nuncertain,1,sonnets,0\nwork's,1,sonnets,0\nbankrupt,1,sonnets,0\nsee'st,1,sonnets,0\nsend'st,1,sonnets,0\nfearfully,1,sonnets,0\ncompiled,1,sonnets,0\nglowing,1,sonnets,0\nfrailer,1,sonnets,0\nstores,1,sonnets,0\nNeither,1,sonnets,0\nIncertainties,1,sonnets,0\nSelf,1,sonnets,0\ngentlest,1,sonnets,0\nremote,1,sonnets,0\ntogether,1,sonnets,0\nIntend,1,sonnets,0\nnurse,1,sonnets,0\nAdmit,1,sonnets,0\ngrieved,1,sonnets,0\nherald,1,sonnets,0\nchose,1,sonnets,0\nfearing,1,sonnets,0\nsickness,1,sonnets,0\nushers,1,sonnets,0\nconvert,1,sonnets,0\naright,1,sonnets,0\nequipage,1,sonnets,0\nslumbers,1,sonnets,0\nDecay,1,sonnets,0\nattaint,1,sonnets,0\nbestow,1,sonnets,0\nlip,1,sonnets,0\ndrooping,1,sonnets,0\ncrooked,1,sonnets,0\nHearing,1,sonnets,0\neyes',1,sonnets,0\nstormy,1,sonnets,0\nRough,1,sonnets,0\nbudding,1,sonnets,0\nAccuse,1,sonnets,0\nTwo,1,sonnets,0\noblivious,1,sonnets,0\nfeatureless,1,sonnets,0\nlaws,1,sonnets,0\nfrantic,1,sonnets,0\nNothing,1,sonnets,0\nfoison,1,sonnets,0\nendured,1,sonnets,0\nuniverse,1,sonnets,0\nCLII,1,sonnets,0\nCLIV,1,sonnets,0\ntravel's,1,sonnets,0\npersuade,1,sonnets,0\nunperfect,1,sonnets,0\ndivining,1,sonnets,0\nfeasting,1,sonnets,0\nreview,1,sonnets,0\nmasonry,1,sonnets,0\nDivert,1,sonnets,0\nbeds',1,sonnets,0\nCXXXII,1,sonnets,0\ndebate,1,sonnets,0\ninsufficiency,1,sonnets,0\nmar,1,sonnets,0\nCXXXIX,1,sonnets,0\nCXXXIV,1,sonnets,0\nexpressing,1,sonnets,0\nsway'st,1,sonnets,0\ngains,1,sonnets,0\nnourish'd,1,sonnets,0\nheinous,1,sonnets,0\ndial's,1,sonnets,0\nDelights,1,sonnets,0\nTowards,1,sonnets,0\nSaturn,1,sonnets,0\nsmiling,1,sonnets,0\ngulls,1,sonnets,0\nvices,1,sonnets,0\nforced,1,sonnets,0\ngust,1,sonnets,0\ndistillation,1,sonnets,0\nsauces,1,sonnets,0\nbegins,1,sonnets,0\nposting,1,sonnets,0\nAnother,1,sonnets,0\nkindling,1,sonnets,0\nacceptable,1,sonnets,0\ncompounded,1,sonnets,0\npoesy,1,sonnets,0\ndefaced,1,sonnets,0\ninferior,1,sonnets,0\ncorrection,1,sonnets,0\nwretch's,1,sonnets,0\nseemly,1,sonnets,0\ntrim,1,sonnets,0\nphoenix,1,sonnets,0\ndefendant,1,sonnets,0\ntravell'd,1,sonnets,0\nvilest,1,sonnets,0\ndisdaineth,1,sonnets,0\nXLIII,1,sonnets,0\ncheater,1,sonnets,0\ncensures,1,sonnets,0\ntires,1,sonnets,0\nRise,1,sonnets,0\ndebarr'd,1,sonnets,0\ndye,1,sonnets,0\nrights,1,sonnets,0\nbreathers,1,sonnets,0\nEnjoy'd,1,sonnets,0\nblunting,1,sonnets,0\ngraciously,1,sonnets,0\ndeterminate,1,sonnets,0\nrepay,1,sonnets,0\nwhit,1,sonnets,0\nLXXXIII,1,sonnets,0\npleasant,1,sonnets,0\nlimit,1,sonnets,0\nladies,1,sonnets,0\ndebtor,1,sonnets,0\nTHAT,1,sonnets,0\nPossessing,1,sonnets,0\n'greeing,1,sonnets,0\nGreat,1,sonnets,0\ngems,1,sonnets,0\nsimplicity,1,sonnets,0\n'Had,1,sonnets,0\nconfess'd,1,sonnets,0\n'love',1,sonnets,0\nsolve,1,sonnets,0\nextern,1,sonnets,0\nmonarch's,1,sonnets,0\nUnmoved,1,sonnets,0\nrondure,1,sonnets,0\nessays,1,sonnets,0\nforgetfulness,1,sonnets,0\nhomage,1,sonnets,0\nmarriage,1,sonnets,0\nappearing,1,sonnets,0\nAdonis,1,sonnets,0\nbeguile,1,sonnets,0\nlark,1,sonnets,0\nCXLVII,1,sonnets,0\nsometimes,1,sonnets,0\nuntainted,1,sonnets,0\nCheered,1,sonnets,0\nrespects,1,sonnets,0\nrenew'd,1,sonnets,0\npolitic,1,sonnets,0\nphrase,1,sonnets,0\ncredit,1,sonnets,0\njollity,1,sonnets,0\nfleeting,1,sonnets,0\ninherit,1,sonnets,0\nliquid,1,sonnets,0\nthither,1,sonnets,0\nlate,1,sonnets,0\nSings,1,sonnets,0\nreeks,1,sonnets,0\nbetter'd,1,sonnets,0\ngravity,1,sonnets,0\nEat,1,sonnets,0\nLXXVII,1,sonnets,0\ntruant,1,sonnets,0\nsleeping,1,sonnets,0\nVII,1,sonnets,0\nhush,1,sonnets,0\nrecompense,1,sonnets,0\npeep,1,sonnets,0\njade,1,sonnets,0\nsilver,1,sonnets,0\nlist,1,sonnets,0\nhurt,1,sonnets,0\nCXXXVI,1,sonnets,0\nsuited,1,sonnets,0\nNaming,1,sonnets,0\nChiding,1,sonnets,0\nsepulchres,1,sonnets,0\nimpart,1,sonnets,0\nFeed'st,1,sonnets,0\nprouder,1,sonnets,0\nCounting,1,sonnets,0\nragged,1,sonnets,0\nvowing,1,sonnets,0\nneigh,1,sonnets,0\nbooks,1,sonnets,0\ncontend,1,sonnets,0\nfollow'd,1,sonnets,0\nquietus,1,sonnets,0\nlimping,1,sonnets,0\nmow,1,sonnets,0\npyramids,1,sonnets,0\ndwells,1,sonnets,0\nfrank,1,sonnets,0\nuprear,1,sonnets,0\nmouths,1,sonnets,0\nshady,1,sonnets,0\nolder,1,sonnets,0\ncorrupting,1,sonnets,0\npainter's,1,sonnets,0\npresage,1,sonnets,0\nslay,1,sonnets,0\nbrag,1,sonnets,0\ndistemper'd,1,sonnets,0\ninvited,1,sonnets,0\nattend,1,sonnets,0\nprovide,1,sonnets,0\ncentre,1,sonnets,0\nWhoe'er,1,sonnets,0\nconfine,1,sonnets,0\ndart,1,sonnets,0\nmud,1,sonnets,0\nlosses,1,sonnets,0\nordering,1,sonnets,0\noffender's,1,sonnets,0\nHung,1,sonnets,0\ndun,1,sonnets,0\nexchanged,1,sonnets,0\nweigh,1,sonnets,0\nweight,1,sonnets,0\nland,1,sonnets,0\nblessing,1,sonnets,0\ndispatch,1,sonnets,0\nrocks,1,sonnets,0\ntop,1,sonnets,0\ninjurious,1,sonnets,0\nWishing,1,sonnets,0\ndry,1,sonnets,0\nlamb,1,sonnets,0\nsea's,1,sonnets,0\nresting,1,sonnets,0\nBring,1,sonnets,0\nundivided,1,sonnets,0\ncertain,1,sonnets,0\nUntil,1,sonnets,0\nleap'd,1,sonnets,0\nbewailed,1,sonnets,0\nprinces',1,sonnets,0\nphysician,1,sonnets,0\nseparable,1,sonnets,0\noffence's,1,sonnets,0\nvacant,1,sonnets,0\ntripping,1,sonnets,0\nvex'd,1,sonnets,0\nToo,1,sonnets,0\ngazed,1,sonnets,0\nlargess,1,sonnets,0\nflown,1,sonnets,0\ntrees,1,sonnets,0\ndivided,1,sonnets,0\nimpair,1,sonnets,0\nconceal'd,1,sonnets,0\nprivate,1,sonnets,0\nDissuade,1,sonnets,0\nsourest,1,sonnets,0\nSavage,1,sonnets,0\nshifting,1,sonnets,0\npress'd,1,sonnets,0\nexpire,1,sonnets,0\nboundless,1,sonnets,0\nfigured,1,sonnets,0\npebbled,1,sonnets,0\njealousy,1,sonnets,0\nPOET,1,sonnets,0\nimmured,1,sonnets,0\nteeming,1,sonnets,0\nawake,1,sonnets,0\nfigures,1,sonnets,0\ndarling,1,sonnets,0\nhugely,1,sonnets,0\nFROM,1,sonnets,0\nDistill'd,1,sonnets,0\nexchequer,1,sonnets,0\nbier,1,sonnets,0\nfragrant,1,sonnets,0\ndedicated,1,sonnets,0\nstriving,1,sonnets,0\ncandles,1,sonnets,0\nlace,1,sonnets,0\nFind,1,sonnets,0\nbids,1,sonnets,0\nth',1,sonnets,0\nBound,1,sonnets,0\nwombs,1,sonnets,0\nspoils,1,sonnets,0\ndressings,1,sonnets,0\nperhaps,1,sonnets,0\nmakeless,1,sonnets,0\nDarkening,1,sonnets,0\ncrown,1,sonnets,0\npresent'st,1,sonnets,0\nwilfulness,1,sonnets,0\nshare,1,sonnets,0\nLIVING,1,sonnets,0\ndig,1,sonnets,0\nLXXIII,1,sonnets,0\nshow'st,1,sonnets,0\nsharp,1,sonnets,0\npour'st,1,sonnets,0\nwoo'd,1,sonnets,0\nmonsters,1,sonnets,0\nending,1,sonnets,0\nservant's,1,sonnets,0\nCXXIII,1,sonnets,0\nremembered,1,sonnets,0\nGrows,1,sonnets,0\ncheque'd,2,sonnets,0\naffords,2,sonnets,0\nmeet,2,sonnets,0\nlusty,2,sonnets,0\ntrue',2,sonnets,0\nignorance,2,sonnets,0\nT,2,sonnets,0\nguard,2,sonnets,0\nNay,2,sonnets,0\nsuffer,2,sonnets,0\nbelongs,2,sonnets,0\nhorse,2,sonnets,0\nAlas,2,sonnets,0\nadvantage,2,sonnets,0\npeace,2,sonnets,0\nalack,2,sonnets,0\njacks,2,sonnets,0\ndistill'd,2,sonnets,0\nrobs,2,sonnets,0\nhealth,2,sonnets,0\nexpress,2,sonnets,0\npainter,2,sonnets,0\nheld,2,sonnets,0\nunrespected,2,sonnets,0\nbounteous,2,sonnets,0\nwhile,2,sonnets,0\nslander,2,sonnets,0\nEre,2,sonnets,0\nsour,2,sonnets,0\ncharter,2,sonnets,0\nprey,2,sonnets,0\nsort,2,sonnets,0\nlively,2,sonnets,0\nbosom's,2,sonnets,0\nmute,2,sonnets,0\ncast,2,sonnets,0\npleasing,2,sonnets,0\nreign,2,sonnets,0\nbending,2,sonnets,0\ninconstant,2,sonnets,0\ndisdain,2,sonnets,0\nRoses,2,sonnets,0\nAfter,2,sonnets,0\nfriend's,2,sonnets,0\nruin'd,2,sonnets,0\nyears,2,sonnets,0\nsorrows,2,sonnets,0\npilgrimage,2,sonnets,0\nCome,2,sonnets,0\nsubjects,2,sonnets,0\nMuch,2,sonnets,0\npolicy,2,sonnets,0\ngross,2,sonnets,0\npoet's,2,sonnets,0\naddition,2,sonnets,0\nveins,2,sonnets,0\nriches,2,sonnets,0\nwait,2,sonnets,0\nbecoming,2,sonnets,0\nwail,2,sonnets,0\nCupid,2,sonnets,0\nsomething,2,sonnets,0\nmoving,2,sonnets,0\nbareness,2,sonnets,0\nshames,2,sonnets,0\nsit,2,sonnets,0\ncomments,2,sonnets,0\nimprison'd,2,sonnets,0\ndeceased,2,sonnets,0\nReserve,2,sonnets,0\ndeceived,2,sonnets,0\nsuit,2,sonnets,0\nscorn,2,sonnets,0\nyield,2,sonnets,0\nforsake,2,sonnets,0\nwinds,2,sonnets,0\n't,2,sonnets,0\nacquainted,2,sonnets,0\ndeserts,2,sonnets,0\nlevel,2,sonnets,0\neither's,2,sonnets,0\nmother,2,sonnets,0\nbecomes,2,sonnets,0\npoverty,2,sonnets,0\nesteem,2,sonnets,0\noffence,2,sonnets,0\nOur,2,sonnets,0\nThere,2,sonnets,0\nbore,2,sonnets,0\nshowers,2,sonnets,0\nuntrue,2,sonnets,0\nwilling,2,sonnets,0\nWherein,2,sonnets,0\nprinces,2,sonnets,0\nhumble,2,sonnets,0\nspeechless,2,sonnets,0\nfeel,2,sonnets,0\nsaucy,2,sonnets,0\ndial,2,sonnets,0\ncorrupt,2,sonnets,0\nwind,2,sonnets,0\nwink,2,sonnets,0\ntitle,2,sonnets,0\nobsequious,2,sonnets,0\noutworn,2,sonnets,0\ndearer,2,sonnets,0\nwise,2,sonnets,0\nbold,2,sonnets,0\ndied,2,sonnets,0\nstop,2,sonnets,0\npretty,2,sonnets,0\nsteep,2,sonnets,0\nwits,2,sonnets,0\npraised,2,sonnets,0\ncreated,2,sonnets,0\nhungry,2,sonnets,0\nobjects,2,sonnets,0\nhealthful,2,sonnets,0\ngoddess,2,sonnets,0\npencil,2,sonnets,0\nurge,2,sonnets,0\nbitter,2,sonnets,0\nmorning,2,sonnets,0\nstrongly,2,sonnets,0\nWhat's,2,sonnets,0\nmeasure,2,sonnets,0\nAy,2,sonnets,0\nperfection,2,sonnets,0\ninvent,2,sonnets,0\nreplete,2,sonnets,0\npatience,2,sonnets,0\nyouthful,2,sonnets,0\nbow,2,sonnets,0\nHim,2,sonnets,0\nknowing,2,sonnets,0\nfortify,2,sonnets,0\namong,2,sonnets,0\nStill,2,sonnets,0\nhopes,2,sonnets,0\nMe,2,sonnets,0\npays,2,sonnets,0\nkings,2,sonnets,0\nunless,2,sonnets,0\nhymns,2,sonnets,0\nbrings,2,sonnets,0\nshines,2,sonnets,0\nforce,2,sonnets,0\nhid,2,sonnets,0\nfinds,2,sonnets,0\nstrangely,2,sonnets,0\nfortune's,2,sonnets,0\nease,2,sonnets,0\ncontracted,2,sonnets,0\ndateless,2,sonnets,0\nadded,2,sonnets,0\nsport,2,sonnets,0\nHad,2,sonnets,0\nears,2,sonnets,0\ngold,2,sonnets,0\nsooner,2,sonnets,0\nbelied,2,sonnets,0\nkindness,2,sonnets,0\nYourself,2,sonnets,0\nsounds,2,sonnets,0\ndote,2,sonnets,0\ntables,2,sonnets,0\ngaze,2,sonnets,0\nweak,2,sonnets,0\nbent,2,sonnets,0\nquill,2,sonnets,0\nfrailties,2,sonnets,0\nSpeak,2,sonnets,0\ntwice,2,sonnets,0\ndespise,2,sonnets,0\nextreme,2,sonnets,0\ncurse,2,sonnets,0\nbud,2,sonnets,0\nvows,2,sonnets,0\nvassal,2,sonnets,0\ntravel,2,sonnets,0\ndivine,2,sonnets,0\nstronger,2,sonnets,0\npitch,2,sonnets,0\nvantage,2,sonnets,0\nfulfil,2,sonnets,0\nnoted,2,sonnets,0\nwretch,2,sonnets,0\nmiles,2,sonnets,0\nNature's,2,sonnets,0\nbetray,2,sonnets,0\naid,2,sonnets,0\njewels,2,sonnets,0\nnewer,2,sonnets,0\nwhereon,2,sonnets,0\nprofaned,2,sonnets,0\nautumn,2,sonnets,0\nvouchsafe,2,sonnets,0\ndepends,2,sonnets,0\nReturn,2,sonnets,0\nthrive,2,sonnets,0\ndefence,2,sonnets,0\nhands,2,sonnets,0\nusurer,2,sonnets,0\nmakest,2,sonnets,0\npossess'd,2,sonnets,0\nprivilege,2,sonnets,0\nforget,2,sonnets,0\nah,2,sonnets,0\nfeast,2,sonnets,0\npursuit,2,sonnets,0\ncomment,2,sonnets,0\nsmall,2,sonnets,0\naside,2,sonnets,0\nwhereof,2,sonnets,0\nabide,2,sonnets,0\nidle,2,sonnets,0\nMyself,2,sonnets,0\nmorn,2,sonnets,0\nglance,2,sonnets,0\nhadst,2,sonnets,0\nink,2,sonnets,0\nsweetness,2,sonnets,0\nlest,2,sonnets,0\nviolet,2,sonnets,0\nsightless,2,sonnets,0\nnimble,2,sonnets,0\njourney,2,sonnets,0\npure,2,sonnets,0\nBecause,2,sonnets,0\nCame,2,sonnets,0\nwasteful,2,sonnets,0\nfierce,2,sonnets,0\nblamed,2,sonnets,0\nus,2,sonnets,0\nMost,2,sonnets,0\nkeen,2,sonnets,0\ncrow,2,sonnets,0\nwelcome,2,sonnets,0\npale,2,sonnets,0\npalate,2,sonnets,0\nspur,2,sonnets,0\nhang,2,sonnets,0\nshun,2,sonnets,0\nliberty,2,sonnets,0\nFull,2,sonnets,0\ndeny,2,sonnets,0\ndrawn,2,sonnets,0\nmourners,2,sonnets,0\nperpetual,2,sonnets,0\nopen,2,sonnets,0\nUnder,2,sonnets,0\ndeaths,2,sonnets,0\nabhor,2,sonnets,0\nprepare,2,sonnets,0\nnightly,2,sonnets,0\nwastes,2,sonnets,0\nneglect,2,sonnets,0\npoint,2,sonnets,0\nstrive,2,sonnets,0\ndevise,2,sonnets,0\nshaken,2,sonnets,0\nbosom,2,sonnets,0\nlittle,2,sonnets,0\nalive,2,sonnets,0\nfiend,2,sonnets,0\ncreatures,2,sonnets,0\nfond,2,sonnets,0\ndyed,2,sonnets,0\nmonument,2,sonnets,0\nye,2,sonnets,0\nTired,2,sonnets,0\nclearer,2,sonnets,0\ncheque,2,sonnets,0\nenemies,2,sonnets,0\nsweetly,2,sonnets,0\ndeem'd,2,sonnets,0\nbroke,2,sonnets,0\nArt,2,sonnets,0\nguess,2,sonnets,0\nguest,2,sonnets,0\nlead,2,sonnets,0\nwatch,2,sonnets,0\noften,2,sonnets,0\nleap,2,sonnets,0\nKill,2,sonnets,0\nmask'd,2,sonnets,0\nBeauty,2,sonnets,0\nsensual,2,sonnets,0\nGilding,2,sonnets,0\ntriumphant,2,sonnets,0\nbuilt,2,sonnets,0\nnote,2,sonnets,0\nunknown,2,sonnets,0\nrepose,2,sonnets,0\nthinks,2,sonnets,0\nenvy,2,sonnets,0\nlack'd,2,sonnets,0\nbeast,2,sonnets,0\nmajesty,2,sonnets,0\nremedy,2,sonnets,0\nhawks,2,sonnets,0\nslain,2,sonnets,0\nchase,2,sonnets,0\nlearning,2,sonnets,0\nTHE,2,sonnets,0\nquestion,2,sonnets,0\ndiscontent,2,sonnets,0\nseasons,2,sonnets,0\nMakes,2,sonnets,0\nplead,2,sonnets,0\nrobbery,2,sonnets,0\nwrought,2,sonnets,0\nbelong,2,sonnets,0\nconcord,2,sonnets,0\nBearing,2,sonnets,0\nchief,2,sonnets,0\ndream,2,sonnets,0\ntemptation,2,sonnets,0\nmark,2,sonnets,0\ninjuries,2,sonnets,0\nbettering,2,sonnets,0\nissue,2,sonnets,0\nflatter,2,sonnets,0\nriper,2,sonnets,0\nspecial,2,sonnets,0\nmountain,2,sonnets,0\nbenefit,2,sonnets,0\nthievish,2,sonnets,0\nworthless,2,sonnets,0\nborrow'd,2,sonnets,0\nMade,2,sonnets,0\ncompounds,2,sonnets,0\nconverted,2,sonnets,0\ndesired,2,sonnets,0\nSONNETS,2,sonnets,0\npossession,2,sonnets,0\nbreed,2,sonnets,0\nslight,2,sonnets,0\naffairs,2,sonnets,0\nwrongs,2,sonnets,0\nexample,2,sonnets,0\noff,2,sonnets,0\ngay,2,sonnets,0\nunseen,2,sonnets,0\ncreation,2,sonnets,0\ninfluence,2,sonnets,0\nwalks,2,sonnets,0\nDear,2,sonnets,0\nclock,2,sonnets,0\nwalls,2,sonnets,0\nalters,2,sonnets,0\ntorture,2,sonnets,0\ndust,2,sonnets,0\nstage,2,sonnets,0\nduty,2,sonnets,0\npoet,2,sonnets,0\ngrowing,2,sonnets,0\nwood,2,sonnets,0\nKnowing,2,sonnets,0\ncoming,2,sonnets,0\nnext,2,sonnets,0\nbounty,2,sonnets,0\nsurvive,2,sonnets,0\nfix'd,2,sonnets,0\nhusbandry,2,sonnets,0\nfaces,2,sonnets,0\ndreams,2,sonnets,0\nransom,2,sonnets,0\nrotten,2,sonnets,0\nforfeit,2,sonnets,0\ntatter'd,2,sonnets,0\nwomb,2,sonnets,0\nbitterness,2,sonnets,0\nlust,2,sonnets,0\nwondrous,2,sonnets,0\nhaply,2,sonnets,0\nwhence,2,sonnets,0\nglad,2,sonnets,0\nhideous,2,sonnets,0\nguilty,2,sonnets,0\ndiseased,2,sonnets,0\nquest,2,sonnets,0\ncloud,2,sonnets,0\nwilful,2,sonnets,0\nchurl,2,sonnets,0\nhumour,2,sonnets,0\nwires,2,sonnets,0\nheavily,2,sonnets,0\nword,2,sonnets,0\nallow,2,sonnets,0\nesteem'd,2,sonnets,0\nMark,2,sonnets,0\nperfect,2,sonnets,0\nfine,2,sonnets,0\nfolly,2,sonnets,0\nmarried,2,sonnets,0\nbark,2,sonnets,0\nthereby,2,sonnets,0\nniggard,2,sonnets,0\nmansion,2,sonnets,0\nshown,2,sonnets,0\nvex,2,sonnets,0\ndepart,2,sonnets,0\nStealing,2,sonnets,0\nbars,2,sonnets,0\ngilded,2,sonnets,0\nEach,2,sonnets,0\nsoul's,2,sonnets,0\nlay,2,sonnets,0\nman's,2,sonnets,0\nfarthest,2,sonnets,0\ntorment,2,sonnets,0\nmaster,2,sonnets,0\ndefect,2,sonnets,0\ncounterfeit,2,sonnets,0\nsourly,2,sonnets,0\nfeeding,2,sonnets,0\nfalsehood,2,sonnets,0\nvainly,2,sonnets,0\nyellow,2,sonnets,0\nseat,2,sonnets,0\ninterest,2,sonnets,0\nperfumes,2,sonnets,0\nelements,2,sonnets,0\ncopy,2,sonnets,0\ncaptain,2,sonnets,0\ngoodness,2,sonnets,0\noppress'd,2,sonnets,0\naught,2,sonnets,0\npresence,2,sonnets,0\nfeeling,2,sonnets,0\ntrespass,2,sonnets,0\nunkindness,2,sonnets,0\nlook'd,2,sonnets,0\n'twixt,2,sonnets,0\nage's,2,sonnets,0\ntells,2,sonnets,0\nrender,2,sonnets,0\nsound,2,sonnets,0\nsacred,2,sonnets,0\ncry,2,sonnets,0\nchanging,2,sonnets,0\nnights,2,sonnets,0\nhuge,2,sonnets,0\nbail,2,sonnets,0\nlovers,2,sonnets,0\nremove,2,sonnets,0\nsouls,2,sonnets,0\nblushing,2,sonnets,0\nexcellence,2,sonnets,0\nwhilst,2,sonnets,0\ngrowest,2,sonnets,0\nsend,2,sonnets,0\ndeceive,2,sonnets,0\ngoes,2,sonnets,0\nwinters,2,sonnets,0\nsullen,2,sonnets,0\ncanopy,2,sonnets,0\ncontrolling,2,sonnets,0\ntriumph,2,sonnets,0\neat,2,sonnets,0\npetty,2,sonnets,0\nmap,2,sonnets,0\ncommits,2,sonnets,0\nconfound,2,sonnets,0\nspirits,2,sonnets,0\nlimbs,2,sonnets,0\nalter'd,2,sonnets,0\ncareful,2,sonnets,0\nseldom,2,sonnets,0\nlearn,2,sonnets,0\npoets,2,sonnets,0\ndoing,2,sonnets,0\nFinding,2,sonnets,0\nremember,2,sonnets,0\nSometime,2,sonnets,0\nlofty,2,sonnets,0\nSets,2,sonnets,0\nantiquity,2,sonnets,0\nPainting,2,sonnets,0\npowerful,2,sonnets,0\nfled,2,sonnets,0\nfashion,2,sonnets,0\nphysic,2,sonnets,0\nmourning,2,sonnets,0\ntelling,2,sonnets,0\nlast,2,sonnets,0\nfever,2,sonnets,0\nmaladies,2,sonnets,0\nMad,2,sonnets,0\nadjunct,2,sonnets,0\nLooking,2,sonnets,0\nsuspect,2,sonnets,0\nbesides,2,sonnets,0\ngoing,2,sonnets,0\ncontent,2,sonnets,0\ntry,2,sonnets,0\nsilent,2,sonnets,0\n'This,2,sonnets,0\nleads,2,sonnets,0\nwidow,2,sonnets,0\nResembling,2,sonnets,0\nlover's,2,sonnets,0\npattern,2,sonnets,0\nasleep,2,sonnets,0\nfollow,2,sonnets,0\nDie,2,sonnets,0\npent,2,sonnets,0\nbred,2,sonnets,0\nlame,2,sonnets,0\ntie,2,sonnets,0\npass'd,2,sonnets,0\ntired,2,sonnets,0\nwills,2,sonnets,0\nUnlook'd,2,sonnets,0\nking,2,sonnets,0\nalchemy,2,sonnets,0\nmutual,2,sonnets,0\neyelids,2,sonnets,0\ndoting,2,sonnets,0\nforbear,2,sonnets,0\nremembrance,2,sonnets,0\nbreathe,2,sonnets,0\noaths,2,sonnets,0\nhimself,2,sonnets,0\nbide,2,sonnets,0\nfading,2,sonnets,0\nturn'd,2,sonnets,0\nvanish'd,2,sonnets,0\ngrounded,2,sonnets,0\nsway,2,sonnets,0\nbrave,3,sonnets,0\nanswer,3,sonnets,0\nforbid,3,sonnets,0\nhappier,3,sonnets,0\nPity,3,sonnets,0\nheir,3,sonnets,0\ndouble,3,sonnets,0\nweary,3,sonnets,0\nwoman's,3,sonnets,0\nshadows,3,sonnets,0\nlawful,3,sonnets,0\nhaste,3,sonnets,0\nbonds,3,sonnets,0\nWill,3,sonnets,0\nmend,3,sonnets,0\ndespised,3,sonnets,0\nthorns,3,sonnets,0\nchest,3,sonnets,0\nnought,3,sonnets,0\nworks,3,sonnets,0\nremain,3,sonnets,0\nfriends,3,sonnets,0\nplague,3,sonnets,0\nsoon,3,sonnets,0\nconscience,3,sonnets,0\ndraw,3,sonnets,0\npine,3,sonnets,0\ngrows,3,sonnets,0\nline,3,sonnets,0\nconfounds,3,sonnets,0\ninjury,3,sonnets,0\nsure,3,sonnets,0\nfingers,3,sonnets,0\ncomplexion,3,sonnets,0\nteach,3,sonnets,0\nperjured,3,sonnets,0\nsinful,3,sonnets,0\nocean,3,sonnets,0\nstands,3,sonnets,0\nbastard,3,sonnets,0\nvirtuous,3,sonnets,0\naudit,3,sonnets,0\nanew,3,sonnets,0\nbirds,3,sonnets,0\nson,3,sonnets,0\nsworn,3,sonnets,0\n'I,3,sonnets,0\ncause,3,sonnets,0\namiss,3,sonnets,0\nvile,3,sonnets,0\nfight,3,sonnets,0\nreceives,3,sonnets,0\nconceit,3,sonnets,0\nfault,3,sonnets,0\nabove,3,sonnets,0\nbrief,3,sonnets,0\nWhereto,3,sonnets,0\nflesh,3,sonnets,0\nwant,3,sonnets,0\nedge,3,sonnets,0\nknow'st,3,sonnets,0\nseem'd,3,sonnets,0\nhate',3,sonnets,0\ncunning,3,sonnets,0\nmatter,3,sonnets,0\nsteel,3,sonnets,0\ntend,3,sonnets,0\ncolour,3,sonnets,0\nknowledge,3,sonnets,0\nmanners,3,sonnets,0\nunkind,3,sonnets,0\nwanting,3,sonnets,0\nfoes,3,sonnets,0\nflattery,3,sonnets,0\ninfection,3,sonnets,0\npay,3,sonnets,0\nHis,3,sonnets,0\nboy,3,sonnets,0\nLo,3,sonnets,0\nrazed,3,sonnets,0\neternity,3,sonnets,0\nproof,3,sonnets,0\nplea,3,sonnets,0\nkept,3,sonnets,0\nstar,3,sonnets,0\napprove,3,sonnets,0\nbed,3,sonnets,0\nmeans,3,sonnets,0\nblest,3,sonnets,0\nquick,3,sonnets,0\ndespair,3,sonnets,0\npass,3,sonnets,0\noutlive,3,sonnets,0\ngod,3,sonnets,0\nweed,3,sonnets,0\nweep,3,sonnets,0\ncontrol,3,sonnets,0\nburn,3,sonnets,0\ngot,3,sonnets,0\nwear,3,sonnets,0\njust,3,sonnets,0\nconquest,3,sonnets,0\nsurvey,3,sonnets,0\nsins,3,sonnets,0\npicture,3,sonnets,0\nturns,3,sonnets,0\nBoth,3,sonnets,0\nsail,3,sonnets,0\ntyrant,3,sonnets,0\nfavour,3,sonnets,0\nmurderous,3,sonnets,0\nPast,3,sonnets,0\nstone,3,sonnets,0\nseeming,3,sonnets,0\nhusband,3,sonnets,0\nspeed,3,sonnets,0\ngrowth,3,sonnets,0\neye's,3,sonnets,0\nmoon,3,sonnets,0\nwherein,3,sonnets,0\ngreater,3,sonnets,0\nforgot,3,sonnets,0\nhot,3,sonnets,0\nthrice,3,sonnets,0\nbrought,3,sonnets,0\nreasons,3,sonnets,0\nremember'd,3,sonnets,0\nhalf,3,sonnets,0\nbasest,3,sonnets,0\nweeds,3,sonnets,0\nacquaintance,3,sonnets,0\npluck,3,sonnets,0\ncourse,3,sonnets,0\nwinter's,3,sonnets,0\nmock,3,sonnets,0\nfrown,3,sonnets,0\ntwain,3,sonnets,0\npace,3,sonnets,0\nfoot,3,sonnets,0\nfool,3,sonnets,0\nmaiden,3,sonnets,0\nAre,3,sonnets,0\nheight,3,sonnets,0\nmain,3,sonnets,0\nsilence,3,sonnets,0\nexpress'd,3,sonnets,0\nalmost,3,sonnets,0\nwonder,3,sonnets,0\naction,3,sonnets,0\ngavest,3,sonnets,0\ndaily,3,sonnets,0\nbears,3,sonnets,0\nblunt,3,sonnets,0\nShe,3,sonnets,0\nposterity,3,sonnets,0\nevermore,3,sonnets,0\nThyself,3,sonnets,0\nDost,3,sonnets,0\nmourn,3,sonnets,0\ngeneral,3,sonnets,0\neffect,3,sonnets,0\nelsewhere,3,sonnets,0\nprize,3,sonnets,0\ndidst,3,sonnets,0\nbloody,3,sonnets,0\ndearest,3,sonnets,0\nblot,3,sonnets,0\nover,3,sonnets,0\nnumber,3,sonnets,0\nstain,3,sonnets,0\nlosing,3,sonnets,0\nproved,3,sonnets,0\ngrave,3,sonnets,0\nflies,3,sonnets,0\nstyle,3,sonnets,0\nfive,3,sonnets,0\nodour,3,sonnets,0\nconfined,3,sonnets,0\ndeath's,3,sonnets,0\ncrown'd,3,sonnets,0\nCan,3,sonnets,0\n'Tis,3,sonnets,0\nwomen's,3,sonnets,0\nreceivest,3,sonnets,0\nfade,3,sonnets,0\nvulgar,3,sonnets,0\ntakes,3,sonnets,0\ntaken,3,sonnets,0\nrain,3,sonnets,0\nfarther,3,sonnets,0\ncover,3,sonnets,0\nfill'd,3,sonnets,0\nground,3,sonnets,0\ncharacter,3,sonnets,0\nminds,3,sonnets,0\ndesert,3,sonnets,0\nfall,3,sonnets,0\nconstancy,3,sonnets,0\nwert,3,sonnets,0\ngrant,3,sonnets,0\nmethinks,3,sonnets,0\nfame,3,sonnets,0\nthree,3,sonnets,0\nwork,3,sonnets,0\nwest,3,sonnets,0\nride,3,sonnets,0\nflame,3,sonnets,0\nvow,3,sonnets,0\nfill,3,sonnets,0\nbare,3,sonnets,0\nkiss,3,sonnets,0\nconstant,3,sonnets,0\nthousand,3,sonnets,0\nshore,3,sonnets,0\nhome,3,sonnets,0\nclear,3,sonnets,0\ngreet,3,sonnets,0\n'Fair,3,sonnets,0\nfairer,3,sonnets,0\ndecease,3,sonnets,0\ncost,3,sonnets,0\nheavenly,3,sonnets,0\ntherein,3,sonnets,0\nwretched,3,sonnets,0\nmother's,3,sonnets,0\near,3,sonnets,0\nclouds,3,sonnets,0\nBefore,3,sonnets,0\nabuse,3,sonnets,0\nbody's,3,sonnets,0\nthinking,3,sonnets,0\nwound,3,sonnets,0\nfather,3,sonnets,0\nApril,3,sonnets,0\nappetite,3,sonnets,0\nwindows,3,sonnets,0\nsimple,3,sonnets,0\nwitness,3,sonnets,0\nexpense,3,sonnets,0\nlaid,3,sonnets,0\ndark,3,sonnets,0\nanother's,3,sonnets,0\nshake,3,sonnets,0\nburden,3,sonnets,0\nTake,3,sonnets,0\nrecord,3,sonnets,0\ncross,3,sonnets,0\nkill,3,sonnets,0\nwoman,3,sonnets,0\nrepair,3,sonnets,0\nwouldst,3,sonnets,0\ntold,4,sonnets,0\nred,4,sonnets,0\nleisure,4,sonnets,0\nmistress,4,sonnets,0\nbrass,4,sonnets,0\nhelp,4,sonnets,0\nassured,4,sonnets,0\nsingle,4,sonnets,0\nhere,4,sonnets,0\ngroan,4,sonnets,0\ntoil,4,sonnets,0\nappear,4,sonnets,0\nalthough,4,sonnets,0\nunder,4,sonnets,0\nworms,4,sonnets,0\ncalls,4,sonnets,0\ncheeks,4,sonnets,0\nsong,4,sonnets,0\ngrown,4,sonnets,0\nheat,4,sonnets,0\nbody,4,sonnets,0\ntouches,4,sonnets,0\nsea,4,sonnets,0\nWas,4,sonnets,0\nsecond,4,sonnets,0\nscythe,4,sonnets,0\nThese,4,sonnets,0\nturn,4,sonnets,0\ncrime,4,sonnets,0\ncommon,4,sonnets,0\nworthy,4,sonnets,0\nsum,4,sonnets,0\nspeaking,4,sonnets,0\nrude,4,sonnets,0\nsense,4,sonnets,0\npraises,4,sonnets,0\nDo,4,sonnets,0\nwherefore,4,sonnets,0\nWhile,4,sonnets,0\nHer,4,sonnets,0\nabsent,4,sonnets,0\nbehind,4,sonnets,0\nbuds,4,sonnets,0\njewel,4,sonnets,0\nused,4,sonnets,0\nsaid,4,sonnets,0\nstory,4,sonnets,0\nimage,4,sonnets,0\nair,4,sonnets,0\npainting,4,sonnets,0\nneeds,4,sonnets,0\ngain,4,sonnets,0\ntongues,4,sonnets,0\nUnless,4,sonnets,0\ntime's,4,sonnets,0\nlends,4,sonnets,0\naccount,4,sonnets,0\nsometime,4,sonnets,0\nlost,4,sonnets,0\nadd,4,sonnets,0\nremoved,4,sonnets,0\nforsworn,4,sonnets,0\ncontented,4,sonnets,0\nerrors,4,sonnets,0\nreport,4,sonnets,0\nrare,4,sonnets,0\nsubstance,4,sonnets,0\nyoung,4,sonnets,0\nere,4,sonnets,0\nhigh,4,sonnets,0\nbeauties,4,sonnets,0\nminutes,4,sonnets,0\nthief,4,sonnets,0\nfree,4,sonnets,0\nBeing,4,sonnets,0\ntaste,4,sonnets,0\nformer,4,sonnets,0\nwin,4,sonnets,0\nbreak,4,sonnets,0\nknife,4,sonnets,0\nmorrow,4,sonnets,0\nprime,4,sonnets,0\nabundance,4,sonnets,0\ncount,4,sonnets,0\nThine,4,sonnets,0\nbelieve,4,sonnets,0\nThree,4,sonnets,0\nevil,4,sonnets,0\nplease,4,sonnets,0\nne'er,4,sonnets,0\nrehearse,4,sonnets,0\nbath,4,sonnets,0\nhour,4,sonnets,0\ncomfort,4,sonnets,0\npublic,4,sonnets,0\ngiven,4,sonnets,0\nholds,4,sonnets,0\nholy,4,sonnets,0\ninward,4,sonnets,0\nbabe,4,sonnets,0\nseek,4,sonnets,0\nothers',4,sonnets,0\nincrease,4,sonnets,0\nunused,4,sonnets,0\nblame,4,sonnets,0\nreturn,4,sonnets,0\nnature's,4,sonnets,0\nsleep,4,sonnets,0\nlays,4,sonnets,0\nmad,4,sonnets,0\nlease,4,sonnets,0\nsovereign,4,sonnets,0\nMay,4,sonnets,0\nshade,4,sonnets,0\nDeath,4,sonnets,0\nnumbers,4,sonnets,0\nrespect,4,sonnets,0\ndare,4,sonnets,0\nframe,4,sonnets,0\ncatch,4,sonnets,0\nshine,4,sonnets,0\nwithout,4,sonnets,0\nsmell,4,sonnets,0\nlack,4,sonnets,0\ntomb,5,sonnets,0\ngrew,5,sonnets,0\ntook,5,sonnets,0\nmotion,5,sonnets,0\ntruly,5,sonnets,0\npainted,5,sonnets,0\ntears,5,sonnets,0\ntrust,5,sonnets,0\ngraces,5,sonnets,0\nbirth,5,sonnets,0\nsaw,5,sonnets,0\nGive,5,sonnets,0\ngracious,5,sonnets,0\ncheek,5,sonnets,0\ngolden,5,sonnets,0\nmaking,5,sonnets,0\ninvention,5,sonnets,0\nfell,5,sonnets,0\nSuch,5,sonnets,0\nsubject,5,sonnets,0\nbeloved,5,sonnets,0\nscope,5,sonnets,0\nmerit,5,sonnets,0\nworse,5,sonnets,0\nbrain,5,sonnets,0\nabsence,5,sonnets,0\nOne,5,sonnets,0\nhence,5,sonnets,0\nbrand,5,sonnets,0\nwish,5,sonnets,0\nworld's,5,sonnets,0\nbook,5,sonnets,0\nelse,5,sonnets,0\nfairest,5,sonnets,0\nside,5,sonnets,0\nAt,5,sonnets,0\nAh,5,sonnets,0\nmusic,5,sonnets,0\neternal,5,sonnets,0\nNature,5,sonnets,0\nWithin,5,sonnets,0\nplay,5,sonnets,0\ngave,5,sonnets,0\ndown,5,sonnets,0\ngrief,5,sonnets,0\ncanker,5,sonnets,0\nornament,5,sonnets,0\ndespite,5,sonnets,0\nquite,5,sonnets,0\ngift,5,sonnets,0\nleft,5,sonnets,0\nlend,5,sonnets,0\nboast,5,sonnets,0\nburied,5,sonnets,0\ndoom,5,sonnets,0\ndone,5,sonnets,0\nwrinkles,5,sonnets,0\nloved,5,sonnets,0\nspend,5,sonnets,0\nmen's,5,sonnets,0\nhue,5,sonnets,0\nMore,5,sonnets,0\nsweetest,5,sonnets,0\npresent,5,sonnets,0\npain,5,sonnets,0\nmoan,5,sonnets,0\nHave,5,sonnets,0\nYour,5,sonnets,0\nkeeps,5,sonnets,0\nrank,5,sonnets,0\nantique,5,sonnets,0\nwater,5,sonnets,0\nfaith,5,sonnets,0\ninto,5,sonnets,0\nhide,5,sonnets,0\nyear,5,sonnets,0\nyours,5,sonnets,0\nmortal,5,sonnets,0\nstars,5,sonnets,0\n'gainst,5,sonnets,0\nchide,5,sonnets,0\nneed,5,sonnets,0\nmistress',5,sonnets,0\nWere,5,sonnets,0\nnear,5,sonnets,0\noft,5,sonnets,0\nsorrow,5,sonnets,0\ncure,5,sonnets,0\nonly,5,sonnets,0\nsays,5,sonnets,0\nrage,5,sonnets,0\nsweets,5,sonnets,0\nangel,5,sonnets,0\ncompare,5,sonnets,0\nfortune,5,sonnets,0\nroses,5,sonnets,0\nSweet,5,sonnets,0\nlived,5,sonnets,0\nbase,5,sonnets,0\nfast,5,sonnets,0\nlarge,5,sonnets,0\nshort,5,sonnets,0\nAlthough,5,sonnets,0\nwinter,5,sonnets,0\nhearts,5,sonnets,0\ntied,5,sonnets,0\nbarren,5,sonnets,0\npurpose,5,sonnets,0\nslow,5,sonnets,0\nman,5,sonnets,0\n'Will',5,sonnets,0\nleast,5,sonnets,0\nspite,5,sonnets,0\nWithout,5,sonnets,0\nnature,5,sonnets,0\ndate,5,sonnets,0\nspring,5,sonnets,0\nflower,5,sonnets,0\nstol'n,5,sonnets,0\nshape,5,sonnets,0\npity,6,sonnets,0\nwrit,6,sonnets,0\nheart's,6,sonnets,0\ncare,6,sonnets,0\nstrength,6,sonnets,0\nWhose,6,sonnets,0\nhear,6,sonnets,0\nhead,6,sonnets,0\nenough,6,sonnets,0\nlight,6,sonnets,0\nwithin,6,sonnets,0\nread,6,sonnets,0\ntaught,6,sonnets,0\nwrong,6,sonnets,0\nrhyme,6,sonnets,0\nblind,6,sonnets,0\nsteal,6,sonnets,0\nrest,6,sonnets,0\nsick,6,sonnets,0\n'Will,6,sonnets,0\ncanst,6,sonnets,0\nOn,6,sonnets,0\nIt,6,sonnets,0\npast,6,sonnets,0\nswift,6,sonnets,0\nbeen,6,sonnets,0\nlonger,6,sonnets,0\nsing,6,sonnets,0\ngo,6,sonnets,0\ndwell,6,sonnets,0\nfears,6,sonnets,0\nspent,6,sonnets,0\nexcuse,6,sonnets,0\nwhether,6,sonnets,0\nspeak,6,sonnets,0\njudgment,6,sonnets,0\nHath,6,sonnets,0\nhaving,6,sonnets,0\nthrough,6,sonnets,0\nshouldst,6,sonnets,0\nrose,6,sonnets,0\nDoth,6,sonnets,0\nprecious,6,sonnets,0\nLook,6,sonnets,0\nheaven's,6,sonnets,0\nwit,6,sonnets,0\nheavy,6,sonnets,0\nway,6,sonnets,0\nwar,6,sonnets,0\nthemselves,6,sonnets,0\ndumb,6,sonnets,0\ndull,6,sonnets,0\nMake,6,sonnets,0\nTill,6,sonnets,0\nshows,6,sonnets,0\nwealth,6,sonnets,0\nhope,6,sonnets,0\nreason,6,sonnets,0\ngreen,6,sonnets,0\nargument,6,sonnets,0\nswear,6,sonnets,0\nlovest,6,sonnets,0\nstraight,6,sonnets,0\nlips,6,sonnets,0\nstrange,6,sonnets,0\nLest,6,sonnets,0\ndue,6,sonnets,0\nten,6,sonnets,0\nUpon,7,sonnets,0\nsad,7,sonnets,0\nblessed,7,sonnets,0\nsin,7,sonnets,0\nset,7,sonnets,0\nworst,7,sonnets,0\nwhite,7,sonnets,0\nthence,7,sonnets,0\nhonour,7,sonnets,0\nbring,7,sonnets,0\nparts,7,sonnets,0\nLove's,7,sonnets,0\nThose,7,sonnets,0\nitself,7,sonnets,0\nbad,7,sonnets,0\nHe,7,sonnets,0\nSave,7,sonnets,0\nshadow,7,sonnets,0\nput,7,sonnets,0\nbreath,7,sonnets,0\nbreast,7,sonnets,0\nMaking,7,sonnets,0\nseeing,7,sonnets,0\nYou,7,sonnets,0\nless,7,sonnets,0\noutward,7,sonnets,0\nfoul,7,sonnets,0\nforth,7,sonnets,0\nfresh,7,sonnets,0\ntender,7,sonnets,0\nvery,7,sonnets,0\nSome,7,sonnets,0\nI'll,7,sonnets,0\nslave,7,sonnets,0\nliving,7,sonnets,0\nsame,7,sonnets,0\nThus,7,sonnets,0\nwaste,7,sonnets,0\nwide,7,sonnets,0\ncold,7,sonnets,0\nmakes,7,sonnets,0\nvirtue,7,sonnets,0\nbehold,7,sonnets,0\njoy,8,sonnets,0\nhell,8,sonnets,0\ndecay,8,sonnets,0\nview,8,sonnets,0\nagainst,8,sonnets,0\nskill,8,sonnets,0\ndisgrace,8,sonnets,0\nfaults,8,sonnets,0\nborn,8,sonnets,0\nfear,8,sonnets,0\ngrow,8,sonnets,0\ncruel,8,sonnets,0\nflowers,8,sonnets,0\nblood,8,sonnets,0\n'tis,8,sonnets,0\nLike,8,sonnets,0\ndeep,8,sonnets,0\nmemory,8,sonnets,0\nloves,8,sonnets,0\nlose,8,sonnets,0\nbeauteous,8,sonnets,0\ndelight,8,sonnets,0\nTherefore,8,sonnets,0\nchild,8,sonnets,0\nleaves,8,sonnets,0\nThis,8,sonnets,0\nsake,8,sonnets,0\nstand,8,sonnets,0\nlines,8,sonnets,0\ntill,8,sonnets,0\ngives,8,sonnets,0\nlovely,8,sonnets,0\nbrow,8,sonnets,0\nglory,8,sonnets,0\ntwo,8,sonnets,0\ncannot,8,sonnets,0\nsummer,8,sonnets,0\ntimes,9,sonnets,0\ntreasure,9,sonnets,0\nyourself,9,sonnets,0\nanother,9,sonnets,0\nNow,9,sonnets,0\nafter,9,sonnets,0\ntherefore,9,sonnets,0\nBe,9,sonnets,0\nstay,9,sonnets,0\nsince,9,sonnets,0\ngone,9,sonnets,0\nstore,9,sonnets,0\nloss,9,sonnets,0\nkeep,9,sonnets,0\ncould,9,sonnets,0\nloving,9,sonnets,0\ngreat,9,sonnets,0\nstrong,9,sonnets,0\nlives,9,sonnets,0\nback,9,sonnets,0\npower,9,sonnets,0\no'er,10,sonnets,0\nsoul,10,sonnets,0\nwords,10,sonnets,0\ncall,10,sonnets,0\nfull,10,sonnets,0\nglass,10,sonnets,0\nNot,10,sonnets,0\nothers,10,sonnets,0\nThough,10,sonnets,0\ndesire,10,sonnets,0\ndeeds,10,sonnets,0\npen,10,sonnets,0\nIs,10,sonnets,0\nplace,10,sonnets,0\nright,10,sonnets,0\nAgainst,10,sonnets,0\nLove,10,sonnets,0\nagain,10,sonnets,0\nAll,10,sonnets,0\nonce,10,sonnets,0\nfire,10,sonnets,0\nfound,10,sonnets,0\nhappy,10,sonnets,0\nShall,10,sonnets,0\nEven,10,sonnets,0\ntake,10,sonnets,0\nLet,10,sonnets,0\nMine,10,sonnets,0\nleave,10,sonnets,0\nwrite,10,sonnets,0\nshame,10,sonnets,0\nspirit,10,sonnets,0\ndie,10,sonnets,0\nsummer's,11,sonnets,0\nWhilst,11,sonnets,0\nsun,11,sonnets,0\nbright,11,sonnets,0\npleasure,11,sonnets,0\nbear,11,sonnets,0\nany,11,sonnets,0\nearth,11,sonnets,0\ngrace,11,sonnets,0\nform,11,sonnets,0\nend,11,sonnets,0\nknows,11,sonnets,0\nThey,11,sonnets,0\nwho,11,sonnets,0\npride,11,sonnets,0\nrich,11,sonnets,0\nseen,11,sonnets,0\nwhom,11,sonnets,0\nWhere,11,sonnets,0\nshalt,11,sonnets,0\nkind,11,sonnets,0\nTime's,12,sonnets,0\nlies,12,sonnets,0\nWhy,12,sonnets,0\ndeath,12,sonnets,0\nlooks,12,sonnets,0\nlong,12,sonnets,0\nhate,12,sonnets,0\nmayst,12,sonnets,0\nThan,12,sonnets,0\nchange,12,sonnets,0\nnone,12,sonnets,0\nwoe,12,sonnets,0\nbefore,12,sonnets,0\nthing,12,sonnets,0\never,12,sonnets,0\nuse,12,sonnets,0\nseem,12,sonnets,0\nhours,12,sonnets,0\nblack,13,sonnets,0\nheaven,13,sonnets,0\neach,13,sonnets,0\nproud,13,sonnets,0\nprove,13,sonnets,0\nwhose,13,sonnets,0\ngentle,13,sonnets,0\nFrom,13,sonnets,0\nmany,13,sonnets,0\nwhy,13,sonnets,0\nTime,13,sonnets,0\nhold,13,sonnets,0\nwilt,13,sonnets,0\ncome,13,sonnets,0\nfirst,13,sonnets,0\nlie,13,sonnets,0\nboth,14,sonnets,0\nfriend,14,sonnets,0\ntell,14,sonnets,0\nhad,14,sonnets,0\nBy,14,sonnets,0\nwe,14,sonnets,0\nthings,14,sonnets,0\nstate,14,sonnets,0\nthink,14,sonnets,0\neven,14,sonnets,0\nthus,14,sonnets,0\npoor,14,sonnets,0\nWhat,14,sonnets,0\nnever,15,sonnets,0\ngood,15,sonnets,0\ntongue,15,sonnets,0\nage,15,sonnets,0\nverse,15,sonnets,0\nyouth,15,sonnets,0\nfind,15,sonnets,0\nmen,15,sonnets,0\nSince,15,sonnets,0\nmuch,16,sonnets,0\nMuse,16,sonnets,0\nthese,16,sonnets,0\nthere,16,sonnets,0\nlook,16,sonnets,0\ndead,16,sonnets,0\nan,16,sonnets,0\nhast,16,sonnets,0\nfar,16,sonnets,0\nmind,16,sonnets,0\nour,16,sonnets,0\nlet,16,sonnets,0\nother,16,sonnets,0\n',17,sonnets,0\nA,17,sonnets,0\ndays,17,sonnets,0\nsight,17,sonnets,0\nbeauty's,17,sonnets,0\nname,17,sonnets,0\nNo,17,sonnets,0\nknow,17,sonnets,0\nup,17,sonnets,0\nmade,17,sonnets,0\nout,17,sonnets,0\ntoo,17,sonnets,0\nthought,18,sonnets,0\nWho,18,sonnets,0\nnothing,18,sonnets,0\nbetter,18,sonnets,0\nthem,18,sonnets,0\naway,18,sonnets,0\nWith,18,sonnets,0\nthyself,18,sonnets,0\nhand,18,sonnets,0\nthoughts,18,sonnets,0\nworth,19,sonnets,0\nfalse,19,sonnets,0\nYet,19,sonnets,0\nhow,19,sonnets,0\nface,19,sonnets,0\nalone,19,sonnets,0\nself,19,sonnets,0\nlove's,20,sonnets,0\nOf,20,sonnets,0\ndear,20,sonnets,0\nill,20,sonnets,0\npart,20,sonnets,0\nmust,21,sonnets,0\nat,21,sonnets,0\nHow,21,sonnets,0\nwould,21,sonnets,0\nupon,22,sonnets,0\ntruth,22,sonnets,0\nnight,22,sonnets,0\nbest,22,sonnets,0\ngive,22,sonnets,0\nshow,22,sonnets,0\nold,22,sonnets,0\nlife,23,sonnets,0\nthough,23,sonnets,0\nsome,24,sonnets,0\nNor,24,sonnets,0\nmost,25,sonnets,0\nThou,25,sonnets,0\nwas,25,sonnets,0\nwere,25,sonnets,0\nmay,25,sonnets,0\nmight,25,sonnets,0\nsuch,26,sonnets,0\ndost,26,sonnets,0\nthose,26,sonnets,0\nwell,26,sonnets,0\nThy,26,sonnets,0\ndid,26,sonnets,0\nsay,27,sonnets,0\nnew,27,sonnets,0\nmyself,27,sonnets,0\nworld,28,sonnets,0\nlike,28,sonnets,0\npraise,28,sonnets,0\nnor,28,sonnets,0\nday,28,sonnets,0\nbeing,28,sonnets,0\nMy,29,sonnets,0\nlive,29,sonnets,0\nown,30,sonnets,0\nevery,31,sonnets,0\nshe,31,sonnets,0\nyet,31,sonnets,0\nin,287,sonnets,0\nwhere,32,sonnets,0\nIf,34,sonnets,0\nam,34,sonnets,0\nif,34,sonnets,0\nThen,34,sonnets,0\nsee,35,sonnets,0\nhim,35,sonnets,0\nhe,35,sonnets,0\nnow,35,sonnets,0\nthan,36,sonnets,0\nIn,36,sonnets,0\ntrue,36,sonnets,0\nOr,37,sonnets,0\nhath,37,sonnets,0\nmake,37,sonnets,0\neye,38,sonnets,0\none,38,sonnets,0\nstill,39,sonnets,0\nAs,40,sonnets,0\nthine,40,sonnets,0\nthen,41,sonnets,0\nfair,41,sonnets,0\ntime,41,sonnets,0\nthey,42,sonnets,0\ncan,42,sonnets,0\nor,42,sonnets,0\nshould,44,sonnets,0\nWhich,46,sonnets,0\nher,47,sonnets,0\nSo,47,sonnets,0\nO,49,sonnets,0\nart,49,sonnets,0\nwhen,49,sonnets,0\nshall,49,sonnets,0\nwill,50,sonnets,0\nbeauty,50,sonnets,0\nheart,51,sonnets,0\neyes,51,sonnets,0\nsweet,51,sonnets,0\nmine,53,sonnets,0\nwhat,56,sonnets,0\nWhen,57,sonnets,0\nmore,59,sonnets,0\nwhich,61,sonnets,0\nno,61,sonnets,0\ntheir,62,sonnets,0\nare,66,sonnets,0\nfrom,68,sonnets,0\nhave,70,sonnets,0\nFor,73,sonnets,0\non,74,sonnets,0\nbut,75,sonnets,0\nby,78,sonnets,0\nmy,335,sonnets,0\nto,335,sonnets,0\nTo,80,sonnets,0\ndo,80,sonnets,0\nas,81,sonnets,0\nThe,81,sonnets,0\ndoth,82,sonnets,0\nThat,82,sonnets,0\nyour,84,sonnets,0\nI,342,sonnets,0\nBut,89,sonnets,0\nthis,95,sonnets,0\nof,351,sonnets,0\nit,98,sonnets,0\nso,98,sonnets,0\nfor,98,sonnets,0\nhis,104,sonnets,0\nyou,104,sonnets,0\nthe,363,sonnets,0\nall,109,sonnets,0\nbe,132,sonnets,0\na,147,sonnets,0\nlove,157,sonnets,0\nnot,157,sonnets,0\nis,159,sonnets,0\nthee,161,sonnets,0\nme,162,sonnets,0\nwith,163,sonnets,0\nthou,209,sonnets,0\nthat,238,sonnets,0\nthy,240,sonnets,0\nAnd,242,sonnets,0\nand,247,sonnets,0\ndisarm,1,tempest,1611\npeopled,1,tempest,1611\ntreason,1,tempest,1611\nindignation,1,tempest,1611\nislanders,1,tempest,1611\ngeneration,1,tempest,1611\ntroubled,1,tempest,1611\nregard,1,tempest,1611\n'gaitist,1,tempest,1611\nwashing,1,tempest,1611\nscrape,1,tempest,1611\nFlesh,1,tempest,1611\ninstruments,1,tempest,1611\npiss,1,tempest,1611\ndeafness,1,tempest,1611\nrelief,1,tempest,1611\nMelting,1,tempest,1611\nV,1,tempest,1611\ntimes,1,tempest,1611\ngrew,1,tempest,1611\ndebts,1,tempest,1611\nadvantageous,1,tempest,1611\nHereditary,1,tempest,1611\ninjunction,1,tempest,1611\npits,1,tempest,1611\nrectify,1,tempest,1611\nHarmoniously,1,tempest,1611\nadvice,1,tempest,1611\nfancy,1,tempest,1611\nbasis,1,tempest,1611\ntook,1,tempest,1611\nSPOKEN,1,tempest,1611\nJohn,1,tempest,1611\ninfected,1,tempest,1611\nmarrying,1,tempest,1611\nLoved,1,tempest,1611\nplaster,1,tempest,1611\nmotion,1,tempest,1611\ncloseness,1,tempest,1611\ndireful,1,tempest,1611\nbelongs,1,tempest,1611\nleisure,1,tempest,1611\nresist,1,tempest,1611\ndouble,1,tempest,1611\ntruer,1,tempest,1611\nviands,1,tempest,1611\nweary,1,tempest,1611\nfootfall,1,tempest,1611\ninveterate,1,tempest,1611\nAfrican,1,tempest,1611\nhorse,1,tempest,1611\ndiscord,1,tempest,1611\nbadest,1,tempest,1611\n'Lord',1,tempest,1611\nfuel,1,tempest,1611\nhinder,1,tempest,1611\ninstructs,1,tempest,1611\nknell,1,tempest,1611\nwoman's,1,tempest,1611\ncellar,1,tempest,1611\nWeeps,1,tempest,1611\nFie,1,tempest,1611\nsecuring,1,tempest,1611\nhonours,1,tempest,1611\nwooden,1,tempest,1611\nbrown,1,tempest,1611\nNobody,1,tempest,1611\nrascal,1,tempest,1611\nresign,1,tempest,1611\nrob,1,tempest,1611\nsuppose,1,tempest,1611\nsteals,1,tempest,1611\nhighness',1,tempest,1611\nBeat,1,tempest,1611\nBear,1,tempest,1611\nday's,1,tempest,1611\nmuse,1,tempest,1611\nvillain,1,tempest,1611\nhush'd,1,tempest,1611\nmountaineers,1,tempest,1611\ndestroyed,1,tempest,1611\nLingering,1,tempest,1611\ndevouring,1,tempest,1611\nheld,1,tempest,1611\nNever,1,tempest,1611\nIris,1,tempest,1611\nhelps,1,tempest,1611\nRefusing,1,tempest,1611\nstrengthen,1,tempest,1611\nlaughter,1,tempest,1611\ndish,1,tempest,1611\nswiftly,1,tempest,1611\nentered,1,tempest,1611\nfrees,1,tempest,1611\nflung,1,tempest,1611\nCock,1,tempest,1611\nMeasure,1,tempest,1611\npoisonous,1,tempest,1611\nfumes,1,tempest,1611\nmuscles,1,tempest,1611\nPassion,1,tempest,1611\nthorns,1,tempest,1611\nsleepy,1,tempest,1611\nvigilance,1,tempest,1611\nmiss't,1,tempest,1611\nhers,1,tempest,1611\nPreserve,1,tempest,1611\npreciously,1,tempest,1611\ntrunk,1,tempest,1611\nherd,1,tempest,1611\nvain,1,tempest,1611\ncoral,1,tempest,1611\ncelestial,1,tempest,1611\nbraver,1,tempest,1611\nchess,1,tempest,1611\nunwholesome,1,tempest,1611\nloathness,1,tempest,1611\ndisease,1,tempest,1611\nblossom,1,tempest,1611\nurchins,1,tempest,1611\nsighs,1,tempest,1611\nprosperous,1,tempest,1611\ngorgeous,1,tempest,1611\nNeapolitan,1,tempest,1611\ntoil,1,tempest,1611\nhonourable,1,tempest,1611\nbroom,1,tempest,1611\nsunburnt,1,tempest,1611\nbrook,1,tempest,1611\nsanctimonious,1,tempest,1611\nexecutor,1,tempest,1611\ndive,1,tempest,1611\nbrood,1,tempest,1611\ninstrument,1,tempest,1611\ntears,1,tempest,1611\nrid,1,tempest,1611\nhanged,1,tempest,1611\nsuccession,1,tempest,1611\nunderstand,1,tempest,1611\nappear,1,tempest,1611\nflow,1,tempest,1611\nlick,1,tempest,1611\nexactly,1,tempest,1611\nshelter,1,tempest,1611\nthroat,1,tempest,1611\nsour,1,tempest,1611\nterribly,1,tempest,1611\npied,1,tempest,1611\ncalls,1,tempest,1611\nthirty,1,tempest,1611\nbeauty's,1,tempest,1611\nterrible,1,tempest,1611\nWound,1,tempest,1611\ninnocence,1,tempest,1611\nlapp'd,1,tempest,1611\nloaden,1,tempest,1611\nadvocate,1,tempest,1611\nDeservedly,1,tempest,1611\ndreaming,1,tempest,1611\nsolemnized,1,tempest,1611\nlieu,1,tempest,1611\nyarely,1,tempest,1611\nivy,1,tempest,1611\npleasures,1,tempest,1611\ndismissed,1,tempest,1611\ncontrary,1,tempest,1611\nlied,1,tempest,1611\njoys,1,tempest,1611\ntilth,1,tempest,1611\nMarried,1,tempest,1611\nrequiring,1,tempest,1611\nwhoreson,1,tempest,1611\nPERSONAE,1,tempest,1611\nIncensed,1,tempest,1611\nproclaim,1,tempest,1611\nboy's,1,tempest,1611\ndemand,1,tempest,1611\nmute,1,tempest,1611\nspare,1,tempest,1611\ndocks,1,tempest,1611\nrub,1,tempest,1611\nextirpate,1,tempest,1611\nsong,1,tempest,1611\nrepulse,1,tempest,1611\nlakes,1,tempest,1611\nworser,1,tempest,1611\nregions,1,tempest,1611\nOnce,1,tempest,1611\nvast,1,tempest,1611\nsteaded,1,tempest,1611\nassaults,1,tempest,1611\nFairly,1,tempest,1611\ndelivered,1,tempest,1611\nstrength,1,tempest,1611\nbending,1,tempest,1611\nsoon,1,tempest,1611\ndisdain,1,tempest,1611\nsons,1,tempest,1611\ngraced,1,tempest,1611\nbirth,1,tempest,1611\nsterile,1,tempest,1611\nsad,1,tempest,1611\neverything,1,tempest,1611\nfeather,1,tempest,1611\nAfter,1,tempest,1611\njest,1,tempest,1611\napparition,1,tempest,1611\nstock,1,tempest,1611\nsadly,1,tempest,1611\nstripping,1,tempest,1611\nspies,1,tempest,1611\nslept,1,tempest,1611\nremember'st,1,tempest,1611\nsole,1,tempest,1611\ngrove,1,tempest,1611\nthousands,1,tempest,1611\nbombard,1,tempest,1611\nfowling,1,tempest,1611\nmatters,1,tempest,1611\nlakin,1,tempest,1611\nbefits,1,tempest,1611\ngrown,1,tempest,1611\nFilth,1,tempest,1611\nentrails,1,tempest,1611\n'Stay,1,tempest,1611\ninhabit,1,tempest,1611\ngrows,1,tempest,1611\nhour's,1,tempest,1611\nafire,1,tempest,1611\nzenith,1,tempest,1611\nresolve,1,tempest,1611\nhoist,1,tempest,1611\nlime,1,tempest,1611\ncrying,1,tempest,1611\nendow'd,1,tempest,1611\ngracious,1,tempest,1611\npike,1,tempest,1611\nthou'rt,1,tempest,1611\nKeep,1,tempest,1611\npossesses,1,tempest,1611\nsnore,1,tempest,1611\ndelaying,1,tempest,1611\nrevels,1,tempest,1611\nroar'd,1,tempest,1611\nbudge,1,tempest,1611\nScarcity,1,tempest,1611\ndisobey,1,tempest,1611\nnecessaries,1,tempest,1611\ncheer,1,tempest,1611\nhearing,1,tempest,1611\ncabins,1,tempest,1611\nlift,1,tempest,1611\ngolden,1,tempest,1611\ndissolve,1,tempest,1611\nknaves,1,tempest,1611\ncalm,1,tempest,1611\ndesperation,1,tempest,1611\nglass,1,tempest,1611\nmaking,1,tempest,1611\nlikeness,1,tempest,1611\nchains,1,tempest,1611\nunnecessarily,1,tempest,1611\ncomplexion,1,tempest,1611\nveins,1,tempest,1611\nbated,1,tempest,1611\nstuffs,1,tempest,1611\nexpeditious,1,tempest,1611\nlesser,1,tempest,1611\nfeatures,1,tempest,1611\nblack,1,tempest,1611\nmoonshine,1,tempest,1611\nvisitation,1,tempest,1611\ndiscovers,1,tempest,1611\ncankers,1,tempest,1611\nattend'st,1,tempest,1611\nGentle,1,tempest,1611\ntortoise,1,tempest,1611\ndiscovery,1,tempest,1611\nPerchance,1,tempest,1611\nphoenix',1,tempest,1611\nsix,1,tempest,1611\nhereafter,1,tempest,1611\nweaker,1,tempest,1611\nrarest,1,tempest,1611\nDull,1,tempest,1611\nsunk,1,tempest,1611\nI'm,1,tempest,1611\ncherubim,1,tempest,1611\nboat,1,tempest,1611\nyards,1,tempest,1611\nislander,1,tempest,1611\nspeeches,1,tempest,1611\nindignity,1,tempest,1611\nconceive,1,tempest,1611\nreturned,1,tempest,1611\nmushrooms,1,tempest,1611\nPhoebus',1,tempest,1611\naged,1,tempest,1611\nkey,1,tempest,1611\nsubdued,1,tempest,1611\nDash'd,1,tempest,1611\nbastard,1,tempest,1611\nwalk,1,tempest,1611\nsustaining,1,tempest,1611\nwall,1,tempest,1611\nsex,1,tempest,1611\nchain'd,1,tempest,1611\nParadise,1,tempest,1611\ncarrying,1,tempest,1611\ntotters,1,tempest,1611\ndeceiver,1,tempest,1611\nbogs,1,tempest,1611\nsociety,1,tempest,1611\nExposed,1,tempest,1611\nkneel'd,1,tempest,1611\nbat's,1,tempest,1611\n'twas,1,tempest,1611\nthrone,1,tempest,1611\ndiminish,1,tempest,1611\ndrollery,1,tempest,1611\nforeheads,1,tempest,1611\nfell,1,tempest,1611\nspy,1,tempest,1611\nscore,1,tempest,1611\nlivest,1,tempest,1611\nringlets,1,tempest,1611\ndeliver,1,tempest,1611\npremises,1,tempest,1611\nfringed,1,tempest,1611\nworth,1,tempest,1611\nsot,1,tempest,1611\nHimself,1,tempest,1611\nchannels,1,tempest,1611\nsummons,1,tempest,1611\nSuch,1,tempest,1611\nstripes,1,tempest,1611\nchanticleer,1,tempest,1611\nlowing,1,tempest,1611\nFarewell,1,tempest,1611\nplenty,1,tempest,1611\nlooking,1,tempest,1611\nSilence,1,tempest,1611\nweakly,1,tempest,1611\nbow'd,1,tempest,1611\n's,1,tempest,1611\nimpertinent,1,tempest,1611\nbashful,1,tempest,1611\ndesign,1,tempest,1611\nhusks,1,tempest,1611\ndisgrace,1,tempest,1611\ndeeply,1,tempest,1611\nchat,1,tempest,1611\nfirebrand,1,tempest,1611\nhunted,1,tempest,1611\nbeloved,1,tempest,1611\nmurkiest,1,tempest,1611\nlevel,1,tempest,1611\ninstruct,1,tempest,1611\ngather,1,tempest,1611\nsets,1,tempest,1611\nfaults,1,tempest,1611\nrarer,1,tempest,1611\ntrials,1,tempest,1611\nbarefoot,1,tempest,1611\nOther,1,tempest,1611\nsuck,1,tempest,1611\neither's,1,tempest,1611\npuppets,1,tempest,1611\npieces,1,tempest,1611\nfens,1,tempest,1611\nbough,1,tempest,1611\nexecuting,1,tempest,1611\nthin,1,tempest,1611\nAbhorred,1,tempest,1611\nwink'st,1,tempest,1611\nlightnings,1,tempest,1611\ntwilled,1,tempest,1611\nsends,1,tempest,1611\nsavour,1,tempest,1611\nsuck'd,1,tempest,1611\nthroes,1,tempest,1611\npoverty,1,tempest,1611\nAllaying,1,tempest,1611\nthieves,1,tempest,1611\nminion,1,tempest,1611\nCeres',1,tempest,1611\nrear,1,tempest,1611\ndiligent,1,tempest,1611\nvile,1,tempest,1611\nfreckled,1,tempest,1611\nwraths,1,tempest,1611\nfelt,1,tempest,1611\nskins,1,tempest,1611\nguide,1,tempest,1611\nfight,1,tempest,1611\nvanish,1,tempest,1611\nstaring,1,tempest,1611\nsnow,1,tempest,1611\nreceives,1,tempest,1611\npoints,1,tempest,1611\nroots,1,tempest,1611\ncompassion,1,tempest,1611\ncharm'd,1,tempest,1611\nprofess,1,tempest,1611\npalaces,1,tempest,1611\nswoln,1,tempest,1611\nfigure,1,tempest,1611\nkill'd,1,tempest,1611\nrounded,1,tempest,1611\nbestrew,1,tempest,1611\nfault,1,tempest,1611\nWeigh'd,1,tempest,1611\nbusiness',1,tempest,1611\nfalls,1,tempest,1611\nWarm,1,tempest,1611\nactions,1,tempest,1611\njay's,1,tempest,1611\nabhorr'd,1,tempest,1611\nloose,1,tempest,1611\nseeks,1,tempest,1611\nconfer,1,tempest,1611\ncherish,1,tempest,1611\nwhist,1,tempest,1611\nPardon,1,tempest,1611\nshowers,1,tempest,1611\nrelation,1,tempest,1611\nwhite,1,tempest,1611\npease,1,tempest,1611\nflatterer,1,tempest,1611\nindulgence,1,tempest,1611\nwilling,1,tempest,1611\nWherein,1,tempest,1611\nproperly,1,tempest,1611\npageant,1,tempest,1611\nsty,1,tempest,1611\nfortitude,1,tempest,1611\nparagon,1,tempest,1611\nvanity,1,tempest,1611\nbrace,1,tempest,1611\nWipe,1,tempest,1611\ncompanion,1,tempest,1611\nShortly,1,tempest,1611\npainfully,1,tempest,1611\nrein,1,tempest,1611\nO'erstunk,1,tempest,1611\nnoblest,1,tempest,1611\ninfinite,1,tempest,1611\nUnnatural,1,tempest,1611\ncleave,1,tempest,1611\ntemporal,1,tempest,1611\nrelish,1,tempest,1611\ntight,1,tempest,1611\n'scaped,1,tempest,1611\ncoragio,1,tempest,1611\nmistakings,1,tempest,1611\nsupportable,1,tempest,1611\nmalice,1,tempest,1611\nloathly,1,tempest,1611\nmagistrate,1,tempest,1611\nputter,1,tempest,1611\nsailor,1,tempest,1611\nlet'st,1,tempest,1611\nOld,1,tempest,1611\nhabited,1,tempest,1611\nspeaking,1,tempest,1611\nhedgehogs,1,tempest,1611\nprevent,1,tempest,1611\nprized,1,tempest,1611\nBestow,1,tempest,1611\nVouchsafe,1,tempest,1611\nward,1,tempest,1611\ntar,1,tempest,1611\nnails,1,tempest,1611\nWondrous,1,tempest,1611\nstrong'st,1,tempest,1611\nwould't,1,tempest,1611\nrend,1,tempest,1611\nsphere,1,tempest,1611\nMight,1,tempest,1611\nBlow,1,tempest,1611\ncertes,1,tempest,1611\nseems,1,tempest,1611\nusurp,1,tempest,1611\nlatter,1,tempest,1611\nwardrobe,1,tempest,1611\nsteal,1,tempest,1611\nedge,1,tempest,1611\ncrisp,1,tempest,1611\nabjure,1,tempest,1611\nbased,1,tempest,1611\nentertainer,1,tempest,1611\ngoose,1,tempest,1611\nbolt,1,tempest,1611\nwise,1,tempest,1611\nimportuned,1,tempest,1611\nNaiads,1,tempest,1611\ndied,1,tempest,1611\nmurder,1,tempest,1611\nsooth,1,tempest,1611\ndispleasure,1,tempest,1611\ntravellers,1,tempest,1611\nsense,1,tempest,1611\nbully,1,tempest,1611\nwinning,1,tempest,1611\npierce,1,tempest,1611\npopular,1,tempest,1611\nwave,1,tempest,1611\nbidding,1,tempest,1611\nstop,1,tempest,1611\nharbour,1,tempest,1611\nspiriting,1,tempest,1611\nbaked,1,tempest,1611\nmerely,1,tempest,1611\nBury,1,tempest,1611\nadvancement,1,tempest,1611\nthroughly,1,tempest,1611\nrule,1,tempest,1611\nwash,1,tempest,1611\nBurn,1,tempest,1611\nmelted,1,tempest,1611\nmistake,1,tempest,1611\njoin'd,1,tempest,1611\ndesire,1,tempest,1611\nbrims,1,tempest,1611\nsteel,1,tempest,1611\nwits,1,tempest,1611\nparty,1,tempest,1611\ninfirmity,1,tempest,1611\nPoint,1,tempest,1611\nshorten,1,tempest,1611\nShrug'st,1,tempest,1611\nfoil,1,tempest,1611\nnail,1,tempest,1611\nknowledge,1,tempest,1611\nFaith,1,tempest,1611\ninvert,1,tempest,1611\ngrind,1,tempest,1611\nauthority,1,tempest,1611\nside,1,tempest,1611\nsnores,1,tempest,1611\nverily,1,tempest,1611\nlevel',1,tempest,1611\nbowsprit,1,tempest,1611\ninvest,1,tempest,1611\nenchant,1,tempest,1611\npillars,1,tempest,1611\nhap,1,tempest,1611\nCertainly,1,tempest,1611\nhat,1,tempest,1611\nbacks,1,tempest,1611\ndam's,1,tempest,1611\nsorcery,1,tempest,1611\nBatter,1,tempest,1611\nSide,1,tempest,1611\nclimate,1,tempest,1611\nHome,1,tempest,1611\nvarlets,1,tempest,1611\nHoly,1,tempest,1611\nnoisemaker,1,tempest,1611\nDraws,1,tempest,1611\nutter,1,tempest,1611\nacquaints,1,tempest,1611\nsigh,1,tempest,1611\nchronicle,1,tempest,1611\ncrabs,1,tempest,1611\nBY,1,tempest,1611\ntwink,1,tempest,1611\nexercise,1,tempest,1611\ninvulnerable,1,tempest,1611\nenact,1,tempest,1611\nunsettled,1,tempest,1611\nperfection,1,tempest,1611\ndeformed,1,tempest,1611\nAm,1,tempest,1611\nrazorable,1,tempest,1611\nquarrel,1,tempest,1611\ndepend,1,tempest,1611\nwronged,1,tempest,1611\nhang'd,1,tempest,1611\nsurety,1,tempest,1611\nmeads,1,tempest,1611\nscarce,1,tempest,1611\nchaste,1,tempest,1611\nunwonted,1,tempest,1611\napproaching,1,tempest,1611\nblows,1,tempest,1611\nboy,1,tempest,1611\nknowing,1,tempest,1611\ngovern,1,tempest,1611\nvigour,1,tempest,1611\nThose,1,tempest,1611\ndesperate,1,tempest,1611\nPlay,1,tempest,1611\nDrink,1,tempest,1611\nteen,1,tempest,1611\nBy'r,1,tempest,1611\nbad,1,tempest,1611\nflats,1,tempest,1611\nO',1,tempest,1611\nwrings,1,tempest,1611\nsensible,1,tempest,1611\nsiege,1,tempest,1611\npays,1,tempest,1611\nbat,1,tempest,1611\nkings,1,tempest,1611\nSays,1,tempest,1611\nbrained,1,tempest,1611\nin's,1,tempest,1611\nutensils,1,tempest,1611\nNurture,1,tempest,1611\nAnswer,1,tempest,1611\nstar,1,tempest,1611\ntales,1,tempest,1611\npen,1,tempest,1611\nHey,1,tempest,1611\npitied,1,tempest,1611\npeg,1,tempest,1611\nspoon,1,tempest,1611\nLetters,1,tempest,1611\nremainder,1,tempest,1611\nexact,1,tempest,1611\nSomething,1,tempest,1611\nrequired,1,tempest,1611\nflowers,1,tempest,1611\npiteous,1,tempest,1611\nbee,1,tempest,1611\nmeant,1,tempest,1611\nsovereignty,1,tempest,1611\nIV,1,tempest,1611\ndinner,1,tempest,1611\nblest,1,tempest,1611\npeacocks,1,tempest,1611\nenchanted,1,tempest,1611\nsurely,1,tempest,1611\nprecursors,1,tempest,1611\nSword,1,tempest,1611\ndeserved,1,tempest,1611\nease,1,tempest,1611\nstrokedst,1,tempest,1611\nwither'd,1,tempest,1611\nHeaviness,1,tempest,1611\npate,1,tempest,1611\nrevenue,1,tempest,1611\ndespair,1,tempest,1611\nannual,1,tempest,1611\nsport,1,tempest,1611\nnoses,1,tempest,1611\nHag,1,tempest,1611\npass,1,tempest,1611\ntroops,1,tempest,1611\ncracks,1,tempest,1611\nhope',1,tempest,1611\nHas,1,tempest,1611\nproud,1,tempest,1611\ntemples,1,tempest,1611\nprompts,1,tempest,1611\nsparrows,1,tempest,1611\nstinging,1,tempest,1611\nand's,1,tempest,1611\nattentive,1,tempest,1611\nSeems,1,tempest,1611\nprincesses,1,tempest,1611\ntemple,1,tempest,1611\nbadges,1,tempest,1611\nkiss'd,1,tempest,1611\nsought,1,tempest,1611\nuseless,1,tempest,1611\nDrop,1,tempest,1611\ngold,1,tempest,1611\ndrunkards,1,tempest,1611\nroyalty,1,tempest,1611\nbe'st,1,tempest,1611\ndivide,1,tempest,1611\nbulk,1,tempest,1611\nviceroys,1,tempest,1611\nDido',1,tempest,1611\nsorry,1,tempest,1611\nwelkin's,1,tempest,1611\nhills,1,tempest,1611\nnigh,1,tempest,1611\nOpen,1,tempest,1611\nbend,1,tempest,1611\nbusy,1,tempest,1611\nstray,1,tempest,1611\nmankind,1,tempest,1611\nwas't,1,tempest,1611\nHeard,1,tempest,1611\ncanker,1,tempest,1611\nleather,1,tempest,1611\nknotty,1,tempest,1611\npreserver,1,tempest,1611\nsuffer'd,1,tempest,1611\n'Twould,1,tempest,1611\nthunderbolt,1,tempest,1611\nunfit,1,tempest,1611\nkindness,1,tempest,1611\nroarers,1,tempest,1611\nneglecting,1,tempest,1611\nbreathing,1,tempest,1611\nchildren,1,tempest,1611\nsaw'st,1,tempest,1611\ngoodlier,1,tempest,1611\nprisoners,1,tempest,1611\nawaked,1,tempest,1611\nSeest,1,tempest,1611\ndote,1,tempest,1611\ninterrupt,1,tempest,1611\nturfy,1,tempest,1611\ncouch,1,tempest,1611\nordered,1,tempest,1611\nCounsellor,1,tempest,1611\nExecute,1,tempest,1611\ncelebration,1,tempest,1611\nConfined,1,tempest,1611\nwear,1,tempest,1611\nlamps,1,tempest,1611\nshadow,1,tempest,1611\nbottles,1,tempest,1611\nAbates,1,tempest,1611\nmanacle,1,tempest,1611\nBore,1,tempest,1611\nArabia,1,tempest,1611\nescapedst,1,tempest,1611\nsuddenly,1,tempest,1611\nforget'st,1,tempest,1611\nstover,1,tempest,1611\nprick'd,1,tempest,1611\nhappen'd,1,tempest,1611\njewel,1,tempest,1611\npersuasion,1,tempest,1611\njust,1,tempest,1611\n'no,1,tempest,1611\ngoss,1,tempest,1611\ntheme,1,tempest,1611\nmurrain,1,tempest,1611\ngunner,1,tempest,1611\nInhabits,1,tempest,1611\npailfuls,1,tempest,1611\ngun,1,tempest,1611\nundergoing,1,tempest,1611\nmallows,1,tempest,1611\nbeget,1,tempest,1611\nswift,1,tempest,1611\nvows,1,tempest,1611\n'so,1,tempest,1611\nbuy,1,tempest,1611\nfathoms,1,tempest,1611\nswims,1,tempest,1611\nvassal,1,tempest,1611\nraising,1,tempest,1611\ntravel,1,tempest,1611\nused,1,tempest,1611\ncruelly,1,tempest,1611\npreserve,1,tempest,1611\nbees,1,tempest,1611\njingling,1,tempest,1611\ntotally,1,tempest,1611\nsins,1,tempest,1611\nconsciences,1,tempest,1611\nstronger,1,tempest,1611\nensue,1,tempest,1611\npicture,1,tempest,1611\nnonpareil,1,tempest,1611\nmoody,1,tempest,1611\nDearly,1,tempest,1611\nhourly,1,tempest,1611\nfooting,1,tempest,1611\nnorth,1,tempest,1611\nsubtilties,1,tempest,1611\nowest,1,tempest,1611\nimmortal,1,tempest,1611\nlately,1,tempest,1611\ncramp,1,tempest,1611\ninfections,1,tempest,1611\nuplifted,1,tempest,1611\nBoth,1,tempest,1611\nbeginning,1,tempest,1611\nDashes,1,tempest,1611\nHow's,1,tempest,1611\ngrandmother,1,tempest,1611\nbegin,1,tempest,1611\nabysm,1,tempest,1611\norgan,1,tempest,1611\nquite,1,tempest,1611\npearls,1,tempest,1611\nGod,1,tempest,1611\nTrinculo's,1,tempest,1611\nsleepers,1,tempest,1611\nlorn,1,tempest,1611\nentertain,1,tempest,1611\ngovernment,1,tempest,1611\ninstant,1,tempest,1611\ntwangling,1,tempest,1611\nsaffron,1,tempest,1611\naffection,1,tempest,1611\nengine,1,tempest,1611\npromised,1,tempest,1611\nimage,1,tempest,1611\nbosky,1,tempest,1611\nblowing,1,tempest,1611\nFortune,1,tempest,1611\nvoyage,1,tempest,1611\nMethought,1,tempest,1611\nretain,1,tempest,1611\ntorments,1,tempest,1611\nhearkens,1,tempest,1611\nnostrils,1,tempest,1611\nmole,1,tempest,1611\ndoit,1,tempest,1611\nshrub,1,tempest,1611\ncorollary,1,tempest,1611\nHere's,1,tempest,1611\nfaster,1,tempest,1611\nbedimm'd,1,tempest,1611\noddly,1,tempest,1611\nconsider,1,tempest,1611\nwaspish,1,tempest,1611\nsheep,1,tempest,1611\nfavour,1,tempest,1611\n'Hell,1,tempest,1611\ncolts,1,tempest,1611\nHourly,1,tempest,1611\npromontory,1,tempest,1611\ntawny,1,tempest,1611\nInd,1,tempest,1611\nAmbition,1,tempest,1611\nopportune,1,tempest,1611\nAdvanced,1,tempest,1611\nbead,1,tempest,1611\nbarley,1,tempest,1611\noozy,1,tempest,1611\nbeak,1,tempest,1611\nbeam,1,tempest,1611\nUnless,1,tempest,1611\nPast,1,tempest,1611\nunbow'd,1,tempest,1611\nwhereon,1,tempest,1611\ndriving,1,tempest,1611\nplays,1,tempest,1611\ncradled,1,tempest,1611\ndeal,1,tempest,1611\nRevenge,1,tempest,1611\nliberal,1,tempest,1611\nCacaliban,1,tempest,1611\ngait,1,tempest,1611\ndignity,1,tempest,1611\nworthily,1,tempest,1611\npluck'd,1,tempest,1611\nscamels,1,tempest,1611\nvault,1,tempest,1611\nitch,1,tempest,1611\nBesides,1,tempest,1611\nstain'd,1,tempest,1611\nlighted,1,tempest,1611\ndower,1,tempest,1611\npierces,1,tempest,1611\nboast,1,tempest,1611\nnettle,1,tempest,1611\nwaist,1,tempest,1611\nunwillingly,1,tempest,1611\nstole,1,tempest,1611\nsuppler,1,tempest,1611\nwaits,1,tempest,1611\nSounds,1,tempest,1611\nglistering,1,tempest,1611\nFright,1,tempest,1611\nhouses,1,tempest,1611\nay,1,tempest,1611\nspongy,1,tempest,1611\ncram,1,tempest,1611\nDolour,1,tempest,1611\npossess'd,1,tempest,1611\nshed,1,tempest,1611\napproach,1,tempest,1611\nmanner,1,tempest,1611\nBegun,1,tempest,1611\ntemperate,1,tempest,1611\nVines,1,tempest,1611\nheard'st,1,tempest,1611\nmarketable,1,tempest,1611\nprosper,1,tempest,1611\nabominable,1,tempest,1611\npaunch,1,tempest,1611\nquestions,1,tempest,1611\nboard,1,tempest,1611\nattending,1,tempest,1611\nthreaten,1,tempest,1611\nmows,1,tempest,1611\nbites,1,tempest,1611\nmonth,1,tempest,1611\nhereabouts,1,tempest,1611\nwisely,1,tempest,1611\n'Scape,1,tempest,1611\nstrain,1,tempest,1611\ncrave,1,tempest,1611\naside,1,tempest,1611\ndropsy,1,tempest,1611\nWater,1,tempest,1611\nGoes,1,tempest,1611\nblasphemous,1,tempest,1611\nwrangle,1,tempest,1611\nacres,1,tempest,1611\nTold,1,tempest,1611\nwhereof,1,tempest,1611\ncollected,1,tempest,1611\nmalignant,1,tempest,1611\nLays,1,tempest,1611\nproduce,1,tempest,1611\nTook,1,tempest,1611\nstudies,1,tempest,1611\nReady,1,tempest,1611\ncaused,1,tempest,1611\ncrimes,1,tempest,1611\nmorn,1,tempest,1611\ntrain,1,tempest,1611\nenmity,1,tempest,1611\nquickens,1,tempest,1611\nBegin,1,tempest,1611\nloves,1,tempest,1611\nremembering,1,tempest,1611\nsharply,1,tempest,1611\nstout,1,tempest,1611\nmiserable,1,tempest,1611\nloud,1,tempest,1611\noffer'd,1,tempest,1611\nendure,1,tempest,1611\n'gins,1,tempest,1611\namply,1,tempest,1611\ncommands,1,tempest,1611\ndrift,1,tempest,1611\nspeak'st,1,tempest,1611\nresides,1,tempest,1611\nresolved,1,tempest,1611\ncurl'd,1,tempest,1611\nshrieking,1,tempest,1611\nspent,1,tempest,1611\nfrustrate,1,tempest,1611\nhogshead,1,tempest,1611\nafternoon,1,tempest,1611\ndowle,1,tempest,1611\nfelony,1,tempest,1611\ntwenty,1,tempest,1611\nbrutish,1,tempest,1611\n'bout,1,tempest,1611\nremoved,1,tempest,1611\ndefy,1,tempest,1611\nswear'st,1,tempest,1611\nbeauteous,1,tempest,1611\ngreater,1,tempest,1611\nbootless,1,tempest,1611\nmischiefs,1,tempest,1611\nTooth'd,1,tempest,1611\nknew,1,tempest,1611\ndeboshed,1,tempest,1611\nsailor's,1,tempest,1611\nserious,1,tempest,1611\nhoodwink,1,tempest,1611\ncomposed,1,tempest,1611\njocund,1,tempest,1611\nharshness,1,tempest,1611\nnatures,1,tempest,1611\npure,1,tempest,1611\nmarr'd,1,tempest,1611\nkernels,1,tempest,1611\nbriers,1,tempest,1611\nBeen,1,tempest,1611\nwisest,1,tempest,1611\nharp,1,tempest,1611\nboil'd,1,tempest,1611\nthrice,1,tempest,1611\nkilled,1,tempest,1611\ngraves,1,tempest,1611\nevents,1,tempest,1611\neats,1,tempest,1611\nattach'd,1,tempest,1611\neasy,1,tempest,1611\nThought,1,tempest,1611\nscratch,1,tempest,1611\nJack,1,tempest,1611\noutward,1,tempest,1611\nplume,1,tempest,1611\nhumming,1,tempest,1611\npard,1,tempest,1611\nreasonable,1,tempest,1611\nweeks,1,tempest,1611\nstrutting,1,tempest,1611\nfished,1,tempest,1611\nweapon,1,tempest,1611\nKate,1,tempest,1611\nmanifold,1,tempest,1611\npull,1,tempest,1611\njustled,1,tempest,1611\nfrost,1,tempest,1611\ncrow,1,tempest,1611\nfraughting,1,tempest,1611\nadders,1,tempest,1611\nowls,1,tempest,1611\nurchin,1,tempest,1611\nrifted,1,tempest,1611\nknit,1,tempest,1611\nperfected,1,tempest,1611\nwelcome,1,tempest,1611\nneat's,1,tempest,1611\nhests,1,tempest,1611\nunworthiness,1,tempest,1611\nshallow,1,tempest,1611\nTend,1,tempest,1611\n'widower,1,tempest,1611\nweeds,1,tempest,1611\nbetrims,1,tempest,1611\nrepeat,1,tempest,1611\nappears,1,tempest,1611\nshun,1,tempest,1611\nshut,1,tempest,1611\nskilless,1,tempest,1611\nsurges,1,tempest,1611\nsighing,1,tempest,1611\nporridge,1,tempest,1611\nMoon,1,tempest,1611\nCoragio,1,tempest,1611\nmighty,1,tempest,1611\nparticulars,1,tempest,1611\npraise,1,tempest,1611\nmomentary,1,tempest,1611\nhalt,1,tempest,1611\nspotted,1,tempest,1611\nperpetual,1,tempest,1611\nswabber,1,tempest,1611\ntest,1,tempest,1611\nacquaintance,1,tempest,1611\nexpect,1,tempest,1611\nvengeance,1,tempest,1611\noped,1,tempest,1611\nTyrant,1,tempest,1611\nfort,1,tempest,1611\nprepare,1,tempest,1611\nkingdoms,1,tempest,1611\nNeapolitans,1,tempest,1611\nAugust,1,tempest,1611\ndispersedly,1,tempest,1611\nshaked,1,tempest,1611\nappertaining,1,tempest,1611\nhangs,1,tempest,1611\ndelight,1,tempest,1611\nheaviness,1,tempest,1611\nwinter's,1,tempest,1611\nplotted,1,tempest,1611\nTender,1,tempest,1611\nNight,1,tempest,1611\nmoney,1,tempest,1611\nlitter,1,tempest,1611\nhum,1,tempest,1611\nmock,1,tempest,1611\nchastise,1,tempest,1611\nforsworn,1,tempest,1611\nowes,1,tempest,1611\nPaphos,1,tempest,1611\nhowsoe'er,1,tempest,1611\nowed,1,tempest,1611\nstrays,1,tempest,1611\nbosom,1,tempest,1611\nIndian,1,tempest,1611\nfear'd,1,tempest,1611\nworldly,1,tempest,1611\nbutler,1,tempest,1611\nhats,1,tempest,1611\ndismay,1,tempest,1611\nbawling,1,tempest,1611\nyielded,1,tempest,1611\nbillows,1,tempest,1611\nshoe,1,tempest,1611\nexcept,1,tempest,1611\nfiend,1,tempest,1611\noutstrip,1,tempest,1611\nprepared,1,tempest,1611\ncourses,1,tempest,1611\nass,1,tempest,1611\nclipt,1,tempest,1611\nfellowly,1,tempest,1611\ngirl,1,tempest,1611\ndyed,1,tempest,1611\nfancies,1,tempest,1611\nebbs,1,tempest,1611\nYields,1,tempest,1611\nsorcerer,1,tempest,1611\nsecret,1,tempest,1611\ntrice,1,tempest,1611\nopen'd,1,tempest,1611\nfurnish,1,tempest,1611\nthanks,1,tempest,1611\nbrush'd,1,tempest,1611\ntrick,1,tempest,1611\nprate,1,tempest,1611\nclearer,1,tempest,1611\ntheirs,1,tempest,1611\npurchased,1,tempest,1611\ncolour'd,1,tempest,1611\ncrabbed,1,tempest,1611\nsmells,1,tempest,1611\nDelicate,1,tempest,1611\nSour,1,tempest,1611\nsweetly,1,tempest,1611\nSometimes,1,tempest,1611\nscandal'd,1,tempest,1611\njustify,1,tempest,1611\nAcknowledge,1,tempest,1611\nhiss,1,tempest,1611\ntrial,1,tempest,1611\ndemanded,1,tempest,1611\nridiculous,1,tempest,1611\nmarge,1,tempest,1611\nbountiful,1,tempest,1611\nexcel,1,tempest,1611\nbeetles,1,tempest,1611\nCapering,1,tempest,1611\nstrongest,1,tempest,1611\nbemock'd,1,tempest,1611\nImprison'd,1,tempest,1611\nwetting,1,tempest,1611\nchange,1,tempest,1611\ninquisition,1,tempest,1611\nprecedent,1,tempest,1611\nEurope,1,tempest,1611\nchapp'd,1,tempest,1611\nBids,1,tempest,1611\nmutineer,1,tempest,1611\nfooling,1,tempest,1611\nnobler,1,tempest,1611\nmoping,1,tempest,1611\nwheels,1,tempest,1611\ndrowsiness,1,tempest,1611\nrarity,1,tempest,1611\nmolest,1,tempest,1611\nComes,1,tempest,1611\ntumbling,1,tempest,1611\nMarvellous,1,tempest,1611\nSummon'd,1,tempest,1611\nleas,1,tempest,1611\nroom,1,tempest,1611\nscaped,1,tempest,1611\nhunters,1,tempest,1611\ndistractions,1,tempest,1611\nsurfeited,1,tempest,1611\nKill,1,tempest,1611\nbreeds,1,tempest,1611\nmain,1,tempest,1611\nsyllable,1,tempest,1611\nnay,1,tempest,1611\nbrewing,1,tempest,1611\nMountain,1,tempest,1611\nhoney,1,tempest,1611\ncarries,1,tempest,1611\nSafely,1,tempest,1611\nAdmired,1,tempest,1611\nshouldst,1,tempest,1611\ntakest,1,tempest,1611\nclapp'd,1,tempest,1611\nrapt,1,tempest,1611\nretired,1,tempest,1611\nLords,1,tempest,1611\nacquisition,1,tempest,1611\ndistance,1,tempest,1611\nmountains,1,tempest,1611\nwhelp,1,tempest,1611\nfaith,1,tempest,1611\nARIEL'S,1,tempest,1611\nincapable,1,tempest,1611\nfurtherer,1,tempest,1611\nunrewarded,1,tempest,1611\nnose,1,tempest,1611\npatch,1,tempest,1611\nneglect'st,1,tempest,1611\nenvy,1,tempest,1611\nVenus,1,tempest,1611\nnewest,1,tempest,1611\ncorrespondent,1,tempest,1611\ntrencher,1,tempest,1611\naction,1,tempest,1611\nproceed,1,tempest,1611\nseriously,1,tempest,1611\noccupation,1,tempest,1611\ncedar,1,tempest,1611\nHang,1,tempest,1611\napple,1,tempest,1611\ngently,1,tempest,1611\ndulness,1,tempest,1611\nnow's,1,tempest,1611\ninfest,1,tempest,1611\ncircle,1,tempest,1611\nshaking,1,tempest,1611\nPointing,1,tempest,1611\ncurtains,1,tempest,1611\nazured,1,tempest,1611\nrats,1,tempest,1611\nWas't,1,tempest,1611\nmajesty,1,tempest,1611\ntemperance,1,tempest,1611\ntended,1,tempest,1611\ndonation,1,tempest,1611\nentertainment,1,tempest,1611\ninfancy,1,tempest,1611\nrash,1,tempest,1611\nPlants,1,tempest,1611\nbeard,1,tempest,1611\nconvulsions,1,tempest,1611\nnook,1,tempest,1611\nbravely,1,tempest,1611\nestate,1,tempest,1611\nfaint,1,tempest,1611\ntraitors,1,tempest,1611\nDove,1,tempest,1611\nvexations,1,tempest,1611\ncall'dst,1,tempest,1611\nIrreparable,1,tempest,1611\npastime,1,tempest,1611\nbottom,1,tempest,1611\nWeak,1,tempest,1611\nlinens,1,tempest,1611\nchaps,1,tempest,1611\nadmire,1,tempest,1611\nPresently,1,tempest,1611\nMars's,1,tempest,1611\nfails,1,tempest,1611\nDown,1,tempest,1611\nadventure,1,tempest,1611\nglosses,1,tempest,1611\ndrunkenly,1,tempest,1611\newe,1,tempest,1611\nborne,1,tempest,1611\nwolves,1,tempest,1611\nlearning,1,tempest,1611\nadmit,1,tempest,1611\nyoung,1,tempest,1611\nAll's,1,tempest,1611\nmount,1,tempest,1611\nExpell'd,1,tempest,1611\nsticks,1,tempest,1611\nquickly,1,tempest,1611\nmate,1,tempest,1611\narise,1,tempest,1611\nshores,1,tempest,1611\npayest,1,tempest,1611\nbarnacles,1,tempest,1611\nbaseless,1,tempest,1611\nescaped,1,tempest,1611\nrequit,1,tempest,1611\ncounsellor,1,tempest,1611\nwho's,1,tempest,1611\nodious,1,tempest,1611\nSlave,1,tempest,1611\nmisery,1,tempest,1611\nplaces,1,tempest,1611\nbe't,1,tempest,1611\nrejoicing,1,tempest,1611\nrarities,1,tempest,1611\nislands,1,tempest,1611\nvetches,1,tempest,1611\nfreely,1,tempest,1611\nscarf,1,tempest,1611\nsay'st,1,tempest,1611\nfamous,1,tempest,1611\nwonder'd,1,tempest,1611\ninly,1,tempest,1611\nWill't,1,tempest,1611\ntutor,1,tempest,1611\nprecious,1,tempest,1611\nsociable,1,tempest,1611\nquestion,1,tempest,1611\nensuing,1,tempest,1611\ncontraries,1,tempest,1611\nrecount,1,tempest,1611\nafflictions,1,tempest,1611\nsigh'd,1,tempest,1611\nattire,1,tempest,1611\nfurlongs,1,tempest,1611\ntempestuous,1,tempest,1611\neffect,1,tempest,1611\nspurs,1,tempest,1611\ndevice,1,tempest,1611\ngoblins,1,tempest,1611\ngraceful,1,tempest,1611\nglut,1,tempest,1611\ndoors,1,tempest,1611\nstare,1,tempest,1611\nmill,1,tempest,1611\nmilk,1,tempest,1611\neaves,1,tempest,1611\ndeck'd,1,tempest,1611\nungently,1,tempest,1611\nlearnedly,1,tempest,1611\nWidow,1,tempest,1611\nteeth,1,tempest,1611\nbleeds,1,tempest,1611\nprobable,1,tempest,1611\nqualities,1,tempest,1611\ncubit,1,tempest,1611\ndisproportion'd,1,tempest,1611\nknave,1,tempest,1611\nMakes,1,tempest,1611\nSwears,1,tempest,1611\npricking,1,tempest,1611\npurposes,1,tempest,1611\nescape,1,tempest,1611\nfoolish,1,tempest,1611\ntowers,1,tempest,1611\npurposed,1,tempest,1611\nslowly,1,tempest,1611\nobservation,1,tempest,1611\ndregs,1,tempest,1611\ntackle,1,tempest,1611\nconfidence,1,tempest,1611\nfurze,1,tempest,1611\nmantled,1,tempest,1611\nbeggar,1,tempest,1611\nstraightway,1,tempest,1611\ninsolent,1,tempest,1611\nghastly,1,tempest,1611\nvillanous,1,tempest,1611\nmast,1,tempest,1611\nPraise,1,tempest,1611\noverblown,1,tempest,1611\nDropping,1,tempest,1611\nkissing,1,tempest,1611\nTrebles,1,tempest,1611\ncoward,1,tempest,1611\nson's,1,tempest,1611\nabstemious,1,tempest,1611\nthick,1,tempest,1611\nBate,1,tempest,1611\nAny,1,tempest,1611\nwezand,1,tempest,1611\nMarian,1,tempest,1611\nHonour,1,tempest,1611\nbettering,1,tempest,1611\nfurnish'd,1,tempest,1611\ncoronet,1,tempest,1611\nIsland,1,tempest,1611\nmire,1,tempest,1611\nThee,1,tempest,1611\nchick,1,tempest,1611\nquoth,1,tempest,1611\nbrains,1,tempest,1611\npainful,1,tempest,1611\ngates,1,tempest,1611\ntides,1,tempest,1611\ncandied,1,tempest,1611\nchide,1,tempest,1611\nchough,1,tempest,1611\narch,1,tempest,1611\nmissing,1,tempest,1611\nconstable,1,tempest,1611\nDiffusest,1,tempest,1611\nsnare,1,tempest,1611\nchirurgeonly,1,tempest,1611\nparent,1,tempest,1611\napart,1,tempest,1611\nsedged,1,tempest,1611\nMade,1,tempest,1611\ndainty,1,tempest,1611\nceremonies,1,tempest,1611\nhorrible,1,tempest,1611\noil,1,tempest,1611\nstake,1,tempest,1611\nmiraculous,1,tempest,1611\nfirm,1,tempest,1611\nones,1,tempest,1611\nlouder,1,tempest,1611\nforego,1,tempest,1611\nsans,1,tempest,1611\nbanks,1,tempest,1611\nnibbling,1,tempest,1611\nAwaked,1,tempest,1611\ntrembling,1,tempest,1611\nItaly,1,tempest,1611\nbellowing,1,tempest,1611\nstained,1,tempest,1611\npole,1,tempest,1611\nopinion,1,tempest,1611\nrenown,1,tempest,1611\ncapp'd,1,tempest,1611\ndisturb'd,1,tempest,1611\nwinding,1,tempest,1611\nwi',1,tempest,1611\ngabble,1,tempest,1611\nprescience,1,tempest,1611\nstale,1,tempest,1611\nat's,1,tempest,1611\nneck,1,tempest,1611\nsake,1,tempest,1611\nunderstanding,1,tempest,1611\nincharitable,1,tempest,1611\nfits,1,tempest,1611\nboarded,1,tempest,1611\nFreedom,1,tempest,1611\ndesolate,1,tempest,1611\ncapable,1,tempest,1611\nwin,1,tempest,1611\ngrass'd,1,tempest,1611\nBegins,1,tempest,1611\nwhere'er,1,tempest,1611\nsorceries,1,tempest,1611\nprovoke,1,tempest,1611\nvisits,1,tempest,1611\nsicklemen,1,tempest,1611\n'Twill,1,tempest,1611\nbands,1,tempest,1611\nconfines,1,tempest,1611\nrelieved,1,tempest,1611\nsays,1,tempest,1611\nheath,1,tempest,1611\nunstanched,1,tempest,1611\nunicorns,1,tempest,1611\nforgetting,1,tempest,1611\nring,1,tempest,1611\nscreen,1,tempest,1611\nmeasured,1,tempest,1611\nrankest,1,tempest,1611\nloving,1,tempest,1611\ntabourer,1,tempest,1611\nusurping,1,tempest,1611\nupright,1,tempest,1611\nHumanely,1,tempest,1611\nsitting,1,tempest,1611\ntraffic,1,tempest,1611\nprophesied,1,tempest,1611\nInfused,1,tempest,1611\npioned,1,tempest,1611\nallay,1,tempest,1611\nabundance,1,tempest,1611\nunseen,1,tempest,1611\ninfluence,1,tempest,1611\nstabs,1,tempest,1611\ndollar,1,tempest,1611\nDear,1,tempest,1611\n'mong,1,tempest,1611\ngrumblings,1,tempest,1611\nclock,1,tempest,1611\nSaw,1,tempest,1611\nvouched,1,tempest,1611\nripe,1,tempest,1611\nsalutation,1,tempest,1611\nyou're,1,tempest,1611\ncontinuance,1,tempest,1611\ncertainly,1,tempest,1611\nwidows,1,tempest,1611\nThine,1,tempest,1611\nIncite,1,tempest,1611\nThus,1,tempest,1611\nissued,1,tempest,1611\nliked,1,tempest,1611\nBermoothes,1,tempest,1611\ninsubstantial,1,tempest,1611\ndusky,1,tempest,1611\n'The,1,tempest,1611\nsignories,1,tempest,1611\nMerrily,1,tempest,1611\nwar,1,tempest,1611\nstitches,1,tempest,1611\nFated,1,tempest,1611\nsnoring,1,tempest,1611\narmy,1,tempest,1611\nstaff,1,tempest,1611\nfounder'd,1,tempest,1611\ndriven,1,tempest,1611\nmounting,1,tempest,1611\nWorthy,1,tempest,1611\nraven's,1,tempest,1611\nactors,1,tempest,1611\ntailor,1,tempest,1611\nnuptial,1,tempest,1611\nperforce,1,tempest,1611\noath,1,tempest,1611\nprint,1,tempest,1611\ndeparting,1,tempest,1611\ncommander,1,tempest,1611\nrite,1,tempest,1611\noats,1,tempest,1611\nreeling,1,tempest,1611\narts,1,tempest,1611\nthey'll,1,tempest,1611\nblemish,1,tempest,1611\nrage,1,tempest,1611\ngroan'd,1,tempest,1611\nCourtsied,1,tempest,1611\nslipper,1,tempest,1611\nreigning,1,tempest,1611\nwanton,1,tempest,1611\nlifted,1,tempest,1611\nbereft,1,tempest,1611\nKnowing,1,tempest,1611\napace,1,tempest,1611\nbowing,1,tempest,1611\nsupper,1,tempest,1611\ncoming,1,tempest,1611\ncockerel,1,tempest,1611\nbreakfast,1,tempest,1611\nthreats,1,tempest,1611\ncursed,1,tempest,1611\nMonsieur,1,tempest,1611\npossess,1,tempest,1611\nfade,1,tempest,1611\ninaccessible,1,tempest,1611\nthroats,1,tempest,1611\nrift,1,tempest,1611\nrobb'd,1,tempest,1611\nShalt,1,tempest,1611\nsurprised,1,tempest,1611\ndiscase,1,tempest,1611\nangle,1,tempest,1611\nShip,1,tempest,1611\nrequite,1,tempest,1611\nPlunged,1,tempest,1611\nfreshness,1,tempest,1611\nprompt,1,tempest,1611\nfaces,1,tempest,1611\ndreams,1,tempest,1611\no'erthrown,1,tempest,1611\nearthquake,1,tempest,1611\npenitent,1,tempest,1611\nMargery,1,tempest,1611\nwatery,1,tempest,1611\nserved,1,tempest,1611\nHeaven,1,tempest,1611\nmuddy,1,tempest,1611\nmorsel,1,tempest,1611\nfallen,1,tempest,1611\nslavery,1,tempest,1611\nmarry,1,tempest,1611\ndissolves,1,tempest,1611\nearthly,1,tempest,1611\nunback'd,1,tempest,1611\nHail,1,tempest,1611\nprologue,1,tempest,1611\npoison,1,tempest,1611\ninform,1,tempest,1611\nrequire,1,tempest,1611\nTemperance,1,tempest,1611\ngod's,1,tempest,1611\nroyalties,1,tempest,1611\ncompass,1,tempest,1611\nfurzes,1,tempest,1611\ndumb,1,tempest,1611\nwondrous,1,tempest,1611\nlust,1,tempest,1611\nrefreshing,1,tempest,1611\ndroop,1,tempest,1611\nPrudence,1,tempest,1611\nrain,1,tempest,1611\nconsent,1,tempest,1611\ndull,1,tempest,1611\nlorded,1,tempest,1611\nlush,1,tempest,1611\nstow'd,1,tempest,1611\nnest,1,tempest,1611\nwhistle,1,tempest,1611\nminister'd,1,tempest,1611\nharvest,1,tempest,1611\nserves,1,tempest,1611\nwaste,1,tempest,1611\ngales,1,tempest,1611\nMall,1,tempest,1611\nope,1,tempest,1611\nwhence,1,tempest,1611\nfollowers,1,tempest,1611\nNoble,1,tempest,1611\nuneasy,1,tempest,1611\nmadest,1,tempest,1611\nbelch,1,tempest,1611\nShow,1,tempest,1611\nfain,1,tempest,1611\nminister,1,tempest,1611\nsails,1,tempest,1611\nviolate,1,tempest,1611\nevil,1,tempest,1611\ndurst,1,tempest,1611\nardour,1,tempest,1611\nMany,1,tempest,1611\nwept,1,tempest,1611\nunion,1,tempest,1611\npockets,1,tempest,1611\ndoublet,1,tempest,1611\nInstinctively,1,tempest,1611\nmodesty,1,tempest,1611\nstolen,1,tempest,1611\nBrother,1,tempest,1611\ndesert,1,tempest,1611\nvisitor,1,tempest,1611\ncares,1,tempest,1611\nprattle,1,tempest,1611\narticle,1,tempest,1611\ncreature's,1,tempest,1611\nProceed,1,tempest,1611\nlasting,1,tempest,1611\nJupiter,1,tempest,1611\nbedded,1,tempest,1611\n'go,1,tempest,1611\nrace,1,tempest,1611\nmethinks,1,tempest,1611\ncared,1,tempest,1611\ntricksy,1,tempest,1611\nworm,1,tempest,1611\nearthy,1,tempest,1611\nworn,1,tempest,1611\nchalk'd,1,tempest,1611\nfins,1,tempest,1611\nsowing,1,tempest,1611\ncolours,1,tempest,1611\nheavily,1,tempest,1611\ndo't,1,tempest,1611\nHeigh,1,tempest,1611\nlodged,1,tempest,1611\nwest,1,tempest,1611\ndancing,1,tempest,1611\nfiring,1,tempest,1611\nninny's,1,tempest,1611\nendeavour,1,tempest,1611\nflame,1,tempest,1611\nmurmur'st,1,tempest,1611\nExcellent,1,tempest,1611\nofficer,1,tempest,1611\nvow,1,tempest,1611\nwheat,1,tempest,1611\nSupposing,1,tempest,1611\nWeeping,1,tempest,1611\noar'd,1,tempest,1611\nGONZALO's,1,tempest,1611\nadmiration,1,tempest,1611\ndalliance,1,tempest,1611\nsafety,1,tempest,1611\ntrident,1,tempest,1611\npunish'd,1,tempest,1611\nsmote,1,tempest,1611\nBurnt,1,tempest,1611\nblister,1,tempest,1611\nrattling,1,tempest,1611\nfolly,1,tempest,1611\nparticular,1,tempest,1611\nUninhabitable,1,tempest,1611\nminded,1,tempest,1611\nbare,1,tempest,1611\nWorthily,1,tempest,1611\nimposter,1,tempest,1611\nmeddle,1,tempest,1611\ncontentious,1,tempest,1611\nworship,1,tempest,1611\ntail,1,tempest,1611\nsurge,1,tempest,1611\ndivers,1,tempest,1611\nReceived,1,tempest,1611\nherself,1,tempest,1611\nan't,1,tempest,1611\nforgets,1,tempest,1611\ndepart,1,tempest,1611\nperceive,1,tempest,1611\nchiefly,1,tempest,1611\nbeware,1,tempest,1611\nThank,1,tempest,1611\nfoaming,1,tempest,1611\ndetract,1,tempest,1611\nbats,1,tempest,1611\nbate,1,tempest,1611\nlived,1,tempest,1611\nFoul,1,tempest,1611\nincreasing,1,tempest,1611\ngilded,1,tempest,1611\nebbing,1,tempest,1611\nbird,1,tempest,1611\ncompensation,1,tempest,1611\nfreshly,1,tempest,1611\nBefitting,1,tempest,1611\n'Steal,1,tempest,1611\nbass,1,tempest,1611\nstinking,1,tempest,1611\ntrumpery,1,tempest,1611\nflamed,1,tempest,1611\nappointed,1,tempest,1611\ncock,1,tempest,1611\ntang,1,tempest,1611\nDestiny,1,tempest,1611\nbank,1,tempest,1611\nbreasted,1,tempest,1611\nfilberts,1,tempest,1611\nhoop,1,tempest,1611\nrising,1,tempest,1611\nlarge,1,tempest,1611\nemperor,1,tempest,1611\nfare,1,tempest,1611\ndismay'd,1,tempest,1611\nvolumes,1,tempest,1611\nache,1,tempest,1611\necstasy,1,tempest,1611\ncable,1,tempest,1611\nfarthest,1,tempest,1611\nacorn,1,tempest,1611\nfalsely,1,tempest,1611\naffliction,1,tempest,1611\nprovokes,1,tempest,1611\nfreshes,1,tempest,1611\ndid't,1,tempest,1611\nfresher,1,tempest,1611\notherwise,1,tempest,1611\nsubstitution,1,tempest,1611\ncompassed,1,tempest,1611\nwidest,1,tempest,1611\nperish,1,tempest,1611\nsixth,1,tempest,1611\nrefresh,1,tempest,1611\ntutors,1,tempest,1611\nrapier,1,tempest,1611\nRather,1,tempest,1611\nshoot,1,tempest,1611\ncreep,1,tempest,1611\naccident,1,tempest,1611\nEngland,1,tempest,1611\nDew,1,tempest,1611\nclear,1,tempest,1611\nshort,1,tempest,1611\nholp,1,tempest,1611\nLay,1,tempest,1611\ndiversity,1,tempest,1611\ndozen,1,tempest,1611\ntemper'd,1,tempest,1611\ncur,1,tempest,1611\ncut,1,tempest,1611\ndevour,1,tempest,1611\nArise,1,tempest,1611\nclosing,1,tempest,1611\ndefect,1,tempest,1611\nacre,1,tempest,1611\nhonest,1,tempest,1611\nWho's,1,tempest,1611\nFlout,1,tempest,1611\nAfric,1,tempest,1611\npeerless,1,tempest,1611\nloyal,1,tempest,1611\nsinner,1,tempest,1611\nChiefly,1,tempest,1611\ncondemn,1,tempest,1611\nrabble,1,tempest,1611\nCutting,1,tempest,1611\nprintless,1,tempest,1611\nFoot,1,tempest,1611\nliver,1,tempest,1611\nbesiege,1,tempest,1611\ngrudge,1,tempest,1611\nWhere's,1,tempest,1611\nvirtues,1,tempest,1611\nlicker,1,tempest,1611\nfalsehood,1,tempest,1611\nlegions,1,tempest,1611\nprovision,1,tempest,1611\nwindring,1,tempest,1611\nnotwithstanding,1,tempest,1611\ncalf's,1,tempest,1611\nrootedly,1,tempest,1611\nrobes,1,tempest,1611\npignuts,1,tempest,1611\nyellow,1,tempest,1611\nmanage,1,tempest,1611\nverdure,1,tempest,1611\nhave's,1,tempest,1611\nperfumed,1,tempest,1611\nboded,1,tempest,1611\nhunt,1,tempest,1611\nSitting,1,tempest,1611\nhearty,1,tempest,1611\nignoble,1,tempest,1611\nlying,1,tempest,1611\nAdrian,1,tempest,1611\nmeanders,1,tempest,1611\ncontents,1,tempest,1611\nCalls,1,tempest,1611\ndrenched,1,tempest,1611\ninward,1,tempest,1611\nbachelor,1,tempest,1611\nfairer,1,tempest,1611\nlow,1,tempest,1611\nsweat,1,tempest,1611\nfault's,1,tempest,1611\nforesees,1,tempest,1611\nsuits,1,tempest,1611\ncrept,1,tempest,1611\ngoodness,1,tempest,1611\noppress'd,1,tempest,1611\nSeem,1,tempest,1611\nmassy,1,tempest,1611\npronounced,1,tempest,1611\nSubject,1,tempest,1611\naught,1,tempest,1611\ntroth,1,tempest,1611\nfeeling,1,tempest,1611\nsouth,1,tempest,1611\npuppy,1,tempest,1611\nAEneas',1,tempest,1611\ndefend,1,tempest,1611\nwiselier,1,tempest,1611\nadore,1,tempest,1611\nhounds,1,tempest,1611\nnerves,1,tempest,1611\ntrespass,1,tempest,1611\nsports,1,tempest,1611\nfaded,1,tempest,1611\nended,1,tempest,1611\nlook'd,1,tempest,1611\nelves,1,tempest,1611\ntopsail,1,tempest,1611\ndiscretion,1,tempest,1611\narrows,1,tempest,1611\nstrengths,1,tempest,1611\npick'd,1,tempest,1611\npricks,1,tempest,1611\ndiddle,1,tempest,1611\nshapen,1,tempest,1611\neld'st,1,tempest,1611\nditty,1,tempest,1611\ncorn,1,tempest,1611\nfabric,1,tempest,1611\nvainer,1,tempest,1611\nwearied,1,tempest,1611\nchanging,1,tempest,1611\nbunches,1,tempest,1611\nincrease,1,tempest,1611\nhearken,1,tempest,1611\nmonkey,1,tempest,1611\nHe'ld,1,tempest,1611\nObey,1,tempest,1611\nHe'll,1,tempest,1611\navoid,1,tempest,1611\nterm'd,1,tempest,1611\ntherein,1,tempest,1611\nblame,1,tempest,1611\nEarth's,1,tempest,1611\nentreat,1,tempest,1611\nhuge,1,tempest,1611\nwarrants,1,tempest,1611\nheedfully,1,tempest,1611\nfuneral,1,tempest,1611\nundergone,1,tempest,1611\nCalibans,1,tempest,1611\ninviting,1,tempest,1611\nlovers,1,tempest,1611\nself,1,tempest,1611\nfurrow,1,tempest,1611\nClose,1,tempest,1611\nCry,1,tempest,1611\nindustrious,1,tempest,1611\ntide,1,tempest,1611\nmoon's,1,tempest,1611\nJust,1,tempest,1611\nmillions,1,tempest,1611\nforetold,1,tempest,1611\npenetrate,1,tempest,1611\npost,1,tempest,1611\ndistracted,1,tempest,1611\nbald,1,tempest,1611\nreport'st,1,tempest,1611\nmarmoset,1,tempest,1611\nMediterranean,1,tempest,1611\ntroll,1,tempest,1611\nhollowly,1,tempest,1611\neyeball,1,tempest,1611\noutrunning,1,tempest,1611\nsend,1,tempest,1611\nreputed,1,tempest,1611\nundo,1,tempest,1611\nalas,1,tempest,1611\nsent,1,tempest,1611\nswell,1,tempest,1611\nbade,1,tempest,1611\nCursed,1,tempest,1611\nsow't,1,tempest,1611\ngenius,1,tempest,1611\ncarriage,1,tempest,1611\nwinters,1,tempest,1611\nhowl,1,tempest,1611\nchose,1,tempest,1611\nseason,1,tempest,1611\nmatch,1,tempest,1611\nwearily,1,tempest,1611\naches,1,tempest,1611\nmisses,1,tempest,1611\nmethought,1,tempest,1611\nMistress,1,tempest,1611\nbestow,1,tempest,1611\ninvite,1,tempest,1611\nhowl'd,1,tempest,1611\nmaster's,1,tempest,1611\nEbbing,1,tempest,1611\ncoil,1,tempest,1611\nWallets,1,tempest,1611\nTwo,1,tempest,1611\n'come',1,tempest,1611\ndulling,1,tempest,1611\nuglier,1,tempest,1611\ncredulous,1,tempest,1611\nslow,1,tempest,1611\nfrantic,1,tempest,1611\nunshrubb'd,1,tempest,1611\ntorch,1,tempest,1611\nNothing,1,tempest,1611\nservants,1,tempest,1611\nupbraid,1,tempest,1611\nslumber,1,tempest,1611\n'Bove,1,tempest,1611\nCell,1,tempest,1611\nlays,1,tempest,1611\nSpring,1,tempest,1611\naspersion,1,tempest,1611\ncloudy,1,tempest,1611\nmar,1,tempest,1611\nCheerly,1,tempest,1611\nexpressing,1,tempest,1611\nsounded,1,tempest,1611\nstarts,1,tempest,1611\nButler,1,tempest,1611\ncareful,1,tempest,1611\nTowards,1,tempest,1611\nAbsolute,1,tempest,1611\n'scape,1,tempest,1611\nconduct,1,tempest,1611\nseldom,1,tempest,1611\nfeatly,1,tempest,1611\nsteeds,1,tempest,1611\nlaughed,1,tempest,1611\ndoing,1,tempest,1611\ncell's,1,tempest,1611\nratify,1,tempest,1611\nform'd,1,tempest,1611\ngot'st,1,tempest,1611\nSometime,1,tempest,1611\nsister,1,tempest,1611\nphoenix,1,tempest,1611\ntreacherous,1,tempest,1611\nparallel,1,tempest,1611\nEPILOGUE,1,tempest,1611\nHigh'st,1,tempest,1611\nDoes,1,tempest,1611\nmeeting,1,tempest,1611\nemployment,1,tempest,1611\nrights,1,tempest,1611\nabuse,1,tempest,1611\nburns,1,tempest,1611\nmerciful,1,tempest,1611\nlaps,1,tempest,1611\nkindlier,1,tempest,1611\ncowslip's,1,tempest,1611\n'Widow,1,tempest,1611\nGreat,1,tempest,1611\nMeg,1,tempest,1611\nfashion,1,tempest,1611\nTwelve,1,tempest,1611\nsever'd,1,tempest,1611\nwound,1,tempest,1611\nliege,1,tempest,1611\namain,1,tempest,1611\nmourning,1,tempest,1611\nIndeed,1,tempest,1611\nhoneycomb,1,tempest,1611\ntelling,1,tempest,1611\nsometimes,1,tempest,1611\nMarry,1,tempest,1611\njesting,1,tempest,1611\nfever,1,tempest,1611\nKneels,1,tempest,1611\nTrinculos,1,tempest,1611\nBrimful,1,tempest,1611\nattendants,1,tempest,1611\nkeepers,1,tempest,1611\nbeauty,1,tempest,1611\nmutinous,1,tempest,1611\nshroud,1,tempest,1611\nSwum,1,tempest,1611\nDone,1,tempest,1611\nseverally,1,tempest,1611\nfright,1,tempest,1611\npeer,1,tempest,1611\nextend,1,tempest,1611\nsilver,1,tempest,1611\nsurpasseth,1,tempest,1611\nlevied,1,tempest,1611\nApril,1,tempest,1611\ncurfew,1,tempest,1611\nweariness,1,tempest,1611\ncorners,1,tempest,1611\ndow,1,tempest,1611\nchatter,1,tempest,1611\nblessedly,1,tempest,1611\nDelight,1,tempest,1611\nLend,1,tempest,1611\ngoing,1,tempest,1611\nfathom,1,tempest,1611\nmop,1,tempest,1611\nExactly,1,tempest,1611\n'Mercy,1,tempest,1611\ndwells,1,tempest,1611\ntry,1,tempest,1611\ntransported,1,tempest,1611\nwildly,1,tempest,1611\nsilent,1,tempest,1611\nBarns,1,tempest,1611\nConcluding,1,tempest,1611\nmouths,1,tempest,1611\nforgiveness,1,tempest,1611\nwitness,1,tempest,1611\nenjoin'd,1,tempest,1611\nYou'ld,1,tempest,1611\nfrippery,1,tempest,1611\nisland's,1,tempest,1611\ndistemper'd,1,tempest,1611\nnutshell,1,tempest,1611\nplantation,1,tempest,1611\nconfine,1,tempest,1611\nprincely,1,tempest,1611\nwith't,1,tempest,1611\nsavages,1,tempest,1611\namazedly,1,tempest,1611\nDis,1,tempest,1611\nsulphurous,1,tempest,1611\nmajestic,1,tempest,1611\nLest,1,tempest,1611\nlake,1,tempest,1611\nflote,1,tempest,1611\nprecepts,1,tempest,1611\nweigh,1,tempest,1611\npertly,1,tempest,1611\nsudden,1,tempest,1611\nrocky,1,tempest,1611\ncarcass,1,tempest,1611\nausterely,1,tempest,1611\nglobe,1,tempest,1611\ntop,1,tempest,1611\nkibe,1,tempest,1611\ngreat'st,1,tempest,1611\nlame,1,tempest,1611\nProfesses,1,tempest,1611\nwonders,1,tempest,1611\nBring,1,tempest,1611\nUntie,1,tempest,1611\nDRAMATIS,1,tempest,1611\ninches,1,tempest,1611\nspendthrift,1,tempest,1611\nwhores,1,tempest,1611\nthatch'd,1,tempest,1611\nflout,1,tempest,1611\nshift,1,tempest,1611\nleap'd,1,tempest,1611\nhandsomely,1,tempest,1611\nfilthy,1,tempest,1611\nMum,1,tempest,1611\nburden,1,tempest,1611\ndams,1,tempest,1611\nundergo,1,tempest,1611\nprerogative,1,tempest,1611\nshins,1,tempest,1611\ntripping,1,tempest,1611\nBourn,1,tempest,1611\nToo,1,tempest,1611\nnoontide,1,tempest,1611\nBetid,1,tempest,1611\ntopping,1,tempest,1611\nflows,1,tempest,1611\nobedient,1,tempest,1611\nJester,1,tempest,1611\ndivided,1,tempest,1611\nwills,1,tempest,1611\nfrail,1,tempest,1611\n'How,1,tempest,1611\nFair,1,tempest,1611\nfends,1,tempest,1611\nsmelt,1,tempest,1611\nden,1,tempest,1611\naground,1,tempest,1611\nunmitigable,1,tempest,1611\nmis,1,tempest,1611\nstomachs,1,tempest,1611\ndarling,1,tempest,1611\ntake't,1,tempest,1611\nblasphemy,1,tempest,1611\nprincess,1,tempest,1611\ntoads,1,tempest,1611\nmid,1,tempest,1611\nLegged,1,tempest,1611\nFall,1,tempest,1611\nremorse,1,tempest,1611\nkill,1,tempest,1611\nfollow'st,1,tempest,1611\ncharity,1,tempest,1611\ntrifling,1,tempest,1611\nspectacle,1,tempest,1611\nDido's,1,tempest,1611\nHonest,1,tempest,1611\ngarners,1,tempest,1611\ndedicated,1,tempest,1611\nwoman,1,tempest,1611\njustle,1,tempest,1611\ncooling,1,tempest,1611\nearth'd,1,tempest,1611\n'mongst,1,tempest,1611\ncharmingly,1,tempest,1611\nbreathe,1,tempest,1611\nFine,1,tempest,1611\nFind,1,tempest,1611\nobedience,1,tempest,1611\noaths,1,tempest,1611\nbids,1,tempest,1611\nlack,1,tempest,1611\nleaky,1,tempest,1611\nBound,1,tempest,1611\nwombs,1,tempest,1611\nResumes,1,tempest,1611\nselves,1,tempest,1611\nfeater,1,tempest,1611\nobserving,1,tempest,1611\ndig,1,tempest,1611\nFill,1,tempest,1611\nvanish'd,1,tempest,1611\nending,1,tempest,1611\nfortunes,1,tempest,1611\nsway,1,tempest,1611\nlads,1,tempest,1611\nswam,1,tempest,1611\nsummer,1,tempest,1611\nschoolmaster,1,tempest,1611\nattended,2,tempest,1611\nevent,2,tempest,1611\nheed,2,tempest,1611\nmeet,2,tempest,1611\nquality,2,tempest,1611\nlusty,2,tempest,1611\nconfused,2,tempest,1611\nNay,2,tempest,1611\njoin,2,tempest,1611\nred,2,tempest,1611\nlibrary,2,tempest,1611\ndarest,2,tempest,1611\nguilt,2,tempest,1611\nspeech,2,tempest,1611\ntremble,2,tempest,1611\nfollowing,2,tempest,1611\nAlas,2,tempest,1611\nadvantage,2,tempest,1611\nroyal,2,tempest,1611\nstopp'd,2,tempest,1611\nboys,2,tempest,1611\nmelt,2,tempest,1611\nsingle,2,tempest,1611\nTell,2,tempest,1611\nNeptune,2,tempest,1611\npainted,2,tempest,1611\npardon'd,2,tempest,1611\nbounteous,2,tempest,1611\ndropp'd,2,tempest,1611\noffer,2,tempest,1611\ntopmast,2,tempest,1611\nangels,2,tempest,1611\nadvance,2,tempest,1611\nfury,2,tempest,1611\nwithal,2,tempest,1611\nnought,2,tempest,1611\nrye,2,tempest,1611\ntrust,2,tempest,1611\nnymph,2,tempest,1611\nsoftly,2,tempest,1611\ngraces,2,tempest,1611\nconscience,2,tempest,1611\nYoung,2,tempest,1611\nrelieve,2,tempest,1611\nbearing,2,tempest,1611\nyears,2,tempest,1611\nbackward,2,tempest,1611\nhighness,2,tempest,1611\nMuch,2,tempest,1611\nRemember,2,tempest,1611\nsloth,2,tempest,1611\ncheek,2,tempest,1611\nvoices,2,tempest,1611\nmadness,2,tempest,1611\npipe,2,tempest,1611\nhanging,2,tempest,1611\nfools,2,tempest,1611\nteach,2,tempest,1611\nsoft,2,tempest,1611\nMethinks,2,tempest,1611\nblessed,2,tempest,1611\nvisit,2,tempest,1611\nmoving,2,tempest,1611\nshe's,2,tempest,1611\ndeeper,2,tempest,1611\nsin,2,tempest,1611\nbody,2,tempest,1611\nimpossible,2,tempest,1611\nBeyond,2,tempest,1611\nthink'st,2,tempest,1611\ndeity,2,tempest,1611\nnoises,2,tempest,1611\nlanded,2,tempest,1611\nsuit,2,tempest,1611\nbeasts,2,tempest,1611\nlions,2,tempest,1611\ndisposed,2,tempest,1611\nyield,2,tempest,1611\nbringing,2,tempest,1611\ngaberdine,2,tempest,1611\nsworn,2,tempest,1611\nscout,2,tempest,1611\nwager,2,tempest,1611\nsky,2,tempest,1611\ngroans,2,tempest,1611\nwings,2,tempest,1611\nsprites,2,tempest,1611\nServant,2,tempest,1611\nsuffered,2,tempest,1611\ndaughter's,2,tempest,1611\nourselves,2,tempest,1611\nwrong,2,tempest,1611\nvineyard,2,tempest,1611\nbrain,2,tempest,1611\npiece,2,tempest,1611\ntwelve,2,tempest,1611\nways,2,tempest,1611\nbore,2,tempest,1611\nWhereof,2,tempest,1611\nSetebos,2,tempest,1611\nworthy,2,tempest,1611\nLeave,2,tempest,1611\nhumble,2,tempest,1611\nrigg'd,2,tempest,1611\nfearful,2,tempest,1611\nfeed,2,tempest,1611\nvanishes,2,tempest,1611\ncease,2,tempest,1611\ngrow,2,tempest,1611\nmasters,2,tempest,1611\nblind,2,tempest,1611\nsword,2,tempest,1611\nupon's,2,tempest,1611\nancient,2,tempest,1611\nwhisper,2,tempest,1611\nchoose,2,tempest,1611\nwink,2,tempest,1611\nkneel,2,tempest,1611\nheaved,2,tempest,1611\nknow'st,2,tempest,1611\ndies,2,tempest,1611\nanon,2,tempest,1611\ncustom,2,tempest,1611\nbulls,2,tempest,1611\nclaps,2,tempest,1611\ncunning,2,tempest,1611\nmeal,2,tempest,1611\noffice,2,tempest,1611\ngesture,2,tempest,1611\ndear'st,2,tempest,1611\ncreated,2,tempest,1611\nDraw,2,tempest,1611\ngoddess,2,tempest,1611\nDrinks,2,tempest,1611\nmorning,2,tempest,1611\nmanners,2,tempest,1611\nstrongly,2,tempest,1611\ndrinking,2,tempest,1611\naboard,2,tempest,1611\nWhile,2,tempest,1611\nhag,2,tempest,1611\ncrack,2,tempest,1611\nSolemn,2,tempest,1611\npulse,2,tempest,1611\npay,2,tempest,1611\nHim,2,tempest,1611\nshortly,2,tempest,1611\nsmile,2,tempest,1611\nHaving,2,tempest,1611\nMe,2,tempest,1611\ngentleness,2,tempest,1611\nunless,2,tempest,1611\nto't,2,tempest,1611\nOh,2,tempest,1611\ndiligence,2,tempest,1611\nHer,2,tempest,1611\nchanged,2,tempest,1611\nkinds,2,tempest,1611\nbless,2,tempest,1611\nwhole,2,tempest,1611\npinches,2,tempest,1611\nstep,2,tempest,1611\nnobly,2,tempest,1611\nDing,2,tempest,1611\nheads,2,tempest,1611\nThunder,2,tempest,1611\nvaliant,2,tempest,1611\ngave,2,tempest,1611\nstraw,2,tempest,1611\nmetal,2,tempest,1611\nbush,2,tempest,1611\nJove's,2,tempest,1611\nperdition,2,tempest,1611\nbell,2,tempest,1611\nburn,2,tempest,1611\nstruck,2,tempest,1611\nsounds,2,tempest,1611\ntricks,2,tempest,1611\nweak,2,tempest,1611\nSave,2,tempest,1611\nBehold,2,tempest,1611\nSpeak,2,tempest,1611\ngape,2,tempest,1611\nafore,2,tempest,1611\nDidst,2,tempest,1611\ncurse,2,tempest,1611\nYe,2,tempest,1611\nO'er,2,tempest,1611\nlonger,2,tempest,1611\ngown,2,tempest,1611\ndivine,2,tempest,1611\n'Twas,2,tempest,1611\nrejoice,2,tempest,1611\ncrowns,2,tempest,1611\nShapes,2,tempest,1611\nstooping,2,tempest,1611\ndeed,2,tempest,1611\nsail,2,tempest,1611\ngallows,2,tempest,1611\nyea,2,tempest,1611\ntyrant,2,tempest,1611\ngift,2,tempest,1611\nexcellent,2,tempest,1611\naid,2,tempest,1611\ndeck,2,tempest,1611\nclustering,2,tempest,1611\nsafe,2,tempest,1611\nooze,2,tempest,1611\ntongues,2,tempest,1611\nholiday,2,tempest,1611\nplayed,2,tempest,1611\ntrash,2,tempest,1611\nsuggestion,2,tempest,1611\nenforce,2,tempest,1611\ntouch'd,2,tempest,1611\nhusband,2,tempest,1611\nquaint,2,tempest,1611\nmakest,2,tempest,1611\napes,2,tempest,1611\nmemory,2,tempest,1611\nluggage,2,tempest,1611\nmove,2,tempest,1611\ndong,2,tempest,1611\ndamn'd,2,tempest,1611\ndemi,2,tempest,1611\nlo,2,tempest,1611\nabide,2,tempest,1611\nidle,2,tempest,1611\nauspicious,2,tempest,1611\nMyself,2,tempest,1611\nYea,2,tempest,1611\nlest,2,tempest,1611\ncelebrate,2,tempest,1611\nknot,2,tempest,1611\napparel,2,tempest,1611\nblue,2,tempest,1611\nready,2,tempest,1611\nshow'd,2,tempest,1611\nhot,2,tempest,1611\nharm,2,tempest,1611\nvalour,2,tempest,1611\ndiscourse,2,tempest,1611\nBrought,2,tempest,1611\naye,2,tempest,1611\nconspiracy,2,tempest,1611\nmessenger,2,tempest,1611\nperform'd,2,tempest,1611\nFull,2,tempest,1611\ndeny,2,tempest,1611\nplain,2,tempest,1611\nFirst,2,tempest,1611\ncourse,2,tempest,1611\nFury,2,tempest,1611\nform,2,tempest,1611\ncharmed,2,tempest,1611\nask,2,tempest,1611\nstranger,2,tempest,1611\npaid,2,tempest,1611\nfrown,2,tempest,1611\npoint,2,tempest,1611\nentertain'd,2,tempest,1611\ntwain,2,tempest,1611\ndreadful,2,tempest,1611\nproper,2,tempest,1611\nrough,2,tempest,1611\nmudded,2,tempest,1611\nfood,2,tempest,1611\naccidents,2,tempest,1611\nknock,2,tempest,1611\nbanquet,2,tempest,1611\nstrangeness,2,tempest,1611\nfen,2,tempest,1611\nReapers,2,tempest,1611\nbroke,2,tempest,1611\nArt,2,tempest,1611\nlead,2,tempest,1611\nspoken,2,tempest,1611\nInto,2,tempest,1611\nrope,2,tempest,1611\noccasion,2,tempest,1611\nbreathes,2,tempest,1611\ndestiny,2,tempest,1611\nmoved,2,tempest,1611\nempty,2,tempest,1611\nreport,2,tempest,1611\nTen,2,tempest,1611\nCanst,2,tempest,1611\nmischief,2,tempest,1611\nnote,2,tempest,1611\nomit,2,tempest,1611\nthinks,2,tempest,1611\nbeast,2,tempest,1611\nrare,2,tempest,1611\nrestore,2,tempest,1611\n'Ban,2,tempest,1611\nrate,2,tempest,1611\nbelow,2,tempest,1611\nhint,2,tempest,1611\nbears,2,tempest,1611\ndrunkard,2,tempest,1611\ncompanions,2,tempest,1611\nhide,2,tempest,1611\nsirrah,2,tempest,1611\nglasses,2,tempest,1611\nSoft,2,tempest,1611\nchase,2,tempest,1611\nPerform'd,2,tempest,1611\nyou'll,2,tempest,1611\nsprings,2,tempest,1611\nSet,2,tempest,1611\npresented,2,tempest,1611\nApproach,2,tempest,1611\nchins,2,tempest,1611\nTherefore,2,tempest,1611\nLord,2,tempest,1611\npowers,2,tempest,1611\nDoth,2,tempest,1611\nmaze,2,tempest,1611\ngroves,2,tempest,1611\nairy,2,tempest,1611\nairs,2,tempest,1611\nmortal,2,tempest,1611\ntowards,2,tempest,1611\nblessings,2,tempest,1611\narrived,2,tempest,1611\nfares,2,tempest,1611\nLong,2,tempest,1611\nsinging,2,tempest,1611\nmightst,2,tempest,1611\nvent,2,tempest,1611\nmerrily,2,tempest,1611\nbloody,2,tempest,1611\nCould,2,tempest,1611\npresently,2,tempest,1611\npickle,2,tempest,1611\nknown,2,tempest,1611\nI'ld,2,tempest,1611\noracle,2,tempest,1611\nwow,2,tempest,1611\ninch,2,tempest,1611\ninfect,2,tempest,1611\nmiss,2,tempest,1611\nneed,2,tempest,1611\nmountain,2,tempest,1611\nover,2,tempest,1611\nsearch,2,tempest,1611\ntrifle,2,tempest,1611\nsucks,2,tempest,1611\nlieutenant,2,tempest,1611\nAlonso,2,tempest,1611\ngrave,2,tempest,1611\nwrongs,2,tempest,1611\nThey'll,2,tempest,1611\nodd,2,tempest,1611\nretire,2,tempest,1611\ndishonour,2,tempest,1611\nwit,2,tempest,1611\nWe'll,2,tempest,1611\ncourt,2,tempest,1611\nknife,2,tempest,1611\nprime,2,tempest,1611\nbanish'd,2,tempest,1611\nbondage,2,tempest,1611\nwaking,2,tempest,1611\nmeaner,2,tempest,1611\noak,2,tempest,1611\nsubtle,2,tempest,1611\n'We,2,tempest,1611\nsinews,2,tempest,1611\nplummet,2,tempest,1611\nstick,2,tempest,1611\nhurried,2,tempest,1611\nstandard,2,tempest,1611\ngrowing,2,tempest,1611\nthemselves,2,tempest,1611\nassure,2,tempest,1611\ndanger,2,tempest,1611\nforward,2,tempest,1611\nProvidence,2,tempest,1611\nhail,2,tempest,1611\nnews,2,tempest,1611\nbaseness,2,tempest,1611\njoints,2,tempest,1611\ntaken,2,tempest,1611\nundrown'd,2,tempest,1611\nwhat's,2,tempest,1611\nrotten,2,tempest,1611\nfun,2,tempest,1611\nanger,2,tempest,1611\nperfidious,2,tempest,1611\nangry,2,tempest,1611\nwent,2,tempest,1611\ngrass,2,tempest,1611\ntable,2,tempest,1611\ndispersed,2,tempest,1611\nweapons,2,tempest,1611\nmiracle,2,tempest,1611\namends,2,tempest,1611\nwert,2,tempest,1611\nShake,2,tempest,1611\ngrant,2,tempest,1611\nrack,2,tempest,1611\ngrand,2,tempest,1611\nwore,2,tempest,1611\nride,2,tempest,1611\nSweet,2,tempest,1611\nminute,2,tempest,1611\nArgier,2,tempest,1611\nMark,2,tempest,1611\noffices,2,tempest,1611\nperfect,2,tempest,1611\npassion,2,tempest,1611\nswallow'd,2,tempest,1611\nBow,2,tempest,1611\nsavage,2,tempest,1611\ncontinue,2,tempest,1611\npreservation,2,tempest,1611\nBeats,2,tempest,1611\nwide,2,tempest,1611\npocket,2,tempest,1611\nuncle,2,tempest,1611\ncloven,2,tempest,1611\nWork,2,tempest,1611\nmeaning,2,tempest,1611\nFour,2,tempest,1611\nBravely,2,tempest,1611\nweakness,2,tempest,1611\ntame,2,tempest,1611\ntabour,2,tempest,1611\ndam,2,tempest,1611\nEach,2,tempest,1611\nWelcome,2,tempest,1611\nmischance,2,tempest,1611\ngallant,2,tempest,1611\nis't,2,tempest,1611\nconstant,2,tempest,1611\nFate,2,tempest,1611\nHymen's,2,tempest,1611\ngentlemen,2,tempest,1611\nwild,2,tempest,1611\nEvery,2,tempest,1611\npardon,2,tempest,1611\nbigger,2,tempest,1611\nNone,2,tempest,1611\nfertile,2,tempest,1611\ndistinctly,2,tempest,1611\nhollow,2,tempest,1611\nrequest,2,tempest,1611\nassist,2,tempest,1611\ncheerly,2,tempest,1611\nlives,2,tempest,1611\ncommonwealth,2,tempest,1611\ntask,2,tempest,1611\nlungs,2,tempest,1611\nalone,2,tempest,1611\ncheerful,2,tempest,1611\nalways,2,tempest,1611\nbreasts,2,tempest,1611\nkingdom,2,tempest,1611\nseed,2,tempest,1611\nwe'll,2,tempest,1611\nconfederates,2,tempest,1611\nsees,2,tempest,1611\nshapes,2,tempest,1611\nBelieve,2,tempest,1611\nTrue,2,tempest,1611\nperish'd,2,tempest,1611\nberries,2,tempest,1611\nsetting,2,tempest,1611\ntraitor,2,tempest,1611\nthrust,2,tempest,1611\nPray,2,tempest,1611\nbestir,2,tempest,1611\npour,2,tempest,1611\nKnow,2,tempest,1611\nThrough,2,tempest,1611\nprayer,2,tempest,1611\nsouls,2,tempest,1611\nremove,2,tempest,1611\nreturn,2,tempest,1611\n'Farewell,2,tempest,1611\nskull,2,tempest,1611\ngoes,2,tempest,1611\nseized,2,tempest,1611\npool,2,tempest,1611\ncouple,2,tempest,1611\nmerchant,2,tempest,1611\nebb,2,tempest,1611\nfoison,2,tempest,1611\npersuade,2,tempest,1611\neat,2,tempest,1611\nSilver,2,tempest,1611\nimagination,2,tempest,1611\nmad,2,tempest,1611\nlazy,2,tempest,1611\nreeds,2,tempest,1611\nabroad,2,tempest,1611\ncheated,2,tempest,1611\nbegins,2,tempest,1611\nlearn,2,tempest,1611\nburst,2,tempest,1611\ndread,2,tempest,1611\nheaded,2,tempest,1611\ntrim,2,tempest,1611\nsovereign,2,tempest,1611\ncomforter,2,tempest,1611\nlimit,2,tempest,1611\nharmony,2,tempest,1611\nhomage,2,tempest,1611\nwhiles,2,tempest,1611\nlass,2,tempest,1611\nBeseech,2,tempest,1611\ninherit,2,tempest,1611\nbrooks,2,tempest,1611\nsailors,2,tempest,1611\nhush,2,tempest,1611\nlist,2,tempest,1611\nfollow'd,2,tempest,1611\nmow,2,tempest,1611\nassurance,2,tempest,1611\nharpy,2,tempest,1611\ndog,2,tempest,1611\nhonour'd,2,tempest,1611\ndark,2,tempest,1611\ndare,2,tempest,1611\ntoe,2,tempest,1611\nRich,2,tempest,1611\nblessing,2,tempest,1611\ninstruction,2,tempest,1611\no'erboard,2,tempest,1611\nvex'd,2,tempest,1611\ngreatness,2,tempest,1611\nsmell,2,tempest,1611\ndew,2,tempest,1611\npronounce,2,tempest,1611\neyelids,2,tempest,1611\nten,2,tempest,1611\nhest,2,tempest,1611\ntread,2,tempest,1611\nsands,2,tempest,1611\ndin,2,tempest,1611\nwouldst,2,tempest,1611\nturn'd,2,tempest,1611\nenemy,2,tempest,1611\nanswer,3,tempest,1611\nguard,3,tempest,1611\nswords,3,tempest,1611\nc,3,tempest,1611\ndays,3,tempest,1611\nHear,3,tempest,1611\ncountry,3,tempest,1611\nwicked,3,tempest,1611\nWhether,3,tempest,1611\nlower,3,tempest,1611\nlabours,3,tempest,1611\njoy,3,tempest,1611\ndarkness,3,tempest,1611\nits,3,tempest,1611\nsort,3,tempest,1611\nsore,3,tempest,1611\npinch,3,tempest,1611\nremain,3,tempest,1611\nfriends,3,tempest,1611\nlightning,3,tempest,1611\ncast,3,tempest,1611\ngarment,3,tempest,1611\ncramps,3,tempest,1611\ndraw,3,tempest,1611\npine,3,tempest,1611\ndance,3,tempest,1611\nwords,3,tempest,1611\npile,3,tempest,1611\nMercy,3,tempest,1611\nsubjects,3,tempest,1611\nfingers,3,tempest,1611\nriches,3,tempest,1611\nmonster's,3,tempest,1611\nbound,3,tempest,1611\n'twere,3,tempest,1611\nfleet,3,tempest,1611\nwake,3,tempest,1611\nembrace,3,tempest,1611\nraised,3,tempest,1611\nmantle,3,tempest,1611\nHeavens,3,tempest,1611\ncause,3,tempest,1611\nsecond,3,tempest,1611\nstudy,3,tempest,1611\nstuff,3,tempest,1611\nplay'd,3,tempest,1611\nrelease,3,tempest,1611\ntaught,3,tempest,1611\nmocks,3,tempest,1611\nafraid,3,tempest,1611\ncommon,3,tempest,1611\nencounter,3,tempest,1611\nfeel,3,tempest,1611\npromise,3,tempest,1611\nfeet,3,tempest,1611\nbrine,3,tempest,1611\nfalse,3,tempest,1611\nwind,3,tempest,1611\nothers,3,tempest,1611\nflesh,3,tempest,1611\nPlease,3,tempest,1611\nheaven,3,tempest,1611\nharmless,3,tempest,1611\nbold,3,tempest,1611\nseest,3,tempest,1611\nFetch,3,tempest,1611\nbeating,3,tempest,1611\nvoice,3,tempest,1611\nspoke,3,tempest,1611\nneither,3,tempest,1611\npatience,3,tempest,1611\nbow,3,tempest,1611\nWhiles,3,tempest,1611\nitself,3,tempest,1611\nLo,3,tempest,1611\ninclined,3,tempest,1611\nStand,3,tempest,1611\nbutt,3,tempest,1611\nkept,3,tempest,1611\ncreature,3,tempest,1611\nsings,3,tempest,1611\ninnocent,3,tempest,1611\nWithin,3,tempest,1611\nHa,3,tempest,1611\nmeans,3,tempest,1611\npleasure,3,tempest,1611\ntribute,3,tempest,1611\nbid,3,tempest,1611\nLet's,3,tempest,1611\npox,3,tempest,1611\nague,3,tempest,1611\nquiet,3,tempest,1611\nblood,3,tempest,1611\nobey,3,tempest,1611\ncontrol,3,tempest,1611\nbehind,3,tempest,1611\ncat,3,tempest,1611\nPut,3,tempest,1611\ntwice,3,tempest,1611\nfarewell,3,tempest,1611\nSpirit,3,tempest,1611\npains,3,tempest,1611\nLike,3,tempest,1611\npitch,3,tempest,1611\ndogs,3,tempest,1611\nvirgin,3,tempest,1611\nbreath,3,tempest,1611\nforgive,3,tempest,1611\nmagic,3,tempest,1611\nstood,3,tempest,1611\ndwell,3,tempest,1611\nforget,3,tempest,1611\nhadst,3,tempest,1611\nYes,3,tempest,1611\nplaying,3,tempest,1611\nless,3,tempest,1611\nBurthen,3,tempest,1611\nthose,3,tempest,1611\npotent,3,tempest,1611\nill,3,tempest,1611\nact,3,tempest,1611\nnimble,3,tempest,1611\nforgot,3,tempest,1611\nMore,3,tempest,1611\nliberty,3,tempest,1611\nfour,3,tempest,1611\npluck,3,tempest,1611\nUnder,3,tempest,1611\nlogs,3,tempest,1611\nstrive,3,tempest,1611\nalive,3,tempest,1611\ncreatures,3,tempest,1611\nmayst,3,tempest,1611\ntouch,3,tempest,1611\nenemies,3,tempest,1611\nHath,3,tempest,1611\nhowling,3,tempest,1611\nhaving,3,tempest,1611\nwitch,3,tempest,1611\nShould,3,tempest,1611\nwatch,3,tempest,1611\noften,3,tempest,1611\nthrough,3,tempest,1611\nsilence,3,tempest,1611\nrepose,3,tempest,1611\nwaked,3,tempest,1611\npinch'd,3,tempest,1611\ntender,3,tempest,1611\nyear,3,tempest,1611\nAlack,3,tempest,1611\nstrike,3,tempest,1611\nSit,3,tempest,1611\naffections,3,tempest,1611\nfairy,3,tempest,1611\nperform,3,tempest,1611\nignorant,3,tempest,1611\nSea,3,tempest,1611\nLook,3,tempest,1611\ntempest,3,tempest,1611\ndearest,3,tempest,1611\nissue,3,tempest,1611\nblow,3,tempest,1611\nvision,3,tempest,1611\nAntonio,3,tempest,1611\namazement,3,tempest,1611\ndischarge,3,tempest,1611\nwet,3,tempest,1611\ntaste,3,tempest,1611\nsalt,3,tempest,1611\nsafely,3,tempest,1611\nstomach,3,tempest,1611\nwhy,3,tempest,1611\ncure,3,tempest,1611\nconfined,3,tempest,1611\nthird,3,tempest,1611\nstanding,3,tempest,1611\nsave,3,tempest,1611\narms,3,tempest,1611\nbetween,3,tempest,1611\nambition,3,tempest,1611\nfound,3,tempest,1611\nbrother's,3,tempest,1611\nends,3,tempest,1611\nface,3,tempest,1611\nwaters,3,tempest,1611\nTill,3,tempest,1611\ncloud,3,tempest,1611\nfortune,3,tempest,1611\nplease,3,tempest,1611\nduck,3,tempest,1611\npleased,3,tempest,1611\nfit,3,tempest,1611\nprofit,3,tempest,1611\nne'er,3,tempest,1611\nbark,3,tempest,1611\nshows,3,tempest,1611\nbite,3,tempest,1611\npatient,3,tempest,1611\nwaves,3,tempest,1611\nVery,3,tempest,1611\nfast,3,tempest,1611\nman's,3,tempest,1611\nProsper,3,tempest,1611\ncarry,3,tempest,1611\nwilt,3,tempest,1611\nholy,3,tempest,1611\nquit,3,tempest,1611\nAlthough,3,tempest,1611\nunto,3,tempest,1611\nWherefore,3,tempest,1611\nAwake,3,tempest,1611\nseas,3,tempest,1611\nelements,3,tempest,1611\nlog,3,tempest,1611\nseen,3,tempest,1611\nseem,3,tempest,1611\ntalking,3,tempest,1611\nLie,3,tempest,1611\nvessel,3,tempest,1611\ncondition,3,tempest,1611\nheavenly,3,tempest,1611\ntree,3,tempest,1611\nbeheld,3,tempest,1611\nprison,3,tempest,1611\nbarren,3,tempest,1611\nleagues,3,tempest,1611\nclouds,3,tempest,1611\nswim,3,tempest,1611\nsupplant,3,tempest,1611\nAmen,3,tempest,1611\ncredit,3,tempest,1611\nflat,3,tempest,1611\nlate,3,tempest,1611\nvirtue,3,tempest,1611\nMay,3,tempest,1611\nWithout,3,tempest,1611\nhurt,3,tempest,1611\ncontent,3,tempest,1611\nNymphs,3,tempest,1611\ndestroy,3,tempest,1611\ndry,3,tempest,1611\nshake,3,tempest,1611\nTake,3,tempest,1611\nhe'll,3,tempest,1611\ncabin,3,tempest,1611\nsoundly,3,tempest,1611\nth',3,tempest,1611\nhatches,3,tempest,1611\nsharp,3,tempest,1611\nwomen,3,tempest,1611\npity,4,tempest,1611\nsuffer,4,tempest,1611\nfor't,4,tempest,1611\nheir,4,tempest,1611\nrock,4,tempest,1611\nbones,4,tempest,1611\nroar,4,tempest,1611\nspace,4,tempest,1611\nPROSPERO'S,4,tempest,1611\ncontract,4,tempest,1611\nsight,4,tempest,1611\nlaugh,4,tempest,1611\ntruth,4,tempest,1611\nworks,4,tempest,1611\nbecome,4,tempest,1611\ncase,4,tempest,1611\nmercy,4,tempest,1611\nPoor,4,tempest,1611\nplague,4,tempest,1611\nanother,4,tempest,1611\nsomething,4,tempest,1611\nsit,4,tempest,1611\nbetter,4,tempest,1611\nagainst,4,tempest,1611\nmerry,4,tempest,1611\nJUNO,4,tempest,1611\nashore,4,tempest,1611\nmother,4,tempest,1611\nworse,4,tempest,1611\nturn,4,tempest,1611\nsun,4,tempest,1611\nHence,4,tempest,1611\nmean,4,tempest,1611\nbook,4,tempest,1611\nproject,4,tempest,1611\neach,4,tempest,1611\nI',4,tempest,1611\nWhat's,4,tempest,1611\nIII,4,tempest,1611\nAn,4,tempest,1611\nhey,4,tempest,1611\nscurvy,4,tempest,1611\nhid,4,tempest,1611\nstrangely,4,tempest,1611\nHad,4,tempest,1611\npast,4,tempest,1611\nmonstrous,4,tempest,1611\nprove,4,tempest,1611\nweep,4,tempest,1611\ngrief,4,tempest,1611\ngoodly,4,tempest,1611\npeople,4,tempest,1611\ndrowning,4,tempest,1611\nsink,4,tempest,1611\nsolemn,4,tempest,1611\ndeep,4,tempest,1611\nwreck,4,tempest,1611\nneeds,4,tempest,1611\nsack,4,tempest,1611\nhands,4,tempest,1611\nsometime,4,tempest,1611\nage,4,tempest,1611\nspell,4,tempest,1611\njerkin,4,tempest,1611\nbrought,4,tempest,1611\nplot,4,tempest,1611\nhard,4,tempest,1611\nMost,4,tempest,1611\nhalf,4,tempest,1611\nnatural,4,tempest,1611\ncall'd,4,tempest,1611\nprince,4,tempest,1611\nmidnight,4,tempest,1611\nhate,4,tempest,1611\nyare,4,tempest,1611\nye,4,tempest,1611\nright,4,tempest,1611\nfew,4,tempest,1611\nwreck'd,4,tempest,1611\nCarthage,4,tempest,1611\ngentle,4,tempest,1611\nShe,4,tempest,1611\nchild,4,tempest,1611\nyours,4,tempest,1611\nhigh,4,tempest,1611\nprize,4,tempest,1611\ndream,4,tempest,1611\ncomes,4,tempest,1611\nwoe,4,tempest,1611\ndevils,4,tempest,1611\nlet's,4,tempest,1611\nlabour,4,tempest,1611\ntrouble,4,tempest,1611\nsame,4,tempest,1611\nget,4,tempest,1611\nnear,4,tempest,1611\nbreak,4,tempest,1611\nfetch,4,tempest,1611\nbeseech,4,tempest,1611\nrecover,4,tempest,1611\nSay,4,tempest,1611\nburthen,4,tempest,1611\nheavy,4,tempest,1611\nCan,4,tempest,1611\nserve,4,tempest,1611\nduke,4,tempest,1611\ndrops,4,tempest,1611\nEven,4,tempest,1611\nglad,4,tempest,1611\ncried,4,tempest,1611\nMake,4,tempest,1611\nyond,4,tempest,1611\nfine,4,tempest,1611\nfill,4,tempest,1611\nLead,4,tempest,1611\nboatswain,4,tempest,1611\ntale,4,tempest,1611\ntalk,4,tempest,1611\nlay,4,tempest,1611\nthousand,4,tempest,1611\nstroke,4,tempest,1611\nhold,4,tempest,1611\nhome,4,tempest,1611\nClaribel,4,tempest,1611\nprayers,4,tempest,1611\nhearts,4,tempest,1611\neyed,4,tempest,1611\ndrunk,4,tempest,1611\nseek,4,tempest,1611\n'twixt,4,tempest,1611\ndrunken,4,tempest,1611\nMine,4,tempest,1611\nDido,4,tempest,1611\nperson,4,tempest,1611\nhouse,4,tempest,1611\nhours,4,tempest,1611\nroaring,4,tempest,1611\ncold,4,tempest,1611\ntrod,4,tempest,1611\nleast,4,tempest,1611\nmet,4,tempest,1611\nmakes,4,tempest,1611\nSince,4,tempest,1611\nSings,4,tempest,1611\nbooks,4,tempest,1611\nliquor,4,tempest,1611\ncatch,4,tempest,1611\nlady,4,tempest,1611\ntold,5,tempest,1611\ndrop,5,tempest,1611\npeace,5,tempest,1611\nWilt,5,tempest,1611\nthought,5,tempest,1611\nsleeps,5,tempest,1611\nbeest,5,tempest,1611\nWhom,5,tempest,1611\ncare,5,tempest,1611\ncharge,5,tempest,1611\nyourself,5,tempest,1611\ncharms,5,tempest,1611\nGive,5,tempest,1611\nsure,5,tempest,1611\ncalf,5,tempest,1611\nwarrant,5,tempest,1611\nnymphs,5,tempest,1611\nwinds,5,tempest,1611\nsubject,5,tempest,1611\nlooks,5,tempest,1611\ndoubt,5,tempest,1611\nThese,5,tempest,1611\nfellow,5,tempest,1611\nborn,5,tempest,1611\nabove,5,tempest,1611\nweather,5,tempest,1611\nhence,5,tempest,1611\nwish,5,tempest,1611\nThere's,5,tempest,1611\nFollow,5,tempest,1611\nsenses,5,tempest,1611\ntherefore,5,tempest,1611\ncanst,5,tempest,1611\nII,5,tempest,1611\nquick,5,tempest,1611\nears,5,tempest,1611\nbeyond,5,tempest,1611\nsing,5,tempest,1611\nservant,5,tempest,1611\nwench,5,tempest,1611\nho,5,tempest,1611\nloved,5,tempest,1611\nhark,5,tempest,1611\nspeaks,5,tempest,1611\ndrawn,5,tempest,1611\nfool,5,tempest,1611\nministers,5,tempest,1611\nfar,5,tempest,1611\ndelicate,5,tempest,1611\nAgainst,5,tempest,1611\nlords,5,tempest,1611\neye,5,tempest,1611\ncharm,5,tempest,1611\nseveral,5,tempest,1611\nthere's,5,tempest,1611\nmark,5,tempest,1611\nstate,5,tempest,1611\nBeing,5,tempest,1611\nonly,5,tempest,1611\nmariners,5,tempest,1611\nCeres,5,tempest,1611\ndrowned,5,tempest,1611\nhair,5,tempest,1611\nground,5,tempest,1611\ncompany,5,tempest,1611\nrich,5,tempest,1611\nkiss,5,tempest,1611\nMiranda,5,tempest,1611\ngiven,5,tempest,1611\nstrong,5,tempest,1611\nJuno,5,tempest,1611\nback,5,tempest,1611\ntogether,5,tempest,1611\npurpose,5,tempest,1611\nleave,5,tempest,1611\nafeard,5,tempest,1611\nAnother,5,tempest,1611\nthoughts,5,tempest,1611\nMariners,5,tempest,1611\nmarriage,5,tempest,1611\nhuman,5,tempest,1611\nattend,5,tempest,1611\nHe's,5,tempest,1611\ndrown'd,5,tempest,1611\nhimself,5,tempest,1611\ndie,5,tempest,1611\nmistress,6,tempest,1611\nhelp,6,tempest,1611\nMust,6,tempest,1611\ndrink,6,tempest,1611\nunder,6,tempest,1611\nsoul,6,tempest,1611\nrun,6,tempest,1611\nUpon,6,tempest,1611\nWhose,6,tempest,1611\nline,6,tempest,1611\nfull,6,tempest,1611\nfreedom,6,tempest,1611\nMonster,6,tempest,1611\ndeath,6,tempest,1611\nfurther,6,tempest,1611\nenough,6,tempest,1611\nheavens,6,tempest,1611\nthence,6,tempest,1611\nlanguage,6,tempest,1611\nmatter,6,tempest,1611\ndrown,6,tempest,1611\nhas,6,tempest,1611\nbed,6,tempest,1611\nplay,6,tempest,1611\ngot,6,tempest,1611\nIRIS,6,tempest,1611\nstory,6,tempest,1611\nha,6,tempest,1611\nlegs,6,tempest,1611\nSebastian,6,tempest,1611\nYet,6,tempest,1611\nlose,6,tempest,1611\nhang,6,tempest,1611\nopen,6,tempest,1611\npresent,6,tempest,1611\nfoot,6,tempest,1611\nthough,6,tempest,1611\nHast,6,tempest,1611\nHark,6,tempest,1611\nFRANCISCO,6,tempest,1611\nhere's,6,tempest,1611\nmaid,6,tempest,1611\nalmost,6,tempest,1611\nwonder,6,tempest,1611\nnone,6,tempest,1611\nthings,6,tempest,1611\nDost,6,tempest,1611\nmany,6,tempest,1611\nCERES,6,tempest,1611\nFerdinand,6,tempest,1611\nfather's,6,tempest,1611\nliving,6,tempest,1611\nfire,6,tempest,1611\nWere,6,tempest,1611\nfive,6,tempest,1611\nsorrow,6,tempest,1611\nwood,6,tempest,1611\nsplit,6,tempest,1611\nnext,6,tempest,1611\nfarther,6,tempest,1611\nfair,6,tempest,1611\nThat's,6,tempest,1611\nold,6,tempest,1611\ntune,6,tempest,1611\nthank,6,tempest,1611\ngreen,6,tempest,1611\nwife,6,tempest,1611\nfellows,6,tempest,1611\nsound,6,tempest,1611\nSpirits,6,tempest,1611\nBefore,6,tempest,1611\nwidow,6,tempest,1611\nDid,6,tempest,1611\nfollow,6,tempest,1611\nland,6,tempest,1611\nliest,6,tempest,1611\ncertain,6,tempest,1611\nwithout,6,tempest,1611\nremembrance,6,tempest,1611\ncrown,6,tempest,1611\nwhile,7,tempest,1611\nworld,7,tempest,1611\nNor,7,tempest,1611\nnoise,7,tempest,1611\nTheir,7,tempest,1611\nabout,7,tempest,1611\nhonour,7,tempest,1611\nservice,7,tempest,1611\nwine,7,tempest,1611\nOne,7,tempest,1611\nwant,7,tempest,1611\nThough,7,tempest,1611\nfriend,7,tempest,1611\nwast,7,tempest,1611\nname,7,tempest,1611\nin't,7,tempest,1611\ngod,7,tempest,1611\ngone,7,tempest,1611\nPrithee,7,tempest,1611\nbeen,7,tempest,1611\ntongue,7,tempest,1611\nstorm,7,tempest,1611\nbeat,7,tempest,1611\ndead,7,tempest,1611\nthyself,7,tempest,1611\nMaster,7,tempest,1611\nnoble,7,tempest,1611\nplace,7,tempest,1611\nshow,7,tempest,1611\nAre,7,tempest,1611\nKing,7,tempest,1611\nYour,7,tempest,1611\ngarments,7,tempest,1611\nend,7,tempest,1611\nbelieve,7,tempest,1611\n'Tis,7,tempest,1611\nShall,7,tempest,1611\nfall,7,tempest,1611\nfly,7,tempest,1611\neven,7,tempest,1611\nreason,7,tempest,1611\ntorment,7,tempest,1611\nSycorax,7,tempest,1611\nlast,7,tempest,1611\nnature,7,tempest,1611\nawake,7,tempest,1611\nshape,7,tempest,1611\nto,263,tempest,1611\no'er,8,tempest,1611\nlies,8,tempest,1611\nhead,8,tempest,1611\ncall,8,tempest,1611\nNot,8,tempest,1611\nDuke,8,tempest,1611\nsee,8,tempest,1611\nOur,8,tempest,1611\nking's,8,tempest,1611\nfear,8,tempest,1611\nHis,8,tempest,1611\nOn,8,tempest,1611\nGood,8,tempest,1611\nsaid,8,tempest,1611\nleft,8,tempest,1611\npart,8,tempest,1611\nwater,8,tempest,1611\nmouth,8,tempest,1611\nslave,8,tempest,1611\nstand,8,tempest,1611\nWell,8,tempest,1611\nshore,8,tempest,1611\nprithee,8,tempest,1611\ncamest,8,tempest,1611\nsweet,8,tempest,1611\near,8,tempest,1611\non't,8,tempest,1611\nlive,8,tempest,1611\ncommand,8,tempest,1611\ne'er,8,tempest,1611\ninvisible,9,tempest,1611\nrather,9,tempest,1611\nTunis,9,tempest,1611\ncame,9,tempest,1611\nlight,9,tempest,1611\nWas,9,tempest,1611\nwithin,9,tempest,1611\naway,9,tempest,1611\nOut,9,tempest,1611\nafter,9,tempest,1611\nnight,9,tempest,1611\nRe,9,tempest,1611\nlong,9,tempest,1611\nthat's,9,tempest,1611\nmoon,9,tempest,1611\nloss,9,tempest,1611\ndevil,9,tempest,1611\ngrace,9,tempest,1611\nlittle,9,tempest,1611\nfresh,9,tempest,1611\nThan,9,tempest,1611\nnew,9,tempest,1611\nACT,9,tempest,1611\nere,9,tempest,1611\nSome,9,tempest,1611\nmyself,9,tempest,1611\nThen,9,tempest,1611\nonce,9,tempest,1611\nheard,9,tempest,1611\nwork,9,tempest,1611\nword,9,tempest,1611\nthunder,9,tempest,1611\nhour,9,tempest,1611\ntill,9,tempest,1611\ncomfort,9,tempest,1611\nGonzalo,9,tempest,1611\nhope,9,tempest,1611\nswear,9,tempest,1611\nuse,9,tempest,1611\nthus,9,tempest,1611\ncry,9,tempest,1611\nspirits,9,tempest,1611\nremember,9,tempest,1611\nasleep,9,tempest,1611\npower,9,tempest,1611\nother,9,tempest,1611\npray,10,tempest,1611\ndukedom,10,tempest,1611\nwhose,10,tempest,1611\nlook,10,tempest,1611\nbear,10,tempest,1611\nearth,10,tempest,1611\nFrom,10,tempest,1611\nmind,10,tempest,1611\nstill,10,tempest,1611\npoor,10,tempest,1611\ntwo,10,tempest,1611\nmight,10,tempest,1611\nkind,10,tempest,1611\nSCENE,10,tempest,1611\na,266,tempest,1611\n',11,tempest,1611\nWould,11,tempest,1611\nThere,11,tempest,1611\nboth,11,tempest,1611\nAt,11,tempest,1611\nmusic,11,tempest,1611\nGo,11,tempest,1611\ndown,11,tempest,1611\ndoth,11,tempest,1611\nCaliban,11,tempest,1611\nlost,11,tempest,1611\nhand,11,tempest,1611\nindeed,11,tempest,1611\nbottle,11,tempest,1611\nTHE,11,tempest,1611\ndidst,11,tempest,1611\nfree,11,tempest,1611\nTEMPEST,11,tempest,1611\nheart,11,tempest,1611\nway,11,tempest,1611\nqueen,11,tempest,1611\ngreat,11,tempest,1611\nlie,11,tempest,1611\nbusiness,12,tempest,1611\nWill,12,tempest,1611\nevery,12,tempest,1611\nsaw,12,tempest,1611\nWhy,12,tempest,1611\nHere,12,tempest,1611\ndost,12,tempest,1611\nput,12,tempest,1611\n'tis,12,tempest,1611\ni',12,tempest,1611\nair,12,tempest,1611\ndear,12,tempest,1611\nlove,12,tempest,1611\nfoul,12,tempest,1611\nship,12,tempest,1611\nbefore,12,tempest,1611\ncould,12,tempest,1611\nthink,12,tempest,1611\nthine,12,tempest,1611\nthree,12,tempest,1611\nfind,12,tempest,1611\nhither,12,tempest,1611\nsleep,12,tempest,1611\ntrue,12,tempest,1611\nshalt,12,tempest,1611\nset,13,tempest,1611\nrest,13,tempest,1611\nAy,13,tempest,1611\nBe,13,tempest,1611\nenter,13,tempest,1611\nkeep,13,tempest,1611\nADRIAN,13,tempest,1611\nHave,13,tempest,1611\ninto,13,tempest,1611\nAll,13,tempest,1611\nLet,13,tempest,1611\neyes,13,tempest,1611\nlet,13,tempest,1611\nProspero,13,tempest,1611\nThy,13,tempest,1611\nbrave,14,tempest,1611\nhe's,14,tempest,1611\ntell,14,tempest,1611\nBy,14,tempest,1611\nsince,14,tempest,1611\nIt,14,tempest,1611\nWe,14,tempest,1611\nExeunt,14,tempest,1611\ndoes,14,tempest,1611\nisle,14,tempest,1611\nmade,14,tempest,1611\nSir,14,tempest,1611\nnor,14,tempest,1611\nThey,14,tempest,1611\nfish,14,tempest,1611\nwho,14,tempest,1611\nthing,14,tempest,1611\nday,14,tempest,1611\nwhom,14,tempest,1611\nfirst,14,tempest,1611\nmay,14,tempest,1611\nmen,14,tempest,1611\nbeing,14,tempest,1611\ncell,14,tempest,1611\ncannot,14,tempest,1611\nExit,14,tempest,1611\nlife,15,tempest,1611\nnothing,15,tempest,1611\nnever,15,tempest,1611\nbest,15,tempest,1611\ngo,15,tempest,1611\nforth,15,tempest,1611\nhast,15,tempest,1611\nTrinculo,15,tempest,1611\nvery,15,tempest,1611\never,15,tempest,1611\nStephano,15,tempest,1611\nof,271,tempest,1611\nbrother,16,tempest,1611\nhear,16,tempest,1611\nWho,16,tempest,1611\noff,16,tempest,1611\nWhere,16,tempest,1611\nmuch,17,tempest,1611\nNow,17,tempest,1611\ndaughter,17,tempest,1611\nbring,17,tempest,1611\nelse,17,tempest,1611\nHe,17,tempest,1611\nOr,17,tempest,1611\nSo,17,tempest,1611\ndone,17,tempest,1611\n'em,17,tempest,1611\nBoatswain,18,tempest,1611\nspeak,18,tempest,1611\nwell,18,tempest,1611\nAriel,18,tempest,1611\nWhen,18,tempest,1611\nspirit,18,tempest,1611\nmust,19,tempest,1611\ncan,19,tempest,1611\nany,19,tempest,1611\nup,19,tempest,1611\nwhere,19,tempest,1611\ncome,19,tempest,1611\nfather,19,tempest,1611\nson,20,tempest,1611\nIs,20,tempest,1611\nown,20,tempest,1611\nmaster,20,tempest,1611\ntoo,20,tempest,1611\nCome,21,tempest,1611\nAside,21,tempest,1611\nyet,21,tempest,1611\nknow,21,tempest,1611\nstrange,21,tempest,1611\nIn,22,tempest,1611\nMilan,22,tempest,1611\nout,22,tempest,1611\nisland,22,tempest,1611\nlord,23,tempest,1611\nhath,23,tempest,1611\nHow,23,tempest,1611\nNaples,23,tempest,1611\ntime,23,tempest,1611\nsome,24,tempest,1611\nWith,24,tempest,1611\nDo,24,tempest,1611\nYou,24,tempest,1611\nagain,24,tempest,1611\nhad,25,tempest,1611\ngive,25,tempest,1611\ntake,25,tempest,1611\nwhen,25,tempest,1611\nshe,26,tempest,1611\nking,26,tempest,1611\nsay,27,tempest,1611\nsea,27,tempest,1611\nan,27,tempest,1611\nart,27,tempest,1611\nsuch,28,tempest,1611\nthan,28,tempest,1611\nthese,28,tempest,1611\nWhich,28,tempest,1611\no',28,tempest,1611\none,28,tempest,1611\nOf,29,tempest,1611\nshould,29,tempest,1611\nthen,30,tempest,1611\nhow,30,tempest,1611\nNo,31,tempest,1611\nEnter,31,tempest,1611\nman,31,tempest,1611\ndid,32,tempest,1611\nfrom,33,tempest,1611\nAs,34,tempest,1611\nif,34,tempest,1611\nThis,34,tempest,1611\nthere,35,tempest,1611\nMy,35,tempest,1611\nIf,35,tempest,1611\nupon,36,tempest,1611\ngood,36,tempest,1611\nmonster,37,tempest,1611\nmake,37,tempest,1611\nmine,37,tempest,1611\nwere,37,tempest,1611\nwhat,37,tempest,1611\nFor,38,tempest,1611\nam,38,tempest,1611\nus,38,tempest,1611\nwould,38,tempest,1611\nmost,39,tempest,1611\nThat,39,tempest,1611\nor,40,tempest,1611\nBut,40,tempest,1611\nwas,41,tempest,1611\nWhat,41,tempest,1611\ntheir,42,tempest,1611\nThou,42,tempest,1611\nlike,43,tempest,1611\nour,43,tempest,1611\nFERDINAND,43,tempest,1611\nhere,45,tempest,1611\nthem,45,tempest,1611\nsir,46,tempest,1611\nwe,46,tempest,1611\nwhich,47,tempest,1611\nTRINCULO,47,tempest,1611\nat,47,tempest,1611\nALONSO,48,tempest,1611\nO,49,tempest,1611\nher,49,tempest,1611\nA,52,tempest,1611\nmore,53,tempest,1611\nshall,54,tempest,1611\nno,55,tempest,1611\nGONZALO,58,tempest,1611\nMIRANDA,58,tempest,1611\non,58,tempest,1611\nI'll,58,tempest,1611\nCALIBAN,59,tempest,1611\nby,61,tempest,1611\nnow,62,tempest,1611\nthey,63,tempest,1611\nhe,64,tempest,1611\nso,67,tempest,1611\nSTEPHANO,67,tempest,1611\nwill,68,tempest,1611\nTo,69,tempest,1611\ndo,69,tempest,1611\nANTONIO,69,tempest,1611\nare,69,tempest,1611\nARIEL,72,tempest,1611\nhim,73,tempest,1611\nbut,73,tempest,1611\nas,76,tempest,1611\nall,79,tempest,1611\nSEBASTIAN,80,tempest,1611\nthy,84,tempest,1611\nfor,91,tempest,1611\nyour,92,tempest,1611\nhis,95,tempest,1611\nhave,95,tempest,1611\nThe,97,tempest,1611\nthee,98,tempest,1611\nwith,113,tempest,1611\nit,118,tempest,1611\nand,375,tempest,1611\nbe,121,tempest,1611\nPROSPERO,129,tempest,1611\nis,132,tempest,1611\nin,140,tempest,1611\nthou,142,tempest,1611\nAnd,143,tempest,1611\nnot,148,tempest,1611\nthis,151,tempest,1611\nthat,152,tempest,1611\nme,157,tempest,1611\nthe,421,tempest,1611\nyou,189,tempest,1611\nI,447,tempest,1611\nmy,253,tempest,1611\nbrave,1,various,0\n'why,1,various,0\nframed,1,various,0\nShort,1,various,0\nhorn,1,various,0\nKing,1,various,0\nBrighter,1,various,0\ncripple,1,various,0\nmarried,1,various,0\ninfirmity,1,various,0\njoined,1,various,0\nCo,1,various,0\nLove's,1,various,0\nbare,1,various,0\nthunder,1,various,0\nFare,1,various,0\nbrawl,1,various,0\nCauser,1,various,0\nfawn'd,1,various,0\nconquer,1,various,0\nshown,1,various,0\nfairest,1,various,0\npartial,1,various,0\ngoddess,1,various,0\nUnto,1,various,0\nVows,1,various,0\ncolour'd,1,various,0\nBountiful,1,various,0\nfeather'd,1,various,0\nstay'st,1,various,0\nsick,1,various,0\nsweetly,1,various,0\nknowledge,1,various,0\nrefrain,1,various,0\nblemish'd,1,various,0\nmickle,1,various,0\nneeding,1,various,0\nV,1,various,0\ndaring,1,various,0\ndaff'd,1,various,0\nside,1,various,0\nsmiled,1,various,0\nrhetoric,1,various,0\nlonging,1,various,0\ndolefull'st,1,various,0\nX,1,various,0\ntragic,1,various,0\nFearfully,1,various,0\n'and,1,various,0\nFoul,1,various,0\ngain'd,1,various,0\nmeaning,1,various,0\nhour,1,various,0\nmorning,1,various,0\nstrongest,1,various,0\nXVII,1,various,0\nfeign,1,various,0\nhowling,1,various,0\ncomfort,1,various,0\nguess,1,various,0\nSUNDRY,1,various,0\nLeaving,1,various,0\nbullet,1,various,0\nfair'st,1,various,0\nlead,1,various,0\nrusty,1,various,0\ncock,1,various,0\nanthem,1,various,0\nWhile,1,various,0\nfriendship,1,various,0\nBetween,1,various,0\nSeemeth,1,various,0\nwatch,1,various,0\nrarity,1,various,0\ndouble,1,various,0\nrivers,1,various,0\nmuch,1,various,0\nborrow,1,various,0\nmistress,1,various,0\ntame,1,various,0\nsecrets,1,various,0\nsigh,1,various,0\nHave,1,various,0\nIII,1,various,0\nleap,1,various,0\nhope,1,various,0\nCrabbed,1,various,0\nCelestial,1,various,0\nthrough,1,various,0\nfeeble,1,various,0\nlad,1,various,0\nmadrigals,1,various,0\nAlas,1,various,0\nshepherd,1,various,0\ngallant,1,various,0\nflatters,1,various,0\ntale,1,various,0\nsmother'd,1,various,0\nname,1,various,0\ndamsel,1,various,0\nknell,1,various,0\nNOTES,1,various,0\ntalk,1,various,0\nwoman's,1,various,0\nconstant,1,various,0\nlay,1,various,0\nHearts,1,various,0\nTURTLE,1,various,0\nhang'd,1,various,0\nshadows,1,various,0\nscarce,1,various,0\nchaste,1,various,0\nwhich,1,various,0\norient,1,various,0\nran,1,various,0\njestings,1,various,0\nBe,1,various,0\nfemale,1,various,0\nbrows,1,various,0\nInconstancy,1,various,0\nmaid,1,various,0\nLean'd,1,various,0\ncastle,1,various,0\nSofter,1,various,0\npoetry,1,various,0\nThose,1,various,0\nscant,1,various,0\naddict,1,various,0\nrefresh,1,various,0\nitself,1,various,0\nban,1,various,0\nhill,1,various,0\nasunder,1,various,0\ngriefs,1,various,0\nrams,1,various,0\nshouldst,1,various,0\nassured,1,various,0\nbad,1,various,0\nbetakes,1,various,0\nsession,1,various,0\nbay,1,various,0\nbounced,1,various,0\nscene,1,various,0\ninterdict,1,various,0\nindeed,1,various,0\npardon,1,various,0\ntakest,1,various,0\nswears,1,various,0\neternity,1,various,0\nthought,1,various,0\nholy,1,various,0\n'here,1,various,0\ntreble,1,various,0\nspace,1,various,0\ncruel,1,various,0\nshort,1,various,0\nmountains,1,various,0\nosier,1,various,0\nOF,1,various,0\nkept,1,various,0\nRuthless,1,various,0\ncreature,1,various,0\n'Gainst,1,various,0\nNo,1,various,0\nseizure,1,various,0\nguiles,1,various,0\ncontending,1,various,0\ntales,1,various,0\nthinks,1,various,0\nforce,1,various,0\nsings,1,various,0\nrenying,1,various,0\nnibbler,1,various,0\nmidst,1,various,0\nhie,1,various,0\nAlthough,1,various,0\nVenus,1,various,0\njoy'd,1,various,0\nFraughted,1,various,0\nPhoenix,1,various,0\nwhere,1,various,0\nchanged,1,various,0\nunto,1,various,0\ngentle,1,various,0\nloyal,1,various,0\nAugur,1,various,0\nII,1,various,0\nargument,1,various,0\n'Wander,1,various,0\nNumber,1,various,0\nhers,1,various,0\nHerald,1,various,0\nMust,1,various,0\nIT,1,various,0\nIV,1,various,0\nIX,1,various,0\nbeats,1,various,0\nprodigal,1,various,0\nstrong,1,various,0\nflood,1,various,0\nherd,1,various,0\nwherewith,1,various,0\ndecay,1,various,0\ncoral,1,various,0\nEither,1,various,0\ngoods,1,various,0\ngivest,1,various,0\nIs,1,various,0\nIt,1,various,0\nBad,1,various,0\nblossom,1,various,0\nmourn'st,1,various,0\nwither'd,1,various,0\ncomest,1,various,0\neast,1,various,0\nDissembled,1,various,0\ndespair,1,various,0\nadded,1,various,0\nsurplice,1,various,0\nHad,1,various,0\nBeasts,1,various,0\noffer,1,various,0\nparadise,1,various,0\npast,1,various,0\nPlaying,1,various,0\npass,1,various,0\namber,1,various,0\nnaked,1,various,0\ntender,1,various,0\nvainly,1,various,0\nthings,1,various,0\nproud,1,various,0\nvelvet,1,various,0\nTrees,1,various,0\nunmeet,1,various,0\nglorious,1,various,0\nProperty,1,various,0\nVI,1,various,0\nArabian,1,various,0\nmelodious,1,various,0\nframing,1,various,0\newes,1,various,0\nmyrtles,1,various,0\nBright,1,various,0\nSitting,1,various,0\ncool,1,various,0\nsigns,1,various,0\nnought,1,various,0\nsoul,1,various,0\nJuno,1,various,0\nallure,1,various,0\nsuggest,1,various,0\nalways,1,various,0\nobey,1,various,0\ncommence,1,various,0\nbeauty's,1,various,0\nlapp'd,1,various,0\nPandion,1,various,0\nfairer,1,various,0\nadmire,1,various,0\n'Pity,1,various,0\nravish,1,various,0\ndreaming,1,various,0\nGood,1,various,0\nslain,1,various,0\nresound,1,various,0\nobsequy,1,various,0\nXV,1,various,0\nlively,1,various,0\nlies,1,various,0\nwether's,1,various,0\n'did,1,various,0\nuse,1,various,0\nivy,1,various,0\nXI,1,various,0\nClear,1,various,0\nrun,1,various,0\nsorrowing,1,various,0\nosiers,1,various,0\niron,1,various,0\nstrike,1,various,0\nsore,1,various,0\nposterity,1,various,0\nFrom,1,various,0\nDowland,1,various,0\nlearning,1,various,0\nseen,1,various,0\nMUSIC,1,various,0\nseem,1,various,0\nsits,1,various,0\nFaith's,1,various,0\njoys,1,various,0\ndown,1,various,0\nadore,1,various,0\nvadeth,1,various,0\nhills,1,various,0\nentice,1,various,0\nhounds,1,various,0\n'thy,1,various,0\nthrall,1,various,0\nUpon,1,various,0\nPack,1,various,0\nended,1,various,0\nNe'er,1,various,0\ncheeks,1,various,0\nlook'd,1,various,0\n'twixt,1,various,0\nparting,1,various,0\nclasps,1,various,0\nSpied,1,various,0\ngrief,1,various,0\nsees,1,various,0\nignorant,1,various,0\nPluck'd,1,various,0\nmisery,1,various,0\nJove's,1,various,0\nfields,1,various,0\nage's,1,various,0\npeeping,1,various,0\nXXI,1,various,0\nTherefore,1,various,0\ncommandement,1,various,0\njigs,1,various,0\ngone,1,various,0\ncost,1,various,0\nurn,1,various,0\nbell,1,various,0\nwhereas,1,various,0\nlightning,1,various,0\nLord,1,various,0\nthereof,1,various,0\nOr,1,various,0\nforgeries,1,various,0\nbelt,1,various,0\nmix'd,1,various,0\ngot,1,various,0\nsupremes,1,various,0\nCorydon,1,various,0\nDoth,1,various,0\ncap,1,various,0\nTO,1,various,0\nworser,1,various,0\ntroop,1,various,0\nvanquish'd,1,various,0\npack'd,1,various,0\nplaced,1,various,0\nPoor,1,various,0\nXIII,1,various,0\ntricks,1,various,0\nXVI,1,various,0\nstrength,1,various,0\nLost,1,various,0\nVIII,1,various,0\nmourn,1,various,0\nWHEN,1,various,0\nshepherds,1,various,0\nMild,1,various,0\nSee,1,various,0\ncry,1,various,0\nForbade,1,various,0\nsigh'd,1,various,0\nwistly,1,various,0\ndiscontent,1,various,0\ncharge,1,various,0\ndisdain,1,various,0\nweak,1,various,0\ndaylight,1,various,0\ncraft,1,various,0\nperson,1,various,0\nother's,1,various,0\nmortal,1,various,0\nsad,1,various,0\ndistincts,1,various,0\nstark,1,various,0\nfever's,1,various,0\nringing,1,various,0\nmilk,1,various,0\nsole,1,various,0\ngrove,1,various,0\nblame,1,various,0\nwiser,1,various,0\nLong,1,various,0\ncharms,1,various,0\nsinging,1,various,0\nhours,1,various,0\nPlays,1,various,0\nAir,1,various,0\nexile,1,various,0\ncurtail,1,various,0\noutburneth,1,various,0\nbait,1,various,0\nstars,1,various,0\nstrict,1,various,0\nsuffice,1,various,0\nUse,1,various,0\nkisses,1,various,0\nprayer,1,various,0\nsuddenly,1,various,0\nremove,1,various,0\nLOVE'S,1,various,0\nblushing,1,various,0\nself,1,various,0\nloudest,1,various,0\nbuds,1,various,0\nseld,1,various,0\nSenseless,1,various,0\nPersuade,1,various,0\ntwice,1,various,0\nsoothing,1,various,0\nfarewell,1,various,0\nsell,1,various,0\nkirtle,1,various,0\nend,1,various,0\nlet,1,various,0\nblush,1,various,0\ndidst,1,various,0\nbleeding,1,various,0\nlily,1,various,0\n'tis,1,various,0\nbloody,1,various,0\nbrother,1,various,0\nKeep,1,various,0\nPress,1,various,0\nplight,1,various,0\nPhilomela,1,various,0\nTHRENOS,1,various,0\ntrumpet,1,various,0\nremote,1,various,0\nuntutor'd,1,various,0\n'Farewell,1,various,0\ntoward,1,various,0\ncold,1,various,0\nAND,1,various,0\nhead,1,various,0\npresently,1,various,0\nloveless,1,various,0\nMelodious,1,various,0\ncheer,1,various,0\nXX,1,various,0\nchose,1,various,0\nseized,1,various,0\n'Twas,1,various,0\nprotestings,1,various,0\nstories,1,various,0\nfearing,1,various,0\nfoil'd,1,various,0\ntown,1,various,0\nknown,1,various,0\ngolden,1,various,0\ncalm,1,various,0\nwells,1,various,0\nappalled,1,various,0\ncall,1,various,0\nFlocks,1,various,0\npipe,1,various,0\nanother,1,various,0\nwot,1,various,0\n'Tereu,1,various,0\ncomprehend,1,various,0\nwoo,1,various,0\nattaint,1,various,0\nblow,1,various,0\nharbinger,1,various,0\nminutes,1,various,0\ncrowns,1,various,0\nEthiope,1,various,0\nteach,1,various,0\nNot,1,various,0\ntower,1,various,0\nquite,1,various,0\ncraved,1,various,0\ntoys,1,various,0\nGod,1,various,0\ncraggy,1,various,0\nfirst,1,various,0\nnature's,1,various,0\ndissembled,1,various,0\nneed,1,various,0\nstore,1,various,0\npurity,1,various,0\ni',1,various,0\nForth,1,various,0\nXIX,1,various,0\nrequiem,1,various,0\ntriumph,1,various,0\nXIV,1,various,0\nSingle,1,various,0\nDreading,1,various,0\nboar,1,various,0\nbegan,1,various,0\nblack,1,various,0\ndeer,1,various,0\nonce,1,various,0\nmoving,1,various,0\nvalleys,1,various,0\nsleep,1,various,0\nfetched,1,various,0\nMade,1,various,0\nQuickly,1,various,0\nair,1,various,0\ndivining,1,various,0\nembraced,1,various,0\ngo,1,various,0\ndeserve,1,various,0\nServe,1,various,0\ntyrant,1,various,0\ngift,1,various,0\nlays,1,various,0\nexcellent,1,various,0\nrepent,1,various,0\n'Air,1,various,0\nleave,1,various,0\ncloudy,1,various,0\nplains,1,various,0\nleft,1,various,0\nevening,1,various,0\npainting,1,various,0\nsable,1,various,0\nspirits,1,various,0\nsung,1,various,0\nwed,1,various,0\nWish'd,1,various,0\nSONNETS,1,various,0\ngain,1,various,0\nyes,1,various,0\nPaler,1,various,0\nsuccor,1,various,0\nperjury,1,various,0\nsin,1,various,0\nWrought,1,various,0\nSpenser,1,various,0\nconstrue,1,various,0\nUnless,1,various,0\nbequeath,1,various,0\ndales,1,various,0\nswearing,1,various,0\nbreed,1,various,0\nPhoebus',1,various,0\noaks,1,various,0\nturtle's,1,various,0\nsame,1,various,0\nenough,1,various,0\ndeal,1,various,0\npassage,1,various,0\ncement,1,various,0\nbrook's,1,various,0\nlording's,1,various,0\n'Twixt,1,various,0\nsmiling,1,various,0\nrenown,1,various,0\npriest,1,various,0\npluck'd,1,various,0\nsting,1,various,0\npoets,1,various,0\nTempteth,1,various,0\nnear,1,various,0\nmeetings,1,various,0\nredress,1,various,0\nthing,1,various,0\ngall,1,various,0\ncompounded,1,various,0\nyoungster,1,various,0\nvice,1,various,0\nset,1,various,0\nsake,1,various,0\ntouch'd,1,various,0\nStudy,1,various,0\nsister,1,various,0\nthrow,1,various,0\ndefence,1,various,0\nwake,1,various,0\nOutfacing,1,various,0\nburied,1,various,0\nphoenix,1,various,0\nmakest,1,various,0\nDeep,1,various,0\nyields,1,various,0\nspeed,1,various,0\noft,1,various,0\nanew,1,various,0\nfalser,1,various,0\nsuit,1,various,0\nHeart's,1,various,0\napproach,1,various,0\nbeasts,1,various,0\nah,1,various,0\nXII,1,various,0\nthyself,1,various,0\nenclosed,1,various,0\nyield,1,various,0\ncourt,1,various,0\nSince,1,various,0\nbreak,1,various,0\nshaded,1,various,0\ndried,1,various,0\ncinders,1,various,0\nsays,1,various,0\npleasant,1,various,0\nthat's,1,various,0\nthoughts,1,various,0\nProcure,1,various,0\ncures,1,various,0\nSuch,1,various,0\nloving,1,various,0\ncommend,1,various,0\nsimplicity,1,various,0\nfears,1,various,0\nthinking,1,various,0\ngay,1,various,0\nWell,1,various,0\nsworn,1,various,0\ngan,1,various,0\n'Had,1,various,0\nunseen,1,various,0\nFarewell,1,various,0\npunishment,1,various,0\nmantle,1,various,0\nbanish,1,various,0\nANSWER,1,various,0\nlooking,1,various,0\n'O,1,various,0\nheard,1,various,0\nWas,1,various,0\ncounsel,1,various,0\nhotter,1,various,0\nphysic,1,various,0\nSaw,1,various,0\nidle,1,various,0\nlark,1,various,0\nbow'd,1,various,0\nLive,1,various,0\nearth,1,various,0\ndeface,1,various,0\nwithin,1,various,0\nfiled,1,various,0\nstuds,1,various,0\ndeath's,1,various,0\nlast,1,various,0\ndisgrace,1,various,0\nlass,1,various,0\nfirmly,1,various,0\nsubtle,1,various,0\nspeeding,1,various,0\nwings,1,various,0\nthrene,1,various,0\ncredit,1,various,0\ngrounds,1,various,0\nprecurrer,1,various,0\nThine,1,various,0\nliked,1,various,0\nOther,1,various,0\ndoubt,1,various,0\ndefying,1,various,0\nEmbroider'd,1,various,0\nflameth,1,various,0\nExhale,1,various,0\nthither,1,various,0\nGreen,1,various,0\nlate,1,various,0\ncalled,1,various,0\nvow'd,1,various,0\nskips,1,various,0\nThink,1,various,0\nplay'd,1,various,0\nbrakes,1,various,0\nmoon,1,various,0\nstick,1,various,0\nnill,1,various,0\nwax,1,various,0\nsleeping,1,various,0\nVII,1,various,0\nbelieve,1,various,0\namiss,1,various,0\nrise,1,various,0\ntuned,1,various,0\nshrieking,1,various,0\nbewray'd,1,various,0\ndrives,1,various,0\nbetween,1,various,0\nReason,1,various,0\nAdon's,1,various,0\npeep,1,various,0\n'Once,1,various,0\nswains,1,various,0\nloved,1,various,0\ngrowing,1,various,0\ntaught,1,various,0\noath,1,various,0\ndevil,1,various,0\nhuman,1,various,0\nmerit,1,various,0\nGrace,1,various,0\ndefy,1,various,0\nwrong,1,various,0\nthemselves,1,various,0\nLET,1,various,0\nact,1,various,0\nfound,1,various,0\nnimble,1,various,0\npride,1,various,0\nCareless,1,various,0\nwanton,1,various,0\nforgot,1,various,0\nbias,1,various,0\nslack,1,various,0\n'Fie,1,various,0\nserve,1,various,0\nturn,1,various,0\nconfounded,1,various,0\nuntimely,1,various,0\ncontent,1,various,0\npure,1,various,0\nafraid,1,various,0\nwont,1,various,0\nBecause,1,various,0\nchorus,1,various,0\nhot,1,various,0\nown,1,various,0\ncomplain,1,various,0\nfellow,1,various,0\nways,1,various,0\nDeath,1,various,0\nspying,1,various,0\nclipp'd,1,various,0\ndaughter,1,various,0\nlullaby,1,various,0\ncursed,1,various,0\nhabit,1,various,0\neasy,1,various,0\ndamask,1,various,0\ndenying,1,various,0\nkill'd,1,various,0\nhard,1,various,0\nXVIII,1,various,0\noutward,1,various,0\nSmooth,1,various,0\nfault,1,various,0\nunlaced,1,various,0\nfix'd,1,various,0\nbrag,1,various,0\npart,1,various,0\ndog,1,various,0\nagree,1,various,0\nfear,1,various,0\nNymphs,1,various,0\nessence,1,various,0\ncrow,1,various,0\nround,1,various,0\nnightingale,1,various,0\nWooing,1,various,0\ndark,1,various,0\ngender,1,various,0\nwelcome,1,various,0\npelf,1,various,0\nfowl,1,various,0\nshallow,1,various,0\nTouches,1,various,0\nDistance,1,various,0\npale,1,various,0\ncoined,1,various,0\nworthy,1,various,0\npearl,1,various,0\nposies,1,various,0\nframe,1,various,0\nPASSIONATE,1,various,0\nMore,1,various,0\nanger,1,various,0\nweeping,1,various,0\nspleen,1,various,0\nPILGRIM,1,various,0\nhumble,1,various,0\ntreads,1,various,0\nshining,1,various,0\nruth,1,various,0\nhand,1,various,0\nsupp'd,1,various,0\ndescant,1,various,0\ndeny,1,various,0\nsupply,1,various,0\nrocks,1,various,0\nanother's,1,various,0\nclip,1,various,0\nmourners,1,various,0\nnest,1,various,0\nlame,1,various,0\nSpare,1,various,0\nplainly,1,various,0\npleasance,1,various,0\ntimely,1,various,0\ncertain,1,various,0\nlurk,1,various,0\nhalt,1,various,0\nforth,1,various,0\nVow,1,various,0\ntarriance,1,various,0\nbeguiled,1,various,0\nyoungling,1,various,0\nbring,1,various,0\ncorrupt,1,various,0\nEven,1,various,0\nUnskilful,1,various,0\nweather,1,various,0\nchoose,1,various,0\nspeaking,1,various,0\nrubbing,1,various,0\nwing,1,various,0\nTake,1,various,0\nheartless,1,various,0\nabhor,1,various,0\nplum,1,various,0\ncite,1,various,0\nunripe,1,various,0\nshalt,1,various,0\nwished,1,various,0\ntrees,1,various,0\ncried,1,various,0\nLiving,1,various,0\nevil,1,various,0\ncross,1,various,0\nsmell,1,various,0\ncabin,1,various,0\nhangs,1,various,0\nonce's,1,various,0\ndrown'd,1,various,0\nHerds,1,various,0\nhence,1,various,0\ngins,1,various,0\ndesert,1,various,0\nfigured,1,various,0\nbrim,1,various,0\nheaven,1,various,0\napt,1,various,0\nfrown,1,various,0\nSuspect,1,various,0\nlecher,1,various,0\nmutual,1,various,0\nvictor,1,various,0\nfoe,1,various,0\nfall,1,various,0\nspirit,1,various,0\nEnglishman,1,various,0\nconstancy,1,various,0\nwander,1,various,0\ntereu,1,various,0\nold,1,various,0\nPHOENIX,1,various,0\ndies,1,various,0\nwish,1,various,0\nThough,1,various,0\nkill,1,various,0\nshow,1,various,0\nalive,1,various,0\nspectacle,1,various,0\ndreadful,1,various,0\ndismal,1,various,0\nmethinks,1,various,0\nbold,1,various,0\nfragrant,1,various,0\nplease,1,various,0\nthree,1,various,0\ndefunctive,1,various,0\ncombat,1,various,0\nrings,1,various,0\nrepair,1,various,0\ndirectly,1,various,0\nwork,1,various,0\nwounds,1,various,0\neagle,1,various,0\nfroward,1,various,0\n'he,1,various,0\nthrows,1,various,0\ndated,1,various,0\nWhereupon,1,various,0\nlack,1,various,0\nhast,1,various,0\nSimple,1,various,0\nstall'd,1,various,0\ncompany,1,various,0\nworld's,1,various,0\nroses,1,various,0\nAdon,1,various,0\nword,1,various,0\nWords,1,various,0\nfavors,1,various,0\nother,1,various,0\nvoice,1,various,0\nHot,1,various,0\nconcordant,1,various,0\nunjust,1,various,0\nMars,1,various,0\nflame,1,various,0\nminute,1,various,0\nshare,1,various,0\nFlaming,1,various,0\nSorrow,1,various,0\ndoubts,1,various,0\nfresh,1,various,0\nrule,1,various,0\nturn'd,1,various,0\nwiles,1,various,0\ngazes,1,various,0\n'Mongst,1,various,0\noffice,1,various,0\ndesire,1,various,0\nTurning,1,various,0\nsharp,1,various,0\nsteep,1,various,0\ndewy,1,various,0\nhedge,1,various,0\nne'er,1,various,0\nbook,1,various,0\nswan,1,various,0\nunwed,1,various,0\nleft'st,2,various,0\nparts,2,various,0\ntime,2,various,0\nshepherd's,2,various,0\ntouch,2,various,0\nwherefore,2,various,0\npractise,2,various,0\nproffer,2,various,0\nchiefly,2,various,0\ntell,2,various,0\nmyrtle,2,various,0\ntill,2,various,0\nbroke,2,various,0\nfancy,2,various,0\nkiss,2,various,0\noften,2,various,0\nburn'd,2,various,0\nBy,2,various,0\nbrittle,2,various,0\nthousand,2,various,0\nboy,2,various,0\nsmile,2,various,0\nwild,2,various,0\nLet,2,various,0\nhold,2,various,0\nrose,2,various,0\nTruth,2,various,0\nhell,2,various,0\nmaster,2,various,0\nflocks,2,various,0\nOn,2,various,0\nFaithful,2,various,0\nfrowning,2,various,0\nwonder,2,various,0\ndoleful,2,various,0\nbed,2,various,0\nhere,2,various,0\npleasure,2,various,0\nwinter,2,various,0\nvain,2,various,0\nsighs,2,various,0\nsight,2,various,0\nsport,2,various,0\ntears,2,various,0\nAnon,2,various,0\nScarce,2,various,0\nlovely,2,various,0\nCytherea,2,various,0\nswear,2,various,0\nplants,2,various,0\ntrust,2,various,0\nthorn,2,various,0\nwounded,2,various,0\nfriends,2,various,0\n'the,2,various,0\ncare,2,various,0\nHeart,2,various,0\nwhom,2,various,0\nsong,2,various,0\nAge,2,various,0\nere,2,various,0\nditty,2,various,0\nyou,2,various,0\nlearned,2,various,0\nSave,2,various,0\njest,2,various,0\ntree,2,various,0\nThrough,2,various,0\nagain,2,various,0\nmany,2,various,0\nmyself,2,various,0\nsaw,2,various,0\npost,2,various,0\nbud,2,various,0\nNeither,2,various,0\nalas,2,various,0\nused,2,various,0\nbeen,2,various,0\ntogether,2,various,0\nmark,2,various,0\nLike,2,various,0\ncomes,2,various,0\nThey,2,various,0\nI'll,2,various,0\nsoft,2,various,0\nheaven's,2,various,0\nsaid,2,various,0\nTwo,2,various,0\ndeath,2,various,0\nbreast,2,various,0\nphoenix',2,various,0\nbefore,2,various,0\nthigh,2,various,0\ndivision,2,various,0\nbear,2,various,0\nstood,2,various,0\nvapour,2,various,0\nneeds,2,various,0\nWere,2,various,0\nsit,2,various,0\nwhat,2,various,0\ndear,2,various,0\nlong,2,various,0\nthink,2,various,0\nbetter,2,various,0\nwarlike,2,various,0\nlady's,2,various,0\nmakes,2,various,0\nam,2,various,0\ndye,2,various,0\nmove,2,various,0\nsitting,2,various,0\nmonth,2,various,0\ncrave,2,various,0\n'T,2,various,0\ncause,2,various,0\nlooks,2,various,0\nfaults,2,various,0\nlover,2,various,0\nloss,2,various,0\nMay,2,various,0\narms,2,various,0\ntrusty,2,various,0\nill,2,various,0\nspend,2,various,0\nThese,2,various,0\nfight,2,various,0\nshowed,2,various,0\nturning,2,various,0\ngrace,2,various,0\ntry,2,various,0\nwe,2,various,0\nus,2,various,0\nfalls,2,various,0\ntakes,2,various,0\nDid,2,various,0\nearthly,2,various,0\nwhite,2,various,0\nsolace,2,various,0\nWhilst,2,various,0\nlute,2,various,0\nfeed,2,various,0\ngrow,2,various,0\nout,2,various,0\nUnder,2,various,0\nrefused,2,various,0\ndame,2,various,0\nwithout,2,various,0\nground,2,various,0\nking,2,various,0\nlength,2,various,0\nwant,2,various,0\nforswore,2,various,0\nTill,2,various,0\nforsworn,2,various,0\nsaint,2,various,0\nstrive,2,various,0\ntwain,2,various,0\nwise,2,various,0\nWhat,2,various,0\nfool,2,various,0\nchastity,2,various,0\nflattering,2,various,0\noaths,2,various,0\nsense,2,various,0\nmoan,2,various,0\nfiend,2,various,0\npassing,2,various,0\never,2,various,0\nfie,2,various,0\npretty,2,various,0\nsummer,2,various,0\nright,3,various,0\nthese,3,various,0\ntold,3,various,0\npity,3,various,0\nbird,3,various,0\nmake,3,various,0\nAh,3,various,0\nBeauty,3,various,0\ngreat,3,various,0\ntake,3,various,0\nalack,3,various,0\nnay,3,various,0\nreason,3,various,0\ndoubtful,3,various,0\n'Even,3,various,0\nNone,3,various,0\ngreen,3,various,0\nevery,3,various,0\nflowers,3,various,0\nbrook,3,various,0\nalone,3,various,0\nfickle,3,various,0\nbest,3,various,0\nback,3,various,0\ncome,3,various,0\neither,3,various,0\nweep,3,various,0\nremain,3,various,0\nworld,3,various,0\nstraw,3,various,0\nTHE,3,various,0\nmust,3,various,0\ndove,3,various,0\nsound,3,various,0\nSo,3,various,0\nbent,3,various,0\nheavenly,3,various,0\nleaves,3,various,0\nlovest,3,various,0\nyears,3,various,0\nput,3,various,0\nJove,3,various,0\ngloss,3,various,0\nbade,3,various,0\npoor,3,various,0\nlie,3,various,0\nFortune,3,various,0\near,3,various,0\nlook,3,various,0\nfire,3,various,0\nnothing,3,various,0\nspite,3,various,0\nthine,3,various,0\nmerry,3,various,0\nwin,3,various,0\nstand,3,various,0\nwhy,3,various,0\nscorn,3,various,0\nlove's,3,various,0\nfled,3,various,0\nlips,3,various,0\nbeing,3,various,0\nwhen,3,various,0\nmorn,3,various,0\nloves,3,various,0\nsuch,3,various,0\nThus,3,various,0\nbeauty,3,various,0\nthose,3,various,0\ntwo,3,various,0\nWhere,3,various,0\nconceit,3,various,0\nshade,3,various,0\nspring,3,various,0\nThy,3,various,0\nup,3,various,0\nLest,3,various,0\nturtle,3,various,0\nknight,3,various,0\nHere,3,various,0\npraise,3,various,0\nshine,3,various,0\npluck,3,various,0\nfalse,3,various,0\nflower,3,various,0\nwind,3,various,0\nart,3,various,0\ntomorrow,3,various,0\ndelight,3,various,0\nseems,3,various,0\nFair,3,various,0\nshould,3,various,0\nforlorn,3,various,0\nsilly,3,various,0\nwoman,3,various,0\nhimself,3,various,0\nSweet,3,various,0\nHow,3,various,0\nfind,3,various,0\nvow,3,various,0\nlady,3,various,0\neach,4,various,0\nmade,4,various,0\nmusic,4,various,0\nneither,4,various,0\nnever,4,various,0\nhelp,4,various,0\nEvery,4,various,0\nfaith,4,various,0\neyes,4,various,0\nprove,4,various,0\nWhich,4,various,0\ntruth,4,various,0\npleasures,4,various,0\nvaded,4,various,0\nThou,4,various,0\nsay,4,various,0\nsome,4,various,0\nbroken,4,various,0\nfull,4,various,0\ndeep,4,various,0\nman,4,various,0\nmen,4,various,0\nsorrow,4,various,0\nheart,4,various,0\nlost,4,various,0\nhow,4,various,0\nThere,4,various,0\nWith,4,various,0\nsun,4,various,0\nwhether,4,various,0\npain,4,various,0\nOne,4,various,0\nhad,5,various,0\nupon,5,various,0\nnone,5,various,0\nHe,5,various,0\nLove,5,various,0\ngod,5,various,0\nwhose,5,various,0\nyouth,5,various,0\nnor,5,various,0\nsing,5,various,0\nglass,5,various,0\ntheir,5,various,0\nstill,5,various,0\nbirds,5,various,0\nor,5,various,0\nthen,5,various,0\ntrue,5,various,0\nAdonis,5,various,0\nmore,5,various,0\nYet,5,various,0\nif,5,various,0\ncannot,5,various,0\nangel,5,various,0\nshall,5,various,0\nmight,5,various,0\nthough,5,various,0\nrest,5,various,0\nhave,5,various,0\nwomen,5,various,0\nthere,6,various,0\nHer,6,various,0\neye,6,various,0\nsoon,6,various,0\nmine,6,various,0\nhear,6,various,0\nThen,6,various,0\nbreath,6,various,0\ndead,6,various,0\nsee,6,various,0\nthey,6,various,0\nfell,6,various,0\nthem,6,various,0\nlive,6,various,0\nknow,6,various,0\nWhen,6,various,0\nour,6,various,0\nfriend,6,various,0\nqueen,7,various,0\nIn,7,various,0\nyoung,7,various,0\ngood,7,various,0\ncan,7,various,0\nthus,7,various,0\nnow,7,various,0\ntongue,7,various,0\nmay,7,various,0\nat,7,various,0\nan,7,various,0\nfrom,7,various,0\naway,7,various,0\nboth,7,various,0\nthan,7,various,0\nwell,7,various,0\nO,8,various,0\nYouth,8,various,0\nday,8,various,0\nsweet,8,various,0\nquoth,8,various,0\ncould,8,various,0\ndo,8,various,0\nwould,8,various,0\ntoo,8,various,0\nare,8,various,0\nwere,8,various,0\ndoth,9,various,0\nage,9,various,0\nThe,9,various,0\nhath,9,various,0\nAs,10,various,0\nhim,10,various,0\nnight,10,various,0\nyet,10,various,0\nfair,10,various,0\nby,11,various,0\nno,11,various,0\none,11,various,0\nA,12,various,0\nMy,12,various,0\nIf,12,various,0\nShe,12,various,0\nBut,12,various,0\nthis,12,various,0\nbut,13,various,0\nAll,13,various,0\non,13,various,0\nlike,14,various,0\ndid,14,various,0\nFor,14,various,0\nhe,15,various,0\nit,15,various,0\nThat,17,various,0\nhis,17,various,0\nfor,17,various,0\nall,18,various,0\nso,18,various,0\n',20,various,0\nTo,20,various,0\nwill,21,various,0\nthou,22,various,0\nas,23,various,0\nwas,23,various,0\nthy,23,various,0\nbe,30,various,0\nthee,30,various,0\nme,32,various,0\nthat,35,various,0\nher,36,various,0\nshe,36,various,0\nmy,36,various,0\nwith,36,various,0\nAnd,37,various,0\nlove,37,various,0\nnot,41,various,0\nof,41,various,0\nis,42,various,0\nI,46,various,0\nin,49,various,0\na,55,various,0\nand,68,various,0\nto,70,various,0\nthe,106,various,0\nholding,1,kingjohn,1596\nRetaining,1,kingjohn,1596\noverbear,1,kingjohn,1596\nOppress'd,1,kingjohn,1596\nsilken,1,kingjohn,1596\nanswered,1,kingjohn,1596\npleading,1,kingjohn,1596\ndeputy,1,kingjohn,1596\ndegenerate,1,kingjohn,1596\nevent,1,kingjohn,1596\nunreprievable,1,kingjohn,1596\nembattailed,1,kingjohn,1596\nadvanced,1,kingjohn,1596\ngeneration,1,kingjohn,1596\nparchment,1,kingjohn,1596\ntoll,1,kingjohn,1596\nquality,1,kingjohn,1596\ngrovelling,1,kingjohn,1596\nmoral,1,kingjohn,1596\nsped,1,kingjohn,1596\naccordingly,1,kingjohn,1596\nimaginary,1,kingjohn,1596\nignorance,1,kingjohn,1596\nwomanish,1,kingjohn,1596\ndrawing,1,kingjohn,1596\nrelief,1,kingjohn,1596\nlamentable,1,kingjohn,1596\nc,1,kingjohn,1596\ninvisible,1,kingjohn,1596\ncrouch,1,kingjohn,1596\nconfused,1,kingjohn,1596\nreverberate,1,kingjohn,1596\nsuffer,1,kingjohn,1596\nmisplaced,1,kingjohn,1596\nO'erbearing,1,kingjohn,1596\ncutting,1,kingjohn,1596\ntaking,1,kingjohn,1596\nadvice,1,kingjohn,1596\ninfant,1,kingjohn,1596\ninfected,1,kingjohn,1596\necho,1,kingjohn,1596\nplaster,1,kingjohn,1596\nbeadle,1,kingjohn,1596\ncheer'd,1,kingjohn,1596\nyielding,1,kingjohn,1596\nrank'd,1,kingjohn,1596\nControlment,1,kingjohn,1596\nweary,1,kingjohn,1596\nHeat,1,kingjohn,1596\nSmacks,1,kingjohn,1596\ncontradict,1,kingjohn,1596\norders,1,kingjohn,1596\nEnvenom,1,kingjohn,1596\ninveterate,1,kingjohn,1596\nwrit,1,kingjohn,1596\nwish'd,1,kingjohn,1596\ndiscord,1,kingjohn,1596\nchristendom,1,kingjohn,1596\npossible,1,kingjohn,1596\ntreasure,1,kingjohn,1596\nespy,1,kingjohn,1596\nFriday,1,kingjohn,1596\nshapeless,1,kingjohn,1596\nNew,1,kingjohn,1596\nfinished,1,kingjohn,1596\no'erlook'd,1,kingjohn,1596\nPHILIP'S,1,kingjohn,1596\ntore,1,kingjohn,1596\nplagued,1,kingjohn,1596\nalack,1,kingjohn,1596\nWhether,1,kingjohn,1596\nfainting,1,kingjohn,1596\nwhirl,1,kingjohn,1596\nhasty,1,kingjohn,1596\ncannons,1,kingjohn,1596\nMessengers,1,kingjohn,1596\nglorified,1,kingjohn,1596\nbreathless,1,kingjohn,1596\nrobs,1,kingjohn,1596\nhoarding,1,kingjohn,1596\npossesseth,1,kingjohn,1596\nresign,1,kingjohn,1596\nshoulders,1,kingjohn,1596\nrob,1,kingjohn,1596\npatches,1,kingjohn,1596\ndoubtful,1,kingjohn,1596\nroi,1,kingjohn,1596\nwestern,1,kingjohn,1596\nstopp'd,1,kingjohn,1596\nWilt,1,kingjohn,1596\nhighness',1,kingjohn,1596\nscattered,1,kingjohn,1596\nroar,1,kingjohn,1596\nmuse,1,kingjohn,1596\ncounties,1,kingjohn,1596\nWomen,1,kingjohn,1596\nworshipful,1,kingjohn,1596\nundoubted,1,kingjohn,1596\nDauphin's,1,kingjohn,1596\nspeedy,1,kingjohn,1596\nmell,1,kingjohn,1596\nfangs,1,kingjohn,1596\nsuggestions,1,kingjohn,1596\nswifter,1,kingjohn,1596\nwhereupon,1,kingjohn,1596\nblustering,1,kingjohn,1596\nclears,1,kingjohn,1596\nstrengthen,1,kingjohn,1596\nlaughter,1,kingjohn,1596\nneedles,1,kingjohn,1596\nfrowning,1,kingjohn,1596\nmess,1,kingjohn,1596\nslaughter's,1,kingjohn,1596\nthorns,1,kingjohn,1596\ndash'd,1,kingjohn,1596\n'havoc,1,kingjohn,1596\nseamen,1,kingjohn,1596\nyounger,1,kingjohn,1596\nslaughter'd,1,kingjohn,1596\nunurged,1,kingjohn,1596\nextends,1,kingjohn,1596\neasier,1,kingjohn,1596\nhers,1,kingjohn,1596\nphilosophy,1,kingjohn,1596\npardon'd,1,kingjohn,1596\nuphold,1,kingjohn,1596\nSaving,1,kingjohn,1596\noverlooks,1,kingjohn,1596\ngroat,1,kingjohn,1596\ntheatre,1,kingjohn,1596\nvain,1,kingjohn,1596\nwherewith,1,kingjohn,1596\nviolent,1,kingjohn,1596\nPassing,1,kingjohn,1596\nmuzzled,1,kingjohn,1596\npurer,1,kingjohn,1596\nBlack,1,kingjohn,1596\nbraver,1,kingjohn,1596\ndisjoin'd,1,kingjohn,1596\nruffian,1,kingjohn,1596\ndisease,1,kingjohn,1596\ngrin,1,kingjohn,1596\ngrim,1,kingjohn,1596\nbraved,1,kingjohn,1596\nerrand,1,kingjohn,1596\nutterance,1,kingjohn,1596\nlearn'd,1,kingjohn,1596\nCardinal,1,kingjohn,1596\nfamiliarly,1,kingjohn,1596\nbrook,1,kingjohn,1596\nrumour,1,kingjohn,1596\nJoan,1,kingjohn,1596\ndive,1,kingjohn,1596\nrods,1,kingjohn,1596\nshifted,1,kingjohn,1596\ncommodity,1,kingjohn,1596\nCries,1,kingjohn,1596\nlooked,1,kingjohn,1596\noutscold,1,kingjohn,1596\nnaked,1,kingjohn,1596\nthirteen,1,kingjohn,1596\nmaintain,1,kingjohn,1596\ndrink,1,kingjohn,1596\nmatch'd,1,kingjohn,1596\nnought,1,kingjohn,1596\nworms,1,kingjohn,1596\ninnocency,1,kingjohn,1596\njades,1,kingjohn,1596\nthirty,1,kingjohn,1596\ninnocence,1,kingjohn,1596\nbeldams,1,kingjohn,1596\nStamps,1,kingjohn,1596\npress,1,kingjohn,1596\nsolemnized,1,kingjohn,1596\nlieu,1,kingjohn,1596\nmalicious,1,kingjohn,1596\nstrumpet,1,kingjohn,1596\nlien,1,kingjohn,1596\nUgly,1,kingjohn,1596\nconceiving,1,kingjohn,1596\npick,1,kingjohn,1596\nheedful,1,kingjohn,1596\nPour,1,kingjohn,1596\nUnyoke,1,kingjohn,1596\njuggling,1,kingjohn,1596\nNought,1,kingjohn,1596\nrated,1,kingjohn,1596\nscruple,1,kingjohn,1596\nwounded,1,kingjohn,1596\nStephen,1,kingjohn,1596\nMarried,1,kingjohn,1596\nunconstant,1,kingjohn,1596\nPERSONAE,1,kingjohn,1596\nchurchyard,1,kingjohn,1596\nproclaim,1,kingjohn,1596\nrescued,1,kingjohn,1596\nboy's,1,kingjohn,1596\ncherished,1,kingjohn,1596\ncudgell'd,1,kingjohn,1596\nspare,1,kingjohn,1596\nsaved,1,kingjohn,1596\nlightning,1,kingjohn,1596\nmingled,1,kingjohn,1596\nrub,1,kingjohn,1596\ncase,1,kingjohn,1596\nteaches,1,kingjohn,1596\nbattles,1,kingjohn,1596\nearly,1,kingjohn,1596\nRichard's,1,kingjohn,1596\ndeputies,1,kingjohn,1596\nattempt,1,kingjohn,1596\nAlps,1,kingjohn,1596\nmistook,1,kingjohn,1596\naery,1,kingjohn,1596\nspared,1,kingjohn,1596\nindirect,1,kingjohn,1596\nbreach,1,kingjohn,1596\nOnce,1,kingjohn,1596\nvast,1,kingjohn,1596\ninterrupted,1,kingjohn,1596\nadvantages,1,kingjohn,1596\nwrestling,1,kingjohn,1596\nchid,1,kingjohn,1596\ncalfs,1,kingjohn,1596\npractises,1,kingjohn,1596\nUncleanly,1,kingjohn,1596\nPyrenean,1,kingjohn,1596\nforeigners,1,kingjohn,1596\nSalute,1,kingjohn,1596\nthank'd,1,kingjohn,1596\nFellow,1,kingjohn,1596\nsadly,1,kingjohn,1596\nspies,1,kingjohn,1596\nreconciled,1,kingjohn,1596\nslept,1,kingjohn,1596\nsole,1,kingjohn,1596\nthousands,1,kingjohn,1596\nleaning,1,kingjohn,1596\nsoothest,1,kingjohn,1596\nRash,1,kingjohn,1596\ntownsmen,1,kingjohn,1596\nrelieve,1,kingjohn,1596\nExcuse,1,kingjohn,1596\nyears,1,kingjohn,1596\nCool,1,kingjohn,1596\noutside,1,kingjohn,1596\nbuffets,1,kingjohn,1596\nfulsome,1,kingjohn,1596\nbackward,1,kingjohn,1596\ninhabit,1,kingjohn,1596\nlilies,1,kingjohn,1596\ncircumstance,1,kingjohn,1596\nhammer'd,1,kingjohn,1596\nshrouds,1,kingjohn,1596\ncorner,1,kingjohn,1596\nPlains,1,kingjohn,1596\ncrying,1,kingjohn,1596\nlime,1,kingjohn,1596\nbroken,1,kingjohn,1596\nRescue,1,kingjohn,1596\nassemble,1,kingjohn,1596\nlily,1,kingjohn,1596\nboldness,1,kingjohn,1596\nhorror,1,kingjohn,1596\npurse,1,kingjohn,1596\nMercy,1,kingjohn,1596\nRemember,1,kingjohn,1596\npossessed,1,kingjohn,1596\nyearly,1,kingjohn,1596\ndrew,1,kingjohn,1596\nmeddling,1,kingjohn,1596\nsure,1,kingjohn,1596\nOnly,1,kingjohn,1596\nspurns,1,kingjohn,1596\nwants,1,kingjohn,1596\nlift,1,kingjohn,1596\npolicy,1,kingjohn,1596\nmadness,1,kingjohn,1596\nsoil,1,kingjohn,1596\ncalm,1,kingjohn,1596\ndemands,1,kingjohn,1596\npaper,1,kingjohn,1596\ncalf,1,kingjohn,1596\nstifled,1,kingjohn,1596\nuntread,1,kingjohn,1596\npipe,1,kingjohn,1596\nbragging,1,kingjohn,1596\nequality,1,kingjohn,1596\nWorcester,1,kingjohn,1596\nmaking,1,kingjohn,1596\nvisaged,1,kingjohn,1596\nconfining,1,kingjohn,1596\nrites,1,kingjohn,1596\nlikeness,1,kingjohn,1596\nbeardless,1,kingjohn,1596\nVolquessen,1,kingjohn,1596\nfools,1,kingjohn,1596\naddition,1,kingjohn,1596\nnoise,1,kingjohn,1596\nricher,1,kingjohn,1596\ntoys,1,kingjohn,1596\nAvaunt,1,kingjohn,1596\nregreet,1,kingjohn,1596\nbated,1,kingjohn,1596\nNob,1,kingjohn,1596\njeopardy,1,kingjohn,1596\npurity,1,kingjohn,1596\nlesser,1,kingjohn,1596\nDreading,1,kingjohn,1596\nslippers,1,kingjohn,1596\nWade,1,kingjohn,1596\nAloft,1,kingjohn,1596\nkin,1,kingjohn,1596\npaltry,1,kingjohn,1596\nslippery,1,kingjohn,1596\nsomething,1,kingjohn,1596\nAmazons,1,kingjohn,1596\ndefiance,1,kingjohn,1596\nmoving,1,kingjohn,1596\noftentimes,1,kingjohn,1596\ncompanies,1,kingjohn,1596\nGentle,1,kingjohn,1596\nmounts,1,kingjohn,1596\nWin,1,kingjohn,1596\nview,1,kingjohn,1596\nladies',1,kingjohn,1596\nPerchance,1,kingjohn,1596\ndeserve,1,kingjohn,1596\nuntoward,1,kingjohn,1596\noutface,1,kingjohn,1596\nseeking,1,kingjohn,1596\nwage,1,kingjohn,1596\nwaft,1,kingjohn,1596\nsunk,1,kingjohn,1596\nflatly,1,kingjohn,1596\nspheres,1,kingjohn,1596\nPembroke,1,kingjohn,1596\nsums,1,kingjohn,1596\nsunset,1,kingjohn,1596\nforage,1,kingjohn,1596\nfaithfully,1,kingjohn,1596\ncomments,1,kingjohn,1596\nBeyond,1,kingjohn,1596\n'twere,1,kingjohn,1596\nusurp'd,1,kingjohn,1596\nagent,1,kingjohn,1596\nPersever,1,kingjohn,1596\nfleet,1,kingjohn,1596\ncontaining,1,kingjohn,1596\nOffending,1,kingjohn,1596\nraileth,1,kingjohn,1596\nsaying,1,kingjohn,1596\nmonarch,1,kingjohn,1596\nvice,1,kingjohn,1596\nvirtuous,1,kingjohn,1596\nDover,1,kingjohn,1596\nCanonized,1,kingjohn,1596\nperplex,1,kingjohn,1596\nKneel,1,kingjohn,1596\ncarrying,1,kingjohn,1596\ntraveller,1,kingjohn,1596\nConfronts,1,kingjohn,1596\nsociety,1,kingjohn,1596\ntithe,1,kingjohn,1596\nchiefest,1,kingjohn,1596\nunsure,1,kingjohn,1596\nthrong,1,kingjohn,1596\n'twas,1,kingjohn,1596\nbridal,1,kingjohn,1596\nwedding,1,kingjohn,1596\nPlantagenets,1,kingjohn,1596\nrottenness,1,kingjohn,1596\npeevish,1,kingjohn,1596\ndoubtless,1,kingjohn,1596\ndisposed,1,kingjohn,1596\nscorn,1,kingjohn,1596\nwildest,1,kingjohn,1596\nThinking,1,kingjohn,1596\nunprepared,1,kingjohn,1596\nforsake,1,kingjohn,1596\nlove's,1,kingjohn,1596\nstealing,1,kingjohn,1596\ndismember,1,kingjohn,1596\ncombine,1,kingjohn,1596\nembrace,1,kingjohn,1596\nUnthread,1,kingjohn,1596\nwindy,1,kingjohn,1596\nGain,1,kingjohn,1596\nskill,1,kingjohn,1596\nPurchase,1,kingjohn,1596\nhammer,1,kingjohn,1596\napparent,1,kingjohn,1596\nWar,1,kingjohn,1596\ntopful,1,kingjohn,1596\nwince,1,kingjohn,1596\n't,1,kingjohn,1596\n'maid,1,kingjohn,1596\nqualified,1,kingjohn,1596\nequity,1,kingjohn,1596\nsecond,1,kingjohn,1596\npermit,1,kingjohn,1596\nsharpest,1,kingjohn,1596\npitiful,1,kingjohn,1596\ninstruct,1,kingjohn,1596\nscorched,1,kingjohn,1596\nunmatchable,1,kingjohn,1596\nwings,1,kingjohn,1596\nsuck,1,kingjohn,1596\ninviolable,1,kingjohn,1596\nmerciless,1,kingjohn,1596\npieces,1,kingjohn,1596\nwar's,1,kingjohn,1596\nstuff,1,kingjohn,1596\nHear'st,1,kingjohn,1596\nbetwixt,1,kingjohn,1596\nUnkind,1,kingjohn,1596\nconfronted,1,kingjohn,1596\nunreverend,1,kingjohn,1596\nstuck,1,kingjohn,1596\nabstract,1,kingjohn,1596\nminion,1,kingjohn,1596\ntaught,1,kingjohn,1596\nbrawl'd,1,kingjohn,1596\nNeeds,1,kingjohn,1596\nfelt,1,kingjohn,1596\nsly,1,kingjohn,1596\nclaim'd,1,kingjohn,1596\nskins,1,kingjohn,1596\nLeaps,1,kingjohn,1596\ncompound,1,kingjohn,1596\nbreeches,1,kingjohn,1596\nredeem,1,kingjohn,1596\nreceived,1,kingjohn,1596\nstaring,1,kingjohn,1596\nsavagery,1,kingjohn,1596\nsnow,1,kingjohn,1596\nconceit,1,kingjohn,1596\nbrain,1,kingjohn,1596\nblooded,1,kingjohn,1596\ncousin's,1,kingjohn,1596\nconfounded,1,kingjohn,1596\nLook'st,1,kingjohn,1596\ncompassion,1,kingjohn,1596\nGrow,1,kingjohn,1596\nbraced,1,kingjohn,1596\nshower,1,kingjohn,1596\nguarded,1,kingjohn,1596\nOfficers,1,kingjohn,1596\nconsequently,1,kingjohn,1596\ndifferences,1,kingjohn,1596\nmoulded,1,kingjohn,1596\nfigure,1,kingjohn,1596\nhabit,1,kingjohn,1596\ntreading,1,kingjohn,1596\nrounded,1,kingjohn,1596\ndirect,1,kingjohn,1596\nabsence,1,kingjohn,1596\nlater,1,kingjohn,1596\ninglorious,1,kingjohn,1596\nquake,1,kingjohn,1596\nruns,1,kingjohn,1596\nscold,1,kingjohn,1596\nabhorr'd,1,kingjohn,1596\nKing'd,1,kingjohn,1596\nencounter,1,kingjohn,1596\ndearly,1,kingjohn,1596\nripping,1,kingjohn,1596\nmark'd,1,kingjohn,1596\nPardon,1,kingjohn,1596\ngossiping,1,kingjohn,1596\ntaper,1,kingjohn,1596\ntoasting,1,kingjohn,1596\nexpedition,1,kingjohn,1596\nfruit,1,kingjohn,1596\nrepentent,1,kingjohn,1596\nhousehold,1,kingjohn,1596\nuntrue,1,kingjohn,1596\nwhite,1,kingjohn,1596\nswoon,1,kingjohn,1596\nworthy,1,kingjohn,1596\nWherein,1,kingjohn,1596\nproperly,1,kingjohn,1596\ndeafs,1,kingjohn,1596\nLeave,1,kingjohn,1596\n'Look,1,kingjohn,1596\nthence,1,kingjohn,1596\nirregular,1,kingjohn,1596\nWhilst,1,kingjohn,1596\nKing's,1,kingjohn,1596\ncries,1,kingjohn,1596\nspeechless,1,kingjohn,1596\nsum,1,kingjohn,1596\ncrier,1,kingjohn,1596\nperplex'd,1,kingjohn,1596\nvanity,1,kingjohn,1596\nbrace,1,kingjohn,1596\nclutch,1,kingjohn,1596\nreverence,1,kingjohn,1596\nfeed,1,kingjohn,1596\nbride,1,kingjohn,1596\nrust,1,kingjohn,1596\npainfully,1,kingjohn,1596\ncease,1,kingjohn,1596\npromise,1,kingjohn,1596\ninfinite,1,kingjohn,1596\nsaucy,1,kingjohn,1596\nswore,1,kingjohn,1596\nblind,1,kingjohn,1596\nneighbourhood,1,kingjohn,1596\nsinewed,1,kingjohn,1596\nlances,1,kingjohn,1596\nmounteth,1,kingjohn,1596\nancient,1,kingjohn,1596\nbehaviors,1,kingjohn,1596\nartillery,1,kingjohn,1596\nstuff'd,1,kingjohn,1596\nputting,1,kingjohn,1596\nFly,1,kingjohn,1596\ninfant's,1,kingjohn,1596\nshrink,1,kingjohn,1596\nRejoice,1,kingjohn,1596\ntiger,1,kingjohn,1596\nfeebled,1,kingjohn,1596\nhandiwork,1,kingjohn,1596\ndreamer,1,kingjohn,1596\nrespective,1,kingjohn,1596\nmirth,1,kingjohn,1596\nstrew'd,1,kingjohn,1596\ndoom'd,1,kingjohn,1596\nwipe,1,kingjohn,1596\nsign'd,1,kingjohn,1596\nknow'st,1,kingjohn,1596\nruin,1,kingjohn,1596\nwitnesses,1,kingjohn,1596\nseest,1,kingjohn,1596\nturned,1,kingjohn,1596\ncompromise,1,kingjohn,1596\ndirectly,1,kingjohn,1596\nlinked,1,kingjohn,1596\nmurder,1,kingjohn,1596\neagle,1,kingjohn,1596\ndispleasure,1,kingjohn,1596\nsense,1,kingjohn,1596\nwithheld,1,kingjohn,1596\ngawds,1,kingjohn,1596\nambassador,1,kingjohn,1596\nwindow,1,kingjohn,1596\nworld's,1,kingjohn,1596\nwiry,1,kingjohn,1596\nSnatch,1,kingjohn,1596\nbidding,1,kingjohn,1596\nincense,1,kingjohn,1596\nbaked,1,kingjohn,1596\nBury,1,kingjohn,1596\ndoubts,1,kingjohn,1596\nProves,1,kingjohn,1596\nbone,1,kingjohn,1596\nwash,1,kingjohn,1596\ndealt,1,kingjohn,1596\nmistake,1,kingjohn,1596\nLions,1,kingjohn,1596\ncannoneer,1,kingjohn,1596\ndesire,1,kingjohn,1596\nnaturally,1,kingjohn,1596\nrevel,1,kingjohn,1596\nsteel,1,kingjohn,1596\nfortified,1,kingjohn,1596\nendamagement,1,kingjohn,1596\ndistrust,1,kingjohn,1596\nwast,1,kingjohn,1596\nruled,1,kingjohn,1596\nmanly,1,kingjohn,1596\nchastised,1,kingjohn,1596\ntend,1,kingjohn,1596\ncolour,1,kingjohn,1596\ngripe,1,kingjohn,1596\nsceptre,1,kingjohn,1596\nDE,1,kingjohn,1596\nhungry,1,kingjohn,1596\nintelligence,1,kingjohn,1596\neverlastingly,1,kingjohn,1596\noffers,1,kingjohn,1596\npatch'd,1,kingjohn,1596\npencil,1,kingjohn,1596\ngrief's,1,kingjohn,1596\nbitter,1,kingjohn,1596\nsmokes,1,kingjohn,1596\nrefrain,1,kingjohn,1596\ntumult,1,kingjohn,1596\nbastardy,1,kingjohn,1596\nlife's,1,kingjohn,1596\nmerriment,1,kingjohn,1596\nbastards,1,kingjohn,1596\nsauciness,1,kingjohn,1596\nartificer,1,kingjohn,1596\nslaves,1,kingjohn,1596\ncudgel,1,kingjohn,1596\nmorning,1,kingjohn,1596\ndrown,1,kingjohn,1596\nsequence,1,kingjohn,1596\nmortality,1,kingjohn,1596\nLeaving,1,kingjohn,1596\nmelancholy,1,kingjohn,1596\nHold,1,kingjohn,1596\nThreaten,1,kingjohn,1596\nhas,1,kingjohn,1596\nbacks,1,kingjohn,1596\nForetell,1,kingjohn,1596\nWhile,1,kingjohn,1596\nintendeth,1,kingjohn,1596\noverthrow,1,kingjohn,1596\no'ermasterest,1,kingjohn,1596\nclimate,1,kingjohn,1596\nWhat's,1,kingjohn,1596\ncrack,1,kingjohn,1596\nDraws,1,kingjohn,1596\nutter,1,kingjohn,1596\nhorseback,1,kingjohn,1596\nrefuse,1,kingjohn,1596\nserving,1,kingjohn,1596\nfores,1,kingjohn,1596\nstreams,1,kingjohn,1596\nreligious,1,kingjohn,1596\nforesaid,1,kingjohn,1596\nPoison'd,1,kingjohn,1596\nlegitimate,1,kingjohn,1596\ninvulnerable,1,kingjohn,1596\nexercise,1,kingjohn,1596\npulse,1,kingjohn,1596\nkneeling,1,kingjohn,1596\nunsettled,1,kingjohn,1596\nperfection,1,kingjohn,1596\ncontroversy,1,kingjohn,1596\npaw,1,kingjohn,1596\ninfection,1,kingjohn,1596\nspoil,1,kingjohn,1596\ndepend,1,kingjohn,1596\nwronged,1,kingjohn,1596\nusurpingly,1,kingjohn,1596\nyouthful,1,kingjohn,1596\nbow,1,kingjohn,1596\nHim,1,kingjohn,1596\nloath,1,kingjohn,1596\nWhiles,1,kingjohn,1596\nhurly,1,kingjohn,1596\neternal,1,kingjohn,1596\nBecomes,1,kingjohn,1596\nknowing,1,kingjohn,1596\nverify,1,kingjohn,1596\nrefined,1,kingjohn,1596\nvigour,1,kingjohn,1596\nunnatural,1,kingjohn,1596\ncrumble,1,kingjohn,1596\namong,1,kingjohn,1596\ndesperate,1,kingjohn,1596\nassault,1,kingjohn,1596\nStill,1,kingjohn,1596\nsmile,1,kingjohn,1596\nspoil'd,1,kingjohn,1596\nspots,1,kingjohn,1596\nPlay,1,kingjohn,1596\nhopes,1,kingjohn,1596\nflats,1,kingjohn,1596\nbad,1,kingjohn,1596\nprodigious,1,kingjohn,1596\nNature,1,kingjohn,1596\nOurselves,1,kingjohn,1596\nsensible,1,kingjohn,1596\nperformed,1,kingjohn,1596\nperfume,1,kingjohn,1596\nbar,1,kingjohn,1596\nsupporter,1,kingjohn,1596\nspout,1,kingjohn,1596\nladyship,1,kingjohn,1596\nplea,1,kingjohn,1596\nWounded,1,kingjohn,1596\narbitrate,1,kingjohn,1596\ndenies,1,kingjohn,1596\nlisten,1,kingjohn,1596\npotents,1,kingjohn,1596\ningrateful,1,kingjohn,1596\nstrangest,1,kingjohn,1596\ncreature,1,kingjohn,1596\ndenied,1,kingjohn,1596\narchbishop,1,kingjohn,1596\npen,1,kingjohn,1596\ntranslate,1,kingjohn,1596\nsings,1,kingjohn,1596\nStanding,1,kingjohn,1596\nclosely,1,kingjohn,1596\nmortality's,1,kingjohn,1596\nhie,1,kingjohn,1596\nfinds,1,kingjohn,1596\nconjointly,1,kingjohn,1596\nwisdom,1,kingjohn,1596\nspoon,1,kingjohn,1596\nMocking,1,kingjohn,1596\nchanged,1,kingjohn,1596\nenter'd,1,kingjohn,1596\nague's,1,kingjohn,1596\ntear,1,kingjohn,1596\nSomething,1,kingjohn,1596\nmedicine,1,kingjohn,1596\nrumour's,1,kingjohn,1596\nharness'd,1,kingjohn,1596\nsovereignty,1,kingjohn,1596\nfingers',1,kingjohn,1596\nunruly,1,kingjohn,1596\nNeroes,1,kingjohn,1596\nblest,1,kingjohn,1596\nowner,1,kingjohn,1596\naweless,1,kingjohn,1596\nstrangely,1,kingjohn,1596\nhusbands,1,kingjohn,1596\nsurely,1,kingjohn,1596\ndeserved,1,kingjohn,1596\nscroyles,1,kingjohn,1596\ngoods,1,kingjohn,1596\nindenture,1,kingjohn,1596\ntribute,1,kingjohn,1596\npath,1,kingjohn,1596\nconqueror,1,kingjohn,1596\npate,1,kingjohn,1596\nrevenue,1,kingjohn,1596\nrevolting,1,kingjohn,1596\nsport,1,kingjohn,1596\nbloom,1,kingjohn,1596\ncondemned,1,kingjohn,1596\ntroops,1,kingjohn,1596\npass,1,kingjohn,1596\nprisonment,1,kingjohn,1596\nunmatched,1,kingjohn,1596\ntreachery,1,kingjohn,1596\nrankness,1,kingjohn,1596\naccoutrement,1,kingjohn,1596\nchanger,1,kingjohn,1596\ntemples,1,kingjohn,1596\ncustomed,1,kingjohn,1596\nIs't,1,kingjohn,1596\ndisplay'd,1,kingjohn,1596\nswirl,1,kingjohn,1596\nstrew,1,kingjohn,1596\nMary's,1,kingjohn,1596\nnice,1,kingjohn,1596\ncountries,1,kingjohn,1596\nVI,1,kingjohn,1596\ncull'd,1,kingjohn,1596\nmeritorious,1,kingjohn,1596\ntumbled,1,kingjohn,1596\nquantity,1,kingjohn,1596\nRising,1,kingjohn,1596\nGone,1,kingjohn,1596\nLangton,1,kingjohn,1596\nrepetitions,1,kingjohn,1596\nApennines,1,kingjohn,1596\nSt,1,kingjohn,1596\nAdieu,1,kingjohn,1596\nForgive,1,kingjohn,1596\nwarn'd,1,kingjohn,1596\ngod,1,kingjohn,1596\nCompare,1,kingjohn,1596\nworshipped,1,kingjohn,1596\ndepending,1,kingjohn,1596\nMurder,1,kingjohn,1596\nThou'rt,1,kingjohn,1596\nwrinkle,1,kingjohn,1596\nsits,1,kingjohn,1596\nweek,1,kingjohn,1596\nwelkin's,1,kingjohn,1596\nnigh,1,kingjohn,1596\nOpen,1,kingjohn,1596\nbuss,1,kingjohn,1596\nstraw,1,kingjohn,1596\ntyrannize,1,kingjohn,1596\nabsent,1,kingjohn,1596\nbrabbler,1,kingjohn,1596\nDrum,1,kingjohn,1596\nmetal,1,kingjohn,1596\ndays',1,kingjohn,1596\n'borrow'd,1,kingjohn,1596\nfields,1,kingjohn,1596\nembounded,1,kingjohn,1596\nPo,1,kingjohn,1596\nSits,1,kingjohn,1596\nsalute,1,kingjohn,1596\nbell,1,kingjohn,1596\nAcquainted,1,kingjohn,1596\nForego,1,kingjohn,1596\nsprightful,1,kingjohn,1596\ncocker'd,1,kingjohn,1596\ncanon,1,kingjohn,1596\nhymn,1,kingjohn,1596\nscruples,1,kingjohn,1596\nstruck,1,kingjohn,1596\nsincerity,1,kingjohn,1596\ncountercheque,1,kingjohn,1596\naccounts,1,kingjohn,1596\ncouch,1,kingjohn,1596\nsacrament,1,kingjohn,1596\nwedlock,1,kingjohn,1596\nlatest,1,kingjohn,1596\nwear,1,kingjohn,1596\nLife,1,kingjohn,1596\nperilous,1,kingjohn,1596\nabbey,1,kingjohn,1596\nidleness,1,kingjohn,1596\nwelkin,1,kingjohn,1596\ngape,1,kingjohn,1596\nBorn,1,kingjohn,1596\ncongeal,1,kingjohn,1596\nexcusing,1,kingjohn,1596\nDies,1,kingjohn,1596\ntempts,1,kingjohn,1596\nLift,1,kingjohn,1596\nDrawing,1,kingjohn,1596\nsuddenly,1,kingjohn,1596\nbulwark,1,kingjohn,1596\njewel,1,kingjohn,1596\ntwice,1,kingjohn,1596\npersuasion,1,kingjohn,1596\nimprison,1,kingjohn,1596\nconversant,1,kingjohn,1596\nplanks,1,kingjohn,1596\nfifth,1,kingjohn,1596\nHolds,1,kingjohn,1596\nbrooded,1,kingjohn,1596\nfriendly,1,kingjohn,1596\ntedious,1,kingjohn,1596\nungodly,1,kingjohn,1596\nvaults,1,kingjohn,1596\nbeforehand,1,kingjohn,1596\nharbour'd,1,kingjohn,1596\nbud,1,kingjohn,1596\nShowing,1,kingjohn,1596\nbeget,1,kingjohn,1596\ndangerously,1,kingjohn,1596\nswift,1,kingjohn,1596\ndespite,1,kingjohn,1596\nworship's,1,kingjohn,1596\nbuy,1,kingjohn,1596\nsubmission,1,kingjohn,1596\nfrowns,1,kingjohn,1596\nchild's,1,kingjohn,1596\nlonger,1,kingjohn,1596\nMeet,1,kingjohn,1596\nWhate'er,1,kingjohn,1596\nswine,1,kingjohn,1596\ncrack'd,1,kingjohn,1596\nshifts,1,kingjohn,1596\nenterprise,1,kingjohn,1596\nensue,1,kingjohn,1596\nWhither,1,kingjohn,1596\nsing,1,kingjohn,1596\nsavours,1,kingjohn,1596\nhovers,1,kingjohn,1596\nhourly,1,kingjohn,1596\nfulness,1,kingjohn,1596\nwells,1,kingjohn,1596\nvantage,1,kingjohn,1596\nfooting,1,kingjohn,1596\nashamed,1,kingjohn,1596\ngrandsire,1,kingjohn,1596\ntraded,1,kingjohn,1596\nlately,1,kingjohn,1596\nchafed,1,kingjohn,1596\nexteriorly,1,kingjohn,1596\nbeginning,1,kingjohn,1596\nanointed,1,kingjohn,1596\nbegin,1,kingjohn,1596\nBethink,1,kingjohn,1596\norgan,1,kingjohn,1596\npearls,1,kingjohn,1596\nuses,1,kingjohn,1596\nsolemn,1,kingjohn,1596\ndogs,1,kingjohn,1596\nnoted,1,kingjohn,1596\nsham,1,kingjohn,1596\nentertain,1,kingjohn,1596\nghost,1,kingjohn,1596\ntoothpick,1,kingjohn,1596\nimpatience,1,kingjohn,1596\ndeparted,1,kingjohn,1596\nprophetic,1,kingjohn,1596\ninstant,1,kingjohn,1596\nwretch,1,kingjohn,1596\nmood,1,kingjohn,1596\nimage,1,kingjohn,1596\nNature's,1,kingjohn,1596\nunderprop,1,kingjohn,1596\naim,1,kingjohn,1596\nsnatch'd,1,kingjohn,1596\ndoff,1,kingjohn,1596\ntyrant,1,kingjohn,1596\nunfeignedly,1,kingjohn,1596\nsatisfy,1,kingjohn,1596\nraise,1,kingjohn,1596\naid,1,kingjohn,1596\nrepeating,1,kingjohn,1596\nbattery,1,kingjohn,1596\ncurrent,1,kingjohn,1596\ncarrion,1,kingjohn,1596\nsheep,1,kingjohn,1596\nprevented,1,kingjohn,1596\nstood,1,kingjohn,1596\nwreck,1,kingjohn,1596\nmistemper'd,1,kingjohn,1596\nMaking,1,kingjohn,1596\nstoop,1,kingjohn,1596\nhearer's,1,kingjohn,1596\nbead,1,kingjohn,1596\nmurderous,1,kingjohn,1596\nbeam,1,kingjohn,1596\nlegs,1,kingjohn,1596\nbid'st,1,kingjohn,1596\nnotes,1,kingjohn,1596\nago,1,kingjohn,1596\ninfixed,1,kingjohn,1596\nwhereon,1,kingjohn,1596\ninvocation,1,kingjohn,1596\nstone,1,kingjohn,1596\nunworthy,1,kingjohn,1596\ndeal,1,kingjohn,1596\ngilt,1,kingjohn,1596\nPHILLIP,1,kingjohn,1596\ndignity,1,kingjohn,1596\ndeaf,1,kingjohn,1596\nwalled,1,kingjohn,1596\nabbots,1,kingjohn,1596\nbefriend,1,kingjohn,1596\nlent,1,kingjohn,1596\nFigured,1,kingjohn,1596\nholiday,1,kingjohn,1596\nnobleman,1,kingjohn,1596\nLast,1,kingjohn,1596\nBesides,1,kingjohn,1596\nsuggestion,1,kingjohn,1596\nstain'd,1,kingjohn,1596\nrhymes,1,kingjohn,1596\nvictors,1,kingjohn,1596\ndoes,1,kingjohn,1596\ndwarfish,1,kingjohn,1596\nicy,1,kingjohn,1596\nboast,1,kingjohn,1596\nwaist,1,kingjohn,1596\nwaits,1,kingjohn,1596\nice,1,kingjohn,1596\ntreaty,1,kingjohn,1596\nrestraint,1,kingjohn,1596\nyields,1,kingjohn,1596\nNorthamptonshire,1,kingjohn,1596\nshed,1,kingjohn,1596\nmanner,1,kingjohn,1596\nah,1,kingjohn,1596\nsupreme,1,kingjohn,1596\nNeptune's,1,kingjohn,1596\nonset,1,kingjohn,1596\ndoom,1,kingjohn,1596\ntwisted,1,kingjohn,1596\nrouse,1,kingjohn,1596\nrumours,1,kingjohn,1596\ncorrect,1,kingjohn,1596\nrealm,1,kingjohn,1596\nidiot,1,kingjohn,1596\nhospitable,1,kingjohn,1596\nthat's,1,kingjohn,1596\nwonderful,1,kingjohn,1596\ncures,1,kingjohn,1596\nfrights,1,kingjohn,1596\nox,1,kingjohn,1596\nhandercher,1,kingjohn,1596\ncomment,1,kingjohn,1596\nlo,1,kingjohn,1596\nSecond,1,kingjohn,1596\nstrain,1,kingjohn,1596\ntattering,1,kingjohn,1596\nstrait,1,kingjohn,1596\naside,1,kingjohn,1596\nthrill,1,kingjohn,1596\neyeless,1,kingjohn,1596\nuncleanly,1,kingjohn,1596\nmote,1,kingjohn,1596\nItalian,1,kingjohn,1596\nmisbegotten,1,kingjohn,1596\nwrinkled,1,kingjohn,1596\nTold,1,kingjohn,1596\nwhereof,1,kingjohn,1596\nFortune's,1,kingjohn,1596\ncarriages,1,kingjohn,1596\ncollected,1,kingjohn,1596\nbirthrights,1,kingjohn,1596\ncraker,1,kingjohn,1596\nhuntsmen,1,kingjohn,1596\nincessantly,1,kingjohn,1596\n'Where,1,kingjohn,1596\naccount,1,kingjohn,1596\nMyself,1,kingjohn,1596\nsufficed,1,kingjohn,1596\nsmilest,1,kingjohn,1596\nstudies,1,kingjohn,1596\ntemper,1,kingjohn,1596\nage,1,kingjohn,1596\no'ercast,1,kingjohn,1596\nstout,1,kingjohn,1596\nchallenged,1,kingjohn,1596\nimpediment,1,kingjohn,1596\nenjoys,1,kingjohn,1596\nle,1,kingjohn,1596\nHostility,1,kingjohn,1596\nYes,1,kingjohn,1596\ndrift,1,kingjohn,1596\nbeholding,1,kingjohn,1596\nThrust,1,kingjohn,1596\nachieved,1,kingjohn,1596\nample,1,kingjohn,1596\nsemblance,1,kingjohn,1596\nDesiring,1,kingjohn,1596\nGrief,1,kingjohn,1596\ndispose,1,kingjohn,1596\nafternoon,1,kingjohn,1596\nknot,1,kingjohn,1596\nspend,1,kingjohn,1596\nWeakness,1,kingjohn,1596\nroundure,1,kingjohn,1596\nviolet,1,kingjohn,1596\nsuspected,1,kingjohn,1596\nsightless,1,kingjohn,1596\nlock'd,1,kingjohn,1596\nbetime,1,kingjohn,1596\ngreater,1,kingjohn,1596\npriories,1,kingjohn,1596\nnimble,1,kingjohn,1596\nknew,1,kingjohn,1596\nsupremacy,1,kingjohn,1596\ndisjoining,1,kingjohn,1596\nForwearied,1,kingjohn,1596\ncommandment,1,kingjohn,1596\nshow'd,1,kingjohn,1596\nscatter'd,1,kingjohn,1596\nclamours,1,kingjohn,1596\njourney,1,kingjohn,1596\nacquaint,1,kingjohn,1596\nbristle,1,kingjohn,1596\nvalueless,1,kingjohn,1596\nFresh,1,kingjohn,1596\nBeen,1,kingjohn,1596\nsun's,1,kingjohn,1596\nunbegotten,1,kingjohn,1596\nconversion,1,kingjohn,1596\nwasteful,1,kingjohn,1596\nchoice,1,kingjohn,1596\nhark,1,kingjohn,1596\ntailor's,1,kingjohn,1596\nhardly,1,kingjohn,1596\nvalour,1,kingjohn,1596\nSeeing,1,kingjohn,1596\nhavoc,1,kingjohn,1596\nramping,1,kingjohn,1596\nconsummate,1,kingjohn,1596\ntransgression,1,kingjohn,1596\nhare,1,kingjohn,1596\nenfranchisement,1,kingjohn,1596\nunmannerly,1,kingjohn,1596\nhowe'er,1,kingjohn,1596\nstrangle,1,kingjohn,1596\nsmith,1,kingjohn,1596\nplume,1,kingjohn,1596\nindigest,1,kingjohn,1596\nMost,1,kingjohn,1596\nweeks,1,kingjohn,1596\nreasonable,1,kingjohn,1596\npeering,1,kingjohn,1596\nstring,1,kingjohn,1596\ncontrolment,1,kingjohn,1596\nkeen,1,kingjohn,1596\nspleens,1,kingjohn,1596\nmadcap,1,kingjohn,1596\nhug,1,kingjohn,1596\npull,1,kingjohn,1596\nhue,1,kingjohn,1596\ncrow,1,kingjohn,1596\nChristian,1,kingjohn,1596\ndivinely,1,kingjohn,1596\nkingly,1,kingjohn,1596\nPlainly,1,kingjohn,1596\nnearer,1,kingjohn,1596\ninflaming,1,kingjohn,1596\nquarter'd,1,kingjohn,1596\nsubmit,1,kingjohn,1596\nnation,1,kingjohn,1596\nfashion'd,1,kingjohn,1596\nperform'd,1,kingjohn,1596\nhusband's,1,kingjohn,1596\nRead,1,kingjohn,1596\nCourage,1,kingjohn,1596\nfaintly,1,kingjohn,1596\nsignal,1,kingjohn,1596\nconsume,1,kingjohn,1596\nreach,1,kingjohn,1596\nfour,1,kingjohn,1596\ndraws,1,kingjohn,1596\nthreaten'd,1,kingjohn,1596\nprovided,1,kingjohn,1596\npraise,1,kingjohn,1596\nCain,1,kingjohn,1596\nInfortunate,1,kingjohn,1596\nperpetual,1,kingjohn,1596\nexcuse,1,kingjohn,1596\nacquaintance,1,kingjohn,1596\nguardian,1,kingjohn,1596\npluck,1,kingjohn,1596\ndisallow,1,kingjohn,1596\nvengeance,1,kingjohn,1596\nPalestine,1,kingjohn,1596\nfootsteps,1,kingjohn,1596\nweeps,1,kingjohn,1596\noccasions,1,kingjohn,1596\nabhor,1,kingjohn,1596\nabbeys,1,kingjohn,1596\nplum,1,kingjohn,1596\nimpatient,1,kingjohn,1596\ndragons',1,kingjohn,1596\nbank'd,1,kingjohn,1596\nbestained,1,kingjohn,1596\nBend,1,kingjohn,1596\ndominions,1,kingjohn,1596\npair,1,kingjohn,1596\nship,1,kingjohn,1596\nBell,1,kingjohn,1596\nhangs,1,kingjohn,1596\ndelight,1,kingjohn,1596\nspit,1,kingjohn,1596\nvoluntaries,1,kingjohn,1596\nsoe'er,1,kingjohn,1596\nPuts,1,kingjohn,1596\noutrage,1,kingjohn,1596\nmended,1,kingjohn,1596\ntrunks,1,kingjohn,1596\nmoney,1,kingjohn,1596\ntemporize,1,kingjohn,1596\nHusband,1,kingjohn,1596\nmock,1,kingjohn,1596\nchastise,1,kingjohn,1596\nprofound,1,kingjohn,1596\nstrive,1,kingjohn,1596\nurgest,1,kingjohn,1596\nshakes,1,kingjohn,1596\nscorn'st,1,kingjohn,1596\nowed,1,kingjohn,1596\nmetropolis,1,kingjohn,1596\ninfer,1,kingjohn,1596\nStays,1,kingjohn,1596\nunfenced,1,kingjohn,1596\ngarnish,1,kingjohn,1596\ncombat,1,kingjohn,1596\nproper,1,kingjohn,1596\npetitions,1,kingjohn,1596\nexcept,1,kingjohn,1596\ngentry,1,kingjohn,1596\nconsideration,1,kingjohn,1596\nbloodiest,1,kingjohn,1596\nimportance,1,kingjohn,1596\nfood,1,kingjohn,1596\ncontain,1,kingjohn,1596\nexcess,1,kingjohn,1596\nobject,1,kingjohn,1596\npush,1,kingjohn,1596\nfresh,1,kingjohn,1596\nsojourn'd,1,kingjohn,1596\nLame,1,kingjohn,1596\nsworest,1,kingjohn,1596\nye,1,kingjohn,1596\nransacking,1,kingjohn,1596\nerror,1,kingjohn,1596\nsuspire,1,kingjohn,1596\nlock,1,kingjohn,1596\ndenounce,1,kingjohn,1596\nalchemist,1,kingjohn,1596\nApproaching,1,kingjohn,1596\nBlood,1,kingjohn,1596\nsecret,1,kingjohn,1596\nforcibly,1,kingjohn,1596\ntresses,1,kingjohn,1596\nbeggars,1,kingjohn,1596\nworkmen,1,kingjohn,1596\nunbruised,1,kingjohn,1596\ntrick,1,kingjohn,1596\ninquire,1,kingjohn,1596\nprate,1,kingjohn,1596\ndeadly,1,kingjohn,1596\nfew,1,kingjohn,1596\nApt,1,kingjohn,1596\nfee,1,kingjohn,1596\nbeggary,1,kingjohn,1596\nfed,1,kingjohn,1596\narras,1,kingjohn,1596\nMisery's,1,kingjohn,1596\nAte,1,kingjohn,1596\nbehavior,1,kingjohn,1596\nsecondary,1,kingjohn,1596\nLymoges,1,kingjohn,1596\nAcknowledge,1,kingjohn,1596\nvisited,1,kingjohn,1596\nunneighbourly,1,kingjohn,1596\nPossess'd,1,kingjohn,1596\nfoundation,1,kingjohn,1596\nconfirmers,1,kingjohn,1596\nStoop,1,kingjohn,1596\nCreatures,1,kingjohn,1596\nhazard,1,kingjohn,1596\nenjoy,1,kingjohn,1596\ngain'd,1,kingjohn,1596\nstrongest,1,kingjohn,1596\nmerrier,1,kingjohn,1596\nmoves,1,kingjohn,1596\nprecedent,1,kingjohn,1596\nlead,1,kingjohn,1596\njaws,1,kingjohn,1596\nLucifer,1,kingjohn,1596\nheight,1,kingjohn,1596\nodouriferous,1,kingjohn,1596\nnobler,1,kingjohn,1596\nwreck'd,1,kingjohn,1596\nnods,1,kingjohn,1596\nfat,1,kingjohn,1596\nLeaves,1,kingjohn,1596\nyesterday,1,kingjohn,1596\ndisplay,1,kingjohn,1596\nrattle,1,kingjohn,1596\nborrow,1,kingjohn,1596\nlacking,1,kingjohn,1596\nlean,1,kingjohn,1596\nfrenzy,1,kingjohn,1596\nleap,1,kingjohn,1596\njustice,1,kingjohn,1596\nwhispers,1,kingjohn,1596\ntried,1,kingjohn,1596\ndiscolour'd,1,kingjohn,1596\ntarre,1,kingjohn,1596\nthrough,1,kingjohn,1596\neducation,1,kingjohn,1596\nBedlam,1,kingjohn,1596\nlong'd,1,kingjohn,1596\ncheats,1,kingjohn,1596\nmurderer's,1,kingjohn,1596\nglorify,1,kingjohn,1596\nbreathes,1,kingjohn,1596\ngarments,1,kingjohn,1596\nbreeds,1,kingjohn,1596\ndestiny,1,kingjohn,1596\nincurable,1,kingjohn,1596\nsecurely,1,kingjohn,1596\nmain,1,kingjohn,1596\ndiffidence,1,kingjohn,1596\nmoved,1,kingjohn,1596\nexpected,1,kingjohn,1596\nBecome,1,kingjohn,1596\nshameful,1,kingjohn,1596\nfreeze,1,kingjohn,1596\ninside,1,kingjohn,1596\nventure,1,kingjohn,1596\nalbeit,1,kingjohn,1596\nswallowing,1,kingjohn,1596\nglow,1,kingjohn,1596\nrequital,1,kingjohn,1596\nSpoke,1,kingjohn,1596\nempty,1,kingjohn,1596\ncanker'd,1,kingjohn,1596\ntokens,1,kingjohn,1596\nhill,1,kingjohn,1596\nmousing,1,kingjohn,1596\nforehead,1,kingjohn,1596\nshouldst,1,kingjohn,1596\nundeserved,1,kingjohn,1596\nprisons,1,kingjohn,1596\nmischief,1,kingjohn,1596\nantique,1,kingjohn,1596\nclamour,1,kingjohn,1596\nretired,1,kingjohn,1596\nrolling,1,kingjohn,1596\nunwarily,1,kingjohn,1596\nrape,1,kingjohn,1596\nwilfully,1,kingjohn,1596\nsmallest,1,kingjohn,1596\npawn'd,1,kingjohn,1596\nboisterously,1,kingjohn,1596\nseizure,1,kingjohn,1596\nElse,1,kingjohn,1596\ndeposed,1,kingjohn,1596\ntends,1,kingjohn,1596\nenvy,1,kingjohn,1596\nPaying,1,kingjohn,1596\nproverb,1,kingjohn,1596\nbeast,1,kingjohn,1596\ngauntlets,1,kingjohn,1596\nretreat,1,kingjohn,1596\ndoleful,1,kingjohn,1596\nimminent,1,kingjohn,1596\nscroll,1,kingjohn,1596\npresages,1,kingjohn,1596\nexpedition's,1,kingjohn,1596\nHang,1,kingjohn,1596\nconquer'd,1,kingjohn,1596\nunstained,1,kingjohn,1596\ngently,1,kingjohn,1596\npenny,1,kingjohn,1596\nrainbow,1,kingjohn,1596\nexhalation,1,kingjohn,1596\nformless,1,kingjohn,1596\ngivest,1,kingjohn,1596\nproudly,1,kingjohn,1596\ncuring,1,kingjohn,1596\nclergymen,1,kingjohn,1596\ndaily,1,kingjohn,1596\ninterrogatories,1,kingjohn,1596\nremedy,1,kingjohn,1596\nrash,1,kingjohn,1596\nbrazen,1,kingjohn,1596\nbeard,1,kingjohn,1596\nbravely,1,kingjohn,1596\nestate,1,kingjohn,1596\nlimited,1,kingjohn,1596\netc,1,kingjohn,1596\neffusion,1,kingjohn,1596\nblunt,1,kingjohn,1596\nblew,1,kingjohn,1596\ncandle,1,kingjohn,1596\nsorrows',1,kingjohn,1596\nbanners,1,kingjohn,1596\nAlack,1,kingjohn,1596\nsirrah,1,kingjohn,1596\nburthens,1,kingjohn,1596\nchaps,1,kingjohn,1596\ndangers,1,kingjohn,1596\nWear,1,kingjohn,1596\nwandering,1,kingjohn,1596\nmaul,1,kingjohn,1596\nadventure,1,kingjohn,1596\nwritten,1,kingjohn,1596\nexcused,1,kingjohn,1596\nalter,1,kingjohn,1596\nEmbrace,1,kingjohn,1596\npicked,1,kingjohn,1596\narguments,1,kingjohn,1596\nmount,1,kingjohn,1596\naffections,1,kingjohn,1596\nquickly,1,kingjohn,1596\nbequeath'd,1,kingjohn,1596\nFurther,1,kingjohn,1596\nglue,1,kingjohn,1596\nescaped,1,kingjohn,1596\nperform,1,kingjohn,1596\ncoronation,1,kingjohn,1596\nwho's,1,kingjohn,1596\nAdd,1,kingjohn,1596\nordinance,1,kingjohn,1596\nevermore,1,kingjohn,1596\nmasque,1,kingjohn,1596\nseveral,1,kingjohn,1596\nquarter,1,kingjohn,1596\nsplendor,1,kingjohn,1596\nPeter,1,kingjohn,1596\nUnswear,1,kingjohn,1596\nbesmear'd,1,kingjohn,1596\nWill't,1,kingjohn,1596\nknighted,1,kingjohn,1596\nassaileth,1,kingjohn,1596\nrevive,1,kingjohn,1596\ninjustice,1,kingjohn,1596\nbethump'd,1,kingjohn,1596\ngeneral,1,kingjohn,1596\nappointment,1,kingjohn,1596\nspurn,1,kingjohn,1596\nembracing,1,kingjohn,1596\nscath,1,kingjohn,1596\ndevice,1,kingjohn,1596\nairy,1,kingjohn,1596\nset'st,1,kingjohn,1596\nstrife,1,kingjohn,1596\nreigns,1,kingjohn,1596\nleaves,1,kingjohn,1596\ncharitable,1,kingjohn,1596\nbleeds,1,kingjohn,1596\nstart,1,kingjohn,1596\nconclusion,1,kingjohn,1596\ncreditor,1,kingjohn,1596\nknave,1,kingjohn,1596\nflinty,1,kingjohn,1596\nhalting,1,kingjohn,1596\nlioness,1,kingjohn,1596\nsacrifices,1,kingjohn,1596\nRemembers,1,kingjohn,1596\nGovern,1,kingjohn,1596\nsnarleth,1,kingjohn,1596\npurposed,1,kingjohn,1596\nslowly,1,kingjohn,1596\nHither,1,kingjohn,1596\nobservation,1,kingjohn,1596\nmale,1,kingjohn,1596\nindifferency,1,kingjohn,1596\nbeads,1,kingjohn,1596\nhumorous,1,kingjohn,1596\ntackle,1,kingjohn,1596\nconfidence,1,kingjohn,1596\nanvil,1,kingjohn,1596\nbraying,1,kingjohn,1596\nkeeper,1,kingjohn,1596\ninsolent,1,kingjohn,1596\nbloods,1,kingjohn,1596\nUncle,1,kingjohn,1596\nregiments,1,kingjohn,1596\nCould,1,kingjohn,1596\nrepeats,1,kingjohn,1596\nunhair'd,1,kingjohn,1596\ndearest,1,kingjohn,1596\nBearing,1,kingjohn,1596\nchief,1,kingjohn,1596\nthroughout,1,kingjohn,1596\nunattempted,1,kingjohn,1596\nmark,1,kingjohn,1596\nmunition,1,kingjohn,1596\nson's,1,kingjohn,1596\nExterior,1,kingjohn,1596\ncrimson,1,kingjohn,1596\nthick,1,kingjohn,1596\nI'ld,1,kingjohn,1596\nafflicted,1,kingjohn,1596\nwoe,1,kingjohn,1596\nblot,1,kingjohn,1596\nsteeps,1,kingjohn,1596\nAny,1,kingjohn,1596\nRichmond,1,kingjohn,1596\nCrave,1,kingjohn,1596\nvein,1,kingjohn,1596\nforsook,1,kingjohn,1596\nlet's,1,kingjohn,1596\nbecause,1,kingjohn,1596\nflatter,1,kingjohn,1596\nminutes,1,kingjohn,1596\ngreatest,1,kingjohn,1596\nhusbandless,1,kingjohn,1596\nlabour,1,kingjohn,1596\nbeside,1,kingjohn,1596\nvictorious,1,kingjohn,1596\nshoulder,1,kingjohn,1596\nordain,1,kingjohn,1596\ndisrobe,1,kingjohn,1596\nCounts,1,kingjohn,1596\nusing,1,kingjohn,1596\nmountain,1,kingjohn,1596\narch,1,kingjohn,1596\nseal'd,1,kingjohn,1596\namazement,1,kingjohn,1596\nhigher,1,kingjohn,1596\nperemptory,1,kingjohn,1596\nbleak,1,kingjohn,1596\nResolveth,1,kingjohn,1596\nsearch,1,kingjohn,1596\nTalks,1,kingjohn,1596\nperusing,1,kingjohn,1596\ncircumference,1,kingjohn,1596\nordinary,1,kingjohn,1596\nsightly,1,kingjohn,1596\nborrow'd,1,kingjohn,1596\nwantonness,1,kingjohn,1596\nuttered,1,kingjohn,1596\nfist,1,kingjohn,1596\nWhatever,1,kingjohn,1596\nletters,1,kingjohn,1596\ncasket,1,kingjohn,1596\nscribbled,1,kingjohn,1596\nLEWIS's,1,kingjohn,1596\ningrate,1,kingjohn,1596\nmockery,1,kingjohn,1596\ndiscarded,1,kingjohn,1596\nfills,1,kingjohn,1596\nexamined,1,kingjohn,1596\ndesires,1,kingjohn,1596\nGiving,1,kingjohn,1596\nmaintain'd,1,kingjohn,1596\nBequeath,1,kingjohn,1596\nones,1,kingjohn,1596\nstain,1,kingjohn,1596\nbear'st,1,kingjohn,1596\napish,1,kingjohn,1596\nsans,1,kingjohn,1596\nCommander,1,kingjohn,1596\nFound,1,kingjohn,1596\nbequeath,1,kingjohn,1596\nbanks,1,kingjohn,1596\nDyed,1,kingjohn,1596\nproves,1,kingjohn,1596\nbreed,1,kingjohn,1596\nlosing,1,kingjohn,1596\nslight,1,kingjohn,1596\ntroublesome,1,kingjohn,1596\ndesolation,1,kingjohn,1596\nopinion,1,kingjohn,1596\nrenown,1,kingjohn,1596\ndisturb'd,1,kingjohn,1596\nGracing,1,kingjohn,1596\nLiker,1,kingjohn,1596\nresisting,1,kingjohn,1596\nsale,1,kingjohn,1596\ncontemplation,1,kingjohn,1596\nstalk,1,kingjohn,1596\nAwakes,1,kingjohn,1596\nmurders,1,kingjohn,1596\n'No,1,kingjohn,1596\nsalt,1,kingjohn,1596\nmajesties,1,kingjohn,1596\n'My,1,kingjohn,1596\nblushes,1,kingjohn,1596\npurchase,1,kingjohn,1596\nfits,1,kingjohn,1596\nentreaties,1,kingjohn,1596\nwit,1,kingjohn,1596\nsides,1,kingjohn,1596\nDeep,1,kingjohn,1596\nTwice,1,kingjohn,1596\nstamp,1,kingjohn,1596\nWitness,1,kingjohn,1596\nDiscredit,1,kingjohn,1596\nColdly,1,kingjohn,1596\nAUSTRIA'S,1,kingjohn,1596\nwhere'er,1,kingjohn,1596\nscalded,1,kingjohn,1596\nprovoke,1,kingjohn,1596\nindue,1,kingjohn,1596\nstomach,1,kingjohn,1596\nPatch'd,1,kingjohn,1596\nTaking,1,kingjohn,1596\nimpose,1,kingjohn,1596\nbounden,1,kingjohn,1596\ncross'd,1,kingjohn,1596\nRests,1,kingjohn,1596\ndetestable,1,kingjohn,1596\nconfined,1,kingjohn,1596\nimport,1,kingjohn,1596\ndisclaim'd,1,kingjohn,1596\nhears,1,kingjohn,1596\nfetch,1,kingjohn,1596\nservices,1,kingjohn,1596\nOutside,1,kingjohn,1596\nRebellion,1,kingjohn,1596\nhappiness,1,kingjohn,1596\ncomfortless,1,kingjohn,1596\nbanish'd,1,kingjohn,1596\nmeasures,1,kingjohn,1596\npours,1,kingjohn,1596\nabundance,1,kingjohn,1596\ngap,1,kingjohn,1596\ndifferent,1,kingjohn,1596\nmoment,1,kingjohn,1596\ncloset,1,kingjohn,1596\nriot,1,kingjohn,1596\nrecover,1,kingjohn,1596\nmoles,1,kingjohn,1596\nconspire,1,kingjohn,1596\nfrailty,1,kingjohn,1596\nclosed,1,kingjohn,1596\nDear,1,kingjohn,1596\nprodigies,1,kingjohn,1596\ndunghill,1,kingjohn,1596\nclock,1,kingjohn,1596\nsparrow,1,kingjohn,1596\noffending,1,kingjohn,1596\nSpeed,1,kingjohn,1596\nresidence,1,kingjohn,1596\nGermany,1,kingjohn,1596\ncount,1,kingjohn,1596\nknightly,1,kingjohn,1596\nfantasied,1,kingjohn,1596\nlandless,1,kingjohn,1596\ncontinuance,1,kingjohn,1596\ndishabited,1,kingjohn,1596\ncertainly,1,kingjohn,1596\nprotection,1,kingjohn,1596\nfling,1,kingjohn,1596\ncopied,1,kingjohn,1596\nburthen,1,kingjohn,1596\nchevaliers,1,kingjohn,1596\nchastisement,1,kingjohn,1596\nforerunner,1,kingjohn,1596\nlikes,1,kingjohn,1596\nvow'd,1,kingjohn,1596\nMercury,1,kingjohn,1596\nThink,1,kingjohn,1596\nstumbling,1,kingjohn,1596\nsinews,1,kingjohn,1596\ninterr'd,1,kingjohn,1596\nstick,1,kingjohn,1596\nwax,1,kingjohn,1596\nThrow,1,kingjohn,1596\nstaff,1,kingjohn,1596\ntuned,1,kingjohn,1596\nrise,1,kingjohn,1596\nheave,1,kingjohn,1596\nmounting,1,kingjohn,1596\npowerless,1,kingjohn,1596\nprevail,1,kingjohn,1596\nswart,1,kingjohn,1596\nbarbarous,1,kingjohn,1596\nbetween,1,kingjohn,1596\nswinged,1,kingjohn,1596\nprint,1,kingjohn,1596\nambition,1,kingjohn,1596\nbleed,1,kingjohn,1596\nintend,1,kingjohn,1596\ngirdle,1,kingjohn,1596\nfantasies,1,kingjohn,1596\nhurries,1,kingjohn,1596\nchants,1,kingjohn,1596\ngraceless,1,kingjohn,1596\nrags,1,kingjohn,1596\npreparing,1,kingjohn,1596\ndying,1,kingjohn,1596\nserve,1,kingjohn,1596\napace,1,kingjohn,1596\nperadventure,1,kingjohn,1596\nproceeding,1,kingjohn,1596\npurpled,1,kingjohn,1596\nQuoted,1,kingjohn,1596\nsupper,1,kingjohn,1596\ncoming,1,kingjohn,1596\nmultitude,1,kingjohn,1596\nclod,1,kingjohn,1596\n'at,1,kingjohn,1596\nbells,1,kingjohn,1596\nbeseems,1,kingjohn,1596\nthreats,1,kingjohn,1596\nSticking,1,kingjohn,1596\npence,1,kingjohn,1596\ndross,1,kingjohn,1596\npossess,1,kingjohn,1596\nfestival,1,kingjohn,1596\nenforced,1,kingjohn,1596\npresences,1,kingjohn,1596\nflags,1,kingjohn,1596\nvulgar,1,kingjohn,1596\nproduces,1,kingjohn,1596\nbreadth,1,kingjohn,1596\ndreams,1,kingjohn,1596\nmettle,1,kingjohn,1596\nearthquake,1,kingjohn,1596\nStraight,1,kingjohn,1596\nrages,1,kingjohn,1596\nmorsel,1,kingjohn,1596\ntakes,1,kingjohn,1596\nfaithless,1,kingjohn,1596\nfallen,1,kingjohn,1596\ntaken,1,kingjohn,1596\nconference,1,kingjohn,1596\nexclamation,1,kingjohn,1596\nwhat's,1,kingjohn,1596\nreports,1,kingjohn,1596\nrotten,1,kingjohn,1596\ncharged,1,kingjohn,1596\nfondly,1,kingjohn,1596\nlabour'd,1,kingjohn,1596\ncygnet,1,kingjohn,1596\nroyalties,1,kingjohn,1596\ninclination,1,kingjohn,1596\ndumb,1,kingjohn,1596\nbitterness,1,kingjohn,1596\nwife's,1,kingjohn,1596\nBadly,1,kingjohn,1596\ndroop,1,kingjohn,1596\nthreatened,1,kingjohn,1596\nPlead,1,kingjohn,1596\ndull,1,kingjohn,1596\nnest,1,kingjohn,1596\nmisheard,1,kingjohn,1596\nminister'd,1,kingjohn,1596\ndubb'd,1,kingjohn,1596\nthreatener,1,kingjohn,1596\nfarther,1,kingjohn,1596\ntouching,1,kingjohn,1596\nbelie,1,kingjohn,1596\ngrain,1,kingjohn,1596\ndrops,1,kingjohn,1596\ndetermined,1,kingjohn,1596\nunheard,1,kingjohn,1596\nbeguiled,1,kingjohn,1596\nVexing,1,kingjohn,1596\ndiscontents,1,kingjohn,1596\nstirs,1,kingjohn,1596\nwhence,1,kingjohn,1596\ncover,1,kingjohn,1596\nEver,1,kingjohn,1596\nanatomy,1,kingjohn,1596\nWhispers,1,kingjohn,1596\ngifts,1,kingjohn,1596\nmightier,1,kingjohn,1596\nconcealed,1,kingjohn,1596\ncontempt,1,kingjohn,1596\nguilty,1,kingjohn,1596\ncried,1,kingjohn,1596\ndurst,1,kingjohn,1596\nSweat,1,kingjohn,1596\nLondon,1,kingjohn,1596\n'fore,1,kingjohn,1596\nmessengers,1,kingjohn,1596\nunion,1,kingjohn,1596\nThither,1,kingjohn,1596\nhostess',1,kingjohn,1596\nunited,1,kingjohn,1596\nmiracle,1,kingjohn,1596\nThat's,1,kingjohn,1596\ncrystal,1,kingjohn,1596\nsaint,1,kingjohn,1596\nquest,1,kingjohn,1596\nfoe,1,kingjohn,1596\namends,1,kingjohn,1596\nhitherward,1,kingjohn,1596\nwilful,1,kingjohn,1596\ncatechise,1,kingjohn,1596\nglister,1,kingjohn,1596\ndarkly,1,kingjohn,1596\nanswers,1,kingjohn,1596\nbastinado,1,kingjohn,1596\nrace,1,kingjohn,1596\nplease,1,kingjohn,1596\nquartered,1,kingjohn,1596\ncards,1,kingjohn,1596\nscorns,1,kingjohn,1596\nwounds,1,kingjohn,1596\nendeared,1,kingjohn,1596\nearthy,1,kingjohn,1596\nletter,1,kingjohn,1596\nthunder's,1,kingjohn,1596\ncompany,1,kingjohn,1596\nSubmit,1,kingjohn,1596\ndancing,1,kingjohn,1596\nfig,1,kingjohn,1596\ncannons',1,kingjohn,1596\nSweet,1,kingjohn,1596\nDeny,1,kingjohn,1596\nminute,1,kingjohn,1596\nMark,1,kingjohn,1596\nimpeach,1,kingjohn,1596\nLincoln,1,kingjohn,1596\nZounds,1,kingjohn,1596\nCalais,1,kingjohn,1596\nhowsoever,1,kingjohn,1596\ncherry,1,kingjohn,1596\nsavage,1,kingjohn,1596\ncontinue,1,kingjohn,1596\nclap,1,kingjohn,1596\nbattering,1,kingjohn,1596\nchannel,1,kingjohn,1596\ndamnation,1,kingjohn,1596\nyou',1,kingjohn,1596\nbuckled,1,kingjohn,1596\nfolly,1,kingjohn,1596\nexternal,1,kingjohn,1596\nhorn,1,kingjohn,1596\nfloat,1,kingjohn,1596\nLead,1,kingjohn,1596\nFast,1,kingjohn,1596\nthereby,1,kingjohn,1596\nNear,1,kingjohn,1596\nrebuke,1,kingjohn,1596\ncoops,1,kingjohn,1596\ncontagious,1,kingjohn,1596\nbloodshed,1,kingjohn,1596\nFare,1,kingjohn,1596\nanswer'd,1,kingjohn,1596\nAustria's,1,kingjohn,1596\nUnto,1,kingjohn,1596\nshows,1,kingjohn,1596\npocket,1,kingjohn,1596\nLYMOGES,1,kingjohn,1596\ndivers,1,kingjohn,1596\nsolemnize,1,kingjohn,1596\nherself,1,kingjohn,1596\nwealth,1,kingjohn,1596\nlines,1,kingjohn,1596\ngrappling,1,kingjohn,1596\npoison'd,1,kingjohn,1596\nJerusalem,1,kingjohn,1596\ndepart,1,kingjohn,1596\nbutcher,1,kingjohn,1596\nprospect,1,kingjohn,1596\nPreach,1,kingjohn,1596\nperceive,1,kingjohn,1596\nnamely,1,kingjohn,1596\nbetters,1,kingjohn,1596\npartly,1,kingjohn,1596\npatient,1,kingjohn,1596\nscenes,1,kingjohn,1596\nmadly,1,kingjohn,1596\nsetter,1,kingjohn,1596\no'erswell,1,kingjohn,1596\nlived,1,kingjohn,1596\n'Good,1,kingjohn,1596\nbars,1,kingjohn,1596\nmeaning,1,kingjohn,1596\nFour,1,kingjohn,1596\ntriumphantly,1,kingjohn,1596\nramm'd,1,kingjohn,1596\nprophesy,1,kingjohn,1596\nmouth'd,1,kingjohn,1596\ndialogue,1,kingjohn,1596\ndeliver'd,1,kingjohn,1596\nbounce,1,kingjohn,1596\nslanderous,1,kingjohn,1596\ninvasion,1,kingjohn,1596\ndissever,1,kingjohn,1596\nunscratch'd,1,kingjohn,1596\ndad,1,kingjohn,1596\ncools,1,kingjohn,1596\nmotive,1,kingjohn,1596\nconvicted,1,kingjohn,1596\ndisfigured,1,kingjohn,1596\nsubjection,1,kingjohn,1596\ndisorder,1,kingjohn,1596\ndam,1,kingjohn,1596\nwill'd,1,kingjohn,1596\npeised,1,kingjohn,1596\nhating,1,kingjohn,1596\nnamed,1,kingjohn,1596\nSeats,1,kingjohn,1596\npowder,1,kingjohn,1596\nsurly,1,kingjohn,1596\nWelcome,1,kingjohn,1596\nHang'd,1,kingjohn,1596\nlad,1,kingjohn,1596\nsoul's,1,kingjohn,1596\nache,1,kingjohn,1596\nPartly,1,kingjohn,1596\ncoat,1,kingjohn,1596\ncalendar,1,kingjohn,1596\nwrapp'd,1,kingjohn,1596\nconstant,1,kingjohn,1596\nwitchcraft,1,kingjohn,1596\namiable,1,kingjohn,1596\ninflamed,1,kingjohn,1596\ndeparture,1,kingjohn,1596\nman's,1,kingjohn,1596\nfarthest,1,kingjohn,1596\nfalsely,1,kingjohn,1596\nwrested,1,kingjohn,1596\naffliction,1,kingjohn,1596\nKnew,1,kingjohn,1596\nprovokes,1,kingjohn,1596\ngentlemen,1,kingjohn,1596\nAssured,1,kingjohn,1596\nHenry,1,kingjohn,1596\nTrust,1,kingjohn,1596\ncarry,1,kingjohn,1596\ntorment,1,kingjohn,1596\nasunder,1,kingjohn,1596\nAlready,1,kingjohn,1596\nRather,1,kingjohn,1596\nundetermined,1,kingjohn,1596\nLed,1,kingjohn,1596\ncloddy,1,kingjohn,1596\ncreep,1,kingjohn,1596\neyeballs,1,kingjohn,1596\nshook,1,kingjohn,1596\nmutines,1,kingjohn,1596\nForeknowing,1,kingjohn,1596\nconcludes,1,kingjohn,1596\nswears,1,kingjohn,1596\ninseparable,1,kingjohn,1596\nchapel,1,kingjohn,1596\nCanterbury,1,kingjohn,1596\nholp,1,kingjohn,1596\nLaw,1,kingjohn,1596\nNone,1,kingjohn,1596\nhole,1,kingjohn,1596\narticles,1,kingjohn,1596\npeaceful,1,kingjohn,1596\nupholdeth,1,kingjohn,1596\ndozen,1,kingjohn,1596\ndevout,1,kingjohn,1596\nconcluded,1,kingjohn,1596\nhelmets,1,kingjohn,1596\ncut,1,kingjohn,1596\nfollows,1,kingjohn,1596\nunvex'd,1,kingjohn,1596\ndragon,1,kingjohn,1596\npangs,1,kingjohn,1596\nboyish,1,kingjohn,1596\nAlcides',1,kingjohn,1596\nWho's,1,kingjohn,1596\ncounterfeit,1,kingjohn,1596\ndominations,1,kingjohn,1596\nuseful,1,kingjohn,1596\nloyal,1,kingjohn,1596\nargument,1,kingjohn,1596\nbesieged,1,kingjohn,1596\nfronts,1,kingjohn,1596\nwinter,1,kingjohn,1596\nremnant,1,kingjohn,1596\nsparkle,1,kingjohn,1596\nForm,1,kingjohn,1596\nwant'st,1,kingjohn,1596\nconjure,1,kingjohn,1596\nRome's,1,kingjohn,1596\nvainly,1,kingjohn,1596\nprayers,1,kingjohn,1596\nshout,1,kingjohn,1596\nrobes,1,kingjohn,1596\nAnon,1,kingjohn,1596\nmanage,1,kingjohn,1596\nprithee,1,kingjohn,1596\nsouse,1,kingjohn,1596\nalong,1,kingjohn,1596\nfourteen,1,kingjohn,1596\nglittering,1,kingjohn,1596\ncheerful,1,kingjohn,1596\ncopy,1,kingjohn,1596\nfickle,1,kingjohn,1596\nAttended,1,kingjohn,1596\ninconsiderate,1,kingjohn,1596\neyed,1,kingjohn,1596\nsweat,1,kingjohn,1596\ngreens,1,kingjohn,1596\nacts,1,kingjohn,1596\ndrunk,1,kingjohn,1596\nlengths,1,kingjohn,1596\nstates,1,kingjohn,1596\nbabe,1,kingjohn,1596\nconquerors,1,kingjohn,1596\nShadowing,1,kingjohn,1596\nneedful,1,kingjohn,1596\ncanonized,1,kingjohn,1596\nbaby,1,kingjohn,1596\noffspring,1,kingjohn,1596\nRight,1,kingjohn,1596\ncurrents,1,kingjohn,1596\nSeek,1,kingjohn,1596\nheralds,1,kingjohn,1596\npromiseth,1,kingjohn,1596\nfeathers,1,kingjohn,1596\nClapp'd,1,kingjohn,1596\nfitting,1,kingjohn,1596\ntalking,1,kingjohn,1596\neither,1,kingjohn,1596\ntroth,1,kingjohn,1596\nadulterates,1,kingjohn,1596\nfeeling,1,kingjohn,1596\npuppy,1,kingjohn,1596\nDevoured,1,kingjohn,1596\nscamble,1,kingjohn,1596\nLie,1,kingjohn,1596\ncow,1,kingjohn,1596\nmeantime,1,kingjohn,1596\nangerly,1,kingjohn,1596\ncovetousness,1,kingjohn,1596\nothers',1,kingjohn,1596\nstrengths,1,kingjohn,1596\npick'd,1,kingjohn,1596\nage's,1,kingjohn,1596\npricks,1,kingjohn,1596\nvalued,1,kingjohn,1596\ncondition,1,kingjohn,1596\nprudent,1,kingjohn,1596\nhundreds,1,kingjohn,1596\nvehement,1,kingjohn,1596\nliking,1,kingjohn,1596\nMine,1,kingjohn,1596\nPatience,1,kingjohn,1596\nbattle,1,kingjohn,1596\neld'st,1,kingjohn,1596\nBelieve,1,kingjohn,1596\nsupernal,1,kingjohn,1596\nexpectation,1,kingjohn,1596\naspiring,1,kingjohn,1596\nassailed,1,kingjohn,1596\nuntrimmed,1,kingjohn,1596\ntraitor,1,kingjohn,1596\nmarking,1,kingjohn,1596\nneedless,1,kingjohn,1596\nPope's,1,kingjohn,1596\nPray,1,kingjohn,1596\nwearied,1,kingjohn,1596\nchanging,1,kingjohn,1596\nusage,1,kingjohn,1596\naffright,1,kingjohn,1596\n'twill,1,kingjohn,1596\navoid,1,kingjohn,1596\ntree,1,kingjohn,1596\nbriefly,1,kingjohn,1596\npour,1,kingjohn,1596\nnights,1,kingjohn,1596\nKnow,1,kingjohn,1596\nThrough,1,kingjohn,1596\nDeliver,1,kingjohn,1596\nchests,1,kingjohn,1596\nlovest,1,kingjohn,1596\nhours,1,kingjohn,1596\nribb'd,1,kingjohn,1596\nentreat,1,kingjohn,1596\nfuneral,1,kingjohn,1596\njolly,1,kingjohn,1596\nkindred,1,kingjohn,1596\nUse,1,kingjohn,1596\nSend,1,kingjohn,1596\nsilverly,1,kingjohn,1596\nself,1,kingjohn,1596\ncorruptibly,1,kingjohn,1596\nfairly,1,kingjohn,1596\nmodern,1,kingjohn,1596\nraven,1,kingjohn,1596\nindirectly,1,kingjohn,1596\nbelieved,1,kingjohn,1596\nCry,1,kingjohn,1596\nindustrious,1,kingjohn,1596\nsell,1,kingjohn,1596\n'God,1,kingjohn,1596\naloud,1,kingjohn,1596\nmodule,1,kingjohn,1596\ndisjoin,1,kingjohn,1596\nwhilst,1,kingjohn,1596\nharbourage,1,kingjohn,1596\npavilion,1,kingjohn,1596\nbald,1,kingjohn,1596\nstored,1,kingjohn,1596\noppose,1,kingjohn,1596\nthimbles,1,kingjohn,1596\n'Vive,1,kingjohn,1596\nleg,1,kingjohn,1596\nbleeding,1,kingjohn,1596\nunowed,1,kingjohn,1596\nfearfully,1,kingjohn,1596\nreform'd,1,kingjohn,1596\nfolded,1,kingjohn,1596\nhedged,1,kingjohn,1596\nreputed,1,kingjohn,1596\ntrusting,1,kingjohn,1596\ngrieves,1,kingjohn,1596\nremote,1,kingjohn,1596\npops,1,kingjohn,1596\nbecks,1,kingjohn,1596\nsexton,1,kingjohn,1596\ncontemn'd,1,kingjohn,1596\ngreeting,1,kingjohn,1596\nstable,1,kingjohn,1596\nseized,1,kingjohn,1596\nsullen,1,kingjohn,1596\nfearing,1,kingjohn,1596\nwhereso'er,1,kingjohn,1596\nhiding,1,kingjohn,1596\ndispossess'd,1,kingjohn,1596\ninjurer,1,kingjohn,1596\norderless,1,kingjohn,1596\npassionate,1,kingjohn,1596\nprotest,1,kingjohn,1596\nmethought,1,kingjohn,1596\nsafer,1,kingjohn,1596\nbestow,1,kingjohn,1596\nbuckets,1,kingjohn,1596\ncoin,1,kingjohn,1596\ncrooked,1,kingjohn,1596\ninstead,1,kingjohn,1596\ncoil,1,kingjohn,1596\ninvasive,1,kingjohn,1596\nCoz,1,kingjohn,1596\nbags,1,kingjohn,1596\ncontrolling,1,kingjohn,1596\nuntil,1,kingjohn,1596\nfarthings,1,kingjohn,1596\nspider,1,kingjohn,1596\nslow,1,kingjohn,1596\nchoke,1,kingjohn,1596\nstench,1,kingjohn,1596\nstruggle,1,kingjohn,1596\nwrist,1,kingjohn,1596\nSubjected,1,kingjohn,1596\nhonesty,1,kingjohn,1596\nevening,1,kingjohn,1596\nclouds,1,kingjohn,1596\nconfound,1,kingjohn,1596\nmaw,1,kingjohn,1596\nStrength,1,kingjohn,1596\nbarr'd,1,kingjohn,1596\nperjury,1,kingjohn,1596\nvolume,1,kingjohn,1596\nStrong,1,kingjohn,1596\ndisposing,1,kingjohn,1596\n'scape,1,kingjohn,1596\nafeard,1,kingjohn,1596\nExampled,1,kingjohn,1596\nsells,1,kingjohn,1596\nFive,1,kingjohn,1596\nsmiling,1,kingjohn,1596\nforced,1,kingjohn,1596\nimprisoned,1,kingjohn,1596\noutlook,1,kingjohn,1596\nfleshly,1,kingjohn,1596\neel,1,kingjohn,1596\nburst,1,kingjohn,1596\nFinding,1,kingjohn,1596\nspits,1,kingjohn,1596\nform'd,1,kingjohn,1596\nsadness,1,kingjohn,1596\ninferior,1,kingjohn,1596\nchosen,1,kingjohn,1596\nAbortives,1,kingjohn,1596\nisland,1,kingjohn,1596\nBasilisco,1,kingjohn,1596\nbargains,1,kingjohn,1596\n'once,1,kingjohn,1596\nmew,1,kingjohn,1596\nRemoved,1,kingjohn,1596\narmours,1,kingjohn,1596\ntreacherous,1,kingjohn,1596\ncensured,1,kingjohn,1596\ntravell'd,1,kingjohn,1596\nvilest,1,kingjohn,1596\nmaker,1,kingjohn,1596\nAccording,1,kingjohn,1596\nDoes,1,kingjohn,1596\nmeeting,1,kingjohn,1596\nbottoms,1,kingjohn,1596\nmurder'd,1,kingjohn,1596\nemployment,1,kingjohn,1596\nevils,1,kingjohn,1596\ndetermine,1,kingjohn,1596\npawns,1,kingjohn,1596\ngrievously,1,kingjohn,1596\nseduced,1,kingjohn,1596\nburns,1,kingjohn,1596\nmurder's,1,kingjohn,1596\nExcept,1,kingjohn,1596\nwhip,1,kingjohn,1596\nocean's,1,kingjohn,1596\nlimit,1,kingjohn,1596\nladies,1,kingjohn,1596\nbattlements,1,kingjohn,1596\nfled,1,kingjohn,1596\ncounts,1,kingjohn,1596\ncrafty,1,kingjohn,1596\nhastily,1,kingjohn,1596\nmurmuring,1,kingjohn,1596\nprinciple,1,kingjohn,1596\nwithdraw,1,kingjohn,1596\nhenceforth,1,kingjohn,1596\nphysic,1,kingjohn,1596\nAmen,1,kingjohn,1596\nBastards,1,kingjohn,1596\nvolley,1,kingjohn,1596\nparched,1,kingjohn,1596\ndismiss,1,kingjohn,1596\nClamours,1,kingjohn,1596\narmado,1,kingjohn,1596\nterror,1,kingjohn,1596\nrespects,1,kingjohn,1596\nunseasonable,1,kingjohn,1596\nhomes,1,kingjohn,1596\nplucks,1,kingjohn,1596\nflat,1,kingjohn,1596\nspill,1,kingjohn,1596\nMad,1,kingjohn,1596\nfasting,1,kingjohn,1596\nevilly,1,kingjohn,1596\nthither,1,kingjohn,1596\nBURGH,1,kingjohn,1596\nlate,1,kingjohn,1596\nsheathe,1,kingjohn,1596\nattendants,1,kingjohn,1596\nadjunct,1,kingjohn,1596\ntug,1,kingjohn,1596\nVII,1,kingjohn,1596\nsleeping,1,kingjohn,1596\naffecteth,1,kingjohn,1596\nsuspect,1,kingjohn,1596\nhush,1,kingjohn,1596\nJAMES,1,kingjohn,1596\nfright,1,kingjohn,1596\nrecompense,1,kingjohn,1596\nbesides,1,kingjohn,1596\nunhack'd,1,kingjohn,1596\npagan,1,kingjohn,1596\nlist,1,kingjohn,1596\nwhet,1,kingjohn,1596\npuissance,1,kingjohn,1596\nlevied,1,kingjohn,1596\nApril,1,kingjohn,1596\nsword's,1,kingjohn,1596\nbreaking,1,kingjohn,1596\nsquire,1,kingjohn,1596\nprouder,1,kingjohn,1596\nclippeth,1,kingjohn,1596\ncorners,1,kingjohn,1596\nbribed,1,kingjohn,1596\ndevoured,1,kingjohn,1596\nunpleasing,1,kingjohn,1596\ngoing,1,kingjohn,1596\nmoe,1,kingjohn,1596\ncompell'd,1,kingjohn,1596\nwindows,1,kingjohn,1596\nleading,1,kingjohn,1596\ncorruption,1,kingjohn,1596\nunsured,1,kingjohn,1596\nnewness,1,kingjohn,1596\nForethought,1,kingjohn,1596\ntry,1,kingjohn,1596\nshrewd,1,kingjohn,1596\nwildly,1,kingjohn,1596\nassurance,1,kingjohn,1596\nprodigiously,1,kingjohn,1596\ndate,1,kingjohn,1596\ndispiteous,1,kingjohn,1596\nclouts,1,kingjohn,1596\ninconstancy,1,kingjohn,1596\nproffer'd,1,kingjohn,1596\nreply,1,kingjohn,1596\nLegitimation,1,kingjohn,1596\nResembling,1,kingjohn,1596\npresage,1,kingjohn,1596\nJohn's,1,kingjohn,1596\nReligiously,1,kingjohn,1596\nemploy,1,kingjohn,1596\nbrag,1,kingjohn,1596\npattern,1,kingjohn,1596\njudged,1,kingjohn,1596\nstifle,1,kingjohn,1596\nMount,1,kingjohn,1596\nColbrand,1,kingjohn,1596\ndog,1,kingjohn,1596\nwrathful,1,kingjohn,1596\npell,1,kingjohn,1596\nhonour'd,1,kingjohn,1596\nharsh,1,kingjohn,1596\nconfine,1,kingjohn,1596\ncontemptuous,1,kingjohn,1596\nordering,1,kingjohn,1596\ndare,1,kingjohn,1596\nhowever,1,kingjohn,1596\nindirection,1,kingjohn,1596\nsounding,1,kingjohn,1596\nensues,1,kingjohn,1596\nweight,1,kingjohn,1596\nfrighting,1,kingjohn,1596\nTogether,1,kingjohn,1596\ncarcass,1,kingjohn,1596\nbusinesses,1,kingjohn,1596\ndestroy,1,kingjohn,1596\nfifteen,1,kingjohn,1596\nblessing,1,kingjohn,1596\ndispatch,1,kingjohn,1596\nfellowship,1,kingjohn,1596\nbred,1,kingjohn,1596\nGurney,1,kingjohn,1596\nlamb,1,kingjohn,1596\npigmy,1,kingjohn,1596\nSwearing,1,kingjohn,1596\nsnatch,1,kingjohn,1596\ninstantly,1,kingjohn,1596\nBring,1,kingjohn,1596\nDRAMATIS,1,kingjohn,1596\nflout,1,kingjohn,1596\ntie,1,kingjohn,1596\nrescue,1,kingjohn,1596\npromotions,1,kingjohn,1596\nvacant,1,kingjohn,1596\nburden,1,kingjohn,1596\nKnight,1,kingjohn,1596\ntripping,1,kingjohn,1596\nDesires,1,kingjohn,1596\ncommanding,1,kingjohn,1596\nToo,1,kingjohn,1596\nusurper,1,kingjohn,1596\nTake,1,kingjohn,1596\nbargain,1,kingjohn,1596\ngnat,1,kingjohn,1596\nLeft,1,kingjohn,1596\nfence,1,kingjohn,1596\nStuffs,1,kingjohn,1596\nusurpation,1,kingjohn,1596\ndivided,1,kingjohn,1596\nfrail,1,kingjohn,1596\nascend,1,kingjohn,1596\nKneeling,1,kingjohn,1596\nsmell,1,kingjohn,1596\nprivate,1,kingjohn,1596\nconvertite,1,kingjohn,1596\ndwelling,1,kingjohn,1596\nFair,1,kingjohn,1596\ncommand,1,kingjohn,1596\nexpire,1,kingjohn,1596\nboundless,1,kingjohn,1596\nblaspheme,1,kingjohn,1596\ncincture,1,kingjohn,1596\npronounce,1,kingjohn,1596\nSaying,1,kingjohn,1596\nendavour,1,kingjohn,1596\nspectacle,1,kingjohn,1596\nFalse,1,kingjohn,1596\nInsinuation,1,kingjohn,1596\nsolemnity,1,kingjohn,1596\nFind,1,kingjohn,1596\ndenouncing,1,kingjohn,1596\nintends,1,kingjohn,1596\nAbsey,1,kingjohn,1596\nmarket,1,kingjohn,1596\nmisspoke,1,kingjohn,1596\nconspired,1,kingjohn,1596\ncabby,1,kingjohn,1596\npropertied,1,kingjohn,1596\nperhaps,1,kingjohn,1596\ntreat,1,kingjohn,1596\nprey'd,1,kingjohn,1596\nselves,1,kingjohn,1596\nundertake,1,kingjohn,1596\nBrief,1,kingjohn,1596\nfoster'd,1,kingjohn,1596\ndim,1,kingjohn,1596\nchambers,1,kingjohn,1596\nHolding,1,kingjohn,1596\nunwash'd,1,kingjohn,1596\nnation's,1,kingjohn,1596\nsharp,1,kingjohn,1596\nseek'st,1,kingjohn,1596\nwoo'd,1,kingjohn,1596\nshock,1,kingjohn,1596\nending,1,kingjohn,1596\nsway,1,kingjohn,1596\nConfound,1,kingjohn,1596\nsummer,1,kingjohn,1596\nswan,1,kingjohn,1596\nattended,2,kingjohn,1596\nkingdom's,2,kingjohn,1596\nislanders,2,kingjohn,1596\nreligion,2,kingjohn,1596\nJames,2,kingjohn,1596\narmies,2,kingjohn,1596\nforbid,2,kingjohn,1596\nadvised,2,kingjohn,1596\ntimes,2,kingjohn,1596\nguard,2,kingjohn,1596\njoin,2,kingjohn,1596\nred,2,kingjohn,1596\ndarest,2,kingjohn,1596\ncomposition,2,kingjohn,1596\nleisure,2,kingjohn,1596\ncountry,2,kingjohn,1596\nbusiness,2,kingjohn,1596\nAlas,2,kingjohn,1596\nalike,2,kingjohn,1596\nwoman's,2,kingjohn,1596\nhonours,2,kingjohn,1596\npreparation,2,kingjohn,1596\nbonds,2,kingjohn,1596\nassured,2,kingjohn,1596\nhealth,2,kingjohn,1596\nassistance,2,kingjohn,1596\neasily,2,kingjohn,1596\nexpress,2,kingjohn,1596\nheld,2,kingjohn,1596\ndrowsy,2,kingjohn,1596\nStay,2,kingjohn,1596\npainted,2,kingjohn,1596\nspake,2,kingjohn,1596\ndecay,2,kingjohn,1596\nCitizens,2,kingjohn,1596\ntoil,2,kingjohn,1596\ndrum,2,kingjohn,1596\ninstrument,2,kingjohn,1596\nfought,2,kingjohn,1596\nangels,2,kingjohn,1596\nalthough,2,kingjohn,1596\nwithal,2,kingjohn,1596\ndamned,2,kingjohn,1596\nsore,2,kingjohn,1596\npleasures,2,kingjohn,1596\ncontrary,2,kingjohn,1596\nWhom,2,kingjohn,1596\nbecome,2,kingjohn,1596\nexcommunicate,2,kingjohn,1596\nPope,2,kingjohn,1596\nstirring,2,kingjohn,1596\nreign,2,kingjohn,1596\nsons,2,kingjohn,1596\ngiant,2,kingjohn,1596\ncamp,2,kingjohn,1596\ndrive,2,kingjohn,1596\nenemies',2,kingjohn,1596\n'What,2,kingjohn,1596\nsold,2,kingjohn,1596\nconfusion,2,kingjohn,1596\ngrows,2,kingjohn,1596\nincensed,2,kingjohn,1596\ninjury,2,kingjohn,1596\nbroker,2,kingjohn,1596\nMuch,2,kingjohn,1596\nheal,2,kingjohn,1596\ncheek,2,kingjohn,1596\nfingers,2,kingjohn,1596\ndogged,2,kingjohn,1596\ngolden,2,kingjohn,1596\nbreaks,2,kingjohn,1596\nsoft,2,kingjohn,1596\nMethinks,2,kingjohn,1596\ncalamity,2,kingjohn,1596\nwait,2,kingjohn,1596\nwidow's,2,kingjohn,1596\ncoldly,2,kingjohn,1596\ntowns,2,kingjohn,1596\nshames,2,kingjohn,1596\nsung,2,kingjohn,1596\ncompliment,2,kingjohn,1596\nWithhold,2,kingjohn,1596\nstands,2,kingjohn,1596\nenough,2,kingjohn,1596\ndispossess,2,kingjohn,1596\nworthiest,2,kingjohn,1596\nenkindled,2,kingjohn,1596\ntooth,2,kingjohn,1596\nwalk,2,kingjohn,1596\nmerry,2,kingjohn,1596\ndeceit,2,kingjohn,1596\nlanded,2,kingjohn,1596\nthrone,2,kingjohn,1596\nfell,2,kingjohn,1596\nyield,2,kingjohn,1596\nperil,2,kingjohn,1596\ndeliver,2,kingjohn,1596\nworth,2,kingjohn,1596\nHimself,2,kingjohn,1596\nSuch,2,kingjohn,1596\nsteps,2,kingjohn,1596\nmurderer,2,kingjohn,1596\nwinds,2,kingjohn,1596\nFarewell,2,kingjohn,1596\nconstraint,2,kingjohn,1596\n'O,2,kingjohn,1596\nSilence,2,kingjohn,1596\nstern,2,kingjohn,1596\nthin,2,kingjohn,1596\nplay'd,2,kingjohn,1596\nscope,2,kingjohn,1596\nbecomes,2,kingjohn,1596\nconjunction,2,kingjohn,1596\nadverse,2,kingjohn,1596\namiss,2,kingjohn,1596\nswelling,2,kingjohn,1596\nourselves,2,kingjohn,1596\neverlasting,2,kingjohn,1596\nworse,2,kingjohn,1596\nmerit,2,kingjohn,1596\nheavens,2,kingjohn,1596\nmonster,2,kingjohn,1596\nafraid,2,kingjohn,1596\nPandulph,2,kingjohn,1596\ncivil,2,kingjohn,1596\nkill'd,2,kingjohn,1596\nTurn,2,kingjohn,1596\nplots,2,kingjohn,1596\nactions,2,kingjohn,1596\nloose,2,kingjohn,1596\ncherish,2,kingjohn,1596\ncommit,2,kingjohn,1596\nSound,2,kingjohn,1596\neldest,2,kingjohn,1596\ncomplete,2,kingjohn,1596\nabove,2,kingjohn,1596\naccent,2,kingjohn,1596\nfeel,2,kingjohn,1596\nfeet,2,kingjohn,1596\nwhisper,2,kingjohn,1596\nweather,2,kingjohn,1596\nOld,2,kingjohn,1596\nSands,2,kingjohn,1596\nwins,2,kingjohn,1596\nusurp,2,kingjohn,1596\nseems,2,kingjohn,1596\nupholds,2,kingjohn,1596\nEnglishman,2,kingjohn,1596\nunacquainted,2,kingjohn,1596\nrequests,2,kingjohn,1596\nanon,2,kingjohn,1596\nsummon,2,kingjohn,1596\nhatch,2,kingjohn,1596\nwarm,2,kingjohn,1596\nvoice,2,kingjohn,1596\nwars,2,kingjohn,1596\ncunning,2,kingjohn,1596\nmelted,2,kingjohn,1596\nTurning,2,kingjohn,1596\nbright,2,kingjohn,1596\nnephew,2,kingjohn,1596\nknowledge,2,kingjohn,1596\nstrongly,2,kingjohn,1596\nfoes,2,kingjohn,1596\nrivers,2,kingjohn,1596\nDrawn,2,kingjohn,1596\noffend,2,kingjohn,1596\ntalks,2,kingjohn,1596\nAh,2,kingjohn,1596\nAm,2,kingjohn,1596\nstubborn,2,kingjohn,1596\nquarrel,2,kingjohn,1596\nhang'd,2,kingjohn,1596\nsurety,2,kingjohn,1596\nslander'd,2,kingjohn,1596\nneither,2,kingjohn,1596\nlands,2,kingjohn,1596\ncruel,2,kingjohn,1596\nto't,2,kingjohn,1596\nbegun,2,kingjohn,1596\nashes,2,kingjohn,1596\nHa,2,kingjohn,1596\nbeg,2,kingjohn,1596\npleasure,2,kingjohn,1596\nease,2,kingjohn,1596\nmeteors,2,kingjohn,1596\neast,2,kingjohn,1596\ndespair,2,kingjohn,1596\nstep,2,kingjohn,1596\nnobility,2,kingjohn,1596\nUp,2,kingjohn,1596\nglorious,2,kingjohn,1596\ninterruption,2,kingjohn,1596\nmonstrous,2,kingjohn,1596\nquiet,2,kingjohn,1596\ncorrupted,2,kingjohn,1596\ntitles,2,kingjohn,1596\nannoyance,2,kingjohn,1596\nsought,2,kingjohn,1596\nmoons,2,kingjohn,1596\nvaliant,2,kingjohn,1596\nweep,2,kingjohn,1596\nbend,2,kingjohn,1596\ncanker,2,kingjohn,1596\ncontrol,2,kingjohn,1596\nbelief,2,kingjohn,1596\nmiscarry,2,kingjohn,1596\nbehind,2,kingjohn,1596\ndifference,2,kingjohn,1596\nsounds,2,kingjohn,1596\naltar,2,kingjohn,1596\norchard,2,kingjohn,1596\nyon,2,kingjohn,1596\nweak,2,kingjohn,1596\nweal,2,kingjohn,1596\nSave,2,kingjohn,1596\nbent,2,kingjohn,1596\nparle,2,kingjohn,1596\nBehold,2,kingjohn,1596\nLies,2,kingjohn,1596\nPut,2,kingjohn,1596\na',2,kingjohn,1596\nserpent,2,kingjohn,1596\nfarewell,2,kingjohn,1596\nconquest,2,kingjohn,1596\nvaulty,2,kingjohn,1596\nused,2,kingjohn,1596\nEnough,2,kingjohn,1596\nsins,2,kingjohn,1596\nstronger,2,kingjohn,1596\npaint,2,kingjohn,1596\nbeds,2,kingjohn,1596\nsmack,2,kingjohn,1596\ninheritance,2,kingjohn,1596\nquite,2,kingjohn,1596\nriver,2,kingjohn,1596\nmonk,2,kingjohn,1596\nGod's,2,kingjohn,1596\nstay'd,2,kingjohn,1596\npromised,2,kingjohn,1596\nSoldiers,2,kingjohn,1596\nservant,2,kingjohn,1596\nmarches,2,kingjohn,1596\nlineal,2,kingjohn,1596\nsafe,2,kingjohn,1596\nbeat,2,kingjohn,1596\ngain,2,kingjohn,1596\nUnless,2,kingjohn,1596\nplays,2,kingjohn,1596\nvictory,2,kingjohn,1596\npriest,2,kingjohn,1596\ngild,2,kingjohn,1596\npluck'd,2,kingjohn,1596\ntime's,2,kingjohn,1596\nReturn,2,kingjohn,1596\nthrive,2,kingjohn,1596\nredress,2,kingjohn,1596\ngall,2,kingjohn,1596\ndestruction,2,kingjohn,1596\ntouch'd,2,kingjohn,1596\nmakest,2,kingjohn,1596\nay,2,kingjohn,1596\ngame,2,kingjohn,1596\npossess'd,2,kingjohn,1596\nprivilege,2,kingjohn,1596\nStartles,2,kingjohn,1596\nnewly,2,kingjohn,1596\ntemperate,2,kingjohn,1596\nSheriff,2,kingjohn,1596\nfixed,2,kingjohn,1596\nhumours,2,kingjohn,1596\nfeast,2,kingjohn,1596\nsmall,2,kingjohn,1596\nshears,2,kingjohn,1596\nutmost,2,kingjohn,1596\nidly,2,kingjohn,1596\nproduce,2,kingjohn,1596\nlout,2,kingjohn,1596\ntrain,2,kingjohn,1596\nadd,2,kingjohn,1596\nho,2,kingjohn,1596\nspent,2,kingjohn,1596\nlest,2,kingjohn,1596\nloved,2,kingjohn,1596\nswear'st,2,kingjohn,1596\nbeauteous,2,kingjohn,1596\nWhoever,2,kingjohn,1596\nready,2,kingjohn,1596\nspot,2,kingjohn,1596\nzealous,2,kingjohn,1596\nreasons,2,kingjohn,1596\noppression,2,kingjohn,1596\nhard,2,kingjohn,1596\nunlook'd,2,kingjohn,1596\nisle,2,kingjohn,1596\nemploy'd,2,kingjohn,1596\nMore,2,kingjohn,1596\nnatural,2,kingjohn,1596\nhazards,2,kingjohn,1596\nmidnight,2,kingjohn,1596\nkingdoms,2,kingjohn,1596\npurged,2,kingjohn,1596\nCommend,2,kingjohn,1596\nstranger,2,kingjohn,1596\nlitter,2,kingjohn,1596\nowes,2,kingjohn,1596\ndevise,2,kingjohn,1596\nheretic,2,kingjohn,1596\nstones,2,kingjohn,1596\nhate,2,kingjohn,1596\nfear'd,2,kingjohn,1596\nalive,2,kingjohn,1596\nshot,2,kingjohn,1596\nfool,2,kingjohn,1596\nwinking,2,kingjohn,1596\nfall'n,2,kingjohn,1596\nrough,2,kingjohn,1596\nfiend,2,kingjohn,1596\nrenowned,2,kingjohn,1596\nass,2,kingjohn,1596\nfond,2,kingjohn,1596\nmaiden,2,kingjohn,1596\narmour,2,kingjohn,1596\nArm,2,kingjohn,1596\nbought,2,kingjohn,1596\nAmong,2,kingjohn,1596\ntheirs,2,kingjohn,1596\ntouch,2,kingjohn,1596\ntrial,2,kingjohn,1596\nridiculous,2,kingjohn,1596\nwillingly,2,kingjohn,1596\nArt,2,kingjohn,1596\nsuperfluous,2,kingjohn,1596\nInto,2,kingjohn,1596\nShould,2,kingjohn,1596\nGeorge,2,kingjohn,1596\nwatch,2,kingjohn,1596\nCommand,2,kingjohn,1596\nequal,2,kingjohn,1596\nmaid,2,kingjohn,1596\nreport,2,kingjohn,1596\ngriefs,2,kingjohn,1596\nbreathed,2,kingjohn,1596\nrose,2,kingjohn,1596\nindeed,2,kingjohn,1596\nIreland,2,kingjohn,1596\ncouldst,2,kingjohn,1596\nmountains,2,kingjohn,1596\nriding,2,kingjohn,1596\nprosperity,2,kingjohn,1596\nmarks,2,kingjohn,1596\nwonder,2,kingjohn,1596\nbeats,2,kingjohn,1596\nmounted,2,kingjohn,1596\ncircle,2,kingjohn,1596\nshaking,2,kingjohn,1596\ntickling,2,kingjohn,1596\nspread,2,kingjohn,1596\nours,2,kingjohn,1596\nfeature,2,kingjohn,1596\nslain,2,kingjohn,1596\noppressed,2,kingjohn,1596\nchase,2,kingjohn,1596\nstrike,2,kingjohn,1596\nposterity,2,kingjohn,1596\nadmit,2,kingjohn,1596\nprogress,2,kingjohn,1596\nGoodwin,2,kingjohn,1596\ndares,2,kingjohn,1596\nsay'st,2,kingjohn,1596\ncloak,2,kingjohn,1596\nsociable,2,kingjohn,1596\ndiscontent,2,kingjohn,1596\neffect,2,kingjohn,1596\ndoors,2,kingjohn,1596\nother's,2,kingjohn,1596\nmortal,2,kingjohn,1596\nfares,2,kingjohn,1596\nsoldiers,2,kingjohn,1596\nstars,2,kingjohn,1596\nPresented,2,kingjohn,1596\nfoolish,2,kingjohn,1596\nalready,2,kingjohn,1596\ndowry,2,kingjohn,1596\nchair,2,kingjohn,1596\nbeggar,2,kingjohn,1596\ncourage,2,kingjohn,1596\nFather,2,kingjohn,1596\npresently,2,kingjohn,1596\ncoward,2,kingjohn,1596\nranks,2,kingjohn,1596\nknown,2,kingjohn,1596\ngrandam's,2,kingjohn,1596\nquench,2,kingjohn,1596\nblow,2,kingjohn,1596\ntides,2,kingjohn,1596\nthreatening,2,kingjohn,1596\nfree,2,kingjohn,1596\nover,2,kingjohn,1596\nnumber,2,kingjohn,1596\napart,2,kingjohn,1596\nhorrible,2,kingjohn,1596\ndisguised,2,kingjohn,1596\nfirm,2,kingjohn,1596\nliving,2,kingjohn,1596\nclose,2,kingjohn,1596\nstained,2,kingjohn,1596\naffairs,2,kingjohn,1596\npassage,2,kingjohn,1596\nexample,2,kingjohn,1596\nsake,2,kingjohn,1596\nformer,2,kingjohn,1596\nthrow,2,kingjohn,1596\noft,2,kingjohn,1596\ncapable,2,kingjohn,1596\nWe'll,2,kingjohn,1596\nslanderer,2,kingjohn,1596\ncourt,2,kingjohn,1596\nwoes,2,kingjohn,1596\nring,2,kingjohn,1596\nprovinces,2,kingjohn,1596\nbeseech,2,kingjohn,1596\nallay,2,kingjohn,1596\nallegiance,2,kingjohn,1596\nunexpected,2,kingjohn,1596\nflight,2,kingjohn,1596\nripe,2,kingjohn,1596\ntorture,2,kingjohn,1596\narmy,2,kingjohn,1596\nduty,2,kingjohn,1596\nperforce,2,kingjohn,1596\nintent,2,kingjohn,1596\nrevolts,2,kingjohn,1596\nfound,2,kingjohn,1596\nenraged,2,kingjohn,1596\nforward,2,kingjohn,1596\nwanton,2,kingjohn,1596\nuncle's,2,kingjohn,1596\nbullets,2,kingjohn,1596\nMilan,2,kingjohn,1596\nends,2,kingjohn,1596\nnext,2,kingjohn,1596\nThree,2,kingjohn,1596\ncursed,2,kingjohn,1596\nreligiously,2,kingjohn,1596\ncurses,2,kingjohn,1596\nrobb'd,2,kingjohn,1596\ncull,2,kingjohn,1596\nfaces,2,kingjohn,1596\nHubert's,2,kingjohn,1596\nduke,2,kingjohn,1596\nHail,2,kingjohn,1596\ntrodden,2,kingjohn,1596\nangel,2,kingjohn,1596\nopposite,2,kingjohn,1596\nsways,2,kingjohn,1596\ncompulsion,2,kingjohn,1596\nknight,2,kingjohn,1596\nrail,2,kingjohn,1596\nsupply,2,kingjohn,1596\nrain,2,kingjohn,1596\nwaters,2,kingjohn,1596\nope,2,kingjohn,1596\nangry,2,kingjohn,1596\nglad,2,kingjohn,1596\nStrike,2,kingjohn,1596\nhideous,2,kingjohn,1596\nShow,2,kingjohn,1596\ntable,2,kingjohn,1596\ncreate,2,kingjohn,1596\ndispatch'd,2,kingjohn,1596\nevil,2,kingjohn,1596\nMany,2,kingjohn,1596\nTime,2,kingjohn,1596\ngiving,2,kingjohn,1596\nclearly,2,kingjohn,1596\nHadst,2,kingjohn,1596\nBigot,2,kingjohn,1596\nlasting,2,kingjohn,1596\nmethinks,2,kingjohn,1596\nhumour,2,kingjohn,1596\nfly,2,kingjohn,1596\nclay,2,kingjohn,1596\nfine,2,kingjohn,1596\nstains,2,kingjohn,1596\nribs,2,kingjohn,1596\npunish'd,2,kingjohn,1596\nmarried,2,kingjohn,1596\nbare,2,kingjohn,1596\nhost,2,kingjohn,1596\nworship,2,kingjohn,1596\nholiness,2,kingjohn,1596\npractise,2,kingjohn,1596\nsmooth,2,kingjohn,1596\nbase,2,kingjohn,1596\nCut,2,kingjohn,1596\ntame,2,kingjohn,1596\nrising,2,kingjohn,1596\nnames,2,kingjohn,1596\nemperor,2,kingjohn,1596\ntrumpets,2,kingjohn,1596\nfeeble,2,kingjohn,1596\ngallant,2,kingjohn,1596\ncoal,2,kingjohn,1596\nis't,2,kingjohn,1596\ntalk,2,kingjohn,1596\nbind,2,kingjohn,1596\nstroke,2,kingjohn,1596\ngiven,2,kingjohn,1596\nwatchful,2,kingjohn,1596\nbeshrew,2,kingjohn,1596\nshore,2,kingjohn,1596\nthank,2,kingjohn,1596\ngreen,2,kingjohn,1596\ndangerous,2,kingjohn,1596\nmaster,2,kingjohn,1596\nhollow,2,kingjohn,1596\ngiddy,2,kingjohn,1596\nLives,2,kingjohn,1596\nArise,2,kingjohn,1596\nfeasts,2,kingjohn,1596\nrequest,2,kingjohn,1596\nGrandam,2,kingjohn,1596\ninundation,2,kingjohn,1596\nresolution,2,kingjohn,1596\ngives,2,kingjohn,1596\ntask,2,kingjohn,1596\nlegions,2,kingjohn,1596\nseas,2,kingjohn,1596\nlovely,2,kingjohn,1596\ncommission,2,kingjohn,1596\ncool,2,kingjohn,1596\ninward,2,kingjohn,1596\nadieu,2,kingjohn,1596\nfairer,2,kingjohn,1596\nlow,2,kingjohn,1596\nugly,2,kingjohn,1596\nPrince,2,kingjohn,1596\nmeagre,2,kingjohn,1596\nwe'll,2,kingjohn,1596\naught,2,kingjohn,1596\nsouth,2,kingjohn,1596\ndefend,2,kingjohn,1596\nsees,2,kingjohn,1596\ndauntless,2,kingjohn,1596\ntells,2,kingjohn,1596\ntidings,2,kingjohn,1596\ntroop,2,kingjohn,1596\nsacred,2,kingjohn,1596\ncord,2,kingjohn,1596\nInnocent,2,kingjohn,1596\nAbbey,2,kingjohn,1596\nextremes,2,kingjohn,1596\nremove,2,kingjohn,1596\nbeheld,2,kingjohn,1596\nsecure,2,kingjohn,1596\nHeralds,2,kingjohn,1596\nexcellence,2,kingjohn,1596\nTrumpet,2,kingjohn,1596\npost,2,kingjohn,1596\nCuts,2,kingjohn,1596\nled,2,kingjohn,1596\ngrieved,2,kingjohn,1596\ndeceive,2,kingjohn,1596\nsickness,2,kingjohn,1596\nTwo,2,kingjohn,1596\nthread,2,kingjohn,1596\nsleep,2,kingjohn,1596\neat,2,kingjohn,1596\nlays,2,kingjohn,1596\nleast,2,kingjohn,1596\nlearn,2,kingjohn,1596\ndoing,2,kingjohn,1596\nAnother,2,kingjohn,1596\nelbow,2,kingjohn,1596\nrights,2,kingjohn,1596\nheartily,2,kingjohn,1596\nwhiles,2,kingjohn,1596\nterritories,2,kingjohn,1596\ndiscontented,2,kingjohn,1596\nseverally,2,kingjohn,1596\nhurt,2,kingjohn,1596\nurged,2,kingjohn,1596\nentrance,2,kingjohn,1596\nlaid,2,kingjohn,1596\ndistemper'd,2,kingjohn,1596\nconfirm,2,kingjohn,1596\nhappily,2,kingjohn,1596\nperchance,2,kingjohn,1596\nWashes,2,kingjohn,1596\nboisterous,2,kingjohn,1596\nweigh,2,kingjohn,1596\nsudden,2,kingjohn,1596\nrocks,2,kingjohn,1596\ntop,2,kingjohn,1596\nreverend,2,kingjohn,1596\ncoupled,2,kingjohn,1596\nBind,2,kingjohn,1596\nTeach,2,kingjohn,1596\nbehold,2,kingjohn,1596\nundergo,2,kingjohn,1596\nvex'd,2,kingjohn,1596\ngrapple,2,kingjohn,1596\nChristendom,2,kingjohn,1596\nambitious,2,kingjohn,1596\ntempt,2,kingjohn,1596\nhe'll,2,kingjohn,1596\ndew,2,kingjohn,1596\nawake,2,kingjohn,1596\nprincess,2,kingjohn,1596\nten,2,kingjohn,1596\namen,2,kingjohn,1596\ncharity,2,kingjohn,1596\nKent,2,kingjohn,1596\nremembrance,2,kingjohn,1596\nrepair,2,kingjohn,1596\nflattering,2,kingjohn,1596\nFrenchmen's,2,kingjohn,1596\nshape,2,kingjohn,1596\nlack,2,kingjohn,1596\ndirection,2,kingjohn,1596\nwouldst,2,kingjohn,1596\nturn'd,2,kingjohn,1596\ntroubled,3,kingjohn,1596\nvillany,3,kingjohn,1596\ntruce,3,kingjohn,1596\npity,3,kingjohn,1596\ndays,3,kingjohn,1596\nchurlish,3,kingjohn,1596\ndouble,3,kingjohn,1596\ntremble,3,kingjohn,1596\nprophet,3,kingjohn,1596\nwicked,3,kingjohn,1596\nrobe,3,kingjohn,1596\nsuppose,3,kingjohn,1596\nBear,3,kingjohn,1596\njoy,3,kingjohn,1596\nNever,3,kingjohn,1596\nevery,3,kingjohn,1596\nprisoner,3,kingjohn,1596\nunderstand,3,kingjohn,1596\nrue,3,kingjohn,1596\nWould,3,kingjohn,1596\nbowels,3,kingjohn,1596\ncare,3,kingjohn,1596\nsoon,3,kingjohn,1596\nAfter,3,kingjohn,1596\njest,3,kingjohn,1596\nsaw,3,kingjohn,1596\nline,3,kingjohn,1596\nsorrows,3,kingjohn,1596\nAustria,3,kingjohn,1596\ngracious,3,kingjohn,1596\nKeep,3,kingjohn,1596\nsubjects,3,kingjohn,1596\nheat,3,kingjohn,1596\nfaiths,3,kingjohn,1596\nperjured,3,kingjohn,1596\nfurther,3,kingjohn,1596\nocean,3,kingjohn,1596\nmarch'd,3,kingjohn,1596\ndeceased,3,kingjohn,1596\nwall,3,kingjohn,1596\nslaughter,3,kingjohn,1596\nsea,3,kingjohn,1596\nAside,3,kingjohn,1596\nsuit,3,kingjohn,1596\nlions,3,kingjohn,1596\nconfident,3,kingjohn,1596\nWas,3,kingjohn,1596\n'I,3,kingjohn,1596\nSpain,3,kingjohn,1596\nExecutioner,3,kingjohn,1596\nworst,3,kingjohn,1596\ncommon,3,kingjohn,1596\ndaughter,3,kingjohn,1596\nking's,3,kingjohn,1596\nelder,3,kingjohn,1596\nrush,3,kingjohn,1596\nPomfret,3,kingjohn,1596\nbeaten,3,kingjohn,1596\nothers,3,kingjohn,1596\nflesh,3,kingjohn,1596\nOne,3,kingjohn,1596\ndies,3,kingjohn,1596\nCousin,3,kingjohn,1596\ndied,3,kingjohn,1596\nrebellion,3,kingjohn,1596\npretty,3,kingjohn,1596\noffice,3,kingjohn,1596\njoin'd,3,kingjohn,1596\nbook,3,kingjohn,1596\ntent,3,kingjohn,1596\naspect,3,kingjohn,1596\nurge,3,kingjohn,1596\nunadvised,3,kingjohn,1596\nblows,3,kingjohn,1596\ndeeds,3,kingjohn,1596\nvoluntary,3,kingjohn,1596\nLo,3,kingjohn,1596\nsiege,3,kingjohn,1596\nStand,3,kingjohn,1596\nblots,3,kingjohn,1596\nbrings,3,kingjohn,1596\npast,3,kingjohn,1596\nheads,3,kingjohn,1596\nbreathing,3,kingjohn,1596\nJOHN'S,3,kingjohn,1596\nRe,3,kingjohn,1596\nshadow,3,kingjohn,1596\nvows,3,kingjohn,1596\nnorth,3,kingjohn,1596\nBoth,3,kingjohn,1596\ni',3,kingjohn,1596\nstorm,3,kingjohn,1596\nsail,3,kingjohn,1596\nforgive,3,kingjohn,1596\nconfess,3,kingjohn,1596\nbreast,3,kingjohn,1596\nair,3,kingjohn,1596\nrepent,3,kingjohn,1596\nHere's,3,kingjohn,1596\nfavour,3,kingjohn,1596\ntongues,3,kingjohn,1596\nEdmundsbury,3,kingjohn,1596\nenforce,3,kingjohn,1596\nlady's,3,kingjohn,1596\nloves,3,kingjohn,1596\nhadst,3,kingjohn,1596\nYea,3,kingjohn,1596\nresolved,3,kingjohn,1596\nremoved,3,kingjohn,1596\ndefy,3,kingjohn,1596\npure,3,kingjohn,1596\neasy,3,kingjohn,1596\noutward,3,kingjohn,1596\nmessenger,3,kingjohn,1596\nCall,3,kingjohn,1596\npalm,3,kingjohn,1596\ndeny,3,kingjohn,1596\nplain,3,kingjohn,1596\nprepare,3,kingjohn,1596\npresent,3,kingjohn,1596\npoint,3,kingjohn,1596\nyielded,3,kingjohn,1596\nfaithful,3,kingjohn,1596\nprepared,3,kingjohn,1596\nHast,3,kingjohn,1596\nchance,3,kingjohn,1596\nnative,3,kingjohn,1596\ncheque,3,kingjohn,1596\nenemies,3,kingjohn,1596\nbroke,3,kingjohn,1596\nHath,3,kingjohn,1596\nkindled,3,kingjohn,1596\nnobles,3,kingjohn,1596\nfar,3,kingjohn,1596\noccasion,3,kingjohn,1596\npeers,3,kingjohn,1596\ncastle,3,kingjohn,1596\nnay,3,kingjohn,1596\nnote,3,kingjohn,1596\nnoon,3,kingjohn,1596\ntender,3,kingjohn,1596\nthings,3,kingjohn,1596\nfaint,3,kingjohn,1596\nyear,3,kingjohn,1596\nliable,3,kingjohn,1596\nborne,3,kingjohn,1596\nshores,3,kingjohn,1596\nSet,3,kingjohn,1596\nyouth,3,kingjohn,1596\nquestion,3,kingjohn,1596\narrived,3,kingjohn,1596\nteeth,3,kingjohn,1596\nMakes,3,kingjohn,1596\npurposes,3,kingjohn,1596\ntowers,3,kingjohn,1596\nend,3,kingjohn,1596\nblush,3,kingjohn,1596\n'gainst,3,kingjohn,1596\nSon,3,kingjohn,1596\nCount,3,kingjohn,1596\nsmoke,3,kingjohn,1596\nMade,3,kingjohn,1596\nexpedient,3,kingjohn,1596\nbehalf,3,kingjohn,1596\ntaste,3,kingjohn,1596\nmaids,3,kingjohn,1596\npound,3,kingjohn,1596\ndiscipline,3,kingjohn,1596\nPoictiers,3,kingjohn,1596\nhateful,3,kingjohn,1596\ncure,3,kingjohn,1596\nusurping,3,kingjohn,1596\ncity's,3,kingjohn,1596\nwalks,3,kingjohn,1596\nSay,3,kingjohn,1596\nAlarums,3,kingjohn,1596\nsave,3,kingjohn,1596\nchampion,3,kingjohn,1596\nThus,3,kingjohn,1596\ncrown'd,3,kingjohn,1596\naudience,3,kingjohn,1596\nhair,3,kingjohn,1596\ngrossly,3,kingjohn,1596\npoison,3,kingjohn,1596\nspleen,3,kingjohn,1596\nowe,3,kingjohn,1596\nwondrous,3,kingjohn,1596\nconsent,3,kingjohn,1596\nhundred,3,kingjohn,1596\nMake,3,kingjohn,1596\nwert,3,kingjohn,1596\ngrant,3,kingjohn,1596\nthree,3,kingjohn,1596\npalace,3,kingjohn,1596\nwest,3,kingjohn,1596\nperfect,3,kingjohn,1596\nfill,3,kingjohn,1596\nta'en,3,kingjohn,1596\nwide,3,kingjohn,1596\nqueen,3,kingjohn,1596\nwives,3,kingjohn,1596\nbounds,3,kingjohn,1596\nfare,3,kingjohn,1596\nexcursions,3,kingjohn,1596\nwild,3,kingjohn,1596\nshoot,3,kingjohn,1596\nstreets,3,kingjohn,1596\nseal,3,kingjohn,1596\nfalsehood,3,kingjohn,1596\nbawd,3,kingjohn,1596\ninterest,3,kingjohn,1596\nhairs,3,kingjohn,1596\nseen,3,kingjohn,1596\nseem,3,kingjohn,1596\nharmful,3,kingjohn,1596\n'twixt,3,kingjohn,1596\nperson,3,kingjohn,1596\nhouse,3,kingjohn,1596\nheels,3,kingjohn,1596\nhuge,3,kingjohn,1596\ntide,3,kingjohn,1596\nprison,3,kingjohn,1596\nroaring,3,kingjohn,1596\ntogether,3,kingjohn,1596\nsent,3,kingjohn,1596\nabroad,3,kingjohn,1596\nspite,3,kingjohn,1596\nconduct,3,kingjohn,1596\nrheum,3,kingjohn,1596\nremember,3,kingjohn,1596\nsovereign,3,kingjohn,1596\nmarriage,3,kingjohn,1596\nfever,3,kingjohn,1596\ncitizens,3,kingjohn,1596\nWithout,3,kingjohn,1596\nbias,3,kingjohn,1596\nmouths,3,kingjohn,1596\nDid,3,kingjohn,1596\ncatch,3,kingjohn,1596\nGeffrey,3,kingjohn,1596\narmed,3,kingjohn,1596\nden,3,kingjohn,1596\nremorse,3,kingjohn,1596\nkill,3,kingjohn,1596\nwoman,3,kingjohn,1596\nparley,3,kingjohn,1596\nbreathe,3,kingjohn,1596\nenemy,3,kingjohn,1596\nfortunes,3,kingjohn,1596\nindignation,4,kingjohn,1596\nswords,4,kingjohn,1596\nHear,4,kingjohn,1596\nburn'd,4,kingjohn,1596\nhelp,4,kingjohn,1596\nbones,4,kingjohn,1596\ntruly,4,kingjohn,1596\nTell,4,kingjohn,1596\nproceedings,4,kingjohn,1596\nwhile,4,kingjohn,1596\nsight,4,kingjohn,1596\nhonourable,4,kingjohn,1596\noffer,4,kingjohn,1596\nfury,4,kingjohn,1596\nsigns,4,kingjohn,1596\ntrust,4,kingjohn,1596\ncheeks,4,kingjohn,1596\ndemand,4,kingjohn,1596\ncast,4,kingjohn,1596\ndraw,4,kingjohn,1596\nveins,4,kingjohn,1596\nteach,4,kingjohn,1596\namity,4,kingjohn,1596\nDuke,4,kingjohn,1596\nembassy,4,kingjohn,1596\nsit,4,kingjohn,1596\nsubject,4,kingjohn,1596\ncounsel,4,kingjohn,1596\nlooks,4,kingjohn,1596\nsky,4,kingjohn,1596\noffence,4,kingjohn,1596\nturn,4,kingjohn,1596\nfellow,4,kingjohn,1596\nprinces,4,kingjohn,1596\nservice,4,kingjohn,1596\nsword,4,kingjohn,1596\nmalice,4,kingjohn,1596\nbring,4,kingjohn,1596\nwind,4,kingjohn,1596\nsooth,4,kingjohn,1596\nmatter,4,kingjohn,1596\nPlantagenet,4,kingjohn,1596\nparts,4,kingjohn,1596\nparty,4,kingjohn,1596\nspoke,4,kingjohn,1596\nwherefore,4,kingjohn,1596\nburning,4,kingjohn,1596\nmanners,4,kingjohn,1596\nmeasure,4,kingjohn,1596\npay,4,kingjohn,1596\nblown,4,kingjohn,1596\ninnocent,4,kingjohn,1596\nWithin,4,kingjohn,1596\nII,4,kingjohn,1596\nwhole,4,kingjohn,1596\nHad,4,kingjohn,1596\ngold,4,kingjohn,1596\ngave,4,kingjohn,1596\nchildren,4,kingjohn,1596\npeople,4,kingjohn,1596\nSpeak,4,kingjohn,1596\nSaint,4,kingjohn,1596\njust,4,kingjohn,1596\ndeep,4,kingjohn,1596\nvouchsafe,4,kingjohn,1596\ndoor,4,kingjohn,1596\nmove,4,kingjohn,1596\ndamn'd,4,kingjohn,1596\nExecutioners,4,kingjohn,1596\nidle,4,kingjohn,1596\nloud,4,kingjohn,1596\nMelun,4,kingjohn,1596\nplace,4,kingjohn,1596\nknee,4,kingjohn,1596\nBecause,4,kingjohn,1596\nmen's,4,kingjohn,1596\nknit,4,kingjohn,1596\ncall'd,4,kingjohn,1596\nFull,4,kingjohn,1596\ndrawn,4,kingjohn,1596\nwhether,4,kingjohn,1596\nUnder,4,kingjohn,1596\narm,4,kingjohn,1596\nfiery,4,kingjohn,1596\nfrown,4,kingjohn,1596\nthanks,4,kingjohn,1596\nSirrah,4,kingjohn,1596\nchange,4,kingjohn,1596\nmarch,4,kingjohn,1596\nTouraine,4,kingjohn,1596\nwater,4,kingjohn,1596\nalmost,4,kingjohn,1596\nShe,4,kingjohn,1596\nawhile,4,kingjohn,1596\nprecious,4,kingjohn,1596\ntempest,4,kingjohn,1596\nmind,4,kingjohn,1596\nwrought,4,kingjohn,1596\nslave,4,kingjohn,1596\nWere,4,kingjohn,1596\npause,4,kingjohn,1596\nwrongs,4,kingjohn,1596\nnear,4,kingjohn,1596\nretire,4,kingjohn,1596\nsorrow,4,kingjohn,1596\nloving,4,kingjohn,1596\nmorrow,4,kingjohn,1596\nbrother's,4,kingjohn,1596\nirons,4,kingjohn,1596\nHeaven,4,kingjohn,1596\nforeign,4,kingjohn,1596\nwomb,4,kingjohn,1596\nSwinstead,4,kingjohn,1596\njudge,4,kingjohn,1596\nkinsman,4,kingjohn,1596\nfit,4,kingjohn,1596\npassion,4,kingjohn,1596\nvow,4,kingjohn,1596\nthunder,4,kingjohn,1596\ngentleman,4,kingjohn,1596\nEarl,4,kingjohn,1596\nwilt,4,kingjohn,1596\npardon,4,kingjohn,1596\nflood,4,kingjohn,1596\nMaine,4,kingjohn,1596\ncry,4,kingjohn,1596\nsend,4,kingjohn,1596\ngoes,4,kingjohn,1596\nmadam,4,kingjohn,1596\nlie,4,kingjohn,1596\nAscension,4,kingjohn,1596\nheinous,4,kingjohn,1596\nforces,4,kingjohn,1596\nstraight,4,kingjohn,1596\nwarlike,4,kingjohn,1596\nmet,4,kingjohn,1596\nrecreant,4,kingjohn,1596\nlips,4,kingjohn,1596\nIndeed,4,kingjohn,1596\nlast,4,kingjohn,1596\nAnjou,4,kingjohn,1596\nstrange,4,kingjohn,1596\nnature,4,kingjohn,1596\ncontent,4,kingjohn,1596\nattend,4,kingjohn,1596\nprincely,4,kingjohn,1596\ngreatness,4,kingjohn,1596\ncannon,4,kingjohn,1596\nobedience,4,kingjohn,1596\ntread,4,kingjohn,1596\norder,4,kingjohn,1596\ne'er,4,kingjohn,1596\nESSEX,4,kingjohn,1596\ntold,5,kingjohn,1596\ndrop,5,kingjohn,1596\ntook,5,kingjohn,1596\nheir,5,kingjohn,1596\nzeal,5,kingjohn,1596\npray,5,kingjohn,1596\nGURNEY,5,kingjohn,1596\nmercy,5,kingjohn,1596\nplague,5,kingjohn,1596\ncharge,5,kingjohn,1596\nbirth,5,kingjohn,1596\namazed,5,kingjohn,1596\ntrumpet,5,kingjohn,1596\ntoward,5,kingjohn,1596\nblessed,5,kingjohn,1596\nblack,5,kingjohn,1596\nlight,5,kingjohn,1596\nbastard,5,kingjohn,1596\nPETER,5,kingjohn,1596\nAttendants,5,kingjohn,1596\nread,5,kingjohn,1596\nThese,5,kingjohn,1596\nBretagne,5,kingjohn,1596\nfearful,5,kingjohn,1596\nbrief,5,kingjohn,1596\nlion's,5,kingjohn,1596\nsoldier,5,kingjohn,1596\nwant,5,kingjohn,1596\nwish,5,kingjohn,1596\nmean,5,kingjohn,1596\nauthority,5,kingjohn,1596\nkept,5,kingjohn,1596\ncanst,5,kingjohn,1596\nforce,5,kingjohn,1596\nHer,5,kingjohn,1596\nenter,5,kingjohn,1596\nIV,5,kingjohn,1596\nears,5,kingjohn,1596\nroyalty,5,kingjohn,1596\nburn,5,kingjohn,1596\ngot,5,kingjohn,1596\nde,5,kingjohn,1596\napproach,5,kingjohn,1596\ncousin,5,kingjohn,1596\nlost,5,kingjohn,1596\ngrace,5,kingjohn,1596\nwelcome,5,kingjohn,1596\npale,5,kingjohn,1596\nliberty,5,kingjohn,1596\nopen,5,kingjohn,1596\ndreadful,5,kingjohn,1596\nthough,5,kingjohn,1596\nrevenge,5,kingjohn,1596\nroom,5,kingjohn,1596\naction,5,kingjohn,1596\nhide,5,kingjohn,1596\nCoeur,5,kingjohn,1596\nLook,5,kingjohn,1596\nissue,5,kingjohn,1596\nwon,5,kingjohn,1596\nwrath,5,kingjohn,1596\npossession,5,kingjohn,1596\nthing,5,kingjohn,1596\npomp,5,kingjohn,1596\nniece,5,kingjohn,1596\nCan,5,kingjohn,1596\nthemselves,5,kingjohn,1596\ndanger,5,kingjohn,1596\nmarry,5,kingjohn,1596\nBrother,5,kingjohn,1596\nChatillon,5,kingjohn,1596\nfast,5,kingjohn,1596\nlarge,5,kingjohn,1596\nhope,5,kingjohn,1596\nCommodity,5,kingjohn,1596\ncalf's,5,kingjohn,1596\nwife,5,kingjohn,1596\npresence,5,kingjohn,1596\nsound,5,kingjohn,1596\nthrust,5,kingjohn,1596\nbrow,5,kingjohn,1596\nspirits,5,kingjohn,1596\nglory,5,kingjohn,1596\nSince,5,kingjohn,1596\nthoughts,5,kingjohn,1596\nvirtue,5,kingjohn,1596\nMay,5,kingjohn,1596\nsilver,5,kingjohn,1596\nwidow,5,kingjohn,1596\nLest,5,kingjohn,1596\ncertain,5,kingjohn,1596\nshake,5,kingjohn,1596\nkind,5,kingjohn,1596\nlusty,6,kingjohn,1596\nbrows,6,kingjohn,1596\nlawful,6,kingjohn,1596\nthought,6,kingjohn,1596\nrather,6,kingjohn,1596\nMust,6,kingjohn,1596\nunder,6,kingjohn,1596\nstrength,6,kingjohn,1596\nconscience,6,kingjohn,1596\nyourself,6,kingjohn,1596\nYoung,6,kingjohn,1596\nNor,6,kingjohn,1596\nbound,6,kingjohn,1596\nbody,6,kingjohn,1596\nchurch,6,kingjohn,1596\nTheir,6,kingjohn,1596\nfight,6,kingjohn,1596\nsun,6,kingjohn,1596\ntitle,6,kingjohn,1596\nThough,6,kingjohn,1596\nstir,6,kingjohn,1596\nAy,6,kingjohn,1596\ntherefore,6,kingjohn,1596\nmeans,6,kingjohn,1596\nbegot,6,kingjohn,1596\npains,6,kingjohn,1596\nGod,6,kingjohn,1596\nFortune,6,kingjohn,1596\nneeds,6,kingjohn,1596\nhusband,6,kingjohn,1596\ndefence,6,kingjohn,1596\nlegate,6,kingjohn,1596\nloss,6,kingjohn,1596\nGeffrey's,6,kingjohn,1596\nharm,6,kingjohn,1596\nask,6,kingjohn,1596\nhaving,6,kingjohn,1596\nBetween,6,kingjohn,1596\nMadam,6,kingjohn,1596\nPeace,6,kingjohn,1596\nhigh,6,kingjohn,1596\nknows,6,kingjohn,1596\nfive,6,kingjohn,1596\nwhy,6,kingjohn,1596\nonly,6,kingjohn,1596\nheavy,6,kingjohn,1596\ndust,6,kingjohn,1596\nhappy,6,kingjohn,1596\nfaced,6,kingjohn,1596\nne'er,6,kingjohn,1596\nkiss,6,kingjohn,1596\nHerald,6,kingjohn,1596\nlives,6,kingjohn,1596\nhearts,6,kingjohn,1596\nuse,6,kingjohn,1596\nkingdom,6,kingjohn,1596\ncrest,6,kingjohn,1596\nsouls,6,kingjohn,1596\ncold,6,kingjohn,1596\nlimbs,6,kingjohn,1596\nAway,6,kingjohn,1596\nwound,6,kingjohn,1596\nSalisbury,6,kingjohn,1596\nDeath,6,kingjohn,1596\nfollow,6,kingjohn,1596\nbrave,7,kingjohn,1596\nmotion,7,kingjohn,1596\nWill,7,kingjohn,1596\nvillain,7,kingjohn,1596\ntears,7,kingjohn,1596\nrun,7,kingjohn,1596\nGive,7,kingjohn,1596\nhighness,7,kingjohn,1596\ncall,7,kingjohn,1596\nanother,7,kingjohn,1596\nNot,7,kingjohn,1596\ndoubt,7,kingjohn,1596\nleague,7,kingjohn,1596\nHere,7,kingjohn,1596\nfalse,7,kingjohn,1596\nrude,7,kingjohn,1596\nhence,7,kingjohn,1596\nstop,7,kingjohn,1596\nThere's,7,kingjohn,1596\nelse,7,kingjohn,1596\nIII,7,kingjohn,1596\nAt,7,kingjohn,1596\nOn,7,kingjohn,1596\nGo,7,kingjohn,1596\nbed,7,kingjohn,1596\nplay,7,kingjohn,1596\nprove,7,kingjohn,1596\n'tis,7,kingjohn,1596\nLike,7,kingjohn,1596\nsaid,7,kingjohn,1596\ndeed,7,kingjohn,1596\nROBERT,7,kingjohn,1596\nleft,7,kingjohn,1596\nlong,7,kingjohn,1596\nforget,7,kingjohn,1596\nfierce,7,kingjohn,1596\nhang,7,kingjohn,1596\nmighty,7,kingjohn,1596\ncity,7,kingjohn,1596\nforsworn,7,kingjohn,1596\nshow,7,kingjohn,1596\nmayst,7,kingjohn,1596\nTherefore,7,kingjohn,1596\nThey,7,kingjohn,1596\nstate,7,kingjohn,1596\nonce,7,kingjohn,1596\nBeing,7,kingjohn,1596\nMELUN,7,kingjohn,1596\nLADY,7,kingjohn,1596\nEngland's,7,kingjohn,1596\nbelieve,7,kingjohn,1596\noath,7,kingjohn,1596\nfortune,7,kingjohn,1596\ncolours,7,kingjohn,1596\never,7,kingjohn,1596\nuncle,7,kingjohn,1596\nreason,7,kingjohn,1596\nunto,7,kingjohn,1596\nrevolt,7,kingjohn,1596\ndrums,7,kingjohn,1596\nhither,7,kingjohn,1596\nmatch,7,kingjohn,1596\nbeauty,7,kingjohn,1596\ngrandam,8,kingjohn,1596\nmeet,8,kingjohn,1596\nV,8,kingjohn,1596\nadvantage,8,kingjohn,1596\nhell,8,kingjohn,1596\nfull,8,kingjohn,1596\nwarrant,8,kingjohn,1596\ncause,8,kingjohn,1596\nvile,8,kingjohn,1596\nwrong,8,kingjohn,1596\nafter,8,kingjohn,1596\nrest,8,kingjohn,1596\neach,8,kingjohn,1596\nstay,8,kingjohn,1596\nsince,8,kingjohn,1596\nbid,8,kingjohn,1596\nFAULCONBRIDGE,8,kingjohn,1596\ndear,8,kingjohn,1596\nhands,8,kingjohn,1596\nspeed,8,kingjohn,1596\nlose,8,kingjohn,1596\nact,8,kingjohn,1596\nspeaks,8,kingjohn,1596\nfoul,8,kingjohn,1596\nLords,8,kingjohn,1596\nAll,8,kingjohn,1596\nskin,8,kingjohn,1596\ncomes,8,kingjohn,1596\ngrave,8,kingjohn,1596\nwin,8,kingjohn,1596\nsays,8,kingjohn,1596\n'Tis,8,kingjohn,1596\nground,8,kingjohn,1596\npleased,8,kingjohn,1596\nthousand,8,kingjohn,1596\nholds,8,kingjohn,1596\nhome,8,kingjohn,1596\nswear,8,kingjohn,1596\npurpose,8,kingjohn,1596\npope,8,kingjohn,1596\nmad,8,kingjohn,1596\nConstance,8,kingjohn,1596\nlive,8,kingjohn,1596\nrespect,8,kingjohn,1596\nAnd,264,kingjohn,1596\nroyal,9,kingjohn,1596\nhaste,9,kingjohn,1596\nCHATILLON,9,kingjohn,1596\ncame,9,kingjohn,1596\nnothing,9,kingjohn,1596\nsworn,9,kingjohn,1596\nwithin,9,kingjohn,1596\nborn,9,kingjohn,1596\nfault,9,kingjohn,1596\nclaim,9,kingjohn,1596\nAn,9,kingjohn,1596\nitself,9,kingjohn,1596\nproud,9,kingjohn,1596\nRobert's,9,kingjohn,1596\nbrought,9,kingjohn,1596\ncourse,9,kingjohn,1596\nAre,9,kingjohn,1596\nAgainst,9,kingjohn,1596\nSir,9,kingjohn,1596\nSome,9,kingjohn,1596\nRome,9,kingjohn,1596\nWell,9,kingjohn,1596\nwalls,9,kingjohn,1596\nrage,9,kingjohn,1596\nTill,9,kingjohn,1596\nBlanch,9,kingjohn,1596\nrich,9,kingjohn,1596\nsafety,9,kingjohn,1596\nhour,9,kingjohn,1596\ncomfort,9,kingjohn,1596\ntale,9,kingjohn,1596\nlaw,9,kingjohn,1596\nLewis,9,kingjohn,1596\nseek,9,kingjohn,1596\nwhom,9,kingjohn,1596\nthus,9,kingjohn,1596\nreturn,9,kingjohn,1596\npoor,9,kingjohn,1596\near,9,kingjohn,1596\nBefore,9,kingjohn,1596\nThy,9,kingjohn,1596\ndie,9,kingjohn,1596\nNay,10,kingjohn,1596\nsad,10,kingjohn,1596\nabout,10,kingjohn,1596\nfriend,10,kingjohn,1596\nsick,10,kingjohn,1596\nArthur's,10,kingjohn,1596\nfears,10,kingjohn,1596\nearth,10,kingjohn,1596\nYet,10,kingjohn,1596\nbosom,10,kingjohn,1596\nnew,10,kingjohn,1596\nHENRY,10,kingjohn,1596\npowers,10,kingjohn,1596\nere,10,kingjohn,1596\nyours,10,kingjohn,1596\nRichard,10,kingjohn,1596\nmany,10,kingjohn,1596\nnor,10,kingjohn,1596\nmyself,10,kingjohn,1596\ndidst,10,kingjohn,1596\nfather's,10,kingjohn,1596\nheard,10,kingjohn,1596\nway,10,kingjohn,1596\nown,10,kingjohn,1596\nwork,10,kingjohn,1596\nword,10,kingjohn,1596\nPRINCE,10,kingjohn,1596\nalone,10,kingjohn,1596\nmother's,10,kingjohn,1596\nmakes,10,kingjohn,1596\nliege,10,kingjohn,1596\nlion,10,kingjohn,1596\ntwo,10,kingjohn,1596\nExit,10,kingjohn,1596\nhimself,10,kingjohn,1596\no'er,11,kingjohn,1596\nlies,11,kingjohn,1596\niron,11,kingjohn,1596\nfriends,11,kingjohn,1596\nWhose,11,kingjohn,1596\nsome,11,kingjohn,1596\nThere,11,kingjohn,1596\nside,11,kingjohn,1596\ncardinal,11,kingjohn,1596\nGood,11,kingjohn,1596\ngone,11,kingjohn,1596\nbeen,11,kingjohn,1596\nthyself,11,kingjohn,1596\nnoble,11,kingjohn,1596\ndevil,11,kingjohn,1596\nhalf,11,kingjohn,1596\nform,11,kingjohn,1596\nlords,11,kingjohn,1596\nnone,11,kingjohn,1596\nmouth,11,kingjohn,1596\ngates,11,kingjohn,1596\nneed,11,kingjohn,1596\nget,11,kingjohn,1596\nbreak,11,kingjohn,1596\nCitizen,11,kingjohn,1596\nfall,11,kingjohn,1596\ntill,11,kingjohn,1596\nback,11,kingjohn,1596\nbeing,11,kingjohn,1596\nwithout,11,kingjohn,1596\ncrown,11,kingjohn,1596\nwords,12,kingjohn,1596\nsin,12,kingjohn,1596\nOut,12,kingjohn,1596\nfear,12,kingjohn,1596\nbest,12,kingjohn,1596\ngrief,12,kingjohn,1596\nhot,12,kingjohn,1596\nfield,12,kingjohn,1596\nLady,12,kingjohn,1596\nHave,12,kingjohn,1596\nLord,12,kingjohn,1596\nDoth,12,kingjohn,1596\nstill,12,kingjohn,1596\nRobert,12,kingjohn,1596\nsweet,12,kingjohn,1596\nleave,12,kingjohn,1596\nFaulconbridge,12,kingjohn,1596\nmight,12,kingjohn,1596\nlady,12,kingjohn,1596\ntruth,13,kingjohn,1596\nCome,13,kingjohn,1596\ntown,13,kingjohn,1596\nboth,13,kingjohn,1596\nDo,13,kingjohn,1596\nput,13,kingjohn,1596\ncurse,13,kingjohn,1596\nmost,13,kingjohn,1596\nill,13,kingjohn,1596\nprince,13,kingjohn,1596\nforth,13,kingjohn,1596\ncould,13,kingjohn,1596\nold,13,kingjohn,1596\nfirst,13,kingjohn,1596\nMessenger,13,kingjohn,1596\nPhilip,13,kingjohn,1596\nshalt,13,kingjohn,1596\nspirit,13,kingjohn,1596\nother,13,kingjohn,1596\nanswer,14,kingjohn,1596\nbrother,14,kingjohn,1596\nbetter,14,kingjohn,1596\nhonour,14,kingjohn,1596\nHis,14,kingjohn,1596\nBe,14,kingjohn,1596\npart,14,kingjohn,1596\nfoot,14,kingjohn,1596\nwhere,14,kingjohn,1596\ngentle,14,kingjohn,1596\nvery,14,kingjohn,1596\nsame,14,kingjohn,1596\nwho,14,kingjohn,1596\nfind,14,kingjohn,1596\nstrong,14,kingjohn,1596\nBLANCH,14,kingjohn,1596\ncannot,14,kingjohn,1596\npower,14,kingjohn,1596\nBIGOT,15,kingjohn,1596\ntell,15,kingjohn,1596\ndone,15,kingjohn,1596\nkeep,15,kingjohn,1596\nFirst,15,kingjohn,1596\nThan,15,kingjohn,1596\nfire,15,kingjohn,1596\nShall,15,kingjohn,1596\nlay,15,kingjohn,1596\nEnglish,15,kingjohn,1596\nWhere,15,kingjohn,1596\nhead,16,kingjohn,1596\nshe,16,kingjohn,1596\nset,16,kingjohn,1596\nNo,16,kingjohn,1596\nbear,16,kingjohn,1596\nAngiers,16,kingjohn,1596\nany,16,kingjohn,1596\nhast,16,kingjohn,1596\ninto,16,kingjohn,1596\nACT,16,kingjohn,1596\nFrom,16,kingjohn,1596\nstand,16,kingjohn,1596\nface,16,kingjohn,1596\nnews,16,kingjohn,1596\neven,16,kingjohn,1596\nholy,16,kingjohn,1596\nWhy,17,kingjohn,1596\nagainst,17,kingjohn,1596\nOur,17,kingjohn,1596\nlook,17,kingjohn,1596\nYou,17,kingjohn,1596\nHow,17,kingjohn,1596\nyoung,17,kingjohn,1596\noff,17,kingjohn,1596\nheart,17,kingjohn,1596\nEven,17,kingjohn,1596\nman,17,kingjohn,1596\nSCENE,17,kingjohn,1596\n',18,kingjohn,1596\nFrench,18,kingjohn,1596\nname,18,kingjohn,1596\ndost,18,kingjohn,1596\nbreath,18,kingjohn,1596\ndead,18,kingjohn,1596\nhow,18,kingjohn,1596\nlittle,18,kingjohn,1596\nKing,18,kingjohn,1596\nbloody,18,kingjohn,1596\nhold,18,kingjohn,1596\nshame,18,kingjohn,1596\nof,530,kingjohn,1596\nNow,19,kingjohn,1596\naway,19,kingjohn,1596\nkings,19,kingjohn,1596\nDauphin,19,kingjohn,1596\nwhose,19,kingjohn,1596\nlord,19,kingjohn,1596\nfaith,19,kingjohn,1596\nchild,19,kingjohn,1596\nThen,19,kingjohn,1596\nLet,19,kingjohn,1596\nmuch,20,kingjohn,1596\nhear,20,kingjohn,1596\nnight,20,kingjohn,1596\ncan,20,kingjohn,1596\nyet,20,kingjohn,1596\nmajesty,20,kingjohn,1596\none,20,kingjohn,1596\ntake,20,kingjohn,1596\nWhen,20,kingjohn,1596\ntoo,20,kingjohn,1596\nsoul,21,kingjohn,1596\nUpon,21,kingjohn,1596\nWho,21,kingjohn,1596\nnever,21,kingjohn,1596\nWe,21,kingjohn,1596\nspeak,21,kingjohn,1596\nAUSTRIA,21,kingjohn,1596\ngreat,21,kingjohn,1596\nBy,22,kingjohn,1596\nIt,22,kingjohn,1596\ndown,22,kingjohn,1596\nSo,22,kingjohn,1596\nthose,22,kingjohn,1596\nknow,22,kingjohn,1596\nart,22,kingjohn,1596\neye,22,kingjohn,1596\nthine,22,kingjohn,1596\nwar,22,kingjohn,1596\ntime,22,kingjohn,1596\nmen,22,kingjohn,1596\nsee,23,kingjohn,1596\nHe,23,kingjohn,1596\nYour,23,kingjohn,1596\nlife,24,kingjohn,1596\nthan,24,kingjohn,1596\nExeunt,24,kingjohn,1596\ntongue,24,kingjohn,1596\nbefore,24,kingjohn,1596\nthink,24,kingjohn,1596\ntrue,24,kingjohn,1596\nOr,25,kingjohn,1596\nwhen,25,kingjohn,1596\nhad,26,kingjohn,1596\nthere,26,kingjohn,1596\nI'll,26,kingjohn,1596\narms,26,kingjohn,1596\nQUEEN,26,kingjohn,1596\nfather,26,kingjohn,1596\nJohn,27,kingjohn,1596\ngive,27,kingjohn,1596\nfair,27,kingjohn,1596\nArthur,27,kingjohn,1596\nworld,28,kingjohn,1596\nthey,28,kingjohn,1596\nboy,28,kingjohn,1596\ndoth,28,kingjohn,1596\nELINOR,28,kingjohn,1596\nmade,28,kingjohn,1596\nThou,28,kingjohn,1596\nCARDINAL,28,kingjohn,1596\nPANDULPH,28,kingjohn,1596\nwere,28,kingjohn,1596\nsir,29,kingjohn,1596\nPEMBROKE,29,kingjohn,1596\nWhich,29,kingjohn,1596\ngo,29,kingjohn,1596\nland,29,kingjohn,1596\ndeath,30,kingjohn,1596\nsuch,30,kingjohn,1596\nmother,30,kingjohn,1596\neyes,30,kingjohn,1596\nmine,31,kingjohn,1596\ncome,31,kingjohn,1596\nwhich,32,kingjohn,1596\nHubert,32,kingjohn,1596\nagain,32,kingjohn,1596\nARTHUR,32,kingjohn,1596\nmay,32,kingjohn,1596\nOf,33,kingjohn,1596\nIs,33,kingjohn,1596\nright,33,kingjohn,1596\nIf,34,kingjohn,1596\ngood,34,kingjohn,1596\nLEWIS,35,kingjohn,1596\nAs,35,kingjohn,1596\nIn,35,kingjohn,1596\nhere,36,kingjohn,1596\nmust,36,kingjohn,1596\nlike,36,kingjohn,1596\nus,36,kingjohn,1596\nshould,36,kingjohn,1596\nThis,36,kingjohn,1596\nA,37,kingjohn,1596\nsay,37,kingjohn,1596\nthem,37,kingjohn,1596\nlet,37,kingjohn,1596\ndid,37,kingjohn,1596\npeace,38,kingjohn,1596\nam,38,kingjohn,1596\nan,38,kingjohn,1596\nor,38,kingjohn,1596\nWith,39,kingjohn,1596\nlove,39,kingjohn,1596\nCONSTANCE,40,kingjohn,1596\nwould,40,kingjohn,1596\nson,41,kingjohn,1596\nout,41,kingjohn,1596\nupon,42,kingjohn,1596\nMy,42,kingjohn,1596\nmore,42,kingjohn,1596\nEnter,43,kingjohn,1596\nEngland,44,kingjohn,1596\nblood,45,kingjohn,1596\nif,45,kingjohn,1596\nare,45,kingjohn,1596\nday,45,kingjohn,1596\nSALISBURY,45,kingjohn,1596\nthen,46,kingjohn,1596\nFor,46,kingjohn,1596\nmake,46,kingjohn,1596\nWhat,46,kingjohn,1596\na,302,kingjohn,1596\nheaven,47,kingjohn,1596\nwell,47,kingjohn,1596\nwhat,47,kingjohn,1596\nking,48,kingjohn,1596\nher,49,kingjohn,1596\nPHILIP,49,kingjohn,1596\nnow,49,kingjohn,1596\nthese,50,kingjohn,1596\nup,51,kingjohn,1596\nwas,51,kingjohn,1596\nno,52,kingjohn,1596\nat,53,kingjohn,1596\nhand,57,kingjohn,1596\ntheir,58,kingjohn,1596\nFrance,60,kingjohn,1596\nhath,60,kingjohn,1596\nHUBERT,63,kingjohn,1596\nBut,64,kingjohn,1596\nfrom,68,kingjohn,1596\nO,70,kingjohn,1596\nthee,78,kingjohn,1596\nby,78,kingjohn,1596\nwe,85,kingjohn,1596\ndo,87,kingjohn,1596\nall,87,kingjohn,1596\nhave,87,kingjohn,1596\nbut,88,kingjohn,1596\nhe,89,kingjohn,1596\nhim,90,kingjohn,1596\non,93,kingjohn,1596\nas,96,kingjohn,1596\nshall,99,kingjohn,1596\nthy,100,kingjohn,1596\nThat,102,kingjohn,1596\nour,103,kingjohn,1596\nthe,616,kingjohn,1596\nwill,106,kingjohn,1596\nBASTARD,107,kingjohn,1596\nfor,108,kingjohn,1596\nso,109,kingjohn,1596\nThe,115,kingjohn,1596\nTo,120,kingjohn,1596\nJOHN,124,kingjohn,1596\nit,143,kingjohn,1596\nI,399,kingjohn,1596\nto,399,kingjohn,1596\nthou,148,kingjohn,1596\nhis,149,kingjohn,1596\nyour,155,kingjohn,1596\nbe,158,kingjohn,1596\nwith,166,kingjohn,1596\nme,167,kingjohn,1596\nis,169,kingjohn,1596\nKING,176,kingjohn,1596\nand,437,kingjohn,1596\nnot,183,kingjohn,1596\nthat,205,kingjohn,1596\nyou,208,kingjohn,1596\nmy,239,kingjohn,1596\nthis,240,kingjohn,1596\nin,245,kingjohn,1596\nbrave,1,kinglear,1603\nintermission,1,kinglear,1603\nattended,1,kinglear,1603\nholding,1,kinglear,1603\nprofession,1,kinglear,1603\nindignation,1,kinglear,1603\ntadpole,1,kinglear,1603\nanswered,1,kinglear,1603\nTremble,1,kinglear,1603\nYou're,1,kinglear,1603\ndegenerate,1,kinglear,1603\nevent,1,kinglear,1603\nadvanced,1,kinglear,1603\nmeiny,1,kinglear,1603\ncage,1,kinglear,1603\ngeneration,1,kinglear,1603\nregard,1,kinglear,1603\nauthorities,1,kinglear,1603\nanswerer,1,kinglear,1603\nasses,1,kinglear,1603\nsumpter,1,kinglear,1603\ninstruments,1,kinglear,1603\nadultress,1,kinglear,1603\ntomb,1,kinglear,1603\nmoral,1,kinglear,1603\nhorns,1,kinglear,1603\ngauntlet,1,kinglear,1603\nignorance,1,kinglear,1603\nname's,1,kinglear,1603\nfather',1,kinglear,1603\ntransform,1,kinglear,1603\nadvised,1,kinglear,1603\ntimes,1,kinglear,1603\nS,1,kinglear,1603\nsmiled,1,kinglear,1603\ngrey,1,kinglear,1603\nProve,1,kinglear,1603\nhappier,1,kinglear,1603\nlamentable,1,kinglear,1603\ninjunction,1,kinglear,1603\nc,1,kinglear,1603\no,1,kinglear,1603\nmistaking,1,kinglear,1603\nsmiles,1,kinglear,1603\nYours,1,kinglear,1603\nworst',1,kinglear,1603\nred,1,kinglear,1603\nScythian,1,kinglear,1603\nFew,1,kinglear,1603\nLaying,1,kinglear,1603\nadvice,1,kinglear,1603\ngroom,1,kinglear,1603\nunfitness,1,kinglear,1603\ninvades,1,kinglear,1603\nsuspend,1,kinglear,1603\nsizes,1,kinglear,1603\nWhoop,1,kinglear,1603\nconsumption,1,kinglear,1603\nhalloo,1,kinglear,1603\ninfected,1,kinglear,1603\nafar,1,kinglear,1603\ncorky,1,kinglear,1603\nLoved,1,kinglear,1603\nDuchess,1,kinglear,1603\nbeadle,1,kinglear,1603\nmotion,1,kinglear,1603\nbespoke,1,kinglear,1603\nreciprocal,1,kinglear,1603\ncopulation,1,kinglear,1603\nInform'd,1,kinglear,1603\nheir,1,kinglear,1603\ndouble,1,kinglear,1603\nbereaved,1,kinglear,1603\nnecessities,1,kinglear,1603\ntremble,1,kinglear,1603\ncontradict,1,kinglear,1603\nbarber,1,kinglear,1603\ntreasury,1,kinglear,1603\ndisquietly,1,kinglear,1603\nbleed'st,1,kinglear,1603\nburn'd,1,kinglear,1603\ndiscord,1,kinglear,1603\ngenerous,1,kinglear,1603\nAlas,1,kinglear,1603\ninstructs,1,kinglear,1603\ntyrant's,1,kinglear,1603\nshadowy,1,kinglear,1603\nconductor,1,kinglear,1603\ncommodities,1,kinglear,1603\nleavetaking,1,kinglear,1603\nUnfriended,1,kinglear,1603\nfollies,1,kinglear,1603\nentire,1,kinglear,1603\nadvantage,1,kinglear,1603\nbrows,1,kinglear,1603\nHearty,1,kinglear,1603\nSleepest,1,kinglear,1603\nbrown,1,kinglear,1603\nnursing,1,kinglear,1603\nDisplay'd,1,kinglear,1603\nriddle,1,kinglear,1603\nhasty,1,kinglear,1603\nVillain,1,kinglear,1603\nMessengers,1,kinglear,1603\ndepraved,1,kinglear,1603\nthankfully,1,kinglear,1603\nalight,1,kinglear,1603\nnoiseless,1,kinglear,1603\nbreathless,1,kinglear,1603\nelement,1,kinglear,1603\nrot,1,kinglear,1603\nwren,1,kinglear,1603\no'ertake,1,kinglear,1603\nresign,1,kinglear,1603\nrob,1,kinglear,1603\nrod,1,kinglear,1603\noffender,1,kinglear,1603\nmend,1,kinglear,1603\nstopp'd,1,kinglear,1603\nWilt,1,kinglear,1603\nlowness,1,kinglear,1603\nchiding,1,kinglear,1603\nBeat,1,kinglear,1603\nuncovered,1,kinglear,1603\nWomen,1,kinglear,1603\ndiscernings,1,kinglear,1603\nsimples,1,kinglear,1603\nInterest,1,kinglear,1603\nboys,1,kinglear,1603\nStrives,1,kinglear,1603\npainter,1,kinglear,1603\njot,1,kinglear,1603\nheld,1,kinglear,1603\nmell,1,kinglear,1603\nfoster,1,kinglear,1603\nfangs,1,kinglear,1603\nenormous,1,kinglear,1603\nappertains,1,kinglear,1603\nhelps,1,kinglear,1603\nreserved,1,kinglear,1603\ncords,1,kinglear,1603\nwhereupon,1,kinglear,1603\nclears,1,kinglear,1603\nmoiety,1,kinglear,1603\n'ay',1,kinglear,1603\nsteeples,1,kinglear,1603\nsingle,1,kinglear,1603\nmutations,1,kinglear,1603\nfreer,1,kinglear,1603\nfrowning,1,kinglear,1603\nduteous,1,kinglear,1603\nStretch,1,kinglear,1603\nBeweep,1,kinglear,1603\nwrites,1,kinglear,1603\ndirt,1,kinglear,1603\nvigilance,1,kinglear,1603\nwrap,1,kinglear,1603\njoint,1,kinglear,1603\nThou'dst,1,kinglear,1603\nproceedings,1,kinglear,1603\ndropp'd,1,kinglear,1603\nmere,1,kinglear,1603\nhalters,1,kinglear,1603\nput's,1,kinglear,1603\nmean'st,1,kinglear,1603\nrepents,1,kinglear,1603\no'erheard,1,kinglear,1603\nCried,1,kinglear,1603\nruffian,1,kinglear,1603\ngrim,1,kinglear,1603\nsuper,1,kinglear,1603\ncohorts,1,kinglear,1603\ncomest,1,kinglear,1603\nlearn'd,1,kinglear,1603\nrip,1,kinglear,1603\nrid,1,kinglear,1603\nfought,1,kinglear,1603\nwield,1,kinglear,1603\nflow,1,kinglear,1603\nits,1,kinglear,1603\nlick,1,kinglear,1603\nfrontlet,1,kinglear,1603\nraggedness,1,kinglear,1603\nshelter,1,kinglear,1603\nderive,1,kinglear,1603\nthroat,1,kinglear,1603\nwithal,1,kinglear,1603\nstumbled,1,kinglear,1603\nadmirable,1,kinglear,1603\npined,1,kinglear,1603\nthirty,1,kinglear,1603\nDispose,1,kinglear,1603\ncheap,1,kinglear,1603\nravish,1,kinglear,1603\npress,1,kinglear,1603\nblinding,1,kinglear,1603\nmalicious,1,kinglear,1603\nrail'd,1,kinglear,1603\nodds,1,kinglear,1603\nabsolute,1,kinglear,1603\ndamned,1,kinglear,1603\nPost,1,kinglear,1603\nbosom'd,1,kinglear,1603\npick,1,kinglear,1603\npinch,1,kinglear,1603\nfretful,1,kinglear,1603\nkinder,1,kinglear,1603\nBegan,1,kinglear,1603\nPour,1,kinglear,1603\nQuite,1,kinglear,1603\naccuser's,1,kinglear,1603\ninvested,1,kinglear,1603\nsurgeons,1,kinglear,1603\njoys,1,kinglear,1603\nWhom,1,kinglear,1603\nWere't,1,kinglear,1603\ncheques,1,kinglear,1603\nStew'd,1,kinglear,1603\nneighbour'd,1,kinglear,1603\ntyrannous,1,kinglear,1603\nunconstant,1,kinglear,1603\ncurious,1,kinglear,1603\nPERSONAE,1,kinglear,1603\nwither,1,kinglear,1603\ncarp,1,kinglear,1603\nparings,1,kinglear,1603\nLight,1,kinglear,1603\nradiance,1,kinglear,1603\nboy's,1,kinglear,1603\ndemand,1,kinglear,1603\nclamorous,1,kinglear,1603\nspare,1,kinglear,1603\ngermens,1,kinglear,1603\ndocks,1,kinglear,1603\nspark,1,kinglear,1603\nvary,1,kinglear,1603\nlightning,1,kinglear,1603\nHorrible,1,kinglear,1603\nmingled,1,kinglear,1603\nsoothe,1,kinglear,1603\nsoliciting,1,kinglear,1603\nbattles,1,kinglear,1603\noldest,1,kinglear,1603\nutter'd,1,kinglear,1603\nwalking,1,kinglear,1603\nautumn's,1,kinglear,1603\nbridegroom,1,kinglear,1603\nmistook,1,kinglear,1603\nquench'd,1,kinglear,1603\nswimming,1,kinglear,1603\nspared,1,kinglear,1603\nbreach,1,kinglear,1603\nlustre,1,kinglear,1603\npursue,1,kinglear,1603\nise,1,kinglear,1603\nsubscription,1,kinglear,1603\nstoops,1,kinglear,1603\nbeneath,1,kinglear,1603\nOver,1,kinglear,1603\nadvantages,1,kinglear,1603\ndelivered,1,kinglear,1603\nroguish,1,kinglear,1603\nchilded,1,kinglear,1603\nsoon,1,kinglear,1603\npractises,1,kinglear,1603\ndisdain,1,kinglear,1603\ngraced,1,kinglear,1603\nsurfeit,1,kinglear,1603\nwanderers,1,kinglear,1603\ngiant,1,kinglear,1603\nbirth,1,kinglear,1603\nchud,1,kinglear,1603\nlacks,1,kinglear,1603\namazed,1,kinglear,1603\nbrothel,1,kinglear,1603\nspied,1,kinglear,1603\nfeather,1,kinglear,1603\njest,1,kinglear,1603\nstock,1,kinglear,1603\nrestoring,1,kinglear,1603\nenemies',1,kinglear,1603\nworking,1,kinglear,1603\nruin'd,1,kinglear,1603\nreconciles,1,kinglear,1603\nsap,1,kinglear,1603\nrelieve,1,kinglear,1603\nsat,1,kinglear,1603\nskirted,1,kinglear,1603\ntoss,1,kinglear,1603\noutside,1,kinglear,1603\nflaw'd,1,kinglear,1603\nassembly,1,kinglear,1603\narray'd,1,kinglear,1603\nline,1,kinglear,1603\nJove,1,kinglear,1603\nbluntly,1,kinglear,1603\nPins,1,kinglear,1603\ncall'st,1,kinglear,1603\nworthied,1,kinglear,1603\npilgrimage,1,kinglear,1603\ncholeric,1,kinglear,1603\nmachination,1,kinglear,1603\nlosest,1,kinglear,1603\nusurps,1,kinglear,1603\nCombine,1,kinglear,1603\ncrying,1,kinglear,1603\nendow'd,1,kinglear,1603\ndandy,1,kinglear,1603\nremotion,1,kinglear,1603\ngracious,1,kinglear,1603\nmind's,1,kinglear,1603\nverbal,1,kinglear,1603\nboarish,1,kinglear,1603\nlily,1,kinglear,1603\nbeacon,1,kinglear,1603\nthou'rt,1,kinglear,1603\nFlew,1,kinglear,1603\nposts,1,kinglear,1603\nsectary,1,kinglear,1603\nadditions,1,kinglear,1603\nWoe,1,kinglear,1603\ndejected,1,kinglear,1603\nOurself,1,kinglear,1603\nsparks,1,kinglear,1603\nsalutations,1,kinglear,1603\nFled,1,kinglear,1603\nrosemary,1,kinglear,1603\nworthier,1,kinglear,1603\nsloth,1,kinglear,1603\n'Enough,1,kinglear,1603\nshanks,1,kinglear,1603\nwants,1,kinglear,1603\nCost,1,kinglear,1603\ntrotting,1,kinglear,1603\nvoices,1,kinglear,1603\npolicy,1,kinglear,1603\ntown,1,kinglear,1603\nbabes,1,kinglear,1603\ngolden,1,kinglear,1603\nRenege,1,kinglear,1603\nhanging,1,kinglear,1603\nofficers,1,kinglear,1603\nYield,1,kinglear,1603\nHecate,1,kinglear,1603\nfinding,1,kinglear,1603\nlikeness,1,kinglear,1603\ndesperately,1,kinglear,1603\ncentury,1,kinglear,1603\nwantons,1,kinglear,1603\nImportune,1,kinglear,1603\nsit'st,1,kinglear,1603\nquagmire,1,kinglear,1603\ndeprive,1,kinglear,1603\nsuum,1,kinglear,1603\nrageth,1,kinglear,1603\nAvaunt,1,kinglear,1603\nbenefits,1,kinglear,1603\nDetains,1,kinglear,1603\nabode,1,kinglear,1603\ncovering,1,kinglear,1603\nvisit,1,kinglear,1603\nlesser,1,kinglear,1603\namity,1,kinglear,1603\nwail,1,kinglear,1603\nSought,1,kinglear,1603\nHumanity,1,kinglear,1603\ningenious,1,kinglear,1603\noverture,1,kinglear,1603\nsimpering,1,kinglear,1603\nkin,1,kinglear,1603\nCupid,1,kinglear,1603\nmoonshine,1,kinglear,1603\nperjured,1,kinglear,1603\nMonster,1,kinglear,1603\nworsted,1,kinglear,1603\nGentle,1,kinglear,1603\ncities,1,kinglear,1603\nantipathy,1,kinglear,1603\nTransport,1,kinglear,1603\ntowns,1,kinglear,1603\nview,1,kinglear,1603\ndiscovery,1,kinglear,1603\nFellows,1,kinglear,1603\npillow,1,kinglear,1603\nseeking,1,kinglear,1603\nexecution,1,kinglear,1603\nshamed,1,kinglear,1603\nhereafter,1,kinglear,1603\nrarest,1,kinglear,1603\nslightly,1,kinglear,1603\nsummon'd,1,kinglear,1603\nsuns,1,kinglear,1603\nflashes,1,kinglear,1603\nI'm,1,kinglear,1603\nOff,1,kinglear,1603\nweighed,1,kinglear,1603\nmonkeys,1,kinglear,1603\nsung,1,kinglear,1603\nI'd,1,kinglear,1603\nboat,1,kinglear,1603\nJesters,1,kinglear,1603\nafflict,1,kinglear,1603\nperdy,1,kinglear,1603\nhistory,1,kinglear,1603\nperdu,1,kinglear,1603\nconcealment,1,kinglear,1603\ndeeper,1,kinglear,1603\nsin,1,kinglear,1603\nstranger'd,1,kinglear,1603\nconceive,1,kinglear,1603\nconception,1,kinglear,1603\nPhoebus',1,kinglear,1603\norbs,1,kinglear,1603\nrememberest,1,kinglear,1603\nimpossible,1,kinglear,1603\nviolently,1,kinglear,1603\ndefuse,1,kinglear,1603\nunsightly,1,kinglear,1603\nmowing,1,kinglear,1603\nusurp'd,1,kinglear,1603\nenkindle,1,kinglear,1603\nnoises,1,kinglear,1603\nsustaining,1,kinglear,1603\ninvention,1,kinglear,1603\nillustrious,1,kinglear,1603\nmerry,1,kinglear,1603\nvirtuous,1,kinglear,1603\nshrill,1,kinglear,1603\nCatch,1,kinglear,1603\nreproving,1,kinglear,1603\ndeceived,1,kinglear,1603\nflying,1,kinglear,1603\nDeserved,1,kinglear,1603\nthrongs,1,kinglear,1603\nUnburthen'd,1,kinglear,1603\nslaughter,1,kinglear,1603\nsociety,1,kinglear,1603\nspherical,1,kinglear,1603\nthrone,1,kinglear,1603\nsuit,1,kinglear,1603\nlaying,1,kinglear,1603\ngeese,1,kinglear,1603\nMean,1,kinglear,1603\nscorn,1,kinglear,1603\nscore,1,kinglear,1603\nperil,1,kinglear,1603\nlove's,1,kinglear,1603\nhalter,1,kinglear,1603\nstealing,1,kinglear,1603\nbirds,1,kinglear,1603\nHysterica,1,kinglear,1603\nretinue,1,kinglear,1603\nconvenience,1,kinglear,1603\ncradle,1,kinglear,1603\nearnestly,1,kinglear,1603\nthunders,1,kinglear,1603\nrubb'd,1,kinglear,1603\nknives,1,kinglear,1603\nsot,1,kinglear,1603\nengraffed,1,kinglear,1603\nindiscretion,1,kinglear,1603\nsol,1,kinglear,1603\nchannels,1,kinglear,1603\nsummons,1,kinglear,1603\nsteps,1,kinglear,1603\nsop,1,kinglear,1603\nabuses,1,kinglear,1603\nskill,1,kinglear,1603\nunpossessing,1,kinglear,1603\nlives',1,kinglear,1603\nconstrains,1,kinglear,1603\nmantle,1,kinglear,1603\nInstantly,1,kinglear,1603\nExasperates,1,kinglear,1603\ndeformity,1,kinglear,1603\nConferring,1,kinglear,1603\n'I,1,kinglear,1603\nkindle,1,kinglear,1603\nwoundings,1,kinglear,1603\ninterlude,1,kinglear,1603\nstern,1,kinglear,1603\nPoints,1,kinglear,1603\nkindly,1,kinglear,1603\nequity,1,kinglear,1603\nsecond,1,kinglear,1603\npermit,1,kinglear,1603\ndeeply,1,kinglear,1603\nfirmly,1,kinglear,1603\nwages,1,kinglear,1603\nhefted,1,kinglear,1603\npitiful,1,kinglear,1603\nsky,1,kinglear,1603\ngather,1,kinglear,1603\ngroans,1,kinglear,1603\nknapped,1,kinglear,1603\ncamps,1,kinglear,1603\nsets,1,kinglear,1603\nchildhood,1,kinglear,1603\ndoubt,1,kinglear,1603\nunaccommodated,1,kinglear,1603\neither's,1,kinglear,1603\n'Down,1,kinglear,1603\ndally,1,kinglear,1603\nstuff,1,kinglear,1603\nreveal'd,1,kinglear,1603\nSpake,1,kinglear,1603\nexecuting,1,kinglear,1603\nthin,1,kinglear,1603\ndearth,1,kinglear,1603\nBurning,1,kinglear,1603\nplay'd,1,kinglear,1603\ncruels,1,kinglear,1603\nAbhorred,1,kinglear,1603\nscope,1,kinglear,1603\npieced,1,kinglear,1603\nbuoy'd,1,kinglear,1603\nbecomes,1,kinglear,1603\ncheese,1,kinglear,1603\nlightnings,1,kinglear,1603\nfoulness,1,kinglear,1603\naffect,1,kinglear,1603\nsuffered,1,kinglear,1603\ndaughter's,1,kinglear,1603\nsuck'd,1,kinglear,1603\npoverty,1,kinglear,1603\nAuthority,1,kinglear,1603\ndissolutions,1,kinglear,1603\nexhibition,1,kinglear,1603\ndeclining,1,kinglear,1603\nourselves,1,kinglear,1603\nthieves,1,kinglear,1603\npuissant,1,kinglear,1603\ndiligent,1,kinglear,1603\ntaught,1,kinglear,1603\nTopple,1,kinglear,1603\nAlbion,1,kinglear,1603\nPeruse,1,kinglear,1603\nContending,1,kinglear,1603\nloosen,1,kinglear,1603\nbroils,1,kinglear,1603\nBench,1,kinglear,1603\nguide,1,kinglear,1603\nDiminish'd,1,kinglear,1603\nbluntness,1,kinglear,1603\nbreeches,1,kinglear,1603\nwear'st,1,kinglear,1603\nredeem,1,kinglear,1603\nLearn,1,kinglear,1603\nfortunately,1,kinglear,1603\ndebosh'd,1,kinglear,1603\nbriefness,1,kinglear,1603\nWast,1,kinglear,1603\nconceit,1,kinglear,1603\nopportunities,1,kinglear,1603\nCommit,1,kinglear,1603\nRowland,1,kinglear,1603\nwakest,1,kinglear,1603\nclimbing,1,kinglear,1603\npuppet's,1,kinglear,1603\ncrime,1,kinglear,1603\nrevives,1,kinglear,1603\ncourtier,1,kinglear,1603\npalaces,1,kinglear,1603\ntwelve,1,kinglear,1603\nguarded,1,kinglear,1603\nfoppish,1,kinglear,1603\nwawl,1,kinglear,1603\noffensive,1,kinglear,1603\nchoughs,1,kinglear,1603\nhabit,1,kinglear,1603\nfigure,1,kinglear,1603\nbliss,1,kinglear,1603\ndieted,1,kinglear,1603\nTurk,1,kinglear,1603\nthreading,1,kinglear,1603\nfastened,1,kinglear,1603\nTigers,1,kinglear,1603\ntoucheth,1,kinglear,1603\nbeggarly,1,kinglear,1603\nWise,1,kinglear,1603\ndetain,1,kinglear,1603\nshowest,1,kinglear,1603\npassio,1,kinglear,1603\nabhorr'd,1,kinglear,1603\nencounter,1,kinglear,1603\nseeks,1,kinglear,1603\nconfer,1,kinglear,1603\ndearly,1,kinglear,1603\nstung,1,kinglear,1603\nunable,1,kinglear,1603\nflatterer,1,kinglear,1603\nmaster',1,kinglear,1603\nworthy,1,kinglear,1603\njakes,1,kinglear,1603\nbursts,1,kinglear,1603\nflattered,1,kinglear,1603\nthence,1,kinglear,1603\nmemories,1,kinglear,1603\nWhilst,1,kinglear,1603\nsue,1,kinglear,1603\nsub,1,kinglear,1603\nobeyed,1,kinglear,1603\nbiding,1,kinglear,1603\nelement's,1,kinglear,1603\nReport,1,kinglear,1603\ngovern'd,1,kinglear,1603\nreprovable,1,kinglear,1603\nmutinies,1,kinglear,1603\nelder,1,kinglear,1603\ngrumble,1,kinglear,1603\nvanity,1,kinglear,1603\nWipe,1,kinglear,1603\ncompanion,1,kinglear,1603\naccent,1,kinglear,1603\ncivet,1,kinglear,1603\nfoins,1,kinglear,1603\nrein,1,kinglear,1603\nbuttered,1,kinglear,1603\nspaniel,1,kinglear,1603\npromise,1,kinglear,1603\nSepulchring,1,kinglear,1603\ndescent,1,kinglear,1603\npunish,1,kinglear,1603\nbows,1,kinglear,1603\nOwes,1,kinglear,1603\nSpare,1,kinglear,1603\nplainly,1,kinglear,1603\nUnnatural,1,kinglear,1603\npinfold,1,kinglear,1603\nclaim,1,kinglear,1603\nrelish,1,kinglear,1603\ndescend,1,kinglear,1603\nsaucy,1,kinglear,1603\nRepose,1,kinglear,1603\nswore,1,kinglear,1603\nimpetuous,1,kinglear,1603\nmalice,1,kinglear,1603\nSearch,1,kinglear,1603\ncomrade,1,kinglear,1603\nupon's,1,kinglear,1603\nloathly,1,kinglear,1603\nlances,1,kinglear,1603\nsuffering,1,kinglear,1603\nTurlygod,1,kinglear,1603\nlanced,1,kinglear,1603\nWhereto,1,kinglear,1603\nconceals,1,kinglear,1603\nwine,1,kinglear,1603\nrude,1,kinglear,1603\nwing,1,kinglear,1603\npatrimony,1,kinglear,1603\nwishes,1,kinglear,1603\nAloof,1,kinglear,1603\nintrinse,1,kinglear,1603\nporter,1,kinglear,1603\nboil,1,kinglear,1603\nFly,1,kinglear,1603\nsoldier,1,kinglear,1603\nward,1,kinglear,1603\ntax,1,kinglear,1603\nungovern'd,1,kinglear,1603\nwhelk'd,1,kinglear,1603\nbrewers,1,kinglear,1603\nwins,1,kinglear,1603\noily,1,kinglear,1603\ncomedy,1,kinglear,1603\ncaves,1,kinglear,1603\nAlong,1,kinglear,1603\nBlow,1,kinglear,1603\nVaunt,1,kinglear,1603\nSafer,1,kinglear,1603\nlength,1,kinglear,1603\nrent,1,kinglear,1603\nknees,1,kinglear,1603\nbattle's,1,kinglear,1603\nPlease,1,kinglear,1603\noutlaw'd,1,kinglear,1603\nentertained,1,kinglear,1603\nwenches',1,kinglear,1603\nwipe,1,kinglear,1603\nabjure,1,kinglear,1603\nheaved,1,kinglear,1603\nunbutton,1,kinglear,1603\nsummit,1,kinglear,1603\nincestuous,1,kinglear,1603\ndies,1,kinglear,1603\nbolt,1,kinglear,1603\nponder,1,kinglear,1603\nanon,1,kinglear,1603\nservile,1,kinglear,1603\nmaidenliest,1,kinglear,1603\nnear's,1,kinglear,1603\nExpose,1,kinglear,1603\n'GONERIL,1,kinglear,1603\ncustom,1,kinglear,1603\naccuse,1,kinglear,1603\nsucceed,1,kinglear,1603\nPutting,1,kinglear,1603\nsooth,1,kinglear,1603\nproperty,1,kinglear,1603\nparricides,1,kinglear,1603\nworld's,1,kinglear,1603\nAngering,1,kinglear,1603\nhatch,1,kinglear,1603\nbidding,1,kinglear,1603\nmalady,1,kinglear,1603\nungracious,1,kinglear,1603\ndismantle,1,kinglear,1603\nwars,1,kinglear,1603\ndice,1,kinglear,1603\ntailors',1,kinglear,1603\nadvancement,1,kinglear,1603\nthroughly,1,kinglear,1603\nmeat,1,kinglear,1603\nBurn,1,kinglear,1603\ndistress,1,kinglear,1603\njoin'd,1,kinglear,1603\nflowing,1,kinglear,1603\nsteep,1,kinglear,1603\ndomestic,1,kinglear,1603\ncrazed,1,kinglear,1603\nroofs,1,kinglear,1603\nboon,1,kinglear,1603\nupbraids,1,kinglear,1603\nframed,1,kinglear,1603\nRepair,1,kinglear,1603\ncolour,1,kinglear,1603\ninfirmity,1,kinglear,1603\nLove's,1,kinglear,1603\npraises,1,kinglear,1603\ntens,1,kinglear,1603\nmenaces,1,kinglear,1603\naspect,1,kinglear,1603\njarring,1,kinglear,1603\nbig,1,kinglear,1603\nsmokes,1,kinglear,1603\nshorter,1,kinglear,1603\nbills,1,kinglear,1603\nzed,1,kinglear,1603\nmistaken,1,kinglear,1603\nCrown'd,1,kinglear,1603\nbastardy,1,kinglear,1603\nbastards,1,kinglear,1603\nslaves,1,kinglear,1603\nmorning,1,kinglear,1603\ninvest,1,kinglear,1603\nforks,1,kinglear,1603\nTakes,1,kinglear,1603\nvengeances,1,kinglear,1603\nmortality,1,kinglear,1603\nKent's,1,kinglear,1603\nLeaving,1,kinglear,1603\nenjoy'd,1,kinglear,1603\nbesort,1,kinglear,1603\nmelancholy,1,kinglear,1603\ndiscreet,1,kinglear,1603\nhap,1,kinglear,1603\nvisible,1,kinglear,1603\nbog,1,kinglear,1603\nDrew,1,kinglear,1603\nsnuff,1,kinglear,1603\nadjoining,1,kinglear,1603\ncarbuncle,1,kinglear,1603\nsweeten,1,kinglear,1603\nscared,1,kinglear,1603\nrivers,1,kinglear,1603\nBelike,1,kinglear,1603\nparamoured,1,kinglear,1603\nmaledictions,1,kinglear,1603\nserving,1,kinglear,1603\nhay,1,kinglear,1603\ndistinguish,1,kinglear,1603\ncompeers,1,kinglear,1603\nsigh,1,kinglear,1603\nSick,1,kinglear,1603\nkneeling,1,kinglear,1603\nflattery,1,kinglear,1603\nimmediacy,1,kinglear,1603\npat,1,kinglear,1603\nmesses,1,kinglear,1603\nspoil,1,kinglear,1603\ninfection,1,kinglear,1603\nstubborn,1,kinglear,1603\nOppressed,1,kinglear,1603\ndepend,1,kinglear,1603\nhang'd,1,kinglear,1603\nwronged,1,kinglear,1603\nmeads,1,kinglear,1603\nLooks,1,kinglear,1603\nHound,1,kinglear,1603\namplify,1,kinglear,1603\nlugg'd,1,kinglear,1603\nStocks,1,kinglear,1603\nloath,1,kinglear,1603\nCroak,1,kinglear,1603\nreason'd,1,kinglear,1603\nvolk,1,kinglear,1603\ndeeds,1,kinglear,1603\nsequent,1,kinglear,1603\nShunn'd,1,kinglear,1603\nwash'd,1,kinglear,1603\nhey,1,kinglear,1603\nlance,1,kinglear,1603\nmurderers,1,kinglear,1603\nLa,1,kinglear,1603\nHaving,1,kinglear,1603\nteem,1,kinglear,1603\nbolds,1,kinglear,1603\nNature,1,kinglear,1603\ngoodliest,1,kinglear,1603\nbay,1,kinglear,1603\nEscaped,1,kinglear,1603\nscurvy,1,kinglear,1603\nperfume,1,kinglear,1603\nrazed,1,kinglear,1603\nlands,1,kinglear,1603\nflaws,1,kinglear,1603\nlivered,1,kinglear,1603\nCentaurs,1,kinglear,1603\npew,1,kinglear,1603\ngentleness,1,kinglear,1603\nmusty,1,kinglear,1603\nunless,1,kinglear,1603\nbestirred,1,kinglear,1603\ncotes,1,kinglear,1603\nSays,1,kinglear,1603\nSuspend,1,kinglear,1603\nin't,1,kinglear,1603\ndimensions,1,kinglear,1603\nin's,1,kinglear,1603\nkept,1,kinglear,1603\nPersian,1,kinglear,1603\nmerited,1,kinglear,1603\npities,1,kinglear,1603\nwarring,1,kinglear,1603\npen,1,kinglear,1603\npitiless,1,kinglear,1603\njudging,1,kinglear,1603\nconflicting,1,kinglear,1603\nDecline,1,kinglear,1603\nforce,1,kinglear,1603\n'parel,1,kinglear,1603\ninnocent,1,kinglear,1603\nTooth,1,kinglear,1603\nfitchew,1,kinglear,1603\nremainder,1,kinglear,1603\nmiracles,1,kinglear,1603\nhit,1,kinglear,1603\nexact,1,kinglear,1603\nbuzz,1,kinglear,1603\ndisclaims,1,kinglear,1603\nrequired,1,kinglear,1603\npiteous,1,kinglear,1603\nHo,1,kinglear,1603\nsovereignty,1,kinglear,1603\nmopping,1,kinglear,1603\ngrime,1,kinglear,1603\nunruly,1,kinglear,1603\nwhole,1,kinglear,1603\ntrowest,1,kinglear,1603\nEffects,1,kinglear,1603\nhusbands,1,kinglear,1603\ndeserved,1,kinglear,1603\nease,1,kinglear,1603\ndigest,1,kinglear,1603\nderides,1,kinglear,1603\npolitician,1,kinglear,1603\nbraggart,1,kinglear,1603\narrest,1,kinglear,1603\npath,1,kinglear,1603\nStain,1,kinglear,1603\nfated,1,kinglear,1603\nconqueror,1,kinglear,1603\nunchaste,1,kinglear,1603\nadded,1,kinglear,1603\nstock'd,1,kinglear,1603\npinched,1,kinglear,1603\ncautions,1,kinglear,1603\nadder,1,kinglear,1603\ntroops,1,kinglear,1603\nhides,1,kinglear,1603\nfootball,1,kinglear,1603\nears,1,kinglear,1603\npit,1,kinglear,1603\nhemlock,1,kinglear,1603\ntreachers,1,kinglear,1603\nchanges,1,kinglear,1603\nSunshine,1,kinglear,1603\nbuoy,1,kinglear,1603\nUp,1,kinglear,1603\nmadded,1,kinglear,1603\nUrsa,1,kinglear,1603\nague,1,kinglear,1603\ncountries,1,kinglear,1603\nMere,1,kinglear,1603\nyourselves,1,kinglear,1603\nnobly,1,kinglear,1603\nRising,1,kinglear,1603\nadulterers,1,kinglear,1603\nunfed,1,kinglear,1603\nGone,1,kinglear,1603\nrevenues,1,kinglear,1603\nhalcyon,1,kinglear,1603\ncorrupter,1,kinglear,1603\nchurches,1,kinglear,1603\nPropinquity,1,kinglear,1603\nbecame,1,kinglear,1603\ncorrupted,1,kinglear,1603\nDukes,1,kinglear,1603\ntitles,1,kinglear,1603\ntheft,1,kinglear,1603\noffered,1,kinglear,1603\nstrain'd,1,kinglear,1603\npriests,1,kinglear,1603\nHowl,1,kinglear,1603\nPlate,1,kinglear,1603\nmoons,1,kinglear,1603\ngowns,1,kinglear,1603\nangler,1,kinglear,1603\nlenders',1,kinglear,1603\nroyalty,1,kinglear,1603\ndivide,1,kinglear,1603\ncostard,1,kinglear,1603\nsits,1,kinglear,1603\napothecary,1,kinglear,1603\nMarshal,1,kinglear,1603\nMend,1,kinglear,1603\nbusy,1,kinglear,1603\nConceive,1,kinglear,1603\nstray,1,kinglear,1603\nDearer,1,kinglear,1603\nDrum,1,kinglear,1603\ncanker,1,kinglear,1603\nmetal,1,kinglear,1603\npreserved,1,kinglear,1603\nbush,1,kinglear,1603\npandar,1,kinglear,1603\nmiscarry,1,kinglear,1603\ncold'st,1,kinglear,1603\nbury,1,kinglear,1603\nburn,1,kinglear,1603\nThou'lt,1,kinglear,1603\ncrust,1,kinglear,1603\nBeating,1,kinglear,1603\nreeking,1,kinglear,1603\nmadman,1,kinglear,1603\ngasted,1,kinglear,1603\nSa,1,kinglear,1603\nmeats,1,kinglear,1603\nsounds,1,kinglear,1603\nclearest,1,kinglear,1603\ntricks,1,kinglear,1603\nmoreover,1,kinglear,1603\nroughness,1,kinglear,1603\ndefects,1,kinglear,1603\ndote,1,kinglear,1603\ndarkling,1,kinglear,1603\ncouch,1,kinglear,1603\nBold,1,kinglear,1603\nweal,1,kinglear,1603\nConfined,1,kinglear,1603\nplaited,1,kinglear,1603\nmistress's,1,kinglear,1603\ncraft,1,kinglear,1603\nChild,1,kinglear,1603\nLife,1,kinglear,1603\nHasten,1,kinglear,1603\nremembers,1,kinglear,1603\nrich'd,1,kinglear,1603\nMumbling,1,kinglear,1603\nplanetary,1,kinglear,1603\nPur,1,kinglear,1603\nmainly,1,kinglear,1603\nBore,1,kinglear,1603\nsamphire,1,kinglear,1603\nmeanest,1,kinglear,1603\nafore,1,kinglear,1603\nrenounce,1,kinglear,1603\nDrawing,1,kinglear,1603\nquestrists,1,kinglear,1603\nblock,1,kinglear,1603\ncurst,1,kinglear,1603\nPre,1,kinglear,1603\nFathers,1,kinglear,1603\nusurers,1,kinglear,1603\njewel,1,kinglear,1603\nPrescribe,1,kinglear,1603\nDidst,1,kinglear,1603\neater,1,kinglear,1603\nsilk,1,kinglear,1603\nextreme,1,kinglear,1603\nHolds,1,kinglear,1603\nStrip,1,kinglear,1603\nconquest,1,kinglear,1603\nbur,1,kinglear,1603\nverity,1,kinglear,1603\nswift,1,kinglear,1603\nvows,1,kinglear,1603\nnettles,1,kinglear,1603\nmystery,1,kinglear,1603\nwaterish,1,kinglear,1603\nmoods,1,kinglear,1603\nBringing,1,kinglear,1603\nAjax,1,kinglear,1603\namongst,1,kinglear,1603\nAbove,1,kinglear,1603\nvassal,1,kinglear,1603\ndisguise,1,kinglear,1603\npreserve,1,kinglear,1603\nAbout,1,kinglear,1603\nswine,1,kinglear,1603\ncasement,1,kinglear,1603\ndivine,1,kinglear,1603\npains,1,kinglear,1603\ngarters,1,kinglear,1603\nhurricanoes,1,kinglear,1603\npicture,1,kinglear,1603\nBlasts,1,kinglear,1603\nWhither,1,kinglear,1603\ndeservings,1,kinglear,1603\nbegs,1,kinglear,1603\nvantage,1,kinglear,1603\npared,1,kinglear,1603\nlately,1,kinglear,1603\nexist,1,kinglear,1603\nhurts,1,kinglear,1603\ndolours,1,kinglear,1603\ndemanding,1,kinglear,1603\nHow's,1,kinglear,1603\nconvey'd,1,kinglear,1603\nanointed,1,kinglear,1603\npotential,1,kinglear,1603\ngarb,1,kinglear,1603\nchafes,1,kinglear,1603\nBethink,1,kinglear,1603\ntower,1,kinglear,1603\npearls,1,kinglear,1603\nuntender,1,kinglear,1603\njointly,1,kinglear,1603\nstore,1,kinglear,1603\nnoted,1,kinglear,1603\nopposeless,1,kinglear,1603\nentertain,1,kinglear,1603\nghost,1,kinglear,1603\nimpatience,1,kinglear,1603\nGod's,1,kinglear,1603\ndeed,1,kinglear,1603\npanting,1,kinglear,1603\ndepositaries,1,kinglear,1603\ndeer,1,kinglear,1603\npleasure's,1,kinglear,1603\nconcealing,1,kinglear,1603\nengine,1,kinglear,1603\npromised,1,kinglear,1603\nwhereto,1,kinglear,1603\nmood,1,kinglear,1603\npapers,1,kinglear,1603\nmiles,1,kinglear,1603\nNature's,1,kinglear,1603\nbetray,1,kinglear,1603\nconfess,1,kinglear,1603\nimpossibilities,1,kinglear,1603\npaste,1,kinglear,1603\nMethought,1,kinglear,1603\ncadent,1,kinglear,1603\nyea,1,kinglear,1603\nraise,1,kinglear,1603\nFear,1,kinglear,1603\nrepent,1,kinglear,1603\nHere's,1,kinglear,1603\nborest,1,kinglear,1603\nconsider,1,kinglear,1603\nCreate,1,kinglear,1603\ncracked,1,kinglear,1603\njewels,1,kinglear,1603\nprevented,1,kinglear,1603\ndebt,1,kinglear,1603\nstool,1,kinglear,1603\nDolphin,1,kinglear,1603\nfa,1,kinglear,1603\ngain,1,kinglear,1603\nwhirlipool,1,kinglear,1603\nfaith'd,1,kinglear,1603\nPass,1,kinglear,1603\nago,1,kinglear,1603\nPast,1,kinglear,1603\ndeficient,1,kinglear,1603\nweakens,1,kinglear,1603\nrails,1,kinglear,1603\nplayer,1,kinglear,1603\nDismissing,1,kinglear,1603\nbo,1,kinglear,1603\nobligation,1,kinglear,1603\ncaitiff,1,kinglear,1603\nmonger,1,kinglear,1603\nant,1,kinglear,1603\nvouchsafe,1,kinglear,1603\nvictory,1,kinglear,1603\nradiant,1,kinglear,1603\n'father',1,kinglear,1603\npluck'd,1,kinglear,1603\nlikely,1,kinglear,1603\nvault,1,kinglear,1603\nStocking,1,kinglear,1603\nliars,1,kinglear,1603\ndiscerning,1,kinglear,1603\nsuggestion,1,kinglear,1603\nlend,1,kinglear,1603\nimperfections,1,kinglear,1603\nredress,1,kinglear,1603\npoise,1,kinglear,1603\nboast,1,kinglear,1603\nLate,1,kinglear,1603\ngale,1,kinglear,1603\nwaist,1,kinglear,1603\nsects,1,kinglear,1603\ndefence,1,kinglear,1603\nusurer,1,kinglear,1603\nhandy,1,kinglear,1603\nFeel,1,kinglear,1603\nList,1,kinglear,1603\ncocks,1,kinglear,1603\ngentlewoman,1,kinglear,1603\nspreads,1,kinglear,1603\nah,1,kinglear,1603\nBlows,1,kinglear,1603\nfourscore,1,kinglear,1603\nEnforce,1,kinglear,1603\npiercing,1,kinglear,1603\nbeast's,1,kinglear,1603\ncrosses,1,kinglear,1603\nmills,1,kinglear,1603\ndried,1,kinglear,1603\nbutton,1,kinglear,1603\nhospitable,1,kinglear,1603\noh,1,kinglear,1603\nabominable,1,kinglear,1603\nheretics,1,kinglear,1603\nask'd,1,kinglear,1603\ncowardly,1,kinglear,1603\nattending,1,kinglear,1603\nbastardizing,1,kinglear,1603\nfears,1,kinglear,1603\nbites,1,kinglear,1603\nunprized,1,kinglear,1603\nplant,1,kinglear,1603\nregion,1,kinglear,1603\nsettling,1,kinglear,1603\nstrain,1,kinglear,1603\n'casion,1,kinglear,1603\ncrave,1,kinglear,1603\ndetector,1,kinglear,1603\nroused,1,kinglear,1603\nDeliver'd,1,kinglear,1603\nwrinkles,1,kinglear,1603\nmi,1,kinglear,1603\nsharper,1,kinglear,1603\nCuran,1,kinglear,1603\nConspirant,1,kinglear,1603\ncrawl,1,kinglear,1603\ncatastrophe,1,kinglear,1603\nPinion,1,kinglear,1603\nGods,1,kinglear,1603\naccount,1,kinglear,1603\nauspicious,1,kinglear,1603\nbitch,1,kinglear,1603\nmilky,1,kinglear,1603\nattendant,1,kinglear,1603\nmingle,1,kinglear,1603\ndog's,1,kinglear,1603\nTook,1,kinglear,1603\nReady,1,kinglear,1603\npilferings,1,kinglear,1603\nvalue,1,kinglear,1603\nenmity,1,kinglear,1603\nsmilets,1,kinglear,1603\ninn,1,kinglear,1603\nscornful,1,kinglear,1603\nside's,1,kinglear,1603\nglance,1,kinglear,1603\noffences,1,kinglear,1603\nfind'st,1,kinglear,1603\nbegg'd,1,kinglear,1603\nFilial,1,kinglear,1603\npursued,1,kinglear,1603\nmiserable,1,kinglear,1603\nchallenged,1,kinglear,1603\npersecutions,1,kinglear,1603\nloud,1,kinglear,1603\noffer'd,1,kinglear,1603\nla,1,kinglear,1603\ncauses,1,kinglear,1603\nalteration,1,kinglear,1603\nado,1,kinglear,1603\nparents,1,kinglear,1603\nloss,1,kinglear,1603\n'bove,1,kinglear,1603\nsweetness,1,kinglear,1603\nbeholding,1,kinglear,1603\nadd,1,kinglear,1603\nAcquaint,1,kinglear,1603\nplaying,1,kinglear,1603\nsemblance,1,kinglear,1603\ndumbness,1,kinglear,1603\nObidicut,1,kinglear,1603\nfrustrate,1,kinglear,1603\nLipsbury,1,kinglear,1603\nlest,1,kinglear,1603\nMerlin,1,kinglear,1603\nSennet,1,kinglear,1603\nall's,1,kinglear,1603\nbobtail,1,kinglear,1603\ndevil,1,kinglear,1603\ncontinent,1,kinglear,1603\nGrace,1,kinglear,1603\ndefy,1,kinglear,1603\nnecessary,1,kinglear,1603\nswear'st,1,kinglear,1603\nch'ill,1,kinglear,1603\nSmite,1,kinglear,1603\nbootless,1,kinglear,1603\nspouse,1,kinglear,1603\nknee,1,kinglear,1603\nscatter'd,1,kinglear,1603\nexpiration,1,kinglear,1603\nuntimely,1,kinglear,1603\njourney,1,kinglear,1603\nharshness,1,kinglear,1603\nwagtail,1,kinglear,1603\nnighted,1,kinglear,1603\nacquaint,1,kinglear,1603\nnatures,1,kinglear,1603\npure,1,kinglear,1603\nhog,1,kinglear,1603\nraineth,1,kinglear,1603\nBeen,1,kinglear,1603\nInfirmity,1,kinglear,1603\nclimb,1,kinglear,1603\nCame,1,kinglear,1603\nthrice,1,kinglear,1603\nbrothels,1,kinglear,1603\nclipp'd,1,kinglear,1603\nhark,1,kinglear,1603\nPull,1,kinglear,1603\naccents,1,kinglear,1603\ngraves,1,kinglear,1603\nchalky,1,kinglear,1603\nhardly,1,kinglear,1603\nHaply,1,kinglear,1603\nreasons,1,kinglear,1603\nSeeing,1,kinglear,1603\noppression,1,kinglear,1603\npersonal,1,kinglear,1603\ntenderly,1,kinglear,1603\nhare,1,kinglear,1603\nblamed,1,kinglear,1603\noutward,1,kinglear,1603\nunmannerly,1,kinglear,1603\nBreak,1,kinglear,1603\nhowe'er,1,kinglear,1603\nBrought,1,kinglear,1603\nuncaught,1,kinglear,1603\nfront,1,kinglear,1603\nfaints,1,kinglear,1603\nincline,1,kinglear,1603\nfasten'd,1,kinglear,1603\nseconds,1,kinglear,1603\nDinner,1,kinglear,1603\nweapon,1,kinglear,1603\naye,1,kinglear,1603\npackings,1,kinglear,1603\nhall,1,kinglear,1603\nconspiracy,1,kinglear,1603\ncrow,1,kinglear,1603\nhaunts,1,kinglear,1603\nround,1,kinglear,1603\npoorly,1,kinglear,1603\nlabouring,1,kinglear,1603\nArms,1,kinglear,1603\ndissipation,1,kinglear,1603\nGeneral,1,kinglear,1603\nHarbour,1,kinglear,1603\ncontinents,1,kinglear,1603\ninfirmities,1,kinglear,1603\ntoasted,1,kinglear,1603\ntext,1,kinglear,1603\nshallow,1,kinglear,1603\nmysteries,1,kinglear,1603\ntrill'd,1,kinglear,1603\nperform'd,1,kinglear,1603\nsee't,1,kinglear,1603\nserpent's,1,kinglear,1603\n'Let,1,kinglear,1603\nfaintly,1,kinglear,1603\nstrings,1,kinglear,1603\nTrumpets,1,kinglear,1603\nBeware,1,kinglear,1603\nt',1,kinglear,1603\nnobleness,1,kinglear,1603\nHopdance,1,kinglear,1603\nshut,1,kinglear,1603\nFull,1,kinglear,1603\nfour,1,kinglear,1603\ndraws,1,kinglear,1603\nporridge,1,kinglear,1603\nsincere,1,kinglear,1603\nthreaten'd,1,kinglear,1603\nchambermaids,1,kinglear,1603\nsuitors,1,kinglear,1603\nforty,1,kinglear,1603\npant,1,kinglear,1603\nschool,1,kinglear,1603\nprovided,1,kinglear,1603\nparticulars,1,kinglear,1603\nwhore's,1,kinglear,1603\nDuring,1,kinglear,1603\nmiscarried,1,kinglear,1603\nhandles,1,kinglear,1603\nshell,1,kinglear,1603\nspotted,1,kinglear,1603\nmarching,1,kinglear,1603\npotency,1,kinglear,1603\nacquaintance,1,kinglear,1603\nmadam's,1,kinglear,1603\nstelled,1,kinglear,1603\nUnder,1,kinglear,1603\nessay,1,kinglear,1603\nCaius,1,kinglear,1603\nUntimely,1,kinglear,1603\nrashness,1,kinglear,1603\nSmile,1,kinglear,1603\nexalt,1,kinglear,1603\noccasions,1,kinglear,1603\nbrothers,1,kinglear,1603\nfork,1,kinglear,1603\nknocks,1,kinglear,1603\n'Dear,1,kinglear,1603\nCommend,1,kinglear,1603\ngathers,1,kinglear,1603\ndominions,1,kinglear,1603\ncrum,1,kinglear,1603\nUnwhipp'd,1,kinglear,1603\nclothier's,1,kinglear,1603\nstranger,1,kinglear,1603\nhangs,1,kinglear,1603\nheaviness,1,kinglear,1603\nOccasions,1,kinglear,1603\nlameness,1,kinglear,1603\nextremest,1,kinglear,1603\ndiest,1,kinglear,1603\noutrage,1,kinglear,1603\nlitter,1,kinglear,1603\nwretchedness,1,kinglear,1603\nfore,1,kinglear,1603\nford,1,kinglear,1603\nballow,1,kinglear,1603\nbellyful,1,kinglear,1603\nfops,1,kinglear,1603\nRobes,1,kinglear,1603\nowes,1,kinglear,1603\nincurr'd,1,kinglear,1603\nIngratitude,1,kinglear,1603\ndevise,1,kinglear,1603\npaternal,1,kinglear,1603\npersevere,1,kinglear,1603\nforlorn,1,kinglear,1603\nfear'd,1,kinglear,1603\npack,1,kinglear,1603\nrings,1,kinglear,1603\nproper,1,kinglear,1603\nhurtless,1,kinglear,1603\nshod,1,kinglear,1603\nshoe,1,kinglear,1603\nsliver,1,kinglear,1603\nprecipitating,1,kinglear,1603\nconsideration,1,kinglear,1603\nProper,1,kinglear,1603\nflatter'd,1,kinglear,1603\nimages,1,kinglear,1603\nprepared,1,kinglear,1603\nbearer,1,kinglear,1603\nyard,1,kinglear,1603\nHot,1,kinglear,1603\ntestimony,1,kinglear,1603\nexcess,1,kinglear,1603\ncreatures,1,kinglear,1603\ntearing,1,kinglear,1603\nWeary,1,kinglear,1603\nfresh,1,kinglear,1603\navouched,1,kinglear,1603\nzo,1,kinglear,1603\nlouse,1,kinglear,1603\nmayst,1,kinglear,1603\nattempting,1,kinglear,1603\nYields,1,kinglear,1603\nnearly,1,kinglear,1603\nfold,1,kinglear,1603\nborder'd,1,kinglear,1603\napplied,1,kinglear,1603\nsecret,1,kinglear,1603\ntrice,1,kinglear,1603\nstocking,1,kinglear,1603\ncasualties,1,kinglear,1603\nShe'll,1,kinglear,1603\nArm,1,kinglear,1603\nfoppery,1,kinglear,1603\nTorches,1,kinglear,1603\nsoundest,1,kinglear,1603\nfell'd,1,kinglear,1603\nunnumber'd,1,kinglear,1603\ntrick,1,kinglear,1603\nundone,1,kinglear,1603\nstrangeness,1,kinglear,1603\npartial,1,kinglear,1603\nThink'st,1,kinglear,1603\nglib,1,kinglear,1603\nfee,1,kinglear,1603\nIntelligence,1,kinglear,1603\nvurther,1,kinglear,1603\nfed,1,kinglear,1603\nsmells,1,kinglear,1603\nHard,1,kinglear,1603\nPursue,1,kinglear,1603\nfen,1,kinglear,1603\nministers,1,kinglear,1603\narray,1,kinglear,1603\nrevenging,1,kinglear,1603\nnaughty,1,kinglear,1603\nbehavior,1,kinglear,1603\nwarp'd,1,kinglear,1603\nfiends',1,kinglear,1603\nshow'dst,1,kinglear,1603\nflatteries,1,kinglear,1603\ntoken,1,kinglear,1603\nPantingly,1,kinglear,1603\ntooth'd,1,kinglear,1603\nBessy,1,kinglear,1603\nsophisticated,1,kinglear,1603\ndemanded,1,kinglear,1603\nceases,1,kinglear,1603\ntribe,1,kinglear,1603\nrivals,1,kinglear,1603\nFathom,1,kinglear,1603\nbeetles,1,kinglear,1603\nbroke,1,kinglear,1603\nArt,1,kinglear,1603\nplackets,1,kinglear,1603\nguess,1,kinglear,1603\nbeams,1,kinglear,1603\nliver'd,1,kinglear,1603\nmoves,1,kinglear,1603\nprecedent,1,kinglear,1603\nCover,1,kinglear,1603\ncapital,1,kinglear,1603\nalarum'd,1,kinglear,1603\nBids,1,kinglear,1603\nventured,1,kinglear,1603\nheight,1,kinglear,1603\nwitch,1,kinglear,1603\nkicked,1,kinglear,1603\ntrumpet's,1,kinglear,1603\nAlive,1,kinglear,1603\nscalding,1,kinglear,1603\nwatch,1,kinglear,1603\nrarity,1,kinglear,1603\ndeniest,1,kinglear,1603\nHorses,1,kinglear,1603\nShows,1,kinglear,1603\nborrow,1,kinglear,1603\nfinical,1,kinglear,1603\ncontented,1,kinglear,1603\nleak,1,kinglear,1603\nbeaks,1,kinglear,1603\nFourscore,1,kinglear,1603\nrepeals,1,kinglear,1603\nCaptains,1,kinglear,1603\nMan's,1,kinglear,1603\ncriest,1,kinglear,1603\nKill,1,kinglear,1603\nesperance,1,kinglear,1603\nindisposed,1,kinglear,1603\ncondemn'd,1,kinglear,1603\nbreathes,1,kinglear,1603\ntwinkled,1,kinglear,1603\nTearing,1,kinglear,1603\nconfederacy,1,kinglear,1603\nbreeds,1,kinglear,1603\nRipeness,1,kinglear,1603\nWounds,1,kinglear,1603\nsyllable,1,kinglear,1603\nmortified,1,kinglear,1603\nshameful,1,kinglear,1603\nventure,1,kinglear,1603\nrigor,1,kinglear,1603\nnay,1,kinglear,1603\ncounterfeiting,1,kinglear,1603\nunloose,1,kinglear,1603\nSpoke,1,kinglear,1603\nTen,1,kinglear,1603\nempty,1,kinglear,1603\ndrench'd,1,kinglear,1603\nnations,1,kinglear,1603\nwrench'd,1,kinglear,1603\ngriefs,1,kinglear,1603\nabated,1,kinglear,1603\napprehension,1,kinglear,1603\nInfect,1,kinglear,1603\nheretofore,1,kinglear,1603\nTripping,1,kinglear,1603\nguiltless,1,kinglear,1603\nsession,1,kinglear,1603\nMastiff,1,kinglear,1603\nsickly,1,kinglear,1603\nmotley,1,kinglear,1603\n'Gainst,1,kinglear,1603\nunknown,1,kinglear,1603\nrepose,1,kinglear,1603\nElse,1,kinglear,1603\nsquare,1,kinglear,1603\napply,1,kinglear,1603\nmarks,1,kinglear,1603\nsapient,1,kinglear,1603\ncontains,1,kinglear,1603\npenury,1,kinglear,1603\nMadman,1,kinglear,1603\nretreat,1,kinglear,1603\nCrack,1,kinglear,1603\nrare,1,kinglear,1603\nfraught,1,kinglear,1603\nOpposed,1,kinglear,1603\nunquietly,1,kinglear,1603\nhire,1,kinglear,1603\noccupation,1,kinglear,1603\nElection,1,kinglear,1603\ncataracts,1,kinglear,1603\npresages,1,kinglear,1603\nprovoking,1,kinglear,1603\nVengeance,1,kinglear,1603\nfarmer's,1,kinglear,1603\nbeats,1,kinglear,1603\nStrive,1,kinglear,1603\napple,1,kinglear,1603\nDwells,1,kinglear,1603\nscald,1,kinglear,1603\ncircle,1,kinglear,1603\nshaking,1,kinglear,1603\nBad,1,kinglear,1603\ncurtains,1,kinglear,1603\nJudicious,1,kinglear,1603\nforsaken,1,kinglear,1603\nNuncle,1,kinglear,1603\nmajor,1,kinglear,1603\nmildness,1,kinglear,1603\nwhining,1,kinglear,1603\n'Thou,1,kinglear,1603\nLoyal,1,kinglear,1603\ntemperance,1,kinglear,1603\nbrazed,1,kinglear,1603\nentertainment,1,kinglear,1603\nluxury,1,kinglear,1603\n'Sleep,1,kinglear,1603\nremedy,1,kinglear,1603\nbrazen,1,kinglear,1603\nbravely,1,kinglear,1603\nestate,1,kinglear,1603\nfaint,1,kinglear,1603\nfurr'd,1,kinglear,1603\nknots,1,kinglear,1603\nsnuffs,1,kinglear,1603\ncandle,1,kinglear,1603\nhasten,1,kinglear,1603\nfeature,1,kinglear,1603\nentirely,1,kinglear,1603\nSleeps,1,kinglear,1603\nbanners,1,kinglear,1603\nroundest,1,kinglear,1603\nWithold,1,kinglear,1603\nclovest,1,kinglear,1603\npastime,1,kinglear,1603\nSee't,1,kinglear,1603\nsoiled,1,kinglear,1603\nWear,1,kinglear,1603\ntreason's,1,kinglear,1603\noppressed,1,kinglear,1603\nmachinations,1,kinglear,1603\nsquires,1,kinglear,1603\ncourtezan,1,kinglear,1603\nDown,1,kinglear,1603\nslower,1,kinglear,1603\nthankless,1,kinglear,1603\ngoatish,1,kinglear,1603\no'erpaid,1,kinglear,1603\nbridges,1,kinglear,1603\nCourt,1,kinglear,1603\nanatomize,1,kinglear,1603\nBriefly,1,kinglear,1603\nperused,1,kinglear,1603\nwolves,1,kinglear,1603\nNaughty,1,kinglear,1603\narguments,1,kinglear,1603\nAll's,1,kinglear,1603\nequally,1,kinglear,1603\ngarden,1,kinglear,1603\narise,1,kinglear,1603\no'erlook,1,kinglear,1603\nConsider,1,kinglear,1603\nadopted,1,kinglear,1603\nfairs,1,kinglear,1603\nadultery,1,kinglear,1603\nSlave,1,kinglear,1603\nGallow,1,kinglear,1603\npresented,1,kinglear,1603\nunhappy,1,kinglear,1603\nApproach,1,kinglear,1603\nDarest,1,kinglear,1603\nordinance,1,kinglear,1603\nbe't,1,kinglear,1603\nplaces,1,kinglear,1603\nLord,1,kinglear,1603\neggs,1,kinglear,1603\nschoolmasters,1,kinglear,1603\nmadman's,1,kinglear,1603\n'Sisters,1,kinglear,1603\navouch,1,kinglear,1603\nswallows,1,kinglear,1603\nmouse,1,kinglear,1603\nAge,1,kinglear,1603\nopulent,1,kinglear,1603\nWill't,1,kinglear,1603\nvanquish'd,1,kinglear,1603\nwhispered,1,kinglear,1603\nwall'd,1,kinglear,1603\ntrespasses,1,kinglear,1603\nunusual,1,kinglear,1603\nbemadding,1,kinglear,1603\n'Ay',1,kinglear,1603\ncontraries,1,kinglear,1603\nunprovided,1,kinglear,1603\nLost,1,kinglear,1603\nKnows,1,kinglear,1603\nthrowest,1,kinglear,1603\nattire,1,kinglear,1603\nquarrel's,1,kinglear,1603\ngorged,1,kinglear,1603\nconsort,1,kinglear,1603\neffect,1,kinglear,1603\nspurn,1,kinglear,1603\nseasons,1,kinglear,1603\nspurs,1,kinglear,1603\nsinn'd,1,kinglear,1603\nlodge,1,kinglear,1603\ndaylight,1,kinglear,1603\nairs,1,kinglear,1603\nlecher's,1,kinglear,1603\ndistaff,1,kinglear,1603\nstare,1,kinglear,1603\njovial,1,kinglear,1603\narrives,1,kinglear,1603\npoisoned,1,kinglear,1603\nmilk,1,kinglear,1603\nboasted,1,kinglear,1603\nSlain,1,kinglear,1603\nHobbididence,1,kinglear,1603\nmile,1,kinglear,1603\nmortar,1,kinglear,1603\nmild,1,kinglear,1603\nsessa,1,kinglear,1603\nelf,1,kinglear,1603\n'If,1,kinglear,1603\nLong,1,kinglear,1603\ndisdain'd,1,kinglear,1603\nDarnel,1,kinglear,1603\nteeth,1,kinglear,1603\npacks,1,kinglear,1603\ncovert,1,kinglear,1603\nsatisfaction,1,kinglear,1603\nconclusion,1,kinglear,1603\nMakes,1,kinglear,1603\nfilth,1,kinglear,1603\nsacrifices,1,kinglear,1603\nSoon,1,kinglear,1603\nbosoms,1,kinglear,1603\nRemembers,1,kinglear,1603\nescape,1,kinglear,1603\nwatched,1,kinglear,1603\nblanket,1,kinglear,1603\nThroned,1,kinglear,1603\nwatches,1,kinglear,1603\nDarkness,1,kinglear,1603\nobservation,1,kinglear,1603\nvent,1,kinglear,1603\nfortnight,1,kinglear,1603\nquakes,1,kinglear,1603\nwrought,1,kinglear,1603\nhissing,1,kinglear,1603\nkeeper,1,kinglear,1603\ndowry,1,kinglear,1603\nhereditary,1,kinglear,1603\nmalt,1,kinglear,1603\ninsolent,1,kinglear,1603\nlowest,1,kinglear,1603\ndiscerns,1,kinglear,1603\nreading,1,kinglear,1603\nprocure,1,kinglear,1603\nobscured,1,kinglear,1603\nvortnight,1,kinglear,1603\nbolted,1,kinglear,1603\nbeach,1,kinglear,1603\nFather,1,kinglear,1603\nskin,1,kinglear,1603\nvillanous,1,kinglear,1603\nguessingly,1,kinglear,1603\norgans,1,kinglear,1603\ntenth,1,kinglear,1603\nmare,1,kinglear,1603\nforests,1,kinglear,1603\npersuades,1,kinglear,1603\nkissing,1,kinglear,1603\ndream,1,kinglear,1603\nincite,1,kinglear,1603\nranks,1,kinglear,1603\npersuaded,1,kinglear,1603\ndisnatured,1,kinglear,1603\nthick,1,kinglear,1603\nraiment,1,kinglear,1603\nblot,1,kinglear,1603\ndevils,1,kinglear,1603\ncontemned'st,1,kinglear,1603\ncoronet,1,kinglear,1603\nInvades,1,kinglear,1603\nmire,1,kinglear,1603\nfarms,1,kinglear,1603\nRevoke,1,kinglear,1603\nflatter,1,kinglear,1603\ninch,1,kinglear,1603\nAffliction,1,kinglear,1603\ngates,1,kinglear,1603\naddress,1,kinglear,1603\nslenderly,1,kinglear,1603\nshoulder,1,kinglear,1603\nchide,1,kinglear,1603\nspecial,1,kinglear,1603\nmist,1,kinglear,1603\nfret,1,kinglear,1603\narch,1,kinglear,1603\nbenefit,1,kinglear,1603\nfish,1,kinglear,1603\nsinning,1,kinglear,1603\nminikin,1,kinglear,1603\nplenteous,1,kinglear,1603\ncrab's,1,kinglear,1603\nfeelingly,1,kinglear,1603\nbleak,1,kinglear,1603\nengender'd,1,kinglear,1603\ncozen'd,1,kinglear,1603\ndischarge,1,kinglear,1603\nreposal,1,kinglear,1603\nnaught,1,kinglear,1603\nordinary,1,kinglear,1603\nlaughs,1,kinglear,1603\npother,1,kinglear,1603\nundivulged,1,kinglear,1603\nfantastically,1,kinglear,1603\nparent,1,kinglear,1603\nborrow'd,1,kinglear,1603\ndoubted,1,kinglear,1603\nunbolted,1,kinglear,1603\nBeing,1,kinglear,1603\ngreediness,1,kinglear,1603\nJug,1,kinglear,1603\ndiscarded,1,kinglear,1603\noil,1,kinglear,1603\nmistress',1,kinglear,1603\naccommodate,1,kinglear,1603\nsayest,1,kinglear,1603\nFilths,1,kinglear,1603\nOffering,1,kinglear,1603\nmonopoly,1,kinglear,1603\nCommanded,1,kinglear,1603\nfirm,1,kinglear,1603\nwed,1,kinglear,1603\nweb,1,kinglear,1603\ndesired,1,kinglear,1603\nliving,1,kinglear,1603\nstain,1,kinglear,1603\nbear'st,1,kinglear,1603\napish,1,kinglear,1603\nLending,1,kinglear,1603\nmusters,1,kinglear,1603\nFound,1,kinglear,1603\nbehalf,1,kinglear,1603\nratsbane,1,kinglear,1603\nheadlong,1,kinglear,1603\nHalloo,1,kinglear,1603\nComing,1,kinglear,1603\nsharpness,1,kinglear,1603\nducking,1,kinglear,1603\nsuspicion,1,kinglear,1603\naffairs,1,kinglear,1603\ncoining,1,kinglear,1603\n'Twixt,1,kinglear,1603\nstink,1,kinglear,1603\nsting,1,kinglear,1603\nThey'll,1,kinglear,1603\nTray,1,kinglear,1603\ncontemplation,1,kinglear,1603\nneat,1,kinglear,1603\nmerits,1,kinglear,1603\n'No,1,kinglear,1603\nflies,1,kinglear,1603\nstale,1,kinglear,1603\nsalt,1,kinglear,1603\npound,1,kinglear,1603\n'My,1,kinglear,1603\ncarefully,1,kinglear,1603\nunhappily,1,kinglear,1603\nunderstanding,1,kinglear,1603\nretire,1,kinglear,1603\nfittest,1,kinglear,1603\nformer,1,kinglear,1603\npomp,1,kinglear,1603\nFriends,1,kinglear,1603\nArraign,1,kinglear,1603\nLook'd,1,kinglear,1603\nvines,1,kinglear,1603\nDenied,1,kinglear,1603\nFreedom,1,kinglear,1603\nRun,1,kinglear,1603\nFrateretto,1,kinglear,1603\nemployed,1,kinglear,1603\nuntented,1,kinglear,1603\nArmed,1,kinglear,1603\nstamp,1,kinglear,1603\nWitness,1,kinglear,1603\nstile,1,kinglear,1603\nwhirlwinds,1,kinglear,1603\nfestinate,1,kinglear,1603\ncapable,1,kinglear,1603\nwin,1,kinglear,1603\nmessage,1,kinglear,1603\nfather'd,1,kinglear,1603\nblushed,1,kinglear,1603\nproposed,1,kinglear,1603\nprovoke,1,kinglear,1603\nhateful,1,kinglear,1603\nunsubstantial,1,kinglear,1603\nstomach,1,kinglear,1603\nshiver'd,1,kinglear,1603\nperpendicularly,1,kinglear,1603\ndung,1,kinglear,1603\nevasion,1,kinglear,1603\nimaginations,1,kinglear,1603\nimpose,1,kinglear,1603\noperation,1,kinglear,1603\npublish'd,1,kinglear,1603\nbread,1,kinglear,1603\nconfined,1,kinglear,1603\ncurs,1,kinglear,1603\nimport,1,kinglear,1603\nbawds,1,kinglear,1603\nfetch,1,kinglear,1603\ncreating,1,kinglear,1603\nring,1,kinglear,1603\ngad,1,kinglear,1603\nupright,1,kinglear,1603\ncomfortless,1,kinglear,1603\nthwart,1,kinglear,1603\nbondage,1,kinglear,1603\nfalchion,1,kinglear,1603\nloop'd,1,kinglear,1603\nallay,1,kinglear,1603\npension,1,kinglear,1603\ngap,1,kinglear,1603\ndifferent,1,kinglear,1603\nbeastly,1,kinglear,1603\nmoment,1,kinglear,1603\nmanifest,1,kinglear,1603\nallegiance,1,kinglear,1603\nwaking,1,kinglear,1603\nprotect,1,kinglear,1603\nposted,1,kinglear,1603\ndizzy,1,kinglear,1603\nbestow'd,1,kinglear,1603\nwalks,1,kinglear,1603\ndawning,1,kinglear,1603\noak,1,kinglear,1603\nDear,1,kinglear,1603\ncuts,1,kinglear,1603\ndisquantity,1,kinglear,1603\nquicken,1,kinglear,1603\nsustain'd,1,kinglear,1603\nsparrow,1,kinglear,1603\nDesire,1,kinglear,1603\nflight,1,kinglear,1603\nwalls,1,kinglear,1603\nripe,1,kinglear,1603\nfurnishings,1,kinglear,1603\nAlarums,1,kinglear,1603\nGermany,1,kinglear,1603\nstanding,1,kinglear,1603\nmildews,1,kinglear,1603\ndeath's,1,kinglear,1603\nyou're,1,kinglear,1603\nnursery,1,kinglear,1603\ncertainly,1,kinglear,1603\npatiently,1,kinglear,1603\nchampion,1,kinglear,1603\nprotection,1,kinglear,1603\nSee'st,1,kinglear,1603\nThine,1,kinglear,1603\ncockney,1,kinglear,1603\nunseal,1,kinglear,1603\nissues,1,kinglear,1603\nlikes,1,kinglear,1603\ncalled,1,kinglear,1603\nWantest,1,kinglear,1603\nstiff,1,kinglear,1603\ncutter,1,kinglear,1603\nfrog,1,kinglear,1603\nearnest,1,kinglear,1603\nwax,1,kinglear,1603\ncarbonado,1,kinglear,1603\nIntelligent,1,kinglear,1603\nable,1,kinglear,1603\nWorthy,1,kinglear,1603\nretention,1,kinglear,1603\nheave,1,kinglear,1603\ntrusts,1,kinglear,1603\nbalm'd,1,kinglear,1603\nHangs,1,kinglear,1603\ngodson,1,kinglear,1603\ntrusty,1,kinglear,1603\nnuptial,1,kinglear,1603\nimportant,1,kinglear,1603\navert,1,kinglear,1603\nambition,1,kinglear,1603\nForced,1,kinglear,1603\noats,1,kinglear,1603\ngirdle,1,kinglear,1603\nchangeable,1,kinglear,1603\nsufferance,1,kinglear,1603\nenraged,1,kinglear,1603\nfellow's,1,kinglear,1603\nwood,1,kinglear,1603\nassure,1,kinglear,1603\nslayer,1,kinglear,1603\nherring,1,kinglear,1603\nforward,1,kinglear,1603\nsallets,1,kinglear,1603\nwanton,1,kinglear,1603\nthrill'd,1,kinglear,1603\nwool,1,kinglear,1603\nhags,1,kinglear,1603\nSpit,1,kinglear,1603\nends,1,kinglear,1603\nKnowing,1,kinglear,1603\nproceeding,1,kinglear,1603\nprice,1,kinglear,1603\nprick,1,kinglear,1603\nsupper,1,kinglear,1603\nspectacles,1,kinglear,1603\nowl,1,kinglear,1603\nwarmth,1,kinglear,1603\nsplit,1,kinglear,1603\nwomen's,1,kinglear,1603\nnext,1,kinglear,1603\ncushions,1,kinglear,1603\nthreats,1,kinglear,1603\ntimes',1,kinglear,1603\ncursed,1,kinglear,1603\naffirm,1,kinglear,1603\nMonsieur,1,kinglear,1603\nfur,1,kinglear,1603\nenforced,1,kinglear,1603\nstripp'd,1,kinglear,1603\nShame,1,kinglear,1603\nbreaches,1,kinglear,1603\ninto't,1,kinglear,1603\ncurses,1,kinglear,1603\nnewt,1,kinglear,1603\nGives,1,kinglear,1603\ngrossly,1,kinglear,1603\nthunderbolts,1,kinglear,1603\nmightily,1,kinglear,1603\nShalt,1,kinglear,1603\nvulgar,1,kinglear,1603\nfamiliar,1,kinglear,1603\nanchoring,1,kinglear,1603\noperative,1,kinglear,1603\nrustling,1,kinglear,1603\nraging,1,kinglear,1603\ngladly,1,kinglear,1603\nbaseness,1,kinglear,1603\nrake,1,kinglear,1603\nsurrender,1,kinglear,1603\nransom,1,kinglear,1603\nfruitfully,1,kinglear,1603\nworships,1,kinglear,1603\nrages,1,kinglear,1603\nHeaven,1,kinglear,1603\nfaced,1,kinglear,1603\nbutterflies,1,kinglear,1603\nvalidity,1,kinglear,1603\nreports,1,kinglear,1603\nput'st,1,kinglear,1603\ncharges,1,kinglear,1603\nrotten,1,kinglear,1603\nTouches,1,kinglear,1603\npoison,1,kinglear,1603\nfum,1,kinglear,1603\nunnaturalness,1,kinglear,1603\nwreath,1,kinglear,1603\nangel,1,kinglear,1603\nweeping,1,kinglear,1603\ndarker,1,kinglear,1603\nsuperflux,1,kinglear,1603\nspleen,1,kinglear,1603\nforeign,1,kinglear,1603\ntamely,1,kinglear,1603\nSharp,1,kinglear,1603\ntatter'd,1,kinglear,1603\nsways,1,kinglear,1603\nlechers,1,kinglear,1603\nmisconstruction,1,kinglear,1603\nwomb,1,kinglear,1603\ncompulsion,1,kinglear,1603\nknight,1,kinglear,1603\nowe,1,kinglear,1603\nrail,1,kinglear,1603\nsupply,1,kinglear,1603\nequalities,1,kinglear,1603\nanimal,1,kinglear,1603\nthreatened,1,kinglear,1603\ndemonstration,1,kinglear,1603\nresume,1,kinglear,1603\nfro,1,kinglear,1603\nshortens,1,kinglear,1603\nwaters,1,kinglear,1603\nyoke,1,kinglear,1603\nSaddle,1,kinglear,1603\ndrops,1,kinglear,1603\nlurk,1,kinglear,1603\nserves,1,kinglear,1603\nunbonneted,1,kinglear,1603\nwaste,1,kinglear,1603\nmarble,1,kinglear,1603\nope,1,kinglear,1603\nangry,1,kinglear,1603\nwent,1,kinglear,1603\nunfortunate,1,kinglear,1603\nwhence,1,kinglear,1603\nNoble,1,kinglear,1603\ncover,1,kinglear,1603\nvexes,1,kinglear,1603\nmadest,1,kinglear,1603\nEven,1,kinglear,1603\nkibes,1,kinglear,1603\npreach,1,kinglear,1603\nShow,1,kinglear,1603\nguardians,1,kinglear,1603\nguilty,1,kinglear,1603\ncreate,1,kinglear,1603\ngrieve,1,kinglear,1603\nguilts,1,kinglear,1603\nlocked,1,kinglear,1603\nSarum,1,kinglear,1603\nsnail,1,kinglear,1603\ncried,1,kinglear,1603\nUnhappy,1,kinglear,1603\nbruise,1,kinglear,1603\ndiseases,1,kinglear,1603\nwanted,1,kinglear,1603\nminds,1,kinglear,1603\nTime,1,kinglear,1603\njudge,1,kinglear,1603\npockets,1,kinglear,1603\nweapons,1,kinglear,1603\npigmy's,1,kinglear,1603\ncontemns,1,kinglear,1603\ndesert,1,kinglear,1603\ndiamonds,1,kinglear,1603\nlendings,1,kinglear,1603\nepileptic,1,kinglear,1603\nImproper,1,kinglear,1603\nquest,1,kinglear,1603\nplumed,1,kinglear,1603\nfoh,1,kinglear,1603\nvictor,1,kinglear,1603\nvermin,1,kinglear,1603\nembossed,1,kinglear,1603\nhitherward,1,kinglear,1603\ndistract,1,kinglear,1603\nwilful,1,kinglear,1603\nBlanch,1,kinglear,1603\nShake,1,kinglear,1603\ndragon's,1,kinglear,1603\ngrant,1,kinglear,1603\nanswers,1,kinglear,1603\nswells,1,kinglear,1603\nrack,1,kinglear,1603\nCorruption,1,kinglear,1603\njustification,1,kinglear,1603\nmethinks,1,kinglear,1603\nsilly,1,kinglear,1603\nwoeful,1,kinglear,1603\ntrundle,1,kinglear,1603\ntardiness,1,kinglear,1603\nsimular,1,kinglear,1603\ndissuaded,1,kinglear,1603\ndialect,1,kinglear,1603\ndiscover,1,kinglear,1603\ntune,1,kinglear,1603\namities,1,kinglear,1603\nthrew,1,kinglear,1603\nwore,1,kinglear,1603\ndo't,1,kinglear,1603\nclay,1,kinglear,1603\naidant,1,kinglear,1603\npredominance,1,kinglear,1603\nsilks,1,kinglear,1603\nallot,1,kinglear,1603\nDeny,1,kinglear,1603\nendeavour,1,kinglear,1603\nflame,1,kinglear,1603\nSorrow,1,kinglear,1603\noffices,1,kinglear,1603\ngazing,1,kinglear,1603\ndues,1,kinglear,1603\nlicensed,1,kinglear,1603\nlists,1,kinglear,1603\nvow,1,kinglear,1603\nwheat,1,kinglear,1603\nfilm,1,kinglear,1603\nLouder,1,kinglear,1603\nUnmerciful,1,kinglear,1603\nRule,1,kinglear,1603\nAttend,1,kinglear,1603\nadmiration,1,kinglear,1603\nsavage,1,kinglear,1603\nclap,1,kinglear,1603\nassume,1,kinglear,1603\ncackling,1,kinglear,1603\nhorn,1,kinglear,1603\nNear,1,kinglear,1603\nredresses,1,kinglear,1603\nenridged,1,kinglear,1603\nanswer'd,1,kinglear,1603\ncontentious,1,kinglear,1603\nnotion,1,kinglear,1603\ntavern,1,kinglear,1603\nneutral,1,kinglear,1603\nsurge,1,kinglear,1603\npocket,1,kinglear,1603\nthereat,1,kinglear,1603\nunfold,1,kinglear,1603\nwealth,1,kinglear,1603\ncreaking,1,kinglear,1603\nsmooth,1,kinglear,1603\nmates,1,kinglear,1603\nbeware,1,kinglear,1603\nBeneath,1,kinglear,1603\nMaugre,1,kinglear,1603\ndivest,1,kinglear,1603\ntike,1,kinglear,1603\nmarjoram,1,kinglear,1603\nwhither,1,kinglear,1603\n'Good,1,kinglear,1603\nflickering,1,kinglear,1603\ntraitorous,1,kinglear,1603\nopposites,1,kinglear,1603\ndisasters,1,kinglear,1603\ndullard,1,kinglear,1603\nbird,1,kinglear,1603\nwaved,1,kinglear,1603\nstinking,1,kinglear,1603\nstrikes,1,kinglear,1603\ngratitude,1,kinglear,1603\nprophesy,1,kinglear,1603\n'Alack,1,kinglear,1603\nditch,1,kinglear,1603\nappointed,1,kinglear,1603\nspeak't,1,kinglear,1603\nattask'd,1,kinglear,1603\noldness,1,kinglear,1603\nSmulkin,1,kinglear,1603\nprophets,1,kinglear,1603\ncullionly,1,kinglear,1603\ncontriving,1,kinglear,1603\nderogate,1,kinglear,1603\nSessa,1,kinglear,1603\nflames,1,kinglear,1603\ncools,1,kinglear,1603\nbalm,1,kinglear,1603\nmotive,1,kinglear,1603\nOfficer,1,kinglear,1603\nStriving,1,kinglear,1603\nfelicitate,1,kinglear,1603\nbounds,1,kinglear,1603\nrising,1,kinglear,1603\nsecrets,1,kinglear,1603\nstrove,1,kinglear,1603\nprefer,1,kinglear,1603\nredeems,1,kinglear,1603\nauricular,1,kinglear,1603\nevidence,1,kinglear,1603\nsongs,1,kinglear,1603\ndrinks,1,kinglear,1603\nlad,1,kinglear,1603\nmeets,1,kinglear,1603\nlights,1,kinglear,1603\nshepherd,1,kinglear,1603\no'erwhelm,1,kinglear,1603\ntall,1,kinglear,1603\ncomplaint,1,kinglear,1603\nbenefited,1,kinglear,1603\ninsulted,1,kinglear,1603\nkite,1,kinglear,1603\ninflamed,1,kinglear,1603\ndeparture,1,kinglear,1603\nknighthood,1,kinglear,1603\nfruitful,1,kinglear,1603\nProsper,1,kinglear,1603\ncup,1,kinglear,1603\ntart,1,kinglear,1603\nfordid,1,kinglear,1603\nAppear,1,kinglear,1603\ncue,1,kinglear,1603\ncub,1,kinglear,1603\nTrust,1,kinglear,1603\nshirts,1,kinglear,1603\nfolds,1,kinglear,1603\nme's,1,kinglear,1603\nsixth,1,kinglear,1603\nimpress'd,1,kinglear,1603\ntorment,1,kinglear,1603\nthrusting,1,kinglear,1603\ntutors,1,kinglear,1603\nmothers,1,kinglear,1603\nRather,1,kinglear,1603\nrapier,1,kinglear,1603\nalms,1,kinglear,1603\ndistribution,1,kinglear,1603\nsights,1,kinglear,1603\nLed,1,kinglear,1603\nshoot,1,kinglear,1603\nought,1,kinglear,1603\npledge,1,kinglear,1603\nforbearance,1,kinglear,1603\nshook,1,kinglear,1603\neels,1,kinglear,1603\nRequires,1,kinglear,1603\nbigger,1,kinglear,1603\nbethought,1,kinglear,1603\nlecherous,1,kinglear,1603\ninterposes,1,kinglear,1603\nprofessed,1,kinglear,1603\nholp,1,kinglear,1603\nblasting,1,kinglear,1603\nLay,1,kinglear,1603\nportion,1,kinglear,1603\ngreen,1,kinglear,1603\nCunning,1,kinglear,1603\nfirmament,1,kinglear,1603\ngreet,1,kinglear,1603\nBurst,1,kinglear,1603\nwaywardness,1,kinglear,1603\nhollow,1,kinglear,1603\nconcluded,1,kinglear,1603\nAdultery,1,kinglear,1603\ndevour,1,kinglear,1603\nunstate,1,kinglear,1603\nacre,1,kinglear,1603\ndragon,1,kinglear,1603\nhorse's,1,kinglear,1603\noyster,1,kinglear,1603\ncowards,1,kinglear,1603\nCouldst,1,kinglear,1603\nmoulten,1,kinglear,1603\nloyal,1,kinglear,1603\nabatement,1,kinglear,1603\nargument,1,kinglear,1603\nrevolt,1,kinglear,1603\nuntuned,1,kinglear,1603\nLag,1,kinglear,1603\ncondemn,1,kinglear,1603\nwinter,1,kinglear,1603\nforsooth,1,kinglear,1603\nrabble,1,kinglear,1603\ninvade,1,kinglear,1603\ntiny,1,kinglear,1603\ngrudge,1,kinglear,1603\nresolution,1,kinglear,1603\nslanders,1,kinglear,1603\nsmilingly,1,kinglear,1603\nepicurism,1,kinglear,1603\ncounsels,1,kinglear,1603\nseal,1,kinglear,1603\nfavours,1,kinglear,1603\nFall'n,1,kinglear,1603\nfitter,1,kinglear,1603\nbuilding,1,kinglear,1603\ncholer,1,kinglear,1603\nprofits,1,kinglear,1603\ngoodman,1,kinglear,1603\nwombed,1,kinglear,1603\nzwaggered,1,kinglear,1603\nIngrateful,1,kinglear,1603\nBlanket,1,kinglear,1603\npeascod,1,kinglear,1603\nVex,1,kinglear,1603\nalso,1,kinglear,1603\nbawd,1,kinglear,1603\ndisclaim,1,kinglear,1603\nterrors,1,kinglear,1603\ncope,1,kinglear,1603\ndiscommend,1,kinglear,1603\nignobly,1,kinglear,1603\ninterest,1,kinglear,1603\nrobed,1,kinglear,1603\nhunt,1,kinglear,1603\nalong,1,kinglear,1603\nfourteen,1,kinglear,1603\nelements,1,kinglear,1603\nfickle,1,kinglear,1603\nNero,1,kinglear,1603\ncool,1,kinglear,1603\nNecessity's,1,kinglear,1603\nlying,1,kinglear,1603\nmoulds,1,kinglear,1603\nwaiting,1,kinglear,1603\nattendance,1,kinglear,1603\nJuno,1,kinglear,1603\nwinged,1,kinglear,1603\nfavour'd,1,kinglear,1603\ncomforting,1,kinglear,1603\nRumble,1,kinglear,1603\nrecounting,1,kinglear,1603\nadieu,1,kinglear,1603\neyed,1,kinglear,1603\nsweat,1,kinglear,1603\nfumiter,1,kinglear,1603\nugly,1,kinglear,1603\nterritory,1,kinglear,1603\nbabe,1,kinglear,1603\nremediate,1,kinglear,1603\nAllows,1,kinglear,1603\nconverse,1,kinglear,1603\nsuits,1,kinglear,1603\npublish,1,kinglear,1603\nthereto,1,kinglear,1603\nRight,1,kinglear,1603\noppress'd,1,kinglear,1603\nweaves,1,kinglear,1603\nfeathers,1,kinglear,1603\nwe'ld,1,kinglear,1603\nmaterial,1,kinglear,1603\ninheriting,1,kinglear,1603\ntroth,1,kinglear,1603\nTruly,1,kinglear,1603\nmasts,1,kinglear,1603\nadore,1,kinglear,1603\ntrespass,1,kinglear,1603\nsupposed,1,kinglear,1603\ngnawn,1,kinglear,1603\nLie,1,kinglear,1603\ncow,1,kinglear,1603\nNews,1,kinglear,1603\nNe'er,1,kinglear,1603\nRestoration,1,kinglear,1603\ndiscretion,1,kinglear,1603\nvalues,1,kinglear,1603\ndivorce,1,kinglear,1603\nstrengths,1,kinglear,1603\nrivall'd,1,kinglear,1603\nheavens',1,kinglear,1603\npricks,1,kinglear,1603\ntells,1,kinglear,1603\nchampains,1,kinglear,1603\nLegitimate,1,kinglear,1603\nkennel,1,kinglear,1603\nhound,1,kinglear,1603\nmix'd,1,kinglear,1603\nlifting,1,kinglear,1603\nResolve,1,kinglear,1603\nexpectation,1,kinglear,1603\ncounsell'd,1,kinglear,1603\nsuspects,1,kinglear,1603\narrant,1,kinglear,1603\nreplied,1,kinglear,1603\nrotundity,1,kinglear,1603\nobservants,1,kinglear,1603\n'Your,1,kinglear,1603\nthrust,1,kinglear,1603\nMilk,1,kinglear,1603\noeillades,1,kinglear,1603\nneedless,1,kinglear,1603\nsacred,1,kinglear,1603\nexploit,1,kinglear,1603\nfishermen,1,kinglear,1603\nGentlemen,1,kinglear,1603\nscourged,1,kinglear,1603\nincrease,1,kinglear,1603\nusage,1,kinglear,1603\ngossamer,1,kinglear,1603\nService,1,kinglear,1603\npestilent,1,kinglear,1603\nObey,1,kinglear,1603\nHaste,1,kinglear,1603\nrobbers',1,kinglear,1603\ncheerless,1,kinglear,1603\navoid,1,kinglear,1603\nnights,1,kinglear,1603\nlethargied,1,kinglear,1603\nundistinguish'd,1,kinglear,1603\nAthenian,1,kinglear,1603\ngoal,1,kinglear,1603\nforfended,1,kinglear,1603\nhuge,1,kinglear,1603\njolly,1,kinglear,1603\ntranced,1,kinglear,1603\nunpublish'd,1,kinglear,1603\nextremes,1,kinglear,1603\nSend,1,kinglear,1603\nport,1,kinglear,1603\nremove,1,kinglear,1603\nmiscreant,1,kinglear,1603\nsecure,1,kinglear,1603\nfurrow,1,kinglear,1603\nbelieved,1,kinglear,1603\nTrumpet,1,kinglear,1603\naloud,1,kinglear,1603\nvulture,1,kinglear,1603\nMeantime,1,kinglear,1603\nblank,1,kinglear,1603\nFields,1,kinglear,1603\npenning,1,kinglear,1603\nwhilst,1,kinglear,1603\nbald,1,kinglear,1603\nstored,1,kinglear,1603\nfearfully,1,kinglear,1603\npots,1,kinglear,1603\nNeither,1,kinglear,1603\nnakedness,1,kinglear,1603\nalas,1,kinglear,1603\ntalk'd,1,kinglear,1603\nswell,1,kinglear,1603\nnurse,1,kinglear,1603\nremedies,1,kinglear,1603\nenguard,1,kinglear,1603\nregards,1,kinglear,1603\nCure,1,kinglear,1603\nche,1,kinglear,1603\nwhereso'er,1,kinglear,1603\nseason,1,kinglear,1603\nwolvish,1,kinglear,1603\nsickness,1,kinglear,1603\nRemain,1,kinglear,1603\nNatures,1,kinglear,1603\nprotest,1,kinglear,1603\npool,1,kinglear,1603\nmethought,1,kinglear,1603\nsafer,1,kinglear,1603\nattaint,1,kinglear,1603\nceremonious,1,kinglear,1603\nconferr'd,1,kinglear,1603\nheadier,1,kinglear,1603\nhowl'd,1,kinglear,1603\nfleshment,1,kinglear,1603\nfairies,1,kinglear,1603\nchanced,1,kinglear,1603\nstarted,1,kinglear,1603\nHearing,1,kinglear,1603\neyes',1,kinglear,1603\nbags,1,kinglear,1603\nnature's,1,kinglear,1603\nebb,1,kinglear,1603\nWisdom,1,kinglear,1603\ntrot,1,kinglear,1603\nunfee'd,1,kinglear,1603\ntrow,1,kinglear,1603\nsorely,1,kinglear,1603\nlaws,1,kinglear,1603\ncredulous,1,kinglear,1603\nbrow,1,kinglear,1603\nfetches,1,kinglear,1603\ntorch,1,kinglear,1603\nstench,1,kinglear,1603\nInform,1,kinglear,1603\nQuickly,1,kinglear,1603\nvouch'd,1,kinglear,1603\nnumb'd,1,kinglear,1603\nTheban,1,kinglear,1603\nSpring,1,kinglear,1603\nspeculations,1,kinglear,1603\nreprieve,1,kinglear,1603\nimagination,1,kinglear,1603\nmidway,1,kinglear,1603\ndebate,1,kinglear,1603\nmap,1,kinglear,1603\nshealed,1,kinglear,1603\nMakest,1,kinglear,1603\nfiends,1,kinglear,1603\nalter'd,1,kinglear,1603\nimports,1,kinglear,1603\nstarts,1,kinglear,1603\nnonny,1,kinglear,1603\nhewgh,1,kinglear,1603\nsquint,1,kinglear,1603\nsquiny,1,kinglear,1603\nheinous,1,kinglear,1603\ndistressed,1,kinglear,1603\ntaint,1,kinglear,1603\ncareful,1,kinglear,1603\nStrong,1,kinglear,1603\nspite,1,kinglear,1603\nminces,1,kinglear,1603\ndislocate,1,kinglear,1603\nDower'd,1,kinglear,1603\nfuture,1,kinglear,1603\nFive,1,kinglear,1603\nlubber's,1,kinglear,1603\nsmiling,1,kinglear,1603\nimprisoned,1,kinglear,1603\nCamelot,1,kinglear,1603\nforces,1,kinglear,1603\nstarve,1,kinglear,1603\nDogs,1,kinglear,1603\nAnother,1,kinglear,1603\nspits,1,kinglear,1603\ndismiss'd,1,kinglear,1603\nALBANY's,1,kinglear,1603\nforked,1,kinglear,1603\ncompounded,1,kinglear,1603\ncleaving,1,kinglear,1603\nwarlike,1,kinglear,1603\ndealing,1,kinglear,1603\ncorrection,1,kinglear,1603\nSometime,1,kinglear,1603\nheaded,1,kinglear,1603\nsnatching,1,kinglear,1603\nswim,1,kinglear,1603\ntreacherous,1,kinglear,1603\ncensured,1,kinglear,1603\nounce,1,kinglear,1603\nAccording,1,kinglear,1603\n'Affectionate,1,kinglear,1603\nsovereign,1,kinglear,1603\nruinous,1,kinglear,1603\ncomforted,1,kinglear,1603\nabuse,1,kinglear,1603\nwhites,1,kinglear,1603\nDegenerate,1,kinglear,1603\nTripp'd,1,kinglear,1603\nconfirmation,1,kinglear,1603\nwhip,1,kinglear,1603\nfully,1,kinglear,1603\nvenomously,1,kinglear,1603\nbody's,1,kinglear,1603\nrecreant,1,kinglear,1603\nmonthly,1,kinglear,1603\npowerful,1,kinglear,1603\nMet,1,kinglear,1603\nsprigs,1,kinglear,1603\nbiting,1,kinglear,1603\nthinking,1,kinglear,1603\nastronomical,1,kinglear,1603\nRive,1,kinglear,1603\nsever'd,1,kinglear,1603\nconfess'd,1,kinglear,1603\npernicious,1,kinglear,1603\nmurmuring,1,kinglear,1603\nquarrels,1,kinglear,1603\nReverbs,1,kinglear,1603\nwithdraw,1,kinglear,1603\nhenceforth,1,kinglear,1603\nwhipp'st,1,kinglear,1603\nstrokes,1,kinglear,1603\nbanner,1,kinglear,1603\nphysic,1,kinglear,1603\nbellow'd,1,kinglear,1603\ncaptives,1,kinglear,1603\njusticers,1,kinglear,1603\nPushes,1,kinglear,1603\nmourning,1,kinglear,1603\nbeguile,1,kinglear,1603\nlark,1,kinglear,1603\namorous,1,kinglear,1603\ntelling,1,kinglear,1603\nsometimes,1,kinglear,1603\nterror,1,kinglear,1603\nrespects,1,kinglear,1603\nSinge,1,kinglear,1603\nnativity,1,kinglear,1603\nPierce,1,kinglear,1603\npolitic,1,kinglear,1603\nphrase,1,kinglear,1603\nlash,1,kinglear,1603\nlym,1,kinglear,1603\ncredit,1,kinglear,1603\nflay,1,kinglear,1603\nflax,1,kinglear,1603\nplucks,1,kinglear,1603\nflat,1,kinglear,1603\nspill,1,kinglear,1603\nProduce,1,kinglear,1603\ninherit,1,kinglear,1603\ndiffidences,1,kinglear,1603\nsterility,1,kinglear,1603\ntameness,1,kinglear,1603\nlawyer,1,kinglear,1603\nimpertinency,1,kinglear,1603\nfitness,1,kinglear,1603\nfarmhouse,1,kinglear,1603\nthrowing,1,kinglear,1603\ndishonour'd,1,kinglear,1603\nLooking,1,kinglear,1603\npranks,1,kinglear,1603\nhush,1,kinglear,1603\nReason,1,kinglear,1603\npeep,1,kinglear,1603\nextend,1,kinglear,1603\ngets,1,kinglear,1603\nlist,1,kinglear,1603\nrevenged,1,kinglear,1603\nlevied,1,kinglear,1603\ncurfew,1,kinglear,1603\ndivinity,1,kinglear,1603\nbreaking,1,kinglear,1603\nwere't,1,kinglear,1603\nWinter's,1,kinglear,1603\nunsettle,1,kinglear,1603\nvillages,1,kinglear,1603\nchatter,1,kinglear,1603\nvenge,1,kinglear,1603\nbias,1,kinglear,1603\nunspoke,1,kinglear,1603\nurges,1,kinglear,1603\nbooks,1,kinglear,1603\nentreaty,1,kinglear,1603\ndefiles,1,kinglear,1603\nurged,1,kinglear,1603\nleading,1,kinglear,1603\nGoose,1,kinglear,1603\ntry,1,kinglear,1603\nfrank,1,kinglear,1603\npight,1,kinglear,1603\nsentence,1,kinglear,1603\nmouths,1,kinglear,1603\nunsanctified,1,kinglear,1603\nTruth's,1,kinglear,1603\nrisen,1,kinglear,1603\nleads,1,kinglear,1603\ninteress'd,1,kinglear,1603\nWorld,1,kinglear,1603\nrises,1,kinglear,1603\nmoisten'd,1,kinglear,1603\nshaft,1,kinglear,1603\ntherewithal,1,kinglear,1603\nexpense,1,kinglear,1603\nbrag,1,kinglear,1603\npattern,1,kinglear,1603\nlaid,1,kinglear,1603\nLurk,1,kinglear,1603\nFairest,1,kinglear,1603\nconfirm,1,kinglear,1603\nglares,1,kinglear,1603\nwrathful,1,kinglear,1603\nportable,1,kinglear,1603\npell,1,kinglear,1603\npebbles,1,kinglear,1603\nconfine,1,kinglear,1603\ndart,1,kinglear,1603\nnightingale,1,kinglear,1603\nhonour's,1,kinglear,1603\nGracious,1,kinglear,1603\nhowever,1,kinglear,1603\nholla,1,kinglear,1603\nlake,1,kinglear,1603\nDetested,1,kinglear,1603\ntoe,1,kinglear,1603\nweight,1,kinglear,1603\nsudden,1,kinglear,1603\nstratagem,1,kinglear,1603\ncatch,1,kinglear,1603\nlord's,1,kinglear,1603\nhumbled,1,kinglear,1603\npelican,1,kinglear,1603\nassaulted,1,kinglear,1603\npent,1,kinglear,1603\ndestroy,1,kinglear,1603\nprivily,1,kinglear,1603\n'faith,1,kinglear,1603\nhoping,1,kinglear,1603\nfordone,1,kinglear,1603\nglobe,1,kinglear,1603\nhotly,1,kinglear,1603\nfellowship,1,kinglear,1603\ninched,1,kinglear,1603\nPreferment,1,kinglear,1603\nproclamation,1,kinglear,1603\npoisons,1,kinglear,1603\nmum,1,kinglear,1603\nmun,1,kinglear,1603\nneeded,1,kinglear,1603\ncowish,1,kinglear,1603\nservest,1,kinglear,1603\nmature,1,kinglear,1603\nDRAMATIS,1,kinglear,1603\nslew,1,kinglear,1603\nwhores,1,kinglear,1603\nsuccess,1,kinglear,1603\nshift,1,kinglear,1603\ngored,1,kinglear,1603\ncozener,1,kinglear,1603\ntie,1,kinglear,1603\naltitude,1,kinglear,1603\nrescue,1,kinglear,1603\nphysician,1,kinglear,1603\nMum,1,kinglear,1603\nwindow'd,1,kinglear,1603\nvex'd,1,kinglear,1603\nflown,1,kinglear,1603\nlargest,1,kinglear,1603\ntempt,1,kinglear,1603\npendulous,1,kinglear,1603\nobedient,1,kinglear,1603\nhe'll,1,kinglear,1603\nLosses,1,kinglear,1603\ntired,1,kinglear,1603\nhe'ld,1,kinglear,1603\nwills,1,kinglear,1603\ndivided,1,kinglear,1603\nRide,1,kinglear,1603\ncross,1,kinglear,1603\nstol'n,1,kinglear,1603\ngorge,1,kinglear,1603\nTalk,1,kinglear,1603\nprivate,1,kinglear,1603\ndrown'd,1,kinglear,1603\nFair,1,kinglear,1603\nsmelt,1,kinglear,1603\nDry,1,kinglear,1603\nboots,1,kinglear,1603\npress'd,1,kinglear,1603\narbitrement,1,kinglear,1603\nbrim,1,kinglear,1603\nflakes,1,kinglear,1603\nslip,1,kinglear,1603\ngloves,1,kinglear,1603\ncouriers,1,kinglear,1603\nlecher,1,kinglear,1603\nprincess,1,kinglear,1603\nmutual,1,kinglear,1603\nReverse,1,kinglear,1603\nsummoners,1,kinglear,1603\nwhoremaster,1,kinglear,1603\nten,1,kinglear,1603\nFall,1,kinglear,1603\nremorse,1,kinglear,1603\nstriving,1,kinglear,1603\nrepair,1,kinglear,1603\nshoes,1,kinglear,1603\nconjuring,1,kinglear,1603\ndisbranch,1,kinglear,1603\nbreathe,1,kinglear,1603\nIdle,1,kinglear,1603\ncutpurses,1,kinglear,1603\noaths,1,kinglear,1603\nflattering,1,kinglear,1603\nclotpoll,1,kinglear,1603\nlack,1,kinglear,1603\nth',1,kinglear,1603\nqueasy,1,kinglear,1603\ntread,1,kinglear,1603\nmarket,1,kinglear,1603\nParted,1,kinglear,1603\nbide,1,kinglear,1603\nhunting,1,kinglear,1603\nselves,1,kinglear,1603\nundertake,1,kinglear,1603\ncrows,1,kinglear,1603\nsands,1,kinglear,1603\ne'en,1,kinglear,1603\norder,1,kinglear,1603\nelbows,1,kinglear,1603\no'erwatch'd,1,kinglear,1603\njelly,1,kinglear,1603\nsquints,1,kinglear,1603\nshow'st,1,kinglear,1603\nunremoveable,1,kinglear,1603\norigin,1,kinglear,1603\nlust'st,1,kinglear,1603\npunished,1,kinglear,1603\nTut,1,kinglear,1603\nrevoked,1,kinglear,1603\nhedge,1,kinglear,1603\nWeapons,1,kinglear,1603\nexeunt,1,kinglear,1603\nremembered,1,kinglear,1603\nschoolmaster,1,kinglear,1603\nplagues,2,kinglear,1603\nheed,2,kinglear,1603\nlusty,2,kinglear,1603\nforbid,2,kinglear,1603\ntripped,2,kinglear,1603\ninfirm,2,kinglear,1603\nports,2,kinglear,1603\nextremity,2,kinglear,1603\nfancy,2,kinglear,1603\ncomposition,2,kinglear,1603\napprehend,2,kinglear,1603\nfor't,2,kinglear,1603\nverge,2,kinglear,1603\nFools,2,kinglear,1603\nleisure,2,kinglear,1603\ncountry,2,kinglear,1603\nfoxes,2,kinglear,1603\nrat,2,kinglear,1603\nwooden,2,kinglear,1603\nbones,2,kinglear,1603\nhollowness,2,kinglear,1603\nlabours,2,kinglear,1603\npreparation,2,kinglear,1603\nGLOUCESTER's,2,kinglear,1603\noffended,2,kinglear,1603\nassured,2,kinglear,1603\ndoubtful,2,kinglear,1603\nhighness',2,kinglear,1603\nday's,2,kinglear,1603\nexpress,2,kinglear,1603\nhelm,2,kinglear,1603\nsleeps,2,kinglear,1603\ndespised,2,kinglear,1603\nlaughter,2,kinglear,1603\neight,2,kinglear,1603\ndependants,2,kinglear,1603\nyounger,2,kinglear,1603\nclothes,2,kinglear,1603\nDespite,2,kinglear,1603\ntrunk,2,kinglear,1603\nspake,2,kinglear,1603\nviolent,2,kinglear,1603\nlodging,2,kinglear,1603\ndecay,2,kinglear,1603\nEither,2,kinglear,1603\ndisease,2,kinglear,1603\nprisoner,2,kinglear,1603\nwhile,2,kinglear,1603\ngorgeous,2,kinglear,1603\nhonourable,2,kinglear,1603\nFar,2,kinglear,1603\nadversary,2,kinglear,1603\nallowance,2,kinglear,1603\nfury,2,kinglear,1603\ndrink,2,kinglear,1603\nnought,2,kinglear,1603\nlaugh,2,kinglear,1603\nprey,2,kinglear,1603\nterrible,2,kinglear,1603\npatron,2,kinglear,1603\nsore,2,kinglear,1603\npleasures,2,kinglear,1603\nbecome,2,kinglear,1603\ngoest,2,kinglear,1603\nproclaim,2,kinglear,1603\nsaved,2,kinglear,1603\ncart,2,kinglear,1603\nworser,2,kinglear,1603\npractised,2,kinglear,1603\nchin,2,kinglear,1603\nbending,2,kinglear,1603\ngraces,2,kinglear,1603\nsad,2,kinglear,1603\nFellow,2,kinglear,1603\ndrive,2,kinglear,1603\nspies,2,kinglear,1603\nslept,2,kinglear,1603\nconfusion,2,kinglear,1603\ncharms,2,kinglear,1603\nbearing,2,kinglear,1603\nopposed,2,kinglear,1603\nbroken,2,kinglear,1603\nPillicock,2,kinglear,1603\nhorror,2,kinglear,1603\nKnights,2,kinglear,1603\npossesses,2,kinglear,1603\nplight,2,kinglear,1603\nRemember,2,kinglear,1603\nKnow'st,2,kinglear,1603\naroint,2,kinglear,1603\ndrew,2,kinglear,1603\nenemy's,2,kinglear,1603\nOnly,2,kinglear,1603\ncheek,2,kinglear,1603\ndissolve,2,kinglear,1603\ngross,2,kinglear,1603\nbreaks,2,kinglear,1603\nsoft,2,kinglear,1603\nricher,2,kinglear,1603\nstealth,2,kinglear,1603\ndeserve,2,kinglear,1603\nsix,2,kinglear,1603\nwage,2,kinglear,1603\ncompliment,2,kinglear,1603\nspeeches,2,kinglear,1603\nwarrant,2,kinglear,1603\nBeyond,2,kinglear,1603\nthink'st,2,kinglear,1603\nsubdued,2,kinglear,1603\ntooth,2,kinglear,1603\ndeprived,2,kinglear,1603\nlanded,2,kinglear,1603\nThou'ldst,2,kinglear,1603\nyield,2,kinglear,1603\nspy,2,kinglear,1603\nnine,2,kinglear,1603\ndeliver,2,kinglear,1603\nembrace,2,kinglear,1603\nHimself,2,kinglear,1603\njusticer,2,kinglear,1603\nFarewell,2,kinglear,1603\nraised,2,kinglear,1603\nfollower,2,kinglear,1603\nlooking,2,kinglear,1603\nit's,2,kinglear,1603\nqualified,2,kinglear,1603\npieces,2,kinglear,1603\ndowers,2,kinglear,1603\nbewray,2,kinglear,1603\nsavour,2,kinglear,1603\ncolder,2,kinglear,1603\nmerit,2,kinglear,1603\nwrote,2,kinglear,1603\nsnow,2,kinglear,1603\nbrain,2,kinglear,1603\nblooded,2,kinglear,1603\nskies,2,kinglear,1603\nways,2,kinglear,1603\ndifferences,2,kinglear,1603\nWhereof,2,kinglear,1603\nkill'd,2,kinglear,1603\nTurn,2,kinglear,1603\nloathed,2,kinglear,1603\nterms,2,kinglear,1603\naffected,2,kinglear,1603\ncommit,2,kinglear,1603\nSound,2,kinglear,1603\neldest,2,kinglear,1603\nPardon,2,kinglear,1603\nWherein,2,kinglear,1603\nprinces,2,kinglear,1603\ncries,2,kinglear,1603\nbrach,2,kinglear,1603\npoorest,2,kinglear,1603\nfearful,2,kinglear,1603\nfeet,2,kinglear,1603\nbeaten,2,kinglear,1603\n'Faith,2,kinglear,1603\nmasters,2,kinglear,1603\ncuckoo,2,kinglear,1603\nweather,2,kinglear,1603\nchoose,2,kinglear,1603\nprevent,2,kinglear,1603\nbourn,2,kinglear,1603\nHence,2,kinglear,1603\nkneel,2,kinglear,1603\nStop,2,kinglear,1603\ntitle,2,kinglear,1603\nbrand,2,kinglear,1603\nhates,2,kinglear,1603\nwish,2,kinglear,1603\nthrown,2,kinglear,1603\nstop,2,kinglear,1603\nincense,2,kinglear,1603\nloins,2,kinglear,1603\nrule,2,kinglear,1603\nlunatic,2,kinglear,1603\nruled,2,kinglear,1603\nmanhood,2,kinglear,1603\nFrench,2,kinglear,1603\npraised,2,kinglear,1603\ntend,2,kinglear,1603\nFollow,2,kinglear,1603\ngoddess,2,kinglear,1603\nconditions,2,kinglear,1603\nbin,2,kinglear,1603\nwherefore,2,kinglear,1603\nha',2,kinglear,1603\nlife's,2,kinglear,1603\nchamber,2,kinglear,1603\nstir,2,kinglear,1603\nburning,2,kinglear,1603\nunkind,2,kinglear,1603\nsteward,2,kinglear,1603\neminence,2,kinglear,1603\nfoes,2,kinglear,1603\nmeasure,2,kinglear,1603\nAm,2,kinglear,1603\nmusic,2,kinglear,1603\nfogs,2,kinglear,1603\npah,2,kinglear,1603\nWhiles,2,kinglear,1603\nThrowing,2,kinglear,1603\ngovern,2,kinglear,1603\nhouseless,2,kinglear,1603\nThose,2,kinglear,1603\nshortly,2,kinglear,1603\ndesperate,2,kinglear,1603\nblown,2,kinglear,1603\nStill,2,kinglear,1603\nsmile,2,kinglear,1603\nbad,2,kinglear,1603\nspout,2,kinglear,1603\ningrateful,2,kinglear,1603\ntales,2,kinglear,1603\nto't,2,kinglear,1603\nshines,2,kinglear,1603\npitied,2,kinglear,1603\ndiligence,2,kinglear,1603\npawn,2,kinglear,1603\nWithin,2,kinglear,1603\nSomething,2,kinglear,1603\nmedicine,2,kinglear,1603\nflowers,2,kinglear,1603\napprove,2,kinglear,1603\nblest,2,kinglear,1603\nquick,2,kinglear,1603\ncontracted,2,kinglear,1603\nzir,2,kinglear,1603\nnoses,2,kinglear,1603\npin,2,kinglear,1603\ntreachery,2,kinglear,1603\nAlmost,2,kinglear,1603\nstep,2,kinglear,1603\nVI,2,kinglear,1603\ncurled,2,kinglear,1603\nbegot,2,kinglear,1603\nconjunct,2,kinglear,1603\nsought,2,kinglear,1603\nmadmen,2,kinglear,1603\ngold,2,kinglear,1603\ndrunkards,2,kinglear,1603\nvaliant,2,kinglear,1603\ndressed,2,kinglear,1603\nsith,2,kinglear,1603\nchallenge,2,kinglear,1603\nbend,2,kinglear,1603\nAllow,2,kinglear,1603\nrebel,2,kinglear,1603\ncontrol,2,kinglear,1603\ncat,2,kinglear,1603\nprisoners,2,kinglear,1603\n'tween,2,kinglear,1603\nFlibbertigibbet,2,kinglear,1603\nbent,2,kinglear,1603\nBehold,2,kinglear,1603\njealous,2,kinglear,1603\nTucket,2,kinglear,1603\nsuddenly,2,kinglear,1603\nserpent,2,kinglear,1603\nfriendly,2,kinglear,1603\nanguish,2,kinglear,1603\ndegree,2,kinglear,1603\nbeget,2,kinglear,1603\nbuy,2,kinglear,1603\nlonger,2,kinglear,1603\ncrack'd,2,kinglear,1603\nsing,2,kinglear,1603\nstretch,2,kinglear,1603\nGot,2,kinglear,1603\nowest,2,kinglear,1603\nafoot,2,kinglear,1603\nModo,2,kinglear,1603\nHolla,2,kinglear,1603\nreservation,2,kinglear,1603\nretain,2,kinglear,1603\nexcellent,2,kinglear,1603\ndispositions,2,kinglear,1603\nAdvise,2,kinglear,1603\ntithing,2,kinglear,1603\nmurderous,2,kinglear,1603\nApollo,2,kinglear,1603\ntongues,2,kinglear,1603\nstone,2,kinglear,1603\ngait,2,kinglear,1603\nseeming,2,kinglear,1603\ndower,2,kinglear,1603\ngall,2,kinglear,1603\ntorches,2,kinglear,1603\nnicely,2,kinglear,1603\nay,2,kinglear,1603\ncomforts,2,kinglear,1603\nprediction,2,kinglear,1603\ncrab,2,kinglear,1603\nprivilege,2,kinglear,1603\napproach,2,kinglear,1603\nmanner,2,kinglear,1603\nforget,2,kinglear,1603\ndoom,2,kinglear,1603\nrealm,2,kinglear,1603\nportend,2,kinglear,1603\ndisorder'd,2,kinglear,1603\ncliff,2,kinglear,1603\ncommend,2,kinglear,1603\nmonth,2,kinglear,1603\nbodies,2,kinglear,1603\ndelay,2,kinglear,1603\nnecessity,2,kinglear,1603\nTold,2,kinglear,1603\nMyself,2,kinglear,1603\nproduce,2,kinglear,1603\ntemper,2,kinglear,1603\n'twould,2,kinglear,1603\ncrimes,2,kinglear,1603\nloves,2,kinglear,1603\nYea,2,kinglear,1603\nspeak'st,2,kinglear,1603\nample,2,kinglear,1603\nwherein,2,kinglear,1603\nbrutish,2,kinglear,1603\ngreater,2,kinglear,1603\nnimble,2,kinglear,1603\nshow'd,2,kinglear,1603\nforgot,2,kinglear,1603\nserious,2,kinglear,1603\nslack,2,kinglear,1603\nmen's,2,kinglear,1603\ntoad,2,kinglear,1603\nharm,2,kinglear,1603\nvalour,2,kinglear,1603\neats,2,kinglear,1603\nrunning,2,kinglear,1603\neasy,2,kinglear,1603\ndescry,2,kinglear,1603\nmanifold,2,kinglear,1603\nRead,2,kinglear,1603\nhusband's,2,kinglear,1603\nnatural,2,kinglear,1603\nacknowledge,2,kinglear,1603\nhang,2,kinglear,1603\nFollow'd,2,kinglear,1603\nPluck,2,kinglear,1603\nshun,2,kinglear,1603\nLady,2,kinglear,1603\nliberty,2,kinglear,1603\nmighty,2,kinglear,1603\npraise,2,kinglear,1603\nperpetual,2,kinglear,1603\nHum,2,kinglear,1603\nform,2,kinglear,1603\nreturn'd,2,kinglear,1603\nfiery,2,kinglear,1603\nmock,2,kinglear,1603\napt,2,kinglear,1603\nPrepare,2,kinglear,1603\ndetested,2,kinglear,1603\nrough,2,kinglear,1603\ntyranny,2,kinglear,1603\nrevenge,2,kinglear,1603\nass,2,kinglear,1603\nAlarum,2,kinglear,1603\nrightly,2,kinglear,1603\ningratitude,2,kinglear,1603\nKind,2,kinglear,1603\nthanks,2,kinglear,1603\ndeadly,2,kinglear,1603\nAgain,2,kinglear,1603\ncheque,2,kinglear,1603\nenemies,2,kinglear,1603\ntrial,2,kinglear,1603\nenjoy,2,kinglear,1603\nhaving,2,kinglear,1603\nsuperfluous,2,kinglear,1603\nmarch,2,kinglear,1603\ncompact,2,kinglear,1603\nnobles,2,kinglear,1603\ntough,2,kinglear,1603\nfitly,2,kinglear,1603\nleap,2,kinglear,1603\nhawthorn,2,kinglear,1603\nmain,2,kinglear,1603\nscant,2,kinglear,1603\nreport,2,kinglear,1603\nCanst,2,kinglear,1603\nbuild,2,kinglear,1603\ndowerless,2,kinglear,1603\nfaith,2,kinglear,1603\nHalf,2,kinglear,1603\nBack,2,kinglear,1603\nbeast,2,kinglear,1603\nwakes,2,kinglear,1603\nwonder,2,kinglear,1603\nproceed,2,kinglear,1603\naction,2,kinglear,1603\nsaucily,2,kinglear,1603\nHang,2,kinglear,1603\ndeserving,2,kinglear,1603\nrats,2,kinglear,1603\nBritain,2,kinglear,1603\nriots,2,kinglear,1603\nrash,2,kinglear,1603\nours,2,kinglear,1603\ntraitors,2,kinglear,1603\novertake,2,kinglear,1603\npregnant,2,kinglear,1603\nLove,2,kinglear,1603\nsubstance,2,kinglear,1603\nStriking,2,kinglear,1603\nSit,2,kinglear,1603\nvisage,2,kinglear,1603\nmate,2,kinglear,1603\nRoyal,2,kinglear,1603\nyou'll,2,kinglear,1603\nloses,2,kinglear,1603\nwho's,2,kinglear,1603\nignorant,2,kinglear,1603\nSet,2,kinglear,1603\nyouth,2,kinglear,1603\nseveral,2,kinglear,1603\nSee,2,kinglear,1603\nstrife,2,kinglear,1603\nleaves,2,kinglear,1603\nbenison,2,kinglear,1603\nfares,2,kinglear,1603\nsinging,2,kinglear,1603\nvarlet,2,kinglear,1603\nprize,2,kinglear,1603\nmightst,2,kinglear,1603\nshield,2,kinglear,1603\nPersuade,2,kinglear,1603\npurposed,2,kinglear,1603\nalready,2,kinglear,1603\nchair,2,kinglear,1603\narraign,2,kinglear,1603\nCould,2,kinglear,1603\nskip,2,kinglear,1603\ndearest,2,kinglear,1603\nwoe,2,kinglear,1603\nblow,2,kinglear,1603\nbrains,2,kinglear,1603\ncraves,2,kinglear,1603\nlabour,2,kinglear,1603\nruffle,2,kinglear,1603\nheaven's,2,kinglear,1603\nunnecessary,2,kinglear,1603\nnumber,2,kinglear,1603\nCornwall's,2,kinglear,1603\nhorrible,2,kinglear,1603\nstake,2,kinglear,1603\nwet,2,kinglear,1603\nscanted,2,kinglear,1603\nbreed,2,kinglear,1603\nclose,2,kinglear,1603\nduchess,2,kinglear,1603\nsake,2,kinglear,1603\nMahu,2,kinglear,1603\nrelieved,2,kinglear,1603\ncure,2,kinglear,1603\npretence,2,kinglear,1603\nwoes,2,kinglear,1603\nknife,2,kinglear,1603\nhears,2,kinglear,1603\nloving,2,kinglear,1603\nbandy,2,kinglear,1603\ninfluence,2,kinglear,1603\ncloset,2,kinglear,1603\n'no',2,kinglear,1603\ndunghill,2,kinglear,1603\nSure,2,kinglear,1603\nnegligence,2,kinglear,1603\nsave,2,kinglear,1603\nmice,2,kinglear,1603\nspeedily,2,kinglear,1603\nThink,2,kinglear,1603\nnether,2,kinglear,1603\nblasts,2,kinglear,1603\n'The,2,kinglear,1603\nstick,2,kinglear,1603\nstage,2,kinglear,1603\nwar,2,kinglear,1603\nimperfect,2,kinglear,1603\nCan,2,kinglear,1603\nbarbarous,2,kinglear,1603\nthey'll,2,kinglear,1603\napace,2,kinglear,1603\nwont,2,kinglear,1603\nvillains,2,kinglear,1603\nSister,2,kinglear,1603\nbelly,2,kinglear,1603\nbounty,2,kinglear,1603\ncaught,2,kinglear,1603\nnotice,2,kinglear,1603\nfaces,2,kinglear,1603\nseize,2,kinglear,1603\nserved,2,kinglear,1603\nvicious,2,kinglear,1603\nrequire,2,kinglear,1603\nopposite,2,kinglear,1603\ndull,2,kinglear,1603\nwhistle,2,kinglear,1603\nfarther,2,kinglear,1603\nbeguiled,2,kinglear,1603\ndisorders,2,kinglear,1603\nclout,2,kinglear,1603\nstirs,2,kinglear,1603\nwrong'd,2,kinglear,1603\nfail,2,kinglear,1603\nhideous,2,kinglear,1603\ncontempt,2,kinglear,1603\nwholesome,2,kinglear,1603\nground,2,kinglear,1603\ncharacter,2,kinglear,1603\nmessengers,2,kinglear,1603\nBrother,2,kinglear,1603\nmiracle,2,kinglear,1603\ncares,2,kinglear,1603\nacknowledged,2,kinglear,1603\nHadst,2,kinglear,1603\nwert,2,kinglear,1603\nJupiter,2,kinglear,1603\nreturns,2,kinglear,1603\npleased,2,kinglear,1603\nworm,2,kinglear,1603\nwickedness,2,kinglear,1603\nallow,2,kinglear,1603\nSweet,2,kinglear,1603\nrestrain'd,2,kinglear,1603\nvor,2,kinglear,1603\nperfect,2,kinglear,1603\nfine,2,kinglear,1603\nsafety,2,kinglear,1603\npunish'd,2,kinglear,1603\nminded,2,kinglear,1603\nhost,2,kinglear,1603\nta'en,2,kinglear,1603\nshown,2,kinglear,1603\nwide,2,kinglear,1603\ntail,2,kinglear,1603\nshows,2,kinglear,1603\nbite,2,kinglear,1603\npoison'd,2,kinglear,1603\ndepart,2,kinglear,1603\nperceive,2,kinglear,1603\nbetters,2,kinglear,1603\ncensure,2,kinglear,1603\nmeaning,2,kinglear,1603\nfriendship,2,kinglear,1603\nVery,2,kinglear,1603\ntame,2,kinglear,1603\nfast,2,kinglear,1603\nlarge,2,kinglear,1603\nnamed,2,kinglear,1603\nEach,2,kinglear,1603\nCh'ill,2,kinglear,1603\ntrumpets,2,kinglear,1603\nWelcome,2,kinglear,1603\nBeloved,2,kinglear,1603\nconstant,2,kinglear,1603\nbans,2,kinglear,1603\narm'd,2,kinglear,1603\naffliction,2,kinglear,1603\nbind,2,kinglear,1603\nstroke,2,kinglear,1603\ndangerous,2,kinglear,1603\ncur,2,kinglear,1603\nAlthough,2,kinglear,1603\nfires,2,kinglear,1603\nFiery,2,kinglear,1603\nsubscribed,2,kinglear,1603\nvirtues,2,kinglear,1603\nprayers,2,kinglear,1603\nmanage,2,kinglear,1603\nhairs,2,kinglear,1603\nloo,2,kinglear,1603\nalways,2,kinglear,1603\ncaptain,2,kinglear,1603\nserviceable,2,kinglear,1603\nneedful,2,kinglear,1603\napproves,2,kinglear,1603\nknowest,2,kinglear,1603\npresence,2,kinglear,1603\ncod,2,kinglear,1603\nharmful,2,kinglear,1603\nlook'd,2,kinglear,1603\nsees,2,kinglear,1603\nvalued,2,kinglear,1603\ncondition,2,kinglear,1603\nperiod,2,kinglear,1603\nliking,2,kinglear,1603\nMine,2,kinglear,1603\nfellows,2,kinglear,1603\nprophecy,2,kinglear,1603\nTrue,2,kinglear,1603\ntroop,2,kinglear,1603\nheavenly,2,kinglear,1603\ndivisions,2,kinglear,1603\nHe'll,2,kinglear,1603\nmodest,2,kinglear,1603\n'twill,2,kinglear,1603\ntree,2,kinglear,1603\nloyalty,2,kinglear,1603\nThrough,2,kinglear,1603\nlovest,2,kinglear,1603\nbadness,2,kinglear,1603\nglove,2,kinglear,1603\nUse,2,kinglear,1603\nCry,2,kinglear,1603\npost,2,kinglear,1603\noppose,2,kinglear,1603\nbleeding,2,kinglear,1603\nroaring,2,kinglear,1603\nmother's,2,kinglear,1603\nundo,2,kinglear,1603\ncontemn'd,2,kinglear,1603\nmatch,2,kinglear,1603\nblast,2,kinglear,1603\naright,2,kinglear,1603\nlip,2,kinglear,1603\nsheets,2,kinglear,1603\nevening,2,kinglear,1603\nsounded,2,kinglear,1603\nabroad,2,kinglear,1603\ncomfortable,2,kinglear,1603\nconduct,2,kinglear,1603\nreward,2,kinglear,1603\nburst,2,kinglear,1603\ndoing,2,kinglear,1603\ntravell'd,2,kinglear,1603\nupward,2,kinglear,1603\nmeeting,2,kinglear,1603\nEARL,2,kinglear,1603\nemployment,2,kinglear,1603\ndetermine,2,kinglear,1603\npleasant,2,kinglear,1603\nladies,2,kinglear,1603\nMen,2,kinglear,1603\nGreat,2,kinglear,1603\nfled,2,kinglear,1603\npunishment,2,kinglear,1603\nliege,2,kinglear,1603\nlion,2,kinglear,1603\nMarry,2,kinglear,1603\nrevenges,2,kinglear,1603\nVII,2,kinglear,1603\nbeauty,2,kinglear,1603\nWithout,2,kinglear,1603\nbesides,2,kinglear,1603\nsuited,2,kinglear,1603\nsquire,2,kinglear,1603\nintelligent,2,kinglear,1603\nappetite,2,kinglear,1603\npelting,2,kinglear,1603\nLend,2,kinglear,1603\nfathom,2,kinglear,1603\ndaub,2,kinglear,1603\nconflict,2,kinglear,1603\nsilent,2,kinglear,1603\nassurance,2,kinglear,1603\nDeath,2,kinglear,1603\nsimple,2,kinglear,1603\n'This,2,kinglear,1603\nspring,2,kinglear,1603\nforgiveness,2,kinglear,1603\nwidow,2,kinglear,1603\ncover'd,2,kinglear,1603\nhonour'd,2,kinglear,1603\nsulphurous,2,kinglear,1603\nframe,2,kinglear,1603\nmiseries,2,kinglear,1603\nbred,2,kinglear,1603\nliest,2,kinglear,1603\nreverend,2,kinglear,1603\ninstantly,2,kinglear,1603\nUntil,2,kinglear,1603\nguests,2,kinglear,1603\nBind,2,kinglear,1603\nfilthy,2,kinglear,1603\nToo,2,kinglear,1603\ndame,2,kinglear,1603\nawake,2,kinglear,1603\nFalse,2,kinglear,1603\nFind,2,kinglear,1603\nintends,2,kinglear,1603\nturn'd,2,kinglear,1603\nwomen,2,kinglear,1603\ntreason,3,kinglear,1603\nparted,3,kinglear,1603\ngrew,3,kinglear,1603\nsuffer,3,kinglear,1603\ndays,3,kinglear,1603\nfathers,3,kinglear,1603\nweary,3,kinglear,1603\nwears,3,kinglear,1603\npeasant,3,kinglear,1603\nwoman's,3,kinglear,1603\nFie,3,kinglear,1603\ngray,3,kinglear,1603\nwicked,3,kinglear,1603\nhonours,3,kinglear,1603\nlawful,3,kinglear,1603\nalack,3,kinglear,1603\nsupport,3,kinglear,1603\nhealth,3,kinglear,1603\nBear,3,kinglear,1603\njoy,3,kinglear,1603\nproclaim'd,3,kinglear,1603\nhell,3,kinglear,1603\nStay,3,kinglear,1603\ntruly,3,kinglear,1603\nvain,3,kinglear,1603\noffer,3,kinglear,1603\nunderstand,3,kinglear,1603\nAlbany's,3,kinglear,1603\nhorrid,3,kinglear,1603\nsoul,3,kinglear,1603\nlies,3,kinglear,1603\nadvise,3,kinglear,1603\nremain,3,kinglear,1603\ncheeks,3,kinglear,1603\nOswald,3,kinglear,1603\ncharge,3,kinglear,1603\nseven,3,kinglear,1603\nsons,3,kinglear,1603\ngrown,3,kinglear,1603\ngrows,3,kinglear,1603\nsorrows,3,kinglear,1603\nKeep,3,kinglear,1603\nheat,3,kinglear,1603\nknaves,3,kinglear,1603\nmaking,3,kinglear,1603\nnoise,3,kinglear,1603\nGet,3,kinglear,1603\naged,3,kinglear,1603\nkey,3,kinglear,1603\nwalk,3,kinglear,1603\nwall,3,kinglear,1603\nyeoman,3,kinglear,1603\nwake,3,kinglear,1603\n'twas,3,kinglear,1603\nsworn,3,kinglear,1603\nsubject,3,kinglear,1603\nstudy,3,kinglear,1603\nbeloved,3,kinglear,1603\nfaults,3,kinglear,1603\nbenediction,3,kinglear,1603\nfelt,3,kinglear,1603\nmonster,3,kinglear,1603\nprofess,3,kinglear,1603\ncommon,3,kinglear,1603\nLeave,3,kinglear,1603\nbrief,3,kinglear,1603\nspeaking,3,kinglear,1603\nnails,3,kinglear,1603\nnight's,3,kinglear,1603\ndearer,3,kinglear,1603\nhated,3,kinglear,1603\nFetch,3,kinglear,1603\nseem'd,3,kinglear,1603\npierce,3,kinglear,1603\npretty,3,kinglear,1603\nbreeding,3,kinglear,1603\nboot,3,kinglear,1603\ndesire,3,kinglear,1603\nparts,3,kinglear,1603\nbit,3,kinglear,1603\nauthority,3,kinglear,1603\ncrack,3,kinglear,1603\naltogether,3,kinglear,1603\ntherefore,3,kinglear,1603\nbow,3,kinglear,1603\nsuffers,3,kinglear,1603\namong,3,kinglear,1603\nbar,3,kinglear,1603\nSinging,3,kinglear,1603\ncruel,3,kinglear,1603\ncreature,3,kinglear,1603\nstar,3,kinglear,1603\nhid,3,kinglear,1603\ntear,3,kinglear,1603\nbless,3,kinglear,1603\nfortune's,3,kinglear,1603\ndespair,3,kinglear,1603\nplay,3,kinglear,1603\nsport,3,kinglear,1603\npast,3,kinglear,1603\ntenant,3,kinglear,1603\nmonstrous,3,kinglear,1603\nheads,3,kinglear,1603\nwhore,3,kinglear,1603\ngot,3,kinglear,1603\nkindness,3,kinglear,1603\ncap,3,kinglear,1603\nstruck,3,kinglear,1603\nlearned,3,kinglear,1603\nweak,3,kinglear,1603\nSave,3,kinglear,1603\ntreasons,3,kinglear,1603\nsustain,3,kinglear,1603\nshadow,3,kinglear,1603\nPut,3,kinglear,1603\nDies,3,kinglear,1603\neclipses,3,kinglear,1603\nused,3,kinglear,1603\nLike,3,kinglear,1603\n'Twas,3,kinglear,1603\nhourly,3,kinglear,1603\nashamed,3,kinglear,1603\nturns,3,kinglear,1603\ncrowns,3,kinglear,1603\naffection,3,kinglear,1603\nforgive,3,kinglear,1603\nimage,3,kinglear,1603\nFortune,3,kinglear,1603\nbeat,3,kinglear,1603\nyes,3,kinglear,1603\nspeed,3,kinglear,1603\ndoor,3,kinglear,1603\nbanished,3,kinglear,1603\nprosper,3,kinglear,1603\nknow't,3,kinglear,1603\neyeless,3,kinglear,1603\nwhereof,3,kinglear,1603\nidle,3,kinglear,1603\nsometime,3,kinglear,1603\nReads,3,kinglear,1603\nBecause,3,kinglear,1603\nplot,3,kinglear,1603\nspeaks,3,kinglear,1603\nbasest,3,kinglear,1603\nsa,3,kinglear,1603\nweeds,3,kinglear,1603\ncall'd,3,kinglear,1603\ntrade,3,kinglear,1603\nShe's,3,kinglear,1603\nvengeance,3,kinglear,1603\nneglect,3,kinglear,1603\nfooted,3,kinglear,1603\nfrown,3,kinglear,1603\nstones,3,kinglear,1603\ndreadful,3,kinglear,1603\nfall'n,3,kinglear,1603\nduke's,3,kinglear,1603\nobject,3,kinglear,1603\nfond,3,kinglear,1603\nHast,3,kinglear,1603\nbeggars,3,kinglear,1603\nKing,3,kinglear,1603\nHark,3,kinglear,1603\ntouch,3,kinglear,1603\nAsk,3,kinglear,1603\ndelicate,3,kinglear,1603\nperceived,3,kinglear,1603\nBedlam,3,kinglear,1603\nkeeps,3,kinglear,1603\nDUKE,3,kinglear,1603\ntarry,3,kinglear,1603\nrank,3,kinglear,1603\nmischief,3,kinglear,1603\nclamour,3,kinglear,1603\nBetter,3,kinglear,1603\nnose,3,kinglear,1603\ngentle,3,kinglear,1603\nwaked,3,kinglear,1603\ngavest,3,kinglear,1603\nnoon,3,kinglear,1603\nPointing,3,kinglear,1603\nbelow,3,kinglear,1603\nFlourish,3,kinglear,1603\nbears,3,kinglear,1603\nslain,3,kinglear,1603\nphilosopher,3,kinglear,1603\nborne,3,kinglear,1603\nquickly,3,kinglear,1603\ndares,3,kinglear,1603\nsay'st,3,kinglear,1603\nDoth,3,kinglear,1603\ndoors,3,kinglear,1603\nexchange,3,kinglear,1603\nsoldiers,3,kinglear,1603\npurposes,3,kinglear,1603\ncoward,3,kinglear,1603\ninjuries,3,kinglear,1603\nthief,3,kinglear,1603\ntrifle,3,kinglear,1603\nMade,3,kinglear,1603\ndisguised,3,kinglear,1603\nHorns,3,kinglear,1603\ndivision,3,kinglear,1603\nwrath,3,kinglear,1603\nones,3,kinglear,1603\nopinion,3,kinglear,1603\ngrave,3,kinglear,1603\nwrongs,3,kinglear,1603\nneck,3,kinglear,1603\nbanishment,3,kinglear,1603\nthrow,3,kinglear,1603\nsides,3,kinglear,1603\nyoungest,3,kinglear,1603\nThus,3,kinglear,1603\ndust,3,kinglear,1603\nbelieve,3,kinglear,1603\ntailor,3,kinglear,1603\nintend,3,kinglear,1603\nrags,3,kinglear,1603\nmongrel,3,kinglear,1603\nhair,3,kinglear,1603\nfix'd,3,kinglear,1603\ntaken,3,kinglear,1603\nwhat's,3,kinglear,1603\nHail,3,kinglear,1603\nanger,3,kinglear,1603\nfox,3,kinglear,1603\nfollowers,3,kinglear,1603\nglad,3,kinglear,1603\nStrike,3,kinglear,1603\ncuriosity,3,kinglear,1603\nMark,3,kinglear,1603\nShut,3,kinglear,1603\nrich,3,kinglear,1603\nfolly,3,kinglear,1603\nparticular,3,kinglear,1603\nbark,3,kinglear,1603\nduties,3,kinglear,1603\nlordship,3,kinglear,1603\ngilded,3,kinglear,1603\nkiss,3,kinglear,1603\ncock,3,kinglear,1603\nplainness,3,kinglear,1603\nnames,3,kinglear,1603\ntale,3,kinglear,1603\nthousand,3,kinglear,1603\nsojourn,3,kinglear,1603\nconvey,3,kinglear,1603\nholy,3,kinglear,1603\nquit,3,kinglear,1603\nunto,3,kinglear,1603\nstrong,3,kinglear,1603\nprovision,3,kinglear,1603\nconvenient,3,kinglear,1603\ncommission,3,kinglear,1603\ncontents,3,kinglear,1603\ngoodness,3,kinglear,1603\nSeek,3,kinglear,1603\neither,3,kinglear,1603\nfeeling,3,kinglear,1603\n'twixt,3,kinglear,1603\ncoxcombs,3,kinglear,1603\ncorn,3,kinglear,1603\nKnow,3,kinglear,1603\nwretches,3,kinglear,1603\nhours,3,kinglear,1603\nwretched,3,kinglear,1603\ndislike,3,kinglear,1603\ntied,3,kinglear,1603\nhowl,3,kinglear,1603\nbestow,3,kinglear,1603\nservants,3,kinglear,1603\neat,3,kinglear,1603\nhonesty,3,kinglear,1603\nvices,3,kinglear,1603\nbegins,3,kinglear,1603\nlearn,3,kinglear,1603\nDoes,3,kinglear,1603\nrights,3,kinglear,1603\nthoughts,3,kinglear,1603\nlips,3,kinglear,1603\nfashion,3,kinglear,1603\non's,3,kinglear,1603\nseverally,3,kinglear,1603\nharms,3,kinglear,1603\nasleep,3,kinglear,1603\ndry,3,kinglear,1603\ndotage,3,kinglear,1603\nbehold,3,kinglear,1603\nKneeling,3,kinglear,1603\ncommand,3,kinglear,1603\njustly,3,kinglear,1603\nforbear,3,kinglear,1603\nsharp,3,kinglear,1603\nmonsters,3,kinglear,1603\nsway,3,kinglear,1603\nguard,4,kinglear,1603\nStands,4,kinglear,1603\nwrit,4,kinglear,1603\nhaste,4,kinglear,1603\nspace,4,kinglear,1603\nspeedy,4,kinglear,1603\nTell,4,kinglear,1603\ndarkness,4,kinglear,1603\nhers,4,kinglear,1603\nHelp,4,kinglear,1603\nnaked,4,kinglear,1603\nmaintain,4,kinglear,1603\nthou'lt,4,kinglear,1603\ncase,4,kinglear,1603\ncamp,4,kinglear,1603\nmadness,4,kinglear,1603\nglass,4,kinglear,1603\naddition,4,kinglear,1603\nriotous,4,kinglear,1603\nshe's,4,kinglear,1603\nsit,4,kinglear,1603\nlight,4,kinglear,1603\nfell,4,kinglear,1603\ncounsel,4,kinglear,1603\ncountenance,4,kinglear,1603\n's,4,kinglear,1603\nmiddle,4,kinglear,1603\nmother,4,kinglear,1603\nbetwixt,4,kinglear,1603\nreverence,4,kinglear,1603\ncease,4,kinglear,1603\nMight,4,kinglear,1603\nknow'st,4,kinglear,1603\nbold,4,kinglear,1603\nbond,4,kinglear,1603\ncunning,4,kinglear,1603\nmean,4,kinglear,1603\nwast,4,kinglear,1603\nparty,4,kinglear,1603\nspoke,4,kinglear,1603\ntent,4,kinglear,1603\nDraw,4,kinglear,1603\nbitter,4,kinglear,1603\nsick,4,kinglear,1603\neach,4,kinglear,1603\nsenses,4,kinglear,1603\nknowledge,4,kinglear,1603\nI',4,kinglear,1603\nmanners,4,kinglear,1603\nHold,4,kinglear,1603\noffend,4,kinglear,1603\nlegitimate,4,kinglear,1603\nquarrel,4,kinglear,1603\nblows,4,kinglear,1603\nStand,4,kinglear,1603\nproof,4,kinglear,1603\nfinds,4,kinglear,1603\nbeg,4,kinglear,1603\ndinner,4,kinglear,1603\nrevenue,4,kinglear,1603\nearl,4,kinglear,1603\nsorry,4,kinglear,1603\nstraw,4,kinglear,1603\ndifference,4,kinglear,1603\nchildren,4,kinglear,1603\nfifty,4,kinglear,1603\ntwice,4,kinglear,1603\ncurse,4,kinglear,1603\ngate,4,kinglear,1603\nsister's,4,kinglear,1603\nBoth,4,kinglear,1603\nbegin,4,kinglear,1603\ndogs,4,kinglear,1603\ndeep,4,kinglear,1603\nwretch,4,kinglear,1603\nha,4,kinglear,1603\nCannot,4,kinglear,1603\nsheep,4,kinglear,1603\nsafe,4,kinglear,1603\nlegs,4,kinglear,1603\nlady's,4,kinglear,1603\nSecond,4,kinglear,1603\ncommands,4,kinglear,1603\nchoice,4,kinglear,1603\nfierce,4,kinglear,1603\nfield,4,kinglear,1603\nmessenger,4,kinglear,1603\nappears,4,kinglear,1603\ndeny,4,kinglear,1603\npluck,4,kinglear,1603\nwhether,4,kinglear,1603\nopen,4,kinglear,1603\nharder,4,kinglear,1603\npain,4,kinglear,1603\nmoney,4,kinglear,1603\npoint,4,kinglear,1603\ntwain,4,kinglear,1603\nbosom,4,kinglear,1603\nalive,4,kinglear,1603\nrogue,4,kinglear,1603\nscarcely,4,kinglear,1603\nAttendant,4,kinglear,1603\nSirrah,4,kinglear,1603\nHath,4,kinglear,1603\noften,4,kinglear,1603\ngarments,4,kinglear,1603\nmoved,4,kinglear,1603\nmaid,4,kinglear,1603\nhill,4,kinglear,1603\nshouldst,4,kinglear,1603\nnote,4,kinglear,1603\nalmost,4,kinglear,1603\ntender,4,kinglear,1603\nhide,4,kinglear,1603\nyear,4,kinglear,1603\ndukes,4,kinglear,1603\nmisery,4,kinglear,1603\nTherefore,4,kinglear,1603\nawhile,4,kinglear,1603\nprecious,4,kinglear,1603\nyours,4,kinglear,1603\ngeneral,4,kinglear,1603\ntowards,4,kinglear,1603\ntempest,4,kinglear,1603\nfoolish,4,kinglear,1603\negg,4,kinglear,1603\nmark,4,kinglear,1603\nknows,4,kinglear,1603\nissue,4,kinglear,1603\nThee,4,kinglear,1603\nThird,4,kinglear,1603\nmarvel,4,kinglear,1603\none's,4,kinglear,1603\ntrouble,4,kinglear,1603\nGiving,4,kinglear,1603\nWere,4,kinglear,1603\nrogues,4,kinglear,1603\nWe'll,4,kinglear,1603\ncourt,4,kinglear,1603\nheath,4,kinglear,1603\nmorrow,4,kinglear,1603\ncoxcomb,4,kinglear,1603\nSay,4,kinglear,1603\nheavy,4,kinglear,1603\nreceive,4,kinglear,1603\noath,4,kinglear,1603\nbleed,4,kinglear,1603\npride,4,kinglear,1603\nwheel,4,kinglear,1603\nBid,4,kinglear,1603\ncharged,4,kinglear,1603\nwolf,4,kinglear,1603\nfain,4,kinglear,1603\nevil,4,kinglear,1603\ndurst,4,kinglear,1603\nyond,4,kinglear,1603\ncompany,4,kinglear,1603\npalace,4,kinglear,1603\nride,4,kinglear,1603\nfie,4,kinglear,1603\npassion,4,kinglear,1603\nne'er,4,kinglear,1603\nFare,4,kinglear,1603\nherself,4,kinglear,1603\npractise,4,kinglear,1603\npatient,4,kinglear,1603\nhope,4,kinglear,1603\nis't,4,kinglear,1603\nLear's,4,kinglear,1603\nEarl,4,kinglear,1603\nwild,4,kinglear,1603\nshort,4,kinglear,1603\nhearts,4,kinglear,1603\naught,4,kinglear,1603\nunkindness,4,kinglear,1603\ncourtesy,4,kinglear,1603\nperson,4,kinglear,1603\nheels,4,kinglear,1603\nprison,4,kinglear,1603\ntogether,4,kinglear,1603\nendured,4,kinglear,1603\nwrite,4,kinglear,1603\nspirits,4,kinglear,1603\ndread,4,kinglear,1603\nSince,4,kinglear,1603\nfollow'd,4,kinglear,1603\ncontent,4,kinglear,1603\nDid,4,kinglear,1603\nperchance,4,kinglear,1603\ndue,4,kinglear,1603\nblessing,4,kinglear,1603\ndispatch,4,kinglear,1603\ntop,4,kinglear,1603\nBring,4,kinglear,1603\narmed,4,kinglear,1603\ncharity,4,kinglear,1603\nbids,4,kinglear,1603\ncrown,4,kinglear,1603\ne'er,4,kinglear,1603\nenemy,4,kinglear,1603\nHear,5,kinglear,1603\nfollowing,5,kinglear,1603\nroyal,5,kinglear,1603\nNever,5,kinglear,1603\nMust,5,kinglear,1603\nhearted,5,kinglear,1603\nEre,5,kinglear,1603\ncalls,5,kinglear,1603\nrun,5,kinglear,1603\nwhoreson,5,kinglear,1603\nmercy,5,kinglear,1603\nstrength,5,kinglear,1603\nsaw,5,kinglear,1603\nyears,5,kinglear,1603\nfools,5,kinglear,1603\nblack,5,kinglear,1603\nSuch,5,kinglear,1603\nwinds,5,kinglear,1603\nWas,5,kinglear,1603\nTheir,5,kinglear,1603\nfight,5,kinglear,1603\nreceived,5,kinglear,1603\nOut,5,kinglear,1603\nborn,5,kinglear,1603\nfalls,5,kinglear,1603\nruns,5,kinglear,1603\nsun,5,kinglear,1603\nabove,5,kinglear,1603\nblind,5,kinglear,1603\nancient,5,kinglear,1603\nseems,5,kinglear,1603\nOne,5,kinglear,1603\nsense,5,kinglear,1603\nwarm,5,kinglear,1603\nvoice,5,kinglear,1603\noffice,5,kinglear,1603\nAt,5,kinglear,1603\nchanged,5,kinglear,1603\nbid,5,kinglear,1603\nHad,5,kinglear,1603\nproud,5,kinglear,1603\nobey,5,kinglear,1603\nbehind,5,kinglear,1603\npeople,5,kinglear,1603\ntongue,5,kinglear,1603\nfavour,5,kinglear,1603\nstood,5,kinglear,1603\nBless,5,kinglear,1603\ndeal,5,kinglear,1603\nReturn,5,kinglear,1603\nthrive,5,kinglear,1603\nthyself,5,kinglear,1603\nhadst,5,kinglear,1603\nendure,5,kinglear,1603\nact,5,kinglear,1603\nhot,5,kinglear,1603\nwelcome,5,kinglear,1603\nCall,5,kinglear,1603\nprince,5,kinglear,1603\ndrawn,5,kinglear,1603\npresent,5,kinglear,1603\nhate,5,kinglear,1603\nye,5,kinglear,1603\nchance,5,kinglear,1603\nnew,5,kinglear,1603\nchange,5,kinglear,1603\nspoken,5,kinglear,1603\nInto,5,kinglear,1603\nthrough,5,kinglear,1603\nAgainst,5,kinglear,1603\nindeed,5,kinglear,1603\nPeace,5,kinglear,1603\nstars,5,kinglear,1603\nend,5,kinglear,1603\nBritish,5,kinglear,1603\ndidst,5,kinglear,1603\nbeggar,5,kinglear,1603\npresently,5,kinglear,1603\nlet's,5,kinglear,1603\nover,5,kinglear,1603\nfree,5,kinglear,1603\ntaste,5,kinglear,1603\nonly,5,kinglear,1603\nservices,5,kinglear,1603\nbanish'd,5,kinglear,1603\narmy,5,kinglear,1603\nperforce,5,kinglear,1603\nthemselves,5,kinglear,1603\nbrother's,5,kinglear,1603\nmarry,5,kinglear,1603\nlust,5,kinglear,1603\ndisposition,5,kinglear,1603\nTill,5,kinglear,1603\nwork,5,kinglear,1603\ncolours,5,kinglear,1603\nfly,5,kinglear,1603\nbare,5,kinglear,1603\nqueen,5,kinglear,1603\nhour,5,kinglear,1603\ncomfort,5,kinglear,1603\nfare,5,kinglear,1603\ntalk,5,kinglear,1603\nlaw,5,kinglear,1603\nNone,5,kinglear,1603\ncut,5,kinglear,1603\nfollows,5,kinglear,1603\nWhere's,5,kinglear,1603\nWherefore,5,kinglear,1603\nswear,5,kinglear,1603\nlow,5,kinglear,1603\ndefend,5,kinglear,1603\nbattle,5,kinglear,1603\nsent,5,kinglear,1603\nherald,5,kinglear,1603\neffects,5,kinglear,1603\nmar,5,kinglear,1603\n'scape,5,kinglear,1603\nstraight,5,kinglear,1603\non't,5,kinglear,1603\nhurt,5,kinglear,1603\nrespect,5,kinglear,1603\nattend,5,kinglear,1603\ndare,5,kinglear,1603\nLest,5,kinglear,1603\ncertain,5,kinglear,1603\ndaughters',5,kinglear,1603\nobedience,5,kinglear,1603\nshape,5,kinglear,1603\nwouldst,5,kinglear,1603\nV,6,kinglear,1603\ntook,6,kinglear,1603\nmistress,6,kinglear,1603\npeace,6,kinglear,1603\nrascal,6,kinglear,1603\ntrust,6,kinglear,1603\ncast,6,kinglear,1603\nhighness,6,kinglear,1603\npurse,6,kinglear,1603\nteach,6,kinglear,1603\nstands,6,kinglear,1603\nlooks,6,kinglear,1603\nThese,6,kinglear,1603\npiece,6,kinglear,1603\ngrow,6,kinglear,1603\nservice,6,kinglear,1603\nfalse,6,kinglear,1603\nothers,6,kinglear,1603\nAlbany,6,kinglear,1603\nCURAN,6,kinglear,1603\nside,6,kinglear,1603\nunnatural,6,kinglear,1603\nHer,6,kinglear,1603\npleasure,6,kinglear,1603\nLet's,6,kinglear,1603\npass,6,kinglear,1603\njust,6,kinglear,1603\nde,6,kinglear,1603\nneeds,6,kinglear,1603\nhands,6,kinglear,1603\nearth,6,kinglear,1603\nlose,6,kinglear,1603\ntwenty,6,kinglear,1603\nMore,6,kinglear,1603\nask,6,kinglear,1603\nfoot,6,kinglear,1603\nfood,6,kinglear,1603\njudgment,6,kinglear,1603\nMadam,6,kinglear,1603\nlords,6,kinglear,1603\nsirrah,6,kinglear,1603\nmouth,6,kinglear,1603\nere,6,kinglear,1603\ninform'd,6,kinglear,1603\noft,6,kinglear,1603\nsays,6,kinglear,1603\nthird,6,kinglear,1603\nintent,6,kinglear,1603\ndanger,6,kinglear,1603\nhappy,6,kinglear,1603\nfall,6,kinglear,1603\nthree,6,kinglear,1603\nlay,6,kinglear,1603\ngiven,6,kinglear,1603\ncarry,6,kinglear,1603\nwilt,6,kinglear,1603\nWho's,6,kinglear,1603\nHerald,6,kinglear,1603\nhorses,6,kinglear,1603\nprithee,6,kinglear,1603\nwe'll,6,kinglear,1603\nentreat,6,kinglear,1603\nself,6,kinglear,1603\near,6,kinglear,1603\nleast,6,kinglear,1603\nremember,6,kinglear,1603\nmet,6,kinglear,1603\nHe's,6,kinglear,1603\nwithout,6,kinglear,1603\nsmell,6,kinglear,1603\nspirit,6,kinglear,1603\nwoman,6,kinglear,1603\nfortunes,6,kinglear,1603\nquality,7,kinglear,1603\ntaking,7,kinglear,1603\nwhipped,7,kinglear,1603\nappear,7,kinglear,1603\ntruth,7,kinglear,1603\ncare,7,kinglear,1603\nplague,7,kinglear,1603\ntoward,7,kinglear,1603\npaper,7,kinglear,1603\nMethinks,7,kinglear,1603\nsomething,7,kinglear,1603\nenough,7,kinglear,1603\nbastard,7,kinglear,1603\nsea,7,kinglear,1603\nabused,7,kinglear,1603\noffence,7,kinglear,1603\nvile,7,kinglear,1603\nwrong,7,kinglear,1603\nfault,7,kinglear,1603\nwant,7,kinglear,1603\nheaven,7,kinglear,1603\nThough,7,kinglear,1603\nmurder,7,kinglear,1603\ndispleasure,7,kinglear,1603\nThere's,7,kinglear,1603\nhe's,7,kinglear,1603\nWhat's,7,kinglear,1603\nAn,7,kinglear,1603\nscarce,7,kinglear,1603\nneither,7,kinglear,1603\npatience,7,kinglear,1603\ncanst,7,kinglear,1603\nstay,7,kinglear,1603\ngrief,7,kinglear,1603\nPrithee,7,kinglear,1603\nsaid,7,kinglear,1603\ninstant,7,kinglear,1603\nbreath,7,kinglear,1603\nSoldiers,7,kinglear,1603\nmoon,7,kinglear,1603\nlost,7,kinglear,1603\nill,7,kinglear,1603\nFirst,7,kinglear,1603\nshow,7,kinglear,1603\nright,7,kinglear,1603\nhere's,7,kinglear,1603\nlead,7,kinglear,1603\nShould,7,kinglear,1603\njustice,7,kinglear,1603\nStorm,7,kinglear,1603\nstrike,7,kinglear,1603\nDost,7,kinglear,1603\nquestion,7,kinglear,1603\nbloody,7,kinglear,1603\n'gainst,7,kinglear,1603\nget,7,kinglear,1603\nwit,7,kinglear,1603\nsorrow,7,kinglear,1603\nbreak,7,kinglear,1603\nhovel,7,kinglear,1603\nnews,7,kinglear,1603\nMake,7,kinglear,1603\nThat's,7,kinglear,1603\nthunder,7,kinglear,1603\nday,7,kinglear,1603\npardon,7,kinglear,1603\nhonest,7,kinglear,1603\ngives,7,kinglear,1603\nwife,7,kinglear,1603\nreturn,7,kinglear,1603\nTom's,7,kinglear,1603\nlie,7,kinglear,1603\nNothing,7,kinglear,1603\nBefore,7,kinglear,1603\nAway,7,kinglear,1603\nvirtue,7,kinglear,1603\ndark,7,kinglear,1603\nland,7,kinglear,1603\nshake,7,kinglear,1603\nmeet,8,kinglear,1603\nNay,8,kinglear,1603\nunder,8,kinglear,1603\nfriends,8,kinglear,1603\nsure,8,kinglear,1603\nDuke,8,kinglear,1603\nbound,8,kinglear,1603\nbody,8,kinglear,1603\nwhere's,8,kinglear,1603\nAttendants,8,kinglear,1603\nread,8,kinglear,1603\nheavens,8,kinglear,1603\nwise,8,kinglear,1603\nHa,8,kinglear,1603\nbed,8,kinglear,1603\nprove,8,kinglear,1603\nwear,8,kinglear,1603\nair,8,kinglear,1603\nservant,8,kinglear,1603\nleft,8,kinglear,1603\nthat's,8,kinglear,1603\nsmall,8,kinglear,1603\nYet,8,kinglear,1603\nYes,8,kinglear,1603\nloved,8,kinglear,1603\nready,8,kinglear,1603\narm,8,kinglear,1603\nwater,8,kinglear,1603\nnone,8,kinglear,1603\nmajesty,8,kinglear,1603\nbeard,8,kinglear,1603\npowers,8,kinglear,1603\nSome,8,kinglear,1603\nI'ld,8,kinglear,1603\nbeseech,8,kinglear,1603\nrage,8,kinglear,1603\ncoming,8,kinglear,1603\n'em,8,kinglear,1603\nbase,8,kinglear,1603\nthank,8,kinglear,1603\nlives,8,kinglear,1603\nalone,8,kinglear,1603\nseem,8,kinglear,1603\nPray,8,kinglear,1603\nblame,8,kinglear,1603\nsend,8,kinglear,1603\nsleep,8,kinglear,1603\nleave,8,kinglear,1603\nBURGUNDY,8,kinglear,1603\nlast,8,kinglear,1603\ngoing,8,kinglear,1603\nKnight,8,kinglear,1603\nkill,8,kinglear,1603\nhimself,8,kinglear,1603\ntold,9,kinglear,1603\nspeech,9,kinglear,1603\nhelp,9,kinglear,1603\ndrum,9,kinglear,1603\ntears,9,kinglear,1603\nWould,9,kinglear,1603\nyourself,9,kinglear,1603\nWhose,9,kinglear,1603\nwords,9,kinglear,1603\nanother,9,kinglear,1603\nworth,9,kinglear,1603\nworst,9,kinglear,1603\nworse,9,kinglear,1603\nOn,9,kinglear,1603\nwisdom,9,kinglear,1603\nII,9,kinglear,1603\nweep,9,kinglear,1603\nfarewell,9,kinglear,1603\nstorm,9,kinglear,1603\nhusband,9,kinglear,1603\ntrain,9,kinglear,1603\nServants,9,kinglear,1603\nbrought,9,kinglear,1603\nhard,9,kinglear,1603\nplain,9,kinglear,1603\nhigh,9,kinglear,1603\nLook,9,kinglear,1603\nfather's,9,kinglear,1603\nonce,9,kinglear,1603\nletters,9,kinglear,1603\nnear,9,kinglear,1603\nfive,9,kinglear,1603\nduty,9,kinglear,1603\nbetween,9,kinglear,1603\nserve,9,kinglear,1603\nhundred,9,kinglear,1603\nfair,9,kinglear,1603\nplease,9,kinglear,1603\nsweet,9,kinglear,1603\nsound,9,kinglear,1603\ncry,9,kinglear,1603\ngoes,9,kinglear,1603\nMay,9,kinglear,1603\nmight,9,kinglear,1603\npity,10,kinglear,1603\nrather,10,kinglear,1603\nEdgar,10,kinglear,1603\nwhite,10,kinglear,1603\nhonour,10,kinglear,1603\nfeel,10,kinglear,1603\nflesh,10,kinglear,1603\nknights,10,kinglear,1603\nwits,10,kinglear,1603\nelse,10,kinglear,1603\nGloucester's,10,kinglear,1603\ncastle,10,kinglear,1603\nthings,10,kinglear,1603\nShe,10,kinglear,1603\nyoung,10,kinglear,1603\nmyself,10,kinglear,1603\nstate,10,kinglear,1603\nFRANCE,10,kinglear,1603\nsame,10,kinglear,1603\narms,10,kinglear,1603\ngentleman,10,kinglear,1603\nhome,10,kinglear,1603\nwhom,10,kinglear,1603\nled,10,kinglear,1603\nMessenger,10,kinglear,1603\nstrange,10,kinglear,1603\nshame,10,kinglear,1603\nnot,266,kinglear,1603\no'er,11,kinglear,1603\nhorse,11,kinglear,1603\nsisters,11,kinglear,1603\nsight,11,kinglear,1603\nPoor,11,kinglear,1603\nfurther,11,kinglear,1603\nServant,11,kinglear,1603\nturn,11,kinglear,1603\nThere,11,kinglear,1603\nabout,11,kinglear,1603\nwind,11,kinglear,1603\nhence,11,kinglear,1603\nrest,11,kinglear,1603\nstocks,11,kinglear,1603\nhas,11,kinglear,1603\nIV,11,kinglear,1603\ngave,11,kinglear,1603\nRe,11,kinglear,1603\nage,11,kinglear,1603\nthose,11,kinglear,1603\nMost,11,kinglear,1603\nAre,11,kinglear,1603\nfar,11,kinglear,1603\nFrom,11,kinglear,1603\nknown,11,kinglear,1603\nneed,11,kinglear,1603\nheard,11,kinglear,1603\nfound,11,kinglear,1603\nface,11,kinglear,1603\nrain,11,kinglear,1603\nfit,11,kinglear,1603\npurpose,11,kinglear,1603\nMan,11,kinglear,1603\nlate,11,kinglear,1603\ndog,11,kinglear,1603\nshalt,11,kinglear,1603\ndie,11,kinglear,1603\nUpon,12,kinglear,1603\ntrumpet,12,kinglear,1603\nfull,12,kinglear,1603\nNor,12,kinglear,1603\nBurgundy,12,kinglear,1603\nDoctor,12,kinglear,1603\nHere,12,kinglear,1603\nIII,12,kinglear,1603\nmeans,12,kinglear,1603\nblood,12,kinglear,1603\nSpeak,12,kinglear,1603\nCornwall,12,kinglear,1603\ndoes,12,kinglear,1603\nho,12,kinglear,1603\nGoneril,12,kinglear,1603\nhalf,12,kinglear,1603\nHave,12,kinglear,1603\neye,12,kinglear,1603\nAlack,12,kinglear,1603\nchild,12,kinglear,1603\nmany,12,kinglear,1603\nmind,12,kinglear,1603\nwhy,12,kinglear,1603\nWell,12,kinglear,1603\nfortune,12,kinglear,1603\neven,12,kinglear,1603\nreason,12,kinglear,1603\nkingdom,12,kinglear,1603\nback,12,kinglear,1603\nCaptain,12,kinglear,1603\nTake,12,kinglear,1603\nkind,12,kinglear,1603\ncame,13,kinglear,1603\nAside,13,kinglear,1603\ncause,13,kinglear,1603\nafter,13,kinglear,1603\nOld,13,kinglear,1603\nlong,13,kinglear,1603\npart,13,kinglear,1603\nforth,13,kinglear,1603\nthere's,13,kinglear,1603\nslave,13,kinglear,1603\nThen,13,kinglear,1603\nword,13,kinglear,1603\nseen,13,kinglear,1603\ntraitor,13,kinglear,1603\nmakes,13,kinglear,1603\nlive,13,kinglear,1603\nfollow,13,kinglear,1603\nevery,14,kinglear,1603\ndraw,14,kinglear,1603\nname,14,kinglear,1603\nlook,14,kinglear,1603\nbear,14,kinglear,1603\ncourse,14,kinglear,1603\nThey,14,kinglear,1603\nShall,14,kinglear,1603\nman's,14,kinglear,1603\nuse,14,kinglear,1603\ncold,14,kinglear,1603\nmen,14,kinglear,1603\ntrue,14,kinglear,1603\n',15,kinglear,1603\nbusiness,15,kinglear,1603\nthought,15,kinglear,1603\nDover,15,kinglear,1603\nfear,15,kinglear,1603\nbring,15,kinglear,1603\nmatter,15,kinglear,1603\nboy,15,kinglear,1603\nOF,15,kinglear,1603\nWe,15,kinglear,1603\nwhose,15,kinglear,1603\ndoth,15,kinglear,1603\nput,15,kinglear,1603\ndone,15,kinglear,1603\nfoul,15,kinglear,1603\nthough,15,kinglear,1603\nfire,15,kinglear,1603\nduke,15,kinglear,1603\nfind,15,kinglear,1603\ntill,15,kinglear,1603\nhither,15,kinglear,1603\nbeing,15,kinglear,1603\nin,271,kinglear,1603\nanswer,16,kinglear,1603\nnuncle,16,kinglear,1603\nWill,16,kinglear,1603\ncall,16,kinglear,1603\nNot,16,kinglear,1603\n't,16,kinglear,1603\nwithin,16,kinglear,1603\nboth,16,kinglear,1603\nBe,16,kinglear,1603\nitself,16,kinglear,1603\nsince,16,kinglear,1603\nenter,16,kinglear,1603\nOr,16,kinglear,1603\ndead,16,kinglear,1603\nkeep,16,kinglear,1603\nlittle,16,kinglear,1603\nThan,16,kinglear,1603\nAll,16,kinglear,1603\nbefore,16,kinglear,1603\nseek,16,kinglear,1603\nhouse,16,kinglear,1603\nTom,16,kinglear,1603\npower,16,kinglear,1603\nset,17,kinglear,1603\nsword,17,kinglear,1603\nAy,17,kinglear,1603\nHis,17,kinglear,1603\nGo,17,kinglear,1603\nGood,17,kinglear,1603\ngone,17,kinglear,1603\ninto,17,kinglear,1603\ncould,17,kinglear,1603\nLear,17,kinglear,1603\nhold,17,kinglear,1603\npray,18,kinglear,1603\nbrother,18,kinglear,1603\nagainst,18,kinglear,1603\nany,18,kinglear,1603\nnoble,18,kinglear,1603\nless,18,kinglear,1603\nstand,18,kinglear,1603\noff,18,kinglear,1603\nfirst,18,kinglear,1603\nmad,18,kinglear,1603\ncannot,18,kinglear,1603\nlady,18,kinglear,1603\nthe,786,kinglear,1603\nworld,19,kinglear,1603\ndeath,19,kinglear,1603\nOur,19,kinglear,1603\nfriend,19,kinglear,1603\nIt,19,kinglear,1603\ngrace,19,kinglear,1603\nfiend,19,kinglear,1603\nYour,19,kinglear,1603\nagain,19,kinglear,1603\nknave,19,kinglear,1603\nRegan,19,kinglear,1603\ndid,19,kinglear,1603\nKent,19,kinglear,1603\nvillain,20,kinglear,1603\nbest,20,kinglear,1603\ndost,20,kinglear,1603\ndear,20,kinglear,1603\no',20,kinglear,1603\ngive,20,kinglear,1603\nmade,20,kinglear,1603\nmine,20,kinglear,1603\nthink,20,kinglear,1603\never,20,kinglear,1603\nWhere,20,kinglear,1603\nThy,20,kinglear,1603\nGive,21,kinglear,1603\nOf,21,kinglear,1603\nhast,21,kinglear,1603\nSir,21,kinglear,1603\nvery,21,kinglear,1603\nthing,21,kinglear,1603\nhear,22,kinglear,1603\nFrance,22,kinglear,1603\nCordelia,22,kinglear,1603\nBy,22,kinglear,1603\ndown,22,kinglear,1603\ncomes,22,kinglear,1603\nthus,22,kinglear,1603\nhead,23,kinglear,1603\nDo,23,kinglear,1603\nwhere,23,kinglear,1603\nthine,23,kinglear,1603\nstill,23,kinglear,1603\ntwo,23,kinglear,1603\nother,23,kinglear,1603\nplace,24,kinglear,1603\n'Tis,24,kinglear,1603\nmaster,24,kinglear,1603\ndaughters,24,kinglear,1603\ni',25,kinglear,1603\nhow,25,kinglear,1603\nown,25,kinglear,1603\ngods,25,kinglear,1603\nGloucester,26,kinglear,1603\nNow,26,kinglear,1603\nbetter,26,kinglear,1603\nfellow,26,kinglear,1603\nnever,26,kinglear,1603\nhand,26,kinglear,1603\nACT,26,kinglear,1603\nwere,26,kinglear,1603\ngreat,26,kinglear,1603\nmadam,26,kinglear,1603\nnothing,27,kinglear,1603\ntell,27,kinglear,1603\nIs,27,kinglear,1603\nway,27,kinglear,1603\nletter,27,kinglear,1603\nSCENE,27,kinglear,1603\nAs,28,kinglear,1603\nSo,28,kinglear,1603\nnor,28,kinglear,1603\ntime,28,kinglear,1603\nson,29,kinglear,1603\ndaughter,29,kinglear,1603\n'tis,29,kinglear,1603\nbeen,29,kinglear,1603\nsister,29,kinglear,1603\nmuch,30,kinglear,1603\naway,30,kinglear,1603\nIn,30,kinglear,1603\nsome,31,kinglear,1603\nWith,31,kinglear,1603\nFor,31,kinglear,1603\nEdmund,32,kinglear,1603\nup,32,kinglear,1603\ntoo,32,kinglear,1603\nlife,33,kinglear,1603\nsay,33,kinglear,1603\nWho,33,kinglear,1603\nthese,33,kinglear,1603\nExeunt,33,kinglear,1603\nthen,34,kinglear,1603\nWhich,34,kinglear,1603\nwho,34,kinglear,1603\nhad,35,kinglear,1603\nnature,35,kinglear,1603\nupon,36,kinglear,1603\nHe,36,kinglear,1603\nnight,36,kinglear,1603\nspeak,36,kinglear,1603\none,36,kinglear,1603\nLet,36,kinglear,1603\ncan,37,kinglear,1603\neyes,37,kinglear,1603\npoor,37,kinglear,1603\nCome,38,kinglear,1603\nshould,38,kinglear,1603\nsuch,39,kinglear,1603\nwhen,39,kinglear,1603\nart,40,kinglear,1603\nThou,40,kinglear,1603\nlet,40,kinglear,1603\nWhen,40,kinglear,1603\ngo,41,kinglear,1603\nan,41,kinglear,1603\nWhy,42,kinglear,1603\nCORDELIA,42,kinglear,1603\nmost,43,kinglear,1603\nwhich,44,kinglear,1603\nmust,44,kinglear,1603\nshe,44,kinglear,1603\nthere,44,kinglear,1603\nHow,44,kinglear,1603\nyet,45,kinglear,1603\nold,45,kinglear,1603\nmay,45,kinglear,1603\nExit,45,kinglear,1603\nlike,46,kinglear,1603\nmake,46,kinglear,1603\nwas,46,kinglear,1603\nif,47,kinglear,1603\nfool,47,kinglear,1603\nsee,48,kinglear,1603\nGentleman,48,kinglear,1603\nthey,49,kinglear,1603\nlove,49,kinglear,1603\nThis,49,kinglear,1603\nheart,49,kinglear,1603\nor,50,kinglear,1603\nBut,50,kinglear,1603\ncome,50,kinglear,1603\nA,51,kinglear,1603\nthan,51,kinglear,1603\nus,51,kinglear,1603\nhath,52,kinglear,1603\nhere,53,kinglear,1603\nthem,53,kinglear,1603\nOSWALD,53,kinglear,1603\nnow,53,kinglear,1603\ntake,53,kinglear,1603\nMy,55,kinglear,1603\nwould,55,kinglear,1603\nwell,56,kinglear,1603\nat,57,kinglear,1603\nYou,58,kinglear,1603\nNo,59,kinglear,1603\ntheir,60,kinglear,1603\nwe,62,kinglear,1603\nwhat,62,kinglear,1603\nCORNWALL,63,kinglear,1603\nEnter,63,kinglear,1603\nfather,63,kinglear,1603\nIf,64,kinglear,1603\nking,65,kinglear,1603\ngood,67,kinglear,1603\nALBANY,67,kinglear,1603\nman,67,kinglear,1603\nout,68,kinglear,1603\nby,69,kinglear,1603\nGONERIL,71,kinglear,1603\nI'll,71,kinglear,1603\nknow,72,kinglear,1603\nFool,73,kinglear,1603\nmore,75,kinglear,1603\nWhat,75,kinglear,1603\nO,82,kinglear,1603\nand,594,kinglear,1603\nfrom,83,kinglear,1603\nbut,84,kinglear,1603\nam,84,kinglear,1603\nshall,85,kinglear,1603\nREGAN,86,kinglear,1603\nall,91,kinglear,1603\nno,92,kinglear,1603\ndo,93,kinglear,1603\non,93,kinglear,1603\nsir,94,kinglear,1603\nas,94,kinglear,1603\nlord,96,kinglear,1603\nour,96,kinglear,1603\nThat,98,kinglear,1603\nEDMUND,99,kinglear,1603\na,366,kinglear,1603\nI,622,kinglear,1603\nso,113,kinglear,1603\nwill,113,kinglear,1603\nare,117,kinglear,1603\nThe,122,kinglear,1603\nfor,123,kinglear,1603\nher,126,kinglear,1603\nEDGAR,126,kinglear,1603\nthee,135,kinglear,1603\nhe,137,kinglear,1603\nGLOUCESTER,141,kinglear,1603\nthy,141,kinglear,1603\nTo,142,kinglear,1603\nAnd,144,kinglear,1603\nyou,401,kinglear,1603\nmy,402,kinglear,1603\nbe,154,kinglear,1603\nKENT,156,kinglear,1603\nit,171,kinglear,1603\nwith,175,kinglear,1603\nthou,179,kinglear,1603\nto,438,kinglear,1603\nthis,187,kinglear,1603\nof,447,kinglear,1603\nis,192,kinglear,1603\nhis,193,kinglear,1603\nhave,194,kinglear,1603\nhim,198,kinglear,1603\nyour,205,kinglear,1603\nme,228,kinglear,1603\nLEAR,236,kinglear,1603\nKING,243,kinglear,1603\nthat,250,kinglear,1603\nbrave,1,cymbeline,1609\nfealty,1,cymbeline,1609\nattended,1,cymbeline,1609\nholding,1,cymbeline,1609\nplagues,1,cymbeline,1609\nprofession,1,cymbeline,1609\nbefal,1,cymbeline,1609\nrejoicingly,1,cymbeline,1609\nreligion,1,cymbeline,1609\nHowsoe'er,1,cymbeline,1609\nmutability,1,cymbeline,1609\nevent,1,cymbeline,1609\nneighbouring,1,cymbeline,1609\ncage,1,cymbeline,1609\nshepherd's,1,cymbeline,1609\njet,1,cymbeline,1609\nRomish,1,cymbeline,1609\nregard,1,cymbeline,1609\nTouching,1,cymbeline,1609\npayments,1,cymbeline,1609\ntomb,1,cymbeline,1609\nscraps,1,cymbeline,1609\nproffer,1,cymbeline,1609\naccordingly,1,cymbeline,1609\nignorance,1,cymbeline,1609\nrelief,1,cymbeline,1609\nthunderer,1,cymbeline,1609\nadvised,1,cymbeline,1609\nguard,1,cymbeline,1609\nStands,1,cymbeline,1609\nriveted,1,cymbeline,1609\ndebts,1,cymbeline,1609\nmeed,1,cymbeline,1609\nguise,1,cymbeline,1609\nlamentable,1,cymbeline,1609\ninvisible,1,cymbeline,1609\nstomachers,1,cymbeline,1609\nYours,1,cymbeline,1609\nrebukes,1,cymbeline,1609\nslaughtering,1,cymbeline,1609\nhangings,1,cymbeline,1609\ns,1,cymbeline,1609\nblurr'd,1,cymbeline,1609\nadvice,1,cymbeline,1609\nProud,1,cymbeline,1609\nextremity,1,cymbeline,1609\ndined,1,cymbeline,1609\nmarrying,1,cymbeline,1609\nafore't,1,cymbeline,1609\nreputation,1,cymbeline,1609\nguilt,1,cymbeline,1609\ncrook'd,1,cymbeline,1609\napprehend,1,cymbeline,1609\nfor's,1,cymbeline,1609\nLoves,1,cymbeline,1609\nyielding,1,cymbeline,1609\nFools,1,cymbeline,1609\nbelongs,1,cymbeline,1609\nresist,1,cymbeline,1609\njay,1,cymbeline,1609\npreferred,1,cymbeline,1609\ntruer,1,cymbeline,1609\nfitment,1,cymbeline,1609\ndream'd,1,cymbeline,1609\ntestimonies,1,cymbeline,1609\nviands,1,cymbeline,1609\nweasel,1,cymbeline,1609\ndiminution,1,cymbeline,1609\nwears,1,cymbeline,1609\ndream's,1,cymbeline,1609\nwrit,1,cymbeline,1609\nsteer'd,1,cymbeline,1609\ncoasts,1,cymbeline,1609\nplanted,1,cymbeline,1609\nspectators,1,cymbeline,1609\nrat,1,cymbeline,1609\npossible,1,cymbeline,1609\nreign'd,1,cymbeline,1609\nGrew,1,cymbeline,1609\ntyrant's,1,cymbeline,1609\nbrats,1,cymbeline,1609\nslackly,1,cymbeline,1609\npeasant,1,cymbeline,1609\nTenantius',1,cymbeline,1609\nWeeps,1,cymbeline,1609\nNew,1,cymbeline,1609\nShall's,1,cymbeline,1609\nshadows,1,cymbeline,1609\nwicked,1,cymbeline,1609\nperuse,1,cymbeline,1609\nfemale,1,cymbeline,1609\nbrows,1,cymbeline,1609\nOutsells,1,cymbeline,1609\npitying,1,cymbeline,1609\nnursing,1,cymbeline,1609\npeculiar,1,cymbeline,1609\nhasty,1,cymbeline,1609\ndagger,1,cymbeline,1609\nAffected,1,cymbeline,1609\nrode,1,cymbeline,1609\nVillain,1,cymbeline,1609\nMessengers,1,cymbeline,1609\nfoolery,1,cymbeline,1609\nrot,1,cymbeline,1609\ninterpreted,1,cymbeline,1609\npreparation,1,cymbeline,1609\noffended,1,cymbeline,1609\ndominion,1,cymbeline,1609\nshoulders,1,cymbeline,1609\nrob,1,cymbeline,1609\nmatron,1,cymbeline,1609\noffender,1,cymbeline,1609\nscene,1,cymbeline,1609\nhighness',1,cymbeline,1609\nBear,1,cymbeline,1609\nday's,1,cymbeline,1609\nroar,1,cymbeline,1609\nwiving,1,cymbeline,1609\ntrivial,1,cymbeline,1609\nEndows,1,cymbeline,1609\nspace,1,cymbeline,1609\nexpress,1,cymbeline,1609\nneighbour's,1,cymbeline,1609\nbrands,1,cymbeline,1609\nepitaph,1,cymbeline,1609\nfanes,1,cymbeline,1609\noverbuys,1,cymbeline,1609\nLeonitus,1,cymbeline,1609\nvaulting,1,cymbeline,1609\nPitied,1,cymbeline,1609\nhelps,1,cymbeline,1609\ndire,1,cymbeline,1609\nDeny't,1,cymbeline,1609\nmoiety,1,cymbeline,1609\nSicilius',1,cymbeline,1609\nwager'd,1,cymbeline,1609\ndespised,1,cymbeline,1609\nviolets,1,cymbeline,1609\nfliers,1,cymbeline,1609\nlaughter,1,cymbeline,1609\nKills,1,cymbeline,1609\nfreer,1,cymbeline,1609\nfumes,1,cymbeline,1609\nsleepy,1,cymbeline,1609\nwrites,1,cymbeline,1609\ndirt,1,cymbeline,1609\ndarkness,1,cymbeline,1609\nHanging,1,cymbeline,1609\npainted,1,cymbeline,1609\nzephyrs,1,cymbeline,1609\nGailia,1,cymbeline,1609\nbaubles,1,cymbeline,1609\ndenials,1,cymbeline,1609\nbroths,1,cymbeline,1609\ngroan,1,cymbeline,1609\nvain,1,cymbeline,1609\npittikins,1,cymbeline,1609\ndecay,1,cymbeline,1609\ncelestial,1,cymbeline,1609\nBlack,1,cymbeline,1609\nCried,1,cymbeline,1609\nvale,1,cymbeline,1609\nloathness,1,cymbeline,1609\ngrin,1,cymbeline,1609\nwhile,1,cymbeline,1609\nsupplyant,1,cymbeline,1609\nsighs,1,cymbeline,1609\ncorresponding,1,cymbeline,1609\nutterance,1,cymbeline,1609\ncomest,1,cymbeline,1609\nPerplex'd,1,cymbeline,1609\nrip,1,cymbeline,1609\nanswering,1,cymbeline,1609\nhearted,1,cymbeline,1609\ntears,1,cymbeline,1609\ntopmast,1,cymbeline,1609\nWoman,1,cymbeline,1609\nlooked,1,cymbeline,1609\nnaked,1,cymbeline,1609\ncomers,1,cymbeline,1609\nangels,1,cymbeline,1609\nLovers,1,cymbeline,1609\nsummer's,1,cymbeline,1609\nravening,1,cymbeline,1609\nsots,1,cymbeline,1609\nUnknown,1,cymbeline,1609\nmaintain,1,cymbeline,1609\nflow,1,cymbeline,1609\nits,1,cymbeline,1609\nteachers,1,cymbeline,1609\n'mulier',1,cymbeline,1609\nexactly,1,cymbeline,1609\nalthough,1,cymbeline,1609\nvaluation,1,cymbeline,1609\nbring'st,1,cymbeline,1609\nFrighted,1,cymbeline,1609\nappeal,1,cymbeline,1609\nsour,1,cymbeline,1609\nlaugh,1,cymbeline,1609\nhorrid,1,cymbeline,1609\nadmirable,1,cymbeline,1609\nprey,1,cymbeline,1609\ncalls,1,cymbeline,1609\nthou'lt,1,cymbeline,1609\nuntaught,1,cymbeline,1609\nCowards,1,cymbeline,1609\nAbhorr'd,1,cymbeline,1609\nterrible,1,cymbeline,1609\nlapp'd,1,cymbeline,1609\nreferr'd,1,cymbeline,1609\ncrickets,1,cymbeline,1609\nadvocate,1,cymbeline,1609\nravish,1,cymbeline,1609\nodds,1,cymbeline,1609\niron,1,cymbeline,1609\nconceiving,1,cymbeline,1609\ndamned,1,cymbeline,1609\ndemesnes,1,cymbeline,1609\nPost,1,cymbeline,1609\npick,1,cymbeline,1609\nlids,1,cymbeline,1609\nstamp'd,1,cymbeline,1609\npinch,1,cymbeline,1609\nMoney,1,cymbeline,1609\nhardiness,1,cymbeline,1609\nworks,1,cymbeline,1609\nQuite,1,cymbeline,1609\ndisobedience,1,cymbeline,1609\njoys,1,cymbeline,1609\nrated,1,cymbeline,1609\nscruple,1,cymbeline,1609\ncloyed,1,cymbeline,1609\nwounded,1,cymbeline,1609\nGolden,1,cymbeline,1609\nMarried,1,cymbeline,1609\ntyrannous,1,cymbeline,1609\nrecreation,1,cymbeline,1609\ncheeks,1,cymbeline,1609\nwhoreson,1,cymbeline,1609\ncarl,1,cymbeline,1609\nPERSONAE,1,cymbeline,1609\nPersonates,1,cymbeline,1609\nmute,1,cymbeline,1609\nRenew,1,cymbeline,1609\nLessen'd,1,cymbeline,1609\ncrutch,1,cymbeline,1609\nsoliciting,1,cymbeline,1609\naer',1,cymbeline,1609\nPretty,1,cymbeline,1609\nearly,1,cymbeline,1609\nInstructs,1,cymbeline,1609\nFlow,1,cymbeline,1609\nsoftly,1,cymbeline,1609\nsong,1,cymbeline,1609\nlaced,1,cymbeline,1609\nrepulse,1,cymbeline,1609\ncoffers,1,cymbeline,1609\nquench'd,1,cymbeline,1609\nregions,1,cymbeline,1609\npursue,1,cymbeline,1609\nlustre,1,cymbeline,1609\nbeneath,1,cymbeline,1609\nassaults,1,cymbeline,1609\nplague,1,cymbeline,1609\nOver,1,cymbeline,1609\nreign,1,cymbeline,1609\norder'd,1,cymbeline,1609\nForget,1,cymbeline,1609\ncharge,1,cymbeline,1609\ncounted,1,cymbeline,1609\ndisdain,1,cymbeline,1609\nhunger's,1,cymbeline,1609\ngraced,1,cymbeline,1609\ndivination,1,cymbeline,1609\namazed,1,cymbeline,1609\nfeels,1,cymbeline,1609\nfeather,1,cymbeline,1609\napparition,1,cymbeline,1609\ncamp,1,cymbeline,1609\nenemies',1,cymbeline,1609\npine,1,cymbeline,1609\nthousands,1,cymbeline,1609\nsold,1,cymbeline,1609\nYoung,1,cymbeline,1609\nunjustly,1,cymbeline,1609\nrelieve,1,cymbeline,1609\ngrown,1,cymbeline,1609\nbearing,1,cymbeline,1609\nSwift,1,cymbeline,1609\nstream,1,cymbeline,1609\nconstantly,1,cymbeline,1609\nline,1,cymbeline,1609\natone,1,cymbeline,1609\nbathe,1,cymbeline,1609\ndependencies,1,cymbeline,1609\nrepast,1,cymbeline,1609\nTongue,1,cymbeline,1609\nopposed,1,cymbeline,1609\nsmothering,1,cymbeline,1609\ncorner,1,cymbeline,1609\nprop,1,cymbeline,1609\nOrleans,1,cymbeline,1609\ncrying,1,cymbeline,1609\nlimb,1,cymbeline,1609\nverbal,1,cymbeline,1609\nthou'rt,1,cymbeline,1609\nhorror,1,cymbeline,1609\npossesses,1,cymbeline,1609\nafterwards,1,cymbeline,1609\nsnore,1,cymbeline,1609\nplight,1,cymbeline,1609\nposts,1,cymbeline,1609\ncorse,1,cymbeline,1609\nMuch,1,cymbeline,1609\nheat,1,cymbeline,1609\nhabits,1,cymbeline,1609\ndiffers,1,cymbeline,1609\nWoe,1,cymbeline,1609\nsparks,1,cymbeline,1609\ndrew,1,cymbeline,1609\no'erjoy'd,1,cymbeline,1609\nmanacles,1,cymbeline,1609\nworthier,1,cymbeline,1609\nsloth,1,cymbeline,1609\nopprest,1,cymbeline,1609\nshanks,1,cymbeline,1609\nQuiet,1,cymbeline,1609\nOnly,1,cymbeline,1609\nwants,1,cymbeline,1609\nprimroses,1,cymbeline,1609\nfingers,1,cymbeline,1609\nvoices,1,cymbeline,1609\nbabes,1,cymbeline,1609\nknaves,1,cymbeline,1609\nsoil,1,cymbeline,1609\ncalm,1,cymbeline,1609\ndemands,1,cymbeline,1609\nsacrilegious,1,cymbeline,1609\nbreaks,1,cymbeline,1609\nofficers,1,cymbeline,1609\nrider,1,cymbeline,1609\nYield,1,cymbeline,1609\nmaking,1,cymbeline,1609\nresumed,1,cymbeline,1609\nsixteen,1,cymbeline,1609\nwrong'st,1,cymbeline,1609\ncentury,1,cymbeline,1609\nbrotherly,1,cymbeline,1609\naddition,1,cymbeline,1609\nveins,1,cymbeline,1609\nMethinks,1,cymbeline,1609\nhardiment,1,cymbeline,1609\nricher,1,cymbeline,1609\nriches,1,cymbeline,1609\nweights,1,cymbeline,1609\ntoys,1,cymbeline,1609\nabode,1,cymbeline,1609\nrunagate,1,cymbeline,1609\ncovering,1,cymbeline,1609\nRecoil,1,cymbeline,1609\nvisit,1,cymbeline,1609\narithmetic,1,cymbeline,1609\nboar,1,cymbeline,1609\nperjured,1,cymbeline,1609\nconfirms,1,cymbeline,1609\nKnighthoods,1,cymbeline,1609\nmonster's,1,cymbeline,1609\nladies',1,cymbeline,1609\nbackside,1,cymbeline,1609\nComparative,1,cymbeline,1609\nsix,1,cymbeline,1609\nexecution,1,cymbeline,1609\nshamed,1,cymbeline,1609\nlasts,1,cymbeline,1609\nwage,1,cymbeline,1609\nslightly,1,cymbeline,1609\nfeodary,1,cymbeline,1609\nI'm,1,cymbeline,1609\nmonkeys,1,cymbeline,1609\nweighed,1,cymbeline,1609\nembassy,1,cymbeline,1609\nwhatsoever,1,cymbeline,1609\nsit,1,cymbeline,1609\nCharms,1,cymbeline,1609\nconceive,1,cymbeline,1609\nPhoebus',1,cymbeline,1609\nimprison'd,1,cymbeline,1609\ncourtly,1,cymbeline,1609\naged,1,cymbeline,1609\nstriking,1,cymbeline,1609\nsender,1,cymbeline,1609\nfriended,1,cymbeline,1609\nken,1,cymbeline,1609\ndeceased,1,cymbeline,1609\nkey,1,cymbeline,1609\nsweet'st,1,cymbeline,1609\nChange,1,cymbeline,1609\nthink'st,1,cymbeline,1609\nsubdued,1,cymbeline,1609\nagent,1,cymbeline,1609\nfingering,1,cymbeline,1609\nfleet,1,cymbeline,1609\nimitation,1,cymbeline,1609\ntooth,1,cymbeline,1609\ndeity,1,cymbeline,1609\nscowl,1,cymbeline,1609\ncontaining,1,cymbeline,1609\nquestion'dst,1,cymbeline,1609\naffiance,1,cymbeline,1609\nsex,1,cymbeline,1609\nthankings,1,cymbeline,1609\nfavourer,1,cymbeline,1609\nlearnings,1,cymbeline,1609\nmocking,1,cymbeline,1609\nKneel,1,cymbeline,1609\nDo't,1,cymbeline,1609\ntraveller,1,cymbeline,1609\nsociety,1,cymbeline,1609\nshe'll,1,cymbeline,1609\naudit,1,cymbeline,1609\nrottenness,1,cymbeline,1609\nlaying,1,cymbeline,1609\npeevish,1,cymbeline,1609\nlions,1,cymbeline,1609\nbeasts,1,cymbeline,1609\ndoubtless,1,cymbeline,1609\nprettiest,1,cymbeline,1609\nancestry,1,cymbeline,1609\nsnatches,1,cymbeline,1609\nThinking,1,cymbeline,1609\nRevenged,1,cymbeline,1609\naltars,1,cymbeline,1609\nstealing,1,cymbeline,1609\ndeliver,1,cymbeline,1609\nallured,1,cymbeline,1609\ncradle,1,cymbeline,1609\nknives,1,cymbeline,1609\nLeonatus's,1,cymbeline,1609\nHimself,1,cymbeline,1609\nvine,1,cymbeline,1609\ndelivers,1,cymbeline,1609\nsteps,1,cymbeline,1609\nfamed,1,cymbeline,1609\njusticer,1,cymbeline,1609\nbecomed,1,cymbeline,1609\nMerely,1,cymbeline,1609\nmurderer,1,cymbeline,1609\nFarewell,1,cymbeline,1609\nfollower,1,cymbeline,1609\nexperiences,1,cymbeline,1609\nmantle,1,cymbeline,1609\nfangled,1,cymbeline,1609\napparent,1,cymbeline,1609\nwhere't,1,cymbeline,1609\npictured,1,cymbeline,1609\nballasting,1,cymbeline,1609\ncountenance,1,cymbeline,1609\ndignities,1,cymbeline,1609\nattends,1,cymbeline,1609\nlarges,1,cymbeline,1609\ndarted,1,cymbeline,1609\nstern,1,cymbeline,1609\nit's,1,cymbeline,1609\nsharded,1,cymbeline,1609\nsurmises,1,cymbeline,1609\nkindly,1,cymbeline,1609\ncloy'd,1,cymbeline,1609\nlivery,1,cymbeline,1609\nforthwith,1,cymbeline,1609\nandirons,1,cymbeline,1609\nHeavens,1,cymbeline,1609\nqualified,1,cymbeline,1609\nWinnow,1,cymbeline,1609\nforeshow'd,1,cymbeline,1609\npermit,1,cymbeline,1609\nwoodman,1,cymbeline,1609\nmultitudes,1,cymbeline,1609\nmiddle,1,cymbeline,1609\nbeloved,1,cymbeline,1609\n'Ods,1,cymbeline,1609\nwages,1,cymbeline,1609\nreck,1,cymbeline,1609\nshipping,1,cymbeline,1609\ncommends,1,cymbeline,1609\nsky,1,cymbeline,1609\ninstruct,1,cymbeline,1609\nhatch'd,1,cymbeline,1609\nparish,1,cymbeline,1609\ncamps,1,cymbeline,1609\nItself,1,cymbeline,1609\ntrials,1,cymbeline,1609\nDoctor,1,cymbeline,1609\ngripes,1,cymbeline,1609\nO'ercome,1,cymbeline,1609\nOther,1,cymbeline,1609\nsuck,1,cymbeline,1609\nAdder,1,cymbeline,1609\nhorses',1,cymbeline,1609\nwar's,1,cymbeline,1609\npickaxes,1,cymbeline,1609\nHELEN,1,cymbeline,1609\nplay'd,1,cymbeline,1609\nHear'st,1,cymbeline,1609\nScrew'd,1,cymbeline,1609\nmutation,1,cymbeline,1609\ndaughter's,1,cymbeline,1609\nExperience,1,cymbeline,1609\nappear'd,1,cymbeline,1609\nthroes,1,cymbeline,1609\ninduced,1,cymbeline,1609\nhow'er,1,cymbeline,1609\npurchasing,1,cymbeline,1609\nseats,1,cymbeline,1609\nstuck,1,cymbeline,1609\nstanders,1,cymbeline,1609\nexhibition,1,cymbeline,1609\ngiants,1,cymbeline,1609\nvanquisheth,1,cymbeline,1609\nourselves,1,cymbeline,1609\ngoddesses,1,cymbeline,1609\nthieves,1,cymbeline,1609\nminion,1,cymbeline,1609\nmellow,1,cymbeline,1609\nsprited,1,cymbeline,1609\nreap,1,cymbeline,1609\nbenediction,1,cymbeline,1609\nsly,1,cymbeline,1609\naccursed,1,cymbeline,1609\nTereus,1,cymbeline,1609\nwrong,1,cymbeline,1609\ncompound,1,cymbeline,1609\nreceiver,1,cymbeline,1609\nembracements,1,cymbeline,1609\nbeseeming,1,cymbeline,1609\nvanish,1,cymbeline,1609\nbriefness,1,cymbeline,1609\ndebtors,1,cymbeline,1609\nsnow,1,cymbeline,1609\nante,1,cymbeline,1609\nmonster,1,cymbeline,1609\nroots,1,cymbeline,1609\nconfounded,1,cymbeline,1609\nturf,1,cymbeline,1609\ncharm'd,1,cymbeline,1609\nchased,1,cymbeline,1609\nGrow,1,cymbeline,1609\nafraid,1,cymbeline,1609\nqualm'd,1,cymbeline,1609\npalaces,1,cymbeline,1609\nBe't,1,cymbeline,1609\nchaser,1,cymbeline,1609\nworlds,1,cymbeline,1609\nhabit,1,cymbeline,1609\nfigure,1,cymbeline,1609\ndieter,1,cymbeline,1609\ncivil,1,cymbeline,1609\ndirect,1,cymbeline,1609\nreed,1,cymbeline,1609\nreek,1,cymbeline,1609\nDespairing,1,cymbeline,1609\nencounter'd,1,cymbeline,1609\nplots,1,cymbeline,1609\nchurls,1,cymbeline,1609\nfeat,1,cymbeline,1609\nvariable,1,cymbeline,1609\nactions,1,cymbeline,1609\nprohibition,1,cymbeline,1609\nterms,1,cymbeline,1609\nsweeten'd,1,cymbeline,1609\nseeks,1,cymbeline,1609\nconfer,1,cymbeline,1609\ncommix,1,cymbeline,1609\neldest,1,cymbeline,1609\nPardon,1,cymbeline,1609\nmark'd,1,cymbeline,1609\nPosthumus',1,cymbeline,1609\ncook'd,1,cymbeline,1609\nhitting,1,cymbeline,1609\nuntrue,1,cymbeline,1609\nrelation,1,cymbeline,1609\nwilling,1,cymbeline,1609\ncertainties,1,cymbeline,1609\nWherein,1,cymbeline,1609\nstupefy,1,cymbeline,1609\nYearly,1,cymbeline,1609\nsaw't,1,cymbeline,1609\n'Tween,1,cymbeline,1609\nthence,1,cymbeline,1609\ncovetings,1,cymbeline,1609\nbestrid,1,cymbeline,1609\ncries,1,cymbeline,1609\nVexations,1,cymbeline,1609\nhumble,1,cymbeline,1609\nspeechless,1,cymbeline,1609\nEmbracing,1,cymbeline,1609\nshining,1,cymbeline,1609\nsum,1,cymbeline,1609\ngovern'd,1,cymbeline,1609\nsur,1,cymbeline,1609\nbrace,1,cymbeline,1609\nancestor,1,cymbeline,1609\nvoyages,1,cymbeline,1609\nbowl,1,cymbeline,1609\nslavish,1,cymbeline,1609\nfeet,1,cymbeline,1609\ndescent,1,cymbeline,1609\nbows,1,cymbeline,1609\nSpare,1,cymbeline,1609\nhoodwink'd,1,cymbeline,1609\ntemporal,1,cymbeline,1609\ncasually,1,cymbeline,1609\nlook's,1,cymbeline,1609\nrelish,1,cymbeline,1609\nSearch,1,cymbeline,1609\nBehind,1,cymbeline,1609\ncourages,1,cymbeline,1609\nupon't,1,cymbeline,1609\neglantine,1,cymbeline,1609\nsuffering,1,cymbeline,1609\ngibes,1,cymbeline,1609\nwrists,1,cymbeline,1609\nvenerable,1,cymbeline,1609\nconceal,1,cymbeline,1609\nstiller,1,cymbeline,1609\nunsunn'd,1,cymbeline,1609\nWhereto,1,cymbeline,1609\nweather,1,cymbeline,1609\nlucre,1,cymbeline,1609\nrude,1,cymbeline,1609\nprized,1,cymbeline,1609\nredeem'd,1,cymbeline,1609\nribbed,1,cymbeline,1609\nbolts,1,cymbeline,1609\nshrine,1,cymbeline,1609\ncuckold,1,cymbeline,1609\nattired,1,cymbeline,1609\nAscends,1,cymbeline,1609\nmonarchs,1,cymbeline,1609\nknights,1,cymbeline,1609\nRates,1,cymbeline,1609\nDark,1,cymbeline,1609\ntender'd,1,cymbeline,1609\nrebelling,1,cymbeline,1609\nrarely,1,cymbeline,1609\nDare,1,cymbeline,1609\ntitle,1,cymbeline,1609\nexecutioner,1,cymbeline,1609\nSparkles,1,cymbeline,1609\nAdvancing,1,cymbeline,1609\nentertained,1,cymbeline,1609\nedge,1,cymbeline,1609\ndoom'd,1,cymbeline,1609\nharmless,1,cymbeline,1609\ndearer,1,cymbeline,1609\nwipe,1,cymbeline,1609\nheaved,1,cymbeline,1609\nmountainous,1,cymbeline,1609\nwholly,1,cymbeline,1609\nensign,1,cymbeline,1609\nunkinglike,1,cymbeline,1609\nknow'st,1,cymbeline,1609\ndies,1,cymbeline,1609\ndiet,1,cymbeline,1609\ntrifles,1,cymbeline,1609\nruin,1,cymbeline,1609\nrenew,1,cymbeline,1609\nrowel,1,cymbeline,1609\nimportuned,1,cymbeline,1609\nturned,1,cymbeline,1609\nhorsemen,1,cymbeline,1609\nmannish,1,cymbeline,1609\nthrown,1,cymbeline,1609\nimperious,1,cymbeline,1609\nclasp,1,cymbeline,1609\ndispleasure,1,cymbeline,1609\nvictuals,1,cymbeline,1609\nseem'd,1,cymbeline,1609\nwinning,1,cymbeline,1609\nambassador,1,cymbeline,1609\nworld's,1,cymbeline,1609\nloins,1,cymbeline,1609\nharbour,1,cymbeline,1609\nProved,1,cymbeline,1609\ncrescent,1,cymbeline,1609\nsanguine,1,cymbeline,1609\ndoubts,1,cymbeline,1609\nthroughly,1,cymbeline,1609\nbasilisk,1,cymbeline,1609\nmelted,1,cymbeline,1609\ndistress,1,cymbeline,1609\nmistake,1,cymbeline,1609\njoin'd,1,cymbeline,1609\nstirr'd,1,cymbeline,1609\nGallian,1,cymbeline,1609\ncircumstances,1,cymbeline,1609\nInclined,1,cymbeline,1609\nunshaked,1,cymbeline,1609\ndomestic,1,cymbeline,1609\ngentleman's,1,cymbeline,1609\ndear'st,1,cymbeline,1609\nBlessed,1,cymbeline,1609\nroofs,1,cymbeline,1609\nmanly,1,cymbeline,1609\ngentlewoman's,1,cymbeline,1609\nbright,1,cymbeline,1609\ncreates,1,cymbeline,1609\nparty,1,cymbeline,1609\ngripe,1,cymbeline,1609\ninfirmity,1,cymbeline,1609\ncreated,1,cymbeline,1609\nsceptre,1,cymbeline,1609\npraises,1,cymbeline,1609\nsympathy,1,cymbeline,1609\ntainting,1,cymbeline,1609\nPostures,1,cymbeline,1609\nconditions,1,cymbeline,1609\nopening,1,cymbeline,1609\nbitter,1,cymbeline,1609\nattemptable,1,cymbeline,1609\nsmokes,1,cymbeline,1609\nbills,1,cymbeline,1609\npreferr'd,1,cymbeline,1609\nmistaken,1,cymbeline,1609\nscandal,1,cymbeline,1609\nprince's,1,cymbeline,1609\nbathing,1,cymbeline,1609\nha',1,cymbeline,1609\nlife's,1,cymbeline,1609\nbastards,1,cymbeline,1609\nemptiness,1,cymbeline,1609\nkeys,1,cymbeline,1609\nburning,1,cymbeline,1609\ngratify,1,cymbeline,1609\nenfeebles,1,cymbeline,1609\nmortality,1,cymbeline,1609\nforespent,1,cymbeline,1609\nHold,1,cymbeline,1609\nwaken'd,1,cymbeline,1609\nvisible,1,cymbeline,1609\nbegetting,1,cymbeline,1609\nbacks,1,cymbeline,1609\nTitan,1,cymbeline,1609\nsnuff,1,cymbeline,1609\nWhile,1,cymbeline,1609\ndrudge,1,cymbeline,1609\nadjoining,1,cymbeline,1609\ncarbuncle,1,cymbeline,1609\nStruck,1,cymbeline,1609\nsweeten,1,cymbeline,1609\nHome,1,cymbeline,1609\ninferiors,1,cymbeline,1609\nAugustus',1,cymbeline,1609\ncrack,1,cymbeline,1609\nsweeter,1,cymbeline,1609\nfoes,1,cymbeline,1609\nDraws,1,cymbeline,1609\nDrawn,1,cymbeline,1609\nrivers,1,cymbeline,1609\nunscalable,1,cymbeline,1609\nutter,1,cymbeline,1609\nrepented,1,cymbeline,1609\nrefuse,1,cymbeline,1609\ndiscern,1,cymbeline,1609\noffend,1,cymbeline,1609\nclement,1,cymbeline,1609\nserving,1,cymbeline,1609\ndistinguish,1,cymbeline,1609\ndescends,1,cymbeline,1609\nexercise,1,cymbeline,1609\nFidele's,1,cymbeline,1609\nsorer,1,cymbeline,1609\nstowage,1,cymbeline,1609\nflattery,1,cymbeline,1609\ninter'gatories,1,cymbeline,1609\nballs,1,cymbeline,1609\nappeased,1,cymbeline,1609\nAh,1,cymbeline,1609\ntasting,1,cymbeline,1609\naltogether,1,cymbeline,1609\ninfection,1,cymbeline,1609\npacking,1,cymbeline,1609\nquarrel,1,cymbeline,1609\nfool's,1,cymbeline,1609\namplify,1,cymbeline,1609\nMeans,1,cymbeline,1609\nhilding,1,cymbeline,1609\nheresy,1,cymbeline,1609\nmotives,1,cymbeline,1609\nfreeness,1,cymbeline,1609\nfool'd,1,cymbeline,1609\njackanapes,1,cymbeline,1609\nbow,1,cymbeline,1609\nshaming,1,cymbeline,1609\nloath,1,cymbeline,1609\nwronger,1,cymbeline,1609\nStick,1,cymbeline,1609\nCorrupters,1,cymbeline,1609\nvigour,1,cymbeline,1609\nwash'd,1,cymbeline,1609\nunnatural,1,cymbeline,1609\nreason's,1,cymbeline,1609\nSolicit'st,1,cymbeline,1609\nfortify,1,cymbeline,1609\nlance,1,cymbeline,1609\nvoluntary,1,cymbeline,1609\nfoam'd,1,cymbeline,1609\nPlay,1,cymbeline,1609\nbag,1,cymbeline,1609\ntold'st,1,cymbeline,1609\npointed,1,cymbeline,1609\nLo,1,cymbeline,1609\nflats,1,cymbeline,1609\npander,1,cymbeline,1609\nverier,1,cymbeline,1609\nprone,1,cymbeline,1609\nOurselves,1,cymbeline,1609\nwarrior,1,cymbeline,1609\nwrings,1,cymbeline,1609\nimagined,1,cymbeline,1609\nbay,1,cymbeline,1609\nsiege,1,cymbeline,1609\nPhilomel,1,cymbeline,1609\nrazed,1,cymbeline,1609\nmapped,1,cymbeline,1609\ndisarmeth,1,cymbeline,1609\nlands,1,cymbeline,1609\nunlustrous,1,cymbeline,1609\nempery,1,cymbeline,1609\nWinning,1,cymbeline,1609\nprethee,1,cymbeline,1609\nunless,1,cymbeline,1609\nin's,1,cymbeline,1609\nAccessible,1,cymbeline,1609\nkept,1,cymbeline,1609\nAlbeit,1,cymbeline,1609\nharebell,1,cymbeline,1609\ncreature,1,cymbeline,1609\nmerited,1,cymbeline,1609\nbeautiful,1,cymbeline,1609\ndefied,1,cymbeline,1609\ndreaded,1,cymbeline,1609\ntales,1,cymbeline,1609\ndiligence,1,cymbeline,1609\ngamesome,1,cymbeline,1609\nhie,1,cymbeline,1609\nhid,1,cymbeline,1609\ninnocent,1,cymbeline,1609\nwisdom,1,cymbeline,1609\nExposing,1,cymbeline,1609\nExceeding,1,cymbeline,1609\nSomething,1,cymbeline,1609\nRevengingly,1,cymbeline,1609\nHa,1,cymbeline,1609\no'ervalues,1,cymbeline,1609\ndew's,1,cymbeline,1609\ncalves',1,cymbeline,1609\nlocking,1,cymbeline,1609\nsovereignty,1,cymbeline,1609\nfeigned,1,cymbeline,1609\ndinner,1,cymbeline,1609\nAllayments,1,cymbeline,1609\ndamm'd,1,cymbeline,1609\nwhole,1,cymbeline,1609\ntallow,1,cymbeline,1609\n'Stand,1,cymbeline,1609\nsurely,1,cymbeline,1609\nambush,1,cymbeline,1609\nprison'd,1,cymbeline,1609\nquick,1,cymbeline,1609\nease,1,cymbeline,1609\nPerfumes,1,cymbeline,1609\n'mulier,1,cymbeline,1609\npath,1,cymbeline,1609\nwither'd,1,cymbeline,1609\nfurnaces,1,cymbeline,1609\nunchaste,1,cymbeline,1609\npate,1,cymbeline,1609\nrevenue,1,cymbeline,1609\nstew,1,cymbeline,1609\nenrich,1,cymbeline,1609\ncommendation,1,cymbeline,1609\nabhorred,1,cymbeline,1609\nbuys,1,cymbeline,1609\npass,1,cymbeline,1609\ntroops,1,cymbeline,1609\nhides,1,cymbeline,1609\noff's,1,cymbeline,1609\nSwallows,1,cymbeline,1609\nHas,1,cymbeline,1609\nproud,1,cymbeline,1609\nmortally,1,cymbeline,1609\npox,1,cymbeline,1609\nIs't,1,cymbeline,1609\nmadded,1,cymbeline,1609\ngrandfather,1,cymbeline,1609\nAnswering,1,cymbeline,1609\nglorious,1,cymbeline,1609\nprompts,1,cymbeline,1609\nstrew,1,cymbeline,1609\nscriptures,1,cymbeline,1609\nGold,1,cymbeline,1609\nquantity,1,cymbeline,1609\nnobly,1,cymbeline,1609\nGone,1,cymbeline,1609\no'erthrow,1,cymbeline,1609\nsire,1,cymbeline,1609\nallure,1,cymbeline,1609\nquiet,1,cymbeline,1609\ncorrupted,1,cymbeline,1609\nCytherea,1,cymbeline,1609\nAdieu,1,cymbeline,1609\ntheft,1,cymbeline,1609\npriests,1,cymbeline,1609\nroof's,1,cymbeline,1609\nascension,1,cymbeline,1609\nwhore,1,cymbeline,1609\nhaunt,1,cymbeline,1609\nContinues,1,cymbeline,1609\n'overcame,1,cymbeline,1609\nmadmen,1,cymbeline,1609\nbrawns,1,cymbeline,1609\nMurder,1,cymbeline,1609\ncatalogue,1,cymbeline,1609\nrepeated,1,cymbeline,1609\nsits,1,cymbeline,1609\nmorning's,1,cymbeline,1609\nweek,1,cymbeline,1609\nsulphur,1,cymbeline,1609\nnigh,1,cymbeline,1609\nabsent,1,cymbeline,1609\nProuder,1,cymbeline,1609\nHeard,1,cymbeline,1609\nbush,1,cymbeline,1609\nbelied,1,cymbeline,1609\nJove's,1,cymbeline,1609\nfields,1,cymbeline,1609\npandar,1,cymbeline,1609\nbelief,1,cymbeline,1609\nimagine,1,cymbeline,1609\nPresent,1,cymbeline,1609\nContinued,1,cymbeline,1609\nsuffer'd,1,cymbeline,1609\n'Twould,1,cymbeline,1609\nthunderbolt,1,cymbeline,1609\nwhereat,1,cymbeline,1609\nPreservers,1,cymbeline,1609\nprotract,1,cymbeline,1609\ngoodly,1,cymbeline,1609\nThou'lt,1,cymbeline,1609\ncrare,1,cymbeline,1609\nposture,1,cymbeline,1609\ncar,1,cymbeline,1609\ntabled,1,cymbeline,1609\ncap,1,cymbeline,1609\ntendance,1,cymbeline,1609\nprisoners,1,cymbeline,1609\nshielded,1,cymbeline,1609\ntell'st,1,cymbeline,1609\nattention,1,cymbeline,1609\nhomely,1,cymbeline,1609\nRejoiced,1,cymbeline,1609\nsounds,1,cymbeline,1609\nBitter,1,cymbeline,1609\nDishonestly,1,cymbeline,1609\ntricks,1,cymbeline,1609\n'tween,1,cymbeline,1609\nOutvenoms,1,cymbeline,1609\ndevilish,1,cymbeline,1609\ntables,1,cymbeline,1609\nimmediate,1,cymbeline,1609\nfurnished,1,cymbeline,1609\ntablet,1,cymbeline,1609\nstealer,1,cymbeline,1609\nFoundations,1,cymbeline,1609\nbent,1,cymbeline,1609\ncanopied,1,cymbeline,1609\ncraft,1,cymbeline,1609\nkindnesses,1,cymbeline,1609\nimperial,1,cymbeline,1609\nStrange,1,cymbeline,1609\ninfectious,1,cymbeline,1609\nSevern,1,cymbeline,1609\nbugs,1,cymbeline,1609\nsustain,1,cymbeline,1609\nenlargement,1,cymbeline,1609\nperilous,1,cymbeline,1609\nPut,1,cymbeline,1609\nwaving,1,cymbeline,1609\nDied,1,cymbeline,1609\nmanacle,1,cymbeline,1609\ncourtesies,1,cymbeline,1609\ncaptains,1,cymbeline,1609\nDisdaining,1,cymbeline,1609\ntickled,1,cymbeline,1609\nsuddenly,1,cymbeline,1609\nBoldness,1,cymbeline,1609\nprobation,1,cymbeline,1609\nDidst,1,cymbeline,1609\npersuasion,1,cymbeline,1609\nTarquin,1,cymbeline,1609\nkeep'st,1,cymbeline,1609\ndelay'd,1,cymbeline,1609\nconversant,1,cymbeline,1609\nFamous,1,cymbeline,1609\njust,1,cymbeline,1609\nEgregious,1,cymbeline,1609\nstrewings,1,cymbeline,1609\njealosy,1,cymbeline,1609\ntedious,1,cymbeline,1609\nfriendly,1,cymbeline,1609\nconquest,1,cymbeline,1609\ntestify,1,cymbeline,1609\nderogation,1,cymbeline,1609\nditch'd,1,cymbeline,1609\ntwinn'd,1,cymbeline,1609\ncurse,1,cymbeline,1609\nShowing,1,cymbeline,1609\ncounterchange,1,cymbeline,1609\nbeget,1,cymbeline,1609\nShakes,1,cymbeline,1609\nBringing,1,cymbeline,1609\nherein,1,cymbeline,1609\namongst,1,cymbeline,1609\n'Do't,1,cymbeline,1609\nvassal,1,cymbeline,1609\nAbove,1,cymbeline,1609\ntravel,1,cymbeline,1609\ngather'd,1,cymbeline,1609\nProclaims,1,cymbeline,1609\nfrowns,1,cymbeline,1609\nused,1,cymbeline,1609\ntailors,1,cymbeline,1609\ndisguise,1,cymbeline,1609\ndependency,1,cymbeline,1609\nbees,1,cymbeline,1609\nThou'st,1,cymbeline,1609\nO'er,1,cymbeline,1609\nMeet,1,cymbeline,1609\nAbout,1,cymbeline,1609\nadmired,1,cymbeline,1609\ncasement,1,cymbeline,1609\ngout,1,cymbeline,1609\nsins,1,cymbeline,1609\nyear's,1,cymbeline,1609\nambassadors,1,cymbeline,1609\nToad,1,cymbeline,1609\nsink,1,cymbeline,1609\nsavoury,1,cymbeline,1609\njump,1,cymbeline,1609\ndispraising,1,cymbeline,1609\nnonpareil,1,cymbeline,1609\nbeds,1,cymbeline,1609\nVanquish,1,cymbeline,1609\nWhither,1,cymbeline,1609\nstretch,1,cymbeline,1609\nquire,1,cymbeline,1609\nfulness,1,cymbeline,1609\naudacity,1,cymbeline,1609\nashamed,1,cymbeline,1609\nnorth,1,cymbeline,1609\ngrandsire,1,cymbeline,1609\nturns,1,cymbeline,1609\norderly,1,cymbeline,1609\ngasp,1,cymbeline,1609\naverting,1,cymbeline,1609\nimmortal,1,cymbeline,1609\nlately,1,cymbeline,1609\nhurts,1,cymbeline,1609\ndolours,1,cymbeline,1609\ndestitute,1,cymbeline,1609\nsearch'd,1,cymbeline,1609\nBehoves,1,cymbeline,1609\no'ergrown,1,cymbeline,1609\nconvey'd,1,cymbeline,1609\ntirest,1,cymbeline,1609\nAttending,1,cymbeline,1609\nuntender,1,cymbeline,1609\nstore,1,cymbeline,1609\nFitting,1,cymbeline,1609\narrogant,1,cymbeline,1609\nnoted,1,cymbeline,1609\nentertain,1,cymbeline,1609\neagles,1,cymbeline,1609\nstorm,1,cymbeline,1609\ndeliverance,1,cymbeline,1609\nimpatience,1,cymbeline,1609\nGod's,1,cymbeline,1609\nOrdain'd,1,cymbeline,1609\nsear'd,1,cymbeline,1609\ndeem,1,cymbeline,1609\nsail,1,cymbeline,1609\nvirgin,1,cymbeline,1609\ngovernment,1,cymbeline,1609\nenchants,1,cymbeline,1609\nPrefer,1,cymbeline,1609\nstay'd,1,cymbeline,1609\nWaking,1,cymbeline,1609\naffection,1,cymbeline,1609\nforgive,1,cymbeline,1609\nvalleys,1,cymbeline,1609\npromised,1,cymbeline,1609\nplate,1,cymbeline,1609\nbetray,1,cymbeline,1609\nha,1,cymbeline,1609\nblowing,1,cymbeline,1609\nclear'd,1,cymbeline,1609\nvoyage,1,cymbeline,1609\nGoodly,1,cymbeline,1609\npromises,1,cymbeline,1609\ntorments,1,cymbeline,1609\nPurpose,1,cymbeline,1609\nkeeping,1,cymbeline,1609\nsupplyment,1,cymbeline,1609\nnostrils,1,cymbeline,1609\ngallows,1,cymbeline,1609\ncontinues,1,cymbeline,1609\nPublish,1,cymbeline,1609\ndu,1,cymbeline,1609\ntyrant,1,cymbeline,1609\nbarely,1,cymbeline,1609\naid,1,cymbeline,1609\nomnes,1,cymbeline,1609\nstrut,1,cymbeline,1609\nBest,1,cymbeline,1609\nbattery,1,cymbeline,1609\ntook'st,1,cymbeline,1609\njewels,1,cymbeline,1609\nPart,1,cymbeline,1609\ndeck,1,cymbeline,1609\nbatters,1,cymbeline,1609\npainting,1,cymbeline,1609\nprevented,1,cymbeline,1609\nfetter'd,1,cymbeline,1609\nooze,1,cymbeline,1609\nviolence,1,cymbeline,1609\nstool,1,cymbeline,1609\nstoop,1,cymbeline,1609\nLongs,1,cymbeline,1609\nyes,1,cymbeline,1609\nunfledged,1,cymbeline,1609\ntongued,1,cymbeline,1609\nuntwine,1,cymbeline,1609\nbeak,1,cymbeline,1609\npervert,1,cymbeline,1609\ntongues,1,cymbeline,1609\nlegs,1,cymbeline,1609\nbid'st,1,cymbeline,1609\nwhereon,1,cymbeline,1609\nunworthy,1,cymbeline,1609\npeck'd,1,cymbeline,1609\nexcelled,1,cymbeline,1609\nRides,1,cymbeline,1609\nRevenge,1,cymbeline,1609\nmoveables,1,cymbeline,1609\nyokes,1,cymbeline,1609\nvictory,1,cymbeline,1609\nSafe,1,cymbeline,1609\npriest,1,cymbeline,1609\nseeing,1,cymbeline,1609\npluck'd,1,cymbeline,1609\nPays,1,cymbeline,1609\nlent,1,cymbeline,1609\nBesides,1,cymbeline,1609\nplayed,1,cymbeline,1609\naccuser,1,cymbeline,1609\nenforce,1,cymbeline,1609\nvictors,1,cymbeline,1609\ngall,1,cymbeline,1609\noutwardly,1,cymbeline,1609\nforged,1,cymbeline,1609\ndefence,1,cymbeline,1609\nwren's,1,cymbeline,1609\nrestraint,1,cymbeline,1609\ntapesty,1,cymbeline,1609\nnicely,1,cymbeline,1609\nby't,1,cymbeline,1609\nDivide,1,cymbeline,1609\nsample,1,cymbeline,1609\nspongy,1,cymbeline,1609\nyields,1,cymbeline,1609\nLaud,1,cymbeline,1609\ncomforts,1,cymbeline,1609\npromising,1,cymbeline,1609\nreckon,1,cymbeline,1609\nah,1,cymbeline,1609\nenclosed,1,cymbeline,1609\nsupreme,1,cymbeline,1609\nwench,1,cymbeline,1609\nNeptune's,1,cymbeline,1609\nDisplace,1,cymbeline,1609\nrangers,1,cymbeline,1609\ncured,1,cymbeline,1609\ndisorder's,1,cymbeline,1609\ntinct,1,cymbeline,1609\nwonderful,1,cymbeline,1609\ncures,1,cymbeline,1609\nincivil,1,cymbeline,1609\nknow't,1,cymbeline,1609\nIncrease,1,cymbeline,1609\nboard,1,cymbeline,1609\nsoaring,1,cymbeline,1609\npang'd,1,cymbeline,1609\nmows,1,cymbeline,1609\nhostage,1,cymbeline,1609\npassable,1,cymbeline,1609\nsufficeth,1,cymbeline,1609\norphans',1,cymbeline,1609\ncommendations,1,cymbeline,1609\nwisely,1,cymbeline,1609\nregion,1,cymbeline,1609\narrearages,1,cymbeline,1609\nmoss,1,cymbeline,1609\nbetween's,1,cymbeline,1609\ncrave,1,cymbeline,1609\nroused,1,cymbeline,1609\nGoes,1,cymbeline,1609\ngibbets,1,cymbeline,1609\nCLOTEN'S,1,cymbeline,1609\nPleaseth,1,cymbeline,1609\nremainders,1,cymbeline,1609\nrouts,1,cymbeline,1609\nprevailed,1,cymbeline,1609\ninsultment,1,cymbeline,1609\nbackdoor,1,cymbeline,1609\nplayfellow,1,cymbeline,1609\nLive,1,cymbeline,1609\naccount,1,cymbeline,1609\nmed'cinable,1,cymbeline,1609\nproduce,1,cymbeline,1609\nlout,1,cymbeline,1609\ncooked,1,cymbeline,1609\nReady,1,cymbeline,1609\ncaused,1,cymbeline,1609\nBegin,1,cymbeline,1609\nlover,1,cymbeline,1609\ngyves,1,cymbeline,1609\nscornful,1,cymbeline,1609\naer,1,cymbeline,1609\nexpulsion,1,cymbeline,1609\noffences,1,cymbeline,1609\nSuccess,1,cymbeline,1609\nbegg'd,1,cymbeline,1609\nsharply,1,cymbeline,1609\npursued,1,cymbeline,1609\nloud,1,cymbeline,1609\nmiserable,1,cymbeline,1609\nenjoys,1,cymbeline,1609\nendure,1,cymbeline,1609\noffer'd,1,cymbeline,1609\n'gins,1,cymbeline,1609\nado,1,cymbeline,1609\nparents,1,cymbeline,1609\nmoon,1,cymbeline,1609\nFairness,1,cymbeline,1609\nMinerva,1,cymbeline,1609\nspeak'st,1,cymbeline,1609\npartners,1,cymbeline,1609\ndragons,1,cymbeline,1609\nsemblance,1,cymbeline,1609\npotent,1,cymbeline,1609\nfranklin's,1,cymbeline,1609\nimportantly,1,cymbeline,1609\nBreathe,1,cymbeline,1609\nall's,1,cymbeline,1609\nace,1,cymbeline,1609\nexplication,1,cymbeline,1609\napparel,1,cymbeline,1609\n'bout,1,cymbeline,1609\nblue,1,cymbeline,1609\nviolet,1,cymbeline,1609\nheap'st,1,cymbeline,1609\nlets,1,cymbeline,1609\nsmart,1,cymbeline,1609\nnimble,1,cymbeline,1609\nIt's,1,cymbeline,1609\nPisanio's,1,cymbeline,1609\nmadding,1,cymbeline,1609\ntrims,1,cymbeline,1609\nTriumphs,1,cymbeline,1609\nattain,1,cymbeline,1609\nDiscourse,1,cymbeline,1609\njourney,1,cymbeline,1609\nwaggish,1,cymbeline,1609\nfainter,1,cymbeline,1609\nenchafed,1,cymbeline,1609\nappease,1,cymbeline,1609\npure,1,cymbeline,1609\nwithering,1,cymbeline,1609\nload,1,cymbeline,1609\nCame,1,cymbeline,1609\nboil'd,1,cymbeline,1609\ngraves,1,cymbeline,1609\nhark,1,cymbeline,1609\nhardly,1,cymbeline,1609\nReposing,1,cymbeline,1609\nSeeing,1,cymbeline,1609\neats,1,cymbeline,1609\nrunning,1,cymbeline,1609\nplot,1,cymbeline,1609\ncherubins,1,cymbeline,1609\nfierce,1,cymbeline,1609\nbodily,1,cymbeline,1609\ndiscourse,1,cymbeline,1609\nJack,1,cymbeline,1609\npark,1,cymbeline,1609\ninduce,1,cymbeline,1609\nremember't,1,cymbeline,1609\nspeaks,1,cymbeline,1609\nincline,1,cymbeline,1609\nswathing,1,cymbeline,1609\ndistil,1,cymbeline,1609\nisle,1,cymbeline,1609\nfasten'd,1,cymbeline,1609\nreinforce,1,cymbeline,1609\nProfane,1,cymbeline,1609\nplod,1,cymbeline,1609\nrobber,1,cymbeline,1609\nDecember,1,cymbeline,1609\naye,1,cymbeline,1609\nhall,1,cymbeline,1609\nsinks,1,cymbeline,1609\ncancel,1,cymbeline,1609\npoorly,1,cymbeline,1609\nknit,1,cymbeline,1609\ninfirmities,1,cymbeline,1609\nquarter'd,1,cymbeline,1609\nunworthiness,1,cymbeline,1609\nsubmit,1,cymbeline,1609\nfowl,1,cymbeline,1609\nbasest,1,cymbeline,1609\ncoldest,1,cymbeline,1609\nopenness,1,cymbeline,1609\nfinish,1,cymbeline,1609\nshortness,1,cymbeline,1609\nnoisome,1,cymbeline,1609\nStark,1,cymbeline,1609\nperform'd,1,cymbeline,1609\nthrift,1,cymbeline,1609\nRead,1,cymbeline,1609\nhusband's,1,cymbeline,1609\nspur,1,cymbeline,1609\nsee't,1,cymbeline,1609\nHappy,1,cymbeline,1609\nshunned,1,cymbeline,1609\nContinue,1,cymbeline,1609\nstrings,1,cymbeline,1609\nrushes,1,cymbeline,1609\nre,1,cymbeline,1609\nhang,1,cymbeline,1609\nFollow'd,1,cymbeline,1609\nPluck,1,cymbeline,1609\nshun,1,cymbeline,1609\nappears,1,cymbeline,1609\nliberty,1,cymbeline,1609\nnobleness,1,cymbeline,1609\njournal,1,cymbeline,1609\nshut,1,cymbeline,1609\nFull,1,cymbeline,1609\nswiftest,1,cymbeline,1609\nfour,1,cymbeline,1609\nsurges,1,cymbeline,1609\nthreaten'd,1,cymbeline,1609\nprovider,1,cymbeline,1609\njoyful,1,cymbeline,1609\nremembrancer,1,cymbeline,1609\nrudest,1,cymbeline,1609\nprovided,1,cymbeline,1609\nparticulars,1,cymbeline,1609\nDuring,1,cymbeline,1609\nspotted,1,cymbeline,1609\nHum,1,cymbeline,1609\nacquaintance,1,cymbeline,1609\nuntender'd,1,cymbeline,1609\nSmile,1,cymbeline,1609\noccasions,1,cymbeline,1609\nHurt,1,cymbeline,1609\nform,1,cymbeline,1609\nknocks,1,cymbeline,1609\nabhor,1,cymbeline,1609\nlaming,1,cymbeline,1609\nskirmish,1,cymbeline,1609\nharder,1,cymbeline,1609\nconfederate,1,cymbeline,1609\nshaked,1,cymbeline,1609\npair,1,cymbeline,1609\nship,1,cymbeline,1609\ncourts,1,cymbeline,1609\nhangs,1,cymbeline,1609\nreturn'd,1,cymbeline,1609\nfiery,1,cymbeline,1609\nwagging,1,cymbeline,1609\nape,1,cymbeline,1609\nPuts,1,cymbeline,1609\ndiest,1,cymbeline,1609\nfore,1,cymbeline,1609\nwretchedness,1,cymbeline,1609\ndelve,1,cymbeline,1609\nAjax',1,cymbeline,1609\noutprized,1,cymbeline,1609\napt,1,cymbeline,1609\nbellyful,1,cymbeline,1609\nDispatch,1,cymbeline,1609\nCave,1,cymbeline,1609\nHelen,1,cymbeline,1609\norisons,1,cymbeline,1609\nhowsoe'er,1,cymbeline,1609\nshop,1,cymbeline,1609\nforlorn,1,cymbeline,1609\nfear'd,1,cymbeline,1609\nworldly,1,cymbeline,1609\nQuail,1,cymbeline,1609\nlaboursome,1,cymbeline,1609\nputs,1,cymbeline,1609\nfishes,1,cymbeline,1609\nyielded,1,cymbeline,1609\nfear's,1,cymbeline,1609\nSayest,1,cymbeline,1609\nfaithful,1,cymbeline,1609\nmoan,1,cymbeline,1609\nSICILIUS,1,cymbeline,1609\nFell,1,cymbeline,1609\nimportance,1,cymbeline,1609\nfood,1,cymbeline,1609\nQuake,1,cymbeline,1609\nsignior,1,cymbeline,1609\nstricter,1,cymbeline,1609\ndepender,1,cymbeline,1609\nconfection,1,cymbeline,1609\nathwart,1,cymbeline,1609\nGordian,1,cymbeline,1609\ntestimony,1,cymbeline,1609\nrenowned,1,cymbeline,1609\nbeetle,1,cymbeline,1609\nfond,1,cymbeline,1609\ngirl,1,cymbeline,1609\nscarcely,1,cymbeline,1609\nLolling,1,cymbeline,1609\n'Mongst,1,cymbeline,1609\nerror,1,cymbeline,1609\nMen's,1,cymbeline,1609\nvaulted,1,cymbeline,1609\nconclusions,1,cymbeline,1609\nlearns,1,cymbeline,1609\nstone's,1,cymbeline,1609\nCare,1,cymbeline,1609\nObedience,1,cymbeline,1609\ntrice,1,cymbeline,1609\nplacing,1,cymbeline,1609\nShe'll,1,cymbeline,1609\nopen'd,1,cymbeline,1609\nArm,1,cymbeline,1609\nsmallness,1,cymbeline,1609\nStrikes,1,cymbeline,1609\nhavior,1,cymbeline,1609\nboughs,1,cymbeline,1609\ntrick,1,cymbeline,1609\nunprizable,1,cymbeline,1609\ndistinction,1,cymbeline,1609\ndebitor,1,cymbeline,1609\nundone,1,cymbeline,1609\nHarm,1,cymbeline,1609\ndeadly,1,cymbeline,1609\nfew,1,cymbeline,1609\ncolour'd,1,cymbeline,1609\nfed,1,cymbeline,1609\nAgain,1,cymbeline,1609\narras,1,cymbeline,1609\nContemn,1,cymbeline,1609\nministers,1,cymbeline,1609\ncheque,1,cymbeline,1609\noutsell,1,cymbeline,1609\njustify,1,cymbeline,1609\nRicher,1,cymbeline,1609\nniceness,1,cymbeline,1609\ninquiry,1,cymbeline,1609\nElysium,1,cymbeline,1609\nconversation,1,cymbeline,1609\ntrial,1,cymbeline,1609\nStoop,1,cymbeline,1609\nCreatures,1,cymbeline,1609\ngain'd,1,cymbeline,1609\ntasted,1,cymbeline,1609\nunpaved,1,cymbeline,1609\nfeign,1,cymbeline,1609\nguess,1,cymbeline,1609\nmasterless,1,cymbeline,1609\nmerrier,1,cymbeline,1609\nlead,1,cymbeline,1609\nprecedent,1,cymbeline,1609\nspoken,1,cymbeline,1609\nEurope,1,cymbeline,1609\nwitch,1,cymbeline,1609\nthrow't,1,cymbeline,1609\ndelighted,1,cymbeline,1609\nexecute,1,cymbeline,1609\nwatch,1,cymbeline,1609\nluck,1,cymbeline,1609\nlabel,1,cymbeline,1609\nsluggish,1,cymbeline,1609\nfan,1,cymbeline,1609\nborrow,1,cymbeline,1609\nroof,1,cymbeline,1609\nComes,1,cymbeline,1609\ndreading,1,cymbeline,1609\nelected,1,cymbeline,1609\ngiglot,1,cymbeline,1609\nhunters,1,cymbeline,1609\nfitt'st,1,cymbeline,1609\nspritely,1,cymbeline,1609\nlong'd,1,cymbeline,1609\ncondemn'd,1,cymbeline,1609\npretending,1,cymbeline,1609\neffected,1,cymbeline,1609\ndeceiving,1,cymbeline,1609\nPhoebus,1,cymbeline,1609\nkeeps,1,cymbeline,1609\nventures,1,cymbeline,1609\nbreeds,1,cymbeline,1609\nheavier,1,cymbeline,1609\nsprightly,1,cymbeline,1609\ndisedged,1,cymbeline,1609\n'what,1,cymbeline,1609\nswallowing,1,cymbeline,1609\ncostlier,1,cymbeline,1609\ncarried,1,cymbeline,1609\n'Thus,1,cymbeline,1609\nhind,1,cymbeline,1609\nendurest,1,cymbeline,1609\ntokens,1,cymbeline,1609\nSafely,1,cymbeline,1609\nRepairs,1,cymbeline,1609\nbravest,1,cymbeline,1609\nreported,1,cymbeline,1609\nhill,1,cymbeline,1609\npaled,1,cymbeline,1609\napprehension,1,cymbeline,1609\nidiots,1,cymbeline,1609\nWhispering,1,cymbeline,1609\nbravery,1,cymbeline,1609\ntakest,1,cymbeline,1609\nKnock,1,cymbeline,1609\nretired,1,cymbeline,1609\nraps,1,cymbeline,1609\nfreezing,1,cymbeline,1609\nbuilt,1,cymbeline,1609\nbores,1,cymbeline,1609\n'Gainst,1,cymbeline,1609\nBetter,1,cymbeline,1609\nfourth,1,cymbeline,1609\ngarrison'd,1,cymbeline,1609\nprocuring,1,cymbeline,1609\nthinks,1,cymbeline,1609\nomit,1,cymbeline,1609\nHalf,1,cymbeline,1609\napply,1,cymbeline,1609\nmarks,1,cymbeline,1609\nVenus,1,cymbeline,1609\ncontains,1,cymbeline,1609\nPieces,1,cymbeline,1609\nnumber'd,1,cymbeline,1609\nBack,1,cymbeline,1609\nfraught,1,cymbeline,1609\ncraftied,1,cymbeline,1609\nwaked,1,cymbeline,1609\nworkman,1,cymbeline,1609\ngavest,1,cymbeline,1609\nhire,1,cymbeline,1609\ncapon,1,cymbeline,1609\nopposition,1,cymbeline,1609\nHang,1,cymbeline,1609\ndress,1,cymbeline,1609\nrestore,1,cymbeline,1609\nconquer'd,1,cymbeline,1609\nmounted,1,cymbeline,1609\nsocieties,1,cymbeline,1609\ngreatness',1,cymbeline,1609\nSmiled,1,cymbeline,1609\nnoon,1,cymbeline,1609\nPresents,1,cymbeline,1609\ncircle,1,cymbeline,1609\nrate,1,cymbeline,1609\ndeserving,1,cymbeline,1609\nazured,1,cymbeline,1609\nbelow,1,cymbeline,1609\nforesay,1,cymbeline,1609\nconceited,1,cymbeline,1609\nConsign,1,cymbeline,1609\nspeediness,1,cymbeline,1609\nvantages,1,cymbeline,1609\ncontention,1,cymbeline,1609\nhint,1,cymbeline,1609\ndonation,1,cymbeline,1609\ndaily,1,cymbeline,1609\nrout,1,cymbeline,1609\nentertainment,1,cymbeline,1609\nrash,1,cymbeline,1609\nqueens,1,cymbeline,1609\nnimbler,1,cymbeline,1609\nbeard,1,cymbeline,1609\nclothe,1,cymbeline,1609\nAssumed,1,cymbeline,1609\nfurr'd,1,cymbeline,1609\nscar,1,cymbeline,1609\nwildness,1,cymbeline,1609\nblunt,1,cymbeline,1609\ncompanions,1,cymbeline,1609\ntraitors,1,cymbeline,1609\nmeanly,1,cymbeline,1609\nBeginning,1,cymbeline,1609\nfeature,1,cymbeline,1609\nstyled,1,cymbeline,1609\ncowslip,1,cymbeline,1609\npinching,1,cymbeline,1609\nneed'st,1,cymbeline,1609\npastime,1,cymbeline,1609\nsirrah,1,cymbeline,1609\nBase,1,cymbeline,1609\nchase,1,cymbeline,1609\n'saw',1,cymbeline,1609\nlikelihood,1,cymbeline,1609\ncourtezan,1,cymbeline,1609\nannoy,1,cymbeline,1609\nStriking,1,cymbeline,1609\ncitizen,1,cymbeline,1609\nfranchise,1,cymbeline,1609\nlearning,1,cymbeline,1609\nPeep,1,cymbeline,1609\ncharm,1,cymbeline,1609\nnarrow,1,cymbeline,1609\nmount,1,cymbeline,1609\nAll's,1,cymbeline,1609\naffections,1,cymbeline,1609\nequally,1,cymbeline,1609\nshores,1,cymbeline,1609\nFurther,1,cymbeline,1609\nRoyal,1,cymbeline,1609\nfairy,1,cymbeline,1609\nstaggers,1,cymbeline,1609\nexiled,1,cymbeline,1609\nloses,1,cymbeline,1609\ncounsellor,1,cymbeline,1609\nslowness,1,cymbeline,1609\nsprings,1,cymbeline,1609\nunhappy,1,cymbeline,1609\nordinance,1,cymbeline,1609\nMurderous,1,cymbeline,1609\npartner'd,1,cymbeline,1609\nplaces,1,cymbeline,1609\nshall's,1,cymbeline,1609\nProtects,1,cymbeline,1609\nrejoicing,1,cymbeline,1609\nseveral,1,cymbeline,1609\nanger'd,1,cymbeline,1609\ncircumstantial,1,cymbeline,1609\nsay'st,1,cymbeline,1609\nClotens,1,cymbeline,1609\ncloak,1,cymbeline,1609\nwonder'd,1,cymbeline,1609\nThyself,1,cymbeline,1609\nknighted,1,cymbeline,1609\nleaving,1,cymbeline,1609\nconsul,1,cymbeline,1609\nperformers,1,cymbeline,1609\nmistresses,1,cymbeline,1609\nwall'd,1,cymbeline,1609\nsociable,1,cymbeline,1609\ndirty,1,cymbeline,1609\nresisted,1,cymbeline,1609\nKnown,1,cymbeline,1609\nafflictions,1,cymbeline,1609\ndisprovest,1,cymbeline,1609\nloyal'st,1,cymbeline,1609\ndiscontent,1,cymbeline,1609\nseasons,1,cymbeline,1609\nfragments,1,cymbeline,1609\nspurs,1,cymbeline,1609\ndevice,1,cymbeline,1609\npretend,1,cymbeline,1609\nlodge,1,cymbeline,1609\ndoors,1,cymbeline,1609\n'He,1,cymbeline,1609\nother's,1,cymbeline,1609\nlikewise,1,cymbeline,1609\ndistaff,1,cymbeline,1609\nstare,1,cymbeline,1609\nleaven,1,cymbeline,1609\nkissed,1,cymbeline,1609\nRichard,1,cymbeline,1609\nblessings,1,cymbeline,1609\nchariots,1,cymbeline,1609\nsacrifice,1,cymbeline,1609\nmile,1,cymbeline,1609\ntribunes,1,cymbeline,1609\n'If,1,cymbeline,1609\nfares,1,cymbeline,1609\nwiser,1,cymbeline,1609\nLong,1,cymbeline,1609\noutstood,1,cymbeline,1609\ncharitable,1,cymbeline,1609\nusuries,1,cymbeline,1609\ndisdain'd,1,cymbeline,1609\nvarlet,1,cymbeline,1609\n'Came',1,cymbeline,1609\nstride,1,cymbeline,1609\ncovers,1,cymbeline,1609\nprize,1,cymbeline,1609\nsaving,1,cymbeline,1609\ncreditor,1,cymbeline,1609\nMakes,1,cymbeline,1609\nknave,1,cymbeline,1609\nhalting,1,cymbeline,1609\nsacrifices,1,cymbeline,1609\nloudest,1,cymbeline,1609\nSons,1,cymbeline,1609\nresty,1,cymbeline,1609\nblanket,1,cymbeline,1609\nSpider,1,cymbeline,1609\nrobbery,1,cymbeline,1609\nGrant,1,cymbeline,1609\ncasual,1,cymbeline,1609\nstarting,1,cymbeline,1609\nconfidence,1,cymbeline,1609\nkeeper,1,cymbeline,1609\nshuffle,1,cymbeline,1609\nstraightway,1,cymbeline,1609\nbloods,1,cymbeline,1609\nhandmaids,1,cymbeline,1609\nQueen,1,cymbeline,1609\nbeach,1,cymbeline,1609\negg,1,cymbeline,1609\nvillanous,1,cymbeline,1609\nparties,1,cymbeline,1609\ntenth,1,cymbeline,1609\nComelius,1,cymbeline,1609\ndismission,1,cymbeline,1609\nsunbeams,1,cymbeline,1609\nunsought,1,cymbeline,1609\nmark,1,cymbeline,1609\nson's,1,cymbeline,1609\nmonsieur,1,cymbeline,1609\nninth,1,cymbeline,1609\nNice,1,cymbeline,1609\nveriest,1,cymbeline,1609\nincite,1,cymbeline,1609\nmart,1,cymbeline,1609\nemployments,1,cymbeline,1609\npersuaded,1,cymbeline,1609\ncrimson,1,cymbeline,1609\nGlide,1,cymbeline,1609\nI'ld,1,cymbeline,1609\nafflicted,1,cymbeline,1609\n'Two,1,cymbeline,1609\nfurnish'd,1,cymbeline,1609\nquench,1,cymbeline,1609\noracle,1,cymbeline,1609\napartments,1,cymbeline,1609\nmire,1,cymbeline,1609\nSky,1,cymbeline,1609\nThee,1,cymbeline,1609\nbecause,1,cymbeline,1609\nleaf's,1,cymbeline,1609\ninfinitely,1,cymbeline,1609\ntender'st,1,cymbeline,1609\nshrinking,1,cymbeline,1609\njudgments,1,cymbeline,1609\nbrains,1,cymbeline,1609\n'Those,1,cymbeline,1609\nCrush,1,cymbeline,1609\nbeside,1,cymbeline,1609\nabridgement,1,cymbeline,1609\nThersites',1,cymbeline,1609\nshoulder,1,cymbeline,1609\nchide,1,cymbeline,1609\ndisrobe,1,cymbeline,1609\nmiss,1,cymbeline,1609\nCaptives,1,cymbeline,1609\narch,1,cymbeline,1609\nfish,1,cymbeline,1609\nseal'd,1,cymbeline,1609\ncaptive,1,cymbeline,1609\nadventured,1,cymbeline,1609\nRemaining,1,cymbeline,1609\ntrifle,1,cymbeline,1609\nlaughs,1,cymbeline,1609\ngraze,1,cymbeline,1609\nsmoke,1,cymbeline,1609\nParthian,1,cymbeline,1609\nmarvel,1,cymbeline,1609\nNile,1,cymbeline,1609\ndainty,1,cymbeline,1609\nthigh,1,cymbeline,1609\nmockery,1,cymbeline,1609\ntrouble,1,cymbeline,1609\nwarmer,1,cymbeline,1609\nstairs,1,cymbeline,1609\nmistress',1,cymbeline,1609\nchangest,1,cymbeline,1609\nStepp'd,1,cymbeline,1609\nwet,1,cymbeline,1609\nsand,1,cymbeline,1609\nCommanded,1,cymbeline,1609\ncookery,1,cymbeline,1609\nmanner'd,1,cymbeline,1609\npossession,1,cymbeline,1609\n'worthy,1,cymbeline,1609\nlengthening,1,cymbeline,1609\nblindness,1,cymbeline,1609\nMoulded,1,cymbeline,1609\nWert,1,cymbeline,1609\nbehalf,1,cymbeline,1609\nlengthen'd,1,cymbeline,1609\ndignified,1,cymbeline,1609\naffairs,1,cymbeline,1609\ncravens,1,cymbeline,1609\ncoining,1,cymbeline,1609\ntroublesome,1,cymbeline,1609\ndesolation,1,cymbeline,1609\nproved,1,cymbeline,1609\nrenown,1,cymbeline,1609\nstriplings,1,cymbeline,1609\naccomplish'd,1,cymbeline,1609\nwrongs,1,cymbeline,1609\nThey'll,1,cymbeline,1609\nsale,1,cymbeline,1609\nestimations,1,cymbeline,1609\nsow'd,1,cymbeline,1609\nmerits,1,cymbeline,1609\nexample,1,cymbeline,1609\nstale,1,cymbeline,1609\npound,1,cymbeline,1609\nsalt,1,cymbeline,1609\n'My,1,cymbeline,1609\nabate,1,cymbeline,1609\nretire,1,cymbeline,1609\npurchase,1,cymbeline,1609\nsafely,1,cymbeline,1609\nsmoky,1,cymbeline,1609\nknock'd,1,cymbeline,1609\nwonderfully,1,cymbeline,1609\ndiscipline,1,cymbeline,1609\nlessens,1,cymbeline,1609\nliberties,1,cymbeline,1609\nfive,1,cymbeline,1609\nenters,1,cymbeline,1609\nbackwards,1,cymbeline,1609\nunspoken,1,cymbeline,1609\ngoats,1,cymbeline,1609\ncurb'd,1,cymbeline,1609\nprovoke,1,cymbeline,1609\nhateful,1,cymbeline,1609\nthoroughly,1,cymbeline,1609\nchaffless,1,cymbeline,1609\n'Twill,1,cymbeline,1609\nbands,1,cymbeline,1609\nforfeiters,1,cymbeline,1609\nherbs,1,cymbeline,1609\nTaking,1,cymbeline,1609\ndefunct,1,cymbeline,1609\nrelieved,1,cymbeline,1609\ncure,1,cymbeline,1609\nChamp,1,cymbeline,1609\npretence,1,cymbeline,1609\nyoungest,1,cymbeline,1609\nimport,1,cymbeline,1609\nmeasured,1,cymbeline,1609\nPlenty,1,cymbeline,1609\nupright,1,cymbeline,1609\nClotens',1,cymbeline,1609\nDream,1,cymbeline,1609\ngan,1,cymbeline,1609\ngap,1,cymbeline,1609\nhumanity,1,cymbeline,1609\nmoment,1,cymbeline,1609\nStoop'd,1,cymbeline,1609\ncloset,1,cymbeline,1609\nDead,1,cymbeline,1609\nprotect,1,cymbeline,1609\nposted,1,cymbeline,1609\ncity's,1,cymbeline,1609\ndawning,1,cymbeline,1609\nhanded,1,cymbeline,1609\noak,1,cymbeline,1609\nDear,1,cymbeline,1609\npudency,1,cymbeline,1609\nransom's,1,cymbeline,1609\nobsequies,1,cymbeline,1609\nript,1,cymbeline,1609\nback'd,1,cymbeline,1609\nLucina,1,cymbeline,1609\nransom'd,1,cymbeline,1609\nSubdues,1,cymbeline,1609\nchoked,1,cymbeline,1609\nvoucher,1,cymbeline,1609\nnegligence,1,cymbeline,1609\ndeath's,1,cymbeline,1609\nJoy'd,1,cymbeline,1609\ndistress'd,1,cymbeline,1609\nstepmothers,1,cymbeline,1609\nintegrity,1,cymbeline,1609\nmasks,1,cymbeline,1609\nnursery,1,cymbeline,1609\naptness,1,cymbeline,1609\nsubtle,1,cymbeline,1609\nBows,1,cymbeline,1609\nrevolve,1,cymbeline,1609\nspeedily,1,cymbeline,1609\ncomparison,1,cymbeline,1609\nWillingly,1,cymbeline,1609\ncowslips,1,cymbeline,1609\noperate,1,cymbeline,1609\nissues,1,cymbeline,1609\nPhilarmonus,1,cymbeline,1609\nExcited,1,cymbeline,1609\nsquire's,1,cymbeline,1609\ninterr'd,1,cymbeline,1609\ncutter,1,cymbeline,1609\nMotion,1,cymbeline,1609\nearnest,1,cymbeline,1609\nwax,1,cymbeline,1609\nThrow,1,cymbeline,1609\n'Thy,1,cymbeline,1609\nEncounter,1,cymbeline,1609\nraven's,1,cymbeline,1609\nbarbarous,1,cymbeline,1609\nclock's,1,cymbeline,1609\nhopeless,1,cymbeline,1609\nperforce,1,cymbeline,1609\nAgreed,1,cymbeline,1609\nSlaver,1,cymbeline,1609\nprint,1,cymbeline,1609\nambition,1,cymbeline,1609\nrevolts,1,cymbeline,1609\nbecomest,1,cymbeline,1609\nAmbitions,1,cymbeline,1609\ngirdle,1,cymbeline,1609\nsufferance,1,cymbeline,1609\nfervor,1,cymbeline,1609\narts,1,cymbeline,1609\nreeling,1,cymbeline,1609\nwood,1,cymbeline,1609\nknowingly,1,cymbeline,1609\nbrother's,1,cymbeline,1609\npride,1,cymbeline,1609\nkinsmen,1,cymbeline,1609\nwanton,1,cymbeline,1609\njourney's,1,cymbeline,1609\nrags,1,cymbeline,1609\nSpit,1,cymbeline,1609\nbedfellow,1,cymbeline,1609\nkitchen,1,cymbeline,1609\ndeclare,1,cymbeline,1609\nConspired,1,cymbeline,1609\nreveller,1,cymbeline,1609\nprice,1,cymbeline,1609\nwont,1,cymbeline,1609\nprick,1,cymbeline,1609\nspectacles,1,cymbeline,1609\nEndure,1,cymbeline,1609\nowl,1,cymbeline,1609\ncoming,1,cymbeline,1609\nDetest,1,cymbeline,1609\nconfiscate,1,cymbeline,1609\nforfend,1,cymbeline,1609\nwomen's,1,cymbeline,1609\nRomans',1,cymbeline,1609\nwheel,1,cymbeline,1609\npounds,1,cymbeline,1609\nThree,1,cymbeline,1609\ncursed,1,cymbeline,1609\nlapse,1,cymbeline,1609\nstoop'd,1,cymbeline,1609\naffirm,1,cymbeline,1609\n'shrew,1,cymbeline,1609\nconfiners,1,cymbeline,1609\nswan's,1,cymbeline,1609\nstripp'd,1,cymbeline,1609\ncurses,1,cymbeline,1609\nfade,1,cymbeline,1609\nGives,1,cymbeline,1609\nrobb'd,1,cymbeline,1609\ndiscover'd,1,cymbeline,1609\nfactor,1,cymbeline,1609\nanchors,1,cymbeline,1609\nadorer,1,cymbeline,1609\nfact,1,cymbeline,1609\nrustling,1,cymbeline,1609\ngodhead,1,cymbeline,1609\nseize,1,cymbeline,1609\nExpress,1,cymbeline,1609\nransom,1,cymbeline,1609\npenitent,1,cymbeline,1609\noppositions,1,cymbeline,1609\nHeaven,1,cymbeline,1609\nPrunes,1,cymbeline,1609\nCupid's,1,cymbeline,1609\nestates,1,cymbeline,1609\nfallen,1,cymbeline,1609\nbetid,1,cymbeline,1609\nconference,1,cymbeline,1609\nunparagoned,1,cymbeline,1609\nearthly,1,cymbeline,1609\ncoiner,1,cymbeline,1609\ncertainty,1,cymbeline,1609\nBig,1,cymbeline,1609\nanger,1,cymbeline,1609\nvicious,1,cymbeline,1609\nforfeit,1,cymbeline,1609\nthoroughfare,1,cymbeline,1609\nkilling,1,cymbeline,1609\nlabour'd,1,cymbeline,1609\nmovers,1,cymbeline,1609\nblazon'st,1,cymbeline,1609\nwomb,1,cymbeline,1609\nPrisoners,1,cymbeline,1609\nknight,1,cymbeline,1609\nbitterness,1,cymbeline,1609\ndumb,1,cymbeline,1609\nlopp'd,1,cymbeline,1609\nlust,1,cymbeline,1609\nwife's,1,cymbeline,1609\nrail,1,cymbeline,1609\nsupply,1,cymbeline,1609\ndefinite,1,cymbeline,1609\nrudeness,1,cymbeline,1609\nrain,1,cymbeline,1609\nunite,1,cymbeline,1609\nfunctions,1,cymbeline,1609\nmovest,1,cymbeline,1609\ncups,1,cymbeline,1609\nduly,1,cymbeline,1609\nLamentable,1,cymbeline,1609\nminister'd,1,cymbeline,1609\n'live,1,cymbeline,1609\nresume,1,cymbeline,1609\nwaters,1,cymbeline,1609\nwolf,1,cymbeline,1609\nbelie,1,cymbeline,1609\ntimely,1,cymbeline,1609\nAmongst,1,cymbeline,1609\nNobler,1,cymbeline,1609\nharvest,1,cymbeline,1609\ntorturers,1,cymbeline,1609\nembark'd,1,cymbeline,1609\nunsatisfied,1,cymbeline,1609\nwooer,1,cymbeline,1609\ndoers',1,cymbeline,1609\nflash,1,cymbeline,1609\nfox,1,cymbeline,1609\nForbear,1,cymbeline,1609\nstaider,1,cymbeline,1609\nhundred,1,cymbeline,1609\nvexed,1,cymbeline,1609\nstirs,1,cymbeline,1609\nunfortunate,1,cymbeline,1609\nsatiate,1,cymbeline,1609\nfail,1,cymbeline,1609\nfill'd,1,cymbeline,1609\ntravelling,1,cymbeline,1609\nfile,1,cymbeline,1609\nunseduced,1,cymbeline,1609\nbelch,1,cymbeline,1609\ncompare,1,cymbeline,1609\nminister,1,cymbeline,1609\nheirs,1,cymbeline,1609\nsails,1,cymbeline,1609\ncreate,1,cymbeline,1609\nimperceiverant,1,cymbeline,1609\nwholesome,1,cymbeline,1609\nviolate,1,cymbeline,1609\ndispatch'd,1,cymbeline,1609\nfretted,1,cymbeline,1609\nvomit,1,cymbeline,1609\nperishing,1,cymbeline,1609\nassail,1,cymbeline,1609\ncried,1,cymbeline,1609\ndurst,1,cymbeline,1609\nMany,1,cymbeline,1609\nwept,1,cymbeline,1609\nminds,1,cymbeline,1609\ndiseased,1,cymbeline,1609\njudge,1,cymbeline,1609\ndoublet,1,cymbeline,1609\nmodesty,1,cymbeline,1609\nmiracle,1,cymbeline,1609\ndesert,1,cymbeline,1609\nhugeness,1,cymbeline,1609\ncrystal,1,cymbeline,1609\nunlearn'd,1,cymbeline,1609\ncares,1,cymbeline,1609\nPromises,1,cymbeline,1609\nvictor,1,cymbeline,1609\namends,1,cymbeline,1609\nconstancy,1,cymbeline,1609\ncloys,1,cymbeline,1609\nanswers,1,cymbeline,1609\nGreeks,1,cymbeline,1609\nworkers,1,cymbeline,1609\nrace,1,cymbeline,1609\nkinsman,1,cymbeline,1609\nmethinks,1,cymbeline,1609\nfame,1,cymbeline,1609\nsilly,1,cymbeline,1609\nEvil,1,cymbeline,1609\nsimular,1,cymbeline,1609\nscorns,1,cymbeline,1609\nirregulous,1,cymbeline,1609\ndissuaded,1,cymbeline,1609\nCapitol,1,cymbeline,1609\ndiscover,1,cymbeline,1609\nWhereupon,1,cymbeline,1609\nconfections,1,cymbeline,1609\ncolours,1,cymbeline,1609\nprolong'd,1,cymbeline,1609\ndo's,1,cymbeline,1609\nworthiness,1,cymbeline,1609\nFixing,1,cymbeline,1609\nride,1,cymbeline,1609\nMary,1,cymbeline,1609\npantler,1,cymbeline,1609\nMars,1,cymbeline,1609\nrestrain'd,1,cymbeline,1609\nesteem'd,1,cymbeline,1609\nflame,1,cymbeline,1609\nMark,1,cymbeline,1609\nofficer,1,cymbeline,1609\nscabbard,1,cymbeline,1609\noffices,1,cymbeline,1609\nShook,1,cymbeline,1609\nvow,1,cymbeline,1609\nswallow'd,1,cymbeline,1609\nfill,1,cymbeline,1609\nBow,1,cymbeline,1609\nlean'd,1,cymbeline,1609\npunish'd,1,cymbeline,1609\npreservation,1,cymbeline,1609\nLead,1,cymbeline,1609\nhose,1,cymbeline,1609\ndistemper,1,cymbeline,1609\nO'erpays,1,cymbeline,1609\nbard,1,cymbeline,1609\n'given,1,cymbeline,1609\nFare,1,cymbeline,1609\nhost,1,cymbeline,1609\ntavern,1,cymbeline,1609\nwide,1,cymbeline,1609\nastronomer,1,cymbeline,1609\nStrains,1,cymbeline,1609\ntail,1,cymbeline,1609\nworship,1,cymbeline,1609\ndaisied,1,cymbeline,1609\nwealth,1,cymbeline,1609\nuncle,1,cymbeline,1609\nan't,1,cymbeline,1609\nvex,1,cymbeline,1609\nReading,1,cymbeline,1609\nbutcher,1,cymbeline,1609\nperceive,1,cymbeline,1609\nBears,1,cymbeline,1609\nchiefly,1,cymbeline,1609\nbeginners,1,cymbeline,1609\npartly,1,cymbeline,1609\nPartition,1,cymbeline,1609\nwives,1,cymbeline,1609\nmadly,1,cymbeline,1609\nwonted,1,cymbeline,1609\nbate,1,cymbeline,1609\nwhither,1,cymbeline,1609\nOffend,1,cymbeline,1609\nGlad,1,cymbeline,1609\nTenantius,1,cymbeline,1609\nbehest,1,cymbeline,1609\nStealing,1,cymbeline,1609\nmeaning,1,cymbeline,1609\ndullard,1,cymbeline,1609\nincur,1,cymbeline,1609\nwaved,1,cymbeline,1609\ngratitude,1,cymbeline,1609\nAnswer'd,1,cymbeline,1609\nrustic,1,cymbeline,1609\nbane,1,cymbeline,1609\nappointed,1,cymbeline,1609\nslanderous,1,cymbeline,1609\nband,1,cymbeline,1609\nwinterly,1,cymbeline,1609\nfriendship,1,cymbeline,1609\n'Gan,1,cymbeline,1609\nhook,1,cymbeline,1609\nunlaid,1,cymbeline,1609\nVery,1,cymbeline,1609\nmotive,1,cymbeline,1609\nripely,1,cymbeline,1609\ncreeps,1,cymbeline,1609\nsubjection,1,cymbeline,1609\nitems,1,cymbeline,1609\nnames,1,cymbeline,1609\nsecrets,1,cymbeline,1609\nFriendly,1,cymbeline,1609\ncooks,1,cymbeline,1609\nField,1,cymbeline,1609\nEach,1,cymbeline,1609\nevidence,1,cymbeline,1609\nWelcome,1,cymbeline,1609\nmischance,1,cymbeline,1609\nlights,1,cymbeline,1609\ngallant,1,cymbeline,1609\nache,1,cymbeline,1609\ncreek,1,cymbeline,1609\nStatist,1,cymbeline,1609\nAwaking,1,cymbeline,1609\nreckon'd,1,cymbeline,1609\nwitchcraft,1,cymbeline,1609\ndeparture,1,cymbeline,1609\nsojourn,1,cymbeline,1609\naffliction,1,cymbeline,1609\nunpeople,1,cymbeline,1609\nfruitful,1,cymbeline,1609\naloft,1,cymbeline,1609\nAppear,1,cymbeline,1609\nAssured,1,cymbeline,1609\nshameless,1,cymbeline,1609\nclouted,1,cymbeline,1609\nsufficient,1,cymbeline,1609\nchaliced,1,cymbeline,1609\nhunters',1,cymbeline,1609\nperish,1,cymbeline,1609\nprovoked,1,cymbeline,1609\nFold,1,cymbeline,1609\ntorment,1,cymbeline,1609\nSlight,1,cymbeline,1609\nLinen,1,cymbeline,1609\nreft'st,1,cymbeline,1609\nasunder,1,cymbeline,1609\nsixty,1,cymbeline,1609\nalms,1,cymbeline,1609\ngreets,1,cymbeline,1609\nEvery,1,cymbeline,1609\noccident,1,cymbeline,1609\nrecorded,1,cymbeline,1609\nholds,1,cymbeline,1609\nempire,1,cymbeline,1609\ndungeon,1,cymbeline,1609\nchapel,1,cymbeline,1609\ncondemnation,1,cymbeline,1609\nholp,1,cymbeline,1609\nclean,1,cymbeline,1609\ngaolers,1,cymbeline,1609\nLay,1,cymbeline,1609\nRubies,1,cymbeline,1609\narticles,1,cymbeline,1609\ndozen,1,cymbeline,1609\naffirmation,1,cymbeline,1609\ngreet,1,cymbeline,1609\nworkmanship,1,cymbeline,1609\nstand'st,1,cymbeline,1609\nfamine,1,cymbeline,1609\npupil,1,cymbeline,1609\nconcluded,1,cymbeline,1609\nsweepers,1,cymbeline,1609\ndishes,1,cymbeline,1609\nsweats,1,cymbeline,1609\nLives,1,cymbeline,1609\ncovenants,1,cymbeline,1609\nfollows,1,cymbeline,1609\nfeasts,1,cymbeline,1609\ncounterfeit,1,cymbeline,1609\nAfric,1,cymbeline,1609\nFrame,1,cymbeline,1609\nabatement,1,cymbeline,1609\nargument,1,cymbeline,1609\nBreeds,1,cymbeline,1609\ncarcasses,1,cymbeline,1609\ndiedst,1,cymbeline,1609\ncondemn,1,cymbeline,1609\nflood,1,cymbeline,1609\nliver,1,cymbeline,1609\nSyenna's,1,cymbeline,1609\nWhere's,1,cymbeline,1609\nwriting,1,cymbeline,1609\nresolution,1,cymbeline,1609\npreconsul,1,cymbeline,1609\nRoman's,1,cymbeline,1609\nseal,1,cymbeline,1609\nacorn'd,1,cymbeline,1609\nbuilding,1,cymbeline,1609\ntask,1,cymbeline,1609\nnotwithstanding,1,cymbeline,1609\nFore,1,cymbeline,1609\nvexing,1,cymbeline,1609\nfitted,1,cymbeline,1609\nmaster'd,1,cymbeline,1609\ncomplaining,1,cymbeline,1609\nterrors,1,cymbeline,1609\nfeeler's,1,cymbeline,1609\nlungs,1,cymbeline,1609\ncountry's,1,cymbeline,1609\nyellow,1,cymbeline,1609\ngarbage,1,cymbeline,1609\nArabian,1,cymbeline,1609\nevident,1,cymbeline,1609\nsear,1,cymbeline,1609\ntempters,1,cymbeline,1609\nperfumes,1,cymbeline,1609\ncheerful,1,cymbeline,1609\nsupplies,1,cymbeline,1609\nCleopatra,1,cymbeline,1609\ncool,1,cymbeline,1609\nSluttery,1,cymbeline,1609\nCydnus,1,cymbeline,1609\nvexation,1,cymbeline,1609\ncontents,1,cymbeline,1609\nAttended,1,cymbeline,1609\nfavour's,1,cymbeline,1609\nendowments,1,cymbeline,1609\nMartial,1,cymbeline,1609\nalways,1,cymbeline,1609\nconvince,1,cymbeline,1609\nundergoes,1,cymbeline,1609\ninward,1,cymbeline,1609\nleaping,1,cymbeline,1609\nfairer,1,cymbeline,1609\neyed,1,cymbeline,1609\nsweat,1,cymbeline,1609\nugly,1,cymbeline,1609\nacts,1,cymbeline,1609\nstates,1,cymbeline,1609\nletting,1,cymbeline,1609\nfree't,1,cymbeline,1609\nbabe,1,cymbeline,1609\nserviceable,1,cymbeline,1609\nexpound,1,cymbeline,1609\nconverse,1,cymbeline,1609\nneedful,1,cymbeline,1609\nreckoning,1,cymbeline,1609\nthereto,1,cymbeline,1609\n'Our,1,cymbeline,1609\nweep'st,1,cymbeline,1609\nplentiful,1,cymbeline,1609\ncomb,1,cymbeline,1609\nsingular,1,cymbeline,1609\nmaterial,1,cymbeline,1609\nChickens,1,cymbeline,1609\npresence,1,cymbeline,1609\nGhost,1,cymbeline,1609\nfeeling,1,cymbeline,1609\nadore,1,cymbeline,1609\nrotting,1,cymbeline,1609\nCompanions,1,cymbeline,1609\nnerves,1,cymbeline,1609\nsupposed,1,cymbeline,1609\nNe'er,1,cymbeline,1609\ndivineness,1,cymbeline,1609\ntrolls,1,cymbeline,1609\nvalues,1,cymbeline,1609\nothers',1,cymbeline,1609\nItalians,1,cymbeline,1609\npick'd,1,cymbeline,1609\nconclude,1,cymbeline,1609\npeeping,1,cymbeline,1609\ncondition,1,cymbeline,1609\ndiffering,1,cymbeline,1609\nsteep'd,1,cymbeline,1609\nexorciser,1,cymbeline,1609\ncost,1,cymbeline,1609\nfellows,1,cymbeline,1609\nsound,1,cymbeline,1609\nTrue,1,cymbeline,1609\ndotards,1,cymbeline,1609\nshaped,1,cymbeline,1609\nbowls,1,cymbeline,1609\nexpectation,1,cymbeline,1609\nassailed,1,cymbeline,1609\nneedless,1,cymbeline,1609\nGroan,1,cymbeline,1609\nchanging,1,cymbeline,1609\nmistrusted,1,cymbeline,1609\nusage,1,cymbeline,1609\nturbans,1,cymbeline,1609\nwhate'er,1,cymbeline,1609\ntomboys,1,cymbeline,1609\nputtock,1,cymbeline,1609\nMaids,1,cymbeline,1609\nmodest,1,cymbeline,1609\nvouching,1,cymbeline,1609\n'twill,1,cymbeline,1609\ncased,1,cymbeline,1609\nCamest,1,cymbeline,1609\nbriefly,1,cymbeline,1609\nnights,1,cymbeline,1609\ntestiness,1,cymbeline,1609\nCivility,1,cymbeline,1609\nThrough,1,cymbeline,1609\nDeliver,1,cymbeline,1609\nwretches,1,cymbeline,1609\ndrugs,1,cymbeline,1609\ngreedy,1,cymbeline,1609\ncushion,1,cymbeline,1609\ncurtail,1,cymbeline,1609\nbait,1,cymbeline,1609\nReflect,1,cymbeline,1609\napproach'd,1,cymbeline,1609\nkindred,1,cymbeline,1609\njolly,1,cymbeline,1609\nglove,1,cymbeline,1609\ncountrymen,1,cymbeline,1609\nSend,1,cymbeline,1609\ninviting,1,cymbeline,1609\nremove,1,cymbeline,1609\nraved,1,cymbeline,1609\nbeheld,1,cymbeline,1609\nsecure,1,cymbeline,1609\nvouchsafes,1,cymbeline,1609\nenrich'd,1,cymbeline,1609\nSent,1,cymbeline,1609\nremarkable,1,cymbeline,1609\nexcellence,1,cymbeline,1609\nbelieved,1,cymbeline,1609\nbelieves,1,cymbeline,1609\nObedient,1,cymbeline,1609\nHonour'd,1,cymbeline,1609\ncinque,1,cymbeline,1609\nsee'st,1,cymbeline,1609\noppose,1,cymbeline,1609\nunspeaking,1,cymbeline,1609\nallowed,1,cymbeline,1609\nAppear'd,1,cymbeline,1609\nair's,1,cymbeline,1609\nNursing,1,cymbeline,1609\nremedies,1,cymbeline,1609\nSell,1,cymbeline,1609\narch'd,1,cymbeline,1609\nuplift,1,cymbeline,1609\ndeceive,1,cymbeline,1609\ngoer,1,cymbeline,1609\ncarriage,1,cymbeline,1609\neyest,1,cymbeline,1609\nchose,1,cymbeline,1609\nbarren,1,cymbeline,1609\nTa'en,1,cymbeline,1609\nfearing,1,cymbeline,1609\nhiding,1,cymbeline,1609\ncountryman,1,cymbeline,1609\nbrogues,1,cymbeline,1609\nquarrelous,1,cymbeline,1609\nRemain,1,cymbeline,1609\nconsummation,1,cymbeline,1609\nafterward,1,cymbeline,1609\npool,1,cymbeline,1609\nStronger,1,cymbeline,1609\nripp'd,1,cymbeline,1609\nmethought,1,cymbeline,1609\nsafer,1,cymbeline,1609\ndrooping,1,cymbeline,1609\ncrooked,1,cymbeline,1609\nleagued,1,cymbeline,1609\nseem'st,1,cymbeline,1609\nchances,1,cymbeline,1609\nHearing,1,cymbeline,1609\nmissed,1,cymbeline,1609\nthreat,1,cymbeline,1609\nuntie,1,cymbeline,1609\nAccuse,1,cymbeline,1609\nuntil,1,cymbeline,1609\ntrow,1,cymbeline,1609\ncredulous,1,cymbeline,1609\nperpetuity,1,cymbeline,1609\nchoke,1,cymbeline,1609\nservants,1,cymbeline,1609\nInform,1,cymbeline,1609\nforwardness,1,cymbeline,1609\nborrowed,1,cymbeline,1609\nslumber,1,cymbeline,1609\nsuitor,1,cymbeline,1609\nramps,1,cymbeline,1609\nliegers,1,cymbeline,1609\napprovers,1,cymbeline,1609\nhonesty,1,cymbeline,1609\nunguarded,1,cymbeline,1609\nPuppies,1,cymbeline,1609\ndebate,1,cymbeline,1609\n'Justice,1,cymbeline,1609\nadoption,1,cymbeline,1609\nacquittance,1,cymbeline,1609\nPreserved,1,cymbeline,1609\nloyally,1,cymbeline,1609\nalter'd,1,cymbeline,1609\nbarr'd,1,cymbeline,1609\nvolume,1,cymbeline,1609\ngains,1,cymbeline,1609\ntaint,1,cymbeline,1609\nguts,1,cymbeline,1609\nspite,1,cymbeline,1609\nSignior,1,cymbeline,1609\nruddock,1,cymbeline,1609\nAbsolute,1,cymbeline,1609\nafeard,1,cymbeline,1609\nmine's,1,cymbeline,1609\nskipp'd,1,cymbeline,1609\nSaturn,1,cymbeline,1609\npasture,1,cymbeline,1609\nunlike,1,cymbeline,1609\nfuture,1,cymbeline,1609\nFive,1,cymbeline,1609\ncolted,1,cymbeline,1609\nconsequence,1,cymbeline,1609\nazure,1,cymbeline,1609\nstrides,1,cymbeline,1609\nreward,1,cymbeline,1609\nbegins,1,cymbeline,1609\nburst,1,cymbeline,1609\nstarve,1,cymbeline,1609\nposting,1,cymbeline,1609\nlook'dst,1,cymbeline,1609\nsteeds,1,cymbeline,1609\nDorothy,1,cymbeline,1609\ndread,1,cymbeline,1609\nratify,1,cymbeline,1609\ncompounded,1,cymbeline,1609\nimpious,1,cymbeline,1609\noutwent,1,cymbeline,1609\nlofty,1,cymbeline,1609\nbreaker,1,cymbeline,1609\ntrip,1,cymbeline,1609\ntreacherous,1,cymbeline,1609\nparallel,1,cymbeline,1609\nherd's,1,cymbeline,1609\nlamenting,1,cymbeline,1609\nAlways,1,cymbeline,1609\nAccording,1,cymbeline,1609\nRise,1,cymbeline,1609\nDissembling,1,cymbeline,1609\nfatherly,1,cymbeline,1609\nsovereign,1,cymbeline,1609\nnobody,1,cymbeline,1609\nemployment,1,cymbeline,1609\npartisans,1,cymbeline,1609\nstreet,1,cymbeline,1609\nevils,1,cymbeline,1609\ncomforted,1,cymbeline,1609\nClock,1,cymbeline,1609\nswerve,1,cymbeline,1609\nperturb'd,1,cymbeline,1609\nwhiter,1,cymbeline,1609\nhares,1,cymbeline,1609\nconfirmation,1,cymbeline,1609\npleasant,1,cymbeline,1609\nExcept,1,cymbeline,1609\nlimit,1,cymbeline,1609\nuncross'd,1,cymbeline,1609\nheartily,1,cymbeline,1609\npressing,1,cymbeline,1609\ncrafty,1,cymbeline,1609\nsauced,1,cymbeline,1609\n'Welcome,1,cymbeline,1609\nremaining,1,cymbeline,1609\nhanging's,1,cymbeline,1609\nwithdraw,1,cymbeline,1609\nask'st,1,cymbeline,1609\nMercurial,1,cymbeline,1609\nharmony,1,cymbeline,1609\nunbar,1,cymbeline,1609\nhenceforth,1,cymbeline,1609\ninspired,1,cymbeline,1609\nquestion'd,1,cymbeline,1609\non's,1,cymbeline,1609\nAmen,1,cymbeline,1609\nWhoreson,1,cymbeline,1609\npages,1,cymbeline,1609\ncaptives,1,cymbeline,1609\nIndeed,1,cymbeline,1609\nmarriage,1,cymbeline,1609\namorous,1,cymbeline,1609\npursuest,1,cymbeline,1609\nmannerly,1,cymbeline,1609\nCupids,1,cymbeline,1609\nwhiles,1,cymbeline,1609\ntelling,1,cymbeline,1609\nGerman,1,cymbeline,1609\nthereupon,1,cymbeline,1609\nlint,1,cymbeline,1609\nsometimes,1,cymbeline,1609\nMarry,1,cymbeline,1609\nrespects,1,cymbeline,1609\neunuch,1,cymbeline,1609\nresembles,1,cymbeline,1609\nfever,1,cymbeline,1609\nrenew'd,1,cymbeline,1609\npavement,1,cymbeline,1609\nsynod,1,cymbeline,1609\njollity,1,cymbeline,1609\ntalents,1,cymbeline,1609\nflat,1,cymbeline,1609\nfasting,1,cymbeline,1609\ninherit,1,cymbeline,1609\nunbent,1,cymbeline,1609\npious,1,cymbeline,1609\ntenderness,1,cymbeline,1609\nmutest,1,cymbeline,1609\ntub,1,cymbeline,1609\nGreet,1,cymbeline,1609\nlawyer,1,cymbeline,1609\ndanger's,1,cymbeline,1609\ntickle,1,cymbeline,1609\njack,1,cymbeline,1609\nfitness,1,cymbeline,1609\nVII,1,cymbeline,1609\nHappiness,1,cymbeline,1609\nthrowing,1,cymbeline,1609\nherblets,1,cymbeline,1609\nLooking,1,cymbeline,1609\nmineral,1,cymbeline,1609\nbetimes,1,cymbeline,1609\nsuspect,1,cymbeline,1609\nhush,1,cymbeline,1609\nsailors,1,cymbeline,1609\npeer,1,cymbeline,1609\nrecompense,1,cymbeline,1609\npeep,1,cymbeline,1609\nhuman,1,cymbeline,1609\nHecuba,1,cymbeline,1609\nweariness,1,cymbeline,1609\ntributary,1,cymbeline,1609\nMighty,1,cymbeline,1609\neighteen,1,cymbeline,1609\nprouder,1,cymbeline,1609\ncorners,1,cymbeline,1609\nchatter,1,cymbeline,1609\ncounters,1,cymbeline,1609\nLust,1,cymbeline,1609\nvenge,1,cymbeline,1609\nneigh,1,cymbeline,1609\ninlay,1,cymbeline,1609\nmoe,1,cymbeline,1609\ncell,1,cymbeline,1609\nwindows,1,cymbeline,1609\nRender,1,cymbeline,1609\nentreats,1,cymbeline,1609\nforestall,1,cymbeline,1609\nleading,1,cymbeline,1609\nundertaking,1,cymbeline,1609\nshade,1,cymbeline,1609\nviperous,1,cymbeline,1609\nnewness,1,cymbeline,1609\nwildly,1,cymbeline,1609\npight,1,cymbeline,1609\ncollection,1,cymbeline,1609\nChaste,1,cymbeline,1609\nhired,1,cymbeline,1609\nwidow,1,cymbeline,1609\nfigure's,1,cymbeline,1609\ntherewithal,1,cymbeline,1609\nwounding,1,cymbeline,1609\nbrag,1,cymbeline,1609\ninventory,1,cymbeline,1609\nMount,1,cymbeline,1609\nbran,1,cymbeline,1609\nunparagon'd,1,cymbeline,1609\ninstructions,1,cymbeline,1609\nprovide,1,cymbeline,1609\nmangled,1,cymbeline,1609\nmatrons,1,cymbeline,1609\nconfine,1,cymbeline,1609\ndart,1,cymbeline,1609\nstakes,1,cymbeline,1609\nbrowse,1,cymbeline,1609\ndark,1,cymbeline,1609\ncourt'sy,1,cymbeline,1609\nFalls,1,cymbeline,1609\nsulphurous,1,cymbeline,1609\nmajestic,1,cymbeline,1609\nLest,1,cymbeline,1609\nweigh,1,cymbeline,1609\nponds,1,cymbeline,1609\nframe,1,cymbeline,1609\nSomething's,1,cymbeline,1609\nsolace,1,cymbeline,1609\nensues,1,cymbeline,1609\nweight,1,cymbeline,1609\nAeneas,1,cymbeline,1609\nscorpion,1,cymbeline,1609\ncatch,1,cymbeline,1609\noceans,1,cymbeline,1609\ncarcass,1,cymbeline,1609\nlord's,1,cymbeline,1609\nsupp'd,1,cymbeline,1609\ncrystalline,1,cymbeline,1609\nprimrose,1,cymbeline,1609\nblessing,1,cymbeline,1609\nsoothsayer,1,cymbeline,1609\nroasted,1,cymbeline,1609\nadulteries,1,cymbeline,1609\ndry,1,cymbeline,1609\ngreat'st,1,cymbeline,1609\nDepending,1,cymbeline,1609\nsnatch,1,cymbeline,1609\nBring,1,cymbeline,1609\nDRAMATIS,1,cymbeline,1609\nUntil,1,cymbeline,1609\nsuccess,1,cymbeline,1609\ntil,1,cymbeline,1609\ntie,1,cymbeline,1609\nshake,1,cymbeline,1609\nBind,1,cymbeline,1609\nwrying,1,cymbeline,1609\nflower,1,cymbeline,1609\nleans,1,cymbeline,1609\nDesires,1,cymbeline,1609\nduller,1,cymbeline,1609\ndamn,1,cymbeline,1609\nrareness,1,cymbeline,1609\nflown,1,cymbeline,1609\nbargain,1,cymbeline,1609\ngnat,1,cymbeline,1609\nSinon's,1,cymbeline,1609\nflows,1,cymbeline,1609\nrecord,1,cymbeline,1609\ncognizance,1,cymbeline,1609\ntired,1,cymbeline,1609\nreserve,1,cymbeline,1609\ncross,1,cymbeline,1609\nsmell,1,cymbeline,1609\ntamings,1,cymbeline,1609\noutlustres,1,cymbeline,1609\nPardon's,1,cymbeline,1609\nreviving,1,cymbeline,1609\nTalk,1,cymbeline,1609\nAccommodated,1,cymbeline,1609\nprivate,1,cymbeline,1609\nFair,1,cymbeline,1609\nsmelt,1,cymbeline,1609\nUncertain,1,cymbeline,1609\narbitrement,1,cymbeline,1609\nDirect,1,cymbeline,1609\nshells,1,cymbeline,1609\nfigured,1,cymbeline,1609\ncorporal,1,cymbeline,1609\njealousy,1,cymbeline,1609\nspeaker,1,cymbeline,1609\nslip,1,cymbeline,1609\nstomachs,1,cymbeline,1609\ntainted,1,cymbeline,1609\nFinds,1,cymbeline,1609\nIf't,1,cymbeline,1609\namen,1,cymbeline,1609\nTry,1,cymbeline,1609\nProfess,1,cymbeline,1609\nFall,1,cymbeline,1609\nbier,1,cymbeline,1609\njustly,1,cymbeline,1609\nhaunted,1,cymbeline,1609\nFalse,1,cymbeline,1609\ngallowses,1,cymbeline,1609\nDistinction,1,cymbeline,1609\nMingle,1,cymbeline,1609\nneighbour,1,cymbeline,1609\nclotpoll,1,cymbeline,1609\nlanguishing,1,cymbeline,1609\nth',1,cymbeline,1609\ncoin'd,1,cymbeline,1609\nperhaps,1,cymbeline,1609\nhorrider,1,cymbeline,1609\nfeated,1,cymbeline,1609\neasiliest,1,cymbeline,1609\nmornings,1,cymbeline,1609\nfoster'd,1,cymbeline,1609\nweringly,1,cymbeline,1609\nDistinguish,1,cymbeline,1609\ndin,1,cymbeline,1609\ncontain'd,1,cymbeline,1609\ndiscourtesy,1,cymbeline,1609\nchambers,1,cymbeline,1609\ngeck,1,cymbeline,1609\ndig,1,cymbeline,1609\nships,1,cymbeline,1609\nDesired,1,cymbeline,1609\nvilely,1,cymbeline,1609\nadjourn'd,1,cymbeline,1609\nseek'st,1,cymbeline,1609\nmonsters,1,cymbeline,1609\nDisloyal,1,cymbeline,1609\nsail'd,1,cymbeline,1609\nprides,1,cymbeline,1609\nYou're,2,cymbeline,1609\nheel,2,cymbeline,1609\nquality,2,cymbeline,1609\nProve,2,cymbeline,1609\nenjoyed,2,cymbeline,1609\ndays,2,cymbeline,1609\ngroom,2,cymbeline,1609\ndrop,2,cymbeline,1609\nfathers,2,cymbeline,1609\ndouble,2,cymbeline,1609\nweary,2,cymbeline,1609\nwish'd,2,cymbeline,1609\nfollowing,2,cymbeline,1609\ntreasure,2,cymbeline,1609\nstately,2,cymbeline,1609\nFie,2,cymbeline,1609\nlawful,2,cymbeline,1609\nhaste,2,cymbeline,1609\nthankfully,2,cymbeline,1609\nmend,2,cymbeline,1609\neasily,2,cymbeline,1609\nmountaineers,2,cymbeline,1609\nconstruction,2,cymbeline,1609\nheld,2,cymbeline,1609\nsleeps,2,cymbeline,1609\nreserved,2,cymbeline,1609\nStay,2,cymbeline,1609\ndish,2,cymbeline,1609\nfrowning,2,cymbeline,1609\nduteous,2,cymbeline,1609\npoisonous,2,cymbeline,1609\nexceeds,2,cymbeline,1609\nTell,2,cymbeline,1609\nyounger,2,cymbeline,1609\ncontract,2,cymbeline,1609\nDiscover,2,cymbeline,1609\nmere,2,cymbeline,1609\nlodging,2,cymbeline,1609\nEither,2,cymbeline,1609\nHelp,2,cymbeline,1609\ntoil,2,cymbeline,1609\nlearn'd,2,cymbeline,1609\nsuccession,2,cymbeline,1609\nunderstand,2,cymbeline,1609\nrichly,2,cymbeline,1609\nfury,2,cymbeline,1609\ndrink,2,cymbeline,1609\nthroat,2,cymbeline,1609\nworms,2,cymbeline,1609\npress,2,cymbeline,1609\nstrumpet,2,cymbeline,1609\nadvise,2,cymbeline,1609\nabsolute,2,cymbeline,1609\nsore,2,cymbeline,1609\nancestors,2,cymbeline,1609\npleasures,2,cymbeline,1609\nPhilario,2,cymbeline,1609\ncurious,2,cymbeline,1609\nboy's,2,cymbeline,1609\nsaved,2,cymbeline,1609\nmingled,2,cymbeline,1609\nsaves,2,cymbeline,1609\ncats,2,cymbeline,1609\nmercy,2,cymbeline,1609\nextort,2,cymbeline,1609\nsadly,2,cymbeline,1609\ndrive,2,cymbeline,1609\ngrows,2,cymbeline,1609\nfortunate,2,cymbeline,1609\nbroken,2,cymbeline,1609\nlily,2,cymbeline,1609\ninjury,2,cymbeline,1609\nsubjects,2,cymbeline,1609\nRemember,2,cymbeline,1609\nconcerns,2,cymbeline,1609\ntoward,2,cymbeline,1609\nKnow'st,2,cymbeline,1609\nheadless,2,cymbeline,1609\ncharacters,2,cymbeline,1609\nhanging,2,cymbeline,1609\nglass,2,cymbeline,1609\nnoise,2,cymbeline,1609\nfurious,2,cymbeline,1609\n'mollis,2,cymbeline,1609\nblessed,2,cymbeline,1609\nfreedom,2,cymbeline,1609\nlesser,2,cymbeline,1609\nbecoming,2,cymbeline,1609\ningenious,2,cymbeline,1609\nkin,2,cymbeline,1609\nbegan,2,cymbeline,1609\nslippery,2,cymbeline,1609\ncompanies,2,cymbeline,1609\npillow,2,cymbeline,1609\nhistory,2,cymbeline,1609\nsums,2,cymbeline,1609\nspeeches,2,cymbeline,1609\nwarrant,2,cymbeline,1609\norbs,2,cymbeline,1609\nBeyond,2,cymbeline,1609\nlaugh'd,2,cymbeline,1609\nmuster'd,2,cymbeline,1609\nworthiest,2,cymbeline,1609\nourself,2,cymbeline,1609\nmerry,2,cymbeline,1609\nvirtuous,2,cymbeline,1609\nwake,2,cymbeline,1609\nDutchman,2,cymbeline,1609\n'When,2,cymbeline,1609\nDeserves,2,cymbeline,1609\nlanguish,2,cymbeline,1609\nlanded,2,cymbeline,1609\ndisposed,2,cymbeline,1609\nscore,2,cymbeline,1609\nembrace,2,cymbeline,1609\nWake,2,cymbeline,1609\nsworn,2,cymbeline,1609\nsubject,2,cymbeline,1609\npictures,2,cymbeline,1609\n'O,2,cymbeline,1609\nlivers,2,cymbeline,1609\nadmittance,2,cymbeline,1609\nacquainted,2,cymbeline,1609\ndeeply,2,cymbeline,1609\ngather,2,cymbeline,1609\nsets,2,cymbeline,1609\nbetwixt,2,cymbeline,1609\nworst,2,cymbeline,1609\nesteem,2,cymbeline,1609\ngaoler,2,cymbeline,1609\ndiligent,2,cymbeline,1609\nmerit,2,cymbeline,1609\nlingering,2,cymbeline,1609\nrevived,2,cymbeline,1609\nprofess,2,cymbeline,1609\nrhyme,2,cymbeline,1609\nbrags,2,cymbeline,1609\nproceeded,2,cymbeline,1609\nfalls,2,cymbeline,1609\nencounter,2,cymbeline,1609\ncommit,2,cymbeline,1609\ntaper,2,cymbeline,1609\nfruit,2,cymbeline,1609\nwhite,2,cymbeline,1609\ncharming,2,cymbeline,1609\nLeave,2,cymbeline,1609\nReport,2,cymbeline,1609\nparagon,2,cymbeline,1609\nperplex'd,2,cymbeline,1609\ngirls,2,cymbeline,1609\nfeel,2,cymbeline,1609\nnoblest,2,cymbeline,1609\ninfinite,2,cymbeline,1609\nbeaten,2,cymbeline,1609\ndirected,2,cymbeline,1609\n'Faith,2,cymbeline,1609\nmasters,2,cymbeline,1609\nblind,2,cymbeline,1609\nBetwixt,2,cymbeline,1609\nancient,2,cymbeline,1609\nGuard,2,cymbeline,1609\nwishes,2,cymbeline,1609\nwink,2,cymbeline,1609\nbauble,2,cymbeline,1609\nfrom's,2,cymbeline,1609\nHence,2,cymbeline,1609\nlanguage,2,cymbeline,1609\ndedicate,2,cymbeline,1609\nMight,2,cymbeline,1609\nmirth,2,cymbeline,1609\nsteal,2,cymbeline,1609\nstrew'd,2,cymbeline,1609\nhated,2,cymbeline,1609\ntools,2,cymbeline,1609\nanon,2,cymbeline,1609\ncustom,2,cymbeline,1609\naccuse,2,cymbeline,1609\nmurder,2,cymbeline,1609\nthrows,2,cymbeline,1609\nPutting,2,cymbeline,1609\nwindow,2,cymbeline,1609\nstop,2,cymbeline,1609\nbond,2,cymbeline,1609\ncunning,2,cymbeline,1609\nsteel,2,cymbeline,1609\nboon,2,cymbeline,1609\nmanhood,2,cymbeline,1609\nparts,2,cymbeline,1609\nLove's,2,cymbeline,1609\ntent,2,cymbeline,1609\nintelligence,2,cymbeline,1609\ngoddess,2,cymbeline,1609\nsenses,2,cymbeline,1609\noutlaws,2,cymbeline,1609\nstir,2,cymbeline,1609\nslaves,2,cymbeline,1609\nmanners,2,cymbeline,1609\nTakes,2,cymbeline,1609\nstrongly,2,cymbeline,1609\nmelancholy,2,cymbeline,1609\nhat,2,cymbeline,1609\naboard,2,cymbeline,1609\nSolemn,2,cymbeline,1609\ndepend,2,cymbeline,1609\nhang'd,2,cymbeline,1609\nJovial,2,cymbeline,1609\nWhiles,2,cymbeline,1609\nBecomes,2,cymbeline,1609\ndeeds,2,cymbeline,1609\namong,2,cymbeline,1609\ndesperate,2,cymbeline,1609\nassault,2,cymbeline,1609\nsmile,2,cymbeline,1609\nHaving,2,cymbeline,1609\nhopes,2,cymbeline,1609\nNature,2,cymbeline,1609\nO',2,cymbeline,1609\nMe,2,cymbeline,1609\npays,2,cymbeline,1609\nbar,2,cymbeline,1609\ncanst,2,cymbeline,1609\nstar,2,cymbeline,1609\nbrings,2,cymbeline,1609\npen,2,cymbeline,1609\nsings,2,cymbeline,1609\nSpaniard,2,cymbeline,1609\nto's,2,cymbeline,1609\npawn,2,cymbeline,1609\nMulmutius,2,cymbeline,1609\nenter'd,2,cymbeline,1609\ntear,2,cymbeline,1609\nmedicine,2,cymbeline,1609\napprove,2,cymbeline,1609\nbeg,2,cymbeline,1609\nHo,2,cymbeline,1609\nills,2,cymbeline,1609\nbless,2,cymbeline,1609\nstrangely,2,cymbeline,1609\nincontinency,2,cymbeline,1609\neast,2,cymbeline,1609\ndespair,2,cymbeline,1609\nadded,2,cymbeline,1609\nnoses,2,cymbeline,1609\ncovenant,2,cymbeline,1609\nVI,2,cymbeline,1609\nbegot,2,cymbeline,1609\ntitles,2,cymbeline,1609\ngod,2,cymbeline,1609\nroyalty,2,cymbeline,1609\nThou'rt,2,cymbeline,1609\nArviragus,2,cymbeline,1609\nbend,2,cymbeline,1609\nReceive,2,cymbeline,1609\nbehind,2,cymbeline,1609\nbury,2,cymbeline,1609\ndifference,2,cymbeline,1609\nkindness,2,cymbeline,1609\nbreathing,2,cymbeline,1609\njointed,2,cymbeline,1609\nBehold,2,cymbeline,1609\npeople,2,cymbeline,1609\nbuds,2,cymbeline,1609\nsilk,2,cymbeline,1609\nswift,2,cymbeline,1609\npreserve,2,cymbeline,1609\nlonger,2,cymbeline,1609\nstronger,2,cymbeline,1609\npains,2,cymbeline,1609\ngate,2,cymbeline,1609\npicture,2,cymbeline,1609\n'Twas,2,cymbeline,1609\nvantage,2,cymbeline,1609\nBoth,2,cymbeline,1609\nwagers,2,cymbeline,1609\nsolemn,2,cymbeline,1609\ndeep,2,cymbeline,1609\ndeer,2,cymbeline,1609\nmiles,2,cymbeline,1609\nCountry,2,cymbeline,1609\nFortune,2,cymbeline,1609\nembraced,2,cymbeline,1609\nsatisfy,2,cymbeline,1609\nexcellent,2,cymbeline,1609\nrepent,2,cymbeline,1609\nSONG,2,cymbeline,1609\nHere's,2,cymbeline,1609\ndebt,2,cymbeline,1609\nneeds,2,cymbeline,1609\nwreck,2,cymbeline,1609\nBlest,2,cymbeline,1609\ngain,2,cymbeline,1609\nLeonatus',2,cymbeline,1609\nago,2,cymbeline,1609\nPast,2,cymbeline,1609\nswearing,2,cymbeline,1609\nshes,2,cymbeline,1609\nDalmatians,2,cymbeline,1609\ndignity,2,cymbeline,1609\nlikely,2,cymbeline,1609\nLast,2,cymbeline,1609\nthrive,2,cymbeline,1609\nstole,2,cymbeline,1609\nmakest,2,cymbeline,1609\nspeed,2,cymbeline,1609\napes,2,cymbeline,1609\ngame,2,cymbeline,1609\nbanished,2,cymbeline,1609\nbetray'd,2,cymbeline,1609\napprobation,2,cymbeline,1609\nfears,2,cymbeline,1609\nstrain,2,cymbeline,1609\nbanish,2,cymbeline,1609\nsharper,2,cymbeline,1609\nlook'st,2,cymbeline,1609\ntemper,2,cymbeline,1609\naccomplished,2,cymbeline,1609\neminent,2,cymbeline,1609\nhadst,2,cymbeline,1609\nink,2,cymbeline,1609\nlevy,2,cymbeline,1609\ncommands,2,cymbeline,1609\nadd,2,cymbeline,1609\nknot,2,cymbeline,1609\nspend,2,cymbeline,1609\nsuspected,2,cymbeline,1609\nfeats,2,cymbeline,1609\nlock'd,2,cymbeline,1609\nknew,2,cymbeline,1609\nwinner,2,cymbeline,1609\nshow'd,2,cymbeline,1609\nmountaineer,2,cymbeline,1609\nserious,2,cymbeline,1609\nknee,2,cymbeline,1609\nmen's,2,cymbeline,1609\nBeen,2,cymbeline,1609\nCaesars,2,cymbeline,1609\nclimb,2,cymbeline,1609\nclipp'd,2,cymbeline,1609\ngraver,2,cymbeline,1609\nHaply,2,cymbeline,1609\nwarm'd,2,cymbeline,1609\neasy,2,cymbeline,1609\noutward,2,cymbeline,1609\nseconds,2,cymbeline,1609\nArmy,2,cymbeline,1609\nDiana's,2,cymbeline,1609\nnearer,2,cymbeline,1609\nsenate,2,cymbeline,1609\nHercules,2,cymbeline,1609\nweeds,2,cymbeline,1609\nhardness,2,cymbeline,1609\ntrace,2,cymbeline,1609\nsweetest,2,cymbeline,1609\nmighty,2,cymbeline,1609\nopen,2,cymbeline,1609\nUnder,2,cymbeline,1609\nheaviness,2,cymbeline,1609\nwinter's,2,cymbeline,1609\nsoe'er,2,cymbeline,1609\nmoney,2,cymbeline,1609\nmended,2,cymbeline,1609\nmock,2,cymbeline,1609\nfrown,2,cymbeline,1609\nexquisite,2,cymbeline,1609\nstrive,2,cymbeline,1609\ntwain,2,cymbeline,1609\nbosom,2,cymbeline,1609\nCambria,2,cymbeline,1609\nproper,2,cymbeline,1609\nrough,2,cymbeline,1609\nfiend,2,cymbeline,1609\nass,2,cymbeline,1609\naccidents,2,cymbeline,1609\npikes,2,cymbeline,1609\nmonument,2,cymbeline,1609\nbeggars,2,cymbeline,1609\nknock,2,cymbeline,1609\nbought,2,cymbeline,1609\nAmong,2,cymbeline,1609\nSirrah,2,cymbeline,1609\nlonging,2,cymbeline,1609\ndemanded,2,cymbeline,1609\nhazard,2,cymbeline,1609\nArt,2,cymbeline,1609\nbeams,2,cymbeline,1609\nmoves,2,cymbeline,1609\nleaf,2,cymbeline,1609\nmarch,2,cymbeline,1609\nInto,2,cymbeline,1609\nfrenzy,2,cymbeline,1609\ndelicate,2,cymbeline,1609\nCommand,2,cymbeline,1609\njustice,2,cymbeline,1609\noccasion,2,cymbeline,1609\nequal,2,cymbeline,1609\nmain,2,cymbeline,1609\nmoved,2,cymbeline,1609\nexpected,2,cymbeline,1609\nconsider'd,2,cymbeline,1609\nrank,2,cymbeline,1609\nrosy,2,cymbeline,1609\ngriefs,2,cymbeline,1609\nsilence,2,cymbeline,1609\nneedle,2,cymbeline,1609\nvenison,2,cymbeline,1609\nrooted,2,cymbeline,1609\ntends,2,cymbeline,1609\nenvy,2,cymbeline,1609\npenny,2,cymbeline,1609\nguided,2,cymbeline,1609\nremedy,2,cymbeline,1609\nfaint,2,cymbeline,1609\naffront,2,cymbeline,1609\ntenor,2,cymbeline,1609\nSleeps,2,cymbeline,1609\nAlack,2,cymbeline,1609\ndescended,2,cymbeline,1609\npregnant,2,cymbeline,1609\nmock'd,2,cymbeline,1609\ndisloyal,2,cymbeline,1609\nquickly,2,cymbeline,1609\ngarden,2,cymbeline,1609\nConsider,2,cymbeline,1609\nwho's,2,cymbeline,1609\nadultery,2,cymbeline,1609\nSet,2,cymbeline,1609\nmisery,2,cymbeline,1609\nTherefore,2,cymbeline,1609\nmouth,2,cymbeline,1609\nhousewife,2,cymbeline,1609\nDoth,2,cymbeline,1609\nrevive,2,cymbeline,1609\nDost,2,cymbeline,1609\nSee,2,cymbeline,1609\nTribunes,2,cymbeline,1609\neffect,2,cymbeline,1609\nspurn,2,cymbeline,1609\nerr,2,cymbeline,1609\nhigh,2,cymbeline,1609\nindustry,2,cymbeline,1609\nexchange,2,cymbeline,1609\nsoldiers,2,cymbeline,1609\nprobable,2,cymbeline,1609\nqualities,2,cymbeline,1609\nsatisfaction,2,cymbeline,1609\nstars,2,cymbeline,1609\nmightst,2,cymbeline,1609\npurposes,2,cymbeline,1609\npurposed,2,cymbeline,1609\nvent,2,cymbeline,1609\nwrought,2,cymbeline,1609\nreading,2,cymbeline,1609\ncontradiction,2,cymbeline,1609\nkissing,2,cymbeline,1609\ninjuries,2,cymbeline,1609\ndevils,2,cymbeline,1609\nlet's,2,cymbeline,1609\nvision,2,cymbeline,1609\ngates,2,cymbeline,1609\nbenefit,2,cymbeline,1609\nhigher,2,cymbeline,1609\nmissing,2,cymbeline,1609\ndischarge,2,cymbeline,1609\napart,2,cymbeline,1609\ndisguised,2,cymbeline,1609\ncompounds,2,cymbeline,1609\nfirm,2,cymbeline,1609\ngrew'st,2,cymbeline,1609\ndesired,2,cymbeline,1609\nfire,2,cymbeline,1609\nstain,2,cymbeline,1609\nbanks,2,cymbeline,1609\nbreed,2,cymbeline,1609\nclose,2,cymbeline,1609\npassage,2,cymbeline,1609\nreflection,2,cymbeline,1609\nsake,2,cymbeline,1609\ndishonour,2,cymbeline,1609\nwit,2,cymbeline,1609\nsides,2,cymbeline,1609\nstamp,2,cymbeline,1609\ndisdains,2,cymbeline,1609\nstomach,2,cymbeline,1609\nbreak,2,cymbeline,1609\nknife,2,cymbeline,1609\nservices,2,cymbeline,1609\nhappiness,2,cymbeline,1609\nthird,2,cymbeline,1609\nsitting,2,cymbeline,1609\nmeaner,2,cymbeline,1609\ncloses,2,cymbeline,1609\nducats,2,cymbeline,1609\nflight,2,cymbeline,1609\nwalls,2,cymbeline,1609\nresidence,2,cymbeline,1609\nstanding,2,cymbeline,1609\n'Lack,2,cymbeline,1609\ncount,2,cymbeline,1609\nremains,2,cymbeline,1609\nflint,2,cymbeline,1609\npatiently,2,cymbeline,1609\nDamn'd,2,cymbeline,1609\ncalled,2,cymbeline,1609\nstiff,2,cymbeline,1609\nBoys,2,cymbeline,1609\nflourish,2,cymbeline,1609\nWorthy,2,cymbeline,1609\nreceive,2,cymbeline,1609\ngrowing,2,cymbeline,1609\nrage,2,cymbeline,1609\ninstinct,2,cymbeline,1609\nvillains,2,cymbeline,1609\nbounty,2,cymbeline,1609\nenforced,2,cymbeline,1609\nSenators,2,cymbeline,1609\nfamiliar,2,cymbeline,1609\nbaseness,2,cymbeline,1609\ndreams,2,cymbeline,1609\nrages,2,cymbeline,1609\ntaken,2,cymbeline,1609\nmarry,2,cymbeline,1609\ncharged,2,cymbeline,1609\ninform,2,cymbeline,1609\nweeping,2,cymbeline,1609\nnest,2,cymbeline,1609\nwaste,2,cymbeline,1609\nmarble,2,cymbeline,1609\ndoubling,2,cymbeline,1609\nope,2,cymbeline,1609\nPresenting,2,cymbeline,1609\nwatching,2,cymbeline,1609\nNobly,2,cymbeline,1609\nhunger,2,cymbeline,1609\nyond,2,cymbeline,1609\ncloth,2,cymbeline,1609\n'fore,2,cymbeline,1609\nstolen,2,cymbeline,1609\nfog,2,cymbeline,1609\nwander,2,cymbeline,1609\nhumour,2,cymbeline,1609\nwounds,2,cymbeline,1609\nworn,2,cymbeline,1609\nfighting,2,cymbeline,1609\nclay,2,cymbeline,1609\nminute,2,cymbeline,1609\nfine,2,cymbeline,1609\nAttend,2,cymbeline,1609\nBoy,2,cymbeline,1609\nsafety,2,cymbeline,1609\ncontinue,2,cymbeline,1609\nduties,2,cymbeline,1609\nUnto,2,cymbeline,1609\nshows,2,cymbeline,1609\npocket,2,cymbeline,1609\nlines,2,cymbeline,1609\npoison'd,2,cymbeline,1609\npractise,2,cymbeline,1609\nadornment,2,cymbeline,1609\ncensure,2,cymbeline,1609\nincreasing,2,cymbeline,1609\ngilded,2,cymbeline,1609\nfreshly,2,cymbeline,1609\nstinking,2,cymbeline,1609\nallow'd,2,cymbeline,1609\nKnocks,2,cymbeline,1609\nderogate,2,cymbeline,1609\nnamed,2,cymbeline,1609\nbill,2,cymbeline,1609\nfare,2,cymbeline,1609\nlad,2,cymbeline,1609\ntalk,2,cymbeline,1609\nfolks,2,cymbeline,1609\notherwise,2,cymbeline,1609\nstroke,2,cymbeline,1609\nsixth,2,cymbeline,1609\nwild,2,cymbeline,1609\nRather,2,cymbeline,1609\nforbearance,2,cymbeline,1609\naccident,2,cymbeline,1609\nbigger,2,cymbeline,1609\nswears,2,cymbeline,1609\nNone,2,cymbeline,1609\nsatisfying,2,cymbeline,1609\nArise,2,cymbeline,1609\nAlthough,2,cymbeline,1609\npangs,2,cymbeline,1609\nfires,2,cymbeline,1609\nrequest,2,cymbeline,1609\nrevolt,2,cymbeline,1609\nwinter,2,cymbeline,1609\nhorses,2,cymbeline,1609\nDay,2,cymbeline,1609\nslanders,2,cymbeline,1609\ntrain'd,2,cymbeline,1609\nfavours,2,cymbeline,1609\nprayers,2,cymbeline,1609\nseat,2,cymbeline,1609\nhairs,2,cymbeline,1609\ncook,2,cymbeline,1609\nlying,2,cymbeline,1609\nsuits,2,cymbeline,1609\naught,2,cymbeline,1609\nrunagates,2,cymbeline,1609\ncourtesy,2,cymbeline,1609\ndivorce,2,cymbeline,1609\nvessel,2,cymbeline,1609\ncord,2,cymbeline,1609\nheavenly,2,cymbeline,1609\nHe'ld,2,cymbeline,1609\nHe'll,2,cymbeline,1609\navoid,2,cymbeline,1609\ntree,2,cymbeline,1609\nloyalty,2,cymbeline,1609\nKnow,2,cymbeline,1609\nmillion,2,cymbeline,1609\nentreat,2,cymbeline,1609\nwretched,2,cymbeline,1609\ntied,2,cymbeline,1609\nlovers,2,cymbeline,1609\nClose,2,cymbeline,1609\naloud,2,cymbeline,1609\nwhilst,2,cymbeline,1609\nleg,2,cymbeline,1609\nbleeding,2,cymbeline,1609\nroaring,2,cymbeline,1609\nmother's,2,cymbeline,1609\nundo,2,cymbeline,1609\nalas,2,cymbeline,1609\nghosts,2,cymbeline,1609\ngoes,2,cymbeline,1609\nseized,2,cymbeline,1609\nsickness,2,cymbeline,1609\nsheets,2,cymbeline,1609\nlaws,2,cymbeline,1609\nlordship's,2,cymbeline,1609\nNothing,2,cymbeline,1609\npetty,2,cymbeline,1609\nwearing,2,cymbeline,1609\nfiends,2,cymbeline,1609\nconduct,2,cymbeline,1609\nsmiling,2,cymbeline,1609\nsadness,2,cymbeline,1609\nsister,2,cymbeline,1609\nglory,2,cymbeline,1609\nreadiness,2,cymbeline,1609\nDoes,2,cymbeline,1609\nmeeting,2,cymbeline,1609\nabuse,2,cymbeline,1609\nwhit,2,cymbeline,1609\nthinking,2,cymbeline,1609\nfashion,2,cymbeline,1609\nPannonians,2,cymbeline,1609\nstrokes,2,cymbeline,1609\nphysic,2,cymbeline,1609\nlark,2,cymbeline,1609\nportends,2,cymbeline,1609\nSleep,2,cymbeline,1609\ncredit,2,cymbeline,1609\nattendants,2,cymbeline,1609\nsleeping,2,cymbeline,1609\nseverally,2,cymbeline,1609\nappetite,2,cymbeline,1609\nfollow'd,2,cymbeline,1609\nfloor,2,cymbeline,1609\nsilent,2,cymbeline,1609\nsimple,2,cymbeline,1609\nTherein,2,cymbeline,1609\nsentence,2,cymbeline,1609\nspring,2,cymbeline,1609\nnumbers,2,cymbeline,1609\nYou'll,2,cymbeline,1609\nslay,2,cymbeline,1609\nemploy,2,cymbeline,1609\ndog,2,cymbeline,1609\nrespect,2,cymbeline,1609\nhonour'd,2,cymbeline,1609\nharsh,2,cymbeline,1609\nperchance,2,cymbeline,1609\nDie,2,cymbeline,1609\nTogether,2,cymbeline,1609\nHe's,2,cymbeline,1609\n'faith,2,cymbeline,1609\ndispatch,2,cymbeline,1609\nrocks,2,cymbeline,1609\ninjurious,2,cymbeline,1609\nbred,2,cymbeline,1609\nlamb,2,cymbeline,1609\npoisons,2,cymbeline,1609\nemperor's,2,cymbeline,1609\nmature,2,cymbeline,1609\ninches,2,cymbeline,1609\nslew,2,cymbeline,1609\nharts,2,cymbeline,1609\nrescue,2,cymbeline,1609\nbehold,2,cymbeline,1609\nfinish'd,2,cymbeline,1609\nundergo,2,cymbeline,1609\nToo,2,cymbeline,1609\ndame,2,cymbeline,1609\nhe'ld,2,cymbeline,1609\nfrail,2,cymbeline,1609\nKneeling,2,cymbeline,1609\ndew,2,cymbeline,1609\nfigures,2,cymbeline,1609\nspirit,2,cymbeline,1609\nUnlike,2,cymbeline,1609\nrepair,2,cymbeline,1609\nshirt,2,cymbeline,1609\nwhereunto,2,cymbeline,1609\nFind,2,cymbeline,1609\nflattering,2,cymbeline,1609\nbids,2,cymbeline,1609\nshape,2,cymbeline,1609\nhangman,2,cymbeline,1609\ntread,2,cymbeline,1609\nbide,2,cymbeline,1609\nhunting,2,cymbeline,1609\ncrows,2,cymbeline,1609\nsands,2,cymbeline,1609\nlopped,2,cymbeline,1609\nvanish'd,2,cymbeline,1609\nexeunt,2,cymbeline,1609\nsummer,2,cymbeline,1609\ntreason,3,cymbeline,1609\nparted,3,cymbeline,1609\nswords,3,cymbeline,1609\nhappier,3,cymbeline,1609\njoin,3,cymbeline,1609\ntaking,3,cymbeline,1609\ndescription,3,cymbeline,1609\nHear,3,cymbeline,1609\nspeech,3,cymbeline,1609\ntremble,3,cymbeline,1609\nhonours,3,cymbeline,1609\nalack,3,cymbeline,1609\nrascal,3,cymbeline,1609\nhealth,3,cymbeline,1609\nNever,3,cymbeline,1609\nsingle,3,cymbeline,1609\nmiss'd,3,cymbeline,1609\nfinger,3,cymbeline,1609\nspake,3,cymbeline,1609\nsight,3,cymbeline,1609\nhonourable,3,cymbeline,1609\ninstrument,3,cymbeline,1609\nappear,3,cymbeline,1609\nnought,3,cymbeline,1609\nlightning,3,cymbeline,1609\nbreach,3,cymbeline,1609\ngraces,3,cymbeline,1609\nsad,3,cymbeline,1609\nAfter,3,cymbeline,1609\nstock,3,cymbeline,1609\nsole,3,cymbeline,1609\nconfusion,3,cymbeline,1609\ncheer,3,cymbeline,1609\nmadness,3,cymbeline,1609\nchimney,3,cymbeline,1609\nsoft,3,cymbeline,1609\nview,3,cymbeline,1609\ndeserve,3,cymbeline,1609\nseeking,3,cymbeline,1609\nrarest,3,cymbeline,1609\nprevail'd,3,cymbeline,1609\nwalk,3,cymbeline,1609\nflying,3,cymbeline,1609\nthrone,3,cymbeline,1609\nskill,3,cymbeline,1609\nconfident,3,cymbeline,1609\nwinds,3,cymbeline,1609\nplenty,3,cymbeline,1609\nwhere's,3,cymbeline,1609\ncounsel,3,cymbeline,1609\ndesign,3,cymbeline,1609\nwager,3,cymbeline,1609\nlooks,3,cymbeline,1609\nwings,3,cymbeline,1609\nfaults,3,cymbeline,1609\npieces,3,cymbeline,1609\ntaught,3,cymbeline,1609\nwrote,3,cymbeline,1609\nreceived,3,cymbeline,1609\ncourtiers,3,cymbeline,1609\nOut,3,cymbeline,1609\nturn,3,cymbeline,1609\ncourtier,3,cymbeline,1609\nguarded,3,cymbeline,1609\nOfficers,3,cymbeline,1609\nbore,3,cymbeline,1609\ndearly,3,cymbeline,1609\nWhilst,3,cymbeline,1609\nelder,3,cymbeline,1609\ncompanion,3,cymbeline,1609\nreverence,3,cymbeline,1609\nfeed,3,cymbeline,1609\nfearful,3,cymbeline,1609\ncease,3,cymbeline,1609\nsaucy,3,cymbeline,1609\nspeaking,3,cymbeline,1609\nchoose,3,cymbeline,1609\nwind,3,cymbeline,1609\nwing,3,cymbeline,1609\nlion's,3,cymbeline,1609\nflesh,3,cymbeline,1609\nknees,3,cymbeline,1609\nMusicians,3,cymbeline,1609\nbolt,3,cymbeline,1609\ndirectly,3,cymbeline,1609\nwave,3,cymbeline,1609\nbidding,3,cymbeline,1609\nvoice,3,cymbeline,1609\ncoast,3,cymbeline,1609\nbreeding,3,cymbeline,1609\nmeat,3,cymbeline,1609\nmeal,3,cymbeline,1609\noffice,3,cymbeline,1609\nboot,3,cymbeline,1609\nwast,3,cymbeline,1609\nbook,3,cymbeline,1609\ncolour,3,cymbeline,1609\nbig,3,cymbeline,1609\nwherefore,3,cymbeline,1609\nsign,3,cymbeline,1609\nmeasure,3,cymbeline,1609\nAm,3,cymbeline,1609\nchaste,3,cymbeline,1609\nLeonati,3,cymbeline,1609\nforce,3,cymbeline,1609\nhit,3,cymbeline,1609\ndeserved,3,cymbeline,1609\nsport,3,cymbeline,1609\nelection,3,cymbeline,1609\nAlmost,3,cymbeline,1609\nstep,3,cymbeline,1609\nJulius,3,cymbeline,1609\nheads,3,cymbeline,1609\nbecame,3,cymbeline,1609\nobey,3,cymbeline,1609\nsooner,3,cymbeline,1609\nSave,3,cymbeline,1609\nSpeak,3,cymbeline,1609\nmeanest,3,cymbeline,1609\nSenseless,3,cymbeline,1609\ntheme,3,cymbeline,1609\ndespite,3,cymbeline,1609\nvows,3,cymbeline,1609\nquite,3,cymbeline,1609\ndogs,3,cymbeline,1609\nfailing,3,cymbeline,1609\ndeed,3,cymbeline,1609\nwretch,3,cymbeline,1609\nconfess,3,cymbeline,1609\nSoldiers,3,cymbeline,1609\nmole,3,cymbeline,1609\ntruest,3,cymbeline,1609\nbeat,3,cymbeline,1609\nstone,3,cymbeline,1609\ndeal,3,cymbeline,1609\nradiant,3,cymbeline,1609\ntouch'd,3,cymbeline,1609\nay,3,cymbeline,1609\nboats,3,cymbeline,1609\nmemory,3,cymbeline,1609\namend,3,cymbeline,1609\nforget,3,cymbeline,1609\nfeast,3,cymbeline,1609\ncommend,3,cymbeline,1609\nwhereof,3,cymbeline,1609\nsometime,3,cymbeline,1609\nMyself,3,cymbeline,1609\nvalue,3,cymbeline,1609\nmorn,3,cymbeline,1609\nYea,3,cymbeline,1609\nspent,3,cymbeline,1609\nswell'd,3,cymbeline,1609\nbrought,3,cymbeline,1609\ncrow,3,cymbeline,1609\nround,3,cymbeline,1609\ncrop,3,cymbeline,1609\nsenseless,3,cymbeline,1609\nCall,3,cymbeline,1609\ndeny,3,cymbeline,1609\nfoul,3,cymbeline,1609\nexcuse,3,cymbeline,1609\nexpect,3,cymbeline,1609\nconstrain'd,3,cymbeline,1609\nmidnight,3,cymbeline,1609\nShe's,3,cymbeline,1609\npain,3,cymbeline,1609\nhaven,3,cymbeline,1609\nstones,3,cymbeline,1609\nshot,3,cymbeline,1609\nwinking,3,cymbeline,1609\ngentry,3,cymbeline,1609\nfall'n,3,cymbeline,1609\nobject,3,cymbeline,1609\nlock,3,cymbeline,1609\nterm,3,cymbeline,1609\nsecret,3,cymbeline,1609\nHast,3,cymbeline,1609\nbeggary,3,cymbeline,1609\nenjoy,3,cymbeline,1609\nbroke,3,cymbeline,1609\nnew,3,cymbeline,1609\nroot,3,cymbeline,1609\nnobler,3,cymbeline,1609\nbedchamber,3,cymbeline,1609\nempty,3,cymbeline,1609\nlords,3,cymbeline,1609\nmountains,3,cymbeline,1609\nriding,3,cymbeline,1609\nwhelp,3,cymbeline,1609\nwater,3,cymbeline,1609\nApparitions,3,cymbeline,1609\nlocks,3,cymbeline,1609\nPeace,3,cymbeline,1609\nbravely,3,cymbeline,1609\nestate,3,cymbeline,1609\nbottom,3,cymbeline,1609\nSoft,3,cymbeline,1609\nadventure,3,cymbeline,1609\nborne,3,cymbeline,1609\nperform,3,cymbeline,1609\nparting,3,cymbeline,1609\nignorant,3,cymbeline,1609\ndares,3,cymbeline,1609\nawhile,3,cymbeline,1609\nfreely,3,cymbeline,1609\nquestion,3,cymbeline,1609\ngeneral,3,cymbeline,1609\nLook,3,cymbeline,1609\nbeggar,3,cymbeline,1609\npresently,3,cymbeline,1609\ncoward,3,cymbeline,1609\nthick,3,cymbeline,1609\nSon,3,cymbeline,1609\nwoe,3,cymbeline,1609\nwoo,3,cymbeline,1609\nwon,3,cymbeline,1609\nheaven's,3,cymbeline,1609\nmountain,3,cymbeline,1609\nlong'st,3,cymbeline,1609\ntaste,3,cymbeline,1609\nneat,3,cymbeline,1609\nflies,3,cymbeline,1609\nneck,3,cymbeline,1609\nformer,3,cymbeline,1609\nbanishment,3,cymbeline,1609\nthrow,3,cymbeline,1609\nhandkerchief,3,cymbeline,1609\nsorrow,3,cymbeline,1609\nbeastly,3,cymbeline,1609\nprotection,3,cymbeline,1609\narmy,3,cymbeline,1609\ntailor,3,cymbeline,1609\nbetween,3,cymbeline,1609\ncommanded,3,cymbeline,1609\noath,3,cymbeline,1609\ndying,3,cymbeline,1609\nserved,3,cymbeline,1609\nowe,3,cymbeline,1609\nhaply,3,cymbeline,1609\ndull,3,cymbeline,1609\nyoke,3,cymbeline,1609\ndrops,3,cymbeline,1609\nfalling,3,cymbeline,1609\nwhence,3,cymbeline,1609\nProceed,3,cymbeline,1609\nwert,3,cymbeline,1609\npleased,3,cymbeline,1609\nwest,3,cymbeline,1609\n'em,3,cymbeline,1609\nSweet,3,cymbeline,1609\nprofit,3,cymbeline,1609\nadmiration,3,cymbeline,1609\nsavage,3,cymbeline,1609\nfolly,3,cymbeline,1609\nbare,3,cymbeline,1609\nanswer'd,3,cymbeline,1609\nmansion,3,cymbeline,1609\nunfold,3,cymbeline,1609\ndepart,3,cymbeline,1609\npublic,3,cymbeline,1609\ncock,3,cymbeline,1609\nprefer,3,cymbeline,1609\nemperor,3,cymbeline,1609\ntale,3,cymbeline,1609\nman's,3,cymbeline,1609\nquit,3,cymbeline,1609\nshort,3,cymbeline,1609\ndangerous,3,cymbeline,1609\nWho's,3,cymbeline,1609\nloyal,3,cymbeline,1609\nvirtues,3,cymbeline,1609\nhearts,3,cymbeline,1609\nseas,3,cymbeline,1609\ninterest,3,cymbeline,1609\ncommission,3,cymbeline,1609\nJuno,3,cymbeline,1609\ntroth,3,cymbeline,1609\nended,3,cymbeline,1609\n'twixt,3,cymbeline,1609\ntidings,3,cymbeline,1609\nDian,3,cymbeline,1609\nBelieve,3,cymbeline,1609\ncry,3,cymbeline,1609\nGentlemen,3,cymbeline,1609\nsouls,3,cymbeline,1609\npenetrate,3,cymbeline,1609\nprison,3,cymbeline,1609\nsent,3,cymbeline,1609\nnurse,3,cymbeline,1609\nfairies,3,cymbeline,1609\nnature's,3,cymbeline,1609\neffects,3,cymbeline,1609\neat,3,cymbeline,1609\nqueen's,3,cymbeline,1609\npray'd,3,cymbeline,1609\nleast,3,cymbeline,1609\nImogen's,3,cymbeline,1609\nlearn,3,cymbeline,1609\nforces,3,cymbeline,1609\nremember,3,cymbeline,1609\nwarlike,3,cymbeline,1609\nmet,3,cymbeline,1609\nGaolers,3,cymbeline,1609\nthoughts,3,cymbeline,1609\nladies,3,cymbeline,1609\ndebtor,3,cymbeline,1609\nbody's,3,cymbeline,1609\nconfess'd,3,cymbeline,1609\nwound,3,cymbeline,1609\nrevenges,3,cymbeline,1609\nWithout,3,cymbeline,1609\nextend,3,cymbeline,1609\nsilver,3,cymbeline,1609\ncordial,3,cymbeline,1609\nGuiderius,3,cymbeline,1609\nconfirm,3,cymbeline,1609\nmiseries,3,cymbeline,1609\nshift,3,cymbeline,1609\nphysician,3,cymbeline,1609\nunpaid,3,cymbeline,1609\ngreatness,3,cymbeline,1609\nawake,3,cymbeline,1609\ndone't,3,cymbeline,1609\ncharity,3,cymbeline,1609\nforbear,3,cymbeline,1609\n'mongst,3,cymbeline,1609\nobedience,3,cymbeline,1609\noaths,3,cymbeline,1609\nundertake,3,cymbeline,1609\ne'er,3,cymbeline,1609\nlads,3,cymbeline,1609\ntimes,4,cymbeline,1609\nsuffer,4,cymbeline,1609\nmotion,4,cymbeline,1609\nfor't,4,cymbeline,1609\nheir,4,cymbeline,1609\nAlas,4,cymbeline,1609\nwoman's,4,cymbeline,1609\nadvantage,4,cymbeline,1609\nbonds,4,cymbeline,1609\nassured,4,cymbeline,1609\nfought,4,cymbeline,1609\nof's,4,cymbeline,1609\nrun,4,cymbeline,1609\nWhom,4,cymbeline,1609\nwing'd,4,cymbeline,1609\nbecome,4,cymbeline,1609\ndemand,4,cymbeline,1609\ncast,4,cymbeline,1609\ncase,4,cymbeline,1609\nattempt,4,cymbeline,1609\nOnce,4,cymbeline,1609\nstrength,4,cymbeline,1609\nslept,4,cymbeline,1609\nJove,4,cymbeline,1609\nCaesar's,4,cymbeline,1609\ndram,4,cymbeline,1609\ngracious,4,cymbeline,1609\ngolden,4,cymbeline,1609\nPhilario's,4,cymbeline,1609\nfools,4,cymbeline,1609\nI'd,4,cymbeline,1609\nstands,4,cymbeline,1609\nvice,4,cymbeline,1609\nscorn,4,cymbeline,1609\nfell,4,cymbeline,1609\nabused,4,cymbeline,1609\nperil,4,cymbeline,1609\nbranches,4,cymbeline,1609\nsecond,4,cymbeline,1609\nvile,4,cymbeline,1609\nfelt,4,cymbeline,1609\nFrance,4,cymbeline,1609\ncommon,4,cymbeline,1609\nabsence,4,cymbeline,1609\nCassibelan,4,cymbeline,1609\npromise,4,cymbeline,1609\nhumbly,4,cymbeline,1609\ngrow,4,cymbeline,1609\nbrief,4,cymbeline,1609\nmalice,4,cymbeline,1609\nPlease,4,cymbeline,1609\nwise,4,cymbeline,1609\npretty,4,cymbeline,1609\nmorning,4,cymbeline,1609\ngranted,4,cymbeline,1609\nbox,4,cymbeline,1609\nkings,4,cymbeline,1609\ncruel,4,cymbeline,1609\nin't,4,cymbeline,1609\nstay,4,cymbeline,1609\nshines,4,cymbeline,1609\nwedded,4,cymbeline,1609\nkiss'd,4,cymbeline,1609\nchildren,4,cymbeline,1609\ndost,4,cymbeline,1609\nexile,4,cymbeline,1609\ntwice,4,cymbeline,1609\nfarewell,4,cymbeline,1609\nbuy,4,cymbeline,1609\nsing,4,cymbeline,1609\nhourly,4,cymbeline,1609\nbegin,4,cymbeline,1609\ninstant,4,cymbeline,1609\nCannot,4,cymbeline,1609\nbreast,4,cymbeline,1609\nconsider,4,cymbeline,1609\nbear,4,cymbeline,1609\nnotes,4,cymbeline,1609\nlend,4,cymbeline,1609\nboast,4,cymbeline,1609\ndoor,4,cymbeline,1609\nmove,4,cymbeline,1609\nattending,4,cymbeline,1609\nsmall,4,cymbeline,1609\nabide,4,cymbeline,1609\nGods,4,cymbeline,1609\nearth,4,cymbeline,1609\nage,4,cymbeline,1609\nlest,4,cymbeline,1609\ndevil,4,cymbeline,1609\ngreater,4,cymbeline,1609\nhalf,4,cymbeline,1609\npale,4,cymbeline,1609\npage,4,cymbeline,1609\nvengeance,4,cymbeline,1609\nhate,4,cymbeline,1609\nalive,4,cymbeline,1609\nchastity,4,cymbeline,1609\nrevenge,4,cymbeline,1609\nAttendant,4,cymbeline,1609\nmayst,4,cymbeline,1609\nthanks,4,cymbeline,1609\nCaptains,4,cymbeline,1609\nTribune,4,cymbeline,1609\nunknown,4,cymbeline,1609\ncedar,4,cymbeline,1609\nmajesty,4,cymbeline,1609\nhide,4,cymbeline,1609\nstrike,4,cymbeline,1609\npowers,4,cymbeline,1609\nchild,4,cymbeline,1609\ntowards,4,cymbeline,1609\nfoolish,4,cymbeline,1609\nAugustus,4,cymbeline,1609\ndidst,4,cymbeline,1609\n'gainst,4,cymbeline,1609\nslave,4,cymbeline,1609\nissue,4,cymbeline,1609\nstate,4,cymbeline,1609\nPolydote,4,cymbeline,1609\nlabour,4,cymbeline,1609\nover,4,cymbeline,1609\nsearch,4,cymbeline,1609\nletters,4,cymbeline,1609\nliving,4,cymbeline,1609\ndoctor,4,cymbeline,1609\nslight,4,cymbeline,1609\nopinion,4,cymbeline,1609\nfits,4,cymbeline,1609\nMorgan,4,cymbeline,1609\ncross'd,4,cymbeline,1609\nclock,4,cymbeline,1609\nSay,4,cymbeline,1609\nLud's,4,cymbeline,1609\nheavy,4,cymbeline,1609\nbelieve,4,cymbeline,1609\nforward,4,cymbeline,1609\nnext,4,cymbeline,1609\nfaces,4,cymbeline,1609\ntakes,4,cymbeline,1609\nHail,4,cymbeline,1609\nangel,4,cymbeline,1609\nEven,4,cymbeline,1609\ncontempt,4,cymbeline,1609\nThat's,4,cymbeline,1609\nfoe,4,cymbeline,1609\ngrant,4,cymbeline,1609\ntune,4,cymbeline,1609\ncompany,4,cymbeline,1609\nperfect,4,cymbeline,1609\nthunder,4,cymbeline,1609\nMother,4,cymbeline,1609\nherself,4,cymbeline,1609\npatient,4,cymbeline,1609\nstrikes,4,cymbeline,1609\nkiss,4,cymbeline,1609\nfast,4,cymbeline,1609\nconstant,4,cymbeline,1609\npardon,4,cymbeline,1609\ncowards,4,cymbeline,1609\nstrong,4,cymbeline,1609\nWherefore,4,cymbeline,1609\nfalsehood,4,cymbeline,1609\nhunt,4,cymbeline,1609\ngoodness,4,cymbeline,1609\nsouth,4,cymbeline,1609\nrender,4,cymbeline,1609\nmake't,4,cymbeline,1609\ntraitor,4,cymbeline,1609\npreferment,4,cymbeline,1609\ntherein,4,cymbeline,1609\nhours,4,cymbeline,1609\nhither,4,cymbeline,1609\nseason,4,cymbeline,1609\nmatch,4,cymbeline,1609\n'His,4,cymbeline,1609\nEuriphile,4,cymbeline,1609\nabroad,4,cymbeline,1609\ndoing,4,cymbeline,1609\npunishment,4,cymbeline,1609\nliege,4,cymbeline,1609\nBeseech,4,cymbeline,1609\nbeauty,4,cymbeline,1609\ncontent,4,cymbeline,1609\ntry,4,cymbeline,1609\nwitness,4,cymbeline,1609\nlaid,4,cymbeline,1609\nattend,4,cymbeline,1609\nhe'll,4,cymbeline,1609\nwills,4,cymbeline,1609\npronounce,4,cymbeline,1609\nten,4,cymbeline,1609\nlack,4,cymbeline,1609\nsharp,4,cymbeline,1609\nfortunes,4,cymbeline,1609\no'er,5,cymbeline,1609\nhorse,5,cymbeline,1609\nbusiness,5,cymbeline,1609\nalike,5,cymbeline,1609\nrock,5,cymbeline,1609\nhell,5,cymbeline,1609\nprisoner,5,cymbeline,1609\ndrug,5,cymbeline,1609\nslander,5,cymbeline,1609\nEre,5,cymbeline,1609\nsoul,5,cymbeline,1609\nlies,5,cymbeline,1609\nbirth,5,cymbeline,1609\npurse,5,cymbeline,1609\ncheek,5,cymbeline,1609\ntown,5,cymbeline,1609\npaper,5,cymbeline,1609\nhereafter,5,cymbeline,1609\nsin,5,cymbeline,1609\n'twere,5,cymbeline,1609\nslaughter,5,cymbeline,1609\nsea,5,cymbeline,1609\nstuff,5,cymbeline,1609\nking's,5,cymbeline,1609\nprinces,5,cymbeline,1609\nswore,5,cymbeline,1609\nwant,5,cymbeline,1609\nThere's,5,cymbeline,1609\npraised,5,cymbeline,1609\nelse,5,cymbeline,1609\nknowledge,5,cymbeline,1609\nsigh,5,cymbeline,1609\nAt,5,cymbeline,1609\nknowing,5,cymbeline,1609\nStill,5,cymbeline,1609\nto't,5,cymbeline,1609\nGo,5,cymbeline,1609\nWales,5,cymbeline,1609\nweep,5,cymbeline,1609\nstruck,5,cymbeline,1609\nweak,5,cymbeline,1609\nbeyond,5,cymbeline,1609\ndivine,5,cymbeline,1609\ncrack'd,5,cymbeline,1609\nyea,5,cymbeline,1609\ngift,5,cymbeline,1609\nUnless,5,cymbeline,1609\nseeming,5,cymbeline,1609\nlady's,5,cymbeline,1609\ndamn'd,5,cymbeline,1609\nReads,5,cymbeline,1609\nloves,5,cymbeline,1609\nYes,5,cymbeline,1609\nho,5,cymbeline,1609\ntwenty,5,cymbeline,1609\nhot,5,cymbeline,1609\nvalour,5,cymbeline,1609\nfield,5,cymbeline,1609\nnatural,5,cymbeline,1609\nprince,5,cymbeline,1609\ncourse,5,cymbeline,1609\nCloten's,5,cymbeline,1609\nfresh,5,cymbeline,1609\nye,5,cymbeline,1609\nPolydore,5,cymbeline,1609\nright,5,cymbeline,1609\nAgainst,5,cymbeline,1609\nours,5,cymbeline,1609\nslain,5,cymbeline,1609\narise,5,cymbeline,1609\nyou'll,5,cymbeline,1609\nleaves,5,cymbeline,1609\nalready,5,cymbeline,1609\ncourage,5,cymbeline,1609\ndearest,5,cymbeline,1609\nneed,5,cymbeline,1609\nfather's,5,cymbeline,1609\nwrath,5,cymbeline,1609\nones,5,cymbeline,1609\n'Twixt,5,cymbeline,1609\nbracelet,5,cymbeline,1609\nbondage,5,cymbeline,1609\nsave,5,cymbeline,1609\ntorture,5,cymbeline,1609\ndust,5,cymbeline,1609\nThink,5,cymbeline,1609\nduty,5,cymbeline,1609\nthemselves,5,cymbeline,1609\nhappy,5,cymbeline,1609\nnotice,5,cymbeline,1609\nnews,5,cymbeline,1609\nShall,5,cymbeline,1609\ngrieve,5,cymbeline,1609\nMake,5,cymbeline,1609\nTill,5,cymbeline,1609\nfortune,5,cymbeline,1609\nwore,5,cymbeline,1609\nmarried,5,cymbeline,1609\ntill,5,cymbeline,1609\nbird,5,cymbeline,1609\nthousand,5,cymbeline,1609\nwilt,5,cymbeline,1609\nunto,5,cymbeline,1609\nlives,5,cymbeline,1609\nlegions,5,cymbeline,1609\nkingdom,5,cymbeline,1609\nlook'd,5,cymbeline,1609\nperson,5,cymbeline,1609\nblame,5,cymbeline,1609\nslow,5,cymbeline,1609\near,5,cymbeline,1609\nspirits,5,cymbeline,1609\nAnother,5,cymbeline,1609\nstraight,5,cymbeline,1609\nfled,5,cymbeline,1609\nlips,5,cymbeline,1609\nlast,5,cymbeline,1609\nthither,5,cymbeline,1609\nopportunity,5,cymbeline,1609\ntop,5,cymbeline,1609\nshame,5,cymbeline,1609\npower,5,cymbeline,1609\nremembrance,5,cymbeline,1609\nSenator,5,cymbeline,1609\ncrown,5,cymbeline,1609\nwouldst,5,cymbeline,1609\ntold,6,cymbeline,1609\nvillany,6,cymbeline,1609\nroyal,6,cymbeline,1609\nhelp,6,cymbeline,1609\njoy,6,cymbeline,1609\nclothes,6,cymbeline,1609\nspare,6,cymbeline,1609\nsoon,6,cymbeline,1609\nGive,6,cymbeline,1609\nlight,6,cymbeline,1609\n's,6,cymbeline,1609\ndoubt,6,cymbeline,1609\nThanks,6,cymbeline,1609\nAttendants,6,cymbeline,1609\noffence,6,cymbeline,1609\nfight,6,cymbeline,1609\npiece,6,cymbeline,1609\nkill'd,6,cymbeline,1609\nfault,6,cymbeline,1609\nothers,6,cymbeline,1609\nwish,6,cymbeline,1609\nbold,6,cymbeline,1609\nwars,6,cymbeline,1609\nLadies,6,cymbeline,1609\nDo,6,cymbeline,1609\nhe's,6,cymbeline,1609\neach,6,cymbeline,1609\nside,6,cymbeline,1609\nI',6,cymbeline,1609\nhas,6,cymbeline,1609\nAn,6,cymbeline,1609\ntherefore,6,cymbeline,1609\nThose,6,cymbeline,1609\nitself,6,cymbeline,1609\nbad,6,cymbeline,1609\nStand,6,cymbeline,1609\nproof,6,cymbeline,1609\nmeans,6,cymbeline,1609\nLet's,6,cymbeline,1609\nplay,6,cymbeline,1609\ntemple,6,cymbeline,1609\nvaliant,6,cymbeline,1609\nPrithee,6,cymbeline,1609\ngot,6,cymbeline,1609\njewel,6,cymbeline,1609\nLike,6,cymbeline,1609\nbreath,6,cymbeline,1609\nFear,6,cymbeline,1609\nfavour,6,cymbeline,1609\nsafe,6,cymbeline,1609\ndoes,6,cymbeline,1609\nhands,6,cymbeline,1609\nwherein,6,cymbeline,1609\nloved,6,cymbeline,1609\nlose,6,cymbeline,1609\nready,6,cymbeline,1609\nforgot,6,cymbeline,1609\npraise,6,cymbeline,1609\nCaius,6,cymbeline,1609\npaid,6,cymbeline,1609\ncreatures,6,cymbeline,1609\nhaving,6,cymbeline,1609\nhere's,6,cymbeline,1609\nchange,6,cymbeline,1609\nshouldst,6,cymbeline,1609\nfaith,6,cymbeline,1609\nalmost,6,cymbeline,1609\nGallia,6,cymbeline,1609\ndream,6,cymbeline,1609\nfree,6,cymbeline,1609\nget,6,cymbeline,1609\nfetch,6,cymbeline,1609\nwhat's,6,cymbeline,1609\nglad,6,cymbeline,1609\nne'er,6,cymbeline,1609\nlordship,6,cymbeline,1609\nlived,6,cymbeline,1609\nreason,6,cymbeline,1609\ncut,6,cymbeline,1609\nprithee,6,cymbeline,1609\neither,6,cymbeline,1609\nMine,6,cymbeline,1609\nbattle,6,cymbeline,1609\nhouse,6,cymbeline,1609\nsleep,6,cymbeline,1609\nMessenger,6,cymbeline,1609\nBefore,6,cymbeline,1609\nGreat,6,cymbeline,1609\nlate,6,cymbeline,1609\nbesides,6,cymbeline,1609\nrevenged,6,cymbeline,1609\ngoing,6,cymbeline,1609\nprincely,6,cymbeline,1609\ndue,6,cymbeline,1609\nland,6,cymbeline,1609\nlane,6,cymbeline,1609\ncertain,6,cymbeline,1609\nstol'n,6,cymbeline,1609\ncountry,7,cymbeline,1609\nWilt,7,cymbeline,1609\ntrunk,7,cymbeline,1609\nunder,7,cymbeline,1609\ntruth,7,cymbeline,1609\ntrust,7,cymbeline,1609\ncare,7,cymbeline,1609\nPoor,7,cymbeline,1609\ndraw,7,cymbeline,1609\nsomething,7,cymbeline,1609\nTheir,7,cymbeline,1609\ncause,7,cymbeline,1609\nabove,7,cymbeline,1609\nseems,7,cymbeline,1609\ndied,7,cymbeline,1609\nsense,7,cymbeline,1609\nrest,7,cymbeline,1609\nfairest,7,cymbeline,1609\nscarce,7,cymbeline,1609\nneither,7,cymbeline,1609\nHer,7,cymbeline,1609\nblest,7,cymbeline,1609\npast,7,cymbeline,1609\nears,7,cymbeline,1609\nstory,7,cymbeline,1609\nItalian,7,cymbeline,1609\nloss,7,cymbeline,1609\ndiamond,7,cymbeline,1609\nill,7,cymbeline,1609\nharm,7,cymbeline,1609\ndrawn,7,cymbeline,1609\nforth,7,cymbeline,1609\narm,7,cymbeline,1609\nfoot,7,cymbeline,1609\nHark,7,cymbeline,1609\ntouch,7,cymbeline,1609\njudgment,7,cymbeline,1609\noften,7,cymbeline,1609\nroom,7,cymbeline,1609\nMadam,7,cymbeline,1609\ngarments,7,cymbeline,1609\nindeed,7,cymbeline,1609\ngentle,7,cymbeline,1609\nwonder,7,cymbeline,1609\nknows,7,cymbeline,1609\nonce,7,cymbeline,1609\nMade,7,cymbeline,1609\nBeing,7,cymbeline,1609\nsame,7,cymbeline,1609\nwin,7,cymbeline,1609\nmorrow,7,cymbeline,1609\nyou're,7,cymbeline,1609\nThus,7,cymbeline,1609\narms,7,cymbeline,1609\nserve,7,cymbeline,1609\nface,7,cymbeline,1609\npoison,7,cymbeline,1609\ndo't,7,cymbeline,1609\nis't,7,cymbeline,1609\nlaw,7,cymbeline,1609\nIachimo,7,cymbeline,1609\nswear,7,cymbeline,1609\nlow,7,cymbeline,1609\nback,7,cymbeline,1609\nseem,7,cymbeline,1609\nself,7,cymbeline,1609\nsend,7,cymbeline,1609\nmad,7,cymbeline,1609\nhurt,7,cymbeline,1609\nTake,7,cymbeline,1609\nkind,7,cymbeline,1609\ncommand,7,cymbeline,1609\nprincess,7,cymbeline,1609\nkill,7,cymbeline,1609\ntruly,8,cymbeline,1609\ngarment,8,cymbeline,1609\nCadwal,8,cymbeline,1609\nyourself,8,cymbeline,1609\nhearing,8,cymbeline,1609\nfull,8,cymbeline,1609\nshe's,8,cymbeline,1609\n'twas,8,cymbeline,1609\nsuit,8,cymbeline,1609\nyield,8,cymbeline,1609\nSuch,8,cymbeline,1609\n't,8,cymbeline,1609\nabout,8,cymbeline,1609\nsoldier,8,cymbeline,1609\nOne,8,cymbeline,1609\npay,8,cymbeline,1609\npatience,8,cymbeline,1609\nflowers,8,cymbeline,1609\npleasure,8,cymbeline,1609\nHad,8,cymbeline,1609\ngrief,8,cymbeline,1609\nwear,8,cymbeline,1609\nact,8,cymbeline,1609\nbrothers,8,cymbeline,1609\nask,8,cymbeline,1609\nstranger,8,cymbeline,1609\nlittle,8,cymbeline,1609\naction,8,cymbeline,1609\nBelarius,8,cymbeline,1609\nmortal,8,cymbeline,1609\nBritish,8,cymbeline,1609\nbloody,8,cymbeline,1609\nthief,8,cymbeline,1609\ngrave,8,cymbeline,1609\nthine,8,cymbeline,1609\noft,8,cymbeline,1609\nbeseech,8,cymbeline,1609\nbanish'd,8,cymbeline,1609\ndanger,8,cymbeline,1609\nwent,8,cymbeline,1609\nbase,8,cymbeline,1609\ngentlemen,8,cymbeline,1609\nholy,8,cymbeline,1609\nwife,8,cymbeline,1609\nalone,8,cymbeline,1609\nuse,8,cymbeline,1609\nwe'll,8,cymbeline,1609\nseek,8,cymbeline,1609\nTwo,8,cymbeline,1609\nvirtue,8,cymbeline,1609\nMay,8,cymbeline,1609\ndare,8,cymbeline,1609\nturn'd,8,cymbeline,1609\nmeet,9,cymbeline,1609\nV,9,cymbeline,1609\npity,9,cymbeline,1609\nRomans,9,cymbeline,1609\nremain,9,cymbeline,1609\nconscience,9,cymbeline,1609\nSoothsayer,9,cymbeline,1609\nWhose,9,cymbeline,1609\nsaw,9,cymbeline,1609\nSicilius,9,cymbeline,1609\nThese,9,cymbeline,1609\nbrain,9,cymbeline,1609\neagle,9,cymbeline,1609\nmusic,9,cymbeline,1609\nIV,9,cymbeline,1609\nsorry,9,cymbeline,1609\ntongue,9,cymbeline,1609\nservant,9,cymbeline,1609\nthyself,9,cymbeline,1609\nMost,9,cymbeline,1609\npoint,9,cymbeline,1609\nshow,9,cymbeline,1609\nfool,9,cymbeline,1609\nchance,9,cymbeline,1609\nBriton,9,cymbeline,1609\nFidele,9,cymbeline,1609\nShould,9,cymbeline,1609\nthrough,9,cymbeline,1609\nnay,9,cymbeline,1609\nrare,9,cymbeline,1609\nere,9,cymbeline,1609\nwhy,9,cymbeline,1609\nangry,9,cymbeline,1609\nwork,9,cymbeline,1609\nrich,9,cymbeline,1609\nta'en,9,cymbeline,1609\nhome,9,cymbeline,1609\nmaster's,9,cymbeline,1609\nwrite,9,cymbeline,1609\nSince,9,cymbeline,1609\nAway,9,cymbeline,1609\nDid,9,cymbeline,1609\nenemy,9,cymbeline,1609\nwomen,9,cymbeline,1609\nanother,10,cymbeline,1609\nNow,10,cymbeline,1609\nbound,10,cymbeline,1609\nbody,10,cymbeline,1609\nwithin,10,cymbeline,1609\nread,10,cymbeline,1609\nworse,10,cymbeline,1609\ndesire,10,cymbeline,1609\nmatter,10,cymbeline,1609\nspoke,10,cymbeline,1609\nOn,10,cymbeline,1609\nII,10,cymbeline,1609\nbid,10,cymbeline,1609\nprove,10,cymbeline,1609\nhusband,10,cymbeline,1609\nYet,10,cymbeline,1609\ngrace,10,cymbeline,1609\nyoung,10,cymbeline,1609\nprecious,10,cymbeline,1609\nCould,10,cymbeline,1609\nthere's,10,cymbeline,1609\nknown,10,cymbeline,1609\nItaly,10,cymbeline,1609\nonly,10,cymbeline,1609\nwar,10,cymbeline,1609\nCan,10,cymbeline,1609\nfound,10,cymbeline,1609\nBrother,10,cymbeline,1609\nfall,10,cymbeline,1609\nplease,10,cymbeline,1609\nCymbeline's,10,cymbeline,1609\nhour,10,cymbeline,1609\ngiven,10,cymbeline,1609\nhold,10,cymbeline,1609\nPray,10,cymbeline,1609\ncold,10,cymbeline,1609\ntook,11,cymbeline,1609\nfriends,11,cymbeline,1609\nyears,11,cymbeline,1609\nhighness,11,cymbeline,1609\ncall,11,cymbeline,1609\nNor,11,cymbeline,1609\nfurther,11,cymbeline,1609\nagainst,11,cymbeline,1609\nset,11,cymbeline,1609\nworth,11,cymbeline,1609\nfellow,11,cymbeline,1609\nborn,11,cymbeline,1609\nsun,11,cymbeline,1609\nbring,11,cymbeline,1609\nheaven,11,cymbeline,1609\nsince,11,cymbeline,1609\ntribute,11,cymbeline,1609\nBritons,11,cymbeline,1609\nsaid,11,cymbeline,1609\ndear,11,cymbeline,1609\nlost,11,cymbeline,1609\nwelcome,11,cymbeline,1609\nAre,11,cymbeline,1609\ntender,11,cymbeline,1609\nthings,11,cymbeline,1609\nHaven,11,cymbeline,1609\nWe'll,11,cymbeline,1609\nWell,11,cymbeline,1609\nletter,11,cymbeline,1609\nword,11,cymbeline,1609\npalace,11,cymbeline,1609\ncomfort,11,cymbeline,1609\nlay,11,cymbeline,1609\nsweet,11,cymbeline,1609\nmakes,11,cymbeline,1609\nfollow,11,cymbeline,1609\nshalt,11,cymbeline,1609\nthe,779,cymbeline,1609\nFrenchman,12,cymbeline,1609\nboys,12,cymbeline,1609\nhers,12,cymbeline,1609\nMust,12,cymbeline,1609\nsure,12,cymbeline,1609\nThough,12,cymbeline,1609\nfriend,12,cymbeline,1609\nchamber,12,cymbeline,1609\nIII,12,cymbeline,1609\ngold,12,cymbeline,1609\ngave,12,cymbeline,1609\nair,12,cymbeline,1609\nthat's,12,cymbeline,1609\nhard,12,cymbeline,1609\ncall'd,12,cymbeline,1609\npresent,12,cymbeline,1609\nnote,12,cymbeline,1609\nSome,12,cymbeline,1609\nmind,12,cymbeline,1609\nThey,12,cymbeline,1609\nWere,12,cymbeline,1609\nnear,12,cymbeline,1609\nheard,12,cymbeline,1609\nthank,12,cymbeline,1609\nhonest,12,cymbeline,1609\nreturn,12,cymbeline,1609\nwithout,12,cymbeline,1609\nwoman,12,cymbeline,1609\nhimself,12,cymbeline,1609\nto,524,cymbeline,1609\nanswer,13,cymbeline,1609\nNay,13,cymbeline,1609\npeace,13,cymbeline,1609\nevery,13,cymbeline,1609\nWould,13,cymbeline,1609\nUpon,13,cymbeline,1609\ncame,13,cymbeline,1609\nheavens,13,cymbeline,1609\nHere,13,cymbeline,1609\nsword,13,cymbeline,1609\nmean,13,cymbeline,1609\nsick,13,cymbeline,1609\nWhat's,13,cymbeline,1609\nboy,13,cymbeline,1609\nblood,13,cymbeline,1609\nLords,13,cymbeline,1609\nLucius,13,cymbeline,1609\nthree,13,cymbeline,1609\nfly,13,cymbeline,1609\npurpose,13,cymbeline,1609\nCaptain,13,cymbeline,1609\non't,13,cymbeline,1609\nlive,13,cymbeline,1609\nCymbeline,13,cymbeline,1609\nstrange,13,cymbeline,1609\npray,14,cymbeline,1609\nwords,14,cymbeline,1609\nbrother,14,cymbeline,1609\nenough,14,cymbeline,1609\nRe,14,cymbeline,1609\ni',14,cymbeline,1609\nhast,14,cymbeline,1609\nRome,14,cymbeline,1609\nstand,14,cymbeline,1609\nfair,14,cymbeline,1609\nground,14,cymbeline,1609\ngentleman,14,cymbeline,1609\nCaesar,14,cymbeline,1609\nGaoler,14,cymbeline,1609\nseen,14,cymbeline,1609\ntogether,14,cymbeline,1609\nCloten,14,cymbeline,1609\nnot,270,cymbeline,1609\nthought,15,cymbeline,1609\nsons,15,cymbeline,1609\nWas,15,cymbeline,1609\nThere,15,cymbeline,1609\ntell,15,cymbeline,1609\nAy,15,cymbeline,1609\nGood,15,cymbeline,1609\nleft,15,cymbeline,1609\neye,15,cymbeline,1609\nSir,15,cymbeline,1609\nyouth,15,cymbeline,1609\nJupiter,15,cymbeline,1609\nfit,15,cymbeline,1609\nhope,15,cymbeline,1609\nlie,15,cymbeline,1609\nvillain,16,cymbeline,1609\ncave,16,cymbeline,1609\nCORNELIUS,16,cymbeline,1609\nafter,16,cymbeline,1609\nworthy,16,cymbeline,1609\nhence,16,cymbeline,1609\ndown,16,cymbeline,1609\nany,16,cymbeline,1609\nnone,16,cymbeline,1609\nyours,16,cymbeline,1609\nThen,16,cymbeline,1609\nbefore,16,cymbeline,1609\neven,16,cymbeline,1609\nday,16,cymbeline,1609\nnature,16,cymbeline,1609\nmight,16,cymbeline,1609\nhead,17,cymbeline,1609\nbetter,17,cymbeline,1609\naway,17,cymbeline,1609\ndaughter,17,cymbeline,1609\nboth,17,cymbeline,1609\nnight,17,cymbeline,1609\npart,17,cymbeline,1609\nend,17,cymbeline,1609\ncomes,17,cymbeline,1609\nold,17,cymbeline,1609\never,17,cymbeline,1609\nPHILARIO,17,cymbeline,1609\npoor,17,cymbeline,1609\nThy,17,cymbeline,1609\nMilford,18,cymbeline,1609\nNot,18,cymbeline,1609\nservice,18,cymbeline,1609\ngone,18,cymbeline,1609\ndoth,18,cymbeline,1609\nless,18,cymbeline,1609\nkeep,18,cymbeline,1609\nMore,18,cymbeline,1609\nLady,18,cymbeline,1609\nThan,18,cymbeline,1609\nHath,18,cymbeline,1609\nfar,18,cymbeline,1609\nreport,18,cymbeline,1609\ninto,18,cymbeline,1609\neyes,18,cymbeline,1609\nmadam,18,cymbeline,1609\nhear,19,cymbeline,1609\nbed,19,cymbeline,1609\nenter,19,cymbeline,1609\nput,19,cymbeline,1609\nlook,19,cymbeline,1609\nlong,19,cymbeline,1609\nplace,19,cymbeline,1609\nmyself,19,cymbeline,1609\nring,19,cymbeline,1609\nLet,19,cymbeline,1609\nrather,20,cymbeline,1609\nCome,20,cymbeline,1609\nname,20,cymbeline,1609\nnoble,20,cymbeline,1609\nstill,20,cymbeline,1609\noff,20,cymbeline,1609\nwhom,20,cymbeline,1609\nmen,20,cymbeline,1609\ndie,20,cymbeline,1609\nWill,21,cymbeline,1609\nworld,21,cymbeline,1609\nmother,21,cymbeline,1609\nOur,21,cymbeline,1609\nbest,21,cymbeline,1609\nvery,21,cymbeline,1609\nway,21,cymbeline,1609\nGentleman,21,cymbeline,1609\ncannot,21,cymbeline,1609\nwhose,22,cymbeline,1609\nOr,22,cymbeline,1609\ndead,22,cymbeline,1609\nthough,22,cymbeline,1609\nFrom,22,cymbeline,1609\nmany,22,cymbeline,1609\n'Tis,22,cymbeline,1609\nfirst,22,cymbeline,1609\nother,22,cymbeline,1609\nthose,23,cymbeline,1609\nHave,23,cymbeline,1609\nShe,23,cymbeline,1609\ncould,23,cymbeline,1609\nthus,23,cymbeline,1609\nin,279,cymbeline,1609\ndone,24,cymbeline,1609\ngive,24,cymbeline,1609\nagain,24,cymbeline,1609\nAll,24,cymbeline,1609\nWhere,24,cymbeline,1609\nPisanio,25,cymbeline,1609\nWhy,25,cymbeline,1609\nfear,25,cymbeline,1609\nfalse,25,cymbeline,1609\nnever,25,cymbeline,1609\nImogen,25,cymbeline,1609\ngo,25,cymbeline,1609\nLeonatus,25,cymbeline,1609\ngreat,25,cymbeline,1609\nmistress,26,cymbeline,1609\nWho,26,cymbeline,1609\ndeath,26,cymbeline,1609\nnothing,26,cymbeline,1609\nson,26,cymbeline,1609\nHis,26,cymbeline,1609\nBe,26,cymbeline,1609\nWe,26,cymbeline,1609\nwhere,26,cymbeline,1609\nleave,26,cymbeline,1609\n',27,cymbeline,1609\nCAIUS,27,cymbeline,1609\nhand,27,cymbeline,1609\nACT,27,cymbeline,1609\ncourt,27,cymbeline,1609\nfind,27,cymbeline,1609\nmaster,27,cymbeline,1609\nWhen,27,cymbeline,1609\nheart,28,cymbeline,1609\nown,28,cymbeline,1609\nqueen,28,cymbeline,1609\nSCENE,28,cymbeline,1609\nhonour,29,cymbeline,1609\nthese,29,cymbeline,1609\nlove,29,cymbeline,1609\nart,29,cymbeline,1609\nnor,29,cymbeline,1609\nwho,29,cymbeline,1609\nmuch,30,cymbeline,1609\nAside,30,cymbeline,1609\nsee,30,cymbeline,1609\nup,30,cymbeline,1609\nspeak,30,cymbeline,1609\nRoman,30,cymbeline,1609\nsay,31,cymbeline,1609\nIt,31,cymbeline,1609\nhow,31,cymbeline,1609\ntrue,31,cymbeline,1609\ntwo,31,cymbeline,1609\nlife,32,cymbeline,1609\nExeunt,32,cymbeline,1609\ngods,32,cymbeline,1609\nfather,32,cymbeline,1609\nlady,32,cymbeline,1609\n'tis,33,cymbeline,1609\nthing,33,cymbeline,1609\nLUCIUS,33,cymbeline,1609\nlet,33,cymbeline,1609\nand,545,cymbeline,1609\nbeen,34,cymbeline,1609\nan,34,cymbeline,1609\nExit,34,cymbeline,1609\nBy,35,cymbeline,1609\nYour,35,cymbeline,1609\nBritain,35,cymbeline,1609\nthink,35,cymbeline,1609\nout,35,cymbeline,1609\ncome,35,cymbeline,1609\nIn,36,cymbeline,1609\nPosthumus,36,cymbeline,1609\no',36,cymbeline,1609\nwell,36,cymbeline,1609\nmay,36,cymbeline,1609\nwhen,36,cymbeline,1609\nking,36,cymbeline,1609\nsome,37,cymbeline,1609\ncan,37,cymbeline,1609\nmost,37,cymbeline,1609\nQUEEN,37,cymbeline,1609\nbeing,39,cymbeline,1609\nthere,40,cymbeline,1609\nmine,40,cymbeline,1609\ntake,40,cymbeline,1609\nSecond,41,cymbeline,1609\nIs,42,cymbeline,1609\nNo,43,cymbeline,1609\nHe,43,cymbeline,1609\nWhich,43,cymbeline,1609\nmade,44,cymbeline,1609\nupon,45,cymbeline,1609\nMy,45,cymbeline,1609\nThis,45,cymbeline,1609\ntime,45,cymbeline,1609\nknow,46,cymbeline,1609\nwere,46,cymbeline,1609\nFor,47,cymbeline,1609\nmust,48,cymbeline,1609\nLord,48,cymbeline,1609\ntoo,48,cymbeline,1609\nWith,49,cymbeline,1609\nIf,49,cymbeline,1609\nHow,49,cymbeline,1609\ndid,49,cymbeline,1609\nOf,50,cymbeline,1609\nyet,50,cymbeline,1609\nSo,51,cymbeline,1609\nEnter,51,cymbeline,1609\nsuch,52,cymbeline,1609\nthey,53,cymbeline,1609\nman,53,cymbeline,1609\nlike,54,cymbeline,1609\nnow,54,cymbeline,1609\nhere,55,cymbeline,1609\nmake,56,cymbeline,1609\nthen,57,cymbeline,1609\nlord,57,cymbeline,1609\nAs,58,cymbeline,1609\ntheir,58,cymbeline,1609\nshould,58,cymbeline,1609\nThou,58,cymbeline,1609\nhath,60,cymbeline,1609\nWhat,60,cymbeline,1609\nYou,61,cymbeline,1609\nif,61,cymbeline,1609\nwhat,61,cymbeline,1609\nFirst,62,cymbeline,1609\nARVIRAGUS,64,cymbeline,1609\nwould,65,cymbeline,1609\none,67,cymbeline,1609\ngood,68,cymbeline,1609\nI'll,68,cymbeline,1609\nus,69,cymbeline,1609\nthem,71,cymbeline,1609\nthan,73,cymbeline,1609\nhad,73,cymbeline,1609\nor,73,cymbeline,1609\nBELARIUS,73,cymbeline,1609\nat,74,cymbeline,1609\nGUIDERIUS,76,cymbeline,1609\nsir,77,cymbeline,1609\nO,78,cymbeline,1609\nPISANIO,79,cymbeline,1609\nshe,80,cymbeline,1609\nwhich,81,cymbeline,1609\nmy,337,cymbeline,1609\nshall,82,cymbeline,1609\ndo,83,cymbeline,1609\nam,85,cymbeline,1609\nthee,86,cymbeline,1609\nwe,86,cymbeline,1609\nBut,87,cymbeline,1609\nIACHIMO,89,cymbeline,1609\nA,90,cymbeline,1609\nmore,90,cymbeline,1609\nby,91,cymbeline,1609\nCLOTEN,91,cymbeline,1609\nfrom,91,cymbeline,1609\nyou,347,cymbeline,1609\nLEONATUS,92,cymbeline,1609\nPOSTHUMUS,92,cymbeline,1609\nno,92,cymbeline,1609\non,92,cymbeline,1609\nall,95,cymbeline,1609\nwill,97,cymbeline,1609\nwas,103,cymbeline,1609\nare,105,cymbeline,1609\nour,105,cymbeline,1609\nthou,107,cymbeline,1609\nThat,113,cymbeline,1609\nthy,114,cymbeline,1609\nCYMBELINE,124,cymbeline,1609\na,389,cymbeline,1609\nIMOGEN,137,cymbeline,1609\nbut,142,cymbeline,1609\nTo,150,cymbeline,1609\nhe,156,cymbeline,1609\nso,159,cymbeline,1609\nwith,169,cymbeline,1609\nAnd,170,cymbeline,1609\nthis,175,cymbeline,1609\nhim,175,cymbeline,1609\nas,178,cymbeline,1609\nhis,182,cymbeline,1609\nI,700,cymbeline,1609\nfor,190,cymbeline,1609\nher,191,cymbeline,1609\nThe,192,cymbeline,1609\nhave,194,cymbeline,1609\nyour,198,cymbeline,1609\nof,477,cymbeline,1609\nme,228,cymbeline,1609\nbe,234,cymbeline,1609\nis,249,cymbeline,1609\nit,249,cymbeline,1609\nthat,252,cymbeline,1609\nattended,1,coriolanus,1607\nplagues,1,coriolanus,1607\ntreason,1,coriolanus,1607\ndischarged,1,coriolanus,1607\nunelected,1,coriolanus,1607\nevent,1,coriolanus,1607\nheed,1,coriolanus,1607\ntimed,1,coriolanus,1607\nregard,1,coriolanus,1607\nbrawn,1,coriolanus,1607\nTouching,1,coriolanus,1607\nCholer,1,coriolanus,1607\narmies,1,coriolanus,1607\ndaws,1,coriolanus,1607\n'larum,1,coriolanus,1607\ntomb,1,coriolanus,1607\nchairs,1,coriolanus,1607\nparted,1,coriolanus,1607\nunreasonably,1,coriolanus,1607\nBrutus,1,coriolanus,1607\nadvised,1,coriolanus,1607\nvenomous,1,coriolanus,1607\nmeed,1,coriolanus,1607\nX,1,coriolanus,1607\nmuster,1,coriolanus,1607\nhappier,1,coriolanus,1607\nunsaluted,1,coriolanus,1607\nconfused,1,coriolanus,1607\ngodded,1,coriolanus,1607\nnothings,1,coriolanus,1607\njoin,1,coriolanus,1607\nFlutter'd,1,coriolanus,1607\ncoign,1,coriolanus,1607\ntaking,1,coriolanus,1607\nbitterest,1,coriolanus,1607\ndays,1,coriolanus,1607\nLonger,1,coriolanus,1607\nsafeguard,1,coriolanus,1607\npestilence,1,coriolanus,1607\nplaceth,1,coriolanus,1607\nfancy,1,coriolanus,1607\ninfant,1,coriolanus,1607\ninfected,1,coriolanus,1607\ndames,1,coriolanus,1607\ndarest,1,coriolanus,1607\nLoved,1,coriolanus,1607\nAmazonian,1,coriolanus,1607\npriority,1,coriolanus,1607\ncomposition,1,coriolanus,1607\nfathers,1,coriolanus,1607\ndoubly,1,coriolanus,1607\ncounterfeitly,1,coriolanus,1607\nyielding,1,coriolanus,1607\nbelongs,1,coriolanus,1607\nresist,1,coriolanus,1607\ntruer,1,coriolanus,1607\nnecessities,1,coriolanus,1607\nmuck,1,coriolanus,1607\ntremble,1,coriolanus,1607\nScandal'd,1,coriolanus,1607\nwears,1,coriolanus,1607\ninveterate,1,coriolanus,1607\nbereaves,1,coriolanus,1607\nbleed'st,1,coriolanus,1607\nplanted,1,coriolanus,1607\nburn'd,1,coriolanus,1607\nfoxes,1,coriolanus,1607\nsplinters,1,coriolanus,1607\ntwin,1,coriolanus,1607\nAlas,1,coriolanus,1607\nunburied,1,coriolanus,1607\nquietness,1,coriolanus,1607\nfactions,1,coriolanus,1607\nlament,1,coriolanus,1607\nknell,1,coriolanus,1607\nbrats,1,coriolanus,1607\nbleared,1,coriolanus,1607\nyoungly,1,coriolanus,1607\nfinished,1,coriolanus,1607\nShall's,1,coriolanus,1607\ntorn,1,coriolanus,1607\nBolder,1,coriolanus,1607\nentire,1,coriolanus,1607\nbrown,1,coriolanus,1607\nCensorinus,1,coriolanus,1607\nalack,1,coriolanus,1607\npitying,1,coriolanus,1607\nFix,1,coriolanus,1607\nunborn,1,coriolanus,1607\nwitchcraft's,1,coriolanus,1607\n'Beseech,1,coriolanus,1607\nMessengers,1,coriolanus,1607\nbones,1,coriolanus,1607\nEmbarquements,1,coriolanus,1607\npurge,1,coriolanus,1607\nlabours,1,coriolanus,1607\nfoolery,1,coriolanus,1607\nbreathless,1,coriolanus,1607\nsupport,1,coriolanus,1607\nobstinate,1,coriolanus,1607\nbedward,1,coriolanus,1607\nforbad,1,coriolanus,1607\nrascal,1,coriolanus,1607\nhealth,1,coriolanus,1607\nDespising,1,coriolanus,1607\nrod,1,coriolanus,1607\nmend,1,coriolanus,1607\nheart's,1,coriolanus,1607\napprehended,1,coriolanus,1607\nBeat,1,coriolanus,1607\nspoons,1,coriolanus,1607\nroar,1,coriolanus,1607\nassistance,1,coriolanus,1607\nmuse,1,coriolanus,1607\ntrivial,1,coriolanus,1607\nwaxed,1,coriolanus,1607\neasily,1,coriolanus,1607\nmarvell'd,1,coriolanus,1607\nvillain,1,coriolanus,1607\nhush'd,1,coriolanus,1607\nbutchers,1,coriolanus,1607\ntesty,1,coriolanus,1607\ncypress,1,coriolanus,1607\njot,1,coriolanus,1607\nconstruction,1,coriolanus,1607\nspeedy,1,coriolanus,1607\nSubscribed,1,coriolanus,1607\nNever,1,coriolanus,1607\ndestroyer,1,coriolanus,1607\nswifter,1,coriolanus,1607\nharrow,1,coriolanus,1607\nPermitted,1,coriolanus,1607\nStay,1,coriolanus,1607\nlaughter,1,coriolanus,1607\nwarning,1,coriolanus,1607\nshunning,1,coriolanus,1607\ntwos,1,coriolanus,1607\nentered,1,coriolanus,1607\nflung,1,coriolanus,1607\nunaching,1,coriolanus,1607\nseason'd,1,coriolanus,1607\nexceeds,1,coriolanus,1607\nenigma,1,coriolanus,1607\ntoge,1,coriolanus,1607\nmiss'd,1,coriolanus,1607\nsingly,1,coriolanus,1607\nUnbuckling,1,coriolanus,1607\nsleepy,1,coriolanus,1607\nNeptune,1,coriolanus,1607\nwrites,1,coriolanus,1607\nyounger,1,coriolanus,1607\nosprey,1,coriolanus,1607\nHonourable,1,coriolanus,1607\njoint,1,coriolanus,1607\npainted,1,coriolanus,1607\nWhereby,1,coriolanus,1607\nclothes,1,coriolanus,1607\ncalmness,1,coriolanus,1607\nvail,1,coriolanus,1607\n'Come,1,coriolanus,1607\ninfringe,1,coriolanus,1607\nrichest,1,coriolanus,1607\ndenials,1,coriolanus,1607\ngroan,1,coriolanus,1607\ncranks,1,coriolanus,1607\ntrunk,1,coriolanus,1607\nimitate,1,coriolanus,1607\nvain,1,coriolanus,1607\nproceedings,1,coriolanus,1607\ndropp'd,1,coriolanus,1607\nspake,1,coriolanus,1607\nmere,1,coriolanus,1607\ndecay,1,coriolanus,1607\nSupplied,1,coriolanus,1607\nEspecially,1,coriolanus,1607\nunwholesome,1,coriolanus,1607\nprisoner,1,coriolanus,1607\nsighs,1,coriolanus,1607\nsowl,1,coriolanus,1607\nedifices,1,coriolanus,1607\nSeducing,1,coriolanus,1607\nprosperous,1,coriolanus,1607\nerrand,1,coriolanus,1607\nutterance,1,coriolanus,1607\ncomest,1,coriolanus,1607\nlearn'd,1,coriolanus,1607\nmarketplace,1,coriolanus,1607\nanswering,1,coriolanus,1607\nbrook,1,coriolanus,1607\nalias,1,coriolanus,1607\nHeld,1,coriolanus,1607\nrumour,1,coriolanus,1607\nFan,1,coriolanus,1607\nbrood,1,coriolanus,1607\naccidentally,1,coriolanus,1607\nWife,1,coriolanus,1607\nhanged,1,coriolanus,1607\nslander,1,coriolanus,1607\nadvance,1,coriolanus,1607\nblanks,1,coriolanus,1607\nunderstand,1,coriolanus,1607\nallowance,1,coriolanus,1607\nResolved,1,coriolanus,1607\nUnknown,1,coriolanus,1607\nconducted,1,coriolanus,1607\nthemes,1,coriolanus,1607\nYielded,1,coriolanus,1607\nflow,1,coriolanus,1607\nlick,1,coriolanus,1607\nalthough,1,coriolanus,1607\nfury,1,coriolanus,1607\nyears',1,coriolanus,1607\nsigns,1,coriolanus,1607\ncharter,1,coriolanus,1607\nsingularity,1,coriolanus,1607\npleaders,1,coriolanus,1607\ninsurrections,1,coriolanus,1607\nsuggest,1,coriolanus,1607\nVerily,1,coriolanus,1607\nterrible,1,coriolanus,1607\ntaunts,1,coriolanus,1607\nyonder,1,coriolanus,1607\nMortal,1,coriolanus,1607\nbaits,1,coriolanus,1607\nravish,1,coriolanus,1607\npress,1,coriolanus,1607\nadvise,1,coriolanus,1607\nbosom's,1,coriolanus,1607\nodds,1,coriolanus,1607\niron,1,coriolanus,1607\ntribunes',1,coriolanus,1607\nAudience,1,coriolanus,1607\nstools,1,coriolanus,1607\npleasures,1,coriolanus,1607\nstamp'd,1,coriolanus,1607\nCondemning,1,coriolanus,1607\nhardiness,1,coriolanus,1607\nsupplication,1,coriolanus,1607\nkinder,1,coriolanus,1607\nrates,1,coriolanus,1607\nthirst,1,coriolanus,1607\nacclamations,1,coriolanus,1607\ndisobedience,1,coriolanus,1607\ninvested,1,coriolanus,1607\nlulls,1,coriolanus,1607\nbower,1,coriolanus,1607\nPERSONAE,1,coriolanus,1607\nchurchyard,1,coriolanus,1607\nconsidering,1,coriolanus,1607\npouring,1,coriolanus,1607\nAnger's,1,coriolanus,1607\ngreyhound,1,coriolanus,1607\nInsolent,1,coriolanus,1607\nbaited,1,coriolanus,1607\nO'erborne,1,coriolanus,1607\ncrutch,1,coriolanus,1607\nLesser,1,coriolanus,1607\nrub,1,coriolanus,1607\nunlikely,1,coriolanus,1607\nconvented,1,coriolanus,1607\nScout,1,coriolanus,1607\ncase,1,coriolanus,1607\nEndue,1,coriolanus,1607\nCalmly,1,coriolanus,1607\nthumb,1,coriolanus,1607\nteaches,1,coriolanus,1607\noldest,1,coriolanus,1607\nutter'd,1,coriolanus,1607\nattempt,1,coriolanus,1607\nCarry,1,coriolanus,1607\nrepulse,1,coriolanus,1607\nregions,1,coriolanus,1607\npleasing,1,coriolanus,1607\ntitleless,1,coriolanus,1607\nvast,1,coriolanus,1607\ninterrupted,1,coriolanus,1607\nstirring,1,coriolanus,1607\ncomes't,1,coriolanus,1607\ndelivered,1,coriolanus,1607\npassions,1,coriolanus,1607\nchin,1,coriolanus,1607\ncounter,1,coriolanus,1607\nVIII,1,coriolanus,1607\nsanctifies,1,coriolanus,1607\ngraces,1,coriolanus,1607\npalates,1,coriolanus,1607\nrejourn,1,coriolanus,1607\nshrinks,1,coriolanus,1607\nhonester,1,coriolanus,1607\ngraced,1,coriolanus,1607\nsurfeit,1,coriolanus,1607\nCoin,1,coriolanus,1607\nbirth,1,coriolanus,1607\npatroness,1,coriolanus,1607\nsad,1,coriolanus,1607\nfeels,1,coriolanus,1607\nconscience,1,coriolanus,1607\njest,1,coriolanus,1607\npins,1,coriolanus,1607\nspawn,1,coriolanus,1607\npint,1,coriolanus,1607\nstock,1,coriolanus,1607\ncan't,1,coriolanus,1607\ncarbon,1,coriolanus,1607\nenemies',1,coriolanus,1607\nseconded,1,coriolanus,1607\nsole,1,coriolanus,1607\n'What,1,coriolanus,1607\nsold,1,coriolanus,1607\nthousands,1,coriolanus,1607\ngrove,1,coriolanus,1607\ndissentious,1,coriolanus,1607\ncharms,1,coriolanus,1607\nopposer,1,coriolanus,1607\nrelieve,1,coriolanus,1607\nmastership,1,coriolanus,1607\n'Stay,1,coriolanus,1607\nstream,1,coriolanus,1607\nDeucalion,1,coriolanus,1607\nlink,1,coriolanus,1607\nhour's,1,coriolanus,1607\nfortunate,1,coriolanus,1607\natone,1,coriolanus,1607\nprosperously,1,coriolanus,1607\nlamentation,1,coriolanus,1607\nunswept,1,coriolanus,1607\nGentry,1,coriolanus,1607\nProvoked,1,coriolanus,1607\ncorner,1,coriolanus,1607\ncrying,1,coriolanus,1607\nlimb,1,coriolanus,1607\namended,1,coriolanus,1607\nassemble,1,coriolanus,1607\nYe're,1,coriolanus,1607\nbrother,1,coriolanus,1607\nthou'rt,1,coriolanus,1607\nKeep,1,coriolanus,1607\nproceeds,1,coriolanus,1607\nrestrain'st,1,coriolanus,1607\nsubjects,1,coriolanus,1607\ncorse,1,coriolanus,1607\nrestitution,1,coriolanus,1607\nhabits,1,coriolanus,1607\nfunction,1,coriolanus,1607\nawry,1,coriolanus,1607\nstalls,1,coriolanus,1607\npossessed,1,coriolanus,1607\nheal,1,coriolanus,1607\nheighten'd,1,coriolanus,1607\nbudge,1,coriolanus,1607\nCorn,1,coriolanus,1607\nrein'd,1,coriolanus,1607\nenemy's,1,coriolanus,1607\nFor's,1,coriolanus,1607\nreechy,1,coriolanus,1607\nhusewife,1,coriolanus,1607\nVolumnia,1,coriolanus,1607\nsofter,1,coriolanus,1607\ndemands,1,coriolanus,1607\npaper,1,coriolanus,1607\ndesperation,1,coriolanus,1607\npipe,1,coriolanus,1607\nhanging,1,coriolanus,1607\nYield,1,coriolanus,1607\nsuffrage,1,coriolanus,1607\nsixteen,1,coriolanus,1607\nTake't,1,coriolanus,1607\nteach,1,coriolanus,1607\ntarget,1,coriolanus,1607\n'Tear,1,coriolanus,1607\nbenefits,1,coriolanus,1607\nTyrannical,1,coriolanus,1607\nblessed,1,coriolanus,1607\nfreedom,1,coriolanus,1607\ncontrol't,1,coriolanus,1607\nwait,1,coriolanus,1607\nwail,1,coriolanus,1607\narithmetic,1,coriolanus,1607\nSenate,1,coriolanus,1607\nkin,1,coriolanus,1607\nslippery,1,coriolanus,1607\nasker,1,coriolanus,1607\nblack,1,coriolanus,1607\nasked,1,coriolanus,1607\ngeneral's,1,coriolanus,1607\nherdsmen,1,coriolanus,1607\nwidow'd,1,coriolanus,1607\nmoving,1,coriolanus,1607\ncounterpoise,1,coriolanus,1607\nbatten,1,coriolanus,1607\nunholy,1,coriolanus,1607\ngroats,1,coriolanus,1607\nWin,1,coriolanus,1607\ncities,1,coriolanus,1607\nmonster's,1,coriolanus,1607\ntowns,1,coriolanus,1607\ndiscovery,1,coriolanus,1607\nfamously,1,coriolanus,1607\npursuing,1,coriolanus,1607\nhandling,1,coriolanus,1607\nplucked,1,coriolanus,1607\nshamed,1,coriolanus,1607\nweaker,1,coriolanus,1607\nrarest,1,coriolanus,1607\nMistake,1,coriolanus,1607\nsummon'd,1,coriolanus,1607\nsmoking,1,coriolanus,1607\ncenturies,1,coriolanus,1607\nAttach,1,coriolanus,1607\nshames,1,coriolanus,1607\ncannibally,1,coriolanus,1607\nI'd,1,coriolanus,1607\nwhatsoever,1,coriolanus,1607\ntalked,1,coriolanus,1607\nwounds',1,coriolanus,1607\nconcealment,1,coriolanus,1607\nreturned,1,coriolanus,1607\nPhoebus',1,coriolanus,1607\nviolently,1,coriolanus,1607\nBeyond,1,coriolanus,1607\npretences,1,coriolanus,1607\nages,1,coriolanus,1607\nlaugh'd,1,coriolanus,1607\nsubdues,1,coriolanus,1607\nedicts,1,coriolanus,1607\nbastard,1,coriolanus,1607\nsaddle,1,coriolanus,1607\nscourge,1,coriolanus,1607\ndeity,1,coriolanus,1607\nwalk,1,coriolanus,1607\nwall,1,coriolanus,1607\ninvention,1,coriolanus,1607\nsew,1,coriolanus,1607\nfatigate,1,coriolanus,1607\nmerry,1,coriolanus,1607\nvice,1,coriolanus,1607\nmonster'd,1,coriolanus,1607\ndeceived,1,coriolanus,1607\ncoals,1,coriolanus,1607\nfactionary,1,coriolanus,1607\narguing,1,coriolanus,1607\nDeserved,1,coriolanus,1607\nthrongs,1,coriolanus,1607\nDo't,1,coriolanus,1607\ncatching,1,coriolanus,1607\nMeasureless,1,coriolanus,1607\nbutts,1,coriolanus,1607\nkneel'd,1,coriolanus,1607\nunclog,1,coriolanus,1607\naudit,1,coriolanus,1607\nvaliantness,1,coriolanus,1607\nthrong,1,coriolanus,1607\nAside,1,coriolanus,1607\nIrons,1,coriolanus,1607\nThou'ldst,1,coriolanus,1607\nlions,1,coriolanus,1607\ndoubtless,1,coriolanus,1607\ndisposed,1,coriolanus,1607\nThinking,1,coriolanus,1607\nnine,1,coriolanus,1607\nperfidiously,1,coriolanus,1607\nlove's,1,coriolanus,1607\nactor,1,coriolanus,1607\nfidiused,1,coriolanus,1607\nMildly,1,coriolanus,1607\nconfirmed,1,coriolanus,1607\ncombine,1,coriolanus,1607\nMeeting,1,coriolanus,1607\nMangles,1,coriolanus,1607\nembrace,1,coriolanus,1607\nrequest's,1,coriolanus,1607\ndelivers,1,coriolanus,1607\nsoothed,1,coriolanus,1607\nscorn'd,1,coriolanus,1607\nstripes,1,coriolanus,1607\ndisplace,1,coriolanus,1607\ntatter,1,coriolanus,1607\nsalve,1,coriolanus,1607\nexperienced,1,coriolanus,1607\nMerely,1,coriolanus,1607\nVagabond,1,coriolanus,1607\nbringing,1,coriolanus,1607\nwinds,1,coriolanus,1607\nfollower,1,coriolanus,1607\nraised,1,coriolanus,1607\naugurer,1,coriolanus,1607\npotch,1,coriolanus,1607\ncedars,1,coriolanus,1607\nlooking,1,coriolanus,1607\nLictors,1,coriolanus,1607\napparent,1,coriolanus,1607\n'O,1,coriolanus,1607\nenroll'd,1,coriolanus,1607\ncounsel,1,coriolanus,1607\nbelonging,1,coriolanus,1607\nattends,1,coriolanus,1607\nprocured,1,coriolanus,1607\nfosset,1,coriolanus,1607\nsued,1,coriolanus,1607\ndesign,1,coriolanus,1607\nHeavens,1,coriolanus,1607\npermit,1,coriolanus,1607\ncompetency,1,coriolanus,1607\nextremities,1,coriolanus,1607\nmiddle,1,coriolanus,1607\ncenturions,1,coriolanus,1607\nwager,1,coriolanus,1607\nHowsoever,1,coriolanus,1607\ninstruct,1,coriolanus,1607\nwings,1,coriolanus,1607\ngroans,1,coriolanus,1607\nPenelope,1,coriolanus,1607\nsets,1,coriolanus,1607\nO'ercome,1,coriolanus,1607\nThanks,1,coriolanus,1607\nfellest,1,coriolanus,1607\nhorses',1,coriolanus,1607\nfens,1,coriolanus,1607\nstuff,1,coriolanus,1607\nHear'st,1,coriolanus,1607\nbecomes,1,coriolanus,1607\nSlew,1,coriolanus,1607\nBreaking,1,coriolanus,1607\nbewray,1,coriolanus,1607\naffect,1,coriolanus,1607\ndaughter's,1,coriolanus,1607\nappear'd,1,coriolanus,1607\nmutually,1,coriolanus,1607\ninduced,1,coriolanus,1607\npurchasing,1,coriolanus,1607\nstuck,1,coriolanus,1607\nseats,1,coriolanus,1607\nRights,1,coriolanus,1607\ncolder,1,coriolanus,1607\nmellow,1,coriolanus,1607\ngaoler,1,coriolanus,1607\nvile,1,coriolanus,1607\nKindly,1,coriolanus,1607\nwedged,1,coriolanus,1607\nsprang,1,coriolanus,1607\nbroils,1,coriolanus,1607\nstandest,1,coriolanus,1607\nburdens,1,coriolanus,1607\nwaged,1,coriolanus,1607\ncompound,1,coriolanus,1607\ngetter,1,coriolanus,1607\nembracements,1,coriolanus,1607\nUpon's,1,coriolanus,1607\nPlough,1,coriolanus,1607\nLearn,1,coriolanus,1607\npasses,1,coriolanus,1607\nbustle,1,coriolanus,1607\nAble,1,coriolanus,1607\nhautboys,1,coriolanus,1607\ndoublets,1,coriolanus,1607\nsnow,1,coriolanus,1607\nfawning,1,coriolanus,1607\ndances,1,coriolanus,1607\nCommit,1,coriolanus,1607\nmonster,1,coriolanus,1607\ncompassion,1,coriolanus,1607\nCato's,1,coriolanus,1607\nprofess,1,coriolanus,1607\nweeded,1,coriolanus,1607\ncambric,1,coriolanus,1607\ncicatrices,1,coriolanus,1607\nshower,1,coriolanus,1607\ntwelve,1,coriolanus,1607\nBestride,1,coriolanus,1607\nguarded,1,coriolanus,1607\nborn,1,coriolanus,1607\nOfficers,1,coriolanus,1607\nwoollen,1,coriolanus,1607\nbore,1,coriolanus,1607\nTush,1,coriolanus,1607\nestimate,1,coriolanus,1607\nWhereof,1,coriolanus,1607\ntreading,1,coriolanus,1607\nkill'd,1,coriolanus,1607\ntuns,1,coriolanus,1607\nsurplus,1,coriolanus,1607\ncomely,1,coriolanus,1607\nTurn,1,coriolanus,1607\narriving,1,coriolanus,1607\nmummers,1,coriolanus,1607\nWash,1,coriolanus,1607\nreek,1,coriolanus,1607\nreel,1,coriolanus,1607\nseller,1,coriolanus,1607\nplots,1,coriolanus,1607\nAufidiuses,1,coriolanus,1607\nvariable,1,coriolanus,1607\nWish,1,coriolanus,1607\nscold,1,coriolanus,1607\nvirgin'd,1,coriolanus,1607\nseeks,1,coriolanus,1607\naffected,1,coriolanus,1607\ndearly,1,coriolanus,1607\nPardon,1,coriolanus,1607\nbribe,1,coriolanus,1607\nWine,1,coriolanus,1607\nexpedition,1,coriolanus,1607\nfruit,1,coriolanus,1607\nswiftness,1,coriolanus,1607\nopposers,1,coriolanus,1607\nconsented,1,coriolanus,1607\nEntrance,1,coriolanus,1607\nwilling,1,coriolanus,1607\ncertainties,1,coriolanus,1607\nproperly,1,coriolanus,1607\nsubsisting,1,coriolanus,1607\nsaw't,1,coriolanus,1607\n'Look,1,coriolanus,1607\nflattered,1,coriolanus,1607\nbestrid,1,coriolanus,1607\ncoloured,1,coriolanus,1607\ntush,1,coriolanus,1607\nservanted,1,coriolanus,1607\nspeechless,1,coriolanus,1607\nmutinies,1,coriolanus,1607\nruth,1,coriolanus,1607\ndisbench'd,1,coriolanus,1607\nrakes,1,coriolanus,1607\ncompanion,1,coriolanus,1607\ndesirers,1,coriolanus,1607\noutdone,1,coriolanus,1607\nfeed,1,coriolanus,1607\nrust,1,coriolanus,1607\nancestor,1,coriolanus,1607\nbowl,1,coriolanus,1607\nprovand,1,coriolanus,1607\nbencher,1,coriolanus,1607\naidless,1,coriolanus,1607\nbeaten,1,coriolanus,1607\nAfterwards,1,coriolanus,1607\nrelish,1,coriolanus,1607\nupon's,1,coriolanus,1607\nlances,1,coriolanus,1607\nmagistrate,1,coriolanus,1607\naccept,1,coriolanus,1607\ntag,1,coriolanus,1607\ngiber,1,coriolanus,1607\nliest',1,coriolanus,1607\nwhisper,1,coriolanus,1607\nlurch'd,1,coriolanus,1607\ncriminal,1,coriolanus,1607\nrubbing,1,coriolanus,1607\ndesignments,1,coriolanus,1607\nwishes,1,coriolanus,1607\nwhined,1,coriolanus,1607\nkam,1,coriolanus,1607\nprized,1,coriolanus,1607\nstuff'd,1,coriolanus,1607\napplause,1,coriolanus,1607\nceremony,1,coriolanus,1607\nBanished,1,coriolanus,1607\nRetire,1,coriolanus,1607\nlanguage,1,coriolanus,1607\nWondrous,1,coriolanus,1607\nLiving,1,coriolanus,1607\nhailstone,1,coriolanus,1607\nkneel,1,coriolanus,1607\nFilling,1,coriolanus,1607\nrend,1,coriolanus,1607\nCrying,1,coriolanus,1607\nsconce,1,coriolanus,1607\nStop,1,coriolanus,1607\nseems,1,coriolanus,1607\ntitle,1,coriolanus,1607\nagreeing,1,coriolanus,1607\nrent,1,coriolanus,1607\nusury,1,coriolanus,1607\nsteal,1,coriolanus,1607\nedge,1,coriolanus,1607\nstead,1,coriolanus,1607\nwipe,1,coriolanus,1607\nFriend,1,coriolanus,1607\naccess,1,coriolanus,1607\nmountainous,1,coriolanus,1607\nUnseparable,1,coriolanus,1607\ndebile,1,coriolanus,1607\nbolt,1,coriolanus,1607\ndies,1,coriolanus,1607\nmalign,1,coriolanus,1607\nrenew,1,coriolanus,1607\ngo'st,1,coriolanus,1607\nrequests,1,coriolanus,1607\nseest,1,coriolanus,1607\nturned,1,coriolanus,1607\nstubble,1,coriolanus,1607\ntyrannical,1,coriolanus,1607\ndied,1,coriolanus,1607\nAccept,1,coriolanus,1607\nthrown,1,coriolanus,1607\neagle,1,coriolanus,1607\ncormorant,1,coriolanus,1607\nthrows,1,coriolanus,1607\nsense,1,coriolanus,1607\nFights,1,coriolanus,1607\nbeating,1,coriolanus,1607\nbidding,1,coriolanus,1607\nwarm,1,coriolanus,1607\nloins,1,coriolanus,1607\nminnows,1,coriolanus,1607\nstocks,1,coriolanus,1607\nConfusion's,1,coriolanus,1607\nBury,1,coriolanus,1607\nbond,1,coriolanus,1607\nbulks,1,coriolanus,1607\ncunning,1,coriolanus,1607\nWave,1,coriolanus,1607\nmelted,1,coriolanus,1607\ndistress,1,coriolanus,1607\ncircumvention,1,coriolanus,1607\njoin'd,1,coriolanus,1607\nmingling,1,coriolanus,1607\nrevel,1,coriolanus,1607\nsteep,1,coriolanus,1607\nt'other,1,coriolanus,1607\nwast,1,coriolanus,1607\nobserve,1,coriolanus,1607\ncreeping,1,coriolanus,1607\nviand,1,coriolanus,1607\nmanhood,1,coriolanus,1607\nframed,1,coriolanus,1607\ntend,1,coriolanus,1607\nschool'd,1,coriolanus,1607\ncolour,1,coriolanus,1607\ncoffin'd,1,coriolanus,1607\ninfirmity,1,coriolanus,1607\ncreated,1,coriolanus,1607\nverdict,1,coriolanus,1607\nDraw,1,coriolanus,1607\nviper,1,coriolanus,1607\nintelligence,1,coriolanus,1607\noffers,1,coriolanus,1607\no'erleap,1,coriolanus,1607\npatch'd,1,coriolanus,1607\ngoddess,1,coriolanus,1607\ntending,1,coriolanus,1607\nRaised,1,coriolanus,1607\napoplexy,1,coriolanus,1607\naspect,1,coriolanus,1607\nvigilant,1,coriolanus,1607\nurge,1,coriolanus,1607\ntwine,1,coriolanus,1607\nabundantly,1,coriolanus,1607\nInsult,1,coriolanus,1607\nDaughter,1,coriolanus,1607\nSentinels,1,coriolanus,1607\nbristled,1,coriolanus,1607\nmistaken,1,coriolanus,1607\ndrove,1,coriolanus,1607\nmulberry,1,coriolanus,1607\ngrind,1,coriolanus,1607\ncontrived,1,coriolanus,1607\nbastards,1,coriolanus,1607\nmarriages,1,coriolanus,1607\nchamber,1,coriolanus,1607\ntapers,1,coriolanus,1607\ncudgel,1,coriolanus,1607\ngratify,1,coriolanus,1607\nfalter,1,coriolanus,1607\nTakes,1,coriolanus,1607\nspectatorship,1,coriolanus,1607\nstatutes,1,coriolanus,1607\nstrongly,1,coriolanus,1607\nHold,1,coriolanus,1607\ndiscreet,1,coriolanus,1607\nphysical,1,coriolanus,1607\nhap,1,coriolanus,1607\ngawded,1,coriolanus,1607\ndrachm,1,coriolanus,1607\nCertainly,1,coriolanus,1607\nbacks,1,coriolanus,1607\nplanet,1,coriolanus,1607\nwanting,1,coriolanus,1607\nA',1,coriolanus,1607\nunmeriting,1,coriolanus,1607\ncarbuncle,1,coriolanus,1607\nUnheard,1,coriolanus,1607\ncrack,1,coriolanus,1607\nDrawn,1,coriolanus,1607\nrivers,1,coriolanus,1607\nhorror's,1,coriolanus,1607\nutter,1,coriolanus,1607\noffend,1,coriolanus,1607\nHydra,1,coriolanus,1607\nCominius',1,coriolanus,1607\ntalks,1,coriolanus,1607\nseventy,1,coriolanus,1607\nchronicle,1,coriolanus,1607\nhereto,1,coriolanus,1607\ninfection,1,coriolanus,1607\ntonight,1,coriolanus,1607\nquarrel,1,coriolanus,1607\ncorslet,1,coriolanus,1607\nSummon,1,coriolanus,1607\nsurety,1,coriolanus,1607\nmolehill,1,coriolanus,1607\nscarce,1,coriolanus,1607\nchaste,1,coriolanus,1607\nbalms,1,coriolanus,1607\nparticularise,1,coriolanus,1607\nWhiles,1,coriolanus,1607\nBecomes,1,coriolanus,1607\nknowing,1,coriolanus,1607\narmy's,1,coriolanus,1607\nshortly,1,coriolanus,1607\nadversaries,1,coriolanus,1607\nwash'd,1,coriolanus,1607\nCounsel,1,coriolanus,1607\nhew,1,coriolanus,1607\nlance,1,coriolanus,1607\nmechanics,1,coriolanus,1607\nbehold'st,1,coriolanus,1607\nhen,1,coriolanus,1607\nsensibly,1,coriolanus,1607\nplough'd,1,coriolanus,1607\n'aged,1,coriolanus,1607\nLo,1,coriolanus,1607\noutweighs,1,coriolanus,1607\nNature,1,coriolanus,1607\nOurselves,1,coriolanus,1607\nwarrior,1,coriolanus,1607\nsensible,1,coriolanus,1607\ninclined,1,coriolanus,1607\nass's,1,coriolanus,1607\ndictator,1,coriolanus,1607\nshunless,1,coriolanus,1607\ncockle,1,coriolanus,1607\npays,1,coriolanus,1607\neternity,1,coriolanus,1607\nproof,1,coriolanus,1607\ninterims,1,coriolanus,1607\nvanquisher,1,coriolanus,1607\ngangrened,1,coriolanus,1607\nin's,1,coriolanus,1607\nscarfs,1,coriolanus,1607\nAdvance,1,coriolanus,1607\nkept,1,coriolanus,1607\ncanst,1,coriolanus,1607\nAnswer,1,coriolanus,1607\nbrings,1,coriolanus,1607\nbegun,1,coriolanus,1607\ntwist,1,coriolanus,1607\nStanding,1,coriolanus,1607\npawn,1,coriolanus,1607\ninterior,1,coriolanus,1607\nhie,1,coriolanus,1607\nTutus,1,coriolanus,1607\nchanged,1,coriolanus,1607\nlesson'd,1,coriolanus,1607\ngoaded,1,coriolanus,1607\ndisturbing,1,coriolanus,1607\nLoaden,1,coriolanus,1607\nflowers,1,coriolanus,1607\nrequired,1,coriolanus,1607\ndemerits,1,coriolanus,1607\napprove,1,coriolanus,1607\nportance,1,coriolanus,1607\nfines,1,coriolanus,1607\nsovereignty,1,coriolanus,1607\npleasure,1,coriolanus,1607\nunroof'd,1,coriolanus,1607\nCustom,1,coriolanus,1607\nrumour'd,1,coriolanus,1607\nIX,1,coriolanus,1607\ndinner,1,coriolanus,1607\nguardant,1,coriolanus,1607\nfortune's,1,coriolanus,1607\nquick,1,coriolanus,1607\nease,1,coriolanus,1607\nbraggart,1,coriolanus,1607\ncuckolds,1,coriolanus,1607\nproverbs,1,coriolanus,1607\npestering,1,coriolanus,1607\nStain,1,coriolanus,1607\ndespair,1,coriolanus,1607\npinched,1,coriolanus,1607\nDoubt,1,coriolanus,1607\nsport,1,coriolanus,1607\nnoses,1,coriolanus,1607\ngreasy,1,coriolanus,1607\nhoarded,1,coriolanus,1607\nwhipp'd,1,coriolanus,1607\nbilleted,1,coriolanus,1607\nAlmost,1,coriolanus,1607\nwedded,1,coriolanus,1607\nearn,1,coriolanus,1607\npow,1,coriolanus,1607\ndiversely,1,coriolanus,1607\nglorious,1,coriolanus,1607\nprompts,1,coriolanus,1607\nstrew,1,coriolanus,1607\nvesture,1,coriolanus,1607\nformerly,1,coriolanus,1607\ntumbled,1,coriolanus,1607\ndevotion,1,coriolanus,1607\nRising,1,coriolanus,1607\nawaken,1,coriolanus,1607\nshunn'd,1,coriolanus,1607\nperceive's,1,coriolanus,1607\nquiet,1,coriolanus,1607\nridges,1,coriolanus,1607\nchangeling,1,coriolanus,1607\nsirs,1,coriolanus,1607\nvalour's,1,coriolanus,1607\ncourteous,1,coriolanus,1607\nForgive,1,coriolanus,1607\ntheft,1,coriolanus,1607\nplants,1,coriolanus,1607\nsought,1,coriolanus,1607\ndepending,1,coriolanus,1607\ncatalogue,1,coriolanus,1607\nquicken'd,1,coriolanus,1607\npleader,1,coriolanus,1607\nweed,1,coriolanus,1607\nThou'rt,1,coriolanus,1607\nopposers',1,coriolanus,1607\n'we,1,coriolanus,1607\nreckless,1,coriolanus,1607\nyoung'st,1,coriolanus,1607\nsulphur,1,coriolanus,1607\nMend,1,coriolanus,1607\nconies,1,coriolanus,1607\nhills,1,coriolanus,1607\nbend,1,coriolanus,1607\ngrief,1,coriolanus,1607\nwealsmen,1,coriolanus,1607\nmankind,1,coriolanus,1607\naudible,1,coriolanus,1607\nWorshipful,1,coriolanus,1607\nhumane,1,coriolanus,1607\nAllow,1,coriolanus,1607\nsooner,1,coriolanus,1607\nHeart,1,coriolanus,1607\nimagine,1,coriolanus,1607\n'mildly,1,coriolanus,1607\ntumble,1,coriolanus,1607\n'Rise,1,coriolanus,1607\ndrench,1,coriolanus,1607\ndove,1,coriolanus,1607\nSits,1,coriolanus,1607\nwhereat,1,coriolanus,1607\nPlague,1,coriolanus,1607\nkindness,1,coriolanus,1607\nposture,1,coriolanus,1607\ncat,1,coriolanus,1607\nBeating,1,coriolanus,1607\ncap,1,coriolanus,1607\nYourself,1,coriolanus,1607\nreeking,1,coriolanus,1607\nfisting,1,coriolanus,1607\ndifferency,1,coriolanus,1607\nuncertainty,1,coriolanus,1607\ntricks,1,coriolanus,1607\nshepherds,1,coriolanus,1607\ndote,1,coriolanus,1607\nflouted,1,coriolanus,1607\nMurdering,1,coriolanus,1607\nBold,1,coriolanus,1607\nlearned,1,coriolanus,1607\ngaze,1,coriolanus,1607\nweak,1,coriolanus,1607\nlatest,1,coriolanus,1607\nSave,1,coriolanus,1607\nbent,1,coriolanus,1607\ncraft,1,coriolanus,1607\ngall'd,1,coriolanus,1607\nremembers,1,coriolanus,1607\nAbated,1,coriolanus,1607\nshadow,1,coriolanus,1607\nbuildings,1,coriolanus,1607\njealous,1,coriolanus,1607\nArabia,1,coriolanus,1607\nmeanest,1,coriolanus,1607\nDrawing,1,coriolanus,1607\nbended,1,coriolanus,1607\nprating,1,coriolanus,1607\ninsurrection's,1,coriolanus,1607\ninshell'd,1,coriolanus,1607\na',1,coriolanus,1607\nserpent,1,coriolanus,1607\nusurers,1,coriolanus,1607\njewel,1,coriolanus,1607\ntwice,1,coriolanus,1607\ntraducement,1,coriolanus,1607\ntransport,1,coriolanus,1607\nResume,1,coriolanus,1607\neaten,1,coriolanus,1607\nflay'd,1,coriolanus,1607\ndespise,1,coriolanus,1607\nextreme,1,coriolanus,1607\nWatch'd,1,coriolanus,1607\ntheme,1,coriolanus,1607\nmurrain,1,coriolanus,1607\nestablished,1,coriolanus,1607\nWhene'er,1,coriolanus,1607\nunproperly,1,coriolanus,1607\ndegree,1,coriolanus,1607\nverity,1,coriolanus,1607\nDirectitude,1,coriolanus,1607\ndangerously,1,coriolanus,1607\nmoods,1,coriolanus,1607\nsolemness,1,coriolanus,1607\nswims,1,coriolanus,1607\ninsinuating,1,coriolanus,1607\namongst,1,coriolanus,1607\nraising,1,coriolanus,1607\ntailors,1,coriolanus,1607\nhurry,1,coriolanus,1607\nNobility,1,coriolanus,1607\nO'er,1,coriolanus,1607\nsurvey,1,coriolanus,1607\nEnough,1,coriolanus,1607\nAbout,1,coriolanus,1607\nMeet,1,coriolanus,1607\ndirectitude,1,coriolanus,1607\npaint,1,coriolanus,1607\njump,1,coriolanus,1607\npicture,1,coriolanus,1607\nconscienced,1,coriolanus,1607\nWrench,1,coriolanus,1607\nsing,1,coriolanus,1607\nfloating,1,coriolanus,1607\nhourly,1,coriolanus,1607\nRefused,1,coriolanus,1607\ncalling,1,coriolanus,1607\neject,1,coriolanus,1607\nnorth,1,coriolanus,1607\nattain'd,1,coriolanus,1607\ngash,1,coriolanus,1607\nupper,1,coriolanus,1607\nconsulship,1,coriolanus,1607\nlately,1,coriolanus,1607\npiles,1,coriolanus,1607\nacceptance,1,coriolanus,1607\nhurts,1,coriolanus,1607\nchafed,1,coriolanus,1607\nbeginning,1,coriolanus,1607\nafoot,1,coriolanus,1607\ngarb,1,coriolanus,1607\ninheritance,1,coriolanus,1607\nName,1,coriolanus,1607\nsir',1,coriolanus,1607\nChide,1,coriolanus,1607\nslave's,1,coriolanus,1607\nstooping,1,coriolanus,1607\neagles,1,coriolanus,1607\nundercrest,1,coriolanus,1607\nimpatience,1,coriolanus,1607\ntaints,1,coriolanus,1607\nAUFIDIUS',1,coriolanus,1607\npanting,1,coriolanus,1607\nchildish,1,coriolanus,1607\nsolely,1,coriolanus,1607\nvirgin,1,coriolanus,1607\nsail,1,coriolanus,1607\nwiped,1,coriolanus,1607\nforgive,1,coriolanus,1607\nwreak,1,coriolanus,1607\nengine,1,coriolanus,1607\nbewitchment,1,coriolanus,1607\ncarelessness,1,coriolanus,1607\neloquence,1,coriolanus,1607\nmiles,1,coriolanus,1607\nhear't,1,coriolanus,1607\nprojects,1,coriolanus,1607\nFortune,1,coriolanus,1607\naim,1,coriolanus,1607\nreservation,1,coriolanus,1607\nTraitor,1,coriolanus,1607\nkeeping,1,coriolanus,1607\nembraced,1,coriolanus,1607\nDispropertied,1,coriolanus,1607\nFear,1,coriolanus,1607\nshrug,1,coriolanus,1607\nattempted,1,coriolanus,1607\nunbarbed,1,coriolanus,1607\nBest,1,coriolanus,1607\nconsider,1,coriolanus,1607\nbattery,1,coriolanus,1607\ncurrent,1,coriolanus,1607\nsheep,1,coriolanus,1607\naffecting,1,coriolanus,1607\nfavour,1,coriolanus,1607\nDestroy'd,1,coriolanus,1607\npainting,1,coriolanus,1607\nprevented,1,coriolanus,1607\ndefenders,1,coriolanus,1607\nneeds,1,coriolanus,1607\nstoop,1,coriolanus,1607\nempiricutic,1,coriolanus,1607\nbeam,1,coriolanus,1607\nPass,1,coriolanus,1607\nswearing,1,coriolanus,1607\nwhereon,1,coriolanus,1607\nunworthy,1,coriolanus,1607\ngilt,1,coriolanus,1607\ndeal,1,coriolanus,1607\ndepends,1,coriolanus,1607\naims,1,coriolanus,1607\ndeaf,1,coriolanus,1607\npriest,1,coriolanus,1607\npluck'd,1,coriolanus,1607\nSpread,1,coriolanus,1607\nitch,1,coriolanus,1607\nSplitting,1,coriolanus,1607\nBesides,1,coriolanus,1607\nmakers,1,coriolanus,1607\nthrive,1,coriolanus,1607\nenforce,1,coriolanus,1607\nredress,1,coriolanus,1607\nAlexander,1,coriolanus,1607\nrecommend,1,coriolanus,1607\nforged,1,coriolanus,1607\nsack,1,coriolanus,1607\nsuppler,1,coriolanus,1607\nlady's,1,coriolanus,1607\nedges,1,coriolanus,1607\nice,1,coriolanus,1607\nnicely,1,coriolanus,1607\nby't,1,coriolanus,1607\nDivide,1,coriolanus,1607\nList,1,coriolanus,1607\ntrophy,1,coriolanus,1607\nhouses,1,coriolanus,1607\ncomforts,1,coriolanus,1607\nspeed,1,coriolanus,1607\nboats,1,coriolanus,1607\napes,1,coriolanus,1607\ndepopulate,1,coriolanus,1607\ncrab,1,coriolanus,1607\nquarry,1,coriolanus,1607\nsmear'd,1,coriolanus,1607\ncruelty,1,coriolanus,1607\naccompany,1,coriolanus,1607\n'Deny,1,coriolanus,1607\nforges,1,coriolanus,1607\nPluto,1,coriolanus,1607\nsuckle,1,coriolanus,1607\nnewly,1,coriolanus,1607\npiercing,1,coriolanus,1607\nCushions,1,coriolanus,1607\nfixed,1,coriolanus,1607\ndoom,1,coriolanus,1607\ncolic,1,coriolanus,1607\nmills,1,coriolanus,1607\nhospitable,1,coriolanus,1607\nunfill'd,1,coriolanus,1607\nbetray'd,1,coriolanus,1607\nreins,1,coriolanus,1607\nask'd,1,coriolanus,1607\nattending,1,coriolanus,1607\npursuit,1,coriolanus,1607\nsoaring,1,coriolanus,1607\ncongregations,1,coriolanus,1607\nYonder,1,coriolanus,1607\nmonth,1,coriolanus,1607\npassable,1,coriolanus,1607\ndelay,1,coriolanus,1607\ngenerosity,1,coriolanus,1607\nplant,1,coriolanus,1607\nnecessity,1,coriolanus,1607\nboasting,1,coriolanus,1607\nfairness,1,coriolanus,1607\nfifes,1,coriolanus,1607\nbodied,1,coriolanus,1607\nidly,1,coriolanus,1607\ninterjoin,1,coriolanus,1607\ncomplexions,1,coriolanus,1607\nslightness,1,coriolanus,1607\ncurbs,1,coriolanus,1607\nporch,1,coriolanus,1607\nslily,1,coriolanus,1607\nseventeen,1,coriolanus,1607\nwhereof,1,coriolanus,1607\nthankful,1,coriolanus,1607\ncollected,1,coriolanus,1607\nLive,1,coriolanus,1607\nflamens,1,coriolanus,1607\nReads,1,coriolanus,1607\nmingle,1,coriolanus,1607\nauburn,1,coriolanus,1607\nbarr'st,1,coriolanus,1607\nPublius,1,coriolanus,1607\ncousin,1,coriolanus,1607\nReady,1,coriolanus,1607\ntemper,1,coriolanus,1607\ncaused,1,coriolanus,1607\n'Shall',1,coriolanus,1607\nbarbarians,1,coriolanus,1607\nenmity,1,coriolanus,1607\nspell,1,coriolanus,1607\nlover,1,coriolanus,1607\nunswayable,1,coriolanus,1607\nTabours,1,coriolanus,1607\nlots,1,coriolanus,1607\nexpulsion,1,coriolanus,1607\nhadst,1,coriolanus,1607\noffences,1,coriolanus,1607\nHostilius,1,coriolanus,1607\nstout,1,coriolanus,1607\nloud,1,coriolanus,1607\nmeasles,1,coriolanus,1607\nlightly,1,coriolanus,1607\nado,1,coriolanus,1607\nalteration,1,coriolanus,1607\nwars',1,coriolanus,1607\nWouldst,1,coriolanus,1607\nlaboured,1,coriolanus,1607\nUlysses',1,coriolanus,1607\ndrift,1,coriolanus,1607\nbeholding,1,coriolanus,1607\nachieved,1,coriolanus,1607\nServants,1,coriolanus,1607\nlest,1,coriolanus,1607\nexpel,1,coriolanus,1607\nBreathe,1,coriolanus,1607\ndries,1,coriolanus,1607\ndevil,1,coriolanus,1607\nknot,1,coriolanus,1607\napparel,1,coriolanus,1607\n'bout,1,coriolanus,1607\nhostile,1,coriolanus,1607\nbruising,1,coriolanus,1607\nstrains,1,coriolanus,1607\nnecessary,1,coriolanus,1607\nfeats,1,coriolanus,1607\nsmart,1,coriolanus,1607\npoor'st,1,coriolanus,1607\ndoves',1,coriolanus,1607\nWhoever,1,coriolanus,1607\ncommandment,1,coriolanus,1607\nspot,1,coriolanus,1607\nkings',1,coriolanus,1607\nTranslate,1,coriolanus,1607\nMarcus,1,coriolanus,1607\nscatter'd,1,coriolanus,1607\nVelutus,1,coriolanus,1607\nmarr'd,1,coriolanus,1607\nhot,1,coriolanus,1607\nload,1,coriolanus,1607\n'voided,1,coriolanus,1607\nbriers,1,coriolanus,1607\nGuards,1,coriolanus,1607\nhoo,1,coriolanus,1607\npresume,1,coriolanus,1607\nowns,1,coriolanus,1607\nnapes,1,coriolanus,1607\nthrice,1,coriolanus,1607\naccents,1,coriolanus,1607\ngraves,1,coriolanus,1607\nprescription,1,coriolanus,1607\ngraver,1,coriolanus,1607\nmethink,1,coriolanus,1607\nwarm'd,1,coriolanus,1607\nhavoc,1,coriolanus,1607\nexecuted,1,coriolanus,1607\ntempted,1,coriolanus,1607\ncatched,1,coriolanus,1607\nbotcher's,1,coriolanus,1607\nbodily,1,coriolanus,1607\nUnshout,1,coriolanus,1607\n'Though,1,coriolanus,1607\naccounted,1,coriolanus,1607\nhare,1,coriolanus,1607\ndiscourse,1,coriolanus,1607\ngrained,1,coriolanus,1607\npuny,1,coriolanus,1607\nscratch,1,coriolanus,1607\nJack,1,coriolanus,1607\nBreak,1,coriolanus,1607\nfront,1,coriolanus,1607\nsuggested,1,coriolanus,1607\nincline,1,coriolanus,1607\nfrighted,1,coriolanus,1607\nOpposing,1,coriolanus,1607\nremember'd,1,coriolanus,1607\nPlebeians,1,coriolanus,1607\nsoldier's,1,coriolanus,1607\naffects,1,coriolanus,1607\nhall,1,coriolanus,1607\nhale,1,coriolanus,1607\nfrost,1,coriolanus,1607\nmiscarries,1,coriolanus,1607\nmessenger,1,coriolanus,1607\nperfecter,1,coriolanus,1607\nbeggar's,1,coriolanus,1607\nkingly,1,coriolanus,1607\nsenseless,1,coriolanus,1607\nquarter'd,1,coriolanus,1607\nsubmit,1,coriolanus,1607\nbasest,1,coriolanus,1607\nimpression,1,coriolanus,1607\nmysteries,1,coriolanus,1607\nnation,1,coriolanus,1607\npalm,1,coriolanus,1607\nspun,1,coriolanus,1607\nReal,1,coriolanus,1607\nnoisome,1,coriolanus,1607\npalate,1,coriolanus,1607\nperform'd,1,coriolanus,1607\nRead,1,coriolanus,1607\nhusband's,1,coriolanus,1607\nlockram,1,coriolanus,1607\nTent,1,coriolanus,1607\nnatural,1,coriolanus,1607\nspur,1,coriolanus,1607\nfaintly,1,coriolanus,1607\ntreads,1,coriolanus,1607\nFlower,1,coriolanus,1607\nre,1,coriolanus,1607\nconsume,1,coriolanus,1607\nLady,1,coriolanus,1607\nliberty,1,coriolanus,1607\nhardness,1,coriolanus,1607\nplain,1,coriolanus,1607\ndrawn,1,coriolanus,1607\nseverity,1,coriolanus,1607\nforty,1,coriolanus,1607\njoyful,1,coriolanus,1607\nschool,1,coriolanus,1607\nremembrances,1,coriolanus,1607\nparticulars,1,coriolanus,1607\nDuring,1,coriolanus,1607\nwisdoms,1,coriolanus,1607\nexamine,1,coriolanus,1607\nperpetual,1,coriolanus,1607\nmarching,1,coriolanus,1607\npotency,1,coriolanus,1607\nacquaintance,1,coriolanus,1607\ncurt'sy,1,coriolanus,1607\nmultitudinous,1,coriolanus,1607\ncasque,1,coriolanus,1607\ncommendable,1,coriolanus,1607\nrudely,1,coriolanus,1607\nopen,1,coriolanus,1607\nhazards,1,coriolanus,1607\nvirginal,1,coriolanus,1607\nmidnight,1,coriolanus,1607\npage,1,coriolanus,1607\nbroiled,1,coriolanus,1607\ndeaths,1,coriolanus,1607\ngibingly,1,coriolanus,1607\nBoils,1,coriolanus,1607\nprepare,1,coriolanus,1607\nabhor,1,coriolanus,1607\nnightly,1,coriolanus,1607\nyawn,1,coriolanus,1607\n'Coriolanus,1,coriolanus,1607\nash,1,coriolanus,1607\n'head,1,coriolanus,1607\nrack'd,1,coriolanus,1607\nCommend,1,coriolanus,1607\nDeserve,1,coriolanus,1607\nconfederate,1,coriolanus,1607\nshent,1,coriolanus,1607\ntomorrow,1,coriolanus,1607\ncourts,1,coriolanus,1607\nhangs,1,coriolanus,1607\nfasts,1,coriolanus,1607\nspit,1,coriolanus,1607\nwagging,1,coriolanus,1607\noutrage,1,coriolanus,1607\nextremest,1,coriolanus,1607\nmoney,1,coriolanus,1607\nfore,1,coriolanus,1607\nhaver,1,coriolanus,1607\napt,1,coriolanus,1607\nprofound,1,coriolanus,1607\nfooted,1,coriolanus,1607\nPrepare,1,coriolanus,1607\nCity,1,coriolanus,1607\nIngratitude,1,coriolanus,1607\ncurdied,1,coriolanus,1607\nshaken,1,coriolanus,1607\nshop,1,coriolanus,1607\nkindest,1,coriolanus,1607\nshot,1,coriolanus,1607\nCast,1,coriolanus,1607\nyielded,1,coriolanus,1607\nproper,1,coriolanus,1607\namplified,1,coriolanus,1607\nrefusal,1,coriolanus,1607\nbragg'd,1,coriolanus,1607\nawe,1,coriolanus,1607\nlouts,1,coriolanus,1607\ncompanionship,1,coriolanus,1607\npatrician,1,coriolanus,1607\nfood,1,coriolanus,1607\nCats,1,coriolanus,1607\ntyranny,1,coriolanus,1607\nyarn,1,coriolanus,1607\nSmall,1,coriolanus,1607\nbabies,1,coriolanus,1607\nunactive,1,coriolanus,1607\nWears,1,coriolanus,1607\nagents,1,coriolanus,1607\ntearing,1,coriolanus,1607\nprevailing,1,coriolanus,1607\nobject,1,coriolanus,1607\nfresh,1,coriolanus,1607\nscarcely,1,coriolanus,1607\ngird,1,coriolanus,1607\nmalkin,1,coriolanus,1607\nrightly,1,coriolanus,1607\nerror,1,coriolanus,1607\nfeverous,1,coriolanus,1607\nfold,1,coriolanus,1607\ncontemning,1,coriolanus,1607\ningratitude,1,coriolanus,1607\nHob,1,coriolanus,1607\narmour,1,coriolanus,1607\nfriendliness,1,coriolanus,1607\napplied,1,coriolanus,1607\npushed,1,coriolanus,1607\nCare,1,coriolanus,1607\nungravely,1,coriolanus,1607\nHast,1,coriolanus,1607\nbeggars,1,coriolanus,1607\nknock,1,coriolanus,1607\nunbruised,1,coriolanus,1607\ninquire,1,coriolanus,1607\ndistinction,1,coriolanus,1607\ndeadly,1,coriolanus,1607\nHarp,1,coriolanus,1607\nThink'st,1,coriolanus,1607\nfew,1,coriolanus,1607\nSirrah,1,coriolanus,1607\nfed,1,coriolanus,1607\nnative,1,coriolanus,1607\nAgain,1,coriolanus,1607\nAssociated,1,coriolanus,1607\nsmells,1,coriolanus,1607\nPursue,1,coriolanus,1607\nfen,1,coriolanus,1607\ndefender,1,coriolanus,1607\nministers,1,coriolanus,1607\ncheque,1,coriolanus,1607\nreinforcement,1,coriolanus,1607\nbehavior,1,coriolanus,1607\nsanctuary,1,coriolanus,1607\nContend,1,coriolanus,1607\nScars,1,coriolanus,1607\nvisited,1,coriolanus,1607\nAction,1,coriolanus,1607\ntoken,1,coriolanus,1607\nbroil,1,coriolanus,1607\nconversation,1,coriolanus,1607\nfoundation,1,coriolanus,1607\nContent,1,coriolanus,1607\nridiculous,1,coriolanus,1607\nbountiful,1,coriolanus,1607\ncrueller,1,coriolanus,1607\nthwartings,1,coriolanus,1607\nenjoy,1,coriolanus,1607\nArt,1,coriolanus,1607\nstrongest,1,coriolanus,1607\nmerrier,1,coriolanus,1607\nmoves,1,coriolanus,1607\ndistributed,1,coriolanus,1607\nconsumed,1,coriolanus,1607\nthrow't,1,coriolanus,1607\nrequited,1,coriolanus,1607\nBetween,1,coriolanus,1607\nwatch,1,coriolanus,1607\nyesterday,1,coriolanus,1607\nUsher,1,coriolanus,1607\nroof,1,coriolanus,1607\nlean,1,coriolanus,1607\nparticularly,1,coriolanus,1607\nelected,1,coriolanus,1607\nAgrippa,1,coriolanus,1607\nscabs,1,coriolanus,1607\ncalved,1,coriolanus,1607\nKill,1,coriolanus,1607\noccasion,1,coriolanus,1607\nconsulships,1,coriolanus,1607\ntried,1,coriolanus,1607\nspritely,1,coriolanus,1607\npalms,1,coriolanus,1607\neffected,1,coriolanus,1607\n'Death,1,coriolanus,1607\nsmother'd,1,coriolanus,1607\ntrier,1,coriolanus,1607\nMadam,1,coriolanus,1607\nShout,1,coriolanus,1607\nLycurguses,1,coriolanus,1607\nmask'd,1,coriolanus,1607\ndestiny,1,coriolanus,1607\nexpected,1,coriolanus,1607\nGrecian,1,coriolanus,1607\nsuck'dst,1,coriolanus,1607\nmaid,1,coriolanus,1607\nballad,1,coriolanus,1607\nrequital,1,coriolanus,1607\nrank,1,coriolanus,1607\nSpoke,1,coriolanus,1607\ncanker'd,1,coriolanus,1607\nnations,1,coriolanus,1607\nmutiners,1,coriolanus,1607\napprehension,1,coriolanus,1607\nenmity's,1,coriolanus,1607\nmischief,1,coriolanus,1607\nantique,1,coriolanus,1607\nclamour,1,coriolanus,1607\nscape,1,coriolanus,1607\nMisguide,1,coriolanus,1607\nrapt,1,coriolanus,1607\nretired,1,coriolanus,1607\nfaction,1,coriolanus,1607\ncouldst,1,coriolanus,1607\ndistance,1,coriolanus,1607\nunburnt,1,coriolanus,1607\ntriumphant,1,coriolanus,1607\nretires,1,coriolanus,1607\nbuilt,1,coriolanus,1607\n'longs,1,coriolanus,1607\npawn'd,1,coriolanus,1607\nincapable,1,coriolanus,1607\nnourish,1,coriolanus,1607\nunknown,1,coriolanus,1607\ndarts,1,coriolanus,1607\nrepose,1,coriolanus,1607\nfourth,1,coriolanus,1607\nomit,1,coriolanus,1607\nrooted,1,coriolanus,1607\napply,1,coriolanus,1607\nsuppliants,1,coriolanus,1607\ncontains,1,coriolanus,1607\nBack,1,coriolanus,1607\ncaparison,1,coriolanus,1607\npretext,1,coriolanus,1607\nbeast,1,coriolanus,1607\nretreat,1,coriolanus,1607\nrare,1,coriolanus,1607\ntrencher,1,coriolanus,1607\nwaked,1,coriolanus,1607\nstrucken,1,coriolanus,1607\noccupation,1,coriolanus,1607\nsalter,1,coriolanus,1607\npates,1,coriolanus,1607\nlocks,1,coriolanus,1607\nacting,1,coriolanus,1607\nBelieve't,1,coriolanus,1607\ngosling,1,coriolanus,1607\nmulled,1,coriolanus,1607\nnoon,1,coriolanus,1607\nguider,1,coriolanus,1607\n'Brutus,1,coriolanus,1607\nguided,1,coriolanus,1607\ndistribute,1,coriolanus,1607\ndeserving,1,coriolanus,1607\nrove,1,coriolanus,1607\nlonely,1,coriolanus,1607\nmajor,1,coriolanus,1607\nindifferently,1,coriolanus,1607\n'Thou,1,coriolanus,1607\nconveyances,1,coriolanus,1607\nhatching,1,coriolanus,1607\ntemperance,1,coriolanus,1607\nhint,1,coriolanus,1607\ndonation,1,coriolanus,1607\nevade,1,coriolanus,1607\nprank,1,coriolanus,1607\nremedy,1,coriolanus,1607\naffrights,1,coriolanus,1607\nfester,1,coriolanus,1607\nglean,1,coriolanus,1607\nbravely,1,coriolanus,1607\nestate,1,coriolanus,1607\nleasing,1,coriolanus,1607\nfaint,1,coriolanus,1607\ncompanions,1,coriolanus,1607\ntraitors,1,coriolanus,1607\nSix,1,coriolanus,1607\nyear,1,coriolanus,1607\n'Sicinius,1,coriolanus,1607\nbanners,1,coriolanus,1607\nAlack,1,coriolanus,1607\nadmitting,1,coriolanus,1607\nkneels,1,coriolanus,1607\nausterity,1,coriolanus,1607\ndescended,1,coriolanus,1607\nsirrah,1,coriolanus,1607\nburrows,1,coriolanus,1607\nbottom,1,coriolanus,1607\ndangers,1,coriolanus,1607\nadmire,1,coriolanus,1607\nglasses,1,coriolanus,1607\nShe,1,coriolanus,1607\nfails,1,coriolanus,1607\nSoft,1,coriolanus,1607\nrestrain,1,coriolanus,1607\nchase,1,coriolanus,1607\nrectorship,1,coriolanus,1607\nthankless,1,coriolanus,1607\nIntends,1,coriolanus,1607\nwritten,1,coriolanus,1607\nrougher,1,coriolanus,1607\nposterity,1,coriolanus,1607\ncitizen,1,coriolanus,1607\nperused,1,coriolanus,1607\nvisage,1,coriolanus,1607\nSit,1,coriolanus,1607\nadmit,1,coriolanus,1607\nalter,1,coriolanus,1607\nAll's,1,coriolanus,1607\nsticks,1,coriolanus,1607\npleasers,1,coriolanus,1607\nallaying,1,coriolanus,1607\ncontrariety,1,coriolanus,1607\nquickly,1,coriolanus,1607\nbegging,1,coriolanus,1607\nFurther,1,coriolanus,1607\nLose,1,coriolanus,1607\ncounsellor,1,coriolanus,1607\nwho's,1,coriolanus,1607\nnapless,1,coriolanus,1607\nsprings,1,coriolanus,1607\nordinance,1,coriolanus,1607\norange,1,coriolanus,1607\ncharters,1,coriolanus,1607\nscars,1,coriolanus,1607\nTrail,1,coriolanus,1607\ndefective,1,coriolanus,1607\ncrammed,1,coriolanus,1607\nfreely,1,coriolanus,1607\nscarf,1,coriolanus,1607\nmouse,1,coriolanus,1607\nThyself,1,coriolanus,1607\nConvenient,1,coriolanus,1607\nprecious,1,coriolanus,1607\ngrateful,1,coriolanus,1607\nensuing,1,coriolanus,1607\nplaced,1,coriolanus,1607\nfoxship,1,coriolanus,1607\nmourn,1,coriolanus,1607\nfreedoms,1,coriolanus,1607\nThrusts,1,coriolanus,1607\ninform'd,1,coriolanus,1607\nsigh'd,1,coriolanus,1607\nspurn,1,coriolanus,1607\nfragments,1,coriolanus,1607\nTying,1,coriolanus,1607\ngraceful,1,coriolanus,1607\narticulate,1,coriolanus,1607\nelsewhere,1,coriolanus,1607\ngrandchild,1,coriolanus,1607\nmilk,1,coriolanus,1607\nSlain,1,coriolanus,1607\nLong,1,coriolanus,1607\ncharitable,1,coriolanus,1607\nUnmuffling,1,coriolanus,1607\nvarlet,1,coriolanus,1607\nstride,1,coriolanus,1607\nHector's,1,coriolanus,1607\nRegard,1,coriolanus,1607\nprobable,1,coriolanus,1607\nstars,1,coriolanus,1607\n'It,1,coriolanus,1607\nsaving,1,coriolanus,1607\nshreds,1,coriolanus,1607\nknave,1,coriolanus,1607\nkisses,1,coriolanus,1607\nPresented,1,coriolanus,1607\npricking,1,coriolanus,1607\nbosoms,1,coriolanus,1607\nstitchery,1,coriolanus,1607\nfoolish,1,coriolanus,1607\nrobbery,1,coriolanus,1607\npaltering,1,coriolanus,1607\nMark'd,1,coriolanus,1607\npurposed,1,coriolanus,1607\nunvulnerable,1,coriolanus,1607\nRebell'd,1,coriolanus,1607\nsilenced,1,coriolanus,1607\nmale,1,coriolanus,1607\ndregs,1,coriolanus,1607\nLadders,1,coriolanus,1607\nfortnight,1,coriolanus,1607\nmerrily,1,coriolanus,1607\nhumorous,1,coriolanus,1607\nconfidence,1,coriolanus,1607\nanvil,1,coriolanus,1607\nwrought,1,coriolanus,1607\nprocess,1,coriolanus,1607\nchair,1,coriolanus,1607\nmantled,1,coriolanus,1607\nchain,1,coriolanus,1607\nhereditary,1,coriolanus,1607\ncovets,1,coriolanus,1607\ninsolent,1,coriolanus,1607\nquaked,1,coriolanus,1607\nbolted,1,coriolanus,1607\nbeach,1,coriolanus,1607\ncoy'd,1,coriolanus,1607\negg,1,coriolanus,1607\nwoolvish,1,coriolanus,1607\ndearest,1,coriolanus,1607\npartake,1,coriolanus,1607\n'Do,1,coriolanus,1607\ntenth,1,coriolanus,1607\ncontradiction,1,coriolanus,1607\nonward,1,coriolanus,1607\ntartness,1,coriolanus,1607\nShouts,1,coriolanus,1607\ncoward,1,coriolanus,1607\nScratches,1,coriolanus,1607\nTarquins,1,coriolanus,1607\nmaliciously,1,coriolanus,1607\npersuaded,1,coriolanus,1607\nfoil'd,1,coriolanus,1607\nraiment,1,coriolanus,1607\nHonour,1,coriolanus,1607\ncoverture,1,coriolanus,1607\nconduits,1,coriolanus,1607\nachieve,1,coriolanus,1607\nforsook,1,coriolanus,1607\ndisadvantage,1,coriolanus,1607\nbecause,1,coriolanus,1607\nwow,1,coriolanus,1607\nquoth,1,coriolanus,1607\nleader,1,coriolanus,1607\njudgments,1,coriolanus,1607\nrevengeful,1,coriolanus,1607\ngreatest,1,coriolanus,1607\npainful,1,coriolanus,1607\nconspectuities,1,coriolanus,1607\nentombed,1,coriolanus,1607\nbeside,1,coriolanus,1607\nrumourer,1,coriolanus,1607\nshoulder,1,coriolanus,1607\nthief,1,coriolanus,1607\nfundamental,1,coriolanus,1607\nauger's,1,coriolanus,1607\nmiss,1,coriolanus,1607\nusing,1,coriolanus,1607\narch,1,coriolanus,1607\nseal'd,1,coriolanus,1607\nfish,1,coriolanus,1607\nthreatening,1,coriolanus,1607\nbrethren,1,coriolanus,1607\nLead'st,1,coriolanus,1607\nabed,1,coriolanus,1607\ndishonours,1,coriolanus,1607\naccompanied,1,coriolanus,1607\ndischarge,1,coriolanus,1607\nnaught,1,coriolanus,1607\npother,1,coriolanus,1607\nheaviest,1,coriolanus,1607\nrive,1,coriolanus,1607\nparent,1,coriolanus,1607\napart,1,coriolanus,1607\nuttered,1,coriolanus,1607\naccusation,1,coriolanus,1607\nletters,1,coriolanus,1607\ncobbled,1,coriolanus,1607\none's,1,coriolanus,1607\nthigh,1,coriolanus,1607\nmockery,1,coriolanus,1607\nstorehouse,1,coriolanus,1607\nTickled,1,coriolanus,1607\nnavel,1,coriolanus,1607\ndisguised,1,coriolanus,1607\nstake,1,coriolanus,1607\ndivision,1,coriolanus,1607\nPerhaps,1,coriolanus,1607\nthorough,1,coriolanus,1607\nliving,1,coriolanus,1607\nstain,1,coriolanus,1607\nknaves',1,coriolanus,1607\nmockers,1,coriolanus,1607\nmilder,1,coriolanus,1607\nWert,1,coriolanus,1607\nbreed,1,coriolanus,1607\noaks,1,coriolanus,1607\nshorten'd,1,coriolanus,1607\ntrembling,1,coriolanus,1607\nmountebank,1,coriolanus,1607\naffairs,1,coriolanus,1607\nbegged,1,coriolanus,1607\nmaids,1,coriolanus,1607\ntroublesome,1,coriolanus,1607\nunsever'd,1,coriolanus,1607\n'Twixt,1,coriolanus,1607\nrenown,1,coriolanus,1607\ndignifies,1,coriolanus,1607\nadversely,1,coriolanus,1607\nsow'd,1,coriolanus,1607\nleanness,1,coriolanus,1607\nexample,1,coriolanus,1607\nScaling,1,coriolanus,1607\nflies,1,coriolanus,1607\nstale,1,coriolanus,1607\nsalt,1,coriolanus,1607\npound,1,coriolanus,1607\nrogues,1,coriolanus,1607\npreservative,1,coriolanus,1607\n'My,1,coriolanus,1607\nfittest,1,coriolanus,1607\nFriends,1,coriolanus,1607\nsided,1,coriolanus,1607\nLook'd,1,coriolanus,1607\nConfess,1,coriolanus,1607\nRun,1,coriolanus,1607\nTwice,1,coriolanus,1607\ndisdains,1,coriolanus,1607\nGalen,1,coriolanus,1607\nmutable,1,coriolanus,1607\nthoroughly,1,coriolanus,1607\n'Twill,1,coriolanus,1607\nrecomforted,1,coriolanus,1607\nostler,1,coriolanus,1607\ncourt,1,coriolanus,1607\ncurb,1,coriolanus,1607\nAged,1,coriolanus,1607\nreceipt,1,coriolanus,1607\nrelieved,1,coriolanus,1607\nenvying,1,coriolanus,1607\nbread,1,coriolanus,1607\nconfined,1,coriolanus,1607\nknife,1,coriolanus,1607\nestablish'd,1,coriolanus,1607\nfetch,1,coriolanus,1607\nBlush,1,coriolanus,1607\ndevour'd,1,coriolanus,1607\nannals,1,coriolanus,1607\nthrives,1,coriolanus,1607\ngan,1,coriolanus,1607\nobeys,1,coriolanus,1607\ngap,1,coriolanus,1607\nharlot's,1,coriolanus,1607\nbeastly,1,coriolanus,1607\nThrong,1,coriolanus,1607\nfielded,1,coriolanus,1607\npertinent,1,coriolanus,1607\nmanifest,1,coriolanus,1607\nwaking,1,coriolanus,1607\nmeaner,1,coriolanus,1607\nicicle,1,coriolanus,1607\nwalks,1,coriolanus,1607\nfiles,1,coriolanus,1607\nheaps,1,coriolanus,1607\nSaw,1,coriolanus,1607\nheapt,1,coriolanus,1607\nflight,1,coriolanus,1607\nSpeed,1,coriolanus,1607\nunmusical,1,coriolanus,1607\nSham,1,coriolanus,1607\nInsisting,1,coriolanus,1607\nvouches,1,coriolanus,1607\nServingmen,1,coriolanus,1607\ndeath's,1,coriolanus,1607\nintegrity,1,coriolanus,1607\naptness,1,coriolanus,1607\nrefuge,1,coriolanus,1607\nsenate's,1,coriolanus,1607\nmaims,1,coriolanus,1607\nflint,1,coriolanus,1607\nofficial,1,coriolanus,1607\ndecrees,1,coriolanus,1607\nreturning,1,coriolanus,1607\nscarr'd,1,coriolanus,1607\nwiping,1,coriolanus,1607\nissued,1,coriolanus,1607\ninvincible,1,coriolanus,1607\nDian's,1,coriolanus,1607\ndefying,1,coriolanus,1607\nNuma's,1,coriolanus,1607\ndecreed,1,coriolanus,1607\n'We,1,coriolanus,1607\nissues,1,coriolanus,1607\ncalled,1,coriolanus,1607\n'True,1,coriolanus,1607\nsinews,1,coriolanus,1607\naccomplish,1,coriolanus,1607\n'The,1,coriolanus,1607\nstick,1,coriolanus,1607\nShed,1,coriolanus,1607\nearnest,1,coriolanus,1607\nstage,1,coriolanus,1607\nhurried,1,coriolanus,1607\nimperfect,1,coriolanus,1607\nspacious,1,coriolanus,1607\nInclinable,1,coriolanus,1607\nlinger,1,coriolanus,1607\nable,1,coriolanus,1607\nrise,1,coriolanus,1607\nmail'd,1,coriolanus,1607\ntrusts,1,coriolanus,1607\nactors,1,coriolanus,1607\nprevail,1,coriolanus,1607\ndrives,1,coriolanus,1607\nhopeless,1,coriolanus,1607\ncommanded,1,coriolanus,1607\nnuptial,1,coriolanus,1607\naudience,1,coriolanus,1607\nAgreed,1,coriolanus,1607\nThey've,1,coriolanus,1607\nrevolts,1,coriolanus,1607\nintend,1,coriolanus,1607\nfellow's,1,coriolanus,1607\nenraged,1,coriolanus,1607\nepitome,1,coriolanus,1607\nPiercing,1,coriolanus,1607\nbrother's,1,coriolanus,1607\ngreetings,1,coriolanus,1607\nwanton,1,coriolanus,1607\nmules,1,coriolanus,1607\npreparing,1,coriolanus,1607\ndying,1,coriolanus,1607\nRansoming,1,coriolanus,1607\nbedfellow,1,coriolanus,1607\ninstinct,1,coriolanus,1607\ncovetous,1,coriolanus,1607\nadmitted,1,coriolanus,1607\nkitchen,1,coriolanus,1607\nperadventure,1,coriolanus,1607\nbrunt,1,coriolanus,1607\nsupper,1,coriolanus,1607\nspectacles,1,coriolanus,1607\nspectacled,1,coriolanus,1607\ncomplain,1,coriolanus,1607\nwomen's,1,coriolanus,1607\npounds,1,coriolanus,1607\nnext,1,coriolanus,1607\nstayed,1,coriolanus,1607\npence,1,coriolanus,1607\nviolentest,1,coriolanus,1607\npossess,1,coriolanus,1607\ndamask,1,coriolanus,1607\nnotice,1,coriolanus,1607\ncluck'd,1,coriolanus,1607\nGives,1,coriolanus,1607\nShalt,1,coriolanus,1607\nfamiliar,1,coriolanus,1607\neaters,1,coriolanus,1607\ngladly,1,coriolanus,1607\nhusbandry,1,coriolanus,1607\ndivines,1,coriolanus,1607\nwomb's,1,coriolanus,1607\nbaseness,1,coriolanus,1607\nseize,1,coriolanus,1607\nthankfulness,1,coriolanus,1607\ndarken,1,coriolanus,1607\nserved,1,coriolanus,1607\nmorsel,1,coriolanus,1607\ndissolved,1,coriolanus,1607\nfaced,1,coriolanus,1607\nbutterflies,1,coriolanus,1607\nunhearts,1,coriolanus,1607\nfallen,1,coriolanus,1607\npurest,1,coriolanus,1607\ninherent,1,coriolanus,1607\nearthly,1,coriolanus,1607\nsize,1,coriolanus,1607\nspleen,1,coriolanus,1607\nforeign,1,coriolanus,1607\nkilling,1,coriolanus,1607\nmovers,1,coriolanus,1607\ninclination,1,coriolanus,1607\ncompass,1,coriolanus,1607\ndumb,1,coriolanus,1607\nmammocked,1,coriolanus,1607\nwife's,1,coriolanus,1607\nhaply,1,coriolanus,1607\ndislikes,1,coriolanus,1607\nrain,1,coriolanus,1607\ndoings,1,coriolanus,1607\nfunctions,1,coriolanus,1607\nRed,1,coriolanus,1607\nsupple,1,coriolanus,1607\npsalteries,1,coriolanus,1607\nsewing,1,coriolanus,1607\nwaters,1,coriolanus,1607\nyoke,1,coriolanus,1607\nsedition,1,coriolanus,1607\ndetermined,1,coriolanus,1607\nAmongst,1,coriolanus,1607\nharvest,1,coriolanus,1607\nrapture,1,coriolanus,1607\noutdares,1,coriolanus,1607\nplumes,1,coriolanus,1607\nfalling,1,coriolanus,1607\nunfortunate,1,coriolanus,1607\nfollowers,1,coriolanus,1607\nfill'd,1,coriolanus,1607\ngifts,1,coriolanus,1607\ninformation,1,coriolanus,1607\nunstable,1,coriolanus,1607\nminister,1,coriolanus,1607\nWhoop'd,1,coriolanus,1607\ndoubled,1,coriolanus,1607\ngrieve,1,coriolanus,1607\nrepined,1,coriolanus,1607\nthwack,1,coriolanus,1607\ncried,1,coriolanus,1607\nevil,1,coriolanus,1607\ninkling,1,coriolanus,1607\nprofane,1,coriolanus,1607\nminds,1,coriolanus,1607\nhad',1,coriolanus,1607\nTime,1,coriolanus,1607\ncloth,1,coriolanus,1607\nThither,1,coriolanus,1607\nhighly,1,coriolanus,1607\ncautelous,1,coriolanus,1607\npolled,1,coriolanus,1607\nfob,1,coriolanus,1607\norb,1,coriolanus,1607\narticle,1,coriolanus,1607\nfog,1,coriolanus,1607\ncloud,1,coriolanus,1607\nhitherward,1,coriolanus,1607\nunbuild,1,coriolanus,1607\nsurcease,1,coriolanus,1607\nQuintus,1,coriolanus,1607\ncared,1,coriolanus,1607\nvaward,1,coriolanus,1607\nreturns,1,coriolanus,1607\nmuniments,1,coriolanus,1607\nparcels,1,coriolanus,1607\nCORIOLANUS'S,1,coriolanus,1607\nfins,1,coriolanus,1607\nmultiplying,1,coriolanus,1607\ntune,1,coriolanus,1607\nfane,1,coriolanus,1607\nReports,1,coriolanus,1607\nCall't,1,coriolanus,1607\nworthiness,1,coriolanus,1607\nfighting,1,coriolanus,1607\ncaution,1,coriolanus,1607\nprattling,1,coriolanus,1607\nunjust,1,coriolanus,1607\nSweet,1,coriolanus,1607\nDeny,1,coriolanus,1607\nrestrain'd,1,coriolanus,1607\nminute,1,coriolanus,1607\nvow,1,coriolanus,1607\nfill,1,coriolanus,1607\nsafety,1,coriolanus,1607\ntrident,1,coriolanus,1607\ntask'd,1,coriolanus,1607\npunish'd,1,coriolanus,1607\nchannel,1,coriolanus,1607\nsmote,1,coriolanus,1607\nhorn,1,coriolanus,1607\nBeats,1,coriolanus,1607\nFast,1,coriolanus,1607\nincorporate,1,coriolanus,1607\nmarried,1,coriolanus,1607\nbarm,1,coriolanus,1607\nNear,1,coriolanus,1607\nduties,1,coriolanus,1607\npinn'd,1,coriolanus,1607\nnotion,1,coriolanus,1607\nexposture,1,coriolanus,1607\nwide,1,coriolanus,1607\nUnto,1,coriolanus,1607\nworship,1,coriolanus,1607\npocket,1,coriolanus,1607\nostentation,1,coriolanus,1607\nbite,1,coriolanus,1607\nMother,1,coriolanus,1607\nherself,1,coriolanus,1607\nwealth,1,coriolanus,1607\nfawn,1,coriolanus,1607\npoison'd,1,coriolanus,1607\nqueen,1,coriolanus,1607\nbutcher,1,coriolanus,1607\nConstrains,1,coriolanus,1607\ncloven,1,coriolanus,1607\nBears,1,coriolanus,1607\nbeware,1,coriolanus,1607\nBeneath,1,coriolanus,1607\ncounterpoised,1,coriolanus,1607\nThank,1,coriolanus,1607\nbath,1,coriolanus,1607\nlived,1,coriolanus,1607\nbate,1,coriolanus,1607\nwhither,1,coriolanus,1607\n'Good,1,coriolanus,1607\ntraitorous,1,coriolanus,1607\nmicrocosm,1,coriolanus,1607\nforenoon,1,coriolanus,1607\ngilded,1,coriolanus,1607\ndastard,1,coriolanus,1607\nwaved,1,coriolanus,1607\nnervy,1,coriolanus,1607\ntriumphantly,1,coriolanus,1607\ngratitude,1,coriolanus,1607\ntrumpeter,1,coriolanus,1607\nkick'd,1,coriolanus,1607\nCut,1,coriolanus,1607\nditch,1,coriolanus,1607\nspeak't,1,coriolanus,1607\ngrapes,1,coriolanus,1607\nWednesday,1,coriolanus,1607\nmotive,1,coriolanus,1607\nhoot,1,coriolanus,1607\ntame,1,coriolanus,1607\nweakness,1,coriolanus,1607\ntabour,1,coriolanus,1607\nnames,1,coriolanus,1607\ndam,1,coriolanus,1607\nlenity,1,coriolanus,1607\nconveying,1,coriolanus,1607\nprefer,1,coriolanus,1607\nfreshest,1,coriolanus,1607\ndismay'd,1,coriolanus,1607\nfare,1,coriolanus,1607\nconverses,1,coriolanus,1607\nsurly,1,coriolanus,1607\ncrafted,1,coriolanus,1607\nmeets,1,coriolanus,1607\nfeeble,1,coriolanus,1607\nauthor,1,coriolanus,1607\nsoul's,1,coriolanus,1607\nshepherd,1,coriolanus,1607\nally,1,coriolanus,1607\nempoison'd,1,coriolanus,1607\no'erwhelm,1,coriolanus,1607\naccusers,1,coriolanus,1607\nDestroy,1,coriolanus,1607\ncomplaint,1,coriolanus,1607\nvented,1,coriolanus,1607\narm'd,1,coriolanus,1607\n'Sdeath,1,coriolanus,1607\nfeebly,1,coriolanus,1607\nfalsely,1,coriolanus,1607\nConsul,1,coriolanus,1607\nscented,1,coriolanus,1607\ngentlemen,1,coriolanus,1607\ncup,1,coriolanus,1607\nappearance,1,coriolanus,1607\nhigh'st,1,coriolanus,1607\notherwise,1,coriolanus,1607\ndeliberate,1,coriolanus,1607\nunwise,1,coriolanus,1607\nshops,1,coriolanus,1607\nfolds,1,coriolanus,1607\nimpress'd,1,coriolanus,1607\nAssist,1,coriolanus,1607\nmadst,1,coriolanus,1607\nasunder,1,coriolanus,1607\nmothers,1,coriolanus,1607\nreproof,1,coriolanus,1607\ndistribution,1,coriolanus,1607\nbewail,1,coriolanus,1607\nsights,1,coriolanus,1607\nWorth,1,coriolanus,1607\nVolscians',1,coriolanus,1607\napron,1,coriolanus,1607\nvoluptuously,1,coriolanus,1607\nfreelier,1,coriolanus,1607\nRequires,1,coriolanus,1607\nbigger,1,coriolanus,1607\nhyperbolical,1,coriolanus,1607\nquit,1,coriolanus,1607\nOfficious,1,coriolanus,1607\nmoths,1,coriolanus,1607\ndarken'd,1,coriolanus,1607\nDreamt,1,coriolanus,1607\ngreet,1,coriolanus,1607\nstand'st,1,coriolanus,1607\nunknit,1,coriolanus,1607\npupil,1,coriolanus,1607\ncur,1,coriolanus,1607\ngiddy,1,coriolanus,1607\nAlthough,1,coriolanus,1607\nsurvivor,1,coriolanus,1607\ndefect,1,coriolanus,1607\nranges,1,coriolanus,1607\nfeasts,1,coriolanus,1607\nWho's,1,coriolanus,1607\ncounterfeit,1,coriolanus,1607\nspices,1,coriolanus,1607\nripest,1,coriolanus,1607\nAfric,1,coriolanus,1607\ncowards,1,coriolanus,1607\nplebeii,1,coriolanus,1607\nloyal,1,coriolanus,1607\nassist,1,coriolanus,1607\ncarcasses,1,coriolanus,1607\ncontroll'd,1,coriolanus,1607\ntire,1,coriolanus,1607\ncondemn,1,coriolanus,1607\nfronts,1,coriolanus,1607\nFool,1,coriolanus,1607\nforsooth,1,coriolanus,1607\nflood,1,coriolanus,1607\nsourly,1,coriolanus,1607\ncommonwealth,1,coriolanus,1607\nstate's,1,coriolanus,1607\nhorses,1,coriolanus,1607\nwriting,1,coriolanus,1607\nwondering,1,coriolanus,1607\nresolution,1,coriolanus,1607\nWherefore,1,coriolanus,1607\ntauntingly,1,coriolanus,1607\nsmilingly,1,coriolanus,1607\nhorsed,1,coriolanus,1607\nagued,1,coriolanus,1607\nbuttock,1,coriolanus,1607\nbits,1,coriolanus,1607\nfavours,1,coriolanus,1607\nconjure,1,coriolanus,1607\nschoolboys',1,coriolanus,1607\ninherited,1,coriolanus,1607\npuling,1,coriolanus,1607\nconvenient,1,coriolanus,1607\nabilities,1,coriolanus,1607\nHolloa,1,coriolanus,1607\nSeize,1,coriolanus,1607\nsurer,1,coriolanus,1607\nAnon,1,coriolanus,1607\ndisclaim,1,coriolanus,1607\ninevitable,1,coriolanus,1607\ndissension,1,coriolanus,1607\napproved,1,coriolanus,1607\nhave't,1,coriolanus,1607\nMarcians,1,coriolanus,1607\nseat,1,coriolanus,1607\nadopt,1,coriolanus,1607\nrigorous,1,coriolanus,1607\nServed,1,coriolanus,1607\nelements,1,coriolanus,1607\ncool,1,coriolanus,1607\nAdrian,1,coriolanus,1607\nlying,1,coriolanus,1607\nvexation,1,coriolanus,1607\nsours,1,coriolanus,1607\nfavour'd,1,coriolanus,1607\nexamples,1,coriolanus,1607\nlow,1,coriolanus,1607\ndeepest,1,coriolanus,1607\ncontagion,1,coriolanus,1607\nacts,1,coriolanus,1607\nremission,1,coriolanus,1607\nsinking,1,coriolanus,1607\npalsied,1,coriolanus,1607\nbaby,1,coriolanus,1607\ncrept,1,coriolanus,1607\nRight,1,coriolanus,1607\nweep'st,1,coriolanus,1607\npronounced,1,coriolanus,1607\nknowest,1,coriolanus,1607\nClapp'd,1,coriolanus,1607\nfights,1,coriolanus,1607\ntalking,1,coriolanus,1607\npresence,1,coriolanus,1607\nSpies,1,coriolanus,1607\nnerves,1,coriolanus,1607\nprogeny,1,coriolanus,1607\nunkindness,1,coriolanus,1607\nLie,1,coriolanus,1607\nmarvellous,1,coriolanus,1607\nNe'er,1,coriolanus,1607\ndiscretion,1,coriolanus,1607\ncamest,1,coriolanus,1607\nlapsing,1,coriolanus,1607\nunderstood,1,coriolanus,1607\nburned,1,coriolanus,1607\nconclude,1,coriolanus,1607\ntells,1,coriolanus,1607\nprudent,1,coriolanus,1607\nselect,1,coriolanus,1607\nhandkerchers,1,coriolanus,1607\nliking,1,coriolanus,1607\nOn's,1,coriolanus,1607\nurn,1,coriolanus,1607\ntidings,1,coriolanus,1607\nPatience,1,coriolanus,1607\ncoxcombs,1,coriolanus,1607\nhound,1,coriolanus,1607\ncote,1,coriolanus,1607\ncrest,1,coriolanus,1607\nIngrate,1,coriolanus,1607\ncounsell'd,1,coriolanus,1607\nSuffer't,1,coriolanus,1607\nvassals,1,coriolanus,1607\n'Fine,1,coriolanus,1607\npercussion,1,coriolanus,1607\ncensor,1,coriolanus,1607\nKilling,1,coriolanus,1607\nneedless,1,coriolanus,1607\nSeal,1,coriolanus,1607\nDick,1,coriolanus,1607\nconfirm'd,1,coriolanus,1607\nDissentious,1,coriolanus,1607\n'Marcius,1,coriolanus,1607\nentangled,1,coriolanus,1607\nHe'ld,1,coriolanus,1607\n'twill,1,coriolanus,1607\nhostages,1,coriolanus,1607\nPlaster,1,coriolanus,1607\nRepeal,1,coriolanus,1607\npout,1,coriolanus,1607\ndownright,1,coriolanus,1607\nchests,1,coriolanus,1607\nFillip,1,coriolanus,1607\ngenerals,1,coriolanus,1607\ngoat,1,coriolanus,1607\nentreat,1,coriolanus,1607\ntradesmen,1,coriolanus,1607\n'Tribunes,1,coriolanus,1607\njudicious,1,coriolanus,1607\nprayer,1,coriolanus,1607\ncountenances,1,coriolanus,1607\nremove,1,coriolanus,1607\nfranchises,1,coriolanus,1607\ngusts,1,coriolanus,1607\nself,1,coriolanus,1607\nseld,1,coriolanus,1607\nfairly,1,coriolanus,1607\naccording,1,coriolanus,1607\nCry,1,coriolanus,1607\ntide,1,coriolanus,1607\ncapacity,1,coriolanus,1607\nmillions,1,coriolanus,1607\nwork's,1,coriolanus,1607\npost,1,coriolanus,1607\nbale,1,coriolanus,1607\nwater'd,1,coriolanus,1607\noppose,1,coriolanus,1607\nSigh'd,1,coriolanus,1607\nleg,1,coriolanus,1607\nprison,1,coriolanus,1607\nhooting,1,coriolanus,1607\nglowing,1,coriolanus,1607\nroaring,1,coriolanus,1607\nNeither,1,coriolanus,1607\nundo,1,coriolanus,1607\nSelf,1,coriolanus,1607\ngrieves,1,coriolanus,1607\nremote,1,coriolanus,1607\nskull,1,coriolanus,1607\ntalk'd,1,coriolanus,1607\nremedies,1,coriolanus,1607\nOpinion,1,coriolanus,1607\ndogg'd,1,coriolanus,1607\nherald,1,coriolanus,1607\ncamels,1,coriolanus,1607\nIthaca,1,coriolanus,1607\nlimitation,1,coriolanus,1607\ninsensible,1,coriolanus,1607\nbarren,1,coriolanus,1607\nstatue,1,coriolanus,1607\nfearing,1,coriolanus,1607\nembassies,1,coriolanus,1607\ncountryman,1,coriolanus,1607\nCleave,1,coriolanus,1607\nFollowing,1,coriolanus,1607\ncommonalty,1,coriolanus,1607\nmatch,1,coriolanus,1607\nbaes,1,coriolanus,1607\nushers,1,coriolanus,1607\nblast,1,coriolanus,1607\nTriton,1,coriolanus,1607\naches,1,coriolanus,1607\n'your,1,coriolanus,1607\nCog,1,coriolanus,1607\nmethought,1,coriolanus,1607\nsafer,1,coriolanus,1607\nbonnet,1,coriolanus,1607\nraying,1,coriolanus,1607\nparticipate,1,coriolanus,1607\nsincerely,1,coriolanus,1607\ncrooked,1,coriolanus,1607\nunchilded,1,coriolanus,1607\nuntil,1,coriolanus,1607\ntriumph,1,coriolanus,1607\nparcel,1,coriolanus,1607\nManifest,1,coriolanus,1607\nendures,1,coriolanus,1607\nthread,1,coriolanus,1607\nlaws,1,coriolanus,1607\nregarded,1,coriolanus,1607\ncommons',1,coriolanus,1607\nchoke,1,coriolanus,1607\nachieving,1,coriolanus,1607\ncapitulate,1,coriolanus,1607\nrequested,1,coriolanus,1607\n'Forgive,1,coriolanus,1607\npersuade,1,coriolanus,1607\nPreoccupied,1,coriolanus,1607\nsenator,1,coriolanus,1607\nvouch'd,1,coriolanus,1607\nreprieve,1,coriolanus,1607\nCoriolanus',1,coriolanus,1607\nlitter'd,1,coriolanus,1607\nmad,1,coriolanus,1607\nabhorring,1,coriolanus,1607\nwrite,1,coriolanus,1607\nmap,1,coriolanus,1607\nmar,1,coriolanus,1607\nTread,1,coriolanus,1607\nclouds,1,coriolanus,1607\nspirits,1,coriolanus,1607\nconfound,1,coriolanus,1607\nfiends,1,coriolanus,1607\nlimbs,1,coriolanus,1607\nbarr'd,1,coriolanus,1607\nstarts,1,coriolanus,1607\nPlaces,1,coriolanus,1607\nvolume,1,coriolanus,1607\ndebase,1,coriolanus,1607\nnourish'd,1,coriolanus,1607\nencounters,1,coriolanus,1607\nAncus,1,coriolanus,1607\nthrees,1,coriolanus,1607\npray'd,1,coriolanus,1607\nconn'd,1,coriolanus,1607\nspite,1,coriolanus,1607\ndisposing,1,coriolanus,1607\ncomfortable,1,coriolanus,1607\nmercenary,1,coriolanus,1607\ntemporized,1,coriolanus,1607\nTowards,1,coriolanus,1607\nconduct,1,coriolanus,1607\nunlike,1,coriolanus,1607\nrheum,1,coriolanus,1607\ncement,1,coriolanus,1607\nsmiling,1,coriolanus,1607\nreward,1,coriolanus,1607\nquired,1,coriolanus,1607\nimpossibility,1,coriolanus,1607\ncorrecting,1,coriolanus,1607\nUpbraid's,1,coriolanus,1607\nleash,1,coriolanus,1607\nspits,1,coriolanus,1607\ndismiss'd,1,coriolanus,1607\ncompounded,1,coriolanus,1607\nchastely,1,coriolanus,1607\ninferior,1,coriolanus,1607\nSometime,1,coriolanus,1607\nsister,1,coriolanus,1607\nbanishers,1,coriolanus,1607\nmournfully,1,coriolanus,1607\nheaded,1,coriolanus,1607\nbreaker,1,coriolanus,1607\nlurk'd,1,coriolanus,1607\ndecayed,1,coriolanus,1607\ntrim,1,coriolanus,1607\ndisciplined,1,coriolanus,1607\nmaker,1,coriolanus,1607\nounce,1,coriolanus,1607\nreadiness,1,coriolanus,1607\ngrafted,1,coriolanus,1607\nproudlier,1,coriolanus,1607\nstirrup,1,coriolanus,1607\nsovereign,1,coriolanus,1607\nunscann'd,1,coriolanus,1607\n'Patricians,1,coriolanus,1607\nrights,1,coriolanus,1607\nlectures,1,coriolanus,1607\nscornfully,1,coriolanus,1607\nverified,1,coriolanus,1607\nburnt,1,coriolanus,1607\nhares,1,coriolanus,1607\nassuage,1,coriolanus,1607\nravisher,1,coriolanus,1607\nrecreant,1,coriolanus,1607\nAssemble,1,coriolanus,1607\nenvied,1,coriolanus,1607\nEnters,1,coriolanus,1607\nfled,1,coriolanus,1607\nthinking,1,coriolanus,1607\nJunius,1,coriolanus,1607\nblended,1,coriolanus,1607\nTwelve,1,coriolanus,1607\nhastily,1,coriolanus,1607\neleven,1,coriolanus,1607\nsauced,1,coriolanus,1607\n'Welcome,1,coriolanus,1607\ncrafts,1,coriolanus,1607\nspire,1,coriolanus,1607\nwithdraw,1,coriolanus,1607\nsouthward,1,coriolanus,1607\nchats,1,coriolanus,1607\nlion,1,coriolanus,1607\npages,1,coriolanus,1607\ncaptives,1,coriolanus,1607\nforgetfulness,1,coriolanus,1607\nBastards,1,coriolanus,1607\nPushes,1,coriolanus,1607\nmourning,1,coriolanus,1607\no'erbear,1,coriolanus,1607\npetitionary,1,coriolanus,1607\ngrains,1,coriolanus,1607\ntelling,1,coriolanus,1607\nafflicts,1,coriolanus,1607\nsometimes,1,coriolanus,1607\nterror,1,coriolanus,1607\npetition'd,1,coriolanus,1607\neunuch,1,coriolanus,1607\ncymbals,1,coriolanus,1607\nlethargy,1,coriolanus,1607\npeck,1,coriolanus,1607\nhumanely,1,coriolanus,1607\nhomes,1,coriolanus,1607\nsynod,1,coriolanus,1607\nMan,1,coriolanus,1607\nflaw,1,coriolanus,1607\nflag,1,coriolanus,1607\nparasite's,1,coriolanus,1607\ntenderness,1,coriolanus,1607\nPublicola,1,coriolanus,1607\nRequite,1,coriolanus,1607\nsackbuts,1,coriolanus,1607\nhighway,1,coriolanus,1607\nfitness,1,coriolanus,1607\nkeepers,1,coriolanus,1607\nthrowing,1,coriolanus,1607\nmanifests,1,coriolanus,1607\nDone,1,coriolanus,1607\nmuffled,1,coriolanus,1607\ncustomary,1,coriolanus,1607\nfright,1,coriolanus,1607\nReason,1,coriolanus,1607\nnotched,1,coriolanus,1607\npeer,1,coriolanus,1607\nrecompense,1,coriolanus,1607\nlevies,1,coriolanus,1607\nWithout,1,coriolanus,1607\npeep,1,coriolanus,1607\nbesides,1,coriolanus,1607\nsilver,1,coriolanus,1607\nOlympus,1,coriolanus,1607\nhowbeit,1,coriolanus,1607\nHecuba,1,coriolanus,1607\no'erwhelm'd,1,coriolanus,1607\nbreaking,1,coriolanus,1607\nnurse's,1,coriolanus,1607\nlovelier,1,coriolanus,1607\nbecome't,1,coriolanus,1607\nbonneted,1,coriolanus,1607\ncontemn,1,coriolanus,1607\nentreaty,1,coriolanus,1607\nbarking,1,coriolanus,1607\nfollow'd,1,coriolanus,1607\nwindows,1,coriolanus,1607\ndislodged,1,coriolanus,1607\nurged,1,coriolanus,1607\nsimply,1,coriolanus,1607\ncupboarding,1,coriolanus,1607\nviperous,1,coriolanus,1607\nshade,1,coriolanus,1607\ntransported,1,coriolanus,1607\nfrank,1,coriolanus,1607\nTherein,1,coriolanus,1607\nsentence,1,coriolanus,1607\nentrance,1,coriolanus,1607\ncornets,1,coriolanus,1607\nrisen,1,coriolanus,1607\nearned,1,coriolanus,1607\ninnovator,1,coriolanus,1607\ntackle's,1,coriolanus,1607\nhardening,1,coriolanus,1607\ncomplainings,1,coriolanus,1607\nTie,1,coriolanus,1607\nbrag,1,coriolanus,1607\ninventory,1,coriolanus,1607\nlaid,1,coriolanus,1607\nconfirm,1,coriolanus,1607\nprovide,1,coriolanus,1607\ncorrected,1,coriolanus,1607\nProsperity,1,coriolanus,1607\npebbles,1,coriolanus,1607\nharsh,1,coriolanus,1607\nmatrons,1,coriolanus,1607\nconfine,1,coriolanus,1607\nConjectural,1,coriolanus,1607\nwith's,1,coriolanus,1607\nprincely,1,coriolanus,1607\ndark,1,coriolanus,1607\nneeder,1,coriolanus,1607\noccupations,1,coriolanus,1607\nCommands,1,coriolanus,1607\nprecepts,1,coriolanus,1607\nweigh,1,coriolanus,1607\nnodding,1,coriolanus,1607\ncracking,1,coriolanus,1607\nsolace,1,coriolanus,1607\nTogether,1,coriolanus,1607\nland,1,coriolanus,1607\ncatch,1,coriolanus,1607\nha't,1,coriolanus,1607\nwidens,1,coriolanus,1607\nLets,1,coriolanus,1607\npent,1,coriolanus,1607\nassaulted,1,coriolanus,1607\nEnvied,1,coriolanus,1607\nbussing,1,coriolanus,1607\nhumbler,1,coriolanus,1607\nhoping,1,coriolanus,1607\ninjurious,1,coriolanus,1607\ncomeliness,1,coriolanus,1607\nfellowship,1,coriolanus,1607\nhotly,1,coriolanus,1607\nunparallel'd,1,coriolanus,1607\ndry,1,coriolanus,1607\ngreat'st,1,coriolanus,1607\nlame,1,coriolanus,1607\nclutch'd,1,coriolanus,1607\nneeded,1,coriolanus,1607\ninstantly,1,coriolanus,1607\nresting,1,coriolanus,1607\nBring,1,coriolanus,1607\nflour,1,coriolanus,1607\nmature,1,coriolanus,1607\nDRAMATIS,1,coriolanus,1607\ninches,1,coriolanus,1607\nClambering,1,coriolanus,1607\ngarlic,1,coriolanus,1607\nchildishness,1,coriolanus,1607\ntie,1,coriolanus,1607\naltitude,1,coriolanus,1607\nrescue,1,coriolanus,1607\nhews,1,coriolanus,1607\nphysician,1,coriolanus,1607\nencountering,1,coriolanus,1607\nprerogative,1,coriolanus,1607\nvex'd,1,coriolanus,1607\ncommanding,1,coriolanus,1607\nDroop,1,coriolanus,1607\ntopping,1,coriolanus,1607\nrewards,1,coriolanus,1607\nlieve,1,coriolanus,1607\ngnaw,1,coriolanus,1607\nascent,1,coriolanus,1607\nrecord,1,coriolanus,1607\ntrees,1,coriolanus,1607\ncross,1,coriolanus,1607\nstol'n,1,coriolanus,1607\nbudger,1,coriolanus,1607\ncontest,1,coriolanus,1607\nTarquin's,1,coriolanus,1607\ngentler,1,coriolanus,1607\nunapt,1,coriolanus,1607\nking,1,coriolanus,1607\n'That,1,coriolanus,1607\nsmelt,1,coriolanus,1607\nfusty,1,coriolanus,1607\ntinder,1,coriolanus,1607\nsithence,1,coriolanus,1607\nDirect,1,coriolanus,1607\nreconcile,1,coriolanus,1607\nslip,1,coriolanus,1607\nenormity,1,coriolanus,1607\ngloves,1,coriolanus,1607\nawake,1,coriolanus,1607\nshouting,1,coriolanus,1607\nsoundly,1,coriolanus,1607\nsay't,1,coriolanus,1607\nFall,1,coriolanus,1607\ncharity,1,coriolanus,1607\nFalse,1,coriolanus,1607\ngarners,1,coriolanus,1607\nTullus',1,coriolanus,1607\nstriving,1,coriolanus,1607\nrepair,1,coriolanus,1607\n'Peace,1,coriolanus,1607\nparley,1,coriolanus,1607\nfeebling,1,coriolanus,1607\nshoes,1,coriolanus,1607\nscotched,1,coriolanus,1607\nFame,1,coriolanus,1607\nintends,1,coriolanus,1607\nBound,1,coriolanus,1607\noverta'en,1,coriolanus,1607\ncrown,1,coriolanus,1607\nselves,1,coriolanus,1607\nfavouring,1,coriolanus,1607\ndissemble,1,coriolanus,1607\nblush'd,1,coriolanus,1607\nturn'd,1,coriolanus,1607\nHolding,1,coriolanus,1607\n'They,1,coriolanus,1607\nshow'st,1,coriolanus,1607\nvilely,1,coriolanus,1607\nwoo'd,1,coriolanus,1607\ndegrees,1,coriolanus,1607\nWeapons,1,coriolanus,1607\ndotant,1,coriolanus,1607\nungrateful,1,coriolanus,1607\nlads,1,coriolanus,1607\nsummer,1,coriolanus,1607\nmalignantly,1,coriolanus,1607\nbusied,1,coriolanus,1607\nholding,2,coriolanus,1607\nveil'd,2,coriolanus,1607\nadvanced,2,coriolanus,1607\nauthorities,2,coriolanus,1607\nforbid,2,coriolanus,1607\ninstruments,2,coriolanus,1607\nstaves,2,coriolanus,1607\nhorns,2,coriolanus,1607\nC,2,coriolanus,1607\nc,2,coriolanus,1607\nsmiles,2,coriolanus,1607\nports,2,coriolanus,1607\nred,2,coriolanus,1607\nextremity,2,coriolanus,1607\nfor's,2,coriolanus,1607\nstation,2,coriolanus,1607\ndouble,2,coriolanus,1607\nweary,2,coriolanus,1607\nwish'd,2,coriolanus,1607\nhelms,2,coriolanus,1607\nespecially,2,coriolanus,1607\ntreasure,2,coriolanus,1607\nwoman's,2,coriolanus,1607\nadvantage,2,coriolanus,1607\nran,2,coriolanus,1607\nroyal,2,coriolanus,1607\nbrows,2,coriolanus,1607\nhasty,2,coriolanus,1607\nhaste,2,coriolanus,1607\npreparation,2,coriolanus,1607\nassured,2,coriolanus,1607\nrob,2,coriolanus,1607\nscene,2,coriolanus,1607\nstopp'd,2,coriolanus,1607\nroad,2,coriolanus,1607\nAGRIPPA,2,coriolanus,1607\nboys,2,coriolanus,1607\nmelt,2,coriolanus,1607\nhell,2,coriolanus,1607\neight,2,coriolanus,1607\npoisonous,2,coriolanus,1607\nclusters,2,coriolanus,1607\ncursing,2,coriolanus,1607\nEither,2,coriolanus,1607\ngrim,2,coriolanus,1607\nhonourable,2,coriolanus,1607\nlooked,2,coriolanus,1607\nnaked,2,coriolanus,1607\ndeclines,2,coriolanus,1607\ndrink,2,coriolanus,1607\nwithal,2,coriolanus,1607\nnought,2,coriolanus,1607\nsoul,2,coriolanus,1607\ncalls,2,coriolanus,1607\nmalicious,2,coriolanus,1607\nsore,2,coriolanus,1607\npick,2,coriolanus,1607\nbowels,2,coriolanus,1607\ndemand,2,coriolanus,1607\nspare,2,coriolanus,1607\nsaved,2,coriolanus,1607\nliar,2,coriolanus,1607\nOnce,2,coriolanus,1607\nAfter,2,coriolanus,1607\nconfusion,2,coriolanus,1607\nYoung,2,coriolanus,1607\nsat,2,coriolanus,1607\ndance,2,coriolanus,1607\nassembly,2,coriolanus,1607\ngrows,2,coriolanus,1607\npile,2,coriolanus,1607\nsennet,2,coriolanus,1607\nheat,2,coriolanus,1607\nroar'd,2,coriolanus,1607\nmanacles,2,coriolanus,1607\nworthier,2,coriolanus,1607\nlift,2,coriolanus,1607\nrepetition,2,coriolanus,1607\nknaves,2,coriolanus,1607\naddition,2,coriolanus,1607\nveins,2,coriolanus,1607\ncalamity,2,coriolanus,1607\nlesser,2,coriolanus,1607\nbegan,2,coriolanus,1607\npartner,2,coriolanus,1607\nshe's,2,coriolanus,1607\nseeking,2,coriolanus,1607\nsin,2,coriolanus,1607\nGet,2,coriolanus,1607\nlight,2,coriolanus,1607\nworthiest,2,coriolanus,1607\nsaying,2,coriolanus,1607\nDeserves,2,coriolanus,1607\nchiefest,2,coriolanus,1607\nthrone,2,coriolanus,1607\nbeasts,2,coriolanus,1607\ngeese,2,coriolanus,1607\nscorn,2,coriolanus,1607\nfell,2,coriolanus,1607\nabused,2,coriolanus,1607\npardons,2,coriolanus,1607\nperil,2,coriolanus,1607\nSuch,2,coriolanus,1607\nchildren's,2,coriolanus,1607\ncountenance,2,coriolanus,1607\nkindle,2,coriolanus,1607\nkindly,2,coriolanus,1607\nbow'd,2,coriolanus,1607\nconsul's,2,coriolanus,1607\ndisgrace,2,coriolanus,1607\nnecks,2,coriolanus,1607\nMusic,2,coriolanus,1607\npieces,2,coriolanus,1607\nShouting,2,coriolanus,1607\noffence,2,coriolanus,1607\nreap,2,coriolanus,1607\nwrong,2,coriolanus,1607\npoints,2,coriolanus,1607\npiece,2,coriolanus,1607\nOut,2,coriolanus,1607\nways,2,coriolanus,1607\ngrub,2,coriolanus,1607\ndirect,2,coriolanus,1607\ndieted,2,coriolanus,1607\nstoutness,2,coriolanus,1607\nactions,2,coriolanus,1607\nabhorr'd,2,coriolanus,1607\nwhite,2,coriolanus,1607\nswoon,2,coriolanus,1607\ntribes,2,coriolanus,1607\nWhilst,2,coriolanus,1607\ncries,2,coriolanus,1607\nsup,2,coriolanus,1607\npoorest,2,coriolanus,1607\nabove,2,coriolanus,1607\nbows,2,coriolanus,1607\npunish,2,coriolanus,1607\nplainly,2,coriolanus,1607\nclaim,2,coriolanus,1607\nblind,2,coriolanus,1607\nbrief,2,coriolanus,1607\nneighbourhood,2,coriolanus,1607\nelders,2,coriolanus,1607\nupon't,2,coriolanus,1607\ncorrupt,2,coriolanus,1607\nWhereto,2,coriolanus,1607\nporter,2,coriolanus,1607\nflesh,2,coriolanus,1607\ntiger,2,coriolanus,1607\nMight,2,coriolanus,1607\nAlone,2,coriolanus,1607\nmirth,2,coriolanus,1607\nlength,2,coriolanus,1607\ndearer,2,coriolanus,1607\nsuperfluity,2,coriolanus,1607\nbrand,2,coriolanus,1607\nwise,2,coriolanus,1607\nanon,2,coriolanus,1607\ndirectly,2,coriolanus,1607\naccuse,2,coriolanus,1607\ndispleasure,2,coriolanus,1607\nseem'd,2,coriolanus,1607\npierce,2,coriolanus,1607\nwave,2,coriolanus,1607\nstop,2,coriolanus,1607\npretty,2,coriolanus,1607\nrule,2,coriolanus,1607\nwash,2,coriolanus,1607\nmeal,2,coriolanus,1607\nsteel,2,coriolanus,1607\nruled,2,coriolanus,1607\n'thwack,2,coriolanus,1607\nbook,2,coriolanus,1607\nRepair,2,coriolanus,1607\nconquer,2,coriolanus,1607\ndeserves,2,coriolanus,1607\nsick,2,coriolanus,1607\nbig,2,coriolanus,1607\nwherefore,2,coriolanus,1607\nnail,2,coriolanus,1607\nha',2,coriolanus,1607\nstir,2,coriolanus,1607\nsolicit,2,coriolanus,1607\nburning,2,coriolanus,1607\noaken,2,coriolanus,1607\nhat,2,coriolanus,1607\nWhile,2,coriolanus,1607\ncommons,2,coriolanus,1607\nsign,2,coriolanus,1607\nexercise,2,coriolanus,1607\n'Twere,2,coriolanus,1607\nflattery,2,coriolanus,1607\ncontroversy,2,coriolanus,1607\npay,2,coriolanus,1607\nshowing,2,coriolanus,1607\nmutiny,2,coriolanus,1607\nHim,2,coriolanus,1607\nalarum,2,coriolanus,1607\nassault,2,coriolanus,1607\nblown,2,coriolanus,1607\nJUNIUS,2,coriolanus,1607\nHaving,2,coriolanus,1607\nDismiss,2,coriolanus,1607\nO',2,coriolanus,1607\nladyship,2,coriolanus,1607\ncruel,2,coriolanus,1607\nunless,2,coriolanus,1607\ningrateful,2,coriolanus,1607\nSeventh,2,coriolanus,1607\ndreaded,2,coriolanus,1607\nto's,2,coriolanus,1607\nHer,2,coriolanus,1607\nfinds,2,coriolanus,1607\nwisdom,2,coriolanus,1607\nbed,2,coriolanus,1607\ndigest,2,coriolanus,1607\neast,2,coriolanus,1607\nbid,2,coriolanus,1607\nplay,2,coriolanus,1607\nstem,2,coriolanus,1607\nCondition,2,coriolanus,1607\ntemples,2,coriolanus,1607\nIs't,2,coriolanus,1607\npot,2,coriolanus,1607\nmonstrous,2,coriolanus,1607\ntemple,2,coriolanus,1607\ndwellest,2,coriolanus,1607\nRetires,2,coriolanus,1607\npriests,2,coriolanus,1607\ngold,2,coriolanus,1607\nsits,2,coriolanus,1607\nJove's,2,coriolanus,1607\nbury,2,coriolanus,1607\nsuffer'd,2,coriolanus,1607\ndifference,2,coriolanus,1607\ncanon,2,coriolanus,1607\ncrush,2,coriolanus,1607\nMARCUS,2,coriolanus,1607\nsounds,2,coriolanus,1607\nbeyond,2,coriolanus,1607\nwaving,2,coriolanus,1607\nblock,2,coriolanus,1607\nTarquin,2,coriolanus,1607\nVELUTUS,2,coriolanus,1607\nsilk,2,coriolanus,1607\ndespite,2,coriolanus,1607\nvows,2,coriolanus,1607\nAbove,2,coriolanus,1607\npreserve,2,coriolanus,1607\ndivine,2,coriolanus,1607\ncrack'd,2,coriolanus,1607\nstronger,2,coriolanus,1607\nsink,2,coriolanus,1607\nWhither,2,coriolanus,1607\nrejoice,2,coriolanus,1607\nstretch,2,coriolanus,1607\nTiber,2,coriolanus,1607\ntrades,2,coriolanus,1607\ncrowned,2,coriolanus,1607\nforemost,2,coriolanus,1607\nbisson,2,coriolanus,1607\ncontinued,2,coriolanus,1607\ninstant,2,coriolanus,1607\ndeep,2,coriolanus,1607\nflatterers,2,coriolanus,1607\naffection,2,coriolanus,1607\nwretch,2,coriolanus,1607\nconfess,2,coriolanus,1607\nCannot,2,coriolanus,1607\ncontinues,2,coriolanus,1607\nexcellent,2,coriolanus,1607\ndispositions,2,coriolanus,1607\nMaking,2,coriolanus,1607\ngain,2,coriolanus,1607\nlegs,2,coriolanus,1607\nstone,2,coriolanus,1607\nworthily,2,coriolanus,1607\nlikely,2,coriolanus,1607\n'Fore,2,coriolanus,1607\nReturn,2,coriolanus,1607\nlend,2,coriolanus,1607\ndestruction,2,coriolanus,1607\nnettle,2,coriolanus,1607\naccused,2,coriolanus,1607\ndefence,2,coriolanus,1607\nay,2,coriolanus,1607\nprivilege,2,coriolanus,1607\nmanner,2,coriolanus,1607\nEnforce,2,coriolanus,1607\nsupreme,2,coriolanus,1607\ndoor,2,coriolanus,1607\ncommend,2,coriolanus,1607\nbodies,2,coriolanus,1607\nidle,2,coriolanus,1607\nMyself,2,coriolanus,1607\npuff,2,coriolanus,1607\nvalue,2,coriolanus,1607\nbegg'd,2,coriolanus,1607\nimpediment,2,coriolanus,1607\noffer'd,2,coriolanus,1607\nendure,2,coriolanus,1607\nla,2,coriolanus,1607\nlost,2,coriolanus,1607\nloss,2,coriolanus,1607\nForum,2,coriolanus,1607\nafternoon,2,coriolanus,1607\nall's,2,coriolanus,1607\nbench,2,coriolanus,1607\njourney,2,coriolanus,1607\n'Citizens,2,coriolanus,1607\nkilled,2,coriolanus,1607\nWhence,2,coriolanus,1607\nhardly,2,coriolanus,1607\nsyllables,2,coriolanus,1607\nfierce,2,coriolanus,1607\noutward,2,coriolanus,1607\nseconds,2,coriolanus,1607\nintended,2,coriolanus,1607\nHercules,2,coriolanus,1607\nCotus,2,coriolanus,1607\nweeds,2,coriolanus,1607\nsee't,2,coriolanus,1607\nrushes,2,coriolanus,1607\nnobleness,2,coriolanus,1607\nsuitors,2,coriolanus,1607\nvengeance,2,coriolanus,1607\nform,2,coriolanus,1607\nfort,2,coriolanus,1607\npair,2,coriolanus,1607\nreturn'd,2,coriolanus,1607\nfiery,2,coriolanus,1607\nhum,2,coriolanus,1607\nforsworn,2,coriolanus,1607\nprecipitation,2,coriolanus,1607\nstones,2,coriolanus,1607\npace,2,coriolanus,1607\npack,2,coriolanus,1607\nputs,2,coriolanus,1607\ngentry,2,coriolanus,1607\nHoo,2,coriolanus,1607\nobey'd,2,coriolanus,1607\nass,2,coriolanus,1607\nfond,2,coriolanus,1607\ndews,2,coriolanus,1607\npikes,2,coriolanus,1607\nbeards,2,coriolanus,1607\nmayst,2,coriolanus,1607\nterm,2,coriolanus,1607\ntrick,2,coriolanus,1607\ntrial,2,coriolanus,1607\ntribe,2,coriolanus,1607\nwillingly,2,coriolanus,1607\nguest,2,coriolanus,1607\nroot,2,coriolanus,1607\nlead,2,coriolanus,1607\nspoken,2,coriolanus,1607\ncapital,2,coriolanus,1607\nfitly,2,coriolanus,1607\nroom,2,coriolanus,1607\nhangmen,2,coriolanus,1607\nCaptains,2,coriolanus,1607\ngarments,2,coriolanus,1607\nequal,2,coriolanus,1607\nmain,2,coriolanus,1607\nventure,2,coriolanus,1607\ncarried,2,coriolanus,1607\ncarries,2,coriolanus,1607\nforehead,2,coriolanus,1607\nshouldst,2,coriolanus,1607\nrascals,2,coriolanus,1607\nsilence,2,coriolanus,1607\nwater,2,coriolanus,1607\nBetter,2,coriolanus,1607\nprosperity,2,coriolanus,1607\nthinks,2,coriolanus,1607\nHalf,2,coriolanus,1607\nnose,2,coriolanus,1607\nmidst,2,coriolanus,1607\nlack'd,2,coriolanus,1607\nwonder,2,coriolanus,1607\naccusations,2,coriolanus,1607\nShow'd,2,coriolanus,1607\nHang,2,coriolanus,1607\nrats,2,coriolanus,1607\nrash,2,coriolanus,1607\ntender,2,coriolanus,1607\nhide,2,coriolanus,1607\nbled,2,coriolanus,1607\nslain,2,coriolanus,1607\n'Be,2,coriolanus,1607\naffections,2,coriolanus,1607\nperform,2,coriolanus,1607\nintercession,2,coriolanus,1607\nsuccesses,2,coriolanus,1607\nmouth,2,coriolanus,1607\nyouth,2,coriolanus,1607\nquestion,2,coriolanus,1607\nresisted,2,coriolanus,1607\nadmits,2,coriolanus,1607\ndoors,2,coriolanus,1607\nother's,2,coriolanus,1607\nmortal,2,coriolanus,1607\ntowards,2,coriolanus,1607\nsacrifice,2,coriolanus,1607\nDrums,2,coriolanus,1607\nnod,2,coriolanus,1607\nprize,2,coriolanus,1607\nshield,2,coriolanus,1607\napproaches,2,coriolanus,1607\nsoothing,2,coriolanus,1607\nblush,2,coriolanus,1607\nlowest,2,coriolanus,1607\ncourage,2,coriolanus,1607\nchief,2,coriolanus,1607\nquench,2,coriolanus,1607\nwot,2,coriolanus,1607\nleaden,2,coriolanus,1607\nblow,2,coriolanus,1607\nchaff,2,coriolanus,1607\ncraves,2,coriolanus,1607\ninfect,2,coriolanus,1607\nfather's,2,coriolanus,1607\nperemptory,2,coriolanus,1607\nbelly's,2,coriolanus,1607\nones,2,coriolanus,1607\nbehalf,2,coriolanus,1607\ntaste,2,coriolanus,1607\nItaly,2,coriolanus,1607\nslight,2,coriolanus,1607\npoll,2,coriolanus,1607\npassage,2,coriolanus,1607\nJoin'd,2,coriolanus,1607\nopinion,2,coriolanus,1607\nwrongs,2,coriolanus,1607\nodd,2,coriolanus,1607\ndishonour,2,coriolanus,1607\nsafely,2,coriolanus,1607\nentreaties,2,coriolanus,1607\nsides,2,coriolanus,1607\nenters,2,coriolanus,1607\noft,2,coriolanus,1607\ncure,2,coriolanus,1607\ncurs,2,coriolanus,1607\nloving,2,coriolanus,1607\nmorrow,2,coriolanus,1607\nabundance,2,coriolanus,1607\nmagistrates,2,coriolanus,1607\nripe,2,coriolanus,1607\nstanding,2,coriolanus,1607\nNicanor,2,coriolanus,1607\nvouch,2,coriolanus,1607\nsubtle,2,coriolanus,1607\nwidows,2,coriolanus,1607\nThine,2,coriolanus,1607\nheavy,2,coriolanus,1607\nstiff,2,coriolanus,1607\nmould,2,coriolanus,1607\ndriven,2,coriolanus,1607\ncommoners,2,coriolanus,1607\noath,2,coriolanus,1607\nintent,2,coriolanus,1607\nsufferance,2,coriolanus,1607\nends,2,coriolanus,1607\nemulation,2,coriolanus,1607\nwheel,2,coriolanus,1607\ncushions,2,coriolanus,1607\nThree,2,coriolanus,1607\nhappy,2,coriolanus,1607\nGiven,2,coriolanus,1607\ncaught,2,coriolanus,1607\nhair,2,coriolanus,1607\nhail,2,coriolanus,1607\nSixth,2,coriolanus,1607\nprompt,2,coriolanus,1607\nGreece,2,coriolanus,1607\nrages,2,coriolanus,1607\ntakes,2,coriolanus,1607\ntaken,2,coriolanus,1607\nweeping,2,coriolanus,1607\nrequire,2,coriolanus,1607\nopposite,2,coriolanus,1607\nwomb,2,coriolanus,1607\nclip,2,coriolanus,1607\ndull,2,coriolanus,1607\nwolf,2,coriolanus,1607\nserves,2,coriolanus,1607\nEver,2,coriolanus,1607\nfile,2,coriolanus,1607\nearnestness,2,coriolanus,1607\nStrike,2,coriolanus,1607\nShow,2,coriolanus,1607\nhunger,2,coriolanus,1607\ndurst,2,coriolanus,1607\ncharacter,2,coriolanus,1607\njudge,2,coriolanus,1607\ndesert,2,coriolanus,1607\nHadst,2,coriolanus,1607\nProceed,2,coriolanus,1607\naediles,2,coriolanus,1607\nkites,2,coriolanus,1607\nworn,2,coriolanus,1607\ndiscover,2,coriolanus,1607\ncolours,2,coriolanus,1607\nthrew,2,coriolanus,1607\n'shall',2,coriolanus,1607\npassing,2,coriolanus,1607\nwest,2,coriolanus,1607\nflame,2,coriolanus,1607\noffices,2,coriolanus,1607\nAttend,2,coriolanus,1607\nLead,2,coriolanus,1607\nthereby,2,coriolanus,1607\nrebuke,2,coriolanus,1607\nminded,2,coriolanus,1607\nshown,2,coriolanus,1607\npractise,2,coriolanus,1607\npartly,2,coriolanus,1607\nbats,2,coriolanus,1607\nBelow,2,coriolanus,1607\nstinking,2,coriolanus,1607\ndeliver'd,2,coriolanus,1607\nkiss,2,coriolanus,1607\nrising,2,coriolanus,1607\nlarge,2,coriolanus,1607\nEach,2,coriolanus,1607\nblaze,2,coriolanus,1607\ncoal,2,coriolanus,1607\nsentenced,2,coriolanus,1607\nhatred,2,coriolanus,1607\nTrust,2,coriolanus,1607\nWorse,2,coriolanus,1607\nought,2,coriolanus,1607\nholds,2,coriolanus,1607\nholy,2,coriolanus,1607\nshort,2,coriolanus,1607\nclean,2,coriolanus,1607\ndozen,2,coriolanus,1607\ndistinctly,2,coriolanus,1607\ndevour,2,coriolanus,1607\nrevoke,2,coriolanus,1607\nrevolt,2,coriolanus,1607\nasking,2,coriolanus,1607\nRepent,2,coriolanus,1607\nfeeding,2,coriolanus,1607\nvirtues,2,coriolanus,1607\ncounsels,2,coriolanus,1607\nseal,2,coriolanus,1607\nRome's,2,coriolanus,1607\nalso,2,coriolanus,1607\nlungs,2,coriolanus,1607\nevident,2,coriolanus,1607\nhunt,2,coriolanus,1607\nJuno,2,coriolanus,1607\nbreasts,2,coriolanus,1607\nswear,2,coriolanus,1607\nadieu,2,coriolanus,1607\ncaptain,2,coriolanus,1607\nsuits,2,coriolanus,1607\nthereto,2,coriolanus,1607\ndefend,2,coriolanus,1607\npredecessors,2,coriolanus,1607\nended,2,coriolanus,1607\ncourtesy,2,coriolanus,1607\nstrengths,2,coriolanus,1607\nvessel,2,coriolanus,1607\nshapes,2,coriolanus,1607\nrender,2,coriolanus,1607\nshields,2,coriolanus,1607\n'shall,2,coriolanus,1607\ntroop,2,coriolanus,1607\nreplied,2,coriolanus,1607\nfabric,2,coriolanus,1607\nthrust,2,coriolanus,1607\nthreshold,2,coriolanus,1607\navoid,2,coriolanus,1607\nbriefly,2,coriolanus,1607\nDeliver,2,coriolanus,1607\nhours,2,coriolanus,1607\ncountrymen,2,coriolanus,1607\nsouls,2,coriolanus,1607\nuncertain,2,coriolanus,1607\nwhilst,2,coriolanus,1607\nstored,2,coriolanus,1607\nbleeding,2,coriolanus,1607\nmother's,2,coriolanus,1607\nnurse,2,coriolanus,1607\npratest,2,coriolanus,1607\nhighest,2,coriolanus,1607\nMarch,2,coriolanus,1607\ncanopy,2,coriolanus,1607\nbestow,2,coriolanus,1607\nchances,2,coriolanus,1607\nTwo,2,coriolanus,1607\nNothing,2,coriolanus,1607\npetty,2,coriolanus,1607\nsounded,2,coriolanus,1607\nleast,2,coriolanus,1607\nFive,2,coriolanus,1607\nforced,2,coriolanus,1607\nstarve,2,coriolanus,1607\nAnother,2,coriolanus,1607\nwarlike,2,coriolanus,1607\ncensured,2,coriolanus,1607\nglory,2,coriolanus,1607\nmeeting,2,coriolanus,1607\nextol,2,coriolanus,1607\nthoughts,2,coriolanus,1607\nbody's,2,coriolanus,1607\nfashion,2,coriolanus,1607\nwarriors,2,coriolanus,1607\ninterpretation,2,coriolanus,1607\non's,2,coriolanus,1607\nphysic,2,coriolanus,1607\ndismiss,2,coriolanus,1607\nBeseech,2,coriolanus,1607\ngulf,2,coriolanus,1607\nflat,2,coriolanus,1607\nVII,2,coriolanus,1607\nFifth,2,coriolanus,1607\ndiscontented,2,coriolanus,1607\nstretch'd,2,coriolanus,1607\nlist,2,coriolanus,1607\nappetite,2,coriolanus,1607\nmow,2,coriolanus,1607\nleading,2,coriolanus,1607\nDeath,2,coriolanus,1607\n'This,2,coriolanus,1607\nAufidius's,2,coriolanus,1607\nslay,2,coriolanus,1607\nNote,2,coriolanus,1607\ndog,2,coriolanus,1607\nbran,2,coriolanus,1607\nasleep,2,coriolanus,1607\nfamish,2,coriolanus,1607\ndestroy,2,coriolanus,1607\ninstruction,2,coriolanus,1607\ntop,2,coriolanus,1607\nreverend,2,coriolanus,1607\ntired,2,coriolanus,1607\nwills,2,coriolanus,1607\ngreatness,2,coriolanus,1607\nsurfeits,2,coriolanus,1607\nSicinius,2,coriolanus,1607\npronounce,2,coriolanus,1607\namen,2,coriolanus,1607\ndone't,2,coriolanus,1607\nobedience,2,coriolanus,1607\nbids,2,coriolanus,1607\nHector,2,coriolanus,1607\nbreaths,2,coriolanus,1607\nundertake,2,coriolanus,1607\ndin,2,coriolanus,1607\nwouldst,2,coriolanus,1607\nsway,2,coriolanus,1607\ndaughters,2,coriolanus,1607\nsurname,3,coriolanus,1607\ndrop,3,coriolanus,1607\ndined,3,coriolanus,1607\nafar,3,coriolanus,1607\nheir,3,coriolanus,1607\nmistress,3,coriolanus,1607\nspeech,3,coriolanus,1607\nwrit,3,coriolanus,1607\npossible,3,coriolanus,1607\nFie,3,coriolanus,1607\nlawful,3,coriolanus,1607\nWhether,3,coriolanus,1607\nday's,3,coriolanus,1607\nBear,3,coriolanus,1607\nhelps,3,coriolanus,1607\nfliers,3,coriolanus,1607\nTell,3,coriolanus,1607\nfinger,3,coriolanus,1607\nherd,3,coriolanus,1607\nsight,3,coriolanus,1607\nHelp,3,coriolanus,1607\nlaugh,3,coriolanus,1607\nsort,3,coriolanus,1607\ntrust,3,coriolanus,1607\ncheeks,3,coriolanus,1607\nbattles,3,coriolanus,1607\nplague,3,coriolanus,1607\nsoon,3,coriolanus,1607\ndisdain,3,coriolanus,1607\nsons,3,coriolanus,1607\ngrown,3,coriolanus,1607\nincensed,3,coriolanus,1607\ngracious,3,coriolanus,1607\ninjury,3,coriolanus,1607\ntrumpet,3,coriolanus,1607\ntoward,3,coriolanus,1607\npolicy,3,coriolanus,1607\nofficers,3,coriolanus,1607\nmaking,3,coriolanus,1607\nsoft,3,coriolanus,1607\nMethinks,3,coriolanus,1607\nview,3,coriolanus,1607\nsix,3,coriolanus,1607\nhereafter,3,coriolanus,1607\n'twere,3,coriolanus,1607\nvirtuous,3,coriolanus,1607\nfollowed,3,coriolanus,1607\nbeloved,3,coriolanus,1607\nlooks,3,coriolanus,1607\nwar's,3,coriolanus,1607\ndearth,3,coriolanus,1607\nread,3,coriolanus,1607\nworst,3,coriolanus,1607\nbrain,3,coriolanus,1607\ndaughter,3,coriolanus,1607\nencounter,3,coriolanus,1607\nhumble,3,coriolanus,1607\nbrace,3,coriolanus,1607\ncease,3,coriolanus,1607\ngrow,3,coriolanus,1607\nsuffering,3,coriolanus,1607\nfalse,3,coriolanus,1607\nputting,3,coriolanus,1607\nwant,3,coriolanus,1607\nPlease,3,coriolanus,1607\nknow'st,3,coriolanus,1607\nhated,3,coriolanus,1607\nbold,3,coriolanus,1607\nrebellion,3,coriolanus,1607\nmeat,3,coriolanus,1607\nLadies,3,coriolanus,1607\nwits,3,coriolanus,1607\nFollow,3,coriolanus,1607\npraises,3,coriolanus,1607\nhungry,3,coriolanus,1607\nconditions,3,coriolanus,1607\nknowledge,3,coriolanus,1607\nauthority,3,coriolanus,1607\nmorning,3,coriolanus,1607\nfoes,3,coriolanus,1607\nrefuse,3,coriolanus,1607\nThose,3,coriolanus,1607\nunnatural,3,coriolanus,1607\nStill,3,coriolanus,1607\nsmile,3,coriolanus,1607\nbad,3,coriolanus,1607\ngratis,3,coriolanus,1607\nmusty,3,coriolanus,1607\nexceed,3,coriolanus,1607\ndenied,3,coriolanus,1607\nCornets,3,coriolanus,1607\ntear,3,coriolanus,1607\nblest,3,coriolanus,1607\nbless,3,coriolanus,1607\ncondemned,3,coriolanus,1607\nelection,3,coriolanus,1607\nVI,3,coriolanus,1607\nobey,3,coriolanus,1607\nbehind,3,coriolanus,1607\nburn,3,coriolanus,1607\npetition,3,coriolanus,1607\nweal,3,coriolanus,1607\nwear,3,coriolanus,1607\nBehold,3,coriolanus,1607\nfriendly,3,coriolanus,1607\nYe,3,coriolanus,1607\n'Twas,3,coriolanus,1607\ndogs,3,coriolanus,1607\nstore,3,coriolanus,1607\nbreast,3,coriolanus,1607\ndoit,3,coriolanus,1607\nsafe,3,coriolanus,1607\nyes,3,coriolanus,1607\nUnless,3,coriolanus,1607\ndead,3,coriolanus,1607\nseeing,3,coriolanus,1607\ntouch'd,3,coriolanus,1607\ntreaty,3,coriolanus,1607\nshed,3,coriolanus,1607\nthyself,3,coriolanus,1607\nbanished,3,coriolanus,1607\nfeast,3,coriolanus,1607\nknow't,3,coriolanus,1607\ncowardly,3,coriolanus,1607\napprobation,3,coriolanus,1607\nfears,3,coriolanus,1607\nutmost,3,coriolanus,1607\naside,3,coriolanus,1607\ncrave,3,coriolanus,1607\nsometime,3,coriolanus,1607\n'twould,3,coriolanus,1607\nspeak'st,3,coriolanus,1607\nresolved,3,coriolanus,1607\nill,3,coriolanus,1607\nspend,3,coriolanus,1607\ntwenty,3,coriolanus,1607\nlets,3,coriolanus,1607\nknew,3,coriolanus,1607\nforgot,3,coriolanus,1607\nBecause,3,coriolanus,1607\nhark,3,coriolanus,1607\nplot,3,coriolanus,1607\nhard,3,coriolanus,1607\npale,3,coriolanus,1607\nrepeal,3,coriolanus,1607\nTrumpets,3,coriolanus,1607\nconsuls,3,coriolanus,1607\nexcuse,3,coriolanus,1607\nfrown,3,coriolanus,1607\ndevise,3,coriolanus,1607\nfear'd,3,coriolanus,1607\nrough,3,coriolanus,1607\nprepared,3,coriolanus,1607\nrenowned,3,coriolanus,1607\nprate,3,coriolanus,1607\ntouch,3,coriolanus,1607\nhazard,3,coriolanus,1607\nbroke,3,coriolanus,1607\nguess,3,coriolanus,1607\nmarch,3,coriolanus,1607\nnobler,3,coriolanus,1607\nmoved,3,coriolanus,1607\nnay,3,coriolanus,1607\nfaith,3,coriolanus,1607\nmarks,3,coriolanus,1607\nhire,3,coriolanus,1607\nbelow,3,coriolanus,1607\ndaily,3,coriolanus,1607\nentertainment,3,coriolanus,1607\nbeard,3,coriolanus,1607\nours,3,coriolanus,1607\nmock'd,3,coriolanus,1607\nborne,3,coriolanus,1607\nyou'ld,3,coriolanus,1607\nignorant,3,coriolanus,1607\nSet,3,coriolanus,1607\nplaces,3,coriolanus,1607\nawhile,3,coriolanus,1607\nseveral,3,coriolanus,1607\nhigh,3,coriolanus,1607\nPeople,3,coriolanus,1607\n'He,3,coriolanus,1607\nleaves,3,coriolanus,1607\nteeth,3,coriolanus,1607\nMakes,3,coriolanus,1607\nmildly,3,coriolanus,1607\nvent,3,coriolanus,1607\nknows,3,coriolanus,1607\nissue,3,coriolanus,1607\nlabour,3,coriolanus,1607\nbenefit,3,coriolanus,1607\nnumber,3,coriolanus,1607\nMade,3,coriolanus,1607\ntrouble,3,coriolanus,1607\ndesires,3,coriolanus,1607\nproved,3,coriolanus,1607\nsake,3,coriolanus,1607\nretire,3,coriolanus,1607\nthrow,3,coriolanus,1607\nwit,3,coriolanus,1607\nstamp,3,coriolanus,1607\nliberties,3,coriolanus,1607\nfive,3,coriolanus,1607\nsorrow,3,coriolanus,1607\nbands,3,coriolanus,1607\nbutterfly,3,coriolanus,1607\nhumility,3,coriolanus,1607\ndust,3,coriolanus,1607\nduty,3,coriolanus,1607\nCan,3,coriolanus,1607\nforward,3,coriolanus,1607\ncurses,3,coriolanus,1607\nthroats,3,coriolanus,1607\nvulgar,3,coriolanus,1607\nworships,3,coriolanus,1607\ncharges,3,coriolanus,1607\ncharged,3,coriolanus,1607\nwondrous,3,coriolanus,1607\ndisposition,3,coriolanus,1607\nope,3,coriolanus,1607\nfail,3,coriolanus,1607\ncontempt,3,coriolanus,1607\n'fore,3,coriolanus,1607\ngiving,3,coriolanus,1607\nTill,3,coriolanus,1607\nfoe,3,coriolanus,1607\npleased,3,coriolanus,1607\nMark,3,coriolanus,1607\nrich,3,coriolanus,1607\nBoy,3,coriolanus,1607\nbare,3,coriolanus,1607\nFare,3,coriolanus,1607\nmeddle,3,coriolanus,1607\nanswer'd,3,coriolanus,1607\nhost,3,coriolanus,1607\nshows,3,coriolanus,1607\nye're,3,coriolanus,1607\nperceive,3,coriolanus,1607\npatient,3,coriolanus,1607\ncensure,3,coriolanus,1607\ngentleman,3,coriolanus,1607\nVery,3,coriolanus,1607\nnamed,3,coriolanus,1607\ntale,3,coriolanus,1607\nis't,3,coriolanus,1607\nlaw,3,coriolanus,1607\nconstant,3,coriolanus,1607\nValeria,3,coriolanus,1607\nwelcomes,3,coriolanus,1607\nAppear,3,coriolanus,1607\nperish,3,coriolanus,1607\nwild,3,coriolanus,1607\nalms,3,coriolanus,1607\nLay,3,coriolanus,1607\ndragon,3,coriolanus,1607\nfires,3,coriolanus,1607\nclubs,3,coriolanus,1607\nlives,3,coriolanus,1607\nWhere's,3,coriolanus,1607\ngives,3,coriolanus,1607\ncholer,3,coriolanus,1607\nhearth,3,coriolanus,1607\ncommission,3,coriolanus,1607\nsweat,3,coriolanus,1607\ninsolence,3,coriolanus,1607\naught,3,coriolanus,1607\nsouth,3,coriolanus,1607\n'twixt,3,coriolanus,1607\nHe'll,3,coriolanus,1607\nheels,3,coriolanus,1607\ntherein,3,coriolanus,1607\ncushion,3,coriolanus,1607\nsell,3,coriolanus,1607\nbald,3,coriolanus,1607\ntemperately,3,coriolanus,1607\ncold,3,coriolanus,1607\nchose,3,coriolanus,1607\nMarcius',3,coriolanus,1607\near,3,coriolanus,1607\nchosen,3,coriolanus,1607\nDoes,3,coriolanus,1607\ndetermine,3,coriolanus,1607\nSince,3,coriolanus,1607\nfully,3,coriolanus,1607\nheartily,3,coriolanus,1607\nGreat,3,coriolanus,1607\nlips,3,coriolanus,1607\nrespected,3,coriolanus,1607\nServiceman,3,coriolanus,1607\nAmen,3,coriolanus,1607\nKneels,3,coriolanus,1607\nrevenges,3,coriolanus,1607\ndishonour'd,3,coriolanus,1607\nterritories,3,coriolanus,1607\nhuman,3,coriolanus,1607\ntry,3,coriolanus,1607\nwitness,3,coriolanus,1607\nnumbers,3,coriolanus,1607\nrespect,3,coriolanus,1607\ntoe,3,coriolanus,1607\nbred,3,coriolanus,1607\nlamb,3,coriolanus,1607\nsuccess,3,coriolanus,1607\nToo,3,coriolanus,1607\nambitious,3,coriolanus,1607\ncommand,3,coriolanus,1607\npress'd,3,coriolanus,1607\nten,3,coriolanus,1607\nwoman,3,coriolanus,1607\nVirgilia,3,coriolanus,1607\nspoils,3,coriolanus,1607\ncrows,3,coriolanus,1607\ne'er,3,coriolanus,1607\nwomen,3,coriolanus,1607\nfortunes,3,coriolanus,1607\nmotion,4,coriolanus,1607\nfor't,4,coriolanus,1607\nhorse,4,coriolanus,1607\nalike,4,coriolanus,1607\nneighbours,4,coriolanus,1607\nexpress,4,coriolanus,1607\nsingle,4,coriolanus,1607\ndisease,4,coriolanus,1607\nwhile,4,coriolanus,1607\nthroat,4,coriolanus,1607\nunder,4,coriolanus,1607\ncheap,4,coriolanus,1607\nrun,4,coriolanus,1607\nabsolute,4,coriolanus,1607\nWhom,4,coriolanus,1607\ndraw,4,coriolanus,1607\nbearing,4,coriolanus,1607\nyears,4,coriolanus,1607\nJove,4,coriolanus,1607\nwants,4,coriolanus,1607\nTULLUS,4,coriolanus,1607\ncalm,4,coriolanus,1607\nvisit,4,coriolanus,1607\nexecution,4,coriolanus,1607\nprevail'd,4,coriolanus,1607\nsea,4,coriolanus,1607\nsuit,4,coriolanus,1607\n'I,4,coriolanus,1607\nit's,4,coriolanus,1607\nAttendants,4,coriolanus,1607\nourselves,4,coriolanus,1607\nworse,4,coriolanus,1607\nmerit,4,coriolanus,1607\nheavens,4,coriolanus,1607\nabsence,4,coriolanus,1607\nfault,4,coriolanus,1607\nWherein,4,coriolanus,1607\nLeave,4,coriolanus,1607\nfeel,4,coriolanus,1607\nchoose,4,coriolanus,1607\nHence,4,coriolanus,1607\npopular,4,coriolanus,1607\noffice,4,coriolanus,1607\nsteed,4,coriolanus,1607\nparts,4,coriolanus,1607\nFaith,4,coriolanus,1607\nmeasure,4,coriolanus,1607\ngranted,4,coriolanus,1607\nspoil,4,coriolanus,1607\nAn,4,coriolanus,1607\nin't,4,coriolanus,1607\nforce,4,coriolanus,1607\nHa,4,coriolanus,1607\nbeg,4,coriolanus,1607\nmeans,4,coriolanus,1607\nheads,4,coriolanus,1607\nweep,4,coriolanus,1607\ngoodly,4,coriolanus,1607\ndost,4,coriolanus,1607\ncurse,4,coriolanus,1607\nbuy,4,coriolanus,1607\ngown,4,coriolanus,1607\nMasters,4,coriolanus,1607\nvantage,4,coriolanus,1607\nturns,4,coriolanus,1607\nbegin,4,coriolanus,1607\ndeed,4,coriolanus,1607\nyea,4,coriolanus,1607\naid,4,coriolanus,1607\nHere's,4,coriolanus,1607\nshouts,4,coriolanus,1607\nvictory,4,coriolanus,1607\nmemory,4,coriolanus,1607\nforget,4,coriolanus,1607\nmove,4,coriolanus,1607\nsmall,4,coriolanus,1607\nage,4,coriolanus,1607\nYes,4,coriolanus,1607\nact,4,coriolanus,1607\ngrace,4,coriolanus,1607\nharm,4,coriolanus,1607\nreasons,4,coriolanus,1607\nAntiates,4,coriolanus,1607\nshut,4,coriolanus,1607\ncourse,4,coriolanus,1607\nthanks,4,coriolanus,1607\nundone,4,coriolanus,1607\njudgment,4,coriolanus,1607\nnew,4,coriolanus,1607\nInto,4,coriolanus,1607\njustice,4,coriolanus,1607\nLords,4,coriolanus,1607\nnote,4,coriolanus,1607\ntrenches,4,coriolanus,1607\nbears,4,coriolanus,1607\nstrike,4,coriolanus,1607\nyoung,4,coriolanus,1607\nConsider,4,coriolanus,1607\nmisery,4,coriolanus,1607\npowers,4,coriolanus,1607\nLook,4,coriolanus,1607\nSome,4,coriolanus,1607\nparties,4,coriolanus,1607\nI'ld,4,coriolanus,1607\nwrath,4,coriolanus,1607\nThey'll,4,coriolanus,1607\nformer,4,coriolanus,1607\nbanishment,4,coriolanus,1607\nwin,4,coriolanus,1607\nWe'll,4,coriolanus,1607\noak,4,coriolanus,1607\nThink,4,coriolanus,1607\nflourish,4,coriolanus,1607\ndanger,4,coriolanus,1607\nprice,4,coriolanus,1607\nwont,4,coriolanus,1607\nFourth,4,coriolanus,1607\nmultitude,4,coriolanus,1607\nfaces,4,coriolanus,1607\nHail,4,coriolanus,1607\npoison,4,coriolanus,1607\nanger,4,coriolanus,1607\nconsent,4,coriolanus,1607\ndrops,4,coriolanus,1607\nangry,4,coriolanus,1607\ntable,4,coriolanus,1607\nwholesome,4,coriolanus,1607\nyond,4,coriolanus,1607\nweapons,4,coriolanus,1607\ncares,4,coriolanus,1607\nJupiter,4,coriolanus,1607\nplease,4,coriolanus,1607\nwore,4,coriolanus,1607\nfie,4,coriolanus,1607\nMars,4,coriolanus,1607\nfine,4,coriolanus,1607\nfolly,4,coriolanus,1607\nparticular,4,coriolanus,1607\nwives,4,coriolanus,1607\ncomfort,4,coriolanus,1607\nbase,4,coriolanus,1607\nfast,4,coriolanus,1607\nreason,4,coriolanus,1607\nwilt,4,coriolanus,1607\nholp,4,coriolanus,1607\nfollows,4,coriolanus,1607\nhonest,4,coriolanus,1607\nstreets,4,coriolanus,1607\nalways,4,coriolanus,1607\nseek,4,coriolanus,1607\nlook'd,4,coriolanus,1607\ncondition,4,coriolanus,1607\nincrease,4,coriolanus,1607\nmodest,4,coriolanus,1607\nKnow,4,coriolanus,1607\nblame,4,coriolanus,1607\nbeheld,4,coriolanus,1607\nled,4,coriolanus,1607\nlip,4,coriolanus,1607\nbrow,4,coriolanus,1607\neat,4,coriolanus,1607\nwhip,4,coriolanus,1607\nstrokes,4,coriolanus,1607\nthither,4,coriolanus,1607\nhurt,4,coriolanus,1607\nsilent,4,coriolanus,1607\nmouths,4,coriolanus,1607\nYou'll,4,coriolanus,1607\nhonour'd,4,coriolanus,1607\nframe,4,coriolanus,1607\nsudden,4,coriolanus,1607\nbehold,4,coriolanus,1607\npass'd,4,coriolanus,1607\nhe'll,4,coriolanus,1607\nden,4,coriolanus,1607\ntread,4,coriolanus,1607\nhim,260,coriolanus,1607\ntold,5,coriolanus,1607\nignorance,5,coriolanus,1607\ntimes,5,coriolanus,1607\nsuffer,5,coriolanus,1607\ntruly,5,coriolanus,1607\nCAIUS,5,coriolanus,1607\ncast,5,coriolanus,1607\nseven,5,coriolanus,1607\nfools,5,coriolanus,1607\nsomething,5,coriolanus,1607\nsit,5,coriolanus,1607\nTarpeian,5,coriolanus,1607\nsun,5,coriolanus,1607\nfearful,5,coriolanus,1607\npromise,5,coriolanus,1607\nancient,5,coriolanus,1607\nwine,5,coriolanus,1607\nwind,5,coriolanus,1607\nknees,5,coriolanus,1607\nheaven,5,coriolanus,1607\nruin,5,coriolanus,1607\nslaves,5,coriolanus,1607\npatience,5,coriolanus,1607\namong,5,coriolanus,1607\nAEdiles,5,coriolanus,1607\nenter'd,5,coriolanus,1607\nwhole,5,coriolanus,1607\nHad,5,coriolanus,1607\nnobility,5,coriolanus,1607\nvaliant,5,coriolanus,1607\ntribune,5,coriolanus,1607\nPrithee,5,coriolanus,1607\nchildren,5,coriolanus,1607\nPut,5,coriolanus,1607\nexile,5,coriolanus,1607\ngate,5,coriolanus,1607\nGod,5,coriolanus,1607\nSoldiers,5,coriolanus,1607\nservant,5,coriolanus,1607\nmembers,5,coriolanus,1607\nbanish,5,coriolanus,1607\naccount,5,coriolanus,1607\nearth,5,coriolanus,1607\nho,5,coriolanus,1607\nchoice,5,coriolanus,1607\nvalour,5,coriolanus,1607\neasy,5,coriolanus,1607\nspeaks,5,coriolanus,1607\nCall,5,coriolanus,1607\ndeny,5,coriolanus,1607\nUnder,5,coriolanus,1607\nmock,5,coriolanus,1607\nfool,5,coriolanus,1607\ntheirs,5,coriolanus,1607\nHark,5,coriolanus,1607\nhere's,5,coriolanus,1607\nchange,5,coriolanus,1607\nenvy,5,coriolanus,1607\ngentle,5,coriolanus,1607\nDown,5,coriolanus,1607\nmile,5,coriolanus,1607\nCould,5,coriolanus,1607\npresently,5,coriolanus,1607\nslave,5,coriolanus,1607\nwon,5,coriolanus,1607\nneed,5,coriolanus,1607\nover,5,coriolanus,1607\nnear,5,coriolanus,1607\nneck,5,coriolanus,1607\nservices,5,coriolanus,1607\nremains,5,coriolanus,1607\nThus,5,coriolanus,1607\nbelieve,5,coriolanus,1607\nreceive,5,coriolanus,1607\ngarland,5,coriolanus,1607\nfound,5,coriolanus,1607\nplebeians,5,coriolanus,1607\nBid,5,coriolanus,1607\nrotten,5,coriolanus,1607\ninform,5,coriolanus,1607\nowe,5,coriolanus,1607\nhundred,5,coriolanus,1607\nNoble,5,coriolanus,1607\nground,5,coriolanus,1607\ngrant,5,coriolanus,1607\nfame,5,coriolanus,1607\ncompany,5,coriolanus,1607\nofficer,5,coriolanus,1607\nthunder,5,coriolanus,1607\nta'en,5,coriolanus,1607\ntrumpets,5,coriolanus,1607\ncarry,5,coriolanus,1607\ncut,5,coriolanus,1607\nHerald,5,coriolanus,1607\nrabble,5,coriolanus,1607\nprayers,5,coriolanus,1607\nshout,5,coriolanus,1607\ntroth,5,coriolanus,1607\nMine,5,coriolanus,1607\nfellows,5,coriolanus,1607\nestimation,5,coriolanus,1607\nhither,5,coriolanus,1607\ngoes,5,coriolanus,1607\nsleep,5,coriolanus,1607\nPatricians,5,coriolanus,1607\nstraight,5,coriolanus,1607\nstreet,5,coriolanus,1607\nIndeed,5,coriolanus,1607\ncitizens,5,coriolanus,1607\nvirtue,5,coriolanus,1607\nmutinous,5,coriolanus,1607\ngoing,5,coriolanus,1607\nattend,5,coriolanus,1607\nDid,5,coriolanus,1607\ndare,5,coriolanus,1607\nLest,5,coriolanus,1607\ndispatch,5,coriolanus,1607\nConspirators,5,coriolanus,1607\nshalt,5,coriolanus,1607\nlack,5,coriolanus,1607\nPatrician,6,coriolanus,1607\ntook,6,coriolanus,1607\nheld,6,coriolanus,1607\nviolent,6,coriolanus,1607\nappear,6,coriolanus,1607\nwounded,6,coriolanus,1607\nbecome,6,coriolanus,1607\ncare,6,coriolanus,1607\nWhose,6,coriolanus,1607\nGive,6,coriolanus,1607\nOnly,6,coriolanus,1607\ndeserve,6,coriolanus,1607\ndeliver,6,coriolanus,1607\nFarewell,6,coriolanus,1607\nfaults,6,coriolanus,1607\nThese,6,coriolanus,1607\nthence,6,coriolanus,1607\nGentlewoman,6,coriolanus,1607\nmasters,6,coriolanus,1607\ncustom,6,coriolanus,1607\nrest,6,coriolanus,1607\nmean,6,coriolanus,1607\nThere's,6,coriolanus,1607\nparty,6,coriolanus,1607\ntent,6,coriolanus,1607\nblows,6,coriolanus,1607\nitself,6,coriolanus,1607\nStand,6,coriolanus,1607\nWithin,6,coriolanus,1607\npast,6,coriolanus,1607\npass,6,coriolanus,1607\nHas,6,coriolanus,1607\nnight,6,coriolanus,1607\ngave,6,coriolanus,1607\ngot,6,coriolanus,1607\nfarewell,6,coriolanus,1607\nair,6,coriolanus,1607\nleft,6,coriolanus,1607\nmoon,6,coriolanus,1607\nwherein,6,coriolanus,1607\nshow'd,6,coriolanus,1607\nknee,6,coriolanus,1607\nhang,6,coriolanus,1607\nfour,6,coriolanus,1607\npraise,6,coriolanus,1607\npluck,6,coriolanus,1607\npoint,6,coriolanus,1607\nAlarum,6,coriolanus,1607\nright,6,coriolanus,1607\noften,6,coriolanus,1607\nalmost,6,coriolanus,1607\nproceed,6,coriolanus,1607\nnone,6,coriolanus,1607\nFlourish,6,coriolanus,1607\nSee,6,coriolanus,1607\nsoldiers,6,coriolanus,1607\nalready,6,coriolanus,1607\nbloody,6,coriolanus,1607\n'gainst,6,coriolanus,1607\nfree,6,coriolanus,1607\nBeing,6,coriolanus,1607\nsays,6,coriolanus,1607\nthird,6,coriolanus,1607\ncoming,6,coriolanus,1607\ngrain,6,coriolanus,1607\nwhence,6,coriolanus,1607\nVolscians,6,coriolanus,1607\nMake,6,coriolanus,1607\nletter,6,coriolanus,1607\nWelcome,6,coriolanus,1607\nthousand,6,coriolanus,1607\nRather,6,coriolanus,1607\npardon,6,coriolanus,1607\ndangerous,6,coriolanus,1607\nprithee,6,coriolanus,1607\nalong,6,coriolanus,1607\neither,6,coriolanus,1607\nTrue,6,coriolanus,1607\nreturn,6,coriolanus,1607\nsend,6,coriolanus,1607\nsent,6,coriolanus,1607\nremember,6,coriolanus,1607\non't,6,coriolanus,1607\nfather,6,coriolanus,1607\nleads,6,coriolanus,1607\nprivate,6,coriolanus,1607\nkill,6,coriolanus,1607\nbrave,7,coriolanus,1607\no'er,7,coriolanus,1607\nguard,7,coriolanus,1607\npity,7,coriolanus,1607\ntears,7,coriolanus,1607\nstrength,7,coriolanus,1607\ncharge,7,coriolanus,1607\nTullus,7,coriolanus,1607\ncamp,7,coriolanus,1607\nhearing,7,coriolanus,1607\nstands,7,coriolanus,1607\nwarrant,7,coriolanus,1607\nyield,7,coriolanus,1607\nworth,7,coriolanus,1607\n's,7,coriolanus,1607\nreceived,7,coriolanus,1607\nspoke,7,coriolanus,1607\neach,7,coriolanus,1607\ngod,7,coriolanus,1607\ndoth,7,coriolanus,1607\nused,7,coriolanus,1607\nbreath,7,coriolanus,1607\nhands,7,coriolanus,1607\nready,7,coriolanus,1607\ncall'd,7,coriolanus,1607\nwhether,7,coriolanus,1607\narm,7,coriolanus,1607\nask,7,coriolanus,1607\nfoot,7,coriolanus,1607\nrevenge,7,coriolanus,1607\nye,7,coriolanus,1607\nchance,7,coriolanus,1607\nhaving,7,coriolanus,1607\neye,7,coriolanus,1607\nyou'll,7,coriolanus,1607\nmind,7,coriolanus,1607\nflatter,7,coriolanus,1607\nwhy,7,coriolanus,1607\nwalls,7,coriolanus,1607\nsave,7,coriolanus,1607\nWorthy,7,coriolanus,1607\nrage,7,coriolanus,1607\nglad,7,coriolanus,1607\nfall,7,coriolanus,1607\nfortune,7,coriolanus,1607\nfly,7,coriolanus,1607\nfit,7,coriolanus,1607\nne'er,7,coriolanus,1607\nman's,7,coriolanus,1607\ngiven,7,coriolanus,1607\nmaster,7,coriolanus,1607\nstrong,7,coriolanus,1607\ndrums,7,coriolanus,1607\nbattle,7,coriolanus,1607\ntraitor,7,coriolanus,1607\ndoing,7,coriolanus,1607\nmet,7,coriolanus,1607\nAway,7,coriolanus,1607\nlate,7,coriolanus,1607\nshake,7,coriolanus,1607\nlady,7,coriolanus,1607\nswords,8,coriolanus,1607\nrock,8,coriolanus,1607\njoy,8,coriolanus,1607\ndrum,8,coriolanus,1607\nEre,8,coriolanus,1607\nsaw,8,coriolanus,1607\ncaps,8,coriolanus,1607\nsure,8,coriolanus,1607\ncame,8,coriolanus,1607\nnoise,8,coriolanus,1607\nbound,8,coriolanus,1607\n'twas,8,coriolanus,1607\nsworn,8,coriolanus,1607\n't,8,coriolanus,1607\ndoubt,8,coriolanus,1607\nturn,8,coriolanus,1607\nLartius,8,coriolanus,1607\nmalice,8,coriolanus,1607\ndesire,8,coriolanus,1607\nIII,8,coriolanus,1607\nneither,8,coriolanus,1607\nboy,8,coriolanus,1607\nto't,8,coriolanus,1607\nOn,8,coriolanus,1607\nII,8,coriolanus,1607\nLet's,8,coriolanus,1607\nnobly,8,coriolanus,1607\nGood,8,coriolanus,1607\nstruck,8,coriolanus,1607\nSpeak,8,coriolanus,1607\npeople's,8,coriolanus,1607\ntongues,8,coriolanus,1607\nhusband,8,coriolanus,1607\ngreater,8,coriolanus,1607\nfield,8,coriolanus,1607\nfar,8,coriolanus,1607\nthrough,8,coriolanus,1607\nindeed,8,coriolanus,1607\nPeace,8,coriolanus,1607\nere,8,coriolanus,1607\nchild,8,coriolanus,1607\nmark,8,coriolanus,1607\nthemselves,8,coriolanus,1607\nwhat's,8,coriolanus,1607\neven,8,coriolanus,1607\npublic,8,coriolanus,1607\ntalk,8,coriolanus,1607\nuse,8,coriolanus,1607\nsweet,8,coriolanus,1607\nperson,8,coriolanus,1607\nLieutenant,8,coriolanus,1607\nVolscian,8,coriolanus,1607\nmakes,8,coriolanus,1607\nlive,8,coriolanus,1607\nMay,8,coriolanus,1607\nTake,8,coriolanus,1607\nV,9,coriolanus,1607\nHear,9,coriolanus,1607\nfought,9,coriolanus,1607\nremain,9,coriolanus,1607\nWould,9,coriolanus,1607\nUpon,9,coriolanus,1607\nyourself,9,coriolanus,1607\nhead,9,coriolanus,1607\ntown,9,coriolanus,1607\nOne,9,coriolanus,1607\nhence,9,coriolanus,1607\nside,9,coriolanus,1607\ndeeds,9,coriolanus,1607\ndeserved,9,coriolanus,1607\nyourselves,9,coriolanus,1607\nprove,9,coriolanus,1607\nBoth,9,coriolanus,1607\nMost,9,coriolanus,1607\nenemies,9,coriolanus,1607\nnobles,9,coriolanus,1607\nShould,9,coriolanus,1607\nthere's,9,coriolanus,1607\nget,9,coriolanus,1607\ngrave,9,coriolanus,1607\nbreak,9,coriolanus,1607\nbanish'd,9,coriolanus,1607\narmy,9,coriolanus,1607\narms,9,coriolanus,1607\nbetween,9,coriolanus,1607\nserve,9,coriolanus,1607\nbelly,9,coriolanus,1607\nThat's,9,coriolanus,1607\nhold,9,coriolanus,1607\nthank,9,coriolanus,1607\nseen,9,coriolanus,1607\ncorn,9,coriolanus,1607\nstrange,9,coriolanus,1607\ncontent,9,coriolanus,1607\nshame,9,coriolanus,1607\nkind,9,coriolanus,1607\nspirit,9,coriolanus,1607\nmarket,9,coriolanus,1607\nnot,265,coriolanus,1607\nbusiness,10,coriolanus,1607\nthought,10,coriolanus,1607\nMust,10,coriolanus,1607\ntruth,10,coriolanus,1607\nmercy,10,coriolanus,1607\nanother,10,coriolanus,1607\nfull,10,coriolanus,1607\nNor,10,coriolanus,1607\nenough,10,coriolanus,1607\nwithin,10,coriolanus,1607\nsecond,10,coriolanus,1607\nThere,10,coriolanus,1607\nothers,10,coriolanus,1607\nIV,10,coriolanus,1607\nTitus,10,coriolanus,1607\nAntium,10,coriolanus,1607\nlook,10,coriolanus,1607\nstood,10,coriolanus,1607\ndear,10,coriolanus,1607\nlong,10,coriolanus,1607\nthat's,10,coriolanus,1607\nloves,10,coriolanus,1607\nbrought,10,coriolanus,1607\nHath,10,coriolanus,1607\nAgainst,10,coriolanus,1607\nmyself,10,coriolanus,1607\ncomes,10,coriolanus,1607\nknown,10,coriolanus,1607\npride,10,coriolanus,1607\nface,10,coriolanus,1607\nShall,10,coriolanus,1607\ndo't,10,coriolanus,1607\nhour,10,coriolanus,1607\nhope,10,coriolanus,1607\nlay,10,coriolanus,1607\nhearts,10,coriolanus,1607\ncountry's,10,coriolanus,1607\nsound,10,coriolanus,1607\npatricians,10,coriolanus,1607\nmadam,10,coriolanus,1607\npurpose,10,coriolanus,1607\ndie,10,coriolanus,1607\nmeet,11,coriolanus,1607\nlife,11,coriolanus,1607\nSoldier,11,coriolanus,1607\nnothing,11,coriolanus,1607\nWas,11,coriolanus,1607\nTITUS,11,coriolanus,1607\nHere,11,coriolanus,1607\nsoldier,11,coriolanus,1607\nfriend,11,coriolanus,1607\nWhat's,11,coriolanus,1607\nstay,11,coriolanus,1607\nIs,11,coriolanus,1607\nConspirator,11,coriolanus,1607\nwelcome,11,coriolanus,1607\nTherefore,11,coriolanus,1607\nLord,11,coriolanus,1607\nyours,11,coriolanus,1607\nThen,11,coriolanus,1607\nlet's,11,coriolanus,1607\nonce,11,coriolanus,1607\nthine,11,coriolanus,1607\nSay,11,coriolanus,1607\nOfficer,11,coriolanus,1607\nday,11,coriolanus,1607\nunto,11,coriolanus,1607\nrequest,11,coriolanus,1607\nwe'll,11,coriolanus,1607\nlie,11,coriolanus,1607\nladies,11,coriolanus,1607\nwithout,11,coriolanus,1607\nhelp,12,coriolanus,1607\nevery,12,coriolanus,1607\nshe,12,coriolanus,1607\nfear,12,coriolanus,1607\nafter,12,coriolanus,1607\nservice,12,coriolanus,1607\nbring,12,coriolanus,1607\nvoice,12,coriolanus,1607\nDo,12,coriolanus,1607\nhe's,12,coriolanus,1607\nAt,12,coriolanus,1607\nloved,12,coriolanus,1607\nhalf,12,coriolanus,1607\naction,12,coriolanus,1607\nTribunes,12,coriolanus,1607\nfire,12,coriolanus,1607\nbeseech,12,coriolanus,1607\nsenators,12,coriolanus,1607\nalone,12,coriolanus,1607\nwhom,12,coriolanus,1607\nBefore,12,coriolanus,1607\nThy,12,coriolanus,1607\nfollow,12,coriolanus,1607\ncertain,12,coriolanus,1607\nRomans,13,coriolanus,1607\nhonours,13,coriolanus,1607\nlies,13,coriolanus,1607\ncall,13,coriolanus,1607\nTheir,13,coriolanus,1607\nfight,13,coriolanus,1607\nThough,13,coriolanus,1607\nI',13,coriolanus,1607\nsince,13,coriolanus,1607\ntongue,13,coriolanus,1607\nLike,13,coriolanus,1607\nlord,13,coriolanus,1607\nbeat,13,coriolanus,1607\nlose,13,coriolanus,1607\nart,13,coriolanus,1607\nlords,13,coriolanus,1607\ninto,13,coriolanus,1607\nthings,13,coriolanus,1607\nEven,13,coriolanus,1607\nthree,13,coriolanus,1607\ntill,13,coriolanus,1607\nseem,13,coriolanus,1607\nVolsce,13,coriolanus,1607\ncry,13,coriolanus,1607\nlast,13,coriolanus,1607\nHe's,13,coriolanus,1607\nbody,14,coriolanus,1607\nabout,14,coriolanus,1607\nwish,14,coriolanus,1607\nelse,14,coriolanus,1607\nears,14,coriolanus,1607\nproud,14,coriolanus,1607\nwhose,14,coriolanus,1607\nYet,14,coriolanus,1607\nkeep,14,coriolanus,1607\nMore,14,coriolanus,1607\npresent,14,coriolanus,1607\nAre,14,coriolanus,1607\nSir,14,coriolanus,1607\nWere,14,coriolanus,1607\nsame,14,coriolanus,1607\nonly,14,coriolanus,1607\nmight,14,coriolanus,1607\nanswer,15,coriolanus,1607\nwords,15,coriolanus,1607\nbetter,15,coriolanus,1607\ntherefore,15,coriolanus,1607\nbest,15,coriolanus,1607\ndoes,15,coriolanus,1607\nsenate,15,coriolanus,1607\nhand,15,coriolanus,1607\nreport,15,coriolanus,1607\nFrom,15,coriolanus,1607\nSenators,15,coriolanus,1607\nfair,15,coriolanus,1607\nwork,15,coriolanus,1607\nwounds,15,coriolanus,1607\n'em,15,coriolanus,1607\nMenenius,15,coriolanus,1607\ntogether,15,coriolanus,1607\nleave,15,coriolanus,1607\nenemy,15,coriolanus,1607\nfurther,16,coriolanus,1607\nRe,16,coriolanus,1607\nput,16,coriolanus,1607\nCaius,16,coriolanus,1607\nthough,16,coriolanus,1607\nstill,16,coriolanus,1607\nCapitol,16,coriolanus,1607\nword,16,coriolanus,1607\nfind,16,coriolanus,1607\neyes,16,coriolanus,1607\nback,16,coriolanus,1607\nWill,17,coriolanus,1607\ndeath,17,coriolanus,1607\nset,17,coriolanus,1607\nfellow,17,coriolanus,1607\nboth,17,coriolanus,1607\nmatter,17,coriolanus,1607\nGo,17,coriolanus,1607\nlittle,17,coriolanus,1607\nhast,17,coriolanus,1607\nHave,17,coriolanus,1607\nend,17,coriolanus,1607\nold,17,coriolanus,1607\nnature,17,coriolanus,1607\nExit,17,coriolanus,1607\nhimself,17,coriolanus,1607\nrather,18,coriolanus,1607\nWho,18,coriolanus,1607\ncause,18,coriolanus,1607\nsword,18,coriolanus,1607\nwars,18,coriolanus,1607\npart,18,coriolanus,1607\nhate,18,coriolanus,1607\nheard,18,coriolanus,1607\nhe,274,coriolanus,1607\nmuch,19,coriolanus,1607\nNot,19,coriolanus,1607\ncommon,19,coriolanus,1607\nBy,19,coriolanus,1607\nHis,19,coriolanus,1607\nBe,19,coriolanus,1607\ngone,19,coriolanus,1607\nOr,19,coriolanus,1607\nany,19,coriolanus,1607\nforth,19,coriolanus,1607\nshow,19,coriolanus,1607\ngates,19,coriolanus,1607\nthing,19,coriolanus,1607\noff,19,coriolanus,1607\npoor,19,coriolanus,1607\nAEdile,19,coriolanus,1607\nCominius,19,coriolanus,1607\nI,531,coriolanus,1607\nworthy,20,coriolanus,1607\nAy,20,coriolanus,1607\nVALERIA,20,coriolanus,1607\nsaid,20,coriolanus,1607\nless,20,coriolanus,1607\nmine,20,coriolanus,1607\nstand,20,coriolanus,1607\nwar,20,coriolanus,1607\nPray,20,coriolanus,1607\nyou,532,coriolanus,1607\npray,21,coriolanus,1607\nworld,21,coriolanus,1607\nNow,21,coriolanus,1607\nOur,21,coriolanus,1607\nenter,21,coriolanus,1607\n'Tis,21,coriolanus,1607\nwife,21,coriolanus,1607\naway,22,coriolanus,1607\nSo,22,coriolanus,1607\nplace,22,coriolanus,1607\nVolsces,22,coriolanus,1607\nvery,22,coriolanus,1607\nnor,22,coriolanus,1607\nfirst,22,coriolanus,1607\ntwo,22,coriolanus,1607\nher,23,coriolanus,1607\nblood,23,coriolanus,1607\nthose,23,coriolanus,1607\nagain,23,coriolanus,1607\nmany,23,coriolanus,1607\nstate,23,coriolanus,1607\nWell,23,coriolanus,1607\nCorioli,23,coriolanus,1607\ntrue,23,coriolanus,1607\nhonour,24,coriolanus,1607\nIt,24,coriolanus,1607\ndown,24,coriolanus,1607\nbear,24,coriolanus,1607\ncould,24,coriolanus,1607\nwho,24,coriolanus,1607\nNay,25,coriolanus,1607\nwhere,25,coriolanus,1607\nThou,25,coriolanus,1607\nnews,25,coriolanus,1607\never,25,coriolanus,1607\nbeing,25,coriolanus,1607\nthere,26,coriolanus,1607\nWhere,26,coriolanus,1607\ncountry,27,coriolanus,1607\nson,27,coriolanus,1607\ndone,27,coriolanus,1607\ntribunes,27,coriolanus,1607\ntake,27,coriolanus,1607\nthus,27,coriolanus,1607\nhouse,27,coriolanus,1607\nMessenger,27,coriolanus,1607\nmen,27,coriolanus,1607\nother,27,coriolanus,1607\nWhy,28,coriolanus,1607\nnever,28,coriolanus,1607\nlove,28,coriolanus,1607\nconsul,28,coriolanus,1607\nin,284,coriolanus,1607\npeace,29,coriolanus,1607\nsome,29,coriolanus,1607\nthese,29,coriolanus,1607\nhas,29,coriolanus,1607\nNo,29,coriolanus,1607\nACT,29,coriolanus,1607\nheart,29,coriolanus,1607\nagainst,30,coriolanus,1607\nsee,30,coriolanus,1607\ni',30,coriolanus,1607\nhow,30,coriolanus,1607\nHow,30,coriolanus,1607\nAll,30,coriolanus,1607\ngreat,30,coriolanus,1607\nmay,30,coriolanus,1607\nSCENE,30,coriolanus,1607\n'tis,31,coriolanus,1607\nThey,31,coriolanus,1607\nname,32,coriolanus,1607\nbeen,32,coriolanus,1607\nLARTIUS,32,coriolanus,1607\nWhen,32,coriolanus,1607\nsuch,33,coriolanus,1607\ntell,33,coriolanus,1607\nway,33,coriolanus,1607\ntime,33,coriolanus,1607\nfriends,34,coriolanus,1607\nRoman,34,coriolanus,1607\ntoo,34,coriolanus,1607\ngeneral,35,coriolanus,1607\nVIRGILIA,35,coriolanus,1607\nLet,35,coriolanus,1607\nlet,35,coriolanus,1607\nCoriolanus,35,coriolanus,1607\nvoices,36,coriolanus,1607\nAufidius,36,coriolanus,1607\nthink,36,coriolanus,1607\nCitizens,37,coriolanus,1607\nmother,37,coriolanus,1607\nup,37,coriolanus,1607\nmade,37,coriolanus,1607\nown,37,coriolanus,1607\nhome,37,coriolanus,1607\nCome,38,coriolanus,1607\ngive,38,coriolanus,1607\nMy,39,coriolanus,1607\nhath,39,coriolanus,1607\nThis,39,coriolanus,1607\nbefore,39,coriolanus,1607\nyet,40,coriolanus,1607\ncan,41,coriolanus,1607\nmost,41,coriolanus,1607\ncity,41,coriolanus,1607\ncannot,41,coriolanus,1607\npower,41,coriolanus,1607\nThan,42,coriolanus,1607\nIf,43,coriolanus,1607\nThird,43,coriolanus,1607\nhear,44,coriolanus,1607\nOf,44,coriolanus,1607\nshould,44,coriolanus,1607\nWith,45,coriolanus,1607\nExeunt,45,coriolanus,1607\nSenator,45,coriolanus,1607\nWhich,46,coriolanus,1607\nam,46,coriolanus,1607\ngods,46,coriolanus,1607\nIn,47,coriolanus,1607\no',47,coriolanus,1607\nspeak,47,coriolanus,1607\nnow,47,coriolanus,1607\ncome,47,coriolanus,1607\nhere,48,coriolanus,1607\nFor,48,coriolanus,1607\nman,48,coriolanus,1607\nYour,49,coriolanus,1607\nwhen,49,coriolanus,1607\n',50,coriolanus,1607\nO,51,coriolanus,1607\nupon,51,coriolanus,1607\nknow,51,coriolanus,1607\nout,51,coriolanus,1607\ngo,52,coriolanus,1607\nmust,53,coriolanus,1607\nthen,53,coriolanus,1607\nI'll,53,coriolanus,1607\nan,54,coriolanus,1607\nnoble,54,coriolanus,1607\nor,55,coriolanus,1607\nwhich,56,coriolanus,1607\nlike,56,coriolanus,1607\nmake,56,coriolanus,1607\nBut,56,coriolanus,1607\ndid,57,coriolanus,1607\nWe,58,coriolanus,1607\nwell,58,coriolanus,1607\nwere,58,coriolanus,1607\nAUFIDIUS,59,coriolanus,1607\nMARCIUS,59,coriolanus,1607\nsay,61,coriolanus,1607\nfrom,61,coriolanus,1607\nand,575,coriolanus,1607\nServingman,66,coriolanus,1607\nAs,67,coriolanus,1607\nVOLUMNIA,67,coriolanus,1607\nsir,68,coriolanus,1607\nthee,68,coriolanus,1607\nhad,68,coriolanus,1607\nat,69,coriolanus,1607\nthan,70,coriolanus,1607\none,70,coriolanus,1607\nWhat,70,coriolanus,1607\nthou,71,coriolanus,1607\nwas,71,coriolanus,1607\npeople,72,coriolanus,1607\nSecond,73,coriolanus,1607\nEnter,73,coriolanus,1607\nHe,75,coriolanus,1607\non,75,coriolanus,1607\nif,75,coriolanus,1607\nMarcius,79,coriolanus,1607\nthy,79,coriolanus,1607\ngood,81,coriolanus,1607\nto,593,coriolanus,1607\nThat,84,coriolanus,1607\nCitizen,84,coriolanus,1607\nCOMINIUS,85,coriolanus,1607\nmore,86,coriolanus,1607\nwhat,87,coriolanus,1607\nwould,89,coriolanus,1607\nA,90,coriolanus,1607\nby,91,coriolanus,1607\na,349,coriolanus,1607\nus,95,coriolanus,1607\nYou,98,coriolanus,1607\nno,101,coriolanus,1607\nRome,101,coriolanus,1607\nthey,104,coriolanus,1607\ndo,106,coriolanus,1607\nshall,107,coriolanus,1607\nBRUTUS,109,coriolanus,1607\nwill,112,coriolanus,1607\nso,114,coriolanus,1607\nFirst,117,coriolanus,1607\ntheir,118,coriolanus,1607\nall,123,coriolanus,1607\nTo,127,coriolanus,1607\nthis,130,coriolanus,1607\nthem,134,coriolanus,1607\nwe,134,coriolanus,1607\nSICINIUS,135,coriolanus,1607\nbut,137,coriolanus,1607\nour,141,coriolanus,1607\nare,143,coriolanus,1607\nas,158,coriolanus,1607\nme,168,coriolanus,1607\nAnd,172,coriolanus,1607\nthe,942,coriolanus,1607\nMENENIUS,181,coriolanus,1607\nof,440,coriolanus,1607\nThe,185,coriolanus,1607\nfor,187,coriolanus,1607\nbe,198,coriolanus,1607\nCORIOLANUS,207,coriolanus,1607\nis,212,coriolanus,1607\nit,212,coriolanus,1607\nmy,216,coriolanus,1607\nthat,235,coriolanus,1607\nhis,241,coriolanus,1607\nyour,249,coriolanus,1607\nwith,251,coriolanus,1607\nhave,255,coriolanus,1607\npeopled,1,kinghenryv,1599\nholding,1,kinghenryv,1599\ndrink'st,1,kinghenryv,1599\nFrenchmen,1,kinghenryv,1599\nkingdom's,1,kinghenryv,1599\ncripple,1,kinghenryv,1599\nmutability,1,kinghenryv,1599\nvolant,1,kinghenryv,1599\nalehouse,1,kinghenryv,1599\nassez,1,kinghenryv,1599\nbrawl,1,kinghenryv,1599\nJames,1,kinghenryv,1599\nsleeve,1,kinghenryv,1599\nTouching,1,kinghenryv,1599\ngalled,1,kinghenryv,1599\nqualite,1,kinghenryv,1599\ntoll,1,kinghenryv,1599\ndigt,1,kinghenryv,1599\nblowed,1,kinghenryv,1599\ncomings,1,kinghenryv,1599\ndawn,1,kinghenryv,1599\ntroubles,1,kinghenryv,1599\nporing,1,kinghenryv,1599\ncommissioners,1,kinghenryv,1599\nangers,1,kinghenryv,1599\nencamp,1,kinghenryv,1599\nforbid,1,kinghenryv,1599\nstaves,1,kinghenryv,1599\ntomb,1,kinghenryv,1599\nReigns,1,kinghenryv,1599\nparted,1,kinghenryv,1599\nrelief,1,kinghenryv,1599\nBrutus,1,kinghenryv,1599\nCrowned,1,kinghenryv,1599\nCrispianus,1,kinghenryv,1599\nNorman,1,kinghenryv,1599\nWanting,1,kinghenryv,1599\nmuster,1,kinghenryv,1599\nlamentable,1,kinghenryv,1599\nrebuked,1,kinghenryv,1599\ninvisible,1,kinghenryv,1599\njoin,1,kinghenryv,1599\nsmiles,1,kinghenryv,1599\npith,1,kinghenryv,1599\ngallants,1,kinghenryv,1599\nyawning,1,kinghenryv,1599\nsafeguard,1,kinghenryv,1599\nProud,1,kinghenryv,1599\nadvice,1,kinghenryv,1599\nTells,1,kinghenryv,1599\nbasis,1,kinghenryv,1599\ninfant,1,kinghenryv,1599\nexception,1,kinghenryv,1599\nvanities,1,kinghenryv,1599\ntook,1,kinghenryv,1599\nentendre,1,kinghenryv,1599\nDelivering,1,kinghenryv,1599\nDavy,1,kinghenryv,1599\ninfected,1,kinghenryv,1599\nfrankness,1,kinghenryv,1599\nhouses',1,kinghenryv,1599\ndiner,1,kinghenryv,1599\ndescription,1,kinghenryv,1599\nreputation,1,kinghenryv,1599\nbeadle,1,kinghenryv,1599\nderived,1,kinghenryv,1599\nnoster,1,kinghenryv,1599\nreckonings,1,kinghenryv,1599\ncheer'd,1,kinghenryv,1599\nyielding,1,kinghenryv,1599\nAdam,1,kinghenryv,1599\nchurlish,1,kinghenryv,1599\npavilion'd,1,kinghenryv,1599\nresist,1,kinghenryv,1599\nWonder,1,kinghenryv,1599\nPicardy,1,kinghenryv,1599\ninfamy,1,kinghenryv,1599\nRomans,1,kinghenryv,1599\nspeech,1,kinghenryv,1599\nweasel,1,kinghenryv,1599\nfewer,1,kinghenryv,1599\nwears,1,kinghenryv,1599\nFrenchman,1,kinghenryv,1599\nscouring,1,kinghenryv,1599\nSwill'd,1,kinghenryv,1599\nraw,1,kinghenryv,1599\nabutting,1,kinghenryv,1599\nconcavities,1,kinghenryv,1599\nfollowing,1,kinghenryv,1599\nCharolois,1,kinghenryv,1599\nkecksies,1,kinghenryv,1599\nGrew,1,kinghenryv,1599\nhinder,1,kinghenryv,1599\nfuel,1,kinghenryv,1599\nwoman's,1,kinghenryv,1599\nhempen,1,kinghenryv,1599\nfinished,1,kinghenryv,1599\nDites,1,kinghenryv,1599\nran,1,kinghenryv,1599\nwhiffler,1,kinghenryv,1599\nlawful,1,kinghenryv,1599\nunborn,1,kinghenryv,1599\nbroth,1,kinghenryv,1599\nwafer,1,kinghenryv,1599\nHermes,1,kinghenryv,1599\nrock,1,kinghenryv,1599\nIssue,1,kinghenryv,1599\nheure,1,kinghenryv,1599\nMessengers,1,kinghenryv,1599\nzeal,1,kinghenryv,1599\npurge,1,kinghenryv,1599\ntruie,1,kinghenryv,1599\nelement,1,kinghenryv,1599\ndefunction,1,kinghenryv,1599\nexploits,1,kinghenryv,1599\noutrun,1,kinghenryv,1599\nesteems,1,kinghenryv,1599\nresign,1,kinghenryv,1599\nshoulders,1,kinghenryv,1599\nhemp,1,kinghenryv,1599\ninterpreter,1,kinghenryv,1599\nmend,1,kinghenryv,1599\nroi,1,kinghenryv,1599\nheart's,1,kinghenryv,1599\nstopp'd,1,kinghenryv,1599\nrents,1,kinghenryv,1599\napprehended,1,kinghenryv,1599\nday's,1,kinghenryv,1599\nBear,1,kinghenryv,1599\nproclaim'd,1,kinghenryv,1599\nroad,1,kinghenryv,1599\nexpress,1,kinghenryv,1599\nepitaph,1,kinghenryv,1599\nwaxen,1,kinghenryv,1599\nclipper,1,kinghenryv,1599\nbaiser,1,kinghenryv,1599\nj'apprenne,1,kinghenryv,1599\nBartholomew,1,kinghenryv,1599\njot,1,kinghenryv,1599\nvaulting,1,kinghenryv,1599\nheld,1,kinghenryv,1599\nretort,1,kinghenryv,1599\ncountermines,1,kinghenryv,1599\nhelm,1,kinghenryv,1599\ndire,1,kinghenryv,1599\nGuichard,1,kinghenryv,1599\nmoiety,1,kinghenryv,1599\nworried,1,kinghenryv,1599\nappele,1,kinghenryv,1599\ngrandsire's,1,kinghenryv,1599\nChrist,1,kinghenryv,1599\nentered,1,kinghenryv,1599\nneedles,1,kinghenryv,1599\nmess,1,kinghenryv,1599\npiety,1,kinghenryv,1599\nCovering,1,kinghenryv,1599\nMuse,1,kinghenryv,1599\ndash'd,1,kinghenryv,1599\nbeest,1,kinghenryv,1599\nslaughter'd,1,kinghenryv,1599\nclothes,1,kinghenryv,1599\nfinger,1,kinghenryv,1599\nl'amour,1,kinghenryv,1599\ntrunk,1,kinghenryv,1599\nsurveys,1,kinghenryv,1599\ncelestial,1,kinghenryv,1599\nunwholesome,1,kinghenryv,1599\nsecurity,1,kinghenryv,1599\nsight,1,kinghenryv,1599\nprosperous,1,kinghenryv,1599\ngorgeous,1,kinghenryv,1599\nerrand,1,kinghenryv,1599\nPepin's,1,kinghenryv,1599\nGirding,1,kinghenryv,1599\nbrook,1,kinghenryv,1599\nCongreeing,1,kinghenryv,1599\nparadise,1,kinghenryv,1599\nrim,1,kinghenryv,1599\nbrightest,1,kinghenryv,1599\nangels,1,kinghenryv,1599\nGarnish'd,1,kinghenryv,1599\nsugar,1,kinghenryv,1599\nprisonnier,1,kinghenryv,1599\nits,1,kinghenryv,1599\ncasques,1,kinghenryv,1599\nm'estime,1,kinghenryv,1599\nScorn,1,kinghenryv,1599\nConceives,1,kinghenryv,1599\nAngliae,1,kinghenryv,1599\nHarry's,1,kinghenryv,1599\nEre,1,kinghenryv,1599\npier,1,kinghenryv,1599\nsuerly,1,kinghenryv,1599\nstretched,1,kinghenryv,1599\nunderneath,1,kinghenryv,1599\nnought,1,kinghenryv,1599\nsigns,1,kinghenryv,1599\npied,1,kinghenryv,1599\nuntempering,1,kinghenryv,1599\nof't,1,kinghenryv,1599\nsuggest,1,kinghenryv,1599\npret,1,kinghenryv,1599\ncalls,1,kinghenryv,1599\nthou'lt,1,kinghenryv,1599\nHenricus,1,kinghenryv,1599\ncheap,1,kinghenryv,1599\nswerving,1,kinghenryv,1599\nbourbier,1,kinghenryv,1599\nEst,1,kinghenryv,1599\nlieu,1,kinghenryv,1599\nadvise,1,kinghenryv,1599\nTearsheet,1,kinghenryv,1599\nrail'd,1,kinghenryv,1599\nworshipp'd,1,kinghenryv,1599\nabsolute,1,kinghenryv,1599\nsuccedant,1,kinghenryv,1599\npick,1,kinghenryv,1599\nSomme,1,kinghenryv,1599\nhardiness,1,kinghenryv,1599\nlustily,1,kinghenryv,1599\nthirst,1,kinghenryv,1599\nworks,1,kinghenryv,1599\npeseech,1,kinghenryv,1599\nQuite,1,kinghenryv,1599\nlief,1,kinghenryv,1599\nWhom,1,kinghenryv,1599\nabound,1,kinghenryv,1599\nrated,1,kinghenryv,1599\nwrest,1,kinghenryv,1599\nprie,1,kinghenryv,1599\nrequiring,1,kinghenryv,1599\nPERSONAE,1,kinghenryv,1599\nwither,1,kinghenryv,1599\npouring,1,kinghenryv,1599\nproclaim,1,kinghenryv,1599\nagreed,1,kinghenryv,1599\nsequestration,1,kinghenryv,1599\ncudgell'd,1,kinghenryv,1599\nspare,1,kinghenryv,1599\nsaved,1,kinghenryv,1599\nAlso,1,kinghenryv,1599\ndocks,1,kinghenryv,1599\nspark,1,kinghenryv,1599\ncast,1,kinghenryv,1599\nshovel,1,kinghenryv,1599\ncash,1,kinghenryv,1599\nearly,1,kinghenryv,1599\ngallop,1,kinghenryv,1599\nCarry,1,kinghenryv,1599\nAlps,1,kinghenryv,1599\nmistook,1,kinghenryv,1599\nlustre,1,kinghenryv,1599\njoyous,1,kinghenryv,1599\nperformance,1,kinghenryv,1599\nadoration,1,kinghenryv,1599\ncorroborate,1,kinghenryv,1599\npractised,1,kinghenryv,1599\nplague,1,kinghenryv,1599\nLEWIS,1,kinghenryv,1599\nDescription,1,kinghenryv,1599\novergrown,1,kinghenryv,1599\nVIII,1,kinghenryv,1599\nreign,1,kinghenryv,1599\nSweeten,1,kinghenryv,1599\nfracted,1,kinghenryv,1599\ndisdain,1,kinghenryv,1599\nsons,1,kinghenryv,1599\nPatient,1,kinghenryv,1599\neleventh,1,kinghenryv,1599\nbirth,1,kinghenryv,1599\nfaites,1,kinghenryv,1599\nespouse,1,kinghenryv,1599\njest,1,kinghenryv,1599\nspawn,1,kinghenryv,1599\nruin'd,1,kinghenryv,1599\nBloody,1,kinghenryv,1599\nthousands,1,kinghenryv,1599\nmatters,1,kinghenryv,1599\nreceiving,1,kinghenryv,1599\nunjustly,1,kinghenryv,1599\nsat,1,kinghenryv,1599\nentrails,1,kinghenryv,1599\nClothair,1,kinghenryv,1599\nbackward,1,kinghenryv,1599\nassembly,1,kinghenryv,1599\nHenry's,1,kinghenryv,1599\naffability,1,kinghenryv,1599\ncall'st,1,kinghenryv,1599\nopposed,1,kinghenryv,1599\nlimp,1,kinghenryv,1599\nlamentation,1,kinghenryv,1599\nWearing,1,kinghenryv,1599\nCombine,1,kinghenryv,1599\ncrying,1,kinghenryv,1599\nautre,1,kinghenryv,1599\ngenoux,1,kinghenryv,1599\ncaps,1,kinghenryv,1599\npike,1,kinghenryv,1599\ntous,1,kinghenryv,1599\nALEXANDER,1,kinghenryv,1599\nEnd,1,kinghenryv,1599\nafterwards,1,kinghenryv,1599\nplight,1,kinghenryv,1599\nMuch,1,kinghenryv,1599\nborderers,1,kinghenryv,1599\nhonestly,1,kinghenryv,1599\nconcerns,1,kinghenryv,1599\ntown's,1,kinghenryv,1599\nKnow'st,1,kinghenryv,1599\nfarced,1,kinghenryv,1599\nj'ai,1,kinghenryv,1599\nrein'd,1,kinghenryv,1599\ndisobey,1,kinghenryv,1599\nnecessaries,1,kinghenryv,1599\nintoxicates,1,kinghenryv,1599\ncheer,1,kinghenryv,1599\nnasty,1,kinghenryv,1599\ntenors,1,kinghenryv,1599\nintellectual,1,kinghenryv,1599\noffenders,1,kinghenryv,1599\nundid,1,kinghenryv,1599\nOnly,1,kinghenryv,1599\nQuiet,1,kinghenryv,1599\nPraeclarissimus,1,kinghenryv,1599\nrepetition,1,kinghenryv,1599\nsoonest,1,kinghenryv,1599\nbragging,1,kinghenryv,1599\nyearns,1,kinghenryv,1599\nTarry,1,kinghenryv,1599\nofficers,1,kinghenryv,1599\nYield,1,kinghenryv,1599\nrider,1,kinghenryv,1599\npilfering,1,kinghenryv,1599\njour,1,kinghenryv,1599\nkneading,1,kinghenryv,1599\nconfining,1,kinghenryv,1599\nrites,1,kinghenryv,1599\nsixteen,1,kinghenryv,1599\nlazars,1,kinghenryv,1599\nfools,1,kinghenryv,1599\naddition,1,kinghenryv,1599\nfaiths,1,kinghenryv,1599\ncontrite,1,kinghenryv,1599\nNon,1,kinghenryv,1599\nricher,1,kinghenryv,1599\nriches,1,kinghenryv,1599\nfumitory,1,kinghenryv,1599\ntway,1,kinghenryv,1599\nAssume,1,kinghenryv,1599\nEncore,1,kinghenryv,1599\nPegasus,1,kinghenryv,1599\npalfrey,1,kinghenryv,1599\npreachers,1,kinghenryv,1599\nLeash'd,1,kinghenryv,1599\ninhuman,1,kinghenryv,1599\nO'erblows,1,kinghenryv,1599\nWinding,1,kinghenryv,1599\nCollect,1,kinghenryv,1599\nkin,1,kinghenryv,1599\nbegan,1,kinghenryv,1599\nnarines,1,kinghenryv,1599\nperjured,1,kinghenryv,1599\ngeneral's,1,kinghenryv,1599\nBelonging,1,kinghenryv,1599\npatterns,1,kinghenryv,1599\nPistol's,1,kinghenryv,1599\nadmiring,1,kinghenryv,1599\nAnglish,1,kinghenryv,1599\ncompanies,1,kinghenryv,1599\nAssyrian,1,kinghenryv,1599\nfurther,1,kinghenryv,1599\nmounts,1,kinghenryv,1599\nmadams,1,kinghenryv,1599\nExpound,1,kinghenryv,1599\nladies',1,kinghenryv,1599\nsoar,1,kinghenryv,1599\ndiscovery,1,kinghenryv,1599\npillow,1,kinghenryv,1599\nGently,1,kinghenryv,1599\nprovender,1,kinghenryv,1599\nhandling,1,kinghenryv,1599\nplucked,1,kinghenryv,1599\nantics,1,kinghenryv,1599\nsoak'd,1,kinghenryv,1599\nsuns,1,kinghenryv,1599\nmarch'd,1,kinghenryv,1599\nsheathed,1,kinghenryv,1599\ncustoms,1,kinghenryv,1599\nshames,1,kinghenryv,1599\nskirr,1,kinghenryv,1599\necoutez,1,kinghenryv,1599\nsung,1,kinghenryv,1599\nerst,1,kinghenryv,1599\nFills,1,kinghenryv,1599\nPresenteth,1,kinghenryv,1599\nwhatsoever,1,kinghenryv,1599\nperdy,1,kinghenryv,1599\ntalked,1,kinghenryv,1599\npread,1,kinghenryv,1599\nPales,1,kinghenryv,1599\nGet,1,kinghenryv,1599\nfaithfully,1,kinghenryv,1599\nprevail'd,1,kinghenryv,1599\nmerriest,1,kinghenryv,1599\nsprays,1,kinghenryv,1599\negregious,1,kinghenryv,1599\nknavish,1,kinghenryv,1599\nimpossible,1,kinghenryv,1599\naccompt,1,kinghenryv,1599\nKnowest,1,kinghenryv,1599\n'twere,1,kinghenryv,1599\ncommand'st,1,kinghenryv,1599\n'Wonder,1,kinghenryv,1599\nmowing,1,kinghenryv,1599\nrobbing,1,kinghenryv,1599\nkey,1,kinghenryv,1599\nthink'st,1,kinghenryv,1599\nsubdued,1,kinghenryv,1599\nEnglishman's,1,kinghenryv,1599\nsaddle,1,kinghenryv,1599\naffiance,1,kinghenryv,1599\ninvention,1,kinghenryv,1599\nPerseus,1,kinghenryv,1599\nyeoman,1,kinghenryv,1599\nsunken,1,kinghenryv,1599\nDriving,1,kinghenryv,1599\nvice,1,kinghenryv,1599\nthatch,1,kinghenryv,1599\nCreating,1,kinghenryv,1599\nmocking,1,kinghenryv,1599\ncoals,1,kinghenryv,1599\nseals,1,kinghenryv,1599\ncoronets,1,kinghenryv,1599\ntouched,1,kinghenryv,1599\nthrongs,1,kinghenryv,1599\nbeguiling,1,kinghenryv,1599\nstreamers,1,kinghenryv,1599\nbogs,1,kinghenryv,1599\nchronicles,1,kinghenryv,1599\ncommunication,1,kinghenryv,1599\nfamish'd,1,kinghenryv,1599\nspherical,1,kinghenryv,1599\nthrong,1,kinghenryv,1599\n'twas,1,kinghenryv,1599\nanew,1,kinghenryv,1599\npeevish,1,kinghenryv,1599\nbeasts,1,kinghenryv,1599\nlions,1,kinghenryv,1599\npassport,1,kinghenryv,1599\nintendment,1,kinghenryv,1599\ndisposed,1,kinghenryv,1599\nchez,1,kinghenryv,1599\nabused,1,kinghenryv,1599\ncher,1,kinghenryv,1599\nscore,1,kinghenryv,1599\nbetrayed,1,kinghenryv,1599\nlivest,1,kinghenryv,1599\nmauvais,1,kinghenryv,1599\ncombine,1,kinghenryv,1599\nembrace,1,kinghenryv,1599\nKetly,1,kinghenryv,1599\nSeem'd,1,kinghenryv,1599\nsow,1,kinghenryv,1599\nvine,1,kinghenryv,1599\nterre,1,kinghenryv,1599\nconfident,1,kinghenryv,1599\nconstraint,1,kinghenryv,1599\nlooking,1,kinghenryv,1599\nwight,1,kinghenryv,1599\ncompelled,1,kinghenryv,1599\ncounsel,1,kinghenryv,1599\nashore,1,kinghenryv,1599\ncountenance,1,kinghenryv,1599\nscour,1,kinghenryv,1599\nattends,1,kinghenryv,1599\nstern,1,kinghenryv,1599\nDiscuss,1,kinghenryv,1599\nPoints,1,kinghenryv,1599\nadmittance,1,kinghenryv,1599\nAngleterre,1,kinghenryv,1599\nkindly,1,kinghenryv,1599\ncloy'd,1,kinghenryv,1599\ninterview,1,kinghenryv,1599\n't,1,kinghenryv,1599\nNumbers,1,kinghenryv,1599\nhusks,1,kinghenryv,1599\ncommends,1,kinghenryv,1599\nsquares,1,kinghenryv,1599\nsky,1,kinghenryv,1599\nrackets,1,kinghenryv,1599\nscythe,1,kinghenryv,1599\ngather,1,kinghenryv,1599\nunmatchable,1,kinghenryv,1599\ngroans,1,kinghenryv,1599\nSetting,1,kinghenryv,1599\nquondam,1,kinghenryv,1599\nd'echapper,1,kinghenryv,1599\nCapet's,1,kinghenryv,1599\nleague,1,kinghenryv,1599\neither's,1,kinghenryv,1599\nhorses',1,kinghenryv,1599\nmother,1,kinghenryv,1599\nConfirm'd,1,kinghenryv,1599\nbough,1,kinghenryv,1599\nSpain,1,kinghenryv,1599\nconjunction,1,kinghenryv,1599\nquittance,1,kinghenryv,1599\ncheese,1,kinghenryv,1599\nsuffered,1,kinghenryv,1599\nlegerity,1,kinghenryv,1599\ncondole,1,kinghenryv,1599\nAnthony,1,kinghenryv,1599\ngayness,1,kinghenryv,1599\ninconveniences,1,kinghenryv,1599\napples,1,kinghenryv,1599\nseats,1,kinghenryv,1599\nloosed,1,kinghenryv,1599\nGam,1,kinghenryv,1599\nthieves,1,kinghenryv,1599\nappetites,1,kinghenryv,1599\noffence,1,kinghenryv,1599\ngrund,1,kinghenryv,1599\nsuppress'd,1,kinghenryv,1599\nAlbion,1,kinghenryv,1599\nfreckled,1,kinghenryv,1599\neverlasting,1,kinghenryv,1599\nworse,1,kinghenryv,1599\nmerit,1,kinghenryv,1599\nwraths,1,kinghenryv,1599\nmocks,1,kinghenryv,1599\naccursed,1,kinghenryv,1599\nburdens,1,kinghenryv,1599\nmisbecome,1,kinghenryv,1599\ngagne,1,kinghenryv,1599\nlecon,1,kinghenryv,1599\nBretagne,1,kinghenryv,1599\nO'erhang,1,kinghenryv,1599\ncompassing,1,kinghenryv,1599\nreceived,1,kinghenryv,1599\npasses,1,kinghenryv,1599\ndull'd,1,kinghenryv,1599\nj'oublie,1,kinghenryv,1599\nmerchants,1,kinghenryv,1599\nfoils,1,kinghenryv,1599\nsavagery,1,kinghenryv,1599\nsnow,1,kinghenryv,1599\nante,1,kinghenryv,1599\nmurmur,1,kinghenryv,1599\nbettre,1,kinghenryv,1599\nbrain,1,kinghenryv,1599\nOut,1,kinghenryv,1599\nmerchante,1,kinghenryv,1599\nroots,1,kinghenryv,1599\nturf,1,kinghenryv,1599\ncorantos,1,kinghenryv,1599\nbanquets,1,kinghenryv,1599\nclimbing,1,kinghenryv,1599\ncrime,1,kinghenryv,1599\nguarded,1,kinghenryv,1599\nGalling,1,kinghenryv,1599\nbore,1,kinghenryv,1599\nseduce,1,kinghenryv,1599\npasterns,1,kinghenryv,1599\nbrags,1,kinghenryv,1599\nhabit,1,kinghenryv,1599\nWhereof,1,kinghenryv,1599\nfigure,1,kinghenryv,1599\nkill'd,1,kinghenryv,1599\npennons,1,kinghenryv,1599\nluxurious,1,kinghenryv,1599\nTurk,1,kinghenryv,1599\nWilling,1,kinghenryv,1599\nensemble,1,kinghenryv,1599\nlucky,1,kinghenryv,1599\nworrying,1,kinghenryv,1599\nOwy,1,kinghenryv,1599\nruns,1,kinghenryv,1599\nendeavours,1,kinghenryv,1599\nactions,1,kinghenryv,1599\nencounter,1,kinghenryv,1599\nruminate,1,kinghenryv,1599\nloose,1,kinghenryv,1599\nlurketh,1,kinghenryv,1599\nbeseeched,1,kinghenryv,1599\naucun,1,kinghenryv,1599\nPardon,1,kinghenryv,1599\nmark'd,1,kinghenryv,1599\ninstance,1,kinghenryv,1599\nraked,1,kinghenryv,1599\ndispleasures,1,kinghenryv,1599\nunable,1,kinghenryv,1599\nhousehold,1,kinghenryv,1599\ncavaliers,1,kinghenryv,1599\nswiftness,1,kinghenryv,1599\nconsented,1,kinghenryv,1599\nBeholding,1,kinghenryv,1599\ncharming,1,kinghenryv,1599\npearl,1,kinghenryv,1599\nthence,1,kinghenryv,1599\nArray'd,1,kinghenryv,1599\nWhilst,1,kinghenryv,1599\nmodel,1,kinghenryv,1599\nplood,1,kinghenryv,1599\nmanhoods,1,kinghenryv,1599\nhumble,1,kinghenryv,1599\nadventurously,1,kinghenryv,1599\nmitigation,1,kinghenryv,1599\nvanity,1,kinghenryv,1599\nKings,1,kinghenryv,1599\nreverence,1,kinghenryv,1599\nfeed,1,kinghenryv,1599\naccent,1,kinghenryv,1599\npopularity,1,kinghenryv,1599\nrein,1,kinghenryv,1599\npedigree,1,kinghenryv,1599\ncease,1,kinghenryv,1599\nbows,1,kinghenryv,1599\npunish,1,kinghenryv,1599\ngros,1,kinghenryv,1599\nnoblest,1,kinghenryv,1599\nplainly,1,kinghenryv,1599\ntemporal,1,kinghenryv,1599\ndirected,1,kinghenryv,1599\nSpirt,1,kinghenryv,1599\nrelish,1,kinghenryv,1599\nswore,1,kinghenryv,1599\nbrief,1,kinghenryv,1599\naccept,1,kinghenryv,1599\ntoddle,1,kinghenryv,1599\nbaser,1,kinghenryv,1599\ncorrupt,1,kinghenryv,1599\n'Non,1,kinghenryv,1599\nancient,1,kinghenryv,1599\n'Now,1,kinghenryv,1599\nwrangler,1,kinghenryv,1599\nfalse,1,kinghenryv,1599\nweather,1,kinghenryv,1599\nspeaking,1,kinghenryv,1599\nprotestation,1,kinghenryv,1599\nchoose,1,kinghenryv,1599\nrude,1,kinghenryv,1599\nPrincely,1,kinghenryv,1599\nlangage,1,kinghenryv,1599\nFly,1,kinghenryv,1599\nVouchsafe,1,kinghenryv,1599\nLatin,1,kinghenryv,1599\nHence,1,kinghenryv,1599\nlanguage,1,kinghenryv,1599\ntrompet,1,kinghenryv,1599\nwins,1,kinghenryv,1599\nbaptism,1,kinghenryv,1599\npocketing,1,kinghenryv,1599\ntiger,1,kinghenryv,1599\nmonarchy,1,kinghenryv,1599\ncaves,1,kinghenryv,1599\nsconce,1,kinghenryv,1599\ndedicate,1,kinghenryv,1599\nlavoltas,1,kinghenryv,1599\nnight's,1,kinghenryv,1599\nwardrobe,1,kinghenryv,1599\npeasants,1,kinghenryv,1599\nwarily,1,kinghenryv,1599\nsparingly,1,kinghenryv,1599\nupreared,1,kinghenryv,1599\nEnglishman,1,kinghenryv,1599\nknow'st,1,kinghenryv,1599\nainsi,1,kinghenryv,1599\nbolt,1,kinghenryv,1599\ndiet,1,kinghenryv,1599\nscaffold,1,kinghenryv,1599\nruin,1,kinghenryv,1599\nrenew,1,kinghenryv,1599\nking'd,1,kinghenryv,1599\nrivets,1,kinghenryv,1599\nrequests,1,kinghenryv,1599\nesquire,1,kinghenryv,1599\nanon,1,kinghenryv,1599\ndirectly,1,kinghenryv,1599\ncustom,1,kinghenryv,1599\nmead,1,kinghenryv,1599\ndistressful,1,kinghenryv,1599\neagle,1,kinghenryv,1599\nPutting,1,kinghenryv,1599\nsooth,1,kinghenryv,1599\ndispleasure,1,kinghenryv,1599\nvictuals,1,kinghenryv,1599\nbesmirch'd,1,kinghenryv,1599\nbully,1,kinghenryv,1599\nFetch,1,kinghenryv,1599\nworld's,1,kinghenryv,1599\npopular,1,kinghenryv,1599\nsummon,1,kinghenryv,1599\nrebellion,1,kinghenryv,1599\nbidding,1,kinghenryv,1599\nmalady,1,kinghenryv,1599\nstop,1,kinghenryv,1599\nwarm,1,kinghenryv,1599\ndukedom,1,kinghenryv,1599\nclaps,1,kinghenryv,1599\nbreeding,1,kinghenryv,1599\nentre,1,kinghenryv,1599\nmelted,1,kinghenryv,1599\nenvelop,1,kinghenryv,1599\nImploring,1,kinghenryv,1599\nboot,1,kinghenryv,1599\nmistake,1,kinghenryv,1599\nsteed,1,kinghenryv,1599\nflowing,1,kinghenryv,1599\ngesture,1,kinghenryv,1599\nrevel,1,kinghenryv,1599\nPlantagenet,1,kinghenryv,1599\nFoh,1,kinghenryv,1599\nroofs,1,kinghenryv,1599\nbook,1,kinghenryv,1599\nHENRY'S,1,kinghenryv,1599\nPerish,1,kinghenryv,1599\nalliance,1,kinghenryv,1599\nbright,1,kinghenryv,1599\nframed,1,kinghenryv,1599\ngripe,1,kinghenryv,1599\ncreated,1,kinghenryv,1599\npraises,1,kinghenryv,1599\nm'enseignez,1,kinghenryv,1599\n'Solus,1,kinghenryv,1599\nL'air,1,kinghenryv,1599\nDraw,1,kinghenryv,1599\nhungry,1,kinghenryv,1599\nviper,1,kinghenryv,1599\nintelligence,1,kinghenryv,1599\nhealthful,1,kinghenryv,1599\nconquer,1,kinghenryv,1599\nuncoined,1,kinghenryv,1599\nfairest,1,kinghenryv,1599\ngoddess,1,kinghenryv,1599\nastonished,1,kinghenryv,1599\nbit,1,kinghenryv,1599\nunquiet,1,kinghenryv,1599\nurge,1,kinghenryv,1599\nprononcer,1,kinghenryv,1599\nnephew,1,kinghenryv,1599\nLingare,1,kinghenryv,1599\nopening,1,kinghenryv,1599\ndissensions,1,kinghenryv,1599\nprononcez,1,kinghenryv,1599\nmistaken,1,kinghenryv,1599\ngrievous,1,kinghenryv,1599\nmickle,1,kinghenryv,1599\nside,1,kinghenryv,1599\nha',1,kinghenryv,1599\nverily,1,kinghenryv,1599\nhousewifery,1,kinghenryv,1599\nbastards,1,kinghenryv,1599\nmarriages,1,kinghenryv,1599\nI',1,kinghenryv,1599\ndefine,1,kinghenryv,1599\nstir,1,kinghenryv,1599\npropre,1,kinghenryv,1599\nenfeebled,1,kinghenryv,1599\nPlack,1,kinghenryv,1599\nploughs,1,kinghenryv,1599\nforespent,1,kinghenryv,1599\npermafoy,1,kinghenryv,1599\nBabylon,1,kinghenryv,1599\nswellings,1,kinghenryv,1599\nkern,1,kinghenryv,1599\nrusty,1,kinghenryv,1599\nCertainly,1,kinghenryv,1599\nrusts,1,kinghenryv,1599\nintertissued,1,kinghenryv,1599\ncommons,1,kinghenryv,1599\nPig,1,kinghenryv,1599\noverthrow,1,kinghenryv,1599\nl'avez,1,kinghenryv,1599\nclimate,1,kinghenryv,1599\nDraws,1,kinghenryv,1599\nHydra,1,kinghenryv,1599\nstreams,1,kinghenryv,1599\ntalks,1,kinghenryv,1599\nchronicle,1,kinghenryv,1599\nreligious,1,kinghenryv,1599\nshales,1,kinghenryv,1599\nseigeurie,1,kinghenryv,1599\nforesaid,1,kinghenryv,1599\nnoces,1,kinghenryv,1599\nPossess,1,kinghenryv,1599\nkneeling,1,kinghenryv,1599\nTrail'st,1,kinghenryv,1599\npar,1,kinghenryv,1599\nperfection,1,kinghenryv,1599\nAh,1,kinghenryv,1599\ncontroversy,1,kinghenryv,1599\nacknowledgement,1,kinghenryv,1599\naltogether,1,kinghenryv,1599\nstubborn,1,kinghenryv,1599\nshowing,1,kinghenryv,1599\nReproach,1,kinghenryv,1599\n'Through,1,kinghenryv,1599\nactivity,1,kinghenryv,1599\nsummered,1,kinghenryv,1599\nfool's,1,kinghenryv,1599\nsurety,1,kinghenryv,1599\nmeads,1,kinghenryv,1599\nCa,1,kinghenryv,1599\nforge,1,kinghenryv,1599\npan,1,kinghenryv,1599\nmasons,1,kinghenryv,1599\nhilding,1,kinghenryv,1599\nchopped,1,kinghenryv,1599\nGloucester's,1,kinghenryv,1599\nEstablish'd,1,kinghenryv,1599\neternal,1,kinghenryv,1599\nmotionless,1,kinghenryv,1599\nverify,1,kinghenryv,1599\nTreason,1,kinghenryv,1599\nThose,1,kinghenryv,1599\nbeggar'd,1,kinghenryv,1599\nwash'd,1,kinghenryv,1599\nTwin,1,kinghenryv,1599\nunnatural,1,kinghenryv,1599\nretirement,1,kinghenryv,1599\nfortify,1,kinghenryv,1599\namong,1,kinghenryv,1599\ndesperate,1,kinghenryv,1599\nfausse,1,kinghenryv,1599\nStill,1,kinghenryv,1599\nspoil'd,1,kinghenryv,1599\nNeanmoins,1,kinghenryv,1599\nPlay,1,kinghenryv,1599\nCiel,1,kinghenryv,1599\ncareer,1,kinghenryv,1599\nhitherto,1,kinghenryv,1599\npander,1,kinghenryv,1599\nscaling,1,kinghenryv,1599\nimagined,1,kinghenryv,1599\nhoped,1,kinghenryv,1599\npays,1,kinghenryv,1599\nlands,1,kinghenryv,1599\nsonance,1,kinghenryv,1599\nimbar,1,kinghenryv,1599\nvivant,1,kinghenryv,1599\nlivered,1,kinghenryv,1599\nempery,1,kinghenryv,1599\nproof,1,kinghenryv,1599\ngained,1,kinghenryv,1599\nSays,1,kinghenryv,1599\nbrained,1,kinghenryv,1599\nbutt,1,kinghenryv,1599\npettiness,1,kinghenryv,1599\ngreatly,1,kinghenryv,1599\nbelike,1,kinghenryv,1599\nPay,1,kinghenryv,1599\ndiffused,1,kinghenryv,1599\ncreature,1,kinghenryv,1599\ngleeking,1,kinghenryv,1599\nmerited,1,kinghenryv,1599\nstar,1,kinghenryv,1599\ndenied,1,kinghenryv,1599\nParca's,1,kinghenryv,1599\nelle,1,kinghenryv,1599\ncontending,1,kinghenryv,1599\ntales,1,kinghenryv,1599\ndismounted,1,kinghenryv,1599\nbegun,1,kinghenryv,1599\nshines,1,kinghenryv,1599\nstab,1,kinghenryv,1599\nLinger,1,kinghenryv,1599\nsings,1,kinghenryv,1599\nclosely,1,kinghenryv,1599\nwisdom,1,kinghenryv,1599\nashes,1,kinghenryv,1599\nmiracles,1,kinghenryv,1599\nFrancois,1,kinghenryv,1599\n'long,1,kinghenryv,1599\ntear,1,kinghenryv,1599\nd'un,1,kinghenryv,1599\nHa,1,kinghenryv,1599\nflowers,1,kinghenryv,1599\nmovables,1,kinghenryv,1599\nrequired,1,kinghenryv,1599\nbeg,1,kinghenryv,1599\nfiner,1,kinghenryv,1599\nbotch,1,kinghenryv,1599\nmiser,1,kinghenryv,1599\nmeant,1,kinghenryv,1599\nfingers',1,kinghenryv,1599\nfined,1,kinghenryv,1599\nDecoct,1,kinghenryv,1599\nunfurnish'd,1,kinghenryv,1599\npattle,1,kinghenryv,1599\nMontez,1,kinghenryv,1599\nSword,1,kinghenryv,1599\ndeserved,1,kinghenryv,1599\nappoint,1,kinghenryv,1599\nease,1,kinghenryv,1599\ndigest,1,kinghenryv,1599\nmercifully,1,kinghenryv,1599\nbraggart,1,kinghenryv,1599\nproverbs,1,kinghenryv,1599\nbruised,1,kinghenryv,1599\nwither'd,1,kinghenryv,1599\naddiction,1,kinghenryv,1599\nadded,1,kinghenryv,1599\nimpieties,1,kinghenryv,1599\nungotten,1,kinghenryv,1599\nm'avez,1,kinghenryv,1599\nsport,1,kinghenryv,1599\ncondemned,1,kinghenryv,1599\nmeals,1,kinghenryv,1599\nwhipp'd,1,kinghenryv,1599\ntreachery,1,kinghenryv,1599\nstem,1,kinghenryv,1599\nnavy,1,kinghenryv,1599\nhemlock,1,kinghenryv,1599\nAlmost,1,kinghenryv,1599\nTenth,1,kinghenryv,1599\nchanges,1,kinghenryv,1599\npox,1,kinghenryv,1599\nnobility,1,kinghenryv,1599\nmatched,1,kinghenryv,1599\nIs't,1,kinghenryv,1599\nScarce,1,kinghenryv,1599\nUn,1,kinghenryv,1599\nindigne,1,kinghenryv,1599\nadmiral,1,kinghenryv,1599\nbatailles,1,kinghenryv,1599\npot,1,kinghenryv,1599\ncull'd,1,kinghenryv,1599\nformerly,1,kinghenryv,1599\nd'Anglois,1,kinghenryv,1599\nHeave,1,kinghenryv,1599\noutlive,1,kinghenryv,1599\nprove,1,kinghenryv,1599\ncurled,1,kinghenryv,1599\nwhoop,1,kinghenryv,1599\nSeems,1,kinghenryv,1599\nsire,1,kinghenryv,1599\ndemon,1,kinghenryv,1599\ncorrupted,1,kinghenryv,1599\nkiss'd,1,kinghenryv,1599\nwringing,1,kinghenryv,1599\nAntony,1,kinghenryv,1599\nlessened,1,kinghenryv,1599\npriests,1,kinghenryv,1599\ngod,1,kinghenryv,1599\ngrazing,1,kinghenryv,1599\nbroached,1,kinghenryv,1599\nsought,1,kinghenryv,1599\nMinding,1,kinghenryv,1599\nwhore,1,kinghenryv,1599\nlambkins,1,kinghenryv,1599\nmountain's,1,kinghenryv,1599\nresolves,1,kinghenryv,1599\nEnlink'd,1,kinghenryv,1599\nquicken'd,1,kinghenryv,1599\nwhatever,1,kinghenryv,1599\nweed,1,kinghenryv,1599\nmisericorde,1,kinghenryv,1599\npaction,1,kinghenryv,1599\nrelapse,1,kinghenryv,1599\nmorning's,1,kinghenryv,1599\npragging,1,kinghenryv,1599\ntromperies,1,kinghenryv,1599\nwriters,1,kinghenryv,1599\nOpen,1,kinghenryv,1599\nspotless,1,kinghenryv,1599\nicicles,1,kinghenryv,1599\nbusy,1,kinghenryv,1599\nReceive,1,kinghenryv,1599\nswaggered,1,kinghenryv,1599\nstray,1,kinghenryv,1599\ngrief,1,kinghenryv,1599\ncoude,1,kinghenryv,1599\nAugment,1,kinghenryv,1599\nrunaways,1,kinghenryv,1599\ngimmal,1,kinghenryv,1599\nimagine,1,kinghenryv,1599\nmiscarry,1,kinghenryv,1599\nburs,1,kinghenryv,1599\nbury,1,kinghenryv,1599\ncowarded,1,kinghenryv,1599\n'Twould,1,kinghenryv,1599\nSits,1,kinghenryv,1599\nperdition,1,kinghenryv,1599\ndifference,1,kinghenryv,1599\nkindness,1,kinghenryv,1599\ndout,1,kinghenryv,1599\ncar,1,kinghenryv,1599\nChilderic,1,kinghenryv,1599\nneglecting,1,kinghenryv,1599\nchattels,1,kinghenryv,1599\nprater,1,kinghenryv,1599\nreeking,1,kinghenryv,1599\ncockpit,1,kinghenryv,1599\npetition,1,kinghenryv,1599\nPlant,1,kinghenryv,1599\npry,1,kinghenryv,1599\n'tween,1,kinghenryv,1599\nmoreover,1,kinghenryv,1599\nmeetest,1,kinghenryv,1599\ndevilish,1,kinghenryv,1599\nreference,1,kinghenryv,1599\nwrecked,1,kinghenryv,1599\nimpudique,1,kinghenryv,1599\ngrandeur,1,kinghenryv,1599\ncouch,1,kinghenryv,1599\ndevised,1,kinghenryv,1599\nfatally,1,kinghenryv,1599\nlatest,1,kinghenryv,1599\nbent,1,kinghenryv,1599\npitie,1,kinghenryv,1599\ncraft,1,kinghenryv,1599\ntreasons,1,kinghenryv,1599\nDying,1,kinghenryv,1599\ngum,1,kinghenryv,1599\nbottles,1,kinghenryv,1599\nLies,1,kinghenryv,1599\nvaunting,1,kinghenryv,1599\nidleness,1,kinghenryv,1599\nquotidian,1,kinghenryv,1599\njealous,1,kinghenryv,1599\nplough,1,kinghenryv,1599\ncaptains,1,kinghenryv,1599\nafore,1,kinghenryv,1599\nWelshmen,1,kinghenryv,1599\nbended,1,kinghenryv,1599\nverite,1,kinghenryv,1599\nbuds,1,kinghenryv,1599\nFathers,1,kinghenryv,1599\nbulwark,1,kinghenryv,1599\nbaisant,1,kinghenryv,1599\nsmoothed,1,kinghenryv,1599\nleeches,1,kinghenryv,1599\ngamester,1,kinghenryv,1599\nnobis',1,kinghenryv,1599\nEgregious,1,kinghenryv,1599\nsunless,1,kinghenryv,1599\ntheme,1,kinghenryv,1599\ngunner,1,kinghenryv,1599\nfriendly,1,kinghenryv,1599\nadvantageable,1,kinghenryv,1599\nroyally,1,kinghenryv,1599\nmechanic,1,kinghenryv,1599\nconquest,1,kinghenryv,1599\nconjuration,1,kinghenryv,1599\ndoute,1,kinghenryv,1599\nadulation,1,kinghenryv,1599\nSing,1,kinghenryv,1599\ncurse,1,kinghenryv,1599\nbadge,1,kinghenryv,1599\n'Tarry,1,kinghenryv,1599\nbeget,1,kinghenryv,1599\ndespite,1,kinghenryv,1599\nmoods,1,kinghenryv,1599\nBringing,1,kinghenryv,1599\nlequel,1,kinghenryv,1599\nheureux,1,kinghenryv,1599\nvassal,1,kinghenryv,1599\ncruelly,1,kinghenryv,1599\npreserve,1,kinghenryv,1599\nbees,1,kinghenryv,1599\nsurvey,1,kinghenryv,1599\nO'er,1,kinghenryv,1599\nEnough,1,kinghenryv,1599\nAbout,1,kinghenryv,1599\nNotre,1,kinghenryv,1599\nsituations,1,kinghenryv,1599\nsins,1,kinghenryv,1599\nambassadors,1,kinghenryv,1599\nconsciences,1,kinghenryv,1599\nsink,1,kinghenryv,1599\ngame's,1,kinghenryv,1599\ncudgelled,1,kinghenryv,1599\ngate,1,kinghenryv,1599\n'Twas,1,kinghenryv,1599\nsing,1,kinghenryv,1599\nfulness,1,kinghenryv,1599\nPrevented,1,kinghenryv,1599\ntwigs,1,kinghenryv,1599\nseigneurs,1,kinghenryv,1599\ncoulter,1,kinghenryv,1599\nGot,1,kinghenryv,1599\nashamed,1,kinghenryv,1599\ncomplement,1,kinghenryv,1599\ngasp,1,kinghenryv,1599\nimmortal,1,kinghenryv,1599\nlately,1,kinghenryv,1599\npardonnez,1,kinghenryv,1599\nbeginning,1,kinghenryv,1599\nbuxom,1,kinghenryv,1599\ngarb,1,kinghenryv,1599\nsternage,1,kinghenryv,1599\ninheritance,1,kinghenryv,1599\nswaying,1,kinghenryv,1599\ngrandmother,1,kinghenryv,1599\nabaissiez,1,kinghenryv,1599\nflashing,1,kinghenryv,1599\ncurrance,1,kinghenryv,1599\nsolemn,1,kinghenryv,1599\nstore,1,kinghenryv,1599\nnoted,1,kinghenryv,1599\nraught,1,kinghenryv,1599\netre,1,kinghenryv,1599\nsolely,1,kinghenryv,1599\nvirgin,1,kinghenryv,1599\nsail,1,kinghenryv,1599\nravage,1,kinghenryv,1599\nconquering,1,kinghenryv,1599\ndistingue,1,kinghenryv,1599\nvalleys,1,kinghenryv,1599\npapers,1,kinghenryv,1599\nHuntingdon,1,kinghenryv,1599\nCannot,1,kinghenryv,1599\nbreast,1,kinghenryv,1599\naim,1,kinghenryv,1599\nexpedience,1,kinghenryv,1599\npromises,1,kinghenryv,1599\nsheds,1,kinghenryv,1599\ngallows,1,kinghenryv,1599\ndu,1,kinghenryv,1599\nblithe,1,kinghenryv,1599\nsage,1,kinghenryv,1599\ntyrant,1,kinghenryv,1599\nMock,1,kinghenryv,1599\nsatisfy,1,kinghenryv,1599\nenrounded,1,kinghenryv,1599\naid,1,kinghenryv,1599\nspirited,1,kinghenryv,1599\nstops,1,kinghenryv,1599\nshouts,1,kinghenryv,1599\nHere's,1,kinghenryv,1599\nforbids,1,kinghenryv,1599\nbattery,1,kinghenryv,1599\nlineal,1,kinghenryv,1599\n'Give,1,kinghenryv,1599\ndeck,1,kinghenryv,1599\nbeat,1,kinghenryv,1599\nfetter'd,1,kinghenryv,1599\nooze,1,kinghenryv,1599\nwreck,1,kinghenryv,1599\nDolphin,1,kinghenryv,1599\nMaking,1,kinghenryv,1599\ntawny,1,kinghenryv,1599\nUsurp'd,1,kinghenryv,1599\nrightful,1,kinghenryv,1599\nslovenry,1,kinghenryv,1599\nsnatchers,1,kinghenryv,1599\nbarley,1,kinghenryv,1599\nCrete,1,kinghenryv,1599\nPass,1,kinghenryv,1599\ngentlewomen,1,kinghenryv,1599\nJewry,1,kinghenryv,1599\ndwell,1,kinghenryv,1599\ntragedy,1,kinghenryv,1599\nliberal,1,kinghenryv,1599\ngait,1,kinghenryv,1599\nvouchsafe,1,kinghenryv,1599\ndignity,1,kinghenryv,1599\nseeing,1,kinghenryv,1599\nworthily,1,kinghenryv,1599\ngild,1,kinghenryv,1599\n'Fore,1,kinghenryv,1599\ninterim,1,kinghenryv,1599\ncontinual,1,kinghenryv,1599\nmakers,1,kinghenryv,1599\neloquent,1,kinghenryv,1599\nlend,1,kinghenryv,1599\nrainy,1,kinghenryv,1599\nedged,1,kinghenryv,1599\ndestruction,1,kinghenryv,1599\nnettle,1,kinghenryv,1599\nsack,1,kinghenryv,1599\nlaughing,1,kinghenryv,1599\nici,1,kinghenryv,1599\nlady's,1,kinghenryv,1599\nedges,1,kinghenryv,1599\nClarence,1,kinghenryv,1599\nice,1,kinghenryv,1599\ngenerally,1,kinghenryv,1599\nFought,1,kinghenryv,1599\nglistering,1,kinghenryv,1599\nDivide,1,kinghenryv,1599\nList,1,kinghenryv,1599\nb',1,kinghenryv,1599\nappeared,1,kinghenryv,1599\nmakest,1,kinghenryv,1599\nhouses,1,kinghenryv,1599\nay,1,kinghenryv,1599\nYon,1,kinghenryv,1599\ncram,1,kinghenryv,1599\nan',1,kinghenryv,1599\napes,1,kinghenryv,1599\nmemory,1,kinghenryv,1599\nau,1,kinghenryv,1599\ngentlewoman,1,kinghenryv,1599\nNeighbour'd,1,kinghenryv,1599\nreckon,1,kinghenryv,1599\nai,1,kinghenryv,1599\nslips,1,kinghenryv,1599\ncruelty,1,kinghenryv,1599\nporters,1,kinghenryv,1599\nmanner,1,kinghenryv,1599\nwearest,1,kinghenryv,1599\ndefends,1,kinghenryv,1599\ninterred,1,kinghenryv,1599\ngrowth,1,kinghenryv,1599\nnewly,1,kinghenryv,1599\nenclosed,1,kinghenryv,1599\nStaines,1,kinghenryv,1599\ntemperate,1,kinghenryv,1599\nperspectively,1,kinghenryv,1599\ndonnerai,1,kinghenryv,1599\nWalking,1,kinghenryv,1599\nmille,1,kinghenryv,1599\ndoom,1,kinghenryv,1599\npuis,1,kinghenryv,1599\ncorrect,1,kinghenryv,1599\nwhelks,1,kinghenryv,1599\ndisorder'd,1,kinghenryv,1599\ndonc,1,kinghenryv,1599\nboard,1,kinghenryv,1599\nattending,1,kinghenryv,1599\npursuit,1,kinghenryv,1599\nthreaten,1,kinghenryv,1599\ndamn'd,1,kinghenryv,1599\napprobation,1,kinghenryv,1599\nuneasiness,1,kinghenryv,1599\ncommande,1,kinghenryv,1599\ndelay,1,kinghenryv,1599\ncomment,1,kinghenryv,1599\nfastest,1,kinghenryv,1599\norphans',1,kinghenryv,1599\nexpert,1,kinghenryv,1599\nstrain,1,kinghenryv,1599\ncrew,1,kinghenryv,1599\noffer't,1,kinghenryv,1599\nlaquais,1,kinghenryv,1599\nunspotted,1,kinghenryv,1599\nnecessity,1,kinghenryv,1599\nutmost,1,kinghenryv,1599\ncrave,1,kinghenryv,1599\nidly,1,kinghenryv,1599\nmote,1,kinghenryv,1599\nsharper,1,kinghenryv,1599\nsemblances,1,kinghenryv,1599\nayez,1,kinghenryv,1599\nFortune's,1,kinghenryv,1599\ncarriages,1,kinghenryv,1599\nEnglishwoman,1,kinghenryv,1599\nGuarded,1,kinghenryv,1599\nambiguities,1,kinghenryv,1599\noF,1,kinghenryv,1599\ntraps,1,kinghenryv,1599\ndeface,1,kinghenryv,1599\nscholar,1,kinghenryv,1599\nproduce,1,kinghenryv,1599\nMay't,1,kinghenryv,1599\nimp,1,kinghenryv,1599\nTook,1,kinghenryv,1599\ncuppele,1,kinghenryv,1599\ntemper,1,kinghenryv,1599\nvariations,1,kinghenryv,1599\ncaused,1,kinghenryv,1599\ndeja,1,kinghenryv,1599\nleur,1,kinghenryv,1599\ncrimes,1,kinghenryv,1599\npristine,1,kinghenryv,1599\nlover,1,kinghenryv,1599\nloves,1,kinghenryv,1599\nremembering,1,kinghenryv,1599\nleve,1,kinghenryv,1599\nSuccess,1,kinghenryv,1599\npursued,1,kinghenryv,1599\ncoutume,1,kinghenryv,1599\nloud,1,kinghenryv,1599\nmiserable,1,kinghenryv,1599\nmatching,1,kinghenryv,1599\nsettled,1,kinghenryv,1599\nlightly,1,kinghenryv,1599\nhommes,1,kinghenryv,1599\namply,1,kinghenryv,1599\nchallenger,1,kinghenryv,1599\nYea,1,kinghenryv,1599\nparents,1,kinghenryv,1599\nWouldst,1,kinghenryv,1599\ncherishing,1,kinghenryv,1599\nsweetness,1,kinghenryv,1599\nwipes,1,kinghenryv,1599\nspeak'st,1,kinghenryv,1599\nThrust,1,kinghenryv,1599\nmope,1,kinghenryv,1599\nsemblance,1,kinghenryv,1599\nshrieking,1,kinghenryv,1599\nwherein,1,kinghenryv,1599\nSennet,1,kinghenryv,1599\nexpel,1,kinghenryv,1599\nloved,1,kinghenryv,1599\nall's,1,kinghenryv,1599\nknot,1,kinghenryv,1599\ndevin,1,kinghenryv,1599\ncrystals,1,kinghenryv,1599\nviolet,1,kinghenryv,1599\ndefy,1,kinghenryv,1599\nnecessary,1,kinghenryv,1599\nbootless,1,kinghenryv,1599\nWorking,1,kinghenryv,1599\nwinner,1,kinghenryv,1599\nchantries,1,kinghenryv,1599\nspouse,1,kinghenryv,1599\naussi,1,kinghenryv,1599\npremeditated,1,kinghenryv,1599\ncomposed,1,kinghenryv,1599\nscatter'd,1,kinghenryv,1599\ngardeners,1,kinghenryv,1599\nupbraided,1,kinghenryv,1599\nhooded,1,kinghenryv,1599\nbristle,1,kinghenryv,1599\nDiscolour,1,kinghenryv,1599\nload,1,kinghenryv,1599\nPompey,1,kinghenryv,1599\nCame,1,kinghenryv,1599\nharm'd,1,kinghenryv,1599\nperdurable,1,kinghenryv,1599\ntucket,1,kinghenryv,1599\nhark,1,kinghenryv,1599\ngraves,1,kinghenryv,1599\nchoice,1,kinghenryv,1599\nprings,1,kinghenryv,1599\nhardly,1,kinghenryv,1599\nHaply,1,kinghenryv,1599\ndonne,1,kinghenryv,1599\nclime,1,kinghenryv,1599\nreasons,1,kinghenryv,1599\nFranciae,1,kinghenryv,1599\nhavoc,1,kinghenryv,1599\noppression,1,kinghenryv,1599\nkills,1,kinghenryv,1599\nva,1,kinghenryv,1599\naxe,1,kinghenryv,1599\nthistles,1,kinghenryv,1599\nFreely,1,kinghenryv,1599\npare,1,kinghenryv,1599\neaux,1,kinghenryv,1599\nPompey's,1,kinghenryv,1599\ndistil,1,kinghenryv,1599\nenterprises,1,kinghenryv,1599\nlavee,1,kinghenryv,1599\nisle,1,kinghenryv,1599\nstring,1,kinghenryv,1599\nplod,1,kinghenryv,1599\nenglutted,1,kinghenryv,1599\nsoldier's,1,kinghenryv,1599\nconspiracy,1,kinghenryv,1599\nfalourous,1,kinghenryv,1599\nround,1,kinghenryv,1599\nhaunts,1,kinghenryv,1599\nte,1,kinghenryv,1599\npoorly,1,kinghenryv,1599\nbeggar's,1,kinghenryv,1599\namount,1,kinghenryv,1599\nupholding,1,kinghenryv,1599\nn'est,1,kinghenryv,1599\nkingly,1,kinghenryv,1599\nperfected,1,kinghenryv,1599\nembattled,1,kinghenryv,1599\nunworthiness,1,kinghenryv,1599\nbasest,1,kinghenryv,1599\nsubmit,1,kinghenryv,1599\nshews,1,kinghenryv,1599\nindued,1,kinghenryv,1599\nintended,1,kinghenryv,1599\nreduce,1,kinghenryv,1599\nsi,1,kinghenryv,1599\nverses,1,kinghenryv,1599\njoyfully,1,kinghenryv,1599\nhusband's,1,kinghenryv,1599\nRead,1,kinghenryv,1599\npaly,1,kinghenryv,1599\nspur,1,kinghenryv,1599\nacknowledge,1,kinghenryv,1599\nimpeachment,1,kinghenryv,1599\nfaintly,1,kinghenryv,1599\nliberte,1,kinghenryv,1599\ntrade,1,kinghenryv,1599\ntreads,1,kinghenryv,1599\nEnjoys,1,kinghenryv,1599\nStars,1,kinghenryv,1599\nsignal,1,kinghenryv,1599\nTrumpets,1,kinghenryv,1599\ncongreeted,1,kinghenryv,1599\nPluck,1,kinghenryv,1599\nshun,1,kinghenryv,1599\nHeritier,1,kinghenryv,1599\nshut,1,kinghenryv,1599\ndeny,1,kinghenryv,1599\ncited,1,kinghenryv,1599\nLosing,1,kinghenryv,1599\ndraws,1,kinghenryv,1599\nfire's,1,kinghenryv,1599\nforty,1,kinghenryv,1599\njoyful,1,kinghenryv,1599\nfoggy,1,kinghenryv,1599\nprovided,1,kinghenryv,1599\nUnseen,1,kinghenryv,1599\nwisdoms,1,kinghenryv,1599\nexamine,1,kinghenryv,1599\nmarching,1,kinghenryv,1599\nexcuse,1,kinghenryv,1599\nsucking,1,kinghenryv,1599\ngovernor,1,kinghenryv,1599\npluck,1,kinghenryv,1599\nexpect,1,kinghenryv,1599\nrashness,1,kinghenryv,1599\nExpectation,1,kinghenryv,1599\nQui,1,kinghenryv,1599\nhuswife,1,kinghenryv,1599\neased,1,kinghenryv,1599\nknocks,1,kinghenryv,1599\n'Dear,1,kinghenryv,1599\nfort,1,kinghenryv,1599\nslings,1,kinghenryv,1599\nhawk,1,kinghenryv,1599\ndefensible,1,kinghenryv,1599\npurged,1,kinghenryv,1599\nimpatient,1,kinghenryv,1599\nplue,1,kinghenryv,1599\nstraws,1,kinghenryv,1599\nCaveto,1,kinghenryv,1599\nshaked,1,kinghenryv,1599\npair,1,kinghenryv,1599\ncourts,1,kinghenryv,1599\nneglect,1,kinghenryv,1599\nbloodily,1,kinghenryv,1599\nfiery,1,kinghenryv,1599\nspit,1,kinghenryv,1599\ndiest,1,kinghenryv,1599\npractic,1,kinghenryv,1599\nspin,1,kinghenryv,1599\nmayor,1,kinghenryv,1599\nfooted,1,kinghenryv,1599\nevenly,1,kinghenryv,1599\nPrepare,1,kinghenryv,1599\nforsworn,1,kinghenryv,1599\nDispatch,1,kinghenryv,1599\nBorne,1,kinghenryv,1599\norisons,1,kinghenryv,1599\nTennis,1,kinghenryv,1599\nshakes,1,kinghenryv,1599\nIncline,1,kinghenryv,1599\nvigil,1,kinghenryv,1599\npace,1,kinghenryv,1599\nd'user,1,kinghenryv,1599\ninfer,1,kinghenryv,1599\nimpounded,1,kinghenryv,1599\nrobustious,1,kinghenryv,1599\nPiece,1,kinghenryv,1599\nbillows,1,kinghenryv,1599\nproper,1,kinghenryv,1599\nave,1,kinghenryv,1599\npetitions,1,kinghenryv,1599\nexcept,1,kinghenryv,1599\nMonmouth's,1,kinghenryv,1599\ncounsellors,1,kinghenryv,1599\nfiend,1,kinghenryv,1599\noutstrip,1,kinghenryv,1599\ncontain,1,kinghenryv,1599\npalfreys,1,kinghenryv,1599\nuncurbed,1,kinghenryv,1599\nprepared,1,kinghenryv,1599\nSmall,1,kinghenryv,1599\navouchment,1,kinghenryv,1599\ntombe,1,kinghenryv,1599\nbabies,1,kinghenryv,1599\ngipes,1,kinghenryv,1599\nyard,1,kinghenryv,1599\nGordian,1,kinghenryv,1599\ntestimony,1,kinghenryv,1599\ncreatures,1,kinghenryv,1599\nspiritualty,1,kinghenryv,1599\nexcess,1,kinghenryv,1599\nnatifs,1,kinghenryv,1599\nrenowned,1,kinghenryv,1599\nobject,1,kinghenryv,1599\ncourser,1,kinghenryv,1599\ndishonest,1,kinghenryv,1599\nindigent,1,kinghenryv,1599\nscarcely,1,kinghenryv,1599\npikes,1,kinghenryv,1599\nfancies,1,kinghenryv,1599\nbeards,1,kinghenryv,1599\nMangling,1,kinghenryv,1599\nOffer'st,1,kinghenryv,1599\nfold,1,kinghenryv,1599\nconclusions,1,kinghenryv,1599\nterm,1,kinghenryv,1599\nBreed,1,kinghenryv,1599\nsecret,1,kinghenryv,1599\ncommanders',1,kinghenryv,1599\nObedience,1,kinghenryv,1599\nConvey'd,1,kinghenryv,1599\nopen'd,1,kinghenryv,1599\nIsh,1,kinghenryv,1599\nsalmons,1,kinghenryv,1599\ndefended,1,kinghenryv,1599\nfinely,1,kinghenryv,1599\nfurnish,1,kinghenryv,1599\nthanks,1,kinghenryv,1599\nceased,1,kinghenryv,1599\ncasted,1,kinghenryv,1599\ndisdainful,1,kinghenryv,1599\ntrick,1,kinghenryv,1599\ntheise,1,kinghenryv,1599\npreparations,1,kinghenryv,1599\nfet,1,kinghenryv,1599\nconvocation,1,kinghenryv,1599\nsequel,1,kinghenryv,1599\ntheirs,1,kinghenryv,1599\ncullions,1,kinghenryv,1599\nThink'st,1,kinghenryv,1599\nsmells,1,kinghenryv,1599\nshotten,1,kinghenryv,1599\narray,1,kinghenryv,1599\nlurking,1,kinghenryv,1599\nsweetly,1,kinghenryv,1599\nsuffer'st,1,kinghenryv,1599\nPick'd,1,kinghenryv,1599\nwarned,1,kinghenryv,1599\nnet,1,kinghenryv,1599\nvisited,1,kinghenryv,1599\nirreconciled,1,kinghenryv,1599\nwooing,1,kinghenryv,1599\nElysium,1,kinghenryv,1599\ndishearten,1,kinghenryv,1599\npleach'd,1,kinghenryv,1599\nridiculous,1,kinghenryv,1599\nEnforced,1,kinghenryv,1599\nCreatures,1,kinghenryv,1599\nenjoy,1,kinghenryv,1599\nStood,1,kinghenryv,1599\nTartar,1,kinghenryv,1599\nqu'il,1,kinghenryv,1599\nguess,1,kinghenryv,1599\nguest,1,kinghenryv,1599\nknobs,1,kinghenryv,1599\nprays,1,kinghenryv,1599\nroot,1,kinghenryv,1599\nspoken,1,kinghenryv,1599\nLucifer,1,kinghenryv,1599\njaws,1,kinghenryv,1599\ntransporting,1,kinghenryv,1599\nBids,1,kinghenryv,1599\nheight,1,kinghenryv,1599\nwitch,1,kinghenryv,1599\nbirths,1,kinghenryv,1599\nDisguise,1,kinghenryv,1599\nluck,1,kinghenryv,1599\nfumble,1,kinghenryv,1599\ncomme,1,kinghenryv,1599\nprocession,1,kinghenryv,1599\n'jealousy,1,kinghenryv,1599\ncontented,1,kinghenryv,1599\ndelicate,1,kinghenryv,1599\nactive,1,kinghenryv,1599\nluce,1,kinghenryv,1599\nleas,1,kinghenryv,1599\npeeps,1,kinghenryv,1599\nroom,1,kinghenryv,1599\nCommand,1,kinghenryv,1599\njustice,1,kinghenryv,1599\nwhispers,1,kinghenryv,1599\nrender'd,1,kinghenryv,1599\nKill,1,kinghenryv,1599\nSur,1,kinghenryv,1599\nperceived,1,kinghenryv,1599\nYerk,1,kinghenryv,1599\nN'avez,1,kinghenryv,1599\ncarrions,1,kinghenryv,1599\nsobriety,1,kinghenryv,1599\nMadam,1,kinghenryv,1599\nglories,1,kinghenryv,1599\nlayer,1,kinghenryv,1599\nmais,1,kinghenryv,1599\nequal,1,kinghenryv,1599\nbreeds,1,kinghenryv,1599\nprerogatifes,1,kinghenryv,1599\nsurgeon,1,kinghenryv,1599\nmortified,1,kinghenryv,1599\nspitted,1,kinghenryv,1599\nballad,1,kinghenryv,1599\ncastle,1,kinghenryv,1599\nventure,1,kinghenryv,1599\noutlives,1,kinghenryv,1599\n'what,1,kinghenryv,1599\nunloose,1,kinghenryv,1599\ncarried,1,kinghenryv,1599\nSorry,1,kinghenryv,1599\nrote,1,kinghenryv,1599\nredoubted,1,kinghenryv,1599\nnations,1,kinghenryv,1599\nCanst,1,kinghenryv,1599\nshouldst,1,kinghenryv,1599\napprehension,1,kinghenryv,1599\nprisons,1,kinghenryv,1599\nguiltless,1,kinghenryv,1599\nrascals,1,kinghenryv,1599\ngull'd,1,kinghenryv,1599\nleviathan,1,kinghenryv,1599\nlifeless,1,kinghenryv,1599\nantique,1,kinghenryv,1599\nbrokenly,1,kinghenryv,1599\nhowls,1,kinghenryv,1599\nwoodmonger,1,kinghenryv,1599\ncouldst,1,kinghenryv,1599\ndistance,1,kinghenryv,1599\nrolling,1,kinghenryv,1599\nbuilt,1,kinghenryv,1599\nLaissez,1,kinghenryv,1599\nwhelp,1,kinghenryv,1599\nBrothers,1,kinghenryv,1599\n'Gainst,1,kinghenryv,1599\nunknown,1,kinghenryv,1599\nassays,1,kinghenryv,1599\nrepose,1,kinghenryv,1599\nPetit,1,kinghenryv,1599\nsending,1,kinghenryv,1599\nhoney'd,1,kinghenryv,1599\npleines,1,kinghenryv,1599\ndeposed,1,kinghenryv,1599\nenvy,1,kinghenryv,1599\nemptying,1,kinghenryv,1599\nnumber'd,1,kinghenryv,1599\nBack,1,kinghenryv,1599\nretreat,1,kinghenryv,1599\nfraught,1,kinghenryv,1599\nproceed,1,kinghenryv,1599\nhire,1,kinghenryv,1599\ndigestions,1,kinghenryv,1599\npabble,1,kinghenryv,1599\nhips,1,kinghenryv,1599\nbeats,1,kinghenryv,1599\nmace,1,kinghenryv,1599\ndress,1,kinghenryv,1599\ncrushed,1,kinghenryv,1599\nrestless,1,kinghenryv,1599\nDerived,1,kinghenryv,1599\npenny,1,kinghenryv,1599\nmounted,1,kinghenryv,1599\nscald,1,kinghenryv,1599\nUrged,1,kinghenryv,1599\nproudly,1,kinghenryv,1599\ncircle,1,kinghenryv,1599\nknew'st,1,kinghenryv,1599\ncurtains,1,kinghenryv,1599\npaths,1,kinghenryv,1599\nbelow,1,kinghenryv,1599\nindifferently,1,kinghenryv,1599\ncontention,1,kinghenryv,1599\nriots,1,kinghenryv,1599\ndisgraced,1,kinghenryv,1599\nPlaying,1,kinghenryv,1599\nSooner,1,kinghenryv,1599\nluxury,1,kinghenryv,1599\nswarming,1,kinghenryv,1599\naccrue,1,kinghenryv,1599\nnook,1,kinghenryv,1599\nfester,1,kinghenryv,1599\nvelvet,1,kinghenryv,1599\nglean,1,kinghenryv,1599\nestate,1,kinghenryv,1599\nete,1,kinghenryv,1599\npleaseth,1,kinghenryv,1599\neffusion,1,kinghenryv,1599\nblunt,1,kinghenryv,1599\nteems,1,kinghenryv,1599\ngardez,1,kinghenryv,1599\nSix,1,kinghenryv,1599\nExcursions,1,kinghenryv,1599\nSleeps,1,kinghenryv,1599\npleasest,1,kinghenryv,1599\nobservingly,1,kinghenryv,1599\nbanners,1,kinghenryv,1599\ncowslip,1,kinghenryv,1599\nBeseeching,1,kinghenryv,1599\nseverals,1,kinghenryv,1599\nwink'd,1,kinghenryv,1599\nobserved,1,kinghenryv,1599\ndescended,1,kinghenryv,1599\nsirrah,1,kinghenryv,1599\nadmire,1,kinghenryv,1599\nWear,1,kinghenryv,1599\nasse,1,kinghenryv,1599\nslain,1,kinghenryv,1599\npeers',1,kinghenryv,1599\nchase,1,kinghenryv,1599\nlikelihood,1,kinghenryv,1599\ncharter'd,1,kinghenryv,1599\nveux,1,kinghenryv,1599\nscions,1,kinghenryv,1599\nexcused,1,kinghenryv,1599\nannoy,1,kinghenryv,1599\ncandlesticks,1,kinghenryv,1599\nstirrers,1,kinghenryv,1599\nSit,1,kinghenryv,1599\nwolves,1,kinghenryv,1599\nalter,1,kinghenryv,1599\nmount,1,kinghenryv,1599\nexcusez,1,kinghenryv,1599\npeacock's,1,kinghenryv,1599\nStraining,1,kinghenryv,1599\nboastful,1,kinghenryv,1599\nHigh,1,kinghenryv,1599\nd'une,1,kinghenryv,1599\nshores,1,kinghenryv,1599\narise,1,kinghenryv,1599\no'erturn,1,kinghenryv,1599\npaces,1,kinghenryv,1599\noutwear,1,kinghenryv,1599\nordure,1,kinghenryv,1599\nKING's,1,kinghenryv,1599\nhinder'd,1,kinghenryv,1599\ncounsellor,1,kinghenryv,1599\nadultery,1,kinghenryv,1599\ncomprised,1,kinghenryv,1599\nvainness,1,kinghenryv,1599\nsoldat,1,kinghenryv,1599\nescapes,1,kinghenryv,1599\nallons,1,kinghenryv,1599\npresented,1,kinghenryv,1599\nordinance,1,kinghenryv,1599\nGets,1,kinghenryv,1599\ncarnation,1,kinghenryv,1599\nErmengare,1,kinghenryv,1599\ncurtle,1,kinghenryv,1599\nawhile,1,kinghenryv,1599\neggs,1,kinghenryv,1599\nsteeled,1,kinghenryv,1599\nseveral,1,kinghenryv,1599\nvaillant,1,kinghenryv,1599\ngallantly,1,kinghenryv,1599\nfreely,1,kinghenryv,1599\nquarter,1,kinghenryv,1599\nmouse,1,kinghenryv,1599\nMeisen,1,kinghenryv,1599\ncloak,1,kinghenryv,1599\nHealth,1,kinghenryv,1599\ninly,1,kinghenryv,1599\nbestride,1,kinghenryv,1599\nConsideration,1,kinghenryv,1599\nleaving,1,kinghenryv,1599\nJeshu,1,kinghenryv,1599\nsinfully,1,kinghenryv,1599\nfeith,1,kinghenryv,1599\nplaced,1,kinghenryv,1599\nunprovided,1,kinghenryv,1599\nthreaden,1,kinghenryv,1599\nSuffolk's,1,kinghenryv,1599\nsuperfluously,1,kinghenryv,1599\nConvey,1,kinghenryv,1599\nSee,1,kinghenryv,1599\nattire,1,kinghenryv,1599\nlodge,1,kinghenryv,1599\ndoors,1,kinghenryv,1599\nmortal,1,kinghenryv,1599\ngirdled,1,kinghenryv,1599\nalmshouses,1,kinghenryv,1599\nFree,1,kinghenryv,1599\ncharitably,1,kinghenryv,1599\nrealms,1,kinghenryv,1599\nFret,1,kinghenryv,1599\nmile,1,kinghenryv,1599\nwiser,1,kinghenryv,1599\n'If,1,kinghenryv,1599\ndeck'd,1,kinghenryv,1599\ncharitable,1,kinghenryv,1599\nsinging,1,kinghenryv,1599\n'In,1,kinghenryv,1599\nvarlet,1,kinghenryv,1599\nSay'st,1,kinghenryv,1599\nnon,1,kinghenryv,1599\nstart,1,kinghenryv,1599\nmans,1,kinghenryv,1599\nqualities,1,kinghenryv,1599\nstars,1,kinghenryv,1599\nprize,1,kinghenryv,1599\nconclusion,1,kinghenryv,1599\nguidon,1,kinghenryv,1599\napproaches,1,kinghenryv,1599\nshield,1,kinghenryv,1599\nkisses,1,kinghenryv,1599\nrange,1,kinghenryv,1599\nplead,1,kinghenryv,1599\nsacrifices,1,kinghenryv,1599\ntempest,1,kinghenryv,1599\nsouviendrai,1,kinghenryv,1599\ndared,1,kinghenryv,1599\nfoolish,1,kinghenryv,1599\nwatched,1,kinghenryv,1599\nrobbery,1,kinghenryv,1599\nrobbers,1,kinghenryv,1599\nsmother,1,kinghenryv,1599\nmale,1,kinghenryv,1599\nhumorous,1,kinghenryv,1599\nalready,1,kinghenryv,1599\ntackle,1,kinghenryv,1599\nwrought,1,kinghenryv,1599\ndowry,1,kinghenryv,1599\nwheresome'er,1,kinghenryv,1599\nslaughtermen,1,kinghenryv,1599\nreading,1,kinghenryv,1599\nsilling,1,kinghenryv,1599\nobscured,1,kinghenryv,1599\nUncle,1,kinghenryv,1599\ncelerity,1,kinghenryv,1599\nbolted,1,kinghenryv,1599\nappris,1,kinghenryv,1599\ncurtsy,1,kinghenryv,1599\nbeach,1,kinghenryv,1599\nAlexanders,1,kinghenryv,1599\nmass,1,kinghenryv,1599\nchien,1,kinghenryv,1599\nladders,1,kinghenryv,1599\norgans,1,kinghenryv,1599\nacquit,1,kinghenryv,1599\nmare,1,kinghenryv,1599\nAlexander's,1,kinghenryv,1599\nachievement,1,kinghenryv,1599\nbabbled,1,kinghenryv,1599\nranks,1,kinghenryv,1599\nincite,1,kinghenryv,1599\nvell,1,kinghenryv,1599\nSweats,1,kinghenryv,1599\npersuaded,1,kinghenryv,1599\nderivation,1,kinghenryv,1599\npenitence,1,kinghenryv,1599\nblot,1,kinghenryv,1599\nHonour,1,kinghenryv,1599\nachieve,1,kinghenryv,1599\nveil,1,kinghenryv,1599\nPresence,1,kinghenryv,1599\nquoth,1,kinghenryv,1599\ntradition,1,kinghenryv,1599\nploody,1,kinghenryv,1599\nripen,1,kinghenryv,1599\njudgments,1,kinghenryv,1599\nblow,1,kinghenryv,1599\nflatter,1,kinghenryv,1599\nstarved,1,kinghenryv,1599\nStiffen,1,kinghenryv,1599\nfertility,1,kinghenryv,1599\npainful,1,kinghenryv,1599\ndutiful,1,kinghenryv,1599\neke,1,kinghenryv,1599\nbeside,1,kinghenryv,1599\nenlarge,1,kinghenryv,1599\nvictorious,1,kinghenryv,1599\naddrest,1,kinghenryv,1599\nmaps,1,kinghenryv,1599\nbedlam,1,kinghenryv,1599\ndropping,1,kinghenryv,1599\ncraven,1,kinghenryv,1599\npashful,1,kinghenryv,1599\nseal'd,1,kinghenryv,1599\nbrethren,1,kinghenryv,1599\n'Te,1,kinghenryv,1599\nthreatening,1,kinghenryv,1599\nhigher,1,kinghenryv,1599\ncaptive,1,kinghenryv,1599\nperemptory,1,kinghenryv,1599\nuncorrected,1,kinghenryv,1599\ndonner,1,kinghenryv,1599\nnaught,1,kinghenryv,1599\ncursorary,1,kinghenryv,1599\nfantastically,1,kinghenryv,1599\nunnecessary,1,kinghenryv,1599\nborrow'd,1,kinghenryv,1599\nuttered,1,kinghenryv,1599\ngashes,1,kinghenryv,1599\nadventures,1,kinghenryv,1599\nBeing,1,kinghenryv,1599\npreposterously,1,kinghenryv,1599\nDescend,1,kinghenryv,1599\nchuck,1,kinghenryv,1599\none's,1,kinghenryv,1599\ntrouble,1,kinghenryv,1599\nfills,1,kinghenryv,1599\nQuestion,1,kinghenryv,1599\nRome,1,kinghenryv,1599\nGiving,1,kinghenryv,1599\nmockeries,1,kinghenryv,1599\nsand,1,kinghenryv,1599\nvapour,1,kinghenryv,1599\nsucks,1,kinghenryv,1599\nmaintain'd,1,kinghenryv,1599\nweb,1,kinghenryv,1599\ndesired,1,kinghenryv,1599\nIrishman,1,kinghenryv,1599\nstain,1,kinghenryv,1599\nbreff,1,kinghenryv,1599\ninland,1,kinghenryv,1599\nblindness,1,kinghenryv,1599\nmusters,1,kinghenryv,1599\nhorribly,1,kinghenryv,1599\nbehalf,1,kinghenryv,1599\nbubukles,1,kinghenryv,1599\ncette,1,kinghenryv,1599\nknavery,1,kinghenryv,1599\nCressy,1,kinghenryv,1599\nunletter'd,1,kinghenryv,1599\npause,1,kinghenryv,1599\nsuspicion,1,kinghenryv,1599\nslight,1,kinghenryv,1599\naffairs,1,kinghenryv,1599\nilbow,1,kinghenryv,1599\npassage,1,kinghenryv,1599\noccurrences,1,kinghenryv,1599\nJoin'd,1,kinghenryv,1599\nmarvellously,1,kinghenryv,1599\nopinion,1,kinghenryv,1599\nsemblable,1,kinghenryv,1599\ndisturb'd,1,kinghenryv,1599\nCharlemain,1,kinghenryv,1599\nservitude,1,kinghenryv,1599\nThey'll,1,kinghenryv,1599\nwrongs,1,kinghenryv,1599\nSalicam,1,kinghenryv,1599\nScotland,1,kinghenryv,1599\ncontemplation,1,kinghenryv,1599\nmerits,1,kinghenryv,1599\n'No,1,kinghenryv,1599\ndisputations,1,kinghenryv,1599\nInvesting,1,kinghenryv,1599\ncarefully,1,kinghenryv,1599\ntoday,1,kinghenryv,1599\nblushes,1,kinghenryv,1599\npomp,1,kinghenryv,1599\nReturns,1,kinghenryv,1599\nworshippers,1,kinghenryv,1599\nfits,1,kinghenryv,1599\nthrow,1,kinghenryv,1599\ngirded,1,kinghenryv,1599\nWitness,1,kinghenryv,1599\nDefy,1,kinghenryv,1599\nDishonour,1,kinghenryv,1599\ngoats,1,kinghenryv,1599\n'Le,1,kinghenryv,1599\ngrafters,1,kinghenryv,1599\nproposed,1,kinghenryv,1599\nvisits,1,kinghenryv,1599\nredemption,1,kinghenryv,1599\nbands,1,kinghenryv,1599\ncourt,1,kinghenryv,1599\ndefunct,1,kinghenryv,1599\nPerpend,1,kinghenryv,1599\ncure,1,kinghenryv,1599\nstrossers,1,kinghenryv,1599\nbawdy,1,kinghenryv,1599\nmartial,1,kinghenryv,1599\nbread,1,kinghenryv,1599\ncurs,1,kinghenryv,1599\nmeasured,1,kinghenryv,1599\nhappiness,1,kinghenryv,1599\nfetch'd,1,kinghenryv,1599\nTurkish,1,kinghenryv,1599\nadmonishing,1,kinghenryv,1599\nfetlock,1,kinghenryv,1599\nhammers,1,kinghenryv,1599\ngay,1,kinghenryv,1599\ngalling,1,kinghenryv,1599\nneanmoins,1,kinghenryv,1599\nenscheduled,1,kinghenryv,1599\nallegiance,1,kinghenryv,1599\nCadwallader,1,kinghenryv,1599\ncloset,1,kinghenryv,1599\nbestow'd,1,kinghenryv,1599\ndawning,1,kinghenryv,1599\nknaveries,1,kinghenryv,1599\nmagistrates,1,kinghenryv,1599\ncaptiv'd,1,kinghenryv,1599\nSaw,1,kinghenryv,1599\nprabbles',1,kinghenryv,1599\nfallow,1,kinghenryv,1599\nhoofs,1,kinghenryv,1599\nSure,1,kinghenryv,1599\nDesire,1,kinghenryv,1599\ngrosser,1,kinghenryv,1599\nchaces,1,kinghenryv,1599\nSubdued,1,kinghenryv,1599\nripe,1,kinghenryv,1599\npauca,1,kinghenryv,1599\nsutler,1,kinghenryv,1599\nAlarums,1,kinghenryv,1599\nostent,1,kinghenryv,1599\nstanding,1,kinghenryv,1599\ngrandsires,1,kinghenryv,1599\ndefeated,1,kinghenryv,1599\nDUKES,1,kinghenryv,1599\nThawing,1,kinghenryv,1599\nbuffet,1,kinghenryv,1599\ncrowding,1,kinghenryv,1599\n'England,1,kinghenryv,1599\nlicentious,1,kinghenryv,1599\ndifficile,1,kinghenryv,1599\nwidows,1,kinghenryv,1599\nsauf,1,kinghenryv,1599\nmusical,1,kinghenryv,1599\nhumility,1,kinghenryv,1599\nissued,1,kinghenryv,1599\nliked,1,kinghenryv,1599\nmails,1,kinghenryv,1599\n'We,1,kinghenryv,1599\ndust,1,kinghenryv,1599\n'The,1,kinghenryv,1599\nfrog,1,kinghenryv,1599\nprojection,1,kinghenryv,1599\narma,1,kinghenryv,1599\nmould,1,kinghenryv,1599\npoet,1,kinghenryv,1599\nable,1,kinghenryv,1599\ntuned,1,kinghenryv,1599\nmonarchies,1,kinghenryv,1599\nDefile,1,kinghenryv,1599\nprevail,1,kinghenryv,1599\nswarm,1,kinghenryv,1599\nreceive,1,kinghenryv,1599\nBreasting,1,kinghenryv,1599\nCrouch,1,kinghenryv,1599\n'To,1,kinghenryv,1599\nsubtly,1,kinghenryv,1599\nmorris,1,kinghenryv,1599\nprofitable,1,kinghenryv,1599\ngrowing,1,kinghenryv,1599\npody,1,kinghenryv,1599\nintent,1,kinghenryv,1599\nambition,1,kinghenryv,1599\nmains,1,kinghenryv,1599\ncommander,1,kinghenryv,1599\nsolemnly,1,kinghenryv,1599\nthreatens,1,kinghenryv,1599\nhidden,1,kinghenryv,1599\npowdering,1,kinghenryv,1599\nbleed,1,kinghenryv,1599\nlibertine,1,kinghenryv,1599\nintend,1,kinghenryv,1599\ngirdle,1,kinghenryv,1599\nwad,1,kinghenryv,1599\nenraged,1,kinghenryv,1599\narts,1,kinghenryv,1599\nthey'll,1,kinghenryv,1599\nvaultages,1,kinghenryv,1599\nPiercing,1,kinghenryv,1599\npride,1,kinghenryv,1599\ngalliard,1,kinghenryv,1599\nforward,1,kinghenryv,1599\ncrescive,1,kinghenryv,1599\nRex,1,kinghenryv,1599\nuncle's,1,kinghenryv,1599\nbedfellow,1,kinghenryv,1599\nends,1,kinghenryv,1599\ncovetous,1,kinghenryv,1599\nBRETAGNE,1,kinghenryv,1599\n'do,1,kinghenryv,1599\napace,1,kinghenryv,1599\nAttest,1,kinghenryv,1599\ndeclare,1,kinghenryv,1599\nproceeding,1,kinghenryv,1599\nmeilleur,1,kinghenryv,1599\nexhibiters,1,kinghenryv,1599\nPraised,1,kinghenryv,1599\nBlithild,1,kinghenryv,1599\nflowering,1,kinghenryv,1599\npounds,1,kinghenryv,1599\nmienne,1,kinghenryv,1599\npredecessor,1,kinghenryv,1599\nbounty,1,kinghenryv,1599\nrosed,1,kinghenryv,1599\nMonsieur,1,kinghenryv,1599\npredeceased,1,kinghenryv,1599\ndunghills,1,kinghenryv,1599\nUnpruned,1,kinghenryv,1599\nbelle,1,kinghenryv,1599\nenforced,1,kinghenryv,1599\nnotice,1,kinghenryv,1599\nreligiously,1,kinghenryv,1599\nShame,1,kinghenryv,1599\ninterception,1,kinghenryv,1599\nginger,1,kinghenryv,1599\ngrossly,1,kinghenryv,1599\nremercimens,1,kinghenryv,1599\ndiscover'd,1,kinghenryv,1599\nvulgar,1,kinghenryv,1599\nrequite,1,kinghenryv,1599\nserviteur,1,kinghenryv,1599\ngladly,1,kinghenryv,1599\nprompt,1,kinghenryv,1599\nagree,1,kinghenryv,1599\nplebeians,1,kinghenryv,1599\ndrone,1,kinghenryv,1599\nCraved,1,kinghenryv,1599\nrake,1,kinghenryv,1599\nthankfulness,1,kinghenryv,1599\nlangues,1,kinghenryv,1599\noblivion,1,kinghenryv,1599\nearthquake,1,kinghenryv,1599\njoints,1,kinghenryv,1599\ninsteep'd,1,kinghenryv,1599\nrages,1,kinghenryv,1599\nfallen,1,kinghenryv,1599\nprovident,1,kinghenryv,1599\nearthly,1,kinghenryv,1599\ndemonstrate,1,kinghenryv,1599\nrotten,1,kinghenryv,1599\nprologue,1,kinghenryv,1599\nstilly,1,kinghenryv,1599\ncharged,1,kinghenryv,1599\nprisoner's,1,kinghenryv,1599\nBig,1,kinghenryv,1599\nanger,1,kinghenryv,1599\nanges,1,kinghenryv,1599\nTavy's,1,kinghenryv,1599\nkilling,1,kinghenryv,1599\nlabour'd,1,kinghenryv,1599\nlute,1,kinghenryv,1599\ngunpowder,1,kinghenryv,1599\nwomb,1,kinghenryv,1599\nConstantinople,1,kinghenryv,1599\nlust,1,kinghenryv,1599\nsupply,1,kinghenryv,1599\nhaply,1,kinghenryv,1599\nimputation,1,kinghenryv,1599\nsweeps,1,kinghenryv,1599\nduly,1,kinghenryv,1599\nclocks,1,kinghenryv,1599\nwhistle,1,kinghenryv,1599\ndubb'd,1,kinghenryv,1599\nExcusez,1,kinghenryv,1599\noui,1,kinghenryv,1599\nyoke,1,kinghenryv,1599\nfilius,1,kinghenryv,1599\ninvoke,1,kinghenryv,1599\ngrain,1,kinghenryv,1599\nRush,1,kinghenryv,1599\nplumes,1,kinghenryv,1599\nfox,1,kinghenryv,1599\ndispatch's,1,kinghenryv,1599\nuttermost,1,kinghenryv,1599\ndroit,1,kinghenryv,1599\nauthors,1,kinghenryv,1599\nDeum,1,kinghenryv,1599\ncovet,1,kinghenryv,1599\nmince,1,kinghenryv,1599\nRoi,1,kinghenryv,1599\nfranchisement,1,kinghenryv,1599\nrawly,1,kinghenryv,1599\nShow,1,kinghenryv,1599\nneighs,1,kinghenryv,1599\nheirs,1,kinghenryv,1599\nsails,1,kinghenryv,1599\nprescript,1,kinghenryv,1599\nfais,1,kinghenryv,1599\ncreate,1,kinghenryv,1599\nwholesome,1,kinghenryv,1599\ndurst,1,kinghenryv,1599\nSwear,1,kinghenryv,1599\ntongueless,1,kinghenryv,1599\nfoughten,1,kinghenryv,1599\nbruise,1,kinghenryv,1599\njumping,1,kinghenryv,1599\n'like,1,kinghenryv,1599\nSweat,1,kinghenryv,1599\nciphers,1,kinghenryv,1599\ncloth,1,kinghenryv,1599\nmessengers,1,kinghenryv,1599\nGrapple,1,kinghenryv,1599\nweapons,1,kinghenryv,1599\npockets,1,kinghenryv,1599\ndoublet,1,kinghenryv,1599\nstolen,1,kinghenryv,1599\nPromised,1,kinghenryv,1599\nunited,1,kinghenryv,1599\ncares,1,kinghenryv,1599\nwilful,1,kinghenryv,1599\nconstancy,1,kinghenryv,1599\nwander,1,kinghenryv,1599\nShake,1,kinghenryv,1599\npromis,1,kinghenryv,1599\nanswers,1,kinghenryv,1599\nfortune,1,kinghenryv,1599\ncared,1,kinghenryv,1599\nConstant,1,kinghenryv,1599\nvaward,1,kinghenryv,1599\ngrand,1,kinghenryv,1599\nmulieres,1,kinghenryv,1599\nduck,1,kinghenryv,1599\npositive,1,kinghenryv,1599\nscorns,1,kinghenryv,1599\nworm,1,kinghenryv,1599\nCorrupting,1,kinghenryv,1599\ncapitaine,1,kinghenryv,1599\nthrew,1,kinghenryv,1599\ndo't,1,kinghenryv,1599\npassing,1,kinghenryv,1599\nvalourously,1,kinghenryv,1599\nclay,1,kinghenryv,1599\nfie,1,kinghenryv,1599\nfeared,1,kinghenryv,1599\nfig,1,kinghenryv,1599\npertain,1,kinghenryv,1599\nSweet,1,kinghenryv,1599\nExcellent,1,kinghenryv,1599\ngalls,1,kinghenryv,1599\nofficer,1,kinghenryv,1599\ngazing,1,kinghenryv,1599\nfilching,1,kinghenryv,1599\nreinforced,1,kinghenryv,1599\nperfect,1,kinghenryv,1599\nplayhouse,1,kinghenryv,1599\nwots,1,kinghenryv,1599\npleases,1,kinghenryv,1599\nhowsoever,1,kinghenryv,1599\nslobbery,1,kinghenryv,1599\nfils,1,kinghenryv,1599\ndalliance,1,kinghenryv,1599\nprogenitors,1,kinghenryv,1599\n'Couple,1,kinghenryv,1599\npunish'd,1,kinghenryv,1599\nclap,1,kinghenryv,1599\npreservation,1,kinghenryv,1599\ndemoiselle,1,kinghenryv,1599\nPrinting,1,kinghenryv,1599\nhorn,1,kinghenryv,1599\nmanaging,1,kinghenryv,1599\nmiscreate,1,kinghenryv,1599\nincorporate,1,kinghenryv,1599\nhose,1,kinghenryv,1599\nSteed,1,kinghenryv,1599\ntrescher,1,kinghenryv,1599\nspeculation,1,kinghenryv,1599\ndistemper,1,kinghenryv,1599\nthunder,1,kinghenryv,1599\nabreast,1,kinghenryv,1599\nshown,1,kinghenryv,1599\nBarbason,1,kinghenryv,1599\nworship,1,kinghenryv,1599\nextract,1,kinghenryv,1599\nIdly,1,kinghenryv,1599\nsurge,1,kinghenryv,1599\nbite,1,kinghenryv,1599\nPeasant,1,kinghenryv,1599\ndivers,1,kinghenryv,1599\ndivert,1,kinghenryv,1599\nunfold,1,kinghenryv,1599\nReceived,1,kinghenryv,1599\nlines,1,kinghenryv,1599\npoison'd,1,kinghenryv,1599\nfaculty,1,kinghenryv,1599\nLarding,1,kinghenryv,1599\naccomplishing,1,kinghenryv,1599\nbaisees,1,kinghenryv,1599\ndepart,1,kinghenryv,1599\nflexure,1,kinghenryv,1599\nbutcher,1,kinghenryv,1599\nperceive,1,kinghenryv,1599\nWork,1,kinghenryv,1599\nnamely,1,kinghenryv,1599\nclover,1,kinghenryv,1599\ntiddle,1,kinghenryv,1599\nfoaming,1,kinghenryv,1599\ndivest,1,kinghenryv,1599\ntike,1,kinghenryv,1599\nSuivez,1,kinghenryv,1599\nsenators,1,kinghenryv,1599\nbath,1,kinghenryv,1599\nUnfought,1,kinghenryv,1599\no'erswell,1,kinghenryv,1599\nlinstock,1,kinghenryv,1599\ndestroy'd,1,kinghenryv,1599\nmistful,1,kinghenryv,1599\nchevalier,1,kinghenryv,1599\nindignations,1,kinghenryv,1599\nTalbot,1,kinghenryv,1599\nFour,1,kinghenryv,1599\nreproach,1,kinghenryv,1599\nbird,1,kinghenryv,1599\nEmbark,1,kinghenryv,1599\nutility,1,kinghenryv,1599\nbreeder,1,kinghenryv,1599\nfaut,1,kinghenryv,1599\nstrikes,1,kinghenryv,1599\nthanked,1,kinghenryv,1599\nPardonnez,1,kinghenryv,1599\ndispraise,1,kinghenryv,1599\nmouth'd,1,kinghenryv,1599\nKnocks,1,kinghenryv,1599\nappointed,1,kinghenryv,1599\ncheerer,1,kinghenryv,1599\nhoof,1,kinghenryv,1599\nplainness,1,kinghenryv,1599\nvital,1,kinghenryv,1599\nhallow'd,1,kinghenryv,1599\nVery,1,kinghenryv,1599\nbalm,1,kinghenryv,1599\nmotive,1,kinghenryv,1599\nbounds,1,kinghenryv,1599\nweakness,1,kinghenryv,1599\ncareers,1,kinghenryv,1599\nsubjection,1,kinghenryv,1599\nrising,1,kinghenryv,1599\nfast,1,kinghenryv,1599\ncrush'd,1,kinghenryv,1599\nnamed,1,kinghenryv,1599\nEach,1,kinghenryv,1599\ndites,1,kinghenryv,1599\nsentences,1,kinghenryv,1599\nsurly,1,kinghenryv,1599\nspousal,1,kinghenryv,1599\ntrumpets,1,kinghenryv,1599\nlad,1,kinghenryv,1599\nInvites,1,kinghenryv,1599\no'erwhelm,1,kinghenryv,1599\ncoal,1,kinghenryv,1599\nCaesar,1,kinghenryv,1599\nSuits,1,kinghenryv,1599\ncomplaint,1,kinghenryv,1599\ntall,1,kinghenryv,1599\nLouvre,1,kinghenryv,1599\ndazzle,1,kinghenryv,1599\nwitchcraft,1,kinghenryv,1599\nkite,1,kinghenryv,1599\njurement,1,kinghenryv,1599\nfalsely,1,kinghenryv,1599\nHenri,1,kinghenryv,1599\ncup,1,kinghenryv,1599\nfresher,1,kinghenryv,1599\nAppear,1,kinghenryv,1599\nbrotherhood,1,kinghenryv,1599\ncue,1,kinghenryv,1599\nhatred,1,kinghenryv,1599\nconvey,1,kinghenryv,1599\nstroke,1,kinghenryv,1599\nperish,1,kinghenryv,1599\njests,1,kinghenryv,1599\nTrust,1,kinghenryv,1599\nwatchful,1,kinghenryv,1599\nrefresh,1,kinghenryv,1599\nholes,1,kinghenryv,1599\nd'apprendre,1,kinghenryv,1599\nreproof,1,kinghenryv,1599\nasunder,1,kinghenryv,1599\nRather,1,kinghenryv,1599\nrapier,1,kinghenryv,1599\ngreets,1,kinghenryv,1599\nstrawberry,1,kinghenryv,1599\nEvery,1,kinghenryv,1599\nbeshrew,1,kinghenryv,1599\naccomplishment,1,kinghenryv,1599\njutty,1,kinghenryv,1599\nholds,1,kinghenryv,1599\nshore,1,kinghenryv,1599\nmercenaries,1,kinghenryv,1599\ncondemnation,1,kinghenryv,1599\nCanterbury,1,kinghenryv,1599\nPride,1,kinghenryv,1599\nDen,1,kinghenryv,1599\ndemonstrative,1,kinghenryv,1599\nNone,1,kinghenryv,1599\nfertile,1,kinghenryv,1599\nhole,1,kinghenryv,1599\nQualtitie,1,kinghenryv,1599\ngreyhounds,1,kinghenryv,1599\ndozen,1,kinghenryv,1599\nsciences,1,kinghenryv,1599\npetter,1,kinghenryv,1599\ntemper'd,1,kinghenryv,1599\nproclaimed,1,kinghenryv,1599\ndevout,1,kinghenryv,1599\nfamine,1,kinghenryv,1599\nLives,1,kinghenryv,1599\nclosing,1,kinghenryv,1599\nunwind,1,kinghenryv,1599\ngaping,1,kinghenryv,1599\nvariation,1,kinghenryv,1599\nhonest,1,kinghenryv,1599\nBrass,1,kinghenryv,1599\nswashers,1,kinghenryv,1599\nsuccors,1,kinghenryv,1599\nfires,1,kinghenryv,1599\nschools,1,kinghenryv,1599\nfamily,1,kinghenryv,1599\nrequest,1,kinghenryv,1599\nVia,1,kinghenryv,1599\nloyal,1,kinghenryv,1599\nrevolt,1,kinghenryv,1599\npaved,1,kinghenryv,1599\nmurdering,1,kinghenryv,1599\nliteratured,1,kinghenryv,1599\ncalmie,1,kinghenryv,1599\nBates,1,kinghenryv,1599\nfronts,1,kinghenryv,1599\nparticularities,1,kinghenryv,1599\nArrest,1,kinghenryv,1599\nwinter,1,kinghenryv,1599\ninvade,1,kinghenryv,1599\ncommonwealth,1,kinghenryv,1599\nvoutsafe,1,kinghenryv,1599\nresolution,1,kinghenryv,1599\nsodden,1,kinghenryv,1599\nsubscribed,1,kinghenryv,1599\nslanders,1,kinghenryv,1599\nAwake,1,kinghenryv,1599\ncounsels,1,kinghenryv,1599\nBlackheath,1,kinghenryv,1599\nbuilding,1,kinghenryv,1599\nlegions,1,kinghenryv,1599\ncholer,1,kinghenryv,1599\nnotwithstanding,1,kinghenryv,1599\nprofits,1,kinghenryv,1599\ngaited,1,kinghenryv,1599\nconvenient,1,kinghenryv,1599\nIngrateful,1,kinghenryv,1599\nmeditate,1,kinghenryv,1599\nHaeres,1,kinghenryv,1599\nbungle,1,kinghenryv,1599\nrobes,1,kinghenryv,1599\nsatisfied,1,kinghenryv,1599\nlungs,1,kinghenryv,1599\nO'erglanced,1,kinghenryv,1599\nplodded,1,kinghenryv,1599\nseas,1,kinghenryv,1599\nhairs,1,kinghenryv,1599\nfourteen,1,kinghenryv,1599\nalong,1,kinghenryv,1599\nplay'st,1,kinghenryv,1599\ncheerful,1,kinghenryv,1599\nelements,1,kinghenryv,1599\nfickle,1,kinghenryv,1599\ncopy,1,kinghenryv,1599\ncool,1,kinghenryv,1599\ncook,1,kinghenryv,1599\npudding,1,kinghenryv,1599\nalways,1,kinghenryv,1599\nneglected,1,kinghenryv,1599\nfavour'd,1,kinghenryv,1599\nbachelor,1,kinghenryv,1599\nexamples,1,kinghenryv,1599\neyed,1,kinghenryv,1599\nugly,1,kinghenryv,1599\nacts,1,kinghenryv,1599\ndrunk,1,kinghenryv,1599\nexampled,1,kinghenryv,1599\nenseigne,1,kinghenryv,1599\nsuits,1,kinghenryv,1599\nthereto,1,kinghenryv,1599\ngoodness,1,kinghenryv,1599\nSeem,1,kinghenryv,1599\npronounced,1,kinghenryv,1599\nheralds,1,kinghenryv,1599\naught,1,kinghenryv,1599\ntrots,1,kinghenryv,1599\nseed,1,kinghenryv,1599\nfeathers,1,kinghenryv,1599\nfights,1,kinghenryv,1599\nGovernor,1,kinghenryv,1599\npuppy,1,kinghenryv,1599\nJesu,1,kinghenryv,1599\nTombless,1,kinghenryv,1599\npredecessors,1,kinghenryv,1599\ncon,1,kinghenryv,1599\nhounds,1,kinghenryv,1599\near'd,1,kinghenryv,1599\nlowliness,1,kinghenryv,1599\npoys,1,kinghenryv,1599\ntrespass,1,kinghenryv,1599\nsupposed,1,kinghenryv,1599\nsports,1,kinghenryv,1599\nLie,1,kinghenryv,1599\nComest,1,kinghenryv,1599\nmarvellous,1,kinghenryv,1599\nNews,1,kinghenryv,1599\ncamest,1,kinghenryv,1599\narrows,1,kinghenryv,1599\nHerod's,1,kinghenryv,1599\ngreenly,1,kinghenryv,1599\ndivorce,1,kinghenryv,1599\nThames,1,kinghenryv,1599\nburned,1,kinghenryv,1599\ntells,1,kinghenryv,1599\nsteep'd,1,kinghenryv,1599\nhandkerchers,1,kinghenryv,1599\ncost,1,kinghenryv,1599\nburnet,1,kinghenryv,1599\nurn,1,kinghenryv,1599\nBERRI,1,kinghenryv,1599\ncramm'd,1,kinghenryv,1599\nhound,1,kinghenryv,1599\nTrue,1,kinghenryv,1599\n'Sblood,1,kinghenryv,1599\nberries,1,kinghenryv,1599\nhaggled,1,kinghenryv,1599\nestimation,1,kinghenryv,1599\nMarle,1,kinghenryv,1599\nassailed,1,kinghenryv,1599\nCHARLES,1,kinghenryv,1599\nvassals,1,kinghenryv,1599\nthrust,1,kinghenryv,1599\nfluent,1,kinghenryv,1599\nespoused,1,kinghenryv,1599\nsacred,1,kinghenryv,1599\nowing,1,kinghenryv,1599\nMangle,1,kinghenryv,1599\nbasilisks,1,kinghenryv,1599\nwidows',1,kinghenryv,1599\nGentlemen,1,kinghenryv,1599\ncord,1,kinghenryv,1599\ncouper,1,kinghenryv,1599\nWhitsun,1,kinghenryv,1599\nties,1,kinghenryv,1599\naffright,1,kinghenryv,1599\navoid,1,kinghenryv,1599\nfathers',1,kinghenryv,1599\nbriefly,1,kinghenryv,1599\nvomissement,1,kinghenryv,1599\navez,1,kinghenryv,1599\nnights,1,kinghenryv,1599\nloyalty,1,kinghenryv,1599\ndownright,1,kinghenryv,1599\nKnow,1,kinghenryv,1599\nDeliver,1,kinghenryv,1599\ntherein,1,kinghenryv,1599\nmillion,1,kinghenryv,1599\ntrembled,1,kinghenryv,1599\nkindred,1,kinghenryv,1599\nUse,1,kinghenryv,1599\nport,1,kinghenryv,1599\nSend,1,kinghenryv,1599\n'There,1,kinghenryv,1599\ncents,1,kinghenryv,1599\nlovers,1,kinghenryv,1599\nvoudrais,1,kinghenryv,1599\necolier,1,kinghenryv,1599\nsecure,1,kinghenryv,1599\nces,1,kinghenryv,1599\nHeralds,1,kinghenryv,1599\nenrich'd,1,kinghenryv,1599\naccording,1,kinghenryv,1599\nmirror,1,kinghenryv,1599\nexceptions,1,kinghenryv,1599\nexcellence,1,kinghenryv,1599\nindirectly,1,kinghenryv,1599\nCry,1,kinghenryv,1599\ncoursing,1,kinghenryv,1599\nJust,1,kinghenryv,1599\nnutmeg,1,kinghenryv,1599\ncorruptible,1,kinghenryv,1599\nball,1,kinghenryv,1599\npost,1,kinghenryv,1599\ncases,1,kinghenryv,1599\nbankrupt,1,kinghenryv,1599\nbald,1,kinghenryv,1599\nleg,1,kinghenryv,1599\nbleeding,1,kinghenryv,1599\nfuries,1,kinghenryv,1599\nled,1,kinghenryv,1599\nfearfully,1,kinghenryv,1599\nsould,1,kinghenryv,1599\nroaring,1,kinghenryv,1599\nnakedness,1,kinghenryv,1599\nghosts,1,kinghenryv,1599\ntrusting,1,kinghenryv,1599\nSelf,1,kinghenryv,1599\nabounding,1,kinghenryv,1599\nnurse,1,kinghenryv,1599\nAdmit,1,kinghenryv,1599\nslough,1,kinghenryv,1599\nbetrothed,1,kinghenryv,1599\nchristom,1,kinghenryv,1599\ndeceive,1,kinghenryv,1599\ngreener,1,kinghenryv,1599\ncontrariously,1,kinghenryv,1599\nhowl,1,kinghenryv,1599\n'These,1,kinghenryv,1599\nDefective,1,kinghenryv,1599\nfearing,1,kinghenryv,1599\nFollowing,1,kinghenryv,1599\nmatch,1,kinghenryv,1599\ngloze,1,kinghenryv,1599\ngarter,1,kinghenryv,1599\nblast,1,kinghenryv,1599\nsmirch'd,1,kinghenryv,1599\nappeles,1,kinghenryv,1599\nMarch,1,kinghenryv,1599\nAscribe,1,kinghenryv,1599\nappelee,1,kinghenryv,1599\nmethought,1,kinghenryv,1599\nbonnet,1,kinghenryv,1599\nMistress,1,kinghenryv,1599\n'Harry,1,kinghenryv,1599\nattaint,1,kinghenryv,1599\nbeginnings,1,kinghenryv,1599\nBelzebub,1,kinghenryv,1599\nlip,1,kinghenryv,1599\nderacinate,1,kinghenryv,1599\nLob,1,kinghenryv,1599\nappelons,1,kinghenryv,1599\ninstead,1,kinghenryv,1599\nchanced,1,kinghenryv,1599\nlig,1,kinghenryv,1599\nAthwart,1,kinghenryv,1599\nmerchandise,1,kinghenryv,1599\nTwo,1,kinghenryv,1599\nfavouredly,1,kinghenryv,1599\nRuling,1,kinghenryv,1599\nFire,1,kinghenryv,1599\nthread,1,kinghenryv,1599\nbrow,1,kinghenryv,1599\ntorch,1,kinghenryv,1599\ntrod,1,kinghenryv,1599\nchoke,1,kinghenryv,1599\niniquities,1,kinghenryv,1599\nNothing,1,kinghenryv,1599\neffects,1,kinghenryv,1599\nuniverse,1,kinghenryv,1599\ntrop,1,kinghenryv,1599\npersuade,1,kinghenryv,1599\nsympathize,1,kinghenryv,1599\nForage,1,kinghenryv,1599\nmeasuring,1,kinghenryv,1599\nunhidden,1,kinghenryv,1599\nunguarded,1,kinghenryv,1599\nrheumatic,1,kinghenryv,1599\nmad,1,kinghenryv,1599\nwrite,1,kinghenryv,1599\naggrieved,1,kinghenryv,1599\nportage,1,kinghenryv,1599\nCheerly,1,kinghenryv,1599\nmaw,1,kinghenryv,1599\nwearing,1,kinghenryv,1599\n'Pitch,1,kinghenryv,1599\nprenez,1,kinghenryv,1599\ntertian,1,kinghenryv,1599\npeat,1,kinghenryv,1599\nappertinents,1,kinghenryv,1599\nsounded,1,kinghenryv,1599\nstarts,1,kinghenryv,1599\nperjury,1,kinghenryv,1599\nprivates,1,kinghenryv,1599\nlazy,1,kinghenryv,1599\nslomber,1,kinghenryv,1599\npear,1,kinghenryv,1599\nguts,1,kinghenryv,1599\nGave,1,kinghenryv,1599\ncareful,1,kinghenryv,1599\ndial's,1,kinghenryv,1599\nEnlarge,1,kinghenryv,1599\nmercenary,1,kinghenryv,1599\nafeard,1,kinghenryv,1599\number'd,1,kinghenryv,1599\nconduct,1,kinghenryv,1599\nRipe,1,kinghenryv,1599\nPepin,1,kinghenryv,1599\nrheum,1,kinghenryv,1599\npibble,1,kinghenryv,1599\nconsequence,1,kinghenryv,1599\nsmiling,1,kinghenryv,1599\nFoolish,1,kinghenryv,1599\nbegins,1,kinghenryv,1599\ndoing,1,kinghenryv,1599\nunraised,1,kinghenryv,1599\nratify,1,kinghenryv,1599\nimpious,1,kinghenryv,1599\nheaded,1,kinghenryv,1599\nmes,1,kinghenryv,1599\ntrim,1,kinghenryv,1599\nfierceness,1,kinghenryv,1599\ndefendant,1,kinghenryv,1599\ntreacherous,1,kinghenryv,1599\nmaker,1,kinghenryv,1599\ncusture,1,kinghenryv,1599\nEPILOGUE,1,kinghenryv,1599\nbottoms,1,kinghenryv,1599\nreformation,1,kinghenryv,1599\nemployment,1,kinghenryv,1599\nstreet,1,kinghenryv,1599\ndetermine,1,kinghenryv,1599\ngraciously,1,kinghenryv,1599\nspiritual,1,kinghenryv,1599\nscornfully,1,kinghenryv,1599\nfurtherance,1,kinghenryv,1599\nExcept,1,kinghenryv,1599\nDoll,1,kinghenryv,1599\nbullet's,1,kinghenryv,1599\nforcing,1,kinghenryv,1599\ntoast,1,kinghenryv,1599\nthinking,1,kinghenryv,1599\nincision,1,kinghenryv,1599\nAway,1,kinghenryv,1599\ndiable,1,kinghenryv,1599\nsolus,1,kinghenryv,1599\npunishment,1,kinghenryv,1599\nwound,1,kinghenryv,1599\nclaiming,1,kinghenryv,1599\nd'honneur,1,kinghenryv,1599\nimpawn,1,kinghenryv,1599\nAinsi,1,kinghenryv,1599\nhorsemanship,1,kinghenryv,1599\nwilder,1,kinghenryv,1599\nhenceforth,1,kinghenryv,1599\nbanner,1,kinghenryv,1599\nfallows,1,kinghenryv,1599\nfurrow'd,1,kinghenryv,1599\nmourning,1,kinghenryv,1599\nvalorous,1,kinghenryv,1599\nappearing,1,kinghenryv,1599\nlark,1,kinghenryv,1599\nGerman,1,kinghenryv,1599\nthereupon,1,kinghenryv,1599\ndarnel,1,kinghenryv,1599\ngleaned,1,kinghenryv,1599\nfever,1,kinghenryv,1599\ngull,1,kinghenryv,1599\nRussian,1,kinghenryv,1599\nincessant,1,kinghenryv,1599\nqu'ils,1,kinghenryv,1599\nniggardly,1,kinghenryv,1599\nplucks,1,kinghenryv,1599\nflat,1,kinghenryv,1599\nfasting,1,kinghenryv,1599\nvitement,1,kinghenryv,1599\nflag,1,kinghenryv,1599\ntun,1,kinghenryv,1599\nthither,1,kinghenryv,1599\nwarming,1,kinghenryv,1599\ntub,1,kinghenryv,1599\nsheathe,1,kinghenryv,1599\nvirtue,1,kinghenryv,1599\njack,1,kinghenryv,1599\nlodgers,1,kinghenryv,1599\nEat,1,kinghenryv,1599\nmuffler,1,kinghenryv,1599\nsleeping,1,kinghenryv,1599\ncompel,1,kinghenryv,1599\nMercuries,1,kinghenryv,1599\nFifth,1,kinghenryv,1599\nseemed,1,kinghenryv,1599\nfright,1,kinghenryv,1599\npeer,1,kinghenryv,1599\nEastcheap,1,kinghenryv,1599\njade,1,kinghenryv,1599\nviolation,1,kinghenryv,1599\nsilver,1,kinghenryv,1599\nlazar,1,kinghenryv,1599\nurging,1,kinghenryv,1599\nlist,1,kinghenryv,1599\nhuman,1,kinghenryv,1599\nlevied,1,kinghenryv,1599\nhurt,1,kinghenryv,1599\nopportunity,1,kinghenryv,1599\ndivinity,1,kinghenryv,1599\nprawls,1,kinghenryv,1599\nvillages,1,kinghenryv,1599\nblessedly,1,kinghenryv,1599\nstrange,1,kinghenryv,1599\nLend,1,kinghenryv,1599\nvenge,1,kinghenryv,1599\nPhilip,1,kinghenryv,1599\nexhale,1,kinghenryv,1599\ncontend,1,kinghenryv,1599\nbridled,1,kinghenryv,1599\nfollow'd,1,kinghenryv,1599\nentreats,1,kinghenryv,1599\ntediously,1,kinghenryv,1599\nmajestee,1,kinghenryv,1599\nleading,1,kinghenryv,1599\nsimply,1,kinghenryv,1599\nshade,1,kinghenryv,1599\nretourne,1,kinghenryv,1599\ntry,1,kinghenryv,1599\ntransported,1,kinghenryv,1599\nwildly,1,kinghenryv,1599\nfrank,1,kinghenryv,1599\nsentinels,1,kinghenryv,1599\nsimple,1,kinghenryv,1599\nsentence,1,kinghenryv,1599\n'This,1,kinghenryv,1599\nHyperion,1,kinghenryv,1599\nspring,1,kinghenryv,1599\npioneers,1,kinghenryv,1599\ntardy,1,kinghenryv,1599\nincarnate,1,kinghenryv,1599\npere,1,kinghenryv,1599\nwidow,1,kinghenryv,1599\nMoy,1,kinghenryv,1599\ndenying,1,kinghenryv,1599\nBite,1,kinghenryv,1599\npayment,1,kinghenryv,1599\nimposed,1,kinghenryv,1599\nbrag,1,kinghenryv,1599\nMount,1,kinghenryv,1599\nrespect,1,kinghenryv,1599\nqualmish,1,kinghenryv,1599\nunprofitable,1,kinghenryv,1599\ncentre,1,kinghenryv,1599\ntheoric,1,kinghenryv,1599\nscanting,1,kinghenryv,1599\nsavages,1,kinghenryv,1599\ndark,1,kinghenryv,1599\nhonour's,1,kinghenryv,1599\nGracious,1,kinghenryv,1599\nDisorder,1,kinghenryv,1599\nprecepts,1,kinghenryv,1599\nDie,1,kinghenryv,1599\nweigh,1,kinghenryv,1599\nabridgment,1,kinghenryv,1599\nHowbeit,1,kinghenryv,1599\ndub,1,kinghenryv,1599\nliquor,1,kinghenryv,1599\ntoe,1,kinghenryv,1599\ncholers,1,kinghenryv,1599\nprelate,1,kinghenryv,1599\nstratagem,1,kinghenryv,1599\nHe's,1,kinghenryv,1599\nmervailous,1,kinghenryv,1599\nweighs,1,kinghenryv,1599\nlank,1,kinghenryv,1599\nhumbler,1,kinghenryv,1599\ndispatch,1,kinghenryv,1599\nAlencon's,1,kinghenryv,1599\nhotly,1,kinghenryv,1599\nlamb,1,kinghenryv,1599\nreverend,1,kinghenryv,1599\novershot,1,kinghenryv,1599\npromptement,1,kinghenryv,1599\nservest,1,kinghenryv,1599\nemperor's,1,kinghenryv,1599\nDRAMATIS,1,kinghenryv,1599\nchariot,1,kinghenryv,1599\nshift,1,kinghenryv,1599\ngored,1,kinghenryv,1599\nsinister,1,kinghenryv,1599\nvenom,1,kinghenryv,1599\ndemoiselles,1,kinghenryv,1599\ntemps,1,kinghenryv,1599\ntip,1,kinghenryv,1599\nTouch,1,kinghenryv,1599\nfilthy,1,kinghenryv,1599\nvacant,1,kinghenryv,1599\nflower,1,kinghenryv,1599\nDesires,1,kinghenryv,1599\ntreasuries,1,kinghenryv,1599\nusurper,1,kinghenryv,1599\nawkward,1,kinghenryv,1599\nlargess,1,kinghenryv,1599\nbilbow,1,kinghenryv,1599\npromised'st,1,kinghenryv,1599\nLeft,1,kinghenryv,1599\nentreated,1,kinghenryv,1599\ncakes,1,kinghenryv,1599\nmeeter,1,kinghenryv,1599\ntired,1,kinghenryv,1599\nwills,1,kinghenryv,1599\nfrail,1,kinghenryv,1599\nascend,1,kinghenryv,1599\nRide,1,kinghenryv,1599\ncross,1,kinghenryv,1599\n'Praise,1,kinghenryv,1599\nmaison,1,kinghenryv,1599\nattest,1,kinghenryv,1599\nunwish'd,1,kinghenryv,1599\nstings,1,kinghenryv,1599\n'How,1,kinghenryv,1599\ndrown'd,1,kinghenryv,1599\nFair,1,kinghenryv,1599\nPRINCESS,1,kinghenryv,1599\nJacksauce,1,kinghenryv,1599\nden,1,kinghenryv,1599\narbitrement,1,kinghenryv,1599\nRien,1,kinghenryv,1599\nbrim,1,kinghenryv,1599\njealousy,1,kinghenryv,1599\nspeaker,1,kinghenryv,1599\ngloves,1,kinghenryv,1599\nawake,1,kinghenryv,1599\nstomachs,1,kinghenryv,1599\ncontre,1,kinghenryv,1599\nSaying,1,kinghenryv,1599\nEdward's,1,kinghenryv,1599\namen,1,kinghenryv,1599\nexchequer,1,kinghenryv,1599\nhaunted,1,kinghenryv,1599\ncharity,1,kinghenryv,1599\nOpens,1,kinghenryv,1599\nwoman,1,kinghenryv,1599\ndinners,1,kinghenryv,1599\ndoting,1,kinghenryv,1599\nsneaking,1,kinghenryv,1599\nrepair,1,kinghenryv,1599\nparler,1,kinghenryv,1599\nparles,1,kinghenryv,1599\nFind,1,kinghenryv,1599\nparlez,1,kinghenryv,1599\nobedience,1,kinghenryv,1599\nCressid's,1,kinghenryv,1599\navaunt,1,kinghenryv,1599\nshape,1,kinghenryv,1599\ncontaminated,1,kinghenryv,1599\ntread,1,kinghenryv,1599\nAgamemnon,1,kinghenryv,1599\ncoin'd,1,kinghenryv,1599\nwomby,1,kinghenryv,1599\nperhaps,1,kinghenryv,1599\nsuffocate,1,kinghenryv,1599\ndirection,1,kinghenryv,1599\ncrows,1,kinghenryv,1599\nUnfold,1,kinghenryv,1599\nsands,1,kinghenryv,1599\nwilfulness,1,kinghenryv,1599\nMICHAEL,1,kinghenryv,1599\ndis,1,kinghenryv,1599\ndeesse,1,kinghenryv,1599\nturn'd,1,kinghenryv,1599\nusurped,1,kinghenryv,1599\nHolding,1,kinghenryv,1599\ninheritrix,1,kinghenryv,1599\nnostril,1,kinghenryv,1599\nconjecture,1,kinghenryv,1599\nendings,1,kinghenryv,1599\nvanish'd,1,kinghenryv,1599\nTut,1,kinghenryv,1599\nmonsters,1,kinghenryv,1599\nshock,1,kinghenryv,1599\nterram,1,kinghenryv,1599\nservant's,1,kinghenryv,1599\nremembered,1,kinghenryv,1599\nbeaver,1,kinghenryv,1599\nJOHN,1,kinghenryv,1599\ndaughters,1,kinghenryv,1599\nheroical,1,kinghenryv,1599\nsilken,2,kinghenryv,1599\nbonne,2,kinghenryv,1599\nvillany,2,kinghenryv,1599\nlusty,2,kinghenryv,1599\nimaginary,2,kinghenryv,1599\nongles,2,kinghenryv,1599\ndebts,2,kinghenryv,1599\nsmiled,2,kinghenryv,1599\npity,2,kinghenryv,1599\nconfused,2,kinghenryv,1599\ndigested,2,kinghenryv,1599\nCleitus,2,kinghenryv,1599\nLORD,2,kinghenryv,1599\ndames,2,kinghenryv,1599\ndarest,2,kinghenryv,1599\nmotion,2,kinghenryv,1599\nguilt,2,kinghenryv,1599\napprehend,2,kinghenryv,1599\nweary,2,kinghenryv,1599\nwrit,2,kinghenryv,1599\nbusiness,2,kinghenryv,1599\ntreasure,2,kinghenryv,1599\nPish,2,kinghenryv,1599\nalike,2,kinghenryv,1599\nneighbours,2,kinghenryv,1599\npeasant,2,kinghenryv,1599\nconvoy,2,kinghenryv,1599\nadvantage,2,kinghenryv,1599\nwooden,2,kinghenryv,1599\ndagger,2,kinghenryv,1599\necus,2,kinghenryv,1599\nrode,2,kinghenryv,1599\nhaste,2,kinghenryv,1599\nvillage,2,kinghenryv,1599\nassured,2,kinghenryv,1599\nrobe,2,kinghenryv,1599\npatches,2,kinghenryv,1599\nbranch,2,kinghenryv,1599\nhighness',2,kinghenryv,1599\njoy,2,kinghenryv,1599\ndrowsy,2,kinghenryv,1599\neight,2,kinghenryv,1599\nimitate,2,kinghenryv,1599\nlodging,2,kinghenryv,1599\nCitizens,2,kinghenryv,1599\nEither,2,kinghenryv,1599\nBlack,2,kinghenryv,1599\nprisoner,2,kinghenryv,1599\nfury,2,kinghenryv,1599\ndrink,2,kinghenryv,1599\nappeal,2,kinghenryv,1599\nlaugh,2,kinghenryv,1599\nprey,2,kinghenryv,1599\nterrible,2,kinghenryv,1599\nWye,2,kinghenryv,1599\nodds,2,kinghenryv,1599\nsore,2,kinghenryv,1599\nremain,2,kinghenryv,1599\nscambling,2,kinghenryv,1599\nbowels,2,kinghenryv,1599\ngentilhomme,2,kinghenryv,1599\nwounded,2,kinghenryv,1599\nearls,2,kinghenryv,1599\ncheeks,2,kinghenryv,1599\ndemand,2,kinghenryv,1599\nmute,2,kinghenryv,1599\nvary,2,kinghenryv,1599\nrub,2,kinghenryv,1599\ncase,2,kinghenryv,1599\nbattles,2,kinghenryv,1599\nRichard's,2,kinghenryv,1599\nsong,2,kinghenryv,1599\ncoffers,2,kinghenryv,1599\nOnce,2,kinghenryv,1599\nScots,2,kinghenryv,1599\nPoor,2,kinghenryv,1599\nchin,2,kinghenryv,1599\nbending,2,kinghenryv,1599\npractises,2,kinghenryv,1599\ninconstant,2,kinghenryv,1599\nfeather,2,kinghenryv,1599\nsole,2,kinghenryv,1599\nbearing,2,kinghenryv,1599\nyearn,2,kinghenryv,1599\ndance,2,kinghenryv,1599\noutside,2,kinghenryv,1599\ngrows,2,kinghenryv,1599\nJove,2,kinghenryv,1599\nsa',2,kinghenryv,1599\nAn't,2,kinghenryv,1599\ninjury,2,kinghenryv,1599\nKeep,2,kinghenryv,1599\npurse,2,kinghenryv,1599\nheat,2,kinghenryv,1599\nheal,2,kinghenryv,1599\ntoward,2,kinghenryv,1599\nyearly,2,kinghenryv,1599\nhearing,2,kinghenryv,1599\nfingers,2,kinghenryv,1599\ngolden,2,kinghenryv,1599\npaper,2,kinghenryv,1599\nbreaks,2,kinghenryv,1599\npipe,2,kinghenryv,1599\nglass,2,kinghenryv,1599\nmaking,2,kinghenryv,1599\nlikeness,2,kinghenryv,1599\nshrewdly,2,kinghenryv,1599\ncomplexion,2,kinghenryv,1599\nfurious,2,kinghenryv,1599\nsomething,2,kinghenryv,1599\ncities,2,kinghenryv,1599\ntowns,2,kinghenryv,1599\nocean,2,kinghenryv,1599\nsix,2,kinghenryv,1599\nexecution,2,kinghenryv,1599\nhereafter,2,kinghenryv,1599\nclergy,2,kinghenryv,1599\nhistory,2,kinghenryv,1599\nperdu,2,kinghenryv,1599\nLorraine,2,kinghenryv,1599\nsender,2,kinghenryv,1599\nmaidens,2,kinghenryv,1599\nBeyond,2,kinghenryv,1599\nfleet,2,kinghenryv,1599\nourself,2,kinghenryv,1599\nCrispin's,2,kinghenryv,1599\n'A,2,kinghenryv,1599\nwalk,2,kinghenryv,1599\nwall,2,kinghenryv,1599\nshrill,2,kinghenryv,1599\nslaughter,2,kinghenryv,1599\ntouches,2,kinghenryv,1599\nfell,2,kinghenryv,1599\nC'est,2,kinghenryv,1599\nvraiment,2,kinghenryv,1599\nknives,2,kinghenryv,1599\nfrosty,2,kinghenryv,1599\nfamed,2,kinghenryv,1599\n'I,2,kinghenryv,1599\ntestament,2,kinghenryv,1599\nstudy,2,kinghenryv,1599\nwings,2,kinghenryv,1599\nThanks,2,kinghenryv,1599\npieces,2,kinghenryv,1599\nsends,2,kinghenryv,1599\nsavour,2,kinghenryv,1599\nindifferent,2,kinghenryv,1599\nRoussi,2,kinghenryv,1599\nswelling,2,kinghenryv,1599\nworst,2,kinghenryv,1599\nfelt,2,kinghenryv,1599\nBeaumont,2,kinghenryv,1599\nCornish,2,kinghenryv,1599\nturning,2,kinghenryv,1599\nconfounded,2,kinghenryv,1599\nchased,2,kinghenryv,1599\nOfficers,2,kinghenryv,1599\nrhyme,2,kinghenryv,1599\nrepentance,2,kinghenryv,1599\ncivil,2,kinghenryv,1599\nabsence,2,kinghenryv,1599\nbeggarly,2,kinghenryv,1599\nfruit,2,kinghenryv,1599\nwilling,2,kinghenryv,1599\nworthy,2,kinghenryv,1599\nWherein,2,kinghenryv,1599\ncries,2,kinghenryv,1599\nelder,2,kinghenryv,1599\nsur,2,kinghenryv,1599\nfeel,2,kinghenryv,1599\nfeet,2,kinghenryv,1599\nvaliantly,2,kinghenryv,1599\nsauce,2,kinghenryv,1599\ninfinite,2,kinghenryv,1599\nhumbly,2,kinghenryv,1599\nneighbourhood,2,kinghenryv,1599\nOld,2,kinghenryv,1599\nwine,2,kinghenryv,1599\nwing,2,kinghenryv,1599\nlion's,2,kinghenryv,1599\nspital,2,kinghenryv,1599\nlatter,2,kinghenryv,1599\nmirth,2,kinghenryv,1599\nknees,2,kinghenryv,1599\nexpressly,2,kinghenryv,1599\nOne,2,kinghenryv,1599\nEcoutez,2,kinghenryv,1599\nedge,2,kinghenryv,1599\nferret,2,kinghenryv,1599\nquand,2,kinghenryv,1599\nturned,2,kinghenryv,1599\nsucceed,2,kinghenryv,1599\nsense,2,kinghenryv,1599\npretty,2,kinghenryv,1599\ndice,2,kinghenryv,1599\ncunning,2,kinghenryv,1599\nwash,2,kinghenryv,1599\nTurning,2,kinghenryv,1599\nsteel,2,kinghenryv,1599\ncoats,2,kinghenryv,1599\nLadies,2,kinghenryv,1599\ncreeping,2,kinghenryv,1599\nmanly,2,kinghenryv,1599\nEnglishmen,2,kinghenryv,1599\nspoke,2,kinghenryv,1599\nsceptre,2,kinghenryv,1599\nfois,2,kinghenryv,1599\nconditions,2,kinghenryv,1599\naspect,2,kinghenryv,1599\nDaughter,2,kinghenryv,1599\nbitter,2,kinghenryv,1599\nsenses,2,kinghenryv,1599\nFaith,2,kinghenryv,1599\ncontrived,2,kinghenryv,1599\ncudgel,2,kinghenryv,1599\nmanners,2,kinghenryv,1599\nmortality,2,kinghenryv,1599\nstrongly,2,kinghenryv,1599\nHold,2,kinghenryv,1599\naboard,2,kinghenryv,1599\nWhile,2,kinghenryv,1599\nJamy,2,kinghenryv,1599\nAt,2,kinghenryv,1599\ngranted,2,kinghenryv,1599\npas,2,kinghenryv,1599\npax,2,kinghenryv,1599\nFoix,2,kinghenryv,1599\nempress,2,kinghenryv,1599\nblows,2,kinghenryv,1599\nbow,2,kinghenryv,1599\ndeeds,2,kinghenryv,1599\nalarum,2,kinghenryv,1599\nbawcock,2,kinghenryv,1599\nLe,2,kinghenryv,1599\nblown,2,kinghenryv,1599\nsmile,2,kinghenryv,1599\nLa,2,kinghenryv,1599\nMe,2,kinghenryv,1599\nscurvy,2,kinghenryv,1599\npeu,2,kinghenryv,1599\ncruel,2,kinghenryv,1599\nunless,2,kinghenryv,1599\nvoid,2,kinghenryv,1599\npen,2,kinghenryv,1599\ndoo's,2,kinghenryv,1599\nHer,2,kinghenryv,1599\nhie,2,kinghenryv,1599\nWithin,2,kinghenryv,1599\nWales,2,kinghenryv,1599\ncheerfully,2,kinghenryv,1599\nfanning,2,kinghenryv,1599\nhusbands,2,kinghenryv,1599\nIl,2,kinghenryv,1599\nshillings,2,kinghenryv,1599\ncudgels,2,kinghenryv,1599\npig,2,kinghenryv,1599\nnice,2,kinghenryv,1599\nVI,2,kinghenryv,1599\nDenis,2,kinghenryv,1599\nquiet,2,kinghenryv,1599\nheady,2,kinghenryv,1599\nDukes,2,kinghenryv,1599\nroyalty,2,kinghenryv,1599\ndivide,2,kinghenryv,1599\ngave,2,kinghenryv,1599\nmoys,2,kinghenryv,1599\nbend,2,kinghenryv,1599\nDrum,2,kinghenryv,1599\ndrench,2,kinghenryv,1599\nsalute,2,kinghenryv,1599\nPrithee,2,kinghenryv,1599\nsorts,2,kinghenryv,1599\ncat,2,kinghenryv,1599\nstruck,2,kinghenryv,1599\nyon,2,kinghenryv,1599\nlearned,2,kinghenryv,1599\nperilous,2,kinghenryv,1599\nSpeak,2,kinghenryv,1599\ngape,2,kinghenryv,1599\ngore,2,kinghenryv,1599\nTucket,2,kinghenryv,1599\nsuddenly,2,kinghenryv,1599\nprating,2,kinghenryv,1599\n'orld,2,kinghenryv,1599\narmourers,2,kinghenryv,1599\ngun,2,kinghenryv,1599\nbeef,2,kinghenryv,1599\nhilts,2,kinghenryv,1599\nused,2,kinghenryv,1599\nfrowns,2,kinghenryv,1599\nlonger,2,kinghenryv,1599\nenterprise,2,kinghenryv,1599\nstrip,2,kinghenryv,1599\nWelshman,2,kinghenryv,1599\nstretch,2,kinghenryv,1599\nvantage,2,kinghenryv,1599\nacceptance,2,kinghenryv,1599\npardonner,2,kinghenryv,1599\nafoot,2,kinghenryv,1599\npillage,2,kinghenryv,1599\nquite,2,kinghenryv,1599\nmagnanimous,2,kinghenryv,1599\nentertain,2,kinghenryv,1599\ngovernment,2,kinghenryv,1599\ninstant,2,kinghenryv,1599\nforgive,2,kinghenryv,1599\neloquence,2,kinghenryv,1599\ngage,2,kinghenryv,1599\nyea,2,kinghenryv,1599\ngift,2,kinghenryv,1599\nservant,2,kinghenryv,1599\nmarches,2,kinghenryv,1599\nIll,2,kinghenryv,1599\nArthur's,2,kinghenryv,1599\nUnless,2,kinghenryv,1599\nswearing,2,kinghenryv,1599\nunworthy,2,kinghenryv,1599\ngilt,2,kinghenryv,1599\nthrive,2,kinghenryv,1599\nimperfections,2,kinghenryv,1599\nboast,2,kinghenryv,1599\nhusband,2,kinghenryv,1599\nstole,2,kinghenryv,1599\nnicely,2,kinghenryv,1599\nburied,2,kinghenryv,1599\ndevant,2,kinghenryv,1599\ntrophy,2,kinghenryv,1599\nale,2,kinghenryv,1599\ncocks,2,kinghenryv,1599\napproach,2,kinghenryv,1599\nforget,2,kinghenryv,1599\nluggage,2,kinghenryv,1599\nrealm,2,kinghenryv,1599\nfeast,2,kinghenryv,1599\nmove,2,kinghenryv,1599\nwonderful,2,kinghenryv,1599\ncowardly,2,kinghenryv,1599\nsmall,2,kinghenryv,1599\nOthers,2,kinghenryv,1599\nsupplie,2,kinghenryv,1599\ncollected,2,kinghenryv,1599\nabide,2,kinghenryv,1599\nidle,2,kinghenryv,1599\nmightiness,2,kinghenryv,1599\nperfectly,2,kinghenryv,1599\nmorn,2,kinghenryv,1599\nlackeys,2,kinghenryv,1599\noffences,2,kinghenryv,1599\nstillness,2,kinghenryv,1599\nimpediment,2,kinghenryv,1599\nloss,2,kinghenryv,1599\nadd,2,kinghenryv,1599\nachieved,2,kinghenryv,1599\nresolved,2,kinghenryv,1599\nample,2,kinghenryv,1599\nspend,2,kinghenryv,1599\nNormans,2,kinghenryv,1599\nnimble,2,kinghenryv,1599\nforgot,2,kinghenryv,1599\nknee,2,kinghenryv,1599\nnatures,2,kinghenryv,1599\ndeux,2,kinghenryv,1599\nIceland,2,kinghenryv,1599\nharm,2,kinghenryv,1599\nwasteful,2,kinghenryv,1599\nMort,2,kinghenryv,1599\nrunning,2,kinghenryv,1599\nexecuted,2,kinghenryv,1599\neasy,2,kinghenryv,1599\nmenton,2,kinghenryv,1599\nBreak,2,kinghenryv,1599\nMost,2,kinghenryv,1599\ntu,2,kinghenryv,1599\nremember'd,2,kinghenryv,1599\nm'en,2,kinghenryv,1599\ncrow,2,kinghenryv,1599\nwelcome,2,kinghenryv,1599\nsignify,2,kinghenryv,1599\nJaques,2,kinghenryv,1599\nhang,2,kinghenryv,1599\nliberty,2,kinghenryv,1599\nFull,2,kinghenryv,1599\ndrawn,2,kinghenryv,1599\nGOVERNOR,2,kinghenryv,1599\nopen,2,kinghenryv,1599\nmonde,2,kinghenryv,1599\nmidnight,2,kinghenryv,1599\nvengeance,2,kinghenryv,1599\noccasions,2,kinghenryv,1599\nplus,2,kinghenryv,1599\nQue,2,kinghenryv,1599\nsubject's,2,kinghenryv,1599\nCommend,2,kinghenryv,1599\nship,2,kinghenryv,1599\nmoney,2,kinghenryv,1599\nhum,2,kinghenryv,1599\napt,2,kinghenryv,1599\nprains,2,kinghenryv,1599\nnous,2,kinghenryv,1599\nstones,2,kinghenryv,1599\ndreadful,2,kinghenryv,1599\nrogue,2,kinghenryv,1599\nexecutors,2,kinghenryv,1599\nshog,2,kinghenryv,1599\nwinking,2,kinghenryv,1599\nshoe,2,kinghenryv,1599\nconcerning,2,kinghenryv,1599\nawe,2,kinghenryv,1599\nfaithful,2,kinghenryv,1599\nfood,2,kinghenryv,1599\ncourses,2,kinghenryv,1599\npush,2,kinghenryv,1599\nforms,2,kinghenryv,1599\nye,2,kinghenryv,1599\nfeu,2,kinghenryv,1599\nfer,2,kinghenryv,1599\nHark,2,kinghenryv,1599\ntouch,2,kinghenryv,1599\nwashed,2,kinghenryv,1599\nenemies,2,kinghenryv,1599\njudgment,2,kinghenryv,1599\nCrispin,2,kinghenryv,1599\nEurope,2,kinghenryv,1599\ncapital,2,kinghenryv,1599\nsuperfluous,2,kinghenryv,1599\nInto,2,kinghenryv,1599\nGeorge,2,kinghenryv,1599\nBetween,2,kinghenryv,1599\nfat,2,kinghenryv,1599\nlean,2,kinghenryv,1599\nComes,2,kinghenryv,1599\nleap,2,kinghenryv,1599\noccasion,2,kinghenryv,1599\nPhoebus,2,kinghenryv,1599\ngarments,2,kinghenryv,1599\nordnance,2,kinghenryv,1599\nVaudemont,2,kinghenryv,1599\nmastiffs,2,kinghenryv,1599\nAgainst,2,kinghenryv,1599\ngriefs,2,kinghenryv,1599\nmischief,2,kinghenryv,1599\nsickly,2,kinghenryv,1599\nthinks,2,kinghenryv,1599\nomit,2,kinghenryv,1599\nbeast,2,kinghenryv,1599\ncastles,2,kinghenryv,1599\nlocks,2,kinghenryv,1599\ntender,2,kinghenryv,1599\nbravely,2,kinghenryv,1599\nfaint,2,kinghenryv,1599\ntraitors,2,kinghenryv,1599\ndukes,2,kinghenryv,1599\nbottom,2,kinghenryv,1599\nsquires,2,kinghenryv,1599\nvisage,2,kinghenryv,1599\nyoung,2,kinghenryv,1599\naffections,2,kinghenryv,1599\nyou'll,2,kinghenryv,1599\nKissing,2,kinghenryv,1599\nscars,2,kinghenryv,1599\navouch,2,kinghenryv,1599\nSaxons,2,kinghenryv,1599\nfamous,2,kinghenryv,1599\nchild,2,kinghenryv,1599\noverlook,2,kinghenryv,1599\ndirty,2,kinghenryv,1599\neffect,2,kinghenryv,1599\nlikewise,2,kinghenryv,1599\narrived,2,kinghenryv,1599\nteeth,2,kinghenryv,1599\nsaving,2,kinghenryv,1599\nmightst,2,kinghenryv,1599\nsignieur,2,kinghenryv,1599\npurposes,2,kinghenryv,1599\nElbe,2,kinghenryv,1599\nKING'S,2,kinghenryv,1599\nblush,2,kinghenryv,1599\nGallia,2,kinghenryv,1599\nQueen,2,kinghenryv,1599\nCould,2,kinghenryv,1599\nsovereign's,2,kinghenryv,1599\nskin,2,kinghenryv,1599\ntents,2,kinghenryv,1599\ncoward,2,kinghenryv,1599\nFauconberg,2,kinghenryv,1599\nALL,2,kinghenryv,1599\nmonsieur,2,kinghenryv,1599\nknows,2,kinghenryv,1599\ncrimson,2,kinghenryv,1599\nknown,2,kinghenryv,1599\nwoe,2,kinghenryv,1599\nAny,2,kinghenryv,1599\nlet's,2,kinghenryv,1599\nTrojan,2,kinghenryv,1599\nwoo,2,kinghenryv,1599\ninfants,2,kinghenryv,1599\ngreatest,2,kinghenryv,1599\nturkey,2,kinghenryv,1599\nneed,2,kinghenryv,1599\nBerri,2,kinghenryv,1599\nFalstaff,2,kinghenryv,1599\nworthless,2,kinghenryv,1599\napart,2,kinghenryv,1599\nThird,2,kinghenryv,1599\nfist,2,kinghenryv,1599\nceremonies,2,kinghenryv,1599\nsayest,2,kinghenryv,1599\nrendezvous,2,kinghenryv,1599\nfirk,2,kinghenryv,1599\nlieutenant,2,kinghenryv,1599\no'clock,2,kinghenryv,1599\nbreed,2,kinghenryv,1599\nCapet,2,kinghenryv,1599\nmaids,2,kinghenryv,1599\ndesolation,2,kinghenryv,1599\nwi',2,kinghenryv,1599\nflesh'd,2,kinghenryv,1599\nesquires,2,kinghenryv,1599\nexample,2,kinghenryv,1599\nflies,2,kinghenryv,1599\nmajesties,2,kinghenryv,1599\nsalt,2,kinghenryv,1599\nsake,2,kinghenryv,1599\nunderstanding,2,kinghenryv,1599\npurchase,2,kinghenryv,1599\nRambures,2,kinghenryv,1599\nmessage,2,kinghenryv,1599\nhateful,2,kinghenryv,1599\nconfined,2,kinghenryv,1599\nloving,2,kinghenryv,1599\nthird,2,kinghenryv,1599\nTHOMAS,2,kinghenryv,1599\nmoment,2,kinghenryv,1599\nsonnet,2,kinghenryv,1599\nDear,2,kinghenryv,1599\nSay,2,kinghenryv,1599\nheaps,2,kinghenryv,1599\noffending,2,kinghenryv,1599\noublie,2,kinghenryv,1599\nGermany,2,kinghenryv,1599\nEngland's,2,kinghenryv,1599\npatiently,2,kinghenryv,1599\ncrown'd,2,kinghenryv,1599\nAncient,2,kinghenryv,1599\nstick,2,kinghenryv,1599\nearnest,2,kinghenryv,1599\nstage,2,kinghenryv,1599\nbarbarous,2,kinghenryv,1599\nperforce,2,kinghenryv,1599\naudience,2,kinghenryv,1599\nfound,2,kinghenryv,1599\nhandle,2,kinghenryv,1599\nassure,2,kinghenryv,1599\ndanger,2,kinghenryv,1599\ndying,2,kinghenryv,1599\nSIR,2,kinghenryv,1599\nprice,2,kinghenryv,1599\nwheel,2,kinghenryv,1599\nbreakfast,2,kinghenryv,1599\nnext,2,kinghenryv,1599\nenforces,2,kinghenryv,1599\nbelly,2,kinghenryv,1599\npence,2,kinghenryv,1599\naffirm,2,kinghenryv,1599\npossess,2,kinghenryv,1599\nSixth,2,kinghenryv,1599\nhusbandry,2,kinghenryv,1599\nfaces,2,kinghenryv,1599\ntakes,2,kinghenryv,1599\nfaced,2,kinghenryv,1599\nfigo,2,kinghenryv,1599\npining,2,kinghenryv,1599\nwhat's,2,kinghenryv,1599\nforeign,2,kinghenryv,1599\nbetting,2,kinghenryv,1599\nfunctions,2,kinghenryv,1599\ncups,2,kinghenryv,1599\nsoldiers',2,kinghenryv,1599\nnest,2,kinghenryv,1599\nwaters,2,kinghenryv,1599\nfarther,2,kinghenryv,1599\nwaste,2,kinghenryv,1599\nangry,2,kinghenryv,1599\nfoi,2,kinghenryv,1599\ncomparisons,2,kinghenryv,1599\nfail,2,kinghenryv,1599\nprevention,2,kinghenryv,1599\ncontempt,2,kinghenryv,1599\nRoy,2,kinghenryv,1599\ncried,2,kinghenryv,1599\nevil,2,kinghenryv,1599\nMake,2,kinghenryv,1599\n'fore,2,kinghenryv,1599\nmodesty,2,kinghenryv,1599\nBrother,2,kinghenryv,1599\ndesert,2,kinghenryv,1599\nAlmighty,2,kinghenryv,1599\narticle,2,kinghenryv,1599\nkinsman,2,kinghenryv,1599\nRuns,2,kinghenryv,1599\nwounds,2,kinghenryv,1599\nwickedness,2,kinghenryv,1599\nl'Anglois,2,kinghenryv,1599\nworthiness,2,kinghenryv,1599\nfighting,2,kinghenryv,1599\ndancing,2,kinghenryv,1599\n'em,2,kinghenryv,1599\nMars,2,kinghenryv,1599\nendeavour,2,kinghenryv,1599\nfit,2,kinghenryv,1599\nMark,2,kinghenryv,1599\npassion,2,kinghenryv,1599\nvow,2,kinghenryv,1599\nDoing,2,kinghenryv,1599\nswallow'd,2,kinghenryv,1599\nrich,2,kinghenryv,1599\nfill,2,kinghenryv,1599\nYoke,2,kinghenryv,1599\nadmiration,2,kinghenryv,1599\nsavage,2,kinghenryv,1599\nfolly,2,kinghenryv,1599\nFare,2,kinghenryv,1599\ncontagious,2,kinghenryv,1599\ntavern,2,kinghenryv,1599\npocket,2,kinghenryv,1599\nconsign,2,kinghenryv,1599\nherself,2,kinghenryv,1599\nales,2,kinghenryv,1599\nan't,2,kinghenryv,1599\nsmooth,2,kinghenryv,1599\npatient,2,kinghenryv,1599\nlived,2,kinghenryv,1599\nbate,2,kinghenryv,1599\nmember,2,kinghenryv,1599\nChatillon,2,kinghenryv,1599\nfreshly,2,kinghenryv,1599\nfate,2,kinghenryv,1599\ncock,2,kinghenryv,1599\nfounder,2,kinghenryv,1599\nDavy's,2,kinghenryv,1599\nlenity,2,kinghenryv,1599\nfeeble,2,kinghenryv,1599\nfarm,2,kinghenryv,1599\nauthor,2,kinghenryv,1599\nis't,2,kinghenryv,1599\nconstant,2,kinghenryv,1599\nsufficient,2,kinghenryv,1599\ncarry,2,kinghenryv,1599\nHampton,2,kinghenryv,1599\nought,2,kinghenryv,1599\nholy,2,kinghenryv,1599\nclear,2,kinghenryv,1599\nvirgins,2,kinghenryv,1599\npeaceful,2,kinghenryv,1599\ngreet,2,kinghenryv,1599\ndangerous,2,kinghenryv,1599\nhollow,2,kinghenryv,1599\nlackey,2,kinghenryv,1599\nAlthough,2,kinghenryv,1599\ncounterfeit,2,kinghenryv,1599\nstrong,2,kinghenryv,1599\nflood,2,kinghenryv,1599\ndefeat,2,kinghenryv,1599\nhorses,2,kinghenryv,1599\nDat,2,kinghenryv,1599\nroping,2,kinghenryv,1599\ntask,2,kinghenryv,1599\nprayers,2,kinghenryv,1599\nbawd,2,kinghenryv,1599\nAnglois,2,kinghenryv,1599\ncountry's,2,kinghenryv,1599\nlovely,2,kinghenryv,1599\nErpingham,2,kinghenryv,1599\nwinged,2,kinghenryv,1599\ninward,2,kinghenryv,1599\nreckoning,2,kinghenryv,1599\nRight,2,kinghenryv,1599\nSeek,2,kinghenryv,1599\nsupplied,2,kinghenryv,1599\neither,2,kinghenryv,1599\npresence,2,kinghenryv,1599\ncol,2,kinghenryv,1599\ndiscretion,2,kinghenryv,1599\nvalued,2,kinghenryv,1599\nvessel,2,kinghenryv,1599\nrender,2,kinghenryv,1599\nMine,2,kinghenryv,1599\nexpectation,2,kinghenryv,1599\nreciterai,2,kinghenryv,1599\nPray,2,kinghenryv,1599\nrascally,2,kinghenryv,1599\nblame,2,kinghenryv,1599\nlovest,2,kinghenryv,1599\ngoat,2,kinghenryv,1599\nhours,2,kinghenryv,1599\nToward,2,kinghenryv,1599\nwretched,2,kinghenryv,1599\nune,2,kinghenryv,1599\nfloods,2,kinghenryv,1599\nFamiliar,2,kinghenryv,1599\naloud,2,kinghenryv,1599\n'God,2,kinghenryv,1599\nIsabel,2,kinghenryv,1599\npavilion,2,kinghenryv,1599\nLieutenant,2,kinghenryv,1599\ngreeting,2,kinghenryv,1599\nhedges,2,kinghenryv,1599\nsickness,2,kinghenryv,1599\nleagues,2,kinghenryv,1599\ndeceits,2,kinghenryv,1599\nbestow,2,kinghenryv,1599\ncrooked,2,kinghenryv,1599\nmaster's,2,kinghenryv,1599\nsheets,2,kinghenryv,1599\ntrot,2,kinghenryv,1599\nlicence,2,kinghenryv,1599\nLestrale,2,kinghenryv,1599\npetty,2,kinghenryv,1599\nARCHBISHOP,2,kinghenryv,1599\ndebate,2,kinghenryv,1599\ncheval,2,kinghenryv,1599\nfiends,2,kinghenryv,1599\nmaintained,2,kinghenryv,1599\nabroad,2,kinghenryv,1599\npasture,2,kinghenryv,1599\nhostess,2,kinghenryv,1599\nFive,2,kinghenryv,1599\nforced,2,kinghenryv,1599\nsteeds,2,kinghenryv,1599\nParis,2,kinghenryv,1599\nwarlike,2,kinghenryv,1599\nisland,2,kinghenryv,1599\nsister,2,kinghenryv,1599\nlofty,2,kinghenryv,1599\nupward,2,kinghenryv,1599\nAccording,2,kinghenryv,1599\nRouen,2,kinghenryv,1599\nabuse,2,kinghenryv,1599\npleasant,2,kinghenryv,1599\nmerciful,2,kinghenryv,1599\nladies,2,kinghenryv,1599\nflea,2,kinghenryv,1599\nAbate,2,kinghenryv,1599\nEight,2,kinghenryv,1599\nDelabreth,2,kinghenryv,1599\nlion,2,kinghenryv,1599\nhomage,2,kinghenryv,1599\nIndeed,2,kinghenryv,1599\nwhiles,2,kinghenryv,1599\ncutpurse,2,kinghenryv,1599\nlast,2,kinghenryv,1599\nsometimes,2,kinghenryv,1599\nmilitary,2,kinghenryv,1599\nphrase,2,kinghenryv,1599\ngulf,2,kinghenryv,1599\ncitizens,2,kinghenryv,1599\nbeauty,2,kinghenryv,1599\nVII,2,kinghenryv,1599\nchew'd,2,kinghenryv,1599\nSalisbury,2,kinghenryv,1599\nsquire,2,kinghenryv,1599\nragged,2,kinghenryv,1599\nneigh,2,kinghenryv,1599\nlaissez,2,kinghenryv,1599\npassages,2,kinghenryv,1599\nYou'll,2,kinghenryv,1599\nThy,2,kinghenryv,1599\nvineyards,2,kinghenryv,1599\nattend,2,kinghenryv,1599\nmangled,2,kinghenryv,1599\nbras,2,kinghenryv,1599\nprincely,2,kinghenryv,1599\nAlice,2,kinghenryv,1599\nsudden,2,kinghenryv,1599\ncatch,2,kinghenryv,1599\nton,2,kinghenryv,1599\nanother's,2,kinghenryv,1599\nfellowship,2,kinghenryv,1599\nbred,2,kinghenryv,1599\nUntil,2,kinghenryv,1599\nshake,2,kinghenryv,1599\npass'd,2,kinghenryv,1599\nBouciqualt,2,kinghenryv,1599\nbargain,2,kinghenryv,1599\nwithout,2,kinghenryv,1599\nhe'll,2,kinghenryv,1599\nsmell,2,kinghenryv,1599\ndes,2,kinghenryv,1599\ngentler,2,kinghenryv,1599\ngentles,2,kinghenryv,1599\nprivate,2,kinghenryv,1599\nfigures,2,kinghenryv,1599\ndefences,2,kinghenryv,1599\ncannon,2,kinghenryv,1599\nremembrance,2,kinghenryv,1599\nparley,2,kinghenryv,1599\nshoes,2,kinghenryv,1599\nconspired,2,kinghenryv,1599\nhunting,2,kinghenryv,1599\nchivalry,2,kinghenryv,1599\nwouldst,2,kinghenryv,1599\nshare,2,kinghenryv,1599\nchambers,2,kinghenryv,1599\nHugh,2,kinghenryv,1599\nsharp,2,kinghenryv,1599\npunished,2,kinghenryv,1599\nmajestical,2,kinghenryv,1599\nending,2,kinghenryv,1599\nsummer,2,kinghenryv,1599\nbusied,2,kinghenryv,1599\nheed,3,kinghenryv,1599\ntold,3,kinghenryv,1599\nregard,3,kinghenryv,1599\nadvised,3,kinghenryv,1599\nguard,3,kinghenryv,1599\nFer,3,kinghenryv,1599\nred,3,kinghenryv,1599\nBedford,3,kinghenryv,1599\ndrop,3,kinghenryv,1599\nbrass,3,kinghenryv,1599\nay'll,3,kinghenryv,1599\nAlas,3,kinghenryv,1599\npossible,3,kinghenryv,1599\nPharamond,3,kinghenryv,1599\nlongs,3,kinghenryv,1599\npreparation,3,kinghenryv,1599\nrascal,3,kinghenryv,1599\nDauphin's,3,kinghenryv,1599\npainted,3,kinghenryv,1599\ngroat,3,kinghenryv,1599\nvain,3,kinghenryv,1599\ntoil,3,kinghenryv,1599\nhonourable,3,kinghenryv,1599\nhanged,3,kinghenryv,1599\nadvance,3,kinghenryv,1599\nmaintain,3,kinghenryv,1599\nhorrid,3,kinghenryv,1599\njades,3,kinghenryv,1599\nyonder,3,kinghenryv,1599\niron,3,kinghenryv,1599\nancestors,3,kinghenryv,1599\nbecome,3,kinghenryv,1599\nadvantages,3,kinghenryv,1599\nd'Angleterre,3,kinghenryv,1599\nstrength,3,kinghenryv,1599\nsont,3,kinghenryv,1599\nsad,3,kinghenryv,1599\nAfter,3,kinghenryv,1599\nstock,3,kinghenryv,1599\nsold,3,kinghenryv,1599\nyears,3,kinghenryv,1599\ntout,3,kinghenryv,1599\ntrumpet,3,kinghenryv,1599\npolicy,3,kinghenryv,1599\ngross,3,kinghenryv,1599\nAmbassador,3,kinghenryv,1599\nveins,3,kinghenryv,1599\nsoft,3,kinghenryv,1599\nblessed,3,kinghenryv,1599\nwait,3,kinghenryv,1599\ndefiance,3,kinghenryv,1599\nembassy,3,kinghenryv,1599\nbound,3,kinghenryv,1599\nbastard,3,kinghenryv,1599\nsaying,3,kinghenryv,1599\nmerry,3,kinghenryv,1599\nmonarch,3,kinghenryv,1599\nscorn,3,kinghenryv,1599\ncouncil,3,kinghenryv,1599\ndeliver,3,kinghenryv,1599\nchurch,3,kinghenryv,1599\nSuch,3,kinghenryv,1599\nsecond,3,kinghenryv,1599\nplay'd,3,kinghenryv,1599\nbecomes,3,kinghenryv,1599\nourselves,3,kinghenryv,1599\nThese,3,kinghenryv,1599\nBrabant,3,kinghenryv,1599\ntwelve,3,kinghenryv,1599\nways,3,kinghenryv,1599\nborn,3,kinghenryv,1599\nTurn,3,kinghenryv,1599\nexpedition,3,kinghenryv,1599\nfearful,3,kinghenryv,1599\npromise,3,kinghenryv,1599\nmasters,3,kinghenryv,1599\nwishes,3,kinghenryv,1599\nwink,3,kinghenryv,1599\nmonarchs,3,kinghenryv,1599\nwant,3,kinghenryv,1599\ndies,3,kinghenryv,1599\nbold,3,kinghenryv,1599\ndied,3,kinghenryv,1599\nhorsemen,3,kinghenryv,1599\nambassador,3,kinghenryv,1599\nrule,3,kinghenryv,1599\nThere's,3,kinghenryv,1599\nmanhood,3,kinghenryv,1599\npraised,3,kinghenryv,1599\ncolour,3,kinghenryv,1599\ndiscuss,3,kinghenryv,1599\nEt,3,kinghenryv,1599\nburning,3,kinghenryv,1599\nLeaving,3,kinghenryv,1599\nWhat's,3,kinghenryv,1599\noffend,3,kinghenryv,1599\nmeasure,3,kinghenryv,1599\nflattery,3,kinghenryv,1599\nbon,3,kinghenryv,1599\nbox,3,kinghenryv,1599\nStand,3,kinghenryv,1599\nsince,3,kinghenryv,1599\nhelmet,3,kinghenryv,1599\npleasure,3,kinghenryv,1599\nbless,3,kinghenryv,1599\nwhole,3,kinghenryv,1599\narrest,3,kinghenryv,1599\nHad,3,kinghenryv,1599\nhides,3,kinghenryv,1599\nears,3,kinghenryv,1599\nproud,3,kinghenryv,1599\nUp,3,kinghenryv,1599\ngrandfather,3,kinghenryv,1599\nglorious,3,kinghenryv,1599\nyourselves,3,kinghenryv,1599\nWelsh,3,kinghenryv,1599\nweep,3,kinghenryv,1599\nproportion,3,kinghenryv,1599\nbehind,3,kinghenryv,1599\ngone,3,kinghenryv,1599\nsounds,3,kinghenryv,1599\nSave,3,kinghenryv,1599\nparle,3,kinghenryv,1599\nBehold,3,kinghenryv,1599\nSala,3,kinghenryv,1599\nPut,3,kinghenryv,1599\ntwice,3,kinghenryv,1599\ndegree,3,kinghenryv,1599\nbegin,3,kinghenryv,1599\ndogs,3,kinghenryv,1599\nstory,3,kinghenryv,1599\ndeep,3,kinghenryv,1599\npromised,3,kinghenryv,1599\nwretch,3,kinghenryv,1599\nha,3,kinghenryv,1599\nSoldiers,3,kinghenryv,1599\nraise,3,kinghenryv,1599\nrepent,3,kinghenryv,1599\nconsider,3,kinghenryv,1599\nfavour,3,kinghenryv,1599\nstood,3,kinghenryv,1599\nstoop,3,kinghenryv,1599\nlegs,3,kinghenryv,1599\nathversary,3,kinghenryv,1599\nce,3,kinghenryv,1599\ndoor,3,kinghenryv,1599\nMaster,3,kinghenryv,1599\nfears,3,kinghenryv,1599\ncommitted,3,kinghenryv,1599\nBardolph's,3,kinghenryv,1599\nendure,3,kinghenryv,1599\ncauses,3,kinghenryv,1599\nmoon,3,kinghenryv,1599\nfeats,3,kinghenryv,1599\nact,3,kinghenryv,1599\ngreater,3,kinghenryv,1599\nready,3,kinghenryv,1599\nbrought,3,kinghenryv,1599\nfierce,3,kinghenryv,1599\ndiscourse,3,kinghenryv,1599\noutward,3,kinghenryv,1599\nspeaks,3,kinghenryv,1599\nreasonable,3,kinghenryv,1599\netes,3,kinghenryv,1599\nChristian,3,kinghenryv,1599\nshallow,3,kinghenryv,1599\nCall,3,kinghenryv,1599\nMore,3,kinghenryv,1599\nre,3,kinghenryv,1599\nappears,3,kinghenryv,1599\nLady,3,kinghenryv,1599\naccord,3,kinghenryv,1599\nFirst,3,kinghenryv,1599\nform,3,kinghenryv,1599\nprepare,3,kinghenryv,1599\nask,3,kinghenryv,1599\npaid,3,kinghenryv,1599\nfore,3,kinghenryv,1599\nfear'd,3,kinghenryv,1599\nrevenge,3,kinghenryv,1599\nass,3,kinghenryv,1599\nmaiden,3,kinghenryv,1599\nAre,3,kinghenryv,1599\nknock,3,kinghenryv,1599\nStrikes,3,kinghenryv,1599\nSignieur,3,kinghenryv,1599\nhazard,3,kinghenryv,1599\nbroke,3,kinghenryv,1599\nArt,3,kinghenryv,1599\nuniversal,3,kinghenryv,1599\nprave,3,kinghenryv,1599\nGrandpre,3,kinghenryv,1599\nempty,3,kinghenryv,1599\nhill,3,kinghenryv,1599\nbarons,3,kinghenryv,1599\nIreland,3,kinghenryv,1599\nwater,3,kinghenryv,1599\nproverb,3,kinghenryv,1599\nalmost,3,kinghenryv,1599\nPeace,3,kinghenryv,1599\nBar,3,kinghenryv,1599\nbears,3,kinghenryv,1599\nwildness,3,kinghenryv,1599\nhide,3,kinghenryv,1599\nBase,3,kinghenryv,1599\nnarrow,3,kinghenryv,1599\ngarden,3,kinghenryv,1599\nplaces,3,kinghenryv,1599\npowers,3,kinghenryv,1599\nCheshu,3,kinghenryv,1599\nSome,3,kinghenryv,1599\nother's,3,kinghenryv,1599\nrolls,3,kinghenryv,1599\npresently,3,kinghenryv,1599\ndream,3,kinghenryv,1599\nissue,3,kinghenryv,1599\nwon,3,kinghenryv,1599\nchide,3,kinghenryv,1599\nfirm,3,kinghenryv,1599\nliving,3,kinghenryv,1599\ntaste,3,kinghenryv,1599\nvasty,3,kinghenryv,1599\nnear,3,kinghenryv,1599\nabate,3,kinghenryv,1599\nretire,3,kinghenryv,1599\nwit,3,kinghenryv,1599\ndiscipline,3,kinghenryv,1599\noft,3,kinghenryv,1599\nstomach,3,kinghenryv,1599\nfetch,3,kinghenryv,1599\ncertainly,3,kinghenryv,1599\nlikes,3,kinghenryv,1599\nThink,3,kinghenryv,1599\nsinews,3,kinghenryv,1599\nwax,3,kinghenryv,1599\nbelieve,3,kinghenryv,1599\nrise,3,kinghenryv,1599\narms,3,kinghenryv,1599\nGRANDPRE,3,kinghenryv,1599\nsufferance,3,kinghenryv,1599\nperadventure,3,kinghenryv,1599\nprick,3,kinghenryv,1599\nWestmoreland,3,kinghenryv,1599\nhair,3,kinghenryv,1599\nfamiliar,3,kinghenryv,1599\nBid,3,kinghenryv,1599\nmarry,3,kinghenryv,1599\nangel,3,kinghenryv,1599\nowe,3,kinghenryv,1599\ntouching,3,kinghenryv,1599\nwent,3,kinghenryv,1599\nfill'd,3,kinghenryv,1599\nvie,3,kinghenryv,1599\ngrass,3,kinghenryv,1599\nguilty,3,kinghenryv,1599\njudge,3,kinghenryv,1599\nTill,3,kinghenryv,1599\nproportions,3,kinghenryv,1599\nfoe,3,kinghenryv,1599\ngrant,3,kinghenryv,1599\nmethinks,3,kinghenryv,1599\nworn,3,kinghenryv,1599\ncolours,3,kinghenryv,1599\nride,3,kinghenryv,1599\nsafety,3,kinghenryv,1599\ndamnation,3,kinghenryv,1599\nBourbon,3,kinghenryv,1599\nshows,3,kinghenryv,1599\nqueen,3,kinghenryv,1599\nmeaning,3,kinghenryv,1599\ncomfort,3,kinghenryv,1599\nCOURT,3,kinghenryv,1599\nband,3,kinghenryv,1599\nfriendship,3,kinghenryv,1599\nflames,3,kinghenryv,1599\nnames,3,kinghenryv,1599\nlarge,3,kinghenryv,1599\nbill,3,kinghenryv,1599\nemperor,3,kinghenryv,1599\nvat,3,kinghenryv,1599\nfare,3,kinghenryv,1599\ncoat,3,kinghenryv,1599\nman's,3,kinghenryv,1599\nappearance,3,kinghenryv,1599\notherwise,3,kinghenryv,1599\nHenry,3,kinghenryv,1599\nwild,3,kinghenryv,1599\nmothers,3,kinghenryv,1599\nshook,3,kinghenryv,1599\nDew,3,kinghenryv,1599\nshort,3,kinghenryv,1599\narticles,3,kinghenryv,1599\ngreen,3,kinghenryv,1599\ngiddy,3,kinghenryv,1599\ncur,3,kinghenryv,1599\nNell,3,kinghenryv,1599\ngives,3,kinghenryv,1599\nassembled,3,kinghenryv,1599\n'solus',3,kinghenryv,1599\nadieu,3,kinghenryv,1599\nseen,3,kinghenryv,1599\ndefend,3,kinghenryv,1599\ncoz,3,kinghenryv,1599\n'twixt,3,kinghenryv,1599\nKilling,3,kinghenryv,1599\ncry,3,kinghenryv,1599\nhouse,3,kinghenryv,1599\nHe'll,3,kinghenryv,1599\nSeigneur,3,kinghenryv,1599\nscauld,3,kinghenryv,1599\ntres,3,kinghenryv,1599\nhuge,3,kinghenryv,1599\ncountrymen,3,kinghenryv,1599\nhither,3,kinghenryv,1599\nbade,3,kinghenryv,1599\nRoman,3,kinghenryv,1599\nporn,3,kinghenryv,1599\ncountryman,3,kinghenryv,1599\nlaws,3,kinghenryv,1599\nQuickly,3,kinghenryv,1599\nclouds,3,kinghenryv,1599\nspirits,3,kinghenryv,1599\nlimbs,3,kinghenryv,1599\ndread,3,kinghenryv,1599\nremember,3,kinghenryv,1599\nglory,3,kinghenryv,1599\nmeeting,3,kinghenryv,1599\nheartily,3,kinghenryv,1599\nquarrels,3,kinghenryv,1599\nwarriors,3,kinghenryv,1599\nAmen,3,kinghenryv,1599\nmarriage,3,kinghenryv,1599\nransomed,3,kinghenryv,1599\nMarry,3,kinghenryv,1599\ndirections,3,kinghenryv,1599\nbesides,3,kinghenryv,1599\npuissance,3,kinghenryv,1599\nNorthumberland,3,kinghenryv,1599\ncontent,3,kinghenryv,1599\nmouths,3,kinghenryv,1599\nlaid,3,kinghenryv,1599\nlosses,3,kinghenryv,1599\nweight,3,kinghenryv,1599\nBring,3,kinghenryv,1599\narmed,3,kinghenryv,1599\ngorge,3,kinghenryv,1599\nsoundly,3,kinghenryv,1599\njustly,3,kinghenryv,1599\nbien,3,kinghenryv,1599\nneighbour,3,kinghenryv,1599\nbids,3,kinghenryv,1599\nlack,3,kinghenryv,1599\nSuppose,3,kinghenryv,1599\nquality,4,kinghenryv,1599\nmoral,4,kinghenryv,1599\ntimes,4,kinghenryv,1599\nswords,4,kinghenryv,1599\nhonneur,4,kinghenryv,1599\nGrey,4,kinghenryv,1599\nhonours,4,kinghenryv,1599\nfemale,4,kinghenryv,1599\nlower,4,kinghenryv,1599\nhelp,4,kinghenryv,1599\nhealth,4,kinghenryv,1599\nboys,4,kinghenryv,1599\nMust,4,kinghenryv,1599\nwhile,4,kinghenryv,1599\ntears,4,kinghenryv,1599\nsummer's,4,kinghenryv,1599\nunderstand,4,kinghenryv,1599\nlies,4,kinghenryv,1599\ndamned,4,kinghenryv,1599\ntrust,4,kinghenryv,1599\ndraw,4,kinghenryv,1599\nworking,4,kinghenryv,1599\nline,4,kinghenryv,1599\nsure,4,kinghenryv,1599\nScot,4,kinghenryv,1599\ndemands,4,kinghenryv,1599\nview,4,kinghenryv,1599\nsir,4,kinghenryv,1599\nlight,4,kinghenryv,1599\ncoun,4,kinghenryv,1599\nsuit,4,kinghenryv,1599\nsuis,4,kinghenryv,1599\nworth,4,kinghenryv,1599\nFarewell,4,kinghenryv,1599\nAunchient,4,kinghenryv,1599\ndisgrace,4,kinghenryv,1599\nfaults,4,kinghenryv,1599\nAttendants,4,kinghenryv,1599\npuissant,4,kinghenryv,1599\nwrong,4,kinghenryv,1599\ncompound,4,kinghenryv,1599\npiece,4,kinghenryv,1599\nOui,4,kinghenryv,1599\nAmbassadors,4,kinghenryv,1599\nmemorable,4,kinghenryv,1599\nwind,4,kinghenryv,1599\nseems,4,kinghenryv,1599\nrest,4,kinghenryv,1599\nmean,4,kinghenryv,1599\nwits,4,kinghenryv,1599\nwherefore,4,kinghenryv,1599\nchamber,4,kinghenryv,1599\nA',4,kinghenryv,1599\nspoil,4,kinghenryv,1599\nmusic,4,kinghenryv,1599\nneither,4,kinghenryv,1599\nbad,4,kinghenryv,1599\nsiege,4,kinghenryv,1599\nforce,4,kinghenryv,1599\nfatal,4,kinghenryv,1599\nquick,4,kinghenryv,1599\npast,4,kinghenryv,1599\npass,4,kinghenryv,1599\nSauf,4,kinghenryv,1599\nnick,4,kinghenryv,1599\ntitles,4,kinghenryv,1599\nsits,4,kinghenryv,1599\nsooner,4,kinghenryv,1599\ngot,4,kinghenryv,1599\nchildren,4,kinghenryv,1599\nprisoners,4,kinghenryv,1599\npeople,4,kinghenryv,1599\nMasham,4,kinghenryv,1599\npains,4,kinghenryv,1599\nrejoice,4,kinghenryv,1599\nbreath,4,kinghenryv,1599\nconfess,4,kinghenryv,1599\nYORK,4,kinghenryv,1599\ntongues,4,kinghenryv,1599\ndefence,4,kinghenryv,1599\nspeed,4,kinghenryv,1599\nfixed,4,kinghenryv,1599\nrouse,4,kinghenryv,1599\nBISHOP,4,kinghenryv,1599\nne,4,kinghenryv,1599\nage,4,kinghenryv,1599\ntrain,4,kinghenryv,1599\nSuffolk,4,kinghenryv,1599\nless,4,kinghenryv,1599\nknew,4,kinghenryv,1599\npure,4,kinghenryv,1599\nnatural,4,kinghenryv,1599\ncall'd,4,kinghenryv,1599\ncity,4,kinghenryv,1599\nmajesty's,4,kinghenryv,1599\nComment,4,kinghenryv,1599\nkingdoms,4,kinghenryv,1599\nbosom,4,kinghenryv,1599\nshot,4,kinghenryv,1599\nfool,4,kinghenryv,1599\nleeks,4,kinghenryv,1599\nlousy,4,kinghenryv,1599\nhaving,4,kinghenryv,1599\nwatch,4,kinghenryv,1599\naunchient,4,kinghenryv,1599\nkeeps,4,kinghenryv,1599\nenow,4,kinghenryv,1599\nrank,4,kinghenryv,1599\nnose,4,kinghenryv,1599\naction,4,kinghenryv,1599\nwonder,4,kinghenryv,1599\nShe,4,kinghenryv,1599\nadmit,4,kinghenryv,1599\nquickly,4,kinghenryv,1599\nere,4,kinghenryv,1599\ngeneral,4,kinghenryv,1599\nLook,4,kinghenryv,1599\nRichard,4,kinghenryv,1599\nsatisfaction,4,kinghenryv,1599\nbosoms,4,kinghenryv,1599\ndevils,4,kinghenryv,1599\nstate,4,kinghenryv,1599\nbecause,4,kinghenryv,1599\ngates,4,kinghenryv,1599\nlabour,4,kinghenryv,1599\nmountain,4,kinghenryv,1599\nfree,4,kinghenryv,1599\nnumber,4,kinghenryv,1599\ndesires,4,kinghenryv,1599\npossession,4,kinghenryv,1599\nclose,4,kinghenryv,1599\nget,4,kinghenryv,1599\nformer,4,kinghenryv,1599\nWe'll,4,kinghenryv,1599\nbreak,4,kinghenryv,1599\ncoxcomb,4,kinghenryv,1599\nwalls,4,kinghenryv,1599\nheavy,4,kinghenryv,1599\nduty,4,kinghenryv,1599\nCan,4,kinghenryv,1599\nmettle,4,kinghenryv,1599\ntaken,4,kinghenryv,1599\ndrops,4,kinghenryv,1599\nfollowers,4,kinghenryv,1599\nYork,4,kinghenryv,1599\nglad,4,kinghenryv,1599\nground,4,kinghenryv,1599\nminds,4,kinghenryv,1599\nThat's,4,kinghenryv,1599\nfame,4,kinghenryv,1599\npalace,4,kinghenryv,1599\nne'er,4,kinghenryv,1599\nmarried,4,kinghenryv,1599\nwide,4,kinghenryv,1599\npartly,4,kinghenryv,1599\ngentlemen,4,kinghenryv,1599\nLes,4,kinghenryv,1599\ntish,4,kinghenryv,1599\nthank,4,kinghenryv,1599\nLewis,4,kinghenryv,1599\nfollows,4,kinghenryv,1599\nfavours,4,kinghenryv,1599\nconjure,4,kinghenryv,1599\nseigneur,4,kinghenryv,1599\nalone,4,kinghenryv,1599\ntroth,4,kinghenryv,1599\nsees,4,kinghenryv,1599\ntraitor,4,kinghenryv,1599\nmodest,4,kinghenryv,1599\nwretches,4,kinghenryv,1599\nself,4,kinghenryv,1599\nsend,4,kinghenryv,1599\nappelez,4,kinghenryv,1599\nsleep,4,kinghenryv,1599\nlearn,4,kinghenryv,1599\nAnother,4,kinghenryv,1599\ncorrection,4,kinghenryv,1599\nEARL,4,kinghenryv,1599\nCrispian,4,kinghenryv,1599\nlate,4,kinghenryv,1599\nWithout,4,kinghenryv,1599\nmon,4,kinghenryv,1599\nurged,4,kinghenryv,1599\npless,4,kinghenryv,1599\ndue,4,kinghenryv,1599\nfifteen,4,kinghenryv,1599\ncommand,4,kinghenryv,1599\nprincess,4,kinghenryv,1599\nkill,4,kinghenryv,1599\nlady,4,kinghenryv,1599\nWarwick,5,kinghenryv,1599\nfathers,5,kinghenryv,1599\nheir,5,kinghenryv,1599\ncountry,5,kinghenryv,1599\nbones,5,kinghenryv,1599\nscene,5,kinghenryv,1599\nvillain,5,kinghenryv,1599\nrather,5,kinghenryv,1599\ntruly,5,kinghenryv,1599\nPROLOGUE,5,kinghenryv,1599\nfought,5,kinghenryv,1599\nsort,5,kinghenryv,1599\nsoon,5,kinghenryv,1599\nsaw,5,kinghenryv,1599\nOrleans,5,kinghenryv,1599\nbroken,5,kinghenryv,1599\nThomas,5,kinghenryv,1599\nstands,5,kinghenryv,1599\nBurgundy,5,kinghenryv,1599\nthrone,5,kinghenryv,1599\nsubject,5,kinghenryv,1599\nWas,5,kinghenryv,1599\nTheir,5,kinghenryv,1599\nsuck,5,kinghenryv,1599\nread,5,kinghenryv,1599\ncommon,5,kinghenryv,1599\nwhite,5,kinghenryv,1599\nsum,5,kinghenryv,1599\ngrow,5,kinghenryv,1599\ntitle,5,kinghenryv,1599\nsteal,5,kinghenryv,1599\nmurder,5,kinghenryv,1599\nhe's,5,kinghenryv,1599\nsick,5,kinghenryv,1599\nknowledge,5,kinghenryv,1599\nballs,5,kinghenryv,1599\nAn,5,kinghenryv,1599\nquarrel,5,kinghenryv,1599\npatience,5,kinghenryv,1599\nWhiles,5,kinghenryv,1599\nitself,5,kinghenryv,1599\nbar,5,kinghenryv,1599\nkept,5,kinghenryv,1599\ncanst,5,kinghenryv,1599\npate,5,kinghenryv,1599\nCorporal,5,kinghenryv,1599\nchallenge,5,kinghenryv,1599\nRe,5,kinghenryv,1599\nswift,5,kinghenryv,1599\nbuy,5,kinghenryv,1599\nsafe,5,kinghenryv,1599\nstone,5,kinghenryv,1599\nBesides,5,kinghenryv,1599\nhumours,5,kinghenryv,1599\no',5,kinghenryv,1599\nmots,5,kinghenryv,1599\nlest,5,kinghenryv,1599\ndispose,5,kinghenryv,1599\nlose,5,kinghenryv,1599\nkilled,5,kinghenryv,1599\npoint,5,kinghenryv,1599\nalive,5,kinghenryv,1599\nrough,5,kinghenryv,1599\nfresh,5,kinghenryv,1599\npense,5,kinghenryv,1599\nHath,5,kinghenryv,1599\nShould,5,kinghenryv,1599\nyesterday,5,kinghenryv,1599\nHave,5,kinghenryv,1599\nmain,5,kinghenryv,1599\nmaid,5,kinghenryv,1599\npeers,5,kinghenryv,1599\nhoney,5,kinghenryv,1599\nFlourish,5,kinghenryv,1599\nbeard,5,kinghenryv,1599\nyear,5,kinghenryv,1599\n'gainst,5,kinghenryv,1599\nslave,5,kinghenryv,1599\nMacedon,5,kinghenryv,1599\ngrave,5,kinghenryv,1599\nneck,5,kinghenryv,1599\nfive,5,kinghenryv,1599\nwin,5,kinghenryv,1599\nservices,5,kinghenryv,1599\ncalled,5,kinghenryv,1599\nthemselves,5,kinghenryv,1599\nthroats,5,kinghenryv,1599\nconsent,5,kinghenryv,1599\ndull,5,kinghenryv,1599\nfain,5,kinghenryv,1599\nmines,5,kinghenryv,1599\nCalais,5,kinghenryv,1599\nScroop,5,kinghenryv,1599\nparticular,5,kinghenryv,1599\nSouthampton,5,kinghenryv,1599\nwives,5,kinghenryv,1599\nbase,5,kinghenryv,1599\ntalk,5,kinghenryv,1599\nEarl,5,kinghenryv,1599\nwilt,5,kinghenryv,1599\nwife,5,kinghenryv,1599\nseat,5,kinghenryv,1599\nlow,5,kinghenryv,1599\nseem,5,kinghenryv,1599\ncondition,5,kinghenryv,1599\nfellows,5,kinghenryv,1599\nsound,5,kinghenryv,1599\narrant,5,kinghenryv,1599\nsouls,5,kinghenryv,1599\nfairly,5,kinghenryv,1599\nsell,5,kinghenryv,1599\ntide,5,kinghenryv,1599\ngoes,5,kinghenryv,1599\ndoigts,5,kinghenryv,1599\nmet,5,kinghenryv,1599\nlips,5,kinghenryv,1599\nnature,5,kinghenryv,1599\nwitness,5,kinghenryv,1599\nfollow,5,kinghenryv,1599\ngreatness,5,kinghenryv,1599\ncorporal,5,kinghenryv,1599\nten,5,kinghenryv,1599\noaths,5,kinghenryv,1599\nth',5,kinghenryv,1599\npridge,5,kinghenryv,1599\ndit,5,kinghenryv,1599\nAlencon,6,kinghenryv,1599\nJohn,6,kinghenryv,1599\nHear,6,kinghenryv,1599\nNever,6,kinghenryv,1599\nChrish,6,kinghenryv,1599\nTell,6,kinghenryv,1599\nnaked,6,kinghenryv,1599\nthroat,6,kinghenryv,1599\nrun,6,kinghenryv,1599\ncare,6,kinghenryv,1599\nish,6,kinghenryv,1599\nsubjects,6,kinghenryv,1599\nblack,6,kinghenryv,1599\nyield,6,kinghenryv,1599\nsworn,6,kinghenryv,1599\nbridge,6,kinghenryv,1599\nvile,6,kinghenryv,1599\noffice,6,kinghenryv,1599\nFollow,6,kinghenryv,1599\nmorning,6,kinghenryv,1599\nbed,6,kinghenryv,1599\nmeans,6,kinghenryv,1599\nheads,6,kinghenryv,1599\ngold,6,kinghenryv,1599\nfields,6,kinghenryv,1599\nweak,6,kinghenryv,1599\nimperial,6,kinghenryv,1599\ngud,6,kinghenryv,1599\ntongue,6,kinghenryv,1599\nriver,6,kinghenryv,1599\ni',6,kinghenryv,1599\nFortune,6,kinghenryv,1599\nexcellent,6,kinghenryv,1599\nneeds,6,kinghenryv,1599\nJAMY,6,kinghenryv,1599\nMontjoy,6,kinghenryv,1599\nMacmorris,6,kinghenryv,1599\nAlexander,6,kinghenryv,1599\nbodies,6,kinghenryv,1599\nma,6,kinghenryv,1599\nwhereof,6,kinghenryv,1599\nearth,6,kinghenryv,1599\nplace,6,kinghenryv,1599\nmen's,6,kinghenryv,1599\nhard,6,kinghenryv,1599\nnation,6,kinghenryv,1599\npraise,6,kinghenryv,1599\ncourse,6,kinghenryv,1599\nUnder,6,kinghenryv,1599\nbrothers,6,kinghenryv,1599\nhast,6,kinghenryv,1599\nAlarum,6,kinghenryv,1599\nnew,6,kinghenryv,1599\nchange,6,kinghenryv,1599\nnobles,6,kinghenryv,1599\nfar,6,kinghenryv,1599\nindeed,6,kinghenryv,1599\nLords,6,kinghenryv,1599\nnote,6,kinghenryv,1599\nours,6,kinghenryv,1599\nborne,6,kinghenryv,1599\nAgincourt,6,kinghenryv,1599\nDoth,6,kinghenryv,1599\nquestion,6,kinghenryv,1599\nmark,6,kinghenryv,1599\nWere,6,kinghenryv,1599\narmy,6,kinghenryv,1599\noath,6,kinghenryv,1599\nrage,6,kinghenryv,1599\nEven,6,kinghenryv,1599\nfly,6,kinghenryv,1599\ncompany,6,kinghenryv,1599\ndat,6,kinghenryv,1599\nreason,6,kinghenryv,1599\ngiven,6,kinghenryv,1599\nargument,6,kinghenryv,1599\nHerald,6,kinghenryv,1599\nlives,6,kinghenryv,1599\nPrince,6,kinghenryv,1599\nseek,6,kinghenryv,1599\nheels,6,kinghenryv,1599\nreturn,6,kinghenryv,1599\ntogether,6,kinghenryv,1599\nsent,6,kinghenryv,1599\npurpose,6,kinghenryv,1599\nforces,6,kinghenryv,1599\nstraight,6,kinghenryv,1599\nmakes,6,kinghenryv,1599\nSince,6,kinghenryv,1599\nfashion,6,kinghenryv,1599\nMay,6,kinghenryv,1599\ndukedoms,6,kinghenryv,1599\nnumbers,6,kinghenryv,1599\nMACMORRIS,6,kinghenryv,1599\nDid,6,kinghenryv,1599\nTake,6,kinghenryv,1599\npower,6,kinghenryv,1599\norder,6,kinghenryv,1599\nwomen,6,kinghenryv,1599\nCambridge,7,kinghenryv,1599\ndays,7,kinghenryv,1599\nwithal,7,kinghenryv,1599\ntruth,7,kinghenryv,1599\nGloucester,7,kinghenryv,1599\nyourself,7,kinghenryv,1599\ngracious,7,kinghenryv,1599\nanother,7,kinghenryv,1599\nsit,7,kinghenryv,1599\nset,7,kinghenryv,1599\nlooks,7,kinghenryv,1599\nturn,7,kinghenryv,1599\ndaughter,7,kinghenryv,1599\nfault,7,kinghenryv,1599\nterms,7,kinghenryv,1599\nothers,7,kinghenryv,1599\nceremony,7,kinghenryv,1599\nknights,7,kinghenryv,1599\nhence,7,kinghenryv,1599\nmatter,7,kinghenryv,1599\ntent,7,kinghenryv,1599\nelse,7,kinghenryv,1599\neach,7,kinghenryv,1599\nhas,7,kinghenryv,1599\npay,7,kinghenryv,1599\nboy,7,kinghenryv,1599\nJe,7,kinghenryv,1599\nbid,7,kinghenryv,1599\ndost,7,kinghenryv,1599\njust,7,kinghenryv,1599\nfingres,7,kinghenryv,1599\nen,7,kinghenryv,1599\nhands,7,kinghenryv,1599\nYes,7,kinghenryv,1599\ntwenty,7,kinghenryv,1599\nhalf,7,kinghenryv,1599\npale,7,kinghenryv,1599\nprince,7,kinghenryv,1599\nfoul,7,kinghenryv,1599\npresent,7,kinghenryv,1599\narmour,7,kinghenryv,1599\nnative,7,kinghenryv,1599\nMonmouth,7,kinghenryv,1599\nstrike,7,kinghenryv,1599\nThou,7,kinghenryv,1599\nmyself,7,kinghenryv,1599\ncourage,7,kinghenryv,1599\nAll,7,kinghenryv,1599\nthere's,7,kinghenryv,1599\nfather's,7,kinghenryv,1599\nsall,7,kinghenryv,1599\nsays,7,kinghenryv,1599\nGower,7,kinghenryv,1599\nThus,7,kinghenryv,1599\nWARWICK,7,kinghenryv,1599\ncoming,7,kinghenryv,1599\nhappy,7,kinghenryv,1599\nhumour,7,kinghenryv,1599\ngallant,7,kinghenryv,1599\nquit,7,kinghenryv,1599\nSALISBURY,7,kinghenryv,1599\nperson,7,kinghenryv,1599\near,7,kinghenryv,1599\nelbow,7,kinghenryv,1599\ndisciplines,7,kinghenryv,1599\ndog,7,kinghenryv,1599\nNay,8,kinghenryv,1599\nhell,8,kinghenryv,1599\nISABEL,8,kinghenryv,1599\noffer,8,kinghenryv,1599\nunder,8,kinghenryv,1599\nWould,8,kinghenryv,1599\nbreach,8,kinghenryv,1599\ncharge,8,kinghenryv,1599\nGive,8,kinghenryv,1599\ntown,8,kinghenryv,1599\nwarrant,8,kinghenryv,1599\nbody,8,kinghenryv,1599\nsea,8,kinghenryv,1599\nwithin,8,kinghenryv,1599\nnails,8,kinghenryv,1599\nOn,8,kinghenryv,1599\nenter,8,kinghenryv,1599\nDieu,8,kinghenryv,1599\nLike,8,kinghenryv,1599\nair,8,kinghenryv,1599\nBOURBON,8,kinghenryv,1599\nlost,8,kinghenryv,1599\nYet,8,kinghenryv,1599\nthrice,8,kinghenryv,1599\nplain,8,kinghenryv,1599\nfoot,8,kinghenryv,1599\nmouth,8,kinghenryv,1599\nyouth,8,kinghenryv,1599\nend,8,kinghenryv,1599\ndidst,8,kinghenryv,1599\nbloody,8,kinghenryv,1599\nstill,8,kinghenryv,1599\nbeseech,8,kinghenryv,1599\nheard,8,kinghenryv,1599\nsave,8,kinghenryv,1599\nbetween,8,kinghenryv,1599\nserve,8,kinghenryv,1599\nUnto,8,kinghenryv,1599\ntill,8,kinghenryv,1599\nkiss,8,kinghenryv,1599\nhope,8,kinghenryv,1599\npardon,8,kinghenryv,1599\nQUEEN,8,kinghenryv,1599\nhearts,8,kinghenryv,1599\nwe'll,8,kinghenryv,1599\nEdward,8,kinghenryv,1599\ncold,8,kinghenryv,1599\nfirst,8,kinghenryv,1599\nBefore,8,kinghenryv,1599\ndare,8,kinghenryv,1599\nshalt,8,kinghenryv,1599\nbrave,9,kinghenryv,1599\nmeet,9,kinghenryv,1599\no'er,9,kinghenryv,1599\nRAMBURES,9,kinghenryv,1599\nappear,9,kinghenryv,1599\ncame,9,kinghenryv,1599\nmadame,9,kinghenryv,1599\nsin,9,kinghenryv,1599\nenough,9,kinghenryv,1599\nafter,9,kinghenryv,1599\nheaven,9,kinghenryv,1599\nThough,9,kinghenryv,1599\nvoice,9,kinghenryv,1599\ndesire,9,kinghenryv,1599\nparts,9,kinghenryv,1599\nAy,9,kinghenryv,1599\nBardolph,9,kinghenryv,1599\nKatharine,9,kinghenryv,1599\nSaint,9,kinghenryv,1599\nsaid,9,kinghenryv,1599\nleft,9,kinghenryv,1599\nBATES,9,kinghenryv,1599\ndevil,9,kinghenryv,1599\nhot,9,kinghenryv,1599\nfour,9,kinghenryv,1599\nThan,9,kinghenryv,1599\nSalique,9,kinghenryv,1599\nmarch,9,kinghenryv,1599\nDUKE,9,kinghenryv,1599\nknave,9,kinghenryv,1599\nstand,9,kinghenryv,1599\nLondon,9,kinghenryv,1599\nfall,9,kinghenryv,1599\nvotre,9,kinghenryv,1599\neven,9,kinghenryv,1599\nhour,9,kinghenryv,1599\nlay,9,kinghenryv,1599\nalso,9,kinghenryv,1599\nswear,9,kinghenryv,1599\nkingdom,9,kinghenryv,1599\npour,9,kinghenryv,1599\nherald,9,kinghenryv,1599\nGREY,9,kinghenryv,1599\nMessenger,9,kinghenryv,1599\nfather,9,kinghenryv,1599\ntwo,9,kinghenryv,1599\nmoi,9,kinghenryv,1599\nCAMBRIDGE,9,kinghenryv,1599\nmight,9,kinghenryv,1599\nspirit,9,kinghenryv,1599\nFRENCH,10,kinghenryv,1599\nWhose,10,kinghenryv,1599\nNor,10,kinghenryv,1599\nNot,10,kinghenryv,1599\nson,10,kinghenryv,1599\ndoubt,10,kinghenryv,1599\nking's,10,kinghenryv,1599\nHarfleur,10,kinghenryv,1599\nblind,10,kinghenryv,1599\nBe,10,kinghenryv,1599\nkings,10,kinghenryv,1599\nII,10,kinghenryv,1599\nIs,10,kinghenryv,1599\nplay,10,kinghenryv,1599\nthat's,10,kinghenryv,1599\nil,10,kinghenryv,1599\nvalour,10,kinghenryv,1599\nart,10,kinghenryv,1599\nright,10,kinghenryv,1599\ngentle,10,kinghenryv,1599\nnone,10,kinghenryv,1599\nSir,10,kinghenryv,1599\nyours,10,kinghenryv,1599\nover,10,kinghenryv,1599\nsame,10,kinghenryv,1599\nthing,10,kinghenryv,1599\nwhy,10,kinghenryv,1599\nonly,10,kinghenryv,1599\nduke,10,kinghenryv,1599\nhost,10,kinghenryv,1599\nhome,10,kinghenryv,1599\nmaster,10,kinghenryv,1599\nuse,10,kinghenryv,1599\nSCROOP,10,kinghenryv,1599\nsweet,10,kinghenryv,1599\nleave,10,kinghenryv,1599\nERPINGHAM,10,kinghenryv,1599\nthoughts,10,kinghenryv,1599\nGreat,10,kinghenryv,1599\nWhere,10,kinghenryv,1599\nland,10,kinghenryv,1599\ncertain,10,kinghenryv,1599\nshame,10,kinghenryv,1599\nkind,10,kinghenryv,1599\nenemy,10,kinghenryv,1599\ntreason,11,kinghenryv,1599\nNym,11,kinghenryv,1599\nwords,11,kinghenryv,1599\nCome,11,kinghenryv,1599\nteach,11,kinghenryv,1599\nnothing,11,kinghenryv,1599\nabout,11,kinghenryv,1599\nsun,11,kinghenryv,1599\nHere,11,kinghenryv,1599\nservice,11,kinghenryv,1599\nclaim,11,kinghenryv,1599\nbring,11,kinghenryv,1599\nwish,11,kinghenryv,1599\nIII,11,kinghenryv,1599\nstay,11,kinghenryv,1599\nCharles,11,kinghenryv,1599\ndown,11,kinghenryv,1599\ncap,11,kinghenryv,1599\nput,11,kinghenryv,1599\nbeen,11,kinghenryv,1599\nGod's,11,kinghenryv,1599\nbear,11,kinghenryv,1599\nfaith,11,kinghenryv,1599\nest,11,kinghenryv,1599\nFrom,11,kinghenryv,1599\nagain,11,kinghenryv,1599\ncomes,11,kinghenryv,1599\nWell,11,kinghenryv,1599\nway,11,kinghenryv,1599\n'Tis,11,kinghenryv,1599\nknight,11,kinghenryv,1599\nthree,11,kinghenryv,1599\nwork,11,kinghenryv,1599\nlaw,11,kinghenryv,1599\ncaptain,11,kinghenryv,1599\nwhom,11,kinghenryv,1599\nlie,11,kinghenryv,1599\nmistress,12,kinghenryv,1599\nroyal,12,kinghenryv,1599\npeace,12,kinghenryv,1599\nhighness,12,kinghenryv,1599\ncall,12,kinghenryv,1599\nfight,12,kinghenryv,1599\nFluellen,12,kinghenryv,1599\nfriend,12,kinghenryv,1599\nIV,12,kinghenryv,1599\nvaliant,12,kinghenryv,1599\nwhose,12,kinghenryv,1599\nlong,12,kinghenryv,1599\nnoble,12,kinghenryv,1599\nmighty,12,kinghenryv,1599\nforth,12,kinghenryv,1599\nfew,12,kinghenryv,1599\nlords,12,kinghenryv,1599\neye,12,kinghenryv,1599\nmind,12,kinghenryv,1599\nfire,12,kinghenryv,1599\nthine,12,kinghenryv,1599\nold,12,kinghenryv,1599\nword,12,kinghenryv,1599\nuncle,12,kinghenryv,1599\nthousand,12,kinghenryv,1599\nhold,12,kinghenryv,1599\nback,12,kinghenryv,1599\nBURGUNDY,12,kinghenryv,1599\nsovereign,12,kinghenryv,1599\nbehold,12,kinghenryv,1599\nhis,268,kinghenryv,1599\nWill,13,kinghenryv,1599\nUpon,13,kinghenryv,1599\nfriends,13,kinghenryv,1599\nBEDFORD,13,kinghenryv,1599\nconscience,13,kinghenryv,1599\nhead,13,kinghenryv,1599\nagainst,13,kinghenryv,1599\ncause,13,kinghenryv,1599\nfellow,13,kinghenryv,1599\nboth,13,kinghenryv,1599\nGood,13,kinghenryv,1599\ncrowns,13,kinghenryv,1599\nill,13,kinghenryv,1599\npart,13,kinghenryv,1599\narm,13,kinghenryv,1599\nmock,13,kinghenryv,1599\nshow,13,kinghenryv,1599\nleek,13,kinghenryv,1599\nthrough,13,kinghenryv,1599\nthings,13,kinghenryv,1599\nnor,13,kinghenryv,1599\nsoldiers,13,kinghenryv,1599\nconstable,13,kinghenryv,1599\nonce,13,kinghenryv,1599\nPistol,13,kinghenryv,1599\nransom,13,kinghenryv,1599\never,13,kinghenryv,1599\ngentleman,13,kinghenryv,1599\nunto,13,kinghenryv,1599\neyes,13,kinghenryv,1599\nthus,13,kinghenryv,1599\nWhen,13,kinghenryv,1599\ncamp,14,kinghenryv,1599\nfear,14,kinghenryv,1599\nDe,14,kinghenryv,1599\nhad,14,kinghenryv,1599\ndone,14,kinghenryv,1599\nthough,14,kinghenryv,1599\nExeter,14,kinghenryv,1599\nwhere,14,kinghenryv,1599\nhigh,14,kinghenryv,1599\ncut,14,kinghenryv,1599\nbattle,14,kinghenryv,1599\nChorus,14,kinghenryv,1599\ncrown,14,kinghenryv,1599\nsoul,15,kinghenryv,1599\nWESTMORELAND,15,kinghenryv,1599\nlife,15,kinghenryv,1599\nSoldier,15,kinghenryv,1599\ndeath,15,kinghenryv,1599\nMONTJOY,15,kinghenryv,1599\nwars,15,kinghenryv,1599\nDo,15,kinghenryv,1599\nGo,15,kinghenryv,1599\nOr,15,kinghenryv,1599\ndear,15,kinghenryv,1599\ncousin,15,kinghenryv,1599\nque,15,kinghenryv,1599\nmade,15,kinghenryv,1599\nwho,15,kinghenryv,1599\nface,15,kinghenryv,1599\nhundred,15,kinghenryv,1599\nplease,15,kinghenryv,1599\nbeing,15,kinghenryv,1599\nlive,15,kinghenryv,1599\ndie,15,kinghenryv,1599\nthought,16,kinghenryv,1599\npray,16,kinghenryv,1599\nworld,16,kinghenryv,1599\nmercy,16,kinghenryv,1599\nhear,16,kinghenryv,1599\nOur,16,kinghenryv,1599\nThere,16,kinghenryv,1599\nsword,16,kinghenryv,1599\nHis,16,kinghenryv,1599\nwear,16,kinghenryv,1599\nthose,16,kinghenryv,1599\nmine,16,kinghenryv,1599\nThey,16,kinghenryv,1599\nFRANCE,16,kinghenryv,1599\nmorrow,16,kinghenryv,1599\nown,16,kinghenryv,1599\nfind,16,kinghenryv,1599\nGLOUCESTER,16,kinghenryv,1599\nELY,16,kinghenryv,1599\nbrother,17,kinghenryv,1599\nWhy,17,kinghenryv,1599\naway,17,kinghenryv,1599\nHostess,17,kinghenryv,1599\nDauphin,17,kinghenryv,1599\nla,17,kinghenryv,1599\nkeep,17,kinghenryv,1599\nI'll,17,kinghenryv,1599\ncould,17,kinghenryv,1599\nles,17,kinghenryv,1599\neat,17,kinghenryv,1599\nhorse,18,kinghenryv,1599\nDuke,18,kinghenryv,1599\nhonour,18,kinghenryv,1599\na',18,kinghenryv,1599\nThis,18,kinghenryv,1599\nglove,18,kinghenryv,1599\ntrue,18,kinghenryv,1599\nother,18,kinghenryv,1599\nWho,19,kinghenryv,1599\nprinces,19,kinghenryv,1599\ntherefore,19,kinghenryv,1599\nNo,19,kinghenryv,1599\nnight,19,kinghenryv,1599\ndead,19,kinghenryv,1599\nTherefore,19,kinghenryv,1599\nbefore,19,kinghenryv,1599\noff,19,kinghenryv,1599\npoor,19,kinghenryv,1599\nhimself,19,kinghenryv,1599\nanswer,20,kinghenryv,1599\nevery,20,kinghenryv,1599\nshe,20,kinghenryv,1599\nbetter,20,kinghenryv,1599\nHarry,20,kinghenryv,1599\nbest,20,kinghenryv,1599\nBARDOLPH,20,kinghenryv,1599\nle,20,kinghenryv,1599\nhow,20,kinghenryv,1599\nfield,20,kinghenryv,1599\nlittle,20,kinghenryv,1599\nYour,20,kinghenryv,1599\nShall,20,kinghenryv,1599\nliege,20,kinghenryv,1599\ncannot,20,kinghenryv,1599\nExit,20,kinghenryv,1599\nsoldier,21,kinghenryv,1599\nIn,21,kinghenryv,1599\nWhich,21,kinghenryv,1599\net,21,kinghenryv,1599\nje,21,kinghenryv,1599\nvery,21,kinghenryv,1599\nCaptain,21,kinghenryv,1599\nNow,22,kinghenryv,1599\nCANTERBURY,22,kinghenryv,1599\nspeak,22,kinghenryv,1599\nLord,22,kinghenryv,1599\nmany,22,kinghenryv,1599\nwar,22,kinghenryv,1599\nLet,22,kinghenryv,1599\nHe,23,kinghenryv,1599\ncan,23,kinghenryv,1599\ngrace,23,kinghenryv,1599\nKing,23,kinghenryv,1599\nThen,23,kinghenryv,1599\nmuch,24,kinghenryv,1599\nfull,24,kinghenryv,1599\nheart,24,kinghenryv,1599\nBoy,24,kinghenryv,1599\ntime,24,kinghenryv,1599\ntoo,24,kinghenryv,1599\nSCENE,24,kinghenryv,1599\n'tis,25,kinghenryv,1599\nvous,25,kinghenryv,1599\nHow,25,kinghenryv,1599\nthink,25,kinghenryv,1599\nNYM,25,kinghenryv,1599\nthese,26,kinghenryv,1599\nBy,26,kinghenryv,1599\nam,26,kinghenryv,1599\nALICE,26,kinghenryv,1599\ndoth,27,kinghenryv,1599\ngo,27,kinghenryv,1599\nACT,27,kinghenryv,1599\nmake,28,kinghenryv,1599\nhere,29,kinghenryv,1599\nname,29,kinghenryv,1599\nIt,29,kinghenryv,1599\nthan,31,kinghenryv,1599\nOf,31,kinghenryv,1599\nExeunt,31,kinghenryv,1599\nSo,31,kinghenryv,1599\nyet,31,kinghenryv,1599\nKate,31,kinghenryv,1599\nfair,31,kinghenryv,1599\n',32,kinghenryv,1599\nWILLIAMS,32,kinghenryv,1599\nOF,32,kinghenryv,1599\nlook,32,kinghenryv,1599\nhand,32,kinghenryv,1599\nA,33,kinghenryv,1599\nsay,33,kinghenryv,1599\nsome,33,kinghenryv,1599\nIf,33,kinghenryv,1599\nYou,33,kinghenryv,1599\nEXETER,33,kinghenryv,1599\nsuch,34,kinghenryv,1599\nORLEANS,34,kinghenryv,1599\nwere,34,kinghenryv,1599\ncome,34,kinghenryv,1599\nnever,35,kinghenryv,1599\nMy,35,kinghenryv,1599\nblood,35,kinghenryv,1599\nWe,35,kinghenryv,1599\nlord,35,kinghenryv,1599\nGOWER,35,kinghenryv,1599\nwhen,35,kinghenryv,1599\ninto,36,kinghenryv,1599\nWhat,36,kinghenryv,1599\nsee,37,kinghenryv,1599\nWith,37,kinghenryv,1599\ngive,37,kinghenryv,1599\nDAUPHIN,37,kinghenryv,1599\nKATHARINE,37,kinghenryv,1599\nlet,38,kinghenryv,1599\nshould,39,kinghenryv,1599\ngreat,39,kinghenryv,1599\nwhat,39,kinghenryv,1599\nmost,40,kinghenryv,1599\ntake,40,kinghenryv,1599\ntell,41,kinghenryv,1599\nup,41,kinghenryv,1599\nmajesty,41,kinghenryv,1599\ndid,41,kinghenryv,1599\nand,809,kinghenryv,1599\nAs,42,kinghenryv,1599\nany,42,kinghenryv,1599\nlove,42,kinghenryv,1599\nmen,42,kinghenryv,1599\nher,43,kinghenryv,1599\nwell,43,kinghenryv,1599\nthen,44,kinghenryv,1599\nmust,45,kinghenryv,1599\nwhich,47,kinghenryv,1599\nknow,48,kinghenryv,1599\nConstable,48,kinghenryv,1599\nout,48,kinghenryv,1599\nmore,49,kinghenryv,1599\nwas,49,kinghenryv,1599\nday,50,kinghenryv,1599\nEnglish,50,kinghenryv,1599\nman,50,kinghenryv,1599\nO,51,kinghenryv,1599\nlike,51,kinghenryv,1599\nEngland,51,kinghenryv,1599\nupon,52,kinghenryv,1599\nhath,52,kinghenryv,1599\nthere,53,kinghenryv,1599\nor,53,kinghenryv,1599\none,53,kinghenryv,1599\nan,54,kinghenryv,1599\nBut,55,kinghenryv,1599\nFor,57,kinghenryv,1599\nmay,57,kinghenryv,1599\nwould,57,kinghenryv,1599\nGod,58,kinghenryv,1599\nthee,61,kinghenryv,1599\nEnter,61,kinghenryv,1599\nno,64,kinghenryv,1599\nfrom,68,kinghenryv,1599\nFrench,69,kinghenryv,1599\nTo,69,kinghenryv,1599\nthy,70,kinghenryv,1599\nde,71,kinghenryv,1599\nnow,71,kinghenryv,1599\nPISTOL,72,kinghenryv,1599\nking,75,kinghenryv,1599\nby,76,kinghenryv,1599\nFLUELLEN,77,kinghenryv,1599\nat,77,kinghenryv,1599\nif,77,kinghenryv,1599\ngood,78,kinghenryv,1599\nyou,334,kinghenryv,1599\nThat,79,kinghenryv,1599\non,80,kinghenryv,1599\nthem,82,kinghenryv,1599\nis,339,kinghenryv,1599\nthey,85,kinghenryv,1599\ndo,85,kinghenryv,1599\nus,90,kinghenryv,1599\nare,96,kinghenryv,1599\nthou,98,kinghenryv,1599\nFrance,105,kinghenryv,1599\nshall,109,kinghenryv,1599\nbut,110,kinghenryv,1599\ntheir,114,kinghenryv,1599\nso,118,kinghenryv,1599\na,379,kinghenryv,1599\nall,126,kinghenryv,1599\nhave,129,kinghenryv,1599\nwe,133,kinghenryv,1599\nthis,136,kinghenryv,1599\nhim,136,kinghenryv,1599\nhe,144,kinghenryv,1599\nThe,148,kinghenryv,1599\nin,404,kinghenryv,1599\nas,156,kinghenryv,1599\nme,159,kinghenryv,1599\nour,162,kinghenryv,1599\nof,675,kinghenryv,1599\nbe,168,kinghenryv,1599\nthe,937,kinghenryv,1599\nwill,173,kinghenryv,1599\nV,185,kinghenryv,1599\nnot,190,kinghenryv,1599\nHENRY,191,kinghenryv,1599\nAnd,195,kinghenryv,1599\nfor,199,kinghenryv,1599\nI,456,kinghenryv,1599\nwith,206,kinghenryv,1599\nyour,209,kinghenryv,1599\nKING,217,kinghenryv,1599\nto,473,kinghenryv,1599\nit,222,kinghenryv,1599\nthat,233,kinghenryv,1599\nmy,247,kinghenryv,1599\nintermission,1,asyoulikeit,1599\nOppress'd,1,asyoulikeit,1599\nreligion,1,asyoulikeit,1599\nschooled,1,asyoulikeit,1599\ncage,1,asyoulikeit,1599\ntimber,1,asyoulikeit,1599\nTime's,1,asyoulikeit,1599\nsleeve,1,asyoulikeit,1599\ngalled,1,asyoulikeit,1599\nSestos,1,asyoulikeit,1599\nviolated,1,asyoulikeit,1599\nwherever,1,asyoulikeit,1599\neffeminate,1,asyoulikeit,1599\nmoral,1,asyoulikeit,1599\nrelief,1,asyoulikeit,1599\nwitness'd,1,asyoulikeit,1599\nvenomous,1,asyoulikeit,1599\nswords,1,asyoulikeit,1599\nwaywarder,1,asyoulikeit,1599\nmeed,1,asyoulikeit,1599\ntripped,1,asyoulikeit,1599\nYouth,1,asyoulikeit,1599\nbonny,1,asyoulikeit,1599\nmisplaced,1,asyoulikeit,1599\nlawyers,1,asyoulikeit,1599\nm,1,asyoulikeit,1599\nsmiles,1,asyoulikeit,1599\npeoples,1,asyoulikeit,1599\ndrop,1,asyoulikeit,1599\ninfant,1,asyoulikeit,1599\ninfected,1,asyoulikeit,1599\nlamely,1,asyoulikeit,1599\ndescription,1,asyoulikeit,1599\nreckonings,1,asyoulikeit,1599\ncopulation,1,asyoulikeit,1599\nverge,1,asyoulikeit,1599\nnecessities,1,asyoulikeit,1599\nspeech,1,asyoulikeit,1599\ntremble,1,asyoulikeit,1599\nweasel,1,asyoulikeit,1599\nDevise,1,asyoulikeit,1599\nForesters,1,asyoulikeit,1599\npageants,1,asyoulikeit,1599\nwrit,1,asyoulikeit,1599\nspan,1,asyoulikeit,1599\nraw,1,asyoulikeit,1599\nburn'd,1,asyoulikeit,1599\nCoursed,1,asyoulikeit,1599\ndiscord,1,asyoulikeit,1599\nrat,1,asyoulikeit,1599\nbusiness,1,asyoulikeit,1599\nlawyer's,1,asyoulikeit,1599\nespecially,1,asyoulikeit,1599\nlament,1,asyoulikeit,1599\npeasant,1,asyoulikeit,1599\nFie,1,asyoulikeit,1599\nbiscuit,1,asyoulikeit,1599\ntorn,1,asyoulikeit,1599\nram,1,asyoulikeit,1599\nroyal,1,asyoulikeit,1599\nbrows,1,asyoulikeit,1599\nlawful,1,asyoulikeit,1599\nWhether,1,asyoulikeit,1599\nunborn,1,asyoulikeit,1599\nfainting,1,asyoulikeit,1599\nWearying,1,asyoulikeit,1599\nhaste,1,asyoulikeit,1599\nlongs,1,asyoulikeit,1599\ndistill'd,1,asyoulikeit,1599\nrobs,1,asyoulikeit,1599\nsearching,1,asyoulikeit,1599\nrascal,1,asyoulikeit,1599\nshoulders,1,asyoulikeit,1599\nSweetest,1,asyoulikeit,1599\nbranch,1,asyoulikeit,1599\nheart's,1,asyoulikeit,1599\nwestern,1,asyoulikeit,1599\ndotes,1,asyoulikeit,1599\ncommenting,1,asyoulikeit,1599\nBear,1,asyoulikeit,1599\nimpressure,1,asyoulikeit,1599\nbutchery,1,asyoulikeit,1599\neasily,1,asyoulikeit,1599\nroad,1,asyoulikeit,1599\nspace,1,asyoulikeit,1599\nexpress,1,asyoulikeit,1599\nneighbour's,1,asyoulikeit,1599\nbutchers,1,asyoulikeit,1599\nsimples,1,asyoulikeit,1599\nboys,1,asyoulikeit,1599\nhandkercher,1,asyoulikeit,1599\njot,1,asyoulikeit,1599\nfoster,1,asyoulikeit,1599\nsleeps,1,asyoulikeit,1599\ndespiser,1,asyoulikeit,1599\ncuckoldly,1,asyoulikeit,1599\nStay,1,asyoulikeit,1599\nswiftly,1,asyoulikeit,1599\ndish,1,asyoulikeit,1599\nsingle,1,asyoulikeit,1599\nfrowning,1,asyoulikeit,1599\nMeaning,1,asyoulikeit,1599\nsisters,1,asyoulikeit,1599\nTell,1,asyoulikeit,1599\npenalty,1,asyoulikeit,1599\nbeest,1,asyoulikeit,1599\nmidsummer,1,asyoulikeit,1599\ncontract,1,asyoulikeit,1599\nthorny,1,asyoulikeit,1599\nphilosophy,1,asyoulikeit,1599\n'Come,1,asyoulikeit,1599\nfinger,1,asyoulikeit,1599\nherd,1,asyoulikeit,1599\ntheatre,1,asyoulikeit,1599\nquintain,1,asyoulikeit,1599\nspake,1,asyoulikeit,1599\nlodging,1,asyoulikeit,1599\no'erheard,1,asyoulikeit,1599\nblossom,1,asyoulikeit,1599\nprisoner,1,asyoulikeit,1599\nsighs,1,asyoulikeit,1599\nerrand,1,asyoulikeit,1599\nUnclaim'd,1,asyoulikeit,1599\ninstrument,1,asyoulikeit,1599\nwhipped,1,asyoulikeit,1599\nproperer,1,asyoulikeit,1599\nrib,1,asyoulikeit,1599\nfought,1,asyoulikeit,1599\nhanged,1,asyoulikeit,1599\nslander,1,asyoulikeit,1599\nsugar,1,asyoulikeit,1599\nappear,1,asyoulikeit,1599\n'holla',1,asyoulikeit,1599\nflow,1,asyoulikeit,1599\nHelen's,1,asyoulikeit,1599\nsayings,1,asyoulikeit,1599\nalthough,1,asyoulikeit,1599\nshelter,1,asyoulikeit,1599\nEre,1,asyoulikeit,1599\nderive,1,asyoulikeit,1599\nstretched,1,asyoulikeit,1599\ncharter,1,asyoulikeit,1599\nprey,1,asyoulikeit,1599\nodes,1,asyoulikeit,1599\nProvided,1,asyoulikeit,1599\nunbuttoned,1,asyoulikeit,1599\nyonder,1,asyoulikeit,1599\nrye,1,asyoulikeit,1599\npress,1,asyoulikeit,1599\nsolemnized,1,asyoulikeit,1599\ndappled,1,asyoulikeit,1599\nlieu,1,asyoulikeit,1599\nlively,1,asyoulikeit,1599\nrail'd,1,asyoulikeit,1599\nodds,1,asyoulikeit,1599\npick,1,asyoulikeit,1599\npleasures,1,asyoulikeit,1599\nlied,1,asyoulikeit,1599\napter,1,asyoulikeit,1599\nAbhor,1,asyoulikeit,1599\nWhom,1,asyoulikeit,1599\nwainscot,1,asyoulikeit,1599\ninsult,1,asyoulikeit,1599\nbaggage,1,asyoulikeit,1599\ngoest,1,asyoulikeit,1599\nthousandth,1,asyoulikeit,1599\nPERSONAE,1,asyoulikeit,1599\nrescued,1,asyoulikeit,1599\nclamorous,1,asyoulikeit,1599\nspare,1,asyoulikeit,1599\ncart,1,asyoulikeit,1599\nBuckles,1,asyoulikeit,1599\nmingled,1,asyoulikeit,1599\nsaves,1,asyoulikeit,1599\ncase,1,asyoulikeit,1599\nearly,1,asyoulikeit,1599\nsoftly,1,asyoulikeit,1599\npleasing,1,asyoulikeit,1599\nindirect,1,asyoulikeit,1599\nlustre,1,asyoulikeit,1599\nadoration,1,asyoulikeit,1599\nsanctified,1,asyoulikeit,1599\nPoor,1,asyoulikeit,1599\nirks,1,asyoulikeit,1599\nOver,1,asyoulikeit,1599\ncounter,1,asyoulikeit,1599\nchid,1,asyoulikeit,1599\npractises,1,asyoulikeit,1599\ninconstant,1,asyoulikeit,1599\ndisdain,1,asyoulikeit,1599\nvidelicit,1,asyoulikeit,1599\nmatter's,1,asyoulikeit,1599\ngiant,1,asyoulikeit,1599\neverything,1,asyoulikeit,1599\nfeels,1,asyoulikeit,1599\nresidue,1,asyoulikeit,1599\nslept,1,asyoulikeit,1599\nremember'st,1,asyoulikeit,1599\nseconded,1,asyoulikeit,1599\nconfusion,1,asyoulikeit,1599\nmatters,1,asyoulikeit,1599\nrelieve,1,asyoulikeit,1599\nBegone,1,asyoulikeit,1599\ndance,1,asyoulikeit,1599\noutside,1,asyoulikeit,1599\nhour's,1,asyoulikeit,1599\nsorrows,1,asyoulikeit,1599\npurposely,1,asyoulikeit,1599\nbuying,1,asyoulikeit,1599\nhuntress',1,asyoulikeit,1599\npilgrimage,1,asyoulikeit,1599\nCaesar's,1,asyoulikeit,1599\nbottomless,1,asyoulikeit,1599\nresolve,1,asyoulikeit,1599\nlosest,1,asyoulikeit,1599\nquintessence,1,asyoulikeit,1599\ninjure,1,asyoulikeit,1599\nlimb,1,asyoulikeit,1599\ngracious,1,asyoulikeit,1599\nOvid,1,asyoulikeit,1599\ninjury,1,asyoulikeit,1599\nbrothers',1,asyoulikeit,1599\novercome,1,asyoulikeit,1599\nMuch,1,asyoulikeit,1599\nfunction,1,asyoulikeit,1599\nheap,1,asyoulikeit,1599\npossessed,1,asyoulikeit,1599\ndiffers,1,asyoulikeit,1599\nheal,1,asyoulikeit,1599\nKnow'st,1,asyoulikeit,1599\ndrew,1,asyoulikeit,1599\nworthier,1,asyoulikeit,1599\nsententious,1,asyoulikeit,1599\ncontrive,1,asyoulikeit,1599\noffenders,1,asyoulikeit,1599\nwants,1,asyoulikeit,1599\nvoices,1,asyoulikeit,1599\npolicy,1,asyoulikeit,1599\ngolden,1,asyoulikeit,1599\nsoil,1,asyoulikeit,1599\ngross,1,asyoulikeit,1599\nteacheth,1,asyoulikeit,1599\nofficers,1,asyoulikeit,1599\nfinding,1,asyoulikeit,1599\njour,1,asyoulikeit,1599\nchimney,1,asyoulikeit,1599\nrites,1,asyoulikeit,1599\nEthiope,1,asyoulikeit,1599\nbrotherly,1,asyoulikeit,1599\nteach,1,asyoulikeit,1599\nnoise,1,asyoulikeit,1599\ntaxing,1,asyoulikeit,1599\nweights,1,asyoulikeit,1599\ngiddiness,1,asyoulikeit,1599\npurity,1,asyoulikeit,1599\nlesser,1,asyoulikeit,1599\nbush's,1,asyoulikeit,1599\nboar,1,asyoulikeit,1599\nsimpering,1,asyoulikeit,1599\ncoroners,1,asyoulikeit,1599\npatterns,1,asyoulikeit,1599\nGentle,1,asyoulikeit,1599\ninvectively,1,asyoulikeit,1599\nanatomized,1,asyoulikeit,1599\nmounts,1,asyoulikeit,1599\ndiscovery,1,asyoulikeit,1599\n'many,1,asyoulikeit,1599\ndeserve,1,asyoulikeit,1599\npillow,1,asyoulikeit,1599\noutface,1,asyoulikeit,1599\nwags,1,asyoulikeit,1599\nhandling,1,asyoulikeit,1599\nseeking,1,asyoulikeit,1599\nplucked,1,asyoulikeit,1599\nsix,1,asyoulikeit,1599\nshamed,1,asyoulikeit,1599\nFrederick's,1,asyoulikeit,1599\n'ducdame',1,asyoulikeit,1599\njumps,1,asyoulikeit,1599\ncompliment,1,asyoulikeit,1599\nerst,1,asyoulikeit,1599\nspheres,1,asyoulikeit,1599\nhistory,1,asyoulikeit,1599\ndeer's,1,asyoulikeit,1599\nextracted,1,asyoulikeit,1599\nconceive,1,asyoulikeit,1599\nfaithfully,1,asyoulikeit,1599\nreturned,1,asyoulikeit,1599\ncourtly,1,asyoulikeit,1599\nimpossible,1,asyoulikeit,1599\ntapster,1,asyoulikeit,1599\nchallengers,1,asyoulikeit,1599\nlight,1,asyoulikeit,1599\nkey,1,asyoulikeit,1599\nages,1,asyoulikeit,1599\nChange,1,asyoulikeit,1599\nfleet,1,asyoulikeit,1599\nbastard,1,asyoulikeit,1599\ntooth,1,asyoulikeit,1599\nwalk,1,asyoulikeit,1599\nsunken,1,asyoulikeit,1599\n'Thank,1,asyoulikeit,1599\nHerein,1,asyoulikeit,1599\nmocking,1,asyoulikeit,1599\ntouched,1,asyoulikeit,1599\ntraveller,1,asyoulikeit,1599\nPythagoras',1,asyoulikeit,1599\nPraising,1,asyoulikeit,1599\nshe'll,1,asyoulikeit,1599\nlanguish,1,asyoulikeit,1599\nthatched,1,asyoulikeit,1599\ndiminish,1,asyoulikeit,1599\npeevish,1,asyoulikeit,1599\nintendment,1,asyoulikeit,1599\ndisabled,1,asyoulikeit,1599\nfringe,1,asyoulikeit,1599\ndisposed,1,asyoulikeit,1599\nabused,1,asyoulikeit,1599\nThinking,1,asyoulikeit,1599\nactor,1,asyoulikeit,1599\nbirds,1,asyoulikeit,1599\nwheresoever,1,asyoulikeit,1599\ncombine,1,asyoulikeit,1599\nembrace,1,asyoulikeit,1599\npigeon,1,asyoulikeit,1599\nconfirmer,1,asyoulikeit,1599\nscorn'd,1,asyoulikeit,1599\nchanticleer,1,asyoulikeit,1599\nexceeded,1,asyoulikeit,1599\njustices,1,asyoulikeit,1599\nskill,1,asyoulikeit,1599\nerring,1,asyoulikeit,1599\nsworn,1,asyoulikeit,1599\n'a,1,asyoulikeit,1599\nmoralize,1,asyoulikeit,1599\nsubject,1,asyoulikeit,1599\nplenty,1,asyoulikeit,1599\npictures,1,asyoulikeit,1599\nDucdame,1,asyoulikeit,1599\nlooking,1,asyoulikeit,1599\nfangled,1,asyoulikeit,1599\nWas,1,asyoulikeit,1599\nunquestionable,1,asyoulikeit,1599\nnominate,1,asyoulikeit,1599\nkindle,1,asyoulikeit,1599\nattends,1,asyoulikeit,1599\nbrides,1,asyoulikeit,1599\nTheir,1,asyoulikeit,1599\ndarted,1,asyoulikeit,1599\nfleeces,1,asyoulikeit,1599\nhunter,1,asyoulikeit,1599\nhusks,1,asyoulikeit,1599\nOrchard,1,asyoulikeit,1599\nadversity,1,asyoulikeit,1599\nnecks,1,asyoulikeit,1599\nmiddle,1,asyoulikeit,1599\nInvest,1,asyoulikeit,1599\npitiful,1,asyoulikeit,1599\ngroans,1,asyoulikeit,1599\nparish,1,asyoulikeit,1599\nMusic,1,asyoulikeit,1599\nlambs,1,asyoulikeit,1599\nfaults,1,asyoulikeit,1599\nrecountments,1,asyoulikeit,1599\ndoubt,1,asyoulikeit,1599\nentame,1,asyoulikeit,1599\nAttendants,1,asyoulikeit,1599\nquittance,1,asyoulikeit,1599\nsends,1,asyoulikeit,1599\ndaughter's,1,asyoulikeit,1599\nsuck'd,1,asyoulikeit,1599\nbridegrooms,1,asyoulikeit,1599\nourselves,1,asyoulikeit,1599\nthieves,1,asyoulikeit,1599\ngoddesses,1,asyoulikeit,1599\nworst,1,asyoulikeit,1599\nperishest,1,asyoulikeit,1599\nesteem,1,asyoulikeit,1599\noffence,1,asyoulikeit,1599\nreap,1,asyoulikeit,1599\nmerit,1,asyoulikeit,1599\nmocks,1,asyoulikeit,1599\nwrong,1,asyoulikeit,1599\nso',1,asyoulikeit,1599\nThese,1,asyoulikeit,1599\nfight,1,asyoulikeit,1599\nquail,1,asyoulikeit,1599\nLearn,1,asyoulikeit,1599\nshowed,1,asyoulikeit,1599\nturning,1,asyoulikeit,1599\nFrance,1,asyoulikeit,1599\ncourtiers,1,asyoulikeit,1599\npiece,1,asyoulikeit,1599\nOut,1,asyoulikeit,1599\nOur,1,asyoulikeit,1599\nmonster,1,asyoulikeit,1599\nturf,1,asyoulikeit,1599\nprofess,1,asyoulikeit,1599\ndropped,1,asyoulikeit,1599\nPhebes,1,asyoulikeit,1599\ngipsies,1,asyoulikeit,1599\nbore,1,asyoulikeit,1599\nhabit,1,asyoulikeit,1599\nunbanded,1,asyoulikeit,1599\ncivil,1,asyoulikeit,1599\nkill'd,1,asyoulikeit,1599\ncomely,1,asyoulikeit,1599\nstammer,1,asyoulikeit,1599\nTurk,1,asyoulikeit,1599\nDestinies,1,asyoulikeit,1599\nabsence,1,asyoulikeit,1599\nparrot,1,asyoulikeit,1599\npoured,1,asyoulikeit,1599\nindented,1,asyoulikeit,1599\ndashed,1,asyoulikeit,1599\nbeggarly,1,asyoulikeit,1599\nomittance,1,asyoulikeit,1599\nloose,1,asyoulikeit,1599\nseeks,1,asyoulikeit,1599\nmark'd,1,asyoulikeit,1599\nWind,1,asyoulikeit,1599\nwhite,1,asyoulikeit,1599\nproperly,1,asyoulikeit,1599\npearl,1,asyoulikeit,1599\nunfaithful,1,asyoulikeit,1599\nencourage,1,asyoulikeit,1599\nflattered,1,asyoulikeit,1599\nsuppers,1,asyoulikeit,1599\npageant,1,asyoulikeit,1599\nthrasonical,1,asyoulikeit,1599\nusurpers,1,asyoulikeit,1599\nprinces,1,asyoulikeit,1599\nmouthed,1,asyoulikeit,1599\nwreathed,1,asyoulikeit,1599\nshining,1,asyoulikeit,1599\nstubbornness,1,asyoulikeit,1599\nHero,1,asyoulikeit,1599\nreverence,1,asyoulikeit,1599\nabove,1,asyoulikeit,1599\nfearful,1,asyoulikeit,1599\nsevere,1,asyoulikeit,1599\naccent,1,asyoulikeit,1599\nhooping,1,asyoulikeit,1599\nominous,1,asyoulikeit,1599\nrush,1,asyoulikeit,1599\npunish,1,asyoulikeit,1599\ncapricious,1,asyoulikeit,1599\nconned,1,asyoulikeit,1599\nnoblest,1,asyoulikeit,1599\nrecovers,1,asyoulikeit,1599\nclaim,1,asyoulikeit,1599\nrelish,1,asyoulikeit,1599\nsaucy,1,asyoulikeit,1599\nvictuall'd,1,asyoulikeit,1599\nmoonish,1,asyoulikeit,1599\nbaser,1,asyoulikeit,1599\nvenerable,1,asyoulikeit,1599\nFridays,1,asyoulikeit,1599\nSalutation,1,asyoulikeit,1599\nprized,1,asyoulikeit,1599\nclaws,1,asyoulikeit,1599\napplause,1,asyoulikeit,1599\nsoldier,1,asyoulikeit,1599\ntax,1,asyoulikeit,1599\nLatin,1,asyoulikeit,1599\nirksome,1,asyoulikeit,1599\nshrink,1,asyoulikeit,1599\nunlink'd,1,asyoulikeit,1599\nsphere,1,asyoulikeit,1599\nBlow,1,asyoulikeit,1599\nusurp,1,asyoulikeit,1599\nwether,1,asyoulikeit,1599\nlength,1,asyoulikeit,1599\nknees,1,asyoulikeit,1599\ndamnable,1,asyoulikeit,1599\nwant,1,asyoulikeit,1599\nAdvancing,1,asyoulikeit,1599\nObscured,1,asyoulikeit,1599\ndearer,1,asyoulikeit,1599\naccess,1,asyoulikeit,1599\nheaved,1,asyoulikeit,1599\nfells,1,asyoulikeit,1599\nroundly,1,asyoulikeit,1599\nknow'st,1,asyoulikeit,1599\nbolt,1,asyoulikeit,1599\nCousin,1,asyoulikeit,1599\nbold,1,asyoulikeit,1599\nseest,1,asyoulikeit,1599\nturned,1,asyoulikeit,1599\nanon,1,asyoulikeit,1599\nmannish,1,asyoulikeit,1599\ncustom,1,asyoulikeit,1599\nmurder,1,asyoulikeit,1599\nimportunes,1,asyoulikeit,1599\nsooth,1,asyoulikeit,1599\ndispleasure,1,asyoulikeit,1599\ntravellers,1,asyoulikeit,1599\nproperty,1,asyoulikeit,1599\nwithheld,1,asyoulikeit,1599\nworld's,1,asyoulikeit,1599\nwarn,1,asyoulikeit,1599\nstop,1,asyoulikeit,1599\ndeifying,1,asyoulikeit,1599\ntarred,1,asyoulikeit,1599\nSouth,1,asyoulikeit,1599\ndoubts,1,asyoulikeit,1599\noffice,1,asyoulikeit,1599\nTurning,1,asyoulikeit,1599\ngesture,1,asyoulikeit,1599\nsteel,1,asyoulikeit,1599\ngentleman's,1,asyoulikeit,1599\nbook,1,asyoulikeit,1599\nmanly,1,asyoulikeit,1599\npraised,1,asyoulikeit,1599\nparty,1,asyoulikeit,1599\npraises,1,asyoulikeit,1599\nhungry,1,asyoulikeit,1599\nobjects,1,asyoulikeit,1599\nintelligence,1,asyoulikeit,1599\nbit,1,asyoulikeit,1599\naspect,1,asyoulikeit,1599\nopening,1,asyoulikeit,1599\nsick,1,asyoulikeit,1599\nfeedeth,1,asyoulikeit,1599\neach,1,asyoulikeit,1599\nbills,1,asyoulikeit,1599\nenlarged,1,asyoulikeit,1599\noutlaws,1,asyoulikeit,1599\ncontriver,1,asyoulikeit,1599\nverily,1,asyoulikeit,1599\nchamber,1,asyoulikeit,1599\nfrail'st,1,asyoulikeit,1599\nunkind,1,asyoulikeit,1599\nLeaving,1,asyoulikeit,1599\nbob,1,asyoulikeit,1599\nhat,1,asyoulikeit,1599\ngreenwood,1,asyoulikeit,1599\nwanting,1,asyoulikeit,1599\ncleanliest,1,asyoulikeit,1599\n'Will,1,asyoulikeit,1599\nJane,1,asyoulikeit,1599\nsigh,1,asyoulikeit,1599\ntalks,1,asyoulikeit,1599\ndelights,1,asyoulikeit,1599\npromotion,1,asyoulikeit,1599\nsores,1,asyoulikeit,1599\nflattery,1,asyoulikeit,1599\nLucretia's,1,asyoulikeit,1599\nAh,1,asyoulikeit,1599\nflatters,1,asyoulikeit,1599\ninvent,1,asyoulikeit,1599\nAm,1,asyoulikeit,1599\npay,1,asyoulikeit,1599\nstubborn,1,asyoulikeit,1599\nmistrust,1,asyoulikeit,1599\nFrosty,1,asyoulikeit,1599\nLimp'd,1,asyoulikeit,1599\nfool's,1,asyoulikeit,1599\norators,1,asyoulikeit,1599\nLooks,1,asyoulikeit,1599\nbawdry,1,asyoulikeit,1599\nmutiny,1,asyoulikeit,1599\ntrowel,1,asyoulikeit,1599\nblows,1,asyoulikeit,1599\nloath,1,asyoulikeit,1599\nstrangers,1,asyoulikeit,1599\nknowing,1,asyoulikeit,1599\ndeeds,1,asyoulikeit,1599\nTreason,1,asyoulikeit,1599\nstretching,1,asyoulikeit,1599\nThose,1,asyoulikeit,1599\nshortly,1,asyoulikeit,1599\ndiverted,1,asyoulikeit,1599\nmisused,1,asyoulikeit,1599\namong,1,asyoulikeit,1599\ndesperate,1,asyoulikeit,1599\nvoluntary,1,asyoulikeit,1599\nhen,1,asyoulikeit,1599\nPlay,1,asyoulikeit,1599\nbag,1,asyoulikeit,1599\nLo,1,asyoulikeit,1599\ninclined,1,asyoulikeit,1599\nbay,1,asyoulikeit,1599\nhaunches,1,asyoulikeit,1599\nbar,1,asyoulikeit,1599\nepilogues,1,asyoulikeit,1599\nStand,1,asyoulikeit,1599\nproof,1,asyoulikeit,1599\ntreble,1,asyoulikeit,1599\nspeakest,1,asyoulikeit,1599\ngained,1,asyoulikeit,1599\nSays,1,asyoulikeit,1599\nWounded,1,asyoulikeit,1599\nin't,1,asyoulikeit,1599\nAlbeit,1,asyoulikeit,1599\ncreature,1,asyoulikeit,1599\nAnswer,1,asyoulikeit,1599\n'Was',1,asyoulikeit,1599\ndenied,1,asyoulikeit,1599\ndefied,1,asyoulikeit,1599\npitiless,1,asyoulikeit,1599\nto't,1,asyoulikeit,1599\nbegun,1,asyoulikeit,1599\npitied,1,asyoulikeit,1599\nsatchel,1,asyoulikeit,1599\ndefies,1,asyoulikeit,1599\nHem,1,asyoulikeit,1599\nstag,1,asyoulikeit,1599\nHood,1,asyoulikeit,1599\nwrestler's,1,asyoulikeit,1599\nwisdom,1,asyoulikeit,1599\nconceived,1,asyoulikeit,1599\nremainder,1,asyoulikeit,1599\nDennis,1,asyoulikeit,1599\nhit,1,asyoulikeit,1599\ntear,1,asyoulikeit,1599\nHa,1,asyoulikeit,1599\nply,1,asyoulikeit,1599\nmedicine,1,asyoulikeit,1599\npiteous,1,asyoulikeit,1599\nfiner,1,asyoulikeit,1599\nmiser,1,asyoulikeit,1599\no'errun,1,asyoulikeit,1599\nhuswife's,1,asyoulikeit,1599\nblest,1,asyoulikeit,1599\nowner,1,asyoulikeit,1599\nPronounce,1,asyoulikeit,1599\nneighbourly,1,asyoulikeit,1599\nsurely,1,asyoulikeit,1599\ngrease,1,asyoulikeit,1599\nquick,1,asyoulikeit,1599\ngoods,1,asyoulikeit,1599\npantaloon,1,asyoulikeit,1599\neast,1,asyoulikeit,1599\nconqueror,1,asyoulikeit,1599\nprovoketh,1,asyoulikeit,1599\nwhistles,1,asyoulikeit,1599\nemulator,1,asyoulikeit,1599\nstanzo,1,asyoulikeit,1599\nHad,1,asyoulikeit,1599\nenrich,1,asyoulikeit,1599\npast,1,asyoulikeit,1599\ncommendation,1,asyoulikeit,1599\npin,1,asyoulikeit,1599\nJealous,1,asyoulikeit,1599\nrankness,1,asyoulikeit,1599\nears,1,asyoulikeit,1599\nhyen,1,asyoulikeit,1599\nAlmost,1,asyoulikeit,1599\nearn,1,asyoulikeit,1599\nstep,1,asyoulikeit,1599\nchanges,1,asyoulikeit,1599\nTroilus,1,asyoulikeit,1599\n'thou,1,asyoulikeit,1599\nIs't,1,asyoulikeit,1599\nnice,1,asyoulikeit,1599\nladyships,1,asyoulikeit,1599\nVI,1,asyoulikeit,1599\nyourselves,1,asyoulikeit,1599\nmonstrous,1,asyoulikeit,1599\nbrawls,1,asyoulikeit,1599\nexits,1,asyoulikeit,1599\nrevenues,1,asyoulikeit,1599\nheads,1,asyoulikeit,1599\nquiet,1,asyoulikeit,1599\nprincesses,1,asyoulikeit,1599\ngroaning,1,asyoulikeit,1599\ntemple,1,asyoulikeit,1599\nsought,1,asyoulikeit,1599\nplants,1,asyoulikeit,1599\nosiers,1,asyoulikeit,1599\nhaunt,1,asyoulikeit,1599\nmadmen,1,asyoulikeit,1599\ndrunkards,1,asyoulikeit,1599\nvaliant,1,asyoulikeit,1599\nweed,1,asyoulikeit,1599\nbe'st,1,asyoulikeit,1599\ndivide,1,asyoulikeit,1599\npuking,1,asyoulikeit,1599\nsorry,1,asyoulikeit,1599\nwriters,1,asyoulikeit,1599\nweek,1,asyoulikeit,1599\nMend,1,asyoulikeit,1599\nnigh,1,asyoulikeit,1599\nbusy,1,asyoulikeit,1599\nswaggerer,1,asyoulikeit,1599\nrunaways,1,asyoulikeit,1599\nleather,1,asyoulikeit,1599\nfields,1,asyoulikeit,1599\nbelief,1,asyoulikeit,1599\nimagine,1,asyoulikeit,1599\nlamed,1,asyoulikeit,1599\nthunderbolt,1,asyoulikeit,1599\ncow's,1,asyoulikeit,1599\nsalute,1,asyoulikeit,1599\n'thus,1,asyoulikeit,1599\nbestowed,1,asyoulikeit,1599\npropositions,1,asyoulikeit,1599\nscholar's,1,asyoulikeit,1599\nsundry's,1,asyoulikeit,1599\nsorts,1,asyoulikeit,1599\nkindness,1,asyoulikeit,1599\nhymn,1,asyoulikeit,1599\nDuke's,1,asyoulikeit,1599\nawaked,1,asyoulikeit,1599\ndesirous,1,asyoulikeit,1599\ntell'st,1,asyoulikeit,1599\norchard,1,asyoulikeit,1599\nreference,1,asyoulikeit,1599\nswoons,1,asyoulikeit,1599\ndevised,1,asyoulikeit,1599\nbolden'd,1,asyoulikeit,1599\nSirs,1,asyoulikeit,1599\nstealer,1,asyoulikeit,1599\nCleanse,1,asyoulikeit,1599\nweak,1,asyoulikeit,1599\nmistress's,1,asyoulikeit,1599\nswashing,1,asyoulikeit,1599\nshadow,1,asyoulikeit,1599\nfifty,1,asyoulikeit,1599\nmockable,1,asyoulikeit,1599\nidleness,1,asyoulikeit,1599\nquotidian,1,asyoulikeit,1599\njealous,1,asyoulikeit,1599\nburghers,1,asyoulikeit,1599\nmeanest,1,asyoulikeit,1599\n'Poor,1,asyoulikeit,1599\novercame,1,asyoulikeit,1599\n'why',1,asyoulikeit,1599\nblock,1,asyoulikeit,1599\ngondola,1,asyoulikeit,1599\nDidst,1,asyoulikeit,1599\ngamester,1,asyoulikeit,1599\nsilk,1,asyoulikeit,1599\nfifth,1,asyoulikeit,1599\nfriendly,1,asyoulikeit,1599\ndissembling,1,asyoulikeit,1599\ntaxed,1,asyoulikeit,1599\ndegree,1,asyoulikeit,1599\nSing,1,asyoulikeit,1599\nTongues,1,asyoulikeit,1599\nverity,1,asyoulikeit,1599\nherein,1,asyoulikeit,1599\ntailors,1,asyoulikeit,1599\nranker,1,asyoulikeit,1599\nchild's,1,asyoulikeit,1599\nwheresoe'er,1,asyoulikeit,1599\nsurvey,1,asyoulikeit,1599\nadmired,1,asyoulikeit,1599\ncasement,1,asyoulikeit,1599\ngout,1,asyoulikeit,1599\nshifts,1,asyoulikeit,1599\nconsciences,1,asyoulikeit,1599\npains,1,asyoulikeit,1599\nMotley's,1,asyoulikeit,1599\nensue,1,asyoulikeit,1599\n'Twas,1,asyoulikeit,1599\nWhither,1,asyoulikeit,1599\nrejoice,1,asyoulikeit,1599\nstretch,1,asyoulikeit,1599\nSans,1,asyoulikeit,1599\nassign'd,1,asyoulikeit,1599\nSighing,1,asyoulikeit,1599\nheap'd,1,asyoulikeit,1599\nbegs,1,asyoulikeit,1599\ngasp,1,asyoulikeit,1599\nlately,1,asyoulikeit,1599\nUnwillingly,1,asyoulikeit,1599\ncramp,1,asyoulikeit,1599\nBoth,1,asyoulikeit,1599\no'ergrown,1,asyoulikeit,1599\nquite,1,asyoulikeit,1599\nsolemn,1,asyoulikeit,1599\nstore,1,asyoulikeit,1599\nentertain,1,asyoulikeit,1599\nsanctity,1,asyoulikeit,1599\nimpatience,1,asyoulikeit,1599\nGod's,1,asyoulikeit,1599\nstory,1,asyoulikeit,1599\nchildish,1,asyoulikeit,1599\nsheepcote,1,asyoulikeit,1599\nbequeathing,1,asyoulikeit,1599\nvirgin,1,asyoulikeit,1599\nbreath,1,asyoulikeit,1599\nstay'd,1,asyoulikeit,1599\nmiles,1,asyoulikeit,1599\naim,1,asyoulikeit,1599\nbutter,1,asyoulikeit,1599\nMethought,1,asyoulikeit,1599\npromises,1,asyoulikeit,1599\nresolute,1,asyoulikeit,1599\nair,1,asyoulikeit,1599\nkeeping,1,asyoulikeit,1599\ngallows,1,asyoulikeit,1599\npurlieus,1,asyoulikeit,1599\nsatisfy,1,asyoulikeit,1599\nraise,1,asyoulikeit,1599\nfreestone,1,asyoulikeit,1599\nexercises,1,asyoulikeit,1599\nservant,1,asyoulikeit,1599\ninstances,1,asyoulikeit,1599\nrighteously,1,asyoulikeit,1599\nriders,1,asyoulikeit,1599\nfaster,1,asyoulikeit,1599\nconsider,1,asyoulikeit,1599\nwaspish,1,asyoulikeit,1599\njewels,1,asyoulikeit,1599\ntruest,1,asyoulikeit,1599\nstood,1,asyoulikeit,1599\nbird's,1,asyoulikeit,1599\nInd,1,asyoulikeit,1599\ngain,1,asyoulikeit,1599\nsuccor,1,asyoulikeit,1599\nprunest,1,asyoulikeit,1599\nlegs,1,asyoulikeit,1599\nago,1,asyoulikeit,1599\nUnless,1,asyoulikeit,1599\nwhereon,1,asyoulikeit,1599\ninvocation,1,asyoulikeit,1599\nstone,1,asyoulikeit,1599\nreaps,1,asyoulikeit,1599\ndeal,1,asyoulikeit,1599\nmonger,1,asyoulikeit,1599\ndepends,1,asyoulikeit,1599\ndignity,1,asyoulikeit,1599\nwalled,1,asyoulikeit,1599\nvictory,1,asyoulikeit,1599\nFeed,1,asyoulikeit,1599\nseeing,1,asyoulikeit,1599\n'Hero,1,asyoulikeit,1599\nrhymed,1,asyoulikeit,1599\ninterim,1,asyoulikeit,1599\nco,1,asyoulikeit,1599\nLast,1,asyoulikeit,1599\nstain'd,1,asyoulikeit,1599\nenforce,1,asyoulikeit,1599\nrhymes,1,asyoulikeit,1599\ndoes,1,asyoulikeit,1599\nicy,1,asyoulikeit,1599\nAtone,1,asyoulikeit,1599\ntouch'd,1,asyoulikeit,1599\nPhebe's,1,asyoulikeit,1599\nsmirch,1,asyoulikeit,1599\nlaughing,1,asyoulikeit,1599\ndog',1,asyoulikeit,1599\nlady's,1,asyoulikeit,1599\ndefence,1,asyoulikeit,1599\ngenerally,1,asyoulikeit,1599\nice,1,asyoulikeit,1599\nburied,1,asyoulikeit,1599\ndisable,1,asyoulikeit,1599\nmakest,1,asyoulikeit,1599\nay,1,asyoulikeit,1599\nyields,1,asyoulikeit,1599\nspeed,1,asyoulikeit,1599\napes,1,asyoulikeit,1599\nmemory,1,asyoulikeit,1599\ngentlewoman,1,asyoulikeit,1599\ncatlike,1,asyoulikeit,1599\nfalser,1,asyoulikeit,1599\nallottery,1,asyoulikeit,1599\nworldlings,1,asyoulikeit,1599\ncruelty,1,asyoulikeit,1599\nwench,1,asyoulikeit,1599\ndoor,1,asyoulikeit,1599\nforgotten,1,asyoulikeit,1599\ndoom,1,asyoulikeit,1599\nmarketable,1,asyoulikeit,1599\nScratch,1,asyoulikeit,1599\nfeast,1,asyoulikeit,1599\nabominable,1,asyoulikeit,1599\nask'd,1,asyoulikeit,1599\nquestions,1,asyoulikeit,1599\nboard,1,asyoulikeit,1599\npursuit,1,asyoulikeit,1599\nLawn,1,asyoulikeit,1599\nrailed,1,asyoulikeit,1599\nslink,1,asyoulikeit,1599\nbites,1,asyoulikeit,1599\nI'faith,1,asyoulikeit,1599\nlabourer,1,asyoulikeit,1599\nnecessity,1,asyoulikeit,1599\ncomplexions,1,asyoulikeit,1599\nCounterfeit,1,asyoulikeit,1599\nacres,1,asyoulikeit,1599\nsemblances,1,asyoulikeit,1599\nthankful,1,asyoulikeit,1599\nperpend,1,asyoulikeit,1599\nuntied,1,asyoulikeit,1599\nunhandsome,1,asyoulikeit,1599\nidle,1,asyoulikeit,1599\nLive,1,asyoulikeit,1599\nearth,1,asyoulikeit,1599\nsufficed,1,asyoulikeit,1599\nstudies,1,asyoulikeit,1599\nReady,1,asyoulikeit,1599\ncarved,1,asyoulikeit,1599\nvalue,1,asyoulikeit,1599\ntrain,1,asyoulikeit,1599\nstature,1,asyoulikeit,1599\noffences,1,asyoulikeit,1599\ndebility,1,asyoulikeit,1599\nstudied,1,asyoulikeit,1599\nchallenged,1,asyoulikeit,1599\nrepresenting,1,asyoulikeit,1599\nGoths,1,asyoulikeit,1599\nsettled,1,asyoulikeit,1599\nmoon,1,asyoulikeit,1599\nWouldst,1,asyoulikeit,1599\ncommands,1,asyoulikeit,1599\nlaboured,1,asyoulikeit,1599\ngallops,1,asyoulikeit,1599\nbeholding,1,asyoulikeit,1599\nsheaf,1,asyoulikeit,1599\npotent,1,asyoulikeit,1599\nSpeakest,1,asyoulikeit,1599\ndole,1,asyoulikeit,1599\nfilling,1,asyoulikeit,1599\nbrutish,1,asyoulikeit,1599\nblue,1,asyoulikeit,1599\nshear,1,asyoulikeit,1599\nstrains,1,asyoulikeit,1599\nnecessary,1,asyoulikeit,1599\nFreeze,1,asyoulikeit,1599\nlets,1,asyoulikeit,1599\nsmart,1,asyoulikeit,1599\nstraits,1,asyoulikeit,1599\nmeanings,1,asyoulikeit,1599\nready,1,asyoulikeit,1599\ncommandment,1,asyoulikeit,1599\nspot,1,asyoulikeit,1599\nseasons',1,asyoulikeit,1599\nglides,1,asyoulikeit,1599\nforgot,1,asyoulikeit,1599\ndisputable,1,asyoulikeit,1599\n''Tis,1,asyoulikeit,1599\n'hem',1,asyoulikeit,1599\nCommitting,1,asyoulikeit,1599\nscatter'd,1,asyoulikeit,1599\nhot,1,asyoulikeit,1599\ntoad,1,asyoulikeit,1599\nbriers,1,asyoulikeit,1599\nclimb,1,asyoulikeit,1599\nconversion,1,asyoulikeit,1599\nharm,1,asyoulikeit,1599\nwasteful,1,asyoulikeit,1599\nevents,1,asyoulikeit,1599\nhardly,1,asyoulikeit,1599\nSeeing,1,asyoulikeit,1599\neats,1,asyoulikeit,1599\nhart,1,asyoulikeit,1599\nrunning,1,asyoulikeit,1599\nchestnut,1,asyoulikeit,1599\neasy,1,asyoulikeit,1599\nirrevocable,1,asyoulikeit,1599\nhare,1,asyoulikeit,1599\noutstay,1,asyoulikeit,1599\nsolitary,1,asyoulikeit,1599\nBreak,1,asyoulikeit,1599\nfaints,1,asyoulikeit,1599\npard,1,asyoulikeit,1599\n'Sweep,1,asyoulikeit,1599\nreasonable,1,asyoulikeit,1599\nfield,1,asyoulikeit,1599\nDecember,1,asyoulikeit,1599\nsoldier's,1,asyoulikeit,1599\ncrow,1,asyoulikeit,1599\nhaunts,1,asyoulikeit,1599\nChristian,1,asyoulikeit,1599\ncrop,1,asyoulikeit,1599\nsenseless,1,asyoulikeit,1599\nbasest,1,asyoulikeit,1599\nCounter,1,asyoulikeit,1599\nfinish,1,asyoulikeit,1599\nbugle,1,asyoulikeit,1599\nemploy'd,1,asyoulikeit,1599\nHercules,1,asyoulikeit,1599\nhusband's,1,asyoulikeit,1599\ncarlot,1,asyoulikeit,1599\nHappy,1,asyoulikeit,1599\nCourage,1,asyoulikeit,1599\nrushes,1,asyoulikeit,1599\nhang,1,asyoulikeit,1599\nappears,1,asyoulikeit,1599\nshun,1,asyoulikeit,1599\nLady,1,asyoulikeit,1599\nflouting,1,asyoulikeit,1599\nplain,1,asyoulikeit,1599\nsighing,1,asyoulikeit,1599\nhomewards,1,asyoulikeit,1599\njoyful,1,asyoulikeit,1599\nfoggy,1,asyoulikeit,1599\ndrave,1,asyoulikeit,1599\nsweetest,1,asyoulikeit,1599\nmighty,1,asyoulikeit,1599\nparticulars,1,asyoulikeit,1599\nwhether,1,asyoulikeit,1599\nsmoothness,1,asyoulikeit,1599\nrustically,1,asyoulikeit,1599\nmidnight,1,asyoulikeit,1599\npage,1,asyoulikeit,1599\nvengeance,1,asyoulikeit,1599\nSmile,1,asyoulikeit,1599\nbathed,1,asyoulikeit,1599\nark,1,asyoulikeit,1599\nprepare,1,asyoulikeit,1599\nrumination,1,asyoulikeit,1599\ndominions,1,asyoulikeit,1599\nshaked,1,asyoulikeit,1599\ntomorrow,1,asyoulikeit,1599\npain,1,asyoulikeit,1599\nstranger,1,asyoulikeit,1599\ndelight,1,asyoulikeit,1599\nheaviness,1,asyoulikeit,1599\nengage,1,asyoulikeit,1599\nape,1,asyoulikeit,1599\nextremest,1,asyoulikeit,1599\nforesters,1,asyoulikeit,1599\nspear,1,asyoulikeit,1599\nprofound,1,asyoulikeit,1599\nstones,1,asyoulikeit,1599\npace,1,asyoulikeit,1599\nbosom,1,asyoulikeit,1599\ntransform'd,1,asyoulikeit,1599\nextermined,1,asyoulikeit,1599\nputs,1,asyoulikeit,1599\nrings,1,asyoulikeit,1599\nshoe,1,asyoulikeit,1599\nchastity,1,asyoulikeit,1599\nfall'n,1,asyoulikeit,1599\ncounsellors,1,asyoulikeit,1599\nsoftest,1,asyoulikeit,1599\nprepared,1,asyoulikeit,1599\nprincess',1,asyoulikeit,1599\nfainted,1,asyoulikeit,1599\nWears,1,asyoulikeit,1599\nathwart,1,asyoulikeit,1599\ntestimony,1,asyoulikeit,1599\nHot,1,asyoulikeit,1599\nass,1,asyoulikeit,1599\nobject,1,asyoulikeit,1599\ngoblet,1,asyoulikeit,1599\ndishonest,1,asyoulikeit,1599\npush,1,asyoulikeit,1599\nfond,1,asyoulikeit,1599\nforms,1,asyoulikeit,1599\nrightly,1,asyoulikeit,1599\nmayst,1,asyoulikeit,1599\ningratitude,1,asyoulikeit,1599\nRobin,1,asyoulikeit,1599\nsecret,1,asyoulikeit,1599\nWedding,1,asyoulikeit,1599\nGrounded,1,asyoulikeit,1599\nolive,1,asyoulikeit,1599\nbanquet,1,asyoulikeit,1599\ndisdainful,1,asyoulikeit,1599\ntrick,1,asyoulikeit,1599\npacing,1,asyoulikeit,1599\ninquire,1,asyoulikeit,1599\nprate,1,asyoulikeit,1599\nmusician's,1,asyoulikeit,1599\nundone,1,asyoulikeit,1599\nexpediently,1,asyoulikeit,1599\ncolour'd,1,asyoulikeit,1599\nslightest,1,asyoulikeit,1599\nleer,1,asyoulikeit,1599\nSport,1,asyoulikeit,1599\nSaturdays,1,asyoulikeit,1599\nsweetly,1,asyoulikeit,1599\nbehavior,1,asyoulikeit,1599\nbefell,1,asyoulikeit,1599\nrhetoric,1,asyoulikeit,1599\nlonging,1,asyoulikeit,1599\nmarkets,1,asyoulikeit,1599\nbountiful,1,asyoulikeit,1599\nprevents,1,asyoulikeit,1599\nTraveller,1,asyoulikeit,1599\nLittle,1,asyoulikeit,1599\nStood,1,asyoulikeit,1599\nwillingly,1,asyoulikeit,1599\nlunacy,1,asyoulikeit,1599\nhowling,1,asyoulikeit,1599\ncipher,1,asyoulikeit,1599\nkindled,1,asyoulikeit,1599\ntastes,1,asyoulikeit,1599\nmerrier,1,asyoulikeit,1599\nroot,1,asyoulikeit,1599\nmoves,1,asyoulikeit,1599\nlead,1,asyoulikeit,1599\ninquisition,1,asyoulikeit,1599\nCover,1,asyoulikeit,1599\nRosalinda,1,asyoulikeit,1599\nsurgery,1,asyoulikeit,1599\nventured,1,asyoulikeit,1599\nheight,1,asyoulikeit,1599\nnobler,1,asyoulikeit,1599\nhumbleness,1,asyoulikeit,1599\nHellespont,1,asyoulikeit,1599\ncopulatives,1,asyoulikeit,1599\nwatch,1,asyoulikeit,1599\nhunter's,1,asyoulikeit,1599\nfar,1,asyoulikeit,1599\nborrow,1,asyoulikeit,1599\nroof,1,asyoulikeit,1599\ncontented,1,asyoulikeit,1599\nwarble,1,asyoulikeit,1599\npulpiter,1,asyoulikeit,1599\nrestored,1,asyoulikeit,1599\npeeps,1,asyoulikeit,1599\n'Rosalind',1,asyoulikeit,1599\nuniversal,1,asyoulikeit,1599\ntrained,1,asyoulikeit,1599\nbreather,1,asyoulikeit,1599\nShout,1,asyoulikeit,1599\ncradles,1,asyoulikeit,1599\nBeauty,1,asyoulikeit,1599\nequal,1,asyoulikeit,1599\ndestiny,1,asyoulikeit,1599\nperceiveth,1,asyoulikeit,1599\nsensual,1,asyoulikeit,1599\nmain,1,asyoulikeit,1599\nVirtue,1,asyoulikeit,1599\nGrecian,1,asyoulikeit,1599\nhelping,1,asyoulikeit,1599\nfreeze,1,asyoulikeit,1599\nballad,1,asyoulikeit,1599\nalbeit,1,asyoulikeit,1599\ntarry,1,asyoulikeit,1599\ncounterfeiting,1,asyoulikeit,1599\nPortugal,1,asyoulikeit,1599\nglow,1,asyoulikeit,1599\ncaters,1,asyoulikeit,1599\nhoney,1,asyoulikeit,1599\nhind,1,asyoulikeit,1599\ncarries,1,asyoulikeit,1599\nnations,1,asyoulikeit,1599\ngriefs,1,asyoulikeit,1599\nstalking,1,asyoulikeit,1599\nconvertites,1,asyoulikeit,1599\nbreathed,1,asyoulikeit,1599\nrose,1,asyoulikeit,1599\nguiltless,1,asyoulikeit,1599\number,1,asyoulikeit,1599\nvacation,1,asyoulikeit,1599\nhoarse,1,asyoulikeit,1599\nsilence,1,asyoulikeit,1599\nlifeless,1,asyoulikeit,1599\nbravery,1,asyoulikeit,1599\ninconvenient,1,asyoulikeit,1599\nfaction,1,asyoulikeit,1599\ncouldst,1,asyoulikeit,1599\nmountains,1,asyoulikeit,1599\ndisgorge,1,asyoulikeit,1599\nvenison,1,asyoulikeit,1599\nunknown,1,asyoulikeit,1599\nseizure,1,asyoulikeit,1599\nfourth,1,asyoulikeit,1599\nAbruptly,1,asyoulikeit,1599\nflocks,1,asyoulikeit,1599\nthinks,1,asyoulikeit,1599\nclub,1,asyoulikeit,1599\nunclean,1,asyoulikeit,1599\napply,1,asyoulikeit,1599\nenvy,1,asyoulikeit,1599\nVenus,1,asyoulikeit,1599\nretreat,1,asyoulikeit,1599\nhinds,1,asyoulikeit,1599\naction,1,asyoulikeit,1599\nmutton,1,asyoulikeit,1599\nhire,1,asyoulikeit,1599\ncurvets,1,asyoulikeit,1599\ncapon,1,asyoulikeit,1599\nprodigal,1,asyoulikeit,1599\nHang,1,asyoulikeit,1599\npated,1,asyoulikeit,1599\ngently,1,asyoulikeit,1599\npenny,1,asyoulikeit,1599\nmounted,1,asyoulikeit,1599\ndulness,1,asyoulikeit,1599\nPresents,1,asyoulikeit,1599\nknew'st,1,asyoulikeit,1599\nguides,1,asyoulikeit,1599\npaths,1,asyoulikeit,1599\nallows,1,asyoulikeit,1599\ncuring,1,asyoulikeit,1599\nFlourish,1,asyoulikeit,1599\nunregarded,1,asyoulikeit,1599\nWas't,1,asyoulikeit,1599\nwhining,1,asyoulikeit,1599\nChewing,1,asyoulikeit,1599\nmajesty,1,asyoulikeit,1599\nbottle,1,asyoulikeit,1599\nnook,1,asyoulikeit,1599\nvelvet,1,asyoulikeit,1599\nglean,1,asyoulikeit,1599\ncourtship,1,asyoulikeit,1599\nbravely,1,asyoulikeit,1599\nfaint,1,asyoulikeit,1599\npleaseth,1,asyoulikeit,1599\nscar,1,asyoulikeit,1599\ntenor,1,asyoulikeit,1599\nbled,1,asyoulikeit,1599\nfeature,1,asyoulikeit,1599\nbestows,1,asyoulikeit,1599\nAlack,1,asyoulikeit,1599\nAddress'd,1,asyoulikeit,1599\ndescended,1,asyoulikeit,1599\npastime,1,asyoulikeit,1599\nWear,1,asyoulikeit,1599\nSoft,1,asyoulikeit,1599\ncapers,1,asyoulikeit,1599\nlikelihood,1,asyoulikeit,1599\nfurnace,1,asyoulikeit,1599\n'Be,1,asyoulikeit,1599\nanatomize,1,asyoulikeit,1599\nSit,1,asyoulikeit,1599\nwolves,1,asyoulikeit,1599\nlearning,1,asyoulikeit,1599\nnarrow,1,asyoulikeit,1599\naffections,1,asyoulikeit,1599\nungentleness,1,asyoulikeit,1599\nequally,1,asyoulikeit,1599\nAssuredly,1,asyoulikeit,1599\nexiled,1,asyoulikeit,1599\npaces,1,asyoulikeit,1599\nLose,1,asyoulikeit,1599\nadopted,1,asyoulikeit,1599\nodious,1,asyoulikeit,1599\nescapes,1,asyoulikeit,1599\nSet,1,asyoulikeit,1599\nchins,1,asyoulikeit,1599\nhousewife,1,asyoulikeit,1599\nplaces,1,asyoulikeit,1599\ncurtle,1,asyoulikeit,1599\ncrammed,1,asyoulikeit,1599\neggs,1,asyoulikeit,1599\ncall't,1,asyoulikeit,1599\nscarf,1,asyoulikeit,1599\nsay'st,1,asyoulikeit,1599\npowers,1,asyoulikeit,1599\nobscuring,1,asyoulikeit,1599\nDost,1,asyoulikeit,1599\n'Ay',1,asyoulikeit,1599\nsquandering,1,asyoulikeit,1599\nrecount,1,asyoulikeit,1599\nGargantua's,1,asyoulikeit,1599\nSermons,1,asyoulikeit,1599\ngladness,1,asyoulikeit,1599\nconcave,1,asyoulikeit,1599\ninky,1,asyoulikeit,1599\nravens,1,asyoulikeit,1599\nsigh'd,1,asyoulikeit,1599\nattire,1,asyoulikeit,1599\nspurs,1,asyoulikeit,1599\nparlous,1,asyoulikeit,1599\nreigns,1,asyoulikeit,1599\nsterner,1,asyoulikeit,1599\nmild,1,asyoulikeit,1599\n'If,1,asyoulikeit,1599\nstalling,1,asyoulikeit,1599\nbubble,1,asyoulikeit,1599\nprobable,1,asyoulikeit,1599\nunmuzzle,1,asyoulikeit,1599\nqualities,1,asyoulikeit,1599\nprize,1,asyoulikeit,1599\n'It,1,asyoulikeit,1599\nconclusion,1,asyoulikeit,1599\npurposed,1,asyoulikeit,1599\nsmother,1,asyoulikeit,1599\njars,1,asyoulikeit,1599\nsilenced,1,asyoulikeit,1599\nslowly,1,asyoulikeit,1599\nobservation,1,asyoulikeit,1599\nalready,1,asyoulikeit,1599\ndowry,1,asyoulikeit,1599\nsuccessfully,1,asyoulikeit,1599\nassay'd,1,asyoulikeit,1599\nCould,1,asyoulikeit,1599\ncourage,1,asyoulikeit,1599\ncurtsy,1,asyoulikeit,1599\negg,1,asyoulikeit,1599\nskin,1,asyoulikeit,1599\nparties,1,asyoulikeit,1599\nuncouth,1,asyoulikeit,1599\ndearest,1,asyoulikeit,1599\naccustom'd,1,asyoulikeit,1599\nacquit,1,asyoulikeit,1599\npetticoats,1,asyoulikeit,1599\ndream,1,asyoulikeit,1599\ncoward,1,asyoulikeit,1599\npersuaded,1,asyoulikeit,1599\npresentation,1,asyoulikeit,1599\nfountain,1,asyoulikeit,1599\nslave,1,asyoulikeit,1599\nHonour,1,asyoulikeit,1599\nhawking,1,asyoulikeit,1599\nvein,1,asyoulikeit,1599\nlet's,1,asyoulikeit,1599\ntradition,1,asyoulikeit,1599\nungentle,1,asyoulikeit,1599\nwon,1,asyoulikeit,1599\njudgments,1,asyoulikeit,1599\nbrains,1,asyoulikeit,1599\nriper,1,asyoulikeit,1599\npeacemaker,1,asyoulikeit,1599\ninch,1,asyoulikeit,1599\ngreatest,1,asyoulikeit,1599\ngates,1,asyoulikeit,1599\neke,1,asyoulikeit,1599\nbushes,1,asyoulikeit,1599\ninfect,1,asyoulikeit,1599\nshoulder,1,asyoulikeit,1599\nthief,1,asyoulikeit,1599\nneed,1,asyoulikeit,1599\nWest,1,asyoulikeit,1599\nassailants,1,asyoulikeit,1599\nplenteous,1,asyoulikeit,1599\nmissing,1,asyoulikeit,1599\nabed,1,asyoulikeit,1599\nfeelingly,1,asyoulikeit,1599\nbleak,1,asyoulikeit,1599\nthievish,1,asyoulikeit,1599\nengender'd,1,asyoulikeit,1599\nblacker,1,asyoulikeit,1599\ndischarge,1,asyoulikeit,1599\n'So,1,asyoulikeit,1599\nBuy,1,asyoulikeit,1599\ncarving,1,asyoulikeit,1599\nnumber,1,asyoulikeit,1599\nmarvel,1,asyoulikeit,1599\nBeing,1,asyoulikeit,1599\none's,1,asyoulikeit,1599\nexamines,1,asyoulikeit,1599\nthigh,1,asyoulikeit,1599\ndisguised,1,asyoulikeit,1599\nHorns,1,asyoulikeit,1599\ntrouble,1,asyoulikeit,1599\nstairs,1,asyoulikeit,1599\nwet,1,asyoulikeit,1599\nGiving,1,asyoulikeit,1599\ni'faith,1,asyoulikeit,1599\nsucks,1,asyoulikeit,1599\nconverted,1,asyoulikeit,1599\nwrath,1,asyoulikeit,1599\nones,1,asyoulikeit,1599\nstanzos,1,asyoulikeit,1599\napish,1,asyoulikeit,1599\nbequeath,1,asyoulikeit,1599\nWert,1,asyoulikeit,1599\nbehalf,1,asyoulikeit,1599\nDyed,1,asyoulikeit,1599\nnibbling,1,asyoulikeit,1599\nknavery,1,asyoulikeit,1599\nslight,1,asyoulikeit,1599\ndesolation,1,asyoulikeit,1599\n'Twixt,1,asyoulikeit,1599\nrenown,1,asyoulikeit,1599\nPages,1,asyoulikeit,1599\nservitude,1,asyoulikeit,1599\ngrave,1,asyoulikeit,1599\npoke,1,asyoulikeit,1599\n'No,1,asyoulikeit,1599\nstale,1,asyoulikeit,1599\nflies,1,asyoulikeit,1599\nunderstanding,1,asyoulikeit,1599\nformer,1,asyoulikeit,1599\nfittest,1,asyoulikeit,1599\npurchase,1,asyoulikeit,1599\npomp,1,asyoulikeit,1599\nentreaties,1,asyoulikeit,1599\nswain,1,asyoulikeit,1599\nquestioning,1,asyoulikeit,1599\nRun,1,asyoulikeit,1599\nscrip,1,asyoulikeit,1599\nwraps,1,asyoulikeit,1599\nprologues,1,asyoulikeit,1599\nsides,1,asyoulikeit,1599\nemployed,1,asyoulikeit,1599\nTwice,1,asyoulikeit,1599\nfive,1,asyoulikeit,1599\ncapable,1,asyoulikeit,1599\npersons,1,asyoulikeit,1599\nhandkerchief,1,asyoulikeit,1599\nmischievous,1,asyoulikeit,1599\nstomach,1,asyoulikeit,1599\n'Twill,1,asyoulikeit,1599\nbands,1,asyoulikeit,1599\nconfines,1,asyoulikeit,1599\nPeradventure,1,asyoulikeit,1599\ncurb,1,asyoulikeit,1599\nbounden,1,asyoulikeit,1599\nmartial,1,asyoulikeit,1599\nhearer,1,asyoulikeit,1599\nbread,1,asyoulikeit,1599\ncurs,1,asyoulikeit,1599\npathetical,1,asyoulikeit,1599\nSad,1,asyoulikeit,1599\nring,1,asyoulikeit,1599\nmeasured,1,asyoulikeit,1599\nusurping,1,asyoulikeit,1599\nprime,1,asyoulikeit,1599\nbinds,1,asyoulikeit,1599\nsitting,1,asyoulikeit,1599\nbondage,1,asyoulikeit,1599\nbandy,1,asyoulikeit,1599\nrind,1,asyoulikeit,1599\nrecover'd,1,asyoulikeit,1599\nDead,1,asyoulikeit,1599\ndetain'd,1,asyoulikeit,1599\nsaws,1,asyoulikeit,1599\nSaw,1,asyoulikeit,1599\nSure,1,asyoulikeit,1599\nsparrow,1,asyoulikeit,1599\nflight,1,asyoulikeit,1599\nmilked,1,asyoulikeit,1599\nfalcon,1,asyoulikeit,1599\nrebellious,1,asyoulikeit,1599\nsave,1,asyoulikeit,1599\nsubtle,1,asyoulikeit,1599\npatiently,1,asyoulikeit,1599\nrecks,1,asyoulikeit,1599\nswans,1,asyoulikeit,1599\nmusical,1,asyoulikeit,1599\nburthen,1,asyoulikeit,1599\nliked,1,asyoulikeit,1599\nheavy,1,asyoulikeit,1599\nsinewy,1,asyoulikeit,1599\nThink,1,asyoulikeit,1599\nHereafter,1,asyoulikeit,1599\nbringest,1,asyoulikeit,1599\ncutter,1,asyoulikeit,1599\nstage,1,asyoulikeit,1599\nstaff,1,asyoulikeit,1599\ndriven,1,asyoulikeit,1599\nable,1,asyoulikeit,1599\narms,1,asyoulikeit,1599\nnuptial,1,asyoulikeit,1599\nperforce,1,asyoulikeit,1599\ngoldsmiths',1,asyoulikeit,1599\nprint,1,asyoulikeit,1599\nhidden,1,asyoulikeit,1599\nlibertine,1,asyoulikeit,1599\nsufferance,1,asyoulikeit,1599\nchangeable,1,asyoulikeit,1599\ndugs,1,asyoulikeit,1599\nthey'll,1,asyoulikeit,1599\ntutor'd,1,asyoulikeit,1599\nmaiden's,1,asyoulikeit,1599\nuncle's,1,asyoulikeit,1599\nCountercheque,1,asyoulikeit,1599\ntempered,1,asyoulikeit,1599\nwont,1,asyoulikeit,1599\nprick,1,asyoulikeit,1599\nlookest,1,asyoulikeit,1599\nbearded,1,asyoulikeit,1599\nspectacles,1,asyoulikeit,1599\nfenced,1,asyoulikeit,1599\ncomplain,1,asyoulikeit,1599\nemulation,1,asyoulikeit,1599\nwheel,1,asyoulikeit,1599\nnext,1,asyoulikeit,1599\nthreats,1,asyoulikeit,1599\nwhippers,1,asyoulikeit,1599\nThree,1,asyoulikeit,1599\npence,1,asyoulikeit,1599\ndunghills,1,asyoulikeit,1599\ndamask,1,asyoulikeit,1599\nWarr'st,1,asyoulikeit,1599\ncaught,1,asyoulikeit,1599\nnotice,1,asyoulikeit,1599\nreligiously,1,asyoulikeit,1599\nstripp'd,1,asyoulikeit,1599\ninto't,1,asyoulikeit,1599\n'Call,1,asyoulikeit,1599\ninaccessible,1,asyoulikeit,1599\nvulgar,1,asyoulikeit,1599\nEgypt,1,asyoulikeit,1599\nrequite,1,asyoulikeit,1599\nhusbandry,1,asyoulikeit,1599\ngodhead,1,asyoulikeit,1599\nmettle,1,asyoulikeit,1599\nseize,1,asyoulikeit,1599\noblivion,1,asyoulikeit,1599\nworships,1,asyoulikeit,1599\ndemonstrating,1,asyoulikeit,1599\nscrippage,1,asyoulikeit,1599\ntakes,1,asyoulikeit,1599\nfallen,1,asyoulikeit,1599\nhonoured,1,asyoulikeit,1599\nconference,1,asyoulikeit,1599\nreports,1,asyoulikeit,1599\nearthly,1,asyoulikeit,1599\ntrodden,1,asyoulikeit,1599\nprologue,1,asyoulikeit,1599\nsize,1,asyoulikeit,1599\nclapped,1,asyoulikeit,1599\nspleen,1,asyoulikeit,1599\nchallenger's,1,asyoulikeit,1599\nbitterness,1,asyoulikeit,1599\nwife's,1,asyoulikeit,1599\nanimal,1,asyoulikeit,1599\nrevelry,1,asyoulikeit,1599\nboorish,1,asyoulikeit,1599\nsimiles,1,asyoulikeit,1599\nnest,1,asyoulikeit,1599\nminister'd,1,asyoulikeit,1599\nwaters,1,asyoulikeit,1599\nharvest,1,asyoulikeit,1599\nForbear,1,asyoulikeit,1599\nsober,1,asyoulikeit,1599\nangry,1,asyoulikeit,1599\nfalling,1,asyoulikeit,1599\nwhence,1,asyoulikeit,1599\nunfortunate,1,asyoulikeit,1599\nfollowers,1,asyoulikeit,1599\nfill'd,1,asyoulikeit,1599\ntilter,1,asyoulikeit,1599\nheathen,1,asyoulikeit,1599\nconcealed,1,asyoulikeit,1599\nShow,1,asyoulikeit,1599\nguilty,1,asyoulikeit,1599\ngrieve,1,asyoulikeit,1599\nhunger,1,asyoulikeit,1599\nwholesome,1,asyoulikeit,1599\npouch,1,asyoulikeit,1599\npersever,1,asyoulikeit,1599\nearthquakes,1,asyoulikeit,1599\nMake,1,asyoulikeit,1599\nMany,1,asyoulikeit,1599\ndiseases,1,asyoulikeit,1599\ncharacter,1,asyoulikeit,1599\nyond,1,asyoulikeit,1599\ncloth,1,asyoulikeit,1599\ntuft,1,asyoulikeit,1599\nWithal,1,asyoulikeit,1599\nmodesty,1,asyoulikeit,1599\n'is,1,asyoulikeit,1599\nAfflict,1,asyoulikeit,1599\ncomplain'd,1,asyoulikeit,1599\nclownish,1,asyoulikeit,1599\nThat's,1,asyoulikeit,1599\ncares,1,asyoulikeit,1599\nembossed,1,asyoulikeit,1599\nunpeopled,1,asyoulikeit,1599\nHadst,1,asyoulikeit,1599\nJupiter,1,asyoulikeit,1599\ncatechism,1,asyoulikeit,1599\nbastinado,1,asyoulikeit,1599\nkinsman,1,asyoulikeit,1599\nmethinks,1,asyoulikeit,1599\nplentifully,1,asyoulikeit,1599\nAmiens,1,asyoulikeit,1599\nRuns,1,asyoulikeit,1599\nUnderstanding,1,asyoulikeit,1599\nmines,1,asyoulikeit,1599\nworm,1,asyoulikeit,1599\nwounds,1,asyoulikeit,1599\nparcels,1,asyoulikeit,1599\nslipper'd,1,asyoulikeit,1599\nwickedness,1,asyoulikeit,1599\nfang,1,asyoulikeit,1599\npassing,1,asyoulikeit,1599\ndancing,1,asyoulikeit,1599\nallow,1,asyoulikeit,1599\n'em,1,asyoulikeit,1599\nesteem'd,1,asyoulikeit,1599\nWinter,1,asyoulikeit,1599\ngrape,1,asyoulikeit,1599\nperfect,1,asyoulikeit,1599\npulled,1,asyoulikeit,1599\nBon,1,asyoulikeit,1599\nredness,1,asyoulikeit,1599\nfill,1,asyoulikeit,1599\nglances,1,asyoulikeit,1599\nwoods,1,asyoulikeit,1599\ninsomuch,1,asyoulikeit,1599\ncontemplative,1,asyoulikeit,1599\nclap,1,asyoulikeit,1599\nwooed,1,asyoulikeit,1599\ndamnation,1,asyoulikeit,1599\narm's,1,asyoulikeit,1599\nminded,1,asyoulikeit,1599\nanswer'd,1,asyoulikeit,1599\nexult,1,asyoulikeit,1599\nUnto,1,asyoulikeit,1599\nbite,1,asyoulikeit,1599\nfawn,1,asyoulikeit,1599\nscoffer,1,asyoulikeit,1599\npractise,1,asyoulikeit,1599\npuisny,1,asyoulikeit,1599\ndepart,1,asyoulikeit,1599\nqueen,1,asyoulikeit,1599\nBarbary,1,asyoulikeit,1599\nbeware,1,asyoulikeit,1599\nmates,1,asyoulikeit,1599\nbetters,1,asyoulikeit,1599\npartly,1,asyoulikeit,1599\npatient,1,asyoulikeit,1599\n'Good,1,asyoulikeit,1599\nbars,1,asyoulikeit,1599\nFoul,1,asyoulikeit,1599\nmeaning,1,asyoulikeit,1599\ncicatrice,1,asyoulikeit,1599\ngilded,1,asyoulikeit,1599\nbird,1,asyoulikeit,1599\nfreshly,1,asyoulikeit,1599\nbase,1,asyoulikeit,1599\nstrikes,1,asyoulikeit,1599\nEnvenoms,1,asyoulikeit,1599\nrustic,1,asyoulikeit,1599\nappointed,1,asyoulikeit,1599\nband,1,asyoulikeit,1599\ngrapes,1,asyoulikeit,1599\ncarol,1,asyoulikeit,1599\ncream,1,asyoulikeit,1599\ntame,1,asyoulikeit,1599\nweakness,1,asyoulikeit,1599\nLeander,1,asyoulikeit,1599\nnames,1,asyoulikeit,1599\ncods,1,asyoulikeit,1599\nbill,1,asyoulikeit,1599\nsongs,1,asyoulikeit,1599\nhomily,1,asyoulikeit,1599\naccoutrements,1,asyoulikeit,1599\ndeparture,1,asyoulikeit,1599\nmarries,1,asyoulikeit,1599\nMelancholy,1,asyoulikeit,1599\nacorn,1,asyoulikeit,1599\nHymen's,1,asyoulikeit,1599\nfolks,1,asyoulikeit,1599\nconversed,1,asyoulikeit,1599\nbind,1,asyoulikeit,1599\ncup,1,asyoulikeit,1599\nsunder'd,1,asyoulikeit,1599\nstroke,1,asyoulikeit,1599\nexcepted,1,asyoulikeit,1599\njests,1,asyoulikeit,1599\nungartered,1,asyoulikeit,1599\nolives,1,asyoulikeit,1599\nbask'd,1,asyoulikeit,1599\neffigies,1,asyoulikeit,1599\nWorth,1,asyoulikeit,1599\neyeballs,1,asyoulikeit,1599\nought,1,asyoulikeit,1599\nholds,1,asyoulikeit,1599\nshook,1,asyoulikeit,1599\ngetting,1,asyoulikeit,1599\nFood,1,asyoulikeit,1599\ninseparable,1,asyoulikeit,1599\nEngland,1,asyoulikeit,1599\nchapel,1,asyoulikeit,1599\nquit,1,asyoulikeit,1599\nclear,1,asyoulikeit,1599\nshort,1,asyoulikeit,1599\nclean,1,asyoulikeit,1599\n'Wear,1,asyoulikeit,1599\nNone,1,asyoulikeit,1599\nhole,1,asyoulikeit,1599\nportion,1,asyoulikeit,1599\ngreet,1,asyoulikeit,1599\ndangerous,1,asyoulikeit,1599\nextraordinary,1,asyoulikeit,1599\nhollow,1,asyoulikeit,1599\nlackey,1,asyoulikeit,1599\nAlthough,1,asyoulikeit,1599\nstubbornest,1,asyoulikeit,1599\nWho's,1,asyoulikeit,1599\nfeasts,1,asyoulikeit,1599\ncarve,1,asyoulikeit,1599\noyster,1,asyoulikeit,1599\ncowards,1,asyoulikeit,1599\nrequest,1,asyoulikeit,1599\nranged,1,asyoulikeit,1599\nhogs,1,asyoulikeit,1599\nconsist,1,asyoulikeit,1599\ncheerly,1,asyoulikeit,1599\npresents,1,asyoulikeit,1599\nclubs,1,asyoulikeit,1599\nforsooth,1,asyoulikeit,1599\nflood,1,asyoulikeit,1599\nliver,1,asyoulikeit,1599\ngentility,1,asyoulikeit,1599\npanel,1,asyoulikeit,1599\nhorses,1,asyoulikeit,1599\nentrap,1,asyoulikeit,1599\nfeeding,1,asyoulikeit,1599\nwondering,1,asyoulikeit,1599\n'Who,1,asyoulikeit,1599\nseal,1,asyoulikeit,1599\nsluttishness,1,asyoulikeit,1599\nunbashful,1,asyoulikeit,1599\n'old,1,asyoulikeit,1599\nconjure,1,asyoulikeit,1599\n'Wit,1,asyoulikeit,1599\ninherited,1,asyoulikeit,1599\npeascod,1,asyoulikeit,1599\nprayers,1,asyoulikeit,1599\nalso,1,asyoulikeit,1599\nCleopatra's,1,asyoulikeit,1599\n'Why,1,asyoulikeit,1599\nbawd,1,asyoulikeit,1599\npuffing,1,asyoulikeit,1599\nhearts,1,asyoulikeit,1599\nsatisfied,1,asyoulikeit,1599\nlungs,1,asyoulikeit,1599\ncope,1,asyoulikeit,1599\nmanage,1,asyoulikeit,1599\nhairy,1,asyoulikeit,1599\nperfumed,1,asyoulikeit,1599\ninterest,1,asyoulikeit,1599\nhunt,1,asyoulikeit,1599\nTrow,1,asyoulikeit,1599\ncommission,1,asyoulikeit,1599\ncheerful,1,asyoulikeit,1599\nfeeder,1,asyoulikeit,1599\nCalls,1,asyoulikeit,1599\nalways,1,asyoulikeit,1599\ntangle,1,asyoulikeit,1599\nwinged,1,asyoulikeit,1599\nunkept,1,asyoulikeit,1599\nneglected,1,asyoulikeit,1599\nfavour'd,1,asyoulikeit,1599\nbachelor,1,asyoulikeit,1599\nstartle,1,asyoulikeit,1599\nugly,1,asyoulikeit,1599\nterritory,1,asyoulikeit,1599\nacts,1,asyoulikeit,1599\nCircumstance,1,asyoulikeit,1599\nstates,1,asyoulikeit,1599\ntraverse,1,asyoulikeit,1599\nShepherdess,1,asyoulikeit,1599\ndecree,1,asyoulikeit,1599\ncony,1,asyoulikeit,1599\nreckoning,1,asyoulikeit,1599\ncrept,1,asyoulikeit,1599\nAugmenting,1,asyoulikeit,1599\noppress'd,1,asyoulikeit,1599\nSeek,1,asyoulikeit,1599\nstagger,1,asyoulikeit,1599\nbrambles,1,asyoulikeit,1599\nsupplied,1,asyoulikeit,1599\nmaterial,1,asyoulikeit,1599\npresence,1,asyoulikeit,1599\nuntreasured,1,asyoulikeit,1599\nsouth,1,asyoulikeit,1599\ncousins,1,asyoulikeit,1599\nGentleman,1,asyoulikeit,1599\nsports,1,asyoulikeit,1599\nlook'd,1,asyoulikeit,1599\nMewling,1,asyoulikeit,1599\ndiscretion,1,asyoulikeit,1599\nunderstood,1,asyoulikeit,1599\ncovetousness,1,asyoulikeit,1599\nsees,1,asyoulikeit,1599\nbequeathed,1,asyoulikeit,1599\nage's,1,asyoulikeit,1599\nvessel,1,asyoulikeit,1599\nfellows,1,asyoulikeit,1599\nbattle,1,asyoulikeit,1599\ncramm'd,1,asyoulikeit,1599\nBelieve,1,asyoulikeit,1599\nTrue,1,asyoulikeit,1599\ncrest,1,asyoulikeit,1599\nmix'd,1,asyoulikeit,1599\npriser,1,asyoulikeit,1599\ncork,1,asyoulikeit,1599\nditty,1,asyoulikeit,1599\ncorn,1,asyoulikeit,1599\nneedless,1,asyoulikeit,1599\nvehemence,1,asyoulikeit,1599\nsacred,1,asyoulikeit,1599\nwearied,1,asyoulikeit,1599\nrascally,1,asyoulikeit,1599\nwhate'er,1,asyoulikeit,1599\nmonkey,1,asyoulikeit,1599\nMaids,1,asyoulikeit,1599\nmodest,1,asyoulikeit,1599\neyne,1,asyoulikeit,1599\nbriefly,1,asyoulikeit,1599\nnights,1,asyoulikeit,1599\nloyalty,1,asyoulikeit,1599\ndownright,1,asyoulikeit,1599\njointure,1,asyoulikeit,1599\nThrough,1,asyoulikeit,1599\nlovest,1,asyoulikeit,1599\nslender,1,asyoulikeit,1599\nhuge,1,asyoulikeit,1599\napproach'd,1,asyoulikeit,1599\njolly,1,asyoulikeit,1599\nkindred,1,asyoulikeit,1599\ndislike,1,asyoulikeit,1599\nsuffice,1,asyoulikeit,1599\nloathe,1,asyoulikeit,1599\nSend,1,asyoulikeit,1599\nsouls,1,asyoulikeit,1599\nremove,1,asyoulikeit,1599\nparentage,1,asyoulikeit,1599\nTrip,1,asyoulikeit,1599\nfairly,1,asyoulikeit,1599\naccording,1,asyoulikeit,1599\nbelieves,1,asyoulikeit,1599\nJust,1,asyoulikeit,1599\nMeantime,1,asyoulikeit,1599\noverheard,1,asyoulikeit,1599\npost,1,asyoulikeit,1599\nblank,1,asyoulikeit,1599\nbankrupt,1,asyoulikeit,1599\nnurture,1,asyoulikeit,1599\nbald,1,asyoulikeit,1599\nrudiments,1,asyoulikeit,1599\ncold,1,asyoulikeit,1599\nSell,1,asyoulikeit,1599\nRoman,1,asyoulikeit,1599\nshoots,1,asyoulikeit,1599\ngrieved,1,asyoulikeit,1599\ngreeting,1,asyoulikeit,1599\nwrangling,1,asyoulikeit,1599\nfoiled,1,asyoulikeit,1599\nsullen,1,asyoulikeit,1599\nformal,1,asyoulikeit,1599\nhiding,1,asyoulikeit,1599\nInstance,1,asyoulikeit,1599\nrenders,1,asyoulikeit,1599\nsickens,1,asyoulikeit,1599\nbonnet,1,asyoulikeit,1599\ncouple,1,asyoulikeit,1599\nbestow,1,asyoulikeit,1599\ninvite,1,asyoulikeit,1599\ndetect,1,asyoulikeit,1599\nlip,1,asyoulikeit,1599\ncrooked,1,asyoulikeit,1599\nmaster's,1,asyoulikeit,1599\npipes,1,asyoulikeit,1599\nmoss'd,1,asyoulikeit,1599\nseem'st,1,asyoulikeit,1599\ninstead,1,asyoulikeit,1599\nchopt,1,asyoulikeit,1599\nnature's,1,asyoulikeit,1599\nebb,1,asyoulikeit,1599\nsequester'd,1,asyoulikeit,1599\nTwo,1,asyoulikeit,1599\ntrot,1,asyoulikeit,1599\nfrantic,1,asyoulikeit,1599\nFirm,1,asyoulikeit,1599\nlicence,1,asyoulikeit,1599\ntrod,1,asyoulikeit,1599\nNothing,1,asyoulikeit,1599\nchoke,1,asyoulikeit,1599\nservants,1,asyoulikeit,1599\nforwardness,1,asyoulikeit,1599\near,1,asyoulikeit,1599\nslumber,1,asyoulikeit,1599\npersuade,1,asyoulikeit,1599\nsuitor,1,asyoulikeit,1599\nhurtling,1,asyoulikeit,1599\nlays,1,asyoulikeit,1599\nswearest,1,asyoulikeit,1599\nsounder,1,asyoulikeit,1599\nCheerly,1,asyoulikeit,1599\nallies,1,asyoulikeit,1599\nlimbs,1,asyoulikeit,1599\nsounded,1,asyoulikeit,1599\nHisperia,1,asyoulikeit,1599\neventful,1,asyoulikeit,1599\ndulcet,1,asyoulikeit,1599\nlazy,1,asyoulikeit,1599\n'ever,1,asyoulikeit,1599\nthrifty,1,asyoulikeit,1599\nSignior,1,asyoulikeit,1599\ncomfortable,1,asyoulikeit,1599\n'scape,1,asyoulikeit,1599\nFive,1,asyoulikeit,1599\nudders,1,asyoulikeit,1599\nreward,1,asyoulikeit,1599\nlaughed,1,asyoulikeit,1599\ndoing,1,asyoulikeit,1599\nAnother,1,asyoulikeit,1599\nenforcement,1,asyoulikeit,1599\nforked,1,asyoulikeit,1599\ntaxation,1,asyoulikeit,1599\ncompounded,1,asyoulikeit,1599\nchosen,1,asyoulikeit,1599\ncourageous,1,asyoulikeit,1599\nheaded,1,asyoulikeit,1599\ntrip,1,asyoulikeit,1599\nphoenix,1,asyoulikeit,1599\nvents,1,asyoulikeit,1599\nrefusing,1,asyoulikeit,1599\nlimn'd,1,asyoulikeit,1599\nmaker,1,asyoulikeit,1599\nEPILOGUE,1,asyoulikeit,1599\ngoldenly,1,asyoulikeit,1599\nmisconstrues,1,asyoulikeit,1599\nantiquity,1,asyoulikeit,1599\nsovereign,1,asyoulikeit,1599\nBefore,1,asyoulikeit,1599\nlectures,1,asyoulikeit,1599\nbeholders,1,asyoulikeit,1599\nwhit,1,asyoulikeit,1599\nwhip,1,asyoulikeit,1599\ndebtor,1,asyoulikeit,1599\npompous,1,asyoulikeit,1599\nMen,1,asyoulikeit,1599\nse'nnight,1,asyoulikeit,1599\nmocked,1,asyoulikeit,1599\nthinking,1,asyoulikeit,1599\nmocker,1,asyoulikeit,1599\nliquors,1,asyoulikeit,1599\nincision,1,asyoulikeit,1599\nattorney,1,asyoulikeit,1599\nbatlet,1,asyoulikeit,1599\neleven,1,asyoulikeit,1599\nTears,1,asyoulikeit,1599\nmurmuring,1,asyoulikeit,1599\nquarrels,1,asyoulikeit,1599\nelegies,1,asyoulikeit,1599\nlion,1,asyoulikeit,1599\nAmen,1,asyoulikeit,1599\npetitionary,1,asyoulikeit,1599\nplayers,1,asyoulikeit,1599\nwhiles,1,asyoulikeit,1599\nhawthorns,1,asyoulikeit,1599\nchristened,1,asyoulikeit,1599\nlass,1,asyoulikeit,1599\npierceth,1,asyoulikeit,1599\nwhisper'd,1,asyoulikeit,1599\nnativity,1,asyoulikeit,1599\nearliest,1,asyoulikeit,1599\ntaunting,1,asyoulikeit,1599\nbursting,1,asyoulikeit,1599\ncredit,1,asyoulikeit,1599\n'how,1,asyoulikeit,1599\nWherever,1,asyoulikeit,1599\nsynod,1,asyoulikeit,1599\nfasting,1,asyoulikeit,1599\ncaparisoned,1,asyoulikeit,1599\nunseasonably,1,asyoulikeit,1599\nGreek,1,asyoulikeit,1599\ncitizens,1,asyoulikeit,1599\nVII,1,asyoulikeit,1599\nextent,1,asyoulikeit,1599\nbrooks,1,asyoulikeit,1599\nMay,1,asyoulikeit,1599\nseverally,1,asyoulikeit,1599\nfright,1,asyoulikeit,1599\ngravelled,1,asyoulikeit,1599\ngets,1,asyoulikeit,1599\nlisp,1,asyoulikeit,1599\nhuman,1,asyoulikeit,1599\nApril,1,asyoulikeit,1599\nuntuneable,1,asyoulikeit,1599\nnurse's,1,asyoulikeit,1599\ncorners,1,asyoulikeit,1599\ncarelessly,1,asyoulikeit,1599\nentreaty,1,asyoulikeit,1599\ncouching,1,asyoulikeit,1599\nfathom,1,asyoulikeit,1599\ndwells,1,asyoulikeit,1599\nshrewd,1,asyoulikeit,1599\nroynish,1,asyoulikeit,1599\ndespiteful,1,asyoulikeit,1599\n'This,1,asyoulikeit,1599\nsheep's,1,asyoulikeit,1599\ntardy,1,asyoulikeit,1599\nhired,1,asyoulikeit,1599\nTeaching,1,asyoulikeit,1599\nlover's,1,asyoulikeit,1599\nYou'll,1,asyoulikeit,1599\npayment,1,asyoulikeit,1599\nemploy,1,asyoulikeit,1599\ncannon's,1,asyoulikeit,1599\nbrag,1,asyoulikeit,1599\ndoe,1,asyoulikeit,1599\nprovide,1,asyoulikeit,1599\nsprite,1,asyoulikeit,1599\nmangled,1,asyoulikeit,1599\nparishioners,1,asyoulikeit,1599\nFalls,1,asyoulikeit,1599\nresorted,1,asyoulikeit,1599\ninquired,1,asyoulikeit,1599\nweight,1,asyoulikeit,1599\nHe's,1,asyoulikeit,1599\nhumbled,1,asyoulikeit,1599\ntoy,1,asyoulikeit,1599\nblessing,1,asyoulikeit,1599\nroasted,1,asyoulikeit,1599\ntop,1,asyoulikeit,1599\nliest,1,asyoulikeit,1599\nlamb,1,asyoulikeit,1599\ncouples,1,asyoulikeit,1599\ninstantly,1,asyoulikeit,1599\nmonths,1,asyoulikeit,1599\nwonders,1,asyoulikeit,1599\nDRAMATIS,1,asyoulikeit,1599\nshift,1,asyoulikeit,1599\ngored,1,asyoulikeit,1599\nchildishness,1,asyoulikeit,1599\nshins,1,asyoulikeit,1599\nflower,1,asyoulikeit,1599\narmed,1,asyoulikeit,1599\nusurper,1,asyoulikeit,1599\npass'd,1,asyoulikeit,1599\nbargain,1,asyoulikeit,1599\ngreatness,1,asyoulikeit,1599\nconsenting,1,asyoulikeit,1599\nsmell,1,asyoulikeit,1599\nspitting,1,asyoulikeit,1599\nhospitality,1,asyoulikeit,1599\n'Have,1,asyoulikeit,1599\nking,1,asyoulikeit,1599\nsourest,1,asyoulikeit,1599\ncommand,1,asyoulikeit,1599\nConfesses,1,asyoulikeit,1599\nslip,1,asyoulikeit,1599\nmonastic,1,asyoulikeit,1599\ngloves,1,asyoulikeit,1599\nshank,1,asyoulikeit,1599\nFinds,1,asyoulikeit,1599\nGross,1,asyoulikeit,1599\neyelids,1,asyoulikeit,1599\nunexpressive,1,asyoulikeit,1599\nhugely,1,asyoulikeit,1599\nprovidently,1,asyoulikeit,1599\namaze,1,asyoulikeit,1599\nremorse,1,asyoulikeit,1599\nsisterhood,1,asyoulikeit,1599\nunderhand,1,asyoulikeit,1599\njustly,1,asyoulikeit,1599\nspectacle,1,asyoulikeit,1599\ndinners,1,asyoulikeit,1599\nremembrance,1,asyoulikeit,1599\n'poetical',1,asyoulikeit,1599\nmarked,1,asyoulikeit,1599\neyebrow,1,asyoulikeit,1599\nFind,1,asyoulikeit,1599\nflattering,1,asyoulikeit,1599\nshape,1,asyoulikeit,1599\nenchantingly,1,asyoulikeit,1599\nmarket,1,asyoulikeit,1599\nsobbing,1,asyoulikeit,1599\nOLIVER'S,1,asyoulikeit,1599\nBrief,1,asyoulikeit,1599\nSticks,1,asyoulikeit,1599\noffer'st,1,asyoulikeit,1599\nshare,1,asyoulikeit,1599\norder,1,asyoulikeit,1599\nSupport,1,asyoulikeit,1599\nexempt,1,asyoulikeit,1599\nsharp,1,asyoulikeit,1599\npunished,1,asyoulikeit,1599\nentrances,1,asyoulikeit,1599\nsway,1,asyoulikeit,1599\nswam,1,asyoulikeit,1599\ninsinuate,1,asyoulikeit,1599\ninhabited,1,asyoulikeit,1599\nanswered,2,asyoulikeit,1599\ntroubled,2,asyoulikeit,1599\no'er,2,asyoulikeit,1599\ninvisible,2,asyoulikeit,1599\nextremity,2,asyoulikeit,1599\nValiant,2,asyoulikeit,1599\ntook,2,asyoulikeit,1599\nreputation,2,asyoulikeit,1599\nfathers,2,asyoulikeit,1599\nchurlish,2,asyoulikeit,1599\n'ild,2,asyoulikeit,1599\nJudas's,2,asyoulikeit,1599\nvillage,2,asyoulikeit,1599\nfoolery,2,asyoulikeit,1599\nrot,2,asyoulikeit,1599\nscene,2,asyoulikeit,1599\nNever,2,asyoulikeit,1599\nknoll'd,2,asyoulikeit,1599\neight,2,asyoulikeit,1599\npainted,2,asyoulikeit,1599\nMust,2,asyoulikeit,1599\nskirts,2,asyoulikeit,1599\nlearn'd,2,asyoulikeit,1599\nthroat,2,asyoulikeit,1599\nsoul,2,asyoulikeit,1599\nworms,2,asyoulikeit,1599\nlies,2,asyoulikeit,1599\nwounded,2,asyoulikeit,1599\nsaved,2,asyoulikeit,1599\nattempt,2,asyoulikeit,1599\ngallop,2,asyoulikeit,1599\nflux,2,asyoulikeit,1599\nchin,2,asyoulikeit,1599\nsoon,2,asyoulikeit,1599\nsons,2,asyoulikeit,1599\nbirth,2,asyoulikeit,1599\ndraw,2,asyoulikeit,1599\nworking,2,asyoulikeit,1599\nsold,2,asyoulikeit,1599\nYoung,2,asyoulikeit,1599\nWhose,2,asyoulikeit,1599\nassembly,2,asyoulikeit,1599\npurse,2,asyoulikeit,1599\ntoward,2,asyoulikeit,1599\ncheer,2,asyoulikeit,1599\nhearing,2,asyoulikeit,1599\npaper,2,asyoulikeit,1599\nglass,2,asyoulikeit,1599\nblessed,2,asyoulikeit,1599\nbegan,2,asyoulikeit,1599\nfeatures,2,asyoulikeit,1599\nCupid,2,asyoulikeit,1599\nasked,2,asyoulikeit,1599\nweaker,2,asyoulikeit,1599\nhereafter,2,asyoulikeit,1599\nDuke,2,asyoulikeit,1599\nGet,2,asyoulikeit,1599\nbound,2,asyoulikeit,1599\nsex,2,asyoulikeit,1599\nfavoured,2,asyoulikeit,1599\ndeceived,2,asyoulikeit,1599\nsea,2,asyoulikeit,1599\nbeasts,2,asyoulikeit,1599\nyield,2,asyoulikeit,1599\nnine,2,asyoulikeit,1599\nperil,2,asyoulikeit,1599\nCorin,2,asyoulikeit,1599\nabuses,2,asyoulikeit,1599\nfollowed,2,asyoulikeit,1599\n'I,2,asyoulikeit,1599\nstern,2,asyoulikeit,1599\ntestament,2,asyoulikeit,1599\nacquainted,2,asyoulikeit,1599\nwages,2,asyoulikeit,1599\nsky,2,asyoulikeit,1599\nsuck,2,asyoulikeit,1599\nmother,2,asyoulikeit,1599\nplay'd,2,asyoulikeit,1599\nbetwixt,2,asyoulikeit,1599\nfoulness,2,asyoulikeit,1599\nread,2,asyoulikeit,1599\nvile,2,asyoulikeit,1599\npoints,2,asyoulikeit,1599\nconceit,2,asyoulikeit,1599\nrhyme,2,asyoulikeit,1599\nfigure,2,asyoulikeit,1599\n'Od's,2,asyoulikeit,1599\nruns,2,asyoulikeit,1599\nactions,2,asyoulikeit,1599\nterms,2,asyoulikeit,1599\nencounter,2,asyoulikeit,1599\neldest,2,asyoulikeit,1599\nPardon,2,asyoulikeit,1599\ncivility,2,asyoulikeit,1599\nwilling,2,asyoulikeit,1599\nworthy,2,asyoulikeit,1599\nWherein,2,asyoulikeit,1599\nLeave,2,asyoulikeit,1599\ncries,2,asyoulikeit,1599\noverthrown,2,asyoulikeit,1599\nsum,2,asyoulikeit,1599\nelder,2,asyoulikeit,1599\ncivet,2,asyoulikeit,1599\nfeel,2,asyoulikeit,1599\nsauce,2,asyoulikeit,1599\ndissuade,2,asyoulikeit,1599\nmasters,2,asyoulikeit,1599\nblind,2,asyoulikeit,1599\nbrief,2,asyoulikeit,1599\nmalice,2,asyoulikeit,1599\ndial,2,asyoulikeit,1599\nothers,2,asyoulikeit,1599\nware,2,asyoulikeit,1599\nflesh,2,asyoulikeit,1599\ntar,2,asyoulikeit,1599\nmirth,2,asyoulikeit,1599\nexecutioner,2,asyoulikeit,1599\nsteal,2,asyoulikeit,1599\nhates,2,asyoulikeit,1599\ngoose,2,asyoulikeit,1599\nDiana,2,asyoulikeit,1599\nhated,2,asyoulikeit,1599\ndukedom,2,asyoulikeit,1599\nbond,2,asyoulikeit,1599\nbreeding,2,asyoulikeit,1599\nwash,2,asyoulikeit,1599\ndistress,2,asyoulikeit,1599\nmistake,2,asyoulikeit,1599\nThere's,2,asyoulikeit,1599\ncreeping,2,asyoulikeit,1599\nbright,2,asyoulikeit,1599\nfairest,2,asyoulikeit,1599\nfoil,2,asyoulikeit,1599\nbig,2,asyoulikeit,1599\nI',2,asyoulikeit,1599\nrefuse,2,asyoulikeit,1599\noffend,2,asyoulikeit,1599\nShallow,2,asyoulikeit,1599\nAt,2,asyoulikeit,1599\naltogether,2,asyoulikeit,1599\nchaste,2,asyoulikeit,1599\nyouthful,2,asyoulikeit,1599\nbow,2,asyoulikeit,1599\nunnatural,2,asyoulikeit,1599\nmurderers,2,asyoulikeit,1599\nStill,2,asyoulikeit,1599\nsmile,2,asyoulikeit,1599\nbad,2,asyoulikeit,1599\nsecretly,2,asyoulikeit,1599\nMe,2,asyoulikeit,1599\ncruel,2,asyoulikeit,1599\nkept,2,asyoulikeit,1599\ntranslate,2,asyoulikeit,1599\ninnocent,2,asyoulikeit,1599\nSomething,2,asyoulikeit,1599\npleasure,2,asyoulikeit,1599\ndinner,2,asyoulikeit,1599\nwhole,2,asyoulikeit,1599\nease,2,asyoulikeit,1599\nrevenue,2,asyoulikeit,1599\nLet's,2,asyoulikeit,1599\ngreasy,2,asyoulikeit,1599\ngod,2,asyoulikeit,1599\ngave,2,asyoulikeit,1599\nabsent,2,asyoulikeit,1599\ngrief,2,asyoulikeit,1599\nJove's,2,asyoulikeit,1599\nburs,2,asyoulikeit,1599\ndifference,2,asyoulikeit,1599\nbell,2,asyoulikeit,1599\nPrithee,2,asyoulikeit,1599\nburn,2,asyoulikeit,1599\ncat,2,asyoulikeit,1599\nchildren,2,asyoulikeit,1599\nfoolishly,2,asyoulikeit,1599\nRe,2,asyoulikeit,1599\nfurnished,2,asyoulikeit,1599\njewel,2,asyoulikeit,1599\nfarewell,2,asyoulikeit,1599\neaten,2,asyoulikeit,1599\ndespite,2,asyoulikeit,1599\nvows,2,asyoulikeit,1599\namongst,2,asyoulikeit,1599\nstronger,2,asyoulikeit,1599\npoetical,2,asyoulikeit,1599\nenterprise,2,asyoulikeit,1599\ncalling,2,asyoulikeit,1599\ncrowned,2,asyoulikeit,1599\nuses,2,asyoulikeit,1599\ndeed,2,asyoulikeit,1599\nIrish,2,asyoulikeit,1599\ninstant,2,asyoulikeit,1599\nwiped,2,asyoulikeit,1599\nbetray,2,asyoulikeit,1599\nHolla,2,asyoulikeit,1599\nvoyage,2,asyoulikeit,1599\ngift,2,asyoulikeit,1599\nHere's,2,asyoulikeit,1599\nfavour,2,asyoulikeit,1599\nneeds,2,asyoulikeit,1599\nswearing,2,asyoulikeit,1599\ndwell,2,asyoulikeit,1599\nholiday,2,asyoulikeit,1599\nboast,2,asyoulikeit,1599\nhusband,2,asyoulikeit,1599\napproach,2,asyoulikeit,1599\nfourscore,2,asyoulikeit,1599\nox,2,asyoulikeit,1599\nattending,2,asyoulikeit,1599\ndelay,2,asyoulikeit,1599\nsmall,2,asyoulikeit,1599\naside,2,asyoulikeit,1599\nuncleanly,2,asyoulikeit,1599\no',2,asyoulikeit,1599\nseventeen,2,asyoulikeit,1599\nFortune's,2,asyoulikeit,1599\nOliver's,2,asyoulikeit,1599\nmiserable,2,asyoulikeit,1599\nchallenger,2,asyoulikeit,1599\nall's,2,asyoulikeit,1599\ndevil,2,asyoulikeit,1599\nnimble,2,asyoulikeit,1599\ntyrants,2,asyoulikeit,1599\nacquaint,2,asyoulikeit,1599\nBecause,2,asyoulikeit,1599\nincontinent,2,asyoulikeit,1599\nthrice,2,asyoulikeit,1599\nkilled,2,asyoulikeit,1599\nbrought,2,asyoulikeit,1599\nreasons,2,asyoulikeit,1599\naxe,2,asyoulikeit,1599\nSeeking,2,asyoulikeit,1599\nkeen,2,asyoulikeit,1599\nremember'd,2,asyoulikeit,1599\nhalf,2,asyoulikeit,1599\nmessenger,2,asyoulikeit,1599\nnearer,2,asyoulikeit,1599\npalm,2,asyoulikeit,1599\ncall'd,2,asyoulikeit,1599\nshut,2,asyoulikeit,1599\ndeny,2,asyoulikeit,1599\nfour,2,asyoulikeit,1599\naccord,2,asyoulikeit,1599\npurgation,2,asyoulikeit,1599\nkingdoms,2,asyoulikeit,1599\nQuarrelsome,2,asyoulikeit,1599\nneglect,2,asyoulikeit,1599\nwinter's,2,asyoulikeit,1599\nspit,2,asyoulikeit,1599\nmoney,2,asyoulikeit,1599\nmock,2,asyoulikeit,1599\nforsworn,2,asyoulikeit,1599\nfrown,2,asyoulikeit,1599\nCircumstantial,2,asyoulikeit,1599\npoint,2,asyoulikeit,1599\nrevenge,2,asyoulikeit,1599\ngirl,2,asyoulikeit,1599\nfresh,2,asyoulikeit,1599\nterm,2,asyoulikeit,1599\nHast,2,asyoulikeit,1599\nbought,2,asyoulikeit,1599\nCourteous,2,asyoulikeit,1599\ntouch,2,asyoulikeit,1599\ncheque,2,asyoulikeit,1599\narray,2,asyoulikeit,1599\nenemies,2,asyoulikeit,1599\njudgment,2,asyoulikeit,1599\nfantasy,2,asyoulikeit,1599\ntrial,2,asyoulikeit,1599\nridiculous,2,asyoulikeit,1599\nQuip,2,asyoulikeit,1599\nenjoy,2,asyoulikeit,1599\nfeign,2,asyoulikeit,1599\nmisprised,2,asyoulikeit,1599\ncompact,2,asyoulikeit,1599\nShould,2,asyoulikeit,1599\nfat,2,asyoulikeit,1599\nyesterday,2,asyoulikeit,1599\nlacking,2,asyoulikeit,1599\njustice,2,asyoulikeit,1599\neducation,2,asyoulikeit,1599\ncottage,2,asyoulikeit,1599\ngarments,2,asyoulikeit,1599\nreport,2,asyoulikeit,1599\nshrunk,2,asyoulikeit,1599\nforehead,2,asyoulikeit,1599\nrams,2,asyoulikeit,1599\nshouldst,2,asyoulikeit,1599\nantique,2,asyoulikeit,1599\nbrowner,2,asyoulikeit,1599\nlords,2,asyoulikeit,1599\nChurlish,2,asyoulikeit,1599\nElse,2,asyoulikeit,1599\nnose,2,asyoulikeit,1599\nmarks,2,asyoulikeit,1599\npenury,2,asyoulikeit,1599\nrare,2,asyoulikeit,1599\nproceed,2,asyoulikeit,1599\ncircle,2,asyoulikeit,1599\npaler,2,asyoulikeit,1599\nentertainment,2,asyoulikeit,1599\ntender,2,asyoulikeit,1599\nestate,2,asyoulikeit,1599\ntraitors,2,asyoulikeit,1599\ncandle,2,asyoulikeit,1599\nhide,2,asyoulikeit,1599\ntravels,2,asyoulikeit,1599\nsirrah,2,asyoulikeit,1599\nbottom,2,asyoulikeit,1599\nLove,2,asyoulikeit,1599\nleathern,2,asyoulikeit,1599\nchase,2,asyoulikeit,1599\nadventure,2,asyoulikeit,1599\nphilosopher,2,asyoulikeit,1599\nnun,2,asyoulikeit,1599\nHigh,2,asyoulikeit,1599\nperform,2,asyoulikeit,1599\nmisery,2,asyoulikeit,1599\nunhappy,2,asyoulikeit,1599\nawhile,2,asyoulikeit,1599\ngeneral,2,asyoulikeit,1599\neffect,2,asyoulikeit,1599\nmortal,2,asyoulikeit,1599\nteeth,2,asyoulikeit,1599\nmightst,2,asyoulikeit,1599\nkisses,2,asyoulikeit,1599\nmerrily,2,asyoulikeit,1599\nbeggar,2,asyoulikeit,1599\nchain,2,asyoulikeit,1599\n'gainst,2,asyoulikeit,1599\nvillanous,2,asyoulikeit,1599\npresently,2,asyoulikeit,1599\nkissing,2,asyoulikeit,1599\nmonsieur,2,asyoulikeit,1599\nknown,2,asyoulikeit,1599\nstate,2,asyoulikeit,1599\nblow,2,asyoulikeit,1599\nsearch,2,asyoulikeit,1599\nmedlar,2,asyoulikeit,1599\nordinary,2,asyoulikeit,1599\ngraze,2,asyoulikeit,1599\napart,2,asyoulikeit,1599\nsmoke,2,asyoulikeit,1599\nMade,2,asyoulikeit,1599\nabandon'd,2,asyoulikeit,1599\nmistress',2,asyoulikeit,1599\nfire,2,asyoulikeit,1599\ninland,2,asyoulikeit,1599\nducdame,2,asyoulikeit,1599\nrailing,2,asyoulikeit,1599\nbreed,2,asyoulikeit,1599\nReproof,2,asyoulikeit,1599\naffairs,2,asyoulikeit,1599\nmaids,2,asyoulikeit,1599\nopinion,2,asyoulikeit,1599\nsting,2,asyoulikeit,1599\nsale,2,asyoulikeit,1599\ncontemplation,2,asyoulikeit,1599\nthine,2,asyoulikeit,1599\ntwelvemonth,2,asyoulikeit,1599\nbanishment,2,asyoulikeit,1599\nfits,2,asyoulikeit,1599\nthrow,2,asyoulikeit,1599\ngoats,2,asyoulikeit,1599\nRetort,2,asyoulikeit,1599\ncure,2,asyoulikeit,1599\nfetch,2,asyoulikeit,1599\nthird,2,asyoulikeit,1599\nmeasures,2,asyoulikeit,1599\nabandon,2,asyoulikeit,1599\nmoment,2,asyoulikeit,1599\noak,2,asyoulikeit,1599\nclock,2,asyoulikeit,1599\ncount,2,asyoulikeit,1599\ncertainly,2,asyoulikeit,1599\nheigh,2,asyoulikeit,1599\n'The,2,asyoulikeit,1599\npoet,2,asyoulikeit,1599\naudience,2,asyoulikeit,1599\nambition,2,asyoulikeit,1599\nassure,2,asyoulikeit,1599\ndanger,2,asyoulikeit,1599\nforward,2,asyoulikeit,1599\nends,2,asyoulikeit,1599\napace,2,asyoulikeit,1599\nvillains,2,asyoulikeit,1599\nwomen's,2,asyoulikeit,1599\nbells,2,asyoulikeit,1599\nbelly,2,asyoulikeit,1599\ndrowned,2,asyoulikeit,1599\nfaces,2,asyoulikeit,1599\nserved,2,asyoulikeit,1599\ntaken,2,asyoulikeit,1599\ngraff,2,asyoulikeit,1599\nrotten,2,asyoulikeit,1599\nJuno's,2,asyoulikeit,1599\npoison,2,asyoulikeit,1599\nanger,2,asyoulikeit,1599\nowe,2,asyoulikeit,1599\nlineaments,2,asyoulikeit,1599\nforester,2,asyoulikeit,1599\nwaste,2,asyoulikeit,1599\nhundred,2,asyoulikeit,1599\nwrong'd,2,asyoulikeit,1599\ncover,2,asyoulikeit,1599\nfail,2,asyoulikeit,1599\ntable,2,asyoulikeit,1599\ncried,2,asyoulikeit,1599\ndurst,2,asyoulikeit,1599\nground,2,asyoulikeit,1599\nsnake,2,asyoulikeit,1599\nwander,2,asyoulikeit,1599\ngrant,2,asyoulikeit,1599\nsafest,2,asyoulikeit,1599\nanswers,2,asyoulikeit,1599\nwoeful,2,asyoulikeit,1599\ncattle,2,asyoulikeit,1599\nthrew,2,asyoulikeit,1599\nwore,2,asyoulikeit,1599\nribs,2,asyoulikeit,1599\nsafety,2,asyoulikeit,1599\nsavage,2,asyoulikeit,1599\nthereby,2,asyoulikeit,1599\nbare,2,asyoulikeit,1599\ndivers,2,asyoulikeit,1599\nwealth,2,asyoulikeit,1599\nsmooth,2,asyoulikeit,1599\nperceive,2,asyoulikeit,1599\ncensure,2,asyoulikeit,1599\npublic,2,asyoulikeit,1599\ncock,2,asyoulikeit,1599\nfriendship,2,asyoulikeit,1599\nVery,2,asyoulikeit,1599\nbounds,2,asyoulikeit,1599\nlarge,2,asyoulikeit,1599\ntale,2,asyoulikeit,1599\nis't,2,asyoulikeit,1599\nconstant,2,asyoulikeit,1599\ngentlemen,2,asyoulikeit,1599\nAtalanta's,2,asyoulikeit,1599\nsixth,2,asyoulikeit,1599\nwild,2,asyoulikeit,1599\nModest,2,asyoulikeit,1599\nLay,2,asyoulikeit,1599\ngiddy,2,asyoulikeit,1599\nvirtues,2,asyoulikeit,1599\ngives,2,asyoulikeit,1599\nReply,2,asyoulikeit,1599\nlow,2,asyoulikeit,1599\ntrots,2,asyoulikeit,1599\ntalking,2,asyoulikeit,1599\narrows,2,asyoulikeit,1599\ncourtesy,2,asyoulikeit,1599\nipse,2,asyoulikeit,1599\nfeigning,2,asyoulikeit,1599\nliking,2,asyoulikeit,1599\ncost,2,asyoulikeit,1599\nrender,2,asyoulikeit,1599\ntidings,2,asyoulikeit,1599\nPatience,2,asyoulikeit,1599\nsound,2,asyoulikeit,1599\nPray,2,asyoulikeit,1599\ncry,2,asyoulikeit,1599\nheavenly,2,asyoulikeit,1599\nHe'll,2,asyoulikeit,1599\npour,2,asyoulikeit,1599\nheels,2,asyoulikeit,1599\ntherein,2,asyoulikeit,1599\nmodern,2,asyoulikeit,1599\nCry,2,asyoulikeit,1599\nreturn,2,asyoulikeit,1599\nleg,2,asyoulikeit,1599\nled,2,asyoulikeit,1599\npigeons,2,asyoulikeit,1599\nsend,2,asyoulikeit,1599\nnurse,2,asyoulikeit,1599\nerewhile,2,asyoulikeit,1599\nprotest,2,asyoulikeit,1599\nsighed,2,asyoulikeit,1599\nfavouredly,2,asyoulikeit,1599\nprincipal,2,asyoulikeit,1599\nendured,2,asyoulikeit,1599\nmad,2,asyoulikeit,1599\nvicar,2,asyoulikeit,1599\nconduct,2,asyoulikeit,1599\nslut,2,asyoulikeit,1599\nlearn,2,asyoulikeit,1599\nstraight,2,asyoulikeit,1599\nsadness,2,asyoulikeit,1599\ntreacherous,2,asyoulikeit,1599\nAccording,2,asyoulikeit,1599\nanimals,2,asyoulikeit,1599\natomies,2,asyoulikeit,1599\nhenceforth,2,asyoulikeit,1599\nphysic,2,asyoulikeit,1599\npages,2,asyoulikeit,1599\nIndeed,2,asyoulikeit,1599\nsometimes,2,asyoulikeit,1599\npolitic,2,asyoulikeit,1599\nlate,2,asyoulikeit,1599\nattendants,2,asyoulikeit,1599\nbeauty,2,asyoulikeit,1599\nrecompense,2,asyoulikeit,1599\nbreaking,2,asyoulikeit,1599\nragged,2,asyoulikeit,1599\ngoing,2,asyoulikeit,1599\nurged,2,asyoulikeit,1599\nsimply,2,asyoulikeit,1599\nshade,2,asyoulikeit,1599\nholly,2,asyoulikeit,1599\nsimple,2,asyoulikeit,1599\nsentence,2,asyoulikeit,1599\nwitness,2,asyoulikeit,1599\ncareless,2,asyoulikeit,1599\ndark,2,asyoulikeit,1599\nfollow,2,asyoulikeit,1599\nboisterous,2,asyoulikeit,1599\nwhetstone,2,asyoulikeit,1599\nland,2,asyoulikeit,1599\ncatch,2,asyoulikeit,1599\ndispatch,2,asyoulikeit,1599\nBring,2,asyoulikeit,1599\ncoupled,2,asyoulikeit,1599\ncertain,2,asyoulikeit,1599\nflout,2,asyoulikeit,1599\nshake,2,asyoulikeit,1599\nTake,2,asyoulikeit,1599\nLeft,2,asyoulikeit,1599\nambitious,2,asyoulikeit,1599\nentreated,2,asyoulikeit,1599\ncross,2,asyoulikeit,1599\nprivate,2,asyoulikeit,1599\ndwelling,2,asyoulikeit,1599\nprincess,2,asyoulikeit,1599\nten,2,asyoulikeit,1599\nforbear,2,asyoulikeit,1599\nneighbour,2,asyoulikeit,1599\npetticoat,2,asyoulikeit,1599\nbreaths,2,asyoulikeit,1599\ncrown,2,asyoulikeit,1599\nturn'd,2,asyoulikeit,1599\nshepherd's,3,asyoulikeit,1599\nparted,3,asyoulikeit,1599\ntimes,3,asyoulikeit,1599\nred,3,asyoulikeit,1599\nheir,3,asyoulikeit,1599\nforswear,3,asyoulikeit,1599\nwicked,3,asyoulikeit,1599\nding,3,asyoulikeit,1599\nfemale,3,asyoulikeit,1599\nmend,3,asyoulikeit,1599\nBeau,3,asyoulikeit,1599\nchiding,3,asyoulikeit,1599\njoy,3,asyoulikeit,1599\nwrites,3,asyoulikeit,1599\nhers,3,asyoulikeit,1599\nhonourable,3,asyoulikeit,1599\nlooked,3,asyoulikeit,1599\nunderstand,3,asyoulikeit,1599\ncave,3,asyoulikeit,1599\ntrust,3,asyoulikeit,1599\nlief,3,asyoulikeit,1599\nWould,3,asyoulikeit,1599\nbecome,3,asyoulikeit,1599\nmercy,3,asyoulikeit,1599\nstrength,3,asyoulikeit,1599\nlacks,3,asyoulikeit,1599\nsat,3,asyoulikeit,1599\nstream,3,asyoulikeit,1599\ngrows,3,asyoulikeit,1599\nJove,3,asyoulikeit,1599\nKeep,3,asyoulikeit,1599\nmadness,3,asyoulikeit,1599\ntown,3,asyoulikeit,1599\nbreaks,3,asyoulikeit,1599\ncounterfeited,3,asyoulikeit,1599\nmaking,3,asyoulikeit,1599\nForester,3,asyoulikeit,1599\nbenefits,3,asyoulikeit,1599\nbarks,3,asyoulikeit,1599\nstands,3,asyoulikeit,1599\ninvention,3,asyoulikeit,1599\nvirtuous,3,asyoulikeit,1599\nsociety,3,asyoulikeit,1599\ntouches,3,asyoulikeit,1599\n'twas,3,asyoulikeit,1599\nwedding,3,asyoulikeit,1599\nwrestled,3,asyoulikeit,1599\nfell,3,asyoulikeit,1599\nlove's,3,asyoulikeit,1599\nkindly,3,asyoulikeit,1599\ndisgrace,3,asyoulikeit,1599\nstudy,3,asyoulikeit,1599\nbeloved,3,asyoulikeit,1599\nlooks,3,asyoulikeit,1599\nbecomes,3,asyoulikeit,1599\npoverty,3,asyoulikeit,1599\nWast,3,asyoulikeit,1599\nbrain,3,asyoulikeit,1599\ncourtier,3,asyoulikeit,1599\nenvious,3,asyoulikeit,1599\nswoon,3,asyoulikeit,1599\nsun,3,asyoulikeit,1599\nfeet,3,asyoulikeit,1599\ngrow,3,asyoulikeit,1599\nswore,3,asyoulikeit,1599\nweather,3,asyoulikeit,1599\nfalse,3,asyoulikeit,1599\nrude,3,asyoulikeit,1599\nwishes,3,asyoulikeit,1599\nseems,3,asyoulikeit,1599\nOne,3,asyoulikeit,1599\ndies,3,asyoulikeit,1599\nwish,3,asyoulikeit,1599\ndied,3,asyoulikeit,1599\nmerely,3,asyoulikeit,1599\nwarp,3,asyoulikeit,1599\nmeat,3,asyoulikeit,1599\nambles,3,asyoulikeit,1599\nwast,3,asyoulikeit,1599\nwits,3,asyoulikeit,1599\nspoke,3,asyoulikeit,1599\ndeserves,3,asyoulikeit,1599\nwherefore,3,asyoulikeit,1599\nFaith,3,asyoulikeit,1599\nside,3,asyoulikeit,1599\npancakes,3,asyoulikeit,1599\nstir,3,asyoulikeit,1599\nmorning,3,asyoulikeit,1599\nhas,3,asyoulikeit,1599\nWhat's,3,asyoulikeit,1599\nreligious,3,asyoulikeit,1599\nmusic,3,asyoulikeit,1599\nCelia,3,asyoulikeit,1599\nscarce,3,asyoulikeit,1599\nBe,3,asyoulikeit,1599\nLe,3,asyoulikeit,1599\nunless,3,asyoulikeit,1599\nbrings,3,asyoulikeit,1599\nforce,3,asyoulikeit,1599\nHer,3,asyoulikeit,1599\nWithin,3,asyoulikeit,1599\nbeg,3,asyoulikeit,1599\nenter,3,asyoulikeit,1599\ndeserved,3,asyoulikeit,1599\npass,3,asyoulikeit,1599\nbegot,3,asyoulikeit,1599\nTouchstone,3,asyoulikeit,1599\nbush,3,asyoulikeit,1599\nshepherds,3,asyoulikeit,1599\nwedlock,3,asyoulikeit,1599\nSpeak,3,asyoulikeit,1599\nexile,3,asyoulikeit,1599\ntedious,3,asyoulikeit,1599\nswift,3,asyoulikeit,1599\nLike,3,asyoulikeit,1599\nepilogue,3,asyoulikeit,1599\nbeginning,3,asyoulikeit,1599\ncrowns,3,asyoulikeit,1599\ndeep,3,asyoulikeit,1599\naffection,3,asyoulikeit,1599\npromised,3,asyoulikeit,1599\ntyrant,3,asyoulikeit,1599\nde,3,asyoulikeit,1599\nleft,3,asyoulikeit,1599\nsheep,3,asyoulikeit,1599\nyes,3,asyoulikeit,1599\ntongues,3,asyoulikeit,1599\nnapkin,3,asyoulikeit,1599\nunworthy,3,asyoulikeit,1599\nplays,3,asyoulikeit,1599\nseeming,3,asyoulikeit,1599\nmanner,3,asyoulikeit,1599\nforget,3,asyoulikeit,1599\ngrowth,3,asyoulikeit,1599\nthyself,3,asyoulikeit,1599\ncured,3,asyoulikeit,1599\nmove,3,asyoulikeit,1599\ncommend,3,asyoulikeit,1599\nYonder,3,asyoulikeit,1599\nReads,3,asyoulikeit,1599\nnoble,3,asyoulikeit,1599\nhadst,3,asyoulikeit,1599\nendure,3,asyoulikeit,1599\nYea,3,asyoulikeit,1599\nspent,3,asyoulikeit,1599\napparel,3,asyoulikeit,1599\nremoved,3,asyoulikeit,1599\ngreater,3,asyoulikeit,1599\npure,3,asyoulikeit,1599\nmen's,3,asyoulikeit,1599\nspeaks,3,asyoulikeit,1599\nround,3,asyoulikeit,1599\nliberty,3,asyoulikeit,1599\nFull,3,asyoulikeit,1599\ndrawn,3,asyoulikeit,1599\nschool,3,asyoulikeit,1599\npraise,3,asyoulikeit,1599\nacquaintance,3,asyoulikeit,1599\nopen,3,asyoulikeit,1599\npair,3,asyoulikeit,1599\ndiest,3,asyoulikeit,1599\ndevise,3,asyoulikeit,1599\nHymen,3,asyoulikeit,1599\nrough,3,asyoulikeit,1599\nye,3,asyoulikeit,1599\nthanks,3,asyoulikeit,1599\nboughs,3,asyoulikeit,1599\nnative,3,asyoulikeit,1599\nwooing,3,asyoulikeit,1599\nbroke,3,asyoulikeit,1599\nguess,3,asyoulikeit,1599\nBetween,3,asyoulikeit,1599\noften,3,asyoulikeit,1599\noccasion,3,asyoulikeit,1599\nkeeps,3,asyoulikeit,1599\nnay,3,asyoulikeit,1599\nempty,3,asyoulikeit,1599\nbeast,3,asyoulikeit,1599\nwonder,3,asyoulikeit,1599\nremedy,3,asyoulikeit,1599\newes,3,asyoulikeit,1599\nnut,3,asyoulikeit,1599\nstays,3,asyoulikeit,1599\nquickly,3,asyoulikeit,1599\nsawest,3,asyoulikeit,1599\nDoth,3,asyoulikeit,1599\nchild,3,asyoulikeit,1599\nprecious,3,asyoulikeit,1599\nhigh,3,asyoulikeit,1599\ndoors,3,asyoulikeit,1599\nfantastical,3,asyoulikeit,1599\nwiser,3,asyoulikeit,1599\nknave,3,asyoulikeit,1599\nhumorous,3,asyoulikeit,1599\nblush,3,asyoulikeit,1599\nreading,3,asyoulikeit,1599\nthere's,3,asyoulikeit,1599\nmark,3,asyoulikeit,1599\nmagician,3,asyoulikeit,1599\nlabour,3,asyoulikeit,1599\nfree,3,asyoulikeit,1599\nwed,3,asyoulikeit,1599\nsame,3,asyoulikeit,1599\ntaste,3,asyoulikeit,1599\nwi',3,asyoulikeit,1599\nstyle,3,asyoulikeit,1599\nexperience,3,asyoulikeit,1599\nWe'll,3,asyoulikeit,1599\nstand,3,asyoulikeit,1599\nsorrow,3,asyoulikeit,1599\nhappiness,3,asyoulikeit,1599\nbeseech,3,asyoulikeit,1599\nDear,3,asyoulikeit,1599\nSay,3,asyoulikeit,1599\nremains,3,asyoulikeit,1599\nniece,3,asyoulikeit,1599\nRose,3,asyoulikeit,1599\nBoys,3,asyoulikeit,1599\nduty,3,asyoulikeit,1599\nreceive,3,asyoulikeit,1599\nbetween,3,asyoulikeit,1599\noath,3,asyoulikeit,1599\nwood,3,asyoulikeit,1599\nMartext,3,asyoulikeit,1599\nbrother's,3,asyoulikeit,1599\nserve,3,asyoulikeit,1599\nface,3,asyoulikeit,1599\nhappy,3,asyoulikeit,1599\nmightily,3,asyoulikeit,1599\nshepherdess,3,asyoulikeit,1599\nHeaven,3,asyoulikeit,1599\ncharged,3,asyoulikeit,1599\nrail,3,asyoulikeit,1599\nrain,3,asyoulikeit,1599\ndull,3,asyoulikeit,1599\ndrops,3,asyoulikeit,1599\nfain,3,asyoulikeit,1599\njudge,3,asyoulikeit,1599\ngiving,3,asyoulikeit,1599\ncovered,3,asyoulikeit,1599\nTill,3,asyoulikeit,1599\nProceed,3,asyoulikeit,1599\npleased,3,asyoulikeit,1599\nwork,3,asyoulikeit,1599\ntune,3,asyoulikeit,1599\nHeigh,3,asyoulikeit,1599\nprofit,3,asyoulikeit,1599\npleases,3,asyoulikeit,1599\nFare,3,asyoulikeit,1599\nlined,3,asyoulikeit,1599\nherself,3,asyoulikeit,1599\nwives,3,asyoulikeit,1599\nlived,3,asyoulikeit,1599\nShepherd,3,asyoulikeit,1599\nobservance,3,asyoulikeit,1599\nfast,3,asyoulikeit,1599\nWelcome,3,asyoulikeit,1599\ntall,3,asyoulikeit,1599\ncoat,3,asyoulikeit,1599\nlay,3,asyoulikeit,1599\npoetry,3,asyoulikeit,1599\npardon,3,asyoulikeit,1599\nswears,3,asyoulikeit,1599\nmustard,3,asyoulikeit,1599\ncounterfeit,3,asyoulikeit,1599\nargument,3,asyoulikeit,1599\nlives,3,asyoulikeit,1599\nwriting,3,asyoulikeit,1599\ncondition,3,asyoulikeit,1599\ncote,3,asyoulikeit,1599\ntraitor,3,asyoulikeit,1599\n'twill,3,asyoulikeit,1599\nentreat,3,asyoulikeit,1599\nNeither,3,asyoulikeit,1599\ngrieves,3,asyoulikeit,1599\ngoes,3,asyoulikeit,1599\nmatch,3,asyoulikeit,1599\nmadam,3,asyoulikeit,1599\npurpose,3,asyoulikeit,1599\nMistress,3,asyoulikeit,1599\nbrow,3,asyoulikeit,1599\nbegins,3,asyoulikeit,1599\nmeeting,3,asyoulikeit,1599\nevils,3,asyoulikeit,1599\nthoughts,3,asyoulikeit,1599\nheartily,3,asyoulikeit,1599\nthither,3,asyoulikeit,1599\nsleeping,3,asyoulikeit,1599\nbesides,3,asyoulikeit,1599\nhurt,3,asyoulikeit,1599\nbooks,3,asyoulikeit,1599\ndog,3,asyoulikeit,1599\ndry,3,asyoulikeit,1599\nbred,3,asyoulikeit,1599\nlame,3,asyoulikeit,1599\nFair,3,asyoulikeit,1599\nspirit,3,asyoulikeit,1599\npower,3,asyoulikeit,1599\noaths,3,asyoulikeit,1599\ndegrees,3,asyoulikeit,1599\nlusty,4,asyoulikeit,1599\njoin,4,asyoulikeit,1599\nfancy,4,asyoulikeit,1599\npossible,4,asyoulikeit,1599\nwoman's,4,asyoulikeit,1599\nhelp,4,asyoulikeit,1599\nWilt,4,asyoulikeit,1599\nvillain,4,asyoulikeit,1599\nyounger,4,asyoulikeit,1599\nmere,4,asyoulikeit,1599\nwhile,4,asyoulikeit,1599\nbrook,4,asyoulikeit,1599\noffer,4,asyoulikeit,1599\ndrink,4,asyoulikeit,1599\ncalls,4,asyoulikeit,1599\nrun,4,asyoulikeit,1599\ndamned,4,asyoulikeit,1599\nUpon,4,asyoulikeit,1599\ncare,4,asyoulikeit,1599\ngraces,4,asyoulikeit,1599\nAfter,4,asyoulikeit,1599\nhighness,4,asyoulikeit,1599\ncomplexion,4,asyoulikeit,1599\nblack,4,asyoulikeit,1599\nForest,4,asyoulikeit,1599\nsaying,4,asyoulikeit,1599\nworth,4,asyoulikeit,1599\nchurch,4,asyoulikeit,1599\nSuch,4,asyoulikeit,1599\nFarewell,4,asyoulikeit,1599\ncountenance,4,asyoulikeit,1599\nWilliam,4,asyoulikeit,1599\ncommon,4,asyoulikeit,1599\ninstance,4,asyoulikeit,1599\nfruit,4,asyoulikeit,1599\nwine,4,asyoulikeit,1599\nhence,4,asyoulikeit,1599\nvoice,4,asyoulikeit,1599\nDE,4,asyoulikeit,1599\nWhiles,4,asyoulikeit,1599\ngentleness,4,asyoulikeit,1599\nwhose,4,asyoulikeit,1599\nlearned,4,asyoulikeit,1599\nsuddenly,4,asyoulikeit,1599\njust,4,asyoulikeit,1599\nbuy,4,asyoulikeit,1599\ntravel,4,asyoulikeit,1599\nbegin,4,asyoulikeit,1599\nRowland's,4,asyoulikeit,1599\nNature's,4,asyoulikeit,1599\nconfess,4,asyoulikeit,1599\nlong,4,asyoulikeit,1599\nBesides,4,asyoulikeit,1599\nthat's,4,asyoulikeit,1599\ndone,4,asyoulikeit,1599\nwisely,4,asyoulikeit,1599\nwherein,4,asyoulikeit,1599\nless,4,asyoulikeit,1599\ntwenty,4,asyoulikeit,1599\nshallow,4,asyoulikeit,1599\nCall,4,asyoulikeit,1599\npale,4,asyoulikeit,1599\nexcuse,4,asyoulikeit,1599\ncity,4,asyoulikeit,1599\nUnder,4,asyoulikeit,1599\narm,4,asyoulikeit,1599\nbrothers,4,asyoulikeit,1599\npresent,4,asyoulikeit,1599\nhangs,4,asyoulikeit,1599\nnonino,4,asyoulikeit,1599\nproper,4,asyoulikeit,1599\nfaithful,4,asyoulikeit,1599\nbeards,4,asyoulikeit,1599\nHath,4,asyoulikeit,1599\nhaving,4,asyoulikeit,1599\nInto,4,asyoulikeit,1599\nlean,4,asyoulikeit,1599\nroom,4,asyoulikeit,1599\nmaid,4,asyoulikeit,1599\nrank,4,asyoulikeit,1599\nnote,4,asyoulikeit,1599\nbears,4,asyoulikeit,1599\nyear,4,asyoulikeit,1599\nere,4,asyoulikeit,1599\ndevice,4,asyoulikeit,1599\nlioness,4,asyoulikeit,1599\nfoolish,4,asyoulikeit,1599\nbloody,4,asyoulikeit,1599\nnaught,4,asyoulikeit,1599\nsayest,4,asyoulikeit,1599\ndesires,4,asyoulikeit,1599\nsans,4,asyoulikeit,1599\nsays,4,asyoulikeit,1599\nyoungest,4,asyoulikeit,1599\nearnest,4,asyoulikeit,1599\nthemselves,4,asyoulikeit,1599\npride,4,asyoulikeit,1599\nwhat's,4,asyoulikeit,1599\nweeping,4,asyoulikeit,1599\nknight,4,asyoulikeit,1599\nwent,4,asyoulikeit,1599\ngifts,4,asyoulikeit,1599\nglad,4,asyoulikeit,1599\nsnail,4,asyoulikeit,1599\ndoublet,4,asyoulikeit,1599\n'it,4,asyoulikeit,1599\nwert,4,asyoulikeit,1599\nfly,4,asyoulikeit,1599\npalace,4,asyoulikeit,1599\nminute,4,asyoulikeit,1599\nrich,4,asyoulikeit,1599\nne'er,4,asyoulikeit,1599\nwide,4,asyoulikeit,1599\nworship,4,asyoulikeit,1599\nflock,4,asyoulikeit,1599\ngallant,4,asyoulikeit,1599\nBOYS,4,asyoulikeit,1599\nhold,4,asyoulikeit,1599\nholy,4,asyoulikeit,1599\ngreen,4,asyoulikeit,1599\ncontents,4,asyoulikeit,1599\nadieu,4,asyoulikeit,1599\nsweat,4,asyoulikeit,1599\nuse,4,asyoulikeit,1599\nsuits,4,asyoulikeit,1599\nseem,4,asyoulikeit,1599\ncourtier's,4,asyoulikeit,1599\nperson,4,asyoulikeit,1599\navoid,4,asyoulikeit,1599\nKnow,4,asyoulikeit,1599\nblame,4,asyoulikeit,1599\nhours,4,asyoulikeit,1599\nwretched,4,asyoulikeit,1599\nwrite,4,asyoulikeit,1599\nmar,4,asyoulikeit,1599\nspirits,4,asyoulikeit,1599\npasture,4,asyoulikeit,1599\nwound,4,asyoulikeit,1599\nliege,4,asyoulikeit,1599\nlast,4,asyoulikeit,1599\nattend,4,asyoulikeit,1599\nburden,4,asyoulikeit,1599\nshame,4,asyoulikeit,1599\nDirect,4,asyoulikeit,1599\nwouldst,4,asyoulikeit,1599\nlady,4,asyoulikeit,1599\nhorns,5,asyoulikeit,1599\nc,5,asyoulikeit,1599\nhorse,5,asyoulikeit,1599\nlaugh,5,asyoulikeit,1599\ncast,5,asyoulikeit,1599\ncharge,5,asyoulikeit,1599\nseven,5,asyoulikeit,1599\nsad,5,asyoulikeit,1599\nGive,5,asyoulikeit,1599\nbroken,5,asyoulikeit,1599\ncheek,5,asyoulikeit,1599\nsin,5,asyoulikeit,1599\nwarrant,5,asyoulikeit,1599\nset,5,asyoulikeit,1599\nAside,5,asyoulikeit,1599\nsuit,5,asyoulikeit,1599\ncounsel,5,asyoulikeit,1599\nsecond,5,asyoulikeit,1599\ntaught,5,asyoulikeit,1599\nworse,5,asyoulikeit,1599\nways,5,asyoulikeit,1599\ndearly,5,asyoulikeit,1599\nsword,5,asyoulikeit,1599\nwind,5,asyoulikeit,1599\nthrown,5,asyoulikeit,1599\nmean,5,asyoulikeit,1599\nbitter,5,asyoulikeit,1599\nseventh,5,asyoulikeit,1599\nmeasure,5,asyoulikeit,1599\nquarrel,5,asyoulikeit,1599\ncanst,5,asyoulikeit,1599\nbed,5,asyoulikeit,1599\nnight,5,asyoulikeit,1599\nprove,5,asyoulikeit,1599\ngold,5,asyoulikeit,1599\ngone,5,asyoulikeit,1599\ndost,5,asyoulikeit,1599\npeople,5,asyoulikeit,1599\ndeer,5,asyoulikeit,1599\nexcellent,5,asyoulikeit,1599\ndead,5,asyoulikeit,1599\npriest,5,asyoulikeit,1599\nMaster,5,asyoulikeit,1599\nwonderful,5,asyoulikeit,1599\nMost,5,asyoulikeit,1599\nverse,5,asyoulikeit,1599\nfoot,5,asyoulikeit,1599\nArt,5,asyoulikeit,1599\nchange,5,asyoulikeit,1599\nHave,5,asyoulikeit,1599\nthrough,5,asyoulikeit,1599\nPeace,5,asyoulikeit,1599\nFrom,5,asyoulikeit,1599\nTherefore,5,asyoulikeit,1599\nquestion,5,asyoulikeit,1599\nSome,5,asyoulikeit,1599\ndidst,5,asyoulikeit,1599\nknows,5,asyoulikeit,1599\nbecause,5,asyoulikeit,1599\nchide,5,asyoulikeit,1599\nover,5,asyoulikeit,1599\nonce,5,asyoulikeit,1599\no'clock,5,asyoulikeit,1599\nWere,5,asyoulikeit,1599\nget,5,asyoulikeit,1599\nnear,5,asyoulikeit,1599\nneck,5,asyoulikeit,1599\noft,5,asyoulikeit,1599\nloving,5,asyoulikeit,1599\nripe,5,asyoulikeit,1599\nbelieve,5,asyoulikeit,1599\nSIR,5,asyoulikeit,1599\nhair,5,asyoulikeit,1599\nconsent,5,asyoulikeit,1599\nhumour,5,asyoulikeit,1599\ncomfort,5,asyoulikeit,1599\nfare,5,asyoulikeit,1599\nwinter,5,asyoulikeit,1599\nwrestle,5,asyoulikeit,1599\nback,5,asyoulikeit,1599\nseen,5,asyoulikeit,1599\neither,5,asyoulikeit,1599\nwhom,5,asyoulikeit,1599\nMARTEXT,5,asyoulikeit,1599\nsleep,5,asyoulikeit,1599\nhonesty,5,asyoulikeit,1599\nlips,5,asyoulikeit,1599\nvirtue,5,asyoulikeit,1599\nHYMEN,5,asyoulikeit,1599\nspring,5,asyoulikeit,1599\nDENNIS,5,asyoulikeit,1599\nlaid,5,asyoulikeit,1599\nsudden,5,asyoulikeit,1599\nenemy,5,asyoulikeit,1599\nbrave,6,asyoulikeit,1599\ntold,6,asyoulikeit,1599\nV,6,asyoulikeit,1599\ndays,6,asyoulikeit,1599\nweary,6,asyoulikeit,1599\nrather,6,asyoulikeit,1599\ntruth,6,asyoulikeit,1599\nNor,6,asyoulikeit,1599\nfurther,6,asyoulikeit,1599\nsit,6,asyoulikeit,1599\nbody,6,asyoulikeit,1599\nenough,6,asyoulikeit,1599\nscorn,6,asyoulikeit,1599\nRowland,6,asyoulikeit,1599\nborn,6,asyoulikeit,1599\nfault,6,asyoulikeit,1599\nfear,6,asyoulikeit,1599\nThough,6,asyoulikeit,1599\nparts,6,asyoulikeit,1599\nhe's,6,asyoulikeit,1599\nknowledge,6,asyoulikeit,1599\nAn,6,asyoulikeit,1599\nneither,6,asyoulikeit,1599\npatience,6,asyoulikeit,1599\nNature,6,asyoulikeit,1599\nlands,6,asyoulikeit,1599\nIV,6,asyoulikeit,1599\nbest,6,asyoulikeit,1599\nweep,6,asyoulikeit,1599\nbehind,6,asyoulikeit,1599\nwear,6,asyoulikeit,1599\nlonger,6,asyoulikeit,1599\ni',6,asyoulikeit,1599\nSONG,6,asyoulikeit,1599\nSecond,6,asyoulikeit,1599\nloves,6,asyoulikeit,1599\nlost,6,asyoulikeit,1599\nknew,6,asyoulikeit,1599\nnatural,6,asyoulikeit,1599\nask,6,asyoulikeit,1599\nhate,6,asyoulikeit,1599\nduke's,6,asyoulikeit,1599\nalmost,6,asyoulikeit,1599\nthings,6,asyoulikeit,1599\nShe,6,asyoulikeit,1599\nyou'll,6,asyoulikeit,1599\nLook,6,asyoulikeit,1599\nquoth,6,asyoulikeit,1599\nFrederick,6,asyoulikeit,1599\noff,6,asyoulikeit,1599\nbanish'd,6,asyoulikeit,1599\ncoming,6,asyoulikeit,1599\nnews,6,asyoulikeit,1599\ndisposition,6,asyoulikeit,1599\nclown,6,asyoulikeit,1599\ndesert,6,asyoulikeit,1599\nletter,6,asyoulikeit,1599\nhose,6,asyoulikeit,1599\nta'en,6,asyoulikeit,1599\nwhither,6,asyoulikeit,1599\ntalk,6,asyoulikeit,1599\ngiven,6,asyoulikeit,1599\nwilt,6,asyoulikeit,1599\nhome,6,asyoulikeit,1599\nalone,6,asyoulikeit,1599\ntroth,6,asyoulikeit,1599\nlovers,6,asyoulikeit,1599\ngods,6,asyoulikeit,1599\nsent,6,asyoulikeit,1599\nfashion,6,asyoulikeit,1599\nmarriage,6,asyoulikeit,1599\nnature,6,asyoulikeit,1599\ntry,6,asyoulikeit,1599\ntrees,6,asyoulikeit,1599\nfortunes,6,asyoulikeit,1599\nAdam,7,asyoulikeit,1599\nAlas,7,asyoulikeit,1599\nPage,7,asyoulikeit,1599\nsong,7,asyoulikeit,1599\nyears,7,asyoulikeit,1599\nsomething,7,asyoulikeit,1599\ndeath,7,asyoulikeit,1599\nwrestler,7,asyoulikeit,1599\nwithin,7,asyoulikeit,1599\nSilvius,7,asyoulikeit,1599\nturn,7,asyoulikeit,1599\nabout,7,asyoulikeit,1599\nrest,7,asyoulikeit,1599\nfriend,7,asyoulikeit,1599\nbid,7,asyoulikeit,1599\nsport,7,asyoulikeit,1599\nblood,7,asyoulikeit,1599\nWe,7,asyoulikeit,1599\nsooner,7,asyoulikeit,1599\nill,7,asyoulikeit,1599\nwelcome,7,asyoulikeit,1599\nmotley,7,asyoulikeit,1599\nyours,7,asyoulikeit,1599\nmind,7,asyoulikeit,1599\nbreak,7,asyoulikeit,1599\nonly,7,asyoulikeit,1599\nThus,7,asyoulikeit,1599\ncalled,7,asyoulikeit,1599\nShall,7,asyoulikeit,1599\nEven,7,asyoulikeit,1599\nArden,7,asyoulikeit,1599\npassion,7,asyoulikeit,1599\nhorn,7,asyoulikeit,1599\nkiss,7,asyoulikeit,1599\nthousand,7,asyoulikeit,1599\nunto,7,asyoulikeit,1599\nstrong,7,asyoulikeit,1599\nwife,7,asyoulikeit,1599\nswear,7,asyoulikeit,1599\nTruly,7,asyoulikeit,1599\nAliena,7,asyoulikeit,1599\nMarry,7,asyoulikeit,1599\nWhere,7,asyoulikeit,1599\ncontent,7,asyoulikeit,1599\nanswer,8,asyoulikeit,1599\nthought,8,asyoulikeit,1599\ntears,8,asyoulikeit,1599\nwrestling,8,asyoulikeit,1599\nwords,8,asyoulikeit,1599\nNot,8,asyoulikeit,1599\nmerry,8,asyoulikeit,1599\nfellow,8,asyoulikeit,1599\nboth,8,asyoulikeit,1599\nfeed,8,asyoulikeit,1599\nservice,8,asyoulikeit,1599\nheaven,8,asyoulikeit,1599\ncolour,8,asyoulikeit,1599\nmanners,8,asyoulikeit,1599\nmelancholy,8,asyoulikeit,1599\nstay,8,asyoulikeit,1599\nsince,8,asyoulikeit,1599\ntongue,8,asyoulikeit,1599\nFortune,8,asyoulikeit,1599\ndear,8,asyoulikeit,1599\nbanished,8,asyoulikeit,1599\nYes,8,asyoulikeit,1599\nkeep,8,asyoulikeit,1599\nJaques,8,asyoulikeit,1599\nverses,8,asyoulikeit,1599\nfoul,8,asyoulikeit,1599\nforth,8,asyoulikeit,1599\nindeed,8,asyoulikeit,1599\nliving,8,asyoulikeit,1599\nsake,8,asyoulikeit,1599\nstill,8,asyoulikeit,1599\nCan,8,asyoulikeit,1599\nthree,8,asyoulikeit,1599\nSweet,8,asyoulikeit,1599\nfolly,8,asyoulikeit,1599\ngentleman,8,asyoulikeit,1599\nhonest,8,asyoulikeit,1599\nthus,8,asyoulikeit,1599\nOliver,8,asyoulikeit,1599\nladies,8,asyoulikeit,1599\nrespect,8,asyoulikeit,1599\nlack,8,asyoulikeit,1599\nhimself,8,asyoulikeit,1599\nmeet,9,asyoulikeit,1599\ncountry,9,asyoulikeit,1599\ntruly,9,asyoulikeit,1599\nunder,9,asyoulikeit,1599\nfriends,9,asyoulikeit,1599\nyourself,9,asyoulikeit,1599\nsaw,9,asyoulikeit,1599\nfools,9,asyoulikeit,1599\ncame,9,asyoulikeit,1599\npromise,9,asyoulikeit,1599\nboy,9,asyoulikeit,1599\nhey,9,asyoulikeit,1599\nitself,9,asyoulikeit,1599\nplay,9,asyoulikeit,1599\nGanymede,9,asyoulikeit,1599\nage,9,asyoulikeit,1599\nYet,9,asyoulikeit,1599\nthose,9,asyoulikeit,1599\nMore,9,asyoulikeit,1599\nnew,9,asyoulikeit,1599\nLords,9,asyoulikeit,1599\nbeard,9,asyoulikeit,1599\nmouth,9,asyoulikeit,1599\nAll,9,asyoulikeit,1599\nfather's,9,asyoulikeit,1599\nway,9,asyoulikeit,1599\nMonsieur,9,asyoulikeit,1599\nfortune,9,asyoulikeit,1599\nuncle,9,asyoulikeit,1599\nhope,9,asyoulikeit,1599\nalong,9,asyoulikeit,1599\nLie,9,asyoulikeit,1599\neat,9,asyoulikeit,1599\nremember,9,asyoulikeit,1599\nstrange,9,asyoulikeit,1599\nThy,9,asyoulikeit,1599\nshalt,9,asyoulikeit,1599\nkill,9,asyoulikeit,1599\nhead,10,asyoulikeit,1599\nsure,10,asyoulikeit,1599\ncause,10,asyoulikeit,1599\nelse,10,asyoulikeit,1599\nDo,10,asyoulikeit,1599\nIII,10,asyoulikeit,1599\nproud,10,asyoulikeit,1599\nho,10,asyoulikeit,1599\ngrace,10,asyoulikeit,1599\nhast,10,asyoulikeit,1599\nThan,10,asyoulikeit,1599\nend,10,asyoulikeit,1599\nheard,10,asyoulikeit,1599\nfound,10,asyoulikeit,1599\nreason,10,asyoulikeit,1599\nseek,10,asyoulikeit,1599\ncoz,10,asyoulikeit,1599\nlie,10,asyoulikeit,1599\nsister,10,asyoulikeit,1599\nDid,10,asyoulikeit,1599\nkind,10,asyoulikeit,1599\nwomen,10,asyoulikeit,1599\nmistress,11,asyoulikeit,1599\nNow,11,asyoulikeit,1599\nafter,11,asyoulikeit,1599\nbring,11,asyoulikeit,1599\nwise,11,asyoulikeit,1599\ndesire,11,asyoulikeit,1599\nHis,11,asyoulikeit,1599\nmeans,11,asyoulikeit,1599\nCharles,11,asyoulikeit,1599\nput,11,asyoulikeit,1599\nsing,11,asyoulikeit,1599\nhands,11,asyoulikeit,1599\ncousin,11,asyoulikeit,1599\nhard,11,asyoulikeit,1599\nfood,11,asyoulikeit,1599\nright,11,asyoulikeit,1599\nnone,11,asyoulikeit,1599\nmyself,11,asyoulikeit,1599\nThey,11,asyoulikeit,1599\nwoo,11,asyoulikeit,1599\nTime,11,asyoulikeit,1599\ncut,11,asyoulikeit,1599\ntree,11,asyoulikeit,1599\nis,267,asyoulikeit,1599\nWill,12,asyoulikeit,1599\nnothing,12,asyoulikeit,1599\nhonour,12,asyoulikeit,1599\nname,12,asyoulikeit,1599\nGo,12,asyoulikeit,1599\nII,12,asyoulikeit,1599\ndown,12,asyoulikeit,1599\nshow,12,asyoulikeit,1599\neye,12,asyoulikeit,1599\ncompany,12,asyoulikeit,1599\neven,12,asyoulikeit,1599\nmarried,12,asyoulikeit,1599\ngreat,12,asyoulikeit,1599\nmakes,12,asyoulikeit,1599\nwithout,12,asyoulikeit,1599\npity,13,asyoulikeit,1599\nsight,13,asyoulikeit,1599\nwithal,13,asyoulikeit,1599\nWILLIAM,13,asyoulikeit,1599\nson,13,asyoulikeit,1599\npretty,13,asyoulikeit,1599\nsaid,13,asyoulikeit,1599\nlover,13,asyoulikeit,1599\nloved,13,asyoulikeit,1599\nup,13,asyoulikeit,1599\nFirst,13,asyoulikeit,1599\nthough,13,asyoulikeit,1599\nAre,13,asyoulikeit,1599\nThis,13,asyoulikeit,1599\nfall,13,asyoulikeit,1599\nsweet,13,asyoulikeit,1599\nCHARLES,13,asyoulikeit,1599\nleave,13,asyoulikeit,1599\nWhen,13,asyoulikeit,1599\nhear,14,asyoulikeit,1599\nanother,14,asyoulikeit,1599\nfull,14,asyoulikeit,1599\nagainst,14,asyoulikeit,1599\nHere,14,asyoulikeit,1599\nWhich,14,asyoulikeit,1599\nlord,14,asyoulikeit,1599\nwhere,14,asyoulikeit,1599\n'Tis,14,asyoulikeit,1599\nplease,14,asyoulikeit,1599\nfind,14,asyoulikeit,1599\nman's,14,asyoulikeit,1599\nLet,14,asyoulikeit,1599\nmaster,14,asyoulikeit,1599\nhouse,14,asyoulikeit,1599\nhither,14,asyoulikeit,1599\nfirst,14,asyoulikeit,1599\nmet,14,asyoulikeit,1599\nmen,14,asyoulikeit,1599\nmight,14,asyoulikeit,1599\ndie,14,asyoulikeit,1599\nNay,15,asyoulikeit,1599\nThere,15,asyoulikeit,1599\nmatter,15,asyoulikeit,1599\nfaith,15,asyoulikeit,1599\ngentle,15,asyoulikeit,1599\nAudrey,15,asyoulikeit,1599\nmarry,15,asyoulikeit,1599\nhour,15,asyoulikeit,1599\ntill,15,asyoulikeit,1599\nprithee,15,asyoulikeit,1599\ntogether,15,asyoulikeit,1599\nlive,15,asyoulikeit,1599\nADAM,16,asyoulikeit,1599\nGood,16,asyoulikeit,1599\nplace,16,asyoulikeit,1599\nhand,16,asyoulikeit,1599\nHow,16,asyoulikeit,1599\nAMIENS,16,asyoulikeit,1599\nYour,16,asyoulikeit,1599\nLord,16,asyoulikeit,1599\nword,16,asyoulikeit,1599\nthank,16,asyoulikeit,1599\nbeing,16,asyoulikeit,1599\nExit,16,asyoulikeit,1599\nother,16,asyoulikeit,1599\ncall,17,asyoulikeit,1599\naway,17,asyoulikeit,1599\nAy,17,asyoulikeit,1599\nMy,17,asyoulikeit,1599\nOr,17,asyoulikeit,1599\nSo,17,asyoulikeit,1599\npart,17,asyoulikeit,1599\nagain,17,asyoulikeit,1599\nwhy,17,asyoulikeit,1599\nPhebe,17,asyoulikeit,1599\nIn,18,asyoulikeit,1599\nIs,18,asyoulikeit,1599\n'tis,18,asyoulikeit,1599\nAUDREY,18,asyoulikeit,1599\nnor,18,asyoulikeit,1599\ncourt,18,asyoulikeit,1599\nmorrow,18,asyoulikeit,1599\nday,18,asyoulikeit,1599\nWho,19,asyoulikeit,1599\nBEAU,19,asyoulikeit,1599\nWith,19,asyoulikeit,1599\nFor,19,asyoulikeit,1599\nOf,19,asyoulikeit,1599\nLE,19,asyoulikeit,1599\nThou,19,asyoulikeit,1599\nbefore,19,asyoulikeit,1599\neyes,19,asyoulikeit,1599\ntwo,19,asyoulikeit,1599\ndaughter,20,asyoulikeit,1599\ntherefore,20,asyoulikeit,1599\nIt,20,asyoulikeit,1599\nlook,20,asyoulikeit,1599\nThen,20,asyoulikeit,1599\nthing,20,asyoulikeit,1599\nwit,20,asyoulikeit,1599\nWell,20,asyoulikeit,1599\npoor,20,asyoulikeit,1599\nBy,21,asyoulikeit,1599\nGod,21,asyoulikeit,1599\nSir,21,asyoulikeit,1599\nmany,21,asyoulikeit,1599\nwho,21,asyoulikeit,1599\ndoth,22,asyoulikeit,1599\nbeen,22,asyoulikeit,1599\nlittle,22,asyoulikeit,1599\nmade,22,asyoulikeit,1599\nACT,22,asyoulikeit,1599\nfair,22,asyoulikeit,1599\nshepherd,22,asyoulikeit,1599\ntrue,22,asyoulikeit,1599\nevery,23,asyoulikeit,1599\nCome,23,asyoulikeit,1599\nnever,23,asyoulikeit,1599\nbear,23,asyoulikeit,1599\nart,23,asyoulikeit,1599\ncould,23,asyoulikeit,1599\nSCENE,23,asyoulikeit,1599\nYOU,24,asyoulikeit,1599\npray,24,asyoulikeit,1599\nlife,24,asyoulikeit,1599\nAS,24,asyoulikeit,1599\nIT,24,asyoulikeit,1599\never,24,asyoulikeit,1599\nLIKE,24,asyoulikeit,1599\nlet,24,asyoulikeit,1599\ncannot,24,asyoulikeit,1599\nHe,25,asyoulikeit,1599\nspeak,25,asyoulikeit,1599\ninto,25,asyoulikeit,1599\ncomes,25,asyoulikeit,1599\nthink,25,asyoulikeit,1599\nwoman,25,asyoulikeit,1599\nthat,281,asyoulikeit,1599\nsome,26,asyoulikeit,1599\nOrlando,26,asyoulikeit,1599\nAs,26,asyoulikeit,1599\nFREDERICK,27,asyoulikeit,1599\nExeunt,27,asyoulikeit,1599\nyoung,27,asyoulikeit,1599\nworld,28,asyoulikeit,1599\ntell,28,asyoulikeit,1599\nyouth,28,asyoulikeit,1599\ntoo,28,asyoulikeit,1599\ngive,29,asyoulikeit,1599\nPHEBE,29,asyoulikeit,1599\nown,29,asyoulikeit,1599\nand,541,asyoulikeit,1599\nbetter,30,asyoulikeit,1599\ncan,30,asyoulikeit,1599\nthese,31,asyoulikeit,1599\nNo,31,asyoulikeit,1599\ntheir,31,asyoulikeit,1599\nany,31,asyoulikeit,1599\nmost,31,asyoulikeit,1599\nduke,31,asyoulikeit,1599\ntime,31,asyoulikeit,1599\nsuch,32,asyoulikeit,1599\nCORIN,32,asyoulikeit,1599\nmake,32,asyoulikeit,1599\ntake,32,asyoulikeit,1599\n',33,asyoulikeit,1599\nmuch,33,asyoulikeit,1599\nshould,33,asyoulikeit,1599\nvery,33,asyoulikeit,1599\nmine,33,asyoulikeit,1599\nheart,33,asyoulikeit,1599\nour,33,asyoulikeit,1599\nmay,33,asyoulikeit,1599\nA,34,asyoulikeit,1599\nold,34,asyoulikeit,1599\nWhat,34,asyoulikeit,1599\nus,35,asyoulikeit,1599\nSILVIUS,35,asyoulikeit,1599\nmust,36,asyoulikeit,1599\nthem,36,asyoulikeit,1599\nfool,36,asyoulikeit,1599\nWhy,37,asyoulikeit,1599\nan,37,asyoulikeit,1599\nknow,37,asyoulikeit,1599\nforest,37,asyoulikeit,1599\nfather,37,asyoulikeit,1599\nsee,38,asyoulikeit,1599\nSENIOR,38,asyoulikeit,1599\nbrother,39,asyoulikeit,1599\nfrom,39,asyoulikeit,1599\nsay,40,asyoulikeit,1599\nupon,41,asyoulikeit,1599\nor,41,asyoulikeit,1599\nwere,41,asyoulikeit,1599\nhad,42,asyoulikeit,1599\nthere,42,asyoulikeit,1599\ngo,42,asyoulikeit,1599\nyet,42,asyoulikeit,1599\nhow,42,asyoulikeit,1599\none,43,asyoulikeit,1599\nwhen,43,asyoulikeit,1599\ndid,43,asyoulikeit,1599\nout,44,asyoulikeit,1599\ncome,44,asyoulikeit,1599\nin,300,asyoulikeit,1599\nwhich,45,asyoulikeit,1599\nYou,45,asyoulikeit,1599\nthen,46,asyoulikeit,1599\nhere,48,asyoulikeit,1599\nhath,48,asyoulikeit,1599\nnow,48,asyoulikeit,1599\nI'll,48,asyoulikeit,1599\nOLIVER,49,asyoulikeit,1599\nO,50,asyoulikeit,1599\nsir,50,asyoulikeit,1599\nshe,51,asyoulikeit,1599\nEnter,51,asyoulikeit,1599\nIf,53,asyoulikeit,1599\nTo,53,asyoulikeit,1599\nthey,54,asyoulikeit,1599\nat,55,asyoulikeit,1599\nlike,57,asyoulikeit,1599\nwell,57,asyoulikeit,1599\nRosalind,57,asyoulikeit,1599\nBut,61,asyoulikeit,1599\nshall,61,asyoulikeit,1599\nthan,62,asyoulikeit,1599\nThat,62,asyoulikeit,1599\nThe,63,asyoulikeit,1599\nwhat,64,asyoulikeit,1599\non,65,asyoulikeit,1599\nwe,65,asyoulikeit,1599\nDUKE,65,asyoulikeit,1599\nby,66,asyoulikeit,1599\nthy,66,asyoulikeit,1599\nwould,69,asyoulikeit,1599\nmore,72,asyoulikeit,1599\nJAQUES,72,asyoulikeit,1599\nam,73,asyoulikeit,1599\nwas,81,asyoulikeit,1599\nman,81,asyoulikeit,1599\nall,83,asyoulikeit,1599\nif,84,asyoulikeit,1599\nTOUCHSTONE,85,asyoulikeit,1599\nthee,90,asyoulikeit,1599\ngood,98,asyoulikeit,1599\nare,98,asyoulikeit,1599\nher,104,asyoulikeit,1599\nno,109,asyoulikeit,1599\ndo,112,asyoulikeit,1599\nlove,114,asyoulikeit,1599\nso,117,asyoulikeit,1599\nthe,633,asyoulikeit,1599\nthou,122,asyoulikeit,1599\nCELIA,123,asyoulikeit,1599\nbut,134,asyoulikeit,1599\nas,136,asyoulikeit,1599\nORLANDO,138,asyoulikeit,1599\nthis,148,asyoulikeit,1599\nAnd,151,asyoulikeit,1599\nwill,151,asyoulikeit,1599\nI,665,asyoulikeit,1599\nhim,154,asyoulikeit,1599\nof,411,asyoulikeit,1599\nhis,156,asyoulikeit,1599\nhave,163,asyoulikeit,1599\na,426,asyoulikeit,1599\nto,428,asyoulikeit,1599\nit,177,asyoulikeit,1599\nyour,178,asyoulikeit,1599\nwith,180,asyoulikeit,1599\nbe,185,asyoulikeit,1599\nhe,190,asyoulikeit,1599\nfor,191,asyoulikeit,1599\nROSALIND,217,asyoulikeit,1599\nyou,474,asyoulikeit,1599\nme,231,asyoulikeit,1599\nmy,240,asyoulikeit,1599\nnot,244,asyoulikeit,1599\nstupefied,1,winterstale,1610\nprofession,1,winterstale,1610\ntreason,1,winterstale,1610\nlamentably,1,winterstale,1610\nsilken,1,winterstale,1610\ndischarged,1,winterstale,1610\nTremble,1,winterstale,1610\nevent,1,winterstale,1610\nribbon,1,winterstale,1610\nLawful,1,winterstale,1610\nBoldly,1,winterstale,1610\nheel,1,winterstale,1610\nparchment,1,winterstale,1610\nTime's,1,winterstale,1610\nsleeve,1,winterstale,1610\nregard,1,winterstale,1610\ngalled,1,winterstale,1610\nvillany,1,winterstale,1610\ntroubles,1,winterstale,1610\nlusts,1,winterstale,1610\nclouded,1,winterstale,1610\nsped,1,winterstale,1610\npennyworth,1,winterstale,1610\nsmiled,1,winterstale,1610\ngrey,1,winterstale,1610\nhappier,1,winterstale,1610\nHereditary,1,winterstale,1610\nstomachers,1,winterstale,1610\nfruits,1,winterstale,1610\nlawyers,1,winterstale,1610\nnothings,1,winterstale,1610\njoin,1,winterstale,1610\ntaking,1,winterstale,1610\nbitterest,1,winterstale,1610\nproselytes,1,winterstale,1610\nLaying,1,winterstale,1610\nsizes,1,winterstale,1610\ndames,1,winterstale,1610\ndined,1,winterstale,1610\nafar,1,winterstale,1610\ndarest,1,winterstale,1610\nmarrying,1,winterstale,1610\nBlue,1,winterstale,1610\nLoved,1,winterstale,1610\ninterchange,1,winterstale,1610\nFreed,1,winterstale,1610\ndescription,1,winterstale,1610\njar,1,winterstale,1610\nreputation,1,winterstale,1610\nguilt,1,winterstale,1610\nfor's,1,winterstale,1610\nbelongs,1,winterstale,1610\n'leven,1,winterstale,1610\njay,1,winterstale,1610\nComfort,1,winterstale,1610\ntremble,1,winterstale,1610\nRomano,1,winterstale,1610\nHeat,1,winterstale,1610\nadders',1,winterstale,1610\nbrass,1,winterstale,1610\ntreasury,1,winterstale,1610\nwrit,1,winterstale,1610\nraw,1,winterstale,1610\nhorse,1,winterstale,1610\nfollowing,1,winterstale,1610\ntreasure,1,winterstale,1610\ntawdry,1,winterstale,1610\nhinder,1,winterstale,1610\ninstructs,1,winterstale,1610\nunanswer'd,1,winterstale,1610\nknell,1,winterstale,1610\nobtain'd,1,winterstale,1610\nwhiteness,1,winterstale,1610\nneighbours,1,winterstale,1610\nDigest,1,winterstale,1610\nexcrement,1,winterstale,1610\nNew,1,winterstale,1610\ntorn,1,winterstale,1610\nshadows,1,winterstale,1610\nfollies,1,winterstale,1610\nhonours,1,winterstale,1610\nfemale,1,winterstale,1610\ntore,1,winterstale,1610\nWhether,1,winterstale,1610\nunmarried,1,winterstale,1610\nlower,1,winterstale,1610\nimplore,1,winterstale,1610\npaddling,1,winterstale,1610\nlooker,1,winterstale,1610\ndagger,1,winterstale,1610\nhaste,1,winterstale,1610\nunconsidered,1,winterstale,1610\nlongs,1,winterstale,1610\nzeal,1,winterstale,1610\nfoolery,1,winterstale,1610\nodor,1,winterstale,1610\nrot,1,winterstale,1610\noffended,1,winterstale,1610\nrascal,1,winterstale,1610\nForbiddenly,1,winterstale,1610\nsir's,1,winterstale,1610\nhealth,1,winterstale,1610\nrobe,1,winterstale,1610\nHasting,1,winterstale,1610\ncarters,1,winterstale,1610\nbranch,1,winterstale,1610\npublicly,1,winterstale,1610\nchiding,1,winterstale,1610\nspeeds,1,winterstale,1610\nBear,1,winterstale,1610\nsainted,1,winterstale,1610\nWomen,1,winterstale,1610\neasily,1,winterstale,1610\nroad,1,winterstale,1610\ntods,1,winterstale,1610\nglean'd,1,winterstale,1610\njog,1,winterstale,1610\nbrands,1,winterstale,1610\ndestroyed,1,winterstale,1610\nspeedy,1,winterstale,1610\nsealing,1,winterstale,1610\nhell,1,winterstale,1610\nswifter,1,winterstale,1610\nrecall,1,winterstale,1610\nAddress,1,winterstale,1610\nworries,1,winterstale,1610\nviolets,1,winterstale,1610\nStay,1,winterstale,1610\nlaughter,1,winterstale,1610\nswiftly,1,winterstale,1610\ndish,1,winterstale,1610\ntwos,1,winterstale,1610\nmess,1,winterstale,1610\nApril's,1,winterstale,1610\nconspiring,1,winterstale,1610\nsleepy,1,winterstale,1610\nbeest,1,winterstale,1610\nsternness,1,winterstale,1610\n'Alas,1,winterstale,1610\npainted,1,winterstale,1610\nclothes,1,winterstale,1610\neasier,1,winterstale,1610\nfinger,1,winterstale,1610\nplainer,1,winterstale,1610\nherd,1,winterstale,1610\nspake,1,winterstale,1610\ndropp'd,1,winterstale,1610\nPaulina's,1,winterstale,1610\nelevated,1,winterstale,1610\nmuzzled,1,winterstale,1610\ncelestial,1,winterstale,1610\nincidency,1,winterstale,1610\nloathsomeness,1,winterstale,1610\ndove's,1,winterstale,1610\nenduring,1,winterstale,1610\nReward,1,winterstale,1610\nutterance,1,winterstale,1610\nUnworthy,1,winterstale,1610\nequall'd,1,winterstale,1610\nhent,1,winterstale,1610\nStep,1,winterstale,1610\nrumour,1,winterstale,1610\nlowly,1,winterstale,1610\nFar,1,winterstale,1610\ncommodity,1,winterstale,1610\nfought,1,winterstale,1610\nWolves,1,winterstale,1610\namber,1,winterstale,1610\nnaked,1,winterstale,1610\nsneaping,1,winterstale,1610\nslander,1,winterstale,1610\nsummer's,1,winterstale,1610\nsugar,1,winterstale,1610\nResolved,1,winterstale,1610\nflow,1,winterstale,1610\nrichly,1,winterstale,1610\nalthough,1,winterstale,1610\ndrink,1,winterstale,1610\nappeal,1,winterstale,1610\npies,1,winterstale,1610\nderive,1,winterstale,1610\nsigns,1,winterstale,1610\nnought,1,winterstale,1610\nlaugh,1,winterstale,1610\ninkles,1,winterstale,1610\nadmirable,1,winterstale,1610\nprey,1,winterstale,1610\nof's,1,winterstale,1610\nProvided,1,winterstale,1610\nscurrilous,1,winterstale,1610\ncrickets,1,winterstale,1610\ncheap,1,winterstale,1610\nbaits,1,winterstale,1610\ninclining,1,winterstale,1610\nVices,1,winterstale,1610\nsort,1,winterstale,1610\nlively,1,winterstale,1610\nrue,1,winterstale,1610\nstrumpet,1,winterstale,1610\nadvise,1,winterstale,1610\nivy,1,winterstale,1610\nodds,1,winterstale,1610\nsore,1,winterstale,1610\nlids,1,winterstale,1610\nbuilds,1,winterstale,1610\nthirst,1,winterstale,1610\nenfranchised,1,winterstale,1610\nremain,1,winterstale,1610\ndisobedience,1,winterstale,1610\nWhoa,1,winterstale,1610\nswerver,1,winterstale,1610\njoys,1,winterstale,1610\nabound,1,winterstale,1610\nCasting,1,winterstale,1610\nbaggage,1,winterstale,1610\nwaggon,1,winterstale,1610\nwounded,1,winterstale,1610\nthump,1,winterstale,1610\nrecreation,1,winterstale,1610\nswear't,1,winterstale,1610\nthicker,1,winterstale,1610\ncurious,1,winterstale,1610\nPERSONAE,1,winterstale,1610\nchurchyard,1,winterstale,1610\nprovince,1,winterstale,1610\ndemand,1,winterstale,1610\nmute,1,winterstale,1610\nRelish,1,winterstale,1610\nmedal,1,winterstale,1610\nutter'd,1,winterstale,1610\nfadings,1,winterstale,1610\ngarment,1,winterstale,1610\nmistook,1,winterstale,1610\nlustre,1,winterstale,1610\nperformance,1,winterstale,1610\nvast,1,winterstale,1610\npractised,1,winterstale,1610\nshrieks,1,winterstale,1610\nPoor,1,winterstale,1610\nbeneath,1,winterstale,1610\nFairly,1,winterstale,1610\nchin,1,winterstale,1610\nreign,1,winterstale,1610\nhastening,1,winterstale,1610\ngraces,1,winterstale,1610\ninconstant,1,winterstale,1610\ndisdain,1,winterstale,1610\nsons,1,winterstale,1610\ngraced,1,winterstale,1610\ntittle,1,winterstale,1610\ntransformations,1,winterstale,1610\noverfond,1,winterstale,1610\nlacks,1,winterstale,1610\nfeather,1,winterstale,1610\nAfter,1,winterstale,1610\njest,1,winterstale,1610\nProperly,1,winterstale,1610\nstock,1,winterstale,1610\nspies,1,winterstale,1610\nreconciled,1,winterstale,1610\nworking,1,winterstale,1610\nProserpina,1,winterstale,1610\nsold,1,winterstale,1610\nleaning,1,winterstale,1610\nreceiving,1,winterstale,1610\ngrieving,1,winterstale,1610\nsap,1,winterstale,1610\nbetake,1,winterstale,1610\nflaw'd,1,winterstale,1610\nDeucalion,1,winterstale,1610\ncape,1,winterstale,1610\nlilies,1,winterstale,1610\nspice,1,winterstale,1610\nline,1,winterstale,1610\nPins,1,winterstale,1610\ncall'st,1,winterstale,1610\nhammer'd,1,winterstale,1610\nTongue,1,winterstale,1610\npile,1,winterstale,1610\nopposed,1,winterstale,1610\nevidences,1,winterstale,1610\nfighter,1,winterstale,1610\nbagpipe,1,winterstale,1610\nresolve,1,winterstale,1610\nBlind,1,winterstale,1610\ndrag,1,winterstale,1610\ninstigation,1,winterstale,1610\nAn't,1,winterstale,1610\ncrying,1,winterstale,1610\ninjury,1,winterstale,1610\nbowling,1,winterstale,1610\ndrab,1,winterstale,1610\nCommunicatest,1,winterstale,1610\nmaidenheads,1,winterstale,1610\nGrovelling,1,winterstale,1610\nMercy,1,winterstale,1610\ntrumpet,1,winterstale,1610\nposts,1,winterstale,1610\nMuch,1,winterstale,1610\nfunction,1,winterstale,1610\nanchor,1,winterstale,1610\nhabits,1,winterstale,1610\nWoe,1,winterstale,1610\nConduct,1,winterstale,1610\nFled,1,winterstale,1610\ndrew,1,winterstale,1610\nrosemary,1,winterstale,1610\ncheer,1,winterstale,1610\nvisitors,1,winterstale,1610\noffenders,1,winterstale,1610\nwants,1,winterstale,1610\nsoften,1,winterstale,1610\nprimroses,1,winterstale,1610\nfingers,1,winterstale,1610\nInfected,1,winterstale,1610\npines,1,winterstale,1610\npipe,1,winterstale,1610\nrides,1,winterstale,1610\nfinding,1,winterstale,1610\nbetrays,1,winterstale,1610\nfooleries,1,winterstale,1610\neasiest,1,winterstale,1610\nforswear't,1,winterstale,1610\nbailiff,1,winterstale,1610\ndeities,1,winterstale,1610\nTake't,1,winterstale,1610\nlikeness,1,winterstale,1610\nchains,1,winterstale,1610\nshrewdly,1,winterstale,1610\ncomplexion,1,winterstale,1610\nfools,1,winterstale,1610\nancient'st,1,winterstale,1610\nveins,1,winterstale,1610\nteach,1,winterstale,1610\nLaugh,1,winterstale,1610\nricher,1,winterstale,1610\nfreedom,1,winterstale,1610\ncovering,1,winterstale,1610\nRecoil,1,winterstale,1610\nconfessed,1,winterstale,1610\ndears,1,winterstale,1610\nbecoming,1,winterstale,1610\n'Verily',1,winterstale,1610\noverture,1,winterstale,1610\nslippery,1,winterstale,1610\nherdsmen,1,winterstale,1610\nmoving,1,winterstale,1610\ndiscovers,1,winterstale,1610\nview,1,winterstale,1610\ndiscovery,1,winterstale,1610\nnutmegs,1,winterstale,1610\nsix,1,winterstale,1610\nrarest,1,winterstale,1610\nhereafter,1,winterstale,1610\nacted,1,winterstale,1610\njumps,1,winterstale,1610\ncompliment,1,winterstale,1610\nhottest,1,winterstale,1610\nblocks,1,winterstale,1610\nafflict,1,winterstale,1610\nproclaims,1,winterstale,1610\nhistory,1,winterstale,1610\nforefend,1,winterstale,1610\nsip,1,winterstale,1610\nspeeches,1,winterstale,1610\nconcealment,1,winterstale,1610\n'good',1,winterstale,1610\nlyra,1,winterstale,1610\nreturned,1,winterstale,1610\nprevail'd,1,winterstale,1610\nrecompensed,1,winterstale,1610\ncame't,1,winterstale,1610\nPromotion,1,winterstale,1610\nstupid,1,winterstale,1610\nknavish,1,winterstale,1610\nblacks,1,winterstale,1610\naged,1,winterstale,1610\nimprison't,1,winterstale,1610\npurses,1,winterstale,1610\nmay't,1,winterstale,1610\nherdsman,1,winterstale,1610\nagent,1,winterstale,1610\nworthiest,1,winterstale,1610\nwall,1,winterstale,1610\nsex,1,winterstale,1610\nmonarch,1,winterstale,1610\nvice,1,winterstale,1610\ncollop,1,winterstale,1610\ncoals,1,winterstale,1610\nseals,1,winterstale,1610\nfork'd,1,winterstale,1610\nExposed,1,winterstale,1610\ntouches,1,winterstale,1610\nshe'll,1,winterstale,1610\nthrong,1,winterstale,1610\nmilking,1,winterstale,1610\nsuit,1,winterstale,1610\nbeasts,1,winterstale,1610\nHilloa,1,winterstale,1610\nWalk,1,winterstale,1610\nwildest,1,winterstale,1610\nabused,1,winterstale,1610\nyield,1,winterstale,1610\npardons,1,winterstale,1610\ncleanly,1,winterstale,1610\nscore,1,winterstale,1610\nbirds,1,winterstale,1610\nbuyer,1,winterstale,1610\nembrace,1,winterstale,1610\nearnestly,1,winterstale,1610\nbranches,1,winterstale,1610\ncredulity,1,winterstale,1610\nsow,1,winterstale,1610\nchurch,1,winterstale,1610\navails,1,winterstale,1610\nWithdraw,1,winterstale,1610\nSuch,1,winterstale,1610\nsteps,1,winterstale,1610\nCharge,1,winterstale,1610\nstripes,1,winterstale,1610\nPurchase,1,winterstale,1610\nexperienced,1,winterstale,1610\nleisurely,1,winterstale,1610\nencertainties,1,winterstale,1610\ndelivery,1,winterstale,1610\nbodkin's,1,winterstale,1610\nmantle,1,winterstale,1610\nextempore,1,winterstale,1610\n'O,1,winterstale,1610\napparent,1,winterstale,1610\n'I,1,winterstale,1610\nSilence,1,winterstale,1610\nmettest,1,winterstale,1610\ndignities,1,winterstale,1610\nscour,1,winterstale,1610\nbetray'dst,1,winterstale,1610\nhotter,1,winterstale,1610\nsurmises,1,winterstale,1610\nbow'd,1,winterstale,1610\nqualified,1,winterstale,1610\nblusters,1,winterstale,1610\ndeeply,1,winterstale,1610\nstudy,1,winterstale,1610\nsharpest,1,winterstale,1610\nwages,1,winterstale,1610\ndeserts,1,winterstale,1610\ncommends,1,winterstale,1610\ngather,1,winterstale,1610\nwings,1,winterstale,1610\nsets,1,winterstale,1610\nlambs,1,winterstale,1610\nrarer,1,winterstale,1610\nAdded,1,winterstale,1610\nOther,1,winterstale,1610\nunderta'en,1,winterstale,1610\noffering,1,winterstale,1610\nVilely,1,winterstale,1610\npieces,1,winterstale,1610\noffends,1,winterstale,1610\nbough,1,winterstale,1610\nclimate's,1,winterstale,1610\nlimber,1,winterstale,1610\nrounding,1,winterstale,1610\nride's,1,winterstale,1610\npoverty,1,winterstale,1610\nstuck,1,winterstale,1610\nMerry,1,winterstale,1610\nTemptations,1,winterstale,1610\ncolder,1,winterstale,1610\ngoddesses,1,winterstale,1610\nshriek,1,winterstale,1610\nesteem,1,winterstale,1610\ngaoler,1,winterstale,1610\ntaught,1,winterstale,1610\nvile,1,winterstale,1610\nbenediction,1,winterstale,1610\nforetells,1,winterstale,1610\neating,1,winterstale,1610\nFasten'd,1,winterstale,1610\nremained,1,winterstale,1610\nhooted,1,winterstale,1610\npasses,1,winterstale,1610\ndanced,1,winterstale,1610\nlingering,1,winterstale,1610\nstaring,1,winterstale,1610\nForswear,1,winterstale,1610\npoints,1,winterstale,1610\nmonster,1,winterstale,1610\nskies,1,winterstale,1610\ncrime,1,winterstale,1610\nbore,1,winterstale,1610\nchoughs,1,winterstale,1610\nUnfurnish,1,winterstale,1610\nshilling,1,winterstale,1610\nEqual,1,winterstale,1610\nseeds,1,winterstale,1610\nsurplus,1,winterstale,1610\nquake,1,winterstale,1610\nendeavours,1,winterstale,1610\nfeat,1,winterstale,1610\nabhorr'd,1,winterstale,1610\nunreal,1,winterstale,1610\ndearly,1,winterstale,1610\ncommit,1,winterstale,1610\ncherish,1,winterstale,1610\nundream'd,1,winterstale,1610\neldest,1,winterstale,1610\nbehoves,1,winterstale,1610\nPardon,1,winterstale,1610\ninstance,1,winterstale,1610\nPAULINA'S,1,winterstale,1610\nexpedition,1,winterstale,1610\nencourage,1,winterstale,1610\nWhilst,1,winterstale,1610\nmouthed,1,winterstale,1610\ncries,1,winterstale,1610\nhumble,1,winterstale,1610\nbrick,1,winterstale,1610\ndraught,1,winterstale,1610\nsup,1,winterstale,1610\nparagon,1,winterstale,1610\nelder,1,winterstale,1610\nSeeming,1,winterstale,1610\ncompanion,1,winterstale,1610\nKings,1,winterstale,1610\nreverence,1,winterstale,1610\nrust,1,winterstale,1610\nrein,1,winterstale,1610\nunintelligent,1,winterstale,1610\nbenched,1,winterstale,1610\nrush,1,winterstale,1610\ncease,1,winterstale,1610\npromise,1,winterstale,1610\nfees,1,winterstale,1610\npunish,1,winterstale,1610\nSicilian,1,winterstale,1610\nlasses,1,winterstale,1610\nprank'd,1,winterstale,1610\ninfinite,1,winterstale,1610\nhumbly,1,winterstale,1610\nbeaten,1,winterstale,1610\nmasters,1,winterstale,1610\nblind,1,winterstale,1610\nmalice,1,winterstale,1610\ninfallible,1,winterstale,1610\nBehind,1,winterstale,1610\nlane's,1,winterstale,1610\nquart,1,winterstale,1610\naccept,1,winterstale,1610\nputter,1,winterstale,1610\nInterpretation,1,winterstale,1610\nbases,1,winterstale,1610\nBetwixt,1,winterstale,1610\nbaser,1,winterstale,1610\nconceal,1,winterstale,1610\nlet'st,1,winterstale,1610\nbleated,1,winterstale,1610\ndispleasure's,1,winterstale,1610\nhorseman,1,winterstale,1610\ncriminal,1,winterstale,1610\nmarigold,1,winterstale,1610\ntortures,1,winterstale,1610\nprizes,1,winterstale,1610\nhabited,1,winterstale,1610\nprotestation,1,winterstale,1610\nspeaking,1,winterstale,1610\nglisters,1,winterstale,1610\nwing,1,winterstale,1610\nwishes,1,winterstale,1610\nstuff'd,1,winterstale,1610\nredeem'd,1,winterstale,1610\nceremony,1,winterstale,1610\nporter,1,winterstale,1610\nprofessions,1,winterstale,1610\nprunes,1,winterstale,1610\nsoldier,1,winterstale,1610\nwasp's,1,winterstale,1610\nward,1,winterstale,1610\nware,1,winterstale,1610\nbourn,1,winterstale,1610\nattired,1,winterstale,1610\nfrom't,1,winterstale,1610\noily,1,winterstale,1610\noils,1,winterstale,1610\nboiled,1,winterstale,1610\nmentioned,1,winterstale,1610\nrarely,1,winterstale,1610\ntitle,1,winterstale,1610\nwether,1,winterstale,1610\nGloves,1,winterstale,1610\ndamnable,1,winterstale,1610\nedge,1,winterstale,1610\nwenches',1,winterstale,1610\ndedication,1,winterstale,1610\ndearer,1,winterstale,1610\nknow'st,1,winterstale,1610\nfish'd,1,winterstale,1610\nMoney's,1,winterstale,1610\nunsafe,1,winterstale,1610\ndies,1,winterstale,1610\nruin,1,winterstale,1610\nbold,1,winterstale,1610\nseest,1,winterstale,1610\n'she,1,winterstale,1610\nturned,1,winterstale,1610\nshakest,1,winterstale,1610\nFortunate,1,winterstale,1610\nlatches,1,winterstale,1610\ndirectly,1,winterstale,1610\noxlips,1,winterstale,1610\nsavageness,1,winterstale,1610\ndispleasure,1,winterstale,1610\nvials,1,winterstale,1610\nnorthern,1,winterstale,1610\nwave,1,winterstale,1610\npettitoes,1,winterstale,1610\nrebellion,1,winterstale,1610\nmalady,1,winterstale,1610\nstop,1,winterstale,1610\nincense,1,winterstale,1610\nvoice,1,winterstale,1610\nreared,1,winterstale,1610\nstocks,1,winterstale,1610\ncoast,1,winterstale,1610\nwarp,1,winterstale,1610\nbond,1,winterstale,1610\ndice,1,winterstale,1610\nadvancement,1,winterstale,1610\nthroughly,1,winterstale,1610\nwary,1,winterstale,1610\nbone,1,winterstale,1610\nfriendships,1,winterstale,1610\nwash,1,winterstale,1610\nshuts,1,winterstale,1610\nProfess'd,1,winterstale,1610\nbasilisk,1,winterstale,1610\nBurn,1,winterstale,1610\nmelted,1,winterstale,1610\ncogitation,1,winterstale,1610\nstirr'd,1,winterstale,1610\nfamiliarity,1,winterstale,1610\nnaturally,1,winterstale,1610\nmingling,1,winterstale,1610\ngesture,1,winterstale,1610\nwast,1,winterstale,1610\ncreeping,1,winterstale,1610\nsteer,1,winterstale,1610\nalliance,1,winterstale,1610\nbright,1,winterstale,1610\nframed,1,winterstale,1610\nfeeders,1,winterstale,1610\nRogero,1,winterstale,1610\ninfirmity,1,winterstale,1610\nbents,1,winterstale,1610\nhungry,1,winterstale,1610\nSoftly,1,winterstale,1610\nproject,1,winterstale,1610\ncontradicts,1,winterstale,1610\nshorten,1,winterstale,1610\naspect,1,winterstale,1610\nsick,1,winterstale,1610\nbeholder,1,winterstale,1610\nbitten,1,winterstale,1610\nnail,1,winterstale,1610\nwarden,1,winterstale,1610\nscandal,1,winterstale,1610\nstumble,1,winterstale,1610\nslaves,1,winterstale,1610\nHours,1,winterstale,1610\ncharities,1,winterstale,1610\nswain's,1,winterstale,1610\ndrown,1,winterstale,1610\nTakes,1,winterstale,1610\ncarver's,1,winterstale,1610\nmelancholy,1,winterstale,1610\nsteward,1,winterstale,1610\ncommended,1,winterstale,1610\nvisible,1,winterstale,1610\nbegetting,1,winterstale,1610\nentitling,1,winterstale,1610\nLay't,1,winterstale,1610\nslackness,1,winterstale,1610\nvulgars,1,winterstale,1610\nhag,1,winterstale,1610\nsweeten,1,winterstale,1610\ntraitorly,1,winterstale,1610\nsweeter,1,winterstale,1610\ncrack,1,winterstale,1610\nsign,1,winterstale,1610\nrefuse,1,winterstale,1610\ndiscern,1,winterstale,1610\nhay,1,winterstale,1610\n'Twere,1,winterstale,1610\nfindings,1,winterstale,1610\nmesses,1,winterstale,1610\npilot,1,winterstale,1610\nAm,1,winterstale,1610\naltogether,1,winterstale,1610\nstubborn,1,winterstale,1610\ntonight,1,winterstale,1610\nmusic,1,winterstale,1610\nSummon,1,winterstale,1610\nhang'd,1,winterstale,1610\nLooks,1,winterstale,1610\nsmacks,1,winterstale,1610\nbawdry,1,winterstale,1610\nrelished,1,winterstale,1610\nloath,1,winterstale,1610\neternal,1,winterstale,1610\nBecomes,1,winterstale,1610\nknowing,1,winterstale,1610\nundescried,1,winterstale,1610\ndungy,1,winterstale,1610\nThose,1,winterstale,1610\nunnatural,1,winterstale,1610\nbawcock,1,winterstale,1610\ndesperate,1,winterstale,1610\nlow's,1,winterstale,1610\nblown,1,winterstale,1610\nsluiced,1,winterstale,1610\naided,1,winterstale,1610\nhen,1,winterstale,1610\nLa,1,winterstale,1610\nHaving,1,winterstale,1610\nPlay,1,winterstale,1610\nbag,1,winterstale,1610\ncareer,1,winterstale,1610\npander,1,winterstale,1610\nverier,1,winterstale,1610\nOurselves,1,winterstale,1610\nprone,1,winterstale,1610\nMe,1,winterstale,1610\nharlot,1,winterstale,1610\nhoped,1,winterstale,1610\nbar,1,winterstale,1610\nlands,1,winterstale,1610\neternity,1,winterstale,1610\nladyship,1,winterstale,1610\ntripp'd,1,winterstale,1610\ningrateful,1,winterstale,1610\ncleansed,1,winterstale,1610\ngallery,1,winterstale,1610\nmerited,1,winterstale,1610\npities,1,winterstale,1610\nunfilial,1,winterstale,1610\npen,1,winterstale,1610\npitied,1,winterstale,1610\nStanding,1,winterstale,1610\ntougher,1,winterstale,1610\nWithin,1,winterstale,1610\nhit,1,winterstale,1610\ntear,1,winterstale,1610\nSomething,1,winterstale,1610\nmedicine,1,winterstale,1610\nthrower,1,winterstale,1610\nfiner,1,winterstale,1610\nfatal,1,winterstale,1610\nkinds,1,winterstale,1610\nHa',1,winterstale,1610\nmeant,1,winterstale,1610\ndullest,1,winterstale,1610\nPronounce,1,winterstale,1610\nstrangely,1,winterstale,1610\nhusbands,1,winterstale,1610\ngambols,1,winterstale,1610\nappoint,1,winterstale,1610\nrustics,1,winterstale,1610\ncuckolds,1,winterstale,1610\ncontracted,1,winterstale,1610\npath,1,winterstale,1610\nwither'd,1,winterstale,1610\neast,1,winterstale,1610\npate,1,winterstale,1610\nrevenue,1,winterstale,1610\npinched,1,winterstale,1610\nhides,1,winterstale,1610\ncracks,1,winterstale,1610\ntreachery,1,winterstale,1610\npash,1,winterstale,1610\nbearts,1,winterstale,1610\nwedded,1,winterstale,1610\nAlmost,1,winterstale,1610\nUp,1,winterstale,1610\nwinked,1,winterstale,1610\nstrew,1,winterstale,1610\ngays,1,winterstale,1610\ndoxy,1,winterstale,1610\nformerly,1,winterstale,1610\nGold,1,winterstale,1610\nlordings,1,winterstale,1610\nsnapper,1,winterstale,1610\nnobly,1,winterstale,1610\nshunn'd,1,winterstale,1610\nbeard's,1,winterstale,1610\nblameless,1,winterstale,1610\nGone,1,winterstale,1610\no'erthrow,1,winterstale,1610\nheads,1,winterstale,1610\nHeavy,1,winterstale,1610\nsire,1,winterstale,1610\nquiet,1,winterstale,1610\nsirs,1,winterstale,1610\nTakest,1,winterstale,1610\ntitles,1,winterstale,1610\nstrain'd,1,winterstale,1610\ngod,1,winterstale,1610\ngrazing,1,winterstale,1610\nJanuary,1,winterstale,1610\niniquity,1,winterstale,1610\nangled,1,winterstale,1610\ndolour,1,winterstale,1610\nspringe,1,winterstale,1610\nwhatever,1,winterstale,1610\nroyalty,1,winterstale,1610\nbull,1,winterstale,1610\nbulk,1,winterstale,1610\ngave,1,winterstale,1610\nnigh,1,winterstale,1610\nstraw,1,winterstale,1610\nspotless,1,winterstale,1610\nbend,1,winterstale,1610\nhumane,1,winterstale,1610\nsovereignly,1,winterstale,1610\nJove's,1,winterstale,1610\nimagine,1,winterstale,1610\nPresent,1,winterstale,1610\nsuffer'd,1,winterstale,1610\nperdition,1,winterstale,1610\naffect'st,1,winterstale,1610\ninfusion,1,winterstale,1610\nEmperor,1,winterstale,1610\nburn,1,winterstale,1610\nposture,1,winterstale,1610\ncrush,1,winterstale,1610\ncap,1,winterstale,1610\ncorpse,1,winterstale,1610\nstruck,1,winterstale,1610\nlames,1,winterstale,1610\nlawns,1,winterstale,1610\nstraited,1,winterstale,1610\nnaming,1,winterstale,1610\ntricks,1,winterstale,1610\nextended,1,winterstale,1610\nSeest,1,winterstale,1610\nshepherds,1,winterstale,1610\nswoons,1,winterstale,1610\nanything,1,winterstale,1610\ndevised,1,winterstale,1610\npre,1,winterstale,1610\ngaze,1,winterstale,1610\ncelebration,1,winterstale,1610\nwedlock,1,winterstale,1610\nSave,1,winterstale,1610\ninfectious,1,winterstale,1610\nChild,1,winterstale,1610\npeople,1,winterstale,1610\nrover,1,winterstale,1610\ningredient,1,winterstale,1610\nfifty,1,winterstale,1610\nLies,1,winterstale,1610\nSpeak,1,winterstale,1610\nwelkin,1,winterstale,1610\npiled,1,winterstale,1610\nPut,1,winterstale,1610\n'Verily,1,winterstale,1610\nhobby,1,winterstale,1610\ncopest,1,winterstale,1610\nApprehend,1,winterstale,1610\naqua,1,winterstale,1610\nDrawing,1,winterstale,1610\nsuddenly,1,winterstale,1610\n'once',1,winterstale,1610\nprating,1,winterstale,1610\ncurst,1,winterstale,1610\njewel,1,winterstale,1610\ncourted,1,winterstale,1610\nfarewell,1,winterstale,1610\n'Remember,1,winterstale,1610\ndelay'd,1,winterstale,1610\nsilk,1,winterstale,1610\nbub,1,winterstale,1610\nattorneyed,1,winterstale,1610\nkernel,1,winterstale,1610\nverity,1,winterstale,1610\nunbraided,1,winterstale,1610\ntwinn'd,1,winterstale,1610\nbug,1,winterstale,1610\nbud,1,winterstale,1610\nPerfume,1,winterstale,1610\nPress,1,winterstale,1610\nnettles,1,winterstale,1610\nstander,1,winterstale,1610\nmystery,1,winterstale,1610\nfathoms,1,winterstale,1610\nAbove,1,winterstale,1610\nSorely,1,winterstale,1610\nfrowns,1,winterstale,1610\npreserve,1,winterstale,1610\ndisguise,1,winterstale,1610\nhovering,1,winterstale,1610\nraisins,1,winterstale,1610\nhorseman's,1,winterstale,1610\nO'er,1,winterstale,1610\nEnough,1,winterstale,1610\nswine,1,winterstale,1610\nTraitors,1,winterstale,1610\nsins,1,winterstale,1610\nlonged,1,winterstale,1610\npains,1,winterstale,1610\nsavoury,1,winterstale,1610\nflaying,1,winterstale,1610\nunstain'd,1,winterstale,1610\nImpute,1,winterstale,1610\nrejoice,1,winterstale,1610\nsavours,1,winterstale,1610\nstretch,1,winterstale,1610\nnayward,1,winterstale,1610\nadheres,1,winterstale,1610\nashamed,1,winterstale,1610\nnorth,1,winterstale,1610\nfooting,1,winterstale,1610\nfulfil,1,winterstale,1610\nupper,1,winterstale,1610\nresort,1,winterstale,1610\nacceptance,1,winterstale,1610\nloud'st,1,winterstale,1610\ndildos,1,winterstale,1610\nattentiveness,1,winterstale,1610\nanointed,1,winterstale,1610\nchafes,1,winterstale,1610\nName,1,winterstale,1610\nChide,1,winterstale,1610\nfecks,1,winterstale,1610\nsolemn,1,winterstale,1610\nentertain,1,winterstale,1610\nsanctity,1,winterstale,1610\nenthralled,1,winterstale,1610\nchildish,1,winterstale,1610\nsolely,1,winterstale,1610\ndeem,1,winterstale,1610\ndeparted,1,winterstale,1610\nvirgin,1,winterstale,1610\ninstant,1,winterstale,1610\ndeer,1,winterstale,1610\nFollows,1,winterstale,1610\nstay'd,1,winterstale,1610\nsaffron,1,winterstale,1610\nvalleys,1,winterstale,1610\nwhereto,1,winterstale,1610\ncredent,1,winterstale,1610\nCannot,1,winterstale,1610\nbreast,1,winterstale,1610\nquitted,1,winterstale,1610\nHumbling,1,winterstale,1610\ntorments,1,winterstale,1610\nintelligencing,1,winterstale,1610\nkeeping,1,winterstale,1610\nembraced,1,winterstale,1610\narraigned,1,winterstale,1610\nremovedness,1,winterstale,1610\nraise,1,winterstale,1610\nexercises,1,winterstale,1610\nexcellent,1,winterstale,1610\ntale's,1,winterstale,1610\nshrug,1,winterstale,1610\nSONG,1,winterstale,1610\nde,1,winterstale,1610\nstops,1,winterstale,1610\nfaster,1,winterstale,1610\nBest,1,winterstale,1610\npainting,1,winterstale,1610\nDestroy'd,1,winterstale,1610\nprevented,1,winterstale,1610\nsheet,1,winterstale,1610\nyoked,1,winterstale,1610\nviolence,1,winterstale,1610\ndebt,1,winterstale,1610\nBless,1,winterstale,1610\nGallows,1,winterstale,1610\nopportune,1,winterstale,1610\ngain,1,winterstale,1610\nrecovered,1,winterstale,1610\nunfledged,1,winterstale,1610\ntongued,1,winterstale,1610\nnewer,1,winterstale,1610\nbid'st,1,winterstale,1610\nnotes,1,winterstale,1610\nPast,1,winterstale,1610\nwronging,1,winterstale,1610\nImparts,1,winterstale,1610\nwhereon,1,winterstale,1610\nplays,1,winterstale,1610\nunworthy,1,winterstale,1610\nchildhoods,1,winterstale,1610\nexpose,1,winterstale,1610\ngait,1,winterstale,1610\n'Fore,1,winterstale,1610\nnobleman,1,winterstale,1610\nmakers,1,winterstale,1610\nthrive,1,winterstale,1610\nSatyrs,1,winterstale,1610\nlend,1,winterstale,1610\nAlexander,1,winterstale,1610\ncollect,1,winterstale,1610\nSkulking,1,winterstale,1610\nboast,1,winterstale,1610\noutwardly,1,winterstale,1610\nchisel,1,winterstale,1610\nunwillingly,1,winterstale,1610\nlaughing,1,winterstale,1610\nwaits,1,winterstale,1610\nwearers,1,winterstale,1610\nusurer,1,winterstale,1610\nburied,1,winterstale,1610\nglistering,1,winterstale,1610\nshovels,1,winterstale,1610\ncomforts,1,winterstale,1610\nale,1,winterstale,1610\ngame,1,winterstale,1610\nContract,1,winterstale,1610\npromising,1,winterstale,1610\nmemory,1,winterstale,1610\nreckon,1,winterstale,1610\no'ershades,1,winterstale,1610\nslips,1,winterstale,1610\nprivilege,1,winterstale,1610\ncruelty,1,winterstale,1610\nmindless,1,winterstale,1610\naccompany,1,winterstale,1610\nforges,1,winterstale,1610\namend,1,winterstale,1610\ngrowth,1,winterstale,1610\nfourscore,1,winterstale,1610\ncurds,1,winterstale,1610\nenclosed,1,winterstale,1610\ndroop'd,1,winterstale,1610\nstamped,1,winterstale,1610\nThorough,1,winterstale,1610\npiercing,1,winterstale,1610\nwench,1,winterstale,1610\ncured,1,winterstale,1610\nprosper,1,winterstale,1610\nSmalus,1,winterstale,1610\nMaster,1,winterstale,1610\nbetray'd,1,winterstale,1610\ncures,1,winterstale,1610\nfrights,1,winterstale,1610\ncowardly,1,winterstale,1610\ncommend,1,winterstale,1610\ndamn'd,1,winterstale,1610\npe,1,winterstale,1610\nLawn,1,winterstale,1610\nbarbarism,1,winterstale,1610\napprobation,1,winterstale,1610\nPersuades,1,winterstale,1610\ncommitted,1,winterstale,1610\nfears,1,winterstale,1610\nbodies,1,winterstale,1610\nwisely,1,winterstale,1610\nregion,1,winterstale,1610\nplant,1,winterstale,1610\nheifer,1,winterstale,1610\ncomplexions,1,winterstale,1610\nsceptres,1,winterstale,1610\nItalian,1,winterstale,1610\nwrinkled,1,winterstale,1610\nsharper,1,winterstale,1610\nthankful,1,winterstale,1610\ncram's,1,winterstale,1610\nabide,1,winterstale,1610\nidle,1,winterstale,1610\nplayfellow,1,winterstale,1610\ndiscredits,1,winterstale,1610\nsometime,1,winterstale,1610\nauspicious,1,winterstale,1610\ndragoned,1,winterstale,1610\nlout,1,winterstale,1610\nunsphere,1,winterstale,1610\nJewel,1,winterstale,1610\ntemper,1,winterstale,1610\nmagnificence,1,winterstale,1610\nnear'st,1,winterstale,1610\nperfectly,1,winterstale,1610\n'twould,1,winterstale,1610\nspell,1,winterstale,1610\nmort,1,winterstale,1610\nreiterate,1,winterstale,1610\nif't,1,winterstale,1610\npuritan,1,winterstale,1610\nBugle,1,winterstale,1610\nstudied,1,winterstale,1610\nimpediment,1,winterstale,1610\nmiserable,1,winterstale,1610\nloud,1,winterstale,1610\nendure,1,winterstale,1610\noffer'd,1,winterstale,1610\nmidwife's,1,winterstale,1610\nclipping,1,winterstale,1610\ncauses,1,winterstale,1610\nparents,1,winterstale,1610\nhoxes,1,winterstale,1610\nStrangle,1,winterstale,1610\nscandalous,1,winterstale,1610\ninfects,1,winterstale,1610\nadd,1,winterstale,1610\nbeholding,1,winterstale,1610\nspeak'st,1,winterstale,1610\nAcquaint,1,winterstale,1610\ndumbness,1,winterstale,1610\nwherein,1,winterstale,1610\nFaster,1,winterstale,1610\ntalkest,1,winterstale,1610\npotent,1,winterstale,1610\nhogshead,1,winterstale,1610\ndispose,1,winterstale,1610\nunthought,1,winterstale,1610\ncustomers,1,winterstale,1610\ndole,1,winterstale,1610\ndevil,1,winterstale,1610\nlose,1,winterstale,1610\nunfolds,1,winterstale,1610\nfixes,1,winterstale,1610\nblue,1,winterstale,1610\nfranklins,1,winterstale,1610\ncontinent,1,winterstale,1610\nlets,1,winterstale,1610\nlock'd,1,winterstale,1610\nnimble,1,winterstale,1610\ncommandment,1,winterstale,1610\nwestward,1,winterstale,1610\nkings',1,winterstale,1610\nknee,1,winterstale,1610\nshow't,1,winterstale,1610\njourney,1,winterstale,1610\nsummers,1,winterstale,1610\nnatures,1,winterstale,1610\nload,1,winterstale,1610\nbriers,1,winterstale,1610\nCame,1,winterstale,1610\nspouts,1,winterstale,1610\ngraver,1,winterstale,1610\nAnother's,1,winterstale,1610\nhoa,1,winterstale,1610\nhardly,1,winterstale,1610\nSeeing,1,winterstale,1610\nreasons,1,winterstale,1610\nrunning,1,winterstale,1610\nornaments,1,winterstale,1610\npersonal,1,winterstale,1610\nkills,1,winterstale,1610\nblamed,1,winterstale,1610\nslide,1,winterstale,1610\nscratch,1,winterstale,1610\nfront,1,winterstale,1610\nspeaks,1,winterstale,1610\nRan,1,winterstale,1610\nfrighted,1,winterstale,1610\nisle,1,winterstale,1610\npour'd,1,winterstale,1610\nRussia,1,winterstale,1610\nDecember,1,winterstale,1610\nafford,1,winterstale,1610\nlewd,1,winterstale,1610\ndissever'd,1,winterstale,1610\nslights,1,winterstale,1610\nconspiracy,1,winterstale,1610\ncrow,1,winterstale,1610\nhaunts,1,winterstale,1610\nsurpassing,1,winterstale,1610\nkingly,1,winterstale,1610\nPlainly,1,winterstale,1610\nfroth,1,winterstale,1610\ninfirmities,1,winterstale,1610\nsignify,1,winterstale,1610\nsenseless,1,winterstale,1610\nnearer,1,winterstale,1610\ntinkers,1,winterstale,1610\nwares,1,winterstale,1610\nverse,1,winterstale,1610\nintended,1,winterstale,1610\npalm,1,winterstale,1610\nhusband's,1,winterstale,1610\nRead,1,winterstale,1610\nweeds,1,winterstale,1610\nsee't,1,winterstale,1610\nStart,1,winterstale,1610\ncall'd,1,winterstale,1610\nStars,1,winterstale,1610\nappears,1,winterstale,1610\nshun,1,winterstale,1610\nDiscovering,1,winterstale,1610\nliberty,1,winterstale,1610\nreach,1,winterstale,1610\nenchantment,1,winterstale,1610\ndraws,1,winterstale,1610\nfeasted,1,winterstale,1610\nEnjoy,1,winterstale,1610\nSatisfy,1,winterstale,1610\naccord,1,winterstale,1610\nforty,1,winterstale,1610\npurgation,1,winterstale,1610\nschool,1,winterstale,1610\nprovided,1,winterstale,1610\nthrough't,1,winterstale,1610\nspotted,1,winterstale,1610\nsully,1,winterstale,1610\nunbuckle,1,winterstale,1610\nexcuse,1,winterstale,1610\nunlawful,1,winterstale,1610\nponderous,1,winterstale,1610\nwhether,1,winterstale,1610\nexpect,1,winterstale,1610\nmidnight,1,winterstale,1610\npage,1,winterstale,1610\nbooties,1,winterstale,1610\nSmile,1,winterstale,1610\nrashness,1,winterstale,1610\npeepeth,1,winterstale,1610\npiedness,1,winterstale,1610\nprepare,1,winterstale,1610\nroyalty's,1,winterstale,1610\nbaitings,1,winterstale,1610\nharder,1,winterstale,1610\ndominions,1,winterstale,1610\ncourts,1,winterstale,1610\nneglect,1,winterstale,1610\nhangs,1,winterstale,1610\nstoned,1,winterstale,1610\nLaid,1,winterstale,1610\nwinter's,1,winterstale,1610\nspit,1,winterstale,1610\ndiest,1,winterstale,1610\nhum,1,winterstale,1610\nprofound,1,winterstale,1610\nDispatch,1,winterstale,1610\nPrepare,1,winterstale,1610\nowes,1,winterstale,1610\nAdvocate's,1,winterstale,1610\nstrive,1,winterstale,1610\nattach,1,winterstale,1610\ndevise,1,winterstale,1610\nheretic,1,winterstale,1610\ntwain,1,winterstale,1610\nmedicinal,1,winterstale,1610\nowed,1,winterstale,1610\ngrimly,1,winterstale,1610\nshop,1,winterstale,1610\nhate,1,winterstale,1610\nforlorn,1,winterstale,1610\nfear'd,1,winterstale,1610\nStays,1,winterstale,1610\nenjoin,1,winterstale,1610\ndreadful,1,winterstale,1610\npushes,1,winterstale,1610\nbutler,1,winterstale,1610\nrings,1,winterstale,1610\nyielded,1,winterstale,1610\nproper,1,winterstale,1610\nCommune,1,winterstale,1610\nshoe,1,winterstale,1610\nWrecked,1,winterstale,1610\npetitions,1,winterstale,1610\nSlaughters,1,winterstale,1610\ngentry,1,winterstale,1610\nAfresh,1,winterstale,1610\nprepared,1,winterstale,1610\nbearer,1,winterstale,1610\nstreak'd,1,winterstale,1610\nHot,1,winterstale,1610\ncreatures,1,winterstale,1610\nHides,1,winterstale,1610\ngirl,1,winterstale,1610\ndiscontenting,1,winterstale,1610\nrear'd,1,winterstale,1610\ndyed,1,winterstale,1610\nmaiden,1,winterstale,1610\nerror,1,winterstale,1610\nurgent,1,winterstale,1610\nlock,1,winterstale,1610\nlearnt,1,winterstale,1610\navouches,1,winterstale,1610\ningratitude,1,winterstale,1610\nterm,1,winterstale,1610\nnegative,1,winterstale,1610\nCare,1,winterstale,1610\nparents',1,winterstale,1610\nopen'd,1,winterstale,1610\ncrone,1,winterstale,1610\nWretches,1,winterstale,1610\ncarbonadoed,1,winterstale,1610\nknock,1,winterstale,1610\nailest,1,winterstale,1610\ncolour's,1,winterstale,1610\nprate,1,winterstale,1610\nAmong,1,winterstale,1610\nclearer,1,winterstale,1610\nglib,1,winterstale,1610\npurchased,1,winterstale,1610\ncrabbed,1,winterstale,1610\nAgain,1,winterstale,1610\nchides,1,winterstale,1610\njudgment,1,winterstale,1610\nSometimes,1,winterstale,1610\nbookish,1,winterstale,1610\njustify,1,winterstale,1610\nvisited,1,winterstale,1610\nEthiopian's,1,winterstale,1610\nwooing,1,winterstale,1610\nhiss,1,winterstale,1610\nindustriously,1,winterstale,1610\nfoundation,1,winterstale,1610\nlonging,1,winterstale,1610\nneb,1,winterstale,1610\nshrugs,1,winterstale,1610\nhazard,1,winterstale,1610\nmayest,1,winterstale,1610\nenjoy,1,winterstale,1610\nyest,1,winterstale,1610\nQuit,1,winterstale,1610\nwillingly,1,winterstale,1610\nplackets,1,winterstale,1610\ncipher,1,winterstale,1610\ntastes,1,winterstale,1610\nfair'st,1,winterstale,1610\nroot,1,winterstale,1610\nwhistling,1,winterstale,1610\nprecedent,1,winterstale,1610\nEurope,1,winterstale,1610\ncapital,1,winterstale,1610\nconsumed,1,winterstale,1610\nunthrifty,1,winterstale,1610\nnobler,1,winterstale,1610\nwitch,1,winterstale,1610\nCyprus,1,winterstale,1610\nIncertain,1,winterstale,1610\nbirths,1,winterstale,1610\nimpudently,1,winterstale,1610\nBetween,1,winterstale,1610\ninclinest,1,winterstale,1610\nsour'd,1,winterstale,1610\nnotable,1,winterstale,1610\nfat,1,winterstale,1610\nwheels,1,winterstale,1610\nLusty,1,winterstale,1610\nrural,1,winterstale,1610\nborrow,1,winterstale,1610\nLament,1,winterstale,1610\nComes,1,winterstale,1610\ntumbling,1,winterstale,1610\ncodpiece,1,winterstale,1610\nsoaking,1,winterstale,1610\nluce,1,winterstale,1610\nleap,1,winterstale,1610\ncock's,1,winterstale,1610\nhallowed,1,winterstale,1610\nbehove,1,winterstale,1610\nproclamations,1,winterstale,1610\nperceived,1,winterstale,1610\npalms,1,winterstale,1610\nIts,1,winterstale,1610\nPhoebus,1,winterstale,1610\nuniversal,1,winterstale,1610\nhallooed,1,winterstale,1610\ntrained,1,winterstale,1610\ncaddisses,1,winterstale,1610\nForbid,1,winterstale,1610\nequal,1,winterstale,1610\ndestiny,1,winterstale,1610\nheavier,1,winterstale,1610\nmain,1,winterstale,1610\nissueless,1,winterstale,1610\nmoved,1,winterstale,1610\nVirtue,1,winterstale,1610\nsprightly,1,winterstale,1610\nventure,1,winterstale,1610\nrigor,1,winterstale,1610\ntarry,1,winterstale,1610\nforceful,1,winterstale,1610\ncarried,1,winterstale,1610\ninfluences,1,winterstale,1610\nembracement,1,winterstale,1610\nrank,1,winterstale,1610\nTen,1,winterstale,1610\ngarden's,1,winterstale,1610\nunluckily,1,winterstale,1610\nCanst,1,winterstale,1610\ngriefs,1,winterstale,1610\nforehead,1,winterstale,1610\nbreathed,1,winterstale,1610\nmischief,1,winterstale,1610\nundoes,1,winterstale,1610\nrascals,1,winterstale,1610\nInclining,1,winterstale,1610\nweighing,1,winterstale,1610\ntakest,1,winterstale,1610\nbrat's,1,winterstale,1610\ngainsaying,1,winterstale,1610\nbuild,1,winterstale,1610\nunpath'd,1,winterstale,1610\nsquash,1,winterstale,1610\n'longs,1,winterstale,1610\nincapable,1,winterstale,1610\nomit,1,winterstale,1610\nrooted,1,winterstale,1610\nsquare,1,winterstale,1610\napply,1,winterstale,1610\nproverb,1,winterstale,1610\nlack'd,1,winterstale,1610\ncaparison,1,winterstale,1610\nfoundations,1,winterstale,1610\nafresh,1,winterstale,1610\nfraught,1,winterstale,1610\nwakes,1,winterstale,1610\naction,1,winterstale,1610\nOpposed,1,winterstale,1610\n'nointed,1,winterstale,1610\noccupation,1,winterstale,1610\nSicily,1,winterstale,1610\nUndone,1,winterstale,1610\nawaking,1,winterstale,1610\nHang,1,winterstale,1610\nmace,1,winterstale,1610\nlocks,1,winterstale,1610\ngently,1,winterstale,1610\nrainbow,1,winterstale,1610\npinch'd,1,winterstale,1610\nnoon,1,winterstale,1610\nMaliciously,1,winterstale,1610\nclog,1,winterstale,1610\nknew'st,1,winterstale,1610\nsemicircle,1,winterstale,1610\nconceited,1,winterstale,1610\nknack,1,winterstale,1610\nReverend,1,winterstale,1610\nampler,1,winterstale,1610\ndisgraced,1,winterstale,1610\ndaily,1,winterstale,1610\ninfancy,1,winterstale,1610\nslipp'd,1,winterstale,1610\nsuperstition,1,winterstale,1610\nDismantle,1,winterstale,1610\nqueens,1,winterstale,1610\nrash,1,winterstale,1610\nfann'd,1,winterstale,1610\nHonesty,1,winterstale,1610\nspread,1,winterstale,1610\nvelvet,1,winterstale,1610\nbravely,1,winterstale,1610\ntraitors,1,winterstale,1610\newes,1,winterstale,1610\ntenor,1,winterstale,1610\nunearthly,1,winterstale,1610\npinching,1,winterstale,1610\nseverals,1,winterstale,1610\npregnant,1,winterstale,1610\nburthens,1,winterstale,1610\nspokest,1,winterstale,1610\ndangers,1,winterstale,1610\nfails,1,winterstale,1610\ndisloyal,1,winterstale,1610\nSoft,1,winterstale,1610\nClear,1,winterstale,1610\nPrevail,1,winterstale,1610\nPerform'd,1,winterstale,1610\nexposed,1,winterstale,1610\nunbreech'd,1,winterstale,1610\nInch,1,winterstale,1610\nposterity,1,winterstale,1610\nborne,1,winterstale,1610\nalter,1,winterstale,1610\nmuffle,1,winterstale,1610\npicking,1,winterstale,1610\nAffrighted,1,winterstale,1610\npicked,1,winterstale,1610\nAll's,1,winterstale,1610\naffections,1,winterstale,1610\nsticks,1,winterstale,1610\nstays,1,winterstale,1610\nmate,1,winterstale,1610\nquickly,1,winterstale,1610\nreflect,1,winterstale,1610\nvirginalling,1,winterstale,1610\nUnvenerable,1,winterstale,1610\nlanguish'd,1,winterstale,1610\nfairy,1,winterstale,1610\nderivative,1,winterstale,1610\nfairs,1,winterstale,1610\ncounsellor,1,winterstale,1610\nadultery,1,winterstale,1610\norange,1,winterstale,1610\nKissing,1,winterstale,1610\nSaltiers,1,winterstale,1610\nplaces,1,winterstale,1610\nshall's,1,winterstale,1610\nshall't,1,winterstale,1610\nshares,1,winterstale,1610\nawhile,1,winterstale,1610\nPicking,1,winterstale,1610\ngermane,1,winterstale,1610\nrejoicing,1,winterstale,1610\nbe's,1,winterstale,1610\ncall't,1,winterstale,1610\navouch,1,winterstale,1610\nsawest,1,winterstale,1610\nfamous,1,winterstale,1610\nAge,1,winterstale,1610\nDoth,1,winterstale,1610\nWill't,1,winterstale,1610\nutters,1,winterstale,1610\npack'd,1,winterstale,1610\ninjustice,1,winterstale,1610\ntrespasses,1,winterstale,1610\nunusual,1,winterstale,1610\nKnown,1,winterstale,1610\no'erween,1,winterstale,1610\nKnows,1,winterstale,1610\nmultiply,1,winterstale,1610\nmourn,1,winterstale,1610\ngoads,1,winterstale,1610\ninform'd,1,winterstale,1610\nravens,1,winterstale,1610\nfurlongs,1,winterstale,1610\neffect,1,winterstale,1610\nembracing,1,winterstale,1610\nsinn'd,1,winterstale,1610\nset'st,1,winterstale,1610\ngraceful,1,winterstale,1610\ngoblins,1,winterstale,1610\nlodge,1,winterstale,1610\npoisoner,1,winterstale,1610\nmortal,1,winterstale,1610\nleaves,1,winterstale,1610\nstark,1,winterstale,1610\nblessings,1,winterstale,1610\nmill,1,winterstale,1610\nsacrifice,1,winterstale,1610\nfantastical,1,winterstale,1610\nResides,1,winterstale,1610\narrived,1,winterstale,1610\ncharitable,1,winterstale,1610\nlearnedly,1,winterstale,1610\nteeth,1,winterstale,1610\nnon,1,winterstale,1610\nbleeds,1,winterstale,1610\nblench,1,winterstale,1610\nsoldiers,1,winterstale,1610\ncovert,1,winterstale,1610\nsatisfaction,1,winterstale,1610\nconclusion,1,winterstale,1610\nmightst,1,winterstale,1610\nkisses,1,winterstale,1610\nphysics,1,winterstale,1610\npurposes,1,winterstale,1610\nsingularities,1,winterstale,1610\nbosoms,1,winterstale,1610\nvalley,1,winterstale,1610\ndared,1,winterstale,1610\nslowly,1,winterstale,1610\nnurses,1,winterstale,1610\nconfidence,1,winterstale,1610\nCease,1,winterstale,1610\nwrought,1,winterstale,1610\nkeeper,1,winterstale,1610\nbeggar,1,winterstale,1610\nuntried,1,winterstale,1610\nbloods,1,winterstale,1610\narraign,1,winterstale,1610\nQueen,1,winterstale,1610\nprocure,1,winterstale,1610\nobscured,1,winterstale,1610\nmissingly,1,winterstale,1610\nbolted,1,winterstale,1610\nmidwife,1,winterstale,1610\naired,1,winterstale,1610\nskin,1,winterstale,1610\nmast,1,winterstale,1610\nPraise,1,winterstale,1610\nparties,1,winterstale,1610\npartake,1,winterstale,1610\nPartake,1,winterstale,1610\ntenth,1,winterstale,1610\nkissing,1,winterstale,1610\ncoward,1,winterstale,1610\nsorrowed,1,winterstale,1610\npenitence,1,winterstale,1610\nwoe,1,winterstale,1610\nslave,1,winterstale,1610\nrheums,1,winterstale,1610\ndevils,1,winterstale,1610\n'Two,1,winterstale,1610\nowning,1,winterstale,1610\nfurnish'd,1,winterstale,1610\nJog,1,winterstale,1610\nStarr'd,1,winterstale,1610\nEndured,1,winterstale,1610\npeaces,1,winterstale,1610\nwoo,1,winterstale,1610\nwon,1,winterstale,1610\nchaff,1,winterstale,1610\nminutes,1,winterstale,1610\nvision,1,winterstale,1610\ngreatest,1,winterstale,1610\nAffliction,1,winterstale,1610\ninfect,1,winterstale,1610\nchide,1,winterstale,1610\nApparent,1,winterstale,1610\nmountain,1,winterstale,1610\nharden'd,1,winterstale,1610\n'Sir,1,winterstale,1610\namazement,1,winterstale,1610\ntrifle,1,winterstale,1610\nBuy,1,winterstale,1610\nbleat,1,winterstale,1610\nprofaneness,1,winterstale,1610\nborrow'd,1,winterstale,1610\ntardied,1,winterstale,1610\nMade,1,winterstale,1610\n'She,1,winterstale,1610\ndainty,1,winterstale,1610\ngreediness,1,winterstale,1610\nlittered,1,winterstale,1610\nbleaching,1,winterstale,1610\nsubdue,1,winterstale,1610\nhorrible,1,winterstale,1610\ndisguised,1,winterstale,1610\nstake,1,winterstale,1610\nwarmer,1,winterstale,1610\nwet,1,winterstale,1610\nGiving,1,winterstale,1610\nchangeth,1,winterstale,1610\nancientry,1,winterstale,1610\nstair,1,winterstale,1610\nBight,1,winterstale,1610\nBequeath,1,winterstale,1610\nwrath,1,winterstale,1610\nwed,1,winterstale,1610\nforgiven,1,winterstale,1610\nweb,1,winterstale,1610\nAvoid,1,winterstale,1610\nbear'st,1,winterstale,1610\nlouder,1,winterstale,1610\nNine,1,winterstale,1610\nbehalf,1,winterstale,1610\nmedler,1,winterstale,1610\nknavery,1,winterstale,1610\ntrembling,1,winterstale,1610\n'Twixt,1,winterstale,1610\nsplit'st,1,winterstale,1610\nwi',1,winterstale,1610\nsting,1,winterstale,1610\nfinder,1,winterstale,1610\nWafting,1,winterstale,1610\nwrongs,1,winterstale,1610\nperson's,1,winterstale,1610\nmerits,1,winterstale,1610\nundiscovered,1,winterstale,1610\nodd,1,winterstale,1610\nstale,1,winterstale,1610\n'My,1,winterstale,1610\nsake,1,winterstale,1610\nretire,1,winterstale,1610\nblushes,1,winterstale,1610\npurchase,1,winterstale,1610\npomp,1,winterstale,1610\nbarricado,1,winterstale,1610\ndishonour,1,winterstale,1610\nindictment,1,winterstale,1610\nfits,1,winterstale,1610\nRun,1,winterstale,1610\nstatesman,1,winterstale,1610\npond,1,winterstale,1610\nstile,1,winterstale,1610\nFancies,1,winterstale,1610\ncapable,1,winterstale,1610\nwin,1,winterstale,1610\npersons,1,winterstale,1610\nnewborn,1,winterstale,1610\nmessage,1,winterstale,1610\narrival,1,winterstale,1610\nhandkerchief,1,winterstale,1610\nprivy,1,winterstale,1610\nimpose,1,winterstale,1610\nbawdy,1,winterstale,1610\npublish'd,1,winterstale,1610\ndetestable,1,winterstale,1610\nconfined,1,winterstale,1610\npretence,1,winterstale,1610\nimport,1,winterstale,1610\nwoes,1,winterstale,1610\nknife,1,winterstale,1610\nring,1,winterstale,1610\ncreating,1,winterstale,1610\nsighted,1,winterstale,1610\nloving,1,winterstale,1610\nsmock,1,winterstale,1610\nHermione's,1,winterstale,1610\nsitting,1,winterstale,1610\ntraffic,1,winterstale,1610\nbondage,1,winterstale,1610\nholier,1,winterstale,1610\nallay,1,winterstale,1610\nweathers,1,winterstale,1610\nunseen,1,winterstale,1610\npertinent,1,winterstale,1610\nmanifest,1,winterstale,1610\naltering,1,winterstale,1610\nwaking,1,winterstale,1610\nmeaner,1,winterstale,1610\nstabs,1,winterstale,1610\nMasterly,1,winterstale,1610\nselfsame,1,winterstale,1610\nrecover,1,winterstale,1610\nmoles,1,winterstale,1610\nHardly,1,winterstale,1610\ndishonesty,1,winterstale,1610\nhanded,1,winterstale,1610\noak,1,winterstale,1610\nclock,1,winterstale,1610\nSaw,1,winterstale,1610\nSure,1,winterstale,1610\noffending,1,winterstale,1610\nDesire,1,winterstale,1610\ntinker's,1,winterstale,1610\nHeirs,1,winterstale,1610\nripe,1,winterstale,1610\nfalcon,1,winterstale,1610\nresemblance,1,winterstale,1610\nfiled,1,winterstale,1610\nThey're,1,winterstale,1610\nfulfill'd,1,winterstale,1610\nalters,1,winterstale,1610\nWenches,1,winterstale,1610\ntrinkets,1,winterstale,1610\nprotection,1,winterstale,1610\nPurge,1,winterstale,1610\nFlow'd,1,winterstale,1610\n'We,1,winterstale,1610\ndust,1,winterstale,1610\nlikes,1,winterstale,1610\nMercury,1,winterstale,1610\nThink,1,winterstale,1610\nDwelt,1,winterstale,1610\npedlars,1,winterstale,1610\nsquire's,1,winterstale,1610\nfixture,1,winterstale,1610\nsward,1,winterstale,1610\nstage,1,winterstale,1610\nhurried,1,winterstale,1610\nWeep,1,winterstale,1610\narmy,1,winterstale,1610\ncallat,1,winterstale,1610\nmould,1,winterstale,1610\ndriven,1,winterstale,1610\nprevail,1,winterstale,1610\naudience,1,winterstale,1610\nstabbing,1,winterstale,1610\nFertile,1,winterstale,1610\nbold'st,1,winterstale,1610\nFates,1,winterstale,1610\nthreatens,1,winterstale,1610\nmethoughts,1,winterstale,1610\nbleed,1,winterstale,1610\nwag,1,winterstale,1610\nintend,1,winterstale,1610\nfederary,1,winterstale,1610\n'stoned,1,winterstale,1610\nhandle,1,winterstale,1610\nthey'll,1,winterstale,1610\nblemish,1,winterstale,1610\nProclaimed,1,winterstale,1610\nbrother's,1,winterstale,1610\ngreetings,1,winterstale,1610\nplacket,1,winterstale,1610\nnew'st,1,winterstale,1610\nreigning,1,winterstale,1610\nlifted,1,winterstale,1610\nimposition,1,winterstale,1610\nthereabouts,1,winterstale,1610\nwool,1,winterstale,1610\nends,1,winterstale,1610\nKnowing,1,winterstale,1610\napace,1,winterstale,1610\ndeclare,1,winterstale,1610\nproceeding,1,winterstale,1610\nwont,1,winterstale,1610\nPraised,1,winterstale,1610\nwomen's,1,winterstale,1610\nprofessors,1,winterstale,1610\nearn'd,1,winterstale,1610\nthreats,1,winterstale,1610\nlullaby,1,winterstale,1610\nflourish'd,1,winterstale,1610\nbelly,1,winterstale,1610\ncursed,1,winterstale,1610\nknacks,1,winterstale,1610\npossess,1,winterstale,1610\ndamask,1,winterstale,1610\nfestival,1,winterstale,1610\nGiven,1,winterstale,1610\n'shrew,1,winterstale,1610\ncurses,1,winterstale,1610\nginger,1,winterstale,1610\nrift,1,winterstale,1610\ndish'd,1,winterstale,1610\ndiscover'd,1,winterstale,1610\nShalt,1,winterstale,1610\nsurprised,1,winterstale,1610\ndiscase,1,winterstale,1610\nangle,1,winterstale,1610\nanchors,1,winterstale,1610\nfact,1,winterstale,1610\ncurrants,1,winterstale,1610\ngladly,1,winterstale,1610\nshepherdess,1,winterstale,1610\nagree,1,winterstale,1610\nKin,1,winterstale,1610\nseize,1,winterstale,1610\ndarken,1,winterstale,1610\no'erthrown,1,winterstale,1610\nwatery,1,winterstale,1610\nMargery,1,winterstale,1610\nAntechamber,1,winterstale,1610\nrages,1,winterstale,1610\nmuddy,1,winterstale,1610\ntakes,1,winterstale,1610\nfaced,1,winterstale,1610\nvarying,1,winterstale,1610\nHail,1,winterstale,1610\ncertainty,1,winterstale,1610\ndispute,1,winterstale,1610\nJuno's,1,winterstale,1610\nThrew,1,winterstale,1610\nlavender,1,winterstale,1610\nThinkest,1,winterstale,1610\nblemishes,1,winterstale,1610\nwasps,1,winterstale,1610\nangel,1,winterstale,1610\ninform,1,winterstale,1610\nrequire,1,winterstale,1610\nheavings,1,winterstale,1610\nwomb,1,winterstale,1610\nbastard's,1,winterstale,1610\nowe,1,winterstale,1610\nlookers,1,winterstale,1610\nhaply,1,winterstale,1610\ndisliken,1,winterstale,1610\ndoings,1,winterstale,1610\nconsent,1,winterstale,1610\ndull,1,winterstale,1610\nclocks,1,winterstale,1610\npsalms,1,winterstale,1610\nDis's,1,winterstale,1610\nunity,1,winterstale,1610\nwolf,1,winterstale,1610\ngrain,1,winterstale,1610\ndrops,1,winterstale,1610\nserver,1,winterstale,1610\nmarble,1,winterstale,1610\nhundred,1,winterstale,1610\nfalling,1,winterstale,1610\nsweetheart's,1,winterstale,1610\nuneasy,1,winterstale,1610\nStrike,1,winterstale,1610\nShow,1,winterstale,1610\nfain,1,winterstale,1610\ngarlands,1,winterstale,1610\nheirs,1,winterstale,1610\nwholesome,1,winterstale,1610\nPrefix'd,1,winterstale,1610\nclown,1,winterstale,1610\nboiling,1,winterstale,1610\ndispatch'd,1,winterstale,1610\nebb'd,1,winterstale,1610\nthwack,1,winterstale,1610\ncried,1,winterstale,1610\ntongueless,1,winterstale,1610\nwanted,1,winterstale,1610\nminds,1,winterstale,1610\ndiseased,1,winterstale,1610\ncloth,1,winterstale,1610\ntuft,1,winterstale,1610\njudge,1,winterstale,1610\ndates,1,winterstale,1610\npresses,1,winterstale,1610\nunrolled,1,winterstale,1610\nhorsing,1,winterstale,1610\nstolen,1,winterstale,1610\nmiracle,1,winterstale,1610\nTill,1,winterstale,1610\nsaint,1,winterstale,1610\nBlossom,1,winterstale,1610\nacknowledged,1,winterstale,1610\nfall,1,winterstale,1610\ncouncils,1,winterstale,1610\ncreature's,1,winterstale,1610\nwilful,1,winterstale,1610\nwander,1,winterstale,1610\nlasting,1,winterstale,1610\nJupiter,1,winterstale,1610\nchurl,1,winterstale,1610\nkinsman,1,winterstale,1610\nplentifully,1,winterstale,1610\nsilly,1,winterstale,1610\nYond,1,winterstale,1610\nhumour,1,winterstale,1610\nadorns,1,winterstale,1610\nduck,1,winterstale,1610\nAffront,1,winterstale,1610\nkites,1,winterstale,1610\nunroosted,1,winterstale,1610\nparcels,1,winterstale,1610\ncelebrated,1,winterstale,1610\nworn,1,winterstale,1610\nJulio,1,winterstale,1610\ndeafening,1,winterstale,1610\nroses,1,winterstale,1610\nfighting,1,winterstale,1610\nwore,1,winterstale,1610\npassing,1,winterstale,1610\nwest,1,winterstale,1610\nlodged,1,winterstale,1610\nintention,1,winterstale,1610\nAccount,1,winterstale,1610\npantler,1,winterstale,1610\npertain,1,winterstale,1610\nunjust,1,winterstale,1610\nSweet,1,winterstale,1610\ngazing,1,winterstale,1610\n'Sicilia,1,winterstale,1610\nprofit,1,winterstale,1610\nscratch'd,1,winterstale,1610\nseparation,1,winterstale,1610\nwishing,1,winterstale,1610\nadmiration,1,winterstale,1610\npunish'd,1,winterstale,1610\nsavage,1,winterstale,1610\nUnbuckle,1,winterstale,1610\nclap,1,winterstale,1610\nyou',1,winterstale,1610\nblister,1,winterstale,1610\nrehearse,1,winterstale,1610\n'jump,1,winterstale,1610\ndotard,1,winterstale,1610\nrefer,1,winterstale,1610\ndistemper,1,winterstale,1610\nthereby,1,winterstale,1610\nrebuke,1,winterstale,1610\nminded,1,winterstale,1610\nbare,1,winterstale,1610\nbabe's,1,winterstale,1610\nthunder,1,winterstale,1610\nUnto,1,winterstale,1610\ndivers,1,winterstale,1610\nbite,1,winterstale,1610\nthereat,1,winterstale,1610\nLonely,1,winterstale,1610\nimmodest,1,winterstale,1610\nlines,1,winterstale,1610\npoison'd,1,winterstale,1610\nlinen,1,winterstale,1610\npractise,1,winterstale,1610\nbetters,1,winterstale,1610\npatient,1,winterstale,1610\nMeasured,1,winterstale,1610\nmarjoram,1,winterstale,1610\nrecoil,1,winterstale,1610\n'Good,1,winterstale,1610\ncensure,1,winterstale,1610\ncallest,1,winterstale,1610\nFour,1,winterstale,1610\nincur,1,winterstale,1610\ncuckold's,1,winterstale,1610\nbase,1,winterstale,1610\nYou'd,1,winterstale,1610\npublic,1,winterstale,1610\nallow'd,1,winterstale,1610\nmouth'd,1,winterstale,1610\nqualify,1,winterstale,1610\nKill'd,1,winterstale,1610\nrustic,1,winterstale,1610\nfate,1,winterstale,1610\ntrumpery,1,winterstale,1610\ncock,1,winterstale,1610\nflatness,1,winterstale,1610\nparasite,1,winterstale,1610\nWednesday,1,winterstale,1610\nbank,1,winterstale,1610\nhoop,1,winterstale,1610\naunts,1,winterstale,1610\nvitae,1,winterstale,1610\ncream,1,winterstale,1610\ntame,1,winterstale,1610\ntabour,1,winterstale,1610\nprognostication,1,winterstale,1610\nOfficed,1,winterstale,1610\nlarge,1,winterstale,1610\n'flayed,1,winterstale,1610\nnamed,1,winterstale,1610\nracks,1,winterstale,1610\nredeems,1,winterstale,1610\nEach,1,winterstale,1610\nbill,1,winterstale,1610\nfare,1,winterstale,1610\ndrinks,1,winterstale,1610\nWelcome,1,winterstale,1610\nwaded,1,winterstale,1610\nmeets,1,winterstale,1610\nfavourable,1,winterstale,1610\nsoul's,1,winterstale,1610\ngallant,1,winterstale,1610\no'erwhelm,1,winterstale,1610\npredominant,1,winterstale,1610\nwinners,1,winterstale,1610\nwitchcraft,1,winterstale,1610\nkite,1,winterstale,1610\nwelcomed,1,winterstale,1610\npurblind,1,winterstale,1610\nchildness,1,winterstale,1610\njustify't,1,winterstale,1610\nfarthest,1,winterstale,1610\nPartlet,1,winterstale,1610\nwelcomes,1,winterstale,1610\nProsper,1,winterstale,1610\nCytherea's,1,winterstale,1610\ndreads,1,winterstale,1610\nFlora,1,winterstale,1610\notherwise,1,winterstale,1610\nAppear,1,winterstale,1610\ncompassed,1,winterstale,1610\nhatred,1,winterstale,1610\npuppies,1,winterstale,1610\nperish,1,winterstale,1610\nTrust,1,winterstale,1610\nWorse,1,winterstale,1610\naudacious,1,winterstale,1610\nrefresh,1,winterstale,1610\ncambrics,1,winterstale,1610\nalms,1,winterstale,1610\ngreets,1,winterstale,1610\nhomeward,1,winterstale,1610\nbeshrew,1,winterstale,1610\nopenly,1,winterstale,1610\nDeceived,1,winterstale,1610\ncreep,1,winterstale,1610\nkinsman's,1,winterstale,1610\nfrisk,1,winterstale,1610\nshook,1,winterstale,1610\npugging,1,winterstale,1610\nincident,1,winterstale,1610\ngetting,1,winterstale,1610\nswears,1,winterstale,1610\nquit,1,winterstale,1610\nshort,1,winterstale,1610\n'woe,1,winterstale,1610\nthank,1,winterstale,1610\nguiding,1,winterstale,1610\nvisiting,1,winterstale,1610\nshorn,1,winterstale,1610\nLay,1,winterstale,1610\nfertile,1,winterstale,1610\nportion,1,winterstale,1610\nhole,1,winterstale,1610\nBlemish'd,1,winterstale,1610\nDreams,1,winterstale,1610\nPedlar,1,winterstale,1610\nfirmament,1,winterstale,1610\nfrequent,1,winterstale,1610\nextraordinary,1,winterstale,1610\ngainsay,1,winterstale,1610\nconcluded,1,winterstale,1610\nsettle,1,winterstale,1610\ndevour,1,winterstale,1610\nmints,1,winterstale,1610\ndimples,1,winterstale,1610\nAlthough,1,winterstale,1610\ncarnations,1,winterstale,1610\nacre,1,winterstale,1610\ncounterfeit,1,winterstale,1610\nWho's,1,winterstale,1610\nfires,1,winterstale,1610\nloyal,1,winterstale,1610\nargument,1,winterstale,1610\ntire,1,winterstale,1610\ncondemn,1,winterstale,1610\nliver,1,winterstale,1610\nnecklace,1,winterstale,1610\nhorses,1,winterstale,1610\nWhere's,1,winterstale,1610\nfeeding,1,winterstale,1610\nwriting,1,winterstale,1610\nwondering,1,winterstale,1610\nresolution,1,winterstale,1610\nseal,1,winterstale,1610\npotion,1,winterstale,1610\nwant'st,1,winterstale,1610\nconjure,1,winterstale,1610\ninterpose,1,winterstale,1610\ngives,1,winterstale,1610\nseen't,1,winterstale,1610\nprofits,1,winterstale,1610\nbehalfs,1,winterstale,1610\ngenerations,1,winterstale,1610\ncleft,1,winterstale,1610\n'Why,1,winterstale,1610\nbawd,1,winterstale,1610\nprettily,1,winterstale,1610\nsatisfied,1,winterstale,1610\nterrors,1,winterstale,1610\nyellow,1,winterstale,1610\nmanage,1,winterstale,1610\nhung,1,winterstale,1610\nusurer's,1,winterstale,1610\nhairy,1,winterstale,1610\nhave't,1,winterstale,1610\nevident,1,winterstale,1610\napproved,1,winterstale,1610\nsear,1,winterstale,1610\nrobed,1,winterstale,1610\nhunt,1,winterstale,1610\nfourteen,1,winterstale,1610\ncook,1,winterstale,1610\nignoble,1,winterstale,1610\nlying,1,winterstale,1610\nvexation,1,winterstale,1610\ncontents,1,winterstale,1610\nheaping,1,winterstale,1610\nCalls,1,winterstale,1610\nalways,1,winterstale,1610\nrestraining,1,winterstale,1610\ncomforting,1,winterstale,1610\nsceptre's,1,winterstale,1610\nblade,1,winterstale,1610\ngossips,1,winterstale,1610\nlow,1,winterstale,1610\neyed,1,winterstale,1610\nacts,1,winterstale,1610\nShepherdess,1,winterstale,1610\nloa,1,winterstale,1610\nsect,1,winterstale,1610\nsuits,1,winterstale,1610\nnineteen,1,winterstale,1610\naught,1,winterstale,1610\nsingular,1,winterstale,1610\nmaterial,1,winterstale,1610\nfitting,1,winterstale,1610\nunkindness,1,winterstale,1610\nended,1,winterstale,1610\ndivorce,1,winterstale,1610\nnumbness,1,winterstale,1610\nlacked,1,winterstale,1610\ncondition,1,winterstale,1610\nwhoo,1,winterstale,1610\nquoifs,1,winterstale,1610\nsteep'd,1,winterstale,1610\nshapes,1,winterstale,1610\nsmutch'd,1,winterstale,1610\nTrue,1,winterstale,1610\ncote,1,winterstale,1610\ncork,1,winterstale,1610\nlunes,1,winterstale,1610\nthereon,1,winterstale,1610\nForsake,1,winterstale,1610\nmake's,1,winterstale,1610\nmake't,1,winterstale,1610\nfabric,1,winterstale,1610\nJuly's,1,winterstale,1610\nhefts,1,winterstale,1610\nneedless,1,winterstale,1610\npreferment,1,winterstale,1610\nsecrecy,1,winterstale,1610\nthrush,1,winterstale,1610\nhums,1,winterstale,1610\nmistrusted,1,winterstale,1610\nShepard,1,winterstale,1610\nWhitsun,1,winterstale,1610\ngasping,1,winterstale,1610\nreplenish'd,1,winterstale,1610\n'twill,1,winterstale,1610\navoid,1,winterstale,1610\nflaunts,1,winterstale,1610\npour,1,winterstale,1610\nheels,1,winterstale,1610\ndownright,1,winterstale,1610\nKnow,1,winterstale,1610\nThrough,1,winterstale,1610\nThings,1,winterstale,1610\nmillion,1,winterstale,1610\nwe're,1,winterstale,1610\nhours,1,winterstale,1610\nentreat,1,winterstale,1610\ngoal,1,winterstale,1610\ntradesmen,1,winterstale,1610\nstrikest,1,winterstale,1610\nirremoveable,1,winterstale,1610\nkindred,1,winterstale,1610\nglove,1,winterstale,1610\nsuffice,1,winterstale,1610\nextremes,1,winterstale,1610\nport,1,winterstale,1610\nprayer,1,winterstale,1610\ncountenances,1,winterstale,1610\ndisjunction,1,winterstale,1610\nfairly,1,winterstale,1610\naccording,1,winterstale,1610\nmirror,1,winterstale,1610\nSent,1,winterstale,1610\nexcellence,1,winterstale,1610\nsell,1,winterstale,1610\nmillions,1,winterstale,1610\ndistaffs,1,winterstale,1610\nuncertain,1,winterstale,1610\noverheard,1,winterstale,1610\nblank,1,winterstale,1610\ncases,1,winterstale,1610\nwhilst,1,winterstale,1610\nsee'st,1,winterstale,1610\nNext,1,winterstale,1610\nled,1,winterstale,1610\ntroll,1,winterstale,1610\nApollos,1,winterstale,1610\nreform'd,1,winterstale,1610\nvouchsafed,1,winterstale,1610\nroaring,1,winterstale,1610\nreputed,1,winterstale,1610\nAppear'd,1,winterstale,1610\nundo,1,winterstale,1610\nadds,1,winterstale,1610\ntalk'd,1,winterstale,1610\nbade,1,winterstale,1610\nswell,1,winterstale,1610\nremedies,1,winterstale,1610\nshoots,1,winterstale,1610\nBusiness,1,winterstale,1610\ncarriage,1,winterstale,1610\nwinters,1,winterstale,1610\nseized,1,winterstale,1610\nshipboard,1,winterstale,1610\nseason,1,winterstale,1610\nembassies,1,winterstale,1610\nstraining,1,winterstale,1610\nPrivy,1,winterstale,1610\nlastly,1,winterstale,1610\nRemain,1,winterstale,1610\nprotest,1,winterstale,1610\nheartiness,1,winterstale,1610\nseaside,1,winterstale,1610\nMarch,1,winterstale,1610\naffair,1,winterstale,1610\nCommonly,1,winterstale,1610\nMistress,1,winterstale,1610\nceremonious,1,winterstale,1610\nbolder,1,winterstale,1610\ncoin,1,winterstale,1610\nmaster's,1,winterstale,1610\npipes,1,winterstale,1610\nfairies,1,winterstale,1610\nbags,1,winterstale,1610\nnature's,1,winterstale,1610\nbrowsing,1,winterstale,1610\npair'd,1,winterstale,1610\nBred,1,winterstale,1610\nuntil,1,winterstale,1610\nimpawn'd,1,winterstale,1610\nenfoldings,1,winterstale,1610\nprincipal,1,winterstale,1610\nthread,1,winterstale,1610\nboring,1,winterstale,1610\nbrow,1,winterstale,1610\ntremor,1,winterstale,1610\nperpetuity,1,winterstale,1610\nconduit,1,winterstale,1610\nruddiness,1,winterstale,1610\nmarted,1,winterstale,1610\ninsufficience,1,winterstale,1610\neffects,1,winterstale,1610\nservants,1,winterstale,1610\nslumber,1,winterstale,1610\nsuitor,1,winterstale,1610\neat,1,winterstale,1610\nfeasting,1,winterstale,1610\nreview,1,winterstale,1610\nlays,1,winterstale,1610\nfellow'st,1,winterstale,1610\nimagination,1,winterstale,1610\nsufficiently,1,winterstale,1610\nwrite,1,winterstale,1610\nTincture,1,winterstale,1610\nwearing,1,winterstale,1610\nturtles,1,winterstale,1610\nbarr'd,1,winterstale,1610\nPlaces,1,winterstale,1610\nallied,1,winterstale,1610\nencounters,1,winterstale,1610\nsuccessful,1,winterstale,1610\nGave,1,winterstale,1610\nsuccessor,1,winterstale,1610\ntemporizer,1,winterstale,1610\nExcels,1,winterstale,1610\ncareful,1,winterstale,1610\nrevolted,1,winterstale,1610\nfuture,1,winterstale,1610\nsufficiency,1,winterstale,1610\nPreserver,1,winterstale,1610\nFive,1,winterstale,1610\nfeatly,1,winterstale,1610\nUnclasp'd,1,winterstale,1610\ngust,1,winterstale,1610\nClerk,1,winterstale,1610\nburst,1,winterstale,1610\nConcern,1,winterstale,1610\nleash,1,winterstale,1610\nthrifts,1,winterstale,1610\ndismiss'd,1,winterstale,1610\nhinged,1,winterstale,1610\ntrusted,1,winterstale,1610\nconnive,1,winterstale,1610\ntails,1,winterstale,1610\nwarlike,1,winterstale,1610\nbrooch,1,winterstale,1610\nSometime,1,winterstale,1610\npoking,1,winterstale,1610\nOppose,1,winterstale,1610\nSooth,1,winterstale,1610\nAmity,1,winterstale,1610\nounce,1,winterstale,1610\nDorcas,1,winterstale,1610\nangling,1,winterstale,1610\ngrafted,1,winterstale,1610\ntires,1,winterstale,1610\nnobody,1,winterstale,1610\nconjured,1,winterstale,1610\nswerve,1,winterstale,1610\nabuse,1,winterstale,1610\nspiritual,1,winterstale,1610\nburnt,1,winterstale,1610\nconfirmation,1,winterstale,1610\nwhip,1,winterstale,1610\nmerciful,1,winterstale,1610\nlimit,1,winterstale,1610\nforcing,1,winterstale,1610\nbody's,1,winterstale,1610\nheartily,1,winterstale,1610\nGreat,1,winterstale,1610\nfled,1,winterstale,1610\nsimplicity,1,winterstale,1610\nlips,1,winterstale,1610\nHaled,1,winterstale,1610\nreporting,1,winterstale,1610\nWotting,1,winterstale,1610\ncounts,1,winterstale,1610\nfashion,1,winterstale,1610\nsuperstitiously,1,winterstale,1610\nhastily,1,winterstale,1610\neleven,1,winterstale,1610\nransack'd,1,winterstale,1610\nacross,1,winterstale,1610\nForewarn,1,winterstale,1610\nsouthward,1,winterstale,1610\nhenceforth,1,winterstale,1610\nbellow'd,1,winterstale,1610\ntirra,1,winterstale,1610\nransomed,1,winterstale,1610\nbeguile,1,winterstale,1610\nlark,1,winterstale,1610\nmannerly,1,winterstale,1610\nscion,1,winterstale,1610\ngest,1,winterstale,1610\ntattling,1,winterstale,1610\nMarry,1,winterstale,1610\nterror,1,winterstale,1610\nlethargy,1,winterstale,1610\nRespecting,1,winterstale,1610\nflax,1,winterstale,1610\njollity,1,winterstale,1610\nplucks,1,winterstale,1610\nProduce,1,winterstale,1610\nflap,1,winterstale,1610\npreposterous,1,winterstale,1610\njustices',1,winterstale,1610\ntenderness,1,winterstale,1610\nattendants,1,winterstale,1610\nSings,1,winterstale,1610\nhighway,1,winterstale,1610\nsleeping,1,winterstale,1610\nshroud,1,winterstale,1610\ndishonour'd,1,winterstale,1610\ncontinuing,1,winterstale,1610\nLooking,1,winterstale,1610\nlozel,1,winterstale,1610\npranks,1,winterstale,1610\nbetimes,1,winterstale,1610\nsuspect,1,winterstale,1610\nProdigal,1,winterstale,1610\ncustomary,1,winterstale,1610\nrecompense,1,winterstale,1610\npeer,1,winterstale,1610\nviolation,1,winterstale,1610\ntoaze,1,winterstale,1610\nApril,1,winterstale,1610\nsword's,1,winterstale,1610\nbreaking,1,winterstale,1610\nsquire,1,winterstale,1610\nintelligent,1,winterstale,1610\ncorners,1,winterstale,1610\nappetite,1,winterstale,1610\ncounters,1,winterstale,1610\nLend,1,winterstale,1610\nCrowns,1,winterstale,1610\nentreaty,1,winterstale,1610\nfathom,1,winterstale,1610\ncompell'd,1,winterstale,1610\ncolouring,1,winterstale,1610\nJustice,1,winterstale,1610\nstopping,1,winterstale,1610\nmilliner,1,winterstale,1610\nNourish,1,winterstale,1610\nimportunate,1,winterstale,1610\no'ercharged,1,winterstale,1610\nundertaking,1,winterstale,1610\namazedness,1,winterstale,1610\nDeath,1,winterstale,1610\n'This,1,winterstale,1610\nuncurrent,1,winterstale,1610\nswooned,1,winterstale,1610\nentrance,1,winterstale,1610\nleads,1,winterstale,1610\nreply,1,winterstale,1610\ndenying,1,winterstale,1610\nrises,1,winterstale,1610\nenjoin'd,1,winterstale,1610\nhardening,1,winterstale,1610\nYou'ld,1,winterstale,1610\nemploy,1,winterstale,1610\nrespect,1,winterstale,1610\nasleep,1,winterstale,1610\ninstructions,1,winterstale,1610\nattend,1,winterstale,1610\npomander,1,winterstale,1610\nprincely,1,winterstale,1610\namazedly,1,winterstale,1610\nGracious,1,winterstale,1610\nswallow,1,winterstale,1610\nimpudence,1,winterstale,1610\nshone,1,winterstale,1610\nweigh,1,winterstale,1610\ncracking,1,winterstale,1610\nensues,1,winterstale,1610\ntod,1,winterstale,1610\nsudden,1,winterstale,1610\nTogether,1,winterstale,1610\nha's,1,winterstale,1610\nturtle,1,winterstale,1610\nthriving,1,winterstale,1610\nbusinesses,1,winterstale,1610\nbonfires,1,winterstale,1610\ndispatch,1,winterstale,1610\ntop,1,winterstale,1610\nunparallel'd,1,winterstale,1610\ngreat'st,1,winterstale,1610\nplucking,1,winterstale,1610\nbegotten,1,winterstale,1610\nswallowed,1,winterstale,1610\nexultation,1,winterstale,1610\nliest,1,winterstale,1610\nblossoms,1,winterstale,1610\ncouples,1,winterstale,1610\nmonths,1,winterstale,1610\nBring,1,winterstale,1610\nmature,1,winterstale,1610\nDRAMATIS,1,winterstale,1610\nPeering,1,winterstale,1610\nhandsomely,1,winterstale,1610\ngarlic,1,winterstale,1610\nvenom,1,winterstale,1610\ntie,1,winterstale,1610\ngallimaufry,1,winterstale,1610\nheirless,1,winterstale,1610\nphysician,1,winterstale,1610\ndibble,1,winterstale,1610\nboors,1,winterstale,1610\nprerogative,1,winterstale,1610\nPhysic,1,winterstale,1610\nvex'd,1,winterstale,1610\nflower,1,winterstale,1610\nDesires,1,winterstale,1610\ngazed,1,winterstale,1610\npass'd,1,winterstale,1610\ndamn,1,winterstale,1610\ndivides,1,winterstale,1610\nflown,1,winterstale,1610\nbargain,1,winterstale,1610\nLeft,1,winterstale,1610\ncozened,1,winterstale,1610\ntired,1,winterstale,1610\nhe'ld,1,winterstale,1610\nboasts,1,winterstale,1610\nAffection,1,winterstale,1610\nTale,1,winterstale,1610\ncabin,1,winterstale,1610\nbudget,1,winterstale,1610\ngorge,1,winterstale,1610\ndew,1,winterstale,1610\ndale,1,winterstale,1610\ngentler,1,winterstale,1610\nMasks,1,winterstale,1610\ndwelling,1,winterstale,1610\npastorals,1,winterstale,1610\nProsperity's,1,winterstale,1610\nbespice,1,winterstale,1610\nboundless,1,winterstale,1610\nreconcile,1,winterstale,1610\njealousy,1,winterstale,1610\nslip,1,winterstale,1610\nsquier,1,winterstale,1610\ntake't,1,winterstale,1610\npronounce,1,winterstale,1610\ntoads,1,winterstale,1610\nsay't,1,winterstale,1610\nrounds,1,winterstale,1610\njustly,1,winterstale,1610\ndone't,1,winterstale,1610\ncharity,1,winterstale,1610\nFalse,1,winterstale,1610\nHonest,1,winterstale,1610\npunishes,1,winterstale,1610\nrepair,1,winterstale,1610\nstables,1,winterstale,1610\n'mongst,1,winterstale,1610\nbreathe,1,winterstale,1610\ncozeners,1,winterstale,1610\nwombs,1,winterstale,1610\nkiln,1,winterstale,1610\nbeverage,1,winterstale,1610\nbide,1,winterstale,1610\ndoctrine,1,winterstale,1610\nprivately,1,winterstale,1610\ndirection,1,winterstale,1610\ncrows,1,winterstale,1610\norder,1,winterstale,1610\njelly,1,winterstale,1610\ngazes,1,winterstale,1610\nnostril,1,winterstale,1610\nconjecture,1,winterstale,1610\ndirecting,1,winterstale,1610\nrequisite,1,winterstale,1610\ncoactive,1,winterstale,1610\npunished,1,winterstale,1610\ndegrees,1,winterstale,1610\ncordis,1,winterstale,1610\nremembered,1,winterstale,1610\ndistinguishment,1,winterstale,1610\ninterpreters,1,winterstale,1610\ninsinuate,1,winterstale,1610\nTug,1,winterstale,1610\nbrave,2,winterstale,1610\nholding,2,winterstale,1610\nfeel't,2,winterstale,1610\nmeet,2,winterstale,1610\nforbid,2,winterstale,1610\ninstruments,2,winterstale,1610\nadvised,2,winterstale,1610\ngrew,2,winterstale,1610\nProve,2,winterstale,1610\nsmiles,2,winterstale,1610\nadvice,2,winterstale,1610\nextremity,2,winterstale,1610\ndrop,2,winterstale,1610\ninfant,2,winterstale,1610\ninfected,2,winterstale,1610\nmotion,2,winterstale,1610\ndouble,2,winterstale,1610\nnecessities,2,winterstale,1610\ndream'd,2,winterstale,1610\nweary,2,winterstale,1610\nspectators,2,winterstale,1610\nwoman's,2,winterstale,1610\nFie,2,winterstale,1610\nwicked,2,winterstale,1610\nram,2,winterstale,1610\npeace,2,winterstale,1610\nlawful,2,winterstale,1610\nbones,2,winterstale,1610\npurge,2,winterstale,1610\nmend,2,winterstale,1610\nscene,2,winterstale,1610\nhighness',2,winterstale,1610\nproclaim'd,2,winterstale,1610\nboys,2,winterstale,1610\njot,2,winterstale,1610\nwhereupon,2,winterstale,1610\nthorns,2,winterstale,1610\nNeptune,2,winterstale,1610\ncontract,2,winterstale,1610\nBecame,2,winterstale,1610\ntrunk,2,winterstale,1610\nvain,2,winterstale,1610\ndisease,2,winterstale,1610\nprosperous,2,winterstale,1610\ninstrument,2,winterstale,1610\nwhipped,2,winterstale,1610\nrid,2,winterstale,1610\nlooked,2,winterstale,1610\nsuccession,2,winterstale,1610\nfury,2,winterstale,1610\ndeclined,2,winterstale,1610\nEre,2,winterstale,1610\n'she's,2,winterstale,1610\nwithal,2,winterstale,1610\ncheat,2,winterstale,1610\nribbons,2,winterstale,1610\nthou'lt,2,winterstale,1610\nGolden,2,winterstale,1610\ntyrannous,2,winterstale,1610\ngoest,2,winterstale,1610\nproclaim,2,winterstale,1610\nboy's,2,winterstale,1610\nspare,2,winterstale,1610\nprig,2,winterstale,1610\ngillyvors,2,winterstale,1610\nhelped,2,winterstale,1610\nsoon,2,winterstale,1610\nbirth,2,winterstale,1610\nslept,2,winterstale,1610\nmatters,2,winterstale,1610\noutside,2,winterstale,1610\nJove,2,winterstale,1610\ncircumstance,2,winterstale,1610\nsorrows,2,winterstale,1610\nthou'rt,2,winterstale,1610\ncorse,2,winterstale,1610\nRemember,2,winterstale,1610\nconcerns,2,winterstale,1610\nhearing,2,winterstale,1610\ncupbearer,2,winterstale,1610\nmadness,2,winterstale,1610\nmaking,2,winterstale,1610\nnoise,2,winterstale,1610\ntoys,2,winterstale,1610\npurity,2,winterstale,1610\nlesser,2,winterstale,1610\nThoughts,2,winterstale,1610\nbegan,2,winterstale,1610\nkin,2,winterstale,1610\ncoldly,2,winterstale,1610\npartner,2,winterstale,1610\nblack,2,winterstale,1610\nadmiring,2,winterstale,1610\nGentle,2,winterstale,1610\nPerchance,2,winterstale,1610\nexecution,2,winterstale,1610\nTwenty,2,winterstale,1610\nsung,2,winterstale,1610\nsin,2,winterstale,1610\nGet,2,winterstale,1610\nlight,2,winterstale,1610\nages,2,winterstale,1610\nsweet'st,2,winterstale,1610\ntooth,2,winterstale,1610\nsaying,2,winterstale,1610\ndeceived,2,winterstale,1610\nDo't,2,winterstale,1610\nsociety,2,winterstale,1610\nlanded,2,winterstale,1610\nshearers,2,winterstale,1610\nnine,2,winterstale,1610\nperil,2,winterstale,1610\nstealing,2,winterstale,1610\nskill,2,winterstale,1610\nlooking,2,winterstale,1610\nallowing,2,winterstale,1610\nsquared,2,winterstale,1610\nbeloved,2,winterstale,1610\npitiful,2,winterstale,1610\nlevel,2,winterstale,1610\ninstruct,2,winterstale,1610\nsprites,2,winterstale,1610\nsavour,2,winterstale,1610\nrear,2,winterstale,1610\nbarne,2,winterstale,1610\naccursed,2,winterstale,1610\nwrong,2,winterstale,1610\nsnow,2,winterstale,1610\nreceives,2,winterstale,1610\nconceit,2,winterstale,1610\nbrain,2,winterstale,1610\nCommit,2,winterstale,1610\ntwelve,2,winterstale,1610\nguarded,2,winterstale,1610\ncommon,2,winterstale,1610\ngive't,2,winterstale,1610\ncalumny,2,winterstale,1610\nlucky,2,winterstale,1610\nWherein,2,winterstale,1610\nprinces,2,winterstale,1610\nabove,2,winterstale,1610\ngirls,2,winterstale,1610\nplainly,2,winterstale,1610\ngrow,2,winterstale,1610\ndescend,2,winterstale,1610\neyebrows,2,winterstale,1610\nsword,2,winterstale,1610\nancient,2,winterstale,1610\nwhisper,2,winterstale,1610\nOld,2,winterstale,1610\nwink,2,winterstale,1610\nHence,2,winterstale,1610\nknees,2,winterstale,1610\nsteal,2,winterstale,1610\nwipe,2,winterstale,1610\nhated,2,winterstale,1610\nwitnesses,2,winterstale,1610\ndied,2,winterstale,1610\naccuse,2,winterstale,1610\nsense,2,winterstale,1610\nbeating,2,winterstale,1610\nrule,2,winterstale,1610\ncircumstances,2,winterstale,1610\nsteel,2,winterstale,1610\ndear'st,2,winterstale,1610\nbook,2,winterstale,1610\nparts,2,winterstale,1610\nFollow,2,winterstale,1610\npraises,2,winterstale,1610\ndistraction,2,winterstale,1610\nintelligence,2,winterstale,1610\nopening,2,winterstale,1610\nha',2,winterstale,1610\nverily,2,winterstale,1610\nbastards,2,winterstale,1610\nkeys,2,winterstale,1610\nHold,2,winterstale,1610\nhat,2,winterstale,1610\nplanet,2,winterstale,1610\nWhile,2,winterstale,1610\nclimate,2,winterstale,1610\nWhat's,2,winterstale,1610\nscared,2,winterstale,1610\nmeasure,2,winterstale,1610\nexercise,2,winterstale,1610\nunsettled,2,winterstale,1610\nbox,2,winterstale,1610\nblows,2,winterstale,1610\nWhiles,2,winterstale,1610\namong,2,winterstale,1610\nbad,2,winterstale,1610\nNature,2,winterstale,1610\nperformed,2,winterstale,1610\nStand,2,winterstale,1610\ncruel,2,winterstale,1610\nin's,2,winterstale,1610\nshines,2,winterstale,1610\nto's,2,winterstale,1610\nwisdom,2,winterstale,1610\nHa,2,winterstale,1610\npiteous,2,winterstale,1610\npleasure,2,winterstale,1610\nrequires,2,winterstale,1610\nquick,2,winterstale,1610\ndespair,2,winterstale,1610\nsport,2,winterstale,1610\nnoses,2,winterstale,1610\npin,2,winterstale,1610\nchanges,2,winterstale,1610\nIs't,2,winterstale,1610\nmonstrous,2,winterstale,1610\nbecame,2,winterstale,1610\ntemple,2,winterstale,1610\nobey,2,winterstale,1610\nchangeling,2,winterstale,1610\nAdieu,2,winterstale,1610\nCamillo's,2,winterstale,1610\nShepherd's,2,winterstale,1610\nForce,2,winterstale,1610\nweek,2,winterstale,1610\nabsent,2,winterstale,1610\nmankind,2,winterstale,1610\nwas't,2,winterstale,1610\npreserved,2,winterstale,1610\nsooner,2,winterstale,1610\nbury,2,winterstale,1610\ndifference,2,winterstale,1610\nkindness,2,winterstale,1610\nYourself,2,winterstale,1610\npetition,2,winterstale,1610\nimperial,2,winterstale,1610\nBehold,2,winterstale,1610\njealous,2,winterstale,1610\nLift,2,winterstale,1610\nDidst,2,winterstale,1610\neaten,2,winterstale,1610\ntheme,2,winterstale,1610\nfriendly,2,winterstale,1610\nroyally,2,winterstale,1610\ncurse,2,winterstale,1610\nvows,2,winterstale,1610\namongst,2,winterstale,1610\nroared,2,winterstale,1610\nused,2,winterstale,1610\nAbout,2,winterstale,1610\nstronger,2,winterstale,1610\nWhither,2,winterstale,1610\nlamented,2,winterstale,1610\nhopeful,2,winterstale,1610\nBoth,2,winterstale,1610\nquite,2,winterstale,1610\nMopsa,2,winterstale,1610\nghost,2,winterstale,1610\nstorm,2,winterstale,1610\ndeep,2,winterstale,1610\nforgive,2,winterstale,1610\nwretch,2,winterstale,1610\nimage,2,winterstale,1610\nbetray,2,winterstale,1610\nha,2,winterstale,1610\nmagic,2,winterstale,1610\nclear'd,2,winterstale,1610\naid,2,winterstale,1610\nrepent,2,winterstale,1610\nstood,2,winterstale,1610\nago,2,winterstale,1610\nUnless,2,winterstale,1610\ndeal,2,winterstale,1610\nseeing,2,winterstale,1610\nco,2,winterstale,1610\nliars,2,winterstale,1610\nay,2,winterstale,1610\nyields,2,winterstale,1610\ngentlewoman,2,winterstale,1610\nnewly,2,winterstale,1610\nattending,2,winterstale,1610\nthreaten,2,winterstale,1610\nConceiving,2,winterstale,1610\nlo,2,winterstale,1610\nnecessity,2,winterstale,1610\nbetween's,2,winterstale,1610\nquarters,2,winterstale,1610\naccount,2,winterstale,1610\nReads,2,winterstale,1610\nproduce,2,winterstale,1610\nmingle,2,winterstale,1610\noffences,2,winterstale,1610\npursued,2,winterstale,1610\nYea,2,winterstale,1610\nalteration,2,winterstale,1610\npheasant,2,winterstale,1610\nYes,2,winterstale,1610\nho,2,winterstale,1610\nspent,2,winterstale,1610\napparel,2,winterstale,1610\nnecessary,2,winterstale,1610\nready,2,winterstale,1610\nshow'd,2,winterstale,1610\nforgot,2,winterstale,1610\nserious,2,winterstale,1610\nacquaint,2,winterstale,1610\npure,2,winterstale,1610\nmen's,2,winterstale,1610\nBeen,2,winterstale,1610\nwisest,2,winterstale,1610\nthrice,2,winterstale,1610\nrobbed,2,winterstale,1610\nplot,2,winterstale,1610\nability,2,winterstale,1610\nBreak,2,winterstale,1610\nreasonable,2,winterstale,1610\ncrutches,2,winterstale,1610\nemploy'd,2,winterstale,1610\nnatural,2,winterstale,1610\nHappy,2,winterstale,1610\nacknowledge,2,winterstale,1610\nhang,2,winterstale,1610\ndeny,2,winterstale,1610\nfoul,2,winterstale,1610\ndrawn,2,winterstale,1610\nperpetual,2,winterstale,1610\ncity,2,winterstale,1610\ndeaths,2,winterstale,1610\narm,2,winterstale,1610\nform,2,winterstale,1610\nkingdoms,2,winterstale,1610\nCommend,2,winterstale,1610\nape,2,winterstale,1610\nmock,2,winterstale,1610\nfrown,2,winterstale,1610\npace,2,winterstale,1610\ncombat,2,winterstale,1610\nimportance,2,winterstale,1610\nrevenge,2,winterstale,1610\ntestimony,2,winterstale,1610\nmayst,2,winterstale,1610\nnearest,2,winterstale,1610\nHast,2,winterstale,1610\nopen't,2,winterstale,1610\ntheirs,2,winterstale,1610\nfew,2,winterstale,1610\ntrial,2,winterstale,1610\nArt,2,winterstale,1610\nguess,2,winterstale,1610\nhere's,2,winterstale,1610\nmoves,2,winterstale,1610\nlead,2,winterstale,1610\nspoken,2,winterstale,1610\nInto,2,winterstale,1610\nexecute,2,winterstale,1610\nluck,2,winterstale,1610\nlean,2,winterstale,1610\ndelicate,2,winterstale,1610\noccasion,2,winterstale,1610\ntried,2,winterstale,1610\nproofs,2,winterstale,1610\nMadam,2,winterstale,1610\nBecome,2,winterstale,1610\ninside,2,winterstale,1610\nhoney,2,winterstale,1610\nAgainst,2,winterstale,1610\nasks,2,winterstale,1610\nshouldst,2,winterstale,1610\nsession,2,winterstale,1610\nsilence,2,winterstale,1610\nfinest,2,winterstale,1610\nretired,2,winterstale,1610\nthinks,2,winterstale,1610\nproceed,2,winterstale,1610\ndoleful,2,winterstale,1610\n'Whoop,2,winterstale,1610\nremedy,2,winterstale,1610\nAlack,2,winterstale,1610\npastime,2,winterstale,1610\nvisage,2,winterstale,1610\ngarden,2,winterstale,1610\nshores,2,winterstale,1610\nparting,2,winterstale,1610\nmisery,2,winterstale,1610\nTherefore,2,winterstale,1610\ndares,2,winterstale,1610\neggs,2,winterstale,1610\nseveral,2,winterstale,1610\nfreely,2,winterstale,1610\nleaving,2,winterstale,1610\nlikewise,2,winterstale,1610\ntowards,2,winterstale,1610\nmilk,2,winterstale,1610\nfares,2,winterstale,1610\nescape,2,winterstale,1610\nmerrily,2,winterstale,1610\nprocess,2,winterstale,1610\nbloody,2,winterstale,1610\n'gainst,2,winterstale,1610\nCould,2,winterstale,1610\ndearest,2,winterstale,1610\npresently,2,winterstale,1610\nthick,2,winterstale,1610\nSon,2,winterstale,1610\nungentle,2,winterstale,1610\ninch,2,winterstale,1610\ngates,2,winterstale,1610\nlabour,2,winterstale,1610\nmiss,2,winterstale,1610\nseal'd,2,winterstale,1610\nhigher,2,winterstale,1610\nblacker,2,winterstale,1610\napart,2,winterstale,1610\ndoubted,2,winterstale,1610\nmarvel,2,winterstale,1610\nlosing,2,winterstale,1610\nHowe'er,2,winterstale,1610\ntaste,2,winterstale,1610\npassage,2,winterstale,1610\nAutolycus,2,winterstale,1610\ndaffodils,2,winterstale,1610\nbracelet,2,winterstale,1610\nexample,2,winterstale,1610\nflies,2,winterstale,1610\nunderstanding,2,winterstale,1610\nentreaties,2,winterstale,1610\nwit,2,winterstale,1610\nsides,2,winterstale,1610\n'not,2,winterstale,1610\ncross'd,2,winterstale,1610\nfetch,2,winterstale,1610\nherds,2,winterstale,1610\nallegiance,2,winterstale,1610\nsessions,2,winterstale,1610\nnegligence,2,winterstale,1610\nyou're,2,winterstale,1610\nintegrity,2,winterstale,1610\ncertainly,2,winterstale,1610\ntorture,2,winterstale,1610\ncrown'd,2,winterstale,1610\nThus,2,winterstale,1610\nLibya,2,winterstale,1610\nheavy,2,winterstale,1610\nblasts,2,winterstale,1610\nduty,2,winterstale,1610\nable,2,winterstale,1610\nnuptial,2,winterstale,1610\nchants,2,winterstale,1610\nforward,2,winterstale,1610\nwanton,2,winterstale,1610\nrags,2,winterstale,1610\ndying,2,winterstale,1610\nThree,2,winterstale,1610\nwalk'd,2,winterstale,1610\nbounty,2,winterstale,1610\nhair,2,winterstale,1610\nfix'd,2,winterstale,1610\nbaseness,2,winterstale,1610\nconference,2,winterstale,1610\nrotten,2,winterstale,1610\npoison,2,winterstale,1610\ncharged,2,winterstale,1610\nanger,2,winterstale,1610\ndisposition,2,winterstale,1610\nnest,2,winterstale,1610\nwhistle,2,winterstale,1610\nwent,2,winterstale,1610\nstirs,2,winterstale,1610\nfollowers,2,winterstale,1610\nfill'd,2,winterstale,1610\ngifts,2,winterstale,1610\nglad,2,winterstale,1610\nminister,2,winterstale,1610\nevil,2,winterstale,1610\nSwear,2,winterstale,1610\ndurst,2,winterstale,1610\nassisted,2,winterstale,1610\npedlar,2,winterstale,1610\ncharacter,2,winterstale,1610\ndesert,2,winterstale,1610\nProceed,2,winterstale,1610\nwert,2,winterstale,1610\nrace,2,winterstale,1610\npleased,2,winterstale,1610\ndiscover,2,winterstale,1610\ncolours,2,winterstale,1610\nfly,2,winterstale,1610\ncompany,2,winterstale,1610\nfie,2,winterstale,1610\nallow,2,winterstale,1610\noffices,2,winterstale,1610\nperfect,2,winterstale,1610\nfine,2,winterstale,1610\nvow,2,winterstale,1610\nrice,2,winterstale,1610\nfill,2,winterstale,1610\nsafety,2,winterstale,1610\nLead,2,winterstale,1610\nanswer'd,2,winterstale,1610\nta'en,2,winterstale,1610\nwide,2,winterstale,1610\npocket,2,winterstale,1610\npartly,2,winterstale,1610\nappointed,2,winterstale,1610\nfriendship,2,winterstale,1610\nhook,2,winterstale,1610\nweakness,2,winterstale,1610\nnames,2,winterstale,1610\nfast,2,winterstale,1610\nfreshest,2,winterstale,1610\nflock,2,winterstale,1610\nofficious,2,winterstale,1610\ncomplaint,2,winterstale,1610\ncoat,2,winterstale,1610\nconstant,2,winterstale,1610\nman's,2,winterstale,1610\ncup,2,winterstale,1610\ncarry,2,winterstale,1610\nwild,2,winterstale,1610\nholds,2,winterstale,1610\ntape,2,winterstale,1610\ngreet,2,winterstale,1610\nfeasts,2,winterstale,1610\nspices,2,winterstale,1610\npeerless,2,winterstale,1610\narrive,2,winterstale,1610\nstrong,2,winterstale,1610\nWherefore,2,winterstale,1610\ncounsels,2,winterstale,1610\nfalsehood,2,winterstale,1610\nShepherds,2,winterstale,1610\nalso,2,winterstale,1610\nrobes,2,winterstale,1610\nalong,2,winterstale,1610\ncommission,2,winterstale,1610\nalone,2,winterstale,1610\ncopy,2,winterstale,1610\nwaiting,2,winterstale,1610\ncaptain,2,winterstale,1610\nkingdom,2,winterstale,1610\nneedful,2,winterstale,1610\nbaby,2,winterstale,1610\ntroth,2,winterstale,1610\nfeeling,2,winterstale,1610\nsouth,2,winterstale,1610\nvessel,2,winterstale,1610\nliking,2,winterstale,1610\nMine,2,winterstale,1610\nfellows,2,winterstale,1610\nprophecy,2,winterstale,1610\nsound,2,winterstale,1610\nthrust,2,winterstale,1610\nGentlemen,2,winterstale,1610\nusage,2,winterstale,1610\nHe'll,2,winterstale,1610\ncasting,2,winterstale,1610\nlovest,2,winterstale,1610\ntied,2,winterstale,1610\nremove,2,winterstale,1610\nsouls,2,winterstale,1610\nbeheld,2,winterstale,1610\nbelieved,2,winterstale,1610\nCry,2,winterstale,1610\nChorus,2,winterstale,1610\npost,2,winterstale,1610\nNeither,2,winterstale,1610\nremote,2,winterstale,1610\nsent,2,winterstale,1610\nnurse,2,winterstale,1610\nchose,2,winterstale,1610\nbarren,2,winterstale,1610\nmatch,2,winterstale,1610\nmethought,2,winterstale,1610\nsafer,2,winterstale,1610\nunspeakable,2,winterstale,1610\nsheets,2,winterstale,1610\nTwo,2,winterstale,1610\nspider,2,winterstale,1610\npetty,2,winterstale,1610\nmar,2,winterstale,1610\nalter'd,2,winterstale,1610\nthrees,2,winterstale,1610\nafeard,2,winterstale,1610\n'scape,2,winterstale,1610\ncommitting,2,winterstale,1610\nseldom,2,winterstale,1610\nvices,2,winterstale,1610\nbegins,2,winterstale,1610\nDoes,2,winterstale,1610\ngeld,2,winterstale,1610\nBohemia's,2,winterstale,1610\nevils,2,winterstale,1610\nburns,2,winterstale,1610\npleasant,2,winterstale,1610\nmocked,2,winterstale,1610\nquestion'd,2,winterstale,1610\non's,2,winterstale,1610\nappearing,2,winterstale,1610\nlass,2,winterstale,1610\nfulfilled,2,winterstale,1610\nrevenges,2,winterstale,1610\nfasting,2,winterstale,1610\nfright,2,winterstale,1610\nlist,2,winterstale,1610\nhuman,2,winterstale,1610\njustified,2,winterstale,1610\ncordial,2,winterstale,1610\nfollow'd,2,winterstale,1610\ntransported,2,winterstale,1610\nwildly,2,winterstale,1610\nsilent,2,winterstale,1610\nforgiveness,2,winterstale,1610\nspring,2,winterstale,1610\ndash,2,winterstale,1610\npattern,2,winterstale,1610\ncentre,2,winterstale,1610\nbrat,2,winterstale,1610\nwith't,2,winterstale,1610\nLess,2,winterstale,1610\nframe,2,winterstale,1610\ndue,2,winterstale,1610\nmiseries,2,winterstale,1610\nfifteen,2,winterstale,1610\nUntil,2,winterstale,1610\nsuccess,2,winterstale,1610\nshake,2,winterstale,1610\nundergo,2,winterstale,1610\nThereof,2,winterstale,1610\ndame,2,winterstale,1610\ntempt,2,winterstale,1610\nobedient,2,winterstale,1610\nhe'll,2,winterstale,1610\nwills,2,winterstale,1610\ngreatness,2,winterstale,1610\nwenches,2,winterstale,1610\nkill,2,winterstale,1610\nforbear,2,winterstale,1610\nobedience,2,winterstale,1610\noaths,2,winterstale,1610\nbids,2,winterstale,1610\nhangman,2,winterstale,1610\nundertake,2,winterstale,1610\ndim,2,winterstale,1610\nships,2,winterstale,1610\npedlar's,2,winterstale,1610\nhedge,2,winterstale,1610\ndaughters,2,winterstale,1610\nV,3,winterstale,1610\ntimes,3,winterstale,1610\nred,3,winterstale,1610\nfancy,3,winterstale,1610\nwears,3,winterstale,1610\nwish'd,3,winterstale,1610\npossible,3,winterstale,1610\nAlas,3,winterstale,1610\nalike,3,winterstale,1610\nexpress,3,winterstale,1610\nheld,3,winterstale,1610\nmoiety,3,winterstale,1610\ntruly,3,winterstale,1610\nMust,3,winterstale,1610\nviolent,3,winterstale,1610\nmere,3,winterstale,1610\nEither,3,winterstale,1610\nerrand,3,winterstale,1610\nunderstand,3,winterstale,1610\nVerily,3,winterstale,1610\nadvocate,3,winterstale,1610\nrun,3,winterstale,1610\nOnce,3,winterstale,1610\nstrength,3,winterstale,1610\nseven,3,winterstale,1610\ncounted,3,winterstale,1610\nconscience,3,winterstale,1610\nthousands,3,winterstale,1610\nbearing,3,winterstale,1610\ndram,3,winterstale,1610\nbroken,3,winterstale,1610\nboldness,3,winterstale,1610\nplight,3,winterstale,1610\ncalf,3,winterstale,1610\nsoft,3,winterstale,1610\nblessed,3,winterstale,1610\nvisitation,3,winterstale,1610\nsit,3,winterstale,1610\nconceive,3,winterstale,1610\nbody,3,winterstale,1610\nwalk,3,winterstale,1610\n'twas,3,winterstale,1610\nwinds,3,winterstale,1610\nFarewell,3,winterstale,1610\ncountenance,3,winterstale,1610\nTheir,3,winterstale,1610\ndesign,3,winterstale,1610\nsecond,3,winterstale,1610\nmiddle,3,winterstale,1610\nsky,3,winterstale,1610\nMusic,3,winterstale,1610\nfaults,3,winterstale,1610\nplay'd,3,winterstale,1610\ndaughter's,3,winterstale,1610\nourselves,3,winterstale,1610\nfight,3,winterstale,1610\nreceived,3,winterstale,1610\ndances,3,winterstale,1610\nprofess,3,winterstale,1610\nMamillius,3,winterstale,1610\nTurn,3,winterstale,1610\nactions,3,winterstale,1610\nrelation,3,winterstale,1610\nLeave,3,winterstale,1610\nfearful,3,winterstale,1610\nupon't,3,winterstale,1610\nlanguage,3,winterstale,1610\nnegligent,3,winterstale,1610\nMight,3,winterstale,1610\nmirth,3,winterstale,1610\naccess,3,winterstale,1610\nwish,3,winterstale,1610\ncustom,3,winterstale,1610\nmurder,3,winterstale,1610\nsooth,3,winterstale,1610\nbidding,3,winterstale,1610\nwarm,3,winterstale,1610\nShepherdesses,3,winterstale,1610\ndeserves,3,winterstale,1610\nfairest,3,winterstale,1610\ngoddess,3,winterstale,1610\nhe's,3,winterstale,1610\nbitter,3,winterstale,1610\nbig,3,winterstale,1610\nmanners,3,winterstale,1610\nutter,3,winterstale,1610\ninfection,3,winterstale,1610\nAn,3,winterstale,1610\nchaste,3,winterstale,1610\ndeeds,3,winterstale,1610\nhopes,3,winterstale,1610\nproof,3,winterstale,1610\ncanst,3,winterstale,1610\nstar,3,winterstale,1610\nforce,3,winterstale,1610\npawn,3,winterstale,1610\nrequired,3,winterstale,1610\nbeg,3,winterstale,1610\nwhole,3,winterstale,1610\nbless,3,winterstale,1610\ndeserved,3,winterstale,1610\nconsidered,3,winterstale,1610\nadulteress,3,winterstale,1610\nyourselves,3,winterstale,1610\nweep,3,winterstale,1610\nDion,3,winterstale,1610\ngot,3,winterstale,1610\nhomely,3,winterstale,1610\nweak,3,winterstale,1610\nwear,3,winterstale,1610\nswift,3,winterstale,1610\ndivine,3,winterstale,1610\npicture,3,winterstale,1610\nnoted,3,winterstale,1610\nconfess,3,winterstale,1610\nsatisfy,3,winterstale,1610\nembraces,3,winterstale,1610\nconsider,3,winterstale,1610\nbeat,3,winterstale,1610\nneeds,3,winterstale,1610\ntongues,3,winterstale,1610\ndignity,3,winterstale,1610\npriest,3,winterstale,1610\nBesides,3,winterstale,1610\nseeming,3,winterstale,1610\naccused,3,winterstale,1610\nlady's,3,winterstale,1610\nappeared,3,winterstale,1610\nforget,3,winterstale,1610\nknow't,3,winterstale,1610\nwhereof,3,winterstale,1610\nMyself,3,winterstale,1610\ntrain,3,winterstale,1610\nsettled,3,winterstale,1610\nServants,3,winterstale,1610\nremoved,3,winterstale,1610\nGrace,3,winterstale,1610\nact,3,winterstale,1610\ngreater,3,winterstale,1610\nchoice,3,winterstale,1610\ntenderly,3,winterstale,1610\neasy,3,winterstale,1610\nhard,3,winterstale,1610\npale,3,winterstale,1610\nperform'd,3,winterstale,1610\nspur,3,winterstale,1610\nnobleness,3,winterstale,1610\nplain,3,winterstale,1610\nmighty,3,winterstale,1610\npraise,3,winterstale,1610\npluck,3,winterstale,1610\nShe's,3,winterstale,1610\npair,3,winterstale,1610\npack,3,winterstale,1610\ntyranny,3,winterstale,1610\nfond,3,winterstale,1610\nye,3,winterstale,1610\nsecret,3,winterstale,1610\ntrick,3,winterstale,1610\nundone,3,winterstale,1610\nnew,3,winterstale,1610\nposterns,3,winterstale,1610\ncondemn'd,3,winterstale,1610\nflayed,3,winterstale,1610\nclamour,3,winterstale,1610\nentertainment,3,winterstale,1610\nbears,3,winterstale,1610\nbeard,3,winterstale,1610\nestate,3,winterstale,1610\nours,3,winterstale,1610\nyear,3,winterstale,1610\nmock'd,3,winterstale,1610\nchase,3,winterstale,1610\nyou'ld,3,winterstale,1610\nunhappy,3,winterstale,1610\nmouth,3,winterstale,1610\nbe't,3,winterstale,1610\npowers,3,winterstale,1610\nDost,3,winterstale,1610\nreigns,3,winterstale,1610\nmile,3,winterstale,1610\nstars,3,winterstale,1610\nfoolish,3,winterstale,1610\nblush,3,winterstale,1610\ndidst,3,winterstale,1610\ndream,3,winterstale,1610\nAny,3,winterstale,1610\nDelphos,3,winterstale,1610\nquench,3,winterstale,1610\nbecause,3,winterstale,1610\nbrains,3,winterstale,1610\nballads,3,winterstale,1610\nshoulder,3,winterstale,1610\nbenefit,3,winterstale,1610\nfish,3,winterstale,1610\nwhispering,3,winterstale,1610\naccusation,3,winterstale,1610\nBeing,3,winterstale,1610\nletters,3,winterstale,1610\ndesires,3,winterstale,1610\nstain,3,winterstale,1610\nbreed,3,winterstale,1610\nsame,3,winterstale,1610\nopinion,3,winterstale,1610\nformer,3,winterstale,1610\nfive,3,winterstale,1610\noft,3,winterstale,1610\nsays,3,winterstale,1610\nthird,3,winterstale,1610\nmorrow,3,winterstale,1610\ngap,3,winterstale,1610\nburthen,3,winterstale,1610\ntunes,3,winterstale,1610\nearnest,3,winterstale,1610\nWorthy,3,winterstale,1610\nreceive,3,winterstale,1610\ncommanded,3,winterstale,1610\ngrowing,3,winterstale,1610\nprint,3,winterstale,1610\ndanger,3,winterstale,1610\nserve,3,winterstale,1610\ncoming,3,winterstale,1610\nhappy,3,winterstale,1610\nfaces,3,winterstale,1610\npenitent,3,winterstale,1610\nserved,3,winterstale,1610\nweeping,3,winterstale,1610\nwife's,3,winterstale,1610\nwaters,3,winterstale,1610\nfarther,3,winterstale,1610\nangry,3,winterstale,1610\nfail,3,winterstale,1610\ncontempt,3,winterstale,1610\ntable,3,winterstale,1610\ngrieve,3,winterstale,1610\nwept,3,winterstale,1610\n'fore,3,winterstale,1610\ngrant,3,winterstale,1610\nmethinks,3,winterstale,1610\npassion,3,winterstale,1610\ncontinue,3,winterstale,1610\nparticular,3,winterstale,1610\nhorn,3,winterstale,1610\nbark,3,winterstale,1610\nherself,3,winterstale,1610\ndepart,3,winterstale,1610\nwives,3,winterstale,1610\ndeliver'd,3,winterstale,1610\ndam,3,winterstale,1610\nsongs,3,winterstale,1610\ndeparture,3,winterstale,1610\naffliction,3,winterstale,1610\nsights,3,winterstale,1610\nshore,3,winterstale,1610\naccident,3,winterstale,1610\nchapel,3,winterstale,1610\nNone,3,winterstale,1610\ndangerous,3,winterstale,1610\nunto,3,winterstale,1610\nlives,3,winterstale,1610\nvirtues,3,winterstale,1610\nhearts,3,winterstale,1610\nthereto,3,winterstale,1610\ntrespass,3,winterstale,1610\nsees,3,winterstale,1610\ntells,3,winterstale,1610\nBelieve,3,winterstale,1610\ntraitor,3,winterstale,1610\nsend,3,winterstale,1610\nmother's,3,winterstale,1610\nalas,3,winterstale,1610\ncold,3,winterstale,1610\ncouple,3,winterstale,1610\nmad,3,winterstale,1610\nspirits,3,winterstale,1610\nabroad,3,winterstale,1610\nhostess,3,winterstale,1610\nforced,3,winterstale,1610\ndread,3,winterstale,1610\nstraight,3,winterstale,1610\nremember,3,winterstale,1610\nBefore,3,winterstale,1610\nsometimes,3,winterstale,1610\nvirtue,3,winterstale,1610\nseemed,3,winterstale,1610\nbesides,3,winterstale,1610\nmoe,3,winterstale,1610\ntry,3,winterstale,1610\nsimple,3,winterstale,1610\nYou'll,3,winterstale,1610\nhonour'd,3,winterstale,1610\nordering,3,winterstale,1610\nlord's,3,winterstale,1610\ndry,3,winterstale,1610\ninstantly,3,winterstale,1610\nguests,3,winterstale,1610\nsmell,3,winterstale,1610\ngloves,3,winterstale,1610\nlace,3,winterstale,1610\nwouldst,3,winterstale,1610\nwoo'd,3,winterstale,1610\nfortunes,3,winterstale,1610\nlads,3,winterstale,1610\nsummer,3,winterstale,1610\nYou're,4,winterstale,1610\nsuffer,4,winterstale,1610\ncountry,4,winterstale,1610\noffer,4,winterstale,1610\nunder,4,winterstale,1610\ncontrary,4,winterstale,1610\nWhom,4,winterstale,1610\nfriends,4,winterstale,1610\ncast,4,winterstale,1610\ncase,4,winterstale,1610\nsoftly,4,winterstale,1610\nmercy,4,winterstale,1610\nApollo's,4,winterstale,1610\nsad,4,winterstale,1610\nWhose,4,winterstale,1610\ngrown,4,winterstale,1610\ntoward,4,winterstale,1610\ncheek,4,winterstale,1610\nsixteen,4,winterstale,1610\nMethinks,4,winterstale,1610\nthrone,4,winterstale,1610\nprettiest,4,winterstale,1610\ndeliver,4,winterstale,1610\nsubject,4,winterstale,1610\nDoricles,4,winterstale,1610\ndoubt,4,winterstale,1610\nworst,4,winterstale,1610\nworse,4,winterstale,1610\nOut,4,winterstale,1610\nOfficers,4,winterstale,1610\nkill'd,4,winterstale,1610\nencounter,4,winterstale,1610\nchoose,4,winterstale,1610\nwind,4,winterstale,1610\nwant,4,winterstale,1610\ntrifles,4,winterstale,1610\nCleomenes,4,winterstale,1610\nbreeding,4,winterstale,1610\noffice,4,winterstale,1610\nparty,4,winterstale,1610\nspoke,4,winterstale,1610\ncolour,4,winterstale,1610\nauthority,4,winterstale,1610\nchamber,4,winterstale,1610\nsigh,4,winterstale,1610\nscarce,4,winterstale,1610\nneither,4,winterstale,1610\npatience,4,winterstale,1610\ndenied,4,winterstale,1610\nsings,4,winterstale,1610\nchanged,4,winterstale,1610\npass,4,winterstale,1610\njust,4,winterstale,1610\njealousies,4,winterstale,1610\nFortune,4,winterstale,1610\nEmilia,4,winterstale,1610\nfavour,4,winterstale,1610\nshed,4,winterstale,1610\nado,4,winterstale,1610\nharm,4,winterstale,1610\nvengeance,4,winterstale,1610\npaid,4,winterstale,1610\nrough,4,winterstale,1610\nright,4,winterstale,1610\nHark,4,winterstale,1610\nhaving,4,winterstale,1610\nthrough,4,winterstale,1610\ncottage,4,winterstale,1610\ngarments,4,winterstale,1610\nmaid,4,winterstale,1610\nnay,4,winterstale,1610\nunknown,4,winterstale,1610\nalmost,4,winterstale,1610\nmajesty,4,winterstale,1610\nadventure,4,winterstale,1610\nperform,4,winterstale,1610\nSome,4,winterstale,1610\nsinging,4,winterstale,1610\nson's,4,winterstale,1610\nknows,4,winterstale,1610\nstate,4,winterstale,1610\nblow,4,winterstale,1610\ntrouble,4,winterstale,1610\nliving,4,winterstale,1610\nclose,4,winterstale,1610\nget,4,winterstale,1610\nneat,4,winterstale,1610\npound,4,winterstale,1610\nneck,4,winterstale,1610\nswain,4,winterstale,1610\nWe'll,4,winterstale,1610\nheigh,4,winterstale,1610\ncalled,4,winterstale,1610\nCan,4,winterstale,1610\narms,4,winterstale,1610\ndreams,4,winterstale,1610\nMake,4,winterstale,1610\nThat's,4,winterstale,1610\nfortune,4,winterstale,1610\ntune,4,winterstale,1610\nMark,4,winterstale,1610\nmarried,4,winterstale,1610\nan't,4,winterstale,1610\nperceive,4,winterstale,1610\nsecrets,4,winterstale,1610\nis't,4,winterstale,1610\ngentlemen,4,winterstale,1610\ngiven,4,winterstale,1610\nclear,4,winterstale,1610\ngreen,4,winterstale,1610\nfollows,4,winterstale,1610\nPrince,4,winterstale,1610\ngoodness,4,winterstale,1610\nback,4,winterstale,1610\n'twixt,4,winterstale,1610\ncry,4,winterstale,1610\ntherein,4,winterstale,1610\ncurtain,4,winterstale,1610\nself,4,winterstale,1610\nhither,4,winterstale,1610\nsickness,4,winterstale,1610\nfootman,4,winterstale,1610\near,4,winterstale,1610\nmet,4,winterstale,1610\nmeeting,4,winterstale,1610\nsovereign,4,winterstale,1610\nSince,4,winterstale,1610\npowerful,4,winterstale,1610\nIndeed,4,winterstale,1610\ncredit,4,winterstale,1610\nwitness,4,winterstale,1610\nFlorizel,4,winterstale,1610\nlaid,4,winterstale,1610\nblessing,4,winterstale,1610\nToo,4,winterstale,1610\nawake,4,winterstale,1610\nremembrance,4,winterstale,1610\nneighbour,4,winterstale,1610\nenemy,4,winterstale,1610\ndays,5,winterstale,1610\nbrows,5,winterstale,1610\nTell,5,winterstale,1610\nsoul,5,winterstale,1610\ninnocence,5,winterstale,1610\nlies,5,winterstale,1610\nsong,5,winterstale,1610\ndraw,5,winterstale,1610\nwords,5,winterstale,1610\ngross,5,winterstale,1610\nhanging,5,winterstale,1610\nvisit,5,winterstale,1610\nstands,5,winterstale,1610\nbound,5,winterstale,1610\nwarrant,5,winterstale,1610\nWas,5,winterstale,1610\nlooks,5,winterstale,1610\nAttendants,5,winterstale,1610\nbetwixt,5,winterstale,1610\nturn,5,winterstale,1610\ncourtier,5,winterstale,1610\nabsence,5,winterstale,1610\nfault,5,winterstale,1610\nthence,5,winterstale,1610\nweather,5,winterstale,1610\nothers,5,winterstale,1610\nkneel,5,winterstale,1610\nPlease,5,winterstale,1610\nboot,5,winterstale,1610\nmistake,5,winterstale,1610\nLadies,5,winterstale,1610\nThere's,5,winterstale,1610\nLEONTES',5,winterstale,1610\nsenses,5,winterstale,1610\nI',5,winterstale,1610\nstir,5,winterstale,1610\ncreature,5,winterstale,1610\nIV,5,winterstale,1610\nbid,5,winterstale,1610\nLet's,5,winterstale,1610\nHas,5,winterstale,1610\ngoodly,5,winterstale,1610\nbeyond,5,winterstale,1610\ntwice,5,winterstale,1610\nLike,5,winterstale,1610\nsing,5,winterstale,1610\nbegin,5,winterstale,1610\nbreath,5,winterstale,1610\naffection,5,winterstale,1610\npromised,5,winterstale,1610\nyea,5,winterstale,1610\ntyrant,5,winterstale,1610\nservant,5,winterstale,1610\ntouch'd,5,winterstale,1610\nthyself,5,winterstale,1610\ndoor,5,winterstale,1610\nfeast,5,winterstale,1610\nmove,5,winterstale,1610\nmonth,5,winterstale,1610\naside,5,winterstale,1610\nmoon,5,winterstale,1610\nlest,5,winterstale,1610\nloved,5,winterstale,1610\nfour,5,winterstale,1610\ncourse,5,winterstale,1610\npoint,5,winterstale,1610\nbosom,5,winterstale,1610\nalive,5,winterstale,1610\nputs,5,winterstale,1610\npush,5,winterstale,1610\nfresh,5,winterstale,1610\nchance,5,winterstale,1610\nKing,5,winterstale,1610\nthanks,5,winterstale,1610\nguest,5,winterstale,1610\nroom,5,winterstale,1610\nwater,5,winterstale,1610\ngentle,5,winterstale,1610\nignorant,5,winterstale,1610\nquestion,5,winterstale,1610\nSee,5,winterstale,1610\nLook,5,winterstale,1610\nexchange,5,winterstale,1610\nprize,5,winterstale,1610\nlet's,5,winterstale,1610\nones,5,winterstale,1610\nsuspicion,5,winterstale,1610\nDear,5,winterstale,1610\nflight,5,winterstale,1610\nstanding,5,winterstale,1610\nsave,5,winterstale,1610\nbetween,5,winterstale,1610\ncaught,5,winterstale,1610\nnews,5,winterstale,1610\ntaken,5,winterstale,1610\nground,5,winterstale,1610\nfit,5,winterstale,1610\nne'er,5,winterstale,1610\nworship,5,winterstale,1610\nshows,5,winterstale,1610\nwhither,5,winterstale,1610\nVery,5,winterstale,1610\ntale,5,winterstale,1610\ntall,5,winterstale,1610\nholy,5,winterstale,1610\ncut,5,winterstale,1610\nrequest,5,winterstale,1610\nwinter,5,winterstale,1610\ndrunk,5,winterstale,1610\nseek,5,winterstale,1610\neither,5,winterstale,1610\npresence,5,winterstale,1610\nlook'd,5,winterstale,1610\nprison,5,winterstale,1610\nNothing,5,winterstale,1610\nleast,5,winterstale,1610\nsister,5,winterstale,1610\nAway,5,winterstale,1610\nthither,5,winterstale,1610\nlate,5,winterstale,1610\nbeauty,5,winterstale,1610\nWithout,5,winterstale,1610\nstrange,5,winterstale,1610\ngoing,5,winterstale,1610\ncontent,5,winterstale,1610\nDid,5,winterstale,1610\nLest,5,winterstale,1610\nHe's,5,winterstale,1610\ncrown,5,winterstale,1610\nheir,6,winterstale,1610\nspeech,6,winterstale,1610\nvillain,6,winterstale,1610\nNever,6,winterstale,1610\nwhile,6,winterstale,1610\nprisoner,6,winterstale,1610\nhonourable,6,winterstale,1610\nappear,6,winterstale,1610\nits,6,winterstale,1610\nbecome,6,winterstale,1610\ncharge,6,winterstale,1610\npurse,6,winterstale,1610\nglass,6,winterstale,1610\nmerry,6,winterstale,1610\n's,6,winterstale,1610\nbecomes,6,winterstale,1610\nread,6,winterstale,1610\nThese,6,winterstale,1610\nwhite,6,winterstale,1610\nfeel,6,winterstale,1610\nservice,6,winterstale,1610\nflesh,6,winterstale,1610\nanon,6,winterstale,1610\nside,6,winterstale,1610\naboard,6,winterstale,1610\nStill,6,winterstale,1610\nkings,6,winterstale,1610\ninnocent,6,winterstale,1610\nHad,6,winterstale,1610\nears,6,winterstale,1610\ngold,6,winterstale,1610\ngrief,6,winterstale,1610\nbehind,6,winterstale,1610\nPrithee,6,winterstale,1610\nchildren,6,winterstale,1610\ndoth,6,winterstale,1610\nlonger,6,winterstale,1610\nFear,6,winterstale,1610\napproach,6,winterstale,1610\nmanner,6,winterstale,1610\nage,6,winterstale,1610\nloss,6,winterstale,1610\nill,6,winterstale,1610\nhalf,6,winterstale,1610\nship,6,winterstale,1610\nfoot,6,winterstale,1610\nshow,6,winterstale,1610\nrogue,6,winterstale,1610\nshearing,6,winterstale,1610\nHath,6,winterstale,1610\noften,6,winterstale,1610\njustice,6,winterstale,1610\nstrike,6,winterstale,1610\nyouth,6,winterstale,1610\nprecious,6,winterstale,1610\nhigh,6,winterstale,1610\nend,6,winterstale,1610\nthere's,6,winterstale,1610\nmark,6,winterstale,1610\naffairs,6,winterstale,1610\nmaids,6,winterstale,1610\nnear,6,winterstale,1610\nSay,6,winterstale,1610\nface,6,winterstale,1610\nnext,6,winterstale,1610\nmarry,6,winterstale,1610\nwhat's,6,winterstale,1610\nguilty,6,winterstale,1610\nTime,6,winterstale,1610\n'em,6,winterstale,1610\nfind,6,winterstale,1610\nfolly,6,winterstale,1610\nlived,6,winterstale,1610\nOfficer,6,winterstale,1610\nhope,6,winterstale,1610\nMariner,6,winterstale,1610\nreason,6,winterstale,1610\npardon,6,winterstale,1610\nsacred,6,winterstale,1610\nperson,6,winterstale,1610\nhouse,6,winterstale,1610\nstatue,6,winterstale,1610\nlip,6,winterstale,1610\nEMILIA,6,winterstale,1610\nland,6,winterstale,1610\ncertain,6,winterstale,1610\nkind,6,winterstale,1610\ncommand,6,winterstale,1610\nspirit,6,winterstale,1610\nlack,6,winterstale,1610\ne'er,6,winterstale,1610\nshepherd's,7,winterstale,1610\nanswer,7,winterstale,1610\ntook,7,winterstale,1610\nfor't,7,winterstale,1610\ntears,7,winterstale,1610\ncare,7,winterstale,1610\ndance,7,winterstale,1610\nfull,7,winterstale,1610\nAntigonus,7,winterstale,1610\nbastard,7,winterstale,1610\nworth,7,winterstale,1610\ncounsel,7,winterstale,1610\nafter,7,winterstale,1610\nworthy,7,winterstale,1610\nsun,7,winterstale,1610\nfardel,7,winterstale,1610\npretty,7,winterstale,1610\ndesire,7,winterstale,1610\neach,7,winterstale,1610\nIII,7,winterstale,1610\npay,7,winterstale,1610\nitself,7,winterstale,1610\nOn,7,winterstale,1610\nmeans,7,winterstale,1610\nblest,7,winterstale,1610\ndost,7,winterstale,1610\ntongue,7,winterstale,1610\nHere's,7,winterstale,1610\nhusband,7,winterstale,1610\nloves,7,winterstale,1610\nYet,7,winterstale,1610\ntwenty,7,winterstale,1610\nhot,7,winterstale,1610\nfool,7,winterstale,1610\nchange,7,winterstale,1610\nnote,7,winterstale,1610\nrare,7,winterstale,1610\nwonder,7,winterstale,1610\nmind,7,winterstale,1610\nalready,7,winterstale,1610\nThird,7,winterstale,1610\nWere,7,winterstale,1610\nbreak,7,winterstale,1610\nservices,7,winterstale,1610\nbelieve,7,winterstale,1610\noath,7,winterstale,1610\ndo't,7,winterstale,1610\nrich,7,winterstale,1610\ntalk,7,winterstale,1610\nthousand,7,winterstale,1610\nwilt,7,winterstale,1610\nprithee,7,winterstale,1610\nwe'll,7,winterstale,1610\nseem,7,winterstale,1610\ngoes,7,winterstale,1610\nsleep,7,winterstale,1610\nthoughts,7,winterstale,1610\nlast,7,winterstale,1610\nBeseech,7,winterstale,1610\nMay,7,winterstale,1610\nThy,7,winterstale,1610\nbehold,7,winterstale,1610\nTake,7,winterstale,1610\nshalt,7,winterstale,1610\nshame,7,winterstale,1610\npower,7,winterstale,1610\ntold,8,winterstale,1610\npity,8,winterstale,1610\nhelp,8,winterstale,1610\nrather,8,winterstale,1610\nhead,8,winterstale,1610\nsure,8,winterstale,1610\nshe's,8,winterstale,1610\n'twere,8,winterstale,1610\nheaven,8,winterstale,1610\nrest,8,winterstale,1610\nHer,8,winterstale,1610\nflowers,8,winterstale,1610\nII,8,winterstale,1610\nnight,8,winterstale,1610\nsorry,8,winterstale,1610\ndeed,8,winterstale,1610\nair,8,winterstale,1610\nApollo,8,winterstale,1610\ndear,8,winterstale,1610\nlong,8,winterstale,1610\nspeed,8,winterstale,1610\nknew,8,winterstale,1610\nbrought,8,winterstale,1610\nkeep,8,winterstale,1610\nballad,8,winterstale,1610\nLords,8,winterstale,1610\nfaith,8,winterstale,1610\nnose,8,winterstale,1610\ntender,8,winterstale,1610\nere,8,winterstale,1610\nAll,8,winterstale,1610\nI'ld,8,winterstale,1610\nfire,8,winterstale,1610\nsorrow,8,winterstale,1610\nWell,8,winterstale,1610\nhour,8,winterstale,1610\nkiss,8,winterstale,1610\nlaw,8,winterstale,1610\nuse,8,winterstale,1610\ndoing,8,winterstale,1610\nliege,8,winterstale,1610\nwithout,8,winterstale,1610\ndie,8,winterstale,1610\nwomen,8,winterstale,1610\nsight,9,winterstale,1610\ntrust,9,winterstale,1610\nUpon,9,winterstale,1610\nyears,9,winterstale,1610\nNor,9,winterstale,1610\nset,9,winterstale,1610\nsworn,9,winterstale,1610\nwithin,9,winterstale,1610\nking's,9,winterstale,1610\nDION,9,winterstale,1610\nOne,9,winterstale,1610\nAt,9,winterstale,1610\nPerdita,9,winterstale,1610\nprove,9,winterstale,1610\nRe,9,winterstale,1610\nstone,9,winterstale,1610\nless,9,winterstale,1610\ngrace,9,winterstale,1610\nwelcome,9,winterstale,1610\nopen,9,winterstale,1610\nARCHIDAMUS,9,winterstale,1610\nreport,9,winterstale,1610\nlords,9,winterstale,1610\nyou'll,9,winterstale,1610\nThey,9,winterstale,1610\nThen,9,winterstale,1610\nwhy,9,winterstale,1610\nthemselves,9,winterstale,1610\nwork,9,winterstale,1610\npalace,9,winterstale,1610\nlay,9,winterstale,1610\nhome,9,winterstale,1610\nbabe,9,winterstale,1610\ntogether,9,winterstale,1610\nmadam,9,winterstale,1610\npurpose,9,winterstale,1610\nfollow,9,winterstale,1610\nprincess,9,winterstale,1610\nwoman,9,winterstale,1610\no'er,10,winterstale,1610\nGive,10,winterstale,1610\ncame,10,winterstale,1610\n't,10,winterstale,1610\ncause,10,winterstale,1610\nmother,10,winterstale,1610\npiece,10,winterstale,1610\nOur,10,winterstale,1610\nHere,10,winterstale,1610\nfalse,10,winterstale,1610\nThough,10,winterstale,1610\nknowledge,10,winterstale,1610\nto't,10,winterstale,1610\nbed,10,winterstale,1610\nenter,10,winterstale,1610\npast,10,winterstale,1610\nnoble,10,winterstale,1610\nMost,10,winterstale,1610\nmoney,10,winterstale,1610\nAre,10,winterstale,1610\nfar,10,winterstale,1610\ninto,10,winterstale,1610\nmyself,10,winterstale,1610\nknown,10,winterstale,1610\nover,10,winterstale,1610\nfree,10,winterstale,1610\nonce,10,winterstale,1610\nword,10,winterstale,1610\nshepherd,10,winterstale,1610\nmaster,10,winterstale,1610\nPray,10,winterstale,1610\ngods,10,winterstale,1610\nqueen's,10,winterstale,1610\non't,10,winterstale,1610\nyourself,11,winterstale,1610\nhighness,11,winterstale,1610\nheavens,11,winterstale,1610\nmean,11,winterstale,1610\nLeontes,11,winterstale,1610\nplay,11,winterstale,1610\nleft,11,winterstale,1610\nsheep,11,winterstale,1610\nhands,11,winterstale,1610\nSecond,11,winterstale,1610\nplace,11,winterstale,1610\nforth,11,winterstale,1610\ncomes,11,winterstale,1610\nneed,11,winterstale,1610\nthine,11,winterstale,1610\nbeseech,11,winterstale,1610\nhold,11,winterstale,1610\nGaoler,11,winterstale,1610\nseen,11,winterstale,1610\nhonesty,11,winterstale,1610\ndare,11,winterstale,1610\nNay,12,winterstale,1610\nroyal,12,winterstale,1610\npray,12,winterstale,1610\nworld,12,winterstale,1610\nsaw,12,winterstale,1610\nenough,12,winterstale,1610\nagainst,12,winterstale,1610\nAside,12,winterstale,1610\nseems,12,winterstale,1610\nmatter,12,winterstale,1610\nMore,12,winterstale,1610\nLady,12,winterstale,1610\nindeed,12,winterstale,1610\nFrom,12,winterstale,1610\ngrave,12,winterstale,1610\nstill,12,winterstale,1610\nstand,12,winterstale,1610\nonly,12,winterstale,1610\ncomfort,12,winterstale,1610\nlie,12,winterstale,1610\nmakes,12,winterstale,1610\nlive,12,winterstale,1610\nWhere,12,winterstale,1610\nmistress,13,winterstale,1610\njoy,13,winterstale,1610\ntruth,13,winterstale,1610\ngracious,13,winterstale,1610\naway,13,winterstale,1610\nfriend,13,winterstale,1610\nin't,13,winterstale,1610\nbuy,13,winterstale,1610\nearth,13,winterstale,1610\nShould,13,winterstale,1610\nmany,13,winterstale,1610\nheard,13,winterstale,1610\n'Tis,13,winterstale,1610\nplease,13,winterstale,1610\nmen,13,winterstale,1610\ntwo,13,winterstale,1610\nnature,13,winterstale,1610\nsea,14,winterstale,1610\nelse,14,winterstale,1610\nAy,14,winterstale,1610\nname,14,winterstale,1610\ntherefore,14,winterstale,1610\nsaid,14,winterstale,1610\nDORCAS,14,winterstale,1610\nyoung,14,winterstale,1610\nissue,14,winterstale,1610\noracle,14,winterstale,1610\nfather's,14,winterstale,1610\nEven,14,winterstale,1610\ntill,14,winterstale,1610\nswear,14,winterstale,1610\nwhom,14,winterstale,1610\nCLEOMENES,14,winterstale,1610\nanother,15,winterstale,1610\nPolixenes,15,winterstale,1610\nfear,15,winterstale,1610\ntell,15,winterstale,1610\nHis,15,winterstale,1610\nstay,15,winterstale,1610\ndown,15,winterstale,1610\ndead,15,winterstale,1610\nthat's,15,winterstale,1610\nlost,15,winterstale,1610\nlittle,15,winterstale,1610\neye,15,winterstale,1610\nthings,15,winterstale,1610\nACT,15,winterstale,1610\nchild,15,winterstale,1610\nyours,15,winterstale,1610\nfound,15,winterstale,1610\nfair,15,winterstale,1610\neven,15,winterstale,1610\nhonest,15,winterstale,1610\nleave,15,winterstale,1610\nevery,16,winterstale,1610\nWould,16,winterstale,1610\nWho,16,winterstale,1610\nsomething,16,winterstale,1610\nWINTER'S,16,winterstale,1610\nfellow,16,winterstale,1610\nhence,16,winterstale,1610\nGo,16,winterstale,1610\ni',16,winterstale,1610\nPaulina,16,winterstale,1610\npart,16,winterstale,1610\nTALE,16,winterstale,1610\nTHE,16,winterstale,1610\nMOPSA,16,winterstale,1610\nWhen,16,winterstale,1610\nSCENE,16,winterstale,1610\nWhy,17,winterstale,1610\nborn,17,winterstale,1610\nboth,17,winterstale,1610\nabout,17,winterstale,1610\nMAMILLIUS,17,winterstale,1610\nBe,17,winterstale,1610\nblood,17,winterstale,1610\nthose,17,winterstale,1610\nHave,17,winterstale,1610\nwhere,17,winterstale,1610\nShall,17,winterstale,1610\nSicilia,17,winterstale,1610\nsweet,17,winterstale,1610\nfirst,17,winterstale,1610\nThere,18,winterstale,1610\nbring,18,winterstale,1610\nGood,18,winterstale,1610\nput,18,winterstale,1610\npresent,18,winterstale,1610\nhast,18,winterstale,1610\nthing,18,winterstale,1610\nHermione,18,winterstale,1610\nmight,18,winterstale,1610\nNow,19,winterstale,1610\nsince,19,winterstale,1610\ngone,19,winterstale,1610\ndoes,19,winterstale,1610\nSir,19,winterstale,1610\nbefore,19,winterstale,1610\nold,19,winterstale,1610\nthree,19,winterstale,1610\nday,19,winterstale,1610\nLet,19,winterstale,1610\neyes,19,winterstale,1610\nother,19,winterstale,1610\nWill,20,winterstale,1610\nbrother,20,winterstale,1610\nIt,20,winterstale,1610\nExeunt,20,winterstale,1610\nthough,20,winterstale,1610\ncould,20,winterstale,1610\noff,20,winterstale,1610\nthus,20,winterstale,1610\nExit,20,winterstale,1610\nlady,20,winterstale,1610\ncall,21,winterstale,1610\nDo,21,winterstale,1610\nBy,21,winterstale,1610\nThan,21,winterstale,1610\nLord,21,winterstale,1610\nagain,21,winterstale,1610\ncourt,21,winterstale,1610\nway,21,winterstale,1610\ngentleman,21,winterstale,1610\ndeath,22,winterstale,1610\nServant,22,winterstale,1610\nnever,22,winterstale,1610\nwhose,22,winterstale,1610\nprince,22,winterstale,1610\nShe,22,winterstale,1610\nwife,22,winterstale,1610\npoor,22,winterstale,1610\nbusiness,23,winterstale,1610\nthought,23,winterstale,1610\nhear,23,winterstale,1610\nNot,23,winterstale,1610\nbetter,23,winterstale,1610\nANTIGONUS,23,winterstale,1610\nbest,23,winterstale,1610\nOr,23,winterstale,1610\nlook,23,winterstale,1610\nnone,23,winterstale,1610\nhimself,23,winterstale,1610\nand,535,winterstale,1610\nboy,24,winterstale,1610\nThou,24,winterstale,1610\nnot,280,winterstale,1610\n',25,winterstale,1610\nIn,25,winterstale,1610\nbear,25,winterstale,1610\nlove,25,winterstale,1610\nmade,25,winterstale,1610\nvery,25,winterstale,1610\nwho,25,winterstale,1610\nhas,26,winterstale,1610\nart,26,winterstale,1610\nheart,26,winterstale,1610\nown,26,winterstale,1610\no',27,winterstale,1610\ngive,27,winterstale,1610\nhand,27,winterstale,1610\ngreat,27,winterstale,1610\nWe,28,winterstale,1610\never,28,winterstale,1610\ntrue,28,winterstale,1610\nbeing,28,winterstale,1610\nnothing,29,winterstale,1610\ngo,29,winterstale,1610\nThis,29,winterstale,1610\ncannot,29,winterstale,1610\ndone,30,winterstale,1610\nBohemia,30,winterstale,1610\nnor,30,winterstale,1610\ntime,30,winterstale,1610\nhonour,31,winterstale,1610\ncan,31,winterstale,1610\nFirst,31,winterstale,1610\nEnter,31,winterstale,1610\ndaughter,32,winterstale,1610\nNo,32,winterstale,1610\nPERDITA,32,winterstale,1610\nCome,33,winterstale,1610\nGentleman,33,winterstale,1610\ndid,33,winterstale,1610\nson,34,winterstale,1610\nIs,34,winterstale,1610\nany,34,winterstale,1610\nlet,34,winterstale,1610\nup,35,winterstale,1610\nspeak,35,winterstale,1610\nhath,35,winterstale,1610\nYour,35,winterstale,1610\nwhen,35,winterstale,1610\nsuch,36,winterstale,1610\nWith,36,winterstale,1610\n'tis,36,winterstale,1610\nbeen,36,winterstale,1610\ntake,36,winterstale,1610\nhere,37,winterstale,1610\nHe,37,winterstale,1610\nwell,37,winterstale,1610\nSo,38,winterstale,1610\nWhich,39,winterstale,1610\nlife,40,winterstale,1610\nHow,40,winterstale,1610\nCamillo,41,winterstale,1610\nmake,41,winterstale,1610\nmuch,42,winterstale,1610\ntheir,42,winterstale,1610\nhow,42,winterstale,1610\nshould,42,winterstale,1610\nmine,42,winterstale,1610\nthink,42,winterstale,1610\nout,42,winterstale,1610\nyet,44,winterstale,1610\nmost,44,winterstale,1610\nqueen,44,winterstale,1610\nfather,44,winterstale,1610\nsome,45,winterstale,1610\nan,45,winterstale,1610\nHERMIONE,45,winterstale,1610\nking,46,winterstale,1610\nupon,47,winterstale,1610\nFor,47,winterstale,1610\nthese,47,winterstale,1610\nmust,48,winterstale,1610\nShepherd,48,winterstale,1610\nthan,50,winterstale,1610\nhad,51,winterstale,1610\nat,51,winterstale,1610\nus,51,winterstale,1610\ntoo,51,winterstale,1610\nlike,52,winterstale,1610\nIf,52,winterstale,1610\nman,52,winterstale,1610\nFLORIZEL,54,winterstale,1610\nOf,54,winterstale,1610\nknow,54,winterstale,1610\ncome,54,winterstale,1610\nmay,54,winterstale,1610\nMy,55,winterstale,1610\nsee,56,winterstale,1610\nO,57,winterstale,1610\nthere,57,winterstale,1610\nWhat,57,winterstale,1610\nwere,58,winterstale,1610\nthem,61,winterstale,1610\nA,62,winterstale,1610\nour,62,winterstale,1610\nwould,62,winterstale,1610\nthen,63,winterstale,1610\nAs,63,winterstale,1610\nthee,64,winterstale,1610\nYou,64,winterstale,1610\nwhat,64,winterstale,1610\nI'll,65,winterstale,1610\nthey,66,winterstale,1610\nPOLIXENES,66,winterstale,1610\nsay,67,winterstale,1610\nlord,67,winterstale,1610\nif,67,winterstale,1610\nwe,68,winterstale,1610\nfrom,68,winterstale,1610\none,68,winterstale,1610\nPAULINA,68,winterstale,1610\nor,69,winterstale,1610\nBut,69,winterstale,1610\nam,71,winterstale,1610\nThat,72,winterstale,1610\nClown,72,winterstale,1610\nthy,72,winterstale,1610\nAUTOLYCUS,74,winterstale,1610\nshe,79,winterstale,1610\nmore,79,winterstale,1610\ndo,80,winterstale,1610\nwhich,82,winterstale,1610\nCAMILLO,82,winterstale,1610\nwas,83,winterstale,1610\ngood,84,winterstale,1610\nnow,85,winterstale,1610\non,91,winterstale,1610\nsir,93,winterstale,1610\nmy,349,winterstale,1610\nall,94,winterstale,1610\nwill,94,winterstale,1610\nshall,94,winterstale,1610\nno,95,winterstale,1610\nare,100,winterstale,1610\nthou,103,winterstale,1610\nby,108,winterstale,1610\nTo,121,winterstale,1610\na,378,winterstale,1610\nI,634,winterstale,1610\nhim,124,winterstale,1610\nAnd,127,winterstale,1610\nyou,384,winterstale,1610\nLEONTES,133,winterstale,1610\nhe,135,winterstale,1610\nher,139,winterstale,1610\nThe,140,winterstale,1610\nbut,155,winterstale,1610\nso,156,winterstale,1610\nhis,159,winterstale,1610\nas,165,winterstale,1610\nof,427,winterstale,1610\nthis,172,winterstale,1610\nwith,173,winterstale,1610\nfor,175,winterstale,1610\nthe,717,winterstale,1610\nin,207,winterstale,1610\nis,212,winterstale,1610\nme,221,winterstale,1610\nhave,221,winterstale,1610\nyour,228,winterstale,1610\nbe,233,winterstale,1610\nthat,247,winterstale,1610\nit,247,winterstale,1610\nto,505,winterstale,1610\nprofession,1,1kinghenryiv,1597\nanswered,1,1kinghenryiv,1597\nPerceived,1,1kinghenryiv,1597\n'You,1,1kinghenryiv,1597\ndegenerate,1,1kinghenryiv,1597\nneighbouring,1,1kinghenryiv,1597\ngrandam,1,1kinghenryiv,1597\nregard,1,1kinghenryiv,1597\nbrawn,1,1kinghenryiv,1597\nCholer,1,1kinghenryiv,1597\nunwelcome,1,1kinghenryiv,1597\ninstruments,1,1kinghenryiv,1597\nattribution,1,1kinghenryiv,1597\ntopsy,1,1kinghenryiv,1597\njohn,1,1kinghenryiv,1597\naccordingly,1,1kinghenryiv,1597\nproffer,1,1kinghenryiv,1597\nignorance,1,1kinghenryiv,1597\nadvised,1,1kinghenryiv,1597\ndrowzed,1,1kinghenryiv,1597\nsmiled,1,1kinghenryiv,1597\ngrey,1,1kinghenryiv,1597\nmuster,1,1kinghenryiv,1597\nVernon's,1,1kinghenryiv,1597\nsuffer,1,1kinghenryiv,1597\nsmiles,1,1kinghenryiv,1597\ntaking,1,1kinghenryiv,1597\nAudacious,1,1kinghenryiv,1597\nvanities,1,1kinghenryiv,1597\nexception,1,1kinghenryiv,1597\ncaddis,1,1kinghenryiv,1597\nyeoman's,1,1kinghenryiv,1597\nafar,1,1kinghenryiv,1597\npins',1,1kinghenryiv,1597\nreckonings,1,1kinghenryiv,1597\nbespoke,1,1kinghenryiv,1597\nassay,1,1kinghenryiv,1597\nmistress,1,1kinghenryiv,1597\nforswear,1,1kinghenryiv,1597\nspeech,1,1kinghenryiv,1597\nweasel,1,1kinghenryiv,1597\ntremble,1,1kinghenryiv,1597\naxle,1,1kinghenryiv,1597\nfewer,1,1kinghenryiv,1597\nwish'd,1,1kinghenryiv,1597\nbleed'st,1,1kinghenryiv,1597\ncomplaints,1,1kinghenryiv,1597\npossible,1,1kinghenryiv,1597\nfollowing,1,1kinghenryiv,1597\nmidriff,1,1kinghenryiv,1597\nCharing,1,1kinghenryiv,1597\nFriday,1,1kinghenryiv,1597\nSugar,1,1kinghenryiv,1597\npeach,1,1kinghenryiv,1597\ncapering,1,1kinghenryiv,1597\nbrittle,1,1kinghenryiv,1597\nmistreadings,1,1kinghenryiv,1597\nFie,1,1kinghenryiv,1597\nshadows,1,1kinghenryiv,1597\nfollies,1,1kinghenryiv,1597\nLoseth,1,1kinghenryiv,1597\nbrown,1,1kinghenryiv,1597\nunborn,1,1kinghenryiv,1597\nrode,1,1kinghenryiv,1597\nextenuation,1,1kinghenryiv,1597\nbreathless,1,1kinghenryiv,1597\nbakers',1,1kinghenryiv,1597\npreparation,1,1kinghenryiv,1597\nruminated,1,1kinghenryiv,1597\ndissolutely,1,1kinghenryiv,1597\nbonds,1,1kinghenryiv,1597\nassured,1,1kinghenryiv,1597\nhealth,1,1kinghenryiv,1597\nrod,1,1kinghenryiv,1597\nsuppose,1,1kinghenryiv,1597\nheart's,1,1kinghenryiv,1597\nhighness',1,1kinghenryiv,1597\nBear,1,1kinghenryiv,1597\nday's,1,1kinghenryiv,1597\nassistance,1,1kinghenryiv,1597\nroar,1,1kinghenryiv,1597\nproclaim'd,1,1kinghenryiv,1597\nbutchery,1,1kinghenryiv,1597\neasily,1,1kinghenryiv,1597\nepitaph,1,1kinghenryiv,1597\nStafford's,1,1kinghenryiv,1597\nspeedy,1,1kinghenryiv,1597\ntrading,1,1kinghenryiv,1597\nmelt,1,1kinghenryiv,1597\nhelm,1,1kinghenryiv,1597\ncords,1,1kinghenryiv,1597\nwhereupon,1,1kinghenryiv,1597\nblustering,1,1kinghenryiv,1597\nmoiety,1,1kinghenryiv,1597\nalien,1,1kinghenryiv,1597\nStay,1,1kinghenryiv,1597\nlaughter,1,1kinghenryiv,1597\nseason's,1,1kinghenryiv,1597\nproviso,1,1kinghenryiv,1597\nduteous,1,1kinghenryiv,1597\npoisonous,1,1kinghenryiv,1597\nmajestically,1,1kinghenryiv,1597\nwriter,1,1kinghenryiv,1597\nmidsummer,1,1kinghenryiv,1597\npainted,1,1kinghenryiv,1597\nWhereby,1,1kinghenryiv,1597\nuphold,1,1kinghenryiv,1597\nAngus,1,1kinghenryiv,1597\nHeir,1,1kinghenryiv,1597\ntrunk,1,1kinghenryiv,1597\nimitate,1,1kinghenryiv,1597\ndropp'd,1,1kinghenryiv,1597\nspake,1,1kinghenryiv,1597\nEither,1,1kinghenryiv,1597\nflowerets,1,1kinghenryiv,1597\nruffian,1,1kinghenryiv,1597\nWarkworth,1,1kinghenryiv,1597\nprisoner,1,1kinghenryiv,1597\nPaul's,1,1kinghenryiv,1597\nprosperous,1,1kinghenryiv,1597\ngorgeous,1,1kinghenryiv,1597\ntoil,1,1kinghenryiv,1597\ncomest,1,1kinghenryiv,1597\nupside,1,1kinghenryiv,1597\nStep,1,1kinghenryiv,1597\ndive,1,1kinghenryiv,1597\nrods,1,1kinghenryiv,1597\nCries,1,1kinghenryiv,1597\nlooked,1,1kinghenryiv,1597\nnaked,1,1kinghenryiv,1597\nExceedingly,1,1kinghenryiv,1597\nungrown,1,1kinghenryiv,1597\nslander,1,1kinghenryiv,1597\nsummer's,1,1kinghenryiv,1597\nfeeds,1,1kinghenryiv,1597\nsuccession,1,1kinghenryiv,1597\nmaintain,1,1kinghenryiv,1597\nstrangled,1,1kinghenryiv,1597\nScore,1,1kinghenryiv,1597\nprey,1,1kinghenryiv,1597\nuntaught,1,1kinghenryiv,1597\njades,1,1kinghenryiv,1597\nDefect,1,1kinghenryiv,1597\nblunted,1,1kinghenryiv,1597\ncrickets,1,1kinghenryiv,1597\nDiscomfited,1,1kinghenryiv,1597\nloaden,1,1kinghenryiv,1597\ninclining,1,1kinghenryiv,1597\nmailed,1,1kinghenryiv,1597\nsort,1,1kinghenryiv,1597\nCarriers,1,1kinghenryiv,1597\nWye,1,1kinghenryiv,1597\nodds,1,1kinghenryiv,1597\niron,1,1kinghenryiv,1597\nbishops,1,1kinghenryiv,1597\nabsolute,1,1kinghenryiv,1597\nconceiving,1,1kinghenryiv,1597\nARCHIBALD,1,1kinghenryiv,1597\npleasures,1,1kinghenryiv,1597\npinch,1,1kinghenryiv,1597\nMurray,1,1kinghenryiv,1597\nMoney,1,1kinghenryiv,1597\ncontrary,1,1kinghenryiv,1597\nfretful,1,1kinghenryiv,1597\nDanger,1,1kinghenryiv,1597\nBegan,1,1kinghenryiv,1597\nQuite,1,1kinghenryiv,1597\ndisobedience,1,1kinghenryiv,1597\nWould,1,1kinghenryiv,1597\nwing'd,1,1kinghenryiv,1597\nwounded,1,1kinghenryiv,1597\nshowering,1,1kinghenryiv,1597\nchandler's,1,1kinghenryiv,1597\nrecreation,1,1kinghenryiv,1597\nbower,1,1kinghenryiv,1597\nPERSONAE,1,1kinghenryiv,1597\ngreyhound,1,1kinghenryiv,1597\nboy's,1,1kinghenryiv,1597\nmarshal,1,1kinghenryiv,1597\nManningtree,1,1kinghenryiv,1597\nglutton's,1,1kinghenryiv,1597\nEnlarged,1,1kinghenryiv,1597\nclamorous,1,1kinghenryiv,1597\nditties,1,1kinghenryiv,1597\ncart,1,1kinghenryiv,1597\ninsurrection,1,1kinghenryiv,1597\ncast,1,1kinghenryiv,1597\nrub,1,1kinghenryiv,1597\nteacher,1,1kinghenryiv,1597\nbattles,1,1kinghenryiv,1597\nattempt,1,1kinghenryiv,1597\nglutted,1,1kinghenryiv,1597\ncoffers,1,1kinghenryiv,1597\nbridegroom,1,1kinghenryiv,1597\nexhaled,1,1kinghenryiv,1597\nTrimm'd,1,1kinghenryiv,1597\nspared,1,1kinghenryiv,1597\nindirect,1,1kinghenryiv,1597\nlustre,1,1kinghenryiv,1597\nagrees,1,1kinghenryiv,1597\nstirring,1,1kinghenryiv,1597\nintemperance,1,1kinghenryiv,1597\nadvantages,1,1kinghenryiv,1597\ndelivered,1,1kinghenryiv,1597\nchin,1,1kinghenryiv,1597\nreign,1,1kinghenryiv,1597\nForget,1,1kinghenryiv,1597\ndisdain,1,1kinghenryiv,1597\nincomprehensible,1,1kinghenryiv,1597\neruptions,1,1kinghenryiv,1597\neleventh,1,1kinghenryiv,1597\nRare,1,1kinghenryiv,1597\namazed,1,1kinghenryiv,1597\nGlendower's,1,1kinghenryiv,1597\nconscience,1,1kinghenryiv,1597\nwander'd,1,1kinghenryiv,1597\nridge,1,1kinghenryiv,1597\nstock,1,1kinghenryiv,1597\ntasking,1,1kinghenryiv,1597\nreform,1,1kinghenryiv,1597\nguards,1,1kinghenryiv,1597\necce,1,1kinghenryiv,1597\nMugs,1,1kinghenryiv,1597\nOWEN,1,1kinghenryiv,1597\nworking,1,1kinghenryiv,1597\nruin'd,1,1kinghenryiv,1597\nconfusion,1,1kinghenryiv,1597\ngrove,1,1kinghenryiv,1597\nwrung,1,1kinghenryiv,1597\nbombard,1,1kinghenryiv,1597\nleaning,1,1kinghenryiv,1597\nparmaceti,1,1kinghenryiv,1597\nfatuus,1,1kinghenryiv,1597\nYoung,1,1kinghenryiv,1597\nmatters,1,1kinghenryiv,1597\nbearing,1,1kinghenryiv,1597\ntoss,1,1kinghenryiv,1597\nsoothers,1,1kinghenryiv,1597\nbuffets,1,1kinghenryiv,1597\nstream,1,1kinghenryiv,1597\nscarlet,1,1kinghenryiv,1597\ncape,1,1kinghenryiv,1597\nlosers,1,1kinghenryiv,1597\nHenry's,1,1kinghenryiv,1597\nfortunate,1,1kinghenryiv,1597\ncircumstance,1,1kinghenryiv,1597\nlustier,1,1kinghenryiv,1597\nfighter,1,1kinghenryiv,1597\nBristol,1,1kinghenryiv,1597\nbagpipe,1,1kinghenryiv,1597\nkitten,1,1kinghenryiv,1597\ncomfit,1,1kinghenryiv,1597\ncrying,1,1kinghenryiv,1597\nlimb,1,1kinghenryiv,1597\ncaps,1,1kinghenryiv,1597\ninjury,1,1kinghenryiv,1597\nKeep,1,1kinghenryiv,1597\nmaidenheads,1,1kinghenryiv,1597\nsubjects,1,1kinghenryiv,1597\ndeceiveth,1,1kinghenryiv,1597\nhabits,1,1kinghenryiv,1597\nroar'd,1,1kinghenryiv,1597\nbudge,1,1kinghenryiv,1597\nsalutations,1,1kinghenryiv,1597\ndrunkest,1,1kinghenryiv,1597\napprehends,1,1kinghenryiv,1597\noffenders,1,1kinghenryiv,1597\noppress,1,1kinghenryiv,1597\nswollen,1,1kinghenryiv,1597\nhearing,1,1kinghenryiv,1597\nfingers,1,1kinghenryiv,1597\npolicy,1,1kinghenryiv,1597\ncalm,1,1kinghenryiv,1597\nbreaks,1,1kinghenryiv,1597\ncalf,1,1kinghenryiv,1597\nrebels',1,1kinghenryiv,1597\nrites,1,1kinghenryiv,1597\nbeardless,1,1kinghenryiv,1597\nfools,1,1kinghenryiv,1597\naddition,1,1kinghenryiv,1597\nveins,1,1kinghenryiv,1597\nsit'st,1,1kinghenryiv,1597\nMethinks,1,1kinghenryiv,1597\nhardiment,1,1kinghenryiv,1597\ntarget,1,1kinghenryiv,1597\nfurious,1,1kinghenryiv,1597\nbated,1,1kinghenryiv,1597\nbombast,1,1kinghenryiv,1597\nsearched,1,1kinghenryiv,1597\nPegasus,1,1kinghenryiv,1597\nwatering,1,1kinghenryiv,1597\noneyers,1,1kinghenryiv,1597\nbachelors,1,1kinghenryiv,1597\nvisit,1,1kinghenryiv,1597\nwait,1,1kinghenryiv,1597\ntoss'd,1,1kinghenryiv,1597\nwain,1,1kinghenryiv,1597\nSought,1,1kinghenryiv,1597\nbegan,1,1kinghenryiv,1597\nbounding,1,1kinghenryiv,1597\nStain'd,1,1kinghenryiv,1597\nmoving,1,1kinghenryiv,1597\ncankers,1,1kinghenryiv,1597\nadmiring,1,1kinghenryiv,1597\ncompanies,1,1kinghenryiv,1597\ncounterpoise,1,1kinghenryiv,1597\ncities,1,1kinghenryiv,1597\nbareness,1,1kinghenryiv,1597\nshe's,1,1kinghenryiv,1597\nwage,1,1kinghenryiv,1597\nhereafter,1,1kinghenryiv,1597\nplains,1,1kinghenryiv,1597\nsheathed,1,1kinghenryiv,1597\nDuke,1,1kinghenryiv,1597\nAccompany,1,1kinghenryiv,1597\njumps,1,1kinghenryiv,1597\nflatly,1,1kinghenryiv,1597\nsung,1,1kinghenryiv,1597\nyards,1,1kinghenryiv,1597\ntripartite,1,1kinghenryiv,1597\nmincing,1,1kinghenryiv,1597\nLeads,1,1kinghenryiv,1597\nconfutes,1,1kinghenryiv,1597\nintercepted,1,1kinghenryiv,1597\nfleece,1,1kinghenryiv,1597\nmicher,1,1kinghenryiv,1597\nviolently,1,1kinghenryiv,1597\nminions,1,1kinghenryiv,1597\nbrisk,1,1kinghenryiv,1597\npaying,1,1kinghenryiv,1597\nclerks,1,1kinghenryiv,1597\nwisheth,1,1kinghenryiv,1597\ncaliver,1,1kinghenryiv,1597\ntenants,1,1kinghenryiv,1597\nedicts,1,1kinghenryiv,1597\nsaddle,1,1kinghenryiv,1597\ntooth,1,1kinghenryiv,1597\ndeprived,1,1kinghenryiv,1597\nSlept,1,1kinghenryiv,1597\nsew,1,1kinghenryiv,1597\nsaying,1,1kinghenryiv,1597\nvice,1,1kinghenryiv,1597\nshrill,1,1kinghenryiv,1597\nHerein,1,1kinghenryiv,1597\nflying,1,1kinghenryiv,1597\nwake,1,1kinghenryiv,1597\nfiddlestick,1,1kinghenryiv,1597\nmustachio,1,1kinghenryiv,1597\ncatching,1,1kinghenryiv,1597\nchronicles,1,1kinghenryiv,1597\nsociety,1,1kinghenryiv,1597\nshe'll,1,1kinghenryiv,1597\ntithe,1,1kinghenryiv,1597\nSung,1,1kinghenryiv,1597\nsallies,1,1kinghenryiv,1597\nshaved,1,1kinghenryiv,1597\npeevish,1,1kinghenryiv,1597\nlions,1,1kinghenryiv,1597\noutlaw,1,1kinghenryiv,1597\ngeese,1,1kinghenryiv,1597\ndoubtless,1,1kinghenryiv,1597\ndisposed,1,1kinghenryiv,1597\nperil,1,1kinghenryiv,1597\nfavourites,1,1kinghenryiv,1597\nDrives,1,1kinghenryiv,1597\ndeliver,1,1kinghenryiv,1597\nMeeting,1,1kinghenryiv,1597\ncradle,1,1kinghenryiv,1597\nliveth,1,1kinghenryiv,1597\nCharge,1,1kinghenryiv,1597\nalderman's,1,1kinghenryiv,1597\nsalve,1,1kinghenryiv,1597\nsnatched,1,1kinghenryiv,1597\nCharming,1,1kinghenryiv,1597\nconfident,1,1kinghenryiv,1597\nchildren's,1,1kinghenryiv,1597\nbringing,1,1kinghenryiv,1597\nwinds,1,1kinghenryiv,1597\n'a,1,1kinghenryiv,1597\nlewdly,1,1kinghenryiv,1597\nraised,1,1kinghenryiv,1597\nfollowed,1,1kinghenryiv,1597\nlooking,1,1kinghenryiv,1597\n'O,1,1kinghenryiv,1597\nscour,1,1kinghenryiv,1597\ndignities,1,1kinghenryiv,1597\nlarger,1,1kinghenryiv,1597\nlivers,1,1kinghenryiv,1597\nprocured,1,1kinghenryiv,1597\nbow'd,1,1kinghenryiv,1597\n's,1,1kinghenryiv,1597\nlivery,1,1kinghenryiv,1597\n't,1,1kinghenryiv,1597\nhusks,1,1kinghenryiv,1597\nequity,1,1kinghenryiv,1597\npermit,1,1kinghenryiv,1597\nextremities,1,1kinghenryiv,1597\ndeserts,1,1kinghenryiv,1597\nbeloved,1,1kinghenryiv,1597\ncommends,1,1kinghenryiv,1597\nlevel,1,1kinghenryiv,1597\ngroans,1,1kinghenryiv,1597\nfaulty,1,1kinghenryiv,1597\ncamps,1,1kinghenryiv,1597\nSetting,1,1kinghenryiv,1597\nsaidst,1,1kinghenryiv,1597\nfaults,1,1kinghenryiv,1597\nOther,1,1kinghenryiv,1597\noffering,1,1kinghenryiv,1597\ndally,1,1kinghenryiv,1597\nmother,1,1kinghenryiv,1597\nbolting,1,1kinghenryiv,1597\nBurning,1,1kinghenryiv,1597\nAttendants,1,1kinghenryiv,1597\nscope,1,1kinghenryiv,1597\nconjunction,1,1kinghenryiv,1597\ncheese,1,1kinghenryiv,1597\nsends,1,1kinghenryiv,1597\ngriffin,1,1kinghenryiv,1597\nappear'd,1,1kinghenryiv,1597\nconsiderations,1,1kinghenryiv,1597\npoverty,1,1kinghenryiv,1597\nCorinthian,1,1kinghenryiv,1597\nstuck,1,1kinghenryiv,1597\nskipping,1,1kinghenryiv,1597\n'kind,1,1kinghenryiv,1597\nswelling,1,1kinghenryiv,1597\nminion,1,1kinghenryiv,1597\neverlasting,1,1kinghenryiv,1597\nmerit,1,1kinghenryiv,1597\nNeeds,1,1kinghenryiv,1597\nbroils,1,1kinghenryiv,1597\naccursed,1,1kinghenryiv,1597\neating,1,1kinghenryiv,1597\nhackney'd,1,1kinghenryiv,1597\nstrappado,1,1kinghenryiv,1597\ntapsters,1,1kinghenryiv,1597\nwhereabout,1,1kinghenryiv,1597\ncompound,1,1kinghenryiv,1597\nSteeples,1,1kinghenryiv,1597\nmusing,1,1kinghenryiv,1597\nbeseeming,1,1kinghenryiv,1597\nFrance,1,1kinghenryiv,1597\nmurmur,1,1kinghenryiv,1597\nfawning,1,1kinghenryiv,1597\n'Fie,1,1kinghenryiv,1597\ncousin's,1,1kinghenryiv,1597\ncancels,1,1kinghenryiv,1597\ninduction,1,1kinghenryiv,1597\nprofess,1,1kinghenryiv,1597\nguarded,1,1kinghenryiv,1597\nliegeman,1,1kinghenryiv,1597\nOfficers,1,1kinghenryiv,1597\nmoulded,1,1kinghenryiv,1597\nreversion,1,1kinghenryiv,1597\ndirect,1,1kinghenryiv,1597\nTurk,1,1kinghenryiv,1597\nparrot,1,1kinghenryiv,1597\nunlooked,1,1kinghenryiv,1597\nbeggarly,1,1kinghenryiv,1597\nexceeding,1,1kinghenryiv,1597\ncocksure,1,1kinghenryiv,1597\nvariest,1,1kinghenryiv,1597\nbots,1,1kinghenryiv,1597\nbewitched,1,1kinghenryiv,1597\nSuspicion,1,1kinghenryiv,1597\nRevolted,1,1kinghenryiv,1597\ndearly,1,1kinghenryiv,1597\nBroke,1,1kinghenryiv,1597\nSound,1,1kinghenryiv,1597\neldest,1,1kinghenryiv,1597\nPardon,1,1kinghenryiv,1597\nunrevenged,1,1kinghenryiv,1597\nWhilst,1,1kinghenryiv,1597\nsue,1,1kinghenryiv,1597\ncries,1,1kinghenryiv,1597\nphysicians,1,1kinghenryiv,1597\ncoloured,1,1kinghenryiv,1597\ntush,1,1kinghenryiv,1597\ngovern'd,1,1kinghenryiv,1597\nsup,1,1kinghenryiv,1597\nbrach,1,1kinghenryiv,1597\nreverence,1,1kinghenryiv,1597\npopularity,1,1kinghenryiv,1597\nfeel,1,1kinghenryiv,1597\nWant,1,1kinghenryiv,1597\nspeediest,1,1kinghenryiv,1597\nfeet,1,1kinghenryiv,1597\nvaliantly,1,1kinghenryiv,1597\nNettled,1,1kinghenryiv,1597\n'scapes,1,1kinghenryiv,1597\ninfinite,1,1kinghenryiv,1597\npannier,1,1kinghenryiv,1597\nhutch,1,1kinghenryiv,1597\nbenches,1,1kinghenryiv,1597\nuncolted,1,1kinghenryiv,1597\ndirected,1,1kinghenryiv,1597\nservice,1,1kinghenryiv,1597\nclaim,1,1kinghenryiv,1597\ndescend,1,1kinghenryiv,1597\nblind,1,1kinghenryiv,1597\n'scaped,1,1kinghenryiv,1597\nbrief,1,1kinghenryiv,1597\nSearch,1,1kinghenryiv,1597\ncamomile,1,1kinghenryiv,1597\naccept,1,1kinghenryiv,1597\nInterpretation,1,1kinghenryiv,1597\ncorrupt,1,1kinghenryiv,1597\nrazors,1,1kinghenryiv,1597\nlet'st,1,1kinghenryiv,1597\n'Not,1,1kinghenryiv,1597\nspeaking,1,1kinghenryiv,1597\nWarwickshire,1,1kinghenryiv,1597\nrooms,1,1kinghenryiv,1597\nartillery,1,1kinghenryiv,1597\nwine,1,1kinghenryiv,1597\nprevent,1,1kinghenryiv,1597\nredeem'd,1,1kinghenryiv,1597\ndamnably,1,1kinghenryiv,1597\nmothers',1,1kinghenryiv,1597\nwished,1,1kinghenryiv,1597\ncuckold,1,1kinghenryiv,1597\nshrink,1,1kinghenryiv,1597\nHence,1,1kinghenryiv,1597\nnails,1,1kinghenryiv,1597\ncavil,1,1kinghenryiv,1597\noily,1,1kinghenryiv,1597\nsphere,1,1kinghenryiv,1597\nMight,1,1kinghenryiv,1597\nnight's,1,1kinghenryiv,1597\nRated,1,1kinghenryiv,1597\ntinker,1,1kinghenryiv,1597\ndreamer,1,1kinghenryiv,1597\nknees,1,1kinghenryiv,1597\nsarcenet,1,1kinghenryiv,1597\ndamnable,1,1kinghenryiv,1597\ncrisp,1,1kinghenryiv,1597\nharmless,1,1kinghenryiv,1597\ndearer,1,1kinghenryiv,1597\nluckily,1,1kinghenryiv,1597\ntrickling,1,1kinghenryiv,1597\nDisgraced,1,1kinghenryiv,1597\npalisadoes,1,1kinghenryiv,1597\ngoose,1,1kinghenryiv,1597\ndisplease,1,1kinghenryiv,1597\nhated,1,1kinghenryiv,1597\ndiet,1,1kinghenryiv,1597\nwish,1,1kinghenryiv,1597\ntrifler,1,1kinghenryiv,1597\nstubble,1,1kinghenryiv,1597\nmurder,1,1kinghenryiv,1597\nthrows,1,1kinghenryiv,1597\ntravellers,1,1kinghenryiv,1597\ninfidel,1,1kinghenryiv,1597\ndevil's,1,1kinghenryiv,1597\nnorthern,1,1kinghenryiv,1597\nseem'd,1,1kinghenryiv,1597\npierce,1,1kinghenryiv,1597\nbulls,1,1kinghenryiv,1597\nwarm,1,1kinghenryiv,1597\nungracious,1,1kinghenryiv,1597\nvoice,1,1kinghenryiv,1597\nbeldam,1,1kinghenryiv,1597\ndukedom,1,1kinghenryiv,1597\nstocks,1,1kinghenryiv,1597\npretty,1,1kinghenryiv,1597\nBloodstained,1,1kinghenryiv,1597\nsanguine,1,1kinghenryiv,1597\nambled,1,1kinghenryiv,1597\nrule,1,1kinghenryiv,1597\nbone,1,1kinghenryiv,1597\nmelted,1,1kinghenryiv,1597\nmistake,1,1kinghenryiv,1597\nboot,1,1kinghenryiv,1597\ndealt,1,1kinghenryiv,1597\nwasp,1,1kinghenryiv,1597\nsteed,1,1kinghenryiv,1597\nprodigy,1,1kinghenryiv,1597\nsteel,1,1kinghenryiv,1597\nPlantagenet,1,1kinghenryiv,1597\nruled,1,1kinghenryiv,1597\nwits,1,1kinghenryiv,1597\nfalsify,1,1kinghenryiv,1597\ninordinate,1,1kinghenryiv,1597\nframed,1,1kinghenryiv,1597\npraised,1,1kinghenryiv,1597\nparts,1,1kinghenryiv,1597\nparty,1,1kinghenryiv,1597\nspoke,1,1kinghenryiv,1597\nschool'd,1,1kinghenryiv,1597\ngripe,1,1kinghenryiv,1597\ndigg'd,1,1kinghenryiv,1597\nAnchovies,1,1kinghenryiv,1597\npraises,1,1kinghenryiv,1597\nimprisoning,1,1kinghenryiv,1597\ndeserves,1,1kinghenryiv,1597\nDrag,1,1kinghenryiv,1597\nbit,1,1kinghenryiv,1597\nvigilant,1,1kinghenryiv,1597\naspect,1,1kinghenryiv,1597\nfeather'd,1,1kinghenryiv,1597\nfoil,1,1kinghenryiv,1597\nbitter,1,1kinghenryiv,1597\nbig,1,1kinghenryiv,1597\nshorter,1,1kinghenryiv,1597\nwherefore,1,1kinghenryiv,1597\ndrove,1,1kinghenryiv,1597\nProphetically,1,1kinghenryiv,1597\nFaith,1,1kinghenryiv,1597\ntalon,1,1kinghenryiv,1597\naim'd,1,1kinghenryiv,1597\ndaff'd,1,1kinghenryiv,1597\nchamber,1,1kinghenryiv,1597\ndishonourable,1,1kinghenryiv,1597\n'But,1,1kinghenryiv,1597\nTakes,1,1kinghenryiv,1597\nunkind,1,1kinghenryiv,1597\nstrongly,1,1kinghenryiv,1597\nHold,1,1kinghenryiv,1597\nmammets,1,1kinghenryiv,1597\nrusty,1,1kinghenryiv,1597\nsnuff,1,1kinghenryiv,1597\nsweeten,1,1kinghenryiv,1597\nHome,1,1kinghenryiv,1597\npotions,1,1kinghenryiv,1597\nfoes,1,1kinghenryiv,1597\ndefile,1,1kinghenryiv,1597\ncomrades,1,1kinghenryiv,1597\nserving,1,1kinghenryiv,1597\nsigh,1,1kinghenryiv,1597\nchronicle,1,1kinghenryiv,1597\nWindsor,1,1kinghenryiv,1597\nAthol,1,1kinghenryiv,1597\nexercise,1,1kinghenryiv,1597\ngranted,1,1kinghenryiv,1597\n'Twere,1,1kinghenryiv,1597\nsores,1,1kinghenryiv,1597\nflattery,1,1kinghenryiv,1597\nAh,1,1kinghenryiv,1597\npacking,1,1kinghenryiv,1597\nignis,1,1kinghenryiv,1597\nslander'd,1,1kinghenryiv,1597\ngorbellied,1,1kinghenryiv,1597\ntransformation,1,1kinghenryiv,1597\nscarce,1,1kinghenryiv,1597\nchaste,1,1kinghenryiv,1597\ngurnet,1,1kinghenryiv,1597\nHie,1,1kinghenryiv,1597\npewter,1,1kinghenryiv,1597\nfool'd,1,1kinghenryiv,1597\nyouthful,1,1kinghenryiv,1597\nbox,1,1kinghenryiv,1597\nloath,1,1kinghenryiv,1597\nsneak,1,1kinghenryiv,1597\nThrowing,1,1kinghenryiv,1597\nstrangers,1,1kinghenryiv,1597\nknowing,1,1kinghenryiv,1597\nresolutely,1,1kinghenryiv,1597\nwash'd,1,1kinghenryiv,1597\nmisused,1,1kinghenryiv,1597\namong,1,1kinghenryiv,1597\ndesperate,1,1kinghenryiv,1597\nStill,1,1kinghenryiv,1597\nblown,1,1kinghenryiv,1597\nhen,1,1kinghenryiv,1597\npenn'd,1,1kinghenryiv,1597\nDepose,1,1kinghenryiv,1597\nPlay,1,1kinghenryiv,1597\nCharles',1,1kinghenryiv,1597\nbag,1,1kinghenryiv,1597\nDismiss,1,1kinghenryiv,1597\npointed,1,1kinghenryiv,1597\nBy'r,1,1kinghenryiv,1597\nbad,1,1kinghenryiv,1597\nhitherto,1,1kinghenryiv,1597\nsecretly,1,1kinghenryiv,1597\nO',1,1kinghenryiv,1597\nsensible,1,1kinghenryiv,1597\nsinew,1,1kinghenryiv,1597\npays,1,1kinghenryiv,1597\nPlain,1,1kinghenryiv,1597\n'Lay,1,1kinghenryiv,1597\nholidays,1,1kinghenryiv,1597\nkings,1,1kinghenryiv,1597\nspeakest,1,1kinghenryiv,1597\ndenier,1,1kinghenryiv,1597\nbrained,1,1kinghenryiv,1597\ndenied,1,1kinghenryiv,1597\narchbishop,1,1kinghenryiv,1597\nstab,1,1kinghenryiv,1597\nProclaim,1,1kinghenryiv,1597\nforce,1,1kinghenryiv,1597\ndyeing,1,1kinghenryiv,1597\nhid,1,1kinghenryiv,1597\nfinds,1,1kinghenryiv,1597\niteration,1,1kinghenryiv,1597\nLetters,1,1kinghenryiv,1597\nmotions,1,1kinghenryiv,1597\nheinously,1,1kinghenryiv,1597\nhit,1,1kinghenryiv,1597\nexact,1,1kinghenryiv,1597\ntear,1,1kinghenryiv,1597\nignominy,1,1kinghenryiv,1597\nturkeys,1,1kinghenryiv,1597\nunsteadfast,1,1kinghenryiv,1597\napprove,1,1kinghenryiv,1597\nharness'd,1,1kinghenryiv,1597\nfatal,1,1kinghenryiv,1597\nteam,1,1kinghenryiv,1597\nunruly,1,1kinghenryiv,1597\nblest,1,1kinghenryiv,1597\ndamm'd,1,1kinghenryiv,1597\nbless,1,1kinghenryiv,1597\nowner,1,1kinghenryiv,1597\nstrangely,1,1kinghenryiv,1597\nSwore,1,1kinghenryiv,1597\nappoint,1,1kinghenryiv,1597\ngrease,1,1kinghenryiv,1597\nintestine,1,1kinghenryiv,1597\nindenture,1,1kinghenryiv,1597\npolitician,1,1kinghenryiv,1597\ncontracted,1,1kinghenryiv,1597\nproverbs,1,1kinghenryiv,1597\nbruised,1,1kinghenryiv,1597\ninnovation,1,1kinghenryiv,1597\napplaud,1,1kinghenryiv,1597\nLet's,1,1kinghenryiv,1597\nSeldom,1,1kinghenryiv,1597\nagreement,1,1kinghenryiv,1597\nDoubt,1,1kinghenryiv,1597\npast,1,1kinghenryiv,1597\ncommendation,1,1kinghenryiv,1597\nabhorred,1,1kinghenryiv,1597\nunloaded,1,1kinghenryiv,1597\nwhipp'd,1,1kinghenryiv,1597\npit,1,1kinghenryiv,1597\nSworn,1,1kinghenryiv,1597\npox,1,1kinghenryiv,1597\ngrandfather,1,1kinghenryiv,1597\nnice,1,1kinghenryiv,1597\nget'st,1,1kinghenryiv,1597\nadmiral,1,1kinghenryiv,1597\nthighs,1,1kinghenryiv,1597\nquantity,1,1kinghenryiv,1597\nnobly,1,1kinghenryiv,1597\nRising,1,1kinghenryiv,1597\nCapitulate,1,1kinghenryiv,1597\noutlive,1,1kinghenryiv,1597\nchurches,1,1kinghenryiv,1597\nSeems,1,1kinghenryiv,1597\nbecame,1,1kinghenryiv,1597\nheady,1,1kinghenryiv,1597\ntemple,1,1kinghenryiv,1597\nbrawling,1,1kinghenryiv,1597\nSt,1,1kinghenryiv,1597\ndevices,1,1kinghenryiv,1597\nfoully,1,1kinghenryiv,1597\ntheft,1,1kinghenryiv,1597\nMingled,1,1kinghenryiv,1597\ngod,1,1kinghenryiv,1597\nbroached,1,1kinghenryiv,1597\nhaunt,1,1kinghenryiv,1597\niniquity,1,1kinghenryiv,1597\nTrembling,1,1kinghenryiv,1597\nAfford,1,1kinghenryiv,1597\nthorn,1,1kinghenryiv,1597\ntrimly,1,1kinghenryiv,1597\nbull,1,1kinghenryiv,1597\nbulk,1,1kinghenryiv,1597\ncoinage,1,1kinghenryiv,1597\nweep,1,1kinghenryiv,1597\nchallenge,1,1kinghenryiv,1597\ndeputy's,1,1kinghenryiv,1597\nwriters,1,1kinghenryiv,1597\nproportion,1,1kinghenryiv,1597\nnigh,1,1kinghenryiv,1597\ngummed,1,1kinghenryiv,1597\nReceive,1,1kinghenryiv,1597\nHeard,1,1kinghenryiv,1597\ncanker,1,1kinghenryiv,1597\nmetal,1,1kinghenryiv,1597\nHeart,1,1kinghenryiv,1597\nknotty,1,1kinghenryiv,1597\nsuffer'd,1,1kinghenryiv,1597\nincursions,1,1kinghenryiv,1597\ndrench,1,1kinghenryiv,1597\nthunderbolt,1,1kinghenryiv,1597\nsixpenny,1,1kinghenryiv,1597\ntruncheon,1,1kinghenryiv,1597\ncrush,1,1kinghenryiv,1597\ncap,1,1kinghenryiv,1597\nloach,1,1kinghenryiv,1597\nUseth,1,1kinghenryiv,1597\n'Rivo,1,1kinghenryiv,1597\ncorpse,1,1kinghenryiv,1597\nsincerity,1,1kinghenryiv,1597\nornament,1,1kinghenryiv,1597\nCompany,1,1kinghenryiv,1597\nuncertainty,1,1kinghenryiv,1597\naltar,1,1kinghenryiv,1597\nshuffling,1,1kinghenryiv,1597\ncorpulent,1,1kinghenryiv,1597\ndetraction,1,1kinghenryiv,1597\nparapets,1,1kinghenryiv,1597\nyon,1,1kinghenryiv,1597\nkidneyed,1,1kinghenryiv,1597\nanything,1,1kinghenryiv,1597\ndevised,1,1kinghenryiv,1597\nsedgy,1,1kinghenryiv,1597\nSirs,1,1kinghenryiv,1597\ngaze,1,1kinghenryiv,1597\nbent,1,1kinghenryiv,1597\nmemorandums,1,1kinghenryiv,1597\ncraft,1,1kinghenryiv,1597\nquilt,1,1kinghenryiv,1597\nunbuttoning,1,1kinghenryiv,1597\nshadow,1,1kinghenryiv,1597\nmodestly,1,1kinghenryiv,1597\nenlargement,1,1kinghenryiv,1597\nLies,1,1kinghenryiv,1597\nvaunting,1,1kinghenryiv,1597\nidleness,1,1kinghenryiv,1597\ngape,1,1kinghenryiv,1597\nmainly,1,1kinghenryiv,1597\nequals,1,1kinghenryiv,1597\nsumptuous,1,1kinghenryiv,1597\nstarving,1,1kinghenryiv,1597\nsepulchre,1,1kinghenryiv,1597\njure,1,1kinghenryiv,1597\nafore,1,1kinghenryiv,1597\nDies,1,1kinghenryiv,1597\nDeath's,1,1kinghenryiv,1597\npacified,1,1kinghenryiv,1597\nantic,1,1kinghenryiv,1597\ntwice,1,1kinghenryiv,1597\nlevers,1,1kinghenryiv,1597\nextreme,1,1kinghenryiv,1597\nSpanish,1,1kinghenryiv,1597\nbavin,1,1kinghenryiv,1597\nHolds,1,1kinghenryiv,1597\ntheme,1,1kinghenryiv,1597\nreputeless,1,1kinghenryiv,1597\nconquest,1,1kinghenryiv,1597\ncantle,1,1kinghenryiv,1597\nswift,1,1kinghenryiv,1597\nforgetful,1,1kinghenryiv,1597\nShakes,1,1kinghenryiv,1597\nbeef,1,1kinghenryiv,1597\nYe,1,1kinghenryiv,1597\nAbove,1,1kinghenryiv,1597\nvassal,1,1kinghenryiv,1597\nsubmission,1,1kinghenryiv,1597\nraising,1,1kinghenryiv,1597\nhilts,1,1kinghenryiv,1597\ntravel,1,1kinghenryiv,1597\nfrowns,1,1kinghenryiv,1597\nquips,1,1kinghenryiv,1597\nsurvey,1,1kinghenryiv,1597\ngown,1,1kinghenryiv,1597\nMeet,1,1kinghenryiv,1597\nAbout,1,1kinghenryiv,1597\nWhate'er,1,1kinghenryiv,1597\nswine,1,1kinghenryiv,1597\ndoest,1,1kinghenryiv,1597\ncrack'd,1,1kinghenryiv,1597\nconsciences,1,1kinghenryiv,1597\nmajority,1,1kinghenryiv,1597\nsink,1,1kinghenryiv,1597\ngarters,1,1kinghenryiv,1597\nscoring,1,1kinghenryiv,1597\nbonfire,1,1kinghenryiv,1597\nby',1,1kinghenryiv,1597\n'Twas,1,1kinghenryiv,1597\ndispraising,1,1kinghenryiv,1597\nImagination,1,1kinghenryiv,1597\nWelshman,1,1kinghenryiv,1597\nstretch,1,1kinghenryiv,1597\nhourly,1,1kinghenryiv,1597\nassign'd,1,1kinghenryiv,1597\nlieutenants,1,1kinghenryiv,1597\nGot,1,1kinghenryiv,1597\nfooting,1,1kinghenryiv,1597\ngash,1,1kinghenryiv,1597\nmists,1,1kinghenryiv,1597\ndispleasing,1,1kinghenryiv,1597\ncrowned,1,1kinghenryiv,1597\nbeginning,1,1kinghenryiv,1597\nanointed,1,1kinghenryiv,1597\noxen,1,1kinghenryiv,1597\nradish,1,1kinghenryiv,1597\nbegin,1,1kinghenryiv,1597\nbull's,1,1kinghenryiv,1597\nShaked,1,1kinghenryiv,1597\nriver,1,1kinghenryiv,1597\nostlers,1,1kinghenryiv,1597\ndogs,1,1kinghenryiv,1597\nstore,1,1kinghenryiv,1597\nLand,1,1kinghenryiv,1597\nstuffed,1,1kinghenryiv,1597\nentertain,1,1kinghenryiv,1597\neagles,1,1kinghenryiv,1597\nimpatience,1,1kinghenryiv,1597\nstory,1,1kinghenryiv,1597\ndeer,1,1kinghenryiv,1597\nwiped,1,1kinghenryiv,1597\npromised,1,1kinghenryiv,1597\n'that,1,1kinghenryiv,1597\nGelding,1,1kinghenryiv,1597\nharness,1,1kinghenryiv,1597\nmood,1,1kinghenryiv,1597\nimage,1,1kinghenryiv,1597\neloquence,1,1kinghenryiv,1597\ngage,1,1kinghenryiv,1597\nconfess,1,1kinghenryiv,1597\nSwearest,1,1kinghenryiv,1597\nexpedience,1,1kinghenryiv,1597\nrakers,1,1kinghenryiv,1597\nForty,1,1kinghenryiv,1597\ndoff,1,1kinghenryiv,1597\ngift,1,1kinghenryiv,1597\njesters,1,1kinghenryiv,1597\naid,1,1kinghenryiv,1597\nGilliams,1,1kinghenryiv,1597\nshouts,1,1kinghenryiv,1597\nfaster,1,1kinghenryiv,1597\nconsider,1,1kinghenryiv,1597\nrepute,1,1kinghenryiv,1597\nloop,1,1kinghenryiv,1597\nfavour,1,1kinghenryiv,1597\n'Give,1,1kinghenryiv,1597\nsafe,1,1kinghenryiv,1597\n'cross,1,1kinghenryiv,1597\nstool,1,1kinghenryiv,1597\nquailing,1,1kinghenryiv,1597\nsuccor,1,1kinghenryiv,1597\nWanton,1,1kinghenryiv,1597\nmurderous,1,1kinghenryiv,1597\ncurlish,1,1kinghenryiv,1597\namendment,1,1kinghenryiv,1597\nswearing,1,1kinghenryiv,1597\ngravely,1,1kinghenryiv,1597\ndisturbed,1,1kinghenryiv,1597\nstony,1,1kinghenryiv,1597\nprofaned,1,1kinghenryiv,1597\nRevenge,1,1kinghenryiv,1597\nliberal,1,1kinghenryiv,1597\ngait,1,1kinghenryiv,1597\nvouchsafe,1,1kinghenryiv,1597\nBerkley,1,1kinghenryiv,1597\nant,1,1kinghenryiv,1597\ndignity,1,1kinghenryiv,1597\nzounds,1,1kinghenryiv,1597\nseeing,1,1kinghenryiv,1597\ngild,1,1kinghenryiv,1597\nbefriend,1,1kinghenryiv,1597\nlent,1,1kinghenryiv,1597\nholiday,1,1kinghenryiv,1597\ntime's,1,1kinghenryiv,1597\nsuggestion,1,1kinghenryiv,1597\nstain'd,1,1kinghenryiv,1597\nlighted,1,1kinghenryiv,1597\ndraff,1,1kinghenryiv,1597\ngall,1,1kinghenryiv,1597\nboast,1,1kinghenryiv,1597\nnettle,1,1kinghenryiv,1597\nwaist,1,1kinghenryiv,1597\nforged,1,1kinghenryiv,1597\nstole,1,1kinghenryiv,1597\ntorches,1,1kinghenryiv,1597\nlaughing,1,1kinghenryiv,1597\naffrighted,1,1kinghenryiv,1597\nlends,1,1kinghenryiv,1597\nay,1,1kinghenryiv,1597\nale,1,1kinghenryiv,1597\nDirectly,1,1kinghenryiv,1597\ngame,1,1kinghenryiv,1597\ngentlewoman,1,1kinghenryiv,1597\nmetre,1,1kinghenryiv,1597\nHydra's,1,1kinghenryiv,1597\nholland,1,1kinghenryiv,1597\ncruelty,1,1kinghenryiv,1597\nah,1,1kinghenryiv,1597\ntemperate,1,1kinghenryiv,1597\ngallons,1,1kinghenryiv,1597\nluggage,1,1kinghenryiv,1597\ncrosses,1,1kinghenryiv,1597\ndoom,1,1kinghenryiv,1597\nhallown,1,1kinghenryiv,1597\ncolic,1,1kinghenryiv,1597\nrouse,1,1kinghenryiv,1597\ndried,1,1kinghenryiv,1597\nsheath,1,1kinghenryiv,1597\nbutton,1,1kinghenryiv,1597\nob,1,1kinghenryiv,1597\nportend,1,1kinghenryiv,1597\nMaster,1,1kinghenryiv,1597\nbetray'd,1,1kinghenryiv,1597\nabominable,1,1kinghenryiv,1597\npaunch,1,1kinghenryiv,1597\nboard,1,1kinghenryiv,1597\nox,1,1kinghenryiv,1597\ndamn'd,1,1kinghenryiv,1597\nWorcester's,1,1kinghenryiv,1597\nrain'd,1,1kinghenryiv,1597\ncommitted,1,1kinghenryiv,1597\ndelay,1,1kinghenryiv,1597\nOthers,1,1kinghenryiv,1597\nstrain,1,1kinghenryiv,1597\nmeteor,1,1kinghenryiv,1597\nmoss,1,1kinghenryiv,1597\nstrait,1,1kinghenryiv,1597\nutmost,1,1kinghenryiv,1597\nthrill,1,1kinghenryiv,1597\nCounterfeit,1,1kinghenryiv,1597\ngibbets,1,1kinghenryiv,1597\ncurbs,1,1kinghenryiv,1597\nmisbegotten,1,1kinghenryiv,1597\nacres,1,1kinghenryiv,1597\nFortune's,1,1kinghenryiv,1597\nportent,1,1kinghenryiv,1597\nunhandsome,1,1kinghenryiv,1597\nidle,1,1kinghenryiv,1597\n'Where,1,1kinghenryiv,1597\nLive,1,1kinghenryiv,1597\n'Some,1,1kinghenryiv,1597\nsometime,1,1kinghenryiv,1597\nReads,1,1kinghenryiv,1597\nDiseased,1,1kinghenryiv,1597\n'sblood,1,1kinghenryiv,1597\nTook,1,1kinghenryiv,1597\nIndia,1,1kinghenryiv,1597\nnear'st,1,1kinghenryiv,1597\nlackeys,1,1kinghenryiv,1597\ngyves,1,1kinghenryiv,1597\nmori,1,1kinghenryiv,1597\nsalamander,1,1kinghenryiv,1597\nEmbowelled,1,1kinghenryiv,1597\nstout,1,1kinghenryiv,1597\nchallenged,1,1kinghenryiv,1597\nloud,1,1kinghenryiv,1597\noffer'd,1,1kinghenryiv,1597\nendure,1,1kinghenryiv,1597\nhostility,1,1kinghenryiv,1597\ncarded,1,1kinghenryiv,1597\nlevy,1,1kinghenryiv,1597\nado,1,1kinghenryiv,1597\nloss,1,1kinghenryiv,1597\nWouldst,1,1kinghenryiv,1597\nYes,1,1kinghenryiv,1597\nsweetness,1,1kinghenryiv,1597\nbeholding,1,1kinghenryiv,1597\ninterchangeably,1,1kinghenryiv,1597\nspeak'st,1,1kinghenryiv,1597\nachieved,1,1kinghenryiv,1597\nsucker,1,1kinghenryiv,1597\ntalkest,1,1kinghenryiv,1597\npotent,1,1kinghenryiv,1597\nMerlin,1,1kinghenryiv,1597\ndispose,1,1kinghenryiv,1597\nill,1,1kinghenryiv,1597\nafternoon,1,1kinghenryiv,1597\nunthought,1,1kinghenryiv,1597\nCut's,1,1kinghenryiv,1597\ntermagant,1,1kinghenryiv,1597\nall's,1,1kinghenryiv,1597\ndole,1,1kinghenryiv,1597\nknot,1,1kinghenryiv,1597\nfilling,1,1kinghenryiv,1597\nblue,1,1kinghenryiv,1597\nbruising,1,1kinghenryiv,1597\nhostile,1,1kinghenryiv,1597\ncontinent,1,1kinghenryiv,1597\nnecessary,1,1kinghenryiv,1597\nadventurous,1,1kinghenryiv,1597\nlock'd,1,1kinghenryiv,1597\ngreater,1,1kinghenryiv,1597\nrevengement,1,1kinghenryiv,1597\nbootless,1,1kinghenryiv,1597\nwestward,1,1kinghenryiv,1597\nembowel,1,1kinghenryiv,1597\nsubornation,1,1kinghenryiv,1597\ncrossings,1,1kinghenryiv,1597\nnimbly,1,1kinghenryiv,1597\nscatter'd,1,1kinghenryiv,1597\nProclaim'd,1,1kinghenryiv,1597\njourney,1,1kinghenryiv,1597\nwithered,1,1kinghenryiv,1597\nbristle,1,1kinghenryiv,1597\nFresh,1,1kinghenryiv,1597\nsun's,1,1kinghenryiv,1597\nreasonably,1,1kinghenryiv,1597\nrascalliest,1,1kinghenryiv,1597\nharp,1,1kinghenryiv,1597\nclipp'd,1,1kinghenryiv,1597\nDowlas,1,1kinghenryiv,1597\naccents,1,1kinghenryiv,1597\nbasely,1,1kinghenryiv,1597\ntailor's,1,1kinghenryiv,1597\nhob,1,1kinghenryiv,1597\ncital,1,1kinghenryiv,1597\nhavoc,1,1kinghenryiv,1597\nColour,1,1kinghenryiv,1597\ntempted,1,1kinghenryiv,1597\npersonal,1,1kinghenryiv,1597\nramping,1,1kinghenryiv,1597\npuny,1,1kinghenryiv,1597\nscratch,1,1kinghenryiv,1597\nBread,1,1kinghenryiv,1597\noutward,1,1kinghenryiv,1597\nunmannerly,1,1kinghenryiv,1597\npark,1,1kinghenryiv,1597\nplump,1,1kinghenryiv,1597\nBreak,1,1kinghenryiv,1597\nstrangle,1,1kinghenryiv,1597\nRan,1,1kinghenryiv,1597\ncozening,1,1kinghenryiv,1597\nreasonable,1,1kinghenryiv,1597\nenterprises,1,1kinghenryiv,1597\nwards,1,1kinghenryiv,1597\npilgrims,1,1kinghenryiv,1597\nstring,1,1kinghenryiv,1597\nEDMUND,1,1kinghenryiv,1597\nremember'd,1,1kinghenryiv,1597\nkeen,1,1kinghenryiv,1597\nsoldier's,1,1kinghenryiv,1597\nlewd,1,1kinghenryiv,1597\nhall,1,1kinghenryiv,1597\nmanifold,1,1kinghenryiv,1597\nhue,1,1kinghenryiv,1597\nARCHBISHOP'S,1,1kinghenryiv,1597\nround,1,1kinghenryiv,1597\nhaunts,1,1kinghenryiv,1597\nlabouring,1,1kinghenryiv,1597\nChristian,1,1kinghenryiv,1597\n'gentle,1,1kinghenryiv,1597\nunthankful,1,1kinghenryiv,1597\nDiana's,1,1kinghenryiv,1597\nForetells,1,1kinghenryiv,1597\nCambyses',1,1kinghenryiv,1597\nnearer,1,1kinghenryiv,1597\ndoteth,1,1kinghenryiv,1597\nculverin,1,1kinghenryiv,1597\nneat's,1,1kinghenryiv,1597\nfowl,1,1kinghenryiv,1597\nBurton,1,1kinghenryiv,1597\nintended,1,1kinghenryiv,1597\nhelpful,1,1kinghenryiv,1597\nshortness,1,1kinghenryiv,1597\nHercules,1,1kinghenryiv,1597\ncontinually,1,1kinghenryiv,1597\nperform'd,1,1kinghenryiv,1597\nswathling,1,1kinghenryiv,1597\nacknowledge,1,1kinghenryiv,1597\ntrade,1,1kinghenryiv,1597\nredoubled,1,1kinghenryiv,1597\nrushes,1,1kinghenryiv,1597\nappears,1,1kinghenryiv,1597\nLady,1,1kinghenryiv,1597\nreach,1,1kinghenryiv,1597\npuke,1,1kinghenryiv,1597\nbunch,1,1kinghenryiv,1597\nplain,1,1kinghenryiv,1597\nlanes,1,1kinghenryiv,1597\nMoor,1,1kinghenryiv,1597\nsighing,1,1kinghenryiv,1597\nMoon,1,1kinghenryiv,1597\ntrace,1,1kinghenryiv,1597\navoided,1,1kinghenryiv,1597\nknocking,1,1kinghenryiv,1597\npant,1,1kinghenryiv,1597\nlegged,1,1kinghenryiv,1597\nparticulars,1,1kinghenryiv,1597\nsully,1,1kinghenryiv,1597\nperpetual,1,1kinghenryiv,1597\nexamine,1,1kinghenryiv,1597\nslovenly,1,1kinghenryiv,1597\nwhether,1,1kinghenryiv,1597\ncity,1,1kinghenryiv,1597\nrudely,1,1kinghenryiv,1597\nsixpence',1,1kinghenryiv,1597\nbathed,1,1kinghenryiv,1597\nbrothers,1,1kinghenryiv,1597\nweeps,1,1kinghenryiv,1597\nancients,1,1kinghenryiv,1597\nform,1,1kinghenryiv,1597\nprepare,1,1kinghenryiv,1597\nkingdoms,1,1kinghenryiv,1597\nBrooks,1,1kinghenryiv,1597\nimpatient,1,1kinghenryiv,1597\nneglect,1,1kinghenryiv,1597\nbloodily,1,1kinghenryiv,1597\nforswearing,1,1kinghenryiv,1597\nLaid,1,1kinghenryiv,1597\nheaviness,1,1kinghenryiv,1597\nreturn'd,1,1kinghenryiv,1597\nunbound,1,1kinghenryiv,1597\nsouthern,1,1kinghenryiv,1597\nspit,1,1kinghenryiv,1597\nemptied,1,1kinghenryiv,1597\nplotted,1,1kinghenryiv,1597\nwasted,1,1kinghenryiv,1597\nengage,1,1kinghenryiv,1597\nape,1,1kinghenryiv,1597\nmended,1,1kinghenryiv,1597\nforesters,1,1kinghenryiv,1597\napiece,1,1kinghenryiv,1597\nwalked,1,1kinghenryiv,1597\nfooted,1,1kinghenryiv,1597\nevenly,1,1kinghenryiv,1597\nowes,1,1kinghenryiv,1597\nshaken,1,1kinghenryiv,1597\nRemorse,1,1kinghenryiv,1597\npace,1,1kinghenryiv,1597\nkittened,1,1kinghenryiv,1597\nMichaelmas,1,1kinghenryiv,1597\ndetermination,1,1kinghenryiv,1597\nyielder,1,1kinghenryiv,1597\nputs,1,1kinghenryiv,1597\nCase,1,1kinghenryiv,1597\nexcept,1,1kinghenryiv,1597\nfrets,1,1kinghenryiv,1597\nfall'n,1,1kinghenryiv,1597\nLeading,1,1kinghenryiv,1597\ndetested,1,1kinghenryiv,1597\nfiend,1,1kinghenryiv,1597\nnapkins,1,1kinghenryiv,1597\ncontain,1,1kinghenryiv,1597\nimages,1,1kinghenryiv,1597\nprepared,1,1kinghenryiv,1597\nrevenge,1,1kinghenryiv,1597\ncourses,1,1kinghenryiv,1597\nathwart,1,1kinghenryiv,1597\nagents,1,1kinghenryiv,1597\nHot,1,1kinghenryiv,1597\nrenowned,1,1kinghenryiv,1597\nunlucky,1,1kinghenryiv,1597\nLamp,1,1kinghenryiv,1597\naccidents,1,1kinghenryiv,1597\nattempts,1,1kinghenryiv,1597\nmaiden,1,1kinghenryiv,1597\nvaulted,1,1kinghenryiv,1597\nbegets,1,1kinghenryiv,1597\ntoasts,1,1kinghenryiv,1597\nwaylaid,1,1kinghenryiv,1597\nterm,1,1kinghenryiv,1597\nRobin,1,1kinghenryiv,1597\nstocking,1,1kinghenryiv,1597\nShe'll,1,1kinghenryiv,1597\nbeggars,1,1kinghenryiv,1597\nsovereign'st,1,1kinghenryiv,1597\nthanks,1,1kinghenryiv,1597\nroll,1,1kinghenryiv,1597\nbeans,1,1kinghenryiv,1597\ninquire,1,1kinghenryiv,1597\nHark,1,1kinghenryiv,1597\nfew,1,1kinghenryiv,1597\nslightest,1,1kinghenryiv,1597\ngrinning,1,1kinghenryiv,1597\nshotten,1,1kinghenryiv,1597\ncheque,1,1kinghenryiv,1597\nchides,1,1kinghenryiv,1597\nwildfire,1,1kinghenryiv,1597\nnaughty,1,1kinghenryiv,1597\nbehavior,1,1kinghenryiv,1597\nscandalized,1,1kinghenryiv,1597\nhurlyburly,1,1kinghenryiv,1597\nfantasy,1,1kinghenryiv,1597\nvisited,1,1kinghenryiv,1597\ndaring,1,1kinghenryiv,1597\nexperiments,1,1kinghenryiv,1597\nbroil,1,1kinghenryiv,1597\nfoundation,1,1kinghenryiv,1597\nbrain'd,1,1kinghenryiv,1597\nbountiful,1,1kinghenryiv,1597\nSatan,1,1kinghenryiv,1597\nQuit,1,1kinghenryiv,1597\nJesus,1,1kinghenryiv,1597\nessentially,1,1kinghenryiv,1597\nguess,1,1kinghenryiv,1597\nguest,1,1kinghenryiv,1597\nkindled,1,1kinghenryiv,1597\nthought's,1,1kinghenryiv,1597\ntreasures,1,1kinghenryiv,1597\nchange,1,1kinghenryiv,1597\nwhistling,1,1kinghenryiv,1597\nprecedent,1,1kinghenryiv,1597\nEurope,1,1kinghenryiv,1597\njaws,1,1kinghenryiv,1597\nLucifer,1,1kinghenryiv,1597\ncapital,1,1kinghenryiv,1597\nsurgery,1,1kinghenryiv,1597\nsuperfluous,1,1kinghenryiv,1597\nwitch,1,1kinghenryiv,1597\nNorth,1,1kinghenryiv,1597\ntriumph'd,1,1kinghenryiv,1597\ncanvas,1,1kinghenryiv,1597\nfan,1,1kinghenryiv,1597\nsignum,1,1kinghenryiv,1597\nleak,1,1kinghenryiv,1597\nrood,1,1kinghenryiv,1597\nbrewer's,1,1kinghenryiv,1597\nactive,1,1kinghenryiv,1597\nleap,1,1kinghenryiv,1597\ntherewith,1,1kinghenryiv,1597\npontifical,1,1kinghenryiv,1597\nrender'd,1,1kinghenryiv,1597\nsurfeited,1,1kinghenryiv,1597\nwashes,1,1kinghenryiv,1597\ndrawers,1,1kinghenryiv,1597\nnag,1,1kinghenryiv,1597\nlavish,1,1kinghenryiv,1597\nesperance,1,1kinghenryiv,1597\nPhoebus,1,1kinghenryiv,1597\nbreathes,1,1kinghenryiv,1597\nravishing,1,1kinghenryiv,1597\nkeeps,1,1kinghenryiv,1597\nconfederacy,1,1kinghenryiv,1597\nbubbles,1,1kinghenryiv,1597\nbreeds,1,1kinghenryiv,1597\nmaim,1,1kinghenryiv,1597\nmain,1,1kinghenryiv,1597\nunhanged,1,1kinghenryiv,1597\nobscene,1,1kinghenryiv,1597\nsprightly,1,1kinghenryiv,1597\nmaid,1,1kinghenryiv,1597\nconsider'd,1,1kinghenryiv,1597\nballad,1,1kinghenryiv,1597\nventure,1,1kinghenryiv,1597\nthreescore,1,1kinghenryiv,1597\nMalevolent,1,1kinghenryiv,1597\nswallowing,1,1kinghenryiv,1597\nimpressed,1,1kinghenryiv,1597\nyounker,1,1kinghenryiv,1597\nhind,1,1kinghenryiv,1597\nempty,1,1kinghenryiv,1597\nTen,1,1kinghenryiv,1597\ncarries,1,1kinghenryiv,1597\ncanker'd,1,1kinghenryiv,1597\ncarrier,1,1kinghenryiv,1597\nshrunk,1,1kinghenryiv,1597\nlayest,1,1kinghenryiv,1597\napprehension,1,1kinghenryiv,1597\nbarons,1,1kinghenryiv,1597\ngammon,1,1kinghenryiv,1597\nbreathed,1,1kinghenryiv,1597\nmischief,1,1kinghenryiv,1597\nrascals,1,1kinghenryiv,1597\nPaunch,1,1kinghenryiv,1597\nperpendicular,1,1kinghenryiv,1597\nfaction,1,1kinghenryiv,1597\nfranklin,1,1kinghenryiv,1597\njoyed,1,1kinghenryiv,1597\nhearken'd,1,1kinghenryiv,1597\nriding,1,1kinghenryiv,1597\nretires,1,1kinghenryiv,1597\nwhelp,1,1kinghenryiv,1597\nwilfully,1,1kinghenryiv,1597\ntrenching,1,1kinghenryiv,1597\nsmallest,1,1kinghenryiv,1597\nnourish,1,1kinghenryiv,1597\nBetter,1,1kinghenryiv,1597\nflocks,1,1kinghenryiv,1597\nElse,1,1kinghenryiv,1597\nHalf,1,1kinghenryiv,1597\nadvisedly,1,1kinghenryiv,1597\n'when,1,1kinghenryiv,1597\ncolossus,1,1kinghenryiv,1597\nfurniture,1,1kinghenryiv,1597\nalmost,1,1kinghenryiv,1597\ntrenches,1,1kinghenryiv,1597\ngavest,1,1kinghenryiv,1597\nloggerheads,1,1kinghenryiv,1597\nShow'd,1,1kinghenryiv,1597\napple,1,1kinghenryiv,1597\nrestore,1,1kinghenryiv,1597\nlocks,1,1kinghenryiv,1597\ngently,1,1kinghenryiv,1597\ndrinkings,1,1kinghenryiv,1597\npinch'd,1,1kinghenryiv,1597\nnoon,1,1kinghenryiv,1597\ngivest,1,1kinghenryiv,1597\ndeserving,1,1kinghenryiv,1597\nAmamon,1,1kinghenryiv,1597\nmajor,1,1kinghenryiv,1597\ndevils',1,1kinghenryiv,1597\nYedward,1,1kinghenryiv,1597\ncapons,1,1kinghenryiv,1597\nexceedingly,1,1kinghenryiv,1597\nvapours,1,1kinghenryiv,1597\ncontention,1,1kinghenryiv,1597\ndaily,1,1kinghenryiv,1597\nrash,1,1kinghenryiv,1597\nbrazen,1,1kinghenryiv,1597\ntender,1,1kinghenryiv,1597\nForbad,1,1kinghenryiv,1597\ndrunkard,1,1kinghenryiv,1597\nbravely,1,1kinghenryiv,1597\ntraitors,1,1kinghenryiv,1597\ncandle,1,1kinghenryiv,1597\nExcursions,1,1kinghenryiv,1597\n'Stand',1,1kinghenryiv,1597\npellmell,1,1kinghenryiv,1597\nbestirr'd,1,1kinghenryiv,1597\nmisuse,1,1kinghenryiv,1597\nnonce,1,1kinghenryiv,1597\nextant,1,1kinghenryiv,1597\ndangers,1,1kinghenryiv,1597\nLove,1,1kinghenryiv,1597\ntacked,1,1kinghenryiv,1597\nBase,1,1kinghenryiv,1597\nleathern,1,1kinghenryiv,1597\nsquires,1,1kinghenryiv,1597\nwandering,1,1kinghenryiv,1597\nSoft,1,1kinghenryiv,1597\nchase,1,1kinghenryiv,1597\nrestrain,1,1kinghenryiv,1597\n'By,1,1kinghenryiv,1597\nDown,1,1kinghenryiv,1597\nsubstance,1,1kinghenryiv,1597\nwritten,1,1kinghenryiv,1597\nbridges,1,1kinghenryiv,1597\nforesee,1,1kinghenryiv,1597\nSit,1,1kinghenryiv,1597\nlearning,1,1kinghenryiv,1597\nbuffeting,1,1kinghenryiv,1597\nnarrow,1,1kinghenryiv,1597\ntristful,1,1kinghenryiv,1597\naffections,1,1kinghenryiv,1597\nthirsty,1,1kinghenryiv,1597\nstays,1,1kinghenryiv,1597\nupstairs,1,1kinghenryiv,1597\nequally,1,1kinghenryiv,1597\nprogress,1,1kinghenryiv,1597\nhaughtiness,1,1kinghenryiv,1597\nfairy,1,1kinghenryiv,1597\nperform,1,1kinghenryiv,1597\no'erturn,1,1kinghenryiv,1597\nparting,1,1kinghenryiv,1597\nadopted,1,1kinghenryiv,1597\nMonday,1,1kinghenryiv,1597\nthreefold,1,1kinghenryiv,1597\nignorant,1,1kinghenryiv,1597\ngingerbread,1,1kinghenryiv,1597\nunhappy,1,1kinghenryiv,1597\nchuffs,1,1kinghenryiv,1597\neggs,1,1kinghenryiv,1597\nransomless,1,1kinghenryiv,1597\nseveral,1,1kinghenryiv,1597\ngallantly,1,1kinghenryiv,1597\nsawest,1,1kinghenryiv,1597\nAlban's,1,1kinghenryiv,1597\ncloak,1,1kinghenryiv,1597\nbestride,1,1kinghenryiv,1597\nleaving,1,1kinghenryiv,1597\nchild,1,1kinghenryiv,1597\nLoud,1,1kinghenryiv,1597\nTurns,1,1kinghenryiv,1597\nprecious,1,1kinghenryiv,1597\nplaced,1,1kinghenryiv,1597\nPeas,1,1kinghenryiv,1597\nunprovided,1,1kinghenryiv,1597\ncommunity,1,1kinghenryiv,1597\nKnows,1,1kinghenryiv,1597\nappointment,1,1kinghenryiv,1597\ngorged,1,1kinghenryiv,1597\npizzle,1,1kinghenryiv,1597\ndevice,1,1kinghenryiv,1597\nTying,1,1kinghenryiv,1597\ndoors,1,1kinghenryiv,1597\nimpaint,1,1kinghenryiv,1597\narticulate,1,1kinghenryiv,1597\nRebuke,1,1kinghenryiv,1597\nHybla,1,1kinghenryiv,1597\ntowards,1,1kinghenryiv,1597\nstark,1,1kinghenryiv,1597\nelsewhere,1,1kinghenryiv,1597\naccepted,1,1kinghenryiv,1597\nmilk,1,1kinghenryiv,1597\nindustry,1,1kinghenryiv,1597\nelf,1,1kinghenryiv,1597\nfares,1,1kinghenryiv,1597\nell,1,1kinghenryiv,1597\ndisdain'd,1,1kinghenryiv,1597\nsaving,1,1kinghenryiv,1597\nconclusion,1,1kinghenryiv,1597\nengross,1,1kinghenryiv,1597\nbeslubber,1,1kinghenryiv,1597\nMakes,1,1kinghenryiv,1597\nkisses,1,1kinghenryiv,1597\nrange,1,1kinghenryiv,1597\nimmask,1,1kinghenryiv,1597\nsacrifices,1,1kinghenryiv,1597\nGrand,1,1kinghenryiv,1597\ntempest,1,1kinghenryiv,1597\nenriched,1,1kinghenryiv,1597\ntowers,1,1kinghenryiv,1597\nstarting,1,1kinghenryiv,1597\nsmother,1,1kinghenryiv,1597\ndreamest,1,1kinghenryiv,1597\nmutter,1,1kinghenryiv,1597\nfortnight,1,1kinghenryiv,1597\nbeads,1,1kinghenryiv,1597\nhumorous,1,1kinghenryiv,1597\nchair,1,1kinghenryiv,1597\nmalt,1,1kinghenryiv,1597\nnephew's,1,1kinghenryiv,1597\nreading,1,1kinghenryiv,1597\nprocure,1,1kinghenryiv,1597\nbelong,1,1kinghenryiv,1597\n'gainst,1,1kinghenryiv,1597\ndowlas,1,1kinghenryiv,1597\nmask,1,1kinghenryiv,1597\nCould,1,1kinghenryiv,1597\ncurtsy,1,1kinghenryiv,1597\nhogsheads,1,1kinghenryiv,1597\negg,1,1kinghenryiv,1597\nmisprison,1,1kinghenryiv,1597\nskim,1,1kinghenryiv,1597\nclinking,1,1kinghenryiv,1597\ntents,1,1kinghenryiv,1597\nparties,1,1kinghenryiv,1597\nchief,1,1kinghenryiv,1597\nranks,1,1kinghenryiv,1597\nveriest,1,1kinghenryiv,1597\npersuaded,1,1kinghenryiv,1597\ncomet,1,1kinghenryiv,1597\nthick,1,1kinghenryiv,1597\nblot,1,1kinghenryiv,1597\nWelshwomen,1,1kinghenryiv,1597\nMarian,1,1kinghenryiv,1597\nbowcase,1,1kinghenryiv,1597\nArchbishop's,1,1kinghenryiv,1597\nvein,1,1kinghenryiv,1597\nleader,1,1kinghenryiv,1597\ninfinitely,1,1kinghenryiv,1597\nmagician,1,1kinghenryiv,1597\nleaden,1,1kinghenryiv,1597\nblow,1,1kinghenryiv,1597\nflatter,1,1kinghenryiv,1597\nstarved,1,1kinghenryiv,1597\nminutes,1,1kinghenryiv,1597\ninch,1,1kinghenryiv,1597\nballads,1,1kinghenryiv,1597\ngates,1,1kinghenryiv,1597\nbeside,1,1kinghenryiv,1597\nsearcheth,1,1kinghenryiv,1597\ninfect,1,1kinghenryiv,1597\nspecial,1,1kinghenryiv,1597\nbottom'd,1,1kinghenryiv,1597\nmiss,1,1kinghenryiv,1597\nmountain,1,1kinghenryiv,1597\nhigher,1,1kinghenryiv,1597\nperemptory,1,1kinghenryiv,1597\nnorthward,1,1kinghenryiv,1597\nsearch,1,1kinghenryiv,1597\naccompanied,1,1kinghenryiv,1597\ndischarge,1,1kinghenryiv,1597\nnumber,1,1kinghenryiv,1597\nattract,1,1kinghenryiv,1597\nborrow'd,1,1kinghenryiv,1597\nwantonness,1,1kinghenryiv,1597\nuttered,1,1kinghenryiv,1597\nMade,1,1kinghenryiv,1597\ngib,1,1kinghenryiv,1597\nGlittering,1,1kinghenryiv,1597\naccusation,1,1kinghenryiv,1597\ningrate,1,1kinghenryiv,1597\nhorrible,1,1kinghenryiv,1597\noil,1,1kinghenryiv,1597\ntrouble,1,1kinghenryiv,1597\nfindeth,1,1kinghenryiv,1597\nNicholas',1,1kinghenryiv,1597\ndisguises,1,1kinghenryiv,1597\nrendezvous,1,1kinghenryiv,1597\nlieutenant,1,1kinghenryiv,1597\ndesired,1,1kinghenryiv,1597\nbear'st,1,1kinghenryiv,1597\npossession,1,1kinghenryiv,1597\njeering,1,1kinghenryiv,1597\nburgomasters,1,1kinghenryiv,1597\nrailing,1,1kinghenryiv,1597\npismires,1,1kinghenryiv,1597\nauditor,1,1kinghenryiv,1597\nstall,1,1kinghenryiv,1597\nDoomsday,1,1kinghenryiv,1597\ntrembling,1,1kinghenryiv,1597\nsleeves,1,1kinghenryiv,1597\nprofited,1,1kinghenryiv,1597\nimpudent,1,1kinghenryiv,1597\nEmbowell'd,1,1kinghenryiv,1597\naffairs,1,1kinghenryiv,1597\nagate,1,1kinghenryiv,1597\nproved,1,1kinghenryiv,1597\nvasty,1,1kinghenryiv,1597\nrenown,1,1kinghenryiv,1597\nCo'fil',1,1kinghenryiv,1597\ngrave,1,1kinghenryiv,1597\nflesh'd,1,1kinghenryiv,1597\npredicament,1,1kinghenryiv,1597\nrogue's,1,1kinghenryiv,1597\nodd,1,1kinghenryiv,1597\nflies,1,1kinghenryiv,1597\nstale,1,1kinghenryiv,1597\nsalt,1,1kinghenryiv,1597\nMaid,1,1kinghenryiv,1597\ncorrival,1,1kinghenryiv,1597\ndishonour,1,1kinghenryiv,1597\nbanishment,1,1kinghenryiv,1597\nthrow,1,1kinghenryiv,1597\ntranquillity,1,1kinghenryiv,1597\nstamp,1,1kinghenryiv,1597\nDefy,1,1kinghenryiv,1597\nWe'll,1,1kinghenryiv,1597\nUnapt,1,1kinghenryiv,1597\nworshippest,1,1kinghenryiv,1597\nscutcheon,1,1kinghenryiv,1597\narrival,1,1kinghenryiv,1597\nBegins,1,1kinghenryiv,1597\nhateful,1,1kinghenryiv,1597\nreprisal,1,1kinghenryiv,1597\nstomach,1,1kinghenryiv,1597\nturvy,1,1kinghenryiv,1597\nbands,1,1kinghenryiv,1597\ntraders,1,1kinghenryiv,1597\ncurb,1,1kinghenryiv,1597\nreceipt,1,1kinghenryiv,1597\nhearest,1,1kinghenryiv,1597\nbread,1,1kinghenryiv,1597\nLazarus,1,1kinghenryiv,1597\nbawds,1,1kinghenryiv,1597\nwoes,1,1kinghenryiv,1597\nknife,1,1kinghenryiv,1597\nloving,1,1kinghenryiv,1597\nthird,1,1kinghenryiv,1597\nwast't,1,1kinghenryiv,1597\nhaughty,1,1kinghenryiv,1597\nsitting,1,1kinghenryiv,1597\nTHOMAS,1,1kinghenryiv,1597\nTuesday,1,1kinghenryiv,1597\ntractable,1,1kinghenryiv,1597\nabundance,1,1kinghenryiv,1597\nbeastly,1,1kinghenryiv,1597\nherds,1,1kinghenryiv,1597\nallegiance,1,1kinghenryiv,1597\nriot,1,1kinghenryiv,1597\nposted,1,1kinghenryiv,1597\ncloser,1,1kinghenryiv,1597\nwalks,1,1kinghenryiv,1597\nBaited,1,1kinghenryiv,1597\nfrailty,1,1kinghenryiv,1597\n'homo',1,1kinghenryiv,1597\nhappiest,1,1kinghenryiv,1597\nscarecrows,1,1kinghenryiv,1597\nclock,1,1kinghenryiv,1597\nflight,1,1kinghenryiv,1597\nmusicians,1,1kinghenryiv,1597\nripe,1,1kinghenryiv,1597\narchdeacon,1,1kinghenryiv,1597\nimpediments,1,1kinghenryiv,1597\ndeath's,1,1kinghenryiv,1597\nHerefordshire,1,1kinghenryiv,1597\nsubtle,1,1kinghenryiv,1597\ncontinuance,1,1kinghenryiv,1597\ndecrees,1,1kinghenryiv,1597\ncertainly,1,1kinghenryiv,1597\nmaidenhead,1,1kinghenryiv,1597\npatiently,1,1kinghenryiv,1597\nmusical,1,1kinghenryiv,1597\nheigh,1,1kinghenryiv,1597\ntopples,1,1kinghenryiv,1597\ndiced,1,1kinghenryiv,1597\nMercury,1,1kinghenryiv,1597\nstiff,1,1kinghenryiv,1597\ntunes,1,1kinghenryiv,1597\nwan,1,1kinghenryiv,1597\nearnest,1,1kinghenryiv,1597\ncarbonado,1,1kinghenryiv,1597\nWeep,1,1kinghenryiv,1597\nduty,1,1kinghenryiv,1597\nable,1,1kinghenryiv,1597\ntailor,1,1kinghenryiv,1597\nswarm,1,1kinghenryiv,1597\nreceive,1,1kinghenryiv,1597\nbetween,1,1kinghenryiv,1597\nHolmedon's,1,1kinghenryiv,1597\naudience,1,1kinghenryiv,1597\nprodigals,1,1kinghenryiv,1597\nintent,1,1kinghenryiv,1597\nbacons,1,1kinghenryiv,1597\nencamped,1,1kinghenryiv,1597\nambition,1,1kinghenryiv,1597\nthreatens,1,1kinghenryiv,1597\nsolemnly,1,1kinghenryiv,1597\nlibertine,1,1kinghenryiv,1597\noats,1,1kinghenryiv,1597\nintend,1,1kinghenryiv,1597\nunminded,1,1kinghenryiv,1597\ngarland,1,1kinghenryiv,1597\ngirdle,1,1kinghenryiv,1597\nwood,1,1kinghenryiv,1597\nbrother's,1,1kinghenryiv,1597\nherring,1,1kinghenryiv,1597\nSemblably,1,1kinghenryiv,1597\nestridges,1,1kinghenryiv,1597\nthereabouts,1,1kinghenryiv,1597\nuncle's,1,1kinghenryiv,1597\nwool,1,1kinghenryiv,1597\nends,1,1kinghenryiv,1597\napace,1,1kinghenryiv,1597\nEsperance,1,1kinghenryiv,1597\npopinjay,1,1kinghenryiv,1597\nspieth,1,1kinghenryiv,1597\nprice,1,1kinghenryiv,1597\nShirley,1,1kinghenryiv,1597\nprick,1,1kinghenryiv,1597\nbearded,1,1kinghenryiv,1597\nFourth,1,1kinghenryiv,1597\nwheel,1,1kinghenryiv,1597\npounds,1,1kinghenryiv,1597\nwitted,1,1kinghenryiv,1597\ncounterfeit'st,1,1kinghenryiv,1597\ncursed,1,1kinghenryiv,1597\nbounty,1,1kinghenryiv,1597\nwalk'd,1,1kinghenryiv,1597\npester'd,1,1kinghenryiv,1597\nMonsieur,1,1kinghenryiv,1597\nquiddities,1,1kinghenryiv,1597\nenforced,1,1kinghenryiv,1597\ndrowned,1,1kinghenryiv,1597\ncurses,1,1kinghenryiv,1597\nthroats,1,1kinghenryiv,1597\nsnorting,1,1kinghenryiv,1597\nginger,1,1kinghenryiv,1597\ngrossly,1,1kinghenryiv,1597\nragamuffins,1,1kinghenryiv,1597\nfactor,1,1kinghenryiv,1597\nsurprised,1,1kinghenryiv,1597\nangle,1,1kinghenryiv,1597\nvulgar,1,1kinghenryiv,1597\nrustling,1,1kinghenryiv,1597\nInstinct,1,1kinghenryiv,1597\ndrone,1,1kinghenryiv,1597\ncuckoo's,1,1kinghenryiv,1597\nIV's,1,1kinghenryiv,1597\ndreamt,1,1kinghenryiv,1597\njoints,1,1kinghenryiv,1597\nmuddy,1,1kinghenryiv,1597\nstolest,1,1kinghenryiv,1597\nhack,1,1kinghenryiv,1597\nconference,1,1kinghenryiv,1597\nPomgarnet,1,1kinghenryiv,1597\nrotten,1,1kinghenryiv,1597\nprologue,1,1kinghenryiv,1597\nexceedeth,1,1kinghenryiv,1597\npoison,1,1kinghenryiv,1597\nlistening,1,1kinghenryiv,1597\ninform,1,1kinghenryiv,1597\nclapped,1,1kinghenryiv,1597\ncressets,1,1kinghenryiv,1597\nkilling,1,1kinghenryiv,1597\ngunpowder,1,1kinghenryiv,1597\ninclination,1,1kinghenryiv,1597\nlopp'd,1,1kinghenryiv,1597\nwondrous,1,1kinghenryiv,1597\nwife's,1,1kinghenryiv,1597\nsupply,1,1kinghenryiv,1597\ndroop,1,1kinghenryiv,1597\ncaterpillars,1,1kinghenryiv,1597\nclip,1,1kinghenryiv,1597\nsimiles,1,1kinghenryiv,1597\ncups,1,1kinghenryiv,1597\nnest,1,1kinghenryiv,1597\ntuck,1,1kinghenryiv,1597\nchangelings,1,1kinghenryiv,1597\nclocks,1,1kinghenryiv,1597\nwhistle,1,1kinghenryiv,1597\nvirtuously,1,1kinghenryiv,1597\npsalms,1,1kinghenryiv,1597\nfarther,1,1kinghenryiv,1597\nharvest,1,1kinghenryiv,1597\nAmongst,1,1kinghenryiv,1597\nserves,1,1kinghenryiv,1597\nBalk'd,1,1kinghenryiv,1597\nunsatisfied,1,1kinghenryiv,1597\npagans,1,1kinghenryiv,1597\nMenteith,1,1kinghenryiv,1597\nstepp'd,1,1kinghenryiv,1597\nangry,1,1kinghenryiv,1597\nfalling,1,1kinghenryiv,1597\nLincolnshire,1,1kinghenryiv,1597\nwent,1,1kinghenryiv,1597\nstirs,1,1kinghenryiv,1597\nfail,1,1kinghenryiv,1597\ncomparisons,1,1kinghenryiv,1597\ngifts,1,1kinghenryiv,1597\nStrike,1,1kinghenryiv,1597\ngrass,1,1kinghenryiv,1597\nRob,1,1kinghenryiv,1597\nheirs,1,1kinghenryiv,1597\npouch,1,1kinghenryiv,1597\nbolters,1,1kinghenryiv,1597\nDouglas',1,1kinghenryiv,1597\nSwear,1,1kinghenryiv,1597\n'in,1,1kinghenryiv,1597\nprofiting,1,1kinghenryiv,1597\nwept,1,1kinghenryiv,1597\nwanted,1,1kinghenryiv,1597\nmisleader,1,1kinghenryiv,1597\nTime,1,1kinghenryiv,1597\ngrate,1,1kinghenryiv,1597\ncloth,1,1kinghenryiv,1597\npresser,1,1kinghenryiv,1597\nhighly,1,1kinghenryiv,1597\ngiving,1,1kinghenryiv,1597\nmassacres,1,1kinghenryiv,1597\nBrother,1,1kinghenryiv,1597\nmiracle,1,1kinghenryiv,1597\ncrystal,1,1kinghenryiv,1597\nexhalations,1,1kinghenryiv,1597\nutterly,1,1kinghenryiv,1597\norb,1,1kinghenryiv,1597\nplumed,1,1kinghenryiv,1597\nembossed,1,1kinghenryiv,1597\nwilful,1,1kinghenryiv,1597\nwindmill,1,1kinghenryiv,1597\naffable,1,1kinghenryiv,1597\ncommenced,1,1kinghenryiv,1597\nFinsbury,1,1kinghenryiv,1597\ncrests,1,1kinghenryiv,1597\ncatechism,1,1kinghenryiv,1597\nsurnamed,1,1kinghenryiv,1597\nbastinado,1,1kinghenryiv,1597\nStabbing,1,1kinghenryiv,1597\nscorns,1,1kinghenryiv,1597\nmines,1,1kinghenryiv,1597\nearthy,1,1kinghenryiv,1597\nsufferances,1,1kinghenryiv,1597\ncontrarious,1,1kinghenryiv,1597\ncuisses,1,1kinghenryiv,1597\nwest,1,1kinghenryiv,1597\nMeets,1,1kinghenryiv,1597\nclay,1,1kinghenryiv,1597\nfie,1,1kinghenryiv,1597\nallow,1,1kinghenryiv,1597\nfeared,1,1kinghenryiv,1597\npepper,1,1kinghenryiv,1597\nflame,1,1kinghenryiv,1597\nimpeach,1,1kinghenryiv,1597\nofficer,1,1kinghenryiv,1597\nbanns,1,1kinghenryiv,1597\nswallow'd,1,1kinghenryiv,1597\nneglectingly,1,1kinghenryiv,1597\ntask'd,1,1kinghenryiv,1597\nunwashed,1,1kinghenryiv,1597\nclap,1,1kinghenryiv,1597\nLead,1,1kinghenryiv,1597\nnail'd,1,1kinghenryiv,1597\nFast,1,1kinghenryiv,1597\nmarried,1,1kinghenryiv,1597\nchewed,1,1kinghenryiv,1597\nbarn,1,1kinghenryiv,1597\nthereby,1,1kinghenryiv,1597\nrebuke,1,1kinghenryiv,1597\nduties,1,1kinghenryiv,1597\ninnkeeper,1,1kinghenryiv,1597\ncontagious,1,1kinghenryiv,1597\nanswer'd,1,1kinghenryiv,1597\nshown,1,1kinghenryiv,1597\nworship,1,1kinghenryiv,1597\nUnto,1,1kinghenryiv,1597\ndivers,1,1kinghenryiv,1597\nsmug,1,1kinghenryiv,1597\npoison'd,1,1kinghenryiv,1597\nJerusalem,1,1kinghenryiv,1597\nlinen,1,1kinghenryiv,1597\npractise,1,1kinghenryiv,1597\nAdvantage,1,1kinghenryiv,1597\nBarbary,1,1kinghenryiv,1597\nperceive,1,1kinghenryiv,1597\nBears,1,1kinghenryiv,1597\nbeware,1,1kinghenryiv,1597\nchiefly,1,1kinghenryiv,1597\nsetter,1,1kinghenryiv,1597\nbate,1,1kinghenryiv,1597\nwhither,1,1kinghenryiv,1597\nwatch'd,1,1kinghenryiv,1597\nchewet,1,1kinghenryiv,1597\nstarling,1,1kinghenryiv,1597\ndestroy'd,1,1kinghenryiv,1597\ntilt,1,1kinghenryiv,1597\nsalvation,1,1kinghenryiv,1597\nbird,1,1kinghenryiv,1597\ncomfort,1,1kinghenryiv,1597\nstinking,1,1kinghenryiv,1597\naunt,1,1kinghenryiv,1597\npublic,1,1kinghenryiv,1597\nthanked,1,1kinghenryiv,1597\nmaker's,1,1kinghenryiv,1597\nAnswer'd,1,1kinghenryiv,1597\ngrievances,1,1kinghenryiv,1597\nprophesy,1,1kinghenryiv,1597\nditch,1,1kinghenryiv,1597\ndropsies,1,1kinghenryiv,1597\ndeliver'd,1,1kinghenryiv,1597\nRedeeming,1,1kinghenryiv,1597\nappointed,1,1kinghenryiv,1597\ncock,1,1kinghenryiv,1597\nhook,1,1kinghenryiv,1597\nbounds,1,1kinghenryiv,1597\ninsulting,1,1kinghenryiv,1597\nrising,1,1kinghenryiv,1597\nspendest,1,1kinghenryiv,1597\nnamed,1,1kinghenryiv,1597\nracks,1,1kinghenryiv,1597\nEach,1,1kinghenryiv,1597\nskimble,1,1kinghenryiv,1597\nfare,1,1kinghenryiv,1597\nflock,1,1kinghenryiv,1597\nmeets,1,1kinghenryiv,1597\nlag,1,1kinghenryiv,1597\ncoat,1,1kinghenryiv,1597\ntall,1,1kinghenryiv,1597\nman's,1,1kinghenryiv,1597\narm'd,1,1kinghenryiv,1597\nfrontiers,1,1kinghenryiv,1597\nPartlet,1,1kinghenryiv,1597\nknighthood,1,1kinghenryiv,1597\nbind,1,1kinghenryiv,1597\notherwise,1,1kinghenryiv,1597\noutdare,1,1kinghenryiv,1597\npoetry,1,1kinghenryiv,1597\nshameless,1,1kinghenryiv,1597\nconvey,1,1kinghenryiv,1597\nhaunting,1,1kinghenryiv,1597\nshirts,1,1kinghenryiv,1597\nWorse,1,1kinghenryiv,1597\nconsists,1,1kinghenryiv,1597\nmemento,1,1kinghenryiv,1597\nintolerable,1,1kinghenryiv,1597\n'Francis,1,1kinghenryiv,1597\nholes,1,1kinghenryiv,1597\njordan,1,1kinghenryiv,1597\nVillains,1,1kinghenryiv,1597\nkinsman's,1,1kinghenryiv,1597\ncreep,1,1kinghenryiv,1597\nought,1,1kinghenryiv,1597\nbigger,1,1kinghenryiv,1597\naspects,1,1kinghenryiv,1597\nMisuse,1,1kinghenryiv,1597\ndexterity,1,1kinghenryiv,1597\nCanterbury,1,1kinghenryiv,1597\ncapon's,1,1kinghenryiv,1597\nclear,1,1kinghenryiv,1597\nPride,1,1kinghenryiv,1597\n'Courage,1,1kinghenryiv,1597\nholp,1,1kinghenryiv,1597\nvictories,1,1kinghenryiv,1597\nLay,1,1kinghenryiv,1597\nbaffle,1,1kinghenryiv,1597\nwaiter,1,1kinghenryiv,1597\nfertile,1,1kinghenryiv,1597\ncorrivals,1,1kinghenryiv,1597\nlinks,1,1kinghenryiv,1597\ntemper'd,1,1kinghenryiv,1597\nstand'st,1,1kinghenryiv,1597\nunknit,1,1kinghenryiv,1597\nmisquote,1,1kinghenryiv,1597\nlards,1,1kinghenryiv,1597\nsweats,1,1kinghenryiv,1597\ngiddy,1,1kinghenryiv,1597\nTrojans,1,1kinghenryiv,1597\nfall'st,1,1kinghenryiv,1597\nclosing,1,1kinghenryiv,1597\nvariation,1,1kinghenryiv,1597\ndragon,1,1kinghenryiv,1597\ncarve,1,1kinghenryiv,1597\nbladder,1,1kinghenryiv,1597\nloyal,1,1kinghenryiv,1597\nrevolt,1,1kinghenryiv,1597\ndiscomfited,1,1kinghenryiv,1597\nunsay,1,1kinghenryiv,1597\nparaquito,1,1kinghenryiv,1597\nskinker,1,1kinghenryiv,1597\nrabbit,1,1kinghenryiv,1597\nentrap,1,1kinghenryiv,1597\nWhere's,1,1kinghenryiv,1597\nremnant,1,1kinghenryiv,1597\nfeeding,1,1kinghenryiv,1597\neagle's,1,1kinghenryiv,1597\nresolution,1,1kinghenryiv,1597\nslanders,1,1kinghenryiv,1597\ntrain'd,1,1kinghenryiv,1597\nNewgate,1,1kinghenryiv,1597\nconjure,1,1kinghenryiv,1597\nfalsehood,1,1kinghenryiv,1597\ntask,1,1kinghenryiv,1597\ncholer,1,1kinghenryiv,1597\ngoodman,1,1kinghenryiv,1597\nLends,1,1kinghenryiv,1597\nlicked,1,1kinghenryiv,1597\ncrossest,1,1kinghenryiv,1597\nprayers,1,1kinghenryiv,1597\nEnvy,1,1kinghenryiv,1597\nmaster'd,1,1kinghenryiv,1597\n'Bring,1,1kinghenryiv,1597\ncountry's,1,1kinghenryiv,1597\nhung,1,1kinghenryiv,1597\napproved,1,1kinghenryiv,1597\nperfumed,1,1kinghenryiv,1597\nhairs,1,1kinghenryiv,1597\ncombatants,1,1kinghenryiv,1597\nglittering,1,1kinghenryiv,1597\ncheerful,1,1kinghenryiv,1597\nofferings,1,1kinghenryiv,1597\nfickle,1,1kinghenryiv,1597\npudding,1,1kinghenryiv,1597\nAttended,1,1kinghenryiv,1597\nalways,1,1kinghenryiv,1597\nwinged,1,1kinghenryiv,1597\nleaping,1,1kinghenryiv,1597\nlot,1,1kinghenryiv,1597\npacket,1,1kinghenryiv,1597\nArchdeacon's,1,1kinghenryiv,1597\nsweat,1,1kinghenryiv,1597\naloof,1,1kinghenryiv,1597\nugly,1,1kinghenryiv,1597\nstates,1,1kinghenryiv,1597\nEbrew,1,1kinghenryiv,1597\nconverse,1,1kinghenryiv,1597\ndecree,1,1kinghenryiv,1597\nneedful,1,1kinghenryiv,1597\nunsavoury,1,1kinghenryiv,1597\nproficient,1,1kinghenryiv,1597\ncrept,1,1kinghenryiv,1597\ncurrents,1,1kinghenryiv,1597\nSeek,1,1kinghenryiv,1597\ntook't,1,1kinghenryiv,1597\nSCROOP,1,1kinghenryiv,1597\nweaver,1,1kinghenryiv,1597\npromiseth,1,1kinghenryiv,1597\nsupplied,1,1kinghenryiv,1597\nplentiful,1,1kinghenryiv,1597\ndrums,1,1kinghenryiv,1597\nreap'd,1,1kinghenryiv,1597\nfights,1,1kinghenryiv,1597\ntalking,1,1kinghenryiv,1597\nweaved,1,1kinghenryiv,1597\nfeeling,1,1kinghenryiv,1597\ntrespass,1,1kinghenryiv,1597\nLie,1,1kinghenryiv,1597\nended,1,1kinghenryiv,1597\nthief's,1,1kinghenryiv,1597\nNe'er,1,1kinghenryiv,1597\nlook'd,1,1kinghenryiv,1597\ndiscretion,1,1kinghenryiv,1597\nfrontier,1,1kinghenryiv,1597\ncamest,1,1kinghenryiv,1597\nSteps,1,1kinghenryiv,1597\nburned,1,1kinghenryiv,1597\npricks,1,1kinghenryiv,1597\ncondition,1,1kinghenryiv,1597\nhundreds,1,1kinghenryiv,1597\nliking,1,1kinghenryiv,1597\ncost,1,1kinghenryiv,1597\nMine,1,1kinghenryiv,1597\nrender,1,1kinghenryiv,1597\nTrue,1,1kinghenryiv,1597\nforwarding,1,1kinghenryiv,1597\npacked,1,1kinghenryiv,1597\nditty,1,1kinghenryiv,1597\nhull,1,1kinghenryiv,1597\nDrawers,1,1kinghenryiv,1597\narrant,1,1kinghenryiv,1597\nsecrecy,1,1kinghenryiv,1597\ndownstairs,1,1kinghenryiv,1597\nDick,1,1kinghenryiv,1597\ntaffeta,1,1kinghenryiv,1597\nbasilisks,1,1kinghenryiv,1597\nchanging,1,1kinghenryiv,1597\nusage,1,1kinghenryiv,1597\nscourged,1,1kinghenryiv,1597\nheavenly,1,1kinghenryiv,1597\nportents,1,1kinghenryiv,1597\nMadeira,1,1kinghenryiv,1597\nHe'll,1,1kinghenryiv,1597\nunderstands,1,1kinghenryiv,1597\nloyalty,1,1kinghenryiv,1597\nmusician,1,1kinghenryiv,1597\nBeguiling,1,1kinghenryiv,1597\nKnow,1,1kinghenryiv,1597\ntherein,1,1kinghenryiv,1597\ndwindle,1,1kinghenryiv,1597\nlovest,1,1kinghenryiv,1597\ncushion,1,1kinghenryiv,1597\ncurtain,1,1kinghenryiv,1597\nwretched,1,1kinghenryiv,1597\nkindred,1,1kinghenryiv,1597\ntied,1,1kinghenryiv,1597\nloathe,1,1kinghenryiv,1597\nblushing,1,1kinghenryiv,1597\nsecure,1,1kinghenryiv,1597\napartment,1,1kinghenryiv,1597\nself,1,1kinghenryiv,1597\nfairly,1,1kinghenryiv,1597\nraven,1,1kinghenryiv,1597\nwalk'st,1,1kinghenryiv,1597\nindirectly,1,1kinghenryiv,1597\nindustrious,1,1kinghenryiv,1597\nCry,1,1kinghenryiv,1597\ntide,1,1kinghenryiv,1597\nmoon's,1,1kinghenryiv,1597\nfinless,1,1kinghenryiv,1597\nuncertain,1,1kinghenryiv,1597\nball,1,1kinghenryiv,1597\nForthwith,1,1kinghenryiv,1597\npost,1,1kinghenryiv,1597\ncases,1,1kinghenryiv,1597\nRalph,1,1kinghenryiv,1597\nbutchered,1,1kinghenryiv,1597\nprison,1,1kinghenryiv,1597\nled,1,1kinghenryiv,1597\nfearfully,1,1kinghenryiv,1597\nunderwent,1,1kinghenryiv,1597\nNeither,1,1kinghenryiv,1597\ncolt,1,1kinghenryiv,1597\nalas,1,1kinghenryiv,1597\ngrieves,1,1kinghenryiv,1597\nremote,1,1kinghenryiv,1597\nDaventry,1,1kinghenryiv,1597\nOpinion,1,1kinghenryiv,1597\nwould'st,1,1kinghenryiv,1597\nArchibald,1,1kinghenryiv,1597\njudgest,1,1kinghenryiv,1597\ncarriage,1,1kinghenryiv,1597\nregards,1,1kinghenryiv,1597\n'well,1,1kinghenryiv,1597\nhowl,1,1kinghenryiv,1597\ninsensible,1,1kinghenryiv,1597\nsullen,1,1kinghenryiv,1597\nseason,1,1kinghenryiv,1597\nfearing,1,1kinghenryiv,1597\nMISTRESS,1,1kinghenryiv,1597\nSutton,1,1kinghenryiv,1597\ngarter,1,1kinghenryiv,1597\nleagues,1,1kinghenryiv,1597\nunyoked,1,1kinghenryiv,1597\nhighest,1,1kinghenryiv,1597\nrenders,1,1kinghenryiv,1597\nQUICKLY,1,1kinghenryiv,1597\nMistress,1,1kinghenryiv,1597\nstrikers,1,1kinghenryiv,1597\nslumbers,1,1kinghenryiv,1597\npalpable,1,1kinghenryiv,1597\nlip,1,1kinghenryiv,1597\npoop,1,1kinghenryiv,1597\nseem'st,1,1kinghenryiv,1597\ninstead,1,1kinghenryiv,1597\nchops,1,1kinghenryiv,1597\nhued,1,1kinghenryiv,1597\n'zounds,1,1kinghenryiv,1597\nbudding,1,1kinghenryiv,1597\nTwo,1,1kinghenryiv,1597\nimpawn'd,1,1kinghenryiv,1597\nfobbed,1,1kinghenryiv,1597\nbearest,1,1kinghenryiv,1597\nslow,1,1kinghenryiv,1597\nfetches,1,1kinghenryiv,1597\nlicence,1,1kinghenryiv,1597\npetre,1,1kinghenryiv,1597\ntrod,1,1kinghenryiv,1597\nendured,1,1kinghenryiv,1597\nservants,1,1kinghenryiv,1597\nborrowed,1,1kinghenryiv,1597\n'hum,1,1kinghenryiv,1597\nQuickly,1,1kinghenryiv,1597\nsympathize,1,1kinghenryiv,1597\nPrince's,1,1kinghenryiv,1597\nsoldest,1,1kinghenryiv,1597\nscot,1,1kinghenryiv,1597\nProceeded,1,1kinghenryiv,1597\nunjointed,1,1kinghenryiv,1597\nwrite,1,1kinghenryiv,1597\ncloudy,1,1kinghenryiv,1597\nevening,1,1kinghenryiv,1597\nstewed,1,1kinghenryiv,1597\nconfound,1,1kinghenryiv,1597\nCheerly,1,1kinghenryiv,1597\nallies,1,1kinghenryiv,1597\nlimbs,1,1kinghenryiv,1597\nalter'd,1,1kinghenryiv,1597\npoulter's,1,1kinghenryiv,1597\nmaintained,1,1kinghenryiv,1597\nreeds,1,1kinghenryiv,1597\nGave,1,1kinghenryiv,1597\ndial's,1,1kinghenryiv,1597\nabroad,1,1kinghenryiv,1597\nspite,1,1kinghenryiv,1597\nTowards,1,1kinghenryiv,1597\nafeard,1,1kinghenryiv,1597\nunclasp,1,1kinghenryiv,1597\ncolted,1,1kinghenryiv,1597\nFive,1,1kinghenryiv,1597\nsmiling,1,1kinghenryiv,1597\nbeastliness,1,1kinghenryiv,1597\nforced,1,1kinghenryiv,1597\nenamoured,1,1kinghenryiv,1597\nbegins,1,1kinghenryiv,1597\nlearn,1,1kinghenryiv,1597\nSauce,1,1kinghenryiv,1597\nforces,1,1kinghenryiv,1597\nvillains',1,1kinghenryiv,1597\nleash,1,1kinghenryiv,1597\nlease,1,1kinghenryiv,1597\ndoing,1,1kinghenryiv,1597\ndread,1,1kinghenryiv,1597\ndismiss'd,1,1kinghenryiv,1597\nsoused,1,1kinghenryiv,1597\ntrusted,1,1kinghenryiv,1597\nwarlike,1,1kinghenryiv,1597\ncorrection,1,1kinghenryiv,1597\nGregory,1,1kinghenryiv,1597\nsister,1,1kinghenryiv,1597\nheaded,1,1kinghenryiv,1597\nmew,1,1kinghenryiv,1597\nswim,1,1kinghenryiv,1597\nlofty,1,1kinghenryiv,1597\ntreacherous,1,1kinghenryiv,1597\nvilest,1,1kinghenryiv,1597\nmisconstrued,1,1kinghenryiv,1597\ncranking,1,1kinghenryiv,1597\nFits,1,1kinghenryiv,1597\nAccording,1,1kinghenryiv,1597\ngrafted,1,1kinghenryiv,1597\nelbow,1,1kinghenryiv,1597\nRise,1,1kinghenryiv,1597\nreformation,1,1kinghenryiv,1597\nnobody,1,1kinghenryiv,1597\nrights,1,1kinghenryiv,1597\nroguery,1,1kinghenryiv,1597\nSince,1,1kinghenryiv,1597\nburnt,1,1kinghenryiv,1597\nlimit,1,1kinghenryiv,1597\nSixteen,1,1kinghenryiv,1597\nMet,1,1kinghenryiv,1597\nfled,1,1kinghenryiv,1597\nEnfeoff'd,1,1kinghenryiv,1597\ncess,1,1kinghenryiv,1597\n'Eight,1,1kinghenryiv,1597\ncrafty,1,1kinghenryiv,1597\nEight,1,1kinghenryiv,1597\nrespected,1,1kinghenryiv,1597\nhorsemanship,1,1kinghenryiv,1597\nForsooth,1,1kinghenryiv,1597\npursuers,1,1kinghenryiv,1597\nwarriors,1,1kinghenryiv,1597\nbellies,1,1kinghenryiv,1597\nquestion'd,1,1kinghenryiv,1597\npages,1,1kinghenryiv,1597\nBootless,1,1kinghenryiv,1597\nbeguile,1,1kinghenryiv,1597\nplayers,1,1kinghenryiv,1597\nsometimes,1,1kinghenryiv,1597\nmilitary,1,1kinghenryiv,1597\nparticipation,1,1kinghenryiv,1597\n'how,1,1kinghenryiv,1597\npeppercorn,1,1kinghenryiv,1597\ntut,1,1kinghenryiv,1597\nthither,1,1kinghenryiv,1597\ntun,1,1kinghenryiv,1597\nlate,1,1kinghenryiv,1597\ngibing,1,1kinghenryiv,1597\nlath,1,1kinghenryiv,1597\ncitizens,1,1kinghenryiv,1597\ngravity,1,1kinghenryiv,1597\nSunday,1,1kinghenryiv,1597\nhighway,1,1kinghenryiv,1597\nforethink,1,1kinghenryiv,1597\nsleeping,1,1kinghenryiv,1597\nlaud,1,1kinghenryiv,1597\nbetimes,1,1kinghenryiv,1597\nsuspect,1,1kinghenryiv,1597\nliquored,1,1kinghenryiv,1597\npeer,1,1kinghenryiv,1597\nviolation,1,1kinghenryiv,1597\njade,1,1kinghenryiv,1597\nsilver,1,1kinghenryiv,1597\nkeepest,1,1kinghenryiv,1597\npagan,1,1kinghenryiv,1597\nrevenged,1,1kinghenryiv,1597\nhurt,1,1kinghenryiv,1597\nDives,1,1kinghenryiv,1597\nMighty,1,1kinghenryiv,1597\neighteen,1,1kinghenryiv,1597\nneedest,1,1kinghenryiv,1597\nvillages,1,1kinghenryiv,1597\nWhew,1,1kinghenryiv,1597\nLend,1,1kinghenryiv,1597\nbooks,1,1kinghenryiv,1597\ncouching,1,1kinghenryiv,1597\nfathom,1,1kinghenryiv,1597\nmoe,1,1kinghenryiv,1597\nsway'd,1,1kinghenryiv,1597\ndaub,1,1kinghenryiv,1597\nmilliner,1,1kinghenryiv,1597\npassages,1,1kinghenryiv,1597\nleading,1,1kinghenryiv,1597\ncorruption,1,1kinghenryiv,1597\nshade,1,1kinghenryiv,1597\nDeath,1,1kinghenryiv,1597\ncorporals,1,1kinghenryiv,1597\nstrands,1,1kinghenryiv,1597\n'This,1,1kinghenryiv,1597\nsmarting,1,1kinghenryiv,1597\nmouths,1,1kinghenryiv,1597\ndate,1,1kinghenryiv,1597\nbusky,1,1kinghenryiv,1597\nentrance,1,1kinghenryiv,1597\nwitness,1,1kinghenryiv,1597\nleads,1,1kinghenryiv,1597\nproffer'd,1,1kinghenryiv,1597\nreply,1,1kinghenryiv,1597\nlover's,1,1kinghenryiv,1597\nGallants,1,1kinghenryiv,1597\npayment,1,1kinghenryiv,1597\njurors,1,1kinghenryiv,1597\nlaid,1,1kinghenryiv,1597\ntrench,1,1kinghenryiv,1597\nunprofitable,1,1kinghenryiv,1597\nprovide,1,1kinghenryiv,1597\nmangled,1,1kinghenryiv,1597\nhappily,1,1kinghenryiv,1597\nharsh,1,1kinghenryiv,1597\nbusily,1,1kinghenryiv,1597\nmouldwarp,1,1kinghenryiv,1597\nhonour's,1,1kinghenryiv,1597\nholla,1,1kinghenryiv,1597\nmaintenance,1,1kinghenryiv,1597\nLest,1,1kinghenryiv,1597\nwhoe'er,1,1kinghenryiv,1597\nexchanged,1,1kinghenryiv,1597\nframe,1,1kinghenryiv,1597\ndisputation,1,1kinghenryiv,1597\nweight,1,1kinghenryiv,1597\nsudden,1,1kinghenryiv,1597\nlane,1,1kinghenryiv,1597\ntattered,1,1kinghenryiv,1597\n'faith,1,1kinghenryiv,1597\neyesight,1,1kinghenryiv,1597\nroasted,1,1kinghenryiv,1597\ntop,1,1kinghenryiv,1597\nskamble,1,1kinghenryiv,1597\npouncet,1,1kinghenryiv,1597\nBrake,1,1kinghenryiv,1597\nliest,1,1kinghenryiv,1597\nproclamation,1,1kinghenryiv,1597\nBangor,1,1kinghenryiv,1597\n'hem,1,1kinghenryiv,1597\ninstantly,1,1kinghenryiv,1597\nBring,1,1kinghenryiv,1597\ncan'st,1,1kinghenryiv,1597\nDRAMATIS,1,1kinghenryiv,1597\nomnipotent,1,1kinghenryiv,1597\nUntil,1,1kinghenryiv,1597\ngarlic,1,1kinghenryiv,1597\ntie,1,1kinghenryiv,1597\nrescue,1,1kinghenryiv,1597\nshine,1,1kinghenryiv,1597\nfilled,1,1kinghenryiv,1597\ndank,1,1kinghenryiv,1597\nstraightest,1,1kinghenryiv,1597\nwhene'er,1,1kinghenryiv,1597\nKnight,1,1kinghenryiv,1597\nundergo,1,1kinghenryiv,1597\nanswerable,1,1kinghenryiv,1597\nprisoners',1,1kinghenryiv,1597\nlugged,1,1kinghenryiv,1597\ntripping,1,1kinghenryiv,1597\nvex'd,1,1kinghenryiv,1597\ngrapple,1,1kinghenryiv,1597\nflower,1,1kinghenryiv,1597\nToo,1,1kinghenryiv,1597\nrewards,1,1kinghenryiv,1597\nrareness,1,1kinghenryiv,1597\nlieve,1,1kinghenryiv,1597\nwithers,1,1kinghenryiv,1597\nexit,1,1kinghenryiv,1597\nconfesseth,1,1kinghenryiv,1597\nobedient,1,1kinghenryiv,1597\nherald's,1,1kinghenryiv,1597\ndivided,1,1kinghenryiv,1597\nTalk,1,1kinghenryiv,1597\nkine,1,1kinghenryiv,1597\nprivate,1,1kinghenryiv,1597\nholders,1,1kinghenryiv,1597\nUncertain,1,1kinghenryiv,1597\nboroughs,1,1kinghenryiv,1597\narbitrement,1,1kinghenryiv,1597\nslip,1,1kinghenryiv,1597\nsquier,1,1kinghenryiv,1597\nteeming,1,1kinghenryiv,1597\nfigures,1,1kinghenryiv,1597\ncates,1,1kinghenryiv,1597\nmutual,1,1kinghenryiv,1597\nwhoremaster,1,1kinghenryiv,1597\namaze,1,1kinghenryiv,1597\namen,1,1kinghenryiv,1597\nTry,1,1kinghenryiv,1597\nhest,1,1kinghenryiv,1597\ndials,1,1kinghenryiv,1597\ncannon,1,1kinghenryiv,1597\nKent,1,1kinghenryiv,1597\nstriving,1,1kinghenryiv,1597\nsneaking,1,1kinghenryiv,1597\nsolemnity,1,1kinghenryiv,1597\nmarked,1,1kinghenryiv,1597\ncozeners,1,1kinghenryiv,1597\nshape,1,1kinghenryiv,1597\nPharaoh's,1,1kinghenryiv,1597\nmarket,1,1kinghenryiv,1597\nThrice,1,1kinghenryiv,1597\nbide,1,1kinghenryiv,1597\ncanstick,1,1kinghenryiv,1597\nchivalry,1,1kinghenryiv,1597\ndirection,1,1kinghenryiv,1597\nsandy,1,1kinghenryiv,1597\nconcealments,1,1kinghenryiv,1597\nunsorted,1,1kinghenryiv,1597\nBracy,1,1kinghenryiv,1597\ndurance,1,1kinghenryiv,1597\nwoo'd,1,1kinghenryiv,1597\npour'st,1,1kinghenryiv,1597\nmackerel,1,1kinghenryiv,1597\nperemptorily,1,1kinghenryiv,1597\nshock,1,1kinghenryiv,1597\nending,1,1kinghenryiv,1597\nexeunt,1,1kinghenryiv,1597\nbeaver,1,1kinghenryiv,1597\nWALES,1,1kinghenryiv,1597\ntreason,2,1kinghenryiv,1597\ntroubled,2,1kinghenryiv,1597\nvillany,2,1kinghenryiv,1597\narmies,2,1kinghenryiv,1597\nquality,2,1kinghenryiv,1597\nangers,2,1kinghenryiv,1597\nforbid,2,1kinghenryiv,1597\npennyworth,2,1kinghenryiv,1597\ninvisible,2,1kinghenryiv,1597\ninfant,2,1kinghenryiv,1597\nmotion,2,1kinghenryiv,1597\nHead,2,1kinghenryiv,1597\nAdam,2,1kinghenryiv,1597\nleisure,2,1kinghenryiv,1597\nweary,2,1kinghenryiv,1597\nwears,2,1kinghenryiv,1597\nGrew,2,1kinghenryiv,1597\nwicked,2,1kinghenryiv,1597\nhonours,2,1kinghenryiv,1597\nroyal,2,1kinghenryiv,1597\nlower,2,1kinghenryiv,1597\nzeal,2,1kinghenryiv,1597\npurge,2,1kinghenryiv,1597\nThieves,2,1kinghenryiv,1597\nrobe,2,1kinghenryiv,1597\ndoubtful,2,1kinghenryiv,1597\nmend,2,1kinghenryiv,1597\nWilt,2,1kinghenryiv,1597\nroad,2,1kinghenryiv,1597\nspace,2,1kinghenryiv,1597\nNever,2,1kinghenryiv,1597\ndish,2,1kinghenryiv,1597\nChrist,2,1kinghenryiv,1597\nwrites,2,1kinghenryiv,1597\ndarkness,2,1kinghenryiv,1597\nclothes,2,1kinghenryiv,1597\nfinger,2,1kinghenryiv,1597\nproceedings,2,1kinghenryiv,1597\nvain,2,1kinghenryiv,1597\nmere,2,1kinghenryiv,1597\nbraver,2,1kinghenryiv,1597\ndrum,2,1kinghenryiv,1597\nlearn'd,2,1kinghenryiv,1597\nhearted,2,1kinghenryiv,1597\ncommodity,2,1kinghenryiv,1597\nretold,2,1kinghenryiv,1597\nflow,2,1kinghenryiv,1597\nshelter,2,1kinghenryiv,1597\nThursday,2,1kinghenryiv,1597\nmatch'd,2,1kinghenryiv,1597\nsigns,2,1kinghenryiv,1597\nlaugh,2,1kinghenryiv,1597\nworms,2,1kinghenryiv,1597\ninnocency,2,1kinghenryiv,1597\npress,2,1kinghenryiv,1597\nancestors,2,1kinghenryiv,1597\nrated,2,1kinghenryiv,1597\nbowels,2,1kinghenryiv,1597\nbecome,2,1kinghenryiv,1597\ncheeks,2,1kinghenryiv,1597\ndemand,2,1kinghenryiv,1597\nthumb,2,1kinghenryiv,1597\nearly,2,1kinghenryiv,1597\nRichard's,2,1kinghenryiv,1597\nwalking,2,1kinghenryiv,1597\ngarment,2,1kinghenryiv,1597\npleasing,2,1kinghenryiv,1597\nPoor,2,1kinghenryiv,1597\nOver,2,1kinghenryiv,1597\nstrength,2,1kinghenryiv,1597\nchid,2,1kinghenryiv,1597\npint,2,1kinghenryiv,1597\ngrows,2,1kinghenryiv,1597\nstarveling,2,1kinghenryiv,1597\nlime,2,1kinghenryiv,1597\nbroken,2,1kinghenryiv,1597\ngelding,2,1kinghenryiv,1597\ncorse,2,1kinghenryiv,1597\ntown's,2,1kinghenryiv,1597\ncheek,2,1kinghenryiv,1597\nsoil,2,1kinghenryiv,1597\ngross,2,1kinghenryiv,1597\nrides,2,1kinghenryiv,1597\nchimney,2,1kinghenryiv,1597\nlikeness,2,1kinghenryiv,1597\nteach,2,1kinghenryiv,1597\ndefiance,2,1kinghenryiv,1597\nlimits,2,1kinghenryiv,1597\noftentimes,2,1kinghenryiv,1597\nfern,2,1kinghenryiv,1597\nshames,2,1kinghenryiv,1597\nbacking,2,1kinghenryiv,1597\ntalked,2,1kinghenryiv,1597\nbastard,2,1kinghenryiv,1597\ndeceived,2,1kinghenryiv,1597\nmongers,2,1kinghenryiv,1597\n'twas,2,1kinghenryiv,1597\nthrone,2,1kinghenryiv,1597\nyield,2,1kinghenryiv,1597\ncleanly,2,1kinghenryiv,1597\nnine,2,1kinghenryiv,1597\nhalter,2,1kinghenryiv,1597\nfrosty,2,1kinghenryiv,1597\nchurch,2,1kinghenryiv,1597\nmurdered,2,1kinghenryiv,1597\nabuses,2,1kinghenryiv,1597\nskill,2,1kinghenryiv,1597\nfleas,2,1kinghenryiv,1597\nextempore,2,1kinghenryiv,1597\nWas,2,1kinghenryiv,1597\nTheir,2,1kinghenryiv,1597\nsecond,2,1kinghenryiv,1597\nchat,2,1kinghenryiv,1597\nmultitudes,2,1kinghenryiv,1597\ndoubt,2,1kinghenryiv,1597\nBreathless,2,1kinghenryiv,1597\nstuff,2,1kinghenryiv,1597\ntaught,2,1kinghenryiv,1597\nstandest,2,1kinghenryiv,1597\nshowed,2,1kinghenryiv,1597\npoints,2,1kinghenryiv,1597\nportly,2,1kinghenryiv,1597\nDame,2,1kinghenryiv,1597\nways,2,1kinghenryiv,1597\nbore,2,1kinghenryiv,1597\nloose,2,1kinghenryiv,1597\ncherish,2,1kinghenryiv,1597\nexpedition,2,1kinghenryiv,1597\nfruit,2,1kinghenryiv,1597\nirregular,2,1kinghenryiv,1597\nprinces,2,1kinghenryiv,1597\nmouthed,2,1kinghenryiv,1597\ncompanion,2,1kinghenryiv,1597\nabove,2,1kinghenryiv,1597\nfearful,2,1kinghenryiv,1597\nfeed,2,1kinghenryiv,1597\npromise,2,1kinghenryiv,1597\npunish,2,1kinghenryiv,1597\nwinded,2,1kinghenryiv,1597\nbeaten,2,1kinghenryiv,1597\ncuckoo,2,1kinghenryiv,1597\nweather,2,1kinghenryiv,1597\nrude,2,1kinghenryiv,1597\nwing,2,1kinghenryiv,1597\nlion's,2,1kinghenryiv,1597\nward,2,1kinghenryiv,1597\nlanguage,2,1kinghenryiv,1597\nknights,2,1kinghenryiv,1597\nseems,2,1kinghenryiv,1597\nwardrobe,2,1kinghenryiv,1597\nOne,2,1kinghenryiv,1597\nedge,2,1kinghenryiv,1597\nroundly,2,1kinghenryiv,1597\nwise,2,1kinghenryiv,1597\nseest,2,1kinghenryiv,1597\ndied,2,1kinghenryiv,1597\nthrown,2,1kinghenryiv,1597\nworld's,2,1kinghenryiv,1597\nrebellion,2,1kinghenryiv,1597\ndistemperature,2,1kinghenryiv,1597\ncunning,2,1kinghenryiv,1597\noffice,2,1kinghenryiv,1597\nbright,2,1kinghenryiv,1597\nuneven,2,1kinghenryiv,1597\nbacon,2,1kinghenryiv,1597\nBridgenorth,2,1kinghenryiv,1597\ncolour,2,1kinghenryiv,1597\nintelligence,2,1kinghenryiv,1597\noffers,2,1kinghenryiv,1597\ngrievous,2,1kinghenryiv,1597\nslaves,2,1kinghenryiv,1597\nmanners,2,1kinghenryiv,1597\ndrinking,2,1kinghenryiv,1597\nTitan,2,1kinghenryiv,1597\nHoly,2,1kinghenryiv,1597\noffend,2,1kinghenryiv,1597\nSick,2,1kinghenryiv,1597\nGloucestershire,2,1kinghenryiv,1597\nspoil,2,1kinghenryiv,1597\naltogether,2,1kinghenryiv,1597\n'Anon,2,1kinghenryiv,1597\ntonight,2,1kinghenryiv,1597\nquarrel,2,1kinghenryiv,1597\nmusic,2,1kinghenryiv,1597\nsurety,2,1kinghenryiv,1597\nshortly,2,1kinghenryiv,1597\nadversaries,2,1kinghenryiv,1597\nretirement,2,1kinghenryiv,1597\nharlotry,2,1kinghenryiv,1597\nhopes,2,1kinghenryiv,1597\nwarrior,2,1kinghenryiv,1597\nunless,2,1kinghenryiv,1597\nAlbeit,2,1kinghenryiv,1597\nstrangest,2,1kinghenryiv,1597\ntales,2,1kinghenryiv,1597\nshines,2,1kinghenryiv,1597\nsings,2,1kinghenryiv,1597\nprophecies,2,1kinghenryiv,1597\nHa,2,1kinghenryiv,1597\nFalstaff's,2,1kinghenryiv,1597\ntallow,2,1kinghenryiv,1597\nmeteors,2,1kinghenryiv,1597\npate,2,1kinghenryiv,1597\nnoses,2,1kinghenryiv,1597\npass,2,1kinghenryiv,1597\npot,2,1kinghenryiv,1597\nyourselves,2,1kinghenryiv,1597\nquiet,2,1kinghenryiv,1597\nsirs,2,1kinghenryiv,1597\ntitles,2,1kinghenryiv,1597\nAdieu,2,1kinghenryiv,1597\nsought,2,1kinghenryiv,1597\nroyalty,2,1kinghenryiv,1597\nweek,2,1kinghenryiv,1597\nbend,2,1kinghenryiv,1597\nabsent,2,1kinghenryiv,1597\ndifference,2,1kinghenryiv,1597\ngoodly,2,1kinghenryiv,1597\ncherish'd,2,1kinghenryiv,1597\nimmediately,2,1kinghenryiv,1597\nchildren,2,1kinghenryiv,1597\npry,2,1kinghenryiv,1597\nlearned,2,1kinghenryiv,1597\nweak,2,1kinghenryiv,1597\nSave,2,1kinghenryiv,1597\npeople,2,1kinghenryiv,1597\nbeyond,2,1kinghenryiv,1597\ncandy,2,1kinghenryiv,1597\nperilous,2,1kinghenryiv,1597\nSaint,2,1kinghenryiv,1597\nbuff,2,1kinghenryiv,1597\nsuddenly,2,1kinghenryiv,1597\nDidst,2,1kinghenryiv,1597\njust,2,1kinghenryiv,1597\nherein,2,1kinghenryiv,1597\namongst,2,1kinghenryiv,1597\nroared,2,1kinghenryiv,1597\nmoody,2,1kinghenryiv,1597\ndeservings,2,1kinghenryiv,1597\npitch,2,1kinghenryiv,1597\ncalling,2,1kinghenryiv,1597\nsharing,2,1kinghenryiv,1597\nowest,2,1kinghenryiv,1597\nBoth,2,1kinghenryiv,1597\ncrowns,2,1kinghenryiv,1597\nnoted,2,1kinghenryiv,1597\ndeed,2,1kinghenryiv,1597\ninstant,2,1kinghenryiv,1597\nBoar's,2,1kinghenryiv,1597\npapers,2,1kinghenryiv,1597\nmiles,2,1kinghenryiv,1597\nha,2,1kinghenryiv,1597\nbreast,2,1kinghenryiv,1597\npromises,2,1kinghenryiv,1597\nkeeping,2,1kinghenryiv,1597\nyea,2,1kinghenryiv,1597\nraise,2,1kinghenryiv,1597\nexcellent,2,1kinghenryiv,1597\nspirited,2,1kinghenryiv,1597\nrepent,2,1kinghenryiv,1597\nSack,2,1kinghenryiv,1597\nstood,2,1kinghenryiv,1597\nbeat,2,1kinghenryiv,1597\nMaking,2,1kinghenryiv,1597\npraying,2,1kinghenryiv,1597\nDoncaster,2,1kinghenryiv,1597\ntongues,2,1kinghenryiv,1597\nlegs,2,1kinghenryiv,1597\nplays,2,1kinghenryiv,1597\nthrive,2,1kinghenryiv,1597\nhouses,2,1kinghenryiv,1597\nblackberries,2,1kinghenryiv,1597\npossess'd,2,1kinghenryiv,1597\nshed,2,1kinghenryiv,1597\nprivilege,2,1kinghenryiv,1597\nwench,2,1kinghenryiv,1597\nforgotten,2,1kinghenryiv,1597\nrealm,2,1kinghenryiv,1597\nfeast,2,1kinghenryiv,1597\nmove,2,1kinghenryiv,1597\ncowardly,2,1kinghenryiv,1597\nfears,2,1kinghenryiv,1597\nbodies,2,1kinghenryiv,1597\nsmall,2,1kinghenryiv,1597\nwisely,2,1kinghenryiv,1597\nplant,2,1kinghenryiv,1597\nwhereof,2,1kinghenryiv,1597\nMyself,2,1kinghenryiv,1597\nEdmund,2,1kinghenryiv,1597\nstudies,2,1kinghenryiv,1597\ntemper,2,1kinghenryiv,1597\ntrain,2,1kinghenryiv,1597\ninn,2,1kinghenryiv,1597\noffences,2,1kinghenryiv,1597\nGawsey,2,1kinghenryiv,1597\nplaying,2,1kinghenryiv,1597\nspent,2,1kinghenryiv,1597\nloved,2,1kinghenryiv,1597\nlose,2,1kinghenryiv,1597\nnimble,2,1kinghenryiv,1597\nready,2,1kinghenryiv,1597\nshow'd,2,1kinghenryiv,1597\nCame,2,1kinghenryiv,1597\neasy,2,1kinghenryiv,1597\nfrighted,2,1kinghenryiv,1597\npistol,2,1kinghenryiv,1597\ncrop,2,1kinghenryiv,1597\nCall,2,1kinghenryiv,1597\nGaunt,2,1kinghenryiv,1597\nemploy'd,2,1kinghenryiv,1597\ncall'd,2,1kinghenryiv,1597\ndraws,2,1kinghenryiv,1597\nladder,2,1kinghenryiv,1597\nmedicines,2,1kinghenryiv,1597\nforty,2,1kinghenryiv,1597\nexcuse,2,1kinghenryiv,1597\nacquaintance,2,1kinghenryiv,1597\nUnder,2,1kinghenryiv,1597\nmidnight,2,1kinghenryiv,1597\nmajesty's,2,1kinghenryiv,1597\nvengeance,2,1kinghenryiv,1597\ntomorrow,2,1kinghenryiv,1597\npair,2,1kinghenryiv,1597\nhangs,2,1kinghenryiv,1597\nspear,2,1kinghenryiv,1597\nforsworn,2,1kinghenryiv,1597\nhate,2,1kinghenryiv,1597\nfear'd,2,1kinghenryiv,1597\nshot,2,1kinghenryiv,1597\nindent,2,1kinghenryiv,1597\nyard,2,1kinghenryiv,1597\npush,2,1kinghenryiv,1597\nrightly,2,1kinghenryiv,1597\nsecret,2,1kinghenryiv,1597\nArm,2,1kinghenryiv,1597\nchance,2,1kinghenryiv,1597\nTavern,2,1kinghenryiv,1597\ndeadly,2,1kinghenryiv,1597\nfed,2,1kinghenryiv,1597\nenemies,2,1kinghenryiv,1597\nContent,2,1kinghenryiv,1597\ntrial,2,1kinghenryiv,1597\ndemanded,2,1kinghenryiv,1597\npurple,2,1kinghenryiv,1597\nhazard,2,1kinghenryiv,1597\nTraveller,2,1kinghenryiv,1597\nhaving,2,1kinghenryiv,1597\nShould,2,1kinghenryiv,1597\nexecute,2,1kinghenryiv,1597\nMonmouth,2,1kinghenryiv,1597\ncontented,2,1kinghenryiv,1597\njustice,2,1kinghenryiv,1597\ngarments,2,1kinghenryiv,1597\nmoved,2,1kinghenryiv,1597\ninside,2,1kinghenryiv,1597\nStafford,2,1kinghenryiv,1597\ncarried,2,1kinghenryiv,1597\nSpoke,2,1kinghenryiv,1597\ndress'd,2,1kinghenryiv,1597\ngriefs,2,1kinghenryiv,1597\nshouldst,2,1kinghenryiv,1597\nArchbishop,2,1kinghenryiv,1597\ndeposed,2,1kinghenryiv,1597\nSeven,2,1kinghenryiv,1597\nretreat,2,1kinghenryiv,1597\nwonder,2,1kinghenryiv,1597\nforfeited,2,1kinghenryiv,1597\ncapon,2,1kinghenryiv,1597\nopposition,2,1kinghenryiv,1597\ntench,2,1kinghenryiv,1597\npated,2,1kinghenryiv,1597\nbeard,2,1kinghenryiv,1597\nvelvet,2,1kinghenryiv,1597\nfaint,2,1kinghenryiv,1597\npleaseth,2,1kinghenryiv,1597\nJew,2,1kinghenryiv,1597\ntenor,2,1kinghenryiv,1597\nlikelihood,2,1kinghenryiv,1597\nstrike,2,1kinghenryiv,1597\nFrom,2,1kinghenryiv,1597\nborne,2,1kinghenryiv,1597\npeppered,2,1kinghenryiv,1597\npicking,2,1kinghenryiv,1597\nAll's,2,1kinghenryiv,1597\nquickly,2,1kinghenryiv,1597\npaces,2,1kinghenryiv,1597\nquarter,2,1kinghenryiv,1597\nsay'st,2,1kinghenryiv,1597\nSee,2,1kinghenryiv,1597\nmortal,2,1kinghenryiv,1597\nleaves,2,1kinghenryiv,1597\nexchange,2,1kinghenryiv,1597\nvarlet,2,1kinghenryiv,1597\nteeth,2,1kinghenryiv,1597\nstars,2,1kinghenryiv,1597\nprize,2,1kinghenryiv,1597\nstrict,2,1kinghenryiv,1597\nSoon,2,1kinghenryiv,1597\nrobbery,2,1kinghenryiv,1597\nUncle,2,1kinghenryiv,1597\ncourage,2,1kinghenryiv,1597\nskin,2,1kinghenryiv,1597\nmass,2,1kinghenryiv,1597\nninth,2,1kinghenryiv,1597\ninjuries,2,1kinghenryiv,1597\nslave,2,1kinghenryiv,1597\nHonour,2,1kinghenryiv,1597\nissue,2,1kinghenryiv,1597\nmisled,2,1kinghenryiv,1597\nfurnish'd,2,1kinghenryiv,1597\nlet's,2,1kinghenryiv,1597\nungentle,2,1kinghenryiv,1597\nfree,2,1kinghenryiv,1597\nhitherwards,2,1kinghenryiv,1597\nmarvel,2,1kinghenryiv,1597\nthigh,2,1kinghenryiv,1597\ndiscarded,2,1kinghenryiv,1597\ndivision,2,1kinghenryiv,1597\ndesires,2,1kinghenryiv,1597\nfray,2,1kinghenryiv,1597\nhorribly,2,1kinghenryiv,1597\nbanks,2,1kinghenryiv,1597\nbreed,2,1kinghenryiv,1597\nget,2,1kinghenryiv,1597\nwrongs,2,1kinghenryiv,1597\nneat,2,1kinghenryiv,1597\nneck,2,1kinghenryiv,1597\ntoday,2,1kinghenryiv,1597\npurchase,2,1kinghenryiv,1597\nsmoky,2,1kinghenryiv,1597\nfive,2,1kinghenryiv,1597\nenters,2,1kinghenryiv,1597\ngoats,2,1kinghenryiv,1597\nblushed,2,1kinghenryiv,1597\nimport,2,1kinghenryiv,1597\nhears,2,1kinghenryiv,1597\nservices,2,1kinghenryiv,1597\nRebellion,2,1kinghenryiv,1597\nbanish'd,2,1kinghenryiv,1597\nRochester,2,1kinghenryiv,1597\ncuts,2,1kinghenryiv,1597\nhoofs,2,1kinghenryiv,1597\nstanding,2,1kinghenryiv,1597\nremains,2,1kinghenryiv,1597\nThus,2,1kinghenryiv,1597\nhumility,2,1kinghenryiv,1597\ndust,2,1kinghenryiv,1597\nnether,2,1kinghenryiv,1597\n'The,2,1kinghenryiv,1597\nstaff,2,1kinghenryiv,1597\nbleed,2,1kinghenryiv,1597\nthey'll,2,1kinghenryiv,1597\nassure,2,1kinghenryiv,1597\nwanton,2,1kinghenryiv,1597\nbelly,2,1kinghenryiv,1597\nhappy,2,1kinghenryiv,1597\nchamberlain,2,1kinghenryiv,1597\nrobb'd,2,1kinghenryiv,1597\nfallen,2,1kinghenryiv,1597\nduke,2,1kinghenryiv,1597\nmarry,2,1kinghenryiv,1597\ntrodden,2,1kinghenryiv,1597\ncharged,2,1kinghenryiv,1597\nanger,2,1kinghenryiv,1597\nlute,2,1kinghenryiv,1597\nwomb,2,1kinghenryiv,1597\ndull,2,1kinghenryiv,1597\nbelie,2,1kinghenryiv,1597\nfox,2,1kinghenryiv,1597\ndiscontents,2,1kinghenryiv,1597\ncontempt,2,1kinghenryiv,1597\nguilty,2,1kinghenryiv,1597\ncarriers,2,1kinghenryiv,1597\ncried,2,1kinghenryiv,1597\ndurst,2,1kinghenryiv,1597\nbruise,2,1kinghenryiv,1597\npressed,2,1kinghenryiv,1597\nMany,2,1kinghenryiv,1597\njudge,2,1kinghenryiv,1597\ndoublet,2,1kinghenryiv,1597\nstolen,2,1kinghenryiv,1597\nThat's,2,1kinghenryiv,1597\nsaint,2,1kinghenryiv,1597\nScottish,2,1kinghenryiv,1597\ngrant,2,1kinghenryiv,1597\nanswers,2,1kinghenryiv,1597\nkinsman,2,1kinghenryiv,1597\nmethinks,2,1kinghenryiv,1597\nduck,2,1kinghenryiv,1597\npleased,2,1kinghenryiv,1597\nwork,2,1kinghenryiv,1597\nletter,2,1kinghenryiv,1597\ncolours,2,1kinghenryiv,1597\nfly,2,1kinghenryiv,1597\nHeigh,2,1kinghenryiv,1597\nMars,2,1kinghenryiv,1597\nribs,2,1kinghenryiv,1597\n'Mortimer,2,1kinghenryiv,1597\nchannel,2,1kinghenryiv,1597\nbuckler,2,1kinghenryiv,1597\nhose,2,1kinghenryiv,1597\njoined,2,1kinghenryiv,1597\nhost,2,1kinghenryiv,1597\nwide,2,1kinghenryiv,1597\nshows,2,1kinghenryiv,1597\nindignities,2,1kinghenryiv,1597\nwealth,2,1kinghenryiv,1597\npartly,2,1kinghenryiv,1597\nlived,2,1kinghenryiv,1597\nFour,2,1kinghenryiv,1597\nkiss,2,1kinghenryiv,1597\nfriendship,2,1kinghenryiv,1597\nbank,2,1kinghenryiv,1597\ncream,2,1kinghenryiv,1597\ntame,2,1kinghenryiv,1597\nfast,2,1kinghenryiv,1597\nboldly,2,1kinghenryiv,1597\ntrumpets,2,1kinghenryiv,1597\ndrinks,2,1kinghenryiv,1597\nWelcome,2,1kinghenryiv,1597\nmischance,2,1kinghenryiv,1597\nlights,2,1kinghenryiv,1597\nis't,2,1kinghenryiv,1597\nlap,2,1kinghenryiv,1597\nconstant,2,1kinghenryiv,1597\nholy,2,1kinghenryiv,1597\nhole,2,1kinghenryiv,1597\ngreen,2,1kinghenryiv,1597\nadvertisement,2,1kinghenryiv,1597\nmaster,2,1kinghenryiv,1597\nextraordinary,2,1kinghenryiv,1597\nhollow,2,1kinghenryiv,1597\npupil,2,1kinghenryiv,1597\nvocation,2,1kinghenryiv,1597\nmoulten,2,1kinghenryiv,1597\nargument,2,1kinghenryiv,1597\nforsooth,2,1kinghenryiv,1597\nstreets,2,1kinghenryiv,1597\nagues,2,1kinghenryiv,1597\ngrandfather's,2,1kinghenryiv,1597\nfavours,2,1kinghenryiv,1597\nalso,2,1kinghenryiv,1597\nrobes,2,1kinghenryiv,1597\nmanage,2,1kinghenryiv,1597\ninterest,2,1kinghenryiv,1597\nlovely,2,1kinghenryiv,1597\nwaiting,2,1kinghenryiv,1597\nJune,2,1kinghenryiv,1597\ninward,2,1kinghenryiv,1597\neyed,2,1kinghenryiv,1597\ncaptain,2,1kinghenryiv,1597\ndeputation,2,1kinghenryiv,1597\nseed,2,1kinghenryiv,1597\nseem,2,1kinghenryiv,1597\ntroth,2,1kinghenryiv,1597\nsouth,2,1kinghenryiv,1597\ndefend,2,1kinghenryiv,1597\n'twixt,2,1kinghenryiv,1597\nvalued,2,1kinghenryiv,1597\nconclude,2,1kinghenryiv,1597\nshapes,2,1kinghenryiv,1597\nfellows,2,1kinghenryiv,1597\ntidings,2,1kinghenryiv,1597\ncrest,2,1kinghenryiv,1597\nexpectation,2,1kinghenryiv,1597\nchristen,2,1kinghenryiv,1597\nsetting,2,1kinghenryiv,1597\ntraitor,2,1kinghenryiv,1597\nthrust,2,1kinghenryiv,1597\nexploit,2,1kinghenryiv,1597\nThrough,2,1kinghenryiv,1597\nmillion,2,1kinghenryiv,1597\nentreat,2,1kinghenryiv,1597\ndislike,2,1kinghenryiv,1597\nbelieved,2,1kinghenryiv,1597\nbald,2,1kinghenryiv,1597\nbleeding,2,1kinghenryiv,1597\nroaring,2,1kinghenryiv,1597\nmother's,2,1kinghenryiv,1597\ntalk'd,2,1kinghenryiv,1597\nstable,2,1kinghenryiv,1597\nmatch,2,1kinghenryiv,1597\nprotest,2,1kinghenryiv,1597\nebb,2,1kinghenryiv,1597\ntriumph,2,1kinghenryiv,1597\nsealed,2,1kinghenryiv,1597\nregarded,2,1kinghenryiv,1597\nhonesty,2,1kinghenryiv,1597\nguns,2,1kinghenryiv,1597\nmap,2,1kinghenryiv,1597\nclouds,2,1kinghenryiv,1597\nspirits,2,1kinghenryiv,1597\nsounded,2,1kinghenryiv,1597\nButler,2,1kinghenryiv,1597\nconduct,2,1kinghenryiv,1597\nrevolted,2,1kinghenryiv,1597\nbreaker,2,1kinghenryiv,1597\ntrim,2,1kinghenryiv,1597\nmakes,2,1kinghenryiv,1597\nglory,2,1kinghenryiv,1597\nmeeting,2,1kinghenryiv,1597\nstreet,2,1kinghenryiv,1597\nrannest,2,1kinghenryiv,1597\nwhit,2,1kinghenryiv,1597\nladies,2,1kinghenryiv,1597\nsolus,2,1kinghenryiv,1597\nfashion,2,1kinghenryiv,1597\neleven,2,1kinghenryiv,1597\nwithdraw,2,1kinghenryiv,1597\nnativity,2,1kinghenryiv,1597\ncredit,2,1kinghenryiv,1597\nSevern's,2,1kinghenryiv,1597\nflat,2,1kinghenryiv,1597\ntenderness,2,1kinghenryiv,1597\nbreaking,2,1kinghenryiv,1597\nragged,2,1kinghenryiv,1597\nfollow'd,2,1kinghenryiv,1597\nspring,2,1kinghenryiv,1597\nKendal,2,1kinghenryiv,1597\nFife,2,1kinghenryiv,1597\ndark,2,1kinghenryiv,1597\nfollow,2,1kinghenryiv,1597\ncomparative,2,1kinghenryiv,1597\ninquired,2,1kinghenryiv,1597\nprelate,2,1kinghenryiv,1597\ncatch,2,1kinghenryiv,1597\ndry,2,1kinghenryiv,1597\nbred,2,1kinghenryiv,1597\nprune,2,1kinghenryiv,1597\nreverend,2,1kinghenryiv,1597\nshake,2,1kinghenryiv,1597\nguests,2,1kinghenryiv,1597\nfilthy,2,1kinghenryiv,1597\narmed,2,1kinghenryiv,1597\nChristendom,2,1kinghenryiv,1597\nTom,2,1kinghenryiv,1597\nbargain,2,1kinghenryiv,1597\ntired,2,1kinghenryiv,1597\nsmell,2,1kinghenryiv,1597\nbooty,2,1kinghenryiv,1597\nobtaining,2,1kinghenryiv,1597\neyelids,2,1kinghenryiv,1597\nparley,2,1kinghenryiv,1597\nneighbour,2,1kinghenryiv,1597\nFind,2,1kinghenryiv,1597\noaths,2,1kinghenryiv,1597\nlack,2,1kinghenryiv,1597\nundertake,2,1kinghenryiv,1597\nwouldst,2,1kinghenryiv,1597\nvilely,2,1kinghenryiv,1597\nfortunes,2,1kinghenryiv,1597\nhedge,2,1kinghenryiv,1597\nsway,2,1kinghenryiv,1597\nsummer,2,1kinghenryiv,1597\no'er,3,1kinghenryiv,1597\notter,3,1kinghenryiv,1597\nred,3,1kinghenryiv,1597\ns,3,1kinghenryiv,1597\ndrop,3,1kinghenryiv,1597\ndarest,3,1kinghenryiv,1597\nHear,3,1kinghenryiv,1597\nhacked,3,1kinghenryiv,1597\nvizards,3,1kinghenryiv,1597\nwoman's,3,1kinghenryiv,1597\nran,3,1kinghenryiv,1597\nRavenspurgh,3,1kinghenryiv,1597\nshoulders,3,1kinghenryiv,1597\nroan,3,1kinghenryiv,1597\nboys,3,1kinghenryiv,1597\nheld,3,1kinghenryiv,1597\nhell,3,1kinghenryiv,1597\nsingle,3,1kinghenryiv,1597\nbrook,3,1kinghenryiv,1597\nHarry's,3,1kinghenryiv,1597\nEre,3,1kinghenryiv,1597\ncalls,3,1kinghenryiv,1597\ncheap,3,1kinghenryiv,1597\nsoon,3,1kinghenryiv,1597\nbirth,3,1kinghenryiv,1597\nsad,3,1kinghenryiv,1597\ndraw,3,1kinghenryiv,1597\ngrown,3,1kinghenryiv,1597\nwords,3,1kinghenryiv,1597\nheat,3,1kinghenryiv,1597\nlift,3,1kinghenryiv,1597\nNicholas,3,1kinghenryiv,1597\nhanging,3,1kinghenryiv,1597\nasked,3,1kinghenryiv,1597\nsix,3,1kinghenryiv,1597\nwarrant,3,1kinghenryiv,1597\n'twere,3,1kinghenryiv,1597\nscourge,3,1kinghenryiv,1597\nvirtuous,3,1kinghenryiv,1597\nscore,3,1kinghenryiv,1597\ncounsel,3,1kinghenryiv,1597\npitiful,3,1kinghenryiv,1597\nbetwixt,3,1kinghenryiv,1597\nworst,3,1kinghenryiv,1597\noffence,3,1kinghenryiv,1597\nheavens,3,1kinghenryiv,1597\nbrain,3,1kinghenryiv,1597\nborn,3,1kinghenryiv,1597\ncivil,3,1kinghenryiv,1597\nabsence,3,1kinghenryiv,1597\nfalls,3,1kinghenryiv,1597\nencounter,3,1kinghenryiv,1597\nstung,3,1kinghenryiv,1597\nmark'd,3,1kinghenryiv,1597\nworthy,3,1kinghenryiv,1597\nWherein,3,1kinghenryiv,1597\nthence,3,1kinghenryiv,1597\ngrow,3,1kinghenryiv,1597\nancient,3,1kinghenryiv,1597\nchoose,3,1kinghenryiv,1597\nlatter,3,1kinghenryiv,1597\nThough,3,1kinghenryiv,1597\nstop,3,1kinghenryiv,1597\nduring,3,1kinghenryiv,1597\ncoats,3,1kinghenryiv,1597\nbook,3,1kinghenryiv,1597\nmanhood,3,1kinghenryiv,1597\nsceptre,3,1kinghenryiv,1597\ntent,3,1kinghenryiv,1597\nsick,3,1kinghenryiv,1597\neach,3,1kinghenryiv,1597\ncudgel,3,1kinghenryiv,1597\nmelancholy,3,1kinghenryiv,1597\nhas,3,1kinghenryiv,1597\nutter,3,1kinghenryiv,1597\nneither,3,1kinghenryiv,1597\npatience,3,1kinghenryiv,1597\nblows,3,1kinghenryiv,1597\nproof,3,1kinghenryiv,1597\ncreature,3,1kinghenryiv,1597\nwisdom,3,1kinghenryiv,1597\ndinner,3,1kinghenryiv,1597\nshillings,3,1kinghenryiv,1597\neast,3,1kinghenryiv,1597\nears,3,1kinghenryiv,1597\nRICHARD,3,1kinghenryiv,1597\nUp,3,1kinghenryiv,1597\nglorious,3,1kinghenryiv,1597\ndivide,3,1kinghenryiv,1597\ngrief,3,1kinghenryiv,1597\nPrithee,3,1kinghenryiv,1597\ngot,3,1kinghenryiv,1597\nstruck,3,1kinghenryiv,1597\nsounds,3,1kinghenryiv,1597\nSevern,3,1kinghenryiv,1597\nSpeak,3,1kinghenryiv,1597\npersuasion,3,1kinghenryiv,1597\ntedious,3,1kinghenryiv,1597\nbuy,3,1kinghenryiv,1597\nlonger,3,1kinghenryiv,1597\nLike,3,1kinghenryiv,1597\nWhither,3,1kinghenryiv,1597\nashamed,3,1kinghenryiv,1597\ngovernment,3,1kinghenryiv,1597\nair,3,1kinghenryiv,1597\ngallows,3,1kinghenryiv,1597\nservant,3,1kinghenryiv,1597\nleft,3,1kinghenryiv,1597\nIll,3,1kinghenryiv,1597\nneeds,3,1kinghenryiv,1597\nUnless,3,1kinghenryiv,1597\nhusband,3,1kinghenryiv,1597\nlady's,3,1kinghenryiv,1597\nby'r,3,1kinghenryiv,1597\nmakest,3,1kinghenryiv,1597\nmanner,3,1kinghenryiv,1597\namend,3,1kinghenryiv,1597\no',3,1kinghenryiv,1597\nteaching,3,1kinghenryiv,1597\nho,3,1kinghenryiv,1597\ngoverned,3,1kinghenryiv,1597\nspend,3,1kinghenryiv,1597\ndefy,3,1kinghenryiv,1597\nremoved,3,1kinghenryiv,1597\nClifton,3,1kinghenryiv,1597\njerkin,3,1kinghenryiv,1597\nBecause,3,1kinghenryiv,1597\nthrice,3,1kinghenryiv,1597\nkilled,3,1kinghenryiv,1597\nreasons,3,1kinghenryiv,1597\nrunning,3,1kinghenryiv,1597\nhare,3,1kinghenryiv,1597\nkills,3,1kinghenryiv,1597\nmadcap,3,1kinghenryiv,1597\nshallow,3,1kinghenryiv,1597\nMore,3,1kinghenryiv,1597\nnatural,3,1kinghenryiv,1597\nmighty,3,1kinghenryiv,1597\nmarching,3,1kinghenryiv,1597\ncourse,3,1kinghenryiv,1597\ndeaths,3,1kinghenryiv,1597\narm,3,1kinghenryiv,1597\nask,3,1kinghenryiv,1597\nfiery,3,1kinghenryiv,1597\nfood,3,1kinghenryiv,1597\nAlarum,3,1kinghenryiv,1597\nfresh,3,1kinghenryiv,1597\nAre,3,1kinghenryiv,1597\nundone,3,1kinghenryiv,1597\narras,3,1kinghenryiv,1597\nwillingly,3,1kinghenryiv,1597\nInto,3,1kinghenryiv,1597\nwatch,3,1kinghenryiv,1597\noften,3,1kinghenryiv,1597\noccasion,3,1kinghenryiv,1597\ntarry,3,1kinghenryiv,1597\nhoney,3,1kinghenryiv,1597\nreport,3,1kinghenryiv,1597\nrose,3,1kinghenryiv,1597\nVernon,3,1kinghenryiv,1597\nLords,3,1kinghenryiv,1597\ncouldst,3,1kinghenryiv,1597\nmountains,3,1kinghenryiv,1597\nwater,3,1kinghenryiv,1597\nenvy,3,1kinghenryiv,1597\nmarks,3,1kinghenryiv,1597\nbeast,3,1kinghenryiv,1597\nrare,3,1kinghenryiv,1597\nHang,3,1kinghenryiv,1597\nbottom,3,1kinghenryiv,1597\nslain,3,1kinghenryiv,1597\nShe,3,1kinghenryiv,1597\nmouth,3,1kinghenryiv,1597\nwonder'd,3,1kinghenryiv,1597\nyours,3,1kinghenryiv,1597\nfoolish,3,1kinghenryiv,1597\nmind,3,1kinghenryiv,1597\nquoth,3,1kinghenryiv,1597\nfish,3,1kinghenryiv,1597\ntrifle,3,1kinghenryiv,1597\nWere,3,1kinghenryiv,1597\npause,3,1kinghenryiv,1597\nsparrow,3,1kinghenryiv,1597\nspeedily,3,1kinghenryiv,1597\nCoventry,3,1kinghenryiv,1597\nCan,3,1kinghenryiv,1597\nrise,3,1kinghenryiv,1597\nthemselves,3,1kinghenryiv,1597\nrage,3,1kinghenryiv,1597\ndying,3,1kinghenryiv,1597\nserve,3,1kinghenryiv,1597\nvillains,3,1kinghenryiv,1597\ncoming,3,1kinghenryiv,1597\n'as,3,1kinghenryiv,1597\nbreakfast,3,1kinghenryiv,1597\nThree,3,1kinghenryiv,1597\nBid,3,1kinghenryiv,1597\nwhat's,3,1kinghenryiv,1597\nspleen,3,1kinghenryiv,1597\nknight,3,1kinghenryiv,1597\nwhence,3,1kinghenryiv,1597\nglad,3,1kinghenryiv,1597\nMake,3,1kinghenryiv,1597\npockets,3,1kinghenryiv,1597\nplease,3,1kinghenryiv,1597\nhumour,3,1kinghenryiv,1597\nunjust,3,1kinghenryiv,1597\nMark,3,1kinghenryiv,1597\nfine,3,1kinghenryiv,1597\npassion,3,1kinghenryiv,1597\nvow,3,1kinghenryiv,1597\nScroop,3,1kinghenryiv,1597\nengaged,3,1kinghenryiv,1597\nsmooth,3,1kinghenryiv,1597\nqueen,3,1kinghenryiv,1597\nWednesday,3,1kinghenryiv,1597\nnames,3,1kinghenryiv,1597\npowder,3,1kinghenryiv,1597\ntalk,3,1kinghenryiv,1597\nlaw,3,1kinghenryiv,1597\ndeparture,3,1kinghenryiv,1597\nHenry,3,1kinghenryiv,1597\nreproof,3,1kinghenryiv,1597\nshore,3,1kinghenryiv,1597\nflood,3,1kinghenryiv,1597\ncommonwealth,3,1kinghenryiv,1597\nseal,3,1kinghenryiv,1597\nseat,3,1kinghenryiv,1597\nlying,3,1kinghenryiv,1597\nkingdom,3,1kinghenryiv,1597\nseek,3,1kinghenryiv,1597\neither,3,1kinghenryiv,1597\ncoz,3,1kinghenryiv,1597\nsees,3,1kinghenryiv,1597\nsound,3,1kinghenryiv,1597\nestimation,3,1kinghenryiv,1597\ntree,3,1kinghenryiv,1597\nDeliver,3,1kinghenryiv,1597\nreturn,3,1kinghenryiv,1597\nleg,3,1kinghenryiv,1597\ndrawer,3,1kinghenryiv,1597\ngoes,3,1kinghenryiv,1597\nbarren,3,1kinghenryiv,1597\nparcel,3,1kinghenryiv,1597\n'scape,3,1kinghenryiv,1597\nseldom,3,1kinghenryiv,1597\nstarve,3,1kinghenryiv,1597\nAnother,3,1kinghenryiv,1597\nremember,3,1kinghenryiv,1597\nsovereign,3,1kinghenryiv,1597\nindentures,3,1kinghenryiv,1597\nlips,3,1kinghenryiv,1597\ntelling,3,1kinghenryiv,1597\nwomanhood,3,1kinghenryiv,1597\ntickle,3,1kinghenryiv,1597\ncopper,3,1kinghenryiv,1597\ntruant,3,1kinghenryiv,1597\nbeauty,3,1kinghenryiv,1597\nMay,3,1kinghenryiv,1597\nbesides,3,1kinghenryiv,1597\nlist,3,1kinghenryiv,1597\nstrange,3,1kinghenryiv,1597\nnature,3,1kinghenryiv,1597\nurged,3,1kinghenryiv,1597\nyesternight,3,1kinghenryiv,1597\ndog,3,1kinghenryiv,1597\nattend,3,1kinghenryiv,1597\nprincely,3,1kinghenryiv,1597\ndue,3,1kinghenryiv,1597\nfellowship,3,1kinghenryiv,1597\nbehold,3,1kinghenryiv,1597\ncommand,3,1kinghenryiv,1597\nboots,3,1kinghenryiv,1597\nexchequer,3,1kinghenryiv,1597\nshirt,3,1kinghenryiv,1597\nbids,3,1kinghenryiv,1597\ntread,3,1kinghenryiv,1597\nshare,3,1kinghenryiv,1597\norder,3,1kinghenryiv,1597\npity,4,1kinghenryiv,1597\nd,4,1kinghenryiv,1597\njoin,4,1kinghenryiv,1597\nLORD,4,1kinghenryiv,1597\ndouble,4,1kinghenryiv,1597\nheir,4,1kinghenryiv,1597\ndagger,4,1kinghenryiv,1597\neight,4,1kinghenryiv,1597\nTell,4,1kinghenryiv,1597\nyounger,4,1kinghenryiv,1597\nMust,4,1kinghenryiv,1597\nsight,4,1kinghenryiv,1597\nhonourable,4,1kinghenryiv,1597\ntears,4,1kinghenryiv,1597\nunderstand,4,1kinghenryiv,1597\nthirty,4,1kinghenryiv,1597\nwhoreson,4,1kinghenryiv,1597\nsaved,4,1kinghenryiv,1597\ncase,4,1kinghenryiv,1597\nsong,4,1kinghenryiv,1597\nScots,4,1kinghenryiv,1597\nsons,4,1kinghenryiv,1597\nline,4,1kinghenryiv,1597\ngracious,4,1kinghenryiv,1597\npurse,4,1kinghenryiv,1597\ntrumpet,4,1kinghenryiv,1597\nTrent,4,1kinghenryiv,1597\nsoft,4,1kinghenryiv,1597\nblessed,4,1kinghenryiv,1597\nstands,4,1kinghenryiv,1597\nbody,4,1kinghenryiv,1597\nsea,4,1kinghenryiv,1597\nfell,4,1kinghenryiv,1597\nembrace,4,1kinghenryiv,1597\ncause,4,1kinghenryiv,1597\nourselves,4,1kinghenryiv,1597\nwrong,4,1kinghenryiv,1597\nredeem,4,1kinghenryiv,1597\npiece,4,1kinghenryiv,1597\nafraid,4,1kinghenryiv,1597\ntwelve,4,1kinghenryiv,1597\ndaughter,4,1kinghenryiv,1597\nruns,4,1kinghenryiv,1597\nwhite,4,1kinghenryiv,1597\nvanity,4,1kinghenryiv,1597\nswore,4,1kinghenryiv,1597\nBetwixt,4,1kinghenryiv,1597\nfalse,4,1kinghenryiv,1597\nothers,4,1kinghenryiv,1597\nsoldier,4,1kinghenryiv,1597\nCousin,4,1kinghenryiv,1597\nturned,4,1kinghenryiv,1597\nsooth,4,1kinghenryiv,1597\nwars,4,1kinghenryiv,1597\nnephew,4,1kinghenryiv,1597\nstir,4,1kinghenryiv,1597\nburning,4,1kinghenryiv,1597\nhorseback,4,1kinghenryiv,1597\nBe,4,1kinghenryiv,1597\nThose,4,1kinghenryiv,1597\nitself,4,1kinghenryiv,1597\nkept,4,1kinghenryiv,1597\ncanst,4,1kinghenryiv,1597\nbeg,4,1kinghenryiv,1597\npleasure,4,1kinghenryiv,1597\nease,4,1kinghenryiv,1597\nbid,4,1kinghenryiv,1597\nHad,4,1kinghenryiv,1597\nsport,4,1kinghenryiv,1597\nearl,4,1kinghenryiv,1597\ngold,4,1kinghenryiv,1597\nrebel,4,1kinghenryiv,1597\nMordake,4,1kinghenryiv,1597\ncat,4,1kinghenryiv,1597\nput,4,1kinghenryiv,1597\nused,4,1kinghenryiv,1597\nOstler,4,1kinghenryiv,1597\nlately,4,1kinghenryiv,1597\nquite,4,1kinghenryiv,1597\nIrish,4,1kinghenryiv,1597\nforgive,4,1kinghenryiv,1597\ndebt,4,1kinghenryiv,1597\nago,4,1kinghenryiv,1597\ndeal,4,1kinghenryiv,1597\nnobleman,4,1kinghenryiv,1597\nseeming,4,1kinghenryiv,1597\ndoes,4,1kinghenryiv,1597\nhumours,4,1kinghenryiv,1597\naccount,4,1kinghenryiv,1597\nloves,4,1kinghenryiv,1597\nless,4,1kinghenryiv,1597\nforgot,4,1kinghenryiv,1597\nknee,4,1kinghenryiv,1597\nmen's,4,1kinghenryiv,1597\nharm,4,1kinghenryiv,1597\nhark,4,1kinghenryiv,1597\nvalour,4,1kinghenryiv,1597\nfront,4,1kinghenryiv,1597\npale,4,1kinghenryiv,1597\npluck,4,1kinghenryiv,1597\nopen,4,1kinghenryiv,1597\nbosom,4,1kinghenryiv,1597\nthough,4,1kinghenryiv,1597\nright,4,1kinghenryiv,1597\ntouch,4,1kinghenryiv,1597\nArt,4,1kinghenryiv,1597\nhere's,4,1kinghenryiv,1597\nspoken,4,1kinghenryiv,1597\nHave,4,1kinghenryiv,1597\nroom,4,1kinghenryiv,1597\ncastle,4,1kinghenryiv,1597\nnose,4,1kinghenryiv,1597\naction,4,1kinghenryiv,1597\npenny,4,1kinghenryiv,1597\nbottle,4,1kinghenryiv,1597\nhide,4,1kinghenryiv,1597\nyear,4,1kinghenryiv,1597\nadventure,4,1kinghenryiv,1597\nlantern,4,1kinghenryiv,1597\npowers,4,1kinghenryiv,1597\nDoth,4,1kinghenryiv,1597\nDost,4,1kinghenryiv,1597\nLook,4,1kinghenryiv,1597\nstart,4,1kinghenryiv,1597\nknave,4,1kinghenryiv,1597\npurposes,4,1kinghenryiv,1597\nmerrily,4,1kinghenryiv,1597\ndidst,4,1kinghenryiv,1597\npresently,4,1kinghenryiv,1597\nknows,4,1kinghenryiv,1597\nknown,4,1kinghenryiv,1597\nwon,4,1kinghenryiv,1597\nBeing,4,1kinghenryiv,1597\nliving,4,1kinghenryiv,1597\nstain,4,1kinghenryiv,1597\ntaste,4,1kinghenryiv,1597\nopinion,4,1kinghenryiv,1597\nrogues,4,1kinghenryiv,1597\nwin,4,1kinghenryiv,1597\nbawdy,4,1kinghenryiv,1597\nbeseech,4,1kinghenryiv,1597\nSay,4,1kinghenryiv,1597\ncalled,4,1kinghenryiv,1597\nbelieve,4,1kinghenryiv,1597\npride,4,1kinghenryiv,1597\ndanger,4,1kinghenryiv,1597\nmettle,4,1kinghenryiv,1597\nfaced,4,1kinghenryiv,1597\nangel,4,1kinghenryiv,1597\ncompulsion,4,1kinghenryiv,1597\ncompass,4,1kinghenryiv,1597\nowe,4,1kinghenryiv,1597\nEven,4,1kinghenryiv,1597\nTill,4,1kinghenryiv,1597\nfall,4,1kinghenryiv,1597\npalace,4,1kinghenryiv,1597\nperfect,4,1kinghenryiv,1597\nbare,4,1kinghenryiv,1597\nwives,4,1kinghenryiv,1597\nholds,4,1kinghenryiv,1597\nshook,4,1kinghenryiv,1597\nhonest,4,1kinghenryiv,1597\nlives,4,1kinghenryiv,1597\nfourteen,4,1kinghenryiv,1597\ndrunk,4,1kinghenryiv,1597\nsuits,4,1kinghenryiv,1597\nHolmedon,4,1kinghenryiv,1597\nPray,4,1kinghenryiv,1597\nperson,4,1kinghenryiv,1597\nheels,4,1kinghenryiv,1597\nblame,4,1kinghenryiv,1597\nhuge,4,1kinghenryiv,1597\nSend,4,1kinghenryiv,1597\nhither,4,1kinghenryiv,1597\ncoin,4,1kinghenryiv,1597\nbrow,4,1kinghenryiv,1597\neat,4,1kinghenryiv,1597\nreward,4,1kinghenryiv,1597\nTravellers,4,1kinghenryiv,1597\nBefore,4,1kinghenryiv,1597\nthoughts,4,1kinghenryiv,1597\nAway,4,1kinghenryiv,1597\nwound,4,1kinghenryiv,1597\nhenceforth,4,1kinghenryiv,1597\nMarry,4,1kinghenryiv,1597\nWithout,4,1kinghenryiv,1597\ngoing,4,1kinghenryiv,1597\nrebels,4,1kinghenryiv,1597\nasleep,4,1kinghenryiv,1597\nkill,4,1kinghenryiv,1597\nturn'd,4,1kinghenryiv,1597\nenemy,4,1kinghenryiv,1597\nadvantage,5,1kinghenryiv,1597\nthought,5,1kinghenryiv,1597\noffer,5,1kinghenryiv,1597\nsugar,5,1kinghenryiv,1597\npick,5,1kinghenryiv,1597\ncare,5,1kinghenryiv,1597\ncamp,5,1kinghenryiv,1597\ndrive,5,1kinghenryiv,1597\nopposed,5,1kinghenryiv,1597\ngolden,5,1kinghenryiv,1597\nknaves,5,1kinghenryiv,1597\nsit,5,1kinghenryiv,1597\nsin,5,1kinghenryiv,1597\nVintner,5,1kinghenryiv,1597\nwalk,5,1kinghenryiv,1597\nmerry,5,1kinghenryiv,1597\ncouncil,5,1kinghenryiv,1597\ncountenance,5,1kinghenryiv,1597\nwithin,5,1kinghenryiv,1597\nvile,5,1kinghenryiv,1597\nworse,5,1kinghenryiv,1597\nItem,5,1kinghenryiv,1597\ncommon,5,1kinghenryiv,1597\nfault,5,1kinghenryiv,1597\n'Faith,5,1kinghenryiv,1597\ntitle,5,1kinghenryiv,1597\nwant,5,1kinghenryiv,1597\nhence,5,1kinghenryiv,1597\nWhat's,5,1kinghenryiv,1597\nStand,5,1kinghenryiv,1597\nstay,5,1kinghenryiv,1597\nquick,5,1kinghenryiv,1597\nnobility,5,1kinghenryiv,1597\nmonstrous,5,1kinghenryiv,1597\nprove,5,1kinghenryiv,1597\nbest,5,1kinghenryiv,1597\nsooner,5,1kinghenryiv,1597\nfields,5,1kinghenryiv,1597\nwear,5,1kinghenryiv,1597\nenterprise,5,1kinghenryiv,1597\nbreath,5,1kinghenryiv,1597\nhands,5,1kinghenryiv,1597\nthyself,5,1kinghenryiv,1597\naside,5,1kinghenryiv,1597\nhadst,5,1kinghenryiv,1597\nknew,5,1kinghenryiv,1597\nhard,5,1kinghenryiv,1597\npresent,5,1kinghenryiv,1597\nfool,5,1kinghenryiv,1597\ntrick,5,1kinghenryiv,1597\nHath,5,1kinghenryiv,1597\nlean,5,1kinghenryiv,1597\nnay,5,1kinghenryiv,1597\nlords,5,1kinghenryiv,1597\nbears,5,1kinghenryiv,1597\nthings,5,1kinghenryiv,1597\nsirrah,5,1kinghenryiv,1597\npicked,5,1kinghenryiv,1597\ngeneral,5,1kinghenryiv,1597\nSome,5,1kinghenryiv,1597\nRichard,5,1kinghenryiv,1597\ndearest,5,1kinghenryiv,1597\nmark,5,1kinghenryiv,1597\nlabour,5,1kinghenryiv,1597\nbehalf,5,1kinghenryiv,1597\nostler,5,1kinghenryiv,1597\nheavy,5,1kinghenryiv,1597\nwag,5,1kinghenryiv,1597\n'Tis,5,1kinghenryiv,1597\nfound,5,1kinghenryiv,1597\nforward,5,1kinghenryiv,1597\nsupper,5,1kinghenryiv,1597\ntakes,5,1kinghenryiv,1597\nMichael,5,1kinghenryiv,1597\nride,5,1kinghenryiv,1597\nsafety,5,1kinghenryiv,1597\nta'en,5,1kinghenryiv,1597\ntill,5,1kinghenryiv,1597\ngentleman,5,1kinghenryiv,1597\ngallant,5,1kinghenryiv,1597\ndozen,5,1kinghenryiv,1597\ncut,5,1kinghenryiv,1597\nalong,5,1kinghenryiv,1597\nlow,5,1kinghenryiv,1597\nreckoning,5,1kinghenryiv,1597\nknowest,5,1kinghenryiv,1597\npresence,5,1kinghenryiv,1597\nJesu,5,1kinghenryiv,1597\ncry,5,1kinghenryiv,1597\ntogether,5,1kinghenryiv,1597\nsickness,5,1kinghenryiv,1597\npurpose,5,1kinghenryiv,1597\nleast,5,1kinghenryiv,1597\nPercy's,5,1kinghenryiv,1597\nIndeed,5,1kinghenryiv,1597\nlast,5,1kinghenryiv,1597\ncontent,5,1kinghenryiv,1597\nmight,5,1kinghenryiv,1597\nten,5,1kinghenryiv,1597\nhangman,5,1kinghenryiv,1597\nTut,5,1kinghenryiv,1597\nlads,5,1kinghenryiv,1597\nbrave,6,1kinghenryiv,1597\nV,6,1kinghenryiv,1597\ntook,6,1kinghenryiv,1597\nhaste,6,1kinghenryiv,1597\ntruly,6,1kinghenryiv,1597\nfought,6,1kinghenryiv,1597\nwithal,6,1kinghenryiv,1597\nunder,6,1kinghenryiv,1597\ndamned,6,1kinghenryiv,1597\nmercy,6,1kinghenryiv,1597\nlight,6,1kinghenryiv,1597\npurses,6,1kinghenryiv,1597\nsworn,6,1kinghenryiv,1597\napparent,6,1kinghenryiv,1597\nServant,6,1kinghenryiv,1597\nOut,6,1kinghenryiv,1597\nterms,6,1kinghenryiv,1597\nmasters,6,1kinghenryiv,1597\nflesh,6,1kinghenryiv,1597\nbold,6,1kinghenryiv,1597\nfriend,6,1kinghenryiv,1597\nmean,6,1kinghenryiv,1597\nThere's,6,1kinghenryiv,1597\nside,6,1kinghenryiv,1597\ntherefore,6,1kinghenryiv,1597\ndeeds,6,1kinghenryiv,1597\nWalter,6,1kinghenryiv,1597\nmeans,6,1kinghenryiv,1597\nproud,6,1kinghenryiv,1597\nheads,6,1kinghenryiv,1597\ngone,6,1kinghenryiv,1597\nfifty,6,1kinghenryiv,1597\nnorth,6,1kinghenryiv,1597\nbutter,6,1kinghenryiv,1597\ncurrent,6,1kinghenryiv,1597\nmonth,6,1kinghenryiv,1597\nage,6,1kinghenryiv,1597\nYet,6,1kinghenryiv,1597\ntwenty,6,1kinghenryiv,1597\nspeaks,6,1kinghenryiv,1597\nwelcome,6,1kinghenryiv,1597\nhang,6,1kinghenryiv,1597\nfoul,6,1kinghenryiv,1597\nKing,6,1kinghenryiv,1597\nSirrah,6,1kinghenryiv,1597\nAgainst,6,1kinghenryiv,1597\ngentle,6,1kinghenryiv,1597\nfather's,6,1kinghenryiv,1597\nover,6,1kinghenryiv,1597\nScotland,6,1kinghenryiv,1597\nring,6,1kinghenryiv,1597\nsave,6,1kinghenryiv,1597\nhair,6,1kinghenryiv,1597\ntaken,6,1kinghenryiv,1597\nwounds,6,1kinghenryiv,1597\nrich,6,1kinghenryiv,1597\nfill,6,1kinghenryiv,1597\nne'er,6,1kinghenryiv,1597\nbase,6,1kinghenryiv,1597\ntale,6,1kinghenryiv,1597\nshort,6,1kinghenryiv,1597\nthank,6,1kinghenryiv,1597\ndangerous,6,1kinghenryiv,1597\nstrong,6,1kinghenryiv,1597\nhorses,6,1kinghenryiv,1597\nhearts,6,1kinghenryiv,1597\nuse,6,1kinghenryiv,1597\nwhom,6,1kinghenryiv,1597\nsent,6,1kinghenryiv,1597\nMarch,6,1kinghenryiv,1597\nNothing,6,1kinghenryiv,1597\near,6,1kinghenryiv,1597\nguts,6,1kinghenryiv,1597\nhostess,6,1kinghenryiv,1597\nmet,6,1kinghenryiv,1597\nliege,6,1kinghenryiv,1597\nvirtue,6,1kinghenryiv,1597\nrespect,6,1kinghenryiv,1597\ndare,6,1kinghenryiv,1597\ncross,6,1kinghenryiv,1597\nwoman,6,1kinghenryiv,1597\nbreathe,6,1kinghenryiv,1597\nMICHAEL,6,1kinghenryiv,1597\nJOHN,6,1kinghenryiv,1597\ntold,7,1kinghenryiv,1597\nWill,7,1kinghenryiv,1597\nwhile,7,1kinghenryiv,1597\ntrust,7,1kinghenryiv,1597\nyourself,7,1kinghenryiv,1597\nNor,7,1kinghenryiv,1597\nThese,7,1kinghenryiv,1597\nturn,7,1kinghenryiv,1597\nOwen,7,1kinghenryiv,1597\nsteal,7,1kinghenryiv,1597\nmorning,7,1kinghenryiv,1597\nAy,7,1kinghenryiv,1597\nboy,7,1kinghenryiv,1597\nbed,7,1kinghenryiv,1597\nwhole,7,1kinghenryiv,1597\nbehind,7,1kinghenryiv,1597\nBolingbroke,7,1kinghenryiv,1597\nsing,7,1kinghenryiv,1597\ni',7,1kinghenryiv,1597\nGod's,7,1kinghenryiv,1597\ndeep,7,1kinghenryiv,1597\nYORK,7,1kinghenryiv,1597\nlend,7,1kinghenryiv,1597\ndoor,7,1kinghenryiv,1597\nSecond,7,1kinghenryiv,1597\nmoon,7,1kinghenryiv,1597\ndeny,7,1kinghenryiv,1597\npoint,7,1kinghenryiv,1597\nbought,7,1kinghenryiv,1597\nmarch,7,1kinghenryiv,1597\nhill,7,1kinghenryiv,1597\nPeace,7,1kinghenryiv,1597\nours,7,1kinghenryiv,1597\nere,7,1kinghenryiv,1597\nquestion,7,1kinghenryiv,1597\nsheriff,7,1kinghenryiv,1597\nGadshill,7,1kinghenryiv,1597\nbloody,7,1kinghenryiv,1597\nthief,7,1kinghenryiv,1597\nletters,7,1kinghenryiv,1597\no'clock,7,1kinghenryiv,1597\nclose,7,1kinghenryiv,1597\nbuckram,7,1kinghenryiv,1597\noft,7,1kinghenryiv,1597\nbreak,7,1kinghenryiv,1597\nonly,7,1kinghenryiv,1597\noath,7,1kinghenryiv,1597\nransom,7,1kinghenryiv,1597\nwert,7,1kinghenryiv,1597\nhope,7,1kinghenryiv,1597\ngentlemen,7,1kinghenryiv,1597\npardon,7,1kinghenryiv,1597\nunto,7,1kinghenryiv,1597\ncowards,7,1kinghenryiv,1597\nseen,7,1kinghenryiv,1597\ncourtesy,7,1kinghenryiv,1597\nbattle,7,1kinghenryiv,1597\n'Sblood,7,1kinghenryiv,1597\nEnglish,7,1kinghenryiv,1597\nhours,7,1kinghenryiv,1597\nsend,7,1kinghenryiv,1597\nfirst,7,1kinghenryiv,1597\nARCHBISHOP,7,1kinghenryiv,1597\nwithout,7,1kinghenryiv,1597\ngreatness,7,1kinghenryiv,1597\ncrown,7,1kinghenryiv,1597\ntimes,8,1kinghenryiv,1597\npeace,8,1kinghenryiv,1597\nvillain,8,1kinghenryiv,1597\nseven,8,1kinghenryiv,1597\njest,8,1kinghenryiv,1597\nsaw,8,1kinghenryiv,1597\nyears,8,1kinghenryiv,1597\nanother,8,1kinghenryiv,1597\nbound,8,1kinghenryiv,1597\nworth,8,1kinghenryiv,1597\nSuch,8,1kinghenryiv,1597\nFarewell,8,1kinghenryiv,1597\nread,8,1kinghenryiv,1597\nthieves,8,1kinghenryiv,1597\nOur,8,1kinghenryiv,1597\nfellow,8,1kinghenryiv,1597\nking's,8,1kinghenryiv,1597\nabout,8,1kinghenryiv,1597\nsun,8,1kinghenryiv,1597\nbring,8,1kinghenryiv,1597\nelse,8,1kinghenryiv,1597\nIII,8,1kinghenryiv,1597\nAt,8,1kinghenryiv,1597\ngave,8,1kinghenryiv,1597\nOr,8,1kinghenryiv,1597\nfarewell,8,1kinghenryiv,1597\nafoot,8,1kinghenryiv,1597\nbanish,8,1kinghenryiv,1597\nwherein,8,1kinghenryiv,1597\nplace,8,1kinghenryiv,1597\nbrought,8,1kinghenryiv,1597\nplot,8,1kinghenryiv,1597\nfield,8,1kinghenryiv,1597\npraise,8,1kinghenryiv,1597\npaid,8,1kinghenryiv,1597\nnew,8,1kinghenryiv,1597\nlead,8,1kinghenryiv,1597\nPeto,8,1kinghenryiv,1597\nYour,8,1kinghenryiv,1597\n'Zounds,8,1kinghenryiv,1597\nTherefore,8,1kinghenryiv,1597\nneed,8,1kinghenryiv,1597\npound,8,1kinghenryiv,1597\nShrewsbury,8,1kinghenryiv,1597\nsake,8,1kinghenryiv,1597\ncourt,8,1kinghenryiv,1597\nsays,8,1kinghenryiv,1597\nBlunt,8,1kinghenryiv,1597\nwar,8,1kinghenryiv,1597\ninstinct,8,1kinghenryiv,1597\nfortune,8,1kinghenryiv,1597\ntavern,8,1kinghenryiv,1597\nwild,8,1kinghenryiv,1597\nswear,8,1kinghenryiv,1597\ncold,8,1kinghenryiv,1597\nsleep,8,1kinghenryiv,1597\nstraight,8,1kinghenryiv,1597\nlion,8,1kinghenryiv,1597\nEastcheap,8,1kinghenryiv,1597\nThy,8,1kinghenryiv,1597\nDid,8,1kinghenryiv,1597\ncertain,8,1kinghenryiv,1597\nspirit,8,1kinghenryiv,1597\nNed,9,1kinghenryiv,1597\ndays,9,1kinghenryiv,1597\nbusiness,9,1kinghenryiv,1597\nChamberlain,9,1kinghenryiv,1597\nrascal,9,1kinghenryiv,1597\nrun,9,1kinghenryiv,1597\nWhose,9,1kinghenryiv,1597\nsure,9,1kinghenryiv,1597\nNot,9,1kinghenryiv,1597\nfurther,9,1kinghenryiv,1597\nanon,9,1kinghenryiv,1597\nmatter,9,1kinghenryiv,1597\nWithin,9,1kinghenryiv,1597\nII,9,1kinghenryiv,1597\nwhose,9,1kinghenryiv,1597\ndear,9,1kinghenryiv,1597\nspeed,9,1kinghenryiv,1597\nSheriff,9,1kinghenryiv,1597\ndrawn,9,1kinghenryiv,1597\nshow,9,1kinghenryiv,1597\nalive,9,1kinghenryiv,1597\nfar,9,1kinghenryiv,1597\nthrough,9,1kinghenryiv,1597\nnone,9,1kinghenryiv,1597\neye,9,1kinghenryiv,1597\nyouth,9,1kinghenryiv,1597\nawhile,9,1kinghenryiv,1597\nhigh,9,1kinghenryiv,1597\nsoldiers,9,1kinghenryiv,1597\nend,9,1kinghenryiv,1597\nvillanous,9,1kinghenryiv,1597\nonce,9,1kinghenryiv,1597\nsayest,9,1kinghenryiv,1597\nnear,9,1kinghenryiv,1597\nHotspur,9,1kinghenryiv,1597\nnext,9,1kinghenryiv,1597\nground,9,1kinghenryiv,1597\nLondon,9,1kinghenryiv,1597\npocket,9,1kinghenryiv,1597\nlad,9,1kinghenryiv,1597\ncup,9,1kinghenryiv,1597\ngiven,9,1kinghenryiv,1597\nAnon,9,1kinghenryiv,1597\nalone,9,1kinghenryiv,1597\nwe'll,9,1kinghenryiv,1597\nNorthumberland,9,1kinghenryiv,1597\nkind,9,1kinghenryiv,1597\nhelp,10,1kinghenryiv,1597\nrob,10,1kinghenryiv,1597\nrather,10,1kinghenryiv,1597\npray,10,1kinghenryiv,1597\nhanged,10,1kinghenryiv,1597\ndrink,10,1kinghenryiv,1597\nlies,10,1kinghenryiv,1597\nUpon,10,1kinghenryiv,1597\nGive,10,1kinghenryiv,1597\nshe,10,1kinghenryiv,1597\nnothing,10,1kinghenryiv,1597\nThere,10,1kinghenryiv,1597\nboth,10,1kinghenryiv,1597\nHere,10,1kinghenryiv,1597\nwind,10,1kinghenryiv,1597\nheaven,10,1kinghenryiv,1597\nrest,10,1kinghenryiv,1597\nHis,10,1kinghenryiv,1597\nOn,10,1kinghenryiv,1597\nLancaster,10,1kinghenryiv,1597\nlook,10,1kinghenryiv,1597\nthat's,10,1kinghenryiv,1597\nThan,10,1kinghenryiv,1597\ninto,10,1kinghenryiv,1597\nyoung,10,1kinghenryiv,1597\nAll,10,1kinghenryiv,1597\nthere's,10,1kinghenryiv,1597\nstate,10,1kinghenryiv,1597\nfire,10,1kinghenryiv,1597\nthine,10,1kinghenryiv,1597\nYork,10,1kinghenryiv,1597\nLet,10,1kinghenryiv,1597\nwilt,10,1kinghenryiv,1597\ncounterfeit,10,1kinghenryiv,1597\nwife,10,1kinghenryiv,1597\nMessenger,10,1kinghenryiv,1597\nshalt,10,1kinghenryiv,1597\ndie,10,1kinghenryiv,1597\nanswer,11,1kinghenryiv,1597\nScot,11,1kinghenryiv,1597\nlooks,11,1kinghenryiv,1597\npay,11,1kinghenryiv,1597\nBardolph,11,1kinghenryiv,1597\nIs,11,1kinghenryiv,1597\nRe,11,1kinghenryiv,1597\nlost,11,1kinghenryiv,1597\nKate,11,1kinghenryiv,1597\nhalf,11,1kinghenryiv,1597\nmoney,11,1kinghenryiv,1597\nfoot,11,1kinghenryiv,1597\nnor,11,1kinghenryiv,1597\nalready,11,1kinghenryiv,1597\nheard,11,1kinghenryiv,1597\nhundred,11,1kinghenryiv,1597\nuncle,11,1kinghenryiv,1597\nlay,11,1kinghenryiv,1597\nreason,11,1kinghenryiv,1597\nhome,11,1kinghenryiv,1597\nshame,11,1kinghenryiv,1597\ntruth,12,1kinghenryiv,1597\ncame,12,1kinghenryiv,1597\nafter,12,1kinghenryiv,1597\nsince,12,1kinghenryiv,1597\nplay,12,1kinghenryiv,1597\nGood,12,1kinghenryiv,1597\nvaliant,12,1kinghenryiv,1597\ntongue,12,1kinghenryiv,1597\nbear,12,1kinghenryiv,1597\nforth,12,1kinghenryiv,1597\nFirst,12,1kinghenryiv,1597\nindeed,12,1kinghenryiv,1597\nmajesty,12,1kinghenryiv,1597\ncomes,12,1kinghenryiv,1597\nbefore,12,1kinghenryiv,1597\nsame,12,1kinghenryiv,1597\nwho,12,1kinghenryiv,1597\nthing,12,1kinghenryiv,1597\noff,12,1kinghenryiv,1597\nPETO,12,1kinghenryiv,1597\nWestmoreland,12,1kinghenryiv,1597\ncompany,12,1kinghenryiv,1597\nEarl,12,1kinghenryiv,1597\nhold,12,1kinghenryiv,1597\nEngland,12,1kinghenryiv,1597\neyes,12,1kinghenryiv,1597\nlive,12,1kinghenryiv,1597\nland,12,1kinghenryiv,1597\nevery,13,1kinghenryiv,1597\nNORTHUMBERLAND,13,1kinghenryiv,1597\ncharge,13,1kinghenryiv,1597\nWorcester,13,1kinghenryiv,1597\nenough,13,1kinghenryiv,1597\nagainst,13,1kinghenryiv,1597\nGo,13,1kinghenryiv,1597\nenter,13,1kinghenryiv,1597\nprisoners,13,1kinghenryiv,1597\ndost,13,1kinghenryiv,1597\ndead,13,1kinghenryiv,1597\nmost,13,1kinghenryiv,1597\nhot,13,1kinghenryiv,1597\ncoward,13,1kinghenryiv,1597\nThey,13,1kinghenryiv,1597\nwhy,13,1kinghenryiv,1597\nhour,13,1kinghenryiv,1597\nthus,13,1kinghenryiv,1597\nLANCASTER,13,1kinghenryiv,1597\nlie,13,1kinghenryiv,1597\nhimself,13,1kinghenryiv,1597\nsoul,14,1kinghenryiv,1597\nfriends,14,1kinghenryiv,1597\nsir,14,1kinghenryiv,1597\nPoins,14,1kinghenryiv,1597\nDo,14,1kinghenryiv,1597\nWelsh,14,1kinghenryiv,1597\nlittle,14,1kinghenryiv,1597\nrogue,14,1kinghenryiv,1597\nThen,14,1kinghenryiv,1597\nstand,14,1kinghenryiv,1597\nnews,14,1kinghenryiv,1597\nback,14,1kinghenryiv,1597\npoor,14,1kinghenryiv,1597\nmad,14,1kinghenryiv,1597\nother,14,1kinghenryiv,1597\nlady,14,1kinghenryiv,1597\nthose,15,1kinghenryiv,1597\nkeep,15,1kinghenryiv,1597\nmade,15,1kinghenryiv,1597\nmyself,15,1kinghenryiv,1597\nfind,15,1kinghenryiv,1597\nWhere,15,1kinghenryiv,1597\nWhen,15,1kinghenryiv,1597\npower,15,1kinghenryiv,1597\nNay,16,1kinghenryiv,1597\nWESTMORELAND,16,1kinghenryiv,1597\nbrother,16,1kinghenryiv,1597\nfull,16,1kinghenryiv,1597\ndeath,16,1kinghenryiv,1597\nAn,16,1kinghenryiv,1597\nlong,16,1kinghenryiv,1597\nearth,16,1kinghenryiv,1597\nprince,16,1kinghenryiv,1597\nmine,16,1kinghenryiv,1597\nstill,16,1kinghenryiv,1597\nheart,16,1kinghenryiv,1597\nway,16,1kinghenryiv,1597\nthree,16,1kinghenryiv,1597\neven,16,1kinghenryiv,1597\nthousand,16,1kinghenryiv,1597\nprithee,16,1kinghenryiv,1597\ncannot,16,1kinghenryiv,1597\nplague,17,1kinghenryiv,1597\nWho,17,1kinghenryiv,1597\nfight,17,1kinghenryiv,1597\nsword,17,1kinghenryiv,1597\nIt,17,1kinghenryiv,1597\nWe,17,1kinghenryiv,1597\nsaid,17,1kinghenryiv,1597\ndone,17,1kinghenryiv,1597\nwhere,17,1kinghenryiv,1597\nvery,17,1kinghenryiv,1597\nMORTIMER,17,1kinghenryiv,1597\nfair,17,1kinghenryiv,1597\nWALTER,18,1kinghenryiv,1597\nnoble,18,1kinghenryiv,1597\nYea,18,1kinghenryiv,1597\narms,18,1kinghenryiv,1597\nShall,18,1kinghenryiv,1597\nword,18,1kinghenryiv,1597\never,18,1kinghenryiv,1597\nPrince,18,1kinghenryiv,1597\nGlendower,18,1kinghenryiv,1597\nbeing,18,1kinghenryiv,1597\nbetter,19,1kinghenryiv,1597\nBLUNT,19,1kinghenryiv,1597\ngrace,19,1kinghenryiv,1597\nfat,19,1kinghenryiv,1597\nACT,19,1kinghenryiv,1597\nFRANCIS,19,1kinghenryiv,1597\nmany,19,1kinghenryiv,1597\nLADY,19,1kinghenryiv,1597\nleave,19,1kinghenryiv,1597\nmeet,20,1kinghenryiv,1597\nNow,20,1kinghenryiv,1597\nWith,20,1kinghenryiv,1597\npart,20,1kinghenryiv,1597\nmorrow,20,1kinghenryiv,1597\nface,20,1kinghenryiv,1597\nSCENE,20,1kinghenryiv,1597\nGADSHILL,21,1kinghenryiv,1597\nhonour,21,1kinghenryiv,1597\nWales,21,1kinghenryiv,1597\nsack,21,1kinghenryiv,1597\nhand,21,1kinghenryiv,1597\nPERCY,21,1kinghenryiv,1597\nFalstaff,21,1kinghenryiv,1597\ntake,21,1kinghenryiv,1597\nhouse,21,1kinghenryiv,1597\nCarrier,21,1kinghenryiv,1597\nFrancis,22,1kinghenryiv,1597\nworld,22,1kinghenryiv,1597\ndevil,22,1kinghenryiv,1597\nown,22,1kinghenryiv,1597\ngreat,22,1kinghenryiv,1597\nVERNON,23,1kinghenryiv,1597\nWhich,23,1kinghenryiv,1597\nfour,23,1kinghenryiv,1597\nThou,23,1kinghenryiv,1597\nsweet,23,1kinghenryiv,1597\nher,24,1kinghenryiv,1597\nblood,24,1kinghenryiv,1597\n'tis,24,1kinghenryiv,1597\nbeen,24,1kinghenryiv,1597\nagain,24,1kinghenryiv,1597\ncould,24,1kinghenryiv,1597\nDouglas,25,1kinghenryiv,1597\nCome,25,1kinghenryiv,1597\nson,25,1kinghenryiv,1597\nname,25,1kinghenryiv,1597\nBARDOLPH,25,1kinghenryiv,1597\ncousin,25,1kinghenryiv,1597\nHow,25,1kinghenryiv,1597\nwhich,26,1kinghenryiv,1597\nhead,26,1kinghenryiv,1597\nfear,26,1kinghenryiv,1597\nnight,26,1kinghenryiv,1597\ngo,26,1kinghenryiv,1597\nany,26,1kinghenryiv,1597\nspeak,26,1kinghenryiv,1597\nfaith,26,1kinghenryiv,1597\nThis,26,1kinghenryiv,1597\nmust,27,1kinghenryiv,1597\ncall,27,1kinghenryiv,1597\naway,27,1kinghenryiv,1597\nBy,27,1kinghenryiv,1597\nExeunt,27,1kinghenryiv,1597\nSo,27,1kinghenryiv,1597\ndoth,27,1kinghenryiv,1597\nMortimer,27,1kinghenryiv,1597\nlove,27,1kinghenryiv,1597\nGLENDOWER,27,1kinghenryiv,1597\nWell,27,1kinghenryiv,1597\nSIR,27,1kinghenryiv,1597\nfather,27,1kinghenryiv,1597\nExit,27,1kinghenryiv,1597\nmuch,28,1kinghenryiv,1597\nthese,28,1kinghenryiv,1597\ngive,28,1kinghenryiv,1597\nye,28,1kinghenryiv,1597\nsome,29,1kinghenryiv,1597\nNo,29,1kinghenryiv,1597\nold,29,1kinghenryiv,1597\nset,30,1kinghenryiv,1597\nDOUGLAS,30,1kinghenryiv,1597\nhad,30,1kinghenryiv,1597\ncan,30,1kinghenryiv,1597\ndown,31,1kinghenryiv,1597\nYou,31,1kinghenryiv,1597\none,31,1kinghenryiv,1597\nhorse,32,1kinghenryiv,1597\nsay,32,1kinghenryiv,1597\nsee,32,1kinghenryiv,1597\nshould,32,1kinghenryiv,1597\ntrue,32,1kinghenryiv,1597\n',33,1kinghenryiv,1597\nlife,33,1kinghenryiv,1597\nHostess,33,1kinghenryiv,1597\nthink,33,1kinghenryiv,1597\nyou,289,1kinghenryiv,1597\nIf,34,1kinghenryiv,1597\nJack,34,1kinghenryiv,1597\nmay,34,1kinghenryiv,1597\nmen,34,1kinghenryiv,1597\ntwo,34,1kinghenryiv,1597\nMy,35,1kinghenryiv,1597\nhast,35,1kinghenryiv,1597\nJohn,36,1kinghenryiv,1597\nhear,36,1kinghenryiv,1597\nHarry,36,1kinghenryiv,1597\nIn,36,1kinghenryiv,1597\nHal,36,1kinghenryiv,1597\nhow,36,1kinghenryiv,1597\nSir,37,1kinghenryiv,1597\nnever,39,1kinghenryiv,1597\nyet,39,1kinghenryiv,1597\nmake,39,1kinghenryiv,1597\nday,39,1kinghenryiv,1597\nhere,40,1kinghenryiv,1597\nthan,40,1kinghenryiv,1597\ntheir,40,1kinghenryiv,1597\nknow,40,1kinghenryiv,1597\nup,40,1kinghenryiv,1597\nout,40,1kinghenryiv,1597\nFor,41,1kinghenryiv,1597\nPercy,41,1kinghenryiv,1597\nGod,42,1kinghenryiv,1597\nmy,298,1kinghenryiv,1597\nOf,43,1kinghenryiv,1597\nWhy,44,1kinghenryiv,1597\nPOINS,44,1kinghenryiv,1597\nThat,44,1kinghenryiv,1597\ntime,44,1kinghenryiv,1597\ntell,45,1kinghenryiv,1597\nAs,45,1kinghenryiv,1597\nLord,45,1kinghenryiv,1597\nlet,45,1kinghenryiv,1597\nWORCESTER,46,1kinghenryiv,1597\ntoo,47,1kinghenryiv,1597\nhath,48,1kinghenryiv,1597\nwhen,48,1kinghenryiv,1597\nwell,49,1kinghenryiv,1597\nwere,49,1kinghenryiv,1597\nthere,50,1kinghenryiv,1597\nHe,50,1kinghenryiv,1597\nEnter,50,1kinghenryiv,1597\nO,52,1kinghenryiv,1597\ncome,54,1kinghenryiv,1597\nupon,55,1kinghenryiv,1597\nart,55,1kinghenryiv,1597\nA,56,1kinghenryiv,1597\nsuch,56,1kinghenryiv,1597\nthen,57,1kinghenryiv,1597\nor,57,1kinghenryiv,1597\nwould,57,1kinghenryiv,1597\nmore,58,1kinghenryiv,1597\nEARL,59,1kinghenryiv,1597\nlike,60,1kinghenryiv,1597\nKING,60,1kinghenryiv,1597\nIV,60,1kinghenryiv,1597\nman,60,1kinghenryiv,1597\nwas,62,1kinghenryiv,1597\ndid,63,1kinghenryiv,1597\nking,63,1kinghenryiv,1597\nnow,64,1kinghenryiv,1597\nus,66,1kinghenryiv,1597\nBut,66,1kinghenryiv,1597\nthey,68,1kinghenryiv,1597\nfrom,68,1kinghenryiv,1597\nWhat,68,1kinghenryiv,1597\nOF,69,1kinghenryiv,1597\nam,69,1kinghenryiv,1597\nan,69,1kinghenryiv,1597\nwhat,69,1kinghenryiv,1597\ngood,70,1kinghenryiv,1597\nthem,75,1kinghenryiv,1597\nTo,78,1kinghenryiv,1597\nare,78,1kinghenryiv,1597\nlord,79,1kinghenryiv,1597\nat,80,1kinghenryiv,1597\ndo,84,1kinghenryiv,1597\nof,596,1kinghenryiv,1597\nno,85,1kinghenryiv,1597\nif,85,1kinghenryiv,1597\nwe,85,1kinghenryiv,1597\nI'll,86,1kinghenryiv,1597\nin,342,1kinghenryiv,1597\nby,90,1kinghenryiv,1597\nour,92,1kinghenryiv,1597\nthy,102,1kinghenryiv,1597\nthee,103,1kinghenryiv,1597\nThe,103,1kinghenryiv,1597\non,105,1kinghenryiv,1597\nHOTSPUR,114,1kinghenryiv,1597\nbut,114,1kinghenryiv,1597\nshall,116,1kinghenryiv,1597\nI,631,1kinghenryiv,1597\nyour,121,1kinghenryiv,1597\nall,125,1kinghenryiv,1597\nso,130,1kinghenryiv,1597\nwill,130,1kinghenryiv,1597\nhim,142,1kinghenryiv,1597\nand,660,1kinghenryiv,1597\nhave,150,1kinghenryiv,1597\nto,410,1kinghenryiv,1597\nthis,163,1kinghenryiv,1597\nhis,163,1kinghenryiv,1597\nhe,168,1kinghenryiv,1597\nFALSTAFF,168,1kinghenryiv,1597\nfor,172,1kinghenryiv,1597\nas,180,1kinghenryiv,1597\nwith,184,1kinghenryiv,1597\nbe,191,1kinghenryiv,1597\nPRINCE,192,1kinghenryiv,1597\nit,195,1kinghenryiv,1597\nis,207,1kinghenryiv,1597\nAnd,208,1kinghenryiv,1597\nthat,209,1kinghenryiv,1597\nme,227,1kinghenryiv,1597\nthou,231,1kinghenryiv,1597\na,491,1kinghenryiv,1597\nnot,250,1kinghenryiv,1597\nthe,762,1kinghenryiv,1597\nHENRY,252,1kinghenryiv,1597\nprofession,1,1kinghenryvi,1590\naffords,1,1kinghenryvi,1590\nkingdom's,1,1kinghenryvi,1590\nO'ercharging,1,1kinghenryvi,1590\nveil'd,1,1kinghenryvi,1590\ndeputy,1,1kinghenryvi,1590\nencompassed,1,1kinghenryvi,1590\nheed,1,1kinghenryvi,1590\nshepherd's,1,1kinghenryvi,1590\nhousehold's,1,1kinghenryvi,1590\nbrawl,1,1kinghenryvi,1590\ntold,1,1kinghenryvi,1590\nTouching,1,1kinghenryvi,1590\nrushing,1,1kinghenryvi,1590\no'er,1,1kinghenryvi,1590\nChanged,1,1kinghenryvi,1590\ntroubles,1,1kinghenryvi,1590\npitched,1,1kinghenryvi,1590\nlusts,1,1kinghenryvi,1590\nChampagne,1,1kinghenryvi,1590\nsped,1,1kinghenryvi,1590\naccordingly,1,1kinghenryvi,1590\nFinish,1,1kinghenryvi,1590\nwatchmen,1,1kinghenryvi,1590\nsnares,1,1kinghenryvi,1590\ndrawing,1,1kinghenryvi,1590\nincantations,1,1kinghenryvi,1590\nCorrupt,1,1kinghenryvi,1590\nStands,1,1kinghenryvi,1590\nDeborah,1,1kinghenryvi,1590\ngardens,1,1kinghenryvi,1590\nslaughtering,1,1kinghenryvi,1590\ngallants,1,1kinghenryvi,1590\nScythian,1,1kinghenryvi,1590\nLORD,1,1kinghenryvi,1590\nProud,1,1kinghenryvi,1590\nbanning,1,1kinghenryvi,1590\nreclaim'd,1,1kinghenryvi,1590\npolicies,1,1kinghenryvi,1590\nBlue,1,1kinghenryvi,1590\nLaughest,1,1kinghenryvi,1590\ndescription,1,1kinghenryvi,1590\njar,1,1kinghenryvi,1590\ncomposition,1,1kinghenryvi,1590\nmotion,1,1kinghenryvi,1590\nCourageous,1,1kinghenryvi,1590\nbelongs,1,1kinghenryvi,1590\nchurlish,1,1kinghenryvi,1590\nPity,1,1kinghenryvi,1590\ndouble,1,1kinghenryvi,1590\nPicardy,1,1kinghenryvi,1590\nwears,1,1kinghenryvi,1590\nScoff,1,1kinghenryvi,1590\nraw,1,1kinghenryvi,1590\ncomplaints,1,1kinghenryvi,1590\npossible,1,1kinghenryvi,1590\nruthless,1,1kinghenryvi,1590\nquietness,1,1kinghenryvi,1590\nfactions,1,1kinghenryvi,1590\ntwit,1,1kinghenryvi,1590\nadmonish,1,1kinghenryvi,1590\ncontumeliously,1,1kinghenryvi,1590\nobtain'd,1,1kinghenryvi,1590\nalike,1,1kinghenryvi,1590\ntravail,1,1kinghenryvi,1590\nwicked,1,1kinghenryvi,1590\nperuse,1,1kinghenryvi,1590\nFit,1,1kinghenryvi,1590\nWhether,1,1kinghenryvi,1590\nWrit,1,1kinghenryvi,1590\nsuspicious,1,1kinghenryvi,1590\ndagger,1,1kinghenryvi,1590\nflieth,1,1kinghenryvi,1590\nrode,1,1kinghenryvi,1590\nVillain,1,1kinghenryvi,1590\nreasonless,1,1kinghenryvi,1590\nMessengers,1,1kinghenryvi,1590\nfestivals,1,1kinghenryvi,1590\nboned,1,1kinghenryvi,1590\ndolphin,1,1kinghenryvi,1590\nelect,1,1kinghenryvi,1590\nsupport,1,1kinghenryvi,1590\nrot,1,1kinghenryvi,1590\nGLOUCESTER's,1,1kinghenryvi,1590\npreparation,1,1kinghenryvi,1590\nexploits,1,1kinghenryvi,1590\nobstinate,1,1kinghenryvi,1590\nperplexed,1,1kinghenryvi,1590\nrascal,1,1kinghenryvi,1590\nbonds,1,1kinghenryvi,1590\nTours,1,1kinghenryvi,1590\nhealth,1,1kinghenryvi,1590\noffender,1,1kinghenryvi,1590\nTalbotites,1,1kinghenryvi,1590\ndoubtful,1,1kinghenryvi,1590\nWasted,1,1kinghenryvi,1590\nBeat,1,1kinghenryvi,1590\nday's,1,1kinghenryvi,1590\nmuse,1,1kinghenryvi,1590\nroar,1,1kinghenryvi,1590\nproclaim'd,1,1kinghenryvi,1590\ncounties,1,1kinghenryvi,1590\nundoubted,1,1kinghenryvi,1590\nfickleness,1,1kinghenryvi,1590\nendless,1,1kinghenryvi,1590\ncontrivedst,1,1kinghenryvi,1590\nreserved,1,1kinghenryvi,1590\ndire,1,1kinghenryvi,1590\nwailing,1,1kinghenryvi,1590\ndrowsy,1,1kinghenryvi,1590\ntrull,1,1kinghenryvi,1590\nswiftly,1,1kinghenryvi,1590\nsingle,1,1kinghenryvi,1590\nassailing,1,1kinghenryvi,1590\nRemaineth,1,1kinghenryvi,1590\nWaterford,1,1kinghenryvi,1590\nentered,1,1kinghenryvi,1590\nYork's,1,1kinghenryvi,1590\nconjoined,1,1kinghenryvi,1590\nmiss'd,1,1kinghenryvi,1590\nwrites,1,1kinghenryvi,1590\nslaughter'd,1,1kinghenryvi,1590\nclothes,1,1kinghenryvi,1590\nvail,1,1kinghenryvi,1590\nhers,1,1kinghenryvi,1590\nfinger,1,1kinghenryvi,1590\nDiscover,1,1kinghenryvi,1590\ngroan,1,1kinghenryvi,1590\nherd,1,1kinghenryvi,1590\nvain,1,1kinghenryvi,1590\nviolent,1,1kinghenryvi,1590\nWhereas,1,1kinghenryvi,1590\nContrived,1,1kinghenryvi,1590\nbraver,1,1kinghenryvi,1590\nbraves,1,1kinghenryvi,1590\ndefensive,1,1kinghenryvi,1590\ndisease,1,1kinghenryvi,1590\nsighs,1,1kinghenryvi,1590\nbraved,1,1kinghenryvi,1590\ngorgeous,1,1kinghenryvi,1590\ntoil,1,1kinghenryvi,1590\nhearted,1,1kinghenryvi,1590\nbandying,1,1kinghenryvi,1590\nlowly,1,1kinghenryvi,1590\nWoman,1,1kinghenryvi,1590\nrid,1,1kinghenryvi,1590\nCries,1,1kinghenryvi,1590\nnaked,1,1kinghenryvi,1590\nPause,1,1kinghenryvi,1590\nAmazon,1,1kinghenryvi,1590\nforbidden,1,1kinghenryvi,1590\nthirteen,1,1kinghenryvi,1590\nfeeds,1,1kinghenryvi,1590\nPlacing,1,1kinghenryvi,1590\nalthough,1,1kinghenryvi,1590\nweighty,1,1kinghenryvi,1590\ndrink,1,1kinghenryvi,1590\nBright,1,1kinghenryvi,1590\nthroat,1,1kinghenryvi,1590\ncowardice,1,1kinghenryvi,1590\nsigns,1,1kinghenryvi,1590\nnought,1,1kinghenryvi,1590\nspy'st,1,1kinghenryvi,1590\nlaugh,1,1kinghenryvi,1590\nprey,1,1kinghenryvi,1590\ncommence,1,1kinghenryvi,1590\nExpect,1,1kinghenryvi,1590\nbeauty's,1,1kinghenryvi,1590\nterrible,1,1kinghenryvi,1590\nconfutation,1,1kinghenryvi,1590\ntaunts,1,1kinghenryvi,1590\nloaden,1,1kinghenryvi,1590\nravish,1,1kinghenryvi,1590\nsolemnized,1,1kinghenryvi,1590\nrue,1,1kinghenryvi,1590\nstrumpet,1,1kinghenryvi,1590\nplatforms,1,1kinghenryvi,1590\ndamned,1,1kinghenryvi,1590\npinch,1,1kinghenryvi,1590\nfables,1,1kinghenryvi,1590\nyelping,1,1kinghenryvi,1590\nperiapts,1,1kinghenryvi,1590\nthirst,1,1kinghenryvi,1590\nhelpers,1,1kinghenryvi,1590\nQuite,1,1kinghenryvi,1590\njuggling,1,1kinghenryvi,1590\nbindeth,1,1kinghenryvi,1590\ndisobedience,1,1kinghenryvi,1590\nsorcerers,1,1kinghenryvi,1590\nWould,1,1kinghenryvi,1590\nscruple,1,1kinghenryvi,1590\nentice,1,1kinghenryvi,1590\nGolden,1,1kinghenryvi,1590\nCrossing,1,1kinghenryvi,1590\nPERSONAE,1,1kinghenryvi,1590\nwither,1,1kinghenryvi,1590\nchurchyard,1,1kinghenryvi,1590\ncard,1,1kinghenryvi,1590\nparings,1,1kinghenryvi,1590\nmoist,1,1kinghenryvi,1590\nmarshal,1,1kinghenryvi,1590\ndemand,1,1kinghenryvi,1590\nagreed,1,1kinghenryvi,1590\nsequestration,1,1kinghenryvi,1590\nclamorous,1,1kinghenryvi,1590\ncouched,1,1kinghenryvi,1590\nrumor,1,1kinghenryvi,1590\ncast,1,1kinghenryvi,1590\nmingled,1,1kinghenryvi,1590\nsoftly,1,1kinghenryvi,1590\nattempt,1,1kinghenryvi,1590\nrepulse,1,1kinghenryvi,1590\nworser,1,1kinghenryvi,1590\nobloquy,1,1kinghenryvi,1590\nScots,1,1kinghenryvi,1590\nirks,1,1kinghenryvi,1590\nrescues,1,1kinghenryvi,1590\nImprovident,1,1kinghenryvi,1590\ngraces,1,1kinghenryvi,1590\npractises,1,1kinghenryvi,1590\nire,1,1kinghenryvi,1590\ndisdain,1,1kinghenryvi,1590\ngraced,1,1kinghenryvi,1590\ngloomy,1,1kinghenryvi,1590\namazed,1,1kinghenryvi,1590\nsad,1,1kinghenryvi,1590\nintermissive,1,1kinghenryvi,1590\nconsuming,1,1kinghenryvi,1590\ncamp,1,1kinghenryvi,1590\nstock,1,1kinghenryvi,1590\nworking,1,1kinghenryvi,1590\npine,1,1kinghenryvi,1590\ndissentious,1,1kinghenryvi,1590\ncharms,1,1kinghenryvi,1590\nYoung,1,1kinghenryvi,1590\nusurp'st,1,1kinghenryvi,1590\nchurch's,1,1kinghenryvi,1590\nunaccustom'd,1,1kinghenryvi,1590\nrelieve,1,1kinghenryvi,1590\nyeomen,1,1kinghenryvi,1590\npauvres,1,1kinghenryvi,1590\nRenounce,1,1kinghenryvi,1590\nSwift,1,1kinghenryvi,1590\navenge,1,1kinghenryvi,1590\ngrows,1,1kinghenryvi,1590\nline,1,1kinghenryvi,1590\nbluntly,1,1kinghenryvi,1590\nDarius,1,1kinghenryvi,1590\nstatelier,1,1kinghenryvi,1590\npilgrimage,1,1kinghenryvi,1590\nArgue,1,1kinghenryvi,1590\nparamours,1,1kinghenryvi,1590\ncorner,1,1kinghenryvi,1590\ndrag,1,1kinghenryvi,1590\nincensed,1,1kinghenryvi,1590\nProvokes,1,1kinghenryvi,1590\nUnreverent,1,1kinghenryvi,1590\nConsent,1,1kinghenryvi,1590\nbrother,1,1kinghenryvi,1590\nbeacon,1,1kinghenryvi,1590\nKeep,1,1kinghenryvi,1590\ndrab,1,1kinghenryvi,1590\nKnights,1,1kinghenryvi,1590\nPonton,1,1kinghenryvi,1590\nbrainsick,1,1kinghenryvi,1590\nAbominable,1,1kinghenryvi,1590\ntrumpet,1,1kinghenryvi,1590\nposts,1,1kinghenryvi,1590\ncorse,1,1kinghenryvi,1590\nconcerns,1,1kinghenryvi,1590\nheat,1,1kinghenryvi,1590\nForward,1,1kinghenryvi,1590\nVictorious,1,1kinghenryvi,1590\ntoward,1,1kinghenryvi,1590\nbudge,1,1kinghenryvi,1590\nOurself,1,1kinghenryvi,1590\ndisobey,1,1kinghenryvi,1590\ndrew,1,1kinghenryvi,1590\nGoliases,1,1kinghenryvi,1590\nsloth,1,1kinghenryvi,1590\nheedless,1,1kinghenryvi,1590\nQuiet,1,1kinghenryvi,1590\nwants,1,1kinghenryvi,1590\ndwarf,1,1kinghenryvi,1590\ndisputing,1,1kinghenryvi,1590\nfingers,1,1kinghenryvi,1590\nlift,1,1kinghenryvi,1590\nmadness,1,1kinghenryvi,1590\nsoil,1,1kinghenryvi,1590\nConstrain'd,1,1kinghenryvi,1590\nGoodrig,1,1kinghenryvi,1590\nbarter'd,1,1kinghenryvi,1590\nremiss,1,1kinghenryvi,1590\neclipse,1,1kinghenryvi,1590\nhanging,1,1kinghenryvi,1590\nYield,1,1kinghenryvi,1590\nHecate,1,1kinghenryvi,1590\nglass,1,1kinghenryvi,1590\ncounterfeited,1,1kinghenryvi,1590\nArgued,1,1kinghenryvi,1590\nrites,1,1kinghenryvi,1590\nwrong'st,1,1kinghenryvi,1590\nKatharine's,1,1kinghenryvi,1590\nfools,1,1kinghenryvi,1590\nsubverts,1,1kinghenryvi,1590\nquagmire,1,1kinghenryvi,1590\nassail'd,1,1kinghenryvi,1590\nfurious,1,1kinghenryvi,1590\nsquadrons,1,1kinghenryvi,1590\nabode,1,1kinghenryvi,1590\nfreedom,1,1kinghenryvi,1590\ncalamity,1,1kinghenryvi,1590\nfightest,1,1kinghenryvi,1590\npreface,1,1kinghenryvi,1590\nwail,1,1kinghenryvi,1590\npaltry,1,1kinghenryvi,1590\npartner,1,1kinghenryvi,1590\nStain'd,1,1kinghenryvi,1590\nmoving,1,1kinghenryvi,1590\nadmiring,1,1kinghenryvi,1590\ndeserve,1,1kinghenryvi,1590\nprovender,1,1kinghenryvi,1590\nshe's,1,1kinghenryvi,1590\nunpremeditated,1,1kinghenryvi,1590\nAscribes,1,1kinghenryvi,1590\n'Contaminated,1,1kinghenryvi,1590\nhereafter,1,1kinghenryvi,1590\nFroissart,1,1kinghenryvi,1590\nboat,1,1kinghenryvi,1590\nStinking,1,1kinghenryvi,1590\nafflict,1,1kinghenryvi,1590\nrepresent,1,1kinghenryvi,1590\ndeeper,1,1kinghenryvi,1590\nMazed,1,1kinghenryvi,1590\ninnocents,1,1kinghenryvi,1590\nRetain,1,1kinghenryvi,1590\nmerriest,1,1kinghenryvi,1590\nrecompensed,1,1kinghenryvi,1590\nimprison'd,1,1kinghenryvi,1590\nimpossible,1,1kinghenryvi,1590\nstriking,1,1kinghenryvi,1590\nmishap,1,1kinghenryvi,1590\nhosts,1,1kinghenryvi,1590\ndeceased,1,1kinghenryvi,1590\ntitular,1,1kinghenryvi,1590\npurses,1,1kinghenryvi,1590\nages,1,1kinghenryvi,1590\nChoked,1,1kinghenryvi,1590\neager,1,1kinghenryvi,1590\nmuster'd,1,1kinghenryvi,1590\nourself,1,1kinghenryvi,1590\nbroach,1,1kinghenryvi,1590\nwalk,1,1kinghenryvi,1590\ninvention,1,1kinghenryvi,1590\nsex,1,1kinghenryvi,1590\nmonarch,1,1kinghenryvi,1590\nDover,1,1kinghenryvi,1590\ncollop,1,1kinghenryvi,1590\nKneel,1,1kinghenryvi,1590\nwake,1,1kinghenryvi,1590\nfighteth,1,1kinghenryvi,1590\n'When,1,1kinghenryvi,1590\nshrimp,1,1kinghenryvi,1590\ndeceit,1,1kinghenryvi,1590\nwedding,1,1kinghenryvi,1590\nGoing,1,1kinghenryvi,1590\noutlaw,1,1kinghenryvi,1590\nMean,1,1kinghenryvi,1590\nfell,1,1kinghenryvi,1590\nsnatches,1,1kinghenryvi,1590\nspy,1,1kinghenryvi,1590\nnine,1,1kinghenryvi,1590\nconcern,1,1kinghenryvi,1590\nlove's,1,1kinghenryvi,1590\nbetrayed,1,1kinghenryvi,1590\nlivest,1,1kinghenryvi,1590\ncouncil,1,1kinghenryvi,1590\nfavourites,1,1kinghenryvi,1590\nDrives,1,1kinghenryvi,1590\ndeliver,1,1kinghenryvi,1590\nearnestly,1,1kinghenryvi,1590\nbraving,1,1kinghenryvi,1590\nthunders,1,1kinghenryvi,1590\nbranches,1,1kinghenryvi,1590\nliveth,1,1kinghenryvi,1590\nvine,1,1kinghenryvi,1590\nscorn'd,1,1kinghenryvi,1590\nmanaged,1,1kinghenryvi,1590\nchildren's,1,1kinghenryvi,1590\nrecords,1,1kinghenryvi,1590\nsworn,1,1kinghenryvi,1590\nimperiously,1,1kinghenryvi,1590\nAstraea's,1,1kinghenryvi,1590\nsubject,1,1kinghenryvi,1590\nCOUNTESS's,1,1kinghenryvi,1590\nmantle,1,1kinghenryvi,1590\nWax,1,1kinghenryvi,1590\n'I,1,1kinghenryvi,1590\ncountenance,1,1kinghenryvi,1590\nEsteem,1,1kinghenryvi,1590\ndignities,1,1kinghenryvi,1590\nweakly,1,1kinghenryvi,1590\ncropp'd,1,1kinghenryvi,1590\nprejudice,1,1kinghenryvi,1590\ngarrison,1,1kinghenryvi,1590\ncloy'd,1,1kinghenryvi,1590\nattached,1,1kinghenryvi,1590\ntaunt,1,1kinghenryvi,1590\nHeavens,1,1kinghenryvi,1590\ntestament,1,1kinghenryvi,1590\nsecond,1,1kinghenryvi,1590\npermit,1,1kinghenryvi,1590\nadversity,1,1kinghenryvi,1590\nmiddle,1,1kinghenryvi,1590\nmisconstrue,1,1kinghenryvi,1590\ndeserts,1,1kinghenryvi,1590\nshipping,1,1kinghenryvi,1590\ngroans,1,1kinghenryvi,1590\nparish,1,1kinghenryvi,1590\nCardinal's,1,1kinghenryvi,1590\nspelling,1,1kinghenryvi,1590\ndoubt,1,1kinghenryvi,1590\nsuck,1,1kinghenryvi,1590\nextirped,1,1kinghenryvi,1590\n'Down,1,1kinghenryvi,1590\ndally,1,1kinghenryvi,1590\noffends,1,1kinghenryvi,1590\nreveal'd,1,1kinghenryvi,1590\nincluded,1,1kinghenryvi,1590\nquittance,1,1kinghenryvi,1590\nvanquishest,1,1kinghenryvi,1590\naffect,1,1kinghenryvi,1590\nadverse,1,1kinghenryvi,1590\namiss,1,1kinghenryvi,1590\nsinners,1,1kinghenryvi,1590\njewel'd,1,1kinghenryvi,1590\nswelling,1,1kinghenryvi,1590\nrear,1,1kinghenryvi,1590\nsuppress'd,1,1kinghenryvi,1590\nunavoided,1,1kinghenryvi,1590\nperisheth,1,1kinghenryvi,1590\nrung,1,1kinghenryvi,1590\nbeseeming,1,1kinghenryvi,1590\nbrier,1,1kinghenryvi,1590\nAble,1,1kinghenryvi,1590\nMachiavel,1,1kinghenryvi,1590\ninspiration,1,1kinghenryvi,1590\nHarry,1,1kinghenryvi,1590\npiece,1,1kinghenryvi,1590\nCommit,1,1kinghenryvi,1590\nhenceforward,1,1kinghenryvi,1590\nrevived,1,1kinghenryvi,1590\nlifteth,1,1kinghenryvi,1590\nrush'd,1,1kinghenryvi,1590\nchased,1,1kinghenryvi,1590\nclimbing,1,1kinghenryvi,1590\nafraid,1,1kinghenryvi,1590\nunhallow'd,1,1kinghenryvi,1590\nfellow,1,1kinghenryvi,1590\ntwelve,1,1kinghenryvi,1590\nspying,1,1kinghenryvi,1590\ncommon,1,1kinghenryvi,1590\nAmbassadors,1,1kinghenryvi,1590\nValence,1,1kinghenryvi,1590\nsparking,1,1kinghenryvi,1590\npestiferous,1,1kinghenryvi,1590\nhabit,1,1kinghenryvi,1590\ncivil,1,1kinghenryvi,1590\nbliss,1,1kinghenryvi,1590\ndirect,1,1kinghenryvi,1590\nTurk,1,1kinghenryvi,1590\ndieted,1,1kinghenryvi,1590\nerect,1,1kinghenryvi,1590\nWhereon,1,1kinghenryvi,1590\nfault,1,1kinghenryvi,1590\nDespairing,1,1kinghenryvi,1590\nsendeth,1,1kinghenryvi,1590\ntoucheth,1,1kinghenryvi,1590\nquake,1,1kinghenryvi,1590\nexceeding,1,1kinghenryvi,1590\nruminate,1,1kinghenryvi,1590\nencounter,1,1kinghenryvi,1590\nHannibal,1,1kinghenryvi,1590\nabrupt,1,1kinghenryvi,1590\nseeks,1,1kinghenryvi,1590\ndoubt'st,1,1kinghenryvi,1590\n'Long,1,1kinghenryvi,1590\nforfeiting,1,1kinghenryvi,1590\nPardon,1,1kinghenryvi,1590\ninkhorn,1,1kinghenryvi,1590\nunable,1,1kinghenryvi,1590\nhousehold,1,1kinghenryvi,1590\nflatterer,1,1kinghenryvi,1590\ncharming,1,1kinghenryvi,1590\nLeave,1,1kinghenryvi,1590\nliegemen,1,1kinghenryvi,1590\nsue,1,1kinghenryvi,1590\ncoloured,1,1kinghenryvi,1590\nfortitude,1,1kinghenryvi,1590\ntush,1,1kinghenryvi,1590\noverthrown,1,1kinghenryvi,1590\nsum,1,1kinghenryvi,1590\nshining,1,1kinghenryvi,1590\ncomplete,1,1kinghenryvi,1590\ndistrain'd,1,1kinghenryvi,1590\nreverence,1,1kinghenryvi,1590\nfeed,1,1kinghenryvi,1590\nfearful,1,1kinghenryvi,1590\nLevied,1,1kinghenryvi,1590\nsevere,1,1kinghenryvi,1590\nbride,1,1kinghenryvi,1590\nfeel,1,1kinghenryvi,1590\nominous,1,1kinghenryvi,1590\ngirls,1,1kinghenryvi,1590\npedigree,1,1kinghenryvi,1590\npromise,1,1kinghenryvi,1590\nSpare,1,1kinghenryvi,1590\nForbidden,1,1kinghenryvi,1590\nhumbly,1,1kinghenryvi,1590\nwavering,1,1kinghenryvi,1590\nbeaten,1,1kinghenryvi,1590\nScales,1,1kinghenryvi,1590\ndirected,1,1kinghenryvi,1590\nclaim,1,1kinghenryvi,1590\ndescend,1,1kinghenryvi,1590\n'scaped,1,1kinghenryvi,1590\nVow,1,1kinghenryvi,1590\nSearch,1,1kinghenryvi,1590\nSheep,1,1kinghenryvi,1590\nbaser,1,1kinghenryvi,1590\nwhisper,1,1kinghenryvi,1590\nguile,1,1kinghenryvi,1590\nchoose,1,1kinghenryvi,1590\nspeaking,1,1kinghenryvi,1590\nlucre,1,1kinghenryvi,1590\nwine,1,1kinghenryvi,1590\nrude,1,1kinghenryvi,1590\nlion's,1,1kinghenryvi,1590\nwishes,1,1kinghenryvi,1590\nredeem'd,1,1kinghenryvi,1590\nburthening,1,1kinghenryvi,1590\nmothers',1,1kinghenryvi,1590\nward,1,1kinghenryvi,1590\nwished,1,1kinghenryvi,1590\nHence,1,1kinghenryvi,1590\ncavil,1,1kinghenryvi,1590\nEnviron,1,1kinghenryvi,1590\nkneel,1,1kinghenryvi,1590\nnegligent,1,1kinghenryvi,1590\nrend,1,1kinghenryvi,1590\nobstinacy,1,1kinghenryvi,1590\nusurp,1,1kinghenryvi,1590\nlatter,1,1kinghenryvi,1590\ndeigned,1,1kinghenryvi,1590\nknees,1,1kinghenryvi,1590\ndroopeth,1,1kinghenryvi,1590\npeasants,1,1kinghenryvi,1590\nsteal,1,1kinghenryvi,1590\nTaste,1,1kinghenryvi,1590\nensign,1,1kinghenryvi,1590\ngoose,1,1kinghenryvi,1590\nThough,1,1kinghenryvi,1590\nrenew,1,1kinghenryvi,1590\nCousin,1,1kinghenryvi,1590\nsurmount,1,1kinghenryvi,1590\ngo'st,1,1kinghenryvi,1590\nimmaculate,1,1kinghenryvi,1590\nwist,1,1kinghenryvi,1590\nseest,1,1kinghenryvi,1590\nservile,1,1kinghenryvi,1590\ncompromise,1,1kinghenryvi,1590\nfortress,1,1kinghenryvi,1590\nAccept,1,1kinghenryvi,1590\ndistressful,1,1kinghenryvi,1590\neagle,1,1kinghenryvi,1590\nimperious,1,1kinghenryvi,1590\nDecrepit,1,1kinghenryvi,1590\nPutting,1,1kinghenryvi,1590\no'ermatch'd,1,1kinghenryvi,1590\nuseth,1,1kinghenryvi,1590\nblades,1,1kinghenryvi,1590\nbeating,1,1kinghenryvi,1590\nhorrors,1,1kinghenryvi,1590\n'Speak,1,1kinghenryvi,1590\nmalady,1,1kinghenryvi,1590\nparching,1,1kinghenryvi,1590\npitch'd,1,1kinghenryvi,1590\ncoast,1,1kinghenryvi,1590\napproacheth,1,1kinghenryvi,1590\ndogfish,1,1kinghenryvi,1590\nsanguine,1,1kinghenryvi,1590\nadvancement,1,1kinghenryvi,1590\nParisians,1,1kinghenryvi,1590\ntimeless,1,1kinghenryvi,1590\nwash,1,1kinghenryvi,1590\nConstantine,1,1kinghenryvi,1590\nAbel,1,1kinghenryvi,1590\nconveyance,1,1kinghenryvi,1590\ndealt,1,1kinghenryvi,1590\nboot,1,1kinghenryvi,1590\nmistake,1,1kinghenryvi,1590\nGallian,1,1kinghenryvi,1590\nflowing,1,1kinghenryvi,1590\nspakest,1,1kinghenryvi,1590\nfortified,1,1kinghenryvi,1590\nhaled,1,1kinghenryvi,1590\nrules,1,1kinghenryvi,1590\nThere's,1,1kinghenryvi,1590\nruler,1,1kinghenryvi,1590\ndistrust,1,1kinghenryvi,1590\nwits,1,1kinghenryvi,1590\nSIXTH,1,1kinghenryvi,1590\nbook,1,1kinghenryvi,1590\nsally,1,1kinghenryvi,1590\nEnglishmen,1,1kinghenryvi,1590\nPerish,1,1kinghenryvi,1590\nsuborn'd,1,1kinghenryvi,1590\nwilleth,1,1kinghenryvi,1590\nCombat,1,1kinghenryvi,1590\nunrelenting,1,1kinghenryvi,1590\ninfirmity,1,1kinghenryvi,1590\ndigg'd,1,1kinghenryvi,1590\nsceptre,1,1kinghenryvi,1590\nDraw,1,1kinghenryvi,1590\nbarrels,1,1kinghenryvi,1590\noffers,1,1kinghenryvi,1590\nfairest,1,1kinghenryvi,1590\nvigilant,1,1kinghenryvi,1590\naspect,1,1kinghenryvi,1590\nUsed,1,1kinghenryvi,1590\njarring,1,1kinghenryvi,1590\nmasculine,1,1kinghenryvi,1590\nchaseth,1,1kinghenryvi,1590\nbitter,1,1kinghenryvi,1590\nsenses,1,1kinghenryvi,1590\nknowledge,1,1kinghenryvi,1590\ndrove,1,1kinghenryvi,1590\nscandal,1,1kinghenryvi,1590\nwhosoe'er,1,1kinghenryvi,1590\ninstalled,1,1kinghenryvi,1590\nprince's,1,1kinghenryvi,1590\ngrievous,1,1kinghenryvi,1590\nFaith,1,1kinghenryvi,1590\nmickle,1,1kinghenryvi,1590\nDeprived,1,1kinghenryvi,1590\nconspirator,1,1kinghenryvi,1590\nbastards,1,1kinghenryvi,1590\nProffers,1,1kinghenryvi,1590\ndishonourable,1,1kinghenryvi,1590\nTomyris,1,1kinghenryvi,1590\nenfeebled,1,1kinghenryvi,1590\nmanners,1,1kinghenryvi,1590\nunkind,1,1kinghenryvi,1590\nLeaving,1,1kinghenryvi,1590\nenjoy'd,1,1kinghenryvi,1590\nenchant,1,1kinghenryvi,1590\nhap,1,1kinghenryvi,1590\ndrinking,1,1kinghenryvi,1590\nbacks,1,1kinghenryvi,1590\nFaint,1,1kinghenryvi,1590\ncontumelious,1,1kinghenryvi,1590\nsorcery,1,1kinghenryvi,1590\nWhile,1,1kinghenryvi,1590\ndecaying,1,1kinghenryvi,1590\ncrack,1,1kinghenryvi,1590\nscared,1,1kinghenryvi,1590\nHungerford,1,1kinghenryvi,1590\nBelike,1,1kinghenryvi,1590\ndiscern,1,1kinghenryvi,1590\noffend,1,1kinghenryvi,1590\nintend'st,1,1kinghenryvi,1590\norator,1,1kinghenryvi,1590\nWindsor,1,1kinghenryvi,1590\nStrumpet,1,1kinghenryvi,1590\nobtained,1,1kinghenryvi,1590\ndelights,1,1kinghenryvi,1590\nunbidden,1,1kinghenryvi,1590\nflattery,1,1kinghenryvi,1590\noratory,1,1kinghenryvi,1590\nspoil,1,1kinghenryvi,1590\npacking,1,1kinghenryvi,1590\ntonight,1,1kinghenryvi,1590\nmusic,1,1kinghenryvi,1590\ndazzled,1,1kinghenryvi,1590\nchaste,1,1kinghenryvi,1590\namort,1,1kinghenryvi,1590\nstudiously,1,1kinghenryvi,1590\ndaunted,1,1kinghenryvi,1590\nbow,1,1kinghenryvi,1590\nloath,1,1kinghenryvi,1590\nhurly,1,1kinghenryvi,1590\nWhiles,1,1kinghenryvi,1590\neternal,1,1kinghenryvi,1590\nextemporal,1,1kinghenryvi,1590\nBecomes,1,1kinghenryvi,1590\nbereave,1,1kinghenryvi,1590\nshortly,1,1kinghenryvi,1590\nfortify,1,1kinghenryvi,1590\namong,1,1kinghenryvi,1590\nblown,1,1kinghenryvi,1590\nsmile,1,1kinghenryvi,1590\neveryone,1,1kinghenryvi,1590\nitself,1,1kinghenryvi,1590\nLa,1,1kinghenryvi,1590\nspots,1,1kinghenryvi,1590\nPlay,1,1kinghenryvi,1590\nHumphry,1,1kinghenryvi,1590\nPrisoner,1,1kinghenryvi,1590\nhitherto,1,1kinghenryvi,1590\nscaling,1,1kinghenryvi,1590\nMe,1,1kinghenryvi,1590\nwarrior,1,1kinghenryvi,1590\nimagined,1,1kinghenryvi,1590\nbay,1,1kinghenryvi,1590\nlands,1,1kinghenryvi,1590\nFalconbridge,1,1kinghenryvi,1590\ngained,1,1kinghenryvi,1590\nsubscribe,1,1kinghenryvi,1590\nPhilip's,1,1kinghenryvi,1590\nturrets,1,1kinghenryvi,1590\nlisten,1,1kinghenryvi,1590\nAdvance,1,1kinghenryvi,1590\nkept,1,1kinghenryvi,1590\nPay,1,1kinghenryvi,1590\ncreature,1,1kinghenryvi,1590\ngallery,1,1kinghenryvi,1590\nbeautiful,1,1kinghenryvi,1590\nHew,1,1kinghenryvi,1590\nbegun,1,1kinghenryvi,1590\nMinotaurs,1,1kinghenryvi,1590\ndiligence,1,1kinghenryvi,1590\nhomicide,1,1kinghenryvi,1590\nhid,1,1kinghenryvi,1590\nglimmer,1,1kinghenryvi,1590\nchanged,1,1kinghenryvi,1590\nmotions,1,1kinghenryvi,1590\nmiracles,1,1kinghenryvi,1590\n'long,1,1kinghenryvi,1590\nSomething,1,1kinghenryvi,1590\nExceeding,1,1kinghenryvi,1590\nHa,1,1kinghenryvi,1590\nespecial,1,1kinghenryvi,1590\npiteous,1,1kinghenryvi,1590\nbeg,1,1kinghenryvi,1590\nmiser,1,1kinghenryvi,1590\nfines,1,1kinghenryvi,1590\ncheerfully,1,1kinghenryvi,1590\ndinner,1,1kinghenryvi,1590\nfeigned,1,1kinghenryvi,1590\nnotorious,1,1kinghenryvi,1590\nbless,1,1kinghenryvi,1590\nguardant,1,1kinghenryvi,1590\nfortune's,1,1kinghenryvi,1590\nfriars,1,1kinghenryvi,1590\nhusbands,1,1kinghenryvi,1590\nquick,1,1kinghenryvi,1590\ndigest,1,1kinghenryvi,1590\ntribute,1,1kinghenryvi,1590\nshipwreck,1,1kinghenryvi,1590\nkilleth,1,1kinghenryvi,1590\nStain,1,1kinghenryvi,1590\nbid,1,1kinghenryvi,1590\npate,1,1kinghenryvi,1590\ndespair,1,1kinghenryvi,1590\nUnchain,1,1kinghenryvi,1590\nplay,1,1kinghenryvi,1590\nrevolting,1,1kinghenryvi,1590\nsport,1,1kinghenryvi,1590\nenrich,1,1kinghenryvi,1590\npast,1,1kinghenryvi,1590\ndroops,1,1kinghenryvi,1590\nApproves,1,1kinghenryvi,1590\nVerbatim,1,1kinghenryvi,1590\nears,1,1kinghenryvi,1590\nstem,1,1kinghenryvi,1590\ntemples,1,1kinghenryvi,1590\nWinds,1,1kinghenryvi,1590\ndisplay'd,1,1kinghenryvi,1590\nnice,1,1kinghenryvi,1590\nUncles,1,1kinghenryvi,1590\ncull'd,1,1kinghenryvi,1590\nmonstrous,1,1kinghenryvi,1590\npolluted,1,1kinghenryvi,1590\nJulius,1,1kinghenryvi,1590\nneglection,1,1kinghenryvi,1590\ncardinal,1,1kinghenryvi,1590\nhalcyon,1,1kinghenryvi,1590\nabsurd,1,1kinghenryvi,1590\nsire,1,1kinghenryvi,1590\nbloom'd,1,1kinghenryvi,1590\nbegot,1,1kinghenryvi,1590\ntemple,1,1kinghenryvi,1590\nbeheaded,1,1kinghenryvi,1590\nDukes,1,1kinghenryvi,1590\nvalour's,1,1kinghenryvi,1590\nForgive,1,1kinghenryvi,1590\nwarn'd,1,1kinghenryvi,1590\ntheft,1,1kinghenryvi,1590\npriests,1,1kinghenryvi,1590\nintercept,1,1kinghenryvi,1590\nsought,1,1kinghenryvi,1590\nunequal,1,1kinghenryvi,1590\nbishop's,1,1kinghenryvi,1590\nWINCHESTER's,1,1kinghenryvi,1590\nMurder,1,1kinghenryvi,1590\nThunder,1,1kinghenryvi,1590\nbull,1,1kinghenryvi,1590\nexhibit,1,1kinghenryvi,1590\nchallenge,1,1kinghenryvi,1590\npleaded,1,1kinghenryvi,1590\nsorry,1,1kinghenryvi,1590\nproditor,1,1kinghenryvi,1590\nexequies,1,1kinghenryvi,1590\npreserved,1,1kinghenryvi,1590\nrebel,1,1kinghenryvi,1590\nPosterity,1,1kinghenryvi,1590\nbelief,1,1kinghenryvi,1590\nmiscarry,1,1kinghenryvi,1590\nbury,1,1kinghenryvi,1590\npossibility,1,1kinghenryvi,1590\ndrench,1,1kinghenryvi,1590\nSuddenly,1,1kinghenryvi,1590\nwhoso,1,1kinghenryvi,1590\ndove,1,1kinghenryvi,1590\nheroic,1,1kinghenryvi,1590\nprotract,1,1kinghenryvi,1590\ngoodly,1,1kinghenryvi,1590\nPercies,1,1kinghenryvi,1590\ngot,1,1kinghenryvi,1590\nkindness,1,1kinghenryvi,1590\ncoffin,1,1kinghenryvi,1590\ncar,1,1kinghenryvi,1590\ncap,1,1kinghenryvi,1590\nbreathing,1,1kinghenryvi,1590\nwarrantize,1,1kinghenryvi,1590\ncorpse,1,1kinghenryvi,1590\npetition,1,1kinghenryvi,1590\nornament,1,1kinghenryvi,1590\nrigorously,1,1kinghenryvi,1590\ntell'st,1,1kinghenryvi,1590\nSkirmish,1,1kinghenryvi,1590\naltar,1,1kinghenryvi,1590\nSurely,1,1kinghenryvi,1590\nreguerdon,1,1kinghenryvi,1590\nflouted,1,1kinghenryvi,1590\ndevised,1,1kinghenryvi,1590\nsacrament,1,1kinghenryvi,1590\nSirs,1,1kinghenryvi,1590\nmuleters,1,1kinghenryvi,1590\nWarlike,1,1kinghenryvi,1590\nBolingbroke,1,1kinghenryvi,1590\nwedlock,1,1kinghenryvi,1590\nlatest,1,1kinghenryvi,1590\nbent,1,1kinghenryvi,1590\nPeel'd,1,1kinghenryvi,1590\ntreasons,1,1kinghenryvi,1590\nEntreat,1,1kinghenryvi,1590\nStrange,1,1kinghenryvi,1590\npeople,1,1kinghenryvi,1590\ndisperse,1,1kinghenryvi,1590\nlamps,1,1kinghenryvi,1590\nmodestly,1,1kinghenryvi,1590\nenlargement,1,1kinghenryvi,1590\nBorn,1,1kinghenryvi,1590\nwaving,1,1kinghenryvi,1590\nHundreds,1,1kinghenryvi,1590\nsumptuous,1,1kinghenryvi,1590\nmonuments,1,1kinghenryvi,1590\ngore,1,1kinghenryvi,1590\nLascivious,1,1kinghenryvi,1590\nrenounce,1,1kinghenryvi,1590\novercame,1,1kinghenryvi,1590\nantic,1,1kinghenryvi,1590\nbulwark,1,1kinghenryvi,1590\njewel,1,1kinghenryvi,1590\nhappen'd,1,1kinghenryvi,1590\nsmoothed,1,1kinghenryvi,1590\nslothful,1,1kinghenryvi,1590\ncarpenter,1,1kinghenryvi,1590\nDidst,1,1kinghenryvi,1590\neaten,1,1kinghenryvi,1590\nhereof,1,1kinghenryvi,1590\ndespise,1,1kinghenryvi,1590\njust,1,1kinghenryvi,1590\nestablished,1,1kinghenryvi,1590\ngunner,1,1kinghenryvi,1590\ndiscretions,1,1kinghenryvi,1590\ndissembling,1,1kinghenryvi,1590\nroyally,1,1kinghenryvi,1590\nwelcomest,1,1kinghenryvi,1590\ntestify,1,1kinghenryvi,1590\neffused,1,1kinghenryvi,1590\nswift,1,1kinghenryvi,1590\nbuy,1,1kinghenryvi,1590\nsueth,1,1kinghenryvi,1590\ninsinuating,1,1kinghenryvi,1590\nsubmission,1,1kinghenryvi,1590\ntravel,1,1kinghenryvi,1590\ngather'd,1,1kinghenryvi,1590\nweening,1,1kinghenryvi,1590\nresident,1,1kinghenryvi,1590\nchild's,1,1kinghenryvi,1590\nbees,1,1kinghenryvi,1590\nhurry,1,1kinghenryvi,1590\nEnough,1,1kinghenryvi,1590\nTends,1,1kinghenryvi,1590\nTraitors,1,1kinghenryvi,1590\ndivine,1,1kinghenryvi,1590\nambassadors,1,1kinghenryvi,1590\npaint,1,1kinghenryvi,1590\nensue,1,1kinghenryvi,1590\ndiscomfiture,1,1kinghenryvi,1590\ngate,1,1kinghenryvi,1590\nobjected,1,1kinghenryvi,1590\nsing,1,1kinghenryvi,1590\naudacity,1,1kinghenryvi,1590\nvantage,1,1kinghenryvi,1590\ncalling,1,1kinghenryvi,1590\nashamed,1,1kinghenryvi,1590\nfooting,1,1kinghenryvi,1590\nring'd,1,1kinghenryvi,1590\npark'd,1,1kinghenryvi,1590\nChief,1,1kinghenryvi,1590\nBoth,1,1kinghenryvi,1590\nanointed,1,1kinghenryvi,1590\npillage,1,1kinghenryvi,1590\nBethink,1,1kinghenryvi,1590\nNaught,1,1kinghenryvi,1590\nName,1,1kinghenryvi,1590\nEndeavor'd,1,1kinghenryvi,1590\nsolemn,1,1kinghenryvi,1590\nAlcides,1,1kinghenryvi,1590\ncontinued,1,1kinghenryvi,1590\nimpatience,1,1kinghenryvi,1590\ngovernment,1,1kinghenryvi,1590\naffection,1,1kinghenryvi,1590\nwiped,1,1kinghenryvi,1590\nforgive,1,1kinghenryvi,1590\nCannot,1,1kinghenryvi,1590\nbetray,1,1kinghenryvi,1590\nconfess,1,1kinghenryvi,1590\nFortune,1,1kinghenryvi,1590\nclear'd,1,1kinghenryvi,1590\nmagic,1,1kinghenryvi,1590\naim,1,1kinghenryvi,1590\nDurst,1,1kinghenryvi,1590\npromises,1,1kinghenryvi,1590\ntorments,1,1kinghenryvi,1590\nPurpose,1,1kinghenryvi,1590\nstops,1,1kinghenryvi,1590\nforbids,1,1kinghenryvi,1590\nbattery,1,1kinghenryvi,1590\nlineal,1,1kinghenryvi,1590\nPart,1,1kinghenryvi,1590\nDestroy'd,1,1kinghenryvi,1590\ncarping,1,1kinghenryvi,1590\nprevented,1,1kinghenryvi,1590\nclustering,1,1kinghenryvi,1590\nCropp'd,1,1kinghenryvi,1590\nDamascus,1,1kinghenryvi,1590\nAngiers,1,1kinghenryvi,1590\nyes,1,1kinghenryvi,1590\nrecovered,1,1kinghenryvi,1590\nCrete,1,1kinghenryvi,1590\nlaments,1,1kinghenryvi,1590\nbeam,1,1kinghenryvi,1590\ntongues,1,1kinghenryvi,1590\nlegs,1,1kinghenryvi,1590\ngathered,1,1kinghenryvi,1590\nUnless,1,1kinghenryvi,1590\no'ercame,1,1kinghenryvi,1590\ndriving,1,1kinghenryvi,1590\nplays,1,1kinghenryvi,1590\ntragedy,1,1kinghenryvi,1590\nGlory,1,1kinghenryvi,1590\ndeal,1,1kinghenryvi,1590\ndignity,1,1kinghenryvi,1590\nwalled,1,1kinghenryvi,1590\ncommanders,1,1kinghenryvi,1590\nwhelps,1,1kinghenryvi,1590\nimmanity,1,1kinghenryvi,1590\nseeing,1,1kinghenryvi,1590\npluck'd,1,1kinghenryvi,1590\nslaughters,1,1kinghenryvi,1590\nemulations,1,1kinghenryvi,1590\nco,1,1kinghenryvi,1590\nBesides,1,1kinghenryvi,1590\ncontinual,1,1kinghenryvi,1590\nReturn,1,1kinghenryvi,1590\nthrive,1,1kinghenryvi,1590\nenforce,1,1kinghenryvi,1590\nvictors,1,1kinghenryvi,1590\ngall,1,1kinghenryvi,1590\npreciseness,1,1kinghenryvi,1590\nLate,1,1kinghenryvi,1590\nwaist,1,1kinghenryvi,1590\ntouch'd,1,1kinghenryvi,1590\ndefence,1,1kinghenryvi,1590\ndisable,1,1kinghenryvi,1590\nusurer,1,1kinghenryvi,1590\nburied,1,1kinghenryvi,1590\nMortimers,1,1kinghenryvi,1590\nmembers,1,1kinghenryvi,1590\nquaint,1,1kinghenryvi,1590\nPendragon,1,1kinghenryvi,1590\nhouses,1,1kinghenryvi,1590\nspeed,1,1kinghenryvi,1590\npossess'd,1,1kinghenryvi,1590\nsmear'd,1,1kinghenryvi,1590\nBegun,1,1kinghenryvi,1590\nhear'st,1,1kinghenryvi,1590\nquartering,1,1kinghenryvi,1590\nsupreme,1,1kinghenryvi,1590\npiercing,1,1kinghenryvi,1590\nfixed,1,1kinghenryvi,1590\ndoom,1,1kinghenryvi,1590\nsugar'd,1,1kinghenryvi,1590\nprosper,1,1kinghenryvi,1590\nCromwell,1,1kinghenryvi,1590\nEarls,1,1kinghenryvi,1590\nLangley,1,1kinghenryvi,1590\npursuit,1,1kinghenryvi,1590\nspreading,1,1kinghenryvi,1590\nmonth,1,1kinghenryvi,1590\nBastard's,1,1kinghenryvi,1590\ndelay,1,1kinghenryvi,1590\nsmall,1,1kinghenryvi,1590\nInsulting,1,1kinghenryvi,1590\nlo,1,1kinghenryvi,1590\nexpert,1,1kinghenryvi,1590\nplant,1,1kinghenryvi,1590\nengraved,1,1kinghenryvi,1590\nunspotted,1,1kinghenryvi,1590\npotentates,1,1kinghenryvi,1590\nnecessity,1,1kinghenryvi,1590\nboasting,1,1kinghenryvi,1590\naside,1,1kinghenryvi,1590\nquarters,1,1kinghenryvi,1590\nsceptres,1,1kinghenryvi,1590\no',1,1kinghenryvi,1590\nmisbegotten,1,1kinghenryvi,1590\nlegate,1,1kinghenryvi,1590\nmalignant,1,1kinghenryvi,1590\nreguerdon'd,1,1kinghenryvi,1590\naccount,1,1kinghenryvi,1590\nsometime,1,1kinghenryvi,1590\ndeface,1,1kinghenryvi,1590\nReads,1,1kinghenryvi,1590\nreveal,1,1kinghenryvi,1590\nwitting,1,1kinghenryvi,1590\nReady,1,1kinghenryvi,1590\ntemper,1,1kinghenryvi,1590\nmorn,1,1kinghenryvi,1590\nvalue,1,1kinghenryvi,1590\ncrimes,1,1kinghenryvi,1590\nenmity,1,1kinghenryvi,1590\nventurous,1,1kinghenryvi,1590\nBegin,1,1kinghenryvi,1590\nDizzy,1,1kinghenryvi,1590\nCountess,1,1kinghenryvi,1590\nCivil,1,1kinghenryvi,1590\nhadst,1,1kinghenryvi,1590\nSuccess,1,1kinghenryvi,1590\nRenowned,1,1kinghenryvi,1590\nbegg'd,1,1kinghenryvi,1590\nink,1,1kinghenryvi,1590\npithless,1,1kinghenryvi,1590\noffer'd,1,1kinghenryvi,1590\nhostility,1,1kinghenryvi,1590\ngrooms,1,1kinghenryvi,1590\nalteration,1,1kinghenryvi,1590\nado,1,1kinghenryvi,1590\nlaboured,1,1kinghenryvi,1590\nadd,1,1kinghenryvi,1590\nbeholding,1,1kinghenryvi,1590\nspeak'st,1,1kinghenryvi,1590\nThrust,1,1kinghenryvi,1590\nNemesis,1,1kinghenryvi,1590\nbruited,1,1kinghenryvi,1590\npartners,1,1kinghenryvi,1590\ncrazy,1,1kinghenryvi,1590\nsemblance,1,1kinghenryvi,1590\ndiamond,1,1kinghenryvi,1590\ncelebrate,1,1kinghenryvi,1590\nafternoon,1,1kinghenryvi,1590\nknot,1,1kinghenryvi,1590\ntwenty,1,1kinghenryvi,1590\nblue,1,1kinghenryvi,1590\nrepugn,1,1kinghenryvi,1590\ndefy,1,1kinghenryvi,1590\nfeats,1,1kinghenryvi,1590\nbeauteous,1,1kinghenryvi,1590\nsmart,1,1kinghenryvi,1590\nboding,1,1kinghenryvi,1590\nIt's,1,1kinghenryvi,1590\ncommandment,1,1kinghenryvi,1590\nhaps,1,1kinghenryvi,1590\npremeditated,1,1kinghenryvi,1590\nforgot,1,1kinghenryvi,1590\nslack,1,1kinghenryvi,1590\nscatter'd,1,1kinghenryvi,1590\nrespite,1,1kinghenryvi,1590\nDiscourse,1,1kinghenryvi,1590\nmarr'd,1,1kinghenryvi,1590\nmen's,1,1kinghenryvi,1590\nsun's,1,1kinghenryvi,1590\nharm,1,1kinghenryvi,1590\nbasely,1,1kinghenryvi,1590\nWhence,1,1kinghenryvi,1590\nreasons,1,1kinghenryvi,1590\neats,1,1kinghenryvi,1590\nwarm'd,1,1kinghenryvi,1590\ngovernor's,1,1kinghenryvi,1590\nrunning,1,1kinghenryvi,1590\nornaments,1,1kinghenryvi,1590\nexecuted,1,1kinghenryvi,1590\neasy,1,1kinghenryvi,1590\ndescry,1,1kinghenryvi,1590\nkills,1,1kinghenryvi,1590\nhare,1,1kinghenryvi,1590\naccounted,1,1kinghenryvi,1590\nshrives,1,1kinghenryvi,1590\npuny,1,1kinghenryvi,1590\nfight'st,1,1kinghenryvi,1590\nJack,1,1kinghenryvi,1590\noutward,1,1kinghenryvi,1590\nfront,1,1kinghenryvi,1590\nincline,1,1kinghenryvi,1590\nMost,1,1kinghenryvi,1590\nisle,1,1kinghenryvi,1590\nAlton,1,1kinghenryvi,1590\nCamp,1,1kinghenryvi,1590\nDefer,1,1kinghenryvi,1590\nEDMUND,1,1kinghenryvi,1590\nkeen,1,1kinghenryvi,1590\nUndaunted,1,1kinghenryvi,1590\nlewd,1,1kinghenryvi,1590\nBishop,1,1kinghenryvi,1590\npreferreth,1,1kinghenryvi,1590\npull,1,1kinghenryvi,1590\nspells,1,1kinghenryvi,1590\nround,1,1kinghenryvi,1590\noutright,1,1kinghenryvi,1590\nearl's,1,1kinghenryvi,1590\nkingly,1,1kinghenryvi,1590\nunfallible,1,1kinghenryvi,1590\ninflaming,1,1kinghenryvi,1590\nshallow,1,1kinghenryvi,1590\nenrank,1,1kinghenryvi,1590\nGaunt,1,1kinghenryvi,1590\nfashion'd,1,1kinghenryvi,1590\nfinish,1,1kinghenryvi,1590\nverses,1,1kinghenryvi,1590\nnoisome,1,1kinghenryvi,1590\nHercules,1,1kinghenryvi,1590\ndispensation,1,1kinghenryvi,1590\nperform'd,1,1kinghenryvi,1590\nnatural,1,1kinghenryvi,1590\nsignal,1,1kinghenryvi,1590\nre,1,1kinghenryvi,1590\nappears,1,1kinghenryvi,1590\nPluck,1,1kinghenryvi,1590\nconsume,1,1kinghenryvi,1590\nswiftest,1,1kinghenryvi,1590\ndraws,1,1kinghenryvi,1590\nthinkest,1,1kinghenryvi,1590\noverpeer,1,1kinghenryvi,1590\nmitigate,1,1kinghenryvi,1590\nporridge,1,1kinghenryvi,1590\nEnjoy,1,1kinghenryvi,1590\nseverity,1,1kinghenryvi,1590\nforty,1,1kinghenryvi,1590\njoyful,1,1kinghenryvi,1590\nschool,1,1kinghenryvi,1590\nState,1,1kinghenryvi,1590\npeacock,1,1kinghenryvi,1590\nCain,1,1kinghenryvi,1590\nexcuse,1,1kinghenryvi,1590\nsucking,1,1kinghenryvi,1590\nBlois,1,1kinghenryvi,1590\nunlawful,1,1kinghenryvi,1590\nenticing,1,1kinghenryvi,1590\ncommendable,1,1kinghenryvi,1590\nvieweth,1,1kinghenryvi,1590\ncrestless,1,1kinghenryvi,1590\nShe's,1,1kinghenryvi,1590\ninterchanging,1,1kinghenryvi,1590\ngrudging,1,1kinghenryvi,1590\nvengeance,1,1kinghenryvi,1590\nQui,1,1kinghenryvi,1590\nknocks,1,1kinghenryvi,1590\nplighted,1,1kinghenryvi,1590\nQuo,1,1kinghenryvi,1590\nkingdoms,1,1kinghenryvi,1590\npresent,1,1kinghenryvi,1590\nextinguish,1,1kinghenryvi,1590\nimpatient,1,1kinghenryvi,1590\nPrettily,1,1kinghenryvi,1590\nAugust,1,1kinghenryvi,1590\nhomicides,1,1kinghenryvi,1590\nask,1,1kinghenryvi,1590\nTendering,1,1kinghenryvi,1590\npair,1,1kinghenryvi,1590\nship,1,1kinghenryvi,1590\ncourts,1,1kinghenryvi,1590\nremoving,1,1kinghenryvi,1590\noutrage,1,1kinghenryvi,1590\npersuasions,1,1kinghenryvi,1590\nlitter,1,1kinghenryvi,1590\nAscend,1,1kinghenryvi,1590\nspear,1,1kinghenryvi,1590\nwalked,1,1kinghenryvi,1590\nmayor,1,1kinghenryvi,1590\nchastise,1,1kinghenryvi,1590\npyramis,1,1kinghenryvi,1590\nfrown,1,1kinghenryvi,1590\nHelen,1,1kinghenryvi,1590\npoint,1,1kinghenryvi,1590\ndeceitful,1,1kinghenryvi,1590\nhowsoe'er,1,1kinghenryvi,1590\nentertain'd,1,1kinghenryvi,1590\ntwain,1,1kinghenryvi,1590\nDoubting,1,1kinghenryvi,1590\nWicked,1,1kinghenryvi,1590\nhate,1,1kinghenryvi,1590\nforlorn,1,1kinghenryvi,1590\nO'ertake,1,1kinghenryvi,1590\nshow,1,1kinghenryvi,1590\nfear'd,1,1kinghenryvi,1590\nalive,1,1kinghenryvi,1590\n'Young,1,1kinghenryvi,1590\ndismal,1,1kinghenryvi,1590\nyielded,1,1kinghenryvi,1590\nproper,1,1kinghenryvi,1590\ngentry,1,1kinghenryvi,1590\nrough,1,1kinghenryvi,1590\nmoan,1,1kinghenryvi,1590\nFell,1,1kinghenryvi,1590\nfood,1,1kinghenryvi,1590\ncontain,1,1kinghenryvi,1590\nconversing,1,1kinghenryvi,1590\nprepared,1,1kinghenryvi,1590\ndisdaining,1,1kinghenryvi,1590\nfond,1,1kinghenryvi,1590\naccidents,1,1kinghenryvi,1590\nfresh,1,1kinghenryvi,1590\nrear'd,1,1kinghenryvi,1590\npikes,1,1kinghenryvi,1590\nhapless,1,1kinghenryvi,1590\nlowted,1,1kinghenryvi,1590\nFitter,1,1kinghenryvi,1590\nlock,1,1kinghenryvi,1590\nYields,1,1kinghenryvi,1590\nCompassion,1,1kinghenryvi,1590\nBlood,1,1kinghenryvi,1590\nsuperficial,1,1kinghenryvi,1590\nWhite,1,1kinghenryvi,1590\nterm,1,1kinghenryvi,1590\ntresses,1,1kinghenryvi,1590\nCare,1,1kinghenryvi,1590\nHast,1,1kinghenryvi,1590\nturret's,1,1kinghenryvi,1590\nArm,1,1kinghenryvi,1590\nKind,1,1kinghenryvi,1590\nknock,1,1kinghenryvi,1590\ncoveting,1,1kinghenryvi,1590\nStrikes,1,1kinghenryvi,1590\nDetract,1,1kinghenryvi,1590\nWretched,1,1kinghenryvi,1590\nprate,1,1kinghenryvi,1590\nAccursed,1,1kinghenryvi,1590\ncomic,1,1kinghenryvi,1590\ndeadly,1,1kinghenryvi,1590\nfew,1,1kinghenryvi,1590\nAgain,1,1kinghenryvi,1590\npartaker,1,1kinghenryvi,1590\narray,1,1kinghenryvi,1590\nsweetly,1,1kinghenryvi,1590\ndeem'd,1,1kinghenryvi,1590\nbroil,1,1kinghenryvi,1590\ntrial,1,1kinghenryvi,1590\nQuid,1,1kinghenryvi,1590\nStoop,1,1kinghenryvi,1590\nAsk,1,1kinghenryvi,1590\nexcel,1,1kinghenryvi,1590\nsuperscription,1,1kinghenryvi,1590\ntasted,1,1kinghenryvi,1590\nArt,1,1kinghenryvi,1590\nfeign,1,1kinghenryvi,1590\nservility,1,1kinghenryvi,1590\nuntrain'd,1,1kinghenryvi,1590\nroot,1,1kinghenryvi,1590\nEurope,1,1kinghenryvi,1590\nexpenses,1,1kinghenryvi,1590\ncompact,1,1kinghenryvi,1590\nheight,1,1kinghenryvi,1590\nrequited,1,1kinghenryvi,1590\nexecute,1,1kinghenryvi,1590\nfat,1,1kinghenryvi,1590\nrays,1,1kinghenryvi,1590\nroof,1,1kinghenryvi,1590\nlean,1,1kinghenryvi,1590\nprocession,1,1kinghenryvi,1590\ndisanimates,1,1kinghenryvi,1590\ngiglot,1,1kinghenryvi,1590\nleap,1,1kinghenryvi,1590\napplauded,1,1kinghenryvi,1590\noccasion,1,1kinghenryvi,1590\ntried,1,1kinghenryvi,1590\npartakers,1,1kinghenryvi,1590\nperceived,1,1kinghenryvi,1590\nlavish,1,1kinghenryvi,1590\nCollected,1,1kinghenryvi,1590\nglorify,1,1kinghenryvi,1590\ntrained,1,1kinghenryvi,1590\nglories,1,1kinghenryvi,1590\nbreeds,1,1kinghenryvi,1590\nenow,1,1kinghenryvi,1590\nWounds,1,1kinghenryvi,1590\ndiffidence,1,1kinghenryvi,1590\nVirtue,1,1kinghenryvi,1590\nsurgeon,1,1kinghenryvi,1590\nmoved,1,1kinghenryvi,1590\nsuck'dst,1,1kinghenryvi,1590\nconsider'd,1,1kinghenryvi,1590\nrigor,1,1kinghenryvi,1590\nnay,1,1kinghenryvi,1590\nOlivers,1,1kinghenryvi,1590\ncarried,1,1kinghenryvi,1590\nerects,1,1kinghenryvi,1590\nTouraine,1,1kinghenryvi,1590\nTwinkling,1,1kinghenryvi,1590\nsignificants,1,1kinghenryvi,1590\ntokens,1,1kinghenryvi,1590\nredoubted,1,1kinghenryvi,1590\nlaugh'st,1,1kinghenryvi,1590\nshouldst,1,1kinghenryvi,1590\napprehension,1,1kinghenryvi,1590\nguiltless,1,1kinghenryvi,1590\nrascals,1,1kinghenryvi,1590\nenchantress,1,1kinghenryvi,1590\nWestminster,1,1kinghenryvi,1590\nobjections,1,1kinghenryvi,1590\npebble,1,1kinghenryvi,1590\nintrench'd,1,1kinghenryvi,1590\nfugitive,1,1kinghenryvi,1590\nassuredly,1,1kinghenryvi,1590\ndistance,1,1kinghenryvi,1590\ntriumphant,1,1kinghenryvi,1590\nnote,1,1kinghenryvi,1590\nwhelp,1,1kinghenryvi,1590\nwater,1,1kinghenryvi,1590\ndisgraceful,1,1kinghenryvi,1590\nsmallest,1,1kinghenryvi,1590\nnourish,1,1kinghenryvi,1590\nunknown,1,1kinghenryvi,1590\nfourth,1,1kinghenryvi,1590\nsending,1,1kinghenryvi,1590\noverpass'd,1,1kinghenryvi,1590\nreflex,1,1kinghenryvi,1590\nenvy,1,1kinghenryvi,1590\nVenus,1,1kinghenryvi,1590\napparell'd,1,1kinghenryvi,1590\ntrenches,1,1kinghenryvi,1590\ninfamous,1,1kinghenryvi,1590\nproceed,1,1kinghenryvi,1590\nobscure,1,1kinghenryvi,1590\nscroll,1,1kinghenryvi,1590\naccusations,1,1kinghenryvi,1590\npates,1,1kinghenryvi,1590\nHang,1,1kinghenryvi,1590\nlocks,1,1kinghenryvi,1590\ngently,1,1kinghenryvi,1590\ngiveth,1,1kinghenryvi,1590\nscale,1,1kinghenryvi,1590\ngivest,1,1kinghenryvi,1590\nfretting,1,1kinghenryvi,1590\nguided,1,1kinghenryvi,1590\nrate,1,1kinghenryvi,1590\ndeserving,1,1kinghenryvi,1590\novercomes,1,1kinghenryvi,1590\nbelow,1,1kinghenryvi,1590\nireful,1,1kinghenryvi,1590\naccomplices,1,1kinghenryvi,1590\n'Thou,1,1kinghenryvi,1590\nvapours,1,1kinghenryvi,1590\nCoupled,1,1kinghenryvi,1590\ndisgraced,1,1kinghenryvi,1590\nrout,1,1kinghenryvi,1590\ninfancy,1,1kinghenryvi,1590\ncaptivity,1,1kinghenryvi,1590\nqueens,1,1kinghenryvi,1590\naffrights,1,1kinghenryvi,1590\nestate,1,1kinghenryvi,1590\nfaint,1,1kinghenryvi,1590\nrulers,1,1kinghenryvi,1590\nWalloon,1,1kinghenryvi,1590\neffusion,1,1kinghenryvi,1590\npleaseth,1,1kinghenryvi,1590\nhide,1,1kinghenryvi,1590\nest,1,1kinghenryvi,1590\nhawks,1,1kinghenryvi,1590\nfeature,1,1kinghenryvi,1590\nglory's,1,1kinghenryvi,1590\ndescended,1,1kinghenryvi,1590\nTALBOT's,1,1kinghenryvi,1590\nnonce,1,1kinghenryvi,1590\nsirrah,1,1kinghenryvi,1590\nWeak,1,1kinghenryvi,1590\nspecify,1,1kinghenryvi,1590\nLove,1,1kinghenryvi,1590\nPresently,1,1kinghenryvi,1590\nCoeur,1,1kinghenryvi,1590\nwandering,1,1kinghenryvi,1590\nchase,1,1kinghenryvi,1590\nenthrall'd,1,1kinghenryvi,1590\ncourtezan,1,1kinghenryvi,1590\nhives,1,1kinghenryvi,1590\nadventure,1,1kinghenryvi,1590\nwritten,1,1kinghenryvi,1590\nmeditating,1,1kinghenryvi,1590\nforesee,1,1kinghenryvi,1590\nborne,1,1kinghenryvi,1590\nperused,1,1kinghenryvi,1590\nhemmed,1,1kinghenryvi,1590\nDeck'd,1,1kinghenryvi,1590\nEmbrace,1,1kinghenryvi,1590\nthirsty,1,1kinghenryvi,1590\nCurse,1,1kinghenryvi,1590\ndesiring,1,1kinghenryvi,1590\nSantrailles,1,1kinghenryvi,1590\nTHE,1,1kinghenryvi,1590\nescaped,1,1kinghenryvi,1590\nparting,1,1kinghenryvi,1590\nbeeves,1,1kinghenryvi,1590\nignorant,1,1kinghenryvi,1590\nsprings,1,1kinghenryvi,1590\nSet,1,1kinghenryvi,1590\nstubbornly,1,1kinghenryvi,1590\nmisery,1,1kinghenryvi,1590\npresented,1,1kinghenryvi,1590\nintercession,1,1kinghenryvi,1590\nDarest,1,1kinghenryvi,1590\nSheffield,1,1kinghenryvi,1590\nAssign'd,1,1kinghenryvi,1590\nsteeled,1,1kinghenryvi,1590\nunheedful,1,1kinghenryvi,1590\nquarter,1,1kinghenryvi,1590\nuproar,1,1kinghenryvi,1590\nleaving,1,1kinghenryvi,1590\nvanquish'd,1,1kinghenryvi,1590\nStand'st,1,1kinghenryvi,1590\ngimmors,1,1kinghenryvi,1590\nDost,1,1kinghenryvi,1590\ntutor,1,1kinghenryvi,1590\nsullied,1,1kinghenryvi,1590\nWill'd,1,1kinghenryvi,1590\nSuffolk's,1,1kinghenryvi,1590\nLost,1,1kinghenryvi,1590\nConvey,1,1kinghenryvi,1590\ninform'd,1,1kinghenryvi,1590\ntempestuous,1,1kinghenryvi,1590\nspurn,1,1kinghenryvi,1590\ndevice,1,1kinghenryvi,1590\npretend,1,1kinghenryvi,1590\nappall'd,1,1kinghenryvi,1590\ndoors,1,1kinghenryvi,1590\nexpired,1,1kinghenryvi,1590\ngirdled,1,1kinghenryvi,1590\nleaves,1,1kinghenryvi,1590\nFree,1,1kinghenryvi,1590\nsacrifice,1,1kinghenryvi,1590\nmilk,1,1kinghenryvi,1590\nDrums,1,1kinghenryvi,1590\n'If,1,1kinghenryvi,1590\nwiser,1,1kinghenryvi,1590\nmagnifiest,1,1kinghenryvi,1590\nrandom,1,1kinghenryvi,1590\nplaguing,1,1kinghenryvi,1590\nSolicit,1,1kinghenryvi,1590\nstart,1,1kinghenryvi,1590\nqualities,1,1kinghenryvi,1590\nsatisfaction,1,1kinghenryvi,1590\nprize,1,1kinghenryvi,1590\nflinty,1,1kinghenryvi,1590\nplead,1,1kinghenryvi,1590\njoineth,1,1kinghenryvi,1590\npaleness,1,1kinghenryvi,1590\ndared,1,1kinghenryvi,1590\nescape,1,1kinghenryvi,1590\nfoolish,1,1kinghenryvi,1590\ntowers,1,1kinghenryvi,1590\nGrant,1,1kinghenryvi,1590\nTransported,1,1kinghenryvi,1590\nsmother,1,1kinghenryvi,1590\njars,1,1kinghenryvi,1590\nnurser,1,1kinghenryvi,1590\nconfidence,1,1kinghenryvi,1590\nCease,1,1kinghenryvi,1590\npotter's,1,1kinghenryvi,1590\nkeeper,1,1kinghenryvi,1590\nGallia,1,1kinghenryvi,1590\nprocess,1,1kinghenryvi,1590\ndowry,1,1kinghenryvi,1590\nchain,1,1kinghenryvi,1590\nshortening,1,1kinghenryvi,1590\nshame's,1,1kinghenryvi,1590\nstraightway,1,1kinghenryvi,1590\nslaughtermen,1,1kinghenryvi,1590\nreverently,1,1kinghenryvi,1590\nleopard,1,1kinghenryvi,1590\nobscured,1,1kinghenryvi,1590\nbelong,1,1kinghenryvi,1590\n'gainst,1,1kinghenryvi,1590\nobstacle,1,1kinghenryvi,1590\nCould,1,1kinghenryvi,1590\nparties,1,1kinghenryvi,1590\nladders,1,1kinghenryvi,1590\ndearest,1,1kinghenryvi,1590\naccustom'd,1,1kinghenryvi,1590\nApproacheth,1,1kinghenryvi,1590\nmunition,1,1kinghenryvi,1590\nALL,1,1kinghenryvi,1590\nattorneyship,1,1kinghenryvi,1590\nyoketh,1,1kinghenryvi,1590\npersuaded,1,1kinghenryvi,1590\ninjuries,1,1kinghenryvi,1590\ncomet,1,1kinghenryvi,1590\nSon,1,1kinghenryvi,1590\ndecide,1,1kinghenryvi,1590\nblot,1,1kinghenryvi,1590\nwoe,1,1kinghenryvi,1590\nSalisbury's,1,1kinghenryvi,1590\ndevils,1,1kinghenryvi,1590\nfurnish'd,1,1kinghenryvi,1590\nvein,1,1kinghenryvi,1590\ngleeks,1,1kinghenryvi,1590\nThee,1,1kinghenryvi,1590\nfruition,1,1kinghenryvi,1590\nRoam,1,1kinghenryvi,1590\nTrojan,1,1kinghenryvi,1590\nwitches,1,1kinghenryvi,1590\nshrinking,1,1kinghenryvi,1590\nleaden,1,1kinghenryvi,1590\ninfants,1,1kinghenryvi,1590\nblow,1,1kinghenryvi,1590\nstarved,1,1kinghenryvi,1590\nmournful,1,1kinghenryvi,1590\ntides,1,1kinghenryvi,1590\nbeside,1,1kinghenryvi,1590\nenlarge,1,1kinghenryvi,1590\nAdorn,1,1kinghenryvi,1590\ncraven,1,1kinghenryvi,1590\ndowny,1,1kinghenryvi,1590\nmountain,1,1kinghenryvi,1590\nfret,1,1kinghenryvi,1590\nImpatiently,1,1kinghenryvi,1590\nhigher,1,1kinghenryvi,1590\nhypocrite,1,1kinghenryvi,1590\n'St,1,1kinghenryvi,1590\ntrifle,1,1kinghenryvi,1590\nForces,1,1kinghenryvi,1590\nstags,1,1kinghenryvi,1590\nSamsons,1,1kinghenryvi,1590\nrive,1,1kinghenryvi,1590\napart,1,1kinghenryvi,1590\nmarvel,1,1kinghenryvi,1590\ndainty,1,1kinghenryvi,1590\nprivileged,1,1kinghenryvi,1590\nadamant,1,1kinghenryvi,1590\nstratagems,1,1kinghenryvi,1590\noil,1,1kinghenryvi,1590\ndisguised,1,1kinghenryvi,1590\ndivision,1,1kinghenryvi,1590\nPerhaps,1,1kinghenryvi,1590\nfills,1,1kinghenryvi,1590\nSucceeding,1,1kinghenryvi,1590\nBrandish,1,1kinghenryvi,1590\nGiving,1,1kinghenryvi,1590\nadmonishments,1,1kinghenryvi,1590\nmaintain'd,1,1kinghenryvi,1590\nwrath,1,1kinghenryvi,1590\nwarranteth,1,1kinghenryvi,1590\nhermit,1,1kinghenryvi,1590\nforego,1,1kinghenryvi,1590\nDisgracing,1,1kinghenryvi,1590\nexigent,1,1kinghenryvi,1590\nFeeds,1,1kinghenryvi,1590\nratsbane,1,1kinghenryvi,1590\nrailing,1,1kinghenryvi,1590\nheadlong,1,1kinghenryvi,1590\nHowe'er,1,1kinghenryvi,1590\nPronouncing,1,1kinghenryvi,1590\ntaste,1,1kinghenryvi,1590\nstained,1,1kinghenryvi,1590\nslight,1,1kinghenryvi,1590\nMortimer's,1,1kinghenryvi,1590\naffairs,1,1kinghenryvi,1590\nproved,1,1kinghenryvi,1590\nstink,1,1kinghenryvi,1590\nwi',1,1kinghenryvi,1590\nGallia's,1,1kinghenryvi,1590\nodd,1,1kinghenryvi,1590\nlither,1,1kinghenryvi,1590\nUpbraided,1,1kinghenryvi,1590\nsalt,1,1kinghenryvi,1590\nneck,1,1kinghenryvi,1590\nOtherwise,1,1kinghenryvi,1590\npomp,1,1kinghenryvi,1590\n'midst,1,1kinghenryvi,1590\nknock'd,1,1kinghenryvi,1590\ndiscipline,1,1kinghenryvi,1590\nfitteth,1,1kinghenryvi,1590\ndesolate,1,1kinghenryvi,1590\nDishonour,1,1kinghenryvi,1590\nbeckons,1,1kinghenryvi,1590\nConfounded,1,1kinghenryvi,1590\ndiadem,1,1kinghenryvi,1590\narrival,1,1kinghenryvi,1590\nprovoke,1,1kinghenryvi,1590\nsorrow,1,1kinghenryvi,1590\nbands,1,1kinghenryvi,1590\nmisconceived,1,1kinghenryvi,1590\ncure,1,1kinghenryvi,1590\ncross'd,1,1kinghenryvi,1590\nbread,1,1kinghenryvi,1590\ncurs,1,1kinghenryvi,1590\ntumultuous,1,1kinghenryvi,1590\nimport,1,1kinghenryvi,1590\nSad,1,1kinghenryvi,1590\nfaggots,1,1kinghenryvi,1590\ncommonweal,1,1kinghenryvi,1590\nBlush,1,1kinghenryvi,1590\nhappiness,1,1kinghenryvi,1590\nprovinces,1,1kinghenryvi,1590\nusurping,1,1kinghenryvi,1590\nsmock,1,1kinghenryvi,1590\nupright,1,1kinghenryvi,1590\ntraffic,1,1kinghenryvi,1590\nbounded,1,1kinghenryvi,1590\nRoused,1,1kinghenryvi,1590\nbanish'd,1,1kinghenryvi,1590\nUnable,1,1kinghenryvi,1590\nhumanity,1,1kinghenryvi,1590\nrecover'd,1,1kinghenryvi,1590\nwaking,1,1kinghenryvi,1590\nmeaner,1,1kinghenryvi,1590\nprotect,1,1kinghenryvi,1590\nDead,1,1kinghenryvi,1590\nrecover,1,1kinghenryvi,1590\nwitnessing,1,1kinghenryvi,1590\ndetain'd,1,1kinghenryvi,1590\nmagistrates,1,1kinghenryvi,1590\ndunghill,1,1kinghenryvi,1590\ncuts,1,1kinghenryvi,1590\nMahomet,1,1kinghenryvi,1590\nsustain'd,1,1kinghenryvi,1590\nBlackmere,1,1kinghenryvi,1590\nchokes,1,1kinghenryvi,1590\nchoked,1,1kinghenryvi,1590\nPriest,1,1kinghenryvi,1590\nguileful,1,1kinghenryvi,1590\ncount,1,1kinghenryvi,1590\ndistress'd,1,1kinghenryvi,1590\nfulfill'd,1,1kinghenryvi,1590\nsubtle,1,1kinghenryvi,1590\nshamefully,1,1kinghenryvi,1590\nmice,1,1kinghenryvi,1590\nFuneral,1,1kinghenryvi,1590\ncontinuance,1,1kinghenryvi,1590\ncertainly,1,1kinghenryvi,1590\ntorture,1,1kinghenryvi,1590\ncontrarieties,1,1kinghenryvi,1590\nfling,1,1kinghenryvi,1590\nVerdun,1,1kinghenryvi,1590\nrevolve,1,1kinghenryvi,1590\nissued,1,1kinghenryvi,1590\nglassy,1,1kinghenryvi,1590\nRowlands,1,1kinghenryvi,1590\ninvincible,1,1kinghenryvi,1590\nchastisement,1,1kinghenryvi,1590\nheavy,1,1kinghenryvi,1590\ncomparison,1,1kinghenryvi,1590\npamphlets,1,1kinghenryvi,1590\nbringeth,1,1kinghenryvi,1590\ndust,1,1kinghenryvi,1590\ncalled,1,1kinghenryvi,1590\nstiff,1,1kinghenryvi,1590\nThink,1,1kinghenryvi,1590\ninterr'd,1,1kinghenryvi,1590\n'The,1,1kinghenryvi,1590\nearnest,1,1kinghenryvi,1590\nspacious,1,1kinghenryvi,1590\nCan,1,1kinghenryvi,1590\npurposing,1,1kinghenryvi,1590\nWorthy,1,1kinghenryvi,1590\nmounting,1,1kinghenryvi,1590\nswart,1,1kinghenryvi,1590\ntrusty,1,1kinghenryvi,1590\n'To,1,1kinghenryvi,1590\nnuptial,1,1kinghenryvi,1590\nperforce,1,1kinghenryvi,1590\nMemphis',1,1kinghenryvi,1590\nstandard,1,1kinghenryvi,1590\nAgreed,1,1kinghenryvi,1590\ngrowing,1,1kinghenryvi,1590\noath,1,1kinghenryvi,1590\nbleed,1,1kinghenryvi,1590\nenraged,1,1kinghenryvi,1590\nhandle,1,1kinghenryvi,1590\nCorrupted,1,1kinghenryvi,1590\nkinsmen,1,1kinghenryvi,1590\ndanger,1,1kinghenryvi,1590\nforward,1,1kinghenryvi,1590\nConfounds,1,1kinghenryvi,1590\nmules,1,1kinghenryvi,1590\nbullets,1,1kinghenryvi,1590\nstouter,1,1kinghenryvi,1590\nserve,1,1kinghenryvi,1590\ncovetous,1,1kinghenryvi,1590\nsifted,1,1kinghenryvi,1590\nsupper,1,1kinghenryvi,1590\nbearded,1,1kinghenryvi,1590\nlookest,1,1kinghenryvi,1590\ncoming,1,1kinghenryvi,1590\nowl,1,1kinghenryvi,1590\ncomplain,1,1kinghenryvi,1590\nemulation,1,1kinghenryvi,1590\nforfend,1,1kinghenryvi,1590\nFourth,1,1kinghenryvi,1590\nprofessors,1,1kinghenryvi,1590\nmultitude,1,1kinghenryvi,1590\nwheel,1,1kinghenryvi,1590\nflowering,1,1kinghenryvi,1590\nwitted,1,1kinghenryvi,1590\nbells,1,1kinghenryvi,1590\nsurvive,1,1kinghenryvi,1590\nnotice,1,1kinghenryvi,1590\ndrowned,1,1kinghenryvi,1590\nShame,1,1kinghenryvi,1590\nhail,1,1kinghenryvi,1590\nthroats,1,1kinghenryvi,1590\nSixth,1,1kinghenryvi,1590\nproduced,1,1kinghenryvi,1590\nvulgar,1,1kinghenryvi,1590\nfact,1,1kinghenryvi,1590\nagree,1,1kinghenryvi,1590\nbachelorship,1,1kinghenryvi,1590\nFurnival,1,1kinghenryvi,1590\nGreece,1,1kinghenryvi,1590\no'erthrown,1,1kinghenryvi,1590\nhack,1,1kinghenryvi,1590\nfaced,1,1kinghenryvi,1590\nhonoured,1,1kinghenryvi,1590\nconference,1,1kinghenryvi,1590\nexcursion,1,1kinghenryvi,1590\npining,1,1kinghenryvi,1590\nMalicious,1,1kinghenryvi,1590\nreports,1,1kinghenryvi,1590\n'Stones,1,1kinghenryvi,1590\ninform,1,1kinghenryvi,1590\ncanvass,1,1kinghenryvi,1590\nPretend,1,1kinghenryvi,1590\nanger,1,1kinghenryvi,1590\nvicious,1,1kinghenryvi,1590\nspleen,1,1kinghenryvi,1590\nsurgeon's,1,1kinghenryvi,1590\nlute,1,1kinghenryvi,1590\nowe,1,1kinghenryvi,1590\ndumb,1,1kinghenryvi,1590\nQuicken'd,1,1kinghenryvi,1590\nearldom,1,1kinghenryvi,1590\npitchy,1,1kinghenryvi,1590\nunite,1,1kinghenryvi,1590\nRed,1,1kinghenryvi,1590\ndull,1,1kinghenryvi,1590\nclocks,1,1kinghenryvi,1590\nMichael,1,1kinghenryvi,1590\nfro,1,1kinghenryvi,1590\nsedition,1,1kinghenryvi,1590\nyoke,1,1kinghenryvi,1590\ndetermined,1,1kinghenryvi,1590\nlurk,1,1kinghenryvi,1590\nharvest,1,1kinghenryvi,1590\nDeposed,1,1kinghenryvi,1590\nplumes,1,1kinghenryvi,1590\ndecipher'd,1,1kinghenryvi,1590\nunfortunate,1,1kinghenryvi,1590\nwhence,1,1kinghenryvi,1590\nfill'd,1,1kinghenryvi,1590\nEven,1,1kinghenryvi,1590\nWhispers,1,1kinghenryvi,1590\ncraveth,1,1kinghenryvi,1590\nmightier,1,1kinghenryvi,1590\nStrike,1,1kinghenryvi,1590\ncontempt,1,1kinghenryvi,1590\npreach,1,1kinghenryvi,1590\nminister,1,1kinghenryvi,1590\nfain,1,1kinghenryvi,1590\ncreate,1,1kinghenryvi,1590\nhunger,1,1kinghenryvi,1590\nboiling,1,1kinghenryvi,1590\ndispersed,1,1kinghenryvi,1590\ndispatch'd,1,1kinghenryvi,1590\nlustful,1,1kinghenryvi,1590\ncried,1,1kinghenryvi,1590\nEmploy,1,1kinghenryvi,1590\nMake,1,1kinghenryvi,1590\nWingfield,1,1kinghenryvi,1590\nDismay,1,1kinghenryvi,1590\nperfections,1,1kinghenryvi,1590\nwanted,1,1kinghenryvi,1590\nyond,1,1kinghenryvi,1590\ncloth,1,1kinghenryvi,1590\n'fore,1,1kinghenryvi,1590\npockets,1,1kinghenryvi,1590\nmodesty,1,1kinghenryvi,1590\ndesert,1,1kinghenryvi,1590\ncrystal,1,1kinghenryvi,1590\nutterly,1,1kinghenryvi,1590\nOrdained,1,1kinghenryvi,1590\ncares,1,1kinghenryvi,1590\nprattle,1,1kinghenryvi,1590\nCyrus',1,1kinghenryvi,1590\nplumed,1,1kinghenryvi,1590\nwilful,1,1kinghenryvi,1590\nwander,1,1kinghenryvi,1590\nlump,1,1kinghenryvi,1590\nquell,1,1kinghenryvi,1590\ndragon's,1,1kinghenryvi,1590\nanswers,1,1kinghenryvi,1590\nsafest,1,1kinghenryvi,1590\nDevil,1,1kinghenryvi,1590\nSpur,1,1kinghenryvi,1590\nrack,1,1kinghenryvi,1590\nkinsman,1,1kinghenryvi,1590\nturret,1,1kinghenryvi,1590\nFlight,1,1kinghenryvi,1590\nvaward,1,1kinghenryvi,1590\npleased,1,1kinghenryvi,1590\nFrance's,1,1kinghenryvi,1590\nworm,1,1kinghenryvi,1590\nwickedness,1,1kinghenryvi,1590\nrighteous,1,1kinghenryvi,1590\nprostrate,1,1kinghenryvi,1590\ncuff,1,1kinghenryvi,1590\nworthiness,1,1kinghenryvi,1590\nfighting,1,1kinghenryvi,1590\npassing,1,1kinghenryvi,1590\nclay,1,1kinghenryvi,1590\ntragical,1,1kinghenryvi,1590\nMars,1,1kinghenryvi,1590\nunjust,1,1kinghenryvi,1590\nDeny,1,1kinghenryvi,1590\nesteem'd,1,1kinghenryvi,1590\nflame,1,1kinghenryvi,1590\nminute,1,1kinghenryvi,1590\nExcellent,1,1kinghenryvi,1590\nofficer,1,1kinghenryvi,1590\nscabbard,1,1kinghenryvi,1590\nEnshrines,1,1kinghenryvi,1590\nperfect,1,1kinghenryvi,1590\npassion,1,1kinghenryvi,1590\nfine,1,1kinghenryvi,1590\ninvocate,1,1kinghenryvi,1590\nvow,1,1kinghenryvi,1590\nfill,1,1kinghenryvi,1590\npleases,1,1kinghenryvi,1590\nRecover'd,1,1kinghenryvi,1590\nfoemen,1,1kinghenryvi,1590\nclad,1,1kinghenryvi,1590\nsafety,1,1kinghenryvi,1590\ncontinue,1,1kinghenryvi,1590\nhandmaid,1,1kinghenryvi,1590\ndecay'd,1,1kinghenryvi,1590\nWallon,1,1kinghenryvi,1590\nBurns,1,1kinghenryvi,1590\nunawares,1,1kinghenryvi,1590\nbuckled,1,1kinghenryvi,1590\nexternal,1,1kinghenryvi,1590\nfolly,1,1kinghenryvi,1590\npractisants,1,1kinghenryvi,1590\nhorn,1,1kinghenryvi,1590\nrehearse,1,1kinghenryvi,1590\nImagine,1,1kinghenryvi,1590\njoined,1,1kinghenryvi,1590\narm's,1,1kinghenryvi,1590\nthereby,1,1kinghenryvi,1590\nNear,1,1kinghenryvi,1590\nanswer'd,1,1kinghenryvi,1590\nhost,1,1kinghenryvi,1590\nimmortalized,1,1kinghenryvi,1590\nBewray'd,1,1kinghenryvi,1590\nEnacted,1,1kinghenryvi,1590\nceaseth,1,1kinghenryvi,1590\ntavern,1,1kinghenryvi,1590\ntail,1,1kinghenryvi,1590\nworship,1,1kinghenryvi,1590\nshows,1,1kinghenryvi,1590\nPeasant,1,1kinghenryvi,1590\nholiness,1,1kinghenryvi,1590\ndivers,1,1kinghenryvi,1590\nBonfires,1,1kinghenryvi,1590\nimmodest,1,1kinghenryvi,1590\nherself,1,1kinghenryvi,1590\nfawn,1,1kinghenryvi,1590\npoison'd,1,1kinghenryvi,1590\nJerusalem,1,1kinghenryvi,1590\nvex,1,1kinghenryvi,1590\nbeware,1,1kinghenryvi,1590\npartly,1,1kinghenryvi,1590\nPlucking,1,1kinghenryvi,1590\nlived,1,1kinghenryvi,1590\nmember,1,1kinghenryvi,1590\ntraitorous,1,1kinghenryvi,1590\nlinstock,1,1kinghenryvi,1590\nwatch'd,1,1kinghenryvi,1590\nchevalier,1,1kinghenryvi,1590\nendamage,1,1kinghenryvi,1590\ntilt,1,1kinghenryvi,1590\nEnclosed,1,1kinghenryvi,1590\nFoul,1,1kinghenryvi,1590\nmeaning,1,1kinghenryvi,1590\nFour,1,1kinghenryvi,1590\nprecinct,1,1kinghenryvi,1590\nCoward,1,1kinghenryvi,1590\nimplored,1,1kinghenryvi,1590\ngrisly,1,1kinghenryvi,1590\nPaysans,1,1kinghenryvi,1590\ntrumpeter,1,1kinghenryvi,1590\nKnocks,1,1kinghenryvi,1590\nappointed,1,1kinghenryvi,1590\nband,1,1kinghenryvi,1590\nslaughterer,1,1kinghenryvi,1590\nplainness,1,1kinghenryvi,1590\nslaughtered,1,1kinghenryvi,1590\nbounds,1,1kinghenryvi,1590\nweakness,1,1kinghenryvi,1590\ndam,1,1kinghenryvi,1590\nlenity,1,1kinghenryvi,1590\nwill'd,1,1kinghenryvi,1590\nquillets,1,1kinghenryvi,1590\nprefer,1,1kinghenryvi,1590\ndaw,1,1kinghenryvi,1590\nEach,1,1kinghenryvi,1590\nbill,1,1kinghenryvi,1590\nemperor,1,1kinghenryvi,1590\nfarest,1,1kinghenryvi,1590\nreleased,1,1kinghenryvi,1590\nshepherd,1,1kinghenryvi,1590\nlag,1,1kinghenryvi,1590\nPartly,1,1kinghenryvi,1590\nlap,1,1kinghenryvi,1590\nman's,1,1kinghenryvi,1590\npurblind,1,1kinghenryvi,1590\nwider,1,1kinghenryvi,1590\nfolks,1,1kinghenryvi,1590\nLeap,1,1kinghenryvi,1590\nrelieving,1,1kinghenryvi,1590\nknighthood,1,1kinghenryvi,1590\nbind,1,1kinghenryvi,1590\naloft,1,1kinghenryvi,1590\nappearance,1,1kinghenryvi,1590\nAppear,1,1kinghenryvi,1590\nsunder'd,1,1kinghenryvi,1590\nshameless,1,1kinghenryvi,1590\nconvey,1,1kinghenryvi,1590\nshirts,1,1kinghenryvi,1590\nshops,1,1kinghenryvi,1590\nsixth,1,1kinghenryvi,1590\nintolerable,1,1kinghenryvi,1590\nwarders,1,1kinghenryvi,1590\nwild,1,1kinghenryvi,1590\nmothers,1,1kinghenryvi,1590\nForsaken,1,1kinghenryvi,1590\nPrick,1,1kinghenryvi,1590\nVillains,1,1kinghenryvi,1590\neyeballs,1,1kinghenryvi,1590\nought,1,1kinghenryvi,1590\nforbearance,1,1kinghenryvi,1590\nSpeaks,1,1kinghenryvi,1590\npardon,1,1kinghenryvi,1590\naccident,1,1kinghenryvi,1590\nconcludes,1,1kinghenryvi,1590\ndungeon,1,1kinghenryvi,1590\npreceding,1,1kinghenryvi,1590\nachievements,1,1kinghenryvi,1590\nvictories,1,1kinghenryvi,1590\nprizest,1,1kinghenryvi,1590\nfertile,1,1kinghenryvi,1590\nportion,1,1kinghenryvi,1590\nFond,1,1kinghenryvi,1590\nwaited,1,1kinghenryvi,1590\nexclaim'd,1,1kinghenryvi,1590\nfamine,1,1kinghenryvi,1590\nconcluded,1,1kinghenryvi,1590\nLives,1,1kinghenryvi,1590\ngiddy,1,1kinghenryvi,1590\nmethod,1,1kinghenryvi,1590\ncut,1,1kinghenryvi,1590\nshouldering,1,1kinghenryvi,1590\nWho's,1,1kinghenryvi,1590\nsuccors,1,1kinghenryvi,1590\nhorse's,1,1kinghenryvi,1590\nvocation,1,1kinghenryvi,1590\npeerless,1,1kinghenryvi,1590\nMourn,1,1kinghenryvi,1590\npresumption,1,1kinghenryvi,1590\nloyal,1,1kinghenryvi,1590\nvictual,1,1kinghenryvi,1590\nlabyrinth,1,1kinghenryvi,1590\ncondemn,1,1kinghenryvi,1590\nclubs,1,1kinghenryvi,1590\narrive,1,1kinghenryvi,1590\nflood,1,1kinghenryvi,1590\nstreets,1,1kinghenryvi,1590\nbesiege,1,1kinghenryvi,1590\ncommonwealth,1,1kinghenryvi,1590\nhorses,1,1kinghenryvi,1590\nWhere's,1,1kinghenryvi,1590\nwriting,1,1kinghenryvi,1590\nAwake,1,1kinghenryvi,1590\ntrain'd,1,1kinghenryvi,1590\nmuttered,1,1kinghenryvi,1590\nWont,1,1kinghenryvi,1590\nconjure,1,1kinghenryvi,1590\nfitter,1,1kinghenryvi,1590\ngives,1,1kinghenryvi,1590\ntask,1,1kinghenryvi,1590\nlegions,1,1kinghenryvi,1590\nintents,1,1kinghenryvi,1590\nconvenient,1,1kinghenryvi,1590\nsurer,1,1kinghenryvi,1590\nAnon,1,1kinghenryvi,1590\nabject,1,1kinghenryvi,1590\nignobly,1,1kinghenryvi,1590\nevident,1,1kinghenryvi,1590\ntempters,1,1kinghenryvi,1590\ninterest,1,1kinghenryvi,1590\nlovely,1,1kinghenryvi,1590\ncombatants,1,1kinghenryvi,1590\ncommission,1,1kinghenryvi,1590\nhearty,1,1kinghenryvi,1590\nfickle,1,1kinghenryvi,1590\nNero,1,1kinghenryvi,1590\ncertify,1,1kinghenryvi,1590\nlop,1,1kinghenryvi,1590\nvexation,1,1kinghenryvi,1590\nrecall'd,1,1kinghenryvi,1590\nhearse,1,1kinghenryvi,1590\ntangle,1,1kinghenryvi,1590\nneglected,1,1kinghenryvi,1590\nfavour'd,1,1kinghenryvi,1590\nbreasts,1,1kinghenryvi,1590\nrearward,1,1kinghenryvi,1590\neyed,1,1kinghenryvi,1590\nsweat,1,1kinghenryvi,1590\nPatay,1,1kinghenryvi,1590\nacts,1,1kinghenryvi,1590\nPrince,1,1kinghenryvi,1590\nbanding,1,1kinghenryvi,1590\nconquerors,1,1kinghenryvi,1590\nconverse,1,1kinghenryvi,1590\nsuits,1,1kinghenryvi,1590\nneedful,1,1kinghenryvi,1590\nthereto,1,1kinghenryvi,1590\nSargeant,1,1kinghenryvi,1590\ngoodness,1,1kinghenryvi,1590\ninsolence,1,1kinghenryvi,1590\nNestor,1,1kinghenryvi,1590\nheralds,1,1kinghenryvi,1590\nconfusedly,1,1kinghenryvi,1590\nseem,1,1kinghenryvi,1590\nFleece,1,1kinghenryvi,1590\nfitting,1,1kinghenryvi,1590\nInferior,1,1kinghenryvi,1590\nconfederates,1,1kinghenryvi,1590\ncousins,1,1kinghenryvi,1590\ndecease,1,1kinghenryvi,1590\nhounds,1,1kinghenryvi,1590\nlowliness,1,1kinghenryvi,1590\nProfaning,1,1kinghenryvi,1590\ntrespass,1,1kinghenryvi,1590\nComest,1,1kinghenryvi,1590\ngnaws,1,1kinghenryvi,1590\n'twixt,1,1kinghenryvi,1590\nDAUPHIN,1,1kinghenryvi,1590\nRhodope's,1,1kinghenryvi,1590\nliking,1,1kinghenryvi,1590\nperiod,1,1kinghenryvi,1590\nComets,1,1kinghenryvi,1590\nsweep,1,1kinghenryvi,1590\nindulgences,1,1kinghenryvi,1590\nMine,1,1kinghenryvi,1590\nurn,1,1kinghenryvi,1590\nkennel,1,1kinghenryvi,1590\nGuienne,1,1kinghenryvi,1590\nOtherwhiles,1,1kinghenryvi,1590\nRazeth,1,1kinghenryvi,1590\nthereof,1,1kinghenryvi,1590\ndebated,1,1kinghenryvi,1590\nTrue,1,1kinghenryvi,1590\nmix'd,1,1kinghenryvi,1590\nResolve,1,1kinghenryvi,1590\naspiring,1,1kinghenryvi,1590\nhulk,1,1kinghenryvi,1590\ntroop,1,1kinghenryvi,1590\nvassals,1,1kinghenryvi,1590\nthrust,1,1kinghenryvi,1590\nexpulsed,1,1kinghenryvi,1590\ndistrustful,1,1kinghenryvi,1590\nwearied,1,1kinghenryvi,1590\nlightens,1,1kinghenryvi,1590\nusage,1,1kinghenryvi,1590\nwhate'er,1,1kinghenryvi,1590\ndispense,1,1kinghenryvi,1590\nunvanquish'd,1,1kinghenryvi,1590\ndeign,1,1kinghenryvi,1590\nHe'll,1,1kinghenryvi,1590\ntree,1,1kinghenryvi,1590\nloyalty,1,1kinghenryvi,1590\nAbbey,1,1kinghenryvi,1590\nheels,1,1kinghenryvi,1590\nRepeat,1,1kinghenryvi,1590\nregal,1,1kinghenryvi,1590\nThrough,1,1kinghenryvi,1590\nlovest,1,1kinghenryvi,1590\ngenerals,1,1kinghenryvi,1590\nriddling,1,1kinghenryvi,1590\nrecreants,1,1kinghenryvi,1590\ninhearsed,1,1kinghenryvi,1590\nCondemn'd,1,1kinghenryvi,1590\ndiscern'd,1,1kinghenryvi,1590\nUse,1,1kinghenryvi,1590\n'stablish,1,1kinghenryvi,1590\nextremes,1,1kinghenryvi,1590\nsouls,1,1kinghenryvi,1590\nGeorge's,1,1kinghenryvi,1590\nbeheld,1,1kinghenryvi,1590\nblushing,1,1kinghenryvi,1590\ninfused,1,1kinghenryvi,1590\ngusts,1,1kinghenryvi,1590\nrancorous,1,1kinghenryvi,1590\nmirror,1,1kinghenryvi,1590\nravenous,1,1kinghenryvi,1590\nexceptions,1,1kinghenryvi,1590\nSent,1,1kinghenryvi,1590\nsell,1,1kinghenryvi,1590\nWashford,1,1kinghenryvi,1590\nTrumpet,1,1kinghenryvi,1590\naloud,1,1kinghenryvi,1590\nvulture,1,1kinghenryvi,1590\npost,1,1kinghenryvi,1590\nhemm'd,1,1kinghenryvi,1590\nleg,1,1kinghenryvi,1590\ndriveth,1,1kinghenryvi,1590\nroaring,1,1kinghenryvi,1590\nalas,1,1kinghenryvi,1590\nremedied,1,1kinghenryvi,1590\nghosts,1,1kinghenryvi,1590\ngrieves,1,1kinghenryvi,1590\nSell,1,1kinghenryvi,1590\nBespoke,1,1kinghenryvi,1590\nOpinion,1,1kinghenryvi,1590\ndogg'd,1,1kinghenryvi,1590\ncertified,1,1kinghenryvi,1590\nregards,1,1kinghenryvi,1590\nwrangling,1,1kinghenryvi,1590\nchose,1,1kinghenryvi,1590\ntrap,1,1kinghenryvi,1590\nstatue,1,1kinghenryvi,1590\nhedges,1,1kinghenryvi,1590\nfearing,1,1kinghenryvi,1590\nsickness,1,1kinghenryvi,1590\nstraining,1,1kinghenryvi,1590\nallotted,1,1kinghenryvi,1590\nVirtuous,1,1kinghenryvi,1590\nprotest,1,1kinghenryvi,1590\nmethought,1,1kinghenryvi,1590\nattaint,1,1kinghenryvi,1590\nbestow,1,1kinghenryvi,1590\nArtois,1,1kinghenryvi,1590\nmerchant,1,1kinghenryvi,1590\ndegraded,1,1kinghenryvi,1590\nJudge,1,1kinghenryvi,1590\nUsing,1,1kinghenryvi,1590\ninstead,1,1kinghenryvi,1590\nforsaketh,1,1kinghenryvi,1590\nnature's,1,1kinghenryvi,1590\nRough,1,1kinghenryvi,1590\nthread,1,1kinghenryvi,1590\nlordship's,1,1kinghenryvi,1590\nfrantic,1,1kinghenryvi,1590\nperpetuity,1,1kinghenryvi,1590\nprofession's,1,1kinghenryvi,1590\nchoke,1,1kinghenryvi,1590\nstench,1,1kinghenryvi,1590\nendured,1,1kinghenryvi,1590\nforwardness,1,1kinghenryvi,1590\ncheek's,1,1kinghenryvi,1590\nUrchinfield,1,1kinghenryvi,1590\nbatter'd,1,1kinghenryvi,1590\ndespairs,1,1kinghenryvi,1590\nSpring,1,1kinghenryvi,1590\nignominious,1,1kinghenryvi,1590\npetty,1,1kinghenryvi,1590\nsufficiently,1,1kinghenryvi,1590\nwrite,1,1kinghenryvi,1590\nAgree,1,1kinghenryvi,1590\nMartin's,1,1kinghenryvi,1590\nfaintness,1,1kinghenryvi,1590\nrepine,1,1kinghenryvi,1590\nskirmishes,1,1kinghenryvi,1590\nKisses,1,1kinghenryvi,1590\nmaidenhood,1,1kinghenryvi,1590\nbetroth'd,1,1kinghenryvi,1590\nvolume,1,1kinghenryvi,1590\npeal,1,1kinghenryvi,1590\ntaint,1,1kinghenryvi,1590\npray'd,1,1kinghenryvi,1590\nDivinest,1,1kinghenryvi,1590\nStrong,1,1kinghenryvi,1590\nabroad,1,1kinghenryvi,1590\nConjurers,1,1kinghenryvi,1590\nafeard,1,1kinghenryvi,1590\n'scape,1,1kinghenryvi,1590\nrevolted,1,1kinghenryvi,1590\npursueth,1,1kinghenryvi,1590\nfuture,1,1kinghenryvi,1590\nvices,1,1kinghenryvi,1590\nforced,1,1kinghenryvi,1590\nrashly,1,1kinghenryvi,1590\nreward,1,1kinghenryvi,1590\ncontemptible,1,1kinghenryvi,1590\nGuysors,1,1kinghenryvi,1590\nMarrying,1,1kinghenryvi,1590\nstarve,1,1kinghenryvi,1590\nwrithled,1,1kinghenryvi,1590\nfester'd,1,1kinghenryvi,1590\nDogs,1,1kinghenryvi,1590\nFinding,1,1kinghenryvi,1590\ngot'st,1,1kinghenryvi,1590\nclothing,1,1kinghenryvi,1590\ninferior,1,1kinghenryvi,1590\ndefaced,1,1kinghenryvi,1590\nimpious,1,1kinghenryvi,1590\nsister,1,1kinghenryvi,1590\nsibyls,1,1kinghenryvi,1590\nbreaker,1,1kinghenryvi,1590\nfierceness,1,1kinghenryvi,1590\nphoenix,1,1kinghenryvi,1590\nlink'd,1,1kinghenryvi,1590\nreadiness,1,1kinghenryvi,1590\nAccording,1,1kinghenryvi,1590\nWrites,1,1kinghenryvi,1590\nRise,1,1kinghenryvi,1590\narbitrator,1,1kinghenryvi,1590\nWoodvile,1,1kinghenryvi,1590\nfabulous,1,1kinghenryvi,1590\ninshipp'd,1,1kinghenryvi,1590\ndye,1,1kinghenryvi,1590\nstreet,1,1kinghenryvi,1590\nGazes,1,1kinghenryvi,1590\nrested,1,1kinghenryvi,1590\nbeholders,1,1kinghenryvi,1590\nspiritual,1,1kinghenryvi,1590\nfurtherance,1,1kinghenryvi,1590\ngens,1,1kinghenryvi,1590\nfully,1,1kinghenryvi,1590\nladies,1,1kinghenryvi,1590\nCirce,1,1kinghenryvi,1590\nMen,1,1kinghenryvi,1590\npowerful,1,1kinghenryvi,1590\nflew,1,1kinghenryvi,1590\nlips,1,1kinghenryvi,1590\nattorney,1,1kinghenryvi,1590\nfashion,1,1kinghenryvi,1590\nTwelve,1,1kinghenryvi,1590\nfortresses,1,1kinghenryvi,1590\nsever'd,1,1kinghenryvi,1590\nnumb,1,1kinghenryvi,1590\nask'st,1,1kinghenryvi,1590\nwithdraw,1,1kinghenryvi,1590\nlion,1,1kinghenryvi,1590\ncaroused,1,1kinghenryvi,1590\namain,1,1kinghenryvi,1590\nphysic,1,1kinghenryvi,1590\ncaptives,1,1kinghenryvi,1590\ndeluded,1,1kinghenryvi,1590\nhomage,1,1kinghenryvi,1590\nappearing,1,1kinghenryvi,1590\nransomed,1,1kinghenryvi,1590\nbeguile,1,1kinghenryvi,1590\nmannerly,1,1kinghenryvi,1590\noverrun,1,1kinghenryvi,1590\nsubstitutes,1,1kinghenryvi,1590\nArrogant,1,1kinghenryvi,1590\ndarnel,1,1kinghenryvi,1590\nMarry,1,1kinghenryvi,1590\nRescued,1,1kinghenryvi,1590\nSubmission,1,1kinghenryvi,1590\nfraud,1,1kinghenryvi,1590\nnativity,1,1kinghenryvi,1590\npolitic,1,1kinghenryvi,1590\nKneels,1,1kinghenryvi,1590\nincessant,1,1kinghenryvi,1590\nservitors,1,1kinghenryvi,1590\ncredit,1,1kinghenryvi,1590\nGraceless,1,1kinghenryvi,1590\nspill,1,1kinghenryvi,1590\nMad,1,1kinghenryvi,1590\ntut,1,1kinghenryvi,1590\nunworthily,1,1kinghenryvi,1590\nflag,1,1kinghenryvi,1590\nthither,1,1kinghenryvi,1590\nattendants,1,1kinghenryvi,1590\nSings,1,1kinghenryvi,1590\nAdonis',1,1kinghenryvi,1590\nlions',1,1kinghenryvi,1590\ntug,1,1kinghenryvi,1590\nfrivolous,1,1kinghenryvi,1590\ntruant,1,1kinghenryvi,1590\nkeepers,1,1kinghenryvi,1590\nsleeping,1,1kinghenryvi,1590\nVII,1,1kinghenryvi,1590\nburly,1,1kinghenryvi,1590\ndishonour'd,1,1kinghenryvi,1590\npranks,1,1kinghenryvi,1590\nMay,1,1kinghenryvi,1590\nDone,1,1kinghenryvi,1590\nseverally,1,1kinghenryvi,1590\ndiscontented,1,1kinghenryvi,1590\nlaid'st,1,1kinghenryvi,1590\nfright,1,1kinghenryvi,1590\npeer,1,1kinghenryvi,1590\nimporting,1,1kinghenryvi,1590\nstudious,1,1kinghenryvi,1590\nSomewhat,1,1kinghenryvi,1590\nhurl,1,1kinghenryvi,1590\nsquire,1,1kinghenryvi,1590\nbreaking,1,1kinghenryvi,1590\nvenge,1,1kinghenryvi,1590\nChrist's,1,1kinghenryvi,1590\nentreaty,1,1kinghenryvi,1590\ngoing,1,1kinghenryvi,1590\nplace's,1,1kinghenryvi,1590\nripen'd,1,1kinghenryvi,1590\nbarking,1,1kinghenryvi,1590\ncompell'd,1,1kinghenryvi,1590\nfollow'd,1,1kinghenryvi,1590\nwindows,1,1kinghenryvi,1590\nentreats,1,1kinghenryvi,1590\nurged,1,1kinghenryvi,1590\nputrefy,1,1kinghenryvi,1590\nshade,1,1kinghenryvi,1590\nviperous,1,1kinghenryvi,1590\ncontain't,1,1kinghenryvi,1590\ntransported,1,1kinghenryvi,1590\nshrewd,1,1kinghenryvi,1590\nsentinels,1,1kinghenryvi,1590\nsimple,1,1kinghenryvi,1590\ncygnets,1,1kinghenryvi,1590\nsheep's,1,1kinghenryvi,1590\nChaste,1,1kinghenryvi,1590\ndate,1,1kinghenryvi,1590\nspring,1,1kinghenryvi,1590\ncornets,1,1kinghenryvi,1590\nrisen,1,1kinghenryvi,1590\nproffer'd,1,1kinghenryvi,1590\nreply,1,1kinghenryvi,1590\nUnready,1,1kinghenryvi,1590\npresage,1,1kinghenryvi,1590\nstrengthless,1,1kinghenryvi,1590\ninstitute,1,1kinghenryvi,1590\ndash,1,1kinghenryvi,1590\nexpense,1,1kinghenryvi,1590\npattern,1,1kinghenryvi,1590\nlaid,1,1kinghenryvi,1590\ndiscovered,1,1kinghenryvi,1590\nasleep,1,1kinghenryvi,1590\nserveth,1,1kinghenryvi,1590\nprovide,1,1kinghenryvi,1590\ncentre,1,1kinghenryvi,1590\npelt,1,1kinghenryvi,1590\nbrat,1,1kinghenryvi,1590\nstakes,1,1kinghenryvi,1590\nHung,1,1kinghenryvi,1590\nexchanged,1,1kinghenryvi,1590\ndue,1,1kinghenryvi,1590\nunconquer'd,1,1kinghenryvi,1590\nbanqueted,1,1kinghenryvi,1590\nTogether,1,1kinghenryvi,1590\nstratagem,1,1kinghenryvi,1590\nlord's,1,1kinghenryvi,1590\nGLANDSDALE,1,1kinghenryvi,1590\nwithhold,1,1kinghenryvi,1590\nLets,1,1kinghenryvi,1590\nturtle,1,1kinghenryvi,1590\ncunningly,1,1kinghenryvi,1590\nadversary's,1,1kinghenryvi,1590\nbonfires,1,1kinghenryvi,1590\nhumbler,1,1kinghenryvi,1590\ntoy,1,1kinghenryvi,1590\nbedew,1,1kinghenryvi,1590\ndispatch,1,1kinghenryvi,1590\nbred,1,1kinghenryvi,1590\nEncompass'd,1,1kinghenryvi,1590\nSwearing,1,1kinghenryvi,1590\nproclamation,1,1kinghenryvi,1590\nentrapp'd,1,1kinghenryvi,1590\nservest,1,1kinghenryvi,1590\nDRAMATIS,1,1kinghenryvi,1590\nwhores,1,1kinghenryvi,1590\nUntil,1,1kinghenryvi,1590\nflout,1,1kinghenryvi,1590\nshift,1,1kinghenryvi,1590\nguests,1,1kinghenryvi,1590\nKeeping,1,1kinghenryvi,1590\nKnight,1,1kinghenryvi,1590\nprerogative,1,1kinghenryvi,1590\narmed,1,1kinghenryvi,1590\nsweeting,1,1kinghenryvi,1590\ncommanding,1,1kinghenryvi,1590\nGloster,1,1kinghenryvi,1590\nupstart,1,1kinghenryvi,1590\nFaintly,1,1kinghenryvi,1590\ndisagree,1,1kinghenryvi,1590\nbargain,1,1kinghenryvi,1590\nexit,1,1kinghenryvi,1590\ntempt,1,1kinghenryvi,1590\nobedient,1,1kinghenryvi,1590\nobtain,1,1kinghenryvi,1590\nhe'll,1,1kinghenryvi,1590\ncognizance,1,1kinghenryvi,1590\nusurpation,1,1kinghenryvi,1590\ndivided,1,1kinghenryvi,1590\nwills,1,1kinghenryvi,1590\nDrops,1,1kinghenryvi,1590\nParliament,1,1kinghenryvi,1590\nencountered,1,1kinghenryvi,1590\ndastards,1,1kinghenryvi,1590\nTalk,1,1kinghenryvi,1590\nunapt,1,1kinghenryvi,1590\nwilled,1,1kinghenryvi,1590\ndwelling,1,1kinghenryvi,1590\nDirect,1,1kinghenryvi,1590\nspeaker,1,1kinghenryvi,1590\nholdeth,1,1kinghenryvi,1590\nawake,1,1kinghenryvi,1590\ncates,1,1kinghenryvi,1590\nWarders,1,1kinghenryvi,1590\nprincess,1,1kinghenryvi,1590\nSaying,1,1kinghenryvi,1590\npursuivants,1,1kinghenryvi,1590\nsoundly,1,1kinghenryvi,1590\nGlansdale,1,1kinghenryvi,1590\nEdward's,1,1kinghenryvi,1590\npuzzel,1,1kinghenryvi,1590\nhellish,1,1kinghenryvi,1590\nmid,1,1kinghenryvi,1590\namaze,1,1kinghenryvi,1590\nremorse,1,1kinghenryvi,1590\nfists,1,1kinghenryvi,1590\nkill,1,1kinghenryvi,1590\nspectacle,1,1kinghenryvi,1590\ncannon,1,1kinghenryvi,1590\narchers,1,1kinghenryvi,1590\nFight,1,1kinghenryvi,1590\nscarecrow,1,1kinghenryvi,1590\ncooling,1,1kinghenryvi,1590\nrepair,1,1kinghenryvi,1590\n'mongst,1,1kinghenryvi,1590\nbreathe,1,1kinghenryvi,1590\nwanteth,1,1kinghenryvi,1590\nwhirled,1,1kinghenryvi,1590\navaunt,1,1kinghenryvi,1590\nHector,1,1kinghenryvi,1590\nprofit's,1,1kinghenryvi,1590\nshortened,1,1kinghenryvi,1590\nTriumphant,1,1kinghenryvi,1590\nbewitch'd,1,1kinghenryvi,1590\nawait,1,1kinghenryvi,1590\nspoils,1,1kinghenryvi,1590\nPrick'd,1,1kinghenryvi,1590\nWords,1,1kinghenryvi,1590\ninconvenience,1,1kinghenryvi,1590\nDispersed,1,1kinghenryvi,1590\nchivalry,1,1kinghenryvi,1590\nGrown,1,1kinghenryvi,1590\nsandy,1,1kinghenryvi,1590\nfading,1,1kinghenryvi,1590\nwouldst,1,1kinghenryvi,1590\nCreated,1,1kinghenryvi,1590\ndissemble,1,1kinghenryvi,1590\ncraven's,1,1kinghenryvi,1590\nships,1,1kinghenryvi,1590\nRetiring,1,1kinghenryvi,1590\nnation's,1,1kinghenryvi,1590\nagazed,1,1kinghenryvi,1590\nseek'st,1,1kinghenryvi,1590\ngodly,1,1kinghenryvi,1590\nmajestical,1,1kinghenryvi,1590\ncorrosive,1,1kinghenryvi,1590\nhedge,1,1kinghenryvi,1590\nswan,1,1kinghenryvi,1590\nsummer,1,1kinghenryvi,1590\ndaughters,1,1kinghenryvi,1590\nreligion,2,1kinghenryvi,1590\nevent,2,1kinghenryvi,1590\neffeminate,2,1kinghenryvi,1590\ntomb,2,1kinghenryvi,1590\nproffer,2,1kinghenryvi,1590\nunready,2,1kinghenryvi,1590\ngrew,2,1kinghenryvi,1590\ngrey,2,1kinghenryvi,1590\npity,2,1kinghenryvi,1590\nfancy,2,1kinghenryvi,1590\nValiant,2,1kinghenryvi,1590\ndrop,2,1kinghenryvi,1590\njoint'st,2,1kinghenryvi,1590\nafar,2,1kinghenryvi,1590\ndarest,2,1kinghenryvi,1590\nderived,2,1kinghenryvi,1590\nmightiest,2,1kinghenryvi,1590\nHear,2,1kinghenryvi,1590\ninfamy,2,1kinghenryvi,1590\nweary,2,1kinghenryvi,1590\nscouts,2,1kinghenryvi,1590\nFrenchman,2,1kinghenryvi,1590\nprophet,2,1kinghenryvi,1590\ndisturb,2,1kinghenryvi,1590\nAlas,2,1kinghenryvi,1590\npeasant,2,1kinghenryvi,1590\nwoman's,2,1kinghenryvi,1590\nwooden,2,1kinghenryvi,1590\nbrows,2,1kinghenryvi,1590\nfainting,2,1kinghenryvi,1590\nbones,2,1kinghenryvi,1590\noffended,2,1kinghenryvi,1590\nassured,2,1kinghenryvi,1590\nshoulders,2,1kinghenryvi,1590\nhighness',2,1kinghenryvi,1590\nBear,2,1kinghenryvi,1590\nexpress,2,1kinghenryvi,1590\nvillain,2,1kinghenryvi,1590\nboys,2,1kinghenryvi,1590\nhelps,2,1kinghenryvi,1590\ndespised,2,1kinghenryvi,1590\nwarning,2,1kinghenryvi,1590\ntruly,2,1kinghenryvi,1590\ndarkness,2,1kinghenryvi,1590\ntrump,2,1kinghenryvi,1590\nmere,2,1kinghenryvi,1590\nEspecially,2,1kinghenryvi,1590\ncelestial,2,1kinghenryvi,1590\ncometh,2,1kinghenryvi,1590\ngrim,2,1kinghenryvi,1590\nHelp,2,1kinghenryvi,1590\nprosperous,2,1kinghenryvi,1590\nundaunted,2,1kinghenryvi,1590\ncomest,2,1kinghenryvi,1590\nLucy,2,1kinghenryvi,1590\nbrook,2,1kinghenryvi,1590\ninstrument,2,1kinghenryvi,1590\nfought,2,1kinghenryvi,1590\nadvance,2,1kinghenryvi,1590\nsorceress,2,1kinghenryvi,1590\nunderneath,2,1kinghenryvi,1590\ncalls,2,1kinghenryvi,1590\nbefall,2,1kinghenryvi,1590\nFiends,2,1kinghenryvi,1590\ncontrary,2,1kinghenryvi,1590\nperverse,2,1kinghenryvi,1590\nproclaim,2,1kinghenryvi,1590\nsaved,2,1kinghenryvi,1590\nloathsome,2,1kinghenryvi,1590\nbattles,2,1kinghenryvi,1590\nargues,2,1kinghenryvi,1590\nregions,2,1kinghenryvi,1590\nbreach,2,1kinghenryvi,1590\nOnce,2,1kinghenryvi,1590\nplague,2,1kinghenryvi,1590\nseven,2,1kinghenryvi,1590\nsons,2,1kinghenryvi,1590\ndrive,2,1kinghenryvi,1590\nenemies',2,1kinghenryvi,1590\nsold,2,1kinghenryvi,1590\nconfusion,2,1kinghenryvi,1590\nbearing,2,1kinghenryvi,1590\nsaw,2,1kinghenryvi,1590\nscarlet,2,1kinghenryvi,1590\nfortunate,2,1kinghenryvi,1590\ncircumstance,2,1kinghenryvi,1590\nresolve,2,1kinghenryvi,1590\nPlains,2,1kinghenryvi,1590\ncrying,2,1kinghenryvi,1590\nsuburbs,2,1kinghenryvi,1590\nfactious,2,1kinghenryvi,1590\nMuch,2,1kinghenryvi,1590\nRemember,2,1kinghenryvi,1590\nfunction,2,1kinghenryvi,1590\nThomas,2,1kinghenryvi,1590\nexclaim,2,1kinghenryvi,1590\nhearing,2,1kinghenryvi,1590\npolicy,2,1kinghenryvi,1590\nbabes,2,1kinghenryvi,1590\nofficers,2,1kinghenryvi,1590\nteach,2,1kinghenryvi,1590\nenacted,2,1kinghenryvi,1590\nblessed,2,1kinghenryvi,1590\nvisit,2,1kinghenryvi,1590\nwait,2,1kinghenryvi,1590\nfurther,2,1kinghenryvi,1590\nplains,2,1kinghenryvi,1590\nmarch'd,2,1kinghenryvi,1590\nsit,2,1kinghenryvi,1590\nprevail'd,2,1kinghenryvi,1590\nConfirm,2,1kinghenryvi,1590\naged,2,1kinghenryvi,1590\nsubdued,2,1kinghenryvi,1590\n'A,2,1kinghenryvi,1590\nwall,2,1kinghenryvi,1590\nyeoman,2,1kinghenryvi,1590\ndeceived,2,1kinghenryvi,1590\nslaughter,2,1kinghenryvi,1590\nfamish'd,2,1kinghenryvi,1590\nchiefest,2,1kinghenryvi,1590\nlions,2,1kinghenryvi,1590\nWILLIAM,2,1kinghenryvi,1590\navail,2,1kinghenryvi,1590\nattainted,2,1kinghenryvi,1590\ncounsel,2,1kinghenryvi,1590\nTheir,2,1kinghenryvi,1590\nkindly,2,1kinghenryvi,1590\nforthwith,2,1kinghenryvi,1590\nnecks,2,1kinghenryvi,1590\npitiful,2,1kinghenryvi,1590\nsky,2,1kinghenryvi,1590\ninstruct,2,1kinghenryvi,1590\nlambs,2,1kinghenryvi,1590\nOther,2,1kinghenryvi,1590\nleague,2,1kinghenryvi,1590\nAttendants,2,1kinghenryvi,1590\nbridge,2,1kinghenryvi,1590\nbecomes,2,1kinghenryvi,1590\nread,2,1kinghenryvi,1590\nworst,2,1kinghenryvi,1590\nesteem,2,1kinghenryvi,1590\nredeem,2,1kinghenryvi,1590\nlingering,2,1kinghenryvi,1590\nconceit,2,1kinghenryvi,1590\ncompassion,2,1kinghenryvi,1590\npalaces,2,1kinghenryvi,1590\nways,2,1kinghenryvi,1590\nOfficers,2,1kinghenryvi,1590\nTurn,2,1kinghenryvi,1590\nking's,2,1kinghenryvi,1590\nencounter'd,2,1kinghenryvi,1590\nviceroy,2,1kinghenryvi,1590\nconfer,2,1kinghenryvi,1590\nSound,2,1kinghenryvi,1590\nexpedition,2,1kinghenryvi,1590\nfruit,2,1kinghenryvi,1590\nconsented,2,1kinghenryvi,1590\nbout,2,1kinghenryvi,1590\nthence,2,1kinghenryvi,1590\nluces,2,1kinghenryvi,1590\nWhilst,2,1kinghenryvi,1590\ncompanion,2,1kinghenryvi,1590\nTalbots,2,1kinghenryvi,1590\ncease,2,1kinghenryvi,1590\ndescent,2,1kinghenryvi,1590\nservice,2,1kinghenryvi,1590\nsaucy,2,1kinghenryvi,1590\nmasters,2,1kinghenryvi,1590\nblind,2,1kinghenryvi,1590\nancient,2,1kinghenryvi,1590\nartillery,2,1kinghenryvi,1590\nFly,2,1kinghenryvi,1590\nshrink,2,1kinghenryvi,1590\nnails,2,1kinghenryvi,1590\nMight,2,1kinghenryvi,1590\nDare,2,1kinghenryvi,1590\nseems,2,1kinghenryvi,1590\ntitle,2,1kinghenryvi,1590\nmirth,2,1kinghenryvi,1590\nstead,2,1kinghenryvi,1590\nRetreat,2,1kinghenryvi,1590\nmurder,2,1kinghenryvi,1590\naccuse,2,1kinghenryvi,1590\ndevil's,2,1kinghenryvi,1590\nambassador,2,1kinghenryvi,1590\nstop,2,1kinghenryvi,1590\ncunning,2,1kinghenryvi,1590\nwary,2,1kinghenryvi,1590\nrule,2,1kinghenryvi,1590\ndistress,2,1kinghenryvi,1590\noffice,2,1kinghenryvi,1590\nwast,2,1kinghenryvi,1590\nbright,2,1kinghenryvi,1590\nparts,2,1kinghenryvi,1590\nparty,2,1kinghenryvi,1590\ncolour,2,1kinghenryvi,1590\ncreated,2,1kinghenryvi,1590\ntent,2,1kinghenryvi,1590\nverdict,2,1kinghenryvi,1590\njudgement,2,1kinghenryvi,1590\nWherewith,2,1kinghenryvi,1590\nDrive,2,1kinghenryvi,1590\nconditions,2,1kinghenryvi,1590\nfoil,2,1kinghenryvi,1590\nSentinels,2,1kinghenryvi,1590\nwherefore,2,1kinghenryvi,1590\npreferr'd,2,1kinghenryvi,1590\ncontrived,2,1kinghenryvi,1590\nchamber,2,1kinghenryvi,1590\nPlace,2,1kinghenryvi,1590\nstir,2,1kinghenryvi,1590\nkeys,2,1kinghenryvi,1590\nslaves,2,1kinghenryvi,1590\nmortality,2,1kinghenryvi,1590\nconquered,2,1kinghenryvi,1590\nhat,2,1kinghenryvi,1590\nhag,2,1kinghenryvi,1590\nWhat's,2,1kinghenryvi,1590\nutter,2,1kinghenryvi,1590\ntalks,2,1kinghenryvi,1590\nstreams,2,1kinghenryvi,1590\nreligious,2,1kinghenryvi,1590\nAm,2,1kinghenryvi,1590\nbrandish'd,2,1kinghenryvi,1590\nSummon,2,1kinghenryvi,1590\ninformed,2,1kinghenryvi,1590\nscarce,2,1kinghenryvi,1590\nneither,2,1kinghenryvi,1590\nblows,2,1kinghenryvi,1590\nHim,2,1kinghenryvi,1590\nGloucester's,2,1kinghenryvi,1590\nunnatural,2,1kinghenryvi,1590\nHaving,2,1kinghenryvi,1590\nLo,2,1kinghenryvi,1590\nbad,2,1kinghenryvi,1590\nStand,2,1kinghenryvi,1590\ncruel,2,1kinghenryvi,1590\ndoves,2,1kinghenryvi,1590\nexceed,2,1kinghenryvi,1590\nstar,2,1kinghenryvi,1590\npen,2,1kinghenryvi,1590\nbed,2,1kinghenryvi,1590\nvanquished,2,1kinghenryvi,1590\nwither'd,2,1kinghenryvi,1590\nwedded,2,1kinghenryvi,1590\nDenis,2,1kinghenryvi,1590\nquiet,2,1kinghenryvi,1590\nsirs,2,1kinghenryvi,1590\ntitles,2,1kinghenryvi,1590\nsapless,2,1kinghenryvi,1590\ngold,2,1kinghenryvi,1590\nthorn,2,1kinghenryvi,1590\ndivide,2,1kinghenryvi,1590\nproportion,2,1kinghenryvi,1590\nbend,2,1kinghenryvi,1590\nDrum,2,1kinghenryvi,1590\ncanker,2,1kinghenryvi,1590\nimagine,2,1kinghenryvi,1590\nwhereas,2,1kinghenryvi,1590\nbell,2,1kinghenryvi,1590\nchildren,2,1kinghenryvi,1590\nLancaster,2,1kinghenryvi,1590\nsounds,2,1kinghenryvi,1590\nfifty,2,1kinghenryvi,1590\nDies,2,1kinghenryvi,1590\nput,2,1kinghenryvi,1590\nconquers,2,1kinghenryvi,1590\ntwice,2,1kinghenryvi,1590\nscoffs,2,1kinghenryvi,1590\nfriendly,2,1kinghenryvi,1590\nbadge,2,1kinghenryvi,1590\nbulwarks,2,1kinghenryvi,1590\nsurvey,2,1kinghenryvi,1590\nAbout,2,1kinghenryvi,1590\nenterprise,2,1kinghenryvi,1590\npicture,2,1kinghenryvi,1590\nmoody,2,1kinghenryvi,1590\ngasp,2,1kinghenryvi,1590\ncrowned,2,1kinghenryvi,1590\noxen,2,1kinghenryvi,1590\ninheritance,2,1kinghenryvi,1590\ndogs,2,1kinghenryvi,1590\nentertain,2,1kinghenryvi,1590\nCowardly,2,1kinghenryvi,1590\nconquering,2,1kinghenryvi,1590\nwretch,2,1kinghenryvi,1590\nha,2,1kinghenryvi,1590\nresolute,2,1kinghenryvi,1590\nair,2,1kinghenryvi,1590\nyea,2,1kinghenryvi,1590\nburial,2,1kinghenryvi,1590\nHere's,2,1kinghenryvi,1590\nsheep,2,1kinghenryvi,1590\nRheims,2,1kinghenryvi,1590\nsafe,2,1kinghenryvi,1590\nwreck,2,1kinghenryvi,1590\nsuccor,2,1kinghenryvi,1590\nrightful,2,1kinghenryvi,1590\nliberal,2,1kinghenryvi,1590\nsubmissive,2,1kinghenryvi,1590\nlikely,2,1kinghenryvi,1590\nlend,2,1kinghenryvi,1590\nedged,2,1kinghenryvi,1590\ndestruction,2,1kinghenryvi,1590\nlady's,2,1kinghenryvi,1590\nClarence,2,1kinghenryvi,1590\nay,2,1kinghenryvi,1590\nshed,2,1kinghenryvi,1590\napproach,2,1kinghenryvi,1590\nforget,2,1kinghenryvi,1590\nwench,2,1kinghenryvi,1590\nbless'd,2,1kinghenryvi,1590\nbetray'd,2,1kinghenryvi,1590\ncommendations,2,1kinghenryvi,1590\nengenders,2,1kinghenryvi,1590\nbanish,2,1kinghenryvi,1590\nidly,2,1kinghenryvi,1590\noutrageous,2,1kinghenryvi,1590\nMyself,2,1kinghenryvi,1590\nEdmund,2,1kinghenryvi,1590\nLionel,2,1kinghenryvi,1590\nsettled,2,1kinghenryvi,1590\nendure,2,1kinghenryvi,1590\ncommands,2,1kinghenryvi,1590\nDoubtless,2,1kinghenryvi,1590\nresolved,2,1kinghenryvi,1590\nspent,2,1kinghenryvi,1590\ndevil,2,1kinghenryvi,1590\nspend,2,1kinghenryvi,1590\nremoved,2,1kinghenryvi,1590\nready,2,1kinghenryvi,1590\numpire,2,1kinghenryvi,1590\nCame,2,1kinghenryvi,1590\nthrice,2,1kinghenryvi,1590\nDamsel,2,1kinghenryvi,1590\nhardly,2,1kinghenryvi,1590\nplot,2,1kinghenryvi,1590\noppression,2,1kinghenryvi,1590\nfierce,2,1kinghenryvi,1590\nhard,2,1kinghenryvi,1590\nimprisonment,2,1kinghenryvi,1590\nBreak,2,1kinghenryvi,1590\nspeaks,2,1kinghenryvi,1590\naffects,2,1kinghenryvi,1590\nhall,2,1kinghenryvi,1590\nhale,2,1kinghenryvi,1590\nhandled,2,1kinghenryvi,1590\nknit,2,1kinghenryvi,1590\nCall,2,1kinghenryvi,1590\nemploy'd,2,1kinghenryvi,1590\nTrumpets,2,1kinghenryvi,1590\nfour,2,1kinghenryvi,1590\nplain,2,1kinghenryvi,1590\nfoul,2,1kinghenryvi,1590\ndrawn,2,1kinghenryvi,1590\nmighty,2,1kinghenryvi,1590\ngovernor,2,1kinghenryvi,1590\nwhether,2,1kinghenryvi,1590\nexpect,2,1kinghenryvi,1590\ncourse,2,1kinghenryvi,1590\nUnder,2,1kinghenryvi,1590\noccasions,2,1kinghenryvi,1590\nhangs,2,1kinghenryvi,1590\ndelight,2,1kinghenryvi,1590\npaid,2,1kinghenryvi,1590\nplotted,2,1kinghenryvi,1590\nKeepers,2,1kinghenryvi,1590\nawe,2,1kinghenryvi,1590\nfaithful,2,1kinghenryvi,1590\nfall'n,2,1kinghenryvi,1590\nrenowned,2,1kinghenryvi,1590\nobject,2,1kinghenryvi,1590\ngirl,2,1kinghenryvi,1590\nsacks,2,1kinghenryvi,1590\ngird,2,1kinghenryvi,1590\nerror,2,1kinghenryvi,1590\nExeter,2,1kinghenryvi,1590\nbanquet,2,1kinghenryvi,1590\nAmong,2,1kinghenryvi,1590\nGates,2,1kinghenryvi,1590\nSirrah,2,1kinghenryvi,1590\ntouch,2,1kinghenryvi,1590\ndaring,2,1kinghenryvi,1590\ntoken,2,1kinghenryvi,1590\nContent,2,1kinghenryvi,1590\nbrain'd,2,1kinghenryvi,1590\nhazard,2,1kinghenryvi,1590\nenjoy,2,1kinghenryvi,1590\nguess,2,1kinghenryvi,1590\nbeams,2,1kinghenryvi,1590\nhaving,2,1kinghenryvi,1590\nhere's,2,1kinghenryvi,1590\nlead,2,1kinghenryvi,1590\nInto,2,1kinghenryvi,1590\nrope,2,1kinghenryvi,1590\nMonmouth,2,1kinghenryvi,1590\noften,2,1kinghenryvi,1590\nopinions,2,1kinghenryvi,1590\ncondemn'd,2,1kinghenryvi,1590\nordnance,2,1kinghenryvi,1590\nastonish'd,2,1kinghenryvi,1590\nAgainst,2,1kinghenryvi,1590\nTen,2,1kinghenryvi,1590\nVernon,2,1kinghenryvi,1590\nindeed,2,1kinghenryvi,1590\nbroad,2,1kinghenryvi,1590\nthinks,2,1kinghenryvi,1590\ninstall'd,2,1kinghenryvi,1590\nretreat,2,1kinghenryvi,1590\nwonder,2,1kinghenryvi,1590\ngavest,2,1kinghenryvi,1590\nHenceforth,2,1kinghenryvi,1590\nPeace,2,1kinghenryvi,1590\nproudly,2,1kinghenryvi,1590\ncircle,2,1kinghenryvi,1590\ndaily,2,1kinghenryvi,1590\nGargrave,2,1kinghenryvi,1590\nbravely,2,1kinghenryvi,1590\ntraitors,2,1kinghenryvi,1590\ncondescend,2,1kinghenryvi,1590\nExcursions,2,1kinghenryvi,1590\nyear,2,1kinghenryvi,1590\nPresumptuous,2,1kinghenryvi,1590\nmount,2,1kinghenryvi,1590\nmate,2,1kinghenryvi,1590\narise,2,1kinghenryvi,1590\nthrall,2,1kinghenryvi,1590\ncoronation,2,1kinghenryvi,1590\nmouth,2,1kinghenryvi,1590\nplaces,2,1kinghenryvi,1590\nDoth,2,1kinghenryvi,1590\nrevive,2,1kinghenryvi,1590\nprecious,2,1kinghenryvi,1590\nquestion,2,1kinghenryvi,1590\neffect,2,1kinghenryvi,1590\nLook,2,1kinghenryvi,1590\nSome,2,1kinghenryvi,1590\nlikewise,2,1kinghenryvi,1590\nBeaufort,2,1kinghenryvi,1590\nrealms,2,1kinghenryvi,1590\nespials,2,1kinghenryvi,1590\nteeth,2,1kinghenryvi,1590\nstars,2,1kinghenryvi,1590\nstrict,2,1kinghenryvi,1590\nrests,2,1kinghenryvi,1590\nprocure,2,1kinghenryvi,1590\nFather,2,1kinghenryvi,1590\nthere's,2,1kinghenryvi,1590\ntenth,2,1kinghenryvi,1590\nthroughout,2,1kinghenryvi,1590\nproudest,2,1kinghenryvi,1590\nslave,2,1kinghenryvi,1590\ncoronet,2,1kinghenryvi,1590\nwot,2,1kinghenryvi,1590\nbrains,2,1kinghenryvi,1590\nvision,2,1kinghenryvi,1590\ncraves,2,1kinghenryvi,1590\ngreatest,2,1kinghenryvi,1590\nvictorious,2,1kinghenryvi,1590\ncraved,2,1kinghenryvi,1590\nspecial,2,1kinghenryvi,1590\nseal'd,2,1kinghenryvi,1590\nworthless,2,1kinghenryvi,1590\nsmoke,2,1kinghenryvi,1590\nBeing,2,1kinghenryvi,1590\nstake,2,1kinghenryvi,1590\nQuestion,2,1kinghenryvi,1590\nRome,2,1kinghenryvi,1590\nparamour,2,1kinghenryvi,1590\ndesired,2,1kinghenryvi,1590\nliving,2,1kinghenryvi,1590\nstain,2,1kinghenryvi,1590\nbehalf,2,1kinghenryvi,1590\nclose,2,1kinghenryvi,1590\nopinion,2,1kinghenryvi,1590\nflies,2,1kinghenryvi,1590\nInstead,2,1kinghenryvi,1590\nformer,2,1kinghenryvi,1590\ndishonour,2,1kinghenryvi,1590\nsafely,2,1kinghenryvi,1590\nswain,2,1kinghenryvi,1590\nwit,2,1kinghenryvi,1590\nstamp,2,1kinghenryvi,1590\noft,2,1kinghenryvi,1590\nPoictiers,2,1kinghenryvi,1590\nmessage,2,1kinghenryvi,1590\nring,2,1kinghenryvi,1590\nbuckle,2,1kinghenryvi,1590\nmorrow,2,1kinghenryvi,1590\nTHOMAS,2,1kinghenryvi,1590\nbondage,2,1kinghenryvi,1590\nmanifest,2,1kinghenryvi,1590\nMarriage,2,1kinghenryvi,1590\nalarums,2,1kinghenryvi,1590\ndeath's,2,1kinghenryvi,1590\nrebellious,2,1kinghenryvi,1590\nremains,2,1kinghenryvi,1590\nrefuge,2,1kinghenryvi,1590\nSleeping,2,1kinghenryvi,1590\nRose,2,1kinghenryvi,1590\nchampion,2,1kinghenryvi,1590\nvow'd,2,1kinghenryvi,1590\ndusky,2,1kinghenryvi,1590\nAuvergne,2,1kinghenryvi,1590\nsinews,2,1kinghenryvi,1590\ncaptivate,2,1kinghenryvi,1590\npatronage,2,1kinghenryvi,1590\ndriven,2,1kinghenryvi,1590\nintent,2,1kinghenryvi,1590\nambition,2,1kinghenryvi,1590\nwood,2,1kinghenryvi,1590\nthey'll,2,1kinghenryvi,1590\nwanton,2,1kinghenryvi,1590\nends,2,1kinghenryvi,1590\ndeclare,2,1kinghenryvi,1590\nproceeding,2,1kinghenryvi,1590\nwont,2,1kinghenryvi,1590\nexclaims,2,1kinghenryvi,1590\nbeseems,2,1kinghenryvi,1590\nfamiliar,2,1kinghenryvi,1590\nraging,2,1kinghenryvi,1590\nfaces,2,1kinghenryvi,1590\nHeaven,2,1kinghenryvi,1590\ntakes,2,1kinghenryvi,1590\nmarry,2,1kinghenryvi,1590\nforeign,2,1kinghenryvi,1590\nwomb,2,1kinghenryvi,1590\ncompass,2,1kinghenryvi,1590\nsupply,2,1kinghenryvi,1590\nbaleful,2,1kinghenryvi,1590\nsoldiers',2,1kinghenryvi,1590\nAmongst,2,1kinghenryvi,1590\nserves,2,1kinghenryvi,1590\nhundred,2,1kinghenryvi,1590\nfollowers,2,1kinghenryvi,1590\ngifts,2,1kinghenryvi,1590\nglad,2,1kinghenryvi,1590\nguilty,2,1kinghenryvi,1590\nminds,2,1kinghenryvi,1590\ngrate,2,1kinghenryvi,1590\nmiracle,2,1kinghenryvi,1590\nsaint,2,1kinghenryvi,1590\ngrant,2,1kinghenryvi,1590\nCall'd,2,1kinghenryvi,1590\nsilly,2,1kinghenryvi,1590\nscorns,2,1kinghenryvi,1590\ndiscover,2,1kinghenryvi,1590\n'em,2,1kinghenryvi,1590\nSweet,2,1kinghenryvi,1590\nfit,2,1kinghenryvi,1590\nprophetess,2,1kinghenryvi,1590\nlists,2,1kinghenryvi,1590\nCalais,2,1kinghenryvi,1590\nrich,2,1kinghenryvi,1590\ndalliance,2,1kinghenryvi,1590\nprogenitors,2,1kinghenryvi,1590\nmarried,2,1kinghenryvi,1590\nminded,2,1kinghenryvi,1590\nbare,2,1kinghenryvi,1590\nlordship,2,1kinghenryvi,1590\nthunder,2,1kinghenryvi,1590\nwealth,2,1kinghenryvi,1590\nlines,2,1kinghenryvi,1590\npractise,2,1kinghenryvi,1590\npatient,2,1kinghenryvi,1590\nwives,2,1kinghenryvi,1590\nwonted,2,1kinghenryvi,1590\ncensure,2,1kinghenryvi,1590\nprophesy,2,1kinghenryvi,1590\ndeliver'd,2,1kinghenryvi,1590\nkiss,2,1kinghenryvi,1590\nIcarus,2,1kinghenryvi,1590\nfriendship,2,1kinghenryvi,1590\nOfficer,2,1kinghenryvi,1590\ninsulting,2,1kinghenryvi,1590\nnamed,2,1kinghenryvi,1590\ndismay'd,2,1kinghenryvi,1590\nfare,2,1kinghenryvi,1590\nmeets,2,1kinghenryvi,1590\nmischance,2,1kinghenryvi,1590\ntale,2,1kinghenryvi,1590\nCaesar,2,1kinghenryvi,1590\ntimorous,2,1kinghenryvi,1590\ndeparture,2,1kinghenryvi,1590\nLean,2,1kinghenryvi,1590\nfruitful,2,1kinghenryvi,1590\nProsper,2,1kinghenryvi,1590\notherwise,2,1kinghenryvi,1590\naudacious,2,1kinghenryvi,1590\nthrusting,2,1kinghenryvi,1590\nRather,2,1kinghenryvi,1590\npledge,2,1kinghenryvi,1590\nshort,2,1kinghenryvi,1590\nNone,2,1kinghenryvi,1590\npeaceful,2,1kinghenryvi,1590\ngreet,2,1kinghenryvi,1590\nmaster,2,1kinghenryvi,1590\nstand'st,2,1kinghenryvi,1590\nhollow,2,1kinghenryvi,1590\ncovenants,2,1kinghenryvi,1590\ncounterfeit,2,1kinghenryvi,1590\nrevolt,2,1kinghenryvi,1590\nbesieged,2,1kinghenryvi,1590\nHerald,2,1kinghenryvi,1590\nforsooth,2,1kinghenryvi,1590\ngrudge,2,1kinghenryvi,1590\nWherefore,2,1kinghenryvi,1590\nvirtues,2,1kinghenryvi,1590\nfalsehood,2,1kinghenryvi,1590\ncholer,2,1kinghenryvi,1590\nBrave,2,1kinghenryvi,1590\nrobes,2,1kinghenryvi,1590\nsatisfied,2,1kinghenryvi,1590\nalong,2,1kinghenryvi,1590\nassembled,2,1kinghenryvi,1590\nignoble,2,1kinghenryvi,1590\nwasting,2,1kinghenryvi,1590\nwinged,2,1kinghenryvi,1590\nadieu,2,1kinghenryvi,1590\nugly,2,1kinghenryvi,1590\nstates,2,1kinghenryvi,1590\nbabe,2,1kinghenryvi,1590\ndrums,2,1kinghenryvi,1590\npresence,2,1kinghenryvi,1590\nGovernor,2,1kinghenryvi,1590\nsuppress,2,1kinghenryvi,1590\nprogeny,2,1kinghenryvi,1590\nsupposed,2,1kinghenryvi,1590\nNe'er,2,1kinghenryvi,1590\ncourtesy,2,1kinghenryvi,1590\nsees,2,1kinghenryvi,1590\nprophecy,2,1kinghenryvi,1590\nplanets,2,1kinghenryvi,1590\nBelieve,2,1kinghenryvi,1590\ncrest,2,1kinghenryvi,1590\nsacred,2,1kinghenryvi,1590\nPray,2,1kinghenryvi,1590\nexploit,2,1kinghenryvi,1590\ntherein,2,1kinghenryvi,1590\nwretched,2,1kinghenryvi,1590\nfuneral,2,1kinghenryvi,1590\ntied,2,1kinghenryvi,1590\nHumphrey,2,1kinghenryvi,1590\nmiscreant,2,1kinghenryvi,1590\nparentage,2,1kinghenryvi,1590\nHeralds,2,1kinghenryvi,1590\nMoved,2,1kinghenryvi,1590\nexcellence,2,1kinghenryvi,1590\nCry,2,1kinghenryvi,1590\ntide,2,1kinghenryvi,1590\nJust,2,1kinghenryvi,1590\nwhilst,2,1kinghenryvi,1590\ngloss,2,1kinghenryvi,1590\nbleeding,2,1kinghenryvi,1590\nprison,2,1kinghenryvi,1590\nmother's,2,1kinghenryvi,1590\nordain'd,2,1kinghenryvi,1590\ncold,2,1kinghenryvi,1590\ncountryman,2,1kinghenryvi,1590\nmatch,2,1kinghenryvi,1590\ngarter,2,1kinghenryvi,1590\npurpose,2,1kinghenryvi,1590\nMarch,2,1kinghenryvi,1590\ndrooping,2,1kinghenryvi,1590\nmaster's,2,1kinghenryvi,1590\nHearing,2,1kinghenryvi,1590\nuntil,2,1kinghenryvi,1590\nTwo,2,1kinghenryvi,1590\ntrow,2,1kinghenryvi,1590\nupbraid,2,1kinghenryvi,1590\ntumult's,2,1kinghenryvi,1590\nsounded,2,1kinghenryvi,1590\nfewest,2,1kinghenryvi,1590\nSignior,2,1kinghenryvi,1590\nconduct,2,1kinghenryvi,1590\nAnother,2,1kinghenryvi,1590\nchosen,2,1kinghenryvi,1590\nGaolers,2,1kinghenryvi,1590\nlofty,2,1kinghenryvi,1590\nGascony,2,1kinghenryvi,1590\nSentinel,2,1kinghenryvi,1590\nverified,2,1kinghenryvi,1590\npernicious,2,1kinghenryvi,1590\nwarriors,2,1kinghenryvi,1590\nliege,2,1kinghenryvi,1590\ninspired,2,1kinghenryvi,1590\nmarriage,2,1kinghenryvi,1590\ndismiss,2,1kinghenryvi,1590\ncommonly,2,1kinghenryvi,1590\nterritories,2,1kinghenryvi,1590\nrecompense,2,1kinghenryvi,1590\nharms,2,1kinghenryvi,1590\nhuman,2,1kinghenryvi,1590\nrevenged,2,1kinghenryvi,1590\nopportunity,2,1kinghenryvi,1590\nnature,2,1kinghenryvi,1590\nbooks,2,1kinghenryvi,1590\nmouths,2,1kinghenryvi,1590\nentrance,2,1kinghenryvi,1590\nconfirm,2,1kinghenryvi,1590\nwrathful,2,1kinghenryvi,1590\nWhoe'er,2,1kinghenryvi,1590\nLest,2,1kinghenryvi,1590\nmiseries,2,1kinghenryvi,1590\ndestroy,2,1kinghenryvi,1590\nblessing,2,1kinghenryvi,1590\ntop,2,1kinghenryvi,1590\nanother's,2,1kinghenryvi,1590\nwonders,2,1kinghenryvi,1590\nBring,2,1kinghenryvi,1590\ncertain,2,1kinghenryvi,1590\nreverent,2,1kinghenryvi,1590\nshake,2,1kinghenryvi,1590\nToo,2,1kinghenryvi,1590\nChristendom,2,1kinghenryvi,1590\nquietly,2,1kinghenryvi,1590\ngentler,2,1kinghenryvi,1590\nFain,2,1kinghenryvi,1590\nFair,2,1kinghenryvi,1590\ntainted,2,1kinghenryvi,1590\nreverenced,2,1kinghenryvi,1590\ndefault,2,1kinghenryvi,1590\nperhaps,2,1kinghenryvi,1590\nundertake,2,1kinghenryvi,1590\ndim,2,1kinghenryvi,1590\nturn'd,2,1kinghenryvi,1590\nexempt,2,1kinghenryvi,1590\nwoo'd,2,1kinghenryvi,1590\nTut,2,1kinghenryvi,1590\nsway,2,1kinghenryvi,1590\nattended,3,1kinghenryvi,1590\ntimes,3,1kinghenryvi,1590\nc,3,1kinghenryvi,1590\ntook,3,1kinghenryvi,1590\nmassacre,3,1kinghenryvi,1590\nstately,3,1kinghenryvi,1590\nlawful,3,1kinghenryvi,1590\nsuppose,3,1kinghenryvi,1590\nspeedy,3,1kinghenryvi,1590\nheld,3,1kinghenryvi,1590\nNever,3,1kinghenryvi,1590\nblossom,3,1kinghenryvi,1590\nCardinal,3,1kinghenryvi,1590\noffer,3,1kinghenryvi,1590\nappear,3,1kinghenryvi,1590\nunder,3,1kinghenryvi,1590\nyonder,3,1kinghenryvi,1590\nodds,3,1kinghenryvi,1590\nbowels,3,1kinghenryvi,1590\nbecome,3,1kinghenryvi,1590\nrescued,3,1kinghenryvi,1590\nPoor,3,1kinghenryvi,1590\npassions,3,1kinghenryvi,1590\nsoon,3,1kinghenryvi,1590\ndraw,3,1kinghenryvi,1590\nyourself,3,1kinghenryvi,1590\ngrown,3,1kinghenryvi,1590\nGive,3,1kinghenryvi,1590\nOnly,3,1kinghenryvi,1590\ngolden,3,1kinghenryvi,1590\ncame,3,1kinghenryvi,1590\namity,3,1kinghenryvi,1590\nbegan,3,1kinghenryvi,1590\ncities,3,1kinghenryvi,1590\nsix,3,1kinghenryvi,1590\nsin,3,1kinghenryvi,1590\nbound,3,1kinghenryvi,1590\nlight,3,1kinghenryvi,1590\nthrone,3,1kinghenryvi,1590\npeevish,3,1kinghenryvi,1590\nforsake,3,1kinghenryvi,1590\nskill,3,1kinghenryvi,1590\napparent,3,1kinghenryvi,1590\nwhere's,3,1kinghenryvi,1590\ndisgrace,3,1kinghenryvi,1590\nstudy,3,1kinghenryvi,1590\nThanks,3,1kinghenryvi,1590\npieces,3,1kinghenryvi,1590\nplay'd,3,1kinghenryvi,1590\nbetwixt,3,1kinghenryvi,1590\nourselves,3,1kinghenryvi,1590\naccursed,3,1kinghenryvi,1590\nTush,3,1kinghenryvi,1590\nterms,3,1kinghenryvi,1590\nworthy,3,1kinghenryvi,1590\nArmagnac,3,1kinghenryvi,1590\nabove,3,1kinghenryvi,1590\nrush,3,1kinghenryvi,1590\nsoldier,3,1kinghenryvi,1590\nparliament,3,1kinghenryvi,1590\nknow'st,3,1kinghenryvi,1590\nwish,3,1kinghenryvi,1590\ndied,3,1kinghenryvi,1590\nvoice,3,1kinghenryvi,1590\ndesire,3,1kinghenryvi,1590\nsteel,3,1kinghenryvi,1590\nruled,3,1kinghenryvi,1590\nalliance,3,1kinghenryvi,1590\nhungry,3,1kinghenryvi,1590\nsick,3,1kinghenryvi,1590\nburning,3,1kinghenryvi,1590\nwanting,3,1kinghenryvi,1590\nAt,3,1kinghenryvi,1590\nAh,3,1kinghenryvi,1590\nmutiny,3,1kinghenryvi,1590\nreplete,3,1kinghenryvi,1590\npatience,3,1kinghenryvi,1590\nyouthful,3,1kinghenryvi,1590\nlance,3,1kinghenryvi,1590\nassault,3,1kinghenryvi,1590\nladyship,3,1kinghenryvi,1590\nenter'd,3,1kinghenryvi,1590\nLegate,3,1kinghenryvi,1590\npleasure,3,1kinghenryvi,1590\nease,3,1kinghenryvi,1590\nconqueror,3,1kinghenryvi,1590\nLet's,3,1kinghenryvi,1590\npass,3,1kinghenryvi,1590\ngrandfather,3,1kinghenryvi,1590\nheads,3,1kinghenryvi,1590\nweep,3,1kinghenryvi,1590\nsooner,3,1kinghenryvi,1590\nwoful,3,1kinghenryvi,1590\nBEAUFORT,3,1kinghenryvi,1590\nBehold,3,1kinghenryvi,1590\ntedious,3,1kinghenryvi,1590\nbeget,3,1kinghenryvi,1590\ndespite,3,1kinghenryvi,1590\nvows,3,1kinghenryvi,1590\nused,3,1kinghenryvi,1590\n'Twas,3,1kinghenryvi,1590\nWhither,3,1kinghenryvi,1590\nnorth,3,1kinghenryvi,1590\ntower,3,1kinghenryvi,1590\ndeep,3,1kinghenryvi,1590\ndeer,3,1kinghenryvi,1590\npromised,3,1kinghenryvi,1590\nstood,3,1kinghenryvi,1590\nbeat,3,1kinghenryvi,1590\nstoop,3,1kinghenryvi,1590\nunworthy,3,1kinghenryvi,1590\nredress,3,1kinghenryvi,1590\ndower,3,1kinghenryvi,1590\nforged,3,1kinghenryvi,1590\nsack,3,1kinghenryvi,1590\nmemory,3,1kinghenryvi,1590\nmanner,3,1kinghenryvi,1590\nWatch,3,1kinghenryvi,1590\nthat's,3,1kinghenryvi,1590\nMortimer,3,1kinghenryvi,1590\ntrain,3,1kinghenryvi,1590\nstout,3,1kinghenryvi,1590\nloud,3,1kinghenryvi,1590\nSennet,3,1kinghenryvi,1590\nhot,3,1kinghenryvi,1590\nhark,3,1kinghenryvi,1590\nvalour,3,1kinghenryvi,1590\nweapon,3,1kinghenryvi,1590\nChristian,3,1kinghenryvi,1590\nwelcome,3,1kinghenryvi,1590\nsubmit,3,1kinghenryvi,1590\nhang,3,1kinghenryvi,1590\nshut,3,1kinghenryvi,1590\ndeny,3,1kinghenryvi,1590\nDuring,3,1kinghenryvi,1590\nmarching,3,1kinghenryvi,1590\npain,3,1kinghenryvi,1590\ndevise,3,1kinghenryvi,1590\nbosom,3,1kinghenryvi,1590\nexcept,3,1kinghenryvi,1590\nfiend,3,1kinghenryvi,1590\nFastolfe,3,1kinghenryvi,1590\nmayst,3,1kinghenryvi,1590\narmour,3,1kinghenryvi,1590\nArc,3,1kinghenryvi,1590\nchance,3,1kinghenryvi,1590\noverborne,3,1kinghenryvi,1590\nthanks,3,1kinghenryvi,1590\nbought,3,1kinghenryvi,1590\nchange,3,1kinghenryvi,1590\nnobles,3,1kinghenryvi,1590\nwitch,3,1kinghenryvi,1590\nCommand,3,1kinghenryvi,1590\nkeeps,3,1kinghenryvi,1590\nequal,3,1kinghenryvi,1590\nreport,3,1kinghenryvi,1590\nLords,3,1kinghenryvi,1590\nfaith,3,1kinghenryvi,1590\nalmost,3,1kinghenryvi,1590\nrare,3,1kinghenryvi,1590\nbears,3,1kinghenryvi,1590\nbeard,3,1kinghenryvi,1590\nthings,3,1kinghenryvi,1590\nspread,3,1kinghenryvi,1590\nquickly,3,1kinghenryvi,1590\ngarden,3,1kinghenryvi,1590\nchurchmen,3,1kinghenryvi,1590\nsay'st,3,1kinghenryvi,1590\npowers,3,1kinghenryvi,1590\nmourn,3,1kinghenryvi,1590\nLong,3,1kinghenryvi,1590\nEltham,3,1kinghenryvi,1590\nalready,3,1kinghenryvi,1590\nwrought,3,1kinghenryvi,1590\nmark,3,1kinghenryvi,1590\nknown,3,1kinghenryvi,1590\nissue,3,1kinghenryvi,1590\nbecause,3,1kinghenryvi,1590\nleader,3,1kinghenryvi,1590\nwoo,3,1kinghenryvi,1590\nflatter,3,1kinghenryvi,1590\nProtector,3,1kinghenryvi,1590\nGLANSDALE,3,1kinghenryvi,1590\nneed,3,1kinghenryvi,1590\nletters,3,1kinghenryvi,1590\nfire,3,1kinghenryvi,1590\nbreed,3,1kinghenryvi,1590\npassage,3,1kinghenryvi,1590\nrenown,3,1kinghenryvi,1590\nShrewsbury,3,1kinghenryvi,1590\nretire,3,1kinghenryvi,1590\nstyle,3,1kinghenryvi,1590\nfive,3,1kinghenryvi,1590\nwin,3,1kinghenryvi,1590\ncourt,3,1kinghenryvi,1590\nmartial,3,1kinghenryvi,1590\nsays,3,1kinghenryvi,1590\nmoment,3,1kinghenryvi,1590\nallegiance,3,1kinghenryvi,1590\nrelent,3,1kinghenryvi,1590\nSay,3,1kinghenryvi,1590\ncrown'd,3,1kinghenryvi,1590\nflourish,3,1kinghenryvi,1590\nrise,3,1kinghenryvi,1590\nable,3,1kinghenryvi,1590\nreceive,3,1kinghenryvi,1590\nbetween,3,1kinghenryvi,1590\nthemselves,3,1kinghenryvi,1590\nsurprised,3,1kinghenryvi,1590\ntaken,3,1kinghenryvi,1590\nwhat's,3,1kinghenryvi,1590\nwondrous,3,1kinghenryvi,1590\nrain,3,1kinghenryvi,1590\nwolf,3,1kinghenryvi,1590\nangry,3,1kinghenryvi,1590\nfail,3,1kinghenryvi,1590\ngrieve,3,1kinghenryvi,1590\ndurst,3,1kinghenryvi,1590\njudge,3,1kinghenryvi,1590\ndelays,3,1kinghenryvi,1590\nwork,3,1kinghenryvi,1590\nletter,3,1kinghenryvi,1590\npalace,3,1kinghenryvi,1590\nlordly,3,1kinghenryvi,1590\nUnto,3,1kinghenryvi,1590\nwhither,3,1kinghenryvi,1590\nbars,3,1kinghenryvi,1590\ndastard,3,1kinghenryvi,1590\ncomfort,3,1kinghenryvi,1590\npublic,3,1kinghenryvi,1590\nis't,3,1kinghenryvi,1590\ncoat,3,1kinghenryvi,1590\nsufficient,3,1kinghenryvi,1590\nperish,3,1kinghenryvi,1590\nprovoked,3,1kinghenryvi,1590\ncarry,3,1kinghenryvi,1590\nasunder,3,1kinghenryvi,1590\nshoot,3,1kinghenryvi,1590\nclear,3,1kinghenryvi,1590\ndangerous,3,1kinghenryvi,1590\nAlthough,3,1kinghenryvi,1590\ncowards,3,1kinghenryvi,1590\nGaoler,3,1kinghenryvi,1590\nprayers,3,1kinghenryvi,1590\nseas,3,1kinghenryvi,1590\nalways,3,1kinghenryvi,1590\nMaine,3,1kinghenryvi,1590\naloof,3,1kinghenryvi,1590\nuse,3,1kinghenryvi,1590\nseek,3,1kinghenryvi,1590\neither,3,1kinghenryvi,1590\ncondition,3,1kinghenryvi,1590\ncost,3,1kinghenryvi,1590\ntidings,3,1kinghenryvi,1590\nblame,3,1kinghenryvi,1590\nhours,3,1kinghenryvi,1590\nMeantime,3,1kinghenryvi,1590\nled,3,1kinghenryvi,1590\nLieutenant,3,1kinghenryvi,1590\nlie,3,1kinghenryvi,1590\npope,3,1kinghenryvi,1590\ntriumph,3,1kinghenryvi,1590\nsleep,3,1kinghenryvi,1590\nmad,3,1kinghenryvi,1590\nleast,3,1kinghenryvi,1590\nbegins,3,1kinghenryvi,1590\nstraight,3,1kinghenryvi,1590\nmet,3,1kinghenryvi,1590\ntreacherous,3,1kinghenryvi,1590\nEARL,3,1kinghenryvi,1590\nabuse,3,1kinghenryvi,1590\nExcept,3,1kinghenryvi,1590\nwhiles,3,1kinghenryvi,1590\ncitizens,3,1kinghenryvi,1590\nlevied,3,1kinghenryvi,1590\nhurt,3,1kinghenryvi,1590\nwitness,3,1kinghenryvi,1590\nDid,3,1kinghenryvi,1590\nframe,3,1kinghenryvi,1590\nbegotten,3,1kinghenryvi,1590\nsuccess,3,1kinghenryvi,1590\nshine,3,1kinghenryvi,1590\ndame,3,1kinghenryvi,1590\nTake,3,1kinghenryvi,1590\nambitious,3,1kinghenryvi,1590\ncross,3,1kinghenryvi,1590\nstomachs,3,1kinghenryvi,1590\nforbear,3,1kinghenryvi,1590\nobedience,3,1kinghenryvi,1590\noaths,3,1kinghenryvi,1590\nFrenchmen's,3,1kinghenryvi,1590\ne'er,3,1kinghenryvi,1590\nCambridge,4,1kinghenryvi,1590\nregard,4,1kinghenryvi,1590\nNay,4,1kinghenryvi,1590\nsuffer,4,1kinghenryvi,1590\njoin,4,1kinghenryvi,1590\nsmiles,4,1kinghenryvi,1590\nleisure,4,1kinghenryvi,1590\nheir,4,1kinghenryvi,1590\nspeech,4,1kinghenryvi,1590\nFie,4,1kinghenryvi,1590\nadvantage,4,1kinghenryvi,1590\nhonours,4,1kinghenryvi,1590\nhaste,4,1kinghenryvi,1590\nWilt,4,1kinghenryvi,1590\njoy,4,1kinghenryvi,1590\ncardinal's,4,1kinghenryvi,1590\npray,4,1kinghenryvi,1590\ncontract,4,1kinghenryvi,1590\nMust,4,1kinghenryvi,1590\nsight,4,1kinghenryvi,1590\nfury,4,1kinghenryvi,1590\nsort,4,1kinghenryvi,1590\niron,4,1kinghenryvi,1590\ncare,4,1kinghenryvi,1590\nScout,4,1kinghenryvi,1590\nAfter,4,1kinghenryvi,1590\nhighness,4,1kinghenryvi,1590\nsubjects,4,1kinghenryvi,1590\ncheer,4,1kinghenryvi,1590\nMethinks,4,1kinghenryvi,1590\nblack,4,1kinghenryvi,1590\nview,4,1kinghenryvi,1590\nexecution,4,1kinghenryvi,1590\nstands,4,1kinghenryvi,1590\nenough,4,1kinghenryvi,1590\nbastard,4,1kinghenryvi,1590\nsea,4,1kinghenryvi,1590\nsuit,4,1kinghenryvi,1590\nembrace,4,1kinghenryvi,1590\nchurch,4,1kinghenryvi,1590\nSuch,4,1kinghenryvi,1590\nFarewell,4,1kinghenryvi,1590\nstern,4,1kinghenryvi,1590\nwings,4,1kinghenryvi,1590\nServant,4,1kinghenryvi,1590\noffence,4,1kinghenryvi,1590\nbroils,4,1kinghenryvi,1590\nguarded,4,1kinghenryvi,1590\nenvious,4,1kinghenryvi,1590\nafter,4,1kinghenryvi,1590\nprinces,4,1kinghenryvi,1590\nsun,4,1kinghenryvi,1590\nmalice,4,1kinghenryvi,1590\naccept,4,1kinghenryvi,1590\nBetwixt,4,1kinghenryvi,1590\nflesh,4,1kinghenryvi,1590\nwant,4,1kinghenryvi,1590\nruin,4,1kinghenryvi,1590\njoin'd,4,1kinghenryvi,1590\nmatter,4,1kinghenryvi,1590\neach,4,1kinghenryvi,1590\nauthority,4,1kinghenryvi,1590\npay,4,1kinghenryvi,1590\nquarrel,4,1kinghenryvi,1590\nhopes,4,1kinghenryvi,1590\nproof,4,1kinghenryvi,1590\nkings,4,1kinghenryvi,1590\nashes,4,1kinghenryvi,1590\ntear,4,1kinghenryvi,1590\nfatal,4,1kinghenryvi,1590\nwhole,4,1kinghenryvi,1590\nnobility,4,1kinghenryvi,1590\nglorious,4,1kinghenryvi,1590\nyourselves,4,1kinghenryvi,1590\ngave,4,1kinghenryvi,1590\nbehind,4,1kinghenryvi,1590\nstruck,4,1kinghenryvi,1590\nprisoners,4,1kinghenryvi,1590\nweal,4,1kinghenryvi,1590\ncaptains,4,1kinghenryvi,1590\nsuddenly,4,1kinghenryvi,1590\namongst,4,1kinghenryvi,1590\nlonger,4,1kinghenryvi,1590\nLike,4,1kinghenryvi,1590\nbeds,4,1kinghenryvi,1590\npitch,4,1kinghenryvi,1590\nquite,4,1kinghenryvi,1590\nghost,4,1kinghenryvi,1590\nvirgin,4,1kinghenryvi,1590\nservant,4,1kinghenryvi,1590\nfavour,4,1kinghenryvi,1590\ntawny,4,1kinghenryvi,1590\ngain,4,1kinghenryvi,1590\ndear,4,1kinghenryvi,1590\nvouchsafe,4,1kinghenryvi,1590\nboast,4,1kinghenryvi,1590\nprivilege,4,1kinghenryvi,1590\nthyself,4,1kinghenryvi,1590\nfeast,4,1kinghenryvi,1590\nTemple,4,1kinghenryvi,1590\nwherein,4,1kinghenryvi,1590\nlose,4,1kinghenryvi,1590\nknee,4,1kinghenryvi,1590\nchoice,4,1kinghenryvi,1590\nnation,4,1kinghenryvi,1590\ncall'd,4,1kinghenryvi,1590\nskirmish,4,1kinghenryvi,1590\nreturn'd,4,1kinghenryvi,1590\nmoney,4,1kinghenryvi,1590\nstones,4,1kinghenryvi,1590\nshot,4,1kinghenryvi,1590\ndreadful,4,1kinghenryvi,1590\ntyranny,4,1kinghenryvi,1590\nmaiden,4,1kinghenryvi,1590\nsecret,4,1kinghenryvi,1590\nHark,4,1kinghenryvi,1590\nbroke,4,1kinghenryvi,1590\nGeorge,4,1kinghenryvi,1590\nrestored,4,1kinghenryvi,1590\nDUKE,4,1kinghenryvi,1590\ncastle,4,1kinghenryvi,1590\nsilence,4,1kinghenryvi,1590\nremedy,4,1kinghenryvi,1590\nstrike,4,1kinghenryvi,1590\nBastard,4,1kinghenryvi,1590\nawhile,4,1kinghenryvi,1590\nfamous,4,1kinghenryvi,1590\nplaced,4,1kinghenryvi,1590\nyours,4,1kinghenryvi,1590\nend,4,1kinghenryvi,1590\ndidst,4,1kinghenryvi,1590\nchief,4,1kinghenryvi,1590\ncoward,4,1kinghenryvi,1590\nknows,4,1kinghenryvi,1590\nstate,4,1kinghenryvi,1590\nlet's,4,1kinghenryvi,1590\nbenefit,4,1kinghenryvi,1590\nWere,4,1kinghenryvi,1590\nsame,4,1kinghenryvi,1590\nthing,4,1kinghenryvi,1590\nwhy,4,1kinghenryvi,1590\nthird,4,1kinghenryvi,1590\nheard,4,1kinghenryvi,1590\nintend,4,1kinghenryvi,1590\nfound,4,1kinghenryvi,1590\nSIR,4,1kinghenryvi,1590\nnews,4,1kinghenryvi,1590\nTill,4,1kinghenryvi,1590\nwert,4,1kinghenryvi,1590\nthree,4,1kinghenryvi,1590\ncompany,4,1kinghenryvi,1590\nroses,4,1kinghenryvi,1590\nta'en,4,1kinghenryvi,1590\ndepart,4,1kinghenryvi,1590\nreproach,4,1kinghenryvi,1590\ngentleman,4,1kinghenryvi,1590\nfast,4,1kinghenryvi,1590\nWelcome,4,1kinghenryvi,1590\nreason,4,1kinghenryvi,1590\nstroke,4,1kinghenryvi,1590\ngiven,4,1kinghenryvi,1590\nRegent,4,1kinghenryvi,1590\nargument,4,1kinghenryvi,1590\nWOODVILE,4,1kinghenryvi,1590\nwife,4,1kinghenryvi,1590\nhearts,4,1kinghenryvi,1590\nprithee,4,1kinghenryvi,1590\nswear,4,1kinghenryvi,1590\naught,4,1kinghenryvi,1590\nconclude,4,1kinghenryvi,1590\ncorn,4,1kinghenryvi,1590\ntraitor,4,1kinghenryvi,1590\nsecure,4,1kinghenryvi,1590\nEdward,4,1kinghenryvi,1590\nhither,4,1kinghenryvi,1590\ntogether,4,1kinghenryvi,1590\ngoes,4,1kinghenryvi,1590\npersuade,4,1kinghenryvi,1590\nlimbs,4,1kinghenryvi,1590\nburst,4,1kinghenryvi,1590\nbeauty,4,1kinghenryvi,1590\nattend,4,1kinghenryvi,1590\nprelate,4,1kinghenryvi,1590\nregent,4,1kinghenryvi,1590\nbehold,4,1kinghenryvi,1590\nflower,4,1kinghenryvi,1590\nprivate,4,1kinghenryvi,1590\nten,4,1kinghenryvi,1590\nwoman,4,1kinghenryvi,1590\nshape,4,1kinghenryvi,1590\nsharp,4,1kinghenryvi,1590\nwomen,4,1kinghenryvi,1590\ntruce,5,1kinghenryvi,1590\nguard,5,1kinghenryvi,1590\ndays,5,1kinghenryvi,1590\nWarwick,5,1kinghenryvi,1590\nhorse,5,1kinghenryvi,1590\ndiscord,5,1kinghenryvi,1590\nroyal,5,1kinghenryvi,1590\nrather,5,1kinghenryvi,1590\nDauphin's,5,1kinghenryvi,1590\nwhile,5,1kinghenryvi,1590\ndrum,5,1kinghenryvi,1590\nwithal,5,1kinghenryvi,1590\nWarder,5,1kinghenryvi,1590\nlies,5,1kinghenryvi,1590\nSergeant,5,1kinghenryvi,1590\nLawyer,5,1kinghenryvi,1590\ncase,5,1kinghenryvi,1590\nmercy,5,1kinghenryvi,1590\nSoldier,5,1kinghenryvi,1590\nreign,5,1kinghenryvi,1590\nWhose,5,1kinghenryvi,1590\nnoise,5,1kinghenryvi,1590\nBeside,5,1kinghenryvi,1590\nsir,5,1kinghenryvi,1590\nnothing,5,1kinghenryvi,1590\nwarrant,5,1kinghenryvi,1590\nworth,5,1kinghenryvi,1590\nOut,5,1kinghenryvi,1590\nborn,5,1kinghenryvi,1590\nhumble,5,1kinghenryvi,1590\nfeet,5,1kinghenryvi,1590\nhorsemen,5,1kinghenryvi,1590\nGunner,5,1kinghenryvi,1590\noverthrow,5,1kinghenryvi,1590\ndeeds,5,1kinghenryvi,1590\ndesperate,5,1kinghenryvi,1590\nOn,5,1kinghenryvi,1590\nearl,5,1kinghenryvi,1590\nprove,5,1kinghenryvi,1590\nOpen,5,1kinghenryvi,1590\ngrief,5,1kinghenryvi,1590\nburn,5,1kinghenryvi,1590\ndost,5,1kinghenryvi,1590\nshadow,5,1kinghenryvi,1590\nconquest,5,1kinghenryvi,1590\ndegree,5,1kinghenryvi,1590\ncurse,5,1kinghenryvi,1590\nbreath,5,1kinghenryvi,1590\nvictory,5,1kinghenryvi,1590\npriest,5,1kinghenryvi,1590\nbodies,5,1kinghenryvi,1590\nSecond,5,1kinghenryvi,1590\nwhereof,5,1kinghenryvi,1590\nless,5,1kinghenryvi,1590\npure,5,1kinghenryvi,1590\npresume,5,1kinghenryvi,1590\nbrought,5,1kinghenryvi,1590\nGeneral,5,1kinghenryvi,1590\nLady,5,1kinghenryvi,1590\nliberty,5,1kinghenryvi,1590\npraise,5,1kinghenryvi,1590\nopen,5,1kinghenryvi,1590\narm,5,1kinghenryvi,1590\nAre,5,1kinghenryvi,1590\nfar,5,1kinghenryvi,1590\nMadam,5,1kinghenryvi,1590\npeers,5,1kinghenryvi,1590\nmischief,5,1kinghenryvi,1590\nfaction,5,1kinghenryvi,1590\nFlourish,5,1kinghenryvi,1590\nours,5,1kinghenryvi,1590\nsubstance,5,1kinghenryvi,1590\nPorter,5,1kinghenryvi,1590\nyouth,5,1kinghenryvi,1590\nseveral,5,1kinghenryvi,1590\ngeneral,5,1kinghenryvi,1590\nvery,5,1kinghenryvi,1590\nmind,5,1kinghenryvi,1590\nchair,5,1kinghenryvi,1590\npresently,5,1kinghenryvi,1590\ncomes,5,1kinghenryvi,1590\ntrouble,5,1kinghenryvi,1590\nwrongs,5,1kinghenryvi,1590\nWe'll,5,1kinghenryvi,1590\nhaughty,5,1kinghenryvi,1590\npride,5,1kinghenryvi,1590\ndying,5,1kinghenryvi,1590\ncursed,5,1kinghenryvi,1590\nconsent,5,1kinghenryvi,1590\nground,5,1kinghenryvi,1590\nfortune,5,1kinghenryvi,1590\nmethinks,5,1kinghenryvi,1590\nwounds,5,1kinghenryvi,1590\nNaples,5,1kinghenryvi,1590\nBoy,5,1kinghenryvi,1590\nhour,5,1kinghenryvi,1590\nexcursions,5,1kinghenryvi,1590\nstrong,5,1kinghenryvi,1590\ncountry's,5,1kinghenryvi,1590\nalone,5,1kinghenryvi,1590\ntorch,5,1kinghenryvi,1590\nspite,5,1kinghenryvi,1590\nbishop,5,1kinghenryvi,1590\nremember,5,1kinghenryvi,1590\nthoughts,5,1kinghenryvi,1590\nGreat,5,1kinghenryvi,1590\nAway,5,1kinghenryvi,1590\nterror,5,1kinghenryvi,1590\nMan,5,1kinghenryvi,1590\nslay,5,1kinghenryvi,1590\nrescue,5,1kinghenryvi,1590\nhimself,5,1kinghenryvi,1590\nlady,5,1kinghenryvi,1590\nred,6,1kinghenryvi,1590\nBedford,6,1kinghenryvi,1590\nhonourable,6,1kinghenryvi,1590\ntears,6,1kinghenryvi,1590\nWhom,6,1kinghenryvi,1590\ncheeks,6,1kinghenryvi,1590\nafterwards,6,1kinghenryvi,1590\nscourge,6,1kinghenryvi,1590\nvirtuous,6,1kinghenryvi,1590\nPole,6,1kinghenryvi,1590\nlooks,6,1kinghenryvi,1590\ngather,6,1kinghenryvi,1590\nOur,6,1kinghenryvi,1590\nheaven,6,1kinghenryvi,1590\ndies,6,1kinghenryvi,1590\nbold,6,1kinghenryvi,1590\ncoats,6,1kinghenryvi,1590\nDo,6,1kinghenryvi,1590\nnephew,6,1kinghenryvi,1590\nsign,6,1kinghenryvi,1590\nHad,6,1kinghenryvi,1590\ntroops,6,1kinghenryvi,1590\ntreachery,6,1kinghenryvi,1590\nRe,6,1kinghenryvi,1590\nGod's,6,1kinghenryvi,1590\nhalf,6,1kinghenryvi,1590\ncity,6,1kinghenryvi,1590\nfoot,6,1kinghenryvi,1590\nthough,6,1kinghenryvi,1590\ncombat,6,1kinghenryvi,1590\nGARGRAVE,6,1kinghenryvi,1590\nShould,6,1kinghenryvi,1590\nBetween,6,1kinghenryvi,1590\nElse,6,1kinghenryvi,1590\neye,6,1kinghenryvi,1590\nTherefore,6,1kinghenryvi,1590\nchild,6,1kinghenryvi,1590\ncourage,6,1kinghenryvi,1590\nThird,6,1kinghenryvi,1590\nsake,6,1kinghenryvi,1590\nonly,6,1kinghenryvi,1590\nloving,6,1kinghenryvi,1590\nflight,6,1kinghenryvi,1590\nThus,6,1kinghenryvi,1590\nduty,6,1kinghenryvi,1590\nprevail,6,1kinghenryvi,1590\nrage,6,1kinghenryvi,1590\nface,6,1kinghenryvi,1590\nhappy,6,1kinghenryvi,1590\nfame,6,1kinghenryvi,1590\nword,6,1kinghenryvi,1590\neven,6,1kinghenryvi,1590\ntill,6,1kinghenryvi,1590\nlay,6,1kinghenryvi,1590\ngentlemen,6,1kinghenryvi,1590\nhold,6,1kinghenryvi,1590\ndissension,6,1kinghenryvi,1590\ncaptain,6,1kinghenryvi,1590\nbattle,6,1kinghenryvi,1590\ncry,6,1kinghenryvi,1590\ncountrymen,6,1kinghenryvi,1590\nreturn,6,1kinghenryvi,1590\nspirits,6,1kinghenryvi,1590\nlast,6,1kinghenryvi,1590\nbeing,6,1kinghenryvi,1590\ncontent,6,1kinghenryvi,1590\nwithout,6,1kinghenryvi,1590\nkind,6,1kinghenryvi,1590\nparley,6,1kinghenryvi,1590\nmarket,6,1kinghenryvi,1590\norder,6,1kinghenryvi,1590\nenemy,6,1kinghenryvi,1590\ntreason,7,1kinghenryvi,1590\nthought,7,1kinghenryvi,1590\nStay,7,1kinghenryvi,1590\nEither,7,1kinghenryvi,1590\nmaintain,7,1kinghenryvi,1590\nrun,7,1kinghenryvi,1590\nyears,7,1kinghenryvi,1590\nhear,7,1kinghenryvi,1590\nfull,7,1kinghenryvi,1590\nNor,7,1kinghenryvi,1590\nAside,7,1kinghenryvi,1590\nwithin,7,1kinghenryvi,1590\nvile,7,1kinghenryvi,1590\nheavens,7,1kinghenryvi,1590\nwhite,7,1kinghenryvi,1590\nfalse,7,1kinghenryvi,1590\nOne,7,1kinghenryvi,1590\nfriend,7,1kinghenryvi,1590\nelse,7,1kinghenryvi,1590\nproud,7,1kinghenryvi,1590\nGood,7,1kinghenryvi,1590\nbest,7,1kinghenryvi,1590\ndown,7,1kinghenryvi,1590\ngone,7,1kinghenryvi,1590\nsaid,7,1kinghenryvi,1590\nbreast,7,1kinghenryvi,1590\nraise,7,1kinghenryvi,1590\nde,7,1kinghenryvi,1590\nMaster,7,1kinghenryvi,1590\ncrave,7,1kinghenryvi,1590\nearth,7,1kinghenryvi,1590\nla,7,1kinghenryvi,1590\nill,7,1kinghenryvi,1590\nBecause,7,1kinghenryvi,1590\npale,7,1kinghenryvi,1590\nrevenge,7,1kinghenryvi,1590\nenemies,7,1kinghenryvi,1590\nnew,7,1kinghenryvi,1590\nmarch,7,1kinghenryvi,1590\nwatch,7,1kinghenryvi,1590\ngentle,7,1kinghenryvi,1590\ntender,7,1kinghenryvi,1590\nslain,7,1kinghenryvi,1590\nShe,7,1kinghenryvi,1590\nhigh,7,1kinghenryvi,1590\nstrife,7,1kinghenryvi,1590\nCARDINAL,7,1kinghenryvi,1590\nwon,7,1kinghenryvi,1590\nget,7,1kinghenryvi,1590\ngrave,7,1kinghenryvi,1590\nstand,7,1kinghenryvi,1590\nway,7,1kinghenryvi,1590\nown,7,1kinghenryvi,1590\nnext,7,1kinghenryvi,1590\nransom,7,1kinghenryvi,1590\nfoe,7,1kinghenryvi,1590\ncolours,7,1kinghenryvi,1590\nShepherd,7,1kinghenryvi,1590\nlarge,7,1kinghenryvi,1590\ntalk,7,1kinghenryvi,1590\nseen,7,1kinghenryvi,1590\nsend,7,1kinghenryvi,1590\nAnjou,7,1kinghenryvi,1590\ntry,7,1kinghenryvi,1590\nfollow,7,1kinghenryvi,1590\nFrenchmen,8,1kinghenryvi,1590\nAlencon,8,1kinghenryvi,1590\nmeet,8,1kinghenryvi,1590\ntrust,8,1kinghenryvi,1590\nUpon,8,1kinghenryvi,1590\ncharge,8,1kinghenryvi,1590\nhead,8,1kinghenryvi,1590\nanother,8,1kinghenryvi,1590\nNot,8,1kinghenryvi,1590\nscorn,8,1kinghenryvi,1590\nWas,8,1kinghenryvi,1590\nWilliam,8,1kinghenryvi,1590\nbring,8,1kinghenryvi,1590\nboy,8,1kinghenryvi,1590\nsiege,8,1kinghenryvi,1590\nforce,8,1kinghenryvi,1590\nHer,8,1kinghenryvi,1590\nGo,8,1kinghenryvi,1590\nweak,8,1kinghenryvi,1590\n'tis,8,1kinghenryvi,1590\nSoldiers,8,1kinghenryvi,1590\nleft,8,1kinghenryvi,1590\nhands,8,1kinghenryvi,1590\nFASTOLFE,8,1kinghenryvi,1590\nYes,8,1kinghenryvi,1590\npluck,8,1kinghenryvi,1590\nright,8,1kinghenryvi,1590\nmaid,8,1kinghenryvi,1590\nfree,8,1kinghenryvi,1590\nnear,8,1kinghenryvi,1590\nthine,8,1kinghenryvi,1590\narmy,8,1kinghenryvi,1590\nduke,8,1kinghenryvi,1590\nBourdeaux,8,1kinghenryvi,1590\nfair,8,1kinghenryvi,1590\nplease,8,1kinghenryvi,1590\nhope,8,1kinghenryvi,1590\nlaw,8,1kinghenryvi,1590\nlives,8,1kinghenryvi,1590\nsound,8,1kinghenryvi,1590\nhouse,8,1kinghenryvi,1590\nsent,8,1kinghenryvi,1590\nmadam,8,1kinghenryvi,1590\npoor,8,1kinghenryvi,1590\nSince,8,1kinghenryvi,1590\nfled,8,1kinghenryvi,1590\nlive,8,1kinghenryvi,1590\nFifth,8,1kinghenryvi,1590\nsudden,8,1kinghenryvi,1590\ncommand,8,1kinghenryvi,1590\npower,8,1kinghenryvi,1590\nbrave,9,1kinghenryvi,1590\nV,9,1kinghenryvi,1590\ncountry,9,1kinghenryvi,1590\nhell,9,1kinghenryvi,1590\nprisoner,9,1kinghenryvi,1590\nstrength,9,1kinghenryvi,1590\nbirth,9,1kinghenryvi,1590\ngracious,9,1kinghenryvi,1590\nsure,9,1kinghenryvi,1590\ncall,9,1kinghenryvi,1590\ntowns,9,1kinghenryvi,1590\nbody,9,1kinghenryvi,1590\nwrong,9,1kinghenryvi,1590\nThese,9,1kinghenryvi,1590\nThere,9,1kinghenryvi,1590\nwars,9,1kinghenryvi,1590\nmean,9,1kinghenryvi,1590\nIII,9,1kinghenryvi,1590\nsince,9,1kinghenryvi,1590\nSpeak,9,1kinghenryvi,1590\nfarewell,9,1kinghenryvi,1590\naid,9,1kinghenryvi,1590\nbear,9,1kinghenryvi,1590\nloss,9,1kinghenryvi,1590\nSuffolk,9,1kinghenryvi,1590\nthose,9,1kinghenryvi,1590\npart,9,1kinghenryvi,1590\nMore,9,1kinghenryvi,1590\nspeak,9,1kinghenryvi,1590\nAlarum,9,1kinghenryvi,1590\nHave,9,1kinghenryvi,1590\nthrough,9,1kinghenryvi,1590\nFrom,9,1kinghenryvi,1590\nSee,9,1kinghenryvi,1590\nAll,9,1kinghenryvi,1590\nbreak,9,1kinghenryvi,1590\nsave,9,1kinghenryvi,1590\n'Tis,9,1kinghenryvi,1590\nknight,9,1kinghenryvi,1590\never,9,1kinghenryvi,1590\nperceive,9,1kinghenryvi,1590\nthousand,9,1kinghenryvi,1590\nholy,9,1kinghenryvi,1590\neyes,9,1kinghenryvi,1590\nSALISBURY,9,1kinghenryvi,1590\nwe'll,9,1kinghenryvi,1590\nCaptain,9,1kinghenryvi,1590\nmight,9,1kinghenryvi,1590\nJohn,10,1kinghenryvi,1590\nworld,10,1kinghenryvi,1590\nWho,10,1kinghenryvi,1590\nbetter,10,1kinghenryvi,1590\nturn,10,1kinghenryvi,1590\nabout,10,1kinghenryvi,1590\nfoes,10,1kinghenryvi,1590\nWithin,10,1kinghenryvi,1590\nII,10,1kinghenryvi,1590\nnight,10,1kinghenryvi,1590\nvaliant,10,1kinghenryvi,1590\nwhose,10,1kinghenryvi,1590\nwear,10,1kinghenryvi,1590\nSaint,10,1kinghenryvi,1590\ntongue,10,1kinghenryvi,1590\nlook,10,1kinghenryvi,1590\nage,10,1kinghenryvi,1590\nYet,10,1kinghenryvi,1590\nlittle,10,1kinghenryvi,1590\nThan,10,1kinghenryvi,1590\nSir,10,1kinghenryvi,1590\nmyself,10,1kinghenryvi,1590\ngates,10,1kinghenryvi,1590\nwar,10,1kinghenryvi,1590\nLondon,10,1kinghenryvi,1590\nfall,10,1kinghenryvi,1590\nqueen,10,1kinghenryvi,1590\nforces,10,1kinghenryvi,1590\nwarlike,10,1kinghenryvi,1590\nmakes,10,1kinghenryvi,1590\nsovereign,10,1kinghenryvi,1590\ntrue,10,1kinghenryvi,1590\ncannot,10,1kinghenryvi,1590\nprincely,10,1kinghenryvi,1590\ndare,10,1kinghenryvi,1590\nspirit,10,1kinghenryvi,1590\nWill,11,1kinghenryvi,1590\nevery,11,1kinghenryvi,1590\nyield,11,1kinghenryvi,1590\ncause,11,1kinghenryvi,1590\nmother,11,1kinghenryvi,1590\nMayor,11,1kinghenryvi,1590\nothers,11,1kinghenryvi,1590\nTower,11,1kinghenryvi,1590\nalarum,11,1kinghenryvi,1590\nmeans,11,1kinghenryvi,1590\nBASSET,11,1kinghenryvi,1590\nfield,11,1kinghenryvi,1590\nforth,11,1kinghenryvi,1590\nhast,11,1kinghenryvi,1590\nHath,11,1kinghenryvi,1590\nmajesty,11,1kinghenryvi,1590\nmany,11,1kinghenryvi,1590\nsoldiers,11,1kinghenryvi,1590\nfather's,11,1kinghenryvi,1590\nReignier,11,1kinghenryvi,1590\nstill,11,1kinghenryvi,1590\nWell,11,1kinghenryvi,1590\nold,11,1kinghenryvi,1590\nwilt,11,1kinghenryvi,1590\nback,11,1kinghenryvi,1590\nsweet,11,1kinghenryvi,1590\nglory,11,1kinghenryvi,1590\nshame,11,1kinghenryvi,1590\ncrown,11,1kinghenryvi,1590\nmuch,12,1kinghenryvi,1590\nhelp,12,1kinghenryvi,1590\ntruth,12,1kinghenryvi,1590\nCome,12,1kinghenryvi,1590\ntown,12,1kinghenryvi,1590\nWhy,12,1kinghenryvi,1590\nagainst,12,1kinghenryvi,1590\ndaughter,12,1kinghenryvi,1590\nPlantagenet,12,1kinghenryvi,1590\ntell,12,1kinghenryvi,1590\nAn,12,1kinghenryvi,1590\ncanst,12,1kinghenryvi,1590\nIV,12,1kinghenryvi,1590\ndone,12,1kinghenryvi,1590\nlost,12,1kinghenryvi,1590\nprince,12,1kinghenryvi,1590\nbefore,12,1kinghenryvi,1590\nwho,12,1kinghenryvi,1590\noff,12,1kinghenryvi,1590\nEngland's,12,1kinghenryvi,1590\nfind,12,1kinghenryvi,1590\nbase,12,1kinghenryvi,1590\nParis,12,1kinghenryvi,1590\nRouen,12,1kinghenryvi,1590\nWhere,12,1kinghenryvi,1590\nThy,12,1kinghenryvi,1590\nshalt,12,1kinghenryvi,1590\nin,268,1kinghenryvi,1590\nanswer,13,1kinghenryvi,1590\nfriends,13,1kinghenryvi,1590\nhence,13,1kinghenryvi,1590\nprotector,13,1kinghenryvi,1590\nstay,13,1kinghenryvi,1590\nenter,13,1kinghenryvi,1590\ngo,13,1kinghenryvi,1590\nmade,13,1kinghenryvi,1590\ninto,13,1kinghenryvi,1590\nere,13,1kinghenryvi,1590\nover,13,1kinghenryvi,1590\nMORTIMER,13,1kinghenryvi,1590\nBefore,13,1kinghenryvi,1590\ntwo,13,1kinghenryvi,1590\nMargaret,14,1kinghenryvi,1590\n',14,1kinghenryvi,1590\nHenry's,14,1kinghenryvi,1590\nAy,14,1kinghenryvi,1590\nlong,14,1kinghenryvi,1590\nrealm,14,1kinghenryvi,1590\nkeep,14,1kinghenryvi,1590\nnor,14,1kinghenryvi,1590\ncould,14,1kinghenryvi,1590\nthink,14,1kinghenryvi,1590\nAUVERGNE,14,1kinghenryvi,1590\ntime,14,1kinghenryvi,1590\nwhom,14,1kinghenryvi,1590\nlate,14,1kinghenryvi,1590\nother,14,1kinghenryvi,1590\nCOUNTESS,15,1kinghenryvi,1590\nsoul,15,1kinghenryvi,1590\nboth,15,1kinghenryvi,1590\ntherefore,15,1kinghenryvi,1590\nBe,15,1kinghenryvi,1590\nmost,15,1kinghenryvi,1590\nYour,15,1kinghenryvi,1590\nyoung,15,1kinghenryvi,1590\nne'er,15,1kinghenryvi,1590\nTalbot's,15,1kinghenryvi,1590\nPucelle,15,1kinghenryvi,1590\nSalisbury,15,1kinghenryvi,1590\nJoan,16,1kinghenryvi,1590\nwords,16,1kinghenryvi,1590\nHis,16,1kinghenryvi,1590\nIs,16,1kinghenryvi,1590\nWhich,16,1kinghenryvi,1590\nplace,16,1kinghenryvi,1590\nrose,16,1kinghenryvi,1590\nwalls,16,1kinghenryvi,1590\nEarl,16,1kinghenryvi,1590\ntoo,16,1kinghenryvi,1590\nset,17,1kinghenryvi,1590\nson,17,1kinghenryvi,1590\ndead,17,1kinghenryvi,1590\nknow,17,1kinghenryvi,1590\nhand,17,1kinghenryvi,1590\nnone,17,1kinghenryvi,1590\nRichard,17,1kinghenryvi,1590\nbloody,17,1kinghenryvi,1590\nonce,17,1kinghenryvi,1590\nShall,17,1kinghenryvi,1590\nWinchester,17,1kinghenryvi,1590\nServing,17,1kinghenryvi,1590\nleave,17,1kinghenryvi,1590\nJOHN,17,1kinghenryvi,1590\nBurgundy,18,1kinghenryvi,1590\naway,18,1kinghenryvi,1590\nsword,18,1kinghenryvi,1590\nrest,18,1kinghenryvi,1590\nside,18,1kinghenryvi,1590\nVERNON,18,1kinghenryvi,1590\ncan,18,1kinghenryvi,1590\nup,18,1kinghenryvi,1590\nThey,18,1kinghenryvi,1590\nuncle,18,1kinghenryvi,1590\nfirst,18,1kinghenryvi,1590\ndie,18,1kinghenryvi,1590\nGloucester,19,1kinghenryvi,1590\nWith,19,1kinghenryvi,1590\nfear,19,1kinghenryvi,1590\nname,19,1kinghenryvi,1590\nLUCY,19,1kinghenryvi,1590\nGod,19,1kinghenryvi,1590\nYou,19,1kinghenryvi,1590\nan,19,1kinghenryvi,1590\nLet,19,1kinghenryvi,1590\nEngland,19,1kinghenryvi,1590\nthus,19,1kinghenryvi,1590\nsome,20,1kinghenryvi,1590\nhonour,20,1kinghenryvi,1590\nWe,20,1kinghenryvi,1590\nFirst,20,1kinghenryvi,1590\nwhere,20,1kinghenryvi,1590\nmine,20,1kinghenryvi,1590\nWhen,20,1kinghenryvi,1590\nmust,21,1kinghenryvi,1590\nNo,21,1kinghenryvi,1590\nHe,21,1kinghenryvi,1590\nIt,21,1kinghenryvi,1590\nany,21,1kinghenryvi,1590\nagain,21,1kinghenryvi,1590\nMessenger,21,1kinghenryvi,1590\nnever,22,1kinghenryvi,1590\nOf,22,1kinghenryvi,1590\ngrace,22,1kinghenryvi,1590\nday,22,1kinghenryvi,1590\nEXETER,22,1kinghenryvi,1590\nORLEANS,23,1kinghenryvi,1590\nBASTARD,23,1kinghenryvi,1590\nBy,23,1kinghenryvi,1590\nDauphin,23,1kinghenryvi,1590\ngood,23,1kinghenryvi,1590\nbeen,23,1kinghenryvi,1590\nhow,23,1kinghenryvi,1590\nye,23,1kinghenryvi,1590\nSomerset,23,1kinghenryvi,1590\nsay,24,1kinghenryvi,1590\nsee,24,1kinghenryvi,1590\nCharles,24,1kinghenryvi,1590\nlove,24,1kinghenryvi,1590\nHow,24,1kinghenryvi,1590\nKing,24,1kinghenryvi,1590\nThou,24,1kinghenryvi,1590\narms,24,1kinghenryvi,1590\nfather,24,1kinghenryvi,1590\nOrleans,25,1kinghenryvi,1590\nnoble,25,1kinghenryvi,1590\nheart,25,1kinghenryvi,1590\nwell,25,1kinghenryvi,1590\ngreat,25,1kinghenryvi,1590\ntake,25,1kinghenryvi,1590\nMARGARET,25,1kinghenryvi,1590\na,281,1kinghenryvi,1590\nwhich,26,1kinghenryvi,1590\nlife,26,1kinghenryvi,1590\nart,26,1kinghenryvi,1590\nfly,26,1kinghenryvi,1590\nBURGUNDY,26,1kinghenryvi,1590\nwhen,26,1kinghenryvi,1590\nBEDFORD,27,1kinghenryvi,1590\nfight,27,1kinghenryvi,1590\nhad,27,1kinghenryvi,1590\nyet,27,1kinghenryvi,1590\nACT,27,1kinghenryvi,1590\nthere,28,1kinghenryvi,1590\ngive,28,1kinghenryvi,1590\nThen,28,1kinghenryvi,1590\nYork,28,1kinghenryvi,1590\ndid,28,1kinghenryvi,1590\nSCENE,28,1kinghenryvi,1590\npeace,29,1kinghenryvi,1590\nupon,29,1kinghenryvi,1590\nHere,29,1kinghenryvi,1590\nThis,29,1kinghenryvi,1590\nEnglish,29,1kinghenryvi,1590\nDuke,30,1kinghenryvi,1590\nblood,30,1kinghenryvi,1590\nSo,30,1kinghenryvi,1590\nmake,30,1kinghenryvi,1590\none,30,1kinghenryvi,1590\nlet,30,1kinghenryvi,1590\nmen,30,1kinghenryvi,1590\nALENCON,31,1kinghenryvi,1590\nthan,31,1kinghenryvi,1590\nFrench,31,1kinghenryvi,1590\nunto,31,1kinghenryvi,1590\nExit,31,1kinghenryvi,1590\nsuch,32,1kinghenryvi,1590\nRICHARD,32,1kinghenryvi,1590\nOr,32,1kinghenryvi,1590\nBISHOP,32,1kinghenryvi,1590\ncome,32,1kinghenryvi,1590\nPLANTAGENET,32,1kinghenryvi,1590\nWhat,32,1kinghenryvi,1590\nmy,288,1kinghenryvi,1590\nAs,33,1kinghenryvi,1590\ndoth,33,1kinghenryvi,1590\nWARWICK,33,1kinghenryvi,1590\nAnd,289,1kinghenryvi,1590\nNow,34,1kinghenryvi,1590\nshe,34,1kinghenryvi,1590\nIn,34,1kinghenryvi,1590\nmore,34,1kinghenryvi,1590\nSOMERSET,34,1kinghenryvi,1590\nman,34,1kinghenryvi,1590\nthese,35,1kinghenryvi,1590\nwere,35,1kinghenryvi,1590\nExeunt,36,1kinghenryvi,1590\nshould,36,1kinghenryvi,1590\nREIGNIER,36,1kinghenryvi,1590\nMy,37,1kinghenryvi,1590\nHenry,37,1kinghenryvi,1590\nWINCHESTER,38,1kinghenryvi,1590\nYORK,38,1kinghenryvi,1590\nlords,38,1kinghenryvi,1590\nO,39,1kinghenryvi,1590\nwould,39,1kinghenryvi,1590\nIf,40,1kinghenryvi,1590\nnow,40,1kinghenryvi,1590\nout,40,1kinghenryvi,1590\nthen,41,1kinghenryvi,1590\nhath,41,1kinghenryvi,1590\nLord,41,1kinghenryvi,1590\nof,554,1kinghenryvi,1590\nA,44,1kinghenryvi,1590\ndeath,44,1kinghenryvi,1590\nhere,45,1kinghenryvi,1590\nthem,45,1kinghenryvi,1590\nlike,47,1kinghenryvi,1590\nmay,47,1kinghenryvi,1590\nus,48,1kinghenryvi,1590\nking,48,1kinghenryvi,1590\nFor,49,1kinghenryvi,1590\nif,49,1kinghenryvi,1590\nSUFFOLK,49,1kinghenryvi,1590\nam,51,1kinghenryvi,1590\nthey,53,1kinghenryvi,1590\nCHARLES,53,1kinghenryvi,1590\nwas,55,1kinghenryvi,1590\ndo,56,1kinghenryvi,1590\nor,57,1kinghenryvi,1590\nI'll,58,1kinghenryvi,1590\nGLOUCESTER,60,1kinghenryvi,1590\nwhat,61,1kinghenryvi,1590\nat,62,1kinghenryvi,1590\nPUCELLE,64,1kinghenryvi,1590\nLA,64,1kinghenryvi,1590\nlord,64,1kinghenryvi,1590\nJOAN,64,1kinghenryvi,1590\nKING,65,1kinghenryvi,1590\nVI,65,1kinghenryvi,1590\ntheir,65,1kinghenryvi,1590\nHENRY,66,1kinghenryvi,1590\nare,69,1kinghenryvi,1590\nFrance,70,1kinghenryvi,1590\nEnter,70,1kinghenryvi,1590\nno,71,1kinghenryvi,1590\nBut,71,1kinghenryvi,1590\nher,72,1kinghenryvi,1590\nby,73,1kinghenryvi,1590\nfrom,74,1kinghenryvi,1590\nTalbot,75,1kinghenryvi,1590\nall,76,1kinghenryvi,1590\non,76,1kinghenryvi,1590\nshall,78,1kinghenryvi,1590\nhim,81,1kinghenryvi,1590\nThat,81,1kinghenryvi,1590\nas,82,1kinghenryvi,1590\nOF,83,1kinghenryvi,1590\nTo,86,1kinghenryvi,1590\nbut,86,1kinghenryvi,1590\nour,87,1kinghenryvi,1590\nhe,90,1kinghenryvi,1590\nTALBOT,92,1kinghenryvi,1590\nit,93,1kinghenryvi,1590\nThe,93,1kinghenryvi,1590\nwe,95,1kinghenryvi,1590\nso,97,1kinghenryvi,1590\nthee,101,1kinghenryvi,1590\nhave,115,1kinghenryvi,1590\nthe,634,1kinghenryvi,1590\nfor,134,1kinghenryvi,1590\nyour,138,1kinghenryvi,1590\nwill,140,1kinghenryvi,1590\nme,145,1kinghenryvi,1590\nto,402,1kinghenryvi,1590\nthou,150,1kinghenryvi,1590\nthy,157,1kinghenryvi,1590\nthis,158,1kinghenryvi,1590\nyou,162,1kinghenryvi,1590\nnot,170,1kinghenryvi,1590\nthat,173,1kinghenryvi,1590\nI,435,1kinghenryvi,1590\nis,189,1kinghenryvi,1590\nhis,190,1kinghenryvi,1590\nand,459,1kinghenryvi,1590\nbe,217,1kinghenryvi,1590\nwith,225,1kinghenryvi,1590\nChanges,1,2kinghenryiv,1598\ncheque'd,1,2kinghenryiv,1598\nslops,1,2kinghenryiv,1598\nsilken,1,2kinghenryiv,1598\nanswered,1,2kinghenryiv,1598\nsurmise,1,2kinghenryiv,1598\nreligion,1,2kinghenryiv,1598\nadvanced,1,2kinghenryiv,1598\ngeneration,1,2kinghenryiv,1598\nbrawl,1,2kinghenryiv,1598\ntroubled,1,2kinghenryiv,1598\nregard,1,2kinghenryiv,1598\nbrawn,1,2kinghenryiv,1598\ngalled,1,2kinghenryiv,1598\nwashing,1,2kinghenryiv,1598\nvillany,1,2kinghenryiv,1598\nunwelcome,1,2kinghenryiv,1598\nsomebody,1,2kinghenryiv,1598\nviewing,1,2kinghenryiv,1598\nforbid,1,2kinghenryiv,1598\nLumbert,1,2kinghenryiv,1598\ninstruments,1,2kinghenryiv,1598\n'larum,1,2kinghenryiv,1598\ntomb,1,2kinghenryiv,1598\ndeafness,1,2kinghenryiv,1598\nindited,1,2kinghenryiv,1598\njohn,1,2kinghenryiv,1598\n'lusty,1,2kinghenryiv,1598\ngauntlet,1,2kinghenryiv,1598\nimaginary,1,2kinghenryiv,1598\nneighing,1,2kinghenryiv,1598\nwitness'd,1,2kinghenryiv,1598\ngrew,1,2kinghenryiv,1598\nChamber,1,2kinghenryiv,1598\nsmiled,1,2kinghenryiv,1598\ngrey,1,2kinghenryiv,1598\ndiscolours,1,2kinghenryiv,1598\npity,1,2kinghenryiv,1598\nabrawl,1,2kinghenryiv,1598\naddress'd,1,2kinghenryiv,1598\nports,1,2kinghenryiv,1598\ndispraised,1,2kinghenryiv,1598\nhangings,1,2kinghenryiv,1598\nJaphet,1,2kinghenryiv,1598\nLaying,1,2kinghenryiv,1598\nTells,1,2kinghenryiv,1598\nconsumption,1,2kinghenryiv,1598\ninfant,1,2kinghenryiv,1598\ninfected,1,2kinghenryiv,1598\necho,1,2kinghenryiv,1598\ndines,1,2kinghenryiv,1598\nconfirmities,1,2kinghenryiv,1598\ndarest,1,2kinghenryiv,1598\nmalmsey,1,2kinghenryiv,1598\nreputation,1,2kinghenryiv,1598\ncomposition,1,2kinghenryiv,1598\npins',1,2kinghenryiv,1598\nguilt,1,2kinghenryiv,1598\n'What's,1,2kinghenryiv,1598\ncrook'd,1,2kinghenryiv,1598\nreckonings,1,2kinghenryiv,1598\nyielding,1,2kinghenryiv,1598\nbelongs,1,2kinghenryiv,1598\nleisure,1,2kinghenryiv,1598\nchurlish,1,2kinghenryiv,1598\nComfort,1,2kinghenryiv,1598\ninfamy,1,2kinghenryiv,1598\nRomans,1,2kinghenryiv,1598\ntruer,1,2kinghenryiv,1598\ndream'd,1,2kinghenryiv,1598\nfewer,1,2kinghenryiv,1598\nbarber,1,2kinghenryiv,1598\ngroin,1,2kinghenryiv,1598\n'There's,1,2kinghenryiv,1598\ncommotion's,1,2kinghenryiv,1598\ncomplaints,1,2kinghenryiv,1598\ndiscord,1,2kinghenryiv,1598\npossible,1,2kinghenryiv,1598\nfollowing,1,2kinghenryiv,1598\nlament,1,2kinghenryiv,1598\nVice's,1,2kinghenryiv,1598\nwhiteness,1,2kinghenryiv,1598\nneighbours,1,2kinghenryiv,1598\nNew,1,2kinghenryiv,1598\npeach,1,2kinghenryiv,1598\nconfront,1,2kinghenryiv,1598\nperuse,1,2kinghenryiv,1598\nentire,1,2kinghenryiv,1598\nadvantage,1,2kinghenryiv,1598\nfemale,1,2kinghenryiv,1598\nbrows,1,2kinghenryiv,1598\nvillain's,1,2kinghenryiv,1598\nalack,1,2kinghenryiv,1598\nWhether,1,2kinghenryiv,1598\nlower,1,2kinghenryiv,1598\ndagger,1,2kinghenryiv,1598\nbaffled,1,2kinghenryiv,1598\naddict,1,2kinghenryiv,1598\ndint,1,2kinghenryiv,1598\nsterling,1,2kinghenryiv,1598\nelement,1,2kinghenryiv,1598\ncavaleros,1,2kinghenryiv,1598\nsearching,1,2kinghenryiv,1598\nleavest,1,2kinghenryiv,1598\nshoulders,1,2kinghenryiv,1598\nrob,1,2kinghenryiv,1598\nhemp,1,2kinghenryiv,1598\nsuppose,1,2kinghenryiv,1598\noffender,1,2kinghenryiv,1598\nbranch,1,2kinghenryiv,1598\nstopp'd,1,2kinghenryiv,1598\napprehended,1,2kinghenryiv,1598\nroam,1,2kinghenryiv,1598\n'receive,1,2kinghenryiv,1598\nmuse,1,2kinghenryiv,1598\nassistance,1,2kinghenryiv,1598\neasily,1,2kinghenryiv,1598\nirrecoverable,1,2kinghenryiv,1598\nhush'd,1,2kinghenryiv,1598\nbucklers,1,2kinghenryiv,1598\nroba,1,2kinghenryiv,1598\nBartholomew,1,2kinghenryiv,1598\ndoted,1,2kinghenryiv,1598\nspeedy,1,2kinghenryiv,1598\nheld,1,2kinghenryiv,1598\nmure,1,2kinghenryiv,1598\nhell,1,2kinghenryiv,1598\nhelps,1,2kinghenryiv,1598\nStay,1,2kinghenryiv,1598\nwhale,1,2kinghenryiv,1598\nwarning,1,2kinghenryiv,1598\nswiftly,1,2kinghenryiv,1598\nsingle,1,2kinghenryiv,1598\nduteous,1,2kinghenryiv,1598\nmess,1,2kinghenryiv,1598\nsisters,1,2kinghenryiv,1598\nwrites,1,2kinghenryiv,1598\ndarkness,1,2kinghenryiv,1598\n'some,1,2kinghenryiv,1598\npainted,1,2kinghenryiv,1598\nvail,1,2kinghenryiv,1598\nBecame,1,2kinghenryiv,1598\ntrunk,1,2kinghenryiv,1598\nimitate,1,2kinghenryiv,1598\ngroat,1,2kinghenryiv,1598\nherd,1,2kinghenryiv,1598\nlodging,1,2kinghenryiv,1598\nEither,1,2kinghenryiv,1598\nrepents,1,2kinghenryiv,1598\nCried,1,2kinghenryiv,1598\nassemblance,1,2kinghenryiv,1598\nblossom,1,2kinghenryiv,1598\nPaul's,1,2kinghenryiv,1598\ngorgeous,1,2kinghenryiv,1598\nerrand,1,2kinghenryiv,1598\ndrum,1,2kinghenryiv,1598\nhens,1,2kinghenryiv,1598\nNevil,1,2kinghenryiv,1598\nfamiliarly,1,2kinghenryiv,1598\nBeshrew,1,2kinghenryiv,1598\nhearted,1,2kinghenryiv,1598\nbrood,1,2kinghenryiv,1598\nrods,1,2kinghenryiv,1598\ngettest,1,2kinghenryiv,1598\nrib,1,2kinghenryiv,1598\ndemeanor,1,2kinghenryiv,1598\ncommodity,1,2kinghenryiv,1598\nrid,1,2kinghenryiv,1598\nlooked,1,2kinghenryiv,1598\nadvance,1,2kinghenryiv,1598\nTewksbury,1,2kinghenryiv,1598\nWoncot,1,2kinghenryiv,1598\nflow,1,2kinghenryiv,1598\nits,1,2kinghenryiv,1598\nshelter,1,2kinghenryiv,1598\nvaluation,1,2kinghenryiv,1598\nThursday,1,2kinghenryiv,1598\nbring'st,1,2kinghenryiv,1598\nappeal,1,2kinghenryiv,1598\nEre,1,2kinghenryiv,1598\nunderneath,1,2kinghenryiv,1598\nSisters,1,2kinghenryiv,1598\ninnocency,1,2kinghenryiv,1598\ncalls,1,2kinghenryiv,1598\nNut,1,2kinghenryiv,1598\nthou'lt,1,2kinghenryiv,1598\njades,1,2kinghenryiv,1598\ncommence,1,2kinghenryiv,1598\nterrible,1,2kinghenryiv,1598\ninnocence,1,2kinghenryiv,1598\ncheap,1,2kinghenryiv,1598\nSnatching,1,2kinghenryiv,1598\nmete,1,2kinghenryiv,1598\nRotten,1,2kinghenryiv,1598\nheifers,1,2kinghenryiv,1598\nodds,1,2kinghenryiv,1598\nabsolute,1,2kinghenryiv,1598\nsore,1,2kinghenryiv,1598\nancestors,1,2kinghenryiv,1598\npippin,1,2kinghenryiv,1598\nPeesel,1,2kinghenryiv,1598\ndismissed,1,2kinghenryiv,1598\nstools,1,2kinghenryiv,1598\npinch,1,2kinghenryiv,1598\ncontrary,1,2kinghenryiv,1598\nstews,1,2kinghenryiv,1598\nFuries',1,2kinghenryiv,1598\nlied,1,2kinghenryiv,1598\napter,1,2kinghenryiv,1598\ninvested,1,2kinghenryiv,1598\n'rah,1,2kinghenryiv,1598\nrated,1,2kinghenryiv,1598\ncloyed,1,2kinghenryiv,1598\nwounded,1,2kinghenryiv,1598\nRendering,1,2kinghenryiv,1598\nkirtles,1,2kinghenryiv,1598\ncheeks,1,2kinghenryiv,1598\nshoved,1,2kinghenryiv,1598\nunwilling,1,2kinghenryiv,1598\nchequed,1,2kinghenryiv,1598\nPERSONAE,1,2kinghenryiv,1598\ninfinitive,1,2kinghenryiv,1598\ngreyhound,1,2kinghenryiv,1598\nboy's,1,2kinghenryiv,1598\ngraffing,1,2kinghenryiv,1598\ndemand,1,2kinghenryiv,1598\ncool'd,1,2kinghenryiv,1598\nRevives,1,2kinghenryiv,1598\ncrutch,1,2kinghenryiv,1598\nloathsome,1,2kinghenryiv,1598\nthumb,1,2kinghenryiv,1598\nbattles,1,2kinghenryiv,1598\noldest,1,2kinghenryiv,1598\nenrooted,1,2kinghenryiv,1598\nsoftly,1,2kinghenryiv,1598\nattempt,1,2kinghenryiv,1598\nsong,1,2kinghenryiv,1598\nCarry,1,2kinghenryiv,1598\nargues,1,2kinghenryiv,1598\ncoffers,1,2kinghenryiv,1598\nRevel,1,2kinghenryiv,1598\ngarment,1,2kinghenryiv,1598\nmistook,1,2kinghenryiv,1598\nindirect,1,2kinghenryiv,1598\nbreach,1,2kinghenryiv,1598\npursue,1,2kinghenryiv,1598\ncraft's,1,2kinghenryiv,1598\nperformance,1,2kinghenryiv,1598\nScots,1,2kinghenryiv,1598\nsanctified,1,2kinghenryiv,1598\nadvantages,1,2kinghenryiv,1598\npassions,1,2kinghenryiv,1598\ncounter,1,2kinghenryiv,1598\nreign,1,2kinghenryiv,1598\ntorrent,1,2kinghenryiv,1598\nseven,1,2kinghenryiv,1598\ngraced,1,2kinghenryiv,1598\nhonester,1,2kinghenryiv,1598\nsurfeit,1,2kinghenryiv,1598\ndivination,1,2kinghenryiv,1598\nsterile,1,2kinghenryiv,1598\nspied,1,2kinghenryiv,1598\nCalipolis,1,2kinghenryiv,1598\nconscience,1,2kinghenryiv,1598\nfeather,1,2kinghenryiv,1598\ncamp,1,2kinghenryiv,1598\nreform,1,2kinghenryiv,1598\nsadly,1,2kinghenryiv,1598\nguards,1,2kinghenryiv,1598\nfriend's,1,2kinghenryiv,1598\nAsia,1,2kinghenryiv,1598\nfavourite,1,2kinghenryiv,1598\nsold,1,2kinghenryiv,1598\nbeefs,1,2kinghenryiv,1598\nthousands,1,2kinghenryiv,1598\nmatters,1,2kinghenryiv,1598\nbefits,1,2kinghenryiv,1598\nsat,1,2kinghenryiv,1598\ntoss,1,2kinghenryiv,1598\nlink,1,2kinghenryiv,1598\natomy,1,2kinghenryiv,1598\nJove,1,2kinghenryiv,1598\nClement,1,2kinghenryiv,1598\nSamingo,1,2kinghenryiv,1598\ndemure,1,2kinghenryiv,1598\nsorrows,1,2kinghenryiv,1598\nopposed,1,2kinghenryiv,1598\nCaesar's,1,2kinghenryiv,1598\nresolve,1,2kinghenryiv,1598\ncorner,1,2kinghenryiv,1598\ndram,1,2kinghenryiv,1598\nsackcloth,1,2kinghenryiv,1598\nassemble,1,2kinghenryiv,1598\nPerforce,1,2kinghenryiv,1598\nboldness,1,2kinghenryiv,1598\nbeacon,1,2kinghenryiv,1598\nConsent,1,2kinghenryiv,1598\nproceeds,1,2kinghenryiv,1598\nintelligencer,1,2kinghenryiv,1598\novercome,1,2kinghenryiv,1598\nforehand,1,2kinghenryiv,1598\nroar'd,1,2kinghenryiv,1598\ndrew,1,2kinghenryiv,1598\nenemy's,1,2kinghenryiv,1598\ntremblest,1,2kinghenryiv,1598\nsorrier,1,2kinghenryiv,1598\noffenders,1,2kinghenryiv,1598\nsperato,1,2kinghenryiv,1598\npewterer's,1,2kinghenryiv,1598\nlift,1,2kinghenryiv,1598\npolicy,1,2kinghenryiv,1598\nScot,1,2kinghenryiv,1598\nmadness,1,2kinghenryiv,1598\nugliest,1,2kinghenryiv,1598\ncharacters,1,2kinghenryiv,1598\nknaves,1,2kinghenryiv,1598\ndemands,1,2kinghenryiv,1598\nAlthaea's,1,2kinghenryiv,1598\nbreaks,1,2kinghenryiv,1598\nTurk's,1,2kinghenryiv,1598\npipe,1,2kinghenryiv,1598\nYield,1,2kinghenryiv,1598\nrides,1,2kinghenryiv,1598\nWorcester,1,2kinghenryiv,1598\nprentice,1,2kinghenryiv,1598\ncounterfeited,1,2kinghenryiv,1598\nvisaged,1,2kinghenryiv,1598\nhealed,1,2kinghenryiv,1598\ncongealed,1,2kinghenryiv,1598\nbeseek,1,2kinghenryiv,1598\nEncircled,1,2kinghenryiv,1598\nchains,1,2kinghenryiv,1598\ncomplexion,1,2kinghenryiv,1598\nfaiths,1,2kinghenryiv,1598\nteach,1,2kinghenryiv,1598\nveins,1,2kinghenryiv,1598\ntoys,1,2kinghenryiv,1598\nFleet,1,2kinghenryiv,1598\nunsheath'd,1,2kinghenryiv,1598\ngooseberry,1,2kinghenryiv,1598\nHereof,1,2kinghenryiv,1598\nslippery,1,2kinghenryiv,1598\ndefiance,1,2kinghenryiv,1598\nsups,1,2kinghenryiv,1598\ngeneral's,1,2kinghenryiv,1598\nvisitation,1,2kinghenryiv,1598\ncankers,1,2kinghenryiv,1598\nPistol's,1,2kinghenryiv,1598\nAssyrian,1,2kinghenryiv,1598\nSupposed,1,2kinghenryiv,1598\ngroats,1,2kinghenryiv,1598\nbeachy,1,2kinghenryiv,1598\ntowns,1,2kinghenryiv,1598\nsinful,1,2kinghenryiv,1598\ndeserve,1,2kinghenryiv,1598\nshe's,1,2kinghenryiv,1598\n'occupy,1,2kinghenryiv,1598\nocean,1,2kinghenryiv,1598\nwags,1,2kinghenryiv,1598\nhandling,1,2kinghenryiv,1598\nhereafter,1,2kinghenryiv,1598\nweaker,1,2kinghenryiv,1598\nracket,1,2kinghenryiv,1598\njumps,1,2kinghenryiv,1598\nsung,1,2kinghenryiv,1598\nincredulous,1,2kinghenryiv,1598\nyards,1,2kinghenryiv,1598\nwilderness,1,2kinghenryiv,1598\nconceive,1,2kinghenryiv,1598\nreturned,1,2kinghenryiv,1598\n'obsque,1,2kinghenryiv,1598\nbrisk,1,2kinghenryiv,1598\nken,1,2kinghenryiv,1598\nBeyond,1,2kinghenryiv,1598\ntapster,1,2kinghenryiv,1598\ndeceased,1,2kinghenryiv,1598\nbetted,1,2kinghenryiv,1598\nChoked,1,2kinghenryiv,1598\nCophetua,1,2kinghenryiv,1598\nCrowd,1,2kinghenryiv,1598\nsubdued,1,2kinghenryiv,1598\nourself,1,2kinghenryiv,1598\nbastard,1,2kinghenryiv,1598\ntooth,1,2kinghenryiv,1598\nsprout,1,2kinghenryiv,1598\nwalk,1,2kinghenryiv,1598\nsaying,1,2kinghenryiv,1598\nPickbone,1,2kinghenryiv,1598\nwhipping,1,2kinghenryiv,1598\nthrongs,1,2kinghenryiv,1598\ncheating,1,2kinghenryiv,1598\nbleedeth,1,2kinghenryiv,1598\nchronicles,1,2kinghenryiv,1598\n'When,1,2kinghenryiv,1598\nFifth's,1,2kinghenryiv,1598\nsociety,1,2kinghenryiv,1598\nunsure,1,2kinghenryiv,1598\nscoured,1,2kinghenryiv,1598\nthrong,1,2kinghenryiv,1598\nthrone,1,2kinghenryiv,1598\nanew,1,2kinghenryiv,1598\nStaffordshire,1,2kinghenryiv,1598\ndrollery,1,2kinghenryiv,1598\ngeese,1,2kinghenryiv,1598\ndisposed,1,2kinghenryiv,1598\nfrosts,1,2kinghenryiv,1598\npardons,1,2kinghenryiv,1598\nconcern,1,2kinghenryiv,1598\nretinue,1,2kinghenryiv,1598\nembrace,1,2kinghenryiv,1598\ncradle,1,2kinghenryiv,1598\nSeem'd,1,2kinghenryiv,1598\nStuffing,1,2kinghenryiv,1598\nhang'st,1,2kinghenryiv,1598\nengraffed,1,2kinghenryiv,1598\nmurdered,1,2kinghenryiv,1598\nCharge,1,2kinghenryiv,1598\nwassail,1,2kinghenryiv,1598\nskill,1,2kinghenryiv,1598\nwinds,1,2kinghenryiv,1598\nfashions,1,2kinghenryiv,1598\nhammer,1,2kinghenryiv,1598\nfollowed,1,2kinghenryiv,1598\nchipp'd,1,2kinghenryiv,1598\n'O,1,2kinghenryiv,1598\ndignities,1,2kinghenryiv,1598\nhotter,1,2kinghenryiv,1598\nstern,1,2kinghenryiv,1598\nlivers,1,2kinghenryiv,1598\nsucceeds,1,2kinghenryiv,1598\nsurmises,1,2kinghenryiv,1598\nadmittance,1,2kinghenryiv,1598\nkindly,1,2kinghenryiv,1598\nbow'd,1,2kinghenryiv,1598\nslighted,1,2kinghenryiv,1598\nattached,1,2kinghenryiv,1598\nWait,1,2kinghenryiv,1598\nbashful,1,2kinghenryiv,1598\nstudy,1,2kinghenryiv,1598\nwages,1,2kinghenryiv,1598\ncommends,1,2kinghenryiv,1598\nsky,1,2kinghenryiv,1598\nparish,1,2kinghenryiv,1598\nMusic,1,2kinghenryiv,1598\nfaults,1,2kinghenryiv,1598\ncompetence,1,2kinghenryiv,1598\npolish'd,1,2kinghenryiv,1598\nAdded,1,2kinghenryiv,1598\nOther,1,2kinghenryiv,1598\npieces,1,2kinghenryiv,1598\noffends,1,2kinghenryiv,1598\nlimbed,1,2kinghenryiv,1598\nmother,1,2kinghenryiv,1598\nAttendants,1,2kinghenryiv,1598\nassistances,1,2kinghenryiv,1598\nshallowly,1,2kinghenryiv,1598\nscope,1,2kinghenryiv,1598\nquittance,1,2kinghenryiv,1598\ncheese,1,2kinghenryiv,1598\nDagonet,1,2kinghenryiv,1598\naffect,1,2kinghenryiv,1598\nsmaller,1,2kinghenryiv,1598\nsends,1,2kinghenryiv,1598\namiss,1,2kinghenryiv,1598\nappear'd,1,2kinghenryiv,1598\nconsiderations,1,2kinghenryiv,1598\nNorfolk,1,2kinghenryiv,1598\nseats,1,2kinghenryiv,1598\nstuck,1,2kinghenryiv,1598\nobduracy,1,2kinghenryiv,1598\nmerit,1,2kinghenryiv,1598\naccursed,1,2kinghenryiv,1598\nBench,1,2kinghenryiv,1598\nheavens,1,2kinghenryiv,1598\nguide,1,2kinghenryiv,1598\nwear'st,1,2kinghenryiv,1598\nredeem,1,2kinghenryiv,1598\nbeseeming,1,2kinghenryiv,1598\nLearn,1,2kinghenryiv,1598\ncoherence,1,2kinghenryiv,1598\nlingering,1,2kinghenryiv,1598\ndebtors,1,2kinghenryiv,1598\nBesonian,1,2kinghenryiv,1598\nconceit,1,2kinghenryiv,1598\npiece,1,2kinghenryiv,1598\nblooded,1,2kinghenryiv,1598\nmonster,1,2kinghenryiv,1598\nrevived,1,2kinghenryiv,1598\nmarring,1,2kinghenryiv,1598\ncharm'd,1,2kinghenryiv,1598\nstandeth,1,2kinghenryiv,1598\nGrow,1,2kinghenryiv,1598\ntwelve,1,2kinghenryiv,1598\nguarded,1,2kinghenryiv,1598\nswoln,1,2kinghenryiv,1598\ngive's,1,2kinghenryiv,1598\noffensive,1,2kinghenryiv,1598\nsparking,1,2kinghenryiv,1598\nrepentance,1,2kinghenryiv,1598\nWhereof,1,2kinghenryiv,1598\nkinswoman,1,2kinghenryiv,1598\nshilling,1,2kinghenryiv,1598\nseeds,1,2kinghenryiv,1598\nuncounted,1,2kinghenryiv,1598\nabsence,1,2kinghenryiv,1598\nparrot,1,2kinghenryiv,1598\nloiter,1,2kinghenryiv,1598\nCheater,1,2kinghenryiv,1598\npotations,1,2kinghenryiv,1598\nfally,1,2kinghenryiv,1598\nencounter'd,1,2kinghenryiv,1598\nlucky,1,2kinghenryiv,1598\nfalls,1,2kinghenryiv,1598\nactions,1,2kinghenryiv,1598\nencounter,1,2kinghenryiv,1598\nloose,1,2kinghenryiv,1598\nCannibals,1,2kinghenryiv,1598\nunarm'd,1,2kinghenryiv,1598\ncherish,1,2kinghenryiv,1598\neldest,1,2kinghenryiv,1598\ntennis,1,2kinghenryiv,1598\nPardon,1,2kinghenryiv,1598\nswoon,1,2kinghenryiv,1598\ncertainties,1,2kinghenryiv,1598\nworthy,1,2kinghenryiv,1598\nLeave,1,2kinghenryiv,1598\nthence,1,2kinghenryiv,1598\ncapacities,1,2kinghenryiv,1598\nKing's,1,2kinghenryiv,1598\ncries,1,2kinghenryiv,1598\nmanhoods,1,2kinghenryiv,1598\ncoloured,1,2kinghenryiv,1598\noverthrown,1,2kinghenryiv,1598\nmercies,1,2kinghenryiv,1598\ngovern'd,1,2kinghenryiv,1598\nsup,1,2kinghenryiv,1598\nsun,1,2kinghenryiv,1598\nelder,1,2kinghenryiv,1598\nrust,1,2kinghenryiv,1598\npunish,1,2kinghenryiv,1598\nPomfret,1,2kinghenryiv,1598\nrampallion,1,2kinghenryiv,1598\nhumbly,1,2kinghenryiv,1598\nwinded,1,2kinghenryiv,1598\nrecovers,1,2kinghenryiv,1598\nbeaten,1,2kinghenryiv,1598\nwavering,1,2kinghenryiv,1598\ndescend,1,2kinghenryiv,1598\nrelish,1,2kinghenryiv,1598\nsaucy,1,2kinghenryiv,1598\nmasters,1,2kinghenryiv,1598\ncostly,1,2kinghenryiv,1598\nmalice,1,2kinghenryiv,1598\nloathly,1,2kinghenryiv,1598\nquart,1,2kinghenryiv,1598\nlances,1,2kinghenryiv,1598\nsuffering,1,2kinghenryiv,1598\ncorrupt,1,2kinghenryiv,1598\nconceal,1,2kinghenryiv,1598\nwhisper,1,2kinghenryiv,1598\nOld,1,2kinghenryiv,1598\nweather,1,2kinghenryiv,1598\ntortures,1,2kinghenryiv,1598\nSkogan's,1,2kinghenryiv,1598\nspeaking,1,2kinghenryiv,1598\nprevent,1,2kinghenryiv,1598\napplause,1,2kinghenryiv,1598\nadvancements,1,2kinghenryiv,1598\nFly,1,2kinghenryiv,1598\nprunes,1,2kinghenryiv,1598\nHence,1,2kinghenryiv,1598\nStreet,1,2kinghenryiv,1598\nknights,1,2kinghenryiv,1598\ndreamed,1,2kinghenryiv,1598\nnight's,1,2kinghenryiv,1598\nCerberus,1,2kinghenryiv,1598\ntitle,1,2kinghenryiv,1598\nseems,1,2kinghenryiv,1598\nmirth,1,2kinghenryiv,1598\nbastardly,1,2kinghenryiv,1598\nlength,1,2kinghenryiv,1598\nsteal,1,2kinghenryiv,1598\ninflame,1,2kinghenryiv,1598\ndearer,1,2kinghenryiv,1598\naccess,1,2kinghenryiv,1598\nhalloing,1,2kinghenryiv,1598\nsuperfluity,1,2kinghenryiv,1598\nbrand,1,2kinghenryiv,1598\nTroop,1,2kinghenryiv,1598\nroundly,1,2kinghenryiv,1598\n'Northumberland,1,2kinghenryiv,1598\nhated,1,2kinghenryiv,1598\nRetreat,1,2kinghenryiv,1598\ntransformed,1,2kinghenryiv,1598\nrowel,1,2kinghenryiv,1598\nimmaculate,1,2kinghenryiv,1598\nshakest,1,2kinghenryiv,1598\ndirectly,1,2kinghenryiv,1598\nusest,1,2kinghenryiv,1598\ndispleasure,1,2kinghenryiv,1598\nproperty,1,2kinghenryiv,1598\nstrewing,1,2kinghenryiv,1598\ndevil's,1,2kinghenryiv,1598\nwindow,1,2kinghenryiv,1598\nworld's,1,2kinghenryiv,1598\nhatch,1,2kinghenryiv,1598\nmalady,1,2kinghenryiv,1598\nculling,1,2kinghenryiv,1598\ndukedom,1,2kinghenryiv,1598\nwart,1,2kinghenryiv,1598\nhermits',1,2kinghenryiv,1598\nadvancement,1,2kinghenryiv,1598\ndesist,1,2kinghenryiv,1598\nrule,1,2kinghenryiv,1598\nwash,1,2kinghenryiv,1598\nmistake,1,2kinghenryiv,1598\nconsecrate,1,2kinghenryiv,1598\nfamiliarity,1,2kinghenryiv,1598\nnaturally,1,2kinghenryiv,1598\nt'other,1,2kinghenryiv,1598\nrules,1,2kinghenryiv,1598\nruled,1,2kinghenryiv,1598\nBlessed,1,2kinghenryiv,1598\nsuborn'd,1,2kinghenryiv,1598\nnosed,1,2kinghenryiv,1598\nHOSTESS,1,2kinghenryiv,1598\nparts,1,2kinghenryiv,1598\nuprear'd,1,2kinghenryiv,1598\nmallet,1,2kinghenryiv,1598\ncreated,1,2kinghenryiv,1598\nFollow,1,2kinghenryiv,1598\nDraw,1,2kinghenryiv,1598\nsubstantial,1,2kinghenryiv,1598\nliggens,1,2kinghenryiv,1598\nfairest,1,2kinghenryiv,1598\nproject,1,2kinghenryiv,1598\nshorten,1,2kinghenryiv,1598\nunquiet,1,2kinghenryiv,1598\nfoin,1,2kinghenryiv,1598\neach,1,2kinghenryiv,1598\nbitten,1,2kinghenryiv,1598\nsenses,1,2kinghenryiv,1598\nnail,1,2kinghenryiv,1598\nmuzzle,1,2kinghenryiv,1598\nprince's,1,2kinghenryiv,1598\nwarder,1,2kinghenryiv,1598\ngrievous,1,2kinghenryiv,1598\ntumult,1,2kinghenryiv,1598\nmerriment,1,2kinghenryiv,1598\ndishonourable,1,2kinghenryiv,1598\nkeys,1,2kinghenryiv,1598\nemptiness,1,2kinghenryiv,1598\nburning,1,2kinghenryiv,1598\no'erset,1,2kinghenryiv,1598\nmediation,1,2kinghenryiv,1598\nstrongly,1,2kinghenryiv,1598\nprecise,1,2kinghenryiv,1598\ndiscreet,1,2kinghenryiv,1598\nsteward,1,2kinghenryiv,1598\nprecisely,1,2kinghenryiv,1598\nPriam's,1,2kinghenryiv,1598\nousel,1,2kinghenryiv,1598\nbacks,1,2kinghenryiv,1598\nhat,1,2kinghenryiv,1598\nDrew,1,2kinghenryiv,1598\ncommons,1,2kinghenryiv,1598\nPie,1,2kinghenryiv,1598\nthrew'st,1,2kinghenryiv,1598\nvarlets,1,2kinghenryiv,1598\nfoes,1,2kinghenryiv,1598\npotions,1,2kinghenryiv,1598\nStamford,1,2kinghenryiv,1598\ntirrits,1,2kinghenryiv,1598\nBelike,1,2kinghenryiv,1598\nsign,1,2kinghenryiv,1598\nleman,1,2kinghenryiv,1598\ndiscern,1,2kinghenryiv,1598\nJane,1,2kinghenryiv,1598\noffend,1,2kinghenryiv,1598\nHydra,1,2kinghenryiv,1598\ntalks,1,2kinghenryiv,1598\nsigh,1,2kinghenryiv,1598\nSick,1,2kinghenryiv,1598\ntester,1,2kinghenryiv,1598\nAy,1,2kinghenryiv,1598\nperfection,1,2kinghenryiv,1598\nhidest,1,2kinghenryiv,1598\nsurety,1,2kinghenryiv,1598\ntransformation,1,2kinghenryiv,1598\nsneap,1,2kinghenryiv,1598\nhilding,1,2kinghenryiv,1598\nHie,1,2kinghenryiv,1598\ndaunted,1,2kinghenryiv,1598\nLucifer's,1,2kinghenryiv,1598\nbox,1,2kinghenryiv,1598\nbow,1,2kinghenryiv,1598\no'ershine,1,2kinghenryiv,1598\nhurly,1,2kinghenryiv,1598\ngovern,1,2kinghenryiv,1598\nstretching,1,2kinghenryiv,1598\nfortify,1,2kinghenryiv,1598\nHope,1,2kinghenryiv,1598\nsmile,1,2kinghenryiv,1598\nhen,1,2kinghenryiv,1598\nhem,1,2kinghenryiv,1598\nHaving,1,2kinghenryiv,1598\nPlay,1,2kinghenryiv,1598\nmisuses,1,2kinghenryiv,1598\nBy'r,1,2kinghenryiv,1598\noutweighs,1,2kinghenryiv,1598\nO',1,2kinghenryiv,1598\nimagined,1,2kinghenryiv,1598\nsensible,1,2kinghenryiv,1598\ninclined,1,2kinghenryiv,1598\nbar,1,2kinghenryiv,1598\ngratis,1,2kinghenryiv,1598\nflaws,1,2kinghenryiv,1598\nkings,1,2kinghenryiv,1598\ngossip,1,2kinghenryiv,1598\nobstructions,1,2kinghenryiv,1598\ndimensions,1,2kinghenryiv,1598\nlisten,1,2kinghenryiv,1598\nsick'd,1,2kinghenryiv,1598\nSmooth's,1,2kinghenryiv,1598\ncreature,1,2kinghenryiv,1598\nAnswer,1,2kinghenryiv,1598\nbrings,1,2kinghenryiv,1598\ndreaded,1,2kinghenryiv,1598\ntwopences,1,2kinghenryiv,1598\nshines,1,2kinghenryiv,1598\ntranslate,1,2kinghenryiv,1598\nsings,1,2kinghenryiv,1598\nSpaniard,1,2kinghenryiv,1598\nHood,1,2kinghenryiv,1598\nRecruits,1,2kinghenryiv,1598\ninnocent,1,2kinghenryiv,1598\nprophecies,1,2kinghenryiv,1598\nashes,1,2kinghenryiv,1598\ntemperality,1,2kinghenryiv,1598\nhit,1,2kinghenryiv,1598\nhabitation,1,2kinghenryiv,1598\novertook,1,2kinghenryiv,1598\nmeant,1,2kinghenryiv,1598\nsovereignty,1,2kinghenryiv,1598\ncoursers,1,2kinghenryiv,1598\ndame's,1,2kinghenryiv,1598\nrumour'd,1,2kinghenryiv,1598\nFalstaff's,1,2kinghenryiv,1598\nwinnow'd,1,2kinghenryiv,1598\ndullest,1,2kinghenryiv,1598\nweightless,1,2kinghenryiv,1598\ntallow,1,2kinghenryiv,1598\nbigness,1,2kinghenryiv,1598\ncarmen,1,2kinghenryiv,1598\nstrangely,1,2kinghenryiv,1598\nfortune's,1,2kinghenryiv,1598\nsurely,1,2kinghenryiv,1598\ngoods,1,2kinghenryiv,1598\nease,1,2kinghenryiv,1598\nbruises,1,2kinghenryiv,1598\ntribute,1,2kinghenryiv,1598\nKatharine,1,2kinghenryiv,1598\npinches,1,2kinghenryiv,1598\nwither'd,1,2kinghenryiv,1598\ndespair,1,2kinghenryiv,1598\ninvestments,1,2kinghenryiv,1598\npie,1,2kinghenryiv,1598\nnave,1,2kinghenryiv,1598\npig,1,2kinghenryiv,1598\nmeals,1,2kinghenryiv,1598\nprovokest,1,2kinghenryiv,1598\nHas,1,2kinghenryiv,1598\nnavy,1,2kinghenryiv,1598\nproud,1,2kinghenryiv,1598\nearn,1,2kinghenryiv,1598\nvultures,1,2kinghenryiv,1598\noverlive,1,2kinghenryiv,1598\nstep,1,2kinghenryiv,1598\nexterior,1,2kinghenryiv,1598\nUp,1,2kinghenryiv,1598\ncountries,1,2kinghenryiv,1598\nyourselves,1,2kinghenryiv,1598\npot,1,2kinghenryiv,1598\nthighs,1,2kinghenryiv,1598\ndevotion,1,2kinghenryiv,1598\nnobly,1,2kinghenryiv,1598\noutlive,1,2kinghenryiv,1598\nawakes,1,2kinghenryiv,1598\nnihil,1,2kinghenryiv,1598\nobey,1,2kinghenryiv,1598\nbrawling,1,2kinghenryiv,1598\noversights,1,2kinghenryiv,1598\nsirs,1,2kinghenryiv,1598\nEnding,1,2kinghenryiv,1598\nbung,1,2kinghenryiv,1598\nCorporal,1,2kinghenryiv,1598\nMingled,1,2kinghenryiv,1598\ntrimm'd,1,2kinghenryiv,1598\nsought,1,2kinghenryiv,1598\nwhore,1,2kinghenryiv,1598\nCompare,1,2kinghenryiv,1598\nunequal,1,2kinghenryiv,1598\nbroaches,1,2kinghenryiv,1598\nmadmen,1,2kinghenryiv,1598\ndepending,1,2kinghenryiv,1598\nSquele,1,2kinghenryiv,1598\nMurder,1,2kinghenryiv,1598\nweed,1,2kinghenryiv,1598\nthewes,1,2kinghenryiv,1598\ndivide,1,2kinghenryiv,1598\nbulk,1,2kinghenryiv,1598\nweek,1,2kinghenryiv,1598\nproportion,1,2kinghenryiv,1598\nstraw,1,2kinghenryiv,1598\npantier,1,2kinghenryiv,1598\nstray,1,2kinghenryiv,1598\nabides,1,2kinghenryiv,1598\nHeard,1,2kinghenryiv,1598\nmetal,1,2kinghenryiv,1598\nhumane,1,2kinghenryiv,1598\nsooner,1,2kinghenryiv,1598\nragged'st,1,2kinghenryiv,1598\nleather,1,2kinghenryiv,1598\nJove's,1,2kinghenryiv,1598\nfields,1,2kinghenryiv,1598\nimagine,1,2kinghenryiv,1598\ndignify,1,2kinghenryiv,1598\npossibility,1,2kinghenryiv,1598\nsuffer'd,1,2kinghenryiv,1598\nleaders,1,2kinghenryiv,1598\nSits,1,2kinghenryiv,1598\ndifference,1,2kinghenryiv,1598\nbestowed,1,2kinghenryiv,1598\nbelt,1,2kinghenryiv,1598\nunfix,1,2kinghenryiv,1598\nsorts,1,2kinghenryiv,1598\ngot,1,2kinghenryiv,1598\nThou'lt,1,2kinghenryiv,1598\ntruncheon,1,2kinghenryiv,1598\nSi,1,2kinghenryiv,1598\ncrush,1,2kinghenryiv,1598\nOxford,1,2kinghenryiv,1598\nchildren,1,2kinghenryiv,1598\ncorpse,1,2kinghenryiv,1598\nBarren,1,2kinghenryiv,1598\nawaked,1,2kinghenryiv,1598\nfoolishly,1,2kinghenryiv,1598\nhoneysuckle,1,2kinghenryiv,1598\nerection,1,2kinghenryiv,1598\nhomely,1,2kinghenryiv,1598\nattention,1,2kinghenryiv,1598\nsounds,1,2kinghenryiv,1598\natonement,1,2kinghenryiv,1598\ntricks,1,2kinghenryiv,1598\n'tween,1,2kinghenryiv,1598\nmoreover,1,2kinghenryiv,1598\nsorted,1,2kinghenryiv,1598\nparing,1,2kinghenryiv,1598\n'ten,1,2kinghenryiv,1598\nfaitors,1,2kinghenryiv,1598\nGlasses,1,2kinghenryiv,1598\nanything,1,2kinghenryiv,1598\ncouch,1,2kinghenryiv,1598\nlearned,1,2kinghenryiv,1598\nsomewhat,1,2kinghenryiv,1598\nlatest,1,2kinghenryiv,1598\nbent,1,2kinghenryiv,1598\nimperial,1,2kinghenryiv,1598\nBehold,1,2kinghenryiv,1598\nTeacheth,1,2kinghenryiv,1598\nLies,1,2kinghenryiv,1598\nidleness,1,2kinghenryiv,1598\nwelkin,1,2kinghenryiv,1598\nbullocks,1,2kinghenryiv,1598\ngape,1,2kinghenryiv,1598\npiled,1,2kinghenryiv,1598\nbefallen,1,2kinghenryiv,1598\nplough,1,2kinghenryiv,1598\nengrossments,1,2kinghenryiv,1598\nafore,1,2kinghenryiv,1598\nfoulest,1,2kinghenryiv,1598\nDrawing,1,2kinghenryiv,1598\novercame,1,2kinghenryiv,1598\nblock,1,2kinghenryiv,1598\npersistency,1,2kinghenryiv,1598\nbuds,1,2kinghenryiv,1598\ntingling,1,2kinghenryiv,1598\njewel,1,2kinghenryiv,1598\nexion,1,2kinghenryiv,1598\nConjecture,1,2kinghenryiv,1598\nkeep'st,1,2kinghenryiv,1598\nBoot,1,2kinghenryiv,1598\nsilencing,1,2kinghenryiv,1598\ndespise,1,2kinghenryiv,1598\nsurfeiting,1,2kinghenryiv,1598\n'no,1,2kinghenryiv,1598\nextreme,1,2kinghenryiv,1598\nfifth,1,2kinghenryiv,1598\ncalmest,1,2kinghenryiv,1598\ntheme,1,2kinghenryiv,1598\nfriendly,1,2kinghenryiv,1598\nroyally,1,2kinghenryiv,1598\ncurry,1,2kinghenryiv,1598\nSaid,1,2kinghenryiv,1598\nAlecto's,1,2kinghenryiv,1598\nbadge,1,2kinghenryiv,1598\nmisbecame,1,2kinghenryiv,1598\nswift,1,2kinghenryiv,1598\ndiscomfort,1,2kinghenryiv,1598\nworship's,1,2kinghenryiv,1598\nherein,1,2kinghenryiv,1598\namongst,1,2kinghenryiv,1598\nswims,1,2kinghenryiv,1598\nvassal,1,2kinghenryiv,1598\nbees,1,2kinghenryiv,1598\nfustilarian,1,2kinghenryiv,1598\nMeet,1,2kinghenryiv,1598\nAbout,1,2kinghenryiv,1598\nadmired,1,2kinghenryiv,1598\nsins,1,2kinghenryiv,1598\nyear's,1,2kinghenryiv,1598\nenterprise,1,2kinghenryiv,1598\nensue,1,2kinghenryiv,1598\npicture,1,2kinghenryiv,1598\nepilogue,1,2kinghenryiv,1598\nnags,1,2kinghenryiv,1598\nstories,1,2kinghenryiv,1598\nbeds,1,2kinghenryiv,1598\nsmack,1,2kinghenryiv,1598\nsing,1,2kinghenryiv,1598\nrejoice,1,2kinghenryiv,1598\nmoody,1,2kinghenryiv,1598\nColdspur,1,2kinghenryiv,1598\nattain'd,1,2kinghenryiv,1598\ngrandsire,1,2kinghenryiv,1598\nimmortal,1,2kinghenryiv,1598\nheadstrong,1,2kinghenryiv,1598\ndispleasing,1,2kinghenryiv,1598\ncrowned,1,2kinghenryiv,1598\nBoth,1,2kinghenryiv,1598\njealousies,1,2kinghenryiv,1598\nafoot,1,2kinghenryiv,1598\nforemost,1,2kinghenryiv,1598\nanointed,1,2kinghenryiv,1598\nopens,1,2kinghenryiv,1598\nradish,1,2kinghenryiv,1598\nquite,1,2kinghenryiv,1598\npearls,1,2kinghenryiv,1598\nmagnanimous,1,2kinghenryiv,1598\nChide,1,2kinghenryiv,1598\nriver,1,2kinghenryiv,1598\ncanopies,1,2kinghenryiv,1598\nstore,1,2kinghenryiv,1598\nstuffed,1,2kinghenryiv,1598\noverscutched,1,2kinghenryiv,1598\nentertain,1,2kinghenryiv,1598\nghost,1,2kinghenryiv,1598\ndeliverance,1,2kinghenryiv,1598\nlisping,1,2kinghenryiv,1598\npanting,1,2kinghenryiv,1598\nsail,1,2kinghenryiv,1598\ngovernment,1,2kinghenryiv,1598\ninstant,1,2kinghenryiv,1598\nwiped,1,2kinghenryiv,1598\nBoar's,1,2kinghenryiv,1598\nforgive,1,2kinghenryiv,1598\nwretch,1,2kinghenryiv,1598\ntormenta,1,2kinghenryiv,1598\nbreast,1,2kinghenryiv,1598\nblowing,1,2kinghenryiv,1598\ntormente,1,2kinghenryiv,1598\nsnatch'd,1,2kinghenryiv,1598\nNorfolk's,1,2kinghenryiv,1598\ngallows,1,2kinghenryiv,1598\nretail,1,2kinghenryiv,1598\nsage,1,2kinghenryiv,1598\ntyrant,1,2kinghenryiv,1598\nsatisfy,1,2kinghenryiv,1598\nmarched,1,2kinghenryiv,1598\nexercises,1,2kinghenryiv,1598\ninstances,1,2kinghenryiv,1598\nfencing,1,2kinghenryiv,1598\ncarrion,1,2kinghenryiv,1598\ncurrent,1,2kinghenryiv,1598\nlineal,1,2kinghenryiv,1598\nfavour,1,2kinghenryiv,1598\njewels,1,2kinghenryiv,1598\nstood,1,2kinghenryiv,1598\nweekly,1,2kinghenryiv,1598\nRemember'd,1,2kinghenryiv,1598\nArthur's,1,2kinghenryiv,1598\nMaking,1,2kinghenryiv,1598\nDolphin,1,2kinghenryiv,1598\ntaverns,1,2kinghenryiv,1598\nstoop,1,2kinghenryiv,1598\nblubbered,1,2kinghenryiv,1598\nhandsome,1,2kinghenryiv,1598\nweigh'd,1,2kinghenryiv,1598\nPast,1,2kinghenryiv,1598\nquiver,1,2kinghenryiv,1598\nwhereon,1,2kinghenryiv,1598\ndriving,1,2kinghenryiv,1598\nalmanac,1,2kinghenryiv,1598\nstone,1,2kinghenryiv,1598\nlone,1,2kinghenryiv,1598\nstony,1,2kinghenryiv,1598\nprofaned,1,2kinghenryiv,1598\nmartlemas,1,2kinghenryiv,1598\nAccusing,1,2kinghenryiv,1598\nseeing,1,2kinghenryiv,1598\ngild,1,2kinghenryiv,1598\nSpread,1,2kinghenryiv,1598\nvault,1,2kinghenryiv,1598\nlent,1,2kinghenryiv,1598\nnobleman,1,2kinghenryiv,1598\nBesides,1,2kinghenryiv,1598\nlighten,1,2kinghenryiv,1598\nsuggestion,1,2kinghenryiv,1598\ngall,1,2kinghenryiv,1598\nBlown,1,2kinghenryiv,1598\nburier,1,2kinghenryiv,1598\ndestruction,1,2kinghenryiv,1598\npotable,1,2kinghenryiv,1598\nwaist,1,2kinghenryiv,1598\ntempering,1,2kinghenryiv,1598\ntouch'd,1,2kinghenryiv,1598\nhaunch,1,2kinghenryiv,1598\nforged,1,2kinghenryiv,1598\nstockings,1,2kinghenryiv,1598\nmouthed'st,1,2kinghenryiv,1598\ndefence,1,2kinghenryiv,1598\nmidwives,1,2kinghenryiv,1598\ngenerally,1,2kinghenryiv,1598\nrestraint,1,2kinghenryiv,1598\nSounds,1,2kinghenryiv,1598\nmembers,1,2kinghenryiv,1598\nay,1,2kinghenryiv,1598\nLaud,1,2kinghenryiv,1598\ncomforts,1,2kinghenryiv,1598\naptest,1,2kinghenryiv,1598\napes,1,2kinghenryiv,1598\npallets,1,2kinghenryiv,1598\npossess'd,1,2kinghenryiv,1598\nworldlings,1,2kinghenryiv,1598\npregnancy,1,2kinghenryiv,1598\nholland,1,2kinghenryiv,1598\ncruelty,1,2kinghenryiv,1598\ncaper,1,2kinghenryiv,1598\napproach,1,2kinghenryiv,1598\nUnfather'd,1,2kinghenryiv,1598\namend,1,2kinghenryiv,1598\ngrowth,1,2kinghenryiv,1598\nNeptune's,1,2kinghenryiv,1598\nbless'd,1,2kinghenryiv,1598\nconstables,1,2kinghenryiv,1598\nPerkes,1,2kinghenryiv,1598\nrouse,1,2kinghenryiv,1598\ncured,1,2kinghenryiv,1598\ndried,1,2kinghenryiv,1598\nrealm,1,2kinghenryiv,1598\nprosper,1,2kinghenryiv,1598\ncurdy,1,2kinghenryiv,1598\nEarls,1,2kinghenryiv,1598\nunpay,1,2kinghenryiv,1598\nwonderful,1,2kinghenryiv,1598\nabominable,1,2kinghenryiv,1598\nfrights,1,2kinghenryiv,1598\nask'd,1,2kinghenryiv,1598\npursuit,1,2kinghenryiv,1598\ndamn'd,1,2kinghenryiv,1598\ncommitted,1,2kinghenryiv,1598\nYonder,1,2kinghenryiv,1598\nfledged,1,2kinghenryiv,1598\nbodies,1,2kinghenryiv,1598\nwisely,1,2kinghenryiv,1598\nregion,1,2kinghenryiv,1598\nlo,1,2kinghenryiv,1598\nCorporate,1,2kinghenryiv,1598\nstrain,1,2kinghenryiv,1598\nnecessity,1,2kinghenryiv,1598\nphilosopher's,1,2kinghenryiv,1598\nutmost,1,2kinghenryiv,1598\ncrave,1,2kinghenryiv,1598\nroused,1,2kinghenryiv,1598\ngibbets,1,2kinghenryiv,1598\nchipper,1,2kinghenryiv,1598\ngambol,1,2kinghenryiv,1598\nPleaseth,1,2kinghenryiv,1598\nsituation,1,2kinghenryiv,1598\nspero,1,2kinghenryiv,1598\nebon,1,2kinghenryiv,1598\ncollected,1,2kinghenryiv,1598\nrouts,1,2kinghenryiv,1598\ncatastrophe,1,2kinghenryiv,1598\nunfirm,1,2kinghenryiv,1598\n'Where,1,2kinghenryiv,1598\nhoard,1,2kinghenryiv,1598\naccount,1,2kinghenryiv,1598\ninfernal,1,2kinghenryiv,1598\navoirdupois,1,2kinghenryiv,1598\nscholar,1,2kinghenryiv,1598\nCurling,1,2kinghenryiv,1598\nThereafter,1,2kinghenryiv,1598\nmingle,1,2kinghenryiv,1598\nimp,1,2kinghenryiv,1598\nstudies,1,2kinghenryiv,1598\nvictuallers,1,2kinghenryiv,1598\ncarved,1,2kinghenryiv,1598\ntolling,1,2kinghenryiv,1598\ntrain,1,2kinghenryiv,1598\nenmity,1,2kinghenryiv,1598\nstature,1,2kinghenryiv,1598\nenviron,1,2kinghenryiv,1598\noffences,1,2kinghenryiv,1598\nidem,1,2kinghenryiv,1598\nink,1,2kinghenryiv,1598\nwarms,1,2kinghenryiv,1598\nUrsula,1,2kinghenryiv,1598\nstudied,1,2kinghenryiv,1598\nabrooch,1,2kinghenryiv,1598\nsettled,1,2kinghenryiv,1598\noffer'd,1,2kinghenryiv,1598\nthoughtful,1,2kinghenryiv,1598\nlevy,1,2kinghenryiv,1598\nalteration,1,2kinghenryiv,1598\nmoon,1,2kinghenryiv,1598\nlaboured,1,2kinghenryiv,1598\nbeholding,1,2kinghenryiv,1598\nadd,1,2kinghenryiv,1598\nThrust,1,2kinghenryiv,1598\nachieved,1,2kinghenryiv,1598\nresolved,1,2kinghenryiv,1598\nbruited,1,2kinghenryiv,1598\ndragons,1,2kinghenryiv,1598\nample,1,2kinghenryiv,1598\nqueasiness,1,2kinghenryiv,1598\nfrustrate,1,2kinghenryiv,1598\nlest,1,2kinghenryiv,1598\nhogshead,1,2kinghenryiv,1598\nafternoon,1,2kinghenryiv,1598\ndries,1,2kinghenryiv,1598\ndole,1,2kinghenryiv,1598\nall's,1,2kinghenryiv,1598\nclangor,1,2kinghenryiv,1598\naids,1,2kinghenryiv,1598\nblue,1,2kinghenryiv,1598\ncontinent,1,2kinghenryiv,1598\nfeats,1,2kinghenryiv,1598\nnecessary,1,2kinghenryiv,1598\nbench,1,2kinghenryiv,1598\nmischiefs,1,2kinghenryiv,1598\nstrand,1,2kinghenryiv,1598\nnimble,1,2kinghenryiv,1598\ndiscordant,1,2kinghenryiv,1598\nincertain,1,2kinghenryiv,1598\nshow'd,1,2kinghenryiv,1598\npresurmise,1,2kinghenryiv,1598\nknee,1,2kinghenryiv,1598\nFiguring,1,2kinghenryiv,1598\nscatter'd,1,2kinghenryiv,1598\nKiss,1,2kinghenryiv,1598\nupbraided,1,2kinghenryiv,1598\nacquaint,1,2kinghenryiv,1598\ndigression,1,2kinghenryiv,1598\nBecause,1,2kinghenryiv,1598\nprescriptions,1,2kinghenryiv,1598\nTilly,1,2kinghenryiv,1598\nCaesars,1,2kinghenryiv,1598\nhark,1,2kinghenryiv,1598\ngraves,1,2kinghenryiv,1598\naccents,1,2kinghenryiv,1598\nharken,1,2kinghenryiv,1598\nTisick,1,2kinghenryiv,1598\nreasons,1,2kinghenryiv,1598\neats,1,2kinghenryiv,1598\nhoc,1,2kinghenryiv,1598\npersonal,1,2kinghenryiv,1598\nbeavers,1,2kinghenryiv,1598\nsanctities,1,2kinghenryiv,1598\nbodily,1,2kinghenryiv,1598\nability,1,2kinghenryiv,1598\nimprisonment,1,2kinghenryiv,1598\ntripe,1,2kinghenryiv,1598\nreasonable,1,2kinghenryiv,1598\nfrighted,1,2kinghenryiv,1598\nbuildeth,1,2kinghenryiv,1598\nlewd,1,2kinghenryiv,1598\nhall,1,2kinghenryiv,1598\ndecreasing,1,2kinghenryiv,1598\nBishop,1,2kinghenryiv,1598\nunarmed,1,2kinghenryiv,1598\npuffed,1,2kinghenryiv,1598\noutright,1,2kinghenryiv,1598\nlabouring,1,2kinghenryiv,1598\nAchitophel,1,2kinghenryiv,1598\nkingly,1,2kinghenryiv,1598\nForetells,1,2kinghenryiv,1598\nta,1,2kinghenryiv,1598\ncontinents,1,2kinghenryiv,1598\nswarm'd,1,2kinghenryiv,1598\nknit,1,2kinghenryiv,1598\nLack,1,2kinghenryiv,1598\ntext,1,2kinghenryiv,1598\nbloodied,1,2kinghenryiv,1598\npale,1,2kinghenryiv,1598\nsaltness,1,2kinghenryiv,1598\ncoldest,1,2kinghenryiv,1598\nlanthorn,1,2kinghenryiv,1598\nintended,1,2kinghenryiv,1598\npalm,1,2kinghenryiv,1598\nfashion'd,1,2kinghenryiv,1598\nfinish,1,2kinghenryiv,1598\nperform'd,1,2kinghenryiv,1598\nweeds,1,2kinghenryiv,1598\nacknowledge,1,2kinghenryiv,1598\n'Let,1,2kinghenryiv,1598\nunfasten,1,2kinghenryiv,1598\nrepeat,1,2kinghenryiv,1598\nPluck,1,2kinghenryiv,1598\nFull,1,2kinghenryiv,1598\npot's,1,2kinghenryiv,1598\ndraws,1,2kinghenryiv,1598\nthinkest,1,2kinghenryiv,1598\nconfession,1,2kinghenryiv,1598\nladder,1,2kinghenryiv,1598\nsighing,1,2kinghenryiv,1598\nseparate,1,2kinghenryiv,1598\nsincere,1,2kinghenryiv,1598\nShrove,1,2kinghenryiv,1598\nunguided,1,2kinghenryiv,1598\nforty,1,2kinghenryiv,1598\nappliances,1,2kinghenryiv,1598\nlegged,1,2kinghenryiv,1598\nparticulars,1,2kinghenryiv,1598\nwhore's,1,2kinghenryiv,1598\nhalt,1,2kinghenryiv,1598\nmiscarried,1,2kinghenryiv,1598\nCain,1,2kinghenryiv,1598\nperpetual,1,2kinghenryiv,1598\nsuccessively,1,2kinghenryiv,1598\nEmpty,1,2kinghenryiv,1598\ncommendable,1,2kinghenryiv,1598\nconstrain'd,1,2kinghenryiv,1598\nmidnight,1,2kinghenryiv,1598\nweeps,1,2kinghenryiv,1598\njuvenal,1,2kinghenryiv,1598\nPleading,1,2kinghenryiv,1598\ndefensible,1,2kinghenryiv,1598\nimpatient,1,2kinghenryiv,1598\nunpicked,1,2kinghenryiv,1598\nplenteously,1,2kinghenryiv,1598\nask,1,2kinghenryiv,1598\nship,1,2kinghenryiv,1598\nneglect,1,2kinghenryiv,1598\nhangs,1,2kinghenryiv,1598\ndelight,1,2kinghenryiv,1598\nmode,1,2kinghenryiv,1598\nreturn'd,1,2kinghenryiv,1598\nwinter's,1,2kinghenryiv,1598\nspit,1,2kinghenryiv,1598\nextremest,1,2kinghenryiv,1598\nlitter,1,2kinghenryiv,1598\nemptier,1,2kinghenryiv,1598\nCriest,1,2kinghenryiv,1598\nfrown,1,2kinghenryiv,1598\nDispatch,1,2kinghenryiv,1598\nHelen,1,2kinghenryiv,1598\nminute's,1,2kinghenryiv,1598\nBorne,1,2kinghenryiv,1598\nattach,1,2kinghenryiv,1598\nowed,1,2kinghenryiv,1598\nBaying,1,2kinghenryiv,1598\nsanctify,1,2kinghenryiv,1598\ninfer,1,2kinghenryiv,1598\nforlorn,1,2kinghenryiv,1598\npack,1,2kinghenryiv,1598\nworldly,1,2kinghenryiv,1598\nyielder,1,2kinghenryiv,1598\ndreadful,1,2kinghenryiv,1598\nputs,1,2kinghenryiv,1598\nstillest,1,2kinghenryiv,1598\nCast,1,2kinghenryiv,1598\nyielded,1,2kinghenryiv,1598\nbillows,1,2kinghenryiv,1598\nwinking,1,2kinghenryiv,1598\nawe,1,2kinghenryiv,1598\nlull'd,1,2kinghenryiv,1598\nconsideration,1,2kinghenryiv,1598\n'semper,1,2kinghenryiv,1598\nouches,1,2kinghenryiv,1598\nretainers,1,2kinghenryiv,1598\nProper,1,2kinghenryiv,1598\nProface,1,2kinghenryiv,1598\nfood,1,2kinghenryiv,1598\nconversing,1,2kinghenryiv,1598\nprepared,1,2kinghenryiv,1598\nDischarge,1,2kinghenryiv,1598\nfamished,1,2kinghenryiv,1598\nyard,1,2kinghenryiv,1598\ntearing,1,2kinghenryiv,1598\nobject,1,2kinghenryiv,1598\nWeary,1,2kinghenryiv,1598\ngoblet,1,2kinghenryiv,1598\nbeetle,1,2kinghenryiv,1598\npush,1,2kinghenryiv,1598\nAlarum,1,2kinghenryiv,1598\nfond,1,2kinghenryiv,1598\njuggler,1,2kinghenryiv,1598\nfroze,1,2kinghenryiv,1598\nscarcely,1,2kinghenryiv,1598\nforcible,1,2kinghenryiv,1598\nattempts,1,2kinghenryiv,1598\ngird,1,2kinghenryiv,1598\nfancies,1,2kinghenryiv,1598\nbeards,1,2kinghenryiv,1598\nrightly,1,2kinghenryiv,1598\nmayst,1,2kinghenryiv,1598\nfolk,1,2kinghenryiv,1598\nsuspire,1,2kinghenryiv,1598\nfold,1,2kinghenryiv,1598\ntoasts,1,2kinghenryiv,1598\nhumour's,1,2kinghenryiv,1598\nCare,1,2kinghenryiv,1598\nhive,1,2kinghenryiv,1598\nHast,1,2kinghenryiv,1598\nScarlet,1,2kinghenryiv,1598\nchimes,1,2kinghenryiv,1598\njester,1,2kinghenryiv,1598\npenknife,1,2kinghenryiv,1598\nUtis,1,2kinghenryiv,1598\napprehensive,1,2kinghenryiv,1598\nliveries,1,2kinghenryiv,1598\nolive,1,2kinghenryiv,1598\nfurnish,1,2kinghenryiv,1598\nknock,1,2kinghenryiv,1598\nthanks,1,2kinghenryiv,1598\nTavern,1,2kinghenryiv,1598\ntrick,1,2kinghenryiv,1598\nbought,1,2kinghenryiv,1598\nprate,1,2kinghenryiv,1598\nBarson,1,2kinghenryiv,1598\nAmong,1,2kinghenryiv,1598\ntheirs,1,2kinghenryiv,1598\ncomplices,1,2kinghenryiv,1598\npartial,1,2kinghenryiv,1598\nHark,1,2kinghenryiv,1598\npurchased,1,2kinghenryiv,1598\nWheeson,1,2kinghenryiv,1598\nfed,1,2kinghenryiv,1598\nbeggary,1,2kinghenryiv,1598\nActing,1,2kinghenryiv,1598\ntouch,1,2kinghenryiv,1598\nAgain,1,2kinghenryiv,1598\nleer,1,2kinghenryiv,1598\ncheque,1,2kinghenryiv,1598\nbutcher's,1,2kinghenryiv,1598\nfantasy,1,2kinghenryiv,1598\ndaring,1,2kinghenryiv,1598\nPsalmist,1,2kinghenryiv,1598\nfoundation,1,2kinghenryiv,1598\ndisplaced,1,2kinghenryiv,1598\ntragic,1,2kinghenryiv,1598\nStoop,1,2kinghenryiv,1598\nbaboon,1,2kinghenryiv,1598\nhazard,1,2kinghenryiv,1598\nmayest,1,2kinghenryiv,1598\nJesus,1,2kinghenryiv,1598\nlavishly,1,2kinghenryiv,1598\nfeign,1,2kinghenryiv,1598\nguess,1,2kinghenryiv,1598\nbullet,1,2kinghenryiv,1598\nroot,1,2kinghenryiv,1598\nmoves,1,2kinghenryiv,1598\nspoken,1,2kinghenryiv,1598\nsurgery,1,2kinghenryiv,1598\nsuperfluous,1,2kinghenryiv,1598\nmarch,1,2kinghenryiv,1598\nheight,1,2kinghenryiv,1598\nPeto,1,2kinghenryiv,1598\nSpoken,1,2kinghenryiv,1598\nbirths,1,2kinghenryiv,1598\naggravate,1,2kinghenryiv,1598\nGeorge,1,2kinghenryiv,1598\nsmith's,1,2kinghenryiv,1598\nquoif,1,2kinghenryiv,1598\nComes,1,2kinghenryiv,1598\nexposition,1,2kinghenryiv,1598\ncontented,1,2kinghenryiv,1598\nleak,1,2kinghenryiv,1598\nrood,1,2kinghenryiv,1598\noften,1,2kinghenryiv,1598\nbrewer's,1,2kinghenryiv,1598\nactive,1,2kinghenryiv,1598\nraze,1,2kinghenryiv,1598\nTurnbull,1,2kinghenryiv,1598\nintervallums,1,2kinghenryiv,1598\nsurfeited,1,2kinghenryiv,1598\ndrawers,1,2kinghenryiv,1598\nperceived,1,2kinghenryiv,1598\nlavish,1,2kinghenryiv,1598\nproofs,1,2kinghenryiv,1598\nSup,1,2kinghenryiv,1598\nfirmness,1,2kinghenryiv,1598\nscullion,1,2kinghenryiv,1598\nrigol,1,2kinghenryiv,1598\nbreeds,1,2kinghenryiv,1598\ndestiny,1,2kinghenryiv,1598\nincurable,1,2kinghenryiv,1598\nmain,1,2kinghenryiv,1598\nDepart,1,2kinghenryiv,1598\nVirtue,1,2kinghenryiv,1598\nDUKE,1,2kinghenryiv,1598\ngoodwife,1,2kinghenryiv,1598\nballad,1,2kinghenryiv,1598\ntarry,1,2kinghenryiv,1598\nalbeit,1,2kinghenryiv,1598\nStafford,1,2kinghenryiv,1598\nWashing,1,2kinghenryiv,1598\ncarried,1,2kinghenryiv,1598\nJACK,1,2kinghenryiv,1598\nFondly,1,2kinghenryiv,1598\nUmfrevile,1,2kinghenryiv,1598\nSpoke,1,2kinghenryiv,1598\nreport,1,2kinghenryiv,1598\nmechanical,1,2kinghenryiv,1598\ncanker'd,1,2kinghenryiv,1598\ntokens,1,2kinghenryiv,1598\nunluckily,1,2kinghenryiv,1598\nabated,1,2kinghenryiv,1598\nforehead,1,2kinghenryiv,1598\nhilt,1,2kinghenryiv,1598\nbarony,1,2kinghenryiv,1598\n'bounce',1,2kinghenryiv,1598\nrose,1,2kinghenryiv,1598\nundoes,1,2kinghenryiv,1598\nrascals,1,2kinghenryiv,1598\nsilence,1,2kinghenryiv,1598\nundeserver,1,2kinghenryiv,1598\nclamour,1,2kinghenryiv,1598\nweighing,1,2kinghenryiv,1598\ntakest,1,2kinghenryiv,1598\noverspread,1,2kinghenryiv,1598\nretired,1,2kinghenryiv,1598\ndistance,1,2kinghenryiv,1598\noverween,1,2kinghenryiv,1598\nbuilt,1,2kinghenryiv,1598\ndisgorge,1,2kinghenryiv,1598\nsickly,1,2kinghenryiv,1598\nBrothers,1,2kinghenryiv,1598\nsmallest,1,2kinghenryiv,1598\npawn'd,1,2kinghenryiv,1598\n'Gainst,1,2kinghenryiv,1598\nnightgown,1,2kinghenryiv,1598\nrepose,1,2kinghenryiv,1598\nomit,1,2kinghenryiv,1598\nthinks,1,2kinghenryiv,1598\npatch,1,2kinghenryiv,1598\nmartyr,1,2kinghenryiv,1598\ntends,1,2kinghenryiv,1598\naccite,1,2kinghenryiv,1598\nmarks,1,2kinghenryiv,1598\nVenus,1,2kinghenryiv,1598\nSeven,1,2kinghenryiv,1598\nnewest,1,2kinghenryiv,1598\nbegone,1,2kinghenryiv,1598\nAlthaea,1,2kinghenryiv,1598\nSurecard,1,2kinghenryiv,1598\nbeast,1,2kinghenryiv,1598\nretreat,1,2kinghenryiv,1598\ntoil'd,1,2kinghenryiv,1598\ngavest,1,2kinghenryiv,1598\ndoleful,1,2kinghenryiv,1598\nfaculties,1,2kinghenryiv,1598\nscroll,1,2kinghenryiv,1598\npates,1,2kinghenryiv,1598\nhips,1,2kinghenryiv,1598\nbeats,1,2kinghenryiv,1598\nforgetive,1,2kinghenryiv,1598\nunstained,1,2kinghenryiv,1598\nWrested,1,2kinghenryiv,1598\ngently,1,2kinghenryiv,1598\nmounted,1,2kinghenryiv,1598\nproudly,1,2kinghenryiv,1598\nfemales,1,2kinghenryiv,1598\nsprung,1,2kinghenryiv,1598\npaths,1,2kinghenryiv,1598\nscaly,1,2kinghenryiv,1598\ndeserving,1,2kinghenryiv,1598\nconceited,1,2kinghenryiv,1598\nbelow,1,2kinghenryiv,1598\nvapours,1,2kinghenryiv,1598\ndaily,1,2kinghenryiv,1598\nentertainment,1,2kinghenryiv,1598\nrout,1,2kinghenryiv,1598\nschedule,1,2kinghenryiv,1598\nremedy,1,2kinghenryiv,1598\nrash,1,2kinghenryiv,1598\ntender,1,2kinghenryiv,1598\nspread,1,2kinghenryiv,1598\nestate,1,2kinghenryiv,1598\nchapt,1,2kinghenryiv,1598\npleaseth,1,2kinghenryiv,1598\nours,1,2kinghenryiv,1598\nblew,1,2kinghenryiv,1598\ntraitors,1,2kinghenryiv,1598\nPeopled,1,2kinghenryiv,1598\nest,1,2kinghenryiv,1598\nhide,1,2kinghenryiv,1598\nExcursions,1,2kinghenryiv,1598\nAlack,1,2kinghenryiv,1598\ninwards,1,2kinghenryiv,1598\nmisuse,1,2kinghenryiv,1598\nheadland,1,2kinghenryiv,1598\nchaps,1,2kinghenryiv,1598\ndangers,1,2kinghenryiv,1598\nglasses,1,2kinghenryiv,1598\nleathern,1,2kinghenryiv,1598\nfails,1,2kinghenryiv,1598\nrestrain,1,2kinghenryiv,1598\nexcuses,1,2kinghenryiv,1598\nLethe,1,2kinghenryiv,1598\nstrike,1,2kinghenryiv,1598\nabridge,1,2kinghenryiv,1598\nmare's,1,2kinghenryiv,1598\nanatomize,1,2kinghenryiv,1598\nBare,1,2kinghenryiv,1598\ndiscoverers,1,2kinghenryiv,1598\nBriefly,1,2kinghenryiv,1598\nvisage,1,2kinghenryiv,1598\nSit,1,2kinghenryiv,1598\nwolves,1,2kinghenryiv,1598\npicking,1,2kinghenryiv,1598\nbasket,1,2kinghenryiv,1598\nnut,1,2kinghenryiv,1598\nmorrows,1,2kinghenryiv,1598\nmate,1,2kinghenryiv,1598\nprogress,1,2kinghenryiv,1598\nbegging,1,2kinghenryiv,1598\nperform,1,2kinghenryiv,1598\nloser,1,2kinghenryiv,1598\nwho's,1,2kinghenryiv,1598\nodious,1,2kinghenryiv,1598\ncaraways,1,2kinghenryiv,1598\nignorant,1,2kinghenryiv,1598\npresented,1,2kinghenryiv,1598\nApproach,1,2kinghenryiv,1598\ndares,1,2kinghenryiv,1598\nmouth,1,2kinghenryiv,1598\nCertain,1,2kinghenryiv,1598\nscars,1,2kinghenryiv,1598\nplaces,1,2kinghenryiv,1598\nawhile,1,2kinghenryiv,1598\nspiritless,1,2kinghenryiv,1598\nquarter,1,2kinghenryiv,1598\nmouse,1,2kinghenryiv,1598\nlattice,1,2kinghenryiv,1598\nAlban's,1,2kinghenryiv,1598\nslenderer,1,2kinghenryiv,1598\ntapestry,1,2kinghenryiv,1598\nPeter,1,2kinghenryiv,1598\nhelter,1,2kinghenryiv,1598\nWill't,1,2kinghenryiv,1598\nbestride,1,2kinghenryiv,1598\npack'd,1,2kinghenryiv,1598\nTurns,1,2kinghenryiv,1598\ntutor,1,2kinghenryiv,1598\ndirty,1,2kinghenryiv,1598\ncapitol,1,2kinghenryiv,1598\ngirdles,1,2kinghenryiv,1598\nengrossed,1,2kinghenryiv,1598\nmourn,1,2kinghenryiv,1598\nspurn,1,2kinghenryiv,1598\nseasons,1,2kinghenryiv,1598\nscab,1,2kinghenryiv,1598\nadmits,1,2kinghenryiv,1598\nlodge,1,2kinghenryiv,1598\nrevolution,1,2kinghenryiv,1598\n'Happy,1,2kinghenryiv,1598\npacify,1,2kinghenryiv,1598\nringing,1,2kinghenryiv,1598\ncertificate,1,2kinghenryiv,1598\nfilial,1,2kinghenryiv,1598\nsheriff,1,2kinghenryiv,1598\ngainsaid,1,2kinghenryiv,1598\nindustry,1,2kinghenryiv,1598\nfares,1,2kinghenryiv,1598\nLong,1,2kinghenryiv,1598\nelm,1,2kinghenryiv,1598\ndisdain'd,1,2kinghenryiv,1598\nPresume,1,2kinghenryiv,1598\nbleeds,1,2kinghenryiv,1598\nsolid,1,2kinghenryiv,1598\nStockfish,1,2kinghenryiv,1598\ncovert,1,2kinghenryiv,1598\nsatisfaction,1,2kinghenryiv,1598\nqualities,1,2kinghenryiv,1598\nstars,1,2kinghenryiv,1598\nprize,1,2kinghenryiv,1598\nsaving,1,2kinghenryiv,1598\nhalting,1,2kinghenryiv,1598\nbosoms,1,2kinghenryiv,1598\nblanket,1,2kinghenryiv,1598\nrobbery,1,2kinghenryiv,1598\nGrant,1,2kinghenryiv,1598\nstarting,1,2kinghenryiv,1598\npurposed,1,2kinghenryiv,1598\nkirtle,1,2kinghenryiv,1598\nvent,1,2kinghenryiv,1598\nfortnight,1,2kinghenryiv,1598\nhumorous,1,2kinghenryiv,1598\nblush,1,2kinghenryiv,1598\nchair,1,2kinghenryiv,1598\nmalt,1,2kinghenryiv,1598\nreverently,1,2kinghenryiv,1598\nindifference,1,2kinghenryiv,1598\nsteers,1,2kinghenryiv,1598\ntapestries,1,2kinghenryiv,1598\nprocure,1,2kinghenryiv,1598\nbelong,1,2kinghenryiv,1598\nquantities,1,2kinghenryiv,1598\nstabbed,1,2kinghenryiv,1598\nmask,1,2kinghenryiv,1598\nskin,1,2kinghenryiv,1598\nLubber's,1,2kinghenryiv,1598\nghastly,1,2kinghenryiv,1598\nmast,1,2kinghenryiv,1598\nparties,1,2kinghenryiv,1598\nacquit,1,2kinghenryiv,1598\nachievement,1,2kinghenryiv,1598\nkissing,1,2kinghenryiv,1598\ncoward,1,2kinghenryiv,1598\nson's,1,2kinghenryiv,1598\ndecension,1,2kinghenryiv,1598\n'And,1,2kinghenryiv,1598\npersuaded,1,2kinghenryiv,1598\nSampson,1,2kinghenryiv,1598\nPresenter,1,2kinghenryiv,1598\nadministration,1,2kinghenryiv,1598\ndecide,1,2kinghenryiv,1598\nbringer,1,2kinghenryiv,1598\nskelter,1,2kinghenryiv,1598\nissue,1,2kinghenryiv,1598\nfurnish'd,1,2kinghenryiv,1598\nArchbishop's,1,2kinghenryiv,1598\ndisadvantage,1,2kinghenryiv,1598\nquoth,1,2kinghenryiv,1598\nTrojan,1,2kinghenryiv,1598\nincreases,1,2kinghenryiv,1598\ninfinitely,1,2kinghenryiv,1598\nblow,1,2kinghenryiv,1598\nchaff,1,2kinghenryiv,1598\n'Go,1,2kinghenryiv,1598\nsortance,1,2kinghenryiv,1598\nmartyrs,1,2kinghenryiv,1598\ngates,1,2kinghenryiv,1598\n'I',1,2kinghenryiv,1598\nlabour,1,2kinghenryiv,1598\nJob,1,2kinghenryiv,1598\nweaken'd,1,2kinghenryiv,1598\nenlarge,1,2kinghenryiv,1598\naddress,1,2kinghenryiv,1598\ninfect,1,2kinghenryiv,1598\nvinegar,1,2kinghenryiv,1598\nchide,1,2kinghenryiv,1598\nthief,1,2kinghenryiv,1598\ndowny,1,2kinghenryiv,1598\nhautboy,1,2kinghenryiv,1598\nINDUCTION,1,2kinghenryiv,1598\nseal'd,1,2kinghenryiv,1598\n'Sir,1,2kinghenryiv,1598\nWest,1,2kinghenryiv,1598\nnorthward,1,2kinghenryiv,1598\nSpent,1,2kinghenryiv,1598\nlikeliest,1,2kinghenryiv,1598\nEating,1,2kinghenryiv,1598\nfree,1,2kinghenryiv,1598\ncostermonger,1,2kinghenryiv,1598\n'Si,1,2kinghenryiv,1598\nordinary,1,2kinghenryiv,1598\nfantastically,1,2kinghenryiv,1598\ncuttle,1,2kinghenryiv,1598\nshoeing,1,2kinghenryiv,1598\nmarvel,1,2kinghenryiv,1598\nfist,1,2kinghenryiv,1598\ndainty,1,2kinghenryiv,1598\ndivorced,1,2kinghenryiv,1598\ndisguised,1,2kinghenryiv,1598\ntrouble,1,2kinghenryiv,1598\ndivision,1,2kinghenryiv,1598\nblasted,1,2kinghenryiv,1598\nsilkman,1,2kinghenryiv,1598\nRome,1,2kinghenryiv,1598\nwen,1,2kinghenryiv,1598\ni'faith,1,2kinghenryiv,1598\nvapour,1,2kinghenryiv,1598\nforgiven,1,2kinghenryiv,1598\nlouder,1,2kinghenryiv,1598\ninland,1,2kinghenryiv,1598\narrested,1,2kinghenryiv,1598\npossession,1,2kinghenryiv,1598\nNine,1,2kinghenryiv,1598\nbanks,1,2kinghenryiv,1598\nratsbane,1,2kinghenryiv,1598\nbreed,1,2kinghenryiv,1598\nneaf,1,2kinghenryiv,1598\nlosing,1,2kinghenryiv,1598\ntrembling,1,2kinghenryiv,1598\ndoctor,1,2kinghenryiv,1598\nstained,1,2kinghenryiv,1598\npause,1,2kinghenryiv,1598\nprofited,1,2kinghenryiv,1598\nsuspicion,1,2kinghenryiv,1598\npoll,1,2kinghenryiv,1598\nagate,1,2kinghenryiv,1598\n'for,1,2kinghenryiv,1598\nproved,1,2kinghenryiv,1598\nrenown,1,2kinghenryiv,1598\nsemblable,1,2kinghenryiv,1598\nstrained,1,2kinghenryiv,1598\nJohns,1,2kinghenryiv,1598\nTreason's,1,2kinghenryiv,1598\nflesh'd,1,2kinghenryiv,1598\ncough,1,2kinghenryiv,1598\nodd,1,2kinghenryiv,1598\nenamour'd,1,2kinghenryiv,1598\nstale,1,2kinghenryiv,1598\nneck,1,2kinghenryiv,1598\nunderstanding,1,2kinghenryiv,1598\nsafely,1,2kinghenryiv,1598\nsmoky,1,2kinghenryiv,1598\nfits,1,2kinghenryiv,1598\nbumper,1,2kinghenryiv,1598\npond,1,2kinghenryiv,1598\nsides,1,2kinghenryiv,1598\ntardily,1,2kinghenryiv,1598\nwin,1,2kinghenryiv,1598\ncapable,1,2kinghenryiv,1598\noft,1,2kinghenryiv,1598\nroast,1,2kinghenryiv,1598\nDumbe,1,2kinghenryiv,1598\ncurb'd,1,2kinghenryiv,1598\nGalen,1,2kinghenryiv,1598\nproposed,1,2kinghenryiv,1598\nprivy,1,2kinghenryiv,1598\nhateful,1,2kinghenryiv,1598\n'Twill,1,2kinghenryiv,1598\nconfines,1,2kinghenryiv,1598\ncurb,1,2kinghenryiv,1598\nroughly,1,2kinghenryiv,1598\nbawdy,1,2kinghenryiv,1598\noperation,1,2kinghenryiv,1598\nmartial,1,2kinghenryiv,1598\nhearer,1,2kinghenryiv,1598\nBlunts,1,2kinghenryiv,1598\ncurs,1,2kinghenryiv,1598\nbrimful,1,2kinghenryiv,1598\nmeasured,1,2kinghenryiv,1598\nlovedst,1,2kinghenryiv,1598\nbuckle,1,2kinghenryiv,1598\nTurkish,1,2kinghenryiv,1598\nbinds,1,2kinghenryiv,1598\nsitting,1,2kinghenryiv,1598\nprophesied,1,2kinghenryiv,1598\nTHOMAS,1,2kinghenryiv,1598\nTuesday,1,2kinghenryiv,1598\nbanish'd,1,2kinghenryiv,1598\nsurveyors,1,2kinghenryiv,1598\npension,1,2kinghenryiv,1598\nmarshal's,1,2kinghenryiv,1598\nsevered,1,2kinghenryiv,1598\nsteel'd,1,2kinghenryiv,1598\nbroadsides,1,2kinghenryiv,1598\nmanifest,1,2kinghenryiv,1598\nStoop'd,1,2kinghenryiv,1598\nrecover,1,2kinghenryiv,1598\nbestow'd,1,2kinghenryiv,1598\nhappiest,1,2kinghenryiv,1598\ndunghill,1,2kinghenryiv,1598\nconjectures,1,2kinghenryiv,1598\nclock,1,2kinghenryiv,1598\nheaps,1,2kinghenryiv,1598\nSaw,1,2kinghenryiv,1598\nflight,1,2kinghenryiv,1598\nmusicians,1,2kinghenryiv,1598\nwalls,1,2kinghenryiv,1598\nclawed,1,2kinghenryiv,1598\nhealthy,1,2kinghenryiv,1598\nConstrue,1,2kinghenryiv,1598\nimpediments,1,2kinghenryiv,1598\ndeath's,1,2kinghenryiv,1598\nTrigon,1,2kinghenryiv,1598\narbour,1,2kinghenryiv,1598\nSnores,1,2kinghenryiv,1598\ncrown's,1,2kinghenryiv,1598\nBlunt,1,2kinghenryiv,1598\npartition,1,2kinghenryiv,1598\ncrowding,1,2kinghenryiv,1598\nflint,1,2kinghenryiv,1598\nmaidenhead,1,2kinghenryiv,1598\nrenown'd,1,2kinghenryiv,1598\nThine,1,2kinghenryiv,1598\ncrown'd,1,2kinghenryiv,1598\nliked,1,2kinghenryiv,1598\ninvincible,1,2kinghenryiv,1598\nchastisement,1,2kinghenryiv,1598\ncanaries,1,2kinghenryiv,1598\ngallows',1,2kinghenryiv,1598\nstiff,1,2kinghenryiv,1598\nWart's,1,2kinghenryiv,1598\ntunes,1,2kinghenryiv,1598\nUntwine,1,2kinghenryiv,1598\nsignories,1,2kinghenryiv,1598\nCoventry,1,2kinghenryiv,1598\nstage,1,2kinghenryiv,1598\nThrow,1,2kinghenryiv,1598\nstaff,1,2kinghenryiv,1598\nrise,1,2kinghenryiv,1598\ncommoners,1,2kinghenryiv,1598\ngrowing,1,2kinghenryiv,1598\nconversations,1,2kinghenryiv,1598\ndeparting,1,2kinghenryiv,1598\nbleed,1,2kinghenryiv,1598\nwag,1,2kinghenryiv,1598\ngirdle,1,2kinghenryiv,1598\nsufferance,1,2kinghenryiv,1598\nhurries,1,2kinghenryiv,1598\nhandle,1,2kinghenryiv,1598\narts,1,2kinghenryiv,1598\narrow,1,2kinghenryiv,1598\nEast,1,2kinghenryiv,1598\nthey'll,1,2kinghenryiv,1598\nhuswives,1,2kinghenryiv,1598\nblemish,1,2kinghenryiv,1598\ntutor'd,1,2kinghenryiv,1598\nsaith,1,2kinghenryiv,1598\nresistance,1,2kinghenryiv,1598\nrags,1,2kinghenryiv,1598\ninflammation,1,2kinghenryiv,1598\nends,1,2kinghenryiv,1598\ninstinct,1,2kinghenryiv,1598\nkitchen,1,2kinghenryiv,1598\nperadventure,1,2kinghenryiv,1598\nprice,1,2kinghenryiv,1598\nMass,1,2kinghenryiv,1598\nbearded,1,2kinghenryiv,1598\nvillains,1,2kinghenryiv,1598\nsupped,1,2kinghenryiv,1598\ncomplain,1,2kinghenryiv,1598\nmultitude,1,2kinghenryiv,1598\nwheel,1,2kinghenryiv,1598\npounds,1,2kinghenryiv,1598\nbells,1,2kinghenryiv,1598\ncushions,1,2kinghenryiv,1598\noverturn'd,1,2kinghenryiv,1598\nThree,1,2kinghenryiv,1598\naspen,1,2kinghenryiv,1598\npence,1,2kinghenryiv,1598\nsurvive,1,2kinghenryiv,1598\nruins,1,2kinghenryiv,1598\nnotice,1,2kinghenryiv,1598\nmisleaders,1,2kinghenryiv,1598\ncurses,1,2kinghenryiv,1598\nirons,1,2kinghenryiv,1598\nsweets,1,2kinghenryiv,1598\nGives,1,2kinghenryiv,1598\nmightily,1,2kinghenryiv,1598\nvulgar,1,2kinghenryiv,1598\ngladly,1,2kinghenryiv,1598\nhusbandry,1,2kinghenryiv,1598\nprompt,1,2kinghenryiv,1598\nagree,1,2kinghenryiv,1598\nmettle,1,2kinghenryiv,1598\nseize,1,2kinghenryiv,1598\noblivion,1,2kinghenryiv,1598\nquicksilver,1,2kinghenryiv,1598\nUneasy,1,2kinghenryiv,1598\nSneak,1,2kinghenryiv,1598\nmorsel,1,2kinghenryiv,1598\nimbrue,1,2kinghenryiv,1598\nexclamation,1,2kinghenryiv,1598\npoison,1,2kinghenryiv,1598\nThrew,1,2kinghenryiv,1598\nlistening,1,2kinghenryiv,1598\nkeeper's,1,2kinghenryiv,1598\ncharged,1,2kinghenryiv,1598\ncanvass,1,2kinghenryiv,1598\nSurrey,1,2kinghenryiv,1598\nclapped,1,2kinghenryiv,1598\nanger,1,2kinghenryiv,1598\nforeign,1,2kinghenryiv,1598\ntamely,1,2kinghenryiv,1598\ngunpowder,1,2kinghenryiv,1598\nlechery,1,2kinghenryiv,1598\nsweatest,1,2kinghenryiv,1598\nbitterness,1,2kinghenryiv,1598\nwondrous,1,2kinghenryiv,1598\nBourdeaux,1,2kinghenryiv,1598\nwife's,1,2kinghenryiv,1598\nsupply,1,2kinghenryiv,1598\nimputation,1,2kinghenryiv,1598\nhaply,1,2kinghenryiv,1598\noverwhelmed,1,2kinghenryiv,1598\nconsent,1,2kinghenryiv,1598\nwhistle,1,2kinghenryiv,1598\nbelie,1,2kinghenryiv,1598\ndetermined,1,2kinghenryiv,1598\nserves,1,2kinghenryiv,1598\nfox,1,2kinghenryiv,1598\nfalling,1,2kinghenryiv,1598\nclout,1,2kinghenryiv,1598\nwent,1,2kinghenryiv,1598\nstirs,1,2kinghenryiv,1598\nwrong'd,1,2kinghenryiv,1598\nwhence,1,2kinghenryiv,1598\nNoble,1,2kinghenryiv,1598\ncover,1,2kinghenryiv,1598\nuneasy,1,2kinghenryiv,1598\nfail,1,2kinghenryiv,1598\nfile,1,2kinghenryiv,1598\ngifts,1,2kinghenryiv,1598\nearnestness,1,2kinghenryiv,1598\nStrike,1,2kinghenryiv,1598\nStumbling,1,2kinghenryiv,1598\nhideous,1,2kinghenryiv,1598\nviz,1,2kinghenryiv,1598\ngrieve,1,2kinghenryiv,1598\nStopping,1,2kinghenryiv,1598\ncreate,1,2kinghenryiv,1598\nhunger,1,2kinghenryiv,1598\ndispersed,1,2kinghenryiv,1598\nvomit,1,2kinghenryiv,1598\nevil,1,2kinghenryiv,1598\ninwardly,1,2kinghenryiv,1598\nEmploy,1,2kinghenryiv,1598\nDouglas',1,2kinghenryiv,1598\ndurst,1,2kinghenryiv,1598\nHeren,1,2kinghenryiv,1598\nStretches,1,2kinghenryiv,1598\nMany,1,2kinghenryiv,1598\ntilled,1,2kinghenryiv,1598\ngrate,1,2kinghenryiv,1598\njudge,1,2kinghenryiv,1598\ndoublet,1,2kinghenryiv,1598\ngiving,1,2kinghenryiv,1598\nTilt,1,2kinghenryiv,1598\ndesert,1,2kinghenryiv,1598\nmiracle,1,2kinghenryiv,1598\nfoeman,1,2kinghenryiv,1598\nestablish,1,2kinghenryiv,1598\netceteras,1,2kinghenryiv,1598\ncribs,1,2kinghenryiv,1598\nutterly,1,2kinghenryiv,1598\ncommences,1,2kinghenryiv,1598\nsnake,1,2kinghenryiv,1598\narticle,1,2kinghenryiv,1598\nvictor,1,2kinghenryiv,1598\ncloud,1,2kinghenryiv,1598\nphrases,1,2kinghenryiv,1598\nwilful,1,2kinghenryiv,1598\ndaggers,1,2kinghenryiv,1598\nwindmill,1,2kinghenryiv,1598\ncommenced,1,2kinghenryiv,1598\nspeeded,1,2kinghenryiv,1598\nGreeks,1,2kinghenryiv,1598\nPhrase,1,2kinghenryiv,1598\nImpatient,1,2kinghenryiv,1598\nmethinks,1,2kinghenryiv,1598\nvaward,1,2kinghenryiv,1598\nworm,1,2kinghenryiv,1598\nHinckley,1,2kinghenryiv,1598\nparcels,1,2kinghenryiv,1598\nendeared,1,2kinghenryiv,1598\nwit's,1,2kinghenryiv,1598\ndated,1,2kinghenryiv,1598\nserve's,1,2kinghenryiv,1598\ndeafening,1,2kinghenryiv,1598\nprostrate,1,2kinghenryiv,1598\nAfrica,1,2kinghenryiv,1598\nfighting,1,2kinghenryiv,1598\nwore,1,2kinghenryiv,1598\nhusbanded,1,2kinghenryiv,1598\npassing,1,2kinghenryiv,1598\nbrandish,1,2kinghenryiv,1598\nclay,1,2kinghenryiv,1598\nfig,1,2kinghenryiv,1598\nGalloway,1,2kinghenryiv,1598\npantler,1,2kinghenryiv,1598\nDeny,1,2kinghenryiv,1598\nendeavour,1,2kinghenryiv,1598\nflame,1,2kinghenryiv,1598\nminute,1,2kinghenryiv,1598\nliege's,1,2kinghenryiv,1598\nmisdoubts,1,2kinghenryiv,1598\nSorrow,1,2kinghenryiv,1598\nKeech,1,2kinghenryiv,1598\nduer,1,2kinghenryiv,1598\ndelectable,1,2kinghenryiv,1598\nWeaken'd,1,2kinghenryiv,1598\nScroop,1,2kinghenryiv,1598\npleases,1,2kinghenryiv,1598\ncontinue,1,2kinghenryiv,1598\nengaged,1,2kinghenryiv,1598\ncarat,1,2kinghenryiv,1598\nforspent,1,2kinghenryiv,1598\nopener,1,2kinghenryiv,1598\nfolly,1,2kinghenryiv,1598\nhorn,1,2kinghenryiv,1598\nbuckles,1,2kinghenryiv,1598\nbuckler,1,2kinghenryiv,1598\noutbids,1,2kinghenryiv,1598\nmarried,1,2kinghenryiv,1598\njoined,1,2kinghenryiv,1598\nmanured,1,2kinghenryiv,1598\nredresses,1,2kinghenryiv,1598\nduties,1,2kinghenryiv,1598\ncontagious,1,2kinghenryiv,1598\nbloodshed,1,2kinghenryiv,1598\nmansion,1,2kinghenryiv,1598\ngormandizing,1,2kinghenryiv,1598\nalway,1,2kinghenryiv,1598\ntavern,1,2kinghenryiv,1598\nFlattering,1,2kinghenryiv,1598\nindignities,1,2kinghenryiv,1598\nsurge,1,2kinghenryiv,1598\nostentation,1,2kinghenryiv,1598\nbite,1,2kinghenryiv,1598\nlined,1,2kinghenryiv,1598\ndivers,1,2kinghenryiv,1598\nimmodest,1,2kinghenryiv,1598\nherself,1,2kinghenryiv,1598\nbackbite,1,2kinghenryiv,1598\nCotswold,1,2kinghenryiv,1598\nsumm'd,1,2kinghenryiv,1598\nqueen,1,2kinghenryiv,1598\nbusses,1,2kinghenryiv,1598\nwived,1,2kinghenryiv,1598\nBarbary,1,2kinghenryiv,1598\nbetters,1,2kinghenryiv,1598\nmadly,1,2kinghenryiv,1598\nwonted,1,2kinghenryiv,1598\nwhither,1,2kinghenryiv,1598\nOffend,1,2kinghenryiv,1598\n'Brother,1,2kinghenryiv,1598\nPluto's,1,2kinghenryiv,1598\nperfectness,1,2kinghenryiv,1598\nincreasing,1,2kinghenryiv,1598\nmeaning,1,2kinghenryiv,1598\ngilded,1,2kinghenryiv,1598\nFour,1,2kinghenryiv,1598\nbackbitten,1,2kinghenryiv,1598\nhove,1,2kinghenryiv,1598\npublic,1,2kinghenryiv,1598\ndispraise,1,2kinghenryiv,1598\nhideously,1,2kinghenryiv,1598\nprophesy,1,2kinghenryiv,1598\nKill'd,1,2kinghenryiv,1598\nfate,1,2kinghenryiv,1598\ncock,1,2kinghenryiv,1598\nwrenching,1,2kinghenryiv,1598\nstrengthened,1,2kinghenryiv,1598\nobservance,1,2kinghenryiv,1598\nband,1,2kinghenryiv,1598\nrecordation,1,2kinghenryiv,1598\nbrighten,1,2kinghenryiv,1598\ntrains,1,2kinghenryiv,1598\ncrowing,1,2kinghenryiv,1598\n'Gan,1,2kinghenryiv,1598\nvital,1,2kinghenryiv,1598\nbalm,1,2kinghenryiv,1598\nhoop,1,2kinghenryiv,1598\nOfficer,1,2kinghenryiv,1598\ntame,1,2kinghenryiv,1598\nrising,1,2kinghenryiv,1598\nSneak's,1,2kinghenryiv,1598\nRumour's,1,2kinghenryiv,1598\nrightfully,1,2kinghenryiv,1598\nfeeble,1,2kinghenryiv,1598\nfavourable,1,2kinghenryiv,1598\nauthor,1,2kinghenryiv,1598\ngallant,1,2kinghenryiv,1598\nache,1,2kinghenryiv,1598\no'erwhelm,1,2kinghenryiv,1598\ntale,1,2kinghenryiv,1598\ncoal,1,2kinghenryiv,1598\nbuzzing,1,2kinghenryiv,1598\nlap,1,2kinghenryiv,1598\nconstant,1,2kinghenryiv,1598\nNeed,1,2kinghenryiv,1598\nhowl'st,1,2kinghenryiv,1598\nwider,1,2kinghenryiv,1598\norient,1,2kinghenryiv,1598\nPriam,1,2kinghenryiv,1598\nKnew,1,2kinghenryiv,1598\nLean,1,2kinghenryiv,1598\nkindreds,1,2kinghenryiv,1598\nAppear,1,2kinghenryiv,1598\ndeliberate,1,2kinghenryiv,1598\nsufficient,1,2kinghenryiv,1598\nHenry,1,2kinghenryiv,1598\nstroke,1,2kinghenryiv,1598\ngiven,1,2kinghenryiv,1598\nwatchful,1,2kinghenryiv,1598\nShallow',1,2kinghenryiv,1598\ncarry,1,2kinghenryiv,1598\njordan,1,2kinghenryiv,1598\nrapier,1,2kinghenryiv,1598\ngreets,1,2kinghenryiv,1598\nbeshrew,1,2kinghenryiv,1598\nsights,1,2kinghenryiv,1598\nshoot,1,2kinghenryiv,1598\nbiggen,1,2kinghenryiv,1598\nconcludes,1,2kinghenryiv,1598\ndungeon,1,2kinghenryiv,1598\nlecherous,1,2kinghenryiv,1598\nclear,1,2kinghenryiv,1598\nHiren,1,2kinghenryiv,1598\nmelody,1,2kinghenryiv,1598\nNone,1,2kinghenryiv,1598\nfertile,1,2kinghenryiv,1598\ninhabitants,1,2kinghenryiv,1598\ntemper'd,1,2kinghenryiv,1598\ngreet,1,2kinghenryiv,1598\nstand'st,1,2kinghenryiv,1598\nfattest,1,2kinghenryiv,1598\nfamine,1,2kinghenryiv,1598\nLives,1,2kinghenryiv,1598\nripens,1,2kinghenryiv,1598\ndevour,1,2kinghenryiv,1598\nfollows,1,2kinghenryiv,1598\nbacksword,1,2kinghenryiv,1598\nmustard,1,2kinghenryiv,1598\ngaping,1,2kinghenryiv,1598\nintreasured,1,2kinghenryiv,1598\nCheering,1,2kinghenryiv,1598\nsnap,1,2kinghenryiv,1598\npangs,1,2kinghenryiv,1598\nconsigning,1,2kinghenryiv,1598\nWho's,1,2kinghenryiv,1598\nrequest,1,2kinghenryiv,1598\ncowards,1,2kinghenryiv,1598\nranged,1,2kinghenryiv,1598\nwhetted,1,2kinghenryiv,1598\nrevolt,1,2kinghenryiv,1598\nasking,1,2kinghenryiv,1598\nconsist,1,2kinghenryiv,1598\nspurring,1,2kinghenryiv,1598\npresents,1,2kinghenryiv,1598\nErebus,1,2kinghenryiv,1598\nfronts,1,2kinghenryiv,1598\nforsooth,1,2kinghenryiv,1598\nrabbit,1,2kinghenryiv,1598\nRepent,1,2kinghenryiv,1598\nfeeding,1,2kinghenryiv,1598\nshove,1,2kinghenryiv,1598\nslanders,1,2kinghenryiv,1598\nappertinent,1,2kinghenryiv,1598\nundertook,1,2kinghenryiv,1598\nfavours,1,2kinghenryiv,1598\npotion,1,2kinghenryiv,1598\nNell,1,2kinghenryiv,1598\nquean,1,2kinghenryiv,1598\nTurn'd,1,2kinghenryiv,1598\nborrowing,1,2kinghenryiv,1598\nrecruits,1,2kinghenryiv,1598\nbawl,1,2kinghenryiv,1598\npeeped,1,2kinghenryiv,1598\ncholer,1,2kinghenryiv,1598\nscraped,1,2kinghenryiv,1598\nnotwithstanding,1,2kinghenryiv,1598\npeascod,1,2kinghenryiv,1598\nvainly,1,2kinghenryiv,1598\nReply,1,2kinghenryiv,1598\nshout,1,2kinghenryiv,1598\nAnon,1,2kinghenryiv,1598\ndrudgery,1,2kinghenryiv,1598\nsatisfied,1,2kinghenryiv,1598\nyellow,1,2kinghenryiv,1598\nabject,1,2kinghenryiv,1598\nhung,1,2kinghenryiv,1598\npulsidge,1,2kinghenryiv,1598\nseas,1,2kinghenryiv,1598\nseat,1,2kinghenryiv,1598\nperfumed,1,2kinghenryiv,1598\nhairs,1,2kinghenryiv,1598\nsunshine,1,2kinghenryiv,1598\nperfumes,1,2kinghenryiv,1598\ncheerful,1,2kinghenryiv,1598\nhearty,1,2kinghenryiv,1598\nassembled,1,2kinghenryiv,1598\ncopy,1,2kinghenryiv,1598\ncool,1,2kinghenryiv,1598\nattendance,1,2kinghenryiv,1598\nServes,1,2kinghenryiv,1598\ncontento,1,2kinghenryiv,1598\n'neighbour,1,2kinghenryiv,1598\nhearse,1,2kinghenryiv,1598\ncontenta,1,2kinghenryiv,1598\nrearward,1,2kinghenryiv,1598\nbachelor,1,2kinghenryiv,1598\nfairer,1,2kinghenryiv,1598\npacket,1,2kinghenryiv,1598\nexamples,1,2kinghenryiv,1598\nugly,1,2kinghenryiv,1598\ntraverse,1,2kinghenryiv,1598\nBarnes,1,2kinghenryiv,1598\nremission,1,2kinghenryiv,1598\nsect,1,2kinghenryiv,1598\nneedful,1,2kinghenryiv,1598\nquaff'd,1,2kinghenryiv,1598\npublish,1,2kinghenryiv,1598\nrenewed,1,2kinghenryiv,1598\nfollowedst,1,2kinghenryiv,1598\nSCROOP,1,2kinghenryiv,1598\ncomb,1,2kinghenryiv,1598\ndrums,1,2kinghenryiv,1598\nknowest,1,2kinghenryiv,1598\nfeathers,1,2kinghenryiv,1598\nsingular,1,2kinghenryiv,1598\nfalseness,1,2kinghenryiv,1598\nconjoins,1,2kinghenryiv,1598\npresence,1,2kinghenryiv,1598\nconfederates,1,2kinghenryiv,1598\noriginal,1,2kinghenryiv,1598\npuppy,1,2kinghenryiv,1598\ncoz,1,2kinghenryiv,1598\nlook'd,1,2kinghenryiv,1598\narrows,1,2kinghenryiv,1598\ncovetousness,1,2kinghenryiv,1598\nothers',1,2kinghenryiv,1598\ndivorce,1,2kinghenryiv,1598\nperiod,1,2kinghenryiv,1598\nliking,1,2kinghenryiv,1598\nfellows,1,2kinghenryiv,1598\nprophecy,1,2kinghenryiv,1598\nthereof,1,2kinghenryiv,1598\nhound,1,2kinghenryiv,1598\nBelieve,1,2kinghenryiv,1598\nlifting,1,2kinghenryiv,1598\ncandles',1,2kinghenryiv,1598\ncorn,1,2kinghenryiv,1598\nsetting,1,2kinghenryiv,1598\nmarking,1,2kinghenryiv,1598\nfoining,1,2kinghenryiv,1598\nMile,1,2kinghenryiv,1598\nSeal,1,2kinghenryiv,1598\nexploit,1,2kinghenryiv,1598\nbunches,1,2kinghenryiv,1598\nincrease,1,2kinghenryiv,1598\ndebuty,1,2kinghenryiv,1598\nmonkey,1,2kinghenryiv,1598\nheavenly,1,2kinghenryiv,1598\nquoits,1,2kinghenryiv,1598\ndivisions,1,2kinghenryiv,1598\nmodest,1,2kinghenryiv,1598\navoid,1,2kinghenryiv,1598\npour,1,2kinghenryiv,1598\ngathering,1,2kinghenryiv,1598\nAbbey,1,2kinghenryiv,1598\nThrough,1,2kinghenryiv,1598\nblame,1,2kinghenryiv,1598\nThings,1,2kinghenryiv,1598\ntidy,1,2kinghenryiv,1598\ntiring,1,2kinghenryiv,1598\nslender,1,2kinghenryiv,1598\ncurtain,1,2kinghenryiv,1598\nhuge,1,2kinghenryiv,1598\nbait,1,2kinghenryiv,1598\nglove,1,2kinghenryiv,1598\nUse,1,2kinghenryiv,1598\nSend,1,2kinghenryiv,1598\nEphesians,1,2kinghenryiv,1598\nlovers,1,2kinghenryiv,1598\nGeorge's,1,2kinghenryiv,1598\nblushing,1,2kinghenryiv,1598\nself,1,2kinghenryiv,1598\n'accommodo',1,2kinghenryiv,1598\naccording,1,2kinghenryiv,1598\nfairly,1,2kinghenryiv,1598\nfloods,1,2kinghenryiv,1598\nball,1,2kinghenryiv,1598\ndistracted,1,2kinghenryiv,1598\ninset,1,2kinghenryiv,1598\nRalph,1,2kinghenryiv,1598\nsee'st,1,2kinghenryiv,1598\nbald,1,2kinghenryiv,1598\nreport'st,1,2kinghenryiv,1598\nEdward,1,2kinghenryiv,1598\nbleeding,1,2kinghenryiv,1598\nmisorder'd,1,2kinghenryiv,1598\nreputed,1,2kinghenryiv,1598\nundo,1,2kinghenryiv,1598\nLieutenant,1,2kinghenryiv,1598\ntalk'd,1,2kinghenryiv,1598\nswell,1,2kinghenryiv,1598\ncenser,1,2kinghenryiv,1598\nnurse,1,2kinghenryiv,1598\nfronting,1,2kinghenryiv,1598\nfangless,1,2kinghenryiv,1598\nanthems,1,2kinghenryiv,1598\nillumineth,1,2kinghenryiv,1598\nrobas,1,2kinghenryiv,1598\ngenius,1,2kinghenryiv,1598\ncarriage,1,2kinghenryiv,1598\nhowl,1,2kinghenryiv,1598\nangered,1,2kinghenryiv,1598\nsullen,1,2kinghenryiv,1598\nformal,1,2kinghenryiv,1598\nseason,1,2kinghenryiv,1598\nDelivered,1,2kinghenryiv,1598\nmadam,1,2kinghenryiv,1598\nunyoked,1,2kinghenryiv,1598\nconvert,1,2kinghenryiv,1598\nMarch,1,2kinghenryiv,1598\ncouple,1,2kinghenryiv,1598\nbeginnings,1,2kinghenryiv,1598\nbestow,1,2kinghenryiv,1598\ndrooping,1,2kinghenryiv,1598\nsheets,1,2kinghenryiv,1598\nUsing,1,2kinghenryiv,1598\ninstead,1,2kinghenryiv,1598\nchops,1,2kinghenryiv,1598\nchanced,1,2kinghenryiv,1598\nstormy,1,2kinghenryiv,1598\nuntil,1,2kinghenryiv,1598\nparcel,1,2kinghenryiv,1598\ninvented,1,2kinghenryiv,1598\nswinge,1,2kinghenryiv,1598\nlicence,1,2kinghenryiv,1598\nNothing,1,2kinghenryiv,1598\nsheriff's,1,2kinghenryiv,1598\neffects,1,2kinghenryiv,1598\nservants,1,2kinghenryiv,1598\nborrowed,1,2kinghenryiv,1598\nfustian,1,2kinghenryiv,1598\nupbraid,1,2kinghenryiv,1598\npusillanimity,1,2kinghenryiv,1598\nsuitor,1,2kinghenryiv,1598\nAtropos,1,2kinghenryiv,1598\nunseconded,1,2kinghenryiv,1598\nimagination,1,2kinghenryiv,1598\nhonesty,1,2kinghenryiv,1598\npetty,1,2kinghenryiv,1598\nrheumatic,1,2kinghenryiv,1598\nwrite,1,2kinghenryiv,1598\ndebate,1,2kinghenryiv,1598\ndace,1,2kinghenryiv,1598\nstewed,1,2kinghenryiv,1598\nHelicons,1,2kinghenryiv,1598\nalter'd,1,2kinghenryiv,1598\nsounded,1,2kinghenryiv,1598\nvolume,1,2kinghenryiv,1598\ndining,1,2kinghenryiv,1598\nsuccessful,1,2kinghenryiv,1598\nmaintained,1,2kinghenryiv,1598\nGave,1,2kinghenryiv,1598\nOldcastle,1,2kinghenryiv,1598\nleast,1,2kinghenryiv,1598\nspite,1,2kinghenryiv,1598\nTowards,1,2kinghenryiv,1598\n'scape,1,2kinghenryiv,1598\nSaturn,1,2kinghenryiv,1598\nscum,1,2kinghenryiv,1598\nseldom,1,2kinghenryiv,1598\nforced,1,2kinghenryiv,1598\nreward,1,2kinghenryiv,1598\neel,1,2kinghenryiv,1598\n'Hem,1,2kinghenryiv,1598\nposting,1,2kinghenryiv,1598\nForetelling,1,2kinghenryiv,1598\nWounding,1,2kinghenryiv,1598\nenforcement,1,2kinghenryiv,1598\nforked,1,2kinghenryiv,1598\ncompounded,1,2kinghenryiv,1598\nsadness,1,2kinghenryiv,1598\ndealing,1,2kinghenryiv,1598\nPreserving,1,2kinghenryiv,1598\ncourageous,1,2kinghenryiv,1598\nheaded,1,2kinghenryiv,1598\ntrip,1,2kinghenryiv,1598\nfoundered,1,2kinghenryiv,1598\nimmortally,1,2kinghenryiv,1598\nlamenting,1,2kinghenryiv,1598\nEPILOGUE,1,2kinghenryiv,1598\n'John,1,2kinghenryiv,1598\nlikelihoods,1,2kinghenryiv,1598\nhinges,1,2kinghenryiv,1598\naiming,1,2kinghenryiv,1598\nantiquity,1,2kinghenryiv,1598\nmurder'd,1,2kinghenryiv,1598\nfennel,1,2kinghenryiv,1598\nevils,1,2kinghenryiv,1598\ndetermine,1,2kinghenryiv,1598\nfamiliars,1,2kinghenryiv,1598\nAcquitted,1,2kinghenryiv,1598\ncinders,1,2kinghenryiv,1598\nconfirmation,1,2kinghenryiv,1598\npleasant,1,2kinghenryiv,1598\ncorrectioner,1,2kinghenryiv,1598\nforeruns,1,2kinghenryiv,1598\nrecreant,1,2kinghenryiv,1598\nMen,1,2kinghenryiv,1598\ncounty,1,2kinghenryiv,1598\nincision,1,2kinghenryiv,1598\nliquors,1,2kinghenryiv,1598\nHaled,1,2kinghenryiv,1598\nQuenching,1,2kinghenryiv,1598\nEllen,1,2kinghenryiv,1598\ncrafty,1,2kinghenryiv,1598\neleven,1,2kinghenryiv,1598\nquarrels,1,2kinghenryiv,1598\nprinciple,1,2kinghenryiv,1598\nwithdraw,1,2kinghenryiv,1598\nmonarch's,1,2kinghenryiv,1598\nmaidenly,1,2kinghenryiv,1598\ninterpretation,1,2kinghenryiv,1598\nhenceforth,1,2kinghenryiv,1598\nstrokes,1,2kinghenryiv,1598\non't,1,2kinghenryiv,1598\nabsolutely,1,2kinghenryiv,1598\nDoit,1,2kinghenryiv,1598\nforgetfulness,1,2kinghenryiv,1598\nsubstituted,1,2kinghenryiv,1598\nsubstitutes,1,2kinghenryiv,1598\nGerman,1,2kinghenryiv,1598\nthereupon,1,2kinghenryiv,1598\nterror,1,2kinghenryiv,1598\nsporting,1,2kinghenryiv,1598\nrespects,1,2kinghenryiv,1598\nBasingstoke,1,2kinghenryiv,1598\ndirections,1,2kinghenryiv,1598\nInstruct,1,2kinghenryiv,1598\nlethargy,1,2kinghenryiv,1598\nparticipation,1,2kinghenryiv,1598\nincessant,1,2kinghenryiv,1598\ncredit,1,2kinghenryiv,1598\nplucks,1,2kinghenryiv,1598\nflap,1,2kinghenryiv,1598\nspilt,1,2kinghenryiv,1598\nthither,1,2kinghenryiv,1598\ntenderness,1,2kinghenryiv,1598\nwarming,1,2kinghenryiv,1598\nGreen,1,2kinghenryiv,1598\ngravity,1,2kinghenryiv,1598\nprawns,1,2kinghenryiv,1598\nborrower's,1,2kinghenryiv,1598\ntickle,1,2kinghenryiv,1598\nkickshaws,1,2kinghenryiv,1598\ncompel,1,2kinghenryiv,1598\nwithdrew,1,2kinghenryiv,1598\nProdigal,1,2kinghenryiv,1598\nfright,1,2kinghenryiv,1598\npeep,1,2kinghenryiv,1598\nDombledon,1,2kinghenryiv,1598\njade,1,2kinghenryiv,1598\nkeepest,1,2kinghenryiv,1598\npagan,1,2kinghenryiv,1598\nknave's,1,2kinghenryiv,1598\nrevenged,1,2kinghenryiv,1598\nweariness,1,2kinghenryiv,1598\nbreaking,1,2kinghenryiv,1598\nsquire,1,2kinghenryiv,1598\nsummary,1,2kinghenryiv,1598\nLent,1,2kinghenryiv,1598\nappetite,1,2kinghenryiv,1598\nshrews,1,2kinghenryiv,1598\naconitum,1,2kinghenryiv,1598\nLend,1,2kinghenryiv,1598\nfollow'd,1,2kinghenryiv,1598\nsimply,1,2kinghenryiv,1598\ncorruption,1,2kinghenryiv,1598\nshrewd,1,2kinghenryiv,1598\nassurance,1,2kinghenryiv,1598\nfrank,1,2kinghenryiv,1598\nDeath,1,2kinghenryiv,1598\nwitty,1,2kinghenryiv,1598\nsentence,1,2kinghenryiv,1598\nmouths,1,2kinghenryiv,1598\nwitness,1,2kinghenryiv,1598\ntardy,1,2kinghenryiv,1598\ncontinuantly,1,2kinghenryiv,1598\nreply,1,2kinghenryiv,1598\nearned,1,2kinghenryiv,1598\nYou'll,1,2kinghenryiv,1598\npayment,1,2kinghenryiv,1598\nNote,1,2kinghenryiv,1598\nconsiderance,1,2kinghenryiv,1598\nstrengthless,1,2kinghenryiv,1598\nshaft,1,2kinghenryiv,1598\ncareless,1,2kinghenryiv,1598\ndash,1,2kinghenryiv,1598\npattern,1,2kinghenryiv,1598\ninventory,1,2kinghenryiv,1598\nGoodman,1,2kinghenryiv,1598\ndistemper'd,1,2kinghenryiv,1598\nwrathful,1,2kinghenryiv,1598\nattend,1,2kinghenryiv,1598\nhonour'd,1,2kinghenryiv,1598\nArthur,1,2kinghenryiv,1598\nsubstitute,1,2kinghenryiv,1598\nharsh,1,2kinghenryiv,1598\nconfine,1,2kinghenryiv,1598\ndragging,1,2kinghenryiv,1598\nWilliam's,1,2kinghenryiv,1598\nswallow,1,2kinghenryiv,1598\nFalls,1,2kinghenryiv,1598\nLest,1,2kinghenryiv,1598\nLess,1,2kinghenryiv,1598\nlake,1,2kinghenryiv,1598\nwhoe'er,1,2kinghenryiv,1598\nprecepts,1,2kinghenryiv,1598\nDie,1,2kinghenryiv,1598\nHUMPHREY,1,2kinghenryiv,1598\nRouse,1,2kinghenryiv,1598\ndub,1,2kinghenryiv,1598\nunseason'd,1,2kinghenryiv,1598\ntoe,1,2kinghenryiv,1598\nrocky,1,2kinghenryiv,1598\nlawless,1,2kinghenryiv,1598\nstirrer,1,2kinghenryiv,1598\nwithhold,1,2kinghenryiv,1598\npens,1,2kinghenryiv,1598\nfifteen,1,2kinghenryiv,1598\nbooked,1,2kinghenryiv,1598\nbedew,1,2kinghenryiv,1598\nglobe,1,2kinghenryiv,1598\nanother's,1,2kinghenryiv,1598\nplucking,1,2kinghenryiv,1598\naccites,1,2kinghenryiv,1598\nmonths,1,2kinghenryiv,1598\nBring,1,2kinghenryiv,1598\nfruiterer,1,2kinghenryiv,1598\nReign,1,2kinghenryiv,1598\nDRAMATIS,1,2kinghenryiv,1598\nSimon,1,2kinghenryiv,1598\nwhores,1,2kinghenryiv,1598\nGray's,1,2kinghenryiv,1598\nsuccess,1,2kinghenryiv,1598\nreverent,1,2kinghenryiv,1598\nvenom,1,2kinghenryiv,1598\nguests,1,2kinghenryiv,1598\nburden,1,2kinghenryiv,1598\npropose,1,2kinghenryiv,1598\nGasping,1,2kinghenryiv,1598\nflower,1,2kinghenryiv,1598\ndame,1,2kinghenryiv,1598\npamper'd,1,2kinghenryiv,1598\ndamn,1,2kinghenryiv,1598\nflown,1,2kinghenryiv,1598\nChester,1,2kinghenryiv,1598\ncakes,1,2kinghenryiv,1598\nusurpation,1,2kinghenryiv,1598\nwills,1,2kinghenryiv,1598\nhe'ld,1,2kinghenryiv,1598\ndivided,1,2kinghenryiv,1598\ncreditors,1,2kinghenryiv,1598\nsmell,1,2kinghenryiv,1598\nWorthies,1,2kinghenryiv,1598\nscalds,1,2kinghenryiv,1598\nstings,1,2kinghenryiv,1598\ninheritor,1,2kinghenryiv,1598\nFain,1,2kinghenryiv,1598\n'How,1,2kinghenryiv,1598\nwantest,1,2kinghenryiv,1598\ndwelling,1,2kinghenryiv,1598\nFair,1,2kinghenryiv,1598\ninsinew'd,1,2kinghenryiv,1598\nStaying,1,2kinghenryiv,1598\nden,1,2kinghenryiv,1598\nexpire,1,2kinghenryiv,1598\ncorporal,1,2kinghenryiv,1598\nscales,1,2kinghenryiv,1598\nfigures,1,2kinghenryiv,1598\ntainted,1,2kinghenryiv,1598\nmix,1,2kinghenryiv,1598\npronounce,1,2kinghenryiv,1598\nsoundly,1,2kinghenryiv,1598\neyelids,1,2kinghenryiv,1598\nlambkin,1,2kinghenryiv,1598\nConcurring,1,2kinghenryiv,1598\nkill,1,2kinghenryiv,1598\ncharity,1,2kinghenryiv,1598\nfillip,1,2kinghenryiv,1598\nsawed,1,2kinghenryiv,1598\ndoting,1,2kinghenryiv,1598\nforbear,1,2kinghenryiv,1598\nparley,1,2kinghenryiv,1598\nshoes,1,2kinghenryiv,1598\nFind,1,2kinghenryiv,1598\nflattering,1,2kinghenryiv,1598\navaunt,1,2kinghenryiv,1598\nbids,1,2kinghenryiv,1598\nHector,1,2kinghenryiv,1598\ntread,1,2kinghenryiv,1598\ncoped,1,2kinghenryiv,1598\nAgamemnon,1,2kinghenryiv,1598\nhunting,1,2kinghenryiv,1598\nchivalry,1,2kinghenryiv,1598\nmerchant's,1,2kinghenryiv,1598\ndim,1,2kinghenryiv,1598\ne'en,1,2kinghenryiv,1598\ne'er,1,2kinghenryiv,1598\nhold'st,1,2kinghenryiv,1598\ndurance,1,2kinghenryiv,1598\nobserving,1,2kinghenryiv,1598\ndig,1,2kinghenryiv,1598\nFill,1,2kinghenryiv,1598\nseek'st,1,2kinghenryiv,1598\ndegrees,1,2kinghenryiv,1598\nQuoit,1,2kinghenryiv,1598\nending,1,2kinghenryiv,1598\nsway,1,2kinghenryiv,1598\nlads,1,2kinghenryiv,1598\nlargely,1,2kinghenryiv,1598\nWALES,1,2kinghenryiv,1598\nremembered,1,2kinghenryiv,1598\nConfound,1,2kinghenryiv,1598\nbrave,2,2kinghenryiv,1598\nattended,2,2kinghenryiv,1598\ntreason,2,2kinghenryiv,1598\ndischarged,2,2kinghenryiv,1598\nevent,2,2kinghenryiv,1598\nlusty,2,2kinghenryiv,1598\nstaves,2,2kinghenryiv,1598\nsweetheart,2,2kinghenryiv,1598\nadvised,2,2kinghenryiv,1598\nmuster,2,2kinghenryiv,1598\nsuffer,2,2kinghenryiv,1598\njoin,2,2kinghenryiv,1598\nadvice,2,2kinghenryiv,1598\nderived,2,2kinghenryiv,1598\nfathers,2,2kinghenryiv,1598\nHear,2,2kinghenryiv,1598\ncountry,2,2kinghenryiv,1598\nwrit,2,2kinghenryiv,1598\npeasant,2,2kinghenryiv,1598\nshadows,2,2kinghenryiv,1598\nran,2,2kinghenryiv,1598\nhasty,2,2kinghenryiv,1598\nrock,2,2kinghenryiv,1598\nbones,2,2kinghenryiv,1598\nascends,2,2kinghenryiv,1598\npurge,2,2kinghenryiv,1598\nmend,2,2kinghenryiv,1598\nscene,2,2kinghenryiv,1598\nday's,2,2kinghenryiv,1598\ncounties,2,2kinghenryiv,1598\nworshipful,2,2kinghenryiv,1598\nroad,2,2kinghenryiv,1598\nmelt,2,2kinghenryiv,1598\ncommotion,2,2kinghenryiv,1598\nloosely,2,2kinghenryiv,1598\nswifter,2,2kinghenryiv,1598\nlaughter,2,2kinghenryiv,1598\ntruly,2,2kinghenryiv,1598\neight,2,2kinghenryiv,1598\nMust,2,2kinghenryiv,1598\nfinger,2,2kinghenryiv,1598\nspake,2,2kinghenryiv,1598\nmere,2,2kinghenryiv,1598\ndecay,2,2kinghenryiv,1598\nruffian,2,2kinghenryiv,1598\nWarkworth,2,2kinghenryiv,1598\nprisoner,2,2kinghenryiv,1598\naprons,2,2kinghenryiv,1598\nlearn'd,2,2kinghenryiv,1598\nerrant,2,2kinghenryiv,1598\npottle,2,2kinghenryiv,1598\nappear,2,2kinghenryiv,1598\nthroat,2,2kinghenryiv,1598\ncowardice,2,2kinghenryiv,1598\nnought,2,2kinghenryiv,1598\nworms,2,2kinghenryiv,1598\nsort,2,2kinghenryiv,1598\niron,2,2kinghenryiv,1598\ntrust,2,2kinghenryiv,1598\nlief,2,2kinghenryiv,1598\njoys,2,2kinghenryiv,1598\nscruple,2,2kinghenryiv,1598\nmoist,2,2kinghenryiv,1598\nGloucester,2,2kinghenryiv,1598\nconger,2,2kinghenryiv,1598\ninsurrection,2,2kinghenryiv,1598\nearly,2,2kinghenryiv,1598\nmercy,2,2kinghenryiv,1598\nbending,2,2kinghenryiv,1598\ngiant,2,2kinghenryiv,1598\nbirth,2,2kinghenryiv,1598\njest,2,2kinghenryiv,1598\npins,2,2kinghenryiv,1598\ndrive,2,2kinghenryiv,1598\nworking,2,2kinghenryiv,1598\nbearing,2,2kinghenryiv,1598\ndance,2,2kinghenryiv,1598\nstream,2,2kinghenryiv,1598\nassembly,2,2kinghenryiv,1598\ngrows,2,2kinghenryiv,1598\nline,2,2kinghenryiv,1598\nAn't,2,2kinghenryiv,1598\nincensed,2,2kinghenryiv,1598\nlimb,2,2kinghenryiv,1598\nbroken,2,2kinghenryiv,1598\npike,2,2kinghenryiv,1598\nthou'rt,2,2kinghenryiv,1598\nKeep,2,2kinghenryiv,1598\nafterwards,2,2kinghenryiv,1598\nMuch,2,2kinghenryiv,1598\nDancer,2,2kinghenryiv,1598\nOnly,2,2kinghenryiv,1598\nsoil,2,2kinghenryiv,1598\ncalm,2,2kinghenryiv,1598\ngross,2,2kinghenryiv,1598\nbragging,2,2kinghenryiv,1598\nhanging,2,2kinghenryiv,1598\nglass,2,2kinghenryiv,1598\nmaking,2,2kinghenryiv,1598\nfools,2,2kinghenryiv,1598\nNor,2,2kinghenryiv,1598\nsoft,2,2kinghenryiv,1598\nfurious,2,2kinghenryiv,1598\nblessed,2,2kinghenryiv,1598\nvisit,2,2kinghenryiv,1598\namity,2,2kinghenryiv,1598\nboar,2,2kinghenryiv,1598\nsix,2,2kinghenryiv,1598\nextraordinarily,2,2kinghenryiv,1598\nhistory,2,2kinghenryiv,1598\nGet,2,2kinghenryiv,1598\nbound,2,2kinghenryiv,1598\nstriking,2,2kinghenryiv,1598\nMorton,2,2kinghenryiv,1598\ncaliver,2,2kinghenryiv,1598\nForest,2,2kinghenryiv,1598\nsaddle,2,2kinghenryiv,1598\nyeoman,2,2kinghenryiv,1598\nvice,2,2kinghenryiv,1598\nwake,2,2kinghenryiv,1598\nnine,2,2kinghenryiv,1598\nsow,2,2kinghenryiv,1598\nchurch,2,2kinghenryiv,1598\nSuch,2,2kinghenryiv,1598\nconfident,2,2kinghenryiv,1598\nmelting,2,2kinghenryiv,1598\nWas,2,2kinghenryiv,1598\nglutton,2,2kinghenryiv,1598\n't,2,2kinghenryiv,1598\ndisgrace,2,2kinghenryiv,1598\ndeeply,2,2kinghenryiv,1598\nwings,2,2kinghenryiv,1598\nsets,2,2kinghenryiv,1598\nconjunction,2,2kinghenryiv,1598\nawful,2,2kinghenryiv,1598\noffence,2,2kinghenryiv,1598\ntaught,2,2kinghenryiv,1598\ncompound,2,2kinghenryiv,1598\nreceived,2,2kinghenryiv,1598\nFrance,2,2kinghenryiv,1598\npoints,2,2kinghenryiv,1598\nfigure,2,2kinghenryiv,1598\nWhereon,2,2kinghenryiv,1598\nfault,2,2kinghenryiv,1598\ninstance,2,2kinghenryiv,1598\nfruit,2,2kinghenryiv,1598\nhousehold,2,2kinghenryiv,1598\nWherein,2,2kinghenryiv,1598\nvanity,2,2kinghenryiv,1598\npoorest,2,2kinghenryiv,1598\nreverence,2,2kinghenryiv,1598\nimpartial,2,2kinghenryiv,1598\nplainly,2,2kinghenryiv,1598\ntah,2,2kinghenryiv,1598\nputting,2,2kinghenryiv,1598\nlanguage,2,2kinghenryiv,1598\ntap,2,2kinghenryiv,1598\nkneel,2,2kinghenryiv,1598\nOne,2,2kinghenryiv,1598\nwant,2,2kinghenryiv,1598\nruff,2,2kinghenryiv,1598\nwipe,2,2kinghenryiv,1598\nSURREY,2,2kinghenryiv,1598\ndies,2,2kinghenryiv,1598\ndiet,2,2kinghenryiv,1598\nesquire,2,2kinghenryiv,1598\nimperious,2,2kinghenryiv,1598\nsense,2,2kinghenryiv,1598\nseem'd,2,2kinghenryiv,1598\nbona,2,2kinghenryiv,1598\nbreeding,2,2kinghenryiv,1598\nboot,2,2kinghenryiv,1598\nsteep,2,2kinghenryiv,1598\ncoats,2,2kinghenryiv,1598\nsweating,2,2kinghenryiv,1598\nwits,2,2kinghenryiv,1598\nobserve,2,2kinghenryiv,1598\nAmurath,2,2kinghenryiv,1598\nknowledge,2,2kinghenryiv,1598\nha',2,2kinghenryiv,1598\nsauciness,2,2kinghenryiv,1598\nI',2,2kinghenryiv,1598\ninvest,2,2kinghenryiv,1598\nHold,2,2kinghenryiv,1598\ndrinking,2,2kinghenryiv,1598\ncrack,2,2kinghenryiv,1598\nutter,2,2kinghenryiv,1598\nserving,2,2kinghenryiv,1598\ninvent,2,2kinghenryiv,1598\nloath,2,2kinghenryiv,1598\nshortly,2,2kinghenryiv,1598\nwash'd,2,2kinghenryiv,1598\nscurvy,2,2kinghenryiv,1598\nproof,2,2kinghenryiv,1598\ntreble,2,2kinghenryiv,1598\nPay,2,2kinghenryiv,1598\nstab,2,2kinghenryiv,1598\nwisdom,2,2kinghenryiv,1598\ntear,2,2kinghenryiv,1598\nExceeding,2,2kinghenryiv,1598\nmedicine,2,2kinghenryiv,1598\napprove,2,2kinghenryiv,1598\nbee,2,2kinghenryiv,1598\npleasure,2,2kinghenryiv,1598\nquick,2,2kinghenryiv,1598\nshillings,2,2kinghenryiv,1598\nLet's,2,2kinghenryiv,1598\ntroops,2,2kinghenryiv,1598\nchanges,2,2kinghenryiv,1598\nWelsh,2,2kinghenryiv,1598\nmonstrous,2,2kinghenryiv,1598\nbull,2,2kinghenryiv,1598\nsits,2,2kinghenryiv,1598\nsorry,2,2kinghenryiv,1598\nOpen,2,2kinghenryiv,1598\nbusy,2,2kinghenryiv,1598\nswaggerer,2,2kinghenryiv,1598\nrebel,2,2kinghenryiv,1598\ndove,2,2kinghenryiv,1598\ntables,2,2kinghenryiv,1598\nimmediate,2,2kinghenryiv,1598\nwear,2,2kinghenryiv,1598\nbeyond,2,2kinghenryiv,1598\nfifty,2,2kinghenryiv,1598\nBeadles,2,2kinghenryiv,1598\nSpeak,2,2kinghenryiv,1598\nSaint,2,2kinghenryiv,1598\nsatin,2,2kinghenryiv,1598\nDidst,2,2kinghenryiv,1598\nsilk,2,2kinghenryiv,1598\nconquest,2,2kinghenryiv,1598\ndegree,2,2kinghenryiv,1598\ntravel,2,2kinghenryiv,1598\nused,2,2kinghenryiv,1598\npreserve,2,2kinghenryiv,1598\nbeer,2,2kinghenryiv,1598\nsurvey,2,2kinghenryiv,1598\ngown,2,2kinghenryiv,1598\ndivine,2,2kinghenryiv,1598\nstronger,2,2kinghenryiv,1598\npains,2,2kinghenryiv,1598\nfoutre,2,2kinghenryiv,1598\ngrace's,2,2kinghenryiv,1598\nashamed,2,2kinghenryiv,1598\nnorth,2,2kinghenryiv,1598\nlately,2,2kinghenryiv,1598\ncrowns,2,2kinghenryiv,1598\nuses,2,2kinghenryiv,1598\ndogs,2,2kinghenryiv,1598\ndeed,2,2kinghenryiv,1598\nstory,2,2kinghenryiv,1598\npromised,2,2kinghenryiv,1598\nplate,2,2kinghenryiv,1598\nNature's,2,2kinghenryiv,1598\nkeeping,2,2kinghenryiv,1598\nrascal's,2,2kinghenryiv,1598\nsixpence,2,2kinghenryiv,1598\nservant,2,2kinghenryiv,1598\nconsider,2,2kinghenryiv,1598\ndebt,2,2kinghenryiv,1598\ngentlewomen,2,2kinghenryiv,1598\nago,2,2kinghenryiv,1598\nUnless,2,2kinghenryiv,1598\nplays,2,2kinghenryiv,1598\ngilt,2,2kinghenryiv,1598\ngait,2,2kinghenryiv,1598\ndignity,2,2kinghenryiv,1598\ndeaf,2,2kinghenryiv,1598\nvictory,2,2kinghenryiv,1598\nlend,2,2kinghenryiv,1598\nenforce,2,2kinghenryiv,1598\nhusband,2,2kinghenryiv,1598\nale,2,2kinghenryiv,1598\nah,2,2kinghenryiv,1598\nnewly,2,2kinghenryiv,1598\nwench,2,2kinghenryiv,1598\ncrosses,2,2kinghenryiv,1598\nforgotten,2,2kinghenryiv,1598\nfeast,2,2kinghenryiv,1598\nmove,2,2kinghenryiv,1598\nsmall,2,2kinghenryiv,1598\njohns,2,2kinghenryiv,1598\nGrooms,2,2kinghenryiv,1598\nbanish,2,2kinghenryiv,1598\nidly,2,2kinghenryiv,1598\nidle,2,2kinghenryiv,1598\nhadst,2,2kinghenryiv,1598\nla,2,2kinghenryiv,1598\nwherein,2,2kinghenryiv,1598\nspent,2,2kinghenryiv,1598\nloved,2,2kinghenryiv,1598\nlose,2,2kinghenryiv,1598\nact,2,2kinghenryiv,1598\ncommandment,2,2kinghenryiv,1598\nswell'd,2,2kinghenryiv,1598\nforgot,2,2kinghenryiv,1598\nwithered,2,2kinghenryiv,1598\npure,2,2kinghenryiv,1598\nmen's,2,2kinghenryiv,1598\nDouble,2,2kinghenryiv,1598\nCame,2,2kinghenryiv,1598\nkilled,2,2kinghenryiv,1598\nchoice,2,2kinghenryiv,1598\nrunning,2,2kinghenryiv,1598\nplot,2,2kinghenryiv,1598\nsoldiership,2,2kinghenryiv,1598\nMost,2,2kinghenryiv,1598\nweapon,2,2kinghenryiv,1598\nremember'd,2,2kinghenryiv,1598\nforestall'd,2,2kinghenryiv,1598\nChristian,2,2kinghenryiv,1598\nnation,2,2kinghenryiv,1598\ntrade,2,2kinghenryiv,1598\nplain,2,2kinghenryiv,1598\ndrawn,2,2kinghenryiv,1598\nknocking,2,2kinghenryiv,1598\njoyful,2,2kinghenryiv,1598\nschool,2,2kinghenryiv,1598\nsweetest,2,2kinghenryiv,1598\npraise,2,2kinghenryiv,1598\nacquaintance,2,2kinghenryiv,1598\nknocks,2,2kinghenryiv,1598\nmanned,2,2kinghenryiv,1598\npair,2,2kinghenryiv,1598\npain,2,2kinghenryiv,1598\nheaviness,2,2kinghenryiv,1598\npaid,2,2kinghenryiv,1598\nfiery,2,2kinghenryiv,1598\nape,2,2kinghenryiv,1598\ndevise,2,2kinghenryiv,1598\nstones,2,2kinghenryiv,1598\nhate,2,2kinghenryiv,1598\nalive,2,2kinghenryiv,1598\nshot,2,2kinghenryiv,1598\nMonmouth's,2,2kinghenryiv,1598\ncounsellors,2,2kinghenryiv,1598\nfiend,2,2kinghenryiv,1598\ntyranny,2,2kinghenryiv,1598\nbearer,2,2kinghenryiv,1598\ncourses,2,2kinghenryiv,1598\nass,2,2kinghenryiv,1598\nforms,2,2kinghenryiv,1598\nnearest,2,2kinghenryiv,1598\narmour,2,2kinghenryiv,1598\nRobin,2,2kinghenryiv,1598\nbeggars,2,2kinghenryiv,1598\nundone,2,2kinghenryiv,1598\nnative,2,2kinghenryiv,1598\n'you,2,2kinghenryiv,1598\nhere's,2,2kinghenryiv,1598\nchange,2,2kinghenryiv,1598\nEurope,2,2kinghenryiv,1598\nleaf,2,2kinghenryiv,1598\nventured,2,2kinghenryiv,1598\nShould,2,2kinghenryiv,1598\nluck,2,2kinghenryiv,1598\nborrow,2,2kinghenryiv,1598\nlean,2,2kinghenryiv,1598\nopinions,2,2kinghenryiv,1598\nrender'd,2,2kinghenryiv,1598\nkeeps,2,2kinghenryiv,1598\nheavier,2,2kinghenryiv,1598\ncastle,2,2kinghenryiv,1598\nworkings,2,2kinghenryiv,1598\nempty,2,2kinghenryiv,1598\nCanst,2,2kinghenryiv,1598\nbreathed,2,2kinghenryiv,1598\nmischief,2,2kinghenryiv,1598\nGad's,2,2kinghenryiv,1598\nLords,2,2kinghenryiv,1598\nmountains,2,2kinghenryiv,1598\nnose,2,2kinghenryiv,1598\ncontains,2,2kinghenryiv,1598\nmutton,2,2kinghenryiv,1598\nperturbation,2,2kinghenryiv,1598\nHang,2,2kinghenryiv,1598\ncontention,2,2kinghenryiv,1598\nriots,2,2kinghenryiv,1598\nbears,2,2kinghenryiv,1598\nfaint,2,2kinghenryiv,1598\nwildness,2,2kinghenryiv,1598\ncompanions,2,2kinghenryiv,1598\newes,2,2kinghenryiv,1598\ntenor,2,2kinghenryiv,1598\ninns,2,2kinghenryiv,1598\nsirrah,2,2kinghenryiv,1598\nlingers,2,2kinghenryiv,1598\nDown,2,2kinghenryiv,1598\nwritten,2,2kinghenryiv,1598\nlearning,2,2kinghenryiv,1598\nadmit,2,2kinghenryiv,1598\nDerives,2,2kinghenryiv,1598\nmount,2,2kinghenryiv,1598\nquickly,2,2kinghenryiv,1598\nSet,2,2kinghenryiv,1598\nfreely,2,2kinghenryiv,1598\nfamous,2,2kinghenryiv,1598\nprecious,2,2kinghenryiv,1598\nleaves,2,2kinghenryiv,1598\nsinging,2,2kinghenryiv,1598\nteeth,2,2kinghenryiv,1598\nmightst,2,2kinghenryiv,1598\ntempest,2,2kinghenryiv,1598\nmale,2,2kinghenryiv,1598\nmerrily,2,2kinghenryiv,1598\nwrought,2,2kinghenryiv,1598\nkeeper,2,2kinghenryiv,1598\nmandrake,2,2kinghenryiv,1598\n'gainst,2,2kinghenryiv,1598\ncourage,2,2kinghenryiv,1598\npresently,2,2kinghenryiv,1598\nShouts,2,2kinghenryiv,1598\nwoe,2,2kinghenryiv,1598\nmisled,2,2kinghenryiv,1598\nbrains,2,2kinghenryiv,1598\nstarved,2,2kinghenryiv,1598\ninch,2,2kinghenryiv,1598\ngreatest,2,2kinghenryiv,1598\nfish,2,2kinghenryiv,1598\nbrethren,2,2kinghenryiv,1598\nhigher,2,2kinghenryiv,1598\nhypocrite,2,2kinghenryiv,1598\naccompanied,2,2kinghenryiv,1598\nsayest,2,2kinghenryiv,1598\nQuestion,2,2kinghenryiv,1598\ndesires,2,2kinghenryiv,1598\nwet,2,2kinghenryiv,1598\nfirm,2,2kinghenryiv,1598\nwrath,2,2kinghenryiv,1598\no'clock,2,2kinghenryiv,1598\nones,2,2kinghenryiv,1598\nmusters,2,2kinghenryiv,1598\nComing,2,2kinghenryiv,1598\nimpudent,2,2kinghenryiv,1598\nopinion,2,2kinghenryiv,1598\nflies,2,2kinghenryiv,1598\nindictment,2,2kinghenryiv,1598\nHotspur,2,2kinghenryiv,1598\nbread,2,2kinghenryiv,1598\nconfined,2,2kinghenryiv,1598\nring,2,2kinghenryiv,1598\nloving,2,2kinghenryiv,1598\nthird,2,2kinghenryiv,1598\nupright,2,2kinghenryiv,1598\nabundance,2,2kinghenryiv,1598\nbeastly,2,2kinghenryiv,1598\nriot,2,2kinghenryiv,1598\nDead,2,2kinghenryiv,1598\nlightness,2,2kinghenryiv,1598\nripe,2,2kinghenryiv,1598\ndecrees,2,2kinghenryiv,1598\ndust,2,2kinghenryiv,1598\nAncient,2,2kinghenryiv,1598\nwax,2,2kinghenryiv,1598\nCan,2,2kinghenryiv,1598\nduty,2,2kinghenryiv,1598\naudience,2,2kinghenryiv,1598\nswinged,2,2kinghenryiv,1598\noath,2,2kinghenryiv,1598\ngarland,2,2kinghenryiv,1598\nassure,2,2kinghenryiv,1598\npride,2,2kinghenryiv,1598\nbullets,2,2kinghenryiv,1598\nbedfellow,2,2kinghenryiv,1598\nadmitted,2,2kinghenryiv,1598\nPrinces,2,2kinghenryiv,1598\nproceeding,2,2kinghenryiv,1598\nbucket,2,2kinghenryiv,1598\nenforced,2,2kinghenryiv,1598\ncaught,2,2kinghenryiv,1598\njoints,2,2kinghenryiv,1598\nmuddy,2,2kinghenryiv,1598\ntakes,2,2kinghenryiv,1598\nfallen,2,2kinghenryiv,1598\ntaken,2,2kinghenryiv,1598\nreports,2,2kinghenryiv,1598\nrotten,2,2kinghenryiv,1598\nweeping,2,2kinghenryiv,1598\nopposite,2,2kinghenryiv,1598\njerkins,2,2kinghenryiv,1598\nrain,2,2kinghenryiv,1598\nyoke,2,2kinghenryiv,1598\nwolf,2,2kinghenryiv,1598\nsober,2,2kinghenryiv,1598\nflow'd,2,2kinghenryiv,1598\nminister,2,2kinghenryiv,1598\nfain,2,2kinghenryiv,1598\nheirs,2,2kinghenryiv,1598\ntable,2,2kinghenryiv,1598\n'll,2,2kinghenryiv,1598\nprofane,2,2kinghenryiv,1598\nminds,2,2kinghenryiv,1598\ndiseased,2,2kinghenryiv,1598\nstolen,2,2kinghenryiv,1598\nunited,2,2kinghenryiv,1598\nThat's,2,2kinghenryiv,1598\nhumour,2,2kinghenryiv,1598\npleased,2,2kinghenryiv,1598\nworn,2,2kinghenryiv,1598\ncolours,2,2kinghenryiv,1598\nthrew,2,2kinghenryiv,1598\nwest,2,2kinghenryiv,1598\nfie,2,2kinghenryiv,1598\nfit,2,2kinghenryiv,1598\ngalls,2,2kinghenryiv,1598\nperfect,2,2kinghenryiv,1598\npassion,2,2kinghenryiv,1598\nwheat,2,2kinghenryiv,1598\nfill,2,2kinghenryiv,1598\nwide,2,2kinghenryiv,1598\nshows,2,2kinghenryiv,1598\nunfold,2,2kinghenryiv,1598\nHereford,2,2kinghenryiv,1598\nlived,2,2kinghenryiv,1598\nbate,2,2kinghenryiv,1598\nbird,2,2kinghenryiv,1598\ncountenanced,2,2kinghenryiv,1598\nappointed,2,2kinghenryiv,1598\nWednesday,2,2kinghenryiv,1598\nlarge,2,2kinghenryiv,1598\nEach,2,2kinghenryiv,1598\nfare,2,2kinghenryiv,1598\ntrumpets,2,2kinghenryiv,1598\ndrinks,2,2kinghenryiv,1598\nWelcome,2,2kinghenryiv,1598\nbind,2,2kinghenryiv,1598\nappearance,2,2kinghenryiv,1598\notherwise,2,2kinghenryiv,1598\nshirts,2,2kinghenryiv,1598\nholes,2,2kinghenryiv,1598\nopenly,2,2kinghenryiv,1598\nPrick,2,2kinghenryiv,1598\nLed,2,2kinghenryiv,1598\npledge,2,2kinghenryiv,1598\nholds,2,2kinghenryiv,1598\nswears,2,2kinghenryiv,1598\nholy,2,2kinghenryiv,1598\nquit,2,2kinghenryiv,1598\nclean,2,2kinghenryiv,1598\narticles,2,2kinghenryiv,1598\nqueller,2,2kinghenryiv,1598\nargument,2,2kinghenryiv,1598\nwinter,2,2kinghenryiv,1598\nflood,2,2kinghenryiv,1598\nliver,2,2kinghenryiv,1598\ntiny,2,2kinghenryiv,1598\nWherefore,2,2kinghenryiv,1598\nhorsed,2,2kinghenryiv,1598\nfitter,2,2kinghenryiv,1598\ngoodman,2,2kinghenryiv,1598\nintents,2,2kinghenryiv,1598\nalso,2,2kinghenryiv,1598\nmanage,2,2kinghenryiv,1598\nperils,2,2kinghenryiv,1598\nTroy,2,2kinghenryiv,1598\nhunt,2,2kinghenryiv,1598\nfourteen,2,2kinghenryiv,1598\ncommission,2,2kinghenryiv,1598\nsupplies,2,2kinghenryiv,1598\nfeeder,2,2kinghenryiv,1598\nalways,2,2kinghenryiv,1598\ninward,2,2kinghenryiv,1598\nseek,2,2kinghenryiv,1598\nsouth,2,2kinghenryiv,1598\nsupposed,2,2kinghenryiv,1598\nmarvellous,2,2kinghenryiv,1598\nended,2,2kinghenryiv,1598\nstrengths,2,2kinghenryiv,1598\ntells,2,2kinghenryiv,1598\nshapes,2,2kinghenryiv,1598\nbattle,2,2kinghenryiv,1598\nhulk,2,2kinghenryiv,1598\nDrawers,2,2kinghenryiv,1598\ntraitor,2,2kinghenryiv,1598\n'Your,2,2kinghenryiv,1598\nwearied,2,2kinghenryiv,1598\ngreedy,2,2kinghenryiv,1598\nentreat,2,2kinghenryiv,1598\nrebel's,2,2kinghenryiv,1598\nsuffice,2,2kinghenryiv,1598\nHumphrey,2,2kinghenryiv,1598\npost,2,2kinghenryiv,1598\nSmithfield,2,2kinghenryiv,1598\nleg,2,2kinghenryiv,1598\nprison,2,2kinghenryiv,1598\npigeons,2,2kinghenryiv,1598\nmother's,2,2kinghenryiv,1598\nalas,2,2kinghenryiv,1598\nGlendower,2,2kinghenryiv,1598\ndrawer,2,2kinghenryiv,1598\ngreeting,2,2kinghenryiv,1598\nbarren,2,2kinghenryiv,1598\nmethought,2,2kinghenryiv,1598\nmaster's,2,2kinghenryiv,1598\nchances,2,2kinghenryiv,1598\nslumber,2,2kinghenryiv,1598\nwearing,2,2kinghenryiv,1598\ncareful,2,2kinghenryiv,1598\nbalance,2,2kinghenryiv,1598\nconduct,2,2kinghenryiv,1598\nburst,2,2kinghenryiv,1598\nforces,2,2kinghenryiv,1598\nDorothy,2,2kinghenryiv,1598\ndoing,2,2kinghenryiv,1598\ncorrection,2,2kinghenryiv,1598\nThine's,2,2kinghenryiv,1598\nsister,2,2kinghenryiv,1598\nelbow,2,2kinghenryiv,1598\nsovereign,2,2kinghenryiv,1598\nnobody,2,2kinghenryiv,1598\nemployment,2,2kinghenryiv,1598\nburnt,2,2kinghenryiv,1598\nlion,2,2kinghenryiv,1598\nphysic,2,2kinghenryiv,1598\nappearing,2,2kinghenryiv,1598\nvalorous,2,2kinghenryiv,1598\ntelling,2,2kinghenryiv,1598\nfever,2,2kinghenryiv,1598\nmilitary,2,2kinghenryiv,1598\nphrase,2,2kinghenryiv,1598\ninherit,2,2kinghenryiv,1598\nvirtue,2,2kinghenryiv,1598\nFifth,2,2kinghenryiv,1598\npeer,2,2kinghenryiv,1598\nsilver,2,2kinghenryiv,1598\nbooks,2,2kinghenryiv,1598\nspring,2,2kinghenryiv,1598\nGaultree,2,2kinghenryiv,1598\ngluttony,2,2kinghenryiv,1598\nboisterous,2,2kinghenryiv,1598\nframe,2,2kinghenryiv,1598\nweight,2,2kinghenryiv,1598\nstratagem,2,2kinghenryiv,1598\ncatch,2,2kinghenryiv,1598\nblessing,2,2kinghenryiv,1598\ntop,2,2kinghenryiv,1598\nbred,2,2kinghenryiv,1598\nliest,2,2kinghenryiv,1598\nreverend,2,2kinghenryiv,1598\nleap'd,2,2kinghenryiv,1598\nshake,2,2kinghenryiv,1598\nshine,2,2kinghenryiv,1598\nfilthy,2,2kinghenryiv,1598\nundergo,2,2kinghenryiv,1598\nTake,2,2kinghenryiv,1598\nbrevity,2,2kinghenryiv,1598\nAccommodated,2,2kinghenryiv,1598\nprivate,2,2kinghenryiv,1598\nspeaker,2,2kinghenryiv,1598\nYorkshire,2,2kinghenryiv,1598\njustly,2,2kinghenryiv,1598\nHonest,2,2kinghenryiv,1598\nneighbour,2,2kinghenryiv,1598\nbreathe,2,2kinghenryiv,1598\nobedience,2,2kinghenryiv,1598\npetticoat,2,2kinghenryiv,1598\nvilely,2,2kinghenryiv,1598\nsummer,2,2kinghenryiv,1598\nredress'd,2,2kinghenryiv,1598\nheed,3,2kinghenryiv,1598\narmies,3,2kinghenryiv,1598\nswords,3,2kinghenryiv,1598\nc,3,2kinghenryiv,1598\ntaking,3,2kinghenryiv,1598\nred,3,2kinghenryiv,1598\ndrop,3,2kinghenryiv,1598\nmotion,3,2kinghenryiv,1598\nheir,3,2kinghenryiv,1598\nnecessities,3,2kinghenryiv,1598\nforswear,3,2kinghenryiv,1598\nwears,3,2kinghenryiv,1598\nbusiness,3,2kinghenryiv,1598\nFie,3,2kinghenryiv,1598\nzeal,3,2kinghenryiv,1598\nheart's,3,2kinghenryiv,1598\nWilt,3,2kinghenryiv,1598\nroar,3,2kinghenryiv,1598\njoy,3,2kinghenryiv,1598\nNever,3,2kinghenryiv,1598\nwhereupon,3,2kinghenryiv,1598\nvain,3,2kinghenryiv,1598\nhonourable,3,2kinghenryiv,1598\nfought,3,2kinghenryiv,1598\nmaintain,3,2kinghenryiv,1598\nHarry's,3,2kinghenryiv,1598\nwithal,3,2kinghenryiv,1598\nlaugh,3,2kinghenryiv,1598\nthirty,3,2kinghenryiv,1598\nmarshal,3,2kinghenryiv,1598\nspare,3,2kinghenryiv,1598\ncast,3,2kinghenryiv,1598\npractised,3,2kinghenryiv,1598\ndelivered,3,2kinghenryiv,1598\nchin,3,2kinghenryiv,1598\ntrumpet,3,2kinghenryiv,1598\ncheer,3,2kinghenryiv,1598\ncheek,3,2kinghenryiv,1598\npaper,3,2kinghenryiv,1598\nwait,3,2kinghenryiv,1598\nkin,3,2kinghenryiv,1598\nblack,3,2kinghenryiv,1598\nfurther,3,2kinghenryiv,1598\npillow,3,2kinghenryiv,1598\nstands,3,2kinghenryiv,1598\nsin,3,2kinghenryiv,1598\n'twas,3,2kinghenryiv,1598\nscorn,3,2kinghenryiv,1598\nfell,3,2kinghenryiv,1598\nperil,3,2kinghenryiv,1598\nsworn,3,2kinghenryiv,1598\nFarewell,3,2kinghenryiv,1598\nwhere's,3,2kinghenryiv,1598\nacquainted,3,2kinghenryiv,1598\nlooks,3,2kinghenryiv,1598\nbecomes,3,2kinghenryiv,1598\npoverty,3,2kinghenryiv,1598\nourselves,3,2kinghenryiv,1598\nThese,3,2kinghenryiv,1598\nOut,3,2kinghenryiv,1598\nways,3,2kinghenryiv,1598\nOfficers,3,2kinghenryiv,1598\nexceeding,3,2kinghenryiv,1598\nterms,3,2kinghenryiv,1598\nexpedition,3,2kinghenryiv,1598\nsum,3,2kinghenryiv,1598\ncompanion,3,2kinghenryiv,1598\nfeed,3,2kinghenryiv,1598\nfearful,3,2kinghenryiv,1598\nfeel,3,2kinghenryiv,1598\npromise,3,2kinghenryiv,1598\nparliament,3,2kinghenryiv,1598\nPlease,3,2kinghenryiv,1598\nedge,3,2kinghenryiv,1598\nturned,3,2kinghenryiv,1598\ndied,3,2kinghenryiv,1598\npretty,3,2kinghenryiv,1598\nmeat,3,2kinghenryiv,1598\nTurning,3,2kinghenryiv,1598\nsteel,3,2kinghenryiv,1598\nThere's,3,2kinghenryiv,1598\nwast,3,2kinghenryiv,1598\napoplexy,3,2kinghenryiv,1598\nconditions,3,2kinghenryiv,1598\nbig,3,2kinghenryiv,1598\nFaith,3,2kinghenryiv,1598\nauthority,3,2kinghenryiv,1598\nmanners,3,2kinghenryiv,1598\nHoly,3,2kinghenryiv,1598\nWindsor,3,2kinghenryiv,1598\nmeasure,3,2kinghenryiv,1598\nAt,3,2kinghenryiv,1598\npatience,3,2kinghenryiv,1598\nyouthful,3,2kinghenryiv,1598\nblows,3,2kinghenryiv,1598\nWhiles,3,2kinghenryiv,1598\ndeeds,3,2kinghenryiv,1598\nLo,3,2kinghenryiv,1598\nbad,3,2kinghenryiv,1598\nNightwork,3,2kinghenryiv,1598\nunless,3,2kinghenryiv,1598\ndenied,3,2kinghenryiv,1598\nWithin,3,2kinghenryiv,1598\nbeg,3,2kinghenryiv,1598\narrest,3,2kinghenryiv,1598\npox,3,2kinghenryiv,1598\nnice,3,2kinghenryiv,1598\ngod,3,2kinghenryiv,1598\nweep,3,2kinghenryiv,1598\nwhereby,3,2kinghenryiv,1598\nmiscarry,3,2kinghenryiv,1598\nbehind,3,2kinghenryiv,1598\nbell,3,2kinghenryiv,1598\ncap,3,2kinghenryiv,1598\norchard,3,2kinghenryiv,1598\npeople,3,2kinghenryiv,1598\nPut,3,2kinghenryiv,1598\ntwice,3,2kinghenryiv,1598\nfarewell,3,2kinghenryiv,1598\nbuy,3,2kinghenryiv,1598\nlonger,3,2kinghenryiv,1598\ngout,3,2kinghenryiv,1598\nvantage,3,2kinghenryiv,1598\nbegin,3,2kinghenryiv,1598\nLand,3,2kinghenryiv,1598\nstay'd,3,2kinghenryiv,1598\naffection,3,2kinghenryiv,1598\nconfess,3,2kinghenryiv,1598\nair,3,2kinghenryiv,1598\nFear,3,2kinghenryiv,1598\nHere's,3,2kinghenryiv,1598\nneeds,3,2kinghenryiv,1598\n'Fore,3,2kinghenryiv,1598\ncontinual,3,2kinghenryiv,1598\ntime's,3,2kinghenryiv,1598\nseeming,3,2kinghenryiv,1598\nredress,3,2kinghenryiv,1598\ndoes,3,2kinghenryiv,1598\nRUMOUR,3,2kinghenryiv,1598\nmanner,3,2kinghenryiv,1598\nforget,3,2kinghenryiv,1598\nhumours,3,2kinghenryiv,1598\nfears,3,2kinghenryiv,1598\nabide,3,2kinghenryiv,1598\nReads,3,2kinghenryiv,1598\ntemper,3,2kinghenryiv,1598\nloves,3,2kinghenryiv,1598\nendure,3,2kinghenryiv,1598\nPuff,3,2kinghenryiv,1598\nYes,3,2kinghenryiv,1598\nho,3,2kinghenryiv,1598\napparel,3,2kinghenryiv,1598\nBLUNT,3,2kinghenryiv,1598\ngreater,3,2kinghenryiv,1598\nready,3,2kinghenryiv,1598\nthrice,3,2kinghenryiv,1598\nhardly,3,2kinghenryiv,1598\nspeaks,3,2kinghenryiv,1598\nround,3,2kinghenryiv,1598\nshallow,3,2kinghenryiv,1598\nKnocking,3,2kinghenryiv,1598\nGaunt,3,2kinghenryiv,1598\nspur,3,2kinghenryiv,1598\nrushes,3,2kinghenryiv,1598\nappears,3,2kinghenryiv,1598\nshut,3,2kinghenryiv,1598\ndeny,3,2kinghenryiv,1598\nprovided,3,2kinghenryiv,1598\npluck,3,2kinghenryiv,1598\nopen,3,2kinghenryiv,1598\npage,3,2kinghenryiv,1598\nwasted,3,2kinghenryiv,1598\npoint,3,2kinghenryiv,1598\nbosom,3,2kinghenryiv,1598\nfear'd,3,2kinghenryiv,1598\nrevenge,3,2kinghenryiv,1598\nroll,3,2kinghenryiv,1598\nfew,3,2kinghenryiv,1598\nenemies,3,2kinghenryiv,1598\nenjoy,3,2kinghenryiv,1598\nnobles,3,2kinghenryiv,1598\nBetween,3,2kinghenryiv,1598\nMonmouth,3,2kinghenryiv,1598\nHARCOURT,3,2kinghenryiv,1598\nrestored,3,2kinghenryiv,1598\nequal,3,2kinghenryiv,1598\nhoney,3,2kinghenryiv,1598\nrank,3,2kinghenryiv,1598\nhill,3,2kinghenryiv,1598\nArchbishop,3,2kinghenryiv,1598\nnote,3,2kinghenryiv,1598\nBetter,3,2kinghenryiv,1598\ndress,3,2kinghenryiv,1598\napple,3,2kinghenryiv,1598\npenny,3,2kinghenryiv,1598\nrate,3,2kinghenryiv,1598\nbottle,3,2kinghenryiv,1598\nJustices,3,2kinghenryiv,1598\nblunt,3,2kinghenryiv,1598\ncandle,3,2kinghenryiv,1598\nobserved,3,2kinghenryiv,1598\nbottom,3,2kinghenryiv,1598\nslain,3,2kinghenryiv,1598\naffections,3,2kinghenryiv,1598\nyou'll,3,2kinghenryiv,1598\ncoronation,3,2kinghenryiv,1598\nseveral,3,2kinghenryiv,1598\ncloak,3,2kinghenryiv,1598\nchild,3,2kinghenryiv,1598\nDost,3,2kinghenryiv,1598\nSome,3,2kinghenryiv,1598\npurposes,3,2kinghenryiv,1598\nAll,3,2kinghenryiv,1598\nmare,3,2kinghenryiv,1598\ninjuries,3,2kinghenryiv,1598\nslave,3,2kinghenryiv,1598\nbecause,3,2kinghenryiv,1598\nleader,3,2kinghenryiv,1598\nshoulder,3,2kinghenryiv,1598\nWere,3,2kinghenryiv,1598\nclose,3,2kinghenryiv,1598\ntroublesome,3,2kinghenryiv,1598\nwrongs,3,2kinghenryiv,1598\nScotland,3,2kinghenryiv,1598\ngravy,3,2kinghenryiv,1598\nformer,3,2kinghenryiv,1598\nthrow,3,2kinghenryiv,1598\nwhy,3,2kinghenryiv,1598\nstomach,3,2kinghenryiv,1598\nknife,3,2kinghenryiv,1598\nfetch,3,2kinghenryiv,1598\nThus,3,2kinghenryiv,1598\nstick,3,2kinghenryiv,1598\n'The,3,2kinghenryiv,1598\nreceive,3,2kinghenryiv,1598\nintent,3,2kinghenryiv,1598\nenraged,3,2kinghenryiv,1598\nrage,3,2kinghenryiv,1598\ndanger,3,2kinghenryiv,1598\nwanton,3,2kinghenryiv,1598\nSIR,3,2kinghenryiv,1598\nswagger,3,2kinghenryiv,1598\nFourth,3,2kinghenryiv,1598\nnext,3,2kinghenryiv,1598\nwalk'd,3,2kinghenryiv,1598\nfamiliar,3,2kinghenryiv,1598\nserved,3,2kinghenryiv,1598\nfaced,3,2kinghenryiv,1598\nwhat's,3,2kinghenryiv,1598\nangel,3,2kinghenryiv,1598\ndrops,3,2kinghenryiv,1598\nwaste,3,2kinghenryiv,1598\nMake,3,2kinghenryiv,1598\nweapons,3,2kinghenryiv,1598\nfame,3,2kinghenryiv,1598\nwounds,3,2kinghenryiv,1598\nfly,3,2kinghenryiv,1598\npalace,3,2kinghenryiv,1598\nchannel,3,2kinghenryiv,1598\nrebuke,3,2kinghenryiv,1598\nbare,3,2kinghenryiv,1598\nUnto,3,2kinghenryiv,1598\nsmooth,3,2kinghenryiv,1598\npatient,3,2kinghenryiv,1598\nVisor,3,2kinghenryiv,1598\ncomfort,3,2kinghenryiv,1598\ngrievances,3,2kinghenryiv,1598\nnames,3,2kinghenryiv,1598\nflock,3,2kinghenryiv,1598\ntall,3,2kinghenryiv,1598\nknighthood,3,2kinghenryiv,1598\npardon,3,2kinghenryiv,1598\ndangerous,3,2kinghenryiv,1598\nhollow,3,2kinghenryiv,1598\ncommonwealth,3,2kinghenryiv,1598\nhorses,3,2kinghenryiv,1598\nseal,3,2kinghenryiv,1598\ngives,3,2kinghenryiv,1598\nprayers,3,2kinghenryiv,1598\nlungs,3,2kinghenryiv,1598\nlying,3,2kinghenryiv,1598\nacts,3,2kinghenryiv,1598\ndrunk,3,2kinghenryiv,1598\nwe'll,3,2kinghenryiv,1598\narrant,3,2kinghenryiv,1598\nnights,3,2kinghenryiv,1598\nsouls,3,2kinghenryiv,1598\ntide,3,2kinghenryiv,1598\nled,3,2kinghenryiv,1598\ngoes,3,2kinghenryiv,1598\nsickness,3,2kinghenryiv,1598\nebb,3,2kinghenryiv,1598\nlaws,3,2kinghenryiv,1598\nclouds,3,2kinghenryiv,1598\nlimbs,3,2kinghenryiv,1598\nbishop,3,2kinghenryiv,1598\nstraight,3,2kinghenryiv,1598\nMessenger,3,2kinghenryiv,1598\nmet,3,2kinghenryiv,1598\nCaptain,3,2kinghenryiv,1598\ncheater,3,2kinghenryiv,1598\nmeeting,3,2kinghenryiv,1598\nSince,3,2kinghenryiv,1598\nburns,3,2kinghenryiv,1598\nfled,3,2kinghenryiv,1598\nthinking,3,2kinghenryiv,1598\nfashion,3,2kinghenryiv,1598\nwound,3,2kinghenryiv,1598\nIndeed,3,2kinghenryiv,1598\nsleeping,3,2kinghenryiv,1598\npuissance,3,2kinghenryiv,1598\nhurt,3,2kinghenryiv,1598\ncompell'd,3,2kinghenryiv,1598\nwidow,3,2kinghenryiv,1598\nfubbed,3,2kinghenryiv,1598\nSHALLOW'S,3,2kinghenryiv,1598\nrespect,3,2kinghenryiv,1598\ndare,3,2kinghenryiv,1598\ndue,3,2kinghenryiv,1598\nsudden,3,2kinghenryiv,1598\nTravers,3,2kinghenryiv,1598\ndispatch,3,2kinghenryiv,1598\ndry,3,2kinghenryiv,1598\nshift,3,2kinghenryiv,1598\nrescue,3,2kinghenryiv,1598\nphysician,3,2kinghenryiv,1598\narmed,3,2kinghenryiv,1598\nToo,3,2kinghenryiv,1598\nwenches,3,2kinghenryiv,1598\ncommand,3,2kinghenryiv,1598\nboots,3,2kinghenryiv,1598\nremembrance,3,2kinghenryiv,1598\nshape,3,2kinghenryiv,1598\nFang,3,2kinghenryiv,1598\norder,3,2kinghenryiv,1598\nchambers,3,2kinghenryiv,1598\nturn'd,3,2kinghenryiv,1598\nwomen,3,2kinghenryiv,1598\nfortunes,3,2kinghenryiv,1598\nis,259,2kinghenryiv,1598\nto,515,2kinghenryiv,1598\nFrancis,4,2kinghenryiv,1598\nquality,4,2kinghenryiv,1598\nNay,4,2kinghenryiv,1598\nAlas,4,2kinghenryiv,1598\nhelp,4,2kinghenryiv,1598\ndish,4,2kinghenryiv,1598\nentered,4,2kinghenryiv,1598\nDouglas,4,2kinghenryiv,1598\nTell,4,2kinghenryiv,1598\njoint,4,2kinghenryiv,1598\nwhile,4,2kinghenryiv,1598\nsight,4,2kinghenryiv,1598\nnaked,4,2kinghenryiv,1598\nhanged,4,2kinghenryiv,1598\nsons,4,2kinghenryiv,1598\nAfter,4,2kinghenryiv,1598\ngracious,4,2kinghenryiv,1598\nsubjects,4,2kinghenryiv,1598\nposts,4,2kinghenryiv,1598\ntoward,4,2kinghenryiv,1598\nhearing,4,2kinghenryiv,1598\ngolden,4,2kinghenryiv,1598\nsomething,4,2kinghenryiv,1598\nexecution,4,2kinghenryiv,1598\n'twere,4,2kinghenryiv,1598\nsuit,4,2kinghenryiv,1598\nyield,4,2kinghenryiv,1598\njustices,4,2kinghenryiv,1598\nlevel,4,2kinghenryiv,1598\ndoubt,4,2kinghenryiv,1598\nstuff,4,2kinghenryiv,1598\nfight,4,2kinghenryiv,1598\nbrain,4,2kinghenryiv,1598\ndaughter,4,2kinghenryiv,1598\nmodel,4,2kinghenryiv,1598\nhumble,4,2kinghenryiv,1598\nrude,4,2kinghenryiv,1598\nThough,4,2kinghenryiv,1598\nmurder,4,2kinghenryiv,1598\nmean,4,2kinghenryiv,1598\nFrench,4,2kinghenryiv,1598\nparty,4,2kinghenryiv,1598\ncolour,4,2kinghenryiv,1598\nbitter,4,2kinghenryiv,1598\nhopes,4,2kinghenryiv,1598\nStand,4,2kinghenryiv,1598\nkept,4,2kinghenryiv,1598\nOn,4,2kinghenryiv,1598\nforce,4,2kinghenryiv,1598\npawn,4,2kinghenryiv,1598\nwo't,4,2kinghenryiv,1598\nprove,4,2kinghenryiv,1598\nstruck,4,2kinghenryiv,1598\nshadow,4,2kinghenryiv,1598\ncaptains,4,2kinghenryiv,1598\neaten,4,2kinghenryiv,1598\ngate,4,2kinghenryiv,1598\nbreath,4,2kinghenryiv,1598\nimage,4,2kinghenryiv,1598\naim,4,2kinghenryiv,1598\ngain,4,2kinghenryiv,1598\ntongues,4,2kinghenryiv,1598\nlegs,4,2kinghenryiv,1598\nlikely,4,2kinghenryiv,1598\nhands,4,2kinghenryiv,1598\nClarence,4,2kinghenryiv,1598\nmemory,4,2kinghenryiv,1598\ngentlewoman,4,2kinghenryiv,1598\ncommend,4,2kinghenryiv,1598\nloud,4,2kinghenryiv,1598\nloss,4,2kinghenryiv,1598\ndevil,4,2kinghenryiv,1598\nswaggering,4,2kinghenryiv,1598\nvalour,4,2kinghenryiv,1598\neasy,4,2kinghenryiv,1598\nhard,4,2kinghenryiv,1598\nCall,4,2kinghenryiv,1598\ncall'd,4,2kinghenryiv,1598\nhang,4,2kinghenryiv,1598\nPERCY,4,2kinghenryiv,1598\nexcuse,4,2kinghenryiv,1598\nproper,4,2kinghenryiv,1598\nrough,4,2kinghenryiv,1598\nchance,4,2kinghenryiv,1598\njudgment,4,2kinghenryiv,1598\nhaving,4,2kinghenryiv,1598\nroom,4,2kinghenryiv,1598\nnay,4,2kinghenryiv,1598\nAgainst,4,2kinghenryiv,1598\nbuild,4,2kinghenryiv,1598\nwater,4,2kinghenryiv,1598\nWART,4,2kinghenryiv,1598\nbeard,4,2kinghenryiv,1598\nbravely,4,2kinghenryiv,1598\nsubstance,4,2kinghenryiv,1598\nexcused,4,2kinghenryiv,1598\nforest,4,2kinghenryiv,1598\nSee,4,2kinghenryiv,1598\neffect,4,2kinghenryiv,1598\ndoors,4,2kinghenryiv,1598\nvarlet,4,2kinghenryiv,1598\nmyself,4,2kinghenryiv,1598\nchief,4,2kinghenryiv,1598\ndream,4,2kinghenryiv,1598\nmark,4,2kinghenryiv,1598\nthick,4,2kinghenryiv,1598\nSNARE,4,2kinghenryiv,1598\nlet's,4,2kinghenryiv,1598\nwon,4,2kinghenryiv,1598\ndischarge,4,2kinghenryiv,1598\nnumber,4,2kinghenryiv,1598\nBeing,4,2kinghenryiv,1598\nliving,4,2kinghenryiv,1598\ntaste,4,2kinghenryiv,1598\nslight,4,2kinghenryiv,1598\nsorrow,4,2kinghenryiv,1598\nPETO,4,2kinghenryiv,1598\nPercy,4,2kinghenryiv,1598\nSay,4,2kinghenryiv,1598\nbelieve,4,2kinghenryiv,1598\nforward,4,2kinghenryiv,1598\naccommodated,4,2kinghenryiv,1598\ncoming,4,2kinghenryiv,1598\nhair,4,2kinghenryiv,1598\nwomb,4,2kinghenryiv,1598\nhundred,4,2kinghenryiv,1598\nfollowers,4,2kinghenryiv,1598\ncares,4,2kinghenryiv,1598\nletter,4,2kinghenryiv,1598\nallow,4,2kinghenryiv,1598\nfine,4,2kinghenryiv,1598\nrich,4,2kinghenryiv,1598\nBoy,4,2kinghenryiv,1598\nparticular,4,2kinghenryiv,1598\nta'en,4,2kinghenryiv,1598\nJerusalem,4,2kinghenryiv,1598\nlinen,4,2kinghenryiv,1598\nperceive,4,2kinghenryiv,1598\nVery,4,2kinghenryiv,1598\nEarl,4,2kinghenryiv,1598\ngreen,4,2kinghenryiv,1598\ngiddy,4,2kinghenryiv,1598\ncut,4,2kinghenryiv,1598\nalong,4,2kinghenryiv,1598\ncook,4,2kinghenryiv,1598\nmouldy,4,2kinghenryiv,1598\nsweat,4,2kinghenryiv,1598\nseed,4,2kinghenryiv,1598\neither,4,2kinghenryiv,1598\ncourtesy,4,2kinghenryiv,1598\nvessel,4,2kinghenryiv,1598\ncost,4,2kinghenryiv,1598\ntidings,4,2kinghenryiv,1598\nrascally,4,2kinghenryiv,1598\nhours,4,2kinghenryiv,1598\nreturn,4,2kinghenryiv,1598\nbrow,4,2kinghenryiv,1598\nmad,4,2kinghenryiv,1598\nabroad,4,2kinghenryiv,1598\nTRAVERS,4,2kinghenryiv,1598\nAnother,4,2kinghenryiv,1598\nClement's,4,2kinghenryiv,1598\nmakes,4,2kinghenryiv,1598\nEARL,4,2kinghenryiv,1598\nPercy's,4,2kinghenryiv,1598\nMay,4,2kinghenryiv,1598\nEastcheap,4,2kinghenryiv,1598\nragged,4,2kinghenryiv,1598\nstrange,4,2kinghenryiv,1598\nnumbers,4,2kinghenryiv,1598\nlaid,4,2kinghenryiv,1598\ndog,4,2kinghenryiv,1598\nasleep,4,2kinghenryiv,1598\nprincely,4,2kinghenryiv,1598\nweigh,4,2kinghenryiv,1598\nHe's,4,2kinghenryiv,1598\nshalt,4,2kinghenryiv,1598\ndale,4,2kinghenryiv,1598\nwouldst,4,2kinghenryiv,1598\nlady,4,2kinghenryiv,1598\ntook,5,2kinghenryiv,1598\ndouble,5,2kinghenryiv,1598\nweary,5,2kinghenryiv,1598\nwoman's,5,2kinghenryiv,1598\nhonours,5,2kinghenryiv,1598\nrode,5,2kinghenryiv,1598\nvillain,5,2kinghenryiv,1598\nboys,5,2kinghenryiv,1598\nrather,5,2kinghenryiv,1598\nsoul,5,2kinghenryiv,1598\nstrength,5,2kinghenryiv,1598\nsoon,5,2kinghenryiv,1598\nhighness,5,2kinghenryiv,1598\npurse,5,2kinghenryiv,1598\nheat,5,2kinghenryiv,1598\ntown,5,2kinghenryiv,1598\nofficers,5,2kinghenryiv,1598\nSHADOW,5,2kinghenryiv,1598\nDuke,5,2kinghenryiv,1598\nvirtuous,5,2kinghenryiv,1598\nsea,5,2kinghenryiv,1598\nscore,5,2kinghenryiv,1598\ndeliver,5,2kinghenryiv,1598\n'I,5,2kinghenryiv,1598\ncountenance,5,2kinghenryiv,1598\nsecond,5,2kinghenryiv,1598\nthin,5,2kinghenryiv,1598\nWilliam,5,2kinghenryiv,1598\nworst,5,2kinghenryiv,1598\ncivil,5,2kinghenryiv,1598\ncommit,5,2kinghenryiv,1598\nancient,5,2kinghenryiv,1598\nchoose,5,2kinghenryiv,1598\nsoldier,5,2kinghenryiv,1598\nwise,5,2kinghenryiv,1598\noffice,5,2kinghenryiv,1598\nspoke,5,2kinghenryiv,1598\nhe's,5,2kinghenryiv,1598\nwherefore,5,2kinghenryiv,1598\nside,5,2kinghenryiv,1598\nA',5,2kinghenryiv,1598\nWhat's,5,2kinghenryiv,1598\nGloucestershire,5,2kinghenryiv,1598\nAh,5,2kinghenryiv,1598\npay,5,2kinghenryiv,1598\nquarrel,5,2kinghenryiv,1598\nmusic,5,2kinghenryiv,1598\nneither,5,2kinghenryiv,1598\ncanst,5,2kinghenryiv,1598\narchbishop,5,2kinghenryiv,1598\nbless,5,2kinghenryiv,1598\nwhole,5,2kinghenryiv,1598\nplay,5,2kinghenryiv,1598\nHad,5,2kinghenryiv,1598\nHal,5,2kinghenryiv,1598\nIs't,5,2kinghenryiv,1598\nheads,5,2kinghenryiv,1598\nOr,5,2kinghenryiv,1598\ngoodly,5,2kinghenryiv,1598\nLike,5,2kinghenryiv,1598\nRumour,5,2kinghenryiv,1598\nInn,5,2kinghenryiv,1598\nha,5,2kinghenryiv,1598\nbeat,5,2kinghenryiv,1598\ndear,5,2kinghenryiv,1598\nthat's,5,2kinghenryiv,1598\nsherris,5,2kinghenryiv,1598\nage,5,2kinghenryiv,1598\nlost,5,2kinghenryiv,1598\nJack,5,2kinghenryiv,1598\nfoul,5,2kinghenryiv,1598\narm,5,2kinghenryiv,1598\nbrothers,5,2kinghenryiv,1598\nmock,5,2kinghenryiv,1598\nfoot,5,2kinghenryiv,1598\nSirrah,5,2kinghenryiv,1598\npricked,5,2kinghenryiv,1598\nbroke,5,2kinghenryiv,1598\nInto,5,2kinghenryiv,1598\nwatch,5,2kinghenryiv,1598\nfar,5,2kinghenryiv,1598\noccasion,5,2kinghenryiv,1598\nWestminster,5,2kinghenryiv,1598\nalmost,5,2kinghenryiv,1598\neye,5,2kinghenryiv,1598\nPeace,5,2kinghenryiv,1598\nTherefore,5,2kinghenryiv,1598\nHealth,5,2kinghenryiv,1598\nquestion,5,2kinghenryiv,1598\nmile,5,2kinghenryiv,1598\nBeadle,5,2kinghenryiv,1598\nsoldiers,5,2kinghenryiv,1598\nThey,5,2kinghenryiv,1598\nstairs,5,2kinghenryiv,1598\ngrave,5,2kinghenryiv,1598\npound,5,2kinghenryiv,1598\nsake,5,2kinghenryiv,1598\nhappiness,5,2kinghenryiv,1598\nGower,5,2kinghenryiv,1598\nable,5,2kinghenryiv,1598\nperforce,5,2kinghenryiv,1598\nfound,5,2kinghenryiv,1598\nsupper,5,2kinghenryiv,1598\nowe,5,2kinghenryiv,1598\nglad,5,2kinghenryiv,1598\nwert,5,2kinghenryiv,1598\nwork,5,2kinghenryiv,1598\nride,5,2kinghenryiv,1598\nSweet,5,2kinghenryiv,1598\noffices,5,2kinghenryiv,1598\nne'er,5,2kinghenryiv,1598\nFare,5,2kinghenryiv,1598\ntalk,5,2kinghenryiv,1598\ncup,5,2kinghenryiv,1598\nshort,5,2kinghenryiv,1598\nWhere's,5,2kinghenryiv,1598\nalone,5,2kinghenryiv,1598\nkingdom,5,2kinghenryiv,1598\nseem,5,2kinghenryiv,1598\nJesu,5,2kinghenryiv,1598\ncondition,5,2kinghenryiv,1598\nwhom,5,2kinghenryiv,1598\nexpectation,5,2kinghenryiv,1598\nPray,5,2kinghenryiv,1598\nEnglish,5,2kinghenryiv,1598\nheels,5,2kinghenryiv,1598\npurpose,5,2kinghenryiv,1598\near,5,2kinghenryiv,1598\nQuickly,5,2kinghenryiv,1598\nGroom,5,2kinghenryiv,1598\nstreet,5,2kinghenryiv,1598\nlate,5,2kinghenryiv,1598\ngoing,5,2kinghenryiv,1598\ntry,5,2kinghenryiv,1598\nrebels,5,2kinghenryiv,1598\nswaggerers,5,2kinghenryiv,1598\nhe'll,5,2kinghenryiv,1598\nshame,5,2kinghenryiv,1598\nlack,5,2kinghenryiv,1598\nme,261,2kinghenryiv,1598\nNed,6,2kinghenryiv,1598\ntold,6,2kinghenryiv,1598\nguard,6,2kinghenryiv,1598\nWarwick,6,2kinghenryiv,1598\nwicked,6,2kinghenryiv,1598\nassured,6,2kinghenryiv,1598\nHotspur's,6,2kinghenryiv,1598\nsecurity,6,2kinghenryiv,1598\ndisease,6,2kinghenryiv,1598\noffer,6,2kinghenryiv,1598\ntears,6,2kinghenryiv,1598\nunder,6,2kinghenryiv,1598\nlies,6,2kinghenryiv,1598\nrun,6,2kinghenryiv,1598\nTearsheet,6,2kinghenryiv,1598\ndamned,6,2kinghenryiv,1598\nsad,6,2kinghenryiv,1598\nsaw,6,2kinghenryiv,1598\nanother,6,2kinghenryiv,1598\nnoise,6,2kinghenryiv,1598\nworth,6,2kinghenryiv,1598\nsubject,6,2kinghenryiv,1598\ncounsel,6,2kinghenryiv,1598\nread,6,2kinghenryiv,1598\nvile,6,2kinghenryiv,1598\nturn,6,2kinghenryiv,1598\ncommon,6,2kinghenryiv,1598\nWart,6,2kinghenryiv,1598\nprinces,6,2kinghenryiv,1598\nservice,6,2kinghenryiv,1598\nfalse,6,2kinghenryiv,1598\nwine,6,2kinghenryiv,1598\nwind,6,2kinghenryiv,1598\nflesh,6,2kinghenryiv,1598\nwish,6,2kinghenryiv,1598\nanon,6,2kinghenryiv,1598\nstop,6,2kinghenryiv,1598\nchamber,6,2kinghenryiv,1598\nhas,6,2kinghenryiv,1598\nIII,6,2kinghenryiv,1598\namong,6,2kinghenryiv,1598\nWales,6,2kinghenryiv,1598\npast,6,2kinghenryiv,1598\nearl,6,2kinghenryiv,1598\nears,6,2kinghenryiv,1598\nSnare,6,2kinghenryiv,1598\nvaliant,6,2kinghenryiv,1598\nweak,6,2kinghenryiv,1598\ndeep,6,2kinghenryiv,1598\nspeed,6,2kinghenryiv,1598\nthyself,6,2kinghenryiv,1598\naside,6,2kinghenryiv,1598\nearth,6,2kinghenryiv,1598\nless,6,2kinghenryiv,1598\nhot,6,2kinghenryiv,1598\nMore,6,2kinghenryiv,1598\nfour,6,2kinghenryiv,1598\nwhether,6,2kinghenryiv,1598\nform,6,2kinghenryiv,1598\nye,6,2kinghenryiv,1598\nfat,6,2kinghenryiv,1598\nventure,6,2kinghenryiv,1598\nShadow,6,2kinghenryiv,1598\ngriefs,6,2kinghenryiv,1598\nShe,6,2kinghenryiv,1598\nPorter,6,2kinghenryiv,1598\nDoth,6,2kinghenryiv,1598\nalready,6,2kinghenryiv,1598\nmass,6,2kinghenryiv,1598\nknown,6,2kinghenryiv,1598\nHastings,6,2kinghenryiv,1598\ncalled,6,2kinghenryiv,1598\narmy,6,2kinghenryiv,1598\ntailor,6,2kinghenryiv,1598\nbetween,6,2kinghenryiv,1598\nserve,6,2kinghenryiv,1598\nprick,6,2kinghenryiv,1598\ndull,6,2kinghenryiv,1598\nEven,6,2kinghenryiv,1598\ndiseases,6,2kinghenryiv,1598\ngrant,6,2kinghenryiv,1598\nsafety,6,2kinghenryiv,1598\nhook,6,2kinghenryiv,1598\nlaw,6,2kinghenryiv,1598\nreason,6,2kinghenryiv,1598\nwild,6,2kinghenryiv,1598\ndozen,6,2kinghenryiv,1598\nstrong,6,2kinghenryiv,1598\nGOWER,6,2kinghenryiv,1598\nswear,6,2kinghenryiv,1598\nThy,6,2kinghenryiv,1598\nten,6,2kinghenryiv,1598\nJOHN,6,2kinghenryiv,1598\nanswer,7,2kinghenryiv,1598\nhealth,7,2kinghenryiv,1598\nWould,7,2kinghenryiv,1598\nWhose,7,2kinghenryiv,1598\nTheir,7,2kinghenryiv,1598\nborn,7,2kinghenryiv,1598\ngrow,7,2kinghenryiv,1598\nvoice,7,2kinghenryiv,1598\nwars,7,2kinghenryiv,1598\nPoins,7,2kinghenryiv,1598\nelse,7,2kinghenryiv,1598\nstay,7,2kinghenryiv,1598\nHa,7,2kinghenryiv,1598\ndinner,7,2kinghenryiv,1598\nbid,7,2kinghenryiv,1598\nquiet,7,2kinghenryiv,1598\nBolingbroke,7,2kinghenryiv,1598\nSecond,7,2kinghenryiv,1598\nbrought,7,2kinghenryiv,1598\nUnder,7,2kinghenryiv,1598\nmoney,7,2kinghenryiv,1598\nfool,7,2kinghenryiv,1598\nlead,7,2kinghenryiv,1598\nborne,7,2kinghenryiv,1598\nBULLCALF,7,2kinghenryiv,1598\ngeneral,7,2kinghenryiv,1598\nFeeble,7,2kinghenryiv,1598\nfoolish,7,2kinghenryiv,1598\ndidst,7,2kinghenryiv,1598\nknows,7,2kinghenryiv,1598\nfather's,7,2kinghenryiv,1598\nletters,7,2kinghenryiv,1598\naffairs,7,2kinghenryiv,1598\nonly,7,2kinghenryiv,1598\nsave,7,2kinghenryiv,1598\nbelly,7,2kinghenryiv,1598\nhappy,7,2kinghenryiv,1598\nRobert,7,2kinghenryiv,1598\nYork,7,2kinghenryiv,1598\nTill,7,2kinghenryiv,1598\nfortune,7,2kinghenryiv,1598\nthree,7,2kinghenryiv,1598\ncompany,7,2kinghenryiv,1598\nhour,7,2kinghenryiv,1598\nkiss,7,2kinghenryiv,1598\nBullcalf,7,2kinghenryiv,1598\nthank,7,2kinghenryiv,1598\nlow,7,2kinghenryiv,1598\nthrust,7,2kinghenryiv,1598\nperson,7,2kinghenryiv,1598\nsend,7,2kinghenryiv,1598\nspirits,7,2kinghenryiv,1598\nMOULDY,7,2kinghenryiv,1598\nBefore,7,2kinghenryiv,1598\nliege,7,2kinghenryiv,1598\nDid,7,2kinghenryiv,1598\nland,7,2kinghenryiv,1598\ngreatness,7,2kinghenryiv,1598\nwoman,7,2kinghenryiv,1598\nenemy,7,2kinghenryiv,1598\no'er,8,2kinghenryiv,1598\nspeech,8,2kinghenryiv,1598\ncase,8,2kinghenryiv,1598\nyourself,8,2kinghenryiv,1598\nyears,8,2kinghenryiv,1598\nThomas,8,2kinghenryiv,1598\nwarrant,8,2kinghenryiv,1598\nworse,8,2kinghenryiv,1598\nking's,8,2kinghenryiv,1598\nwhite,8,2kinghenryiv,1598\nbold,8,2kinghenryiv,1598\ndesire,8,2kinghenryiv,1598\nbook,8,2kinghenryiv,1598\nAn,8,2kinghenryiv,1598\nHis,8,2kinghenryiv,1598\nSinging,8,2kinghenryiv,1598\nbed,8,2kinghenryiv,1598\nmeans,8,2kinghenryiv,1598\ngold,8,2kinghenryiv,1598\ngave,8,2kinghenryiv,1598\nyea,8,2kinghenryiv,1598\nleft,8,2kinghenryiv,1598\ntwenty,8,2kinghenryiv,1598\nfield,8,2kinghenryiv,1598\ncourse,8,2kinghenryiv,1598\nthough,8,2kinghenryiv,1598\nThan,8,2kinghenryiv,1598\nKing,8,2kinghenryiv,1598\nthings,8,2kinghenryiv,1598\nFrom,8,2kinghenryiv,1598\npowers,8,2kinghenryiv,1598\nMowbray,8,2kinghenryiv,1598\nhigh,8,2kinghenryiv,1598\nLook,8,2kinghenryiv,1598\nRichard,8,2kinghenryiv,1598\nnor,8,2kinghenryiv,1598\nMORTON,8,2kinghenryiv,1598\nneed,8,2kinghenryiv,1598\nover,8,2kinghenryiv,1598\nfive,8,2kinghenryiv,1598\nbreak,8,2kinghenryiv,1598\nLADY,8,2kinghenryiv,1598\narms,8,2kinghenryiv,1598\nground,8,2kinghenryiv,1598\nfall,8,2kinghenryiv,1598\nman's,8,2kinghenryiv,1598\ngentlemen,8,2kinghenryiv,1598\nhome,8,2kinghenryiv,1598\nsound,8,2kinghenryiv,1598\neat,8,2kinghenryiv,1598\nhostess,8,2kinghenryiv,1598\nthoughts,8,2kinghenryiv,1598\nMarry,8,2kinghenryiv,1598\nwithout,8,2kinghenryiv,1598\nkind,8,2kinghenryiv,1598\ndays,9,2kinghenryiv,1598\nhorse,9,2kinghenryiv,1598\nFANG,9,2kinghenryiv,1598\nrascal,9,2kinghenryiv,1598\ncharge,9,2kinghenryiv,1598\ndraw,9,2kinghenryiv,1598\nwords,9,2kinghenryiv,1598\nsure,9,2kinghenryiv,1598\nbring,9,2kinghenryiv,1598\nrebellion,9,2kinghenryiv,1598\nColevile,9,2kinghenryiv,1598\nitself,9,2kinghenryiv,1598\nII,9,2kinghenryiv,1598\nbest,9,2kinghenryiv,1598\ngrief,9,2kinghenryiv,1598\nLancaster,9,2kinghenryiv,1598\ndost,9,2kinghenryiv,1598\n'tis,9,2kinghenryiv,1598\nGod's,9,2kinghenryiv,1598\nexcellent,9,2kinghenryiv,1598\ndoor,9,2kinghenryiv,1598\nknew,9,2kinghenryiv,1598\nnew,9,2kinghenryiv,1598\nyear,9,2kinghenryiv,1598\nmind,9,2kinghenryiv,1598\nbloody,9,2kinghenryiv,1598\nMouldy,9,2kinghenryiv,1598\nnear,9,2kinghenryiv,1598\nwit,9,2kinghenryiv,1598\nthemselves,9,2kinghenryiv,1598\nFEEBLE,9,2kinghenryiv,1598\neven,9,2kinghenryiv,1598\nworship,9,2kinghenryiv,1598\nan't,9,2kinghenryiv,1598\nbase,9,2kinghenryiv,1598\ngentleman,9,2kinghenryiv,1598\nlay,9,2kinghenryiv,1598\neyes,9,2kinghenryiv,1598\nseen,9,2kinghenryiv,1598\ntogether,9,2kinghenryiv,1598\nabuse,9,2kinghenryiv,1598\nAway,9,2kinghenryiv,1598\nCOLEVILE,9,2kinghenryiv,1598\nlast,9,2kinghenryiv,1598\nnature,9,2kinghenryiv,1598\nfollow,9,2kinghenryiv,1598\nmeet,10,2kinghenryiv,1598\nbecome,10,2kinghenryiv,1598\nNot,10,2kinghenryiv,1598\nenough,10,2kinghenryiv,1598\nwrong,10,2kinghenryiv,1598\nrest,10,2kinghenryiv,1598\nmatter,10,2kinghenryiv,1598\njust,10,2kinghenryiv,1598\no',10,2kinghenryiv,1598\nYet,10,2kinghenryiv,1598\nhalf,10,2kinghenryiv,1598\nright,10,2kinghenryiv,1598\ngentle,10,2kinghenryiv,1598\nyours,10,2kinghenryiv,1598\nthere's,10,2kinghenryiv,1598\nstate,10,2kinghenryiv,1598\nfire,10,2kinghenryiv,1598\nheard,10,2kinghenryiv,1598\nheavy,10,2kinghenryiv,1598\nwar,10,2kinghenryiv,1598\nfind,10,2kinghenryiv,1598\nhope,10,2kinghenryiv,1598\nEngland,10,2kinghenryiv,1598\nlives,10,2kinghenryiv,1598\nwife,10,2kinghenryiv,1598\nremember,10,2kinghenryiv,1598\nhimself,10,2kinghenryiv,1598\nUpon,11,2kinghenryiv,1598\nlight,11,2kinghenryiv,1598\nSilence,11,2kinghenryiv,1598\ncause,11,2kinghenryiv,1598\nServant,11,2kinghenryiv,1598\nafter,11,2kinghenryiv,1598\nfriend,11,2kinghenryiv,1598\nsince,11,2kinghenryiv,1598\nlong,11,2kinghenryiv,1598\nkeep,11,2kinghenryiv,1598\nwelcome,11,2kinghenryiv,1598\nforth,11,2kinghenryiv,1598\nhast,11,2kinghenryiv,1598\nHath,11,2kinghenryiv,1598\njustice,11,2kinghenryiv,1598\nlords,11,2kinghenryiv,1598\nknave,11,2kinghenryiv,1598\nwho,11,2kinghenryiv,1598\nget,11,2kinghenryiv,1598\nthine,11,2kinghenryiv,1598\nShrewsbury,11,2kinghenryiv,1598\nmorrow,11,2kinghenryiv,1598\ntill,11,2kinghenryiv,1598\nhouse,11,2kinghenryiv,1598\ncold,11,2kinghenryiv,1598\nfirst,11,2kinghenryiv,1598\nlie,11,2kinghenryiv,1598\nlive,11,2kinghenryiv,1598\ncrown,11,2kinghenryiv,1598\ndrink,12,2kinghenryiv,1598\nwhoreson,12,2kinghenryiv,1598\ncame,12,2kinghenryiv,1598\nothers,12,2kinghenryiv,1598\nDo,12,2kinghenryiv,1598\nwhose,12,2kinghenryiv,1598\ni',12,2kinghenryiv,1598\nsack,12,2kinghenryiv,1598\npresent,12,2kinghenryiv,1598\nshow,12,2kinghenryiv,1598\nthrough,12,2kinghenryiv,1598\naction,12,2kinghenryiv,1598\nnone,12,2kinghenryiv,1598\nyouth,12,2kinghenryiv,1598\nere,12,2kinghenryiv,1598\nsays,12,2kinghenryiv,1598\nDrawer,12,2kinghenryiv,1598\nfair,12,2kinghenryiv,1598\nLondon,12,2kinghenryiv,1598\nuse,12,2kinghenryiv,1598\nback,12,2kinghenryiv,1598\ntroth,12,2kinghenryiv,1598\nMistress,12,2kinghenryiv,1598\nsleep,12,2kinghenryiv,1598\nWhere,12,2kinghenryiv,1598\ncertain,12,2kinghenryiv,1598\nroyal,13,2kinghenryiv,1598\nWill,13,2kinghenryiv,1598\nfull,13,2kinghenryiv,1598\nsit,13,2kinghenryiv,1598\nbody,13,2kinghenryiv,1598\nOur,13,2kinghenryiv,1598\nsword,13,2kinghenryiv,1598\nhence,13,2kinghenryiv,1598\ntherefore,13,2kinghenryiv,1598\nrogue,13,2kinghenryiv,1598\nsame,13,2kinghenryiv,1598\nstill,13,2kinghenryiv,1598\nbeseech,13,2kinghenryiv,1598\nmarry,13,2kinghenryiv,1598\never,13,2kinghenryiv,1598\nlordship,13,2kinghenryiv,1598\nunto,13,2kinghenryiv,1598\nPrince,13,2kinghenryiv,1598\nhither,13,2kinghenryiv,1598\nspirit,13,2kinghenryiv,1598\npower,13,2kinghenryiv,1598\nthought,14,2kinghenryiv,1598\nfriends,14,2kinghenryiv,1598\nGive,14,2kinghenryiv,1598\nwithin,14,2kinghenryiv,1598\nenter,14,2kinghenryiv,1598\nRe,14,2kinghenryiv,1598\ntongue,14,2kinghenryiv,1598\nthose,14,2kinghenryiv,1598\nAre,14,2kinghenryiv,1598\nYour,14,2kinghenryiv,1598\nonce,14,2kinghenryiv,1598\nhold,14,2kinghenryiv,1598\ncaptain,14,2kinghenryiv,1598\nsweet,14,2kinghenryiv,1598\nbeing,14,2kinghenryiv,1598\nNorthumberland,14,2kinghenryiv,1598\ndie,14,2kinghenryiv,1598\nV,15,2kinghenryiv,1598\nworld,15,2kinghenryiv,1598\ncare,15,2kinghenryiv,1598\nbrother,15,2kinghenryiv,1598\nWho,15,2kinghenryiv,1598\nset,15,2kinghenryiv,1598\nThere,15,2kinghenryiv,1598\nhonour,15,2kinghenryiv,1598\nheaven,15,2kinghenryiv,1598\nBe,15,2kinghenryiv,1598\nboy,15,2kinghenryiv,1598\ngone,15,2kinghenryiv,1598\nput,15,2kinghenryiv,1598\nHave,15,2kinghenryiv,1598\nend,15,2kinghenryiv,1598\nway,15,2kinghenryiv,1598\nface,15,2kinghenryiv,1598\nWestmoreland,15,2kinghenryiv,1598\nknight,15,2kinghenryiv,1598\nplease,15,2kinghenryiv,1598\nthousand,15,2kinghenryiv,1598\nmaster,15,2kinghenryiv,1598\nhonest,15,2kinghenryiv,1598\nsent,15,2kinghenryiv,1598\nleave,15,2kinghenryiv,1598\ntruth,16,2kinghenryiv,1598\ncall,16,2kinghenryiv,1598\nagainst,16,2kinghenryiv,1598\nfear,16,2kinghenryiv,1598\nabout,16,2kinghenryiv,1598\nsick,16,2kinghenryiv,1598\nOf,16,2kinghenryiv,1598\nplace,16,2kinghenryiv,1598\nmade,16,2kinghenryiv,1598\nwhere,16,2kinghenryiv,1598\nwilt,16,2kinghenryiv,1598\ntimes,17,2kinghenryiv,1598\nNow,17,2kinghenryiv,1598\nnothing,17,2kinghenryiv,1598\nGo,17,2kinghenryiv,1598\ndone,17,2kinghenryiv,1598\ncould,17,2kinghenryiv,1598\n'Tis,17,2kinghenryiv,1598\nGLOUCESTER,17,2kinghenryiv,1598\nDoll,17,2kinghenryiv,1598\nshe,18,2kinghenryiv,1598\nfellow,18,2kinghenryiv,1598\nlittle,18,2kinghenryiv,1598\nagain,18,2kinghenryiv,1598\ncourt,18,2kinghenryiv,1598\nboth,19,2kinghenryiv,1598\nGood,19,2kinghenryiv,1598\nill,19,2kinghenryiv,1598\nFirst,19,2kinghenryiv,1598\nACT,19,2kinghenryiv,1598\nThen,19,2kinghenryiv,1598\nShall,19,2kinghenryiv,1598\nmerry,20,2kinghenryiv,1598\nDAVY,20,2kinghenryiv,1598\nYea,20,2kinghenryiv,1598\npart,20,2kinghenryiv,1598\nfaith,20,2kinghenryiv,1598\nmajesty,20,2kinghenryiv,1598\nmany,20,2kinghenryiv,1598\nstand,20,2kinghenryiv,1598\nCLARENCE,20,2kinghenryiv,1598\nPistol,20,2kinghenryiv,1598\npoor,20,2kinghenryiv,1598\nSCENE,20,2kinghenryiv,1598\npray,21,2kinghenryiv,1598\nhear,21,2kinghenryiv,1598\naway,21,2kinghenryiv,1598\nnight,21,2kinghenryiv,1598\nWhich,21,2kinghenryiv,1598\nlove,21,2kinghenryiv,1598\ninto,21,2kinghenryiv,1598\nthus,21,2kinghenryiv,1598\ndeath,22,2kinghenryiv,1598\nHere,22,2kinghenryiv,1598\nIs,22,2kinghenryiv,1598\nlook,22,2kinghenryiv,1598\nindeed,22,2kinghenryiv,1598\nFalstaff,22,2kinghenryiv,1598\noff,22,2kinghenryiv,1598\nExit,22,2kinghenryiv,1598\nLORD,23,2kinghenryiv,1598\nDavy,23,2kinghenryiv,1598\nMOWBRAY,23,2kinghenryiv,1598\nname,23,2kinghenryiv,1598\nNo,23,2kinghenryiv,1598\ncousin,23,2kinghenryiv,1598\nnoble,23,2kinghenryiv,1598\nyoung,23,2kinghenryiv,1598\nThou,23,2kinghenryiv,1598\nWell,23,2kinghenryiv,1598\nown,23,2kinghenryiv,1598\nWhen,23,2kinghenryiv,1598\nmight,23,2kinghenryiv,1598\nevery,24,2kinghenryiv,1598\nHASTINGS,24,2kinghenryiv,1598\nWhy,24,2kinghenryiv,1598\nIn,24,2kinghenryiv,1598\nblood,24,2kinghenryiv,1598\nWe,24,2kinghenryiv,1598\ncan,24,2kinghenryiv,1598\nsaid,24,2kinghenryiv,1598\ntrue,24,2kinghenryiv,1598\nmuch,25,2kinghenryiv,1598\nNORTHUMBERLAND,25,2kinghenryiv,1598\ntell,25,2kinghenryiv,1598\nSo,25,2kinghenryiv,1598\nbear,25,2kinghenryiv,1598\ngreat,25,2kinghenryiv,1598\nLet,25,2kinghenryiv,1598\nlife,26,2kinghenryiv,1598\nhead,26,2kinghenryiv,1598\nBy,26,2kinghenryiv,1598\nbeen,26,2kinghenryiv,1598\nThis,26,2kinghenryiv,1598\nbefore,26,2kinghenryiv,1598\nthing,26,2kinghenryiv,1598\nheart,26,2kinghenryiv,1598\nother,26,2kinghenryiv,1598\nSILENCE,27,2kinghenryiv,1598\nWith,27,2kinghenryiv,1598\nnever,27,2kinghenryiv,1598\nday,27,2kinghenryiv,1598\ntwo,27,2kinghenryiv,1598\nbetter,28,2kinghenryiv,1598\ndead,28,2kinghenryiv,1598\nhow,28,2kinghenryiv,1598\nhand,28,2kinghenryiv,1598\nart,28,2kinghenryiv,1598\nnews,28,2kinghenryiv,1598\ncannot,28,2kinghenryiv,1598\nAs,29,2kinghenryiv,1598\nIf,29,2kinghenryiv,1598\nyet,29,2kinghenryiv,1598\ngive,29,2kinghenryiv,1598\nmine,29,2kinghenryiv,1598\nword,29,2kinghenryiv,1598\nYORK,30,2kinghenryiv,1598\nthink,30,2kinghenryiv,1598\nARCHBISHOP,30,2kinghenryiv,1598\nson,31,2kinghenryiv,1598\nIt,31,2kinghenryiv,1598\nPOINS,31,2kinghenryiv,1598\ntime,31,2kinghenryiv,1598\ntake,31,2kinghenryiv,1598\nLANCASTER,31,2kinghenryiv,1598\nHarry,32,2kinghenryiv,1598\nExeunt,32,2kinghenryiv,1598\nany,32,2kinghenryiv,1598\ngrace,32,2kinghenryiv,1598\nPage,33,2kinghenryiv,1598\nsome,33,2kinghenryiv,1598\nprince,33,2kinghenryiv,1598\ncomes,33,2kinghenryiv,1598\nWESTMORELAND,34,2kinghenryiv,1598\na',34,2kinghenryiv,1598\nTEARSHEET,34,2kinghenryiv,1598\nDOLL,34,2kinghenryiv,1598\nknow,35,2kinghenryiv,1598\nHow,35,2kinghenryiv,1598\nmen,35,2kinghenryiv,1598\nwhen,35,2kinghenryiv,1598\ntoo,35,2kinghenryiv,1598\nShallow,36,2kinghenryiv,1598\nBardolph,36,2kinghenryiv,1598\nher,36,2kinghenryiv,1598\nHe,36,2kinghenryiv,1598\ngo,36,2kinghenryiv,1598\nfather,36,2kinghenryiv,1598\npeace,37,2kinghenryiv,1598\ndown,37,2kinghenryiv,1598\nmost,37,2kinghenryiv,1598\nPISTOL,37,2kinghenryiv,1598\nI'll,37,2kinghenryiv,1598\nwere,37,2kinghenryiv,1598\none,37,2kinghenryiv,1598\n',38,2kinghenryiv,1598\nOF,38,2kinghenryiv,1598\nspeak,38,2kinghenryiv,1598\nWARWICK,38,2kinghenryiv,1598\nCome,39,2kinghenryiv,1598\nsuch,39,2kinghenryiv,1598\nus,40,2kinghenryiv,1598\nout,40,2kinghenryiv,1598\ndid,40,2kinghenryiv,1598\nthese,41,2kinghenryiv,1598\nvery,41,2kinghenryiv,1598\nold,41,2kinghenryiv,1598\nmust,42,2kinghenryiv,1598\nsay,42,2kinghenryiv,1598\nin,298,2kinghenryiv,1598\nFor,43,2kinghenryiv,1598\nmay,43,2kinghenryiv,1598\nA,44,2kinghenryiv,1598\nthere,44,2kinghenryiv,1598\nYou,44,2kinghenryiv,1598\nshould,44,2kinghenryiv,1598\nup,45,2kinghenryiv,1598\nmake,45,2kinghenryiv,1598\nMy,47,2kinghenryiv,1598\ntheir,47,2kinghenryiv,1598\nor,47,2kinghenryiv,1598\nthan,49,2kinghenryiv,1598\nhad,49,2kinghenryiv,1598\nWhat,49,2kinghenryiv,1598\nlet,50,2kinghenryiv,1598\ndoth,51,2kinghenryiv,1598\nEnter,51,2kinghenryiv,1598\nsee,52,2kinghenryiv,1598\nO,53,2kinghenryiv,1598\nMISTRESS,53,2kinghenryiv,1598\nking,53,2kinghenryiv,1598\nthen,54,2kinghenryiv,1598\nQUICKLY,54,2kinghenryiv,1598\nupon,55,2kinghenryiv,1598\nGod,56,2kinghenryiv,1598\nmore,56,2kinghenryiv,1598\nthey,57,2kinghenryiv,1598\nif,57,2kinghenryiv,1598\nhath,57,2kinghenryiv,1598\nwhich,60,2kinghenryiv,1598\nMaster,60,2kinghenryiv,1598\nBut,60,2kinghenryiv,1598\nthem,61,2kinghenryiv,1598\nan,61,2kinghenryiv,1598\nwhat,62,2kinghenryiv,1598\nlike,64,2kinghenryiv,1598\nPRINCE,65,2kinghenryiv,1598\nof,577,2kinghenryiv,1598\nChief,66,2kinghenryiv,1598\nam,67,2kinghenryiv,1598\nThat,67,2kinghenryiv,1598\nwould,68,2kinghenryiv,1598\nJustice,68,2kinghenryiv,1598\nIV,69,2kinghenryiv,1598\nman,69,2kinghenryiv,1598\nhere,70,2kinghenryiv,1598\nKING,70,2kinghenryiv,1598\nwas,70,2kinghenryiv,1598\nTo,71,2kinghenryiv,1598\nfrom,72,2kinghenryiv,1598\nBARDOLPH,74,2kinghenryiv,1598\nat,75,2kinghenryiv,1598\nSir,75,2kinghenryiv,1598\nwell,75,2kinghenryiv,1598\nthy,75,2kinghenryiv,1598\nnow,79,2kinghenryiv,1598\ncome,79,2kinghenryiv,1598\nSHALLOW,80,2kinghenryiv,1598\nsir,81,2kinghenryiv,1598\nJohn,83,2kinghenryiv,1598\nthee,84,2kinghenryiv,1598\non,84,2kinghenryiv,1598\nwe,84,2kinghenryiv,1598\nno,86,2kinghenryiv,1598\nby,87,2kinghenryiv,1598\nare,90,2kinghenryiv,1598\nlord,94,2kinghenryiv,1598\nour,95,2kinghenryiv,1598\nshall,97,2kinghenryiv,1598\nall,100,2kinghenryiv,1598\nI,614,2kinghenryiv,1598\nThe,103,2kinghenryiv,1598\ndo,105,2kinghenryiv,1598\nLord,106,2kinghenryiv,1598\nmy,364,2kinghenryiv,1598\nbut,113,2kinghenryiv,1598\nthe,894,2kinghenryiv,1598\nHENRY,132,2kinghenryiv,1598\nso,137,2kinghenryiv,1598\nwill,139,2kinghenryiv,1598\ngood,140,2kinghenryiv,1598\nthou,142,2kinghenryiv,1598\nthis,143,2kinghenryiv,1598\nhe,146,2kinghenryiv,1598\nas,146,2kinghenryiv,1598\nfor,161,2kinghenryiv,1598\nhim,167,2kinghenryiv,1598\nhave,176,2kinghenryiv,1598\nand,689,2kinghenryiv,1598\nbe,178,2kinghenryiv,1598\nyou,452,2kinghenryiv,1598\nFALSTAFF,199,2kinghenryiv,1598\nhis,201,2kinghenryiv,1598\nAnd,204,2kinghenryiv,1598\nit,212,2kinghenryiv,1598\na,468,2kinghenryiv,1598\nnot,223,2kinghenryiv,1598\nyour,227,2kinghenryiv,1598\nthat,229,2kinghenryiv,1598\nwith,246,2kinghenryiv,1598\nfealty,1,2kinghenryvi,1590\ncheque'd,1,2kinghenryvi,1590\nattended,1,2kinghenryvi,1590\nfollowers',1,2kinghenryvi,1590\naffords,1,2kinghenryvi,1590\naugment,1,2kinghenryvi,1590\nsilken,1,2kinghenryvi,1590\nchampions,1,2kinghenryvi,1590\ndischarged,1,2kinghenryvi,1590\nislanders,1,2kinghenryvi,1590\nAlencon,1,2kinghenryvi,1590\nanswered,1,2kinghenryvi,1590\npleading,1,2kinghenryvi,1590\ncripple,1,2kinghenryvi,1590\ndeputy,1,2kinghenryvi,1590\ndegenerate,1,2kinghenryvi,1590\nevent,1,2kinghenryvi,1590\ncage,1,2kinghenryvi,1590\nscathe,1,2kinghenryvi,1590\nCambridge,1,2kinghenryvi,1590\nalehouse,1,2kinghenryvi,1590\nJames,1,2kinghenryvi,1590\nreclaims,1,2kinghenryvi,1590\naffy,1,2kinghenryvi,1590\nReigns,1,2kinghenryvi,1590\nparted,1,2kinghenryvi,1590\nfather',1,2kinghenryvi,1590\nrelief,1,2kinghenryvi,1590\nCrowned,1,2kinghenryvi,1590\nStands,1,2kinghenryvi,1590\nX,1,2kinghenryvi,1590\nguise,1,2kinghenryvi,1590\nProve,1,2kinghenryvi,1590\ntermed,1,2kinghenryvi,1590\nbonny,1,2kinghenryvi,1590\nlamentable,1,2kinghenryvi,1590\nFed,1,2kinghenryvi,1590\nDowns,1,2kinghenryvi,1590\ncutting,1,2kinghenryvi,1590\nmistaking,1,2kinghenryvi,1590\n'Humphrey,1,2kinghenryvi,1590\nhangings,1,2kinghenryvi,1590\nyawning,1,2kinghenryvi,1590\nAdsum,1,2kinghenryvi,1590\nBedford,1,2kinghenryvi,1590\nProud,1,2kinghenryvi,1590\nextorted,1,2kinghenryvi,1590\ny,1,2kinghenryvi,1590\nfancy,1,2kinghenryvi,1590\nValiant,1,2kinghenryvi,1590\ninfant,1,2kinghenryvi,1590\nafar,1,2kinghenryvi,1590\nDuchess,1,2kinghenryvi,1590\nfor't,1,2kinghenryvi,1590\nverge,1,2kinghenryvi,1590\nimpugns,1,2kinghenryvi,1590\nAdam,1,2kinghenryvi,1590\nbelongs,1,2kinghenryvi,1590\nHear,1,2kinghenryvi,1590\nPity,1,2kinghenryvi,1590\npreferred,1,2kinghenryvi,1590\nPicardy,1,2kinghenryvi,1590\ninfamy,1,2kinghenryvi,1590\nComfort,1,2kinghenryvi,1590\nmistress,1,2kinghenryvi,1590\ntruer,1,2kinghenryvi,1590\ncoelestibus,1,2kinghenryvi,1590\ndream'd,1,2kinghenryvi,1590\nPrayers,1,2kinghenryvi,1590\ngarret,1,2kinghenryvi,1590\ncontradict,1,2kinghenryvi,1590\nDevise,1,2kinghenryvi,1590\norders,1,2kinghenryvi,1590\nspan,1,2kinghenryvi,1590\nscouring,1,2kinghenryvi,1590\nconjurations,1,2kinghenryvi,1590\nruthless,1,2kinghenryvi,1590\ntwit,1,2kinghenryvi,1590\nfuel,1,2kinghenryvi,1590\nwoman's,1,2kinghenryvi,1590\ncivil'st,1,2kinghenryvi,1590\ndims,1,2kinghenryvi,1590\nhempen,1,2kinghenryvi,1590\nWeeps,1,2kinghenryvi,1590\ncommodities,1,2kinghenryvi,1590\nreaches,1,2kinghenryvi,1590\ncade,1,2kinghenryvi,1590\nvillain's,1,2kinghenryvi,1590\nlawful,1,2kinghenryvi,1590\nbrown,1,2kinghenryvi,1590\nWhether,1,2kinghenryvi,1590\nnipping,1,2kinghenryvi,1590\nsuspicious,1,2kinghenryvi,1590\nrock,1,2kinghenryvi,1590\nclerkly,1,2kinghenryvi,1590\nVillain,1,2kinghenryvi,1590\nMessengers,1,2kinghenryvi,1590\nzeal,1,2kinghenryvi,1590\nbones,1,2kinghenryvi,1590\nboned,1,2kinghenryvi,1590\nbeadles,1,2kinghenryvi,1590\nhorse',1,2kinghenryvi,1590\nlabours,1,2kinghenryvi,1590\nbreathless,1,2kinghenryvi,1590\nexploits,1,2kinghenryvi,1590\nGLOUCESTER's,1,2kinghenryvi,1590\nsearching,1,2kinghenryvi,1590\noutrun,1,2kinghenryvi,1590\noffended,1,2kinghenryvi,1590\nwren,1,2kinghenryvi,1590\nhealth,1,2kinghenryvi,1590\nsubsidy,1,2kinghenryvi,1590\nunhelpful,1,2kinghenryvi,1590\noffender,1,2kinghenryvi,1590\ntanner,1,2kinghenryvi,1590\nstopp'd,1,2kinghenryvi,1590\nWilt,1,2kinghenryvi,1590\napprehended,1,2kinghenryvi,1590\nBeat,1,2kinghenryvi,1590\nBear,1,2kinghenryvi,1590\nmuse,1,2kinghenryvi,1590\nproclaim'd,1,2kinghenryvi,1590\ncounties,1,2kinghenryvi,1590\ntrivial,1,2kinghenryvi,1590\nspace,1,2kinghenryvi,1590\nwaxen,1,2kinghenryvi,1590\nbucklers,1,2kinghenryvi,1590\ncypress,1,2kinghenryvi,1590\nDauphin's,1,2kinghenryvi,1590\nvaulting,1,2kinghenryvi,1590\nStafford's,1,2kinghenryvi,1590\nmelt,1,2kinghenryvi,1590\nRebellious,1,2kinghenryvi,1590\nostrich,1,2kinghenryvi,1590\nIris,1,2kinghenryvi,1590\nhelm,1,2kinghenryvi,1590\nChurchmen,1,2kinghenryvi,1590\ndrowsy,1,2kinghenryvi,1590\nrecall,1,2kinghenryvi,1590\nAddress,1,2kinghenryvi,1590\nfifteens,1,2kinghenryvi,1590\nwarning,1,2kinghenryvi,1590\nbondmen,1,2kinghenryvi,1590\nChrist,1,2kinghenryvi,1590\nsingle,1,2kinghenryvi,1590\nfrowning,1,2kinghenryvi,1590\nYork's,1,2kinghenryvi,1590\nshave,1,2kinghenryvi,1590\npoisonous,1,2kinghenryvi,1590\nmule,1,2kinghenryvi,1590\nthorns,1,2kinghenryvi,1590\nwrites,1,2kinghenryvi,1590\ndirt,1,2kinghenryvi,1590\nvigilance,1,2kinghenryvi,1590\nyounger,1,2kinghenryvi,1590\njoint,1,2kinghenryvi,1590\nHanging,1,2kinghenryvi,1590\nfinger,1,2kinghenryvi,1590\nrichest,1,2kinghenryvi,1590\nBecame,1,2kinghenryvi,1590\nharbours,1,2kinghenryvi,1590\ncursing,1,2kinghenryvi,1590\ngroat,1,2kinghenryvi,1590\nwherewith,1,2kinghenryvi,1590\nspake,1,2kinghenryvi,1590\nmere,1,2kinghenryvi,1590\ndecay,1,2kinghenryvi,1590\nmean'st,1,2kinghenryvi,1590\nbraver,1,2kinghenryvi,1590\nvale,1,2kinghenryvi,1590\ngrim,1,2kinghenryvi,1590\nHelp,1,2kinghenryvi,1590\nNeapolitan,1,2kinghenryvi,1590\ntoil,1,2kinghenryvi,1590\naprons,1,2kinghenryvi,1590\ncomest,1,2kinghenryvi,1590\nUnworthy,1,2kinghenryvi,1590\nrancour's,1,2kinghenryvi,1590\nNevil,1,2kinghenryvi,1590\nDealing,1,2kinghenryvi,1590\nJoan,1,2kinghenryvi,1590\nBeshrew,1,2kinghenryvi,1590\nbrood,1,2kinghenryvi,1590\ncottages,1,2kinghenryvi,1590\nhearted,1,2kinghenryvi,1590\noffer,1,2kinghenryvi,1590\nstruck'st,1,2kinghenryvi,1590\nshifted,1,2kinghenryvi,1590\ndemeanor,1,2kinghenryvi,1590\nbrightest,1,2kinghenryvi,1590\nBeguiles,1,2kinghenryvi,1590\nslander,1,2kinghenryvi,1590\nvillanies,1,2kinghenryvi,1590\nunderstand,1,2kinghenryvi,1590\nits,1,2kinghenryvi,1590\nflow,1,2kinghenryvi,1590\ncave,1,2kinghenryvi,1590\ncoated,1,2kinghenryvi,1590\nappeal,1,2kinghenryvi,1590\nEre,1,2kinghenryvi,1590\nthroat,1,2kinghenryvi,1590\nstretched,1,2kinghenryvi,1590\nyears',1,2kinghenryvi,1590\nunderneath,1,2kinghenryvi,1590\nlouring,1,2kinghenryvi,1590\nsour,1,2kinghenryvi,1590\nterribly,1,2kinghenryvi,1590\nSuffer,1,2kinghenryvi,1590\njaded,1,2kinghenryvi,1590\nMedea,1,2kinghenryvi,1590\nAbsyrtus,1,2kinghenryvi,1590\nuntaught,1,2kinghenryvi,1590\njades,1,2kinghenryvi,1590\nalehouse',1,2kinghenryvi,1590\nExpect,1,2kinghenryvi,1590\nterrible,1,2kinghenryvi,1590\ncheap,1,2kinghenryvi,1590\nregentship,1,2kinghenryvi,1590\nrue,1,2kinghenryvi,1590\nBlaspheming,1,2kinghenryvi,1590\nAssure,1,2kinghenryvi,1590\nodds,1,2kinghenryvi,1590\niron,1,2kinghenryvi,1590\nbishops,1,2kinghenryvi,1590\ndamned,1,2kinghenryvi,1590\nsore,1,2kinghenryvi,1590\npick,1,2kinghenryvi,1590\nShaking,1,2kinghenryvi,1590\nfretful,1,2kinghenryvi,1590\nkinder,1,2kinghenryvi,1590\nworks,1,2kinghenryvi,1590\ngaols,1,2kinghenryvi,1590\nprinted,1,2kinghenryvi,1590\nabound,1,2kinghenryvi,1590\nrated,1,2kinghenryvi,1590\nwrest,1,2kinghenryvi,1590\nBedford's,1,2kinghenryvi,1590\nduchies,1,2kinghenryvi,1590\nthump,1,2kinghenryvi,1590\ncheeks,1,2kinghenryvi,1590\nenvenomed,1,2kinghenryvi,1590\nPERSONAE,1,2kinghenryvi,1590\nproclaim,1,2kinghenryvi,1590\nrescued,1,2kinghenryvi,1590\ndenay'd,1,2kinghenryvi,1590\nUngentle,1,2kinghenryvi,1590\nSeditious,1,2kinghenryvi,1590\nspark,1,2kinghenryvi,1590\ndeservest,1,2kinghenryvi,1590\nlightning,1,2kinghenryvi,1590\ncrutch,1,2kinghenryvi,1590\nlyingest,1,2kinghenryvi,1590\ncask,1,2kinghenryvi,1590\nspares,1,2kinghenryvi,1590\ngallop,1,2kinghenryvi,1590\nargues,1,2kinghenryvi,1590\nunconquered,1,2kinghenryvi,1590\nlaces,1,2kinghenryvi,1590\npursue,1,2kinghenryvi,1590\nOnce,1,2kinghenryvi,1590\nperformance,1,2kinghenryvi,1590\ndownfall,1,2kinghenryvi,1590\npractised,1,2kinghenryvi,1590\nsuccessive,1,2kinghenryvi,1590\nRate,1,2kinghenryvi,1590\nPoor,1,2kinghenryvi,1590\nlaw's,1,2kinghenryvi,1590\nplague,1,2kinghenryvi,1590\nOver,1,2kinghenryvi,1590\nassures,1,2kinghenryvi,1590\ncounter,1,2kinghenryvi,1590\nflagging,1,2kinghenryvi,1590\nVIII,1,2kinghenryvi,1590\nchid,1,2kinghenryvi,1590\npractises,1,2kinghenryvi,1590\ngrasp'd,1,2kinghenryvi,1590\nhonester,1,2kinghenryvi,1590\nSouthwell,1,2kinghenryvi,1590\nland's,1,2kinghenryvi,1590\nespouse,1,2kinghenryvi,1590\nfeather,1,2kinghenryvi,1590\ndraw,1,2kinghenryvi,1590\nconsuming,1,2kinghenryvi,1590\nunpolish'd,1,2kinghenryvi,1590\nthirtieth,1,2kinghenryvi,1590\nruder,1,2kinghenryvi,1590\nsubversion,1,2kinghenryvi,1590\nConjuro,1,2kinghenryvi,1590\nHorner's,1,2kinghenryvi,1590\npine,1,2kinghenryvi,1590\nthousands,1,2kinghenryvi,1590\ntownsmen,1,2kinghenryvi,1590\ntoss,1,2kinghenryvi,1590\ndance,1,2kinghenryvi,1590\nbetake,1,2kinghenryvi,1590\nContenteth,1,2kinghenryvi,1590\nnubibus,1,2kinghenryvi,1590\nlosers,1,2kinghenryvi,1590\nline,1,2kinghenryvi,1590\nhour's,1,2kinghenryvi,1590\nsorrows,1,2kinghenryvi,1590\nhoise,1,2kinghenryvi,1590\npurposely,1,2kinghenryvi,1590\nmaintains,1,2kinghenryvi,1590\nBristol,1,2kinghenryvi,1590\ncholeric,1,2kinghenryvi,1590\ncorner,1,2kinghenryvi,1590\ninstigation,1,2kinghenryvi,1590\nOrleans,1,2kinghenryvi,1590\nlime,1,2kinghenryvi,1590\nvaunts,1,2kinghenryvi,1590\nComb,1,2kinghenryvi,1590\ndrab,1,2kinghenryvi,1590\nAnchises,1,2kinghenryvi,1590\nproceeds,1,2kinghenryvi,1590\nALEXANDER,1,2kinghenryvi,1590\noccupat,1,2kinghenryvi,1590\nobdurate,1,2kinghenryvi,1590\npurse,1,2kinghenryvi,1590\nsubjects,1,2kinghenryvi,1590\novercome,1,2kinghenryvi,1590\nRemember,1,2kinghenryvi,1590\nrestitution,1,2kinghenryvi,1590\nawry,1,2kinghenryvi,1590\nheap,1,2kinghenryvi,1590\nmeddling,1,2kinghenryvi,1590\nworthier,1,2kinghenryvi,1590\nexclaim,1,2kinghenryvi,1590\nheadless,1,2kinghenryvi,1590\ncheek,1,2kinghenryvi,1590\nfingers,1,2kinghenryvi,1590\ndogged,1,2kinghenryvi,1590\nlift,1,2kinghenryvi,1590\nquadrangle,1,2kinghenryvi,1590\nmadness,1,2kinghenryvi,1590\nbabes,1,2kinghenryvi,1590\nchop,1,2kinghenryvi,1590\ncharacters,1,2kinghenryvi,1590\nknaves,1,2kinghenryvi,1590\ngross,1,2kinghenryvi,1590\nbreaks,1,2kinghenryvi,1590\nrebels',1,2kinghenryvi,1590\nchimney,1,2kinghenryvi,1590\nfalcon's,1,2kinghenryvi,1590\nwrong'st,1,2kinghenryvi,1590\ngelded,1,2kinghenryvi,1590\nguerdon'd,1,2kinghenryvi,1590\nteach,1,2kinghenryvi,1590\nriches,1,2kinghenryvi,1590\nAdventure,1,2kinghenryvi,1590\nBeside,1,2kinghenryvi,1590\nfurious,1,2kinghenryvi,1590\nposse,1,2kinghenryvi,1590\nfume,1,2kinghenryvi,1590\nmourn'd,1,2kinghenryvi,1590\npalfrey,1,2kinghenryvi,1590\nfreedom,1,2kinghenryvi,1590\nconfessed,1,2kinghenryvi,1590\nlesser,1,2kinghenryvi,1590\nwail,1,2kinghenryvi,1590\nconfirms,1,2kinghenryvi,1590\n'Simpcox,1,2kinghenryvi,1590\nriotous,1,2kinghenryvi,1590\nmounts,1,2kinghenryvi,1590\ncities,1,2kinghenryvi,1590\nsinful,1,2kinghenryvi,1590\nladies',1,2kinghenryvi,1590\nbarks,1,2kinghenryvi,1590\npillow,1,2kinghenryvi,1590\nwishest,1,2kinghenryvi,1590\nimpostor,1,2kinghenryvi,1590\nwizard,1,2kinghenryvi,1590\nocean,1,2kinghenryvi,1590\noutface,1,2kinghenryvi,1590\nseeking,1,2kinghenryvi,1590\nTully,1,2kinghenryvi,1590\nPirates,1,2kinghenryvi,1590\nshames,1,2kinghenryvi,1590\nerst,1,2kinghenryvi,1590\nI'd,1,2kinghenryvi,1590\nblocks,1,2kinghenryvi,1590\nproclaims,1,2kinghenryvi,1590\nafflict,1,2kinghenryvi,1590\nLordings,1,2kinghenryvi,1590\nrepresent,1,2kinghenryvi,1590\nwilderness,1,2kinghenryvi,1590\nspeeches,1,2kinghenryvi,1590\nprevail'd,1,2kinghenryvi,1590\nsprays,1,2kinghenryvi,1590\npetitioner,1,2kinghenryvi,1590\nimprison'd,1,2kinghenryvi,1590\ncourtly,1,2kinghenryvi,1590\nminions,1,2kinghenryvi,1590\naccompt,1,2kinghenryvi,1590\nreaching,1,2kinghenryvi,1590\ndeceased,1,2kinghenryvi,1590\nscorpion's,1,2kinghenryvi,1590\nrobbing,1,2kinghenryvi,1590\nclerks,1,2kinghenryvi,1590\nmay't,1,2kinghenryvi,1590\nthink'st,1,2kinghenryvi,1590\nsubdued,1,2kinghenryvi,1590\ndrudge's,1,2kinghenryvi,1590\nagent,1,2kinghenryvi,1590\nbode,1,2kinghenryvi,1590\nfleet,1,2kinghenryvi,1590\nourself,1,2kinghenryvi,1590\nscourge,1,2kinghenryvi,1590\nfelon,1,2kinghenryvi,1590\nwall,1,2kinghenryvi,1590\naffiance,1,2kinghenryvi,1590\nsworder,1,2kinghenryvi,1590\nsaying,1,2kinghenryvi,1590\nchain'd,1,2kinghenryvi,1590\ncourtezans,1,2kinghenryvi,1590\nstart'st,1,2kinghenryvi,1590\ncoals,1,2kinghenryvi,1590\nwhipping,1,2kinghenryvi,1590\nYORK'S,1,2kinghenryvi,1590\n'Tell,1,2kinghenryvi,1590\ncarrying,1,2kinghenryvi,1590\nwake,1,2kinghenryvi,1590\nGazing,1,2kinghenryvi,1590\nchiefest,1,2kinghenryvi,1590\nscoured,1,2kinghenryvi,1590\nanew,1,2kinghenryvi,1590\nlaying,1,2kinghenryvi,1590\nforewarning,1,2kinghenryvi,1590\ndisposed,1,2kinghenryvi,1590\nscorn,1,2kinghenryvi,1590\nconcert,1,2kinghenryvi,1590\npardons,1,2kinghenryvi,1590\nspy,1,2kinghenryvi,1590\nnine,1,2kinghenryvi,1590\nperil,1,2kinghenryvi,1590\nlivest,1,2kinghenryvi,1590\n'Seek,1,2kinghenryvi,1590\nvaunted,1,2kinghenryvi,1590\ndeliver,1,2kinghenryvi,1590\nweapon's,1,2kinghenryvi,1590\npasseth,1,2kinghenryvi,1590\nthunders,1,2kinghenryvi,1590\nCLERK,1,2kinghenryvi,1590\nfrosty,1,2kinghenryvi,1590\nloaves,1,2kinghenryvi,1590\nsteps,1,2kinghenryvi,1590\nterra,1,2kinghenryvi,1590\nfamed,1,2kinghenryvi,1590\nexceeded,1,2kinghenryvi,1590\njustices,1,2kinghenryvi,1590\nRazing,1,2kinghenryvi,1590\nattainted,1,2kinghenryvi,1590\nchildren's,1,2kinghenryvi,1590\nrecords,1,2kinghenryvi,1590\nlowing,1,2kinghenryvi,1590\nlewdly,1,2kinghenryvi,1590\nfollower,1,2kinghenryvi,1590\nGall,1,2kinghenryvi,1590\nwofull'st,1,2kinghenryvi,1590\nhammer,1,2kinghenryvi,1590\nfollowed,1,2kinghenryvi,1590\nconventicles,1,2kinghenryvi,1590\napparent,1,2kinghenryvi,1590\nfleeced,1,2kinghenryvi,1590\nSilence,1,2kinghenryvi,1590\nnominate,1,2kinghenryvi,1590\n'prentices,1,2kinghenryvi,1590\nbelonging,1,2kinghenryvi,1590\nsucceeds,1,2kinghenryvi,1590\nkindly,1,2kinghenryvi,1590\npointing,1,2kinghenryvi,1590\nexacted,1,2kinghenryvi,1590\nsurmised,1,2kinghenryvi,1590\nclergy's,1,2kinghenryvi,1590\nequity,1,2kinghenryvi,1590\ndisgrace,1,2kinghenryvi,1590\ndeeply,1,2kinghenryvi,1590\nfirmly,1,2kinghenryvi,1590\nstudy,1,2kinghenryvi,1590\ndeserts,1,2kinghenryvi,1590\nsky,1,2kinghenryvi,1590\nlevel,1,2kinghenryvi,1590\nunbowed,1,2kinghenryvi,1590\nfaulty,1,2kinghenryvi,1590\nsuck,1,2kinghenryvi,1590\nThanks,1,2kinghenryvi,1590\nemblaze,1,2kinghenryvi,1590\nmerciless,1,2kinghenryvi,1590\nterrace,1,2kinghenryvi,1590\npieces,1,2kinghenryvi,1590\ncontroller,1,2kinghenryvi,1590\nplay'd,1,2kinghenryvi,1590\nscope,1,2kinghenryvi,1590\nbecomes,1,2kinghenryvi,1590\ncheese,1,2kinghenryvi,1590\naffect,1,2kinghenryvi,1590\nawful,1,2kinghenryvi,1590\nsends,1,2kinghenryvi,1590\npoverty,1,2kinghenryvi,1590\neternized,1,2kinghenryvi,1590\nsinners,1,2kinghenryvi,1590\nloosed,1,2kinghenryvi,1590\nminion,1,2kinghenryvi,1590\nworst,1,2kinghenryvi,1590\nCeres',1,2kinghenryvi,1590\npuissant,1,2kinghenryvi,1590\npremised,1,2kinghenryvi,1590\npoles,1,2kinghenryvi,1590\ntaught,1,2kinghenryvi,1590\nreap,1,2kinghenryvi,1590\nmerit,1,2kinghenryvi,1590\nirae,1,2kinghenryvi,1590\neating,1,2kinghenryvi,1590\nguide,1,2kinghenryvi,1590\nbreeches,1,2kinghenryvi,1590\ncompound,1,2kinghenryvi,1590\npassed,1,2kinghenryvi,1590\nBretagne,1,2kinghenryvi,1590\nPrincess,1,2kinghenryvi,1590\ndanced,1,2kinghenryvi,1590\nlingering,1,2kinghenryvi,1590\nhautboys,1,2kinghenryvi,1590\nWast,1,2kinghenryvi,1590\ndoublets,1,2kinghenryvi,1590\nItem,1,2kinghenryvi,1590\nsnow,1,2kinghenryvi,1590\ncourtiers,1,2kinghenryvi,1590\nchased,1,2kinghenryvi,1590\nRuled,1,2kinghenryvi,1590\nunhallow'd,1,2kinghenryvi,1590\ntwelve,1,2kinghenryvi,1590\nallegations,1,2kinghenryvi,1590\nqualm,1,2kinghenryvi,1590\nWhereof,1,2kinghenryvi,1590\nshilling,1,2kinghenryvi,1590\nbricks,1,2kinghenryvi,1590\nbliss,1,2kinghenryvi,1590\nAttracts,1,2kinghenryvi,1590\nfastened,1,2kinghenryvi,1590\nencounter'd,1,2kinghenryvi,1590\nlucky,1,2kinghenryvi,1590\nquake,1,2kinghenryvi,1590\nexceeding,1,2kinghenryvi,1590\nQuitting,1,2kinghenryvi,1590\naffected,1,2kinghenryvi,1590\nBroke,1,2kinghenryvi,1590\ncherish,1,2kinghenryvi,1590\nvirgin's,1,2kinghenryvi,1590\nWink,1,2kinghenryvi,1590\ninstance,1,2kinghenryvi,1590\ntaper,1,2kinghenryvi,1590\nbribe,1,2kinghenryvi,1590\nshowers,1,2kinghenryvi,1590\nfruit,1,2kinghenryvi,1590\nhousehold,1,2kinghenryvi,1590\nwilling,1,2kinghenryvi,1590\nCalydon,1,2kinghenryvi,1590\nbehavedst,1,2kinghenryvi,1590\npageant,1,2kinghenryvi,1590\nbestrid,1,2kinghenryvi,1590\nunrevenged,1,2kinghenryvi,1590\nsue,1,2kinghenryvi,1590\nbrick,1,2kinghenryvi,1590\nsum,1,2kinghenryvi,1590\ndraught,1,2kinghenryvi,1590\nshining,1,2kinghenryvi,1590\ncomplete,1,2kinghenryvi,1590\ncompanion,1,2kinghenryvi,1590\njustice',1,2kinghenryvi,1590\nKings,1,2kinghenryvi,1590\nbride,1,2kinghenryvi,1590\ncircled,1,2kinghenryvi,1590\nbows,1,2kinghenryvi,1590\nOwen,1,2kinghenryvi,1590\nrecovery,1,2kinghenryvi,1590\nPomfret,1,2kinghenryvi,1590\ninfinite,1,2kinghenryvi,1590\nflaming,1,2kinghenryvi,1590\ncircuit,1,2kinghenryvi,1590\nsaucy,1,2kinghenryvi,1590\n'scaped,1,2kinghenryvi,1590\ncostly,1,2kinghenryvi,1590\ninfallible,1,2kinghenryvi,1590\nquart,1,2kinghenryvi,1590\nhales,1,2kinghenryvi,1590\nOld,1,2kinghenryvi,1590\ntortures,1,2kinghenryvi,1590\nGuard,1,2kinghenryvi,1590\nchoose,1,2kinghenryvi,1590\nwing,1,2kinghenryvi,1590\npatrimony,1,2kinghenryvi,1590\nwink,1,2kinghenryvi,1590\nputting,1,2kinghenryvi,1590\nFly,1,2kinghenryvi,1590\nLatin,1,2kinghenryvi,1590\nirksome,1,2kinghenryvi,1590\ntax,1,2kinghenryvi,1590\nwished,1,2kinghenryvi,1590\nlanguage,1,2kinghenryvi,1590\nnails,1,2kinghenryvi,1590\nmonarchy,1,2kinghenryvi,1590\ncaves,1,2kinghenryvi,1590\nrend,1,2kinghenryvi,1590\nCrying,1,2kinghenryvi,1590\ndedicate,1,2kinghenryvi,1590\nDare,1,2kinghenryvi,1590\nwand,1,2kinghenryvi,1590\nthirsting,1,2kinghenryvi,1590\nseems,1,2kinghenryvi,1590\nusurp,1,2kinghenryvi,1590\nrent,1,2kinghenryvi,1590\nexecutioner,1,2kinghenryvi,1590\nastonish,1,2kinghenryvi,1590\nhalloing,1,2kinghenryvi,1590\nSawyer,1,2kinghenryvi,1590\npartridge,1,2kinghenryvi,1590\nbrand,1,2kinghenryvi,1590\nhates,1,2kinghenryvi,1590\nRetreat,1,2kinghenryvi,1590\nruin,1,2kinghenryvi,1590\nturmoiled,1,2kinghenryvi,1590\nanon,1,2kinghenryvi,1590\nturned,1,2kinghenryvi,1590\nservile,1,2kinghenryvi,1590\nImmediately,1,2kinghenryvi,1590\neagle,1,2kinghenryvi,1590\nimperious,1,2kinghenryvi,1590\nthrows,1,2kinghenryvi,1590\nPutting,1,2kinghenryvi,1590\nexecrations,1,2kinghenryvi,1590\ndevil's,1,2kinghenryvi,1590\nsense,1,2kinghenryvi,1590\nwithheld,1,2kinghenryvi,1590\nnorthern,1,2kinghenryvi,1590\nmandrake's,1,2kinghenryvi,1590\nindebted,1,2kinghenryvi,1590\ntorment'st,1,2kinghenryvi,1590\nsummon,1,2kinghenryvi,1590\nparching,1,2kinghenryvi,1590\nungracious,1,2kinghenryvi,1590\nwarm,1,2kinghenryvi,1590\ndukedom,1,2kinghenryvi,1590\nwars,1,2kinghenryvi,1590\nmeat,1,2kinghenryvi,1590\ntimeless,1,2kinghenryvi,1590\ntriple,1,2kinghenryvi,1590\nwash,1,2kinghenryvi,1590\nbasilisk,1,2kinghenryvi,1590\nclaret,1,2kinghenryvi,1590\nmistake,1,2kinghenryvi,1590\nboot,1,2kinghenryvi,1590\nstirr'd,1,2kinghenryvi,1590\nsteed,1,2kinghenryvi,1590\ndesire,1,2kinghenryvi,1590\nt'other,1,2kinghenryvi,1590\nPlantagenet,1,2kinghenryvi,1590\nLadies,1,2kinghenryvi,1590\nrules,1,2kinghenryvi,1590\nruled,1,2kinghenryvi,1590\ncondemns,1,2kinghenryvi,1590\nwits,1,2kinghenryvi,1590\nobserve,1,2kinghenryvi,1590\nbreastplate,1,2kinghenryvi,1590\nsteer,1,2kinghenryvi,1590\nmanhood,1,2kinghenryvi,1590\nbright,1,2kinghenryvi,1590\nVaux,1,2kinghenryvi,1590\npraised,1,2kinghenryvi,1590\nuprear'd,1,2kinghenryvi,1590\ndigg'd,1,2kinghenryvi,1590\ncompared,1,2kinghenryvi,1590\nprevails,1,2kinghenryvi,1590\ntent,1,2kinghenryvi,1590\nsympathy,1,2kinghenryvi,1590\nDescended,1,2kinghenryvi,1590\nMarquess,1,2kinghenryvi,1590\nfairest,1,2kinghenryvi,1590\nsmiledst,1,2kinghenryvi,1590\nframes,1,2kinghenryvi,1590\nUsed,1,2kinghenryvi,1590\nnephew,1,2kinghenryvi,1590\nbitter,1,2kinghenryvi,1590\nbills,1,2kinghenryvi,1590\npreferr'd,1,2kinghenryvi,1590\nscandal,1,2kinghenryvi,1590\nprince's,1,2kinghenryvi,1590\nCrown'd,1,2kinghenryvi,1590\nFaith,1,2kinghenryvi,1590\nmickle,1,2kinghenryvi,1590\nauthority,1,2kinghenryvi,1590\nstumble,1,2kinghenryvi,1590\nbastardy,1,2kinghenryvi,1590\npalmer's,1,2kinghenryvi,1590\nLands,1,2kinghenryvi,1590\nchamber,1,2kinghenryvi,1590\nI',1,2kinghenryvi,1590\nkeys,1,2kinghenryvi,1590\nchirping,1,2kinghenryvi,1590\nHarmless,1,2kinghenryvi,1590\nslaves,1,2kinghenryvi,1590\nmanners,1,2kinghenryvi,1590\ndrown,1,2kinghenryvi,1590\nstatutes,1,2kinghenryvi,1590\nLeaving,1,2kinghenryvi,1590\nstrongly,1,2kinghenryvi,1590\npillars,1,2kinghenryvi,1590\nhap,1,2kinghenryvi,1590\nkern,1,2kinghenryvi,1590\nbacks,1,2kinghenryvi,1590\nplanet,1,2kinghenryvi,1590\nabortive,1,2kinghenryvi,1590\naboard,1,2kinghenryvi,1590\ntally,1,2kinghenryvi,1590\ncontumelious,1,2kinghenryvi,1590\nA',1,2kinghenryvi,1590\nHome,1,2kinghenryvi,1590\nseventh,1,2kinghenryvi,1590\ndefile,1,2kinghenryvi,1590\nrefuse,1,2kinghenryvi,1590\ngotten,1,2kinghenryvi,1590\noffend,1,2kinghenryvi,1590\norator,1,2kinghenryvi,1590\ndistinguish,1,2kinghenryvi,1590\ntalks,1,2kinghenryvi,1590\nWindsor,1,2kinghenryvi,1590\nresemble,1,2kinghenryvi,1590\nburthen'd,1,2kinghenryvi,1590\ngranted,1,2kinghenryvi,1590\nflattery,1,2kinghenryvi,1590\nappeased,1,2kinghenryvi,1590\ninvent,1,2kinghenryvi,1590\npaw,1,2kinghenryvi,1590\ninfection,1,2kinghenryvi,1590\nmistrust,1,2kinghenryvi,1590\nempress,1,2kinghenryvi,1590\nmutiny,1,2kinghenryvi,1590\nscarce,1,2kinghenryvi,1590\nreplete,1,2kinghenryvi,1590\nslander's,1,2kinghenryvi,1590\npatience,1,2kinghenryvi,1590\nblows,1,2kinghenryvi,1590\nknowing,1,2kinghenryvi,1590\nlobby,1,2kinghenryvi,1590\nbloodshedding,1,2kinghenryvi,1590\nresolutely,1,2kinghenryvi,1590\nshortly,1,2kinghenryvi,1590\nhew,1,2kinghenryvi,1590\nmurderers,1,2kinghenryvi,1590\nsmile,1,2kinghenryvi,1590\nLa,1,2kinghenryvi,1590\nHaving,1,2kinghenryvi,1590\nLo,1,2kinghenryvi,1590\nfates,1,2kinghenryvi,1590\nwrings,1,2kinghenryvi,1590\nMe,1,2kinghenryvi,1590\nsiege,1,2kinghenryvi,1590\nfurthermore,1,2kinghenryvi,1590\nproof,1,2kinghenryvi,1590\nladyship,1,2kinghenryvi,1590\neternity,1,2kinghenryvi,1590\nsubscribe,1,2kinghenryvi,1590\nin't,1,2kinghenryvi,1590\nWeaver,1,2kinghenryvi,1590\nWeaves,1,2kinghenryvi,1590\nAdvance,1,2kinghenryvi,1590\ngreatly,1,2kinghenryvi,1590\nbelike,1,2kinghenryvi,1590\nsophister,1,2kinghenryvi,1590\nexceed,1,2kinghenryvi,1590\nstar,1,2kinghenryvi,1590\nvoid,1,2kinghenryvi,1590\ngrumbling,1,2kinghenryvi,1590\nfouler,1,2kinghenryvi,1590\nstudying,1,2kinghenryvi,1590\npen,1,2kinghenryvi,1590\nProclaim,1,2kinghenryvi,1590\npawn,1,2kinghenryvi,1590\nhid,1,2kinghenryvi,1590\nwisdom,1,2kinghenryvi,1590\npulls,1,2kinghenryvi,1590\nconceived,1,2kinghenryvi,1590\nashes,1,2kinghenryvi,1590\nmiracles,1,2kinghenryvi,1590\nbezonians,1,2kinghenryvi,1590\n'Imprimis,1,2kinghenryvi,1590\nbee,1,2kinghenryvi,1590\nsovereignty,1,2kinghenryvi,1590\nprinting,1,2kinghenryvi,1590\nWales,1,2kinghenryvi,1590\nIX,1,2kinghenryvi,1590\nLionel's,1,2kinghenryvi,1590\nquick,1,2kinghenryvi,1590\ntribute,1,2kinghenryvi,1590\nhobnails,1,2kinghenryvi,1590\ncontracted,1,2kinghenryvi,1590\npate,1,2kinghenryvi,1590\nrevolting,1,2kinghenryvi,1590\nadder,1,2kinghenryvi,1590\nBuckingham's,1,2kinghenryvi,1590\npast,1,2kinghenryvi,1590\ntroops,1,2kinghenryvi,1590\nelection,1,2kinghenryvi,1590\nmeals,1,2kinghenryvi,1590\npin,1,2kinghenryvi,1590\nhoarded,1,2kinghenryvi,1590\ntreachery,1,2kinghenryvi,1590\nHas,1,2kinghenryvi,1590\nhopest,1,2kinghenryvi,1590\nwedded,1,2kinghenryvi,1590\nMedice,1,2kinghenryvi,1590\nextortions,1,2kinghenryvi,1590\nSight,1,2kinghenryvi,1590\nUp,1,2kinghenryvi,1590\ndisplay'd,1,2kinghenryvi,1590\nScarce,1,2kinghenryvi,1590\ncountries,1,2kinghenryvi,1590\nlizards',1,2kinghenryvi,1590\nriseth,1,2kinghenryvi,1590\nthighs,1,2kinghenryvi,1590\nmeritorious,1,2kinghenryvi,1590\nGold,1,2kinghenryvi,1590\nJulius,1,2kinghenryvi,1590\no'erthrow,1,2kinghenryvi,1590\nrevenues,1,2kinghenryvi,1590\nmained,1,2kinghenryvi,1590\nSeems,1,2kinghenryvi,1590\nbeheaded,1,2kinghenryvi,1590\nerecting,1,2kinghenryvi,1590\nStudied,1,2kinghenryvi,1590\nDauphin,1,2kinghenryvi,1590\nDukes,1,2kinghenryvi,1590\nsurprise,1,2kinghenryvi,1590\nGood,1,2kinghenryvi,1590\ngod,1,2kinghenryvi,1590\npriests,1,2kinghenryvi,1590\nbroached,1,2kinghenryvi,1590\nImage,1,2kinghenryvi,1590\ngowns,1,2kinghenryvi,1590\nThunder,1,2kinghenryvi,1590\nroyalty,1,2kinghenryvi,1590\nweed,1,2kinghenryvi,1590\ncancelling,1,2kinghenryvi,1590\ncondign,1,2kinghenryvi,1590\nmorning's,1,2kinghenryvi,1590\napothecary,1,2kinghenryvi,1590\nrampant,1,2kinghenryvi,1590\ndandle,1,2kinghenryvi,1590\nnigh,1,2kinghenryvi,1590\nunload,1,2kinghenryvi,1590\nputtock's,1,2kinghenryvi,1590\nspotless,1,2kinghenryvi,1590\nthreadbare,1,2kinghenryvi,1590\nbend,1,2kinghenryvi,1590\nclimbed,1,2kinghenryvi,1590\nReceive,1,2kinghenryvi,1590\nstray,1,2kinghenryvi,1590\nSay's,1,2kinghenryvi,1590\nabides,1,2kinghenryvi,1590\nDrum,1,2kinghenryvi,1590\ncanker,1,2kinghenryvi,1590\npreserved,1,2kinghenryvi,1590\nbush,1,2kinghenryvi,1590\nmiscarry,1,2kinghenryvi,1590\nwillingness,1,2kinghenryvi,1590\ndarling's,1,2kinghenryvi,1590\nbury,1,2kinghenryvi,1590\ntumble,1,2kinghenryvi,1590\nSits,1,2kinghenryvi,1590\nwhereas,1,2kinghenryvi,1590\ncherish'd,1,2kinghenryvi,1590\nkindness,1,2kinghenryvi,1590\ntruncheon,1,2kinghenryvi,1590\npedler's,1,2kinghenryvi,1590\ncap,1,2kinghenryvi,1590\nchildren,1,2kinghenryvi,1590\nbreathing,1,2kinghenryvi,1590\ncorpse,1,2kinghenryvi,1590\nstraiter,1,2kinghenryvi,1590\nBarren,1,2kinghenryvi,1590\npetition,1,2kinghenryvi,1590\nhomely,1,2kinghenryvi,1590\nKenilworth,1,2kinghenryvi,1590\npry,1,2kinghenryvi,1590\nExcepting,1,2kinghenryvi,1590\nmeetest,1,2kinghenryvi,1590\nswoons,1,2kinghenryvi,1590\nanything,1,2kinghenryvi,1590\nweak,1,2kinghenryvi,1590\nwoful,1,2kinghenryvi,1590\nSave,1,2kinghenryvi,1590\nBEAUFORT,1,2kinghenryvi,1590\nWingham,1,2kinghenryvi,1590\nEntreat,1,2kinghenryvi,1590\ncomplot,1,2kinghenryvi,1590\nStrange,1,2kinghenryvi,1590\nDying,1,2kinghenryvi,1590\nquill,1,2kinghenryvi,1590\nClifford's,1,2kinghenryvi,1590\ndisperse,1,2kinghenryvi,1590\nbeyond,1,2kinghenryvi,1590\nshadow,1,2kinghenryvi,1590\nsurveyor,1,2kinghenryvi,1590\nbuildings,1,2kinghenryvi,1590\nSpeak,1,2kinghenryvi,1590\nPut,1,2kinghenryvi,1590\nthrobbing,1,2kinghenryvi,1590\nDied,1,2kinghenryvi,1590\nmanacle,1,2kinghenryvi,1590\nexile,1,2kinghenryvi,1590\nDieu,1,2kinghenryvi,1590\nDisdaining,1,2kinghenryvi,1590\ntickled,1,2kinghenryvi,1590\nbended,1,2kinghenryvi,1590\nblock,1,2kinghenryvi,1590\ncurst,1,2kinghenryvi,1590\nserpent,1,2kinghenryvi,1590\ndisbursed,1,2kinghenryvi,1590\ntwice,1,2kinghenryvi,1590\nDidst,1,2kinghenryvi,1590\nsurfeiting,1,2kinghenryvi,1590\ntraitors',1,2kinghenryvi,1590\ngun,1,2kinghenryvi,1590\nfifteenth,1,2kinghenryvi,1590\nconquest,1,2kinghenryvi,1590\ndegree,1,2kinghenryvi,1590\ntestify,1,2kinghenryvi,1590\nbud,1,2kinghenryvi,1590\ndangerously,1,2kinghenryvi,1590\ndeathful,1,2kinghenryvi,1590\nbuz,1,2kinghenryvi,1590\nbuy,1,2kinghenryvi,1590\nbeef,1,2kinghenryvi,1590\nAjax,1,2kinghenryvi,1590\nYe,1,2kinghenryvi,1590\nvassal,1,2kinghenryvi,1590\njurisdiction,1,2kinghenryvi,1590\ntravel,1,2kinghenryvi,1590\nbees,1,2kinghenryvi,1590\nO'er,1,2kinghenryvi,1590\nwheresoe'er,1,2kinghenryvi,1590\nsurvey,1,2kinghenryvi,1590\nWhate'er,1,2kinghenryvi,1590\nadmired,1,2kinghenryvi,1590\ncraving,1,2kinghenryvi,1590\ncouch'd,1,2kinghenryvi,1590\nsins,1,2kinghenryvi,1590\nproportion'd,1,2kinghenryvi,1590\nhair'd,1,2kinghenryvi,1590\nambassadors,1,2kinghenryvi,1590\nstronger,1,2kinghenryvi,1590\npains,1,2kinghenryvi,1590\nsink,1,2kinghenryvi,1590\ngate,1,2kinghenryvi,1590\n'Twas,1,2kinghenryvi,1590\nrejoice,1,2kinghenryvi,1590\nsing,1,2kinghenryvi,1590\nhourly,1,2kinghenryvi,1590\nquire,1,2kinghenryvi,1590\nfulness,1,2kinghenryvi,1590\n'Villiago,1,2kinghenryvi,1590\ntwigs,1,2kinghenryvi,1590\nMasters,1,2kinghenryvi,1590\ncalling,1,2kinghenryvi,1590\nfooting,1,2kinghenryvi,1590\nnorth,1,2kinghenryvi,1590\nattain'd,1,2kinghenryvi,1590\nhopeful,1,2kinghenryvi,1590\ngasp,1,2kinghenryvi,1590\nmisty,1,2kinghenryvi,1590\nafoot,1,2kinghenryvi,1590\nBehoves,1,2kinghenryvi,1590\nbargain'd,1,2kinghenryvi,1590\npillage,1,2kinghenryvi,1590\ntower,1,2kinghenryvi,1590\n'Who's,1,2kinghenryvi,1590\ninfortunate,1,2kinghenryvi,1590\njointly,1,2kinghenryvi,1590\nhoops,1,2kinghenryvi,1590\ndogs,1,2kinghenryvi,1590\narrogant,1,2kinghenryvi,1590\nOmitting,1,2kinghenryvi,1590\nnoblemen,1,2kinghenryvi,1590\ncollege,1,2kinghenryvi,1590\nraught,1,2kinghenryvi,1590\nCannon,1,2kinghenryvi,1590\nchildish,1,2kinghenryvi,1590\nflourishes,1,2kinghenryvi,1590\ndeem,1,2kinghenryvi,1590\ndeparted,1,2kinghenryvi,1590\nIrish,1,2kinghenryvi,1590\ngovernment,1,2kinghenryvi,1590\nawaits,1,2kinghenryvi,1590\ndeer,1,2kinghenryvi,1590\npromised,1,2kinghenryvi,1590\npapers,1,2kinghenryvi,1590\nCannot,1,2kinghenryvi,1590\nreave,1,2kinghenryvi,1590\npromises,1,2kinghenryvi,1590\ndoornail,1,2kinghenryvi,1590\npuddle,1,2kinghenryvi,1590\nkeeping,1,2kinghenryvi,1590\nnostrils,1,2kinghenryvi,1590\ntyrant,1,2kinghenryvi,1590\ngift,1,2kinghenryvi,1590\nsatisfy,1,2kinghenryvi,1590\ndoit,1,2kinghenryvi,1590\nservant,1,2kinghenryvi,1590\nexcellent,1,2kinghenryvi,1590\nrepute,1,2kinghenryvi,1590\ncarrion,1,2kinghenryvi,1590\nattainture,1,2kinghenryvi,1590\nneedy,1,2kinghenryvi,1590\nviolence,1,2kinghenryvi,1590\nHUMPHREY'S,1,2kinghenryvi,1590\nWoodstock,1,2kinghenryvi,1590\nsuccor,1,2kinghenryvi,1590\nrecovered,1,2kinghenryvi,1590\nSucceed,1,2kinghenryvi,1590\nlaments,1,2kinghenryvi,1590\nshag,1,2kinghenryvi,1590\nbeak,1,2kinghenryvi,1590\nbeam,1,2kinghenryvi,1590\ngathered,1,2kinghenryvi,1590\ndwell,1,2kinghenryvi,1590\nquiver,1,2kinghenryvi,1590\noftener,1,2kinghenryvi,1590\nstony,1,2kinghenryvi,1590\nsplitted,1,2kinghenryvi,1590\nliberal,1,2kinghenryvi,1590\ngait,1,2kinghenryvi,1590\nvouchsafe,1,2kinghenryvi,1590\nlikely,1,2kinghenryvi,1590\npluck'd,1,2kinghenryvi,1590\nlent,1,2kinghenryvi,1590\ndrain,1,2kinghenryvi,1590\nnobleman,1,2kinghenryvi,1590\nLast,1,2kinghenryvi,1590\ntrash,1,2kinghenryvi,1590\naccuser,1,2kinghenryvi,1590\nenforce,1,2kinghenryvi,1590\ncollect,1,2kinghenryvi,1590\ndoes,1,2kinghenryvi,1590\ngall,1,2kinghenryvi,1590\npoise,1,2kinghenryvi,1590\ndestruction,1,2kinghenryvi,1590\ndowries,1,2kinghenryvi,1590\nexpects,1,2kinghenryvi,1590\nmelts,1,2kinghenryvi,1590\nsack,1,2kinghenryvi,1590\nspleenful,1,2kinghenryvi,1590\nlaughing,1,2kinghenryvi,1590\ndefence,1,2kinghenryvi,1590\nlends,1,2kinghenryvi,1590\nconjurers,1,2kinghenryvi,1590\nquaint,1,2kinghenryvi,1590\nspeed,1,2kinghenryvi,1590\ncrab,1,2kinghenryvi,1590\nmemory,1,2kinghenryvi,1590\nrelenting,1,2kinghenryvi,1590\npossess'd,1,2kinghenryvi,1590\nslips,1,2kinghenryvi,1590\napproach,1,2kinghenryvi,1590\n'prentice,1,2kinghenryvi,1590\ncaper,1,2kinghenryvi,1590\nah,1,2kinghenryvi,1590\nnewly,1,2kinghenryvi,1590\nCorner,1,2kinghenryvi,1590\ndispleased,1,2kinghenryvi,1590\nhumours,1,2kinghenryvi,1590\nWatch,1,2kinghenryvi,1590\nsheath,1,2kinghenryvi,1590\ncorrect,1,2kinghenryvi,1590\nfeast,1,2kinghenryvi,1590\nsugar'd,1,2kinghenryvi,1590\nbetray'd,1,2kinghenryvi,1590\nmove,1,2kinghenryvi,1590\nKentishman,1,2kinghenryvi,1590\nabominable,1,2kinghenryvi,1590\nPersuaded,1,2kinghenryvi,1590\nox,1,2kinghenryvi,1590\nboard,1,2kinghenryvi,1590\ncommend,1,2kinghenryvi,1590\nDispute,1,2kinghenryvi,1590\nbodies,1,2kinghenryvi,1590\ndelay,1,2kinghenryvi,1590\ncomment,1,2kinghenryvi,1590\nTroubles,1,2kinghenryvi,1590\ncrew,1,2kinghenryvi,1590\nheifer,1,2kinghenryvi,1590\nunspotted,1,2kinghenryvi,1590\nstrait,1,2kinghenryvi,1590\nbanish,1,2kinghenryvi,1590\nDeliver'd,1,2kinghenryvi,1590\nidly,1,2kinghenryvi,1590\nhalfpenny,1,2kinghenryvi,1590\npublished,1,2kinghenryvi,1590\nslily,1,2kinghenryvi,1590\nEarly,1,2kinghenryvi,1590\nFortune's,1,2kinghenryvi,1590\nprevailed,1,2kinghenryvi,1590\nidle,1,2kinghenryvi,1590\nLive,1,2kinghenryvi,1590\nsometime,1,2kinghenryvi,1590\ndog's,1,2kinghenryvi,1590\nlook'st,1,2kinghenryvi,1590\nTook,1,2kinghenryvi,1590\nReady,1,2kinghenryvi,1590\ncaused,1,2kinghenryvi,1590\ninstigate,1,2kinghenryvi,1590\nmorn,1,2kinghenryvi,1590\ncrimes,1,2kinghenryvi,1590\ntrain,1,2kinghenryvi,1590\npropounded,1,2kinghenryvi,1590\npeacemakers,1,2kinghenryvi,1590\nventurous,1,2kinghenryvi,1590\nBegin,1,2kinghenryvi,1590\noeuvres,1,2kinghenryvi,1590\noffences,1,2kinghenryvi,1590\nink,1,2kinghenryvi,1590\nsettled,1,2kinghenryvi,1590\noffer'd,1,2kinghenryvi,1590\nlightly,1,2kinghenryvi,1590\ncauses,1,2kinghenryvi,1590\nYea,1,2kinghenryvi,1590\nStaring,1,2kinghenryvi,1590\nmoon,1,2kinghenryvi,1590\nblur,1,2kinghenryvi,1590\nadd,1,2kinghenryvi,1590\nho,1,2kinghenryvi,1590\nsemblance,1,2kinghenryvi,1590\nServants,1,2kinghenryvi,1590\nsucker,1,2kinghenryvi,1590\nFaster,1,2kinghenryvi,1590\neffectual,1,2kinghenryvi,1590\nmeant'st,1,2kinghenryvi,1590\nBreathe,1,2kinghenryvi,1590\ncustom'd,1,2kinghenryvi,1590\nall's,1,2kinghenryvi,1590\ncircumspect,1,2kinghenryvi,1590\nfelony,1,2kinghenryvi,1590\nNormans,1,2kinghenryvi,1590\npissing,1,2kinghenryvi,1590\nnurtured,1,2kinghenryvi,1590\ndefy,1,2kinghenryvi,1590\nnecessary,1,2kinghenryvi,1590\nbeauteous,1,2kinghenryvi,1590\nsmart,1,2kinghenryvi,1590\nSmith,1,2kinghenryvi,1590\nbetime,1,2kinghenryvi,1590\nboding,1,2kinghenryvi,1590\nFrenchman's,1,2kinghenryvi,1590\nknew,1,2kinghenryvi,1590\nshow'd,1,2kinghenryvi,1590\nmadding,1,2kinghenryvi,1590\nunassail'd,1,2kinghenryvi,1590\nslack,1,2kinghenryvi,1590\nupbraided,1,2kinghenryvi,1590\njourney,1,2kinghenryvi,1590\nglided,1,2kinghenryvi,1590\nRaising,1,2kinghenryvi,1590\nsancta,1,2kinghenryvi,1590\nsoftens,1,2kinghenryvi,1590\nCalling,1,2kinghenryvi,1590\nreads,1,2kinghenryvi,1590\nGuards,1,2kinghenryvi,1590\nPompey,1,2kinghenryvi,1590\nhop,1,2kinghenryvi,1590\nCame,1,2kinghenryvi,1590\nharm,1,2kinghenryvi,1590\nkilled,1,2kinghenryvi,1590\nchalky,1,2kinghenryvi,1590\nMort,1,2kinghenryvi,1590\nclime,1,2kinghenryvi,1590\nrunning,1,2kinghenryvi,1590\nhindmost,1,2kinghenryvi,1590\nexecuted,1,2kinghenryvi,1590\ntempted,1,2kinghenryvi,1590\ndemean'd,1,2kinghenryvi,1590\neasy,1,2kinghenryvi,1590\nfierce,1,2kinghenryvi,1590\nirrevocable,1,2kinghenryvi,1590\ndiscourse,1,2kinghenryvi,1590\nfight'st,1,2kinghenryvi,1590\nenfranchisement,1,2kinghenryvi,1590\nplums,1,2kinghenryvi,1590\nfront,1,2kinghenryvi,1590\nMost,1,2kinghenryvi,1590\nTantaene,1,2kinghenryvi,1590\norphan,1,2kinghenryvi,1590\ndrudges,1,2kinghenryvi,1590\nhall,1,2kinghenryvi,1590\nBishop,1,2kinghenryvi,1590\nTalking,1,2kinghenryvi,1590\npull,1,2kinghenryvi,1590\nundiscover'd,1,2kinghenryvi,1590\noutright,1,2kinghenryvi,1590\nBrutus',1,2kinghenryvi,1590\nkingly,1,2kinghenryvi,1590\npeaceably,1,2kinghenryvi,1590\nknit,1,2kinghenryvi,1590\nsenseless,1,2kinghenryvi,1590\ntinkers,1,2kinghenryvi,1590\ntoasted,1,2kinghenryvi,1590\nfowl,1,2kinghenryvi,1590\ncharacter'd,1,2kinghenryvi,1590\nshallow,1,2kinghenryvi,1590\nburying,1,2kinghenryvi,1590\nKnowledge,1,2kinghenryvi,1590\nspun,1,2kinghenryvi,1590\nweeds,1,2kinghenryvi,1590\npaly,1,2kinghenryvi,1590\nperoration,1,2kinghenryvi,1590\nrepeal,1,2kinghenryvi,1590\nContinue,1,2kinghenryvi,1590\nexpend,1,2kinghenryvi,1590\nTrumpets,1,2kinghenryvi,1590\nsignal,1,2kinghenryvi,1590\nstrings,1,2kinghenryvi,1590\nRear,1,2kinghenryvi,1590\nshut,1,2kinghenryvi,1590\ncited,1,2kinghenryvi,1590\nFull,1,2kinghenryvi,1590\nbrainpan,1,2kinghenryvi,1590\nlengthen,1,2kinghenryvi,1590\nconsult,1,2kinghenryvi,1590\nfeasted,1,2kinghenryvi,1590\nforts,1,2kinghenryvi,1590\nprotects,1,2kinghenryvi,1590\nschool,1,2kinghenryvi,1590\nsweetest,1,2kinghenryvi,1590\nprovided,1,2kinghenryvi,1590\nCalaber,1,2kinghenryvi,1590\nwisdoms,1,2kinghenryvi,1590\nexamine,1,2kinghenryvi,1590\nexcuse,1,2kinghenryvi,1590\nsucking,1,2kinghenryvi,1590\npluck,1,2kinghenryvi,1590\nenticing,1,2kinghenryvi,1590\ncourse,1,2kinghenryvi,1590\nexpect,1,2kinghenryvi,1590\nvirginal,1,2kinghenryvi,1590\nShe's,1,2kinghenryvi,1590\nmajesty's,1,2kinghenryvi,1590\nrefused,1,2kinghenryvi,1590\nculpable,1,2kinghenryvi,1590\nbrothers,1,2kinghenryvi,1590\nform,1,2kinghenryvi,1590\nhammering,1,2kinghenryvi,1590\nhawk,1,2kinghenryvi,1590\nplum,1,2kinghenryvi,1590\nkingdoms,1,2kinghenryvi,1590\nredeemed,1,2kinghenryvi,1590\nforefathers,1,2kinghenryvi,1590\navenged,1,2kinghenryvi,1590\npair,1,2kinghenryvi,1590\ncourts,1,2kinghenryvi,1590\nneglect,1,2kinghenryvi,1590\nhangs,1,2kinghenryvi,1590\ndelight,1,2kinghenryvi,1590\ncosts,1,2kinghenryvi,1590\npaid,1,2kinghenryvi,1590\nsouthern,1,2kinghenryvi,1590\nplotted,1,2kinghenryvi,1590\ngins,1,2kinghenryvi,1590\nmayor,1,2kinghenryvi,1590\nfrown,1,2kinghenryvi,1590\nDispatch,1,2kinghenryvi,1590\naccordeth,1,2kinghenryvi,1590\nscatter,1,2kinghenryvi,1590\nshakes,1,2kinghenryvi,1590\ndeceitful,1,2kinghenryvi,1590\nnoun,1,2kinghenryvi,1590\nTelamonius,1,2kinghenryvi,1590\nstrays,1,2kinghenryvi,1590\ntimor,1,2kinghenryvi,1590\npack,1,2kinghenryvi,1590\nfool,1,2kinghenryvi,1590\ndismal,1,2kinghenryvi,1590\nawe,1,2kinghenryvi,1590\nexcept,1,2kinghenryvi,1590\nchastity,1,2kinghenryvi,1590\naimest,1,2kinghenryvi,1590\npursuivant,1,2kinghenryvi,1590\nvowed,1,2kinghenryvi,1590\ngaudy,1,2kinghenryvi,1590\nsoftest,1,2kinghenryvi,1590\ncontain,1,2kinghenryvi,1590\nimages,1,2kinghenryvi,1590\nsaints,1,2kinghenryvi,1590\nserpents,1,2kinghenryvi,1590\nyard,1,2kinghenryvi,1590\nHot,1,2kinghenryvi,1590\ncreatures,1,2kinghenryvi,1590\nrenowned,1,2kinghenryvi,1590\noverweening,1,2kinghenryvi,1590\nfresh,1,2kinghenryvi,1590\nArgo,1,2kinghenryvi,1590\nhapless,1,2kinghenryvi,1590\nmonument,1,2kinghenryvi,1590\ngird,1,2kinghenryvi,1590\nrightly,1,2kinghenryvi,1590\nbesotted,1,2kinghenryvi,1590\nmayst,1,2kinghenryvi,1590\nMen's,1,2kinghenryvi,1590\nlearnt,1,2kinghenryvi,1590\nfold,1,2kinghenryvi,1590\nBewitch,1,2kinghenryvi,1590\nWhite,1,2kinghenryvi,1590\nterm,1,2kinghenryvi,1590\nbetide,1,2kinghenryvi,1590\napplied,1,2kinghenryvi,1590\nRobin,1,2kinghenryvi,1590\nhive,1,2kinghenryvi,1590\ncalculate,1,2kinghenryvi,1590\nworkmen,1,2kinghenryvi,1590\ndefended,1,2kinghenryvi,1590\nknock,1,2kinghenryvi,1590\nringleader,1,2kinghenryvi,1590\nHart,1,2kinghenryvi,1590\nsuborned,1,2kinghenryvi,1590\nstrangeness,1,2kinghenryvi,1590\ncomplices,1,2kinghenryvi,1590\ncullions,1,2kinghenryvi,1590\nfew,1,2kinghenryvi,1590\nrabblement,1,2kinghenryvi,1590\nvincere,1,2kinghenryvi,1590\no'ergrow,1,2kinghenryvi,1590\nlurking,1,2kinghenryvi,1590\narray,1,2kinghenryvi,1590\nrevenging,1,2kinghenryvi,1590\nSometimes,1,2kinghenryvi,1590\nnaughty,1,2kinghenryvi,1590\nspiteful,1,2kinghenryvi,1590\nbookish,1,2kinghenryvi,1590\njustify,1,2kinghenryvi,1590\nporpentine,1,2kinghenryvi,1590\ndaring,1,2kinghenryvi,1590\nElysium,1,2kinghenryvi,1590\ngnarling,1,2kinghenryvi,1590\npoliticly,1,2kinghenryvi,1590\nbroil,1,2kinghenryvi,1590\nusually,1,2kinghenryvi,1590\ndisplaced,1,2kinghenryvi,1590\ntragic,1,2kinghenryvi,1590\nStoop,1,2kinghenryvi,1590\neagles',1,2kinghenryvi,1590\nAsk,1,2kinghenryvi,1590\nJesus,1,2kinghenryvi,1590\nessentially,1,2kinghenryvi,1590\nhowling,1,2kinghenryvi,1590\nDrones,1,2kinghenryvi,1590\nrehearsal,1,2kinghenryvi,1590\njaws,1,2kinghenryvi,1590\ncapital,1,2kinghenryvi,1590\nAve,1,2kinghenryvi,1590\ntransporting,1,2kinghenryvi,1590\nafear'd,1,2kinghenryvi,1590\nInto,1,2kinghenryvi,1590\nwreck'd,1,2kinghenryvi,1590\nAlive,1,2kinghenryvi,1590\nGeorge,1,2kinghenryvi,1590\nBetween,1,2kinghenryvi,1590\nnods,1,2kinghenryvi,1590\nexecute,1,2kinghenryvi,1590\nnotable,1,2kinghenryvi,1590\nwheels,1,2kinghenryvi,1590\nMatthew,1,2kinghenryvi,1590\nlacking,1,2kinghenryvi,1590\nprocession,1,2kinghenryvi,1590\nactive,1,2kinghenryvi,1590\nluce,1,2kinghenryvi,1590\nrestored,1,2kinghenryvi,1590\nroom,1,2kinghenryvi,1590\nIllyrian,1,2kinghenryvi,1590\nnap,1,2kinghenryvi,1590\nwhispers,1,2kinghenryvi,1590\nKill,1,2kinghenryvi,1590\nwashes,1,2kinghenryvi,1590\ntried,1,2kinghenryvi,1590\ndiscolour'd,1,2kinghenryvi,1590\nfrozen,1,2kinghenryvi,1590\nBedlam,1,2kinghenryvi,1590\nlong'd,1,2kinghenryvi,1590\nCollected,1,2kinghenryvi,1590\nashy,1,2kinghenryvi,1590\nglorify,1,2kinghenryvi,1590\nconfederacy,1,2kinghenryvi,1590\nbreeds,1,2kinghenryvi,1590\nDespoiled,1,2kinghenryvi,1590\nmaim,1,2kinghenryvi,1590\nVirtue,1,2kinghenryvi,1590\nbedchamber,1,2kinghenryvi,1590\nmaid,1,2kinghenryvi,1590\nconsider'd,1,2kinghenryvi,1590\nventure,1,2kinghenryvi,1590\nrigor,1,2kinghenryvi,1590\nswallowing,1,2kinghenryvi,1590\nunloose,1,2kinghenryvi,1590\nSorry,1,2kinghenryvi,1590\nJACK,1,2kinghenryvi,1590\nmechanical,1,2kinghenryvi,1590\nRepairs,1,2kinghenryvi,1590\nCanst,1,2kinghenryvi,1590\nshouldst,1,2kinghenryvi,1590\nAldermen,1,2kinghenryvi,1590\nbarons,1,2kinghenryvi,1590\nbreathed,1,2kinghenryvi,1590\nmischief,1,2kinghenryvi,1590\nrose,1,2kinghenryvi,1590\nprocurator,1,2kinghenryvi,1590\nhoarse,1,2kinghenryvi,1590\nsilence,1,2kinghenryvi,1590\nlifeless,1,2kinghenryvi,1590\nclamour,1,2kinghenryvi,1590\nobjections,1,2kinghenryvi,1590\nscape,1,2kinghenryvi,1590\nretired,1,2kinghenryvi,1590\nKnock,1,2kinghenryvi,1590\nbuild,1,2kinghenryvi,1590\ndragged,1,2kinghenryvi,1590\ncouldst,1,2kinghenryvi,1590\nbuilt,1,2kinghenryvi,1590\nnourish,1,2kinghenryvi,1590\nBetter,1,2kinghenryvi,1590\nunknown,1,2kinghenryvi,1590\nrepose,1,2kinghenryvi,1590\nfourth,1,2kinghenryvi,1590\nHale,1,2kinghenryvi,1590\nrooted,1,2kinghenryvi,1590\nnose,1,2kinghenryvi,1590\ndeposed,1,2kinghenryvi,1590\nmarks,1,2kinghenryvi,1590\nenvy,1,2kinghenryvi,1590\noughtest,1,2kinghenryvi,1590\njoy'd,1,2kinghenryvi,1590\nproverb,1,2kinghenryvi,1590\nSeven,1,2kinghenryvi,1590\nAlthaea,1,2kinghenryvi,1590\nlack'd,1,2kinghenryvi,1590\nfurniture,1,2kinghenryvi,1590\nbeast,1,2kinghenryvi,1590\ntrencher,1,2kinghenryvi,1590\nproceed,1,2kinghenryvi,1590\nwaked,1,2kinghenryvi,1590\ndisgraces,1,2kinghenryvi,1590\napostles,1,2kinghenryvi,1590\nhire,1,2kinghenryvi,1590\ndisgrace's,1,2kinghenryvi,1590\nimminent,1,2kinghenryvi,1590\nblab,1,2kinghenryvi,1590\ncedar,1,2kinghenryvi,1590\nHenceforth,1,2kinghenryvi,1590\nroll'd,1,2kinghenryvi,1590\nbeats,1,2kinghenryvi,1590\nHang,1,2kinghenryvi,1590\ndress,1,2kinghenryvi,1590\nrestore,1,2kinghenryvi,1590\nconquer'd,1,2kinghenryvi,1590\ncathedral,1,2kinghenryvi,1590\nlording,1,2kinghenryvi,1590\nInjurious,1,2kinghenryvi,1590\nAsmath,1,2kinghenryvi,1590\ncircle,1,2kinghenryvi,1590\nshaking,1,2kinghenryvi,1590\nrate,1,2kinghenryvi,1590\nmislike,1,2kinghenryvi,1590\nexhort,1,2kinghenryvi,1590\nGoffe,1,2kinghenryvi,1590\nWas't,1,2kinghenryvi,1590\ndaintiest,1,2kinghenryvi,1590\nEnchased,1,2kinghenryvi,1590\nvantages,1,2kinghenryvi,1590\ndaily,1,2kinghenryvi,1590\nentertainment,1,2kinghenryvi,1590\ngrammar,1,2kinghenryvi,1590\nAchilles',1,2kinghenryvi,1590\ninfancy,1,2kinghenryvi,1590\ncaptivity,1,2kinghenryvi,1590\nparley'd,1,2kinghenryvi,1590\nremedy,1,2kinghenryvi,1590\nrash,1,2kinghenryvi,1590\nqueens,1,2kinghenryvi,1590\nbravely,1,2kinghenryvi,1590\ncourtship,1,2kinghenryvi,1590\nestate,1,2kinghenryvi,1590\nbewails,1,2kinghenryvi,1590\nscar,1,2kinghenryvi,1590\nCromer,1,2kinghenryvi,1590\nblunt,1,2kinghenryvi,1590\nours,1,2kinghenryvi,1590\nhawks,1,2kinghenryvi,1590\ninns,1,2kinghenryvi,1590\nyear,1,2kinghenryvi,1590\nboys',1,2kinghenryvi,1590\nselling,1,2kinghenryvi,1590\nPresumptuous,1,2kinghenryvi,1590\nkneels,1,2kinghenryvi,1590\ndukes,1,2kinghenryvi,1590\nbottom,1,2kinghenryvi,1590\nburthens,1,2kinghenryvi,1590\nmeditation,1,2kinghenryvi,1590\nchaps,1,2kinghenryvi,1590\ndangers,1,2kinghenryvi,1590\ntreason's,1,2kinghenryvi,1590\nwandering,1,2kinghenryvi,1590\nsmoothing,1,2kinghenryvi,1590\nsubstance,1,2kinghenryvi,1590\ncharneco,1,2kinghenryvi,1590\nannoy,1,2kinghenryvi,1590\nBare,1,2kinghenryvi,1590\nvisage,1,2kinghenryvi,1590\nunburthens,1,2kinghenryvi,1590\ncharm,1,2kinghenryvi,1590\nEmbrace,1,2kinghenryvi,1590\nshore',1,2kinghenryvi,1590\nstays,1,2kinghenryvi,1590\narise,1,2kinghenryvi,1590\nprogress,1,2kinghenryvi,1590\nmisdoubt,1,2kinghenryvi,1590\nexiled,1,2kinghenryvi,1590\nparting,1,2kinghenryvi,1590\ncoronation,1,2kinghenryvi,1590\nlantern,1,2kinghenryvi,1590\nConsider,1,2kinghenryvi,1590\nloser,1,2kinghenryvi,1590\ncounsellor,1,2kinghenryvi,1590\nwho's,1,2kinghenryvi,1590\nodious,1,2kinghenryvi,1590\nthreefold,1,2kinghenryvi,1590\nignorant,1,2kinghenryvi,1590\nmisery,1,2kinghenryvi,1590\nunhappy,1,2kinghenryvi,1590\nshared,1,2kinghenryvi,1590\nevermore,1,2kinghenryvi,1590\nscars,1,2kinghenryvi,1590\nplaces,1,2kinghenryvi,1590\nawhile,1,2kinghenryvi,1590\nalder,1,2kinghenryvi,1590\nmadman's,1,2kinghenryvi,1590\nfreely,1,2kinghenryvi,1590\nDoth,1,2kinghenryvi,1590\nFling,1,2kinghenryvi,1590\nrevive,1,2kinghenryvi,1590\nErect,1,2kinghenryvi,1590\nverb,1,2kinghenryvi,1590\ninjustice,1,2kinghenryvi,1590\nDost,1,2kinghenryvi,1590\nHide,1,2kinghenryvi,1590\ntransparent,1,2kinghenryvi,1590\nrugged,1,2kinghenryvi,1590\nensuing,1,2kinghenryvi,1590\nConvey,1,2kinghenryvi,1590\nSea,1,2kinghenryvi,1590\nseasons,1,2kinghenryvi,1590\nspurs,1,2kinghenryvi,1590\nstrife,1,2kinghenryvi,1590\nSole,1,2kinghenryvi,1590\nlodge,1,2kinghenryvi,1590\ndoors,1,2kinghenryvi,1590\nexpired,1,2kinghenryvi,1590\nstare,1,2kinghenryvi,1590\n'bona,1,2kinghenryvi,1590\nEmmanuel,1,2kinghenryvi,1590\nblessings,1,2kinghenryvi,1590\nmill,1,2kinghenryvi,1590\nmilk,1,2kinghenryvi,1590\nrealms,1,2kinghenryvi,1590\nnod,1,2kinghenryvi,1590\nSay'st,1,2kinghenryvi,1590\nprobable,1,2kinghenryvi,1590\nmightst,1,2kinghenryvi,1590\nkisses,1,2kinghenryvi,1590\nbeautify,1,2kinghenryvi,1590\nhousekeeping,1,2kinghenryvi,1590\nplayfellows,1,2kinghenryvi,1590\nbosoms,1,2kinghenryvi,1590\nMaries,1,2kinghenryvi,1590\nfoolish,1,2kinghenryvi,1590\nSufficeth,1,2kinghenryvi,1590\nMark'd,1,2kinghenryvi,1590\nblinded,1,2kinghenryvi,1590\njars,1,2kinghenryvi,1590\ncrimeless,1,2kinghenryvi,1590\nreadily,1,2kinghenryvi,1590\nmala,1,2kinghenryvi,1590\nCease,1,2kinghenryvi,1590\nwrought,1,2kinghenryvi,1590\nremorseful,1,2kinghenryvi,1590\ndowry,1,2kinghenryvi,1590\nbeggar,1,2kinghenryvi,1590\nstraightway,1,2kinghenryvi,1590\nassay'd,1,2kinghenryvi,1590\ninsolent,1,2kinghenryvi,1590\nBritain's,1,2kinghenryvi,1590\nprocure,1,2kinghenryvi,1590\nbelong,1,2kinghenryvi,1590\nmidwife,1,2kinghenryvi,1590\nFather,1,2kinghenryvi,1590\nuntutor'd,1,2kinghenryvi,1590\nghastly,1,2kinghenryvi,1590\nBearing,1,2kinghenryvi,1590\nacquit,1,2kinghenryvi,1590\nthroughout,1,2kinghenryvi,1590\nSort,1,2kinghenryvi,1590\nfraudful,1,2kinghenryvi,1590\ncouronne,1,2kinghenryvi,1590\nson's,1,2kinghenryvi,1590\nproudest,1,2kinghenryvi,1590\nknits,1,2kinghenryvi,1590\nblot,1,2kinghenryvi,1590\nHonour,1,2kinghenryvi,1590\nmistakest,1,2kinghenryvi,1590\nmisled,1,2kinghenryvi,1590\nhawking,1,2kinghenryvi,1590\nachieve,1,2kinghenryvi,1590\nAEacida,1,2kinghenryvi,1590\nStrangers,1,2kinghenryvi,1590\nleader,1,2kinghenryvi,1590\nbelieving,1,2kinghenryvi,1590\nwitches,1,2kinghenryvi,1590\nflatter,1,2kinghenryvi,1590\ngallowglasses,1,2kinghenryvi,1590\ninch,1,2kinghenryvi,1590\nchafe,1,2kinghenryvi,1590\nInvite,1,2kinghenryvi,1590\nwives',1,2kinghenryvi,1590\nbeside,1,2kinghenryvi,1590\nbushes,1,2kinghenryvi,1590\nheaven's,1,2kinghenryvi,1590\nspecial,1,2kinghenryvi,1590\nfret,1,2kinghenryvi,1590\nbenefit,1,2kinghenryvi,1590\nbrethren,1,2kinghenryvi,1590\nhigher,1,2kinghenryvi,1590\nClip,1,2kinghenryvi,1590\nMurder'd,1,2kinghenryvi,1590\nplenteous,1,2kinghenryvi,1590\nnaught,1,2kinghenryvi,1590\nworthless,1,2kinghenryvi,1590\nreproachfully,1,2kinghenryvi,1590\nMade,1,2kinghenryvi,1590\nmarvel,1,2kinghenryvi,1590\nserge,1,2kinghenryvi,1590\naccusation,1,2kinghenryvi,1590\nscribbled,1,2kinghenryvi,1590\nDescend,1,2kinghenryvi,1590\nceremonies,1,2kinghenryvi,1590\nhorrible,1,2kinghenryvi,1590\noil,1,2kinghenryvi,1590\ndisguised,1,2kinghenryvi,1590\nthreatest,1,2kinghenryvi,1590\nstake,1,2kinghenryvi,1590\nblasted,1,2kinghenryvi,1590\n'Aio,1,2kinghenryvi,1590\nRome,1,2kinghenryvi,1590\nwet,1,2kinghenryvi,1590\nGiving,1,2kinghenryvi,1590\nthorough,1,2kinghenryvi,1590\nfirm,1,2kinghenryvi,1590\nFatal,1,2kinghenryvi,1590\no'clock,1,2kinghenryvi,1590\ndesired,1,2kinghenryvi,1590\nones,1,2kinghenryvi,1590\nstain,1,2kinghenryvi,1590\narrested,1,2kinghenryvi,1590\nblameful,1,2kinghenryvi,1590\nexpedient,1,2kinghenryvi,1590\nhooped,1,2kinghenryvi,1590\nrailing,1,2kinghenryvi,1590\nheadlong,1,2kinghenryvi,1590\nlosing,1,2kinghenryvi,1590\nknavery,1,2kinghenryvi,1590\ntrembling,1,2kinghenryvi,1590\ntaste,1,2kinghenryvi,1590\nchines,1,2kinghenryvi,1590\npause,1,2kinghenryvi,1590\novergorged,1,2kinghenryvi,1590\nfrightful,1,2kinghenryvi,1590\ndesolation,1,2kinghenryvi,1590\nrenown,1,2kinghenryvi,1590\nclaims,1,2kinghenryvi,1590\nabase,1,2kinghenryvi,1590\nSIMPCOX's,1,2kinghenryvi,1590\nThey'll,1,2kinghenryvi,1590\nunfeeling,1,2kinghenryvi,1590\nsale,1,2kinghenryvi,1590\nsow'd,1,2kinghenryvi,1590\nleanness,1,2kinghenryvi,1590\nflies,1,2kinghenryvi,1590\nbuckram,1,2kinghenryvi,1590\nroars,1,2kinghenryvi,1590\npomp,1,2kinghenryvi,1590\nsafely,1,2kinghenryvi,1590\nMain,1,2kinghenryvi,1590\nboarded,1,2kinghenryvi,1590\nexperience,1,2kinghenryvi,1590\ndiscipline,1,2kinghenryvi,1590\nsides,1,2kinghenryvi,1590\nDeep,1,2kinghenryvi,1590\nenters,1,2kinghenryvi,1590\ndesolate,1,2kinghenryvi,1590\nroast,1,2kinghenryvi,1590\npersons,1,2kinghenryvi,1590\nplasterer,1,2kinghenryvi,1590\nHeart's,1,2kinghenryvi,1590\nstomach,1,2kinghenryvi,1590\nDread,1,2kinghenryvi,1590\n'Twill,1,2kinghenryvi,1590\nherbs,1,2kinghenryvi,1590\nAged,1,2kinghenryvi,1590\ncure,1,2kinghenryvi,1590\ntumultuous,1,2kinghenryvi,1590\nyoungest,1,2kinghenryvi,1590\nwoes,1,2kinghenryvi,1590\nMoreover,1,2kinghenryvi,1590\ntroublous,1,2kinghenryvi,1590\nlovedst,1,2kinghenryvi,1590\nwelfare,1,2kinghenryvi,1590\nstigmatic,1,2kinghenryvi,1590\nprovinces,1,2kinghenryvi,1590\nbinds,1,2kinghenryvi,1590\nTHOMAS,1,2kinghenryvi,1590\nprophesied,1,2kinghenryvi,1590\nallay,1,2kinghenryvi,1590\ncallet,1,2kinghenryvi,1590\nbloodless,1,2kinghenryvi,1590\ncloset,1,2kinghenryvi,1590\nDead,1,2kinghenryvi,1590\nrecover,1,2kinghenryvi,1590\nposted,1,2kinghenryvi,1590\ncity's,1,2kinghenryvi,1590\nbestow'd,1,2kinghenryvi,1590\nwalks,1,2kinghenryvi,1590\nhanded,1,2kinghenryvi,1590\nhappiest,1,2kinghenryvi,1590\nsaws,1,2kinghenryvi,1590\nobsequies,1,2kinghenryvi,1590\noffending,1,2kinghenryvi,1590\nwalls,1,2kinghenryvi,1590\ntalons,1,2kinghenryvi,1590\ndamsons,1,2kinghenryvi,1590\nunbloodied,1,2kinghenryvi,1590\nbrigandine,1,2kinghenryvi,1590\nfalcon,1,2kinghenryvi,1590\nchoked,1,2kinghenryvi,1590\ndeath's,1,2kinghenryvi,1590\ncount,1,2kinghenryvi,1590\ndistress'd,1,2kinghenryvi,1590\nremains,1,2kinghenryvi,1590\nshamefully,1,2kinghenryvi,1590\nBlunt,1,2kinghenryvi,1590\nSleeping,1,2kinghenryvi,1590\ntrinkets,1,2kinghenryvi,1590\nmaidenhead,1,2kinghenryvi,1590\nbirthright,1,2kinghenryvi,1590\nchampion,1,2kinghenryvi,1590\nprotection,1,2kinghenryvi,1590\nhumility,1,2kinghenryvi,1590\nburthen,1,2kinghenryvi,1590\ninvincible,1,2kinghenryvi,1590\nrepairing,1,2kinghenryvi,1590\ncopies,1,2kinghenryvi,1590\nLacies,1,2kinghenryvi,1590\ndust,1,2kinghenryvi,1590\nvow'd,1,2kinghenryvi,1590\ncalled,1,2kinghenryvi,1590\nThink,1,2kinghenryvi,1590\nstiff,1,2kinghenryvi,1590\nstumbling,1,2kinghenryvi,1590\n'The,1,2kinghenryvi,1590\nThrow,1,2kinghenryvi,1590\nflourish,1,2kinghenryvi,1590\nlinger,1,2kinghenryvi,1590\ndriven,1,2kinghenryvi,1590\nrise,1,2kinghenryvi,1590\nAgrees,1,2kinghenryvi,1590\nheave,1,2kinghenryvi,1590\nraven's,1,2kinghenryvi,1590\nHangs,1,2kinghenryvi,1590\nreceive,1,2kinghenryvi,1590\n'To,1,2kinghenryvi,1590\nperforce,1,2kinghenryvi,1590\nstandard,1,2kinghenryvi,1590\ngovernors,1,2kinghenryvi,1590\nReprove,1,2kinghenryvi,1590\nanimis,1,2kinghenryvi,1590\nIrishmen,1,2kinghenryvi,1590\nthreatens,1,2kinghenryvi,1590\nContemptuous,1,2kinghenryvi,1590\nhandle,1,2kinghenryvi,1590\ngraceless,1,2kinghenryvi,1590\nassure,1,2kinghenryvi,1590\nbrother's,1,2kinghenryvi,1590\nOutcast,1,2kinghenryvi,1590\nELEANOR,1,2kinghenryvi,1590\nhags,1,2kinghenryvi,1590\nends,1,2kinghenryvi,1590\ninstinct,1,2kinghenryvi,1590\nundermine,1,2kinghenryvi,1590\nadmitted,1,2kinghenryvi,1590\nproceeding,1,2kinghenryvi,1590\nwont,1,2kinghenryvi,1590\nsupper,1,2kinghenryvi,1590\nvillains,1,2kinghenryvi,1590\nforfend,1,2kinghenryvi,1590\nwomen's,1,2kinghenryvi,1590\nPoison,1,2kinghenryvi,1590\nFourth,1,2kinghenryvi,1590\nOrdnance,1,2kinghenryvi,1590\nflowering,1,2kinghenryvi,1590\nwitted,1,2kinghenryvi,1590\nbreakfast,1,2kinghenryvi,1590\ndefer,1,2kinghenryvi,1590\ncursed,1,2kinghenryvi,1590\nbounty,1,2kinghenryvi,1590\nDefacing,1,2kinghenryvi,1590\nShame,1,2kinghenryvi,1590\nthroats,1,2kinghenryvi,1590\nGives,1,2kinghenryvi,1590\nTrow'st,1,2kinghenryvi,1590\nrobb'd,1,2kinghenryvi,1590\nBanish,1,2kinghenryvi,1590\nSixth,1,2kinghenryvi,1590\nsteadier,1,2kinghenryvi,1590\nvulgar,1,2kinghenryvi,1590\nfamiliar,1,2kinghenryvi,1590\nRomanos,1,2kinghenryvi,1590\nanchors,1,2kinghenryvi,1590\nrequite,1,2kinghenryvi,1590\nhusbandry,1,2kinghenryvi,1590\nagree,1,2kinghenryvi,1590\nvengeful,1,2kinghenryvi,1590\nfaces,1,2kinghenryvi,1590\nseize,1,2kinghenryvi,1590\nthankfulness,1,2kinghenryvi,1590\nBid,1,2kinghenryvi,1590\npenitent,1,2kinghenryvi,1590\nMargery,1,2kinghenryvi,1590\nserved,1,2kinghenryvi,1590\nstolest,1,2kinghenryvi,1590\nCitizen,1,2kinghenryvi,1590\ntakes,1,2kinghenryvi,1590\nedict,1,2kinghenryvi,1590\nconference,1,2kinghenryvi,1590\nMail'd,1,2kinghenryvi,1590\nslavery,1,2kinghenryvi,1590\npurest,1,2kinghenryvi,1590\nprologue,1,2kinghenryvi,1590\ngraft,1,2kinghenryvi,1590\nforeign,1,2kinghenryvi,1590\nkilling,1,2kinghenryvi,1590\nSharp,1,2kinghenryvi,1590\nopposite,1,2kinghenryvi,1590\nServingman,1,2kinghenryvi,1590\ncompass,1,2kinghenryvi,1590\nlopp'd,1,2kinghenryvi,1590\nwife's,1,2kinghenryvi,1590\nsayst,1,2kinghenryvi,1590\nherrings,1,2kinghenryvi,1590\nrain,1,2kinghenryvi,1590\nsticking,1,2kinghenryvi,1590\nbaleful,1,2kinghenryvi,1590\nunite,1,2kinghenryvi,1590\nRed,1,2kinghenryvi,1590\nbeehives,1,2kinghenryvi,1590\nUnsounded,1,2kinghenryvi,1590\nsweeps,1,2kinghenryvi,1590\nCobham,1,2kinghenryvi,1590\nduly,1,2kinghenryvi,1590\nyoke,1,2kinghenryvi,1590\nwolf,1,2kinghenryvi,1590\ntouching,1,2kinghenryvi,1590\ndrops,1,2kinghenryvi,1590\ntimely,1,2kinghenryvi,1590\nharvest,1,2kinghenryvi,1590\nserves,1,2kinghenryvi,1590\nUneath,1,2kinghenryvi,1590\nskills,1,2kinghenryvi,1590\nForbear,1,2kinghenryvi,1590\n'Invitis,1,2kinghenryvi,1590\nasketh,1,2kinghenryvi,1590\nfollowers,1,2kinghenryvi,1590\nNoble,1,2kinghenryvi,1590\nfail,1,2kinghenryvi,1590\nwatching,1,2kinghenryvi,1590\nprevention,1,2kinghenryvi,1590\nmightier,1,2kinghenryvi,1590\ngrasp,1,2kinghenryvi,1590\nStrike,1,2kinghenryvi,1590\nShow,1,2kinghenryvi,1590\ngrieve,1,2kinghenryvi,1590\ncreate,1,2kinghenryvi,1590\nclown,1,2kinghenryvi,1590\ndispersed,1,2kinghenryvi,1590\ncried,1,2kinghenryvi,1590\ndurst,1,2kinghenryvi,1590\nSwear,1,2kinghenryvi,1590\nadvertised,1,2kinghenryvi,1590\ndiseases,1,2kinghenryvi,1590\nmisleader,1,2kinghenryvi,1590\nMorisco,1,2kinghenryvi,1590\nThither,1,2kinghenryvi,1590\ndoublet,1,2kinghenryvi,1590\nstolen,1,2kinghenryvi,1590\ndiamonds,1,2kinghenryvi,1590\nAlmighty,1,2kinghenryvi,1590\nestablish,1,2kinghenryvi,1590\nutterly,1,2kinghenryvi,1590\ncares,1,2kinghenryvi,1590\nhitherward,1,2kinghenryvi,1590\ncloud,1,2kinghenryvi,1590\ndistract,1,2kinghenryvi,1590\nUndoing,1,2kinghenryvi,1590\npalsy,1,2kinghenryvi,1590\nHadst,1,2kinghenryvi,1590\naffable,1,2kinghenryvi,1590\ncommenced,1,2kinghenryvi,1590\nProceed,1,2kinghenryvi,1590\nlump,1,2kinghenryvi,1590\nquell,1,2kinghenryvi,1590\nShake,1,2kinghenryvi,1590\ntownship,1,2kinghenryvi,1590\ndiscomfit,1,2kinghenryvi,1590\nchurl,1,2kinghenryvi,1590\nrace,1,2kinghenryvi,1590\nkinsman,1,2kinghenryvi,1590\nsilly,1,2kinghenryvi,1590\nkites,1,2kinghenryvi,1590\nscorns,1,2kinghenryvi,1590\nworm,1,2kinghenryvi,1590\nworn,1,2kinghenryvi,1590\ntune,1,2kinghenryvi,1590\nindigested,1,2kinghenryvi,1590\nthrew,1,2kinghenryvi,1590\nprostrate,1,2kinghenryvi,1590\nclerk,1,2kinghenryvi,1590\nbrush,1,2kinghenryvi,1590\nlodged,1,2kinghenryvi,1590\nwest,1,2kinghenryvi,1590\nclay,1,2kinghenryvi,1590\nfie,1,2kinghenryvi,1590\nfeared,1,2kinghenryvi,1590\nfig,1,2kinghenryvi,1590\n'em,1,2kinghenryvi,1590\nbear's,1,2kinghenryvi,1590\nfin,1,2kinghenryvi,1590\nreturneth,1,2kinghenryvi,1590\nendeavour,1,2kinghenryvi,1590\niniquity's,1,2kinghenryvi,1590\nminute,1,2kinghenryvi,1590\noffices,1,2kinghenryvi,1590\npulled,1,2kinghenryvi,1590\nBasimecu,1,2kinghenryvi,1590\nfill,1,2kinghenryvi,1590\nwoods,1,2kinghenryvi,1590\nclad,1,2kinghenryvi,1590\nsavage,1,2kinghenryvi,1590\npunish'd,1,2kinghenryvi,1590\nBurns,1,2kinghenryvi,1590\nparticular,1,2kinghenryvi,1590\nhorn,1,2kinghenryvi,1590\nhose,1,2kinghenryvi,1590\nbark,1,2kinghenryvi,1590\nSteel,1,2kinghenryvi,1590\nminded,1,2kinghenryvi,1590\nthunder,1,2kinghenryvi,1590\ncontagious,1,2kinghenryvi,1590\nhost,1,2kinghenryvi,1590\nta'en,1,2kinghenryvi,1590\nshown,1,2kinghenryvi,1590\ntail,1,2kinghenryvi,1590\nran'st,1,2kinghenryvi,1590\npocket,1,2kinghenryvi,1590\nReceived,1,2kinghenryvi,1590\nMother,1,2kinghenryvi,1590\nDemanding,1,2kinghenryvi,1590\nJerusalem,1,2kinghenryvi,1590\nvex,1,2kinghenryvi,1590\nforgets,1,2kinghenryvi,1590\npractise,1,2kinghenryvi,1590\nprospect,1,2kinghenryvi,1590\nmates,1,2kinghenryvi,1590\ncounterpoised,1,2kinghenryvi,1590\nSicilia,1,2kinghenryvi,1590\nwrongfully,1,2kinghenryvi,1590\nsubtlety,1,2kinghenryvi,1590\nwhither,1,2kinghenryvi,1590\nrecoil,1,2kinghenryvi,1590\ntraitorous,1,2kinghenryvi,1590\nopposites,1,2kinghenryvi,1590\nscholars,1,2kinghenryvi,1590\nambitiously,1,2kinghenryvi,1590\nKnit,1,2kinghenryvi,1590\nmeaning,1,2kinghenryvi,1590\narouse,1,2kinghenryvi,1590\ndefamed,1,2kinghenryvi,1590\nstinking,1,2kinghenryvi,1590\naunt,1,2kinghenryvi,1590\nCut,1,2kinghenryvi,1590\nmarcheth,1,2kinghenryvi,1590\nfate,1,2kinghenryvi,1590\nbane,1,2kinghenryvi,1590\nvoiding,1,2kinghenryvi,1590\nprophets,1,2kinghenryvi,1590\nplainness,1,2kinghenryvi,1590\nflames,1,2kinghenryvi,1590\nMelford,1,2kinghenryvi,1590\nhallow'd,1,2kinghenryvi,1590\nvital,1,2kinghenryvi,1590\nbested,1,2kinghenryvi,1590\nmightest,1,2kinghenryvi,1590\ncools,1,2kinghenryvi,1590\nrising,1,2kinghenryvi,1590\nNoise,1,2kinghenryvi,1590\nquillets,1,2kinghenryvi,1590\ngovernance,1,2kinghenryvi,1590\nhating,1,2kinghenryvi,1590\nbill,1,2kinghenryvi,1590\nevidence,1,2kinghenryvi,1590\nboldly,1,2kinghenryvi,1590\nsurly,1,2kinghenryvi,1590\ndrinks,1,2kinghenryvi,1590\nmiddest,1,2kinghenryvi,1590\nsoul's,1,2kinghenryvi,1590\ngallant,1,2kinghenryvi,1590\ntale,1,2kinghenryvi,1590\ncoal,1,2kinghenryvi,1590\npredominant,1,2kinghenryvi,1590\nlap,1,2kinghenryvi,1590\ncomplaint,1,2kinghenryvi,1590\n'Against,1,2kinghenryvi,1590\nwinners,1,2kinghenryvi,1590\nfalsely,1,2kinghenryvi,1590\nwrested,1,2kinghenryvi,1590\nfolks,1,2kinghenryvi,1590\naffliction,1,2kinghenryvi,1590\nrusted,1,2kinghenryvi,1590\nprovokes,1,2kinghenryvi,1590\nwhatsoe'er,1,2kinghenryvi,1590\nexcursions,1,2kinghenryvi,1590\nclouted,1,2kinghenryvi,1590\nTrust,1,2kinghenryvi,1590\nsixth,1,2kinghenryvi,1590\naudacious,1,2kinghenryvi,1590\nredound,1,2kinghenryvi,1590\nasunder,1,2kinghenryvi,1590\nSavoy,1,2kinghenryvi,1590\nRather,1,2kinghenryvi,1590\nopenly,1,2kinghenryvi,1590\nshoon,1,2kinghenryvi,1590\nshoot,1,2kinghenryvi,1590\npledge,1,2kinghenryvi,1590\nshook,1,2kinghenryvi,1590\napron,1,2kinghenryvi,1590\nempire,1,2kinghenryvi,1590\nPride,1,2kinghenryvi,1590\nsparkling,1,2kinghenryvi,1590\nholp,1,2kinghenryvi,1590\nclean,1,2kinghenryvi,1590\nhandicrafts,1,2kinghenryvi,1590\npeaceful,1,2kinghenryvi,1590\ngreen,1,2kinghenryvi,1590\npopulous,1,2kinghenryvi,1590\ngreet,1,2kinghenryvi,1590\nbesom,1,2kinghenryvi,1590\npupil,1,2kinghenryvi,1590\ngarrisons,1,2kinghenryvi,1590\ncur,1,2kinghenryvi,1590\ngiddy,1,2kinghenryvi,1590\nfollows,1,2kinghenryvi,1590\ngaping,1,2kinghenryvi,1590\npangs,1,2kinghenryvi,1590\nWho's,1,2kinghenryvi,1590\nsuccors,1,2kinghenryvi,1590\nvocation,1,2kinghenryvi,1590\ncowards,1,2kinghenryvi,1590\nsunder,1,2kinghenryvi,1590\nreputing,1,2kinghenryvi,1590\nrevolt,1,2kinghenryvi,1590\nbesieged,1,2kinghenryvi,1590\nmurdering,1,2kinghenryvi,1590\ndepth,1,2kinghenryvi,1590\ndiscomfited,1,2kinghenryvi,1590\nrabble,1,2kinghenryvi,1590\nflood,1,2kinghenryvi,1590\nwaning,1,2kinghenryvi,1590\nwondering,1,2kinghenryvi,1590\nWherefore,1,2kinghenryvi,1590\nsparkle,1,2kinghenryvi,1590\nRancour,1,2kinghenryvi,1590\nslanders,1,2kinghenryvi,1590\nfavours,1,2kinghenryvi,1590\nwant'st,1,2kinghenryvi,1590\nconjure,1,2kinghenryvi,1590\nnotwithstanding,1,2kinghenryvi,1590\nStabb'd,1,2kinghenryvi,1590\nforbears,1,2kinghenryvi,1590\nprayers,1,2kinghenryvi,1590\ncleft,1,2kinghenryvi,1590\nEnvy,1,2kinghenryvi,1590\nrobes,1,2kinghenryvi,1590\nterrors,1,2kinghenryvi,1590\nbehead,1,2kinghenryvi,1590\ncope,1,2kinghenryvi,1590\nobligations,1,2kinghenryvi,1590\nignobly,1,2kinghenryvi,1590\nplodded,1,2kinghenryvi,1590\napproved,1,2kinghenryvi,1590\nperfumed,1,2kinghenryvi,1590\nboded,1,2kinghenryvi,1590\ninterest,1,2kinghenryvi,1590\nSUFFOLK'S,1,2kinghenryvi,1590\nhunt,1,2kinghenryvi,1590\ncombatants,1,2kinghenryvi,1590\nfourteen,1,2kinghenryvi,1590\nCauseless,1,2kinghenryvi,1590\ncheerful,1,2kinghenryvi,1590\nfurred,1,2kinghenryvi,1590\nTheirs,1,2kinghenryvi,1590\nAEolus,1,2kinghenryvi,1590\nattendance,1,2kinghenryvi,1590\nalways,1,2kinghenryvi,1590\ntangle,1,2kinghenryvi,1590\nwinged,1,2kinghenryvi,1590\ngardener,1,2kinghenryvi,1590\nhamper,1,2kinghenryvi,1590\nBlotting,1,2kinghenryvi,1590\nbreasts,1,2kinghenryvi,1590\nlow,1,2kinghenryvi,1590\nDartford,1,2kinghenryvi,1590\naloof,1,2kinghenryvi,1590\nblabbing,1,2kinghenryvi,1590\ndrunk,1,2kinghenryvi,1590\nmeagre,1,2kinghenryvi,1590\nbabe,1,2kinghenryvi,1590\ntugg'd,1,2kinghenryvi,1590\nsinking,1,2kinghenryvi,1590\nkingdom,1,2kinghenryvi,1590\nabrook,1,2kinghenryvi,1590\nsuits,1,2kinghenryvi,1590\ncanonized,1,2kinghenryvi,1590\nbaby,1,2kinghenryvi,1590\ngoodness,1,2kinghenryvi,1590\npriesthood,1,2kinghenryvi,1590\naught,1,2kinghenryvi,1590\ndrums,1,2kinghenryvi,1590\nfeathers,1,2kinghenryvi,1590\neither,1,2kinghenryvi,1590\nfeeling,1,2kinghenryvi,1590\nconfederates,1,2kinghenryvi,1590\ndecease,1,2kinghenryvi,1590\nSUFFOLK's,1,2kinghenryvi,1590\nsuppress,1,2kinghenryvi,1590\nharmful,1,2kinghenryvi,1590\ntrespass,1,2kinghenryvi,1590\nsupposed,1,2kinghenryvi,1590\nSylla,1,2kinghenryvi,1590\nunkindness,1,2kinghenryvi,1590\nAssail,1,2kinghenryvi,1590\nended,1,2kinghenryvi,1590\nNe'er,1,2kinghenryvi,1590\ncower'd,1,2kinghenryvi,1590\n'Jesu,1,2kinghenryvi,1590\nunderstood,1,2kinghenryvi,1590\nothers',1,2kinghenryvi,1590\nsees,1,2kinghenryvi,1590\nThames,1,2kinghenryvi,1590\nSeized,1,2kinghenryvi,1590\ncondition,1,2kinghenryvi,1590\ntells,1,2kinghenryvi,1590\nbickerings,1,2kinghenryvi,1590\nliking,1,2kinghenryvi,1590\nperiod,1,2kinghenryvi,1590\nPatience,1,2kinghenryvi,1590\nkennel,1,2kinghenryvi,1590\nSicil,1,2kinghenryvi,1590\nthereof,1,2kinghenryvi,1590\nharbouring,1,2kinghenryvi,1590\nproclaimeth,1,2kinghenryvi,1590\nleper,1,2kinghenryvi,1590\naspiring,1,2kinghenryvi,1590\nwisdom's,1,2kinghenryvi,1590\nwitch'd,1,2kinghenryvi,1590\nCommentaries,1,2kinghenryvi,1590\ntroop,1,2kinghenryvi,1590\nsetting,1,2kinghenryvi,1590\nDido,1,2kinghenryvi,1590\nObscure,1,2kinghenryvi,1590\nNephew,1,2kinghenryvi,1590\nHeaping,1,2kinghenryvi,1590\npreferment,1,2kinghenryvi,1590\nespoused,1,2kinghenryvi,1590\nchequer'd,1,2kinghenryvi,1590\nsacred,1,2kinghenryvi,1590\nSeal,1,2kinghenryvi,1590\nbasilisks,1,2kinghenryvi,1590\nlightens,1,2kinghenryvi,1590\nGentlemen,1,2kinghenryvi,1590\nfelonious,1,2kinghenryvi,1590\ndispense,1,2kinghenryvi,1590\npledges,1,2kinghenryvi,1590\nObey,1,2kinghenryvi,1590\nHe'll,1,2kinghenryvi,1590\navoid,1,2kinghenryvi,1590\nAbbey,1,2kinghenryvi,1590\ndownright,1,2kinghenryvi,1590\nKnow,1,2kinghenryvi,1590\nregal,1,2kinghenryvi,1590\nThrough,1,2kinghenryvi,1590\nblame,1,2kinghenryvi,1590\nDeliver,1,2kinghenryvi,1590\nchests,1,2kinghenryvi,1590\no'erweening,1,2kinghenryvi,1590\nrevelling,1,2kinghenryvi,1590\ncurtain,1,2kinghenryvi,1590\nbait,1,2kinghenryvi,1590\nCades,1,2kinghenryvi,1590\nrecreants,1,2kinghenryvi,1590\nBargulus,1,2kinghenryvi,1590\ndislike,1,2kinghenryvi,1590\nport,1,2kinghenryvi,1590\nSend,1,2kinghenryvi,1590\nGeorge's,1,2kinghenryvi,1590\ncaudle,1,2kinghenryvi,1590\nparentage,1,2kinghenryvi,1590\nsecure,1,2kinghenryvi,1590\nself,1,2kinghenryvi,1590\ngusts,1,2kinghenryvi,1590\nGelidus,1,2kinghenryvi,1590\nuncover'd,1,2kinghenryvi,1590\naccording,1,2kinghenryvi,1590\nraven,1,2kinghenryvi,1590\nravenous,1,2kinghenryvi,1590\nbee's,1,2kinghenryvi,1590\nClose,1,2kinghenryvi,1590\nremorseless,1,2kinghenryvi,1590\nLoather,1,2kinghenryvi,1590\nblank,1,2kinghenryvi,1590\npost,1,2kinghenryvi,1590\nles,1,2kinghenryvi,1590\nsee'st,1,2kinghenryvi,1590\ngloss,1,2kinghenryvi,1590\nleg,1,2kinghenryvi,1590\ncontusions,1,2kinghenryvi,1590\nenclosing,1,2kinghenryvi,1590\nMover,1,2kinghenryvi,1590\nexorcisms,1,2kinghenryvi,1590\nghosts,1,2kinghenryvi,1590\ngrieves,1,2kinghenryvi,1590\nordain'd,1,2kinghenryvi,1590\nGlendower,1,2kinghenryvi,1590\nClimbing,1,2kinghenryvi,1590\nbade,1,2kinghenryvi,1590\nnurse,1,2kinghenryvi,1590\nRoman,1,2kinghenryvi,1590\nslough,1,2kinghenryvi,1590\nwould'st,1,2kinghenryvi,1590\ngreeting,1,2kinghenryvi,1590\njudgest,1,2kinghenryvi,1590\nhowl,1,2kinghenryvi,1590\ntrap,1,2kinghenryvi,1590\nsullen,1,2kinghenryvi,1590\ninjured,1,2kinghenryvi,1590\nstatue,1,2kinghenryvi,1590\nDelivered,1,2kinghenryvi,1590\nblast,1,2kinghenryvi,1590\npassionate,1,2kinghenryvi,1590\ninflict,1,2kinghenryvi,1590\nbolder,1,2kinghenryvi,1590\nconferr'd,1,2kinghenryvi,1590\nmerchant,1,2kinghenryvi,1590\ncoin,1,2kinghenryvi,1590\ncrooked,1,2kinghenryvi,1590\nmaster's,1,2kinghenryvi,1590\nsheets,1,2kinghenryvi,1590\nBeldam,1,2kinghenryvi,1590\nbags,1,2kinghenryvi,1590\npope,1,2kinghenryvi,1590\nstormy,1,2kinghenryvi,1590\ndeathsman,1,2kinghenryvi,1590\ncontrolling,1,2kinghenryvi,1590\nBest's,1,2kinghenryvi,1590\ninvented,1,2kinghenryvi,1590\nbearest,1,2kinghenryvi,1590\nthread,1,2kinghenryvi,1590\nteipsum,1,2kinghenryvi,1590\nspider,1,2kinghenryvi,1590\nlicence,1,2kinghenryvi,1590\nconduit,1,2kinghenryvi,1590\nchoke,1,2kinghenryvi,1590\nwithstand,1,2kinghenryvi,1590\nborrowed,1,2kinghenryvi,1590\npersuade,1,2kinghenryvi,1590\nFish,1,2kinghenryvi,1590\nMagnus',1,2kinghenryvi,1590\nRing,1,2kinghenryvi,1590\nseated,1,2kinghenryvi,1590\n'Item,1,2kinghenryvi,1590\nallegation,1,2kinghenryvi,1590\nArmourer's,1,2kinghenryvi,1590\nmap,1,2kinghenryvi,1590\ncloudy,1,2kinghenryvi,1590\nevening,1,2kinghenryvi,1590\nwearing,1,2kinghenryvi,1590\nwrits,1,2kinghenryvi,1590\nalter'd,1,2kinghenryvi,1590\nsounded,1,2kinghenryvi,1590\nrevealed,1,2kinghenryvi,1590\nabroad,1,2kinghenryvi,1590\nsplitting,1,2kinghenryvi,1590\nthrifty,1,2kinghenryvi,1590\nbalance,1,2kinghenryvi,1590\nunlike,1,2kinghenryvi,1590\nrevolted,1,2kinghenryvi,1590\nfuture,1,2kinghenryvi,1590\nmayor's,1,2kinghenryvi,1590\nscum,1,2kinghenryvi,1590\nParticularities,1,2kinghenryvi,1590\nbishop,1,2kinghenryvi,1590\nlearn,1,2kinghenryvi,1590\nvillains',1,2kinghenryvi,1590\nstarve,1,2kinghenryvi,1590\nlease,1,2kinghenryvi,1590\ndoing,1,2kinghenryvi,1590\nAnother,1,2kinghenryvi,1590\ndismiss'd,1,2kinghenryvi,1590\nremember,1,2kinghenryvi,1590\nforked,1,2kinghenryvi,1590\ndefaced,1,2kinghenryvi,1590\nwarlike,1,2kinghenryvi,1590\nimpious,1,2kinghenryvi,1590\nSometime,1,2kinghenryvi,1590\nchosen,1,2kinghenryvi,1590\nwretch's,1,2kinghenryvi,1590\nsister,1,2kinghenryvi,1590\nmet,1,2kinghenryvi,1590\nheaded,1,2kinghenryvi,1590\ndefendant,1,2kinghenryvi,1590\nleaps,1,2kinghenryvi,1590\nlamenting,1,2kinghenryvi,1590\npull'd,1,2kinghenryvi,1590\nsmooth'st,1,2kinghenryvi,1590\nstirrup,1,2kinghenryvi,1590\nmaces,1,2kinghenryvi,1590\nreformation,1,2kinghenryvi,1590\nnobody,1,2kinghenryvi,1590\nstreet,1,2kinghenryvi,1590\ndetermine,1,2kinghenryvi,1590\nSince,1,2kinghenryvi,1590\nseduced,1,2kinghenryvi,1590\nburnt,1,2kinghenryvi,1590\nsupplant,1,2kinghenryvi,1590\ngens,1,2kinghenryvi,1590\nmurder's,1,2kinghenryvi,1590\npleasant,1,2kinghenryvi,1590\nExcept,1,2kinghenryvi,1590\nwhip,1,2kinghenryvi,1590\nmerciful,1,2kinghenryvi,1590\nladies,1,2kinghenryvi,1590\ncrocodile,1,2kinghenryvi,1590\nclothier,1,2kinghenryvi,1590\nflew,1,2kinghenryvi,1590\ndebating,1,2kinghenryvi,1590\nLevy,1,2kinghenryvi,1590\nthinking,1,2kinghenryvi,1590\nNeighbours,1,2kinghenryvi,1590\nMeg,1,2kinghenryvi,1590\nfashion,1,2kinghenryvi,1590\npunishment,1,2kinghenryvi,1590\nhastily,1,2kinghenryvi,1590\nTears,1,2kinghenryvi,1590\ncardinals,1,2kinghenryvi,1590\nForsooth,1,2kinghenryvi,1590\nshearman,1,2kinghenryvi,1590\nharmony,1,2kinghenryvi,1590\nFrenchwoman,1,2kinghenryvi,1590\ninspired,1,2kinghenryvi,1590\nenvies,1,2kinghenryvi,1590\nenjoying,1,2kinghenryvi,1590\nhomage,1,2kinghenryvi,1590\nCADE'S,1,2kinghenryvi,1590\nstruggling,1,2kinghenryvi,1590\nIDEN's,1,2kinghenryvi,1590\ncapite,1,2kinghenryvi,1590\ntelling,1,2kinghenryvi,1590\nprowess,1,2kinghenryvi,1590\ncliffs,1,2kinghenryvi,1590\nuntainted,1,2kinghenryvi,1590\neunuch,1,2kinghenryvi,1590\ndirections,1,2kinghenryvi,1590\nRespecting,1,2kinghenryvi,1590\ngrounds,1,2kinghenryvi,1590\nflaw,1,2kinghenryvi,1590\nflax,1,2kinghenryvi,1590\nliquid,1,2kinghenryvi,1590\nlath,1,2kinghenryvi,1590\nMounsieur,1,2kinghenryvi,1590\ncitizens,1,2kinghenryvi,1590\ntickle,1,2kinghenryvi,1590\nVII,1,2kinghenryvi,1590\nburly,1,2kinghenryvi,1590\ndishonour'd,1,2kinghenryvi,1590\nLooking,1,2kinghenryvi,1590\nencroaching,1,2kinghenryvi,1590\nbetimes,1,2kinghenryvi,1590\nmuffled,1,2kinghenryvi,1590\nbaiting,1,2kinghenryvi,1590\nWithout,1,2kinghenryvi,1590\nwhet,1,2kinghenryvi,1590\nknave's,1,2kinghenryvi,1590\npuissance,1,2kinghenryvi,1590\nDisdain,1,2kinghenryvi,1590\nresembled,1,2kinghenryvi,1590\nimpart,1,2kinghenryvi,1590\nNevil's,1,2kinghenryvi,1590\nwere't,1,2kinghenryvi,1590\nLent,1,2kinghenryvi,1590\nHolden,1,2kinghenryvi,1590\nstrange,1,2kinghenryvi,1590\nbribes,1,2kinghenryvi,1590\nLend,1,2kinghenryvi,1590\nquill'd,1,2kinghenryvi,1590\ncontend,1,2kinghenryvi,1590\nripen'd,1,2kinghenryvi,1590\noracles,1,2kinghenryvi,1590\nJustice,1,2kinghenryvi,1590\nmow,1,2kinghenryvi,1590\nconflict,1,2kinghenryvi,1590\nshrewd,1,2kinghenryvi,1590\nDeath,1,2kinghenryvi,1590\nsentence,1,2kinghenryvi,1590\nhired,1,2kinghenryvi,1590\nwidow,1,2kinghenryvi,1590\ninconstancy,1,2kinghenryvi,1590\nPriests,1,2kinghenryvi,1590\nPLANTAGENET,1,2kinghenryvi,1590\nbanditto,1,2kinghenryvi,1590\nSmooth,1,2kinghenryvi,1590\nslay,1,2kinghenryvi,1590\ndash,1,2kinghenryvi,1590\nwounding,1,2kinghenryvi,1590\nGoodman,1,2kinghenryvi,1590\ndog,1,2kinghenryvi,1590\nasleep,1,2kinghenryvi,1590\nhonour'd,1,2kinghenryvi,1590\nsubstitute,1,2kinghenryvi,1590\nharsh,1,2kinghenryvi,1590\nhappily,1,2kinghenryvi,1590\nmud,1,2kinghenryvi,1590\nswallow,1,2kinghenryvi,1590\noffender's,1,2kinghenryvi,1590\nfamish,1,2kinghenryvi,1590\nLest,1,2kinghenryvi,1590\ntainture,1,2kinghenryvi,1590\nlake,1,2kinghenryvi,1590\nDie,1,2kinghenryvi,1590\nframe,1,2kinghenryvi,1590\nbucks,1,2kinghenryvi,1590\ndug,1,2kinghenryvi,1590\naidance,1,2kinghenryvi,1590\n'First,1,2kinghenryvi,1590\nmiseries,1,2kinghenryvi,1590\ncommandments,1,2kinghenryvi,1590\nprelate,1,2kinghenryvi,1590\nstinks,1,2kinghenryvi,1590\nLets,1,2kinghenryvi,1590\npent,1,2kinghenryvi,1590\nlank,1,2kinghenryvi,1590\nbonfires,1,2kinghenryvi,1590\nprimrose,1,2kinghenryvi,1590\nartus,1,2kinghenryvi,1590\nglobe,1,2kinghenryvi,1590\ndry,1,2kinghenryvi,1590\nbred,1,2kinghenryvi,1590\nmum,1,2kinghenryvi,1590\nlongboat's,1,2kinghenryvi,1590\nblossoms,1,2kinghenryvi,1590\nreverend,1,2kinghenryvi,1590\ninstantly,1,2kinghenryvi,1590\ndemean,1,2kinghenryvi,1590\nDRAMATIS,1,2kinghenryvi,1590\nchariot,1,2kinghenryvi,1590\ncertain,1,2kinghenryvi,1590\nshift,1,2kinghenryvi,1590\nreverent,1,2kinghenryvi,1590\nprinces',1,2kinghenryvi,1590\nChannel,1,2kinghenryvi,1590\nrescue,1,2kinghenryvi,1590\nshine,1,2kinghenryvi,1590\nflower,1,2kinghenryvi,1590\narmed,1,2kinghenryvi,1590\ngrapple,1,2kinghenryvi,1590\npennyworths,1,2kinghenryvi,1590\nChristendom,1,2kinghenryvi,1590\nTom,1,2kinghenryvi,1590\nuncivil,1,2kinghenryvi,1590\nawkward,1,2kinghenryvi,1590\ngnaw,1,2kinghenryvi,1590\nLeft,1,2kinghenryvi,1590\nprevaileth,1,2kinghenryvi,1590\nBOTH,1,2kinghenryvi,1590\nherald's,1,2kinghenryvi,1590\nwizards,1,2kinghenryvi,1590\ntrees,1,2kinghenryvi,1590\nKneeling,1,2kinghenryvi,1590\nYorks,1,2kinghenryvi,1590\ncross,1,2kinghenryvi,1590\nsmell,1,2kinghenryvi,1590\nsurfeits,1,2kinghenryvi,1590\npirates,1,2kinghenryvi,1590\nParliament,1,2kinghenryvi,1590\nencountered,1,2kinghenryvi,1590\ndastards,1,2kinghenryvi,1590\nAscanius,1,2kinghenryvi,1590\nstings,1,2kinghenryvi,1590\nprivate,1,2kinghenryvi,1590\nFain,1,2kinghenryvi,1590\ndauphin,1,2kinghenryvi,1590\nreconcile,1,2kinghenryvi,1590\nscales,1,2kinghenryvi,1590\nslip,1,2kinghenryvi,1590\nstomachs,1,2kinghenryvi,1590\npronounce,1,2kinghenryvi,1590\nbehoof,1,2kinghenryvi,1590\nblasphemy,1,2kinghenryvi,1590\nmutual,1,2kinghenryvi,1590\nUnlike,1,2kinghenryvi,1590\nDisturb,1,2kinghenryvi,1590\nchoicely,1,2kinghenryvi,1590\nearth's,1,2kinghenryvi,1590\nspectacle,1,2kinghenryvi,1590\nshire,1,2kinghenryvi,1590\nadjudged,1,2kinghenryvi,1590\nstriving,1,2kinghenryvi,1590\nmajestas,1,2kinghenryvi,1590\nshirt,1,2kinghenryvi,1590\n'mongst,1,2kinghenryvi,1590\nClapping,1,2kinghenryvi,1590\nflattering,1,2kinghenryvi,1590\nawait,1,2kinghenryvi,1590\nsuffocate,1,2kinghenryvi,1590\nundertake,1,2kinghenryvi,1590\nhatches,1,2kinghenryvi,1590\nhatchet,1,2kinghenryvi,1590\nsands,1,2kinghenryvi,1590\ndim,1,2kinghenryvi,1590\nshare,1,2kinghenryvi,1590\ndissemble,1,2kinghenryvi,1590\ndig,1,2kinghenryvi,1590\ngazer,1,2kinghenryvi,1590\nsteadfast,1,2kinghenryvi,1590\nexempt,1,2kinghenryvi,1590\ncorrosive,1,2kinghenryvi,1590\nvanquish,1,2kinghenryvi,1590\nhedge,1,2kinghenryvi,1590\nservant's,1,2kinghenryvi,1590\nsummer,1,2kinghenryvi,1590\ndaughters,1,2kinghenryvi,1590\nDrove,1,2kinghenryvi,1590\nclaimed,1,2kinghenryvi,1590\ndimm'd,2,2kinghenryvi,1590\nFrenchmen,2,2kinghenryvi,1590\ntroubled,2,2kinghenryvi,1590\nparchment,2,2kinghenryvi,1590\ntomb,2,2kinghenryvi,1590\nignorance,2,2kinghenryvi,1590\nswords,2,2kinghenryvi,1590\nsnared,2,2kinghenryvi,1590\nlawyers,2,2kinghenryvi,1590\njoin,2,2kinghenryvi,1590\nadvice,2,2kinghenryvi,1590\nPhilippe,2,2kinghenryvi,1590\njar,2,2kinghenryvi,1590\nbeadle,2,2kinghenryvi,1590\ntremble,2,2kinghenryvi,1590\ntreasury,2,2kinghenryvi,1590\nGEORGE,2,2kinghenryvi,1590\nwish'd,2,2kinghenryvi,1590\nburn'd,2,2kinghenryvi,1590\nreign'd,2,2kinghenryvi,1590\ntraitor's,2,2kinghenryvi,1590\ndepose,2,2kinghenryvi,1590\nJoin,2,2kinghenryvi,1590\ntorn,2,2kinghenryvi,1590\nadvantage,2,2kinghenryvi,1590\nbrows,2,2kinghenryvi,1590\nGLOUCESTER'S,2,2kinghenryvi,1590\nhaste,2,2kinghenryvi,1590\npurge,2,2kinghenryvi,1590\nTours,2,2kinghenryvi,1590\nresign,2,2kinghenryvi,1590\nassured,2,2kinghenryvi,1590\nshoulders,2,2kinghenryvi,1590\neasily,2,2kinghenryvi,1590\nexpress,2,2kinghenryvi,1590\nwhips,2,2kinghenryvi,1590\nheld,2,2kinghenryvi,1590\ncommotion,2,2kinghenryvi,1590\nNever,2,2kinghenryvi,1590\ntruly,2,2kinghenryvi,1590\nMust,2,2kinghenryvi,1590\nDespite,2,2kinghenryvi,1590\ngroan,2,2kinghenryvi,1590\ntrunk,2,2kinghenryvi,1590\nhalters,2,2kinghenryvi,1590\nCitizens,2,2kinghenryvi,1590\nwhipped,2,2kinghenryvi,1590\nFar,2,2kinghenryvi,1590\nrid,2,2kinghenryvi,1590\nfought,2,2kinghenryvi,1590\nnaked,2,2kinghenryvi,1590\nhanged,2,2kinghenryvi,1590\nsummer's,2,2kinghenryvi,1590\nmaintain,2,2kinghenryvi,1590\nstrangled,2,2kinghenryvi,1590\nsigns,2,2kinghenryvi,1590\ninnocence,2,2kinghenryvi,1590\nravish,2,2kinghenryvi,1590\nlies,2,2kinghenryvi,1590\nbridle,2,2kinghenryvi,1590\ntrust,2,2kinghenryvi,1590\ncontrary,2,2kinghenryvi,1590\nThird's,2,2kinghenryvi,1590\nWere't,2,2kinghenryvi,1590\nwounded,2,2kinghenryvi,1590\nearls,2,2kinghenryvi,1590\nMarried,2,2kinghenryvi,1590\ndemand,2,2kinghenryvi,1590\nPool,2,2kinghenryvi,1590\nspare,2,2kinghenryvi,1590\ncast,2,2kinghenryvi,1590\nloathsome,2,2kinghenryvi,1590\nwalking,2,2kinghenryvi,1590\ndelivered,2,2kinghenryvi,1590\nsoon,2,2kinghenryvi,1590\nsad,2,2kinghenryvi,1590\nAfter,2,2kinghenryvi,1590\njest,2,2kinghenryvi,1590\n'What,2,2kinghenryvi,1590\nconfusion,2,2kinghenryvi,1590\nsat,2,2kinghenryvi,1590\nyears,2,2kinghenryvi,1590\nEleanor's,2,2kinghenryvi,1590\nJove,2,2kinghenryvi,1590\nSaunder,2,2kinghenryvi,1590\nbroken,2,2kinghenryvi,1590\nsennet,2,2kinghenryvi,1590\nbroker,2,2kinghenryvi,1590\nfactious,2,2kinghenryvi,1590\ntrumpet,2,2kinghenryvi,1590\ntoward,2,2kinghenryvi,1590\ntremblest,2,2kinghenryvi,1590\nOnly,2,2kinghenryvi,1590\nseemeth,2,2kinghenryvi,1590\ngolden,2,2kinghenryvi,1590\nsoil,2,2kinghenryvi,1590\ncalm,2,2kinghenryvi,1590\ncalf,2,2kinghenryvi,1590\nglass,2,2kinghenryvi,1590\nchains,2,2kinghenryvi,1590\nsoft,2,2kinghenryvi,1590\nbegan,2,2kinghenryvi,1590\npaltry,2,2kinghenryvi,1590\nsoar,2,2kinghenryvi,1590\nexecution,2,2kinghenryvi,1590\nplains,2,2kinghenryvi,1590\nwaft,2,2kinghenryvi,1590\nsums,2,2kinghenryvi,1590\nliefest,2,2kinghenryvi,1590\nken,2,2kinghenryvi,1590\n'twere,2,2kinghenryvi,1590\nbastard,2,2kinghenryvi,1590\nwalk,2,2kinghenryvi,1590\nflying,2,2kinghenryvi,1590\nfamish'd,2,2kinghenryvi,1590\nkneel'd,2,2kinghenryvi,1590\nthrone,2,2kinghenryvi,1590\nsuit,2,2kinghenryvi,1590\nscore,2,2kinghenryvi,1590\nstealing,2,2kinghenryvi,1590\nbirds,2,2kinghenryvi,1590\nembrace,2,2kinghenryvi,1590\ncradle,2,2kinghenryvi,1590\nbringing,2,2kinghenryvi,1590\nwinds,2,2kinghenryvi,1590\nFarewell,2,2kinghenryvi,1590\nraised,2,2kinghenryvi,1590\nCheapside,2,2kinghenryvi,1590\nFalconers,2,2kinghenryvi,1590\nThump,2,2kinghenryvi,1590\nwhere's,2,2kinghenryvi,1590\nlivery,2,2kinghenryvi,1590\nmultitudes,2,2kinghenryvi,1590\nbeloved,2,2kinghenryvi,1590\ngather,2,2kinghenryvi,1590\nleague,2,2kinghenryvi,1590\nesteem,2,2kinghenryvi,1590\nvile,2,2kinghenryvi,1590\neverlasting,2,2kinghenryvi,1590\nSimpcox,2,2kinghenryvi,1590\npiece,2,2kinghenryvi,1590\nOur,2,2kinghenryvi,1590\nhenceforward,2,2kinghenryvi,1590\nclimbing,2,2kinghenryvi,1590\nafraid,2,2kinghenryvi,1590\nOfficers,2,2kinghenryvi,1590\ncivil,2,2kinghenryvi,1590\nHorner,2,2kinghenryvi,1590\nfalls,2,2kinghenryvi,1590\nPardon,2,2kinghenryvi,1590\nwhite,2,2kinghenryvi,1590\nthence,2,2kinghenryvi,1590\ncries,2,2kinghenryvi,1590\nhumble,2,2kinghenryvi,1590\nelder,2,2kinghenryvi,1590\nreverence,2,2kinghenryvi,1590\ndescent,2,2kinghenryvi,1590\nSpare,2,2kinghenryvi,1590\nbeaten,2,2kinghenryvi,1590\naccept,2,2kinghenryvi,1590\nKillingworth,2,2kinghenryvi,1590\npinnace,2,2kinghenryvi,1590\nweather,2,2kinghenryvi,1590\nwine,2,2kinghenryvi,1590\nsoldier,2,2kinghenryvi,1590\nflesh,2,2kinghenryvi,1590\nHence,2,2kinghenryvi,1590\n'sallet',2,2kinghenryvi,1590\nStreet,2,2kinghenryvi,1590\nSafer,2,2kinghenryvi,1590\npeasants,2,2kinghenryvi,1590\nsteal,2,2kinghenryvi,1590\nedge,2,2kinghenryvi,1590\nheaved,2,2kinghenryvi,1590\nknow'st,2,2kinghenryvi,1590\nesquire,2,2kinghenryvi,1590\nstaying,2,2kinghenryvi,1590\nambassador,2,2kinghenryvi,1590\nworld's,2,2kinghenryvi,1590\nharbour,2,2kinghenryvi,1590\npretty,2,2kinghenryvi,1590\ntortured,2,2kinghenryvi,1590\nsteel,2,2kinghenryvi,1590\nThere's,2,2kinghenryvi,1590\nmanly,2,2kinghenryvi,1590\nEnglishmen,2,2kinghenryvi,1590\ntend,2,2kinghenryvi,1590\ncreated,2,2kinghenryvi,1590\nhungry,2,2kinghenryvi,1590\ngrievous,2,2kinghenryvi,1590\nMischance,2,2kinghenryvi,1590\nunkind,2,2kinghenryvi,1590\nmelancholy,2,2kinghenryvi,1590\nhas,2,2kinghenryvi,1590\nNevils',2,2kinghenryvi,1590\nballs,2,2kinghenryvi,1590\nmarquess,2,2kinghenryvi,1590\nAm,2,2kinghenryvi,1590\nAn,2,2kinghenryvi,1590\npacking,2,2kinghenryvi,1590\nstubborn,2,2kinghenryvi,1590\nmusic,2,2kinghenryvi,1590\nsurety,2,2kinghenryvi,1590\nhang'd,2,2kinghenryvi,1590\nneither,2,2kinghenryvi,1590\ndaunted,2,2kinghenryvi,1590\nbox,2,2kinghenryvi,1590\nHim,2,2kinghenryvi,1590\nWhiles,2,2kinghenryvi,1590\nThose,2,2kinghenryvi,1590\nalarum,2,2kinghenryvi,1590\nWither,2,2kinghenryvi,1590\nblown,2,2kinghenryvi,1590\nStill,2,2kinghenryvi,1590\nbag,2,2kinghenryvi,1590\ninclined,2,2kinghenryvi,1590\nAshford,2,2kinghenryvi,1590\nlisten,2,2kinghenryvi,1590\nbrings,2,2kinghenryvi,1590\nto't,2,2kinghenryvi,1590\nstab,2,2kinghenryvi,1590\nHer,2,2kinghenryvi,1590\nfinds,2,2kinghenryvi,1590\ntear,2,2kinghenryvi,1590\nWALTER,2,2kinghenryvi,1590\nbeg,2,2kinghenryvi,1590\nfatal,2,2kinghenryvi,1590\nvanquished,2,2kinghenryvi,1590\nbless,2,2kinghenryvi,1590\nowner,2,2kinghenryvi,1590\nSword,2,2kinghenryvi,1590\ngoods,2,2kinghenryvi,1590\nease,2,2kinghenryvi,1590\neast,2,2kinghenryvi,1590\ndespair,2,2kinghenryvi,1590\ndroops,2,2kinghenryvi,1590\nIs't,2,2kinghenryvi,1590\ndevotion,2,2kinghenryvi,1590\nnobly,2,2kinghenryvi,1590\noutlive,2,2kinghenryvi,1590\nCharles,2,2kinghenryvi,1590\nobey,2,2kinghenryvi,1590\ncorrupted,2,2kinghenryvi,1590\nkiss'd,2,2kinghenryvi,1590\nsirs,2,2kinghenryvi,1590\nMurder,2,2kinghenryvi,1590\nbe'st,2,2kinghenryvi,1590\nsorry,2,2kinghenryvi,1590\nproportion,2,2kinghenryvi,1590\nleather,2,2kinghenryvi,1590\nimagine,2,2kinghenryvi,1590\nbehind,2,2kinghenryvi,1590\nsuffer'd,2,2kinghenryvi,1590\ndove,2,2kinghenryvi,1590\nsalute,2,2kinghenryvi,1590\nsounds,2,2kinghenryvi,1590\nlearned,2,2kinghenryvi,1590\ngaze,2,2kinghenryvi,1590\nbent,2,2kinghenryvi,1590\ntreasons,2,2kinghenryvi,1590\nimperial,2,2kinghenryvi,1590\nBorn,2,2kinghenryvi,1590\nsumptuous,2,2kinghenryvi,1590\nmonuments,2,2kinghenryvi,1590\na',2,2kinghenryvi,1590\njewel,2,2kinghenryvi,1590\nfifth,2,2kinghenryvi,1590\ntedious,2,2kinghenryvi,1590\ndespite,2,2kinghenryvi,1590\nherein,2,2kinghenryvi,1590\nAbove,2,2kinghenryvi,1590\nbeer,2,2kinghenryvi,1590\nEnough,2,2kinghenryvi,1590\ngown,2,2kinghenryvi,1590\nMeet,2,2kinghenryvi,1590\nheadstrong,2,2kinghenryvi,1590\noxen,2,2kinghenryvi,1590\ninheritance,2,2kinghenryvi,1590\nbegin,2,2kinghenryvi,1590\nstore,2,2kinghenryvi,1590\nentertain,2,2kinghenryvi,1590\ni',2,2kinghenryvi,1590\nbreath,2,2kinghenryvi,1590\nstay'd,2,2kinghenryvi,1590\nforgive,2,2kinghenryvi,1590\nMethought,2,2kinghenryvi,1590\nresolute,2,2kinghenryvi,1590\ngallows,2,2kinghenryvi,1590\nyea,2,2kinghenryvi,1590\nFear,2,2kinghenryvi,1590\nPetitioners,2,2kinghenryvi,1590\naid,2,2kinghenryvi,1590\nHere's,2,2kinghenryvi,1590\nwreck,2,2kinghenryvi,1590\nstoop,2,2kinghenryvi,1590\ntragedy,2,2kinghenryvi,1590\ndeaf,2,2kinghenryvi,1590\nengirt,2,2kinghenryvi,1590\nAlexander,2,2kinghenryvi,1590\nhusband,2,2kinghenryvi,1590\nhouses,2,2kinghenryvi,1590\nforget,2,2kinghenryvi,1590\ndoor,2,2kinghenryvi,1590\nask'd,2,2kinghenryvi,1590\nLangley,2,2kinghenryvi,1590\nquestions,2,2kinghenryvi,1590\nmonth,2,2kinghenryvi,1590\nwhereof,2,2kinghenryvi,1590\ncousin,2,2kinghenryvi,1590\ntemper,2,2kinghenryvi,1590\ncloaks,2,2kinghenryvi,1590\nPernicious,2,2kinghenryvi,1590\nglance,2,2kinghenryvi,1590\nLionel,2,2kinghenryvi,1590\nstout,2,2kinghenryvi,1590\nloud,2,2kinghenryvi,1590\nloss,2,2kinghenryvi,1590\nWouldst,2,2kinghenryvi,1590\nresolved,2,2kinghenryvi,1590\nspent,2,2kinghenryvi,1590\nlest,2,2kinghenryvi,1590\nless,2,2kinghenryvi,1590\nMATTHEW,2,2kinghenryvi,1590\napparel,2,2kinghenryvi,1590\nspend,2,2kinghenryvi,1590\nact,2,2kinghenryvi,1590\nlock'd,2,2kinghenryvi,1590\nmischiefs,2,2kinghenryvi,1590\nready,2,2kinghenryvi,1590\nsubornation,2,2kinghenryvi,1590\npure,2,2kinghenryvi,1590\nsun's,2,2kinghenryvi,1590\nclimb,2,2kinghenryvi,1590\ngraves,2,2kinghenryvi,1590\nreasons,2,2kinghenryvi,1590\nSeeing,2,2kinghenryvi,1590\nplot,2,2kinghenryvi,1590\nJourdain,2,2kinghenryvi,1590\naxe,2,2kinghenryvi,1590\nweapon,2,2kinghenryvi,1590\nte,2,2kinghenryvi,1590\nround,2,2kinghenryvi,1590\nChristian,2,2kinghenryvi,1590\nowls,2,2kinghenryvi,1590\nsignify,2,2kinghenryvi,1590\nemploy'd,2,2kinghenryvi,1590\nserpent's,2,2kinghenryvi,1590\nshun,2,2kinghenryvi,1590\nLady,2,2kinghenryvi,1590\nliberty,2,2kinghenryvi,1590\nreach,2,2kinghenryvi,1590\nforthcoming,2,2kinghenryvi,1590\nfour,2,2kinghenryvi,1590\nmarching,2,2kinghenryvi,1590\nwhether,2,2kinghenryvi,1590\nvengeance,2,2kinghenryvi,1590\nweeps,2,2kinghenryvi,1590\nprepare,2,2kinghenryvi,1590\nHatfield,2,2kinghenryvi,1590\nrack'd,2,2kinghenryvi,1590\nship,2,2kinghenryvi,1590\nwinter's,2,2kinghenryvi,1590\nspear,2,2kinghenryvi,1590\ndevise,2,2kinghenryvi,1590\ntwain,2,2kinghenryvi,1590\nbosom,2,2kinghenryvi,1590\nworldly,2,2kinghenryvi,1590\nyielded,2,2kinghenryvi,1590\nfall'n,2,2kinghenryvi,1590\nfiend,2,2kinghenryvi,1590\nduke's,2,2kinghenryvi,1590\nSmall,2,2kinghenryvi,1590\nfond,2,2kinghenryvi,1590\nprotected,2,2kinghenryvi,1590\nAttendant,2,2kinghenryvi,1590\nhateth,2,2kinghenryvi,1590\narmour,2,2kinghenryvi,1590\nShe'll,2,2kinghenryvi,1590\nchance,2,2kinghenryvi,1590\npassengers,2,2kinghenryvi,1590\nthanks,2,2kinghenryvi,1590\nfet,2,2kinghenryvi,1590\ndeadly,2,2kinghenryvi,1590\nfee,2,2kinghenryvi,1590\nbeggary,2,2kinghenryvi,1590\nnative,2,2kinghenryvi,1590\njudgment,2,2kinghenryvi,1590\nhiss,2,2kinghenryvi,1590\nenjoy,2,2kinghenryvi,1590\nbroke,2,2kinghenryvi,1590\nbeams,2,2kinghenryvi,1590\nnobles,2,2kinghenryvi,1590\nwatch,2,2kinghenryvi,1590\nfan,2,2kinghenryvi,1590\nlean,2,2kinghenryvi,1590\nCommand,2,2kinghenryvi,1590\noccasion,2,2kinghenryvi,1590\ncondemn'd,2,2kinghenryvi,1590\neffected,2,2kinghenryvi,1590\nkeeps,2,2kinghenryvi,1590\nmoved,2,2kinghenryvi,1590\nArmourer,2,2kinghenryvi,1590\nreport,2,2kinghenryvi,1590\nTen,2,2kinghenryvi,1590\nempty,2,2kinghenryvi,1590\nreported,2,2kinghenryvi,1590\ncalm'd,2,2kinghenryvi,1590\nWestminster,2,2kinghenryvi,1590\nclapp'd,2,2kinghenryvi,1590\nnote,2,2kinghenryvi,1590\ndarts,2,2kinghenryvi,1590\nalmost,2,2kinghenryvi,1590\nretreat,2,2kinghenryvi,1590\naction,2,2kinghenryvi,1590\nwonder,2,2kinghenryvi,1590\npenny,2,2kinghenryvi,1590\nmounted,2,2kinghenryvi,1590\nrout,2,2kinghenryvi,1590\nbrazen,2,2kinghenryvi,1590\nbeard,2,2kinghenryvi,1590\naffrights,2,2kinghenryvi,1590\nchurchman,2,2kinghenryvi,1590\ndescended,2,2kinghenryvi,1590\nClarence',2,2kinghenryvi,1590\nBase,2,2kinghenryvi,1590\nfails,2,2kinghenryvi,1590\nchase,2,2kinghenryvi,1590\nwolves,2,2kinghenryvi,1590\nyoung,2,2kinghenryvi,1590\nmount,2,2kinghenryvi,1590\nmate,2,2kinghenryvi,1590\nSet,2,2kinghenryvi,1590\ndares,2,2kinghenryvi,1590\ngrovel,2,2kinghenryvi,1590\nBerwick,2,2kinghenryvi,1590\nsay'st,2,2kinghenryvi,1590\ncloak,2,2kinghenryvi,1590\nHealth,2,2kinghenryvi,1590\nchild,2,2kinghenryvi,1590\nvanquish'd,2,2kinghenryvi,1590\nquestion,2,2kinghenryvi,1590\nplaced,2,2kinghenryvi,1590\nyours,2,2kinghenryvi,1590\nmourn,2,2kinghenryvi,1590\ndiscontent,2,2kinghenryvi,1590\nduchy,2,2kinghenryvi,1590\nmortal,2,2kinghenryvi,1590\nFree,2,2kinghenryvi,1590\nsheriff,2,2kinghenryvi,1590\nEdmund's,2,2kinghenryvi,1590\nteeth,2,2kinghenryvi,1590\nstart,2,2kinghenryvi,1590\nflinty,2,2kinghenryvi,1590\nsallet,2,2kinghenryvi,1590\nAEneas,2,2kinghenryvi,1590\nbeads,2,2kinghenryvi,1590\ndidst,2,2kinghenryvi,1590\nCould,2,2kinghenryvi,1590\nsovereign's,2,2kinghenryvi,1590\nmass,2,2kinghenryvi,1590\nmark,2,2kinghenryvi,1590\ncrimson,2,2kinghenryvi,1590\nwoe,2,2kinghenryvi,1590\nslave,2,2kinghenryvi,1590\ndevils,2,2kinghenryvi,1590\nstarved,2,2kinghenryvi,1590\ncraves,2,2kinghenryvi,1590\nmournful,2,2kinghenryvi,1590\ngates,2,2kinghenryvi,1590\nvictorious,2,2kinghenryvi,1590\nbedlam,2,2kinghenryvi,1590\nchide,2,2kinghenryvi,1590\nthief,2,2kinghenryvi,1590\nmountain,2,2kinghenryvi,1590\nperemptory,2,2kinghenryvi,1590\nmultiplied,2,2kinghenryvi,1590\ndischarge,2,2kinghenryvi,1590\nnumber,2,2kinghenryvi,1590\nReignier,2,2kinghenryvi,1590\nfist,2,2kinghenryvi,1590\nletters,2,2kinghenryvi,1590\nwealthy,2,2kinghenryvi,1590\nbehalf,2,2kinghenryvi,1590\nsuspicion,2,2kinghenryvi,1590\npole,2,2kinghenryvi,1590\nopinion,2,2kinghenryvi,1590\nGOFFE,2,2kinghenryvi,1590\nexample,2,2kinghenryvi,1590\nsalt,2,2kinghenryvi,1590\nneck,2,2kinghenryvi,1590\nsake,2,2kinghenryvi,1590\nAmbitious,2,2kinghenryvi,1590\npurchase,2,2kinghenryvi,1590\nstyle,2,2kinghenryvi,1590\nCumberland,2,2kinghenryvi,1590\nswain,2,2kinghenryvi,1590\nwit,2,2kinghenryvi,1590\nWitness,2,2kinghenryvi,1590\nprivy,2,2kinghenryvi,1590\nthoroughly,2,2kinghenryvi,1590\ncurs,2,2kinghenryvi,1590\nfetch,2,2kinghenryvi,1590\nfaultless,2,2kinghenryvi,1590\nloving,2,2kinghenryvi,1590\nupright,2,2kinghenryvi,1590\nsitting,2,2kinghenryvi,1590\nallegiance,2,2kinghenryvi,1590\nmagistrates,2,2kinghenryvi,1590\ndunghill,2,2kinghenryvi,1590\nstanding,2,2kinghenryvi,1590\nServingmen,2,2kinghenryvi,1590\nsubtle,2,2kinghenryvi,1590\ndusky,2,2kinghenryvi,1590\nstick,2,2kinghenryvi,1590\nearnest,2,2kinghenryvi,1590\nwax,2,2kinghenryvi,1590\nbelieve,2,2kinghenryvi,1590\nbarbarous,2,2kinghenryvi,1590\nprevail,2,2kinghenryvi,1590\ncommanded,2,2kinghenryvi,1590\nintent,2,2kinghenryvi,1590\nMate,2,2kinghenryvi,1590\nrags,2,2kinghenryvi,1590\nuncurable,2,2kinghenryvi,1590\nKnowing,2,2kinghenryvi,1590\nMass,2,2kinghenryvi,1590\nspectacles,2,2kinghenryvi,1590\nstayed,2,2kinghenryvi,1590\nbells,2,2kinghenryvi,1590\nThree,2,2kinghenryvi,1590\nnotice,2,2kinghenryvi,1590\ncurses,2,2kinghenryvi,1590\nsurprised,2,2kinghenryvi,1590\nfact,2,2kinghenryvi,1590\nraging,2,2kinghenryvi,1590\ntaken,2,2kinghenryvi,1590\nmarry,2,2kinghenryvi,1590\ncharges,2,2kinghenryvi,1590\npoison,2,2kinghenryvi,1590\nweeping,2,2kinghenryvi,1590\ndumb,2,2kinghenryvi,1590\nhaply,2,2kinghenryvi,1590\ncaterpillars,2,2kinghenryvi,1590\nsoldiers',2,2kinghenryvi,1590\nfro,2,2kinghenryvi,1590\nope,2,2kinghenryvi,1590\nwhence,2,2kinghenryvi,1590\nwrong'd,2,2kinghenryvi,1590\nfill'd,2,2kinghenryvi,1590\novercharged,2,2kinghenryvi,1590\ngifts,2,2kinghenryvi,1590\nglad,2,2kinghenryvi,1590\ncontempt,2,2kinghenryvi,1590\ndispatch'd,2,2kinghenryvi,1590\nevil,2,2kinghenryvi,1590\nMake,2,2kinghenryvi,1590\ncloth,2,2kinghenryvi,1590\ngiving,2,2kinghenryvi,1590\nThat's,2,2kinghenryvi,1590\nsnake,2,2kinghenryvi,1590\nfoe,2,2kinghenryvi,1590\nanswers,2,2kinghenryvi,1590\nfame,2,2kinghenryvi,1590\nhumour,2,2kinghenryvi,1590\nRises,2,2kinghenryvi,1590\nwounds,2,2kinghenryvi,1590\nNaples,2,2kinghenryvi,1590\nSorrow,2,2kinghenryvi,1590\ngazing,2,2kinghenryvi,1590\nlists,2,2kinghenryvi,1590\nprofit,2,2kinghenryvi,1590\nlordly,2,2kinghenryvi,1590\nrich,2,2kinghenryvi,1590\nsupplications,2,2kinghenryvi,1590\nsafety,2,2kinghenryvi,1590\nbare,2,2kinghenryvi,1590\nbite,2,2kinghenryvi,1590\nunfold,2,2kinghenryvi,1590\nReading,2,2kinghenryvi,1590\nsmooth,2,2kinghenryvi,1590\nperceive,2,2kinghenryvi,1590\nCastle,2,2kinghenryvi,1590\nlived,2,2kinghenryvi,1590\ntilt,2,2kinghenryvi,1590\ncensure,2,2kinghenryvi,1590\nFoul,2,2kinghenryvi,1590\nbird,2,2kinghenryvi,1590\n'Prentices,2,2kinghenryvi,1590\nstrikes,2,2kinghenryvi,1590\npublic,2,2kinghenryvi,1590\nprophesy,2,2kinghenryvi,1590\nband,2,2kinghenryvi,1590\nbank,2,2kinghenryvi,1590\ndisorder,2,2kinghenryvi,1590\nsecrets,2,2kinghenryvi,1590\nnames,2,2kinghenryvi,1590\ndam,2,2kinghenryvi,1590\nlarge,2,2kinghenryvi,1590\nfare,2,2kinghenryvi,1590\nflock,2,2kinghenryvi,1590\nfeeble,2,2kinghenryvi,1590\nreleased,2,2kinghenryvi,1590\nshepherd,2,2kinghenryvi,1590\nis't,2,2kinghenryvi,1590\nCaesar,2,2kinghenryvi,1590\ncoat,2,2kinghenryvi,1590\nman's,2,2kinghenryvi,1590\nconversed,2,2kinghenryvi,1590\nconvey,2,2kinghenryvi,1590\nperish,2,2kinghenryvi,1590\nintolerable,2,2kinghenryvi,1590\ncarry,2,2kinghenryvi,1590\nentering,2,2kinghenryvi,1590\nwild,2,2kinghenryvi,1590\nholds,2,2kinghenryvi,1590\nLay,2,2kinghenryvi,1590\nfertile,2,2kinghenryvi,1590\narticles,2,2kinghenryvi,1590\nwaited,2,2kinghenryvi,1590\nfamine,2,2kinghenryvi,1590\nconcluded,2,2kinghenryvi,1590\npresumption,2,2kinghenryvi,1590\nargument,2,2kinghenryvi,1590\nloyal,2,2kinghenryvi,1590\ncondemn,2,2kinghenryvi,1590\nwinter,2,2kinghenryvi,1590\nresolution,2,2kinghenryvi,1590\nseal,2,2kinghenryvi,1590\ntask,2,2kinghenryvi,1590\ncholer,2,2kinghenryvi,1590\nconvenient,2,2kinghenryvi,1590\nunmeet,2,2kinghenryvi,1590\nseas,2,2kinghenryvi,1590\nTroy,2,2kinghenryvi,1590\nlovely,2,2kinghenryvi,1590\ncommission,2,2kinghenryvi,1590\ncool,2,2kinghenryvi,1590\nignoble,2,2kinghenryvi,1590\nAnne,2,2kinghenryvi,1590\nacts,2,2kinghenryvi,1590\nweaver,2,2kinghenryvi,1590\nseem,2,2kinghenryvi,1590\ndefend,2,2kinghenryvi,1590\nJesu,2,2kinghenryvi,1590\nscreech,2,2kinghenryvi,1590\n'twixt,2,2kinghenryvi,1590\ncamest,2,2kinghenryvi,1590\nsweep,2,2kinghenryvi,1590\ntidings,2,2kinghenryvi,1590\ncrest,2,2kinghenryvi,1590\nResign,2,2kinghenryvi,1590\nbricklayer,2,2kinghenryvi,1590\ncorn,2,2kinghenryvi,1590\npirate,2,2kinghenryvi,1590\ngobbets,2,2kinghenryvi,1590\nsecrecy,2,2kinghenryvi,1590\nPray,2,2kinghenryvi,1590\nEnglish,2,2kinghenryvi,1590\nDick,2,2kinghenryvi,1590\nincrease,2,2kinghenryvi,1590\nheavenly,2,2kinghenryvi,1590\naffright,2,2kinghenryvi,1590\n'twill,2,2kinghenryvi,1590\nterm'd,2,2kinghenryvi,1590\ncountrymen,2,2kinghenryvi,1590\nrancorous,2,2kinghenryvi,1590\nSent,2,2kinghenryvi,1590\nsell,2,2kinghenryvi,1590\naloud,2,2kinghenryvi,1590\n'God,2,2kinghenryvi,1590\nFields,2,2kinghenryvi,1590\noppose,2,2kinghenryvi,1590\nNext,2,2kinghenryvi,1590\nbleeding,2,2kinghenryvi,1590\nled,2,2kinghenryvi,1590\nmother's,2,2kinghenryvi,1590\nundo,2,2kinghenryvi,1590\nduchess',2,2kinghenryvi,1590\nsickness,2,2kinghenryvi,1590\npurpose,2,2kinghenryvi,1590\ntriumph,2,2kinghenryvi,1590\nTwo,2,2kinghenryvi,1590\nlaws,2,2kinghenryvi,1590\nregarded,2,2kinghenryvi,1590\nslow,2,2kinghenryvi,1590\ncommons',2,2kinghenryvi,1590\nNothing,2,2kinghenryvi,1590\nslumber,2,2kinghenryvi,1590\nlays,2,2kinghenryvi,1590\nignominious,2,2kinghenryvi,1590\nHume's,2,2kinghenryvi,1590\nclouds,2,2kinghenryvi,1590\nAlbion's,2,2kinghenryvi,1590\nleast,2,2kinghenryvi,1590\nSomerset's,2,2kinghenryvi,1590\nconduct,2,2kinghenryvi,1590\nseldom,2,2kinghenryvi,1590\nbegins,2,2kinghenryvi,1590\nforces,2,2kinghenryvi,1590\nwring,2,2kinghenryvi,1590\ndealing,2,2kinghenryvi,1590\nisland,2,2kinghenryvi,1590\nlofty,2,2kinghenryvi,1590\nOppose,2,2kinghenryvi,1590\nAccording,2,2kinghenryvi,1590\nRise,2,2kinghenryvi,1590\nEARL,2,2kinghenryvi,1590\nbiting,2,2kinghenryvi,1590\ncounty,2,2kinghenryvi,1590\nwound,2,2kinghenryvi,1590\nchicken,2,2kinghenryvi,1590\nlion,2,2kinghenryvi,1590\namain,2,2kinghenryvi,1590\nmarriage,2,2kinghenryvi,1590\nmourning,2,2kinghenryvi,1590\nwhiles,2,2kinghenryvi,1590\ndismiss,2,2kinghenryvi,1590\nsometimes,2,2kinghenryvi,1590\nKneels,2,2kinghenryvi,1590\ncredit,2,2kinghenryvi,1590\nlimed,2,2kinghenryvi,1590\nvirtue,2,2kinghenryvi,1590\nsleeping,2,2kinghenryvi,1590\nterritories,2,2kinghenryvi,1590\nseverally,2,2kinghenryvi,1590\ndukedoms,2,2kinghenryvi,1590\nfright,2,2kinghenryvi,1590\npeep,2,2kinghenryvi,1590\nlist,2,2kinghenryvi,1590\neighteen,2,2kinghenryvi,1590\nnature,2,2kinghenryvi,1590\nbooks,2,2kinghenryvi,1590\nshade,2,2kinghenryvi,1590\nnumbers,2,2kinghenryvi,1590\nappellant,2,2kinghenryvi,1590\njudged,2,2kinghenryvi,1590\nattend,2,2kinghenryvi,1590\nGaultier,2,2kinghenryvi,1590\ndue,2,2kinghenryvi,1590\nsolace,2,2kinghenryvi,1590\nsudden,2,2kinghenryvi,1590\ncatch,2,2kinghenryvi,1590\nrocks,2,2kinghenryvi,1590\nlame,2,2kinghenryvi,1590\nBring,2,2kinghenryvi,1590\nToo,2,2kinghenryvi,1590\nfence,2,2kinghenryvi,1590\nhe'll,2,2kinghenryvi,1590\ngreatness,2,2kinghenryvi,1590\ndew,2,2kinghenryvi,1590\nkind,2,2kinghenryvi,1590\nButcher,2,2kinghenryvi,1590\ndrown'd,2,2kinghenryvi,1590\nLarge,2,2kinghenryvi,1590\nremorse,2,2kinghenryvi,1590\ncharity,2,2kinghenryvi,1590\ngear,2,2kinghenryvi,1590\nshape,2,2kinghenryvi,1590\nmarket,2,2kinghenryvi,1590\nThrice,2,2kinghenryvi,1590\nsandy,2,2kinghenryvi,1590\ncrows,2,2kinghenryvi,1590\nturn'd,2,2kinghenryvi,1590\nsharp,2,2kinghenryvi,1590\nkerns,3,2kinghenryvi,1590\nheed,3,2kinghenryvi,1590\njet,3,2kinghenryvi,1590\no'er,3,2kinghenryvi,1590\nforbid,3,2kinghenryvi,1590\nsnares,3,2kinghenryvi,1590\nadvised,3,2kinghenryvi,1590\nLORD,3,2kinghenryvi,1590\ndouble,3,2kinghenryvi,1590\ndisturb,3,2kinghenryvi,1590\nbusiness,3,2kinghenryvi,1590\nfollowing,3,2kinghenryvi,1590\nFie,3,2kinghenryvi,1590\nwicked,3,2kinghenryvi,1590\nhonours,3,2kinghenryvi,1590\nrascal,3,2kinghenryvi,1590\nheart's,3,2kinghenryvi,1590\nboys,3,2kinghenryvi,1590\nrather,3,2kinghenryvi,1590\ncardinal's,3,2kinghenryvi,1590\nStay,3,2kinghenryvi,1590\ndarkness,3,2kinghenryvi,1590\nBlack,3,2kinghenryvi,1590\nruffian,3,2kinghenryvi,1590\ngrin,3,2kinghenryvi,1590\nsighs,3,2kinghenryvi,1590\nCardinal,3,2kinghenryvi,1590\nlowly,3,2kinghenryvi,1590\nfury,3,2kinghenryvi,1590\nweighty,3,2kinghenryvi,1590\nnought,3,2kinghenryvi,1590\nlaugh,3,2kinghenryvi,1590\nprey,3,2kinghenryvi,1590\nsort,3,2kinghenryvi,1590\nPost,3,2kinghenryvi,1590\nsupplication,3,2kinghenryvi,1590\njoys,3,2kinghenryvi,1590\nWould,3,2kinghenryvi,1590\nbecome,3,2kinghenryvi,1590\nagreed,3,2kinghenryvi,1590\ncase,3,2kinghenryvi,1590\nbreach,3,2kinghenryvi,1590\nSoldier,3,2kinghenryvi,1590\nstrength,3,2kinghenryvi,1590\nseven,3,2kinghenryvi,1590\nFellow,3,2kinghenryvi,1590\nstock,3,2kinghenryvi,1590\nmatters,3,2kinghenryvi,1590\ngrown,3,2kinghenryvi,1590\ncircumstance,3,2kinghenryvi,1590\nCold,3,2kinghenryvi,1590\ndrag,3,2kinghenryvi,1590\ncrying,3,2kinghenryvi,1590\nAn't,3,2kinghenryvi,1590\nlimb,3,2kinghenryvi,1590\nheat,3,2kinghenryvi,1590\nThomas,3,2kinghenryvi,1590\noffenders,3,2kinghenryvi,1590\ntown,3,2kinghenryvi,1590\npaper,3,2kinghenryvi,1590\nMethinks,3,2kinghenryvi,1590\nblessed,3,2kinghenryvi,1590\nbound,3,2kinghenryvi,1590\nwarrant,3,2kinghenryvi,1590\nimpossible,3,2kinghenryvi,1590\n'twas,3,2kinghenryvi,1590\nforsake,3,2kinghenryvi,1590\nchurch,3,2kinghenryvi,1590\nmurderer,3,2kinghenryvi,1590\nIsle,3,2kinghenryvi,1590\ncounsel,3,2kinghenryvi,1590\ncountenance,3,2kinghenryvi,1590\nstern,3,2kinghenryvi,1590\nsecond,3,2kinghenryvi,1590\nlooks,3,2kinghenryvi,1590\nwings,3,2kinghenryvi,1590\ngroans,3,2kinghenryvi,1590\ndoubt,3,2kinghenryvi,1590\nbridge,3,2kinghenryvi,1590\nAttendants,3,2kinghenryvi,1590\namiss,3,2kinghenryvi,1590\nreceived,3,2kinghenryvi,1590\nThere,3,2kinghenryvi,1590\nfault,3,2kinghenryvi,1590\nruns,3,2kinghenryvi,1590\nenvious,3,2kinghenryvi,1590\ncommit,3,2kinghenryvi,1590\neldest,3,2kinghenryvi,1590\nprotectorship,3,2kinghenryvi,1590\nprinces,3,2kinghenryvi,1590\nsup,3,2kinghenryvi,1590\nsun,3,2kinghenryvi,1590\nfeed,3,2kinghenryvi,1590\nfeel,3,2kinghenryvi,1590\nhumbly,3,2kinghenryvi,1590\nservice,3,2kinghenryvi,1590\nshrine,3,2kinghenryvi,1590\nward,3,2kinghenryvi,1590\nknees,3,2kinghenryvi,1590\nPlease,3,2kinghenryvi,1590\nharmless,3,2kinghenryvi,1590\ndies,3,2kinghenryvi,1590\nwise,3,2kinghenryvi,1590\nThough,3,2kinghenryvi,1590\nCousin,3,2kinghenryvi,1590\nmurder,3,2kinghenryvi,1590\nfriend,3,2kinghenryvi,1590\nstop,3,2kinghenryvi,1590\nvoice,3,2kinghenryvi,1590\ncunning,3,2kinghenryvi,1590\nbook,3,2kinghenryvi,1590\nFollow,3,2kinghenryvi,1590\nconquer,3,2kinghenryvi,1590\nsick,3,2kinghenryvi,1590\nstir,3,2kinghenryvi,1590\nburning,3,2kinghenryvi,1590\nHold,3,2kinghenryvi,1590\nspoil,3,2kinghenryvi,1590\nquarrel,3,2kinghenryvi,1590\nbow,3,2kinghenryvi,1590\neternal,3,2kinghenryvi,1590\ndeeds,3,2kinghenryvi,1590\nitself,3,2kinghenryvi,1590\nlands,3,2kinghenryvi,1590\nStand,3,2kinghenryvi,1590\nunless,3,2kinghenryvi,1590\nOn,3,2kinghenryvi,1590\nWithin,3,2kinghenryvi,1590\nhit,3,2kinghenryvi,1590\nsurely,3,2kinghenryvi,1590\nplay,3,2kinghenryvi,1590\nsport,3,2kinghenryvi,1590\npot,3,2kinghenryvi,1590\nquiet,3,2kinghenryvi,1590\nvaliant,3,2kinghenryvi,1590\nweep,3,2kinghenryvi,1590\nbusy,3,2kinghenryvi,1590\nsooner,3,2kinghenryvi,1590\ndays',3,2kinghenryvi,1590\nrebel,3,2kinghenryvi,1590\ndevilish,3,2kinghenryvi,1590\nSirs,3,2kinghenryvi,1590\nBolingbroke,3,2kinghenryvi,1590\nmeanest,3,2kinghenryvi,1590\nDies,3,2kinghenryvi,1590\njust,3,2kinghenryvi,1590\nvows,3,2kinghenryvi,1590\nsubmission,3,2kinghenryvi,1590\npreserve,3,2kinghenryvi,1590\nlonger,3,2kinghenryvi,1590\npitch,3,2kinghenryvi,1590\nsolemn,3,2kinghenryvi,1590\nghost,3,2kinghenryvi,1590\nwiped,3,2kinghenryvi,1590\nimage,3,2kinghenryvi,1590\nconfess,3,2kinghenryvi,1590\nbetray,3,2kinghenryvi,1590\nbreast,3,2kinghenryvi,1590\nraise,3,2kinghenryvi,1590\nsheep,3,2kinghenryvi,1590\nsheet,3,2kinghenryvi,1590\nstood,3,2kinghenryvi,1590\nbeat,3,2kinghenryvi,1590\nmurderous,3,2kinghenryvi,1590\nstone,3,2kinghenryvi,1590\nunworthy,3,2kinghenryvi,1590\nvictory,3,2kinghenryvi,1590\nseeing,3,2kinghenryvi,1590\nstain'd,3,2kinghenryvi,1590\nthrive,3,2kinghenryvi,1590\naccused,3,2kinghenryvi,1590\nClarence,3,2kinghenryvi,1590\nay,3,2kinghenryvi,1590\nshed,3,2kinghenryvi,1590\ncruelty,3,2kinghenryvi,1590\nfixed,3,2kinghenryvi,1590\nsmall,3,2kinghenryvi,1590\no',3,2kinghenryvi,1590\nhadst,3,2kinghenryvi,1590\nmiserable,3,2kinghenryvi,1590\nla,3,2kinghenryvi,1590\nwherein,3,2kinghenryvi,1590\ndevil,3,2kinghenryvi,1590\ngreater,3,2kinghenryvi,1590\nmen's,3,2kinghenryvi,1590\nload,3,2kinghenryvi,1590\nthrice,3,2kinghenryvi,1590\nisle,3,2kinghenryvi,1590\nlabouring,3,2kinghenryvi,1590\nmessenger,3,2kinghenryvi,1590\nwelcome,3,2kinghenryvi,1590\nGaunt,3,2kinghenryvi,1590\ncall'd,3,2kinghenryvi,1590\ndeny,3,2kinghenryvi,1590\ndrawn,3,2kinghenryvi,1590\npraise,3,2kinghenryvi,1590\ndeaths,3,2kinghenryvi,1590\nhate,3,2kinghenryvi,1590\nforlorn,3,2kinghenryvi,1590\nlittle,3,2kinghenryvi,1590\nfear'd,3,2kinghenryvi,1590\nrough,3,2kinghenryvi,1590\nsecret,3,2kinghenryvi,1590\nbought,3,2kinghenryvi,1590\ntouch,3,2kinghenryvi,1590\ntrial,3,2kinghenryvi,1590\nArt,3,2kinghenryvi,1590\nhaving,3,2kinghenryvi,1590\nlead,3,2kinghenryvi,1590\nmarch,3,2kinghenryvi,1590\nleap,3,2kinghenryvi,1590\njustice,3,2kinghenryvi,1590\nequal,3,2kinghenryvi,1590\nmain,3,2kinghenryvi,1590\nshameful,3,2kinghenryvi,1590\nDUKE,3,2kinghenryvi,1590\nStafford,3,2kinghenryvi,1590\nguiltless,3,2kinghenryvi,1590\nthinks,3,2kinghenryvi,1590\nhinds,3,2kinghenryvi,1590\nAlban,3,2kinghenryvi,1590\nbelow,3,2kinghenryvi,1590\narmourer,3,2kinghenryvi,1590\ntraitorously,3,2kinghenryvi,1590\nstrike,3,2kinghenryvi,1590\nyou'll,3,2kinghenryvi,1590\nseveral,3,2kinghenryvi,1590\nfamous,3,2kinghenryvi,1590\ngeneral,3,2kinghenryvi,1590\nattire,3,2kinghenryvi,1590\nleaves,3,2kinghenryvi,1590\nfares,3,2kinghenryvi,1590\nLong,3,2kinghenryvi,1590\nfilth,3,2kinghenryvi,1590\nplead,3,2kinghenryvi,1590\nalready,3,2kinghenryvi,1590\nblush,3,2kinghenryvi,1590\nchair,3,2kinghenryvi,1590\nUncle,3,2kinghenryvi,1590\ncourage,3,2kinghenryvi,1590\nProtector,3,2kinghenryvi,1590\nSouthwark,3,2kinghenryvi,1590\napart,3,2kinghenryvi,1590\nThird,3,2kinghenryvi,1590\nBeing,3,2kinghenryvi,1590\nsand,3,2kinghenryvi,1590\nwrath,3,2kinghenryvi,1590\nliving,3,2kinghenryvi,1590\naffairs,3,2kinghenryvi,1590\npound,3,2kinghenryvi,1590\ndishonour,3,2kinghenryvi,1590\nbanishment,3,2kinghenryvi,1590\nfits,3,2kinghenryvi,1590\nthrow,3,2kinghenryvi,1590\nRun,3,2kinghenryvi,1590\nfive,3,2kinghenryvi,1590\nmessage,3,2kinghenryvi,1590\nhateful,3,2kinghenryvi,1590\nsays,3,2kinghenryvi,1590\nknife,3,2kinghenryvi,1590\nhappiness,3,2kinghenryvi,1590\nmorrow,3,2kinghenryvi,1590\nhaughty,3,2kinghenryvi,1590\nbanish'd,3,2kinghenryvi,1590\nwaking,3,2kinghenryvi,1590\nNevils,3,2kinghenryvi,1590\nrelent,3,2kinghenryvi,1590\nAlarums,3,2kinghenryvi,1590\nflint,3,2kinghenryvi,1590\ncrown'd,3,2kinghenryvi,1590\nheavy,3,2kinghenryvi,1590\nduty,3,2kinghenryvi,1590\nthey'll,3,2kinghenryvi,1590\nbereft,3,2kinghenryvi,1590\ncoming,3,2kinghenryvi,1590\ndreams,3,2kinghenryvi,1590\nfaced,3,2kinghenryvi,1590\nnest,3,2kinghenryvi,1590\nfox,3,2kinghenryvi,1590\nminister,3,2kinghenryvi,1590\nfain,3,2kinghenryvi,1590\nmethinks,3,2kinghenryvi,1590\nfit,3,2kinghenryvi,1590\nvow,3,2kinghenryvi,1590\nBeaufort's,3,2kinghenryvi,1590\nthereby,3,2kinghenryvi,1590\nlordship,3,2kinghenryvi,1590\nworship,3,2kinghenryvi,1590\nshows,3,2kinghenryvi,1590\nholiness,3,2kinghenryvi,1590\nwealth,3,2kinghenryvi,1590\ndepart,3,2kinghenryvi,1590\nbetters,3,2kinghenryvi,1590\npatient,3,2kinghenryvi,1590\nwives,3,2kinghenryvi,1590\nEDWARD,3,2kinghenryvi,1590\nburgonet,3,2kinghenryvi,1590\nwatch'd,3,2kinghenryvi,1590\nKentish,3,2kinghenryvi,1590\nWelcome,3,2kinghenryvi,1590\nkite,3,2kinghenryvi,1590\ngentlemen,3,2kinghenryvi,1590\ncup,3,2kinghenryvi,1590\nshort,3,2kinghenryvi,1590\nhollow,3,2kinghenryvi,1590\nWhere's,3,2kinghenryvi,1590\nBlackheath,3,2kinghenryvi,1590\nBrave,3,2kinghenryvi,1590\nabject,3,2kinghenryvi,1590\nseat,3,2kinghenryvi,1590\nalong,3,2kinghenryvi,1590\nPrince,3,2kinghenryvi,1590\nMurderers,3,2kinghenryvi,1590\ncrept,3,2kinghenryvi,1590\nconclude,3,2kinghenryvi,1590\ncost,3,2kinghenryvi,1590\nsound,3,2kinghenryvi,1590\nBelieve,3,2kinghenryvi,1590\nloyalty,3,2kinghenryvi,1590\nheels,3,2kinghenryvi,1590\nwretched,3,2kinghenryvi,1590\nbail,3,2kinghenryvi,1590\nremove,3,2kinghenryvi,1590\nexcellence,3,2kinghenryvi,1590\ninstead,3,2kinghenryvi,1590\nuntil,3,2kinghenryvi,1590\nbrow,3,2kinghenryvi,1590\near,3,2kinghenryvi,1590\nChatham,3,2kinghenryvi,1590\npetty,3,2kinghenryvi,1590\nspirits,3,2kinghenryvi,1590\nParis,3,2kinghenryvi,1590\ndread,3,2kinghenryvi,1590\nabuse,3,2kinghenryvi,1590\nconjurer,3,2kinghenryvi,1590\nhenceforth,3,2kinghenryvi,1590\nMaster's,3,2kinghenryvi,1590\nMan,3,2kinghenryvi,1590\nthither,3,2kinghenryvi,1590\nbeauty,3,2kinghenryvi,1590\npeer,3,2kinghenryvi,1590\nsilver,3,2kinghenryvi,1590\ntry,3,2kinghenryvi,1590\nsilent,3,2kinghenryvi,1590\nprovide,3,2kinghenryvi,1590\nprincely,3,2kinghenryvi,1590\ndark,3,2kinghenryvi,1590\nmonths,3,2kinghenryvi,1590\nslew,3,2kinghenryvi,1590\nusurper,3,2kinghenryvi,1590\nambitious,3,2kinghenryvi,1590\nFalse,3,2kinghenryvi,1590\nFight,3,2kinghenryvi,1590\nforbear,3,2kinghenryvi,1590\nparley,3,2kinghenryvi,1590\nbreathe,3,2kinghenryvi,1590\nintends,3,2kinghenryvi,1590\ntread,3,2kinghenryvi,1590\nTut,3,2kinghenryvi,1590\nfortunes,3,2kinghenryvi,1590\ntold,4,2kinghenryvi,1590\nV,4,2kinghenryvi,1590\nCommons,4,2kinghenryvi,1590\npity,4,2kinghenryvi,1590\nred,4,2kinghenryvi,1590\ngroom,4,2kinghenryvi,1590\ntreasure,4,2kinghenryvi,1590\n'Prentice,4,2kinghenryvi,1590\nvain,4,2kinghenryvi,1590\nviolent,4,2kinghenryvi,1590\ncalls,4,2kinghenryvi,1590\nbefall,4,2kinghenryvi,1590\nrun,4,2kinghenryvi,1590\nWhom,4,2kinghenryvi,1590\nbirth,4,2kinghenryvi,1590\nconscience,4,2kinghenryvi,1590\ngrove,4,2kinghenryvi,1590\nbearing,4,2kinghenryvi,1590\nNot,4,2kinghenryvi,1590\nnoise,4,2kinghenryvi,1590\nblack,4,2kinghenryvi,1590\nsit,4,2kinghenryvi,1590\nOft,4,2kinghenryvi,1590\nnothing,4,2kinghenryvi,1590\npenance,4,2kinghenryvi,1590\n'A,4,2kinghenryvi,1590\nmerry,4,2kinghenryvi,1590\nvirtuous,4,2kinghenryvi,1590\nslaughter,4,2kinghenryvi,1590\ndeceit,4,2kinghenryvi,1590\nSuch,4,2kinghenryvi,1590\nsworn,4,2kinghenryvi,1590\nVAUX,4,2kinghenryvi,1590\nnecks,4,2kinghenryvi,1590\nfaults,4,2kinghenryvi,1590\nServant,4,2kinghenryvi,1590\nwrong,4,2kinghenryvi,1590\nheavens,4,2kinghenryvi,1590\nbrain,4,2kinghenryvi,1590\nguarded,4,2kinghenryvi,1590\nDame,4,2kinghenryvi,1590\nabove,4,2kinghenryvi,1590\nfearful,4,2kinghenryvi,1590\ngrow,4,2kinghenryvi,1590\nancient,4,2kinghenryvi,1590\nwind,4,2kinghenryvi,1590\nparliament,4,2kinghenryvi,1590\nMight,4,2kinghenryvi,1590\nwish,4,2kinghenryvi,1590\nbold,4,2kinghenryvi,1590\nseest,4,2kinghenryvi,1590\naccuse,4,2kinghenryvi,1590\ncoast,4,2kinghenryvi,1590\nBury,4,2kinghenryvi,1590\noffice,4,2kinghenryvi,1590\nparts,4,2kinghenryvi,1590\nspoke,4,2kinghenryvi,1590\ncolour,4,2kinghenryvi,1590\nDo,4,2kinghenryvi,1590\neach,4,2kinghenryvi,1590\nwherefore,4,2kinghenryvi,1590\ndrinking,4,2kinghenryvi,1590\nWhat's,4,2kinghenryvi,1590\ngovern,4,2kinghenryvi,1590\nban,4,2kinghenryvi,1590\nbad,4,2kinghenryvi,1590\nWalter,4,2kinghenryvi,1590\ninnocent,4,2kinghenryvi,1590\nsince,4,2kinghenryvi,1590\narrest,4,2kinghenryvi,1590\nHad,4,2kinghenryvi,1590\nglorious,4,2kinghenryvi,1590\nprove,4,2kinghenryvi,1590\ngave,4,2kinghenryvi,1590\nburn,4,2kinghenryvi,1590\nstruck,4,2kinghenryvi,1590\nprisoners,4,2kinghenryvi,1590\nsuddenly,4,2kinghenryvi,1590\nbadge,4,2kinghenryvi,1590\nused,4,2kinghenryvi,1590\ngrace's,4,2kinghenryvi,1590\nstorm,4,2kinghenryvi,1590\nwretch,4,2kinghenryvi,1590\nde,4,2kinghenryvi,1590\nleft,4,2kinghenryvi,1590\nstool,4,2kinghenryvi,1590\nlegs,4,2kinghenryvi,1590\ndeal,4,2kinghenryvi,1590\ndignity,4,2kinghenryvi,1590\npriest,4,2kinghenryvi,1590\ndoom,4,2kinghenryvi,1590\nbanished,4,2kinghenryvi,1590\nReads,4,2kinghenryvi,1590\nYes,4,2kinghenryvi,1590\nloved,4,2kinghenryvi,1590\nforgot,4,2kinghenryvi,1590\nvalour,4,2kinghenryvi,1590\nhardly,4,2kinghenryvi,1590\nWhitmore,4,2kinghenryvi,1590\nhalf,4,2kinghenryvi,1590\nCall,4,2kinghenryvi,1590\nperform'd,4,2kinghenryvi,1590\nhang,4,2kinghenryvi,1590\nplain,4,2kinghenryvi,1590\nask,4,2kinghenryvi,1590\ndreadful,4,2kinghenryvi,1590\nproper,4,2kinghenryvi,1590\ntyranny,4,2kinghenryvi,1590\nHast,4,2kinghenryvi,1590\nwillingly,4,2kinghenryvi,1590\nchange,4,2kinghenryvi,1590\nwater,4,2kinghenryvi,1590\ncastles,4,2kinghenryvi,1590\nPeace,4,2kinghenryvi,1590\ntender,4,2kinghenryvi,1590\ntraitors,4,2kinghenryvi,1590\npowers,4,2kinghenryvi,1590\nSome,4,2kinghenryvi,1590\nprize,4,2kinghenryvi,1590\nMakes,4,2kinghenryvi,1590\nRoger,4,2kinghenryvi,1590\n'gainst,4,2kinghenryvi,1590\nskin,4,2kinghenryvi,1590\nthere's,4,2kinghenryvi,1590\ncoward,4,2kinghenryvi,1590\nbecause,4,2kinghenryvi,1590\ngreatest,4,2kinghenryvi,1590\nStanley,4,2kinghenryvi,1590\ntrouble,4,2kinghenryvi,1590\ndiadem,4,2kinghenryvi,1590\nTownsman,4,2kinghenryvi,1590\ncommonweal,4,2kinghenryvi,1590\nthird,4,2kinghenryvi,1590\nbeseech,4,2kinghenryvi,1590\nprotect,4,2kinghenryvi,1590\ntorture,4,2kinghenryvi,1590\nCan,4,2kinghenryvi,1590\ndanger,4,2kinghenryvi,1590\nforward,4,2kinghenryvi,1590\nserve,4,2kinghenryvi,1590\nmultitude,4,2kinghenryvi,1590\nearthly,4,2kinghenryvi,1590\nknight,4,2kinghenryvi,1590\nconsent,4,2kinghenryvi,1590\nhundred,4,2kinghenryvi,1590\nwent,4,2kinghenryvi,1590\ngrass,4,2kinghenryvi,1590\nguilty,4,2kinghenryvi,1590\njudge,4,2kinghenryvi,1590\nfortune,4,2kinghenryvi,1590\npleased,4,2kinghenryvi,1590\nSweet,4,2kinghenryvi,1590\nmarried,4,2kinghenryvi,1590\nhour,4,2kinghenryvi,1590\nreproach,4,2kinghenryvi,1590\ngentleman,4,2kinghenryvi,1590\nlay,4,2kinghenryvi,1590\nshore,4,2kinghenryvi,1590\nholy,4,2kinghenryvi,1590\nclear,4,2kinghenryvi,1590\nstreets,4,2kinghenryvi,1590\ncommonwealth,4,2kinghenryvi,1590\nWinchester,4,2kinghenryvi,1590\ngives,4,2kinghenryvi,1590\nprithee,4,2kinghenryvi,1590\nalone,4,2kinghenryvi,1590\ncaptain,4,2kinghenryvi,1590\ninsolence,4,2kinghenryvi,1590\nMine,4,2kinghenryvi,1590\nbattle,4,2kinghenryvi,1590\nthrust,4,2kinghenryvi,1590\ntree,4,2kinghenryvi,1590\nentreat,4,2kinghenryvi,1590\nreturn,4,2kinghenryvi,1590\nSmithfield,4,2kinghenryvi,1590\ngoes,4,2kinghenryvi,1590\nmatch,4,2kinghenryvi,1590\nMarch,4,2kinghenryvi,1590\nlie,4,2kinghenryvi,1590\nmad,4,2kinghenryvi,1590\nspite,4,2kinghenryvi,1590\nstraight,4,2kinghenryvi,1590\nmurder'd,4,2kinghenryvi,1590\ncrafty,4,2kinghenryvi,1590\nFifth,4,2kinghenryvi,1590\nragged,4,2kinghenryvi,1590\nspring,4,2kinghenryvi,1590\ntop,4,2kinghenryvi,1590\nlamb,4,2kinghenryvi,1590\nbehold,4,2kinghenryvi,1590\ndame,4,2kinghenryvi,1590\nneighbour,4,2kinghenryvi,1590\nwouldst,4,2kinghenryvi,1590\ne'er,4,2kinghenryvi,1590\nmeet,5,2kinghenryvi,1590\nc,5,2kinghenryvi,1590\nguilt,5,2kinghenryvi,1590\nwrit,5,2kinghenryvi,1590\nhorse,5,2kinghenryvi,1590\nrob,5,2kinghenryvi,1590\nprisoner,5,2kinghenryvi,1590\ndrum,5,2kinghenryvi,1590\nhonourable,5,2kinghenryvi,1590\ntruth,5,2kinghenryvi,1590\nyourself,5,2kinghenryvi,1590\nsaw,5,2kinghenryvi,1590\nbrother,5,2kinghenryvi,1590\nanother,5,2kinghenryvi,1590\ncame,5,2kinghenryvi,1590\nfurther,5,2kinghenryvi,1590\ntowns,5,2kinghenryvi,1590\nlight,5,2kinghenryvi,1590\ncouncil,5,2kinghenryvi,1590\nworth,5,2kinghenryvi,1590\nsubject,5,2kinghenryvi,1590\nTheir,5,2kinghenryvi,1590\nworse,5,2kinghenryvi,1590\nNormandy,5,2kinghenryvi,1590\ncommon,5,2kinghenryvi,1590\nking's,5,2kinghenryvi,1590\nfeet,5,2kinghenryvi,1590\nmasters,5,2kinghenryvi,1590\nmalice,5,2kinghenryvi,1590\nrude,5,2kinghenryvi,1590\nrule,5,2kinghenryvi,1590\nruler,5,2kinghenryvi,1590\nsceptre,5,2kinghenryvi,1590\nhe's,5,2kinghenryvi,1590\nfoes,5,2kinghenryvi,1590\nAt,5,2kinghenryvi,1590\nkings,5,2kinghenryvi,1590\nOF,5,2kinghenryvi,1590\nkept,5,2kinghenryvi,1590\nmeant,5,2kinghenryvi,1590\nwhole,5,2kinghenryvi,1590\nnobility,5,2kinghenryvi,1590\nSt,5,2kinghenryvi,1590\nLike,5,2kinghenryvi,1590\ncrowns,5,2kinghenryvi,1590\nSoldiers,5,2kinghenryvi,1590\nneeds,5,2kinghenryvi,1590\nUnless,5,2kinghenryvi,1590\ndear,5,2kinghenryvi,1590\nMyself,5,2kinghenryvi,1590\nendure,5,2kinghenryvi,1590\nill,5,2kinghenryvi,1590\nlose,5,2kinghenryvi,1590\nbrought,5,2kinghenryvi,1590\nhard,5,2kinghenryvi,1590\npale,5,2kinghenryvi,1590\nMore,5,2kinghenryvi,1590\nUnder,5,2kinghenryvi,1590\narm,5,2kinghenryvi,1590\npresent,5,2kinghenryvi,1590\npain,5,2kinghenryvi,1590\nmoney,5,2kinghenryvi,1590\nalive,5,2kinghenryvi,1590\nrevenge,5,2kinghenryvi,1590\nAlarum,5,2kinghenryvi,1590\nSirrah,5,2kinghenryvi,1590\nnew,5,2kinghenryvi,1590\nhere's,5,2kinghenryvi,1590\nwitch,5,2kinghenryvi,1590\nShould,5,2kinghenryvi,1590\noften,5,2kinghenryvi,1590\nnay,5,2kinghenryvi,1590\neye,5,2kinghenryvi,1590\nFlourish,5,2kinghenryvi,1590\nJOURDAIN,5,2kinghenryvi,1590\nsirrah,5,2kinghenryvi,1590\nborne,5,2kinghenryvi,1590\nTherefore,5,2kinghenryvi,1590\nmouth,5,2kinghenryvi,1590\nyouth,5,2kinghenryvi,1590\ntowards,5,2kinghenryvi,1590\nmild,5,2kinghenryvi,1590\ntempest,5,2kinghenryvi,1590\nQueen,5,2kinghenryvi,1590\nlabour,5,2kinghenryvi,1590\nneed,5,2kinghenryvi,1590\nfree,5,2kinghenryvi,1590\nproved,5,2kinghenryvi,1590\nwin,5,2kinghenryvi,1590\noft,5,2kinghenryvi,1590\nWe'll,5,2kinghenryvi,1590\nsorrow,5,2kinghenryvi,1590\noath,5,2kinghenryvi,1590\nintend,5,2kinghenryvi,1590\nfound,5,2kinghenryvi,1590\nhappy,5,2kinghenryvi,1590\nhair,5,2kinghenryvi,1590\ncolours,5,2kinghenryvi,1590\ncompany,5,2kinghenryvi,1590\nride,5,2kinghenryvi,1590\nne'er,5,2kinghenryvi,1590\nan't,5,2kinghenryvi,1590\nkiss,5,2kinghenryvi,1590\nfast,5,2kinghenryvi,1590\ntrumpets,5,2kinghenryvi,1590\ntalk,5,2kinghenryvi,1590\naloft,5,2kinghenryvi,1590\ndangerous,5,2kinghenryvi,1590\nAlthough,5,2kinghenryvi,1590\nhearts,5,2kinghenryvi,1590\nswear,5,2kinghenryvi,1590\nuse,5,2kinghenryvi,1590\nTrue,5,2kinghenryvi,1590\nSCALES,5,2kinghenryvi,1590\ncry,5,2kinghenryvi,1590\nprotector's,5,2kinghenryvi,1590\nsouls,5,2kinghenryvi,1590\nwhilst,5,2kinghenryvi,1590\nEdward,5,2kinghenryvi,1590\nprison,5,2kinghenryvi,1590\ncold,5,2kinghenryvi,1590\nsleep,5,2kinghenryvi,1590\nClerk,5,2kinghenryvi,1590\nlips,5,2kinghenryvi,1590\nsimple,5,2kinghenryvi,1590\nwrathful,5,2kinghenryvi,1590\nTake,5,2kinghenryvi,1590\nwithout,5,2kinghenryvi,1590\nspirit,5,2kinghenryvi,1590\nIden,5,2kinghenryvi,1590\npower,5,2kinghenryvi,1590\norder,5,2kinghenryvi,1590\nJOHN,5,2kinghenryvi,1590\nguard,6,2kinghenryvi,1590\nspeech,6,2kinghenryvi,1590\nTell,6,2kinghenryvi,1590\nwhile,6,2kinghenryvi,1590\nbrook,6,2kinghenryvi,1590\nunder,6,2kinghenryvi,1590\nmercy,6,2kinghenryvi,1590\nreign,6,2kinghenryvi,1590\nsold,6,2kinghenryvi,1590\nHenry's,6,2kinghenryvi,1590\npolicy,6,2kinghenryvi,1590\nview,6,2kinghenryvi,1590\nsin,6,2kinghenryvi,1590\nsea,6,2kinghenryvi,1590\nfell,6,2kinghenryvi,1590\nPole,6,2kinghenryvi,1590\nmother,6,2kinghenryvi,1590\nWilliam,6,2kinghenryvi,1590\nMayor,6,2kinghenryvi,1590\nturn,6,2kinghenryvi,1590\nterms,6,2kinghenryvi,1590\nworthy,6,2kinghenryvi,1590\ncease,6,2kinghenryvi,1590\nkneel,6,2kinghenryvi,1590\ndied,6,2kinghenryvi,1590\nmatter,6,2kinghenryvi,1590\nWhile,6,2kinghenryvi,1590\nsign,6,2kinghenryvi,1590\ncanst,6,2kinghenryvi,1590\nmonstrous,6,2kinghenryvi,1590\ngot,6,2kinghenryvi,1590\nNeighbour,6,2kinghenryvi,1590\ndeed,6,2kinghenryvi,1590\ndeep,6,2kinghenryvi,1590\nfavour,6,2kinghenryvi,1590\nSheriff,6,2kinghenryvi,1590\nMaster,6,2kinghenryvi,1590\nloves,6,2kinghenryvi,1590\nhot,6,2kinghenryvi,1590\nspeaks,6,2kinghenryvi,1590\nfield,6,2kinghenryvi,1590\nprince,6,2kinghenryvi,1590\nmighty,6,2kinghenryvi,1590\nopen,6,2kinghenryvi,1590\npoint,6,2kinghenryvi,1590\ncombat,6,2kinghenryvi,1590\nSOUTHWELL,6,2kinghenryvi,1590\nAgainst,6,2kinghenryvi,1590\nLords,6,2kinghenryvi,1590\nfaith,6,2kinghenryvi,1590\nhide,6,2kinghenryvi,1590\nBeadle,6,2kinghenryvi,1590\nknave,6,2kinghenryvi,1590\nknown,6,2kinghenryvi,1590\nissue,6,2kinghenryvi,1590\nblow,6,2kinghenryvi,1590\nonce,6,2kinghenryvi,1590\nWere,6,2kinghenryvi,1590\nsame,6,2kinghenryvi,1590\nclose,6,2kinghenryvi,1590\nsting,6,2kinghenryvi,1590\ngrave,6,2kinghenryvi,1590\nnear,6,2kinghenryvi,1590\nonly,6,2kinghenryvi,1590\nwar,6,2kinghenryvi,1590\narmy,6,2kinghenryvi,1590\nbetween,6,2kinghenryvi,1590\nambition,6,2kinghenryvi,1590\nrage,6,2kinghenryvi,1590\nransom,6,2kinghenryvi,1590\nweapons,6,2kinghenryvi,1590\nwork,6,2kinghenryvi,1590\npalace,6,2kinghenryvi,1590\nUnto,6,2kinghenryvi,1590\nbutcher,6,2kinghenryvi,1590\nappointed,6,2kinghenryvi,1590\nhome,6,2kinghenryvi,1590\ncut,6,2kinghenryvi,1590\nhonest,6,2kinghenryvi,1590\nHerald,6,2kinghenryvi,1590\nstrong,6,2kinghenryvi,1590\nforsooth,6,2kinghenryvi,1590\nlives,6,2kinghenryvi,1590\nperson,6,2kinghenryvi,1590\nMurderer,6,2kinghenryvi,1590\neat,6,2kinghenryvi,1590\nBefore,6,2kinghenryvi,1590\nfled,6,2kinghenryvi,1590\nlate,6,2kinghenryvi,1590\nMay,6,2kinghenryvi,1590\nsuspect,6,2kinghenryvi,1590\ncontent,6,2kinghenryvi,1590\nwitness,6,2kinghenryvi,1590\nHume,6,2kinghenryvi,1590\nDid,6,2kinghenryvi,1590\nUntil,6,2kinghenryvi,1590\nwoman,6,2kinghenryvi,1590\nMICHAEL,6,2kinghenryvi,1590\ntook,7,2kinghenryvi,1590\njoy,7,2kinghenryvi,1590\nfriends,7,2kinghenryvi,1590\nsure,7,2kinghenryvi,1590\nstands,7,2kinghenryvi,1590\nyield,7,2kinghenryvi,1590\nwithin,7,2kinghenryvi,1590\nThese,7,2kinghenryvi,1590\nSTANLEY,7,2kinghenryvi,1590\nblind,7,2kinghenryvi,1590\ntitle,7,2kinghenryvi,1590\nwant,7,2kinghenryvi,1590\nside,7,2kinghenryvi,1590\nforce,7,2kinghenryvi,1590\npass,7,2kinghenryvi,1590\nyourselves,7,2kinghenryvi,1590\nLancaster,7,2kinghenryvi,1590\nRe,7,2kinghenryvi,1590\nair,7,2kinghenryvi,1590\nthat's,7,2kinghenryvi,1590\ntwenty,7,2kinghenryvi,1590\nknee,7,2kinghenryvi,1590\ncity,7,2kinghenryvi,1590\nfoot,7,2kinghenryvi,1590\nenemies,7,2kinghenryvi,1590\nYour,7,2kinghenryvi,1590\nindeed,7,2kinghenryvi,1590\nnone,7,2kinghenryvi,1590\nShe,7,2kinghenryvi,1590\nFrom,7,2kinghenryvi,1590\ngarden,7,2kinghenryvi,1590\nSee,7,2kinghenryvi,1590\nvery,7,2kinghenryvi,1590\nend,7,2kinghenryvi,1590\nAll,7,2kinghenryvi,1590\ndream,7,2kinghenryvi,1590\nknows,7,2kinghenryvi,1590\nwon,7,2kinghenryvi,1590\nfather's,7,2kinghenryvi,1590\nfire,7,2kinghenryvi,1590\nduchess,7,2kinghenryvi,1590\nthing,7,2kinghenryvi,1590\nable,7,2kinghenryvi,1590\npride,7,2kinghenryvi,1590\nwhat's,7,2kinghenryvi,1590\nground,7,2kinghenryvi,1590\nwert,7,2kinghenryvi,1590\nEarl,7,2kinghenryvi,1590\nsent,7,2kinghenryvi,1590\nwrite,7,2kinghenryvi,1590\nreward,7,2kinghenryvi,1590\nGreat,7,2kinghenryvi,1590\nMarry,7,2kinghenryvi,1590\nAnjou,7,2kinghenryvi,1590\nrebels,7,2kinghenryvi,1590\nbrave,8,2kinghenryvi,1590\ndarest,8,2kinghenryvi,1590\ncountry,8,2kinghenryvi,1590\nWill,8,2kinghenryvi,1590\nvillain,8,2kinghenryvi,1590\nUpon,8,2kinghenryvi,1590\ncharge,8,2kinghenryvi,1590\nsons,8,2kinghenryvi,1590\nGive,8,2kinghenryvi,1590\nread,8,2kinghenryvi,1590\ndaughter,8,2kinghenryvi,1590\nclaim,8,2kinghenryvi,1590\nTower,8,2kinghenryvi,1590\nmean,8,2kinghenryvi,1590\nFrench,8,2kinghenryvi,1590\nelse,8,2kinghenryvi,1590\nIII,8,2kinghenryvi,1590\npay,8,2kinghenryvi,1590\nGloucester's,8,2kinghenryvi,1590\nheads,8,2kinghenryvi,1590\nwear,8,2kinghenryvi,1590\nput,8,2kinghenryvi,1590\nYOUNG,8,2kinghenryvi,1590\nrightful,8,2kinghenryvi,1590\nearth,8,2kinghenryvi,1590\nthose,8,2kinghenryvi,1590\nBecause,8,2kinghenryvi,1590\nfoul,8,2kinghenryvi,1590\nforth,8,2kinghenryvi,1590\nPetitioner,8,2kinghenryvi,1590\nAre,8,2kinghenryvi,1590\nright,8,2kinghenryvi,1590\nfar,8,2kinghenryvi,1590\nquickly,8,2kinghenryvi,1590\nPeter,8,2kinghenryvi,1590\nSuffolk's,8,2kinghenryvi,1590\nhigh,8,2kinghenryvi,1590\nBeaufort,8,2kinghenryvi,1590\nRichard,8,2kinghenryvi,1590\npresently,8,2kinghenryvi,1590\nheard,8,2kinghenryvi,1590\nangry,8,2kinghenryvi,1590\nmiracle,8,2kinghenryvi,1590\nword,8,2kinghenryvi,1590\ncomfort,8,2kinghenryvi,1590\nhold,8,2kinghenryvi,1590\npardon,8,2kinghenryvi,1590\nNell,8,2kinghenryvi,1590\nGentleman,8,2kinghenryvi,1590\nmakes,8,2kinghenryvi,1590\nliege,8,2kinghenryvi,1590\nlaid,8,2kinghenryvi,1590\nregent,8,2kinghenryvi,1590\nmight,8,2kinghenryvi,1590\nAlas,9,2kinghenryvi,1590\nhighness',9,2kinghenryvi,1590\nhell,9,2kinghenryvi,1590\nevery,9,2kinghenryvi,1590\ndrink,9,2kinghenryvi,1590\nenough,9,2kinghenryvi,1590\nWILLIAM,9,2kinghenryvi,1590\nfellow,9,2kinghenryvi,1590\nborn,9,2kinghenryvi,1590\nafter,9,2kinghenryvi,1590\nSound,9,2kinghenryvi,1590\nabout,9,2kinghenryvi,1590\nothers,9,2kinghenryvi,1590\nrest,9,2kinghenryvi,1590\nstay,9,2kinghenryvi,1590\nII,9,2kinghenryvi,1590\nbed,9,2kinghenryvi,1590\nbest,9,2kinghenryvi,1590\ngold,9,2kinghenryvi,1590\npeople,9,2kinghenryvi,1590\nfarewell,9,2kinghenryvi,1590\nthyself,9,2kinghenryvi,1590\npart,9,2kinghenryvi,1590\nthough,9,2kinghenryvi,1590\nMadam,9,2kinghenryvi,1590\npeers,9,2kinghenryvi,1590\ngentle,9,2kinghenryvi,1590\nbears,9,2kinghenryvi,1590\nthings,9,2kinghenryvi,1590\nsoldiers,9,2kinghenryvi,1590\nbloody,9,2kinghenryvi,1590\nThus,9,2kinghenryvi,1590\nway,9,2kinghenryvi,1590\nEven,9,2kinghenryvi,1590\nfair,9,2kinghenryvi,1590\nfind,9,2kinghenryvi,1590\nreason,9,2kinghenryvi,1590\nwilt,9,2kinghenryvi,1590\nseek,9,2kinghenryvi,1590\nsweet,9,2kinghenryvi,1590\nhither,9,2kinghenryvi,1590\nlast,9,2kinghenryvi,1590\nWhen,9,2kinghenryvi,1590\ndare,9,2kinghenryvi,1590\ncommand,9,2kinghenryvi,1590\nkill,9,2kinghenryvi,1590\nlady,9,2kinghenryvi,1590\ntreason,10,2kinghenryvi,1590\nWhose,10,2kinghenryvi,1590\ngracious,10,2kinghenryvi,1590\nsir,10,2kinghenryvi,1590\nbetter,10,2kinghenryvi,1590\ncause,10,2kinghenryvi,1590\nbring,10,2kinghenryvi,1590\nOf,10,2kinghenryvi,1590\nmeans,10,2kinghenryvi,1590\npleasure,10,2kinghenryvi,1590\nenter,10,2kinghenryvi,1590\nbid,10,2kinghenryvi,1590\ncurse,10,2kinghenryvi,1590\nSpirit,10,2kinghenryvi,1590\nEdmund,10,2kinghenryvi,1590\nage,10,2kinghenryvi,1590\nJack,10,2kinghenryvi,1590\nEleanor,10,2kinghenryvi,1590\nHORNER,10,2kinghenryvi,1590\nslain,10,2kinghenryvi,1590\nSTAFFORD,10,2kinghenryvi,1590\nere,10,2kinghenryvi,1590\nLook,10,2kinghenryvi,1590\ncomes,10,2kinghenryvi,1590\nlet's,10,2kinghenryvi,1590\nget,10,2kinghenryvi,1590\nbreak,10,2kinghenryvi,1590\nsave,10,2kinghenryvi,1590\nnext,10,2kinghenryvi,1590\nnews,10,2kinghenryvi,1590\nTill,10,2kinghenryvi,1590\nfall,10,2kinghenryvi,1590\nold,10,2kinghenryvi,1590\nbase,10,2kinghenryvi,1590\nwe'll,10,2kinghenryvi,1590\nback,10,2kinghenryvi,1590\nseen,10,2kinghenryvi,1590\nsend,10,2kinghenryvi,1590\ntogether,10,2kinghenryvi,1590\nmadam,10,2kinghenryvi,1590\nland,10,2kinghenryvi,1590\nKent,10,2kinghenryvi,1590\nto,522,2kinghenryvi,1590\nanswer,11,2kinghenryvi,1590\nWHITMORE,11,2kinghenryvi,1590\ndays,11,2kinghenryvi,1590\npeace,11,2kinghenryvi,1590\nhelp,11,2kinghenryvi,1590\nWife,11,2kinghenryvi,1590\ncare,11,2kinghenryvi,1590\nhighness,11,2kinghenryvi,1590\nagainst,11,2kinghenryvi,1590\nWas,11,2kinghenryvi,1590\nboth,11,2kinghenryvi,1590\ncommons,11,2kinghenryvi,1590\nGo,11,2kinghenryvi,1590\nRICHARD,11,2kinghenryvi,1590\nWhich,11,2kinghenryvi,1590\ngrief,11,2kinghenryvi,1590\nsaid,11,2kinghenryvi,1590\nGod's,11,2kinghenryvi,1590\nBOLINGBROKE,11,2kinghenryvi,1590\nMortimer,11,2kinghenryvi,1590\nshow,11,2kinghenryvi,1590\nThan,11,2kinghenryvi,1590\nHave,11,2kinghenryvi,1590\nIreland,11,2kinghenryvi,1590\nmany,11,2kinghenryvi,1590\nthree,11,2kinghenryvi,1590\neven,11,2kinghenryvi,1590\never,11,2kinghenryvi,1590\ngiven,11,2kinghenryvi,1590\npresence,11,2kinghenryvi,1590\nwhom,11,2kinghenryvi,1590\nthoughts,11,2kinghenryvi,1590\nheir,12,2kinghenryvi,1590\nroyal,12,2kinghenryvi,1590\nSMITH,12,2kinghenryvi,1590\nset,12,2kinghenryvi,1590\nhence,12,2kinghenryvi,1590\nSecond,12,2kinghenryvi,1590\nHath,12,2kinghenryvi,1590\nthrough,12,2kinghenryvi,1590\nALL,12,2kinghenryvi,1590\nstaff,12,2kinghenryvi,1590\nMaine,12,2kinghenryvi,1590\nMessenger,12,2kinghenryvi,1590\nWhere,12,2kinghenryvi,1590\nHUMPHREY,12,2kinghenryvi,1590\nshalt,12,2kinghenryvi,1590\nten,12,2kinghenryvi,1590\nother,12,2kinghenryvi,1590\ntimes,13,2kinghenryvi,1590\ntears,13,2kinghenryvi,1590\nhear,13,2kinghenryvi,1590\nBEVIS,13,2kinghenryvi,1590\nIV,13,2kinghenryvi,1590\ngone,13,2kinghenryvi,1590\ndost,13,2kinghenryvi,1590\nlook,13,2kinghenryvi,1590\nhands,13,2kinghenryvi,1590\nmost,13,2kinghenryvi,1590\nkeep,13,2kinghenryvi,1590\nIDEN,13,2kinghenryvi,1590\nAlban's,13,2kinghenryvi,1590\nnor,13,2kinghenryvi,1590\nstand,13,2kinghenryvi,1590\nwhy,13,2kinghenryvi,1590\ncourt,13,2kinghenryvi,1590\nSay,13,2kinghenryvi,1590\nSIR,13,2kinghenryvi,1590\ntill,13,2kinghenryvi,1590\npoor,13,2kinghenryvi,1590\nCaptain,13,2kinghenryvi,1590\ntrue,13,2kinghenryvi,1590\nHOLLAND,13,2kinghenryvi,1590\ntwo,13,2kinghenryvi,1590\nfollow,13,2kinghenryvi,1590\nenemy,13,2kinghenryvi,1590\nMargaret,14,2kinghenryvi,1590\nHumphrey's,14,2kinghenryvi,1590\npray,14,2kinghenryvi,1590\nNor,14,2kinghenryvi,1590\nHUME,14,2kinghenryvi,1590\ncardinal,14,2kinghenryvi,1590\nwhose,14,2kinghenryvi,1590\nClifford,14,2kinghenryvi,1590\nnoble,14,2kinghenryvi,1590\nplace,14,2kinghenryvi,1590\nSir,14,2kinghenryvi,1590\nstate,14,2kinghenryvi,1590\nstill,14,2kinghenryvi,1590\nWell,14,2kinghenryvi,1590\nface,14,2kinghenryvi,1590\nShall,14,2kinghenryvi,1590\nplease,14,2kinghenryvi,1590\nuncle,14,2kinghenryvi,1590\nthank,14,2kinghenryvi,1590\nwife,14,2kinghenryvi,1590\nSalisbury,14,2kinghenryvi,1590\nthought,15,2kinghenryvi,1590\nfull,15,2kinghenryvi,1590\nbody,15,2kinghenryvi,1590\nPETER,15,2kinghenryvi,1590\nproud,15,2kinghenryvi,1590\nSaint,15,2kinghenryvi,1590\nYou,15,2kinghenryvi,1590\narms,15,2kinghenryvi,1590\nlaw,15,2kinghenryvi,1590\nthus,15,2kinghenryvi,1590\ncannot,15,2kinghenryvi,1590\ntoo,15,2kinghenryvi,1590\nNay,16,2kinghenryvi,1590\nmuch,16,2kinghenryvi,1590\nwhich,16,2kinghenryvi,1590\ncall,16,2kinghenryvi,1590\nhonour,16,2kinghenryvi,1590\nheaven,16,2kinghenryvi,1590\ntell,16,2kinghenryvi,1590\ntongue,16,2kinghenryvi,1590\nrealm,16,2kinghenryvi,1590\nlost,16,2kinghenryvi,1590\nYet,16,2kinghenryvi,1590\ninto,16,2kinghenryvi,1590\nmind,16,2kinghenryvi,1590\nover,16,2kinghenryvi,1590\ncould,16,2kinghenryvi,1590\nwho,16,2kinghenryvi,1590\noff,16,2kinghenryvi,1590\nown,16,2kinghenryvi,1590\nfly,16,2kinghenryvi,1590\nhope,16,2kinghenryvi,1590\nthousand,16,2kinghenryvi,1590\nshame,16,2kinghenryvi,1590\nJohn,17,2kinghenryvi,1590\nsight,17,2kinghenryvi,1590\nsome,17,2kinghenryvi,1590\nshe,17,2kinghenryvi,1590\nfalse,17,2kinghenryvi,1590\nBe,17,2kinghenryvi,1590\nThou,17,2kinghenryvi,1590\nEngland's,17,2kinghenryvi,1590\n'Tis,17,2kinghenryvi,1590\nfirst,17,2kinghenryvi,1590\nThy,17,2kinghenryvi,1590\nhimself,17,2kinghenryvi,1590\nworld,18,2kinghenryvi,1590\nWho,18,2kinghenryvi,1590\nfight,18,2kinghenryvi,1590\nWe,18,2kinghenryvi,1590\nlove,18,2kinghenryvi,1590\nSAY,18,2kinghenryvi,1590\nout,18,2kinghenryvi,1590\ntraitor,18,2kinghenryvi,1590\nAway,18,2kinghenryvi,1590\nsoul,19,2kinghenryvi,1590\nHere,19,2kinghenryvi,1590\nAh,19,2kinghenryvi,1590\nnight,19,2kinghenryvi,1590\nlong,19,2kinghenryvi,1590\nany,19,2kinghenryvi,1590\nye,19,2kinghenryvi,1590\nThey,19,2kinghenryvi,1590\nLondon,19,2kinghenryvi,1590\nfather,19,2kinghenryvi,1590\nson,20,2kinghenryvi,1590\nNo,20,2kinghenryvi,1590\ndoth,20,2kinghenryvi,1590\nbear,20,2kinghenryvi,1590\nThen,20,2kinghenryvi,1590\nthine,20,2kinghenryvi,1590\nSIMPCOX,20,2kinghenryvi,1590\ntime,20,2kinghenryvi,1590\nLet,20,2kinghenryvi,1590\neyes,20,2kinghenryvi,1590\nhouse,20,2kinghenryvi,1590\nBuckingham,21,2kinghenryvi,1590\nbeen,21,2kinghenryvi,1590\ndone,21,2kinghenryvi,1590\nspeak,21,2kinghenryvi,1590\nKing,21,2kinghenryvi,1590\nwhere,21,2kinghenryvi,1590\nagain,21,2kinghenryvi,1590\nthink,21,2kinghenryvi,1590\n',22,2kinghenryvi,1590\nmust,22,2kinghenryvi,1590\nHe,22,2kinghenryvi,1590\nIt,22,2kinghenryvi,1590\ndown,22,2kinghenryvi,1590\nmyself,22,2kinghenryvi,1590\nbefore,22,2kinghenryvi,1590\nqueen,22,2kinghenryvi,1590\nsovereign,22,2kinghenryvi,1590\nbeing,22,2kinghenryvi,1590\nof,534,2kinghenryvi,1590\nsword,23,2kinghenryvi,1590\nHis,23,2kinghenryvi,1590\ntherefore,23,2kinghenryvi,1590\nprotector,23,2kinghenryvi,1590\nIs,23,2kinghenryvi,1590\nblood,23,2kinghenryvi,1590\ndead,23,2kinghenryvi,1590\nFirst,23,2kinghenryvi,1590\nIn,24,2kinghenryvi,1590\nknow,24,2kinghenryvi,1590\nhand,24,2kinghenryvi,1590\nACT,24,2kinghenryvi,1590\nSOMERSET,24,2kinghenryvi,1590\ngreat,24,2kinghenryvi,1590\nmaster,24,2kinghenryvi,1590\nleave,24,2kinghenryvi,1590\nNow,25,2kinghenryvi,1590\nname,25,2kinghenryvi,1590\nBy,25,2kinghenryvi,1590\ngive,25,2kinghenryvi,1590\nhast,25,2kinghenryvi,1590\nmen,25,2kinghenryvi,1590\nlive,25,2kinghenryvi,1590\nSCENE,25,2kinghenryvi,1590\nwords,26,2kinghenryvi,1590\nAy,26,2kinghenryvi,1590\nyet,26,2kinghenryvi,1590\nmajesty,26,2kinghenryvi,1590\nThis,26,2kinghenryvi,1590\ncrown,26,2kinghenryvi,1590\nDICK,27,2kinghenryvi,1590\nGloucester,27,2kinghenryvi,1590\nfear,27,2kinghenryvi,1590\nthere,27,2kinghenryvi,1590\n'tis,27,2kinghenryvi,1590\nCade,27,2kinghenryvi,1590\nart,27,2kinghenryvi,1590\nduke,27,2kinghenryvi,1590\nAside,28,2kinghenryvi,1590\nHow,28,2kinghenryvi,1590\nSomerset,28,2kinghenryvi,1590\ndie,28,2kinghenryvi,1590\nCome,29,2kinghenryvi,1590\nOr,29,2kinghenryvi,1590\nWhy,30,2kinghenryvi,1590\nhow,30,2kinghenryvi,1590\nmade,30,2kinghenryvi,1590\nlords,30,2kinghenryvi,1590\nDUCHESS,30,2kinghenryvi,1590\nEngland,30,2kinghenryvi,1590\nSALISBURY,30,2kinghenryvi,1590\nI,542,2kinghenryvi,1590\nWarwick,31,2kinghenryvi,1590\ngrace,31,2kinghenryvi,1590\ntake,31,2kinghenryvi,1590\nExit,31,2kinghenryvi,1590\nthen,32,2kinghenryvi,1590\nIf,32,2kinghenryvi,1590\nCLIFFORD,32,2kinghenryvi,1590\nHumphrey,33,2kinghenryvi,1590\nmay,33,2kinghenryvi,1590\ndid,33,2kinghenryvi,1590\nlife,34,2kinghenryvi,1590\nsuch,34,2kinghenryvi,1590\nSo,34,2kinghenryvi,1590\nWith,35,2kinghenryvi,1590\nmine,35,2kinghenryvi,1590\nhad,36,2kinghenryvi,1590\nday,36,2kinghenryvi,1590\nA,37,2kinghenryvi,1590\nsay,37,2kinghenryvi,1590\nBUCKINGHAM,37,2kinghenryvi,1590\none,37,2kinghenryvi,1590\nsee,38,2kinghenryvi,1590\nwould,38,2kinghenryvi,1590\nwhen,38,2kinghenryvi,1590\nhere,39,2kinghenryvi,1590\nhead,39,2kinghenryvi,1590\nthan,39,2kinghenryvi,1590\ncome,39,2kinghenryvi,1590\naway,40,2kinghenryvi,1590\nnever,40,2kinghenryvi,1590\nExeunt,40,2kinghenryvi,1590\nheart,40,2kinghenryvi,1590\nFrance,41,2kinghenryvi,1590\nI'll,41,2kinghenryvi,1590\nHenry,41,2kinghenryvi,1590\nupon,42,2kinghenryvi,1590\nup,43,2kinghenryvi,1590\nO,44,2kinghenryvi,1590\nus,44,2kinghenryvi,1590\nwell,44,2kinghenryvi,1590\nunto,44,2kinghenryvi,1590\nCARDINAL,45,2kinghenryvi,1590\nwere,45,2kinghenryvi,1590\ngo,46,2kinghenryvi,1590\nWARWICK,47,2kinghenryvi,1590\nGod,48,2kinghenryvi,1590\nAs,49,2kinghenryvi,1590\nlike,50,2kinghenryvi,1590\nan,50,2kinghenryvi,1590\nor,50,2kinghenryvi,1590\nhath,50,2kinghenryvi,1590\ncan,51,2kinghenryvi,1590\nshould,51,2kinghenryvi,1590\nLord,51,2kinghenryvi,1590\nlet,51,2kinghenryvi,1590\nmore,52,2kinghenryvi,1590\nmake,52,2kinghenryvi,1590\nman,53,2kinghenryvi,1590\nthey,54,2kinghenryvi,1590\ndeath,56,2kinghenryvi,1590\nMy,56,2kinghenryvi,1590\nSuffolk,56,2kinghenryvi,1590\nWhat,57,2kinghenryvi,1590\nin,313,2kinghenryvi,1590\nif,59,2kinghenryvi,1590\nnow,59,2kinghenryvi,1590\nFor,60,2kinghenryvi,1590\nher,60,2kinghenryvi,1590\ngood,60,2kinghenryvi,1590\nwhat,60,2kinghenryvi,1590\nam,61,2kinghenryvi,1590\nthese,62,2kinghenryvi,1590\ntheir,64,2kinghenryvi,1590\nYork,65,2kinghenryvi,1590\nat,66,2kinghenryvi,1590\nDuke,67,2kinghenryvi,1590\nwas,69,2kinghenryvi,1590\nour,69,2kinghenryvi,1590\nYORK,70,2kinghenryvi,1590\nCADE,70,2kinghenryvi,1590\nThat,72,2kinghenryvi,1590\nthe,841,2kinghenryvi,1590\nEnter,74,2kinghenryvi,1590\ndo,76,2kinghenryvi,1590\nQUEEN,76,2kinghenryvi,1590\nAnd,333,2kinghenryvi,1590\nTo,79,2kinghenryvi,1590\nare,80,2kinghenryvi,1590\nMARGARET,80,2kinghenryvi,1590\nno,81,2kinghenryvi,1590\non,82,2kinghenryvi,1590\nSUFFOLK,83,2kinghenryvi,1590\nwe,84,2kinghenryvi,1590\nBut,84,2kinghenryvi,1590\nGLOUCESTER,87,2kinghenryvi,1590\nthem,88,2kinghenryvi,1590\nfrom,88,2kinghenryvi,1590\nby,92,2kinghenryvi,1590\nbut,94,2kinghenryvi,1590\na,350,2kinghenryvi,1590\nlord,96,2kinghenryvi,1590\nking,98,2kinghenryvi,1590\nso,99,2kinghenryvi,1590\nmy,358,2kinghenryvi,1590\nand,616,2kinghenryvi,1590\nThe,108,2kinghenryvi,1590\nshall,119,2kinghenryvi,1590\nVI,121,2kinghenryvi,1590\nHENRY,121,2kinghenryvi,1590\nKING,122,2kinghenryvi,1590\nthee,122,2kinghenryvi,1590\nas,127,2kinghenryvi,1590\nwill,129,2kinghenryvi,1590\nall,135,2kinghenryvi,1590\nhe,151,2kinghenryvi,1590\nhim,152,2kinghenryvi,1590\nit,152,2kinghenryvi,1590\nthis,157,2kinghenryvi,1590\nhave,157,2kinghenryvi,1590\nyour,160,2kinghenryvi,1590\nthy,169,2kinghenryvi,1590\nyou,180,2kinghenryvi,1590\nthou,187,2kinghenryvi,1590\nnot,199,2kinghenryvi,1590\nfor,202,2kinghenryvi,1590\nme,206,2kinghenryvi,1590\nthat,214,2kinghenryvi,1590\nis,222,2kinghenryvi,1590\nwith,228,2kinghenryvi,1590\nbe,237,2kinghenryvi,1590\nhis,238,2kinghenryvi,1590\ndimm'd,1,3kinghenryvi,1590\nwishful,1,3kinghenryvi,1590\nholding,1,3kinghenryvi,1590\nchampions,1,3kinghenryvi,1590\ndischarged,1,3kinghenryvi,1590\nkingdom's,1,3kinghenryvi,1590\nanswered,1,3kinghenryvi,1590\n'all,1,3kinghenryvi,1590\ndegenerate,1,3kinghenryvi,1590\nevent,1,3kinghenryvi,1590\npersecutor,1,3kinghenryvi,1590\nprancing,1,3kinghenryvi,1590\nshepherd's,1,3kinghenryvi,1590\nErroneous,1,3kinghenryvi,1590\ntroubled,1,3kinghenryvi,1590\nregard,1,3kinghenryvi,1590\nlusty,1,3kinghenryvi,1590\ninstruments,1,3kinghenryvi,1590\nclouded,1,3kinghenryvi,1590\ntomb,1,3kinghenryvi,1590\ngauntlet,1,3kinghenryvi,1590\nAdjudged,1,3kinghenryvi,1590\nrelief,1,3kinghenryvi,1590\nmeek,1,3kinghenryvi,1590\nfinger'd,1,3kinghenryvi,1590\nmeed,1,3kinghenryvi,1590\nProve,1,3kinghenryvi,1590\nsuffer,1,3kinghenryvi,1590\nl,1,3kinghenryvi,1590\nsmiles,1,3kinghenryvi,1590\nsafeguard,1,3kinghenryvi,1590\nProud,1,3kinghenryvi,1590\ndrop,1,3kinghenryvi,1590\nafar,1,3kinghenryvi,1590\ndarest,1,3kinghenryvi,1590\ncureless,1,3kinghenryvi,1590\ninterchange,1,3kinghenryvi,1590\nAmazonian,1,3kinghenryvi,1590\nstrengthening,1,3kinghenryvi,1590\nDuchess,1,3kinghenryvi,1590\nderived,1,3kinghenryvi,1590\nfathers,1,3kinghenryvi,1590\nmotion,1,3kinghenryvi,1590\ncrook'd,1,3kinghenryvi,1590\napprehend,1,3kinghenryvi,1590\ncheer'd,1,3kinghenryvi,1590\ntops,1,3kinghenryvi,1590\nyielding,1,3kinghenryvi,1590\nassay,1,3kinghenryvi,1590\nresist,1,3kinghenryvi,1590\ndouble,1,3kinghenryvi,1590\nquenchless,1,3kinghenryvi,1590\nbereaved,1,3kinghenryvi,1590\ninfamy,1,3kinghenryvi,1590\nComfort,1,3kinghenryvi,1590\nmistress,1,3kinghenryvi,1590\nforswear,1,3kinghenryvi,1590\ntremble,1,3kinghenryvi,1590\nviands,1,3kinghenryvi,1590\nweary,1,3kinghenryvi,1590\nwears,1,3kinghenryvi,1590\nprophet,1,3kinghenryvi,1590\nTroy's,1,3kinghenryvi,1590\nsteeped,1,3kinghenryvi,1590\ntreasure,1,3kinghenryvi,1590\nquietness,1,3kinghenryvi,1590\nseptentrion,1,3kinghenryvi,1590\nstately,1,3kinghenryvi,1590\nfuel,1,3kinghenryvi,1590\ntyrant's,1,3kinghenryvi,1590\nalike,1,3kinghenryvi,1590\ndepose,1,3kinghenryvi,1590\ndine,1,3kinghenryvi,1590\nBelgia,1,3kinghenryvi,1590\nsuspicious,1,3kinghenryvi,1590\nunhoped,1,3kinghenryvi,1590\nSprings,1,3kinghenryvi,1590\nrigour,1,3kinghenryvi,1590\nRavenspurgh,1,3kinghenryvi,1590\nlooker,1,3kinghenryvi,1590\nzeal,1,3kinghenryvi,1590\nborder,1,3kinghenryvi,1590\npurge,1,3kinghenryvi,1590\nlabours,1,3kinghenryvi,1590\nhoarding,1,3kinghenryvi,1590\nsupport,1,3kinghenryvi,1590\noffended,1,3kinghenryvi,1590\noutrun,1,3kinghenryvi,1590\nassured,1,3kinghenryvi,1590\nrob,1,3kinghenryvi,1590\ndoubtful,1,3kinghenryvi,1590\nscene,1,3kinghenryvi,1590\nwestern,1,3kinghenryvi,1590\nNorthumberland's,1,3kinghenryvi,1590\nassistance,1,3kinghenryvi,1590\nmuse,1,3kinghenryvi,1590\nundoubted,1,3kinghenryvi,1590\nvillain,1,3kinghenryvi,1590\nbutchers,1,3kinghenryvi,1590\ncavilling,1,3kinghenryvi,1590\ndevouring,1,3kinghenryvi,1590\njot,1,3kinghenryvi,1590\nStafford's,1,3kinghenryvi,1590\nspeedy,1,3kinghenryvi,1590\nStab,1,3kinghenryvi,1590\nhelps,1,3kinghenryvi,1590\ndespised,1,3kinghenryvi,1590\ntrull,1,3kinghenryvi,1590\nswiftly,1,3kinghenryvi,1590\nbewitch,1,3kinghenryvi,1590\nmess,1,3kinghenryvi,1590\nMeasure,1,3kinghenryvi,1590\nexceeds,1,3kinghenryvi,1590\nyounger,1,3kinghenryvi,1590\nwreaths,1,3kinghenryvi,1590\n'Alas,1,3kinghenryvi,1590\nwrap,1,3kinghenryvi,1590\njoins,1,3kinghenryvi,1590\npainted,1,3kinghenryvi,1590\npilot's,1,3kinghenryvi,1590\nWhereby,1,3kinghenryvi,1590\nhers,1,3kinghenryvi,1590\nenvironed,1,3kinghenryvi,1590\ntrunk,1,3kinghenryvi,1590\nproceedings,1,3kinghenryvi,1590\nwherewith,1,3kinghenryvi,1590\nIron,1,3kinghenryvi,1590\ndecay,1,3kinghenryvi,1590\nbraver,1,3kinghenryvi,1590\nWhereat,1,3kinghenryvi,1590\nsecurity,1,3kinghenryvi,1590\ngrin,1,3kinghenryvi,1590\ntoil,1,3kinghenryvi,1590\ncomest,1,3kinghenryvi,1590\npreferr'st,1,3kinghenryvi,1590\nhearten,1,3kinghenryvi,1590\nBeshrew,1,3kinghenryvi,1590\nbrood,1,3kinghenryvi,1590\ninstrument,1,3kinghenryvi,1590\noffer,1,3kinghenryvi,1590\nFar,1,3kinghenryvi,1590\nrid,1,3kinghenryvi,1590\nnaked,1,3kinghenryvi,1590\nAmazon,1,3kinghenryvi,1590\npitied'st,1,3kinghenryvi,1590\nsummer's,1,3kinghenryvi,1590\nappear,1,3kinghenryvi,1590\nwield,1,3kinghenryvi,1590\nwittingly,1,3kinghenryvi,1590\nflow,1,3kinghenryvi,1590\nlick,1,3kinghenryvi,1590\nalthough,1,3kinghenryvi,1590\nAgamemnon's,1,3kinghenryvi,1590\nshelter,1,3kinghenryvi,1590\npies,1,3kinghenryvi,1590\nthroat,1,3kinghenryvi,1590\nunderneath,1,3kinghenryvi,1590\ncrookback,1,3kinghenryvi,1590\ndreaming,1,3kinghenryvi,1590\npress,1,3kinghenryvi,1590\npatron,1,3kinghenryvi,1590\nJephthah's,1,3kinghenryvi,1590\niron,1,3kinghenryvi,1590\nsore,1,3kinghenryvi,1590\nmalapert,1,3kinghenryvi,1590\nheedful,1,3kinghenryvi,1590\nbridle,1,3kinghenryvi,1590\nthirst,1,3kinghenryvi,1590\norphans,1,3kinghenryvi,1590\nsubsidies,1,3kinghenryvi,1590\ninsult,1,3kinghenryvi,1590\nearls,1,3kinghenryvi,1590\nthicket,1,3kinghenryvi,1590\nunconstant,1,3kinghenryvi,1590\ncurious,1,3kinghenryvi,1590\nPERSONAE,1,3kinghenryvi,1590\nwither,1,3kinghenryvi,1590\nclimb'd,1,3kinghenryvi,1590\nrescued,1,3kinghenryvi,1590\nspare,1,3kinghenryvi,1590\nsaved,1,3kinghenryvi,1590\ncouched,1,3kinghenryvi,1590\nlightning,1,3kinghenryvi,1590\ncast,1,3kinghenryvi,1590\ncrutch,1,3kinghenryvi,1590\nsoothe,1,3kinghenryvi,1590\nargued,1,3kinghenryvi,1590\nsaves,1,3kinghenryvi,1590\nunlikely,1,3kinghenryvi,1590\ncould'st,1,3kinghenryvi,1590\nutter'd,1,3kinghenryvi,1590\nattempt,1,3kinghenryvi,1590\nautumn's,1,3kinghenryvi,1590\npleasing,1,3kinghenryvi,1590\nTrimm'd,1,3kinghenryvi,1590\ntrow'st,1,3kinghenryvi,1590\nstirring,1,3kinghenryvi,1590\nirks,1,3kinghenryvi,1590\ntiger's,1,3kinghenryvi,1590\ndelivered,1,3kinghenryvi,1590\nadvantages,1,3kinghenryvi,1590\nVIII,1,3kinghenryvi,1590\nchid,1,3kinghenryvi,1590\nbending,1,3kinghenryvi,1590\ngraces,1,3kinghenryvi,1590\nire,1,3kinghenryvi,1590\ngrasp'd,1,3kinghenryvi,1590\norphan's,1,3kinghenryvi,1590\nplies,1,3kinghenryvi,1590\nmisleading,1,3kinghenryvi,1590\nAfter,1,3kinghenryvi,1590\ncamp,1,3kinghenryvi,1590\nsadly,1,3kinghenryvi,1590\nspies,1,3kinghenryvi,1590\nreconciled,1,3kinghenryvi,1590\n'What,1,3kinghenryvi,1590\nsole,1,3kinghenryvi,1590\nsold,1,3kinghenryvi,1590\nwrung,1,3kinghenryvi,1590\nYoung,1,3kinghenryvi,1590\nsunders,1,3kinghenryvi,1590\nusurp'st,1,3kinghenryvi,1590\nsat,1,3kinghenryvi,1590\nentrails,1,3kinghenryvi,1590\ndance,1,3kinghenryvi,1590\nAccords,1,3kinghenryvi,1590\nlink,1,3kinghenryvi,1590\ngrows,1,3kinghenryvi,1590\nhour's,1,3kinghenryvi,1590\nbroach'd,1,3kinghenryvi,1590\nriddles,1,3kinghenryvi,1590\ncall'st,1,3kinghenryvi,1590\nCold,1,3kinghenryvi,1590\ndisprove,1,3kinghenryvi,1590\nshrouds,1,3kinghenryvi,1590\ncorner,1,3kinghenryvi,1590\nPlains,1,3kinghenryvi,1590\nprop,1,3kinghenryvi,1590\nlime,1,3kinghenryvi,1590\ncrying,1,3kinghenryvi,1590\nincensed,1,3kinghenryvi,1590\nbroker,1,3kinghenryvi,1590\nKeep,1,3kinghenryvi,1590\nbrothers',1,3kinghenryvi,1590\nfactious,1,3kinghenryvi,1590\nobdurate,1,3kinghenryvi,1590\nplight,1,3kinghenryvi,1590\novercome,1,3kinghenryvi,1590\nposts,1,3kinghenryvi,1590\nMuch,1,3kinghenryvi,1590\nheat,1,3kinghenryvi,1590\nconcerns,1,3kinghenryvi,1590\nfaciant,1,3kinghenryvi,1590\nForward,1,3kinghenryvi,1590\npossessed,1,3kinghenryvi,1590\nVictorious,1,3kinghenryvi,1590\nheal,1,3kinghenryvi,1590\nroar'd,1,3kinghenryvi,1590\nbudge,1,3kinghenryvi,1590\nWoe,1,3kinghenryvi,1590\ndrew,1,3kinghenryvi,1590\nallays,1,3kinghenryvi,1590\nbabes,1,3kinghenryvi,1590\ndemands,1,3kinghenryvi,1590\nsoonest,1,3kinghenryvi,1590\nDunsmore,1,3kinghenryvi,1590\nhanging,1,3kinghenryvi,1590\nInferreth,1,3kinghenryvi,1590\nfalcon's,1,3kinghenryvi,1590\ncongealed,1,3kinghenryvi,1590\ninfringed,1,3kinghenryvi,1590\nbeseem,1,3kinghenryvi,1590\nlikeness,1,3kinghenryvi,1590\nwrong'st,1,3kinghenryvi,1590\ndesperately,1,3kinghenryvi,1590\nlaund,1,3kinghenryvi,1590\nguerdon'd,1,3kinghenryvi,1590\nfools,1,3kinghenryvi,1590\nbrotherly,1,3kinghenryvi,1590\nveins,1,3kinghenryvi,1590\nnoise,1,3kinghenryvi,1590\ntarget,1,3kinghenryvi,1590\nblessed,1,3kinghenryvi,1590\nembassade,1,3kinghenryvi,1590\nsha,1,3kinghenryvi,1590\ninhuman,1,3kinghenryvi,1590\nCross,1,3kinghenryvi,1590\ncoldness,1,3kinghenryvi,1590\ntoss'd,1,3kinghenryvi,1590\nwail,1,3kinghenryvi,1590\nkin,1,3kinghenryvi,1590\nbegan,1,3kinghenryvi,1590\nsomething,1,3kinghenryvi,1590\nshrift,1,3kinghenryvi,1590\nlimits,1,3kinghenryvi,1590\nmoving,1,3kinghenryvi,1590\nGentle,1,3kinghenryvi,1590\nsinful,1,3kinghenryvi,1590\ndeserve,1,3kinghenryvi,1590\nplucker,1,3kinghenryvi,1590\nocean,1,3kinghenryvi,1590\nexecution,1,3kinghenryvi,1590\nlasts,1,3kinghenryvi,1590\nhereafter,1,3kinghenryvi,1590\nsmoking,1,3kinghenryvi,1590\nafflict,1,3kinghenryvi,1590\nbacking,1,3kinghenryvi,1590\nhistory,1,3kinghenryvi,1590\nOft,1,3kinghenryvi,1590\nWithhold,1,3kinghenryvi,1590\nconform,1,3kinghenryvi,1590\n'good',1,3kinghenryvi,1590\nsunset,1,3kinghenryvi,1590\ninnocents,1,3kinghenryvi,1590\nbound,1,3kinghenryvi,1590\nwarrant,1,3kinghenryvi,1590\nConfirm,1,3kinghenryvi,1590\nminions,1,3kinghenryvi,1590\nusurper's,1,3kinghenryvi,1590\ncommand'st,1,3kinghenryvi,1590\nChange,1,3kinghenryvi,1590\npossessor,1,3kinghenryvi,1590\nsubdued,1,3kinghenryvi,1590\nfleet,1,3kinghenryvi,1590\nourself,1,3kinghenryvi,1590\ntooth,1,3kinghenryvi,1590\ninvention,1,3kinghenryvi,1590\nyeoman,1,3kinghenryvi,1590\nsex,1,3kinghenryvi,1590\nHerein,1,3kinghenryvi,1590\ncoals,1,3kinghenryvi,1590\nflying,1,3kinghenryvi,1590\nseals,1,3kinghenryvi,1590\nhonourest,1,3kinghenryvi,1590\nhardiest,1,3kinghenryvi,1590\nlanded,1,3kinghenryvi,1590\no'erweens,1,3kinghenryvi,1590\nbridal,1,3kinghenryvi,1590\npeevish,1,3kinghenryvi,1590\ndoubtless,1,3kinghenryvi,1590\nspy,1,3kinghenryvi,1590\nperil,1,3kinghenryvi,1590\nRevenged,1,3kinghenryvi,1590\nWILLIAM,1,3kinghenryvi,1590\nlivest,1,3kinghenryvi,1590\ncouncil,1,3kinghenryvi,1590\nfavourites,1,3kinghenryvi,1590\nNorthumberlands,1,3kinghenryvi,1590\nmirthful,1,3kinghenryvi,1590\nthunders,1,3kinghenryvi,1590\nnymphs,1,3kinghenryvi,1590\nlesson,1,3kinghenryvi,1590\nliveth,1,3kinghenryvi,1590\nwindy,1,3kinghenryvi,1590\nmurdered,1,3kinghenryvi,1590\nsalve,1,3kinghenryvi,1590\n'Henry,1,3kinghenryvi,1590\nmurderer,1,3kinghenryvi,1590\nmantle,1,3kinghenryvi,1590\ngazers,1,3kinghenryvi,1590\nlooking,1,3kinghenryvi,1590\ndeformity,1,3kinghenryvi,1590\napparent,1,3kinghenryvi,1590\nwhere's,1,3kinghenryvi,1590\nSilence,1,3kinghenryvi,1590\nusual,1,3kinghenryvi,1590\ncropp'd,1,3kinghenryvi,1590\nconcubine,1,3kinghenryvi,1590\nBroach'd,1,3kinghenryvi,1590\n't,1,3kinghenryvi,1590\ntugging,1,3kinghenryvi,1590\nfearless,1,3kinghenryvi,1590\nLifting,1,3kinghenryvi,1590\nbashful,1,3kinghenryvi,1590\nHeavens,1,3kinghenryvi,1590\nsecond,1,3kinghenryvi,1590\ndisgrace,1,3kinghenryvi,1590\nfirmly,1,3kinghenryvi,1590\nstudy,1,3kinghenryvi,1590\nadversity,1,3kinghenryvi,1590\nchat,1,3kinghenryvi,1590\nmultitudes,1,3kinghenryvi,1590\nsky,1,3kinghenryvi,1590\nlevel,1,3kinghenryvi,1590\ngroans,1,3kinghenryvi,1590\nsets,1,3kinghenryvi,1590\nSetting,1,3kinghenryvi,1590\nchattering,1,3kinghenryvi,1590\ngripes,1,3kinghenryvi,1590\nsuck,1,3kinghenryvi,1590\ninviolable,1,3kinghenryvi,1590\nmerciless,1,3kinghenryvi,1590\nDarraign,1,3kinghenryvi,1590\nwaiteth,1,3kinghenryvi,1590\nexecuting,1,3kinghenryvi,1590\nthin,1,3kinghenryvi,1590\nbetwixt,1,3kinghenryvi,1590\nWilliam,1,3kinghenryvi,1590\nSpain,1,3kinghenryvi,1590\ntimber'd,1,3kinghenryvi,1590\nawful,1,3kinghenryvi,1590\nsends,1,3kinghenryvi,1590\nUnreasonable,1,3kinghenryvi,1590\nswept,1,3kinghenryvi,1590\ndecked,1,3kinghenryvi,1590\nread,1,3kinghenryvi,1590\nunloving,1,3kinghenryvi,1590\nswelling,1,3kinghenryvi,1590\nrear,1,3kinghenryvi,1590\nsuppress'd,1,3kinghenryvi,1590\nAlbion,1,3kinghenryvi,1590\nsly,1,3kinghenryvi,1590\nbroils,1,3kinghenryvi,1590\nbeseeming,1,3kinghenryvi,1590\nOffer,1,3kinghenryvi,1590\nMachiavel,1,3kinghenryvi,1590\nunchanging,1,3kinghenryvi,1590\npoints,1,3kinghenryvi,1590\nhappen,1,3kinghenryvi,1590\nSuccessful,1,3kinghenryvi,1590\nroots,1,3kinghenryvi,1590\nhenceforward,1,3kinghenryvi,1590\nskin's,1,3kinghenryvi,1590\nWiltshire's,1,3kinghenryvi,1590\nchased,1,3kinghenryvi,1590\nshower,1,3kinghenryvi,1590\nBestride,1,3kinghenryvi,1590\nspying,1,3kinghenryvi,1590\nswoln,1,3kinghenryvi,1590\nbore,1,3kinghenryvi,1590\nTush,1,3kinghenryvi,1590\nseduce,1,3kinghenryvi,1590\nWhereof,1,3kinghenryvi,1590\nshriek'd,1,3kinghenryvi,1590\ndisannuls,1,3kinghenryvi,1590\nbodged,1,3kinghenryvi,1590\nword's,1,3kinghenryvi,1590\nscold,1,3kinghenryvi,1590\nrelate,1,3kinghenryvi,1590\nSuspicion,1,3kinghenryvi,1590\nconfer,1,3kinghenryvi,1590\ncherish,1,3kinghenryvi,1590\neldest,1,3kinghenryvi,1590\nmark'd,1,3kinghenryvi,1590\nbribe,1,3kinghenryvi,1590\nhousehold,1,3kinghenryvi,1590\nhorizon,1,3kinghenryvi,1590\nwilling,1,3kinghenryvi,1590\nswoon,1,3kinghenryvi,1590\ntree's,1,3kinghenryvi,1590\nusurpers,1,3kinghenryvi,1590\nWhilst,1,3kinghenryvi,1590\nsue,1,3kinghenryvi,1590\nbemoan'd,1,3kinghenryvi,1590\nmutinies,1,3kinghenryvi,1590\ncomplete,1,3kinghenryvi,1590\nbrace,1,3kinghenryvi,1590\nfeed,1,3kinghenryvi,1590\nrust,1,3kinghenryvi,1590\nfeel,1,3kinghenryvi,1590\nominous,1,3kinghenryvi,1590\ncircled,1,3kinghenryvi,1590\nfeet,1,3kinghenryvi,1590\nfees,1,3kinghenryvi,1590\nbows,1,3kinghenryvi,1590\n'scapes,1,3kinghenryvi,1590\nrecovery,1,3kinghenryvi,1590\nprejudicial,1,3kinghenryvi,1590\nScales,1,3kinghenryvi,1590\ngrow,1,3kinghenryvi,1590\ncircuit,1,3kinghenryvi,1590\nswore,1,3kinghenryvi,1590\nblind,1,3kinghenryvi,1590\nbrief,1,3kinghenryvi,1590\nmagistrate,1,3kinghenryvi,1590\nrued,1,3kinghenryvi,1590\naccept,1,3kinghenryvi,1590\ncorrupt,1,3kinghenryvi,1590\nconceal,1,3kinghenryvi,1590\nwhisper,1,3kinghenryvi,1590\ntortures,1,3kinghenryvi,1590\nGuard,1,3kinghenryvi,1590\nchoose,1,3kinghenryvi,1590\nrooms,1,3kinghenryvi,1590\nwing,1,3kinghenryvi,1590\ndagger's,1,3kinghenryvi,1590\nVouchsafe,1,3kinghenryvi,1590\nshrink,1,3kinghenryvi,1590\nHence,1,3kinghenryvi,1590\nnails,1,3kinghenryvi,1590\ncavil,1,3kinghenryvi,1590\nwins,1,3kinghenryvi,1590\npreachment,1,3kinghenryvi,1590\ntiger,1,3kinghenryvi,1590\nseparated,1,3kinghenryvi,1590\nrend,1,3kinghenryvi,1590\nDark,1,3kinghenryvi,1590\nMight,1,3kinghenryvi,1590\nseems,1,3kinghenryvi,1590\nlatter,1,3kinghenryvi,1590\nlength,1,3kinghenryvi,1590\nrent,1,3kinghenryvi,1590\nOne,1,3kinghenryvi,1590\nPlease,1,3kinghenryvi,1590\nobsequious,1,3kinghenryvi,1590\nrends,1,3kinghenryvi,1590\nmagnanimity,1,3kinghenryvi,1590\nhated,1,3kinghenryvi,1590\nRetreat,1,3kinghenryvi,1590\nThough,1,3kinghenryvi,1590\nponiards,1,3kinghenryvi,1590\nrenew,1,3kinghenryvi,1590\nwisp,1,3kinghenryvi,1590\nanon,1,3kinghenryvi,1590\nhorsemen,1,3kinghenryvi,1590\nusest,1,3kinghenryvi,1590\nariseth,1,3kinghenryvi,1590\nfroward,1,3kinghenryvi,1590\nthrows,1,3kinghenryvi,1590\nPutting,1,3kinghenryvi,1590\ndevil's,1,3kinghenryvi,1590\nsense,1,3kinghenryvi,1590\nsleight,1,3kinghenryvi,1590\no'ermatch'd,1,3kinghenryvi,1590\nwave,1,3kinghenryvi,1590\nsummon,1,3kinghenryvi,1590\nrebellion,1,3kinghenryvi,1590\nwarm,1,3kinghenryvi,1590\nvoice,1,3kinghenryvi,1590\nabodements,1,3kinghenryvi,1590\nloins,1,3kinghenryvi,1590\npitch'd,1,3kinghenryvi,1590\npretty,1,3kinghenryvi,1590\napproacheth,1,3kinghenryvi,1590\ntimeless,1,3kinghenryvi,1590\nbasilisk,1,3kinghenryvi,1590\nDeceive,1,3kinghenryvi,1590\nbrake,1,3kinghenryvi,1590\nconveyance,1,3kinghenryvi,1590\nstirr'd,1,3kinghenryvi,1590\nflowing,1,3kinghenryvi,1590\nprodigy,1,3kinghenryvi,1590\nforefathers',1,3kinghenryvi,1590\nThere's,1,3kinghenryvi,1590\ncoats,1,3kinghenryvi,1590\nruled,1,3kinghenryvi,1590\nbook,1,3kinghenryvi,1590\nmanly,1,3kinghenryvi,1590\nboon,1,3kinghenryvi,1590\nmarrow,1,3kinghenryvi,1590\nblazing,1,3kinghenryvi,1590\nbright,1,3kinghenryvi,1590\nmoisture,1,3kinghenryvi,1590\nframed,1,3kinghenryvi,1590\ntend,1,3kinghenryvi,1590\nunrelenting,1,3kinghenryvi,1590\ncolour,1,3kinghenryvi,1590\ndigg'd,1,3kinghenryvi,1590\npresageth,1,3kinghenryvi,1590\ncreated,1,3kinghenryvi,1590\npraises,1,3kinghenryvi,1590\nDraw,1,3kinghenryvi,1590\nhungry,1,3kinghenryvi,1590\nMarquess,1,3kinghenryvi,1590\nconquer,1,3kinghenryvi,1590\nfoil,1,3kinghenryvi,1590\nnephew,1,3kinghenryvi,1590\nbitter,1,3kinghenryvi,1590\nsick,1,3kinghenryvi,1590\nLaugh'd,1,3kinghenryvi,1590\nbig,1,3kinghenryvi,1590\nDi,1,3kinghenryvi,1590\ndrove,1,3kinghenryvi,1590\nwhosoe'er,1,3kinghenryvi,1590\nprince's,1,3kinghenryvi,1590\nrefrain,1,3kinghenryvi,1590\nauthority,1,3kinghenryvi,1590\nstumble,1,3kinghenryvi,1590\nha',1,3kinghenryvi,1590\ntumult,1,3kinghenryvi,1590\nlife's,1,3kinghenryvi,1590\nUsurps,1,3kinghenryvi,1590\nWrath,1,3kinghenryvi,1590\nstatutes,1,3kinghenryvi,1590\npillars,1,3kinghenryvi,1590\nbegetting,1,3kinghenryvi,1590\nhat,1,3kinghenryvi,1590\nwanting,1,3kinghenryvi,1590\nyoung's,1,3kinghenryvi,1590\nsweeter,1,3kinghenryvi,1590\nHungerford,1,3kinghenryvi,1590\nrivers,1,3kinghenryvi,1590\nutter,1,3kinghenryvi,1590\nSends,1,3kinghenryvi,1590\nhay,1,3kinghenryvi,1590\ndelights,1,3kinghenryvi,1590\nexercise,1,3kinghenryvi,1590\nappeased,1,3kinghenryvi,1590\ndeformed,1,3kinghenryvi,1590\npilot,1,3kinghenryvi,1590\nspoil,1,3kinghenryvi,1590\nAm,1,3kinghenryvi,1590\nrecounted,1,3kinghenryvi,1590\nhang'd,1,3kinghenryvi,1590\nscarce,1,3kinghenryvi,1590\nreplete,1,3kinghenryvi,1590\n'Wind,1,3kinghenryvi,1590\nyouthful,1,3kinghenryvi,1590\nGloucester's,1,3kinghenryvi,1590\neternal,1,3kinghenryvi,1590\nThrowing,1,3kinghenryvi,1590\nfortify,1,3kinghenryvi,1590\nhew,1,3kinghenryvi,1590\nlance,1,3kinghenryvi,1590\nmurderers,1,3kinghenryvi,1590\nWither,1,3kinghenryvi,1590\nblown,1,3kinghenryvi,1590\nStill,1,3kinghenryvi,1590\nRhesus',1,3kinghenryvi,1590\nunmanly,1,3kinghenryvi,1590\nhopes,1,3kinghenryvi,1590\nLo,1,3kinghenryvi,1590\nhitherto,1,3kinghenryvi,1590\nfates,1,3kinghenryvi,1590\nsinew,1,3kinghenryvi,1590\ninclined,1,3kinghenryvi,1590\ndiscords,1,3kinghenryvi,1590\nFalconbridge,1,3kinghenryvi,1590\nStamp,1,3kinghenryvi,1590\nbutt,1,3kinghenryvi,1590\ngreatly,1,3kinghenryvi,1590\nAnswer,1,3kinghenryvi,1590\ndenied,1,3kinghenryvi,1590\ngrumbling,1,3kinghenryvi,1590\nquaintly,1,3kinghenryvi,1590\nvoid,1,3kinghenryvi,1590\nHew,1,3kinghenryvi,1590\nOn,1,3kinghenryvi,1590\nbegun,1,3kinghenryvi,1590\npitied,1,3kinghenryvi,1590\npaws,1,3kinghenryvi,1590\npawn,1,3kinghenryvi,1590\ndestinies,1,3kinghenryvi,1590\nhid,1,3kinghenryvi,1590\ninnocent,1,3kinghenryvi,1590\nWithin,1,3kinghenryvi,1590\nmisdeed,1,3kinghenryvi,1590\ntype,1,3kinghenryvi,1590\nprophecies,1,3kinghenryvi,1590\nashes,1,3kinghenryvi,1590\nhit,1,3kinghenryvi,1590\n'long,1,3kinghenryvi,1590\nbuzz,1,3kinghenryvi,1590\nHa,1,3kinghenryvi,1590\ncoursers,1,3kinghenryvi,1590\nrequires,1,3kinghenryvi,1590\nfeigned,1,3kinghenryvi,1590\nspeaketh,1,3kinghenryvi,1590\nhusbands,1,3kinghenryvi,1590\nsurely,1,3kinghenryvi,1590\nambush,1,3kinghenryvi,1590\ngoods,1,3kinghenryvi,1590\nquick,1,3kinghenryvi,1590\nwither'd,1,3kinghenryvi,1590\ndenial,1,3kinghenryvi,1590\nimpregnable,1,3kinghenryvi,1590\nmermaid,1,3kinghenryvi,1590\ntreachery,1,3kinghenryvi,1590\nstem,1,3kinghenryvi,1590\ntemples,1,3kinghenryvi,1590\nIs't,1,3kinghenryvi,1590\nScarce,1,3kinghenryvi,1590\nnice,1,3kinghenryvi,1590\nadmiral,1,3kinghenryvi,1590\nthickest,1,3kinghenryvi,1590\nyourselves,1,3kinghenryvi,1590\nlizards',1,3kinghenryvi,1590\nriseth,1,3kinghenryvi,1590\ntumbled,1,3kinghenryvi,1590\nmonstrous,1,3kinghenryvi,1590\nSOMERSET's,1,3kinghenryvi,1590\nUntutor'd,1,3kinghenryvi,1590\nattentive,1,3kinghenryvi,1590\nheads,1,3kinghenryvi,1590\nDrummer,1,3kinghenryvi,1590\nkiss'd,1,3kinghenryvi,1590\nDauphin,1,3kinghenryvi,1590\nenrolled,1,3kinghenryvi,1590\ndoubting,1,3kinghenryvi,1590\nImpairing,1,3kinghenryvi,1590\ncourteous,1,3kinghenryvi,1590\nintercept,1,3kinghenryvi,1590\nsought,1,3kinghenryvi,1590\nunequal,1,3kinghenryvi,1590\ngowns,1,3kinghenryvi,1590\nthorn,1,3kinghenryvi,1590\ndivide,1,3kinghenryvi,1590\nbull,1,3kinghenryvi,1590\nreckless,1,3kinghenryvi,1590\nmorning's,1,3kinghenryvi,1590\nsorry,1,3kinghenryvi,1590\nforewarn'd,1,3kinghenryvi,1590\nunload,1,3kinghenryvi,1590\nstraw,1,3kinghenryvi,1590\nabsent,1,3kinghenryvi,1590\nConceive,1,3kinghenryvi,1590\nDrum,1,3kinghenryvi,1590\nfoeman's,1,3kinghenryvi,1590\ndays',1,3kinghenryvi,1590\nrebel,1,3kinghenryvi,1590\nleather,1,3kinghenryvi,1590\nJove's,1,3kinghenryvi,1590\nwillingness,1,3kinghenryvi,1590\neclipsed,1,3kinghenryvi,1590\nbury,1,3kinghenryvi,1590\nbehind,1,3kinghenryvi,1590\nprolong,1,3kinghenryvi,1590\nsuffer'd,1,3kinghenryvi,1590\nbell,1,3kinghenryvi,1590\nunfit,1,3kinghenryvi,1590\nobeyed'st,1,3kinghenryvi,1590\nburn,1,3kinghenryvi,1590\nsorts,1,3kinghenryvi,1590\nwent'st,1,3kinghenryvi,1590\ncap,1,3kinghenryvi,1590\nstruck,1,3kinghenryvi,1590\nprisoners,1,3kinghenryvi,1590\ndesirous,1,3kinghenryvi,1590\ntell'st,1,3kinghenryvi,1590\nRe,1,3kinghenryvi,1590\nargue,1,3kinghenryvi,1590\nstrives,1,3kinghenryvi,1590\nshepherds,1,3kinghenryvi,1590\ndisproportion,1,3kinghenryvi,1590\nwean,1,3kinghenryvi,1590\nwedlock,1,3kinghenryvi,1590\nbent,1,3kinghenryvi,1590\ntreasons,1,3kinghenryvi,1590\nparle,1,3kinghenryvi,1590\nsumma,1,3kinghenryvi,1590\ndisperse,1,3kinghenryvi,1590\nbeyond,1,3kinghenryvi,1590\nsustain,1,3kinghenryvi,1590\nparks,1,3kinghenryvi,1590\nenlargement,1,3kinghenryvi,1590\ngames,1,3kinghenryvi,1590\ngape,1,3kinghenryvi,1590\ngrudges,1,3kinghenryvi,1590\ncancell'd,1,3kinghenryvi,1590\nLascivious,1,3kinghenryvi,1590\nWelshmen,1,3kinghenryvi,1590\nrenounce,1,3kinghenryvi,1590\nfee'd,1,3kinghenryvi,1590\nsuddenly,1,3kinghenryvi,1590\ntwice,1,3kinghenryvi,1590\nbrinish,1,3kinghenryvi,1590\nkeep'st,1,3kinghenryvi,1590\n'my,1,3kinghenryvi,1590\n'no,1,3kinghenryvi,1590\ntwitting,1,3kinghenryvi,1590\nSink,1,3kinghenryvi,1590\nSail,1,3kinghenryvi,1590\nfriendly,1,3kinghenryvi,1590\ntedious,1,3kinghenryvi,1590\nanguish,1,3kinghenryvi,1590\ndissembling,1,3kinghenryvi,1590\nruinate,1,3kinghenryvi,1590\ndegree,1,3kinghenryvi,1590\nbug,1,3kinghenryvi,1590\nDares,1,3kinghenryvi,1590\nbeget,1,3kinghenryvi,1590\ndangerously,1,3kinghenryvi,1590\nvows,1,3kinghenryvi,1590\nbuz,1,3kinghenryvi,1590\nStifle,1,3kinghenryvi,1590\namongst,1,3kinghenryvi,1590\nYe,1,3kinghenryvi,1590\nAbove,1,3kinghenryvi,1590\ngather'd,1,3kinghenryvi,1590\nUrge,1,3kinghenryvi,1590\nProclaims,1,3kinghenryvi,1590\nresident,1,3kinghenryvi,1590\nliken'd,1,3kinghenryvi,1590\ngown,1,3kinghenryvi,1590\nadmired,1,3kinghenryvi,1590\ncraving,1,3kinghenryvi,1590\nlurks,1,3kinghenryvi,1590\nsins,1,3kinghenryvi,1590\nambassadors,1,3kinghenryvi,1590\nenterprise,1,3kinghenryvi,1590\nsink,1,3kinghenryvi,1590\nWhither,1,3kinghenryvi,1590\nsing,1,3kinghenryvi,1590\nmoody,1,3kinghenryvi,1590\npitch,1,3kinghenryvi,1590\nheap'd,1,3kinghenryvi,1590\nbegs,1,3kinghenryvi,1590\nbrew'd,1,3kinghenryvi,1590\nPass'd,1,3kinghenryvi,1590\nhopeful,1,3kinghenryvi,1590\nbrotherlike,1,3kinghenryvi,1590\nlately,1,3kinghenryvi,1590\nchafed,1,3kinghenryvi,1590\ncrowned,1,3kinghenryvi,1590\ninterrupts,1,3kinghenryvi,1590\nafoot,1,3kinghenryvi,1590\ninheritance,1,3kinghenryvi,1590\nbegin,1,3kinghenryvi,1590\nnettled,1,3kinghenryvi,1590\ndogs,1,3kinghenryvi,1590\nstore,1,3kinghenryvi,1590\nghost,1,3kinghenryvi,1590\ndeliverance,1,3kinghenryvi,1590\nraught,1,3kinghenryvi,1590\nimpatience,1,3kinghenryvi,1590\nchildish,1,3kinghenryvi,1590\nsear'd,1,3kinghenryvi,1590\nrescuing,1,3kinghenryvi,1590\ndeep,1,3kinghenryvi,1590\nmiles,1,3kinghenryvi,1590\nCannot,1,3kinghenryvi,1590\nblowing,1,3kinghenryvi,1590\nimpossibilities,1,3kinghenryvi,1590\nMethought,1,3kinghenryvi,1590\ntorments,1,3kinghenryvi,1590\nbeck,1,3kinghenryvi,1590\nartificial,1,3kinghenryvi,1590\nFear,1,3kinghenryvi,1590\nPetitioners,1,3kinghenryvi,1590\nshrub,1,3kinghenryvi,1590\nrepent,1,3kinghenryvi,1590\nBess,1,3kinghenryvi,1590\nshouts,1,3kinghenryvi,1590\nHere's,1,3kinghenryvi,1590\nmarches,1,3kinghenryvi,1590\nconsider,1,3kinghenryvi,1590\nbattery,1,3kinghenryvi,1590\nfavour,1,3kinghenryvi,1590\nIll,1,3kinghenryvi,1590\nstood,1,3kinghenryvi,1590\nfetter'd,1,3kinghenryvi,1590\npromontory,1,3kinghenryvi,1590\nMaking,1,3kinghenryvi,1590\nquailing,1,3kinghenryvi,1590\nyes,1,3kinghenryvi,1590\nCrete,1,3kinghenryvi,1590\ntongued,1,3kinghenryvi,1590\nmurderous,1,3kinghenryvi,1590\nnotes,1,3kinghenryvi,1590\nago,1,3kinghenryvi,1590\nswearing,1,3kinghenryvi,1590\nBOURBON,1,3kinghenryvi,1590\ndwell,1,3kinghenryvi,1590\ntragedy,1,3kinghenryvi,1590\nLynn,1,3kinghenryvi,1590\ndear,1,3kinghenryvi,1590\ngilt,1,3kinghenryvi,1590\ndeal,1,3kinghenryvi,1590\nliberal,1,3kinghenryvi,1590\ndepends,1,3kinghenryvi,1590\naims,1,3kinghenryvi,1590\ndeaf,1,3kinghenryvi,1590\ncommanders,1,3kinghenryvi,1590\npluck'd,1,3kinghenryvi,1590\nvault,1,3kinghenryvi,1590\ndrain,1,3kinghenryvi,1590\nnobleman,1,3kinghenryvi,1590\nForslow,1,3kinghenryvi,1590\nruthful,1,3kinghenryvi,1590\nthrive,1,3kinghenryvi,1590\nKentishmen,1,3kinghenryvi,1590\ndower,1,3kinghenryvi,1590\nBlown,1,3kinghenryvi,1590\nboast,1,3kinghenryvi,1590\ngale,1,3kinghenryvi,1590\ntouch'd,1,3kinghenryvi,1590\nmelts,1,3kinghenryvi,1590\nhaught,1,3kinghenryvi,1590\nwaits,1,3kinghenryvi,1590\nburied,1,3kinghenryvi,1590\nincaged,1,3kinghenryvi,1590\nhouses,1,3kinghenryvi,1590\nyields,1,3kinghenryvi,1590\nmaketh,1,3kinghenryvi,1590\no'ershades,1,3kinghenryvi,1590\nsmear'd,1,3kinghenryvi,1590\nmanner,1,3kinghenryvi,1590\ncurds,1,3kinghenryvi,1590\ndoor,1,3kinghenryvi,1590\nrouse,1,3kinghenryvi,1590\ncured,1,3kinghenryvi,1590\ndried,1,3kinghenryvi,1590\nprosper,1,3kinghenryvi,1590\nMaster,1,3kinghenryvi,1590\nbetray'd,1,3kinghenryvi,1590\nabominable,1,3kinghenryvi,1590\nunconstrain'd,1,3kinghenryvi,1590\nthreaten,1,3kinghenryvi,1590\nTowton,1,3kinghenryvi,1590\nspreading,1,3kinghenryvi,1590\ncommitted,1,3kinghenryvi,1590\nrailer,1,3kinghenryvi,1590\nTeeth,1,3kinghenryvi,1590\ncrew,1,3kinghenryvi,1590\nengenders,1,3kinghenryvi,1590\nnecessity,1,3kinghenryvi,1590\nwrinkles,1,3kinghenryvi,1590\nwhereof,1,3kinghenryvi,1590\nstraying,1,3kinghenryvi,1590\nidle,1,3kinghenryvi,1590\nLays,1,3kinghenryvi,1590\nsometime,1,3kinghenryvi,1590\nargosy,1,3kinghenryvi,1590\nReady,1,3kinghenryvi,1590\nscorch'd,1,3kinghenryvi,1590\ntemper,1,3kinghenryvi,1590\ncaused,1,3kinghenryvi,1590\nreenter,1,3kinghenryvi,1590\nmiserably,1,3kinghenryvi,1590\ntamed,1,3kinghenryvi,1590\nexpostulate,1,3kinghenryvi,1590\nloud,1,3kinghenryvi,1590\neye's,1,3kinghenryvi,1590\nhostility,1,3kinghenryvi,1590\nado,1,3kinghenryvi,1590\nparents,1,3kinghenryvi,1590\nWouldst,1,3kinghenryvi,1590\nHollanders,1,3kinghenryvi,1590\nencamp'd,1,3kinghenryvi,1590\ndrift,1,3kinghenryvi,1590\nspeak'st,1,3kinghenryvi,1590\nagony,1,3kinghenryvi,1590\nplaying,1,3kinghenryvi,1590\n'Saint,1,3kinghenryvi,1590\neaseful,1,3kinghenryvi,1590\nspent,1,3kinghenryvi,1590\nfrustrate,1,3kinghenryvi,1590\nlest,1,3kinghenryvi,1590\nResign'd,1,3kinghenryvi,1590\nSennet,1,3kinghenryvi,1590\nBreathe,1,3kinghenryvi,1590\nbides,1,3kinghenryvi,1590\nloved,1,3kinghenryvi,1590\nall's,1,3kinghenryvi,1590\nknot,1,3kinghenryvi,1590\ndisport,1,3kinghenryvi,1590\nshear,1,3kinghenryvi,1590\nlets,1,3kinghenryvi,1590\nboding,1,3kinghenryvi,1590\nWhoever,1,3kinghenryvi,1590\noutrages,1,3kinghenryvi,1590\nhaps,1,3kinghenryvi,1590\nGloucester',1,3kinghenryvi,1590\nserious,1,3kinghenryvi,1590\ntyrants,1,3kinghenryvi,1590\nattain,1,3kinghenryvi,1590\nscatter'd,1,3kinghenryvi,1590\npure,1,3kinghenryvi,1590\nCulling,1,3kinghenryvi,1590\nhot,1,3kinghenryvi,1590\nNumbering,1,3kinghenryvi,1590\nclimb,1,3kinghenryvi,1590\nCame,1,3kinghenryvi,1590\nthrice,1,3kinghenryvi,1590\nDicky,1,3kinghenryvi,1590\ngraves,1,3kinghenryvi,1590\nprescription,1,3kinghenryvi,1590\nMinos,1,3kinghenryvi,1590\nevents,1,3kinghenryvi,1590\nhardly,1,3kinghenryvi,1590\nreasons,1,3kinghenryvi,1590\nSeeing,1,3kinghenryvi,1590\nrunning,1,3kinghenryvi,1590\nornaments,1,3kinghenryvi,1590\ntempted,1,3kinghenryvi,1590\nramping,1,3kinghenryvi,1590\ndemean'd,1,3kinghenryvi,1590\nshriver,1,3kinghenryvi,1590\nApplaud,1,3kinghenryvi,1590\nirrevocable,1,3kinghenryvi,1590\nhare,1,3kinghenryvi,1590\ndiscourse,1,3kinghenryvi,1590\nProteus,1,3kinghenryvi,1590\nBreak,1,3kinghenryvi,1590\nSeeking,1,3kinghenryvi,1590\nfront,1,3kinghenryvi,1590\nspeaks,1,3kinghenryvi,1590\nfaints,1,3kinghenryvi,1590\nweeks,1,3kinghenryvi,1590\nDaedalus,1,3kinghenryvi,1590\nafford,1,3kinghenryvi,1590\ncrow,1,3kinghenryvi,1590\nhaunts,1,3kinghenryvi,1590\namount,1,3kinghenryvi,1590\nsplits,1,3kinghenryvi,1590\nsignify,1,3kinghenryvi,1590\nmought,1,3kinghenryvi,1590\nfowl,1,3kinghenryvi,1590\nshallow,1,3kinghenryvi,1590\nimpression,1,3kinghenryvi,1590\nemploy'd,1,3kinghenryvi,1590\nfinish,1,3kinghenryvi,1590\nHercules,1,3kinghenryvi,1590\nbluntest,1,3kinghenryvi,1590\nperform'd,1,3kinghenryvi,1590\nsmooths,1,3kinghenryvi,1590\nkiller,1,3kinghenryvi,1590\nrepeal'd,1,3kinghenryvi,1590\nserpent's,1,3kinghenryvi,1590\nCourage,1,3kinghenryvi,1590\ncites,1,3kinghenryvi,1590\npoltroons,1,3kinghenryvi,1590\n'love,1,3kinghenryvi,1590\nFull,1,3kinghenryvi,1590\nfour,1,3kinghenryvi,1590\ndens,1,3kinghenryvi,1590\ndrawn,1,3kinghenryvi,1590\nsighing,1,3kinghenryvi,1590\nEnjoy,1,3kinghenryvi,1590\nsuitors,1,3kinghenryvi,1590\nschool,1,3kinghenryvi,1590\npraise,1,3kinghenryvi,1590\nperpetual,1,3kinghenryvi,1590\nmarching,1,3kinghenryvi,1590\nexcuse,1,3kinghenryvi,1590\nsucking,1,3kinghenryvi,1590\nexpect,1,3kinghenryvi,1590\nopes,1,3kinghenryvi,1590\nSmile,1,3kinghenryvi,1590\nbathed,1,3kinghenryvi,1590\noccasions,1,3kinghenryvi,1590\nmisdoubteth,1,3kinghenryvi,1590\neased,1,3kinghenryvi,1590\nsturdy,1,3kinghenryvi,1590\nprepare,1,3kinghenryvi,1590\nmisgive,1,3kinghenryvi,1590\nlaurel,1,3kinghenryvi,1590\nharder,1,3kinghenryvi,1590\nMuster'd,1,3kinghenryvi,1590\nchameleon,1,3kinghenryvi,1590\nLikely,1,3kinghenryvi,1590\nfasts,1,3kinghenryvi,1590\nsouthern,1,3kinghenryvi,1590\nwasted,1,3kinghenryvi,1590\ndiest,1,3kinghenryvi,1590\nista,1,3kinghenryvi,1590\nforswore,1,3kinghenryvi,1590\nCreator's,1,3kinghenryvi,1590\nhaven,1,3kinghenryvi,1590\nPrepare,1,3kinghenryvi,1590\nHelen,1,3kinghenryvi,1590\norisons,1,3kinghenryvi,1590\nshaken,1,3kinghenryvi,1590\ntwain,1,3kinghenryvi,1590\nbosom,1,3kinghenryvi,1590\nIndian,1,3kinghenryvi,1590\nfear'd,1,3kinghenryvi,1590\nshot,1,3kinghenryvi,1590\nputs,1,3kinghenryvi,1590\ncombat,1,3kinghenryvi,1590\nexcept,1,3kinghenryvi,1590\nmoan,1,3kinghenryvi,1590\nvowed,1,3kinghenryvi,1590\ncreatures,1,3kinghenryvi,1590\nrenowned,1,3kinghenryvi,1590\nobey'd,1,3kinghenryvi,1590\nforcible,1,3kinghenryvi,1590\npikes,1,3kinghenryvi,1590\ndyed,1,3kinghenryvi,1590\nghostly,1,3kinghenryvi,1590\nrightly,1,3kinghenryvi,1590\nattempting,1,3kinghenryvi,1590\ngirt,1,3kinghenryvi,1590\nbetide,1,3kinghenryvi,1590\nopen'd,1,3kinghenryvi,1590\nbeggars,1,3kinghenryvi,1590\nlukewarm,1,3kinghenryvi,1590\nShort,1,3kinghenryvi,1590\nolive,1,3kinghenryvi,1590\nMargaret's,1,3kinghenryvi,1590\nmisfortune's,1,3kinghenryvi,1590\nfurnish,1,3kinghenryvi,1590\nknock,1,3kinghenryvi,1590\nquicksand,1,3kinghenryvi,1590\nbought,1,3kinghenryvi,1590\nAccursed,1,3kinghenryvi,1590\ncomic,1,3kinghenryvi,1590\nundone,1,3kinghenryvi,1590\nmellow'd,1,3kinghenryvi,1590\ncomplices,1,3kinghenryvi,1590\nHark,1,3kinghenryvi,1590\npurchased,1,3kinghenryvi,1590\nfee,1,3kinghenryvi,1590\nSirrah,1,3kinghenryvi,1590\nrave,1,3kinghenryvi,1590\nnative,1,3kinghenryvi,1590\narray,1,3kinghenryvi,1590\nchides,1,3kinghenryvi,1590\nmanors,1,3kinghenryvi,1590\ncoffins,1,3kinghenryvi,1590\nMisthink,1,3kinghenryvi,1590\nbutcher's,1,3kinghenryvi,1590\nsanctuary,1,3kinghenryvi,1590\nnet,1,3kinghenryvi,1590\nElysium,1,3kinghenryvi,1590\nbefell,1,3kinghenryvi,1590\nsovereigns,1,3kinghenryvi,1590\ntragic,1,3kinghenryvi,1590\nEnforced,1,3kinghenryvi,1590\nJesus,1,3kinghenryvi,1590\nfeign,1,3kinghenryvi,1590\ntreasures,1,3kinghenryvi,1590\novergone,1,3kinghenryvi,1590\nprecedent,1,3kinghenryvi,1590\nEurope,1,3kinghenryvi,1590\nservitor,1,3kinghenryvi,1590\nAve,1,3kinghenryvi,1590\nInto,1,3kinghenryvi,1590\nwitch,1,3kinghenryvi,1590\nSuggest,1,3kinghenryvi,1590\ntrumpet's,1,3kinghenryvi,1590\nracking,1,3kinghenryvi,1590\nscalding,1,3kinghenryvi,1590\ndeniest,1,3kinghenryvi,1590\nAdmiral,1,3kinghenryvi,1590\ncoop'd,1,3kinghenryvi,1590\ntough,1,3kinghenryvi,1590\nCommand,1,3kinghenryvi,1590\nbreech,1,3kinghenryvi,1590\ndip'dst,1,3kinghenryvi,1590\nhawthorn,1,3kinghenryvi,1590\nPhoebus,1,3kinghenryvi,1590\nMadam,1,3kinghenryvi,1590\nsuppresseth,1,3kinghenryvi,1590\nShout,1,3kinghenryvi,1590\nincomparable,1,3kinghenryvi,1590\nfared,1,3kinghenryvi,1590\nmain,1,3kinghenryvi,1590\nmaid,1,3kinghenryvi,1590\nthreescore,1,3kinghenryvi,1590\ncounterfeiting,1,3kinghenryvi,1590\nyounker,1,3kinghenryvi,1590\nrepass'd,1,3kinghenryvi,1590\nempty,1,3kinghenryvi,1590\nTen,1,3kinghenryvi,1590\ncarries,1,3kinghenryvi,1590\nCanst,1,3kinghenryvi,1590\ngriefs,1,3kinghenryvi,1590\nAldermen,1,3kinghenryvi,1590\nhilt,1,3kinghenryvi,1590\napprehension,1,3kinghenryvi,1590\nSmiles,1,3kinghenryvi,1590\nforewarned,1,3kinghenryvi,1590\nclamour,1,3kinghenryvi,1590\nindeed,1,3kinghenryvi,1590\nCongeal'd,1,3kinghenryvi,1590\nIreland,1,3kinghenryvi,1590\nfaction,1,3kinghenryvi,1590\nbuild,1,3kinghenryvi,1590\ndragged,1,3kinghenryvi,1590\nAEsop,1,3kinghenryvi,1590\ncouldst,1,3kinghenryvi,1590\nmountains,1,3kinghenryvi,1590\nArchbishop,1,3kinghenryvi,1590\ntriumphant,1,3kinghenryvi,1590\nwhelp,1,3kinghenryvi,1590\nsmallest,1,3kinghenryvi,1590\nBrothers,1,3kinghenryvi,1590\nConditionally,1,3kinghenryvi,1590\nBetter,1,3kinghenryvi,1590\nrepose,1,3kinghenryvi,1590\nflocks,1,3kinghenryvi,1590\nElse,1,3kinghenryvi,1590\ninstall'd,1,3kinghenryvi,1590\nnose,1,3kinghenryvi,1590\nmidst,1,3kinghenryvi,1590\nmarks,1,3kinghenryvi,1590\nenvy,1,3kinghenryvi,1590\nnumber'd,1,3kinghenryvi,1590\nfable,1,3kinghenryvi,1590\nbeast,1,3kinghenryvi,1590\nalmost,1,3kinghenryvi,1590\nwaken,1,3kinghenryvi,1590\nstrengthen'd,1,3kinghenryvi,1590\nHames,1,3kinghenryvi,1590\nhalberds,1,3kinghenryvi,1590\nsignified,1,3kinghenryvi,1590\nglues,1,3kinghenryvi,1590\ncedar,1,3kinghenryvi,1590\nconquer'd,1,3kinghenryvi,1590\nglued,1,3kinghenryvi,1590\npinch'd,1,3kinghenryvi,1590\nfetlocks,1,3kinghenryvi,1590\nInjurious,1,3kinghenryvi,1590\nguess'd,1,3kinghenryvi,1590\nfretting,1,3kinghenryvi,1590\nsprung,1,3kinghenryvi,1590\nmislike,1,3kinghenryvi,1590\nforsaken,1,3kinghenryvi,1590\nview'd,1,3kinghenryvi,1590\nbelow,1,3kinghenryvi,1590\nWas't,1,3kinghenryvi,1590\nvapours,1,3kinghenryvi,1590\ncontention,1,3kinghenryvi,1590\nbottle,1,3kinghenryvi,1590\ndisgraced,1,3kinghenryvi,1590\nrequireth,1,3kinghenryvi,1590\ncaptivity,1,3kinghenryvi,1590\nslipp'd,1,3kinghenryvi,1590\nqueens,1,3kinghenryvi,1590\ntigers,1,3kinghenryvi,1590\npleaseth,1,3kinghenryvi,1590\ncandle,1,3kinghenryvi,1590\nhide,1,3kinghenryvi,1590\newes,1,3kinghenryvi,1590\npensive,1,3kinghenryvi,1590\nScorning,1,3kinghenryvi,1590\nparch'd,1,3kinghenryvi,1590\nchaos,1,3kinghenryvi,1590\ncall'dst,1,3kinghenryvi,1590\nBeseeching,1,3kinghenryvi,1590\nBase,1,3kinghenryvi,1590\nmock'd,1,3kinghenryvi,1590\nchase,1,3kinghenryvi,1590\nexcuses,1,3kinghenryvi,1590\nDown,1,3kinghenryvi,1590\nadventure,1,3kinghenryvi,1590\nfurnace,1,3kinghenryvi,1590\nannoy,1,3kinghenryvi,1590\nextraught,1,3kinghenryvi,1590\nSit,1,3kinghenryvi,1590\nborough,1,3kinghenryvi,1590\ncharm,1,3kinghenryvi,1590\nthirsty,1,3kinghenryvi,1590\ngrants,1,3kinghenryvi,1590\nslake,1,3kinghenryvi,1590\nwithdrawn,1,3kinghenryvi,1590\nRoyal,1,3kinghenryvi,1590\nparting,1,3kinghenryvi,1590\ncoronation,1,3kinghenryvi,1590\nsprings,1,3kinghenryvi,1590\nmisery,1,3kinghenryvi,1590\nmouth,1,3kinghenryvi,1590\nBerwick,1,3kinghenryvi,1590\nscare,1,3kinghenryvi,1590\nFlanders,1,3kinghenryvi,1590\ninly,1,3kinghenryvi,1590\nbestride,1,3kinghenryvi,1590\noverlook,1,3kinghenryvi,1590\ntutor,1,3kinghenryvi,1590\nquestion,1,3kinghenryvi,1590\nresisted,1,3kinghenryvi,1590\nunprovided,1,3kinghenryvi,1590\nforecast,1,3kinghenryvi,1590\nrecount,1,3kinghenryvi,1590\ninform'd,1,3kinghenryvi,1590\ngeneral,1,3kinghenryvi,1590\ndiscontent,1,3kinghenryvi,1590\neffect,1,3kinghenryvi,1590\nspurn,1,3kinghenryvi,1590\ndevice,1,3kinghenryvi,1590\npretend,1,3kinghenryvi,1590\nset'st,1,3kinghenryvi,1590\nstrife,1,3kinghenryvi,1590\nprayerbook,1,3kinghenryvi,1590\nelsewhere,1,3kinghenryvi,1590\nArm'd,1,3kinghenryvi,1590\nindustry,1,3kinghenryvi,1590\nWitty,1,3kinghenryvi,1590\ncovert,1,3kinghenryvi,1590\nsatisfaction,1,3kinghenryvi,1590\nmans,1,3kinghenryvi,1590\nconclusion,1,3kinghenryvi,1590\nmightst,1,3kinghenryvi,1590\nshield,1,3kinghenryvi,1590\n'Arm,1,3kinghenryvi,1590\nsteely,1,3kinghenryvi,1590\nrange,1,3kinghenryvi,1590\nplead,1,3kinghenryvi,1590\nMaries,1,3kinghenryvi,1590\nbosoms,1,3kinghenryvi,1590\nfoolish,1,3kinghenryvi,1590\nSons,1,3kinghenryvi,1590\nMark'd,1,3kinghenryvi,1590\nobservation,1,3kinghenryvi,1590\nmutter,1,3kinghenryvi,1590\nbeads,1,3kinghenryvi,1590\nRoger,1,3kinghenryvi,1590\nwrought,1,3kinghenryvi,1590\nkeeper,1,3kinghenryvi,1590\nGallia,1,3kinghenryvi,1590\ndowry,1,3kinghenryvi,1590\ntreacherously,1,3kinghenryvi,1590\nbeggar,1,3kinghenryvi,1590\nchain,1,3kinghenryvi,1590\nsacrificed,1,3kinghenryvi,1590\nreverently,1,3kinghenryvi,1590\nbloods,1,3kinghenryvi,1590\nprocure,1,3kinghenryvi,1590\nmidwife,1,3kinghenryvi,1590\ncurtsy,1,3kinghenryvi,1590\nshrubs,1,3kinghenryvi,1590\ntents,1,3kinghenryvi,1590\ndevil',1,3kinghenryvi,1590\nBearing,1,3kinghenryvi,1590\ninvectives,1,3kinghenryvi,1590\nmark,1,3kinghenryvi,1590\nson's,1,3kinghenryvi,1590\nranks,1,3kinghenryvi,1590\npersuaded,1,3kinghenryvi,1590\nmars,1,3kinghenryvi,1590\ninjuries,1,3kinghenryvi,1590\npenitence,1,3kinghenryvi,1590\nknits,1,3kinghenryvi,1590\nblot,1,3kinghenryvi,1590\ncoverture,1,3kinghenryvi,1590\nmisled,1,3kinghenryvi,1590\nveil,1,3kinghenryvi,1590\nBrethren,1,3kinghenryvi,1590\nThee,1,3kinghenryvi,1590\nAubrey,1,3kinghenryvi,1590\nquoth,1,3kinghenryvi,1590\nleader,1,3kinghenryvi,1590\nungentle,1,3kinghenryvi,1590\nRevoke,1,3kinghenryvi,1590\nrevengeful,1,3kinghenryvi,1590\nstarved,1,3kinghenryvi,1590\n'Go,1,3kinghenryvi,1590\ncraves,1,3kinghenryvi,1590\nbeside,1,3kinghenryvi,1590\nTorment,1,3kinghenryvi,1590\ninfect,1,3kinghenryvi,1590\nstruggles,1,3kinghenryvi,1590\nthief,1,3kinghenryvi,1590\nspecial,1,3kinghenryvi,1590\ninexorable,1,3kinghenryvi,1590\nmountain,1,3kinghenryvi,1590\nfret,1,3kinghenryvi,1590\narch,1,3kinghenryvi,1590\nbrethren,1,3kinghenryvi,1590\nhigher,1,3kinghenryvi,1590\nperemptory,1,3kinghenryvi,1590\nSomerville,1,3kinghenryvi,1590\nsearch,1,3kinghenryvi,1590\ndishonours,1,3kinghenryvi,1590\ndischarge,1,3kinghenryvi,1590\nsnarl,1,3kinghenryvi,1590\nMenelaus,1,3kinghenryvi,1590\nworthless,1,3kinghenryvi,1590\ndoubted,1,3kinghenryvi,1590\nReignier,1,3kinghenryvi,1590\ngin,1,3kinghenryvi,1590\nabandon'd,1,3kinghenryvi,1590\nfist,1,3kinghenryvi,1590\nprivileged,1,3kinghenryvi,1590\nimpiety,1,3kinghenryvi,1590\nsubdue,1,3kinghenryvi,1590\nstratagems,1,3kinghenryvi,1590\nmockery,1,3kinghenryvi,1590\ndisguised,1,3kinghenryvi,1590\nPerhaps,1,3kinghenryvi,1590\nfills,1,3kinghenryvi,1590\nwet,1,3kinghenryvi,1590\nGiving,1,3kinghenryvi,1590\nsand,1,3kinghenryvi,1590\nCommanded,1,3kinghenryvi,1590\nmaintain'd,1,3kinghenryvi,1590\ndesired,1,3kinghenryvi,1590\nliving,1,3kinghenryvi,1590\nones,1,3kinghenryvi,1590\nChaplain,1,3kinghenryvi,1590\nhardest,1,3kinghenryvi,1590\nHyrcania,1,3kinghenryvi,1590\nwealthy,1,3kinghenryvi,1590\nwoodcock,1,3kinghenryvi,1590\nfray,1,3kinghenryvi,1590\nWert,1,3kinghenryvi,1590\nproves,1,3kinghenryvi,1590\nCheer'd,1,3kinghenryvi,1590\nsuspicion,1,3kinghenryvi,1590\nMortimer's,1,3kinghenryvi,1590\nslight,1,3kinghenryvi,1590\naffairs,1,3kinghenryvi,1590\npresaging,1,3kinghenryvi,1590\nopinion,1,3kinghenryvi,1590\nproved,1,3kinghenryvi,1590\ndespairing,1,3kinghenryvi,1590\nneat,1,3kinghenryvi,1590\nTidings,1,3kinghenryvi,1590\nstale,1,3kinghenryvi,1590\nInstead,1,3kinghenryvi,1590\nneck,1,3kinghenryvi,1590\nAmbitious,1,3kinghenryvi,1590\nunderstanding,1,3kinghenryvi,1590\npomp,1,3kinghenryvi,1590\nsafely,1,3kinghenryvi,1590\nswain,1,3kinghenryvi,1590\nConfess,1,3kinghenryvi,1590\nwrapt,1,3kinghenryvi,1590\nsides,1,3kinghenryvi,1590\nWitness,1,3kinghenryvi,1590\nDefy,1,3kinghenryvi,1590\nWent,1,3kinghenryvi,1590\nunpardonable,1,3kinghenryvi,1590\nprivy,1,3kinghenryvi,1590\nmow'd,1,3kinghenryvi,1590\nhateful,1,3kinghenryvi,1590\nredemption,1,3kinghenryvi,1590\n'Twill,1,3kinghenryvi,1590\nTaking,1,3kinghenryvi,1590\nimpose,1,3kinghenryvi,1590\ntumultuous,1,3kinghenryvi,1590\nyoungest,1,3kinghenryvi,1590\nunstanched,1,3kinghenryvi,1590\nSad,1,3kinghenryvi,1590\nfetch,1,3kinghenryvi,1590\nwelfare,1,3kinghenryvi,1590\nbuckle,1,3kinghenryvi,1590\nstigmatic,1,3kinghenryvi,1590\nflexible,1,3kinghenryvi,1590\nthird,1,3kinghenryvi,1590\nerr'd,1,3kinghenryvi,1590\nprovinces,1,3kinghenryvi,1590\nmorrow,1,3kinghenryvi,1590\nupright,1,3kinghenryvi,1590\nprime,1,3kinghenryvi,1590\nhaughty,1,3kinghenryvi,1590\nsitting,1,3kinghenryvi,1590\nInfuse,1,3kinghenryvi,1590\ngay,1,3kinghenryvi,1590\nbanish'd,1,3kinghenryvi,1590\nbandy,1,3kinghenryvi,1590\nfalchion,1,3kinghenryvi,1590\nGuess,1,3kinghenryvi,1590\nExempt,1,3kinghenryvi,1590\nmoment,1,3kinghenryvi,1590\ncallet,1,3kinghenryvi,1590\nrecover'd,1,3kinghenryvi,1590\nmeaner,1,3kinghenryvi,1590\nrecover,1,3kinghenryvi,1590\nposted,1,3kinghenryvi,1590\ncloser,1,3kinghenryvi,1590\nbestow'd,1,3kinghenryvi,1590\nconspire,1,3kinghenryvi,1590\nlightness,1,3kinghenryvi,1590\noak,1,3kinghenryvi,1590\nDear,1,3kinghenryvi,1590\nAntipodes,1,3kinghenryvi,1590\n'no',1,3kinghenryvi,1590\nGermans,1,3kinghenryvi,1590\nobsequies,1,3kinghenryvi,1590\nhearers,1,3kinghenryvi,1590\ntalons,1,3kinghenryvi,1590\nripe,1,3kinghenryvi,1590\ngainsays,1,3kinghenryvi,1590\nstanding,1,3kinghenryvi,1590\nHerefordshire,1,3kinghenryvi,1590\nniece,1,3kinghenryvi,1590\nsubtle,1,3kinghenryvi,1590\nthwarting,1,3kinghenryvi,1590\nrenown'd,1,3kinghenryvi,1590\nchampion,1,3kinghenryvi,1590\nprotection,1,3kinghenryvi,1590\nfling,1,3kinghenryvi,1590\nwidows,1,3kinghenryvi,1590\nburthen,1,3kinghenryvi,1590\nspeedily,1,3kinghenryvi,1590\nsinews,1,3kinghenryvi,1590\naccomplish,1,3kinghenryvi,1590\nShed,1,3kinghenryvi,1590\nbelieve,1,3kinghenryvi,1590\nstage,1,3kinghenryvi,1590\nWeep,1,3kinghenryvi,1590\nThrow,1,3kinghenryvi,1590\nstaff,1,3kinghenryvi,1590\nactors,1,3kinghenryvi,1590\nprevail,1,3kinghenryvi,1590\nhopeless,1,3kinghenryvi,1590\ntrusty,1,3kinghenryvi,1590\nnuptial,1,3kinghenryvi,1590\nfount,1,3kinghenryvi,1590\nbecomest,1,3kinghenryvi,1590\ndeparting,1,3kinghenryvi,1590\nWhere'er,1,3kinghenryvi,1590\nUnsavoury,1,3kinghenryvi,1590\nintend,1,3kinghenryvi,1590\nfound,1,3kinghenryvi,1590\nsufferance,1,3kinghenryvi,1590\nassure,1,3kinghenryvi,1590\ngreetings,1,3kinghenryvi,1590\ndying,1,3kinghenryvi,1590\nrids,1,3kinghenryvi,1590\nTire,1,3kinghenryvi,1590\npresumptuous,1,3kinghenryvi,1590\ntuae,1,3kinghenryvi,1590\nXI's,1,3kinghenryvi,1590\nsupper,1,3kinghenryvi,1590\nvillains,1,3kinghenryvi,1590\nsplit,1,3kinghenryvi,1590\nconfiscate,1,3kinghenryvi,1590\nforfend,1,3kinghenryvi,1590\nwheel,1,3kinghenryvi,1590\nbells,1,3kinghenryvi,1590\nbeseems,1,3kinghenryvi,1590\nbelly,1,3kinghenryvi,1590\nThrows,1,3kinghenryvi,1590\npossess,1,3kinghenryvi,1590\nflail,1,3kinghenryvi,1590\ncaught,1,3kinghenryvi,1590\nenforced,1,3kinghenryvi,1590\nhair,1,3kinghenryvi,1590\nShame,1,3kinghenryvi,1590\nhail,1,3kinghenryvi,1590\nGives,1,3kinghenryvi,1590\nmightily,1,3kinghenryvi,1590\npremeditation,1,3kinghenryvi,1590\nsurprised,1,3kinghenryvi,1590\nfix'd,1,3kinghenryvi,1590\nraging,1,3kinghenryvi,1590\nundutiful,1,3kinghenryvi,1590\nbruit,1,3kinghenryvi,1590\nGreece,1,3kinghenryvi,1590\nIV's,1,3kinghenryvi,1590\nransom,1,3kinghenryvi,1590\npenitent,1,3kinghenryvi,1590\nrages,1,3kinghenryvi,1590\nfaced,1,3kinghenryvi,1590\nInferring,1,3kinghenryvi,1590\nput'st,1,3kinghenryvi,1590\nearthly,1,3kinghenryvi,1590\nrotten,1,3kinghenryvi,1590\nvirtue's,1,3kinghenryvi,1590\nkeeper's,1,3kinghenryvi,1590\ncharged,1,3kinghenryvi,1590\nsize,1,3kinghenryvi,1590\nfondly,1,3kinghenryvi,1590\nweeping,1,3kinghenryvi,1590\nforfeit,1,3kinghenryvi,1590\nspleen,1,3kinghenryvi,1590\nopposite,1,3kinghenryvi,1590\ninclination,1,3kinghenryvi,1590\ncompass,1,3kinghenryvi,1590\nknight,1,3kinghenryvi,1590\nlust,1,3kinghenryvi,1590\nlopp'd,1,3kinghenryvi,1590\nwife's,1,3kinghenryvi,1590\nearldom,1,3kinghenryvi,1590\nrail,1,3kinghenryvi,1590\npitchy,1,3kinghenryvi,1590\nhaply,1,3kinghenryvi,1590\nbaleful,1,3kinghenryvi,1590\nsoldiers',1,3kinghenryvi,1590\nnest,1,3kinghenryvi,1590\nsweeps,1,3kinghenryvi,1590\nsedition,1,3kinghenryvi,1590\nfarther,1,3kinghenryvi,1590\ndetermined,1,3kinghenryvi,1590\ndrops,1,3kinghenryvi,1590\nharvest,1,3kinghenryvi,1590\nAmongst,1,3kinghenryvi,1590\nDeposed,1,3kinghenryvi,1590\nwooer,1,3kinghenryvi,1590\nfox,1,3kinghenryvi,1590\nForbear,1,3kinghenryvi,1590\nangry,1,3kinghenryvi,1590\nfalling,1,3kinghenryvi,1590\navoiding,1,3kinghenryvi,1590\nstoutly,1,3kinghenryvi,1590\nwrong'd,1,3kinghenryvi,1590\nembroider'd,1,3kinghenryvi,1590\nunfortunate,1,3kinghenryvi,1590\nfail,1,3kinghenryvi,1590\nflow'd,1,3kinghenryvi,1590\nglad,1,3kinghenryvi,1590\noutstretched,1,3kinghenryvi,1590\nStrike,1,3kinghenryvi,1590\nhideous,1,3kinghenryvi,1590\nShow,1,3kinghenryvi,1590\nfain,1,3kinghenryvi,1590\ntable,1,3kinghenryvi,1590\nhunger,1,3kinghenryvi,1590\nweakling,1,3kinghenryvi,1590\nunsheathe,1,3kinghenryvi,1590\nlustful,1,3kinghenryvi,1590\nassail,1,3kinghenryvi,1590\nMany,1,3kinghenryvi,1590\nperfections,1,3kinghenryvi,1590\nwept,1,3kinghenryvi,1590\nchimney's,1,3kinghenryvi,1590\ncloth,1,3kinghenryvi,1590\njudge,1,3kinghenryvi,1590\nweapons,1,3kinghenryvi,1590\nsportful,1,3kinghenryvi,1590\nmodesty,1,3kinghenryvi,1590\naugmented,1,3kinghenryvi,1590\ndiamonds,1,3kinghenryvi,1590\ndelays,1,3kinghenryvi,1590\ncares,1,3kinghenryvi,1590\nForspent,1,3kinghenryvi,1590\nvictor,1,3kinghenryvi,1590\nhitherward,1,3kinghenryvi,1590\nsin's,1,3kinghenryvi,1590\nwilful,1,3kinghenryvi,1590\nlump,1,3kinghenryvi,1590\nlasting,1,3kinghenryvi,1590\nanswers,1,3kinghenryvi,1590\nGreeks,1,3kinghenryvi,1590\nrace,1,3kinghenryvi,1590\nkinsman,1,3kinghenryvi,1590\nmisfortune,1,3kinghenryvi,1590\npleased,1,3kinghenryvi,1590\nworm,1,3kinghenryvi,1590\nworn,1,3kinghenryvi,1590\nindigested,1,3kinghenryvi,1590\noverpeer'd,1,3kinghenryvi,1590\nscolding,1,3kinghenryvi,1590\npassing,1,3kinghenryvi,1590\nskilful,1,3kinghenryvi,1590\nride,1,3kinghenryvi,1590\noverboard,1,3kinghenryvi,1590\nunjust,1,3kinghenryvi,1590\npuller,1,3kinghenryvi,1590\nfiercely,1,3kinghenryvi,1590\n'Commend,1,3kinghenryvi,1590\nfit,1,3kinghenryvi,1590\nofficer,1,3kinghenryvi,1590\nimpeach,1,3kinghenryvi,1590\ngazing,1,3kinghenryvi,1590\nallay'd,1,3kinghenryvi,1590\nissuing,1,3kinghenryvi,1590\nswallow'd,1,3kinghenryvi,1590\nCalais,1,3kinghenryvi,1590\nrich,1,3kinghenryvi,1590\npleases,1,3kinghenryvi,1590\nfoemen,1,3kinghenryvi,1590\nAttend,1,3kinghenryvi,1590\npunish'd,1,3kinghenryvi,1590\nsavage,1,3kinghenryvi,1590\nchannel,1,3kinghenryvi,1590\nBids't,1,3kinghenryvi,1590\nBourbon,1,3kinghenryvi,1590\nhorn,1,3kinghenryvi,1590\nOxfordshire,1,3kinghenryvi,1590\nbuckler,1,3kinghenryvi,1590\nmarried,1,3kinghenryvi,1590\nrebuke,1,3kinghenryvi,1590\nlordship,1,3kinghenryvi,1590\ntackles,1,3kinghenryvi,1590\nhost,1,3kinghenryvi,1590\nta'en,1,3kinghenryvi,1590\nabreast,1,3kinghenryvi,1590\nalway,1,3kinghenryvi,1590\n'Content',1,3kinghenryvi,1590\nshown,1,3kinghenryvi,1590\nworship,1,3kinghenryvi,1590\nFlattering,1,3kinghenryvi,1590\nwealth,1,3kinghenryvi,1590\nherself,1,3kinghenryvi,1590\nfawn,1,3kinghenryvi,1590\nuncle,1,3kinghenryvi,1590\nheirs',1,3kinghenryvi,1590\nvex,1,3kinghenryvi,1590\nWork,1,3kinghenryvi,1590\nbeware,1,3kinghenryvi,1590\nmates,1,3kinghenryvi,1590\nchiefly,1,3kinghenryvi,1590\ncounterpoised,1,3kinghenryvi,1590\nbutcherly,1,3kinghenryvi,1590\npartly,1,3kinghenryvi,1590\nfoaming,1,3kinghenryvi,1590\nwives,1,3kinghenryvi,1590\nwonted,1,3kinghenryvi,1590\n'Good,1,3kinghenryvi,1590\ndastard,1,3kinghenryvi,1590\ncomfort,1,3kinghenryvi,1590\nbase,1,3kinghenryvi,1590\naunt,1,3kinghenryvi,1590\nallow'd,1,3kinghenryvi,1590\nprophesy,1,3kinghenryvi,1590\nmarcheth,1,3kinghenryvi,1590\nappointed,1,3kinghenryvi,1590\nband,1,3kinghenryvi,1590\nIcarus,1,3kinghenryvi,1590\nfriendship,1,3kinghenryvi,1590\nlasted,1,3kinghenryvi,1590\neffuse,1,3kinghenryvi,1590\ndad,1,3kinghenryvi,1590\nflames,1,3kinghenryvi,1590\nEnvironed,1,3kinghenryvi,1590\ncools,1,3kinghenryvi,1590\nweakness,1,3kinghenryvi,1590\nVere,1,3kinghenryvi,1590\nrising,1,3kinghenryvi,1590\nfootstool,1,3kinghenryvi,1590\nreplant,1,3kinghenryvi,1590\nlarge,1,3kinghenryvi,1590\nField,1,3kinghenryvi,1590\nEach,1,3kinghenryvi,1590\nSeats,1,3kinghenryvi,1590\nboldly,1,3kinghenryvi,1590\nblaze,1,3kinghenryvi,1590\nsurly,1,3kinghenryvi,1590\nOffers,1,3kinghenryvi,1590\nlights,1,3kinghenryvi,1590\nreleased,1,3kinghenryvi,1590\nauthor,1,3kinghenryvi,1590\ntale,1,3kinghenryvi,1590\ncoal,1,3kinghenryvi,1590\nis't,1,3kinghenryvi,1590\nShamest,1,3kinghenryvi,1590\nlap,1,3kinghenryvi,1590\ntimorous,1,3kinghenryvi,1590\nlaw,1,3kinghenryvi,1590\nDaintry,1,3kinghenryvi,1590\nsaddest,1,3kinghenryvi,1590\ncable,1,3kinghenryvi,1590\nmarries,1,3kinghenryvi,1590\narm'd,1,3kinghenryvi,1590\nPriam,1,3kinghenryvi,1590\nsource,1,3kinghenryvi,1590\nMARQUESS,1,3kinghenryvi,1590\nknighthood,1,3kinghenryvi,1590\nunpeople,1,3kinghenryvi,1590\nbind,1,3kinghenryvi,1590\ncup,1,3kinghenryvi,1590\nSprawl'st,1,3kinghenryvi,1590\nbrotherhood,1,3kinghenryvi,1590\nhatred,1,3kinghenryvi,1590\nsufficient,1,3kinghenryvi,1590\nTrust,1,3kinghenryvi,1590\nAssist,1,3kinghenryvi,1590\nentering,1,3kinghenryvi,1590\nasunder,1,3kinghenryvi,1590\nRather,1,3kinghenryvi,1590\nalms,1,3kinghenryvi,1590\ncreep,1,3kinghenryvi,1590\nought,1,3kinghenryvi,1590\nshore,1,3kinghenryvi,1590\nswears,1,3kinghenryvi,1590\nquit,1,3kinghenryvi,1590\nshort,1,3kinghenryvi,1590\nmisproud,1,3kinghenryvi,1590\nBonville,1,3kinghenryvi,1590\ntearful,1,3kinghenryvi,1590\ngreyhounds,1,3kinghenryvi,1590\ngreet,1,3kinghenryvi,1590\ngainsay,1,3kinghenryvi,1590\nDiomede,1,3kinghenryvi,1590\ntoiling,1,3kinghenryvi,1590\nhollow,1,3kinghenryvi,1590\nhelmets,1,3kinghenryvi,1590\ngiddy,1,3kinghenryvi,1590\ncur,1,3kinghenryvi,1590\nAlthough,1,3kinghenryvi,1590\nMatter,1,3kinghenryvi,1590\nowl's,1,3kinghenryvi,1590\npangs,1,3kinghenryvi,1590\nWho's,1,3kinghenryvi,1590\ncounterfeit,1,3kinghenryvi,1590\ncarve,1,3kinghenryvi,1590\nfires,1,3kinghenryvi,1590\nfamily,1,3kinghenryvi,1590\ncowards,1,3kinghenryvi,1590\nVia,1,3kinghenryvi,1590\nsunder,1,3kinghenryvi,1590\nenviron'd,1,3kinghenryvi,1590\nloyal,1,3kinghenryvi,1590\nrevolt,1,3kinghenryvi,1590\nasking,1,3kinghenryvi,1590\nassist,1,3kinghenryvi,1590\ncheerly,1,3kinghenryvi,1590\ndepth,1,3kinghenryvi,1590\ncommonwealth,1,3kinghenryvi,1590\nCliffords,1,3kinghenryvi,1590\neagle's,1,3kinghenryvi,1590\nslanders,1,3kinghenryvi,1590\nCharged,1,3kinghenryvi,1590\nimpaled,1,3kinghenryvi,1590\nDeceitful,1,3kinghenryvi,1590\ngives,1,3kinghenryvi,1590\nnotwithstanding,1,3kinghenryvi,1590\nprofits,1,3kinghenryvi,1590\nfitted,1,3kinghenryvi,1590\nSeize,1,3kinghenryvi,1590\nprayers,1,3kinghenryvi,1590\ncleft,1,3kinghenryvi,1590\nrook'd,1,3kinghenryvi,1590\naspire,1,3kinghenryvi,1590\ncope,1,3kinghenryvi,1590\nfail'st,1,3kinghenryvi,1590\ndissension,1,3kinghenryvi,1590\nhung,1,3kinghenryvi,1590\nhairs,1,3kinghenryvi,1590\nadopt,1,3kinghenryvi,1590\nhunt,1,3kinghenryvi,1590\ncheerful,1,3kinghenryvi,1590\nNero,1,3kinghenryvi,1590\nignoble,1,3kinghenryvi,1590\ndishonoured,1,3kinghenryvi,1590\nbodes,1,3kinghenryvi,1590\nwinged,1,3kinghenryvi,1590\nfavour'd,1,3kinghenryvi,1590\nbreasts,1,3kinghenryvi,1590\nbachelor,1,3kinghenryvi,1590\nblade,1,3kinghenryvi,1590\nadieu,1,3kinghenryvi,1590\nfairer,1,3kinghenryvi,1590\ndrunk,1,3kinghenryvi,1590\nbabe,1,3kinghenryvi,1590\ncaptain,1,3kinghenryvi,1590\nadder's,1,3kinghenryvi,1590\ndecree,1,3kinghenryvi,1590\nsuits,1,3kinghenryvi,1590\ncony,1,3kinghenryvi,1590\noffspring,1,3kinghenryvi,1590\nRight,1,3kinghenryvi,1590\noppress'd,1,3kinghenryvi,1590\npronounced,1,3kinghenryvi,1590\nNestor,1,3kinghenryvi,1590\npriesthood,1,3kinghenryvi,1590\naboding,1,3kinghenryvi,1590\npromiseth,1,3kinghenryvi,1590\ngnats,1,3kinghenryvi,1590\ntroth,1,3kinghenryvi,1590\npresence,1,3kinghenryvi,1590\nsouth,1,3kinghenryvi,1590\ndecease,1,3kinghenryvi,1590\nscreech,1,3kinghenryvi,1590\nharmful,1,3kinghenryvi,1590\ntrespass,1,3kinghenryvi,1590\nended,1,3kinghenryvi,1590\npresenteth,1,3kinghenryvi,1590\nscrupulous,1,3kinghenryvi,1590\ndivorce,1,3kinghenryvi,1590\nsees,1,3kinghenryvi,1590\nheavens',1,3kinghenryvi,1590\ndrunken,1,3kinghenryvi,1590\nvalued,1,3kinghenryvi,1590\ndauntless,1,3kinghenryvi,1590\nperiod,1,3kinghenryvi,1590\nAtlas,1,3kinghenryvi,1590\nshapes,1,3kinghenryvi,1590\nfellows,1,3kinghenryvi,1590\nprophecy,1,3kinghenryvi,1590\ntidings,1,3kinghenryvi,1590\nPatience,1,3kinghenryvi,1590\nDian,1,3kinghenryvi,1590\nResign,1,3kinghenryvi,1590\naspiring,1,3kinghenryvi,1590\ncorn,1,3kinghenryvi,1590\ncaptivates,1,3kinghenryvi,1590\nStern,1,3kinghenryvi,1590\nfawns,1,3kinghenryvi,1590\nOlympian,1,3kinghenryvi,1590\nDick,1,3kinghenryvi,1590\nthreshold,1,3kinghenryvi,1590\nSinon,1,3kinghenryvi,1590\nchanging,1,3kinghenryvi,1590\nusage,1,3kinghenryvi,1590\nincrease,1,3kinghenryvi,1590\nwhate'er,1,3kinghenryvi,1590\nBack'd,1,3kinghenryvi,1590\nheavenly,1,3kinghenryvi,1590\nObeying,1,3kinghenryvi,1590\nmodest,1,3kinghenryvi,1590\ndeign,1,3kinghenryvi,1590\nHe'll,1,3kinghenryvi,1590\naffright,1,3kinghenryvi,1590\n'twill,1,3kinghenryvi,1590\navoid,1,3kinghenryvi,1590\nfathers',1,3kinghenryvi,1590\njointure,1,3kinghenryvi,1590\nNorthampton,1,3kinghenryvi,1590\ntherein,1,3kinghenryvi,1590\ntrembles,1,3kinghenryvi,1590\ndistinguished,1,3kinghenryvi,1590\nfuneral,1,3kinghenryvi,1590\nRoscius,1,3kinghenryvi,1590\ndislike,1,3kinghenryvi,1590\nsuffice,1,3kinghenryvi,1590\ntopmost,1,3kinghenryvi,1590\nJudas,1,3kinghenryvi,1590\nself,1,3kinghenryvi,1590\naccording,1,3kinghenryvi,1590\nmirror,1,3kinghenryvi,1590\nraven,1,3kinghenryvi,1590\nexceptions,1,3kinghenryvi,1590\nSent,1,3kinghenryvi,1590\nremorseless,1,3kinghenryvi,1590\ncommixture,1,3kinghenryvi,1590\nforetold,1,3kinghenryvi,1590\nNeither,1,3kinghenryvi,1590\nundo,1,3kinghenryvi,1590\nNurse,1,3kinghenryvi,1590\ntrusting,1,3kinghenryvi,1590\ngrieves,1,3kinghenryvi,1590\nIntend,1,3kinghenryvi,1590\nswell,1,3kinghenryvi,1590\naxe's,1,3kinghenryvi,1590\ngrieved,1,3kinghenryvi,1590\nRivers,1,3kinghenryvi,1590\nwrangling,1,3kinghenryvi,1590\ninjured,1,3kinghenryvi,1590\nmatch,1,3kinghenryvi,1590\nlastly,1,3kinghenryvi,1590\nBishop's,1,3kinghenryvi,1590\nprotest,1,3kinghenryvi,1590\npurpose,1,3kinghenryvi,1590\naright,1,3kinghenryvi,1590\ncurrish,1,3kinghenryvi,1590\nmistrustful,1,3kinghenryvi,1590\ncanopy,1,3kinghenryvi,1590\nsafer,1,3kinghenryvi,1590\ndetect,1,3kinghenryvi,1590\nhowl'd,1,3kinghenryvi,1590\ndegraded,1,3kinghenryvi,1590\nchances,1,3kinghenryvi,1590\ninstead,1,3kinghenryvi,1590\nSubjects,1,3kinghenryvi,1590\nebb,1,3kinghenryvi,1590\ncontemplate,1,3kinghenryvi,1590\nparcel,1,3kinghenryvi,1590\nprincipal,1,3kinghenryvi,1590\nthresher,1,3kinghenryvi,1590\nlaws,1,3kinghenryvi,1590\nbrow,1,3kinghenryvi,1590\nslow,1,3kinghenryvi,1590\ntrod,1,3kinghenryvi,1590\naway',1,3kinghenryvi,1590\nwithstand,1,3kinghenryvi,1590\nean,1,3kinghenryvi,1590\near,1,3kinghenryvi,1590\nstruggle,1,3kinghenryvi,1590\ndivining,1,3kinghenryvi,1590\nunbid,1,3kinghenryvi,1590\ndebate,1,3kinghenryvi,1590\nwrite,1,3kinghenryvi,1590\ncloudy,1,3kinghenryvi,1590\nTread,1,3kinghenryvi,1590\nevening,1,3kinghenryvi,1590\nspirits,1,3kinghenryvi,1590\nlaudis,1,3kinghenryvi,1590\nalter'd,1,3kinghenryvi,1590\nlimbs,1,3kinghenryvi,1590\nAlbion's,1,3kinghenryvi,1590\nsounded,1,3kinghenryvi,1590\nperjury,1,3kinghenryvi,1590\nnourish'd,1,3kinghenryvi,1590\nlazy,1,3kinghenryvi,1590\ndistressed,1,3kinghenryvi,1590\n'scape,1,3kinghenryvi,1590\nlineally,1,3kinghenryvi,1590\nFive,1,3kinghenryvi,1590\nwaned,1,3kinghenryvi,1590\nsmiling,1,3kinghenryvi,1590\nclangour,1,3kinghenryvi,1590\nbishop,1,3kinghenryvi,1590\npoets,1,3kinghenryvi,1590\nwring,1,3kinghenryvi,1590\nimpale,1,3kinghenryvi,1590\nDogs,1,3kinghenryvi,1590\ndoing,1,3kinghenryvi,1590\nkindling,1,3kinghenryvi,1590\nremember,1,3kinghenryvi,1590\ncleaving,1,3kinghenryvi,1590\nsadness,1,3kinghenryvi,1590\ninferior,1,3kinghenryvi,1590\nSometime,1,3kinghenryvi,1590\nisland,1,3kinghenryvi,1590\nunskilful,1,3kinghenryvi,1590\nphoenix,1,3kinghenryvi,1590\narmours,1,3kinghenryvi,1590\ntreacherous,1,3kinghenryvi,1590\nCaptain,1,3kinghenryvi,1590\nlink'd,1,3kinghenryvi,1590\nupward,1,3kinghenryvi,1590\nhardy,1,3kinghenryvi,1590\nforetell,1,3kinghenryvi,1590\nshambles,1,3kinghenryvi,1590\nmeeting,1,3kinghenryvi,1590\nmurder'd,1,3kinghenryvi,1590\nnobody,1,3kinghenryvi,1590\nEssex,1,3kinghenryvi,1590\n'Retire,1,3kinghenryvi,1590\nseduced,1,3kinghenryvi,1590\nverified,1,3kinghenryvi,1590\nwhip,1,3kinghenryvi,1590\nladies,1,3kinghenryvi,1590\ndebating,1,3kinghenryvi,1590\nbiting,1,3kinghenryvi,1590\ncounty,1,3kinghenryvi,1590\nlay'st,1,3kinghenryvi,1590\nunlick'd,1,3kinghenryvi,1590\nMiddleham,1,3kinghenryvi,1590\nTears,1,3kinghenryvi,1590\ndelicates,1,3kinghenryvi,1590\nremaining,1,3kinghenryvi,1590\nunnaturally,1,3kinghenryvi,1590\nharmony,1,3kinghenryvi,1590\nFrenchwoman,1,3kinghenryvi,1590\ncaptives,1,3kinghenryvi,1590\nIndeed,1,3kinghenryvi,1590\no'erbear,1,3kinghenryvi,1590\ngraybeards,1,3kinghenryvi,1590\ndismiss,1,3kinghenryvi,1590\nprowess,1,3kinghenryvi,1590\nMarry,1,3kinghenryvi,1590\nvizard,1,3kinghenryvi,1590\nfraud,1,3kinghenryvi,1590\nThereby,1,3kinghenryvi,1590\nnativity,1,3kinghenryvi,1590\ndeathmen,1,3kinghenryvi,1590\ngulf,1,3kinghenryvi,1590\nincessant,1,3kinghenryvi,1590\nYonder's,1,3kinghenryvi,1590\ncredit,1,3kinghenryvi,1590\npreposterous,1,3kinghenryvi,1590\nsheathe,1,3kinghenryvi,1590\nrunners,1,3kinghenryvi,1590\ncitizens,1,3kinghenryvi,1590\nfrivolous,1,3kinghenryvi,1590\nbeauty,1,3kinghenryvi,1590\nbrooks,1,3kinghenryvi,1590\npeer,1,3kinghenryvi,1590\nshelves,1,3kinghenryvi,1590\nhewing,1,3kinghenryvi,1590\nwhet,1,3kinghenryvi,1590\nharms,1,3kinghenryvi,1590\nlevied,1,3kinghenryvi,1590\nsepulchres,1,3kinghenryvi,1590\nbreaking,1,3kinghenryvi,1590\nCounting,1,3kinghenryvi,1590\nragged,1,3kinghenryvi,1590\nvenge,1,3kinghenryvi,1590\ncarelessly,1,3kinghenryvi,1590\nentreaty,1,3kinghenryvi,1590\nsway'd,1,3kinghenryvi,1590\no'ercharged,1,3kinghenryvi,1590\nconflict,1,3kinghenryvi,1590\nadage,1,3kinghenryvi,1590\ntry,1,3kinghenryvi,1590\nassurance,1,3kinghenryvi,1590\nLeicestershire,1,3kinghenryvi,1590\nTherein,1,3kinghenryvi,1590\nsentence,1,3kinghenryvi,1590\nwitness,1,3kinghenryvi,1590\nleads,1,3kinghenryvi,1590\nnumbers,1,3kinghenryvi,1590\ncover'd,1,3kinghenryvi,1590\nreply,1,3kinghenryvi,1590\nPLANTAGENET,1,3kinghenryvi,1590\nYou'll,1,3kinghenryvi,1590\npayment,1,3kinghenryvi,1590\ndash,1,3kinghenryvi,1590\nsprang'st,1,3kinghenryvi,1590\nMount,1,3kinghenryvi,1590\ndog,1,3kinghenryvi,1590\nconfirm,1,3kinghenryvi,1590\nrespect,1,3kinghenryvi,1590\nmangled,1,3kinghenryvi,1590\nharsh,1,3kinghenryvi,1590\ndragging,1,3kinghenryvi,1590\nDazzle,1,3kinghenryvi,1590\nlosses,1,3kinghenryvi,1590\nWailing,1,3kinghenryvi,1590\nfamish,1,3kinghenryvi,1590\nboisterous,1,3kinghenryvi,1590\nmeeds,1,3kinghenryvi,1590\nframe,1,3kinghenryvi,1590\nsounding,1,3kinghenryvi,1590\ndue,1,3kinghenryvi,1590\ndub,1,3kinghenryvi,1590\nThracian,1,3kinghenryvi,1590\nButchers,1,3kinghenryvi,1590\nlord's,1,3kinghenryvi,1590\npent,1,3kinghenryvi,1590\nlane,1,3kinghenryvi,1590\nprivily,1,3kinghenryvi,1590\ndispatch,1,3kinghenryvi,1590\ninjurious,1,3kinghenryvi,1590\nconflicts,1,3kinghenryvi,1590\nWishing,1,3kinghenryvi,1590\npoisons,1,3kinghenryvi,1590\nDRAMATIS,1,3kinghenryvi,1590\nlamp,1,3kinghenryvi,1590\nshift,1,3kinghenryvi,1590\nvenom,1,3kinghenryvi,1590\nspurr'd,1,3kinghenryvi,1590\nrescue,1,3kinghenryvi,1590\nshine,1,3kinghenryvi,1590\nfilled,1,3kinghenryvi,1590\nchancellor,1,3kinghenryvi,1590\npropose,1,3kinghenryvi,1590\nThereon,1,3kinghenryvi,1590\narmed,1,3kinghenryvi,1590\nflower,1,3kinghenryvi,1590\ncommanding,1,3kinghenryvi,1590\ndame,1,3kinghenryvi,1590\nnoontide,1,3kinghenryvi,1590\nChristendom,1,3kinghenryvi,1590\nbechanced,1,3kinghenryvi,1590\nquietly,1,3kinghenryvi,1590\nobtain,1,3kinghenryvi,1590\ntrees,1,3kinghenryvi,1590\nfrail,1,3kinghenryvi,1590\nParliament,1,3kinghenryvi,1590\nTalk,1,3kinghenryvi,1590\nstings,1,3kinghenryvi,1590\nSaxton,1,3kinghenryvi,1590\nkind,1,3kinghenryvi,1590\nprivate,1,3kinghenryvi,1590\ndauphin,1,3kinghenryvi,1590\nbooty,1,3kinghenryvi,1590\ntacklings,1,3kinghenryvi,1590\nden,1,3kinghenryvi,1590\nspray,1,3kinghenryvi,1590\nreconcile,1,3kinghenryvi,1590\nrepaid,1,3kinghenryvi,1590\nfigures,1,3kinghenryvi,1590\ndarling,1,3kinghenryvi,1590\ntainted,1,3kinghenryvi,1590\nSaying,1,3kinghenryvi,1590\ntoads,1,3kinghenryvi,1590\nmid,1,3kinghenryvi,1590\nlade,1,3kinghenryvi,1590\ndials,1,3kinghenryvi,1590\nearth's,1,3kinghenryvi,1590\ncharity,1,3kinghenryvi,1590\nFight,1,3kinghenryvi,1590\nstriving,1,3kinghenryvi,1590\nparley,1,3kinghenryvi,1590\nHumbly,1,3kinghenryvi,1590\nobedience,1,3kinghenryvi,1590\nshape,1,3kinghenryvi,1590\npetticoat,1,3kinghenryvi,1590\nHector,1,3kinghenryvi,1590\ntread,1,3kinghenryvi,1590\nspoils,1,3kinghenryvi,1590\nbide,1,3kinghenryvi,1590\nperhaps,1,3kinghenryvi,1590\nchivalry,1,3kinghenryvi,1590\nshare,1,3kinghenryvi,1590\norder,1,3kinghenryvi,1590\ne'er,1,3kinghenryvi,1590\ndig,1,3kinghenryvi,1590\nships,1,3kinghenryvi,1590\nHugh,1,3kinghenryvi,1590\nunwares,1,3kinghenryvi,1590\nconsents,1,3kinghenryvi,1590\nfortunes,1,3kinghenryvi,1590\nWALES,1,3kinghenryvi,1590\nbeaver,1,3kinghenryvi,1590\nswan,1,3kinghenryvi,1590\nforgery,1,3kinghenryvi,1590\nin,257,3kinghenryvi,1590\naffords,2,3kinghenryvi,1590\nluckless,2,3kinghenryvi,1590\nTouching,2,3kinghenryvi,1590\nwillow,2,3kinghenryvi,1590\nparted,2,3kinghenryvi,1590\nswords,2,3kinghenryvi,1590\nmuster,2,3kinghenryvi,1590\nc,2,3kinghenryvi,1590\nfruits,2,3kinghenryvi,1590\nspeech,2,3kinghenryvi,1590\nfollowing,2,3kinghenryvi,1590\nlament,2,3kinghenryvi,1590\nhinder,2,3kinghenryvi,1590\ntraitor's,2,3kinghenryvi,1590\nhonours,2,3kinghenryvi,1590\nhonourably,2,3kinghenryvi,1590\nhasty,2,3kinghenryvi,1590\nMessengers,2,3kinghenryvi,1590\nbones,2,3kinghenryvi,1590\nstopp'd,2,3kinghenryvi,1590\nhighness',2,3kinghenryvi,1590\nWomen,2,3kinghenryvi,1590\nproclaim'd,2,3kinghenryvi,1590\nere't,2,3kinghenryvi,1590\nmelt,2,3kinghenryvi,1590\nheld,2,3kinghenryvi,1590\nNever,2,3kinghenryvi,1590\nhelm,2,3kinghenryvi,1590\n'ay',2,3kinghenryvi,1590\nstrengthen,2,3kinghenryvi,1590\nthorns,2,3kinghenryvi,1590\nslaughter'd,2,3kinghenryvi,1590\nthorny,2,3kinghenryvi,1590\nfinger,2,3kinghenryvi,1590\ngroan,2,3kinghenryvi,1590\nherd,2,3kinghenryvi,1590\nEither,2,3kinghenryvi,1590\nTewksbury,2,3kinghenryvi,1590\nunderstand,2,3kinghenryvi,1590\nmaintain,2,3kinghenryvi,1590\nBuckingham,2,3kinghenryvi,1590\ndrink,2,3kinghenryvi,1590\nEre,2,3kinghenryvi,1590\nmatch'd,2,3kinghenryvi,1590\nsour,2,3kinghenryvi,1590\nunder,2,3kinghenryvi,1590\nyonder,2,3kinghenryvi,1590\ntaunts,2,3kinghenryvi,1590\nbeauty's,2,3kinghenryvi,1590\nbefall,2,3kinghenryvi,1590\nrue,2,3kinghenryvi,1590\ncontrary,2,3kinghenryvi,1590\nspark,2,3kinghenryvi,1590\nbattles,2,3kinghenryvi,1590\npursue,2,3kinghenryvi,1590\nOnce,2,3kinghenryvi,1590\ndownfall,2,3kinghenryvi,1590\nSoldier,2,3kinghenryvi,1590\ndisdain,2,3kinghenryvi,1590\ngraced,2,3kinghenryvi,1590\nbirth,2,3kinghenryvi,1590\nconscience,2,3kinghenryvi,1590\nbefall'n,2,3kinghenryvi,1590\nbefits,2,3kinghenryvi,1590\ngrown,2,3kinghenryvi,1590\nbearing,2,3kinghenryvi,1590\nsaw,2,3kinghenryvi,1590\nline,2,3kinghenryvi,1590\nfortunate,2,3kinghenryvi,1590\nsorrows,2,3kinghenryvi,1590\nresolve,2,3kinghenryvi,1590\nusurps,2,3kinghenryvi,1590\nchop,2,3kinghenryvi,1590\ncalm,2,3kinghenryvi,1590\npaper,2,3kinghenryvi,1590\nofficers,2,3kinghenryvi,1590\nYield,2,3kinghenryvi,1590\nchains,2,3kinghenryvi,1590\namity,2,3kinghenryvi,1590\nwidow's,2,3kinghenryvi,1590\nview,2,3kinghenryvi,1590\nshe's,2,3kinghenryvi,1590\nsix,2,3kinghenryvi,1590\nwaft,2,3kinghenryvi,1590\nOff,2,3kinghenryvi,1590\nsung,2,3kinghenryvi,1590\nPembroke,2,3kinghenryvi,1590\nsir,2,3kinghenryvi,1590\nfleece,2,3kinghenryvi,1590\nimpossible,2,3kinghenryvi,1590\nusurp'd,2,3kinghenryvi,1590\neager,2,3kinghenryvi,1590\n'A,2,3kinghenryvi,1590\nwall,2,3kinghenryvi,1590\nmerry,2,3kinghenryvi,1590\nmonarch,2,3kinghenryvi,1590\nmocking,2,3kinghenryvi,1590\nWrite,2,3kinghenryvi,1590\ndeceit,2,3kinghenryvi,1590\nchiefest,2,3kinghenryvi,1590\nlions,2,3kinghenryvi,1590\nscorn,2,3kinghenryvi,1590\nnine,2,3kinghenryvi,1590\nforsake,2,3kinghenryvi,1590\nworth,2,3kinghenryvi,1590\nentail,2,3kinghenryvi,1590\nfamed,2,3kinghenryvi,1590\nraised,2,3kinghenryvi,1590\n'O,2,3kinghenryvi,1590\nstern,2,3kinghenryvi,1590\nTheir,2,3kinghenryvi,1590\npitiful,2,3kinghenryvi,1590\nlambs,2,3kinghenryvi,1590\nquondam,2,3kinghenryvi,1590\nWatchmen,2,3kinghenryvi,1590\nwar's,2,3kinghenryvi,1590\nplay'd,2,3kinghenryvi,1590\nbewray,2,3kinghenryvi,1590\ncheers,2,3kinghenryvi,1590\nthieves,2,3kinghenryvi,1590\nworst,2,3kinghenryvi,1590\ntaught,2,3kinghenryvi,1590\nreap,2,3kinghenryvi,1590\nworse,2,3kinghenryvi,1590\nfelt,2,3kinghenryvi,1590\naccursed,2,3kinghenryvi,1590\nreceived,2,3kinghenryvi,1590\nHarry,2,3kinghenryvi,1590\nstamps,2,3kinghenryvi,1590\nfellow,2,3kinghenryvi,1590\nguarded,2,3kinghenryvi,1590\nTurn,2,3kinghenryvi,1590\nencounter'd,2,3kinghenryvi,1590\nenvious,2,3kinghenryvi,1590\nterms,2,3kinghenryvi,1590\nunfeigned,2,3kinghenryvi,1590\nencounter,2,3kinghenryvi,1590\nseeks,2,3kinghenryvi,1590\ndearly,2,3kinghenryvi,1590\nshowers,2,3kinghenryvi,1590\nWherein,2,3kinghenryvi,1590\nLeave,2,3kinghenryvi,1590\ncries,2,3kinghenryvi,1590\nelder,2,3kinghenryvi,1590\npedigree,2,3kinghenryvi,1590\ncease,2,3kinghenryvi,1590\nplainly,2,3kinghenryvi,1590\ndescend,2,3kinghenryvi,1590\nmasters,2,3kinghenryvi,1590\nmalice,2,3kinghenryvi,1590\nWarwickshire,2,3kinghenryvi,1590\nothers,2,3kinghenryvi,1590\nprevent,2,3kinghenryvi,1590\nFly,2,3kinghenryvi,1590\nsoldier,2,3kinghenryvi,1590\nflesh,2,3kinghenryvi,1590\nknights,2,3kinghenryvi,1590\nDare,2,3kinghenryvi,1590\nnight's,2,3kinghenryvi,1590\nbattle's,2,3kinghenryvi,1590\nedge,2,3kinghenryvi,1590\nupholds,2,3kinghenryvi,1590\ndies,2,3kinghenryvi,1590\nCousin,2,3kinghenryvi,1590\nseest,2,3kinghenryvi,1590\ndied,2,3kinghenryvi,1590\neagle,2,3kinghenryvi,1590\ntalk'st,2,3kinghenryvi,1590\nnorthern,2,3kinghenryvi,1590\npierce,2,3kinghenryvi,1590\nambassador,2,3kinghenryvi,1590\nstop,2,3kinghenryvi,1590\nharbour,2,3kinghenryvi,1590\nwars,2,3kinghenryvi,1590\ncoast,2,3kinghenryvi,1590\noffice,2,3kinghenryvi,1590\nmatter,2,3kinghenryvi,1590\nrevel,2,3kinghenryvi,1590\nplaints,2,3kinghenryvi,1590\nspoke,2,3kinghenryvi,1590\nprevails,2,3kinghenryvi,1590\ndeserves,2,3kinghenryvi,1590\nDo,2,3kinghenryvi,1590\nscandal,2,3kinghenryvi,1590\nkeys,2,3kinghenryvi,1590\nmorning,2,3kinghenryvi,1590\nburning,2,3kinghenryvi,1590\ndrown,2,3kinghenryvi,1590\nTakes,2,3kinghenryvi,1590\nhap,2,3kinghenryvi,1590\nconquered,2,3kinghenryvi,1590\nbacks,2,3kinghenryvi,1590\noverthrow,2,3kinghenryvi,1590\nPhaethon,2,3kinghenryvi,1590\nWhat's,2,3kinghenryvi,1590\nBelike,2,3kinghenryvi,1590\ngotten,2,3kinghenryvi,1590\noffend,2,3kinghenryvi,1590\nsigh,2,3kinghenryvi,1590\ndescends,2,3kinghenryvi,1590\ngranted,2,3kinghenryvi,1590\n'Twere,2,3kinghenryvi,1590\nmistrust,2,3kinghenryvi,1590\nmolehill,2,3kinghenryvi,1590\nloath,2,3kinghenryvi,1590\nBecomes,2,3kinghenryvi,1590\nknowing,2,3kinghenryvi,1590\ngovern,2,3kinghenryvi,1590\nalarum,2,3kinghenryvi,1590\nThose,2,3kinghenryvi,1590\nwash'd,2,3kinghenryvi,1590\ndesperate,2,3kinghenryvi,1590\nitself,2,3kinghenryvi,1590\nencompass'd,2,3kinghenryvi,1590\nHaving,2,3kinghenryvi,1590\nbad,2,3kinghenryvi,1590\nhoped,2,3kinghenryvi,1590\nStand,2,3kinghenryvi,1590\ndoves,2,3kinghenryvi,1590\nbrings,2,3kinghenryvi,1590\nshines,2,3kinghenryvi,1590\nresteth,2,3kinghenryvi,1590\nfinds,2,3kinghenryvi,1590\nwisdom,2,3kinghenryvi,1590\nenter'd,2,3kinghenryvi,1590\npiteous,2,3kinghenryvi,1590\nsovereignty,2,3kinghenryvi,1590\nmeant,2,3kinghenryvi,1590\nblest,2,3kinghenryvi,1590\nbless,2,3kinghenryvi,1590\nconqueror,2,3kinghenryvi,1590\nLet's,2,3kinghenryvi,1590\nsport,2,3kinghenryvi,1590\nearl,2,3kinghenryvi,1590\ndevotion,2,3kinghenryvi,1590\nquiet,2,3kinghenryvi,1590\nDukes,2,3kinghenryvi,1590\nsurprise,2,3kinghenryvi,1590\nbishop's,2,3kinghenryvi,1590\ngold,2,3kinghenryvi,1590\nOpen,2,3kinghenryvi,1590\nhomely,2,3kinghenryvi,1590\nlatest,2,3kinghenryvi,1590\nDidst,2,3kinghenryvi,1590\ncurse,2,3kinghenryvi,1590\nbuy,2,3kinghenryvi,1590\nused,2,3kinghenryvi,1590\nwheresoe'er,2,3kinghenryvi,1590\nWhate'er,2,3kinghenryvi,1590\npeople's,2,3kinghenryvi,1590\ndivine,2,3kinghenryvi,1590\nstronger,2,3kinghenryvi,1590\ngate,2,3kinghenryvi,1590\nnorth,2,3kinghenryvi,1590\ngrandsire,2,3kinghenryvi,1590\ngasp,2,3kinghenryvi,1590\nsolemn,2,3kinghenryvi,1590\nstory,2,3kinghenryvi,1590\nMarch'd,2,3kinghenryvi,1590\nforgive,2,3kinghenryvi,1590\npromised,2,3kinghenryvi,1590\ncannibals,2,3kinghenryvi,1590\nresolute,2,3kinghenryvi,1590\nsingled,2,3kinghenryvi,1590\ntyrant,2,3kinghenryvi,1590\nsatisfy,2,3kinghenryvi,1590\nsheep,2,3kinghenryvi,1590\ndeck,2,3kinghenryvi,1590\nsheet,2,3kinghenryvi,1590\nviolence,2,3kinghenryvi,1590\nwreck,2,3kinghenryvi,1590\ngain,2,3kinghenryvi,1590\nchoosing,2,3kinghenryvi,1590\nvouchsafe,2,3kinghenryvi,1590\nseeing,2,3kinghenryvi,1590\nlikely,2,3kinghenryvi,1590\nredress,2,3kinghenryvi,1590\nvictors,2,3kinghenryvi,1590\nhusband,2,3kinghenryvi,1590\nstole,2,3kinghenryvi,1590\nlady's,2,3kinghenryvi,1590\nah,2,3kinghenryvi,1590\npiercing,2,3kinghenryvi,1590\nlo,2,3kinghenryvi,1590\nmalcontent,2,3kinghenryvi,1590\nhuntsmen,2,3kinghenryvi,1590\naccount,2,3kinghenryvi,1590\nMyself,2,3kinghenryvi,1590\nMortimer,2,3kinghenryvi,1590\nage,2,3kinghenryvi,1590\nenmity,2,3kinghenryvi,1590\nloves,2,3kinghenryvi,1590\nRenowned,2,3kinghenryvi,1590\nstout,2,3kinghenryvi,1590\npursued,2,3kinghenryvi,1590\nmatching,2,3kinghenryvi,1590\nenjoys,2,3kinghenryvi,1590\nlevy,2,3kinghenryvi,1590\ncauses,2,3kinghenryvi,1590\nSuffolk,2,3kinghenryvi,1590\ndefy,2,3kinghenryvi,1590\ngreater,2,3kinghenryvi,1590\nbootless,2,3kinghenryvi,1590\nshow'd,2,3kinghenryvi,1590\nuntimely,2,3kinghenryvi,1590\nwisest,2,3kinghenryvi,1590\npresume,2,3kinghenryvi,1590\nchoice,2,3kinghenryvi,1590\nhark,2,3kinghenryvi,1590\nimprisonment,2,3kinghenryvi,1590\nunlook'd,2,3kinghenryvi,1590\nweapon,2,3kinghenryvi,1590\nEDMUND,2,3kinghenryvi,1590\nBishop,2,3kinghenryvi,1590\nround,2,3kinghenryvi,1590\nknit,2,3kinghenryvi,1590\nnatural,2,3kinghenryvi,1590\ncall'd,2,3kinghenryvi,1590\nshun,2,3kinghenryvi,1590\navoided,2,3kinghenryvi,1590\nUlysses,2,3kinghenryvi,1590\nweeps,2,3kinghenryvi,1590\nship,2,3kinghenryvi,1590\nforsworn,2,3kinghenryvi,1590\nrevell'd,2,3kinghenryvi,1590\nforlorn,2,3kinghenryvi,1590\nKeepers,2,3kinghenryvi,1590\nalive,2,3kinghenryvi,1590\nfool,2,3kinghenryvi,1590\nFell,2,3kinghenryvi,1590\nfresh,2,3kinghenryvi,1590\nhapless,2,3kinghenryvi,1590\nmayst,2,3kinghenryvi,1590\nfold,2,3kinghenryvi,1590\nforcibly,2,3kinghenryvi,1590\nchance,2,3kinghenryvi,1590\ncrook,2,3kinghenryvi,1590\nThink'st,2,3kinghenryvi,1590\nHard,2,3kinghenryvi,1590\nlurking,2,3kinghenryvi,1590\nsweetly,2,3kinghenryvi,1590\nwillingly,2,3kinghenryvi,1590\nArt,2,3kinghenryvi,1590\nbeams,2,3kinghenryvi,1590\nchange,2,3kinghenryvi,1590\nmoves,2,3kinghenryvi,1590\nspoken,2,3kinghenryvi,1590\nexecute,2,3kinghenryvi,1590\nlean,2,3kinghenryvi,1590\nComes,2,3kinghenryvi,1590\nroom,2,3kinghenryvi,1590\nglories,2,3kinghenryvi,1590\npeers,2,3kinghenryvi,1590\ncastle,2,3kinghenryvi,1590\ntarry,2,3kinghenryvi,1590\nnay,2,3kinghenryvi,1590\nStafford,2,3kinghenryvi,1590\nAgainst,2,3kinghenryvi,1590\nreport,2,3kinghenryvi,1590\nhill,2,3kinghenryvi,1590\nshouldst,2,3kinghenryvi,1590\nbreathed,2,3kinghenryvi,1590\nproveth,2,3kinghenryvi,1590\npawn'd,2,3kinghenryvi,1590\n'Gainst,2,3kinghenryvi,1590\nsending,2,3kinghenryvi,1590\n'Charge,2,3kinghenryvi,1590\nretreat,2,3kinghenryvi,1590\nSicils,2,3kinghenryvi,1590\nmounted,2,3kinghenryvi,1590\nrate,2,3kinghenryvi,1590\nireful,2,3kinghenryvi,1590\ndisinherited,2,3kinghenryvi,1590\nvantages,2,3kinghenryvi,1590\ndaily,2,3kinghenryvi,1590\nbrazen,2,3kinghenryvi,1590\nthings,2,3kinghenryvi,1590\nestate,2,3kinghenryvi,1590\nblunt,2,3kinghenryvi,1590\nyear,2,3kinghenryvi,1590\nborne,2,3kinghenryvi,1590\nnarrow,2,3kinghenryvi,1590\narguments,2,3kinghenryvi,1590\nescaped,2,3kinghenryvi,1590\nperform,2,3kinghenryvi,1590\nadopted,2,3kinghenryvi,1590\nthreefold,2,3kinghenryvi,1590\ndares,2,3kinghenryvi,1590\nfreely,2,3kinghenryvi,1590\nsay'st,2,3kinghenryvi,1590\npowers,2,3kinghenryvi,1590\nfamous,2,3kinghenryvi,1590\nrevive,2,3kinghenryvi,1590\nvanquish'd,2,3kinghenryvi,1590\nplaced,2,3kinghenryvi,1590\nmourn,2,3kinghenryvi,1590\nSoutham,2,3kinghenryvi,1590\nlodge,2,3kinghenryvi,1590\nleaves,2,3kinghenryvi,1590\narrived,2,3kinghenryvi,1590\nLong,2,3kinghenryvi,1590\nteeth,2,3kinghenryvi,1590\nWidow,2,3kinghenryvi,1590\nstars,2,3kinghenryvi,1590\nprize,2,3kinghenryvi,1590\nflinty,2,3kinghenryvi,1590\ntempest,2,3kinghenryvi,1590\nrobbers,2,3kinghenryvi,1590\nmale,2,3kinghenryvi,1590\nblush,2,3kinghenryvi,1590\n'gainst,2,3kinghenryvi,1590\nsovereign's,2,3kinghenryvi,1590\nmast,2,3kinghenryvi,1590\nthere's,2,3kinghenryvi,1590\ndearest,2,3kinghenryvi,1590\ndream,2,3kinghenryvi,1590\ncoward,2,3kinghenryvi,1590\nproudest,2,3kinghenryvi,1590\nthick,2,3kinghenryvi,1590\nknown,2,3kinghenryvi,1590\nflatter,2,3kinghenryvi,1590\nminutes,2,3kinghenryvi,1590\ngreatest,2,3kinghenryvi,1590\nlabour,2,3kinghenryvi,1590\nchide,2,3kinghenryvi,1590\nusing,2,3kinghenryvi,1590\ncaptive,2,3kinghenryvi,1590\nuncrown,2,3kinghenryvi,1590\nStanley,2,3kinghenryvi,1590\nMade,2,3kinghenryvi,1590\ntrouble,2,3kinghenryvi,1590\nfirm,2,3kinghenryvi,1590\nlieutenant,2,3kinghenryvi,1590\ntrembling,2,3kinghenryvi,1590\nsame,2,3kinghenryvi,1590\nimpudent,2,3kinghenryvi,1590\nrenown,2,3kinghenryvi,1590\nwinding,2,3kinghenryvi,1590\nsting,2,3kinghenryvi,1590\nwrongs,2,3kinghenryvi,1590\npurchase,2,3kinghenryvi,1590\ncourt,2,3kinghenryvi,1590\nwoes,2,3kinghenryvi,1590\nknife,2,3kinghenryvi,1590\ntroublous,2,3kinghenryvi,1590\nallegiance,2,3kinghenryvi,1590\nwalks,2,3kinghenryvi,1590\nclosed,2,3kinghenryvi,1590\nback'd,2,3kinghenryvi,1590\nAlarums,2,3kinghenryvi,1590\ndeath's,2,3kinghenryvi,1590\nsave,2,3kinghenryvi,1590\nbirthright,2,3kinghenryvi,1590\nlikes,2,3kinghenryvi,1590\nvow'd,2,3kinghenryvi,1590\ncalled,2,3kinghenryvi,1590\nwax,2,3kinghenryvi,1590\nflourish,2,3kinghenryvi,1590\nduty,2,3kinghenryvi,1590\nlinger,2,3kinghenryvi,1590\nable,2,3kinghenryvi,1590\nheave,2,3kinghenryvi,1590\nswarm,2,3kinghenryvi,1590\ncommanded,2,3kinghenryvi,1590\ngrowing,2,3kinghenryvi,1590\nintent,2,3kinghenryvi,1590\nForced,2,3kinghenryvi,1590\ngarland,2,3kinghenryvi,1590\nwood,2,3kinghenryvi,1590\nthey'll,2,3kinghenryvi,1590\npride,2,3kinghenryvi,1590\nwanton,2,3kinghenryvi,1590\nbereft,2,3kinghenryvi,1590\nwont,2,3kinghenryvi,1590\nthreats,2,3kinghenryvi,1590\nWestmoreland,2,3kinghenryvi,1590\nrobb'd,2,3kinghenryvi,1590\nSixth,2,3kinghenryvi,1590\nShalt,2,3kinghenryvi,1590\nagree,2,3kinghenryvi,1590\nseize,2,3kinghenryvi,1590\ntaken,2,3kinghenryvi,1590\nconference,2,3kinghenryvi,1590\nmarry,2,3kinghenryvi,1590\nwhat's,2,3kinghenryvi,1590\ntrodden,2,3kinghenryvi,1590\nanger,2,3kinghenryvi,1590\nforeign,2,3kinghenryvi,1590\nsways,2,3kinghenryvi,1590\nwomb,2,3kinghenryvi,1590\nowe,2,3kinghenryvi,1590\nwondrous,2,3kinghenryvi,1590\nrain,2,3kinghenryvi,1590\nCobham,2,3kinghenryvi,1590\nserves,2,3kinghenryvi,1590\nmasquers,2,3kinghenryvi,1590\nmarble,2,3kinghenryvi,1590\nhundred,2,3kinghenryvi,1590\nope,2,3kinghenryvi,1590\nwent,2,3kinghenryvi,1590\nfill'd,2,3kinghenryvi,1590\ncreate,2,3kinghenryvi,1590\nMake,2,3kinghenryvi,1590\nminds,2,3kinghenryvi,1590\ngiving,2,3kinghenryvi,1590\ndesert,2,3kinghenryvi,1590\namends,2,3kinghenryvi,1590\nfame,2,3kinghenryvi,1590\nStabbing,2,3kinghenryvi,1590\nscorns,2,3kinghenryvi,1590\nNaples,2,3kinghenryvi,1590\nperfect,2,3kinghenryvi,1590\nbark,2,3kinghenryvi,1590\nminded,2,3kinghenryvi,1590\nsmooth,2,3kinghenryvi,1590\nbutcher,2,3kinghenryvi,1590\nperceive,2,3kinghenryvi,1590\nsetter,2,3kinghenryvi,1590\nwatch'd,2,3kinghenryvi,1590\n'Warwick,2,3kinghenryvi,1590\nmeaning,2,3kinghenryvi,1590\nbreeder,2,3kinghenryvi,1590\ngentleman,2,3kinghenryvi,1590\nbalm,2,3kinghenryvi,1590\ndam,2,3kinghenryvi,1590\nlenity,2,3kinghenryvi,1590\nfare,2,3kinghenryvi,1590\nflock,2,3kinghenryvi,1590\nshepherd,2,3kinghenryvi,1590\ngallant,2,3kinghenryvi,1590\nCaesar,2,3kinghenryvi,1590\nconstant,2,3kinghenryvi,1590\nman's,2,3kinghenryvi,1590\ngentlemen,2,3kinghenryvi,1590\nexcursions,2,3kinghenryvi,1590\ntorment,2,3kinghenryvi,1590\nshoot,2,3kinghenryvi,1590\npledge,2,3kinghenryvi,1590\nholds,2,3kinghenryvi,1590\nshook,2,3kinghenryvi,1590\nclear,2,3kinghenryvi,1590\nthank,2,3kinghenryvi,1590\n'Courage,2,3kinghenryvi,1590\nsparkling,2,3kinghenryvi,1590\narticles,2,3kinghenryvi,1590\npeaceful,2,3kinghenryvi,1590\ndangerous,2,3kinghenryvi,1590\nfollows,2,3kinghenryvi,1590\nhonest,2,3kinghenryvi,1590\npresumption,2,3kinghenryvi,1590\nmurdering,2,3kinghenryvi,1590\nwinter,2,3kinghenryvi,1590\nflood,2,3kinghenryvi,1590\nbesiege,2,3kinghenryvi,1590\nWhere's,2,3kinghenryvi,1590\nseal,2,3kinghenryvi,1590\nfavours,2,3kinghenryvi,1590\ntitle's,2,3kinghenryvi,1590\nfalsehood,2,3kinghenryvi,1590\nhearts,2,3kinghenryvi,1590\ncountry's,2,3kinghenryvi,1590\nprithee,2,3kinghenryvi,1590\nlovely,2,3kinghenryvi,1590\naloof,2,3kinghenryvi,1590\nsupposed,2,3kinghenryvi,1590\nlook'd,2,3kinghenryvi,1590\nNe'er,2,3kinghenryvi,1590\nconclude,2,3kinghenryvi,1590\nWakefield,2,3kinghenryvi,1590\ntells,2,3kinghenryvi,1590\ncost,2,3kinghenryvi,1590\nshapen,2,3kinghenryvi,1590\nTrue,2,3kinghenryvi,1590\nResolve,2,3kinghenryvi,1590\nshaped,2,3kinghenryvi,1590\ntroop,2,3kinghenryvi,1590\nthrust,2,3kinghenryvi,1590\nloyalty,2,3kinghenryvi,1590\ndownright,2,3kinghenryvi,1590\nlovest,2,3kinghenryvi,1590\nentreat,2,3kinghenryvi,1590\nwretched,2,3kinghenryvi,1590\ntied,2,3kinghenryvi,1590\nextremes,2,3kinghenryvi,1590\nprayer,2,3kinghenryvi,1590\nblushing,2,3kinghenryvi,1590\nsecure,2,3kinghenryvi,1590\nForthwith,2,3kinghenryvi,1590\nled,2,3kinghenryvi,1590\nalas,2,3kinghenryvi,1590\nordain'd,2,3kinghenryvi,1590\nblast,2,3kinghenryvi,1590\ntriumphs,2,3kinghenryvi,1590\ndrooping,2,3kinghenryvi,1590\nheated,2,3kinghenryvi,1590\nstorms,2,3kinghenryvi,1590\nsleep,2,3kinghenryvi,1590\nforwardness,2,3kinghenryvi,1590\npersuade,2,3kinghenryvi,1590\nhonesty,2,3kinghenryvi,1590\nqueen's,2,3kinghenryvi,1590\nprotectors,2,3kinghenryvi,1590\nclouds,2,3kinghenryvi,1590\nseldom,2,3kinghenryvi,1590\nforced,2,3kinghenryvi,1590\ngust,2,3kinghenryvi,1590\nrapier's,2,3kinghenryvi,1590\nreward,2,3kinghenryvi,1590\nburst,2,3kinghenryvi,1590\ndread,2,3kinghenryvi,1590\nmet,2,3kinghenryvi,1590\nswim,2,3kinghenryvi,1590\nreadiness,2,3kinghenryvi,1590\nSince,2,3kinghenryvi,1590\nabuse,2,3kinghenryvi,1590\nMen,2,3kinghenryvi,1590\nwidower,2,3kinghenryvi,1590\npowerful,2,3kinghenryvi,1590\nsever'd,2,3kinghenryvi,1590\nstrokes,2,3kinghenryvi,1590\nBootless,2,3kinghenryvi,1590\nresembles,2,3kinghenryvi,1590\npeck,2,3kinghenryvi,1590\nlimed,2,3kinghenryvi,1590\nVII,2,3kinghenryvi,1590\nmutinous,2,3kinghenryvi,1590\nshroud,2,3kinghenryvi,1590\nbetimes,2,3kinghenryvi,1590\nsuspect,2,3kinghenryvi,1590\nsailors,2,3kinghenryvi,1590\nstrange,2,3kinghenryvi,1590\ncontend,2,3kinghenryvi,1590\nslay,2,3kinghenryvi,1590\ncareless,2,3kinghenryvi,1590\nprovide,2,3kinghenryvi,1590\nbrat,2,3kinghenryvi,1590\nswallow,2,3kinghenryvi,1590\ndare,2,3kinghenryvi,1590\nsudden,2,3kinghenryvi,1590\nHe's,2,3kinghenryvi,1590\ncatch,2,3kinghenryvi,1590\ntop,2,3kinghenryvi,1590\nproclamation,2,3kinghenryvi,1590\nBring,2,3kinghenryvi,1590\nUnsheathe,2,3kinghenryvi,1590\nhewn,2,3kinghenryvi,1590\nshake,2,3kinghenryvi,1590\nbehold,2,3kinghenryvi,1590\npass'd,2,3kinghenryvi,1590\nTake,2,3kinghenryvi,1590\nrewards,2,3kinghenryvi,1590\nwithout,2,3kinghenryvi,1590\nambitious,2,3kinghenryvi,1590\n'good,2,3kinghenryvi,1590\nstol'n,2,3kinghenryvi,1590\nFair,2,3kinghenryvi,1590\nboots,2,3kinghenryvi,1590\npress'd,2,3kinghenryvi,1590\nYorkshire,2,3kinghenryvi,1590\nremorse,2,3kinghenryvi,1590\nspectacle,2,3kinghenryvi,1590\nKent,2,3kinghenryvi,1590\nforbear,2,3kinghenryvi,1590\nbids,2,3kinghenryvi,1590\nintends,2,3kinghenryvi,1590\nRutland's,2,3kinghenryvi,1590\nsubjects',2,3kinghenryvi,1590\nhunting,2,3kinghenryvi,1590\nundertake,2,3kinghenryvi,1590\nsands,2,3kinghenryvi,1590\nTut,2,3kinghenryvi,1590\nsway,2,3kinghenryvi,1590\nlady,2,3kinghenryvi,1590\ndaughters,2,3kinghenryvi,1590\no'er,3,3kinghenryvi,1590\nred,3,3kinghenryvi,1590\ncountry,3,3kinghenryvi,1590\nscouts,3,3kinghenryvi,1590\nwoman's,3,3kinghenryvi,1590\nbrows,3,3kinghenryvi,1590\nrock,3,3kinghenryvi,1590\nheart's,3,3kinghenryvi,1590\nsingle,3,3kinghenryvi,1590\nvain,3,3kinghenryvi,1590\nsighs,3,3kinghenryvi,1590\nfought,3,3kinghenryvi,1590\nsuccession,3,3kinghenryvi,1590\ncowardice,3,3kinghenryvi,1590\nprey,3,3kinghenryvi,1590\nodds,3,3kinghenryvi,1590\ntrust,3,3kinghenryvi,1590\nremain,3,3kinghenryvi,1590\njoys,3,3kinghenryvi,1590\nwounded,3,3kinghenryvi,1590\nRICHMOND,3,3kinghenryvi,1590\ndemand,3,3kinghenryvi,1590\nplague,3,3kinghenryvi,1590\nsad,3,3kinghenryvi,1590\nfeather,3,3kinghenryvi,1590\nslept,3,3kinghenryvi,1590\nGive,3,3kinghenryvi,1590\nbroken,3,3kinghenryvi,1590\ntrumpet,3,3kinghenryvi,1590\nanchor,3,3kinghenryvi,1590\ntoward,3,3kinghenryvi,1590\npolicy,3,3kinghenryvi,1590\nperjured,3,3kinghenryvi,1590\nsuns,3,3kinghenryvi,1590\nsin,3,3kinghenryvi,1590\nHUGH,3,3kinghenryvi,1590\nthink'st,3,3kinghenryvi,1590\ndeceived,3,3kinghenryvi,1590\n'Tell,3,3kinghenryvi,1590\nbirds,3,3kinghenryvi,1590\nbringing,3,3kinghenryvi,1590\nsworn,3,3kinghenryvi,1590\nmelting,3,3kinghenryvi,1590\nbeloved,3,3kinghenryvi,1590\nleague,3,3kinghenryvi,1590\nAttendants,3,3kinghenryvi,1590\npuissant,3,3kinghenryvi,1590\noffence,3,3kinghenryvi,1590\ncivil,3,3kinghenryvi,1590\nbliss,3,3kinghenryvi,1590\nMontgomery,3,3kinghenryvi,1590\nSTANLEY,3,3kinghenryvi,1590\nPardon,3,3kinghenryvi,1590\nwhite,3,3kinghenryvi,1590\nshining,3,3kinghenryvi,1590\nabove,3,3kinghenryvi,1590\npromise,3,3kinghenryvi,1590\ndescent,3,3kinghenryvi,1590\nhumbly,3,3kinghenryvi,1590\n'scaped,3,3kinghenryvi,1590\nusurp,3,3kinghenryvi,1590\nexecutioner,3,3kinghenryvi,1590\nsteal,3,3kinghenryvi,1590\nharmless,3,3kinghenryvi,1590\nwipe,3,3kinghenryvi,1590\nruin,3,3kinghenryvi,1590\nmurder,3,3kinghenryvi,1590\nsucceed,3,3kinghenryvi,1590\nrule,3,3kinghenryvi,1590\nwash,3,3kinghenryvi,1590\ndesire,3,3kinghenryvi,1590\nmanhood,3,3kinghenryvi,1590\nsign,3,3kinghenryvi,1590\nprotector,3,3kinghenryvi,1590\npatience,3,3kinghenryvi,1590\nbow,3,3kinghenryvi,1590\nWhiles,3,3kinghenryvi,1590\nshortly,3,3kinghenryvi,1590\nunnatural,3,3kinghenryvi,1590\nsmile,3,3kinghenryvi,1590\ncruel,3,3kinghenryvi,1590\nkept,3,3kinghenryvi,1590\nbeg,3,3kinghenryvi,1590\npast,3,3kinghenryvi,1590\npass,3,3kinghenryvi,1590\nobey,3,3kinghenryvi,1590\nGood,3,3kinghenryvi,1590\nsith,3,3kinghenryvi,1590\nnigh,3,3kinghenryvi,1590\ncar,3,3kinghenryvi,1590\nwoful,3,3kinghenryvi,1590\nshadow,3,3kinghenryvi,1590\nsepulchre,3,3kinghenryvi,1590\njust,3,3kinghenryvi,1590\nconquest,3,3kinghenryvi,1590\nAbout,3,3kinghenryvi,1590\nstabb'd,3,3kinghenryvi,1590\nconvey'd,3,3kinghenryvi,1590\nanointed,3,3kinghenryvi,1590\nquite,3,3kinghenryvi,1590\nsail,3,3kinghenryvi,1590\nwretch,3,3kinghenryvi,1590\nimage,3,3kinghenryvi,1590\nraise,3,3kinghenryvi,1590\nstops,3,3kinghenryvi,1590\nbeat,3,3kinghenryvi,1590\nstoop,3,3kinghenryvi,1590\nsuccor,3,3kinghenryvi,1590\nlegs,3,3kinghenryvi,1590\nnapkin,3,3kinghenryvi,1590\nstain'd,3,3kinghenryvi,1590\ngame,3,3kinghenryvi,1590\ndoom,3,3kinghenryvi,1590\nbodies,3,3kinghenryvi,1590\ndelay,3,3kinghenryvi,1590\nsmall,3,3kinghenryvi,1590\nslily,3,3kinghenryvi,1590\nabide,3,3kinghenryvi,1590\nmiserable,3,3kinghenryvi,1590\ncommands,3,3kinghenryvi,1590\nknew,3,3kinghenryvi,1590\nBecause,3,3kinghenryvi,1590\nSOMERVILLE,3,3kinghenryvi,1590\nvalour,3,3kinghenryvi,1590\neasy,3,3kinghenryvi,1590\naxe,3,3kinghenryvi,1590\npark,3,3kinghenryvi,1590\nCall,3,3kinghenryvi,1590\npale,3,3kinghenryvi,1590\nGaunt,3,3kinghenryvi,1590\nweeds,3,3kinghenryvi,1590\nsignal,3,3kinghenryvi,1590\nSandal,3,3kinghenryvi,1590\nshut,3,3kinghenryvi,1590\ndeny,3,3kinghenryvi,1590\npluck,3,3kinghenryvi,1590\nwhether,3,3kinghenryvi,1590\nUnder,3,3kinghenryvi,1590\nvengeance,3,3kinghenryvi,1590\nMONTGOMERY,3,3kinghenryvi,1590\npain,3,3kinghenryvi,1590\nwinter's,3,3kinghenryvi,1590\nfiery,3,3kinghenryvi,1590\nmock,3,3kinghenryvi,1590\nmayor,3,3kinghenryvi,1590\nfrown,3,3kinghenryvi,1590\ndevise,3,3kinghenryvi,1590\nstones,3,3kinghenryvi,1590\nhate,3,3kinghenryvi,1590\nshow,3,3kinghenryvi,1590\ndismal,3,3kinghenryvi,1590\nobject,3,3kinghenryvi,1590\narmour,3,3kinghenryvi,1590\ncheque,3,3kinghenryvi,1590\njudgment,3,3kinghenryvi,1590\npurple,3,3kinghenryvi,1590\nenjoy,3,3kinghenryvi,1590\nguess,3,3kinghenryvi,1590\nlead,3,3kinghenryvi,1590\ncontented,3,3kinghenryvi,1590\noccasion,3,3kinghenryvi,1590\nDUKE,3,3kinghenryvi,1590\nthinks,3,3kinghenryvi,1590\nnone,3,3kinghenryvi,1590\ngently,3,3kinghenryvi,1590\nPeace,3,3kinghenryvi,1590\nmildness,3,3kinghenryvi,1590\nspread,3,3kinghenryvi,1590\ntraitors,3,3kinghenryvi,1590\nExcursions,3,3kinghenryvi,1590\nwolves,3,3kinghenryvi,1590\narise,3,3kinghenryvi,1590\nDoth,3,3kinghenryvi,1590\nwonder'd,3,3kinghenryvi,1590\nSome,3,3kinghenryvi,1590\nmild,3,3kinghenryvi,1590\nfares,3,3kinghenryvi,1590\nescape,3,3kinghenryvi,1590\nrests,3,3kinghenryvi,1590\npresently,3,3kinghenryvi,1590\nquench,3,3kinghenryvi,1590\nwot,3,3kinghenryvi,1590\nwon,3,3kinghenryvi,1590\nshoulder,3,3kinghenryvi,1590\nthreatening,3,3kinghenryvi,1590\nwrath,3,3kinghenryvi,1590\nfire,3,3kinghenryvi,1590\npossession,3,3kinghenryvi,1590\npause,3,3kinghenryvi,1590\npassage,3,3kinghenryvi,1590\ndishonour,3,3kinghenryvi,1590\noft,3,3kinghenryvi,1590\nbands,3,3kinghenryvi,1590\nhears,3,3kinghenryvi,1590\nusurping,3,3kinghenryvi,1590\nremains,3,3kinghenryvi,1590\ndust,3,3kinghenryvi,1590\nThink,3,3kinghenryvi,1590\nperforce,3,3kinghenryvi,1590\nthemselves,3,3kinghenryvi,1590\nBrittany,3,3kinghenryvi,1590\nserve,3,3kinghenryvi,1590\nprick,3,3kinghenryvi,1590\nowl,3,3kinghenryvi,1590\ndisinherit,3,3kinghenryvi,1590\nrequite,3,3kinghenryvi,1590\ntakes,3,3kinghenryvi,1590\nsupply,3,3kinghenryvi,1590\nyoke,3,3kinghenryvi,1590\nguilty,3,3kinghenryvi,1590\nheirs,3,3kinghenryvi,1590\ngrieve,3,3kinghenryvi,1590\nevil,3,3kinghenryvi,1590\nadvertised,3,3kinghenryvi,1590\nThat's,3,3kinghenryvi,1590\nHadst,3,3kinghenryvi,1590\nsilly,3,3kinghenryvi,1590\nplease,3,3kinghenryvi,1590\npassion,3,3kinghenryvi,1590\nunawares,3,3kinghenryvi,1590\nUnto,3,3kinghenryvi,1590\nshows,3,3kinghenryvi,1590\nbite,3,3kinghenryvi,1590\nJerusalem,3,3kinghenryvi,1590\nlived,3,3kinghenryvi,1590\ninsulting,3,3kinghenryvi,1590\nlad,3,3kinghenryvi,1590\nsoul's,3,3kinghenryvi,1590\nlay,3,3kinghenryvi,1590\nshameless,3,3kinghenryvi,1590\nholy,3,3kinghenryvi,1590\nrequest,3,3kinghenryvi,1590\nresolution,3,3kinghenryvi,1590\ntask,3,3kinghenryvi,1590\nBrave,3,3kinghenryvi,1590\nTroy,3,3kinghenryvi,1590\nsunshine,3,3kinghenryvi,1590\nBarnet,3,3kinghenryvi,1590\nneedful,3,3kinghenryvi,1590\ndefend,3,3kinghenryvi,1590\ncamest,3,3kinghenryvi,1590\ntree,3,3kinghenryvi,1590\nwhilst,3,3kinghenryvi,1590\nprison,3,3kinghenryvi,1590\ngoes,3,3kinghenryvi,1590\nseized,3,3kinghenryvi,1590\nuntil,3,3kinghenryvi,1590\nTwo,3,3kinghenryvi,1590\nmad,3,3kinghenryvi,1590\nlearn,3,3kinghenryvi,1590\nwarlike,3,3kinghenryvi,1590\nchosen,3,3kinghenryvi,1590\nglory,3,3kinghenryvi,1590\nburns,3,3kinghenryvi,1590\nbody's,3,3kinghenryvi,1590\nGreat,3,3kinghenryvi,1590\nbethink,3,3kinghenryvi,1590\nwound,3,3kinghenryvi,1590\nhenceforth,3,3kinghenryvi,1590\nthither,3,3kinghenryvi,1590\nFifth,3,3kinghenryvi,1590\nrevenged,3,3kinghenryvi,1590\nhurt,3,3kinghenryvi,1590\nshade,3,3kinghenryvi,1590\nsilent,3,3kinghenryvi,1590\nsimple,3,3kinghenryvi,1590\nweight,3,3kinghenryvi,1590\nrocks,3,3kinghenryvi,1590\nlamb,3,3kinghenryvi,1590\nmonths,3,3kinghenryvi,1590\nUntil,3,3kinghenryvi,1590\nfence,3,3kinghenryvi,1590\ndrown'd,3,3kinghenryvi,1590\nmis,3,3kinghenryvi,1590\nrepair,3,3kinghenryvi,1590\nwouldst,3,3kinghenryvi,1590\nturn'd,3,3kinghenryvi,1590\nsummer,3,3kinghenryvi,1590\nattended,4,3kinghenryvi,1590\ntreason,4,3kinghenryvi,1590\nNed,4,3kinghenryvi,1590\ntold,4,3kinghenryvi,1590\nLORD,4,3kinghenryvi,1590\nhorse,4,3kinghenryvi,1590\nresign,4,3kinghenryvi,1590\nbranch,4,3kinghenryvi,1590\npray,4,3kinghenryvi,1590\nMust,4,3kinghenryvi,1590\nbrook,4,3kinghenryvi,1590\nthirty,4,3kinghenryvi,1590\nlies,4,3kinghenryvi,1590\nrun,4,3kinghenryvi,1590\nproclaim,4,3kinghenryvi,1590\ncare,4,3kinghenryvi,1590\nPoor,4,3kinghenryvi,1590\nafterwards,4,3kinghenryvi,1590\ntown,4,3kinghenryvi,1590\nsoft,4,3kinghenryvi,1590\nMethinks,4,3kinghenryvi,1590\ntowns,4,3kinghenryvi,1590\nlight,4,3kinghenryvi,1590\nembrace,4,3kinghenryvi,1590\ncounsel,4,3kinghenryvi,1590\nforthwith,4,3kinghenryvi,1590\nfaults,4,3kinghenryvi,1590\nheavens,4,3kinghenryvi,1590\nPEMBROKE,4,3kinghenryvi,1590\nThere,4,3kinghenryvi,1590\nuncles,4,3kinghenryvi,1590\nSound,4,3kinghenryvi,1590\nfruit,4,3kinghenryvi,1590\nservice,4,3kinghenryvi,1590\nbold,4,3kinghenryvi,1590\njoin'd,4,3kinghenryvi,1590\nsceptre,4,3kinghenryvi,1590\ntent,4,3kinghenryvi,1590\nhe's,4,3kinghenryvi,1590\neach,4,3kinghenryvi,1590\nwherefore,4,3kinghenryvi,1590\nside,4,3kinghenryvi,1590\nstir,4,3kinghenryvi,1590\nHold,4,3kinghenryvi,1590\norator,4,3kinghenryvi,1590\nmeasure,4,3kinghenryvi,1590\npay,4,3kinghenryvi,1590\nunless,4,3kinghenryvi,1590\nsince,4,3kinghenryvi,1590\nfortune's,4,3kinghenryvi,1590\ndeserved,4,3kinghenryvi,1590\nease,4,3kinghenryvi,1590\ndespair,4,3kinghenryvi,1590\ntroops,4,3kinghenryvi,1590\ngrandfather,4,3kinghenryvi,1590\nsire,4,3kinghenryvi,1590\nbend,4,3kinghenryvi,1590\nbush,4,3kinghenryvi,1590\nkindness,4,3kinghenryvi,1590\nClifford's,4,3kinghenryvi,1590\nDies,4,3kinghenryvi,1590\nBoth,4,3kinghenryvi,1590\ncrowns,4,3kinghenryvi,1590\nstorm,4,3kinghenryvi,1590\ngovernment,4,3kinghenryvi,1590\ndeer,4,3kinghenryvi,1590\nconfess,4,3kinghenryvi,1590\naim,4,3kinghenryvi,1590\nair,4,3kinghenryvi,1590\ngift,4,3kinghenryvi,1590\nsafe,4,3kinghenryvi,1590\nneeds,4,3kinghenryvi,1590\nspeed,4,3kinghenryvi,1590\nshed,4,3kinghenryvi,1590\nrealm,4,3kinghenryvi,1590\npursuit,4,3kinghenryvi,1590\nplant,4,3kinghenryvi,1590\ncrave,4,3kinghenryvi,1590\ncousin,4,3kinghenryvi,1590\nYea,4,3kinghenryvi,1590\nYes,4,3kinghenryvi,1590\nresolved,4,3kinghenryvi,1590\nill,4,3kinghenryvi,1590\nspend,4,3kinghenryvi,1590\ntwenty,4,3kinghenryvi,1590\nact,4,3kinghenryvi,1590\nready,4,3kinghenryvi,1590\nharm,4,3kinghenryvi,1590\nkilled,4,3kinghenryvi,1590\nhalf,4,3kinghenryvi,1590\nmessenger,4,3kinghenryvi,1590\nkingly,4,3kinghenryvi,1590\nMore,4,3kinghenryvi,1590\nhusband's,4,3kinghenryvi,1590\nliberty,4,3kinghenryvi,1590\nask,4,3kinghenryvi,1590\ndreadful,4,3kinghenryvi,1590\nrough,4,3kinghenryvi,1590\nsecret,4,3kinghenryvi,1590\nAre,4,3kinghenryvi,1590\ndeadly,4,3kinghenryvi,1590\njustice,4,3kinghenryvi,1590\nthrough,4,3kinghenryvi,1590\nkeeps,4,3kinghenryvi,1590\nequal,4,3kinghenryvi,1590\nLords,4,3kinghenryvi,1590\nfaith,4,3kinghenryvi,1590\ndeposed,4,3kinghenryvi,1590\nbears,4,3kinghenryvi,1590\ntender,4,3kinghenryvi,1590\nours,4,3kinghenryvi,1590\nSTAFFORD,4,3kinghenryvi,1590\nforest,4,3kinghenryvi,1590\nAlban's,4,3kinghenryvi,1590\nyours,4,3kinghenryvi,1590\nalready,4,3kinghenryvi,1590\nchief,4,3kinghenryvi,1590\nknows,4,3kinghenryvi,1590\nwoe,4,3kinghenryvi,1590\nRichmond,4,3kinghenryvi,1590\nbecause,4,3kinghenryvi,1590\nThird,4,3kinghenryvi,1590\nbehalf,4,3kinghenryvi,1590\nclose,4,3kinghenryvi,1590\ngrave,4,3kinghenryvi,1590\nScotland,4,3kinghenryvi,1590\nretire,4,3kinghenryvi,1590\nformer,4,3kinghenryvi,1590\nwit,4,3kinghenryvi,1590\nfive,4,3kinghenryvi,1590\nwin,4,3kinghenryvi,1590\ndiadem,4,3kinghenryvi,1590\nselfsame,4,3kinghenryvi,1590\nwalls,4,3kinghenryvi,1590\ncrown'd,4,3kinghenryvi,1590\nbetween,4,3kinghenryvi,1590\nrepossess,4,3kinghenryvi,1590\nbrother's,4,3kinghenryvi,1590\ndanger,4,3kinghenryvi,1590\ncoming,4,3kinghenryvi,1590\nnext,4,3kinghenryvi,1590\nThree,4,3kinghenryvi,1590\nwolf,4,3kinghenryvi,1590\ndurst,4,3kinghenryvi,1590\ncloud,4,3kinghenryvi,1590\nwert,4,3kinghenryvi,1590\nCastle,4,3kinghenryvi,1590\npatient,4,3kinghenryvi,1590\nwhither,4,3kinghenryvi,1590\nwaves,4,3kinghenryvi,1590\nbird,4,3kinghenryvi,1590\nWelcome,4,3kinghenryvi,1590\nmischance,4,3kinghenryvi,1590\ngiven,4,3kinghenryvi,1590\nsatisfied,4,3kinghenryvi,1590\nalways,4,3kinghenryvi,1590\nlow,4,3kinghenryvi,1590\ndrums,4,3kinghenryvi,1590\neither,4,3kinghenryvi,1590\nMine,4,3kinghenryvi,1590\nsound,4,3kinghenryvi,1590\nblame,4,3kinghenryvi,1590\nsend,4,3kinghenryvi,1590\nmother's,4,3kinghenryvi,1590\nNobleman,4,3kinghenryvi,1590\nsent,4,3kinghenryvi,1590\nlie,4,3kinghenryvi,1590\nseated,4,3kinghenryvi,1590\nabroad,4,3kinghenryvi,1590\nspite,4,3kinghenryvi,1590\nbegins,4,3kinghenryvi,1590\nsteeds,4,3kinghenryvi,1590\nstraight,4,3kinghenryvi,1590\nthoughts,4,3kinghenryvi,1590\nlips,4,3kinghenryvi,1590\nmourning,4,3kinghenryvi,1590\nvirtue,4,3kinghenryvi,1590\nnature,4,3kinghenryvi,1590\nlaid,4,3kinghenryvi,1590\nLest,4,3kinghenryvi,1590\nbred,4,3kinghenryvi,1590\nspirit,4,3kinghenryvi,1590\noaths,4,3kinghenryvi,1590\nSuppose,4,3kinghenryvi,1590\nenemy,4,3kinghenryvi,1590\nwomen,4,3kinghenryvi,1590\nto,516,3kinghenryvi,1590\nforbid,5,3kinghenryvi,1590\nruthless,5,3kinghenryvi,1590\nGrey,5,3kinghenryvi,1590\nhell,5,3kinghenryvi,1590\nStay,5,3kinghenryvi,1590\nprisoner,5,3kinghenryvi,1590\nsight,5,3kinghenryvi,1590\nwithal,5,3kinghenryvi,1590\nsort,5,3kinghenryvi,1590\nWould,5,3kinghenryvi,1590\nUpon,5,3kinghenryvi,1590\nbecome,5,3kinghenryvi,1590\ncheeks,5,3kinghenryvi,1590\ncase,5,3kinghenryvi,1590\njest,5,3kinghenryvi,1590\ndraw,5,3kinghenryvi,1590\nyourself,5,3kinghenryvi,1590\nhighness,5,3kinghenryvi,1590\nsure,5,3kinghenryvi,1590\ncheer,5,3kinghenryvi,1590\ngolden,5,3kinghenryvi,1590\nblack,5,3kinghenryvi,1590\nfurther,5,3kinghenryvi,1590\n'twere,5,3kinghenryvi,1590\nvirtuous,5,3kinghenryvi,1590\nBurgundy,5,3kinghenryvi,1590\nslaughter,5,3kinghenryvi,1590\nfell,5,3kinghenryvi,1590\nSuch,5,3kinghenryvi,1590\nFarewell,5,3kinghenryvi,1590\nWas,5,3kinghenryvi,1590\nwings,5,3kinghenryvi,1590\nThanks,5,3kinghenryvi,1590\nkill'd,5,3kinghenryvi,1590\nthence,5,3kinghenryvi,1590\nbring,5,3kinghenryvi,1590\nwant,5,3kinghenryvi,1590\nwish,5,3kinghenryvi,1590\nwise,5,3kinghenryvi,1590\nsteel,5,3kinghenryvi,1590\nwast,5,3kinghenryvi,1590\nalliance,5,3kinghenryvi,1590\nFrench,5,3kinghenryvi,1590\nhas,5,3kinghenryvi,1590\nAt,5,3kinghenryvi,1590\nAn,5,3kinghenryvi,1590\nneither,5,3kinghenryvi,1590\ndeeds,5,3kinghenryvi,1590\nTutor,5,3kinghenryvi,1590\nbelike,5,3kinghenryvi,1590\nforce,5,3kinghenryvi,1590\ntear,5,3kinghenryvi,1590\nplay,5,3kinghenryvi,1590\nglorious,5,3kinghenryvi,1590\nsits,5,3kinghenryvi,1590\nchallenge,5,3kinghenryvi,1590\ngoodly,5,3kinghenryvi,1590\nweak,5,3kinghenryvi,1590\ndost,5,3kinghenryvi,1590\npeople,5,3kinghenryvi,1590\nfrowns,5,3kinghenryvi,1590\nLike,5,3kinghenryvi,1590\ndeed,5,3kinghenryvi,1590\ndefence,5,3kinghenryvi,1590\nforget,5,3kinghenryvi,1590\nmost,5,3kinghenryvi,1590\naside,5,3kinghenryvi,1590\nadd,5,3kinghenryvi,1590\nhard,5,3kinghenryvi,1590\nwelcome,5,3kinghenryvi,1590\nplain,5,3kinghenryvi,1590\nmighty,5,3kinghenryvi,1590\nfoot,5,3kinghenryvi,1590\nfew,5,3kinghenryvi,1590\nhaving,5,3kinghenryvi,1590\nhere's,5,3kinghenryvi,1590\nroot,5,3kinghenryvi,1590\noften,5,3kinghenryvi,1590\nrose,5,3kinghenryvi,1590\nwater,5,3kinghenryvi,1590\nyou'll,5,3kinghenryvi,1590\nyouth,5,3kinghenryvi,1590\nmortal,5,3kinghenryvi,1590\ndidst,5,3kinghenryvi,1590\nissue,5,3kinghenryvi,1590\nfree,5,3kinghenryvi,1590\nget,5,3kinghenryvi,1590\nthrow,5,3kinghenryvi,1590\nWe'll,5,3kinghenryvi,1590\nsays,5,3kinghenryvi,1590\nheavy,5,3kinghenryvi,1590\nCoventry,5,3kinghenryvi,1590\narmy,5,3kinghenryvi,1590\nCan,5,3kinghenryvi,1590\nrise,5,3kinghenryvi,1590\nrage,5,3kinghenryvi,1590\nFourth,5,3kinghenryvi,1590\nwounds,5,3kinghenryvi,1590\ncompany,5,3kinghenryvi,1590\neven,5,3kinghenryvi,1590\nfill,5,3kinghenryvi,1590\nsafety,5,3kinghenryvi,1590\ndepart,5,3kinghenryvi,1590\ntrumpets,5,3kinghenryvi,1590\ntalk,5,3kinghenryvi,1590\nhome,5,3kinghenryvi,1590\nmaster,5,3kinghenryvi,1590\ncut,5,3kinghenryvi,1590\nalone,5,3kinghenryvi,1590\nseen,5,3kinghenryvi,1590\nthereof,5,3kinghenryvi,1590\nperson,5,3kinghenryvi,1590\nmadam,5,3kinghenryvi,1590\ntriumph,5,3kinghenryvi,1590\nleast,5,3kinghenryvi,1590\nEARL,5,3kinghenryvi,1590\nwarriors,5,3kinghenryvi,1590\nlion,5,3kinghenryvi,1590\nspring,5,3kinghenryvi,1590\nland,5,3kinghenryvi,1590\nsuccess,5,3kinghenryvi,1590\nhe'll,5,3kinghenryvi,1590\ncommand,5,3kinghenryvi,1590\nwoman,5,3kinghenryvi,1590\njoin,6,3kinghenryvi,1590\ntook,6,3kinghenryvi,1590\nAlas,6,3kinghenryvi,1590\nhaste,6,3kinghenryvi,1590\nfury,6,3kinghenryvi,1590\ncharge,6,3kinghenryvi,1590\nyears,6,3kinghenryvi,1590\nsubjects,6,3kinghenryvi,1590\nenough,6,3kinghenryvi,1590\n'twas,6,3kinghenryvi,1590\nsubject,6,3kinghenryvi,1590\nwithin,6,3kinghenryvi,1590\nfault,6,3kinghenryvi,1590\nhumble,6,3kinghenryvi,1590\nbride,6,3kinghenryvi,1590\nclaim,6,3kinghenryvi,1590\nStabs,6,3kinghenryvi,1590\nquarrel,6,3kinghenryvi,1590\nbed,6,3kinghenryvi,1590\nears,6,3kinghenryvi,1590\nprove,6,3kinghenryvi,1590\nchildren,6,3kinghenryvi,1590\nSpeak,6,3kinghenryvi,1590\ndespite,6,3kinghenryvi,1590\nlonger,6,3kinghenryvi,1590\nlook,6,3kinghenryvi,1590\nay,6,3kinghenryvi,1590\nthat's,6,3kinghenryvi,1590\nhadst,6,3kinghenryvi,1590\nknee,6,3kinghenryvi,1590\ncourse,6,3kinghenryvi,1590\nopen,6,3kinghenryvi,1590\npoint,6,3kinghenryvi,1590\nbroke,6,3kinghenryvi,1590\nShould,6,3kinghenryvi,1590\nwonder,6,3kinghenryvi,1590\neye,6,3kinghenryvi,1590\ninto,6,3kinghenryvi,1590\nhigh,6,3kinghenryvi,1590\nLook,6,3kinghenryvi,1590\ntowards,6,3kinghenryvi,1590\nend,6,3kinghenryvi,1590\nQueen,6,3kinghenryvi,1590\ncourage,6,3kinghenryvi,1590\nAll,6,3kinghenryvi,1590\nblow,6,3kinghenryvi,1590\nneed,6,3kinghenryvi,1590\nletters,6,3kinghenryvi,1590\nflies,6,3kinghenryvi,1590\nsake,6,3kinghenryvi,1590\nHuntsman,6,3kinghenryvi,1590\nflight,6,3kinghenryvi,1590\nThus,6,3kinghenryvi,1590\nforward,6,3kinghenryvi,1590\nSIR,6,3kinghenryvi,1590\nfollowers,6,3kinghenryvi,1590\nmethinks,6,3kinghenryvi,1590\nthree,6,3kinghenryvi,1590\nSweet,6,3kinghenryvi,1590\nfind,6,3kinghenryvi,1590\nhour,6,3kinghenryvi,1590\nkiss,6,3kinghenryvi,1590\nfast,6,3kinghenryvi,1590\nreason,6,3kinghenryvi,1590\nseas,6,3kinghenryvi,1590\nswear,6,3kinghenryvi,1590\nseem,6,3kinghenryvi,1590\ntide,6,3kinghenryvi,1590\nreturn,6,3kinghenryvi,1590\nhither,6,3kinghenryvi,1590\nLieutenant,6,3kinghenryvi,1590\ncold,6,3kinghenryvi,1590\nforces,6,3kinghenryvi,1590\nAnother,6,3kinghenryvi,1590\namain,6,3kinghenryvi,1590\nlate,6,3kinghenryvi,1590\nMay,6,3kinghenryvi,1590\nDid,6,3kinghenryvi,1590\ndry,6,3kinghenryvi,1590\ncross,6,3kinghenryvi,1590\ntimes,7,3kinghenryvi,1590\nguard,7,3kinghenryvi,1590\ndays,7,3kinghenryvi,1590\nJohn,7,3kinghenryvi,1590\nhearted,7,3kinghenryvi,1590\ntruth,7,3kinghenryvi,1590\nWhom,7,3kinghenryvi,1590\nnothing,7,3kinghenryvi,1590\ncause,7,3kinghenryvi,1590\nmother,7,3kinghenryvi,1590\nourselves,7,3kinghenryvi,1590\nturn,7,3kinghenryvi,1590\ncommon,7,3kinghenryvi,1590\ndaughter,7,3kinghenryvi,1590\nking's,7,3kinghenryvi,1590\nworthy,7,3kinghenryvi,1590\nfalse,7,3kinghenryvi,1590\nkneel,7,3kinghenryvi,1590\ndukedom,7,3kinghenryvi,1590\nHer,7,3kinghenryvi,1590\nGo,7,3kinghenryvi,1590\nfatal,7,3kinghenryvi,1590\nenter,7,3kinghenryvi,1590\nweep,7,3kinghenryvi,1590\nSaint,7,3kinghenryvi,1590\nput,7,3kinghenryvi,1590\n'Twas,7,3kinghenryvi,1590\nGod's,7,3kinghenryvi,1590\naid,7,3kinghenryvi,1590\nbrought,7,3kinghenryvi,1590\nfoul,7,3kinghenryvi,1590\ncity,7,3kinghenryvi,1590\nbrothers,7,3kinghenryvi,1590\nye,7,3kinghenryvi,1590\nstrike,7,3kinghenryvi,1590\nSir,7,3kinghenryvi,1590\nSay,7,3kinghenryvi,1590\nhappy,7,3kinghenryvi,1590\nMORTIMER,7,3kinghenryvi,1590\nconsent,7,3kinghenryvi,1590\nground,7,3kinghenryvi,1590\nfall,7,3kinghenryvi,1590\nold,7,3kinghenryvi,1590\nword,7,3kinghenryvi,1590\nvow,7,3kinghenryvi,1590\nstrong,7,3kinghenryvi,1590\nwife,7,3kinghenryvi,1590\nPrince,7,3kinghenryvi,1590\nkingdom,7,3kinghenryvi,1590\ncry,7,3kinghenryvi,1590\nregal,7,3kinghenryvi,1590\nhours,7,3kinghenryvi,1590\ntogether,7,3kinghenryvi,1590\nfirst,7,3kinghenryvi,1590\nwhiles,7,3kinghenryvi,1590\nlast,7,3kinghenryvi,1590\ncontent,7,3kinghenryvi,1590\nwidow,7,3kinghenryvi,1590\nBONA,7,3kinghenryvi,1590\nprincely,7,3kinghenryvi,1590\nbreathe,7,3kinghenryvi,1590\nJOHN,7,3kinghenryvi,1590\nroyal,8,3kinghenryvi,1590\nWill,8,3kinghenryvi,1590\nrather,8,3kinghenryvi,1590\nGloucester,8,3kinghenryvi,1590\nsoon,8,3kinghenryvi,1590\ncall,8,3kinghenryvi,1590\nsuit,8,3kinghenryvi,1590\nMayor,8,3kinghenryvi,1590\nThese,8,3kinghenryvi,1590\nRIVERS,8,3kinghenryvi,1590\nborn,8,3kinghenryvi,1590\nfearful,8,3kinghenryvi,1590\nIII,8,3kinghenryvi,1590\ncanst,8,3kinghenryvi,1590\npleasure,8,3kinghenryvi,1590\nbid,8,3kinghenryvi,1590\nsaid,8,3kinghenryvi,1590\nbreast,8,3kinghenryvi,1590\nearth,8,3kinghenryvi,1590\nlost,8,3kinghenryvi,1590\nless,8,3kinghenryvi,1590\nlose,8,3kinghenryvi,1590\nkeep,8,3kinghenryvi,1590\narm,8,3kinghenryvi,1590\nlittle,8,3kinghenryvi,1590\nExeter,8,3kinghenryvi,1590\nthanks,8,3kinghenryvi,1590\nenemies,8,3kinghenryvi,1590\nmajesty,8,3kinghenryvi,1590\nfaint,8,3kinghenryvi,1590\nquickly,8,3kinghenryvi,1590\nTherefore,8,3kinghenryvi,1590\nawhile,8,3kinghenryvi,1590\nSee,8,3kinghenryvi,1590\nchair,8,3kinghenryvi,1590\nSon,8,3kinghenryvi,1590\nthing,8,3kinghenryvi,1590\nbreak,8,3kinghenryvi,1590\nonly,8,3kinghenryvi,1590\nWell,8,3kinghenryvi,1590\nown,8,3kinghenryvi,1590\nwhence,8,3kinghenryvi,1590\ncried,8,3kinghenryvi,1590\nTill,8,3kinghenryvi,1590\never,8,3kinghenryvi,1590\nNORFOLK,8,3kinghenryvi,1590\nseat,8,3kinghenryvi,1590\ntraitor,8,3kinghenryvi,1590\nsister,8,3kinghenryvi,1590\nfled,8,3kinghenryvi,1590\nliege,8,3kinghenryvi,1590\nNorthumberland,8,3kinghenryvi,1590\npower,8,3kinghenryvi,1590\npeace,9,3kinghenryvi,1590\nlawful,9,3kinghenryvi,1590\nTell,9,3kinghenryvi,1590\nmercy,9,3kinghenryvi,1590\nreign,9,3kinghenryvi,1590\nstands,9,3kinghenryvi,1590\nthrone,9,3kinghenryvi,1590\ndoubt,9,3kinghenryvi,1590\nNorfolk,9,3kinghenryvi,1590\nwrong,9,3kinghenryvi,1590\nafter,9,3kinghenryvi,1590\nabout,9,3kinghenryvi,1590\nsword,9,3kinghenryvi,1590\nparliament,9,3kinghenryvi,1590\nWhile,9,3kinghenryvi,1590\nname,9,3kinghenryvi,1590\nHad,9,3kinghenryvi,1590\nWe,9,3kinghenryvi,1590\ngot,9,3kinghenryvi,1590\nfarewell,9,3kinghenryvi,1590\nUnless,9,3kinghenryvi,1590\nlong,9,3kinghenryvi,1590\nvictory,9,3kinghenryvi,1590\nnoble,9,3kinghenryvi,1590\nAlarum,9,3kinghenryvi,1590\nThan,9,3kinghenryvi,1590\nnew,9,3kinghenryvi,1590\nShe,9,3kinghenryvi,1590\nchild,9,3kinghenryvi,1590\nvery,9,3kinghenryvi,1590\nWere,9,3kinghenryvi,1590\nnear,9,3kinghenryvi,1590\nHastings,9,3kinghenryvi,1590\nEven,9,3kinghenryvi,1590\nBrother,9,3kinghenryvi,1590\ngrant,9,3kinghenryvi,1590\npardon,9,3kinghenryvi,1590\nalong,9,3kinghenryvi,1590\nwe'll,9,3kinghenryvi,1590\nEnglish,9,3kinghenryvi,1590\npost,9,3kinghenryvi,1590\nBefore,9,3kinghenryvi,1590\nRUTLAND,9,3kinghenryvi,1590\nslew,9,3kinghenryvi,1590\nmight,9,3kinghenryvi,1590\nkill,9,3kinghenryvi,1590\nanswer,10,3kinghenryvi,1590\nV,10,3kinghenryvi,1590\nevery,10,3kinghenryvi,1590\nWESTMORELAND,10,3kinghenryvi,1590\nstrength,10,3kinghenryvi,1590\nlooks,10,3kinghenryvi,1590\nTower,10,3kinghenryvi,1590\nfoes,10,3kinghenryvi,1590\nblows,10,3kinghenryvi,1590\nkings,10,3kinghenryvi,1590\nwhose,10,3kinghenryvi,1590\ngone,10,3kinghenryvi,1590\nwear,10,3kinghenryvi,1590\nSoldiers,10,3kinghenryvi,1590\nthyself,10,3kinghenryvi,1590\nloss,10,3kinghenryvi,1590\nthose,10,3kinghenryvi,1590\nplace,10,3kinghenryvi,1590\nforth,10,3kinghenryvi,1590\nFather,10,3kinghenryvi,1590\nover,10,3kinghenryvi,1590\nsorrow,10,3kinghenryvi,1590\nloving,10,3kinghenryvi,1590\nEngland's,10,3kinghenryvi,1590\nne'er,10,3kinghenryvi,1590\nlives,10,3kinghenryvi,1590\nuse,10,3kinghenryvi,1590\nMarch,10,3kinghenryvi,1590\nAway,10,3kinghenryvi,1590\nten,10,3kinghenryvi,1590\nother,10,3kinghenryvi,1590\njoy,11,3kinghenryvi,1590\nthought,11,3kinghenryvi,1590\nwhile,11,3kinghenryvi,1590\ndrum,11,3kinghenryvi,1590\nanother,11,3kinghenryvi,1590\nfull,11,3kinghenryvi,1590\nsea,11,3kinghenryvi,1590\nOf,11,3kinghenryvi,1590\nII,11,3kinghenryvi,1590\nmeans,11,3kinghenryvi,1590\nnight,11,3kinghenryvi,1590\nbest,11,3kinghenryvi,1590\nRutland,11,3kinghenryvi,1590\ngave,11,3kinghenryvi,1590\ngrief,11,3kinghenryvi,1590\nELIZABETH,11,3kinghenryvi,1590\nleft,11,3kinghenryvi,1590\nprince,11,3kinghenryvi,1590\nHath,11,3kinghenryvi,1590\nGeorge,11,3kinghenryvi,1590\narms,11,3kinghenryvi,1590\nShall,11,3kinghenryvi,1590\ncolours,11,3kinghenryvi,1590\nhold,11,3kinghenryvi,1590\nback,11,3kinghenryvi,1590\nseek,11,3kinghenryvi,1590\nbrave,12,3kinghenryvi,1590\nmeet,12,3kinghenryvi,1590\nGEORGE,12,3kinghenryvi,1590\nhelp,12,3kinghenryvi,1590\nsit,12,3kinghenryvi,1590\nagainst,12,3kinghenryvi,1590\nsun,12,3kinghenryvi,1590\nlands,12,3kinghenryvi,1590\nproud,12,3kinghenryvi,1590\nBona,12,3kinghenryvi,1590\npart,12,3kinghenryvi,1590\nLady,12,3kinghenryvi,1590\nere,12,3kinghenryvi,1590\nbloody,12,3kinghenryvi,1590\nstate,12,3kinghenryvi,1590\ncould,12,3kinghenryvi,1590\nstill,12,3kinghenryvi,1590\nfair,12,3kinghenryvi,1590\nWarwick's,12,3kinghenryvi,1590\npalace,12,3kinghenryvi,1590\nLet,12,3kinghenryvi,1590\nEngland,12,3kinghenryvi,1590\nmarriage,12,3kinghenryvi,1590\ntwo,12,3kinghenryvi,1590\nshame,12,3kinghenryvi,1590\nheir,13,3kinghenryvi,1590\nworld,13,3kinghenryvi,1590\nsons,13,3kinghenryvi,1590\ncame,13,3kinghenryvi,1590\nhonour,13,3kinghenryvi,1590\nBe,13,3kinghenryvi,1590\nOF,13,3kinghenryvi,1590\nIt,13,3kinghenryvi,1590\ntongue,13,3kinghenryvi,1590\nany,13,3kinghenryvi,1590\ndead,13,3kinghenryvi,1590\nfar,13,3kinghenryvi,1590\nHave,13,3kinghenryvi,1590\nYour,13,3kinghenryvi,1590\nFlourish,13,3kinghenryvi,1590\nmind,13,3kinghenryvi,1590\nlet's,13,3kinghenryvi,1590\nEarl,13,3kinghenryvi,1590\ndie,13,3kinghenryvi,1590\nWhose,14,3kinghenryvi,1590\nNor,14,3kinghenryvi,1590\nNot,14,3kinghenryvi,1590\nWho,14,3kinghenryvi,1590\nOur,14,3kinghenryvi,1590\nHere,14,3kinghenryvi,1590\nwind,14,3kinghenryvi,1590\nmean,14,3kinghenryvi,1590\nPlantagenet,14,3kinghenryvi,1590\nvaliant,14,3kinghenryvi,1590\nbeen,14,3kinghenryvi,1590\nmarch,14,3kinghenryvi,1590\nslain,14,3kinghenryvi,1590\ngates,14,3kinghenryvi,1590\nwho,14,3kinghenryvi,1590\nthink,14,3kinghenryvi,1590\nduke,14,3kinghenryvi,1590\nfoe,14,3kinghenryvi,1590\nwhom,14,3kinghenryvi,1590\nhimself,14,3kinghenryvi,1590\nhis,270,3kinghenryvi,1590\nPost,15,3kinghenryvi,1590\nbetter,15,3kinghenryvi,1590\ntitle,15,3kinghenryvi,1590\nheaven,15,3kinghenryvi,1590\nelse,15,3kinghenryvi,1590\nrevenge,15,3kinghenryvi,1590\nFrom,15,3kinghenryvi,1590\ncomes,15,3kinghenryvi,1590\n'Tis,15,3kinghenryvi,1590\nmakes,15,3kinghenryvi,1590\nfollow,15,3kinghenryvi,1590\nExit,15,3kinghenryvi,1590\na,271,3kinghenryvi,1590\nHASTINGS,16,3kinghenryvi,1590\ngracious,16,3kinghenryvi,1590\nWatchman,16,3kinghenryvi,1590\nfriend,16,3kinghenryvi,1590\nthere,16,3kinghenryvi,1590\nboy,16,3kinghenryvi,1590\ngrace,16,3kinghenryvi,1590\nyoung,16,3kinghenryvi,1590\nnor,16,3kinghenryvi,1590\nheard,16,3kinghenryvi,1590\nface,16,3kinghenryvi,1590\nSomerset,16,3kinghenryvi,1590\nfortune,16,3kinghenryvi,1590\ngreat,16,3kinghenryvi,1590\nwilt,16,3kinghenryvi,1590\neyes,16,3kinghenryvi,1590\nbattle,16,3kinghenryvi,1590\npoor,16,3kinghenryvi,1590\nMessenger,16,3kinghenryvi,1590\nsovereign,16,3kinghenryvi,1590\nbeing,16,3kinghenryvi,1590\nWhen,16,3kinghenryvi,1590\nMargaret,17,3kinghenryvi,1590\nsoul,17,3kinghenryvi,1590\nyield,17,3kinghenryvi,1590\nOxford,17,3kinghenryvi,1590\ndone,17,3kinghenryvi,1590\nfather's,17,3kinghenryvi,1590\nbefore,17,3kinghenryvi,1590\ntill,17,3kinghenryvi,1590\nWhere,17,3kinghenryvi,1590\npity,18,3kinghenryvi,1590\nNay,18,3kinghenryvi,1590\nKeeper,18,3kinghenryvi,1590\nCome,18,3kinghenryvi,1590\nbody,18,3kinghenryvi,1590\nset,18,3kinghenryvi,1590\nHis,18,3kinghenryvi,1590\nSecond,18,3kinghenryvi,1590\nFirst,18,3kinghenryvi,1590\nthough,18,3kinghenryvi,1590\ngentle,18,3kinghenryvi,1590\nonce,18,3kinghenryvi,1590\nwhy,18,3kinghenryvi,1590\nway,18,3kinghenryvi,1590\nnews,18,3kinghenryvi,1590\nthousand,18,3kinghenryvi,1590\nthus,18,3kinghenryvi,1590\nlive,18,3kinghenryvi,1590\nshalt,18,3kinghenryvi,1590\nwhich,19,3kinghenryvi,1590\nBy,19,3kinghenryvi,1590\nIs,19,3kinghenryvi,1590\nLancaster,19,3kinghenryvi,1590\noath,19,3kinghenryvi,1590\nLewis,19,3kinghenryvi,1590\nEXETER,19,3kinghenryvi,1590\nThy,19,3kinghenryvi,1590\nsome,20,3kinghenryvi,1590\nMontague,20,3kinghenryvi,1590\nIn,20,3kinghenryvi,1590\nWhich,20,3kinghenryvi,1590\nThey,20,3kinghenryvi,1590\nwar,20,3kinghenryvi,1590\nNORTHUMBERLAND,21,3kinghenryvi,1590\nHenry's,21,3kinghenryvi,1590\nfight,21,3kinghenryvi,1590\n'tis,21,3kinghenryvi,1590\ngo,21,3kinghenryvi,1590\nYou,21,3kinghenryvi,1590\nfield,21,3kinghenryvi,1590\nart,21,3kinghenryvi,1590\nhast,21,3kinghenryvi,1590\nmyself,21,3kinghenryvi,1590\ntrue,21,3kinghenryvi,1590\ntears,22,3kinghenryvi,1590\ntherefore,22,3kinghenryvi,1590\nhands,22,3kinghenryvi,1590\nknow,22,3kinghenryvi,1590\ntime,22,3kinghenryvi,1590\nday,22,3kinghenryvi,1590\ncannot,22,3kinghenryvi,1590\nEdward's,22,3kinghenryvi,1590\nshe,23,3kinghenryvi,1590\nhad,23,3kinghenryvi,1590\nbear,23,3kinghenryvi,1590\nYet,23,3kinghenryvi,1590\nHow,23,3kinghenryvi,1590\nThis,23,3kinghenryvi,1590\nhouse,23,3kinghenryvi,1590\nWith,24,3kinghenryvi,1590\nfear,24,3kinghenryvi,1590\nwhere,24,3kinghenryvi,1590\nagain,24,3kinghenryvi,1590\nLondon,24,3kinghenryvi,1590\nfly,24,3kinghenryvi,1590\naway,25,3kinghenryvi,1590\nhence,25,3kinghenryvi,1590\nOXFORD,25,3kinghenryvi,1590\nstand,25,3kinghenryvi,1590\noff,25,3kinghenryvi,1590\nhope,25,3kinghenryvi,1590\n',26,3kinghenryvi,1590\nmuch,26,3kinghenryvi,1590\nfriends,26,3kinghenryvi,1590\nsay,26,3kinghenryvi,1590\nAside,26,3kinghenryvi,1590\ntell,26,3kinghenryvi,1590\nnever,26,3kinghenryvi,1590\nXI,26,3kinghenryvi,1590\nsoldiers,26,3kinghenryvi,1590\nthine,26,3kinghenryvi,1590\nLADY,26,3kinghenryvi,1590\nPRINCE,26,3kinghenryvi,1590\nsweet,26,3kinghenryvi,1590\nGREY,26,3kinghenryvi,1590\nman,26,3kinghenryvi,1590\nLEWIS,27,3kinghenryvi,1590\nAh,27,3kinghenryvi,1590\ngood,27,3kinghenryvi,1590\nMONTAGUE,27,3kinghenryvi,1590\nmade,27,3kinghenryvi,1590\nout,27,3kinghenryvi,1590\nSOMERSET,27,3kinghenryvi,1590\nupon,28,3kinghenryvi,1590\nsuch,28,3kinghenryvi,1590\nstay,28,3kinghenryvi,1590\nIf,28,3kinghenryvi,1590\ndoth,28,3kinghenryvi,1590\nyet,28,3kinghenryvi,1590\nright,28,3kinghenryvi,1590\nACT,28,3kinghenryvi,1590\nThen,28,3kinghenryvi,1590\none,28,3kinghenryvi,1590\ncome,28,3kinghenryvi,1590\nAs,29,3kinghenryvi,1590\nHe,29,3kinghenryvi,1590\ndown,29,3kinghenryvi,1590\nOr,29,3kinghenryvi,1590\ncan,29,3kinghenryvi,1590\nGod,29,3kinghenryvi,1590\ngive,29,3kinghenryvi,1590\nThou,29,3kinghenryvi,1590\nmen,29,3kinghenryvi,1590\ntoo,29,3kinghenryvi,1590\nSCENE,29,3kinghenryvi,1590\nand,541,3kinghenryvi,1590\nsee,30,3kinghenryvi,1590\nNo,30,3kinghenryvi,1590\nA,31,3kinghenryvi,1590\nlife,31,3kinghenryvi,1590\nboth,31,3kinghenryvi,1590\nLord,31,3kinghenryvi,1590\ndid,31,3kinghenryvi,1590\nhear,32,3kinghenryvi,1590\nhead,32,3kinghenryvi,1590\nrest,32,3kinghenryvi,1590\nthese,32,3kinghenryvi,1590\nan,32,3kinghenryvi,1590\nRichard,32,3kinghenryvi,1590\nwords,33,3kinghenryvi,1590\nDuke,34,3kinghenryvi,1590\nExeunt,34,3kinghenryvi,1590\nhand,34,3kinghenryvi,1590\nmany,34,3kinghenryvi,1590\nmust,35,3kinghenryvi,1590\nmine,35,3kinghenryvi,1590\nwell,35,3kinghenryvi,1590\nFrance,36,3kinghenryvi,1590\ntake,36,3kinghenryvi,1590\nwhen,36,3kinghenryvi,1590\nleave,37,3kinghenryvi,1590\nup,38,3kinghenryvi,1590\nheart,38,3kinghenryvi,1590\nwere,38,3kinghenryvi,1590\nlet,38,3kinghenryvi,1590\ndeath,39,3kinghenryvi,1590\nthey,39,3kinghenryvi,1590\nSo,39,3kinghenryvi,1590\nspeak,39,3kinghenryvi,1590\nunto,39,3kinghenryvi,1590\nO,40,3kinghenryvi,1590\nlove,40,3kinghenryvi,1590\nlords,40,3kinghenryvi,1590\nblood,41,3kinghenryvi,1590\nClarence,41,3kinghenryvi,1590\nKing,41,3kinghenryvi,1590\nNow,42,3kinghenryvi,1590\nshould,42,3kinghenryvi,1590\nwould,42,3kinghenryvi,1590\nYORK,43,3kinghenryvi,1590\nClifford,44,3kinghenryvi,1590\nlord,44,3kinghenryvi,1590\nmay,44,3kinghenryvi,1590\nhere,45,3kinghenryvi,1590\nthan,45,3kinghenryvi,1590\nAy,45,3kinghenryvi,1590\nam,45,3kinghenryvi,1590\nson,46,3kinghenryvi,1590\nCLIFFORD,46,3kinghenryvi,1590\nhow,47,3kinghenryvi,1590\nhath,48,3kinghenryvi,1590\nor,49,3kinghenryvi,1590\nqueen,51,3kinghenryvi,1590\nmake,52,3kinghenryvi,1590\nlike,53,3kinghenryvi,1590\nWhy,53,3kinghenryvi,1590\nbrother,54,3kinghenryvi,1590\nRICHARD,54,3kinghenryvi,1590\nher,56,3kinghenryvi,1590\nus,56,3kinghenryvi,1590\nthen,58,3kinghenryvi,1590\nCLARENCE,58,3kinghenryvi,1590\nwas,58,3kinghenryvi,1590\nWhat,59,3kinghenryvi,1590\nI'll,60,3kinghenryvi,1590\nthem,61,3kinghenryvi,1590\ndo,61,3kinghenryvi,1590\ncrown,62,3kinghenryvi,1590\nMy,63,3kinghenryvi,1590\nHenry,63,3kinghenryvi,1590\nMARGARET,63,3kinghenryvi,1590\non,64,3kinghenryvi,1590\nYork,65,3kinghenryvi,1590\nif,66,3kinghenryvi,1590\nfather,67,3kinghenryvi,1590\nmore,71,3kinghenryvi,1590\nEnter,71,3kinghenryvi,1590\nare,72,3kinghenryvi,1590\nat,73,3kinghenryvi,1590\nno,73,3kinghenryvi,1590\nQUEEN,74,3kinghenryvi,1590\nEdward,75,3kinghenryvi,1590\nso,76,3kinghenryvi,1590\nfrom,76,3kinghenryvi,1590\ntheir,77,3kinghenryvi,1590\nwhat,77,3kinghenryvi,1590\nThat,78,3kinghenryvi,1590\nall,82,3kinghenryvi,1590\nnow,83,3kinghenryvi,1590\nGLOUCESTER,86,3kinghenryvi,1590\nby,90,3kinghenryvi,1590\nFor,91,3kinghenryvi,1590\nTo,94,3kinghenryvi,1590\nmy,350,3kinghenryvi,1590\nThe,96,3kinghenryvi,1590\nBut,97,3kinghenryvi,1590\nbut,100,3kinghenryvi,1590\nshall,105,3kinghenryvi,1590\nking,106,3kinghenryvi,1590\nhave,110,3kinghenryvi,1590\nVI,111,3kinghenryvi,1590\nwe,111,3kinghenryvi,1590\nHENRY,113,3kinghenryvi,1590\nWarwick,117,3kinghenryvi,1590\nthee,118,3kinghenryvi,1590\nas,118,3kinghenryvi,1590\nWARWICK,122,3kinghenryvi,1590\nhe,124,3kinghenryvi,1590\nIV,126,3kinghenryvi,1590\nour,128,3kinghenryvi,1590\nyour,130,3kinghenryvi,1590\nit,130,3kinghenryvi,1590\nwill,130,3kinghenryvi,1590\nhim,143,3kinghenryvi,1590\nAnd,406,3kinghenryvi,1590\nof,411,3kinghenryvi,1590\nyou,167,3kinghenryvi,1590\nthis,168,3kinghenryvi,1590\nis,178,3kinghenryvi,1590\nthy,180,3kinghenryvi,1590\nEDWARD,181,3kinghenryvi,1590\nme,184,3kinghenryvi,1590\nnot,184,3kinghenryvi,1590\nfor,190,3kinghenryvi,1590\nthou,191,3kinghenryvi,1590\nbe,195,3kinghenryvi,1590\nthe,718,3kinghenryvi,1590\nI,495,3kinghenryvi,1590\nKING,249,3kinghenryvi,1590\nthat,250,3kinghenryvi,1590\nwith,250,3kinghenryvi,1590\nprofession,1,juliuscaesar,1599\ntreason,1,juliuscaesar,1599\nveil'd,1,juliuscaesar,1599\nsteads,1,juliuscaesar,1599\ntroubled,1,juliuscaesar,1599\nparchment,1,juliuscaesar,1599\nsleeve,1,juliuscaesar,1599\nrushing,1,juliuscaesar,1599\nsomebody,1,juliuscaesar,1599\nM,1,juliuscaesar,1599\nname's,1,juliuscaesar,1599\nwomanish,1,juliuscaesar,1599\ndrawing,1,juliuscaesar,1599\nelephants,1,juliuscaesar,1599\nmeek,1,juliuscaesar,1599\nguard,1,juliuscaesar,1599\nStands,1,juliuscaesar,1599\nsmiled,1,juliuscaesar,1599\ncrouch,1,juliuscaesar,1599\naddress'd,1,juliuscaesar,1599\nYours,1,juliuscaesar,1599\ntaking,1,juliuscaesar,1599\nbasis,1,juliuscaesar,1599\nYou've,1,juliuscaesar,1599\nderived,1,juliuscaesar,1599\nfathers,1,juliuscaesar,1599\ntops,1,juliuscaesar,1599\nleisure,1,juliuscaesar,1599\nrelics,1,juliuscaesar,1599\nnecessities,1,juliuscaesar,1599\nbrass,1,juliuscaesar,1599\ncrimson'd,1,juliuscaesar,1599\nwrit,1,juliuscaesar,1599\nplanted,1,juliuscaesar,1599\npossible,1,juliuscaesar,1599\ntreasure,1,juliuscaesar,1599\nhinder,1,juliuscaesar,1599\nneighbours,1,juliuscaesar,1599\nwoman's,1,juliuscaesar,1599\ngray,1,juliuscaesar,1599\nshadows,1,juliuscaesar,1599\nentire,1,juliuscaesar,1599\ndine,1,juliuscaesar,1599\nrag,1,juliuscaesar,1599\nlawful,1,juliuscaesar,1599\nunborn,1,juliuscaesar,1599\nhonourably,1,juliuscaesar,1599\nhasty,1,juliuscaesar,1599\nrock,1,juliuscaesar,1599\nreplication,1,juliuscaesar,1599\nascends,1,juliuscaesar,1599\ndint,1,juliuscaesar,1599\nelement,1,juliuscaesar,1599\nbreathless,1,juliuscaesar,1599\ninterpreted,1,juliuscaesar,1599\nrascal,1,juliuscaesar,1599\nbonds,1,juliuscaesar,1599\nassured,1,juliuscaesar,1599\nrobe,1,juliuscaesar,1599\nrob,1,juliuscaesar,1599\ncomets,1,juliuscaesar,1599\ndoubtful,1,juliuscaesar,1599\nheart's,1,juliuscaesar,1599\nscene,1,juliuscaesar,1599\nWilt,1,juliuscaesar,1599\nfoamed,1,juliuscaesar,1599\nday's,1,juliuscaesar,1599\neasily,1,juliuscaesar,1599\nspace,1,juliuscaesar,1599\nvillain,1,juliuscaesar,1599\ntesty,1,juliuscaesar,1599\nstrengthen,1,juliuscaesar,1599\nwarning,1,juliuscaesar,1599\ndish,1,juliuscaesar,1599\nKills,1,juliuscaesar,1599\nsingle,1,juliuscaesar,1599\neight,1,juliuscaesar,1599\nPassion,1,juliuscaesar,1599\nsleepy,1,juliuscaesar,1599\nbeest,1,juliuscaesar,1599\ndarkness,1,juliuscaesar,1599\n'Alas,1,juliuscaesar,1599\npainted,1,juliuscaesar,1599\nrichest,1,juliuscaesar,1599\nherd,1,juliuscaesar,1599\ndropp'd,1,juliuscaesar,1599\nspake,1,juliuscaesar,1599\nmere,1,juliuscaesar,1599\ndecay,1,juliuscaesar,1599\nsecurity,1,juliuscaesar,1599\nbesmear,1,juliuscaesar,1599\nbraved,1,juliuscaesar,1599\nerrand,1,juliuscaesar,1599\nlearn'd,1,juliuscaesar,1599\nHeld,1,juliuscaesar,1599\nrumour,1,juliuscaesar,1599\noffer,1,juliuscaesar,1599\nlowly,1,juliuscaesar,1599\nFar,1,juliuscaesar,1599\ndemeanor,1,juliuscaesar,1599\nfought,1,juliuscaesar,1599\nnaked,1,juliuscaesar,1599\nLovers,1,juliuscaesar,1599\nhanged,1,juliuscaesar,1599\nForgets,1,juliuscaesar,1599\nsummer's,1,juliuscaesar,1599\nfeeds,1,juliuscaesar,1599\npraising,1,juliuscaesar,1599\nunassailable,1,juliuscaesar,1599\nsayings,1,juliuscaesar,1599\nfury,1,juliuscaesar,1599\nbring'st,1,juliuscaesar,1599\nEre,1,juliuscaesar,1599\nthroat,1,juliuscaesar,1599\ncowardice,1,juliuscaesar,1599\nsour,1,juliuscaesar,1599\nhorrid,1,juliuscaesar,1599\nprey,1,juliuscaesar,1599\nobscurely,1,juliuscaesar,1599\njades,1,juliuscaesar,1599\nthirty,1,juliuscaesar,1599\nCowards,1,juliuscaesar,1599\nbefall,1,juliuscaesar,1599\nconsorted,1,juliuscaesar,1599\niron,1,juliuscaesar,1599\ndamned,1,juliuscaesar,1599\noffal,1,juliuscaesar,1599\nPost,1,juliuscaesar,1599\nShaking,1,juliuscaesar,1599\nstamp'd,1,juliuscaesar,1599\ntrust,1,juliuscaesar,1599\nBegan,1,juliuscaesar,1599\nAEMILIUS,1,juliuscaesar,1599\nlief,1,juliuscaesar,1599\nremain,1,juliuscaesar,1599\nrated,1,juliuscaesar,1599\nbowels,1,juliuscaesar,1599\nwounded,1,juliuscaesar,1599\nIncenses,1,juliuscaesar,1599\nenvenomed,1,juliuscaesar,1599\nPERSONAE,1,juliuscaesar,1599\nclimb'd,1,juliuscaesar,1599\nspare,1,juliuscaesar,1599\nspark,1,juliuscaesar,1599\ninsurrection,1,juliuscaesar,1599\ncase,1,juliuscaesar,1599\nteacher,1,juliuscaesar,1599\nattempt,1,juliuscaesar,1599\nsong,1,juliuscaesar,1599\ncoffers,1,juliuscaesar,1599\nascended,1,juliuscaesar,1599\nmistook,1,juliuscaesar,1599\nregions,1,juliuscaesar,1599\npleasing,1,juliuscaesar,1599\nlustre,1,juliuscaesar,1599\nperformance,1,juliuscaesar,1599\naccidental,1,juliuscaesar,1599\nplague,1,juliuscaesar,1599\npassions,1,juliuscaesar,1599\norder'd,1,juliuscaesar,1599\ntorrent,1,juliuscaesar,1599\ncriedst,1,juliuscaesar,1599\nForget,1,juliuscaesar,1599\neruptions,1,juliuscaesar,1599\nlacks,1,juliuscaesar,1599\nsterile,1,juliuscaesar,1599\namazed,1,juliuscaesar,1599\ntarrying,1,juliuscaesar,1599\nconscience,1,juliuscaesar,1599\nAfter,1,juliuscaesar,1599\napparition,1,juliuscaesar,1599\ndraw,1,juliuscaesar,1599\ncamp,1,juliuscaesar,1599\nfriend's,1,juliuscaesar,1599\ninsisted,1,juliuscaesar,1599\nengagements,1,juliuscaesar,1599\nreceiving,1,juliuscaesar,1599\nunaccustom'd,1,juliuscaesar,1599\nruddy,1,juliuscaesar,1599\nsat,1,juliuscaesar,1599\nbearing,1,juliuscaesar,1599\nassembly,1,juliuscaesar,1599\nconstantly,1,juliuscaesar,1599\ngrows,1,juliuscaesar,1599\nhour's,1,juliuscaesar,1599\naffability,1,juliuscaesar,1599\ndisprove,1,juliuscaesar,1599\ncholeric,1,juliuscaesar,1599\nlimb,1,juliuscaesar,1599\ngracious,1,juliuscaesar,1599\nafraid',1,juliuscaesar,1599\nsuburbs,1,juliuscaesar,1599\ncaps,1,juliuscaesar,1599\nLiberty,1,juliuscaesar,1599\nLucilius',1,juliuscaesar,1599\nbrothers',1,juliuscaesar,1599\nAnchises,1,juliuscaesar,1599\nfactious,1,juliuscaesar,1599\nafterwards,1,juliuscaesar,1599\nheap,1,juliuscaesar,1599\nroar'd,1,juliuscaesar,1599\nrevels,1,juliuscaesar,1599\nbudge,1,juliuscaesar,1599\nWoe,1,juliuscaesar,1599\nFled,1,juliuscaesar,1599\nworthier,1,juliuscaesar,1599\ncharactery,1,juliuscaesar,1599\ncheer,1,juliuscaesar,1599\ncontrive,1,juliuscaesar,1599\ncheek,1,juliuscaesar,1599\nvoices,1,juliuscaesar,1599\nlift,1,juliuscaesar,1599\nsoil,1,juliuscaesar,1599\nyearns,1,juliuscaesar,1599\nofficers,1,juliuscaesar,1599\nYield,1,juliuscaesar,1599\nglass,1,juliuscaesar,1599\nmaking,1,juliuscaesar,1599\nchimney,1,juliuscaesar,1599\nshrewdly,1,juliuscaesar,1599\ncomplexion,1,juliuscaesar,1599\naddition,1,juliuscaesar,1599\nteach,1,juliuscaesar,1599\nsoft,1,juliuscaesar,1599\nMethinks,1,juliuscaesar,1599\nricher,1,juliuscaesar,1599\nsquadrons,1,juliuscaesar,1599\nwait,1,juliuscaesar,1599\nwrathfully,1,juliuscaesar,1599\nThoughts,1,juliuscaesar,1599\ncontribution,1,juliuscaesar,1599\nslippery,1,juliuscaesar,1599\nblack,1,juliuscaesar,1599\ncompanies,1,juliuscaesar,1599\nLay'st,1,juliuscaesar,1599\nGentle,1,juliuscaesar,1599\nview,1,juliuscaesar,1599\nsoar,1,juliuscaesar,1599\nprovender,1,juliuscaesar,1599\nocean,1,juliuscaesar,1599\nplucked,1,juliuscaesar,1599\nexecution,1,juliuscaesar,1599\nLENA,1,juliuscaesar,1599\nsix,1,juliuscaesar,1599\nshamed,1,juliuscaesar,1599\nacted,1,juliuscaesar,1599\nplains,1,juliuscaesar,1599\nwarnings,1,juliuscaesar,1599\nI'm,1,juliuscaesar,1599\nblocks,1,juliuscaesar,1599\nwhatsoever,1,juliuscaesar,1599\nsoundless,1,juliuscaesar,1599\nhistory,1,juliuscaesar,1599\nsums,1,juliuscaesar,1599\nspeeches,1,juliuscaesar,1599\ninstigations,1,juliuscaesar,1599\nstands,1,juliuscaesar,1599\nprevail'd,1,juliuscaesar,1599\nages,1,juliuscaesar,1599\nbrook'd,1,juliuscaesar,1599\nlaugh'd,1,juliuscaesar,1599\nthink'st,1,juliuscaesar,1599\nCrown,1,juliuscaesar,1599\nourself,1,juliuscaesar,1599\nbastard,1,juliuscaesar,1599\nenkindled,1,juliuscaesar,1599\ndisclosed,1,juliuscaesar,1599\nportentous,1,juliuscaesar,1599\nsaying,1,juliuscaesar,1599\nsex,1,juliuscaesar,1599\nruby,1,juliuscaesar,1599\nKneel,1,juliuscaesar,1599\ncoronets,1,juliuscaesar,1599\narguing,1,juliuscaesar,1599\nWrite,1,juliuscaesar,1599\nwake,1,juliuscaesar,1599\ntouched,1,juliuscaesar,1599\ncatching,1,juliuscaesar,1599\nslaughter,1,juliuscaesar,1599\nyawn'd,1,juliuscaesar,1599\npeevish,1,juliuscaesar,1599\nlions,1,juliuscaesar,1599\nMean,1,juliuscaesar,1599\nWalk,1,juliuscaesar,1599\nbirds,1,juliuscaesar,1599\nchew,1,juliuscaesar,1599\ndismember,1,juliuscaesar,1599\nembrace,1,juliuscaesar,1599\nthunders,1,juliuscaesar,1599\nvanishest,1,juliuscaesar,1599\nscorn'd,1,juliuscaesar,1599\nfamed,1,juliuscaesar,1599\nMerely,1,juliuscaesar,1599\nwinds,1,juliuscaesar,1599\nsubject,1,juliuscaesar,1599\nfollowed,1,juliuscaesar,1599\nlooking,1,juliuscaesar,1599\napparent,1,juliuscaesar,1599\nmelting,1,juliuscaesar,1599\nSlay,1,juliuscaesar,1599\ncounsel,1,juliuscaesar,1599\nkindle,1,juliuscaesar,1599\ndignities,1,juliuscaesar,1599\nbow'd,1,juliuscaesar,1599\n's,1,juliuscaesar,1599\nslighted,1,juliuscaesar,1599\nacquainted,1,juliuscaesar,1599\nstudy,1,juliuscaesar,1599\nextremities,1,juliuscaesar,1599\nexorcist,1,juliuscaesar,1599\npitiful,1,juliuscaesar,1599\nsky,1,juliuscaesar,1599\nhatch'd,1,juliuscaesar,1599\nMusic,1,juliuscaesar,1599\nDefiance,1,juliuscaesar,1599\nconquests,1,juliuscaesar,1599\noffering,1,juliuscaesar,1599\nstuff,1,juliuscaesar,1599\nAccoutred,1,juliuscaesar,1599\nAttendants,1,juliuscaesar,1599\nshallows,1,juliuscaesar,1599\nscope,1,juliuscaesar,1599\nSpain,1,juliuscaesar,1599\nbecomes,1,juliuscaesar,1599\nGuide,1,juliuscaesar,1599\nsuffered,1,juliuscaesar,1599\nappear'd,1,juliuscaesar,1599\nAnthony,1,juliuscaesar,1599\nindifferent,1,juliuscaesar,1599\nshriek,1,juliuscaesar,1599\npuissant,1,juliuscaesar,1599\ntaught,1,juliuscaesar,1599\neverlasting,1,juliuscaesar,1599\neating,1,juliuscaesar,1599\nhooted,1,juliuscaesar,1599\nvanish,1,juliuscaesar,1599\nturning,1,juliuscaesar,1599\npoints,1,juliuscaesar,1599\nundeservers,1,juliuscaesar,1599\nconceit,1,juliuscaesar,1599\nfawning,1,juliuscaesar,1599\nOut,1,juliuscaesar,1599\nunkindly,1,juliuscaesar,1599\nconfounded,1,juliuscaesar,1599\nskies,1,juliuscaesar,1599\nprofess,1,juliuscaesar,1599\nafraid,1,juliuscaesar,1599\nways,1,juliuscaesar,1599\nrhyme,1,juliuscaesar,1599\nburneth,1,juliuscaesar,1599\ndaughter,1,juliuscaesar,1599\nrefresh'd,1,juliuscaesar,1599\nabsence,1,juliuscaesar,1599\nreek,1,juliuscaesar,1599\ncombined,1,juliuscaesar,1599\norts,1,juliuscaesar,1599\nruns,1,juliuscaesar,1599\nfreeman,1,juliuscaesar,1599\n'Fly,1,juliuscaesar,1599\ntradesman's,1,juliuscaesar,1599\nterms,1,juliuscaesar,1599\nencounter,1,juliuscaesar,1599\n'Long,1,juliuscaesar,1599\ndearly,1,juliuscaesar,1599\ncommit,1,juliuscaesar,1599\nSound,1,juliuscaesar,1599\nColossus,1,juliuscaesar,1599\nexpedition,1,juliuscaesar,1599\nflatterer,1,juliuscaesar,1599\nLeave,1,juliuscaesar,1599\nflattered,1,juliuscaesar,1599\nspeechless,1,juliuscaesar,1599\noverthrown,1,juliuscaesar,1599\nsup,1,juliuscaesar,1599\nvanished,1,juliuscaesar,1599\npalter,1,juliuscaesar,1599\njustice',1,juliuscaesar,1599\nfeed,1,juliuscaesar,1599\nancestor,1,juliuscaesar,1599\nfeel,1,juliuscaesar,1599\nspaniel,1,juliuscaesar,1599\nfeet,1,juliuscaesar,1599\nsauce,1,juliuscaesar,1599\nbenches,1,juliuscaesar,1599\nmelancholy's,1,juliuscaesar,1599\nbeaten,1,juliuscaesar,1599\nservice,1,juliuscaesar,1599\ndescend,1,juliuscaesar,1599\n'scaped,1,juliuscaesar,1599\nelders,1,juliuscaesar,1599\ncostly,1,juliuscaesar,1599\nmalice,1,juliuscaesar,1599\nsuffering,1,juliuscaesar,1599\ntag,1,juliuscaesar,1599\nBetwixt,1,juliuscaesar,1599\nbehaviors,1,juliuscaesar,1599\nWhereto,1,juliuscaesar,1599\nchoose,1,juliuscaesar,1599\nrude,1,juliuscaesar,1599\nputting,1,juliuscaesar,1599\nVouchsafe,1,juliuscaesar,1599\nmothers',1,juliuscaesar,1599\nflesh,1,juliuscaesar,1599\nGorging,1,juliuscaesar,1599\nCrying,1,juliuscaesar,1599\nMight,1,juliuscaesar,1599\nhandiwork,1,juliuscaesar,1599\nseems,1,juliuscaesar,1599\ndreamer,1,juliuscaesar,1599\nrent,1,juliuscaesar,1599\nOne,1,juliuscaesar,1599\nwant,1,juliuscaesar,1599\ndrowsily,1,juliuscaesar,1599\npeasants,1,juliuscaesar,1599\ninflame,1,juliuscaesar,1599\ndearer,1,juliuscaesar,1599\nastonish,1,juliuscaesar,1599\nDash,1,juliuscaesar,1599\nferret,1,juliuscaesar,1599\nscorning,1,juliuscaesar,1599\nhates,1,juliuscaesar,1599\nRetreat,1,juliuscaesar,1599\nseest,1,juliuscaesar,1599\nservile,1,juliuscaesar,1599\nImmediately,1,juliuscaesar,1599\nhorsemen,1,juliuscaesar,1599\nnimbleness,1,juliuscaesar,1599\ncustom,1,juliuscaesar,1599\nmurder,1,juliuscaesar,1599\nthrows,1,juliuscaesar,1599\nproperty,1,juliuscaesar,1599\nTending,1,juliuscaesar,1599\nnorthern,1,juliuscaesar,1599\nFetch,1,juliuscaesar,1599\nuseth,1,juliuscaesar,1599\n'Speak,1,juliuscaesar,1599\nbidding,1,juliuscaesar,1599\nwarn,1,juliuscaesar,1599\nstop,1,juliuscaesar,1599\nloins,1,juliuscaesar,1599\nwars,1,juliuscaesar,1599\nwary,1,juliuscaesar,1599\nmeat,1,juliuscaesar,1599\nwash,1,juliuscaesar,1599\nBurn,1,juliuscaesar,1599\noffice,1,juliuscaesar,1599\njoin'd,1,juliuscaesar,1599\nLions,1,juliuscaesar,1599\nstirr'd,1,juliuscaesar,1599\nuntired,1,juliuscaesar,1599\nrubbish,1,juliuscaesar,1599\nuntrod,1,juliuscaesar,1599\nalliance,1,juliuscaesar,1599\nforgave,1,juliuscaesar,1599\nbright,1,juliuscaesar,1599\nParthia,1,juliuscaesar,1599\nparty,1,juliuscaesar,1599\nRepair,1,juliuscaesar,1599\ninfirmity,1,juliuscaesar,1599\nFollow,1,juliuscaesar,1599\nDraw,1,juliuscaesar,1599\nhungry,1,juliuscaesar,1599\nobjects,1,juliuscaesar,1599\nhealthful,1,juliuscaesar,1599\ntending,1,juliuscaesar,1599\nperch'd,1,juliuscaesar,1599\nopening,1,juliuscaesar,1599\nannoying,1,juliuscaesar,1599\nbig,1,juliuscaesar,1599\nsenses,1,juliuscaesar,1599\nscandal,1,juliuscaesar,1599\nyouths,1,juliuscaesar,1599\ngrievous,1,juliuscaesar,1599\ncontriver,1,juliuscaesar,1599\nEt,1,juliuscaesar,1599\nha',1,juliuscaesar,1599\nbastardy,1,juliuscaesar,1599\nlife's,1,juliuscaesar,1599\ndishonourable,1,juliuscaesar,1599\nphysical,1,juliuscaesar,1599\ncommended,1,juliuscaesar,1599\nsurest,1,juliuscaesar,1599\nWhile,1,juliuscaesar,1599\nnotest,1,juliuscaesar,1599\noverthrow,1,juliuscaesar,1599\nclimate,1,juliuscaesar,1599\nStruck,1,juliuscaesar,1599\nfoes,1,juliuscaesar,1599\nutter,1,juliuscaesar,1599\nBelike,1,juliuscaesar,1599\nrefuse,1,juliuscaesar,1599\nTyranny,1,juliuscaesar,1599\norator,1,juliuscaesar,1599\ndescends,1,juliuscaesar,1599\nvexeth,1,juliuscaesar,1599\nmeasure,1,juliuscaesar,1599\n'Twere,1,juliuscaesar,1599\nflattery,1,juliuscaesar,1599\nfearfulness,1,juliuscaesar,1599\nappeased,1,juliuscaesar,1599\ncontroversy,1,juliuscaesar,1599\nstubborn,1,juliuscaesar,1599\nquarrel,1,juliuscaesar,1599\ndepend,1,juliuscaesar,1599\nmotives,1,juliuscaesar,1599\nyouthful,1,juliuscaesar,1599\nbow,1,juliuscaesar,1599\nHim,1,juliuscaesar,1599\nloath,1,juliuscaesar,1599\nWhiles,1,juliuscaesar,1599\nguiltiness,1,juliuscaesar,1599\neternal,1,juliuscaesar,1599\ngovern,1,juliuscaesar,1599\nsuffers,1,juliuscaesar,1599\nalarum,1,juliuscaesar,1599\nhew,1,juliuscaesar,1599\nvoluntary,1,juliuscaesar,1599\nencompass'd,1,juliuscaesar,1599\nhopes,1,juliuscaesar,1599\nLo,1,juliuscaesar,1599\nprodigious,1,juliuscaesar,1599\nfates,1,juliuscaesar,1599\nNature,1,juliuscaesar,1599\nsensible,1,juliuscaesar,1599\n'Havoc,1,juliuscaesar,1599\nStatilius,1,juliuscaesar,1599\nharlot,1,juliuscaesar,1599\nfoam,1,juliuscaesar,1599\npraetors,1,juliuscaesar,1599\ngentleness,1,juliuscaesar,1599\nscarfs,1,juliuscaesar,1599\nlisten,1,juliuscaesar,1599\ncanst,1,juliuscaesar,1599\nAnswer,1,juliuscaesar,1599\nWeighing,1,juliuscaesar,1599\nstar,1,juliuscaesar,1599\nshriller,1,juliuscaesar,1599\nvoid,1,juliuscaesar,1599\nlottery,1,juliuscaesar,1599\nbegun,1,juliuscaesar,1599\nforce,1,juliuscaesar,1599\ngamesome,1,juliuscaesar,1599\nhie,1,juliuscaesar,1599\nconjointly,1,juliuscaesar,1599\nfinds,1,juliuscaesar,1599\nthews,1,juliuscaesar,1599\nconceived,1,juliuscaesar,1599\nHouse,1,juliuscaesar,1599\nflowers,1,juliuscaesar,1599\npiteous,1,juliuscaesar,1599\nfatal,1,juliuscaesar,1599\nHo,1,juliuscaesar,1599\ndinner,1,juliuscaesar,1599\nblest,1,juliuscaesar,1599\ntriumvirs,1,juliuscaesar,1599\nappoint,1,juliuscaesar,1599\npath,1,juliuscaesar,1599\ngrasped,1,juliuscaesar,1599\nRecounts,1,juliuscaesar,1599\nfatter,1,juliuscaesar,1599\nSeldom,1,juliuscaesar,1599\nsport,1,juliuscaesar,1599\nadder,1,juliuscaesar,1599\npast,1,juliuscaesar,1599\nilluminate,1,juliuscaesar,1599\nhides,1,juliuscaesar,1599\npulpits,1,juliuscaesar,1599\nmeals,1,juliuscaesar,1599\nHas,1,juliuscaesar,1599\npit,1,juliuscaesar,1599\nproud,1,juliuscaesar,1599\nUp,1,juliuscaesar,1599\nIs't,1,juliuscaesar,1599\nAnswering,1,juliuscaesar,1599\nague,1,juliuscaesar,1599\nstrew,1,juliuscaesar,1599\nPella,1,juliuscaesar,1599\nnice,1,juliuscaesar,1599\nvesture,1,juliuscaesar,1599\nnobly,1,juliuscaesar,1599\nMarullus,1,juliuscaesar,1599\noutlive,1,juliuscaesar,1599\nobey,1,juliuscaesar,1599\nenrolled,1,juliuscaesar,1599\nsought,1,juliuscaesar,1599\nmadmen,1,juliuscaesar,1599\ndoers,1,juliuscaesar,1599\nbe'st,1,juliuscaesar,1599\nsits,1,juliuscaesar,1599\nhills,1,juliuscaesar,1599\nbusy,1,juliuscaesar,1599\nabsent,1,juliuscaesar,1599\nDearer,1,juliuscaesar,1599\nBequeathing,1,juliuscaesar,1599\nwas't,1,juliuscaesar,1599\nrebel,1,juliuscaesar,1599\nfields,1,juliuscaesar,1599\nloads,1,juliuscaesar,1599\nknotty,1,juliuscaesar,1599\nredder,1,juliuscaesar,1599\ncavern,1,juliuscaesar,1599\nbehind,1,juliuscaesar,1599\nlethe,1,juliuscaesar,1599\ndifference,1,juliuscaesar,1599\nPrithee,1,juliuscaesar,1599\nclimber,1,juliuscaesar,1599\nkindness,1,juliuscaesar,1599\nposture,1,juliuscaesar,1599\nimmediately,1,juliuscaesar,1599\nunscorch'd,1,juliuscaesar,1599\ncoffin,1,juliuscaesar,1599\nmadman,1,juliuscaesar,1599\npetition,1,juliuscaesar,1599\narose,1,juliuscaesar,1599\nsounds,1,juliuscaesar,1599\ntricks,1,juliuscaesar,1599\nmoreover,1,juliuscaesar,1599\norchard,1,juliuscaesar,1599\nyon,1,juliuscaesar,1599\nimmediate,1,juliuscaesar,1599\nSirs,1,juliuscaesar,1599\npre,1,juliuscaesar,1599\ngaze,1,juliuscaesar,1599\nlatest,1,juliuscaesar,1599\nwoful,1,juliuscaesar,1599\nSave,1,juliuscaesar,1599\ndisperse,1,juliuscaesar,1599\nbeyond,1,juliuscaesar,1599\nshadow,1,juliuscaesar,1599\nmodestly,1,juliuscaesar,1599\nperilous,1,juliuscaesar,1599\nvaunting,1,juliuscaesar,1599\nmelteth,1,juliuscaesar,1599\ngames,1,juliuscaesar,1599\ndisclose,1,juliuscaesar,1599\nPut,1,juliuscaesar,1599\nwaving,1,juliuscaesar,1599\ncourtesies,1,juliuscaesar,1599\ngrudged,1,juliuscaesar,1599\nmeanest,1,juliuscaesar,1599\nlegacy,1,juliuscaesar,1599\nsuddenly,1,juliuscaesar,1599\no'erread,1,juliuscaesar,1599\nTarquin,1,juliuscaesar,1599\ncarpenter,1,juliuscaesar,1599\npersuasion,1,juliuscaesar,1599\narbours,1,juliuscaesar,1599\n'Shall,1,juliuscaesar,1599\nSink,1,juliuscaesar,1599\ndiscomfort,1,juliuscaesar,1599\nvows,1,juliuscaesar,1599\nShakes,1,juliuscaesar,1599\nbuy,1,juliuscaesar,1599\nYe,1,juliuscaesar,1599\ningrafted,1,juliuscaesar,1599\nused,1,juliuscaesar,1599\nUrge,1,juliuscaesar,1599\nSardians,1,juliuscaesar,1599\no'ersway,1,juliuscaesar,1599\nbees,1,juliuscaesar,1599\nMeet,1,juliuscaesar,1599\npeople's,1,juliuscaesar,1599\n'Break,1,juliuscaesar,1599\nFlatterers,1,juliuscaesar,1599\nstronger,1,juliuscaesar,1599\npains,1,juliuscaesar,1599\ngate,1,juliuscaesar,1599\n'Twas,1,juliuscaesar,1599\nsister's,1,juliuscaesar,1599\nSway'd,1,juliuscaesar,1599\nstretch,1,juliuscaesar,1599\nextenuated,1,juliuscaesar,1599\npitch,1,juliuscaesar,1599\nlamented,1,juliuscaesar,1599\nheap'd,1,juliuscaesar,1599\nnorth,1,juliuscaesar,1599\nashamed,1,juliuscaesar,1599\nupper,1,juliuscaesar,1599\nresort,1,juliuscaesar,1599\nBoth,1,juliuscaesar,1599\nbeginning,1,juliuscaesar,1599\nafoot,1,juliuscaesar,1599\nforemost,1,juliuscaesar,1599\nopens,1,juliuscaesar,1599\ntower,1,juliuscaesar,1599\nquite,1,juliuscaesar,1599\npredictions,1,juliuscaesar,1599\ndogs,1,juliuscaesar,1599\nnoted,1,juliuscaesar,1599\nentertain,1,juliuscaesar,1599\neagles,1,juliuscaesar,1599\nstorm,1,juliuscaesar,1599\nfailing,1,juliuscaesar,1599\nstory,1,juliuscaesar,1599\nbanqueting,1,juliuscaesar,1599\ndeep,1,juliuscaesar,1599\nbreath,1,juliuscaesar,1599\ndeer,1,juliuscaesar,1599\naffection,1,juliuscaesar,1599\npromised,1,juliuscaesar,1599\nwhereto,1,juliuscaesar,1599\nmood,1,juliuscaesar,1599\npapers,1,juliuscaesar,1599\nCannot,1,juliuscaesar,1599\nha,1,juliuscaesar,1599\nFortune,1,juliuscaesar,1599\nvoyage,1,juliuscaesar,1599\nDurst,1,juliuscaesar,1599\nsatisfy,1,juliuscaesar,1599\nFear,1,juliuscaesar,1599\nCompanion,1,juliuscaesar,1599\nservant,1,juliuscaesar,1599\ninstances,1,juliuscaesar,1599\nspirited,1,juliuscaesar,1599\nHere's,1,juliuscaesar,1599\nrepute,1,juliuscaesar,1599\nwaspish,1,juliuscaesar,1599\ncarrion,1,juliuscaesar,1599\ncurrent,1,juliuscaesar,1599\nsheep,1,juliuscaesar,1599\n'Give,1,juliuscaesar,1599\nfasten,1,juliuscaesar,1599\nbeat,1,juliuscaesar,1599\nyoked,1,juliuscaesar,1599\nAdvances,1,juliuscaesar,1599\ndebt,1,juliuscaesar,1599\nneeds,1,juliuscaesar,1599\nstoop,1,juliuscaesar,1599\nAmbition,1,juliuscaesar,1599\nyes,1,juliuscaesar,1599\nlaments,1,juliuscaesar,1599\nmurderous,1,juliuscaesar,1599\npraying,1,juliuscaesar,1599\nlegs,1,juliuscaesar,1599\nUnless,1,juliuscaesar,1599\nstone,1,juliuscaesar,1599\ndisturbed,1,juliuscaesar,1599\nstony,1,juliuscaesar,1599\ndeal,1,juliuscaesar,1599\ngait,1,juliuscaesar,1599\nvouchsafe,1,juliuscaesar,1599\ndeaf,1,juliuscaesar,1599\nvictory,1,juliuscaesar,1599\nSafe,1,juliuscaesar,1599\nbefriend,1,juliuscaesar,1599\ninterim,1,juliuscaesar,1599\ntime's,1,juliuscaesar,1599\nlighted,1,juliuscaesar,1599\nlend,1,juliuscaesar,1599\nmirrors,1,juliuscaesar,1599\nrears,1,juliuscaesar,1599\ntorches,1,juliuscaesar,1599\naffrighted,1,juliuscaesar,1599\nmakest,1,juliuscaesar,1599\nBrute,1,juliuscaesar,1599\nay,1,juliuscaesar,1599\nyields,1,juliuscaesar,1599\napes,1,juliuscaesar,1599\nDirectly,1,juliuscaesar,1599\nmemory,1,juliuscaesar,1599\nfalser,1,juliuscaesar,1599\ninterred,1,juliuscaesar,1599\npiercing,1,juliuscaesar,1599\ndispleased,1,juliuscaesar,1599\nhumours,1,juliuscaesar,1599\nbanished,1,juliuscaesar,1599\nbetray'd,1,juliuscaesar,1599\nthat's,1,juliuscaesar,1599\nwonderful,1,juliuscaesar,1599\nask'd,1,juliuscaesar,1599\ncowardly,1,juliuscaesar,1599\nNervii,1,juliuscaesar,1599\ncomment,1,juliuscaesar,1599\nHooting,1,juliuscaesar,1599\nnecessity,1,juliuscaesar,1599\nutmost,1,juliuscaesar,1599\nGoes,1,juliuscaesar,1599\nwrangle,1,juliuscaesar,1599\nEarly,1,juliuscaesar,1599\nwhereof,1,juliuscaesar,1599\nunfirm,1,juliuscaesar,1599\nmeditates,1,juliuscaesar,1599\nsometime,1,juliuscaesar,1599\ndescribed,1,juliuscaesar,1599\nTook,1,juliuscaesar,1599\ncloaks,1,juliuscaesar,1599\nvalue,1,juliuscaesar,1599\ntrain,1,juliuscaesar,1599\noffences,1,juliuscaesar,1599\nbegg'd,1,juliuscaesar,1599\ncauses,1,juliuscaesar,1599\nsuperstitious,1,juliuscaesar,1599\nDecius',1,juliuscaesar,1599\nmoon,1,juliuscaesar,1599\nloss,1,juliuscaesar,1599\nForum,1,juliuscaesar,1599\nadd,1,juliuscaesar,1599\nspeak'st,1,juliuscaesar,1599\nsemblance,1,juliuscaesar,1599\nDesiring,1,juliuscaesar,1599\nshrieking,1,juliuscaesar,1599\nknot,1,juliuscaesar,1599\napparel,1,juliuscaesar,1599\nsqueal,1,juliuscaesar,1599\nblue,1,juliuscaesar,1599\nbrutish,1,juliuscaesar,1599\nbootless,1,juliuscaesar,1599\nmischiefs,1,juliuscaesar,1599\nincertain,1,juliuscaesar,1599\nforgot,1,juliuscaesar,1599\nclamours,1,juliuscaesar,1599\nnatures,1,juliuscaesar,1599\npure,1,juliuscaesar,1599\nmarr'd,1,juliuscaesar,1599\nload,1,juliuscaesar,1599\nGuards,1,juliuscaesar,1599\ncouchings,1,juliuscaesar,1599\nCame,1,juliuscaesar,1599\npresume,1,juliuscaesar,1599\nFulfil,1,juliuscaesar,1599\nspouts,1,juliuscaesar,1599\naccents,1,juliuscaesar,1599\nchoice,1,juliuscaesar,1599\ntempted,1,juliuscaesar,1599\nfierce,1,juliuscaesar,1599\ndiscourse,1,juliuscaesar,1599\noutward,1,juliuscaesar,1599\nharm's,1,juliuscaesar,1599\nfrighted,1,juliuscaesar,1599\ntu,1,juliuscaesar,1599\nCamp,1,juliuscaesar,1599\nArmy,1,juliuscaesar,1599\nhug,1,juliuscaesar,1599\ntinctures,1,juliuscaesar,1599\ncancel,1,juliuscaesar,1599\nlabouring,1,juliuscaesar,1599\nswounded,1,juliuscaesar,1599\nLigarius',1,juliuscaesar,1599\norchards,1,juliuscaesar,1599\nkingly,1,juliuscaesar,1599\ninfirmities,1,juliuscaesar,1599\nsenseless,1,juliuscaesar,1599\nnearer,1,juliuscaesar,1599\nneat's,1,juliuscaesar,1599\ndisjoins,1,juliuscaesar,1599\nbasest,1,juliuscaesar,1599\nCall,1,juliuscaesar,1599\nperform'd,1,juliuscaesar,1599\nhusband's,1,juliuscaesar,1599\nRead,1,juliuscaesar,1599\nnatural,1,juliuscaesar,1599\nserpent's,1,juliuscaesar,1599\nrepeal,1,juliuscaesar,1599\nsignal,1,juliuscaesar,1599\nstrings,1,juliuscaesar,1599\nContaminate,1,juliuscaesar,1599\nfour,1,juliuscaesar,1599\nfoul,1,juliuscaesar,1599\nsighing,1,juliuscaesar,1599\ndefense,1,juliuscaesar,1599\ndisconsolate,1,juliuscaesar,1599\nEnjoy,1,juliuscaesar,1599\nthreaten'd,1,juliuscaesar,1599\navoided,1,juliuscaesar,1599\npraise,1,juliuscaesar,1599\nshell,1,juliuscaesar,1599\n'ARTEMIDORUS,1,juliuscaesar,1599\nexpect,1,juliuscaesar,1599\nhazards,1,juliuscaesar,1599\nmidnight,1,juliuscaesar,1599\ndeaths,1,juliuscaesar,1599\nbathed,1,juliuscaesar,1599\nstraws,1,juliuscaesar,1599\ntomorrow,1,juliuscaesar,1599\navenged,1,juliuscaesar,1599\nneglect,1,juliuscaesar,1599\nhangs,1,juliuscaesar,1599\nstricken,1,juliuscaesar,1599\nmender,1,juliuscaesar,1599\nwinter's,1,juliuscaesar,1599\npaid,1,juliuscaesar,1599\nwasted,1,juliuscaesar,1599\nNight,1,juliuscaesar,1599\nmock,1,juliuscaesar,1599\nincreaseth,1,juliuscaesar,1599\nstrive,1,juliuscaesar,1599\nIngratitude,1,juliuscaesar,1599\ndeceitful,1,juliuscaesar,1599\ndevise,1,juliuscaesar,1599\ndrizzled,1,juliuscaesar,1599\nRemorse,1,juliuscaesar,1599\ntempests,1,juliuscaesar,1599\nshop,1,juliuscaesar,1599\nhate,1,juliuscaesar,1599\nworldly,1,juliuscaesar,1599\nhats,1,juliuscaesar,1599\nputs,1,juliuscaesar,1599\nyielded,1,juliuscaesar,1599\npetitions,1,juliuscaesar,1599\nexcept,1,juliuscaesar,1599\nfaithful,1,juliuscaesar,1599\nnapkins,1,juliuscaesar,1599\nprepared,1,juliuscaesar,1599\nunlucky,1,juliuscaesar,1599\nfond,1,juliuscaesar,1599\ngirl,1,juliuscaesar,1599\ndews,1,juliuscaesar,1599\nattempts,1,juliuscaesar,1599\nunkindest,1,juliuscaesar,1599\nforms,1,juliuscaesar,1599\nrightly,1,juliuscaesar,1599\nlock,1,juliuscaesar,1599\nfold,1,juliuscaesar,1599\ningratitude,1,juliuscaesar,1599\nBlood,1,juliuscaesar,1599\nmenace,1,juliuscaesar,1599\ncalculate,1,juliuscaesar,1599\nbeggars,1,juliuscaesar,1599\napprehensive,1,juliuscaesar,1599\nThasos,1,juliuscaesar,1599\nStole,1,juliuscaesar,1599\nKind,1,juliuscaesar,1599\naweary,1,juliuscaesar,1599\nunnumber'd,1,juliuscaesar,1599\nAmong,1,juliuscaesar,1599\neighth,1,juliuscaesar,1599\nfawn'd,1,juliuscaesar,1599\nundone,1,juliuscaesar,1599\nabler,1,juliuscaesar,1599\nApt,1,juliuscaesar,1599\nrabblement,1,juliuscaesar,1599\nSoul,1,juliuscaesar,1599\nfed,1,juliuscaesar,1599\nnative,1,juliuscaesar,1599\nchides,1,juliuscaesar,1599\nsweetly,1,juliuscaesar,1599\nAte,1,juliuscaesar,1599\nnaughty,1,juliuscaesar,1599\nAction,1,juliuscaesar,1599\nhiss,1,juliuscaesar,1599\nrhetoric,1,juliuscaesar,1599\nsicken,1,juliuscaesar,1599\nmention,1,juliuscaesar,1599\ntrial,1,juliuscaesar,1599\nchafing,1,juliuscaesar,1599\nhazard,1,juliuscaesar,1599\nguess,1,juliuscaesar,1599\nhoneyless,1,juliuscaesar,1599\nstemming,1,juliuscaesar,1599\nleaf,1,juliuscaesar,1599\ncompact,1,juliuscaesar,1599\nmarch,1,juliuscaesar,1599\nconsumed,1,juliuscaesar,1599\nheight,1,juliuscaesar,1599\nnobler,1,juliuscaesar,1599\nBetween,1,juliuscaesar,1599\nfat,1,juliuscaesar,1599\nwheels,1,juliuscaesar,1599\nHorses,1,juliuscaesar,1599\nrays,1,juliuscaesar,1599\nComes,1,juliuscaesar,1599\nimitations,1,juliuscaesar,1599\nopinions,1,juliuscaesar,1599\nleap,1,juliuscaesar,1599\njustice,1,juliuscaesar,1599\nhunters,1,juliuscaesar,1599\nCountrymen,1,juliuscaesar,1599\nrender'd,1,juliuscaesar,1599\nperceived,1,juliuscaesar,1599\ncarrions,1,juliuscaesar,1599\nHack'd,1,juliuscaesar,1599\nuniversal,1,juliuscaesar,1599\nkeeps,1,juliuscaesar,1599\nventures,1,juliuscaesar,1599\nmain,1,juliuscaesar,1599\nDepart,1,juliuscaesar,1599\nsurgeon,1,juliuscaesar,1599\nmortified,1,juliuscaesar,1599\ntarry,1,juliuscaesar,1599\nANTONIUS,1,juliuscaesar,1599\nglow,1,juliuscaesar,1599\nhoney,1,juliuscaesar,1599\nrote,1,juliuscaesar,1599\nAgainst,1,juliuscaesar,1599\nreport,1,juliuscaesar,1599\nempty,1,juliuscaesar,1599\ncarries,1,juliuscaesar,1599\ntokens,1,juliuscaesar,1599\nmechanical,1,juliuscaesar,1599\nCanst,1,juliuscaesar,1599\nbreathed,1,juliuscaesar,1599\nmischief,1,juliuscaesar,1599\nrose,1,juliuscaesar,1599\nbravery,1,juliuscaesar,1599\nfaction,1,juliuscaesar,1599\nGenius,1,juliuscaesar,1599\nspouting,1,juliuscaesar,1599\ncouldst,1,juliuscaesar,1599\nwater,1,juliuscaesar,1599\nsmallest,1,juliuscaesar,1599\ndarts,1,juliuscaesar,1599\nrepose,1,juliuscaesar,1599\nElse,1,juliuscaesar,1599\nerrands,1,juliuscaesar,1599\napply,1,juliuscaesar,1599\nhinds,1,juliuscaesar,1599\naction,1,juliuscaesar,1599\nworkman,1,juliuscaesar,1599\nfaculties,1,juliuscaesar,1599\nimminent,1,juliuscaesar,1599\noccupation,1,juliuscaesar,1599\nsignified,1,juliuscaesar,1599\nmace,1,juliuscaesar,1599\ngently,1,juliuscaesar,1599\nacting,1,juliuscaesar,1599\nnoon,1,juliuscaesar,1599\n'Brutus,1,juliuscaesar,1599\nbelow,1,juliuscaesar,1599\nconceited,1,juliuscaesar,1599\nindifferently,1,juliuscaesar,1599\nConceptions,1,juliuscaesar,1599\nrout,1,juliuscaesar,1599\ncaptivity,1,juliuscaesar,1599\nschedule,1,juliuscaesar,1599\nbravely,1,juliuscaesar,1599\nfaint,1,juliuscaesar,1599\ntenor,1,juliuscaesar,1599\nyear,1,juliuscaesar,1599\nSheathe,1,juliuscaesar,1599\nobserver,1,juliuscaesar,1599\nobserved,1,juliuscaesar,1599\nLove,1,juliuscaesar,1599\nmock'd,1,juliuscaesar,1599\nglasses,1,juliuscaesar,1599\noration,1,juliuscaesar,1599\nClean,1,juliuscaesar,1599\nSoft,1,juliuscaesar,1599\nchase,1,juliuscaesar,1599\nstares,1,juliuscaesar,1599\nmeditating,1,juliuscaesar,1599\nannoy,1,juliuscaesar,1599\nFearing,1,juliuscaesar,1599\ncitizen,1,juliuscaesar,1599\nborne,1,juliuscaesar,1599\nBriefly,1,juliuscaesar,1599\nSit,1,juliuscaesar,1599\nvisage,1,juliuscaesar,1599\nTransformed,1,juliuscaesar,1599\ncharm,1,juliuscaesar,1599\naffections,1,juliuscaesar,1599\nthirsty,1,juliuscaesar,1599\nSearching,1,juliuscaesar,1599\nstays,1,juliuscaesar,1599\nprogress,1,juliuscaesar,1599\nyou'll,1,juliuscaesar,1599\nwho's,1,juliuscaesar,1599\nMischief,1,juliuscaesar,1599\npresented,1,juliuscaesar,1599\nforest,1,juliuscaesar,1599\nplaces,1,juliuscaesar,1599\nstared,1,juliuscaesar,1599\nhurtled,1,juliuscaesar,1599\ndoomsday,1,juliuscaesar,1599\nsay'st,1,juliuscaesar,1599\nAge,1,juliuscaesar,1599\nDoth,1,juliuscaesar,1599\ncloak,1,juliuscaesar,1599\nbestride,1,juliuscaesar,1599\nwithholds,1,juliuscaesar,1599\nchild,1,juliuscaesar,1599\nvanquish'd,1,juliuscaesar,1599\nLoud,1,juliuscaesar,1599\nHide,1,juliuscaesar,1599\nDost,1,juliuscaesar,1599\nSignifies,1,juliuscaesar,1599\nrecount,1,juliuscaesar,1599\nmourn,1,juliuscaesar,1599\nconcave,1,juliuscaesar,1599\nravens,1,juliuscaesar,1599\nattire,1,juliuscaesar,1599\nPeople,1,juliuscaesar,1599\nlodge,1,juliuscaesar,1599\nmortal,1,juliuscaesar,1599\nHybla,1,juliuscaesar,1599\nFree,1,juliuscaesar,1599\nsterner,1,juliuscaesar,1599\nsacrifice,1,juliuscaesar,1599\nDelay,1,juliuscaesar,1599\nproscriptions,1,juliuscaesar,1599\ntribunes,1,juliuscaesar,1599\narrived,1,juliuscaesar,1599\n'Darest,1,juliuscaesar,1599\ndeck'd,1,juliuscaesar,1599\nungently,1,juliuscaesar,1599\ncovert,1,juliuscaesar,1599\nsatisfaction,1,juliuscaesar,1599\nprize,1,juliuscaesar,1599\nsaving,1,juliuscaesar,1599\nMakes,1,juliuscaesar,1599\nrange,1,juliuscaesar,1599\nlioness,1,juliuscaesar,1599\ntempest,1,juliuscaesar,1599\nbosoms,1,juliuscaesar,1599\nfoolish,1,juliuscaesar,1599\ntowers,1,juliuscaesar,1599\nGrant,1,juliuscaesar,1599\nrobbers,1,juliuscaesar,1599\nMark'd,1,juliuscaesar,1599\npurposed,1,juliuscaesar,1599\nmerrily,1,juliuscaesar,1599\nbeads,1,juliuscaesar,1599\nconfidence,1,juliuscaesar,1599\nwrought,1,juliuscaesar,1599\nstraightway,1,juliuscaesar,1599\nlowest,1,juliuscaesar,1599\ndecline,1,juliuscaesar,1599\nstabbed,1,juliuscaesar,1599\ncourage,1,juliuscaesar,1599\nmask,1,juliuscaesar,1599\negg,1,juliuscaesar,1599\nghastly,1,juliuscaesar,1599\npartake,1,juliuscaesar,1599\nkissing,1,juliuscaesar,1599\nsoles,1,juliuscaesar,1599\nninth,1,juliuscaesar,1599\nranks,1,juliuscaesar,1599\nmart,1,juliuscaesar,1599\nfountain,1,juliuscaesar,1599\nunmeritable,1,juliuscaesar,1599\nwoe,1,juliuscaesar,1599\nslave,1,juliuscaesar,1599\nAny,1,juliuscaesar,1599\nfurnish'd,1,juliuscaesar,1599\nWeigh,1,juliuscaesar,1599\nlet's,1,juliuscaesar,1599\nbecause,1,juliuscaesar,1599\nSign'd,1,juliuscaesar,1599\nCasca's,1,juliuscaesar,1599\nbillow,1,juliuscaesar,1599\nungentle,1,juliuscaesar,1599\nrheumy,1,juliuscaesar,1599\nblow,1,juliuscaesar,1599\nbrains,1,juliuscaesar,1599\nvision,1,juliuscaesar,1599\ncraves,1,juliuscaesar,1599\ngates,1,juliuscaesar,1599\nruffle,1,juliuscaesar,1599\nenlarge,1,juliuscaesar,1599\ndropping,1,juliuscaesar,1599\nshoulder,1,juliuscaesar,1599\nchide,1,juliuscaesar,1599\ndisrobe,1,juliuscaesar,1599\nmountain,1,juliuscaesar,1599\nseal'd,1,juliuscaesar,1599\nthreatening,1,juliuscaesar,1599\ncaptive,1,juliuscaesar,1599\nsmatch,1,juliuscaesar,1599\nsearch,1,juliuscaesar,1599\nengender'd,1,juliuscaesar,1599\ngraze,1,juliuscaesar,1599\nworthless,1,juliuscaesar,1599\nsmoke,1,juliuscaesar,1599\nuttered,1,juliuscaesar,1599\ndoubted,1,juliuscaesar,1599\nMade,1,juliuscaesar,1599\nDescend,1,juliuscaesar,1599\nthigh,1,juliuscaesar,1599\nChoose,1,juliuscaesar,1599\nstake,1,juliuscaesar,1599\ndivision,1,juliuscaesar,1599\ndesires,1,juliuscaesar,1599\nGiving,1,juliuscaesar,1599\nOffering,1,juliuscaesar,1599\narises,1,juliuscaesar,1599\nfirm,1,juliuscaesar,1599\nwrath,1,juliuscaesar,1599\ndesired,1,juliuscaesar,1599\nstain,1,juliuscaesar,1599\nWere,1,juliuscaesar,1599\nabridged,1,juliuscaesar,1599\nfray,1,juliuscaesar,1599\nexigent,1,juliuscaesar,1599\nproves,1,juliuscaesar,1599\njigging,1,juliuscaesar,1599\noaks,1,juliuscaesar,1599\nlosing,1,juliuscaesar,1599\nComing,1,juliuscaesar,1599\nJoin'd,1,juliuscaesar,1599\nproved,1,juliuscaesar,1599\nstale,1,juliuscaesar,1599\nrogues,1,juliuscaesar,1599\nneck,1,juliuscaesar,1599\nroars,1,juliuscaesar,1599\ntoday,1,juliuscaesar,1599\nformer,1,juliuscaesar,1599\npurchase,1,juliuscaesar,1599\ndishonour,1,juliuscaesar,1599\nsafely,1,juliuscaesar,1599\nknock'd,1,juliuscaesar,1599\nUnshaked,1,juliuscaesar,1599\nFreedom,1,juliuscaesar,1599\nliberties,1,juliuscaesar,1599\nWitness,1,juliuscaesar,1599\nfive,1,juliuscaesar,1599\nwin,1,juliuscaesar,1599\nfather'd,1,juliuscaesar,1599\nproposed,1,juliuscaesar,1599\n'Lo,1,juliuscaesar,1599\nhateful,1,juliuscaesar,1599\nmischievous,1,juliuscaesar,1599\nAntonius',1,juliuscaesar,1599\nstomach,1,juliuscaesar,1599\nconfines,1,juliuscaesar,1599\nunicorns,1,juliuscaesar,1599\nhears,1,juliuscaesar,1599\nMoreover,1,juliuscaesar,1599\nretentive,1,juliuscaesar,1599\nsighted,1,juliuscaesar,1599\nloving,1,juliuscaesar,1599\nsitting,1,juliuscaesar,1599\nRushing,1,juliuscaesar,1599\nstabs,1,juliuscaesar,1599\nselfsame,1,juliuscaesar,1599\nrecover,1,juliuscaesar,1599\nDear,1,juliuscaesar,1599\ncuts,1,juliuscaesar,1599\nabjects,1,juliuscaesar,1599\nCheque'd,1,juliuscaesar,1599\npreformed,1,juliuscaesar,1599\ntributaries,1,juliuscaesar,1599\nSure,1,juliuscaesar,1599\nripe,1,juliuscaesar,1599\nAlarums,1,juliuscaesar,1599\nsalutation,1,juliuscaesar,1599\nstanding,1,juliuscaesar,1599\ncount,1,juliuscaesar,1599\nremains,1,juliuscaesar,1599\nstingless,1,juliuscaesar,1599\nsubtle,1,juliuscaesar,1599\nbuffet,1,juliuscaesar,1599\nreturning,1,juliuscaesar,1599\nmisgiving,1,juliuscaesar,1599\nchastisement,1,juliuscaesar,1599\ncynic,1,juliuscaesar,1599\nlikes,1,juliuscaesar,1599\nDwell,1,juliuscaesar,1599\ndust,1,juliuscaesar,1599\nstiff,1,juliuscaesar,1599\nunpurged,1,juliuscaesar,1599\n'Caesar',1,juliuscaesar,1599\nsinews,1,juliuscaesar,1599\nearnest,1,juliuscaesar,1599\nwax,1,juliuscaesar,1599\nCan,1,juliuscaesar,1599\ndriven,1,juliuscaesar,1599\nactors,1,juliuscaesar,1599\nprevail,1,juliuscaesar,1599\ndrives,1,juliuscaesar,1599\nbetween,1,juliuscaesar,1599\nChastisement,1,juliuscaesar,1599\nhidden,1,juliuscaesar,1599\nintend,1,juliuscaesar,1599\ngarland,1,juliuscaesar,1599\nprovidence,1,juliuscaesar,1599\nfantasies,1,juliuscaesar,1599\nwood,1,juliuscaesar,1599\nserve,1,juliuscaesar,1599\ncovetous,1,juliuscaesar,1599\n'do,1,juliuscaesar,1599\napace,1,juliuscaesar,1599\nreveller,1,juliuscaesar,1599\nproceeding,1,juliuscaesar,1599\nwont,1,juliuscaesar,1599\npurpled,1,juliuscaesar,1599\nprick,1,juliuscaesar,1599\nsupper,1,juliuscaesar,1599\nEndure,1,juliuscaesar,1599\nsplit,1,juliuscaesar,1599\nemulation,1,juliuscaesar,1599\nWritings,1,juliuscaesar,1599\nwomen's,1,juliuscaesar,1599\nreceivest,1,juliuscaesar,1599\nmultitude,1,juliuscaesar,1599\nnext,1,juliuscaesar,1599\ncushions,1,juliuscaesar,1599\nthreats,1,juliuscaesar,1599\nThree,1,juliuscaesar,1599\ndiscard,1,juliuscaesar,1599\nflourish'd,1,juliuscaesar,1599\ncursed,1,juliuscaesar,1599\nruins,1,juliuscaesar,1599\nSenators,1,juliuscaesar,1599\nnotice,1,juliuscaesar,1599\nGives,1,juliuscaesar,1599\nthunderbolts,1,juliuscaesar,1599\ncull,1,juliuscaesar,1599\nvulgar,1,juliuscaesar,1599\nfix'd,1,juliuscaesar,1599\nagree,1,juliuscaesar,1599\nlivelong,1,juliuscaesar,1599\nHoping,1,juliuscaesar,1599\nworships,1,juliuscaesar,1599\nhack,1,juliuscaesar,1599\nwhat's,1,juliuscaesar,1599\ncharges,1,juliuscaesar,1599\nHail,1,juliuscaesar,1599\nwreath,1,juliuscaesar,1599\nclapped,1,juliuscaesar,1599\nanger,1,juliuscaesar,1599\nweeping,1,juliuscaesar,1599\nspleen,1,juliuscaesar,1599\nkilling,1,juliuscaesar,1599\nlabour'd,1,juliuscaesar,1599\nopposite,1,juliuscaesar,1599\ncompass,1,juliuscaesar,1599\nowe,1,juliuscaesar,1599\nrudeness,1,juliuscaesar,1599\ndull,1,juliuscaesar,1599\nsoldiers',1,juliuscaesar,1599\nrepealing,1,juliuscaesar,1599\nwolf,1,juliuscaesar,1599\nsupporting,1,juliuscaesar,1599\ntouching,1,juliuscaesar,1599\ndetermined,1,juliuscaesar,1599\nflash,1,juliuscaesar,1599\nwaste,1,juliuscaesar,1599\nsober,1,juliuscaesar,1599\nfalling,1,juliuscaesar,1599\nwrong'd,1,juliuscaesar,1599\ncobble,1,juliuscaesar,1599\nfail,1,juliuscaesar,1599\nmightier,1,juliuscaesar,1599\nStrike,1,juliuscaesar,1599\nhideous,1,juliuscaesar,1599\ncompare,1,juliuscaesar,1599\nShow,1,juliuscaesar,1599\nfain,1,juliuscaesar,1599\nguilty,1,juliuscaesar,1599\ntable,1,juliuscaesar,1599\ngrieve,1,juliuscaesar,1599\nwholesome,1,juliuscaesar,1599\nAntony's,1,juliuscaesar,1599\nSwear,1,juliuscaesar,1599\ninsuppressive,1,juliuscaesar,1599\nencouraged,1,juliuscaesar,1599\nMany,1,juliuscaesar,1599\nwept,1,juliuscaesar,1599\nyond,1,juliuscaesar,1599\nparticle,1,juliuscaesar,1599\njudge,1,juliuscaesar,1599\nmessengers,1,juliuscaesar,1599\nweapons,1,juliuscaesar,1599\ndoublet,1,juliuscaesar,1599\nmodesty,1,juliuscaesar,1599\naugmented,1,juliuscaesar,1599\ncautelous,1,juliuscaesar,1599\nflatterer's,1,juliuscaesar,1599\nbustling,1,juliuscaesar,1599\nestablish,1,juliuscaesar,1599\nexhalations,1,juliuscaesar,1599\ncares,1,juliuscaesar,1599\nfoe,1,juliuscaesar,1599\nransoms,1,juliuscaesar,1599\ndistract,1,juliuscaesar,1599\nProceed,1,juliuscaesar,1599\nwander,1,juliuscaesar,1599\nwert,1,juliuscaesar,1599\nShake,1,juliuscaesar,1599\nCall'd,1,juliuscaesar,1599\ncrests,1,juliuscaesar,1599\nappertain,1,juliuscaesar,1599\nImpatient,1,juliuscaesar,1599\nmethinks,1,juliuscaesar,1599\nYond,1,juliuscaesar,1599\nRuns,1,juliuscaesar,1599\nkites,1,juliuscaesar,1599\npleased,1,juliuscaesar,1599\ntune,1,juliuscaesar,1599\nthrew,1,juliuscaesar,1599\nprostrate,1,juliuscaesar,1599\ncompany,1,juliuscaesar,1599\nfighting,1,juliuscaesar,1599\nscolding,1,juliuscaesar,1599\ndo't,1,juliuscaesar,1599\nhusbanded,1,juliuscaesar,1599\nunderlings,1,juliuscaesar,1599\no'ershot,1,juliuscaesar,1599\nflame,1,juliuscaesar,1599\noffices,1,juliuscaesar,1599\nfine,1,juliuscaesar,1599\npassion,1,juliuscaesar,1599\nvow,1,juliuscaesar,1599\nDoing,1,juliuscaesar,1599\nWeeping,1,juliuscaesar,1599\nswallow'd,1,juliuscaesar,1599\nscratch'd,1,juliuscaesar,1599\nglanced,1,juliuscaesar,1599\nfill,1,juliuscaesar,1599\nstains,1,juliuscaesar,1599\nsafety,1,juliuscaesar,1599\nsavage,1,juliuscaesar,1599\nengaged,1,juliuscaesar,1599\nclap,1,juliuscaesar,1599\nchannel,1,juliuscaesar,1599\nDomestic,1,juliuscaesar,1599\nprotester,1,juliuscaesar,1599\nFast,1,juliuscaesar,1599\nbark,1,juliuscaesar,1599\nminded,1,juliuscaesar,1599\nniggard,1,juliuscaesar,1599\nlordship,1,juliuscaesar,1599\nthunder,1,juliuscaesar,1599\nmeddle,1,juliuscaesar,1599\nwide,1,juliuscaesar,1599\npocket,1,juliuscaesar,1599\ndivers,1,juliuscaesar,1599\nkill'st,1,juliuscaesar,1599\nlines,1,juliuscaesar,1599\nan't,1,juliuscaesar,1599\nintermit,1,juliuscaesar,1599\nexpounded,1,juliuscaesar,1599\nwives,1,juliuscaesar,1599\nPlucking,1,juliuscaesar,1599\no'erswell,1,juliuscaesar,1599\nwatch'd,1,juliuscaesar,1599\nwaves,1,juliuscaesar,1599\nbars,1,juliuscaesar,1599\ncensure,1,juliuscaesar,1599\nbird,1,juliuscaesar,1599\nstinking,1,juliuscaesar,1599\nstrikes,1,juliuscaesar,1599\nallow'd,1,juliuscaesar,1599\nprophesy,1,juliuscaesar,1599\nchapped,1,juliuscaesar,1599\nslanderous,1,juliuscaesar,1599\ncogitations,1,juliuscaesar,1599\nuntouch'd,1,juliuscaesar,1599\nfriendship,1,juliuscaesar,1599\nbang,1,juliuscaesar,1599\nflames,1,juliuscaesar,1599\nweakness,1,juliuscaesar,1599\nlarge,1,juliuscaesar,1599\nboldly,1,juliuscaesar,1599\nblaze,1,juliuscaesar,1599\nafloat,1,juliuscaesar,1599\nsurly,1,juliuscaesar,1599\nlights,1,juliuscaesar,1599\ntale,1,juliuscaesar,1599\nis't,1,juliuscaesar,1599\nbuzzing,1,juliuscaesar,1599\nShamest,1,juliuscaesar,1599\ncalendar,1,juliuscaesar,1599\nlaw,1,juliuscaesar,1599\nListen,1,juliuscaesar,1599\nthousand,1,juliuscaesar,1599\nfarthest,1,juliuscaesar,1599\nLeap,1,juliuscaesar,1599\nKnew,1,juliuscaesar,1599\ncup,1,juliuscaesar,1599\notherwise,1,juliuscaesar,1599\nexcepted,1,juliuscaesar,1599\nwatchful,1,juliuscaesar,1599\nholes,1,juliuscaesar,1599\ninsupportable,1,juliuscaesar,1599\ngreets,1,juliuscaesar,1599\nEvery,1,juliuscaesar,1599\neagerly,1,juliuscaesar,1599\nPrick,1,juliuscaesar,1599\nVillains,1,juliuscaesar,1599\nShrunk,1,juliuscaesar,1599\nthaw'd,1,juliuscaesar,1599\npledge,1,juliuscaesar,1599\nshook,1,juliuscaesar,1599\napron,1,juliuscaesar,1599\ndungeon,1,juliuscaesar,1599\nhole,1,juliuscaesar,1599\nwaited,1,juliuscaesar,1599\nlinks,1,juliuscaesar,1599\nfirmament,1,juliuscaesar,1599\nwhizzing,1,juliuscaesar,1599\nhollow,1,juliuscaesar,1599\nconcluded,1,juliuscaesar,1599\nfollows,1,juliuscaesar,1599\nfired,1,juliuscaesar,1599\nVexed,1,juliuscaesar,1599\nsweaty,1,juliuscaesar,1599\ncarve,1,juliuscaesar,1599\nfires,1,juliuscaesar,1599\nrequest,1,juliuscaesar,1599\n'better',1,juliuscaesar,1599\nErebus,1,juliuscaesar,1599\npresents,1,juliuscaesar,1599\narrive,1,juliuscaesar,1599\nlives,1,juliuscaesar,1599\nairless,1,juliuscaesar,1599\ncommonwealth,1,juliuscaesar,1599\ndefeat,1,juliuscaesar,1599\nhorses,1,juliuscaesar,1599\nWhere's,1,juliuscaesar,1599\ngrudge,1,juliuscaesar,1599\nfeeding,1,juliuscaesar,1599\nresolution,1,juliuscaesar,1599\nRoman's,1,juliuscaesar,1599\ncounsels,1,juliuscaesar,1599\ntrain'd,1,juliuscaesar,1599\nconjure,1,juliuscaesar,1599\ninterpose,1,juliuscaesar,1599\ncholer,1,juliuscaesar,1599\nnotwithstanding,1,juliuscaesar,1599\nPlutus',1,juliuscaesar,1599\nprayers,1,juliuscaesar,1599\nmasker,1,juliuscaesar,1599\nalso,1,juliuscaesar,1599\nTroy,1,juliuscaesar,1599\nhairs,1,juliuscaesar,1599\nfourteen,1,juliuscaesar,1599\nelements,1,juliuscaesar,1599\nlying,1,juliuscaesar,1599\nfavour's,1,juliuscaesar,1599\nCalls,1,juliuscaesar,1599\nalways,1,juliuscaesar,1599\nhearse,1,juliuscaesar,1599\ngliding,1,juliuscaesar,1599\nfleering,1,juliuscaesar,1599\ntrophies,1,juliuscaesar,1599\ncontagion,1,juliuscaesar,1599\ntoils,1,juliuscaesar,1599\nstates,1,juliuscaesar,1599\nconquerors,1,juliuscaesar,1599\nkingdom,1,juliuscaesar,1599\nconverse,1,juliuscaesar,1599\nfuller,1,juliuscaesar,1599\ncrept,1,juliuscaesar,1599\nheralds,1,juliuscaesar,1599\nOlder,1,juliuscaesar,1599\nfeathers,1,juliuscaesar,1599\npresence,1,juliuscaesar,1599\nsouth,1,juliuscaesar,1599\nlowliness,1,juliuscaesar,1599\nsports,1,juliuscaesar,1599\nunkindness,1,juliuscaesar,1599\nNe'er,1,juliuscaesar,1599\nlook'd,1,juliuscaesar,1599\n'twixt,1,juliuscaesar,1599\nunderstood,1,juliuscaesar,1599\nage's,1,juliuscaesar,1599\nvessel,1,juliuscaesar,1599\nrender,1,juliuscaesar,1599\nMine,1,juliuscaesar,1599\nshapes,1,juliuscaesar,1599\ncumber,1,juliuscaesar,1599\nBelieve,1,juliuscaesar,1599\nwhom,1,juliuscaesar,1599\nmix'd,1,juliuscaesar,1599\nbared,1,juliuscaesar,1599\nexpectation,1,juliuscaesar,1599\nsetting,1,juliuscaesar,1599\nCnidos,1,juliuscaesar,1599\nranging,1,juliuscaesar,1599\ntraitor,1,juliuscaesar,1599\nPray,1,juliuscaesar,1599\nsacred,1,juliuscaesar,1599\nlightens,1,juliuscaesar,1599\nGentlemen,1,juliuscaesar,1599\nFashion,1,juliuscaesar,1599\nperson,1,juliuscaesar,1599\nportents,1,juliuscaesar,1599\nHe'll,1,juliuscaesar,1599\navoid,1,juliuscaesar,1599\nfathers',1,juliuscaesar,1599\ndownward,1,juliuscaesar,1599\nThrough,1,juliuscaesar,1599\nThings,1,juliuscaesar,1599\nlovest,1,juliuscaesar,1599\nClouds,1,juliuscaesar,1599\nwretched,1,juliuscaesar,1599\ntrembled,1,juliuscaesar,1599\ntied,1,juliuscaesar,1599\nBending,1,juliuscaesar,1599\napplauses,1,juliuscaesar,1599\nlovers,1,juliuscaesar,1599\ngusty,1,juliuscaesar,1599\ninfused,1,juliuscaesar,1599\nself,1,juliuscaesar,1599\naccording,1,juliuscaesar,1599\nreturn,1,juliuscaesar,1599\nCuts,1,juliuscaesar,1599\nNext,1,juliuscaesar,1599\nslaying,1,juliuscaesar,1599\nreputed,1,juliuscaesar,1599\ntalk'd,1,juliuscaesar,1599\nsent,1,juliuscaesar,1599\ngrieved,1,juliuscaesar,1599\ngreeting,1,juliuscaesar,1599\nlimitation,1,juliuscaesar,1599\n'These,1,juliuscaesar,1599\nchose,1,juliuscaesar,1599\nkerchief,1,juliuscaesar,1599\nformal,1,juliuscaesar,1599\nseason,1,juliuscaesar,1599\nleagues,1,juliuscaesar,1599\nprotest,1,juliuscaesar,1599\ntriumphs,1,juliuscaesar,1599\nbreak'st,1,juliuscaesar,1599\ncanopy,1,juliuscaesar,1599\nattains,1,juliuscaesar,1599\ncoin,1,juliuscaesar,1599\ncrooked,1,juliuscaesar,1599\nmaster's,1,juliuscaesar,1599\npipes,1,juliuscaesar,1599\nthreat,1,juliuscaesar,1599\nuntil,1,juliuscaesar,1599\nFire,1,juliuscaesar,1599\nregarded,1,juliuscaesar,1599\ntorch,1,juliuscaesar,1599\ntrod,1,juliuscaesar,1599\neat,1,juliuscaesar,1599\n'Liberty,1,juliuscaesar,1599\nseated,1,juliuscaesar,1599\nsacrificers,1,juliuscaesar,1599\nOmitted,1,juliuscaesar,1599\npetty,1,juliuscaesar,1599\nlitter'd,1,juliuscaesar,1599\nMusing,1,juliuscaesar,1599\nevening,1,juliuscaesar,1599\nsounded,1,juliuscaesar,1599\nGave,1,juliuscaesar,1599\nlegacies,1,juliuscaesar,1599\nHowever,1,juliuscaesar,1599\nconn'd,1,juliuscaesar,1599\ndisposing,1,juliuscaesar,1599\nmine's,1,juliuscaesar,1599\nconsequence,1,juliuscaesar,1599\nforced,1,juliuscaesar,1599\nlearn,1,juliuscaesar,1599\nburst,1,juliuscaesar,1599\nwring,1,juliuscaesar,1599\nlaugher,1,juliuscaesar,1599\nimpatiently,1,juliuscaesar,1599\nfunerals,1,juliuscaesar,1599\nmet,1,juliuscaesar,1599\nchidden,1,juliuscaesar,1599\nheaded,1,juliuscaesar,1599\nlofty,1,juliuscaesar,1599\nSooth,1,juliuscaesar,1599\nmisconstrued,1,juliuscaesar,1599\nwhelped,1,juliuscaesar,1599\nplunged,1,juliuscaesar,1599\npull'd,1,juliuscaesar,1599\nmeeting,1,juliuscaesar,1599\ndetermine,1,juliuscaesar,1599\nClock,1,juliuscaesar,1599\nconjured,1,juliuscaesar,1599\nSince,1,juliuscaesar,1599\ngrievously,1,juliuscaesar,1599\nseduced,1,juliuscaesar,1599\nphantasma,1,juliuscaesar,1599\nburns,1,juliuscaesar,1599\nwhit,1,juliuscaesar,1599\nExcept,1,juliuscaesar,1599\nAssemble,1,juliuscaesar,1599\nbattlements,1,juliuscaesar,1599\nGreat,1,juliuscaesar,1599\nbethink,1,juliuscaesar,1599\nswound,1,juliuscaesar,1599\nacross,1,juliuscaesar,1599\nHated,1,juliuscaesar,1599\nwarriors,1,juliuscaesar,1599\nmonarch's,1,juliuscaesar,1599\nhenceforth,1,juliuscaesar,1599\ncaptives,1,juliuscaesar,1599\nmarriage,1,juliuscaesar,1599\nappearing,1,juliuscaesar,1599\nSleek,1,juliuscaesar,1599\nSleep,1,juliuscaesar,1599\nplayers,1,juliuscaesar,1599\ngraybeards,1,juliuscaesar,1599\nstaled,1,juliuscaesar,1599\ndismiss,1,juliuscaesar,1599\nsometimes,1,juliuscaesar,1599\nrecreate,1,juliuscaesar,1599\nMarry,1,juliuscaesar,1599\nfever,1,juliuscaesar,1599\npurgers,1,juliuscaesar,1599\nProduce,1,juliuscaesar,1599\nthither,1,juliuscaesar,1599\nattendants,1,juliuscaesar,1599\ncitizens,1,juliuscaesar,1599\ngravity,1,juliuscaesar,1599\nMillions,1,juliuscaesar,1599\nimprove,1,juliuscaesar,1599\nbeauty,1,juliuscaesar,1599\ncompel,1,juliuscaesar,1599\nthrowing,1,juliuscaesar,1599\nmuffling,1,juliuscaesar,1599\nfright,1,juliuscaesar,1599\nWithout,1,juliuscaesar,1599\npeep,1,juliuscaesar,1599\nbesides,1,juliuscaesar,1599\nsilver,1,juliuscaesar,1599\nlist,1,juliuscaesar,1599\nwhet,1,juliuscaesar,1599\nhurl,1,juliuscaesar,1599\nimpart,1,juliuscaesar,1599\nlevying,1,juliuscaesar,1599\nappetite,1,juliuscaesar,1599\nvillager,1,juliuscaesar,1599\ncounters,1,juliuscaesar,1599\nLend,1,juliuscaesar,1599\nSubmitting,1,juliuscaesar,1599\nneigh,1,juliuscaesar,1599\ncarelessly,1,juliuscaesar,1599\nbooks,1,juliuscaesar,1599\ncompell'd,1,juliuscaesar,1599\nmoe,1,juliuscaesar,1599\nsway'd,1,juliuscaesar,1599\nfollow'd,1,juliuscaesar,1599\nRender,1,juliuscaesar,1599\ncorruption,1,juliuscaesar,1599\nshrewd,1,juliuscaesar,1599\nsilent,1,juliuscaesar,1599\nsimple,1,juliuscaesar,1599\nsentence,1,juliuscaesar,1599\n'This,1,juliuscaesar,1599\nwitness,1,juliuscaesar,1599\ntardy,1,juliuscaesar,1599\nnumbers,1,juliuscaesar,1599\ncover'd,1,juliuscaesar,1599\nreply,1,juliuscaesar,1599\nyesternight,1,juliuscaesar,1599\npresage,1,juliuscaesar,1599\nupmost,1,juliuscaesar,1599\nslay,1,juliuscaesar,1599\nLabeo,1,juliuscaesar,1599\nMount,1,juliuscaesar,1599\ndog,1,juliuscaesar,1599\ndiscovered,1,juliuscaesar,1599\nremain'd,1,juliuscaesar,1599\ndark,1,juliuscaesar,1599\nlosses,1,juliuscaesar,1599\nboldest,1,juliuscaesar,1599\noutlawry,1,juliuscaesar,1599\nFalls,1,juliuscaesar,1599\nmajestic,1,juliuscaesar,1599\nindirection,1,juliuscaesar,1599\nAeneas,1,juliuscaesar,1599\nmiseries,1,juliuscaesar,1599\nHe's,1,juliuscaesar,1599\nland,1,juliuscaesar,1599\ncarcass,1,juliuscaesar,1599\npraetor's,1,juliuscaesar,1599\nsoothsayer,1,juliuscaesar,1599\ncourt'sies,1,juliuscaesar,1599\nlamb,1,juliuscaesar,1599\ninstantly,1,juliuscaesar,1599\nmonths,1,juliuscaesar,1599\nwonders,1,juliuscaesar,1599\nresting,1,juliuscaesar,1599\nDRAMATIS,1,juliuscaesar,1599\nvenom,1,juliuscaesar,1599\nshine,1,juliuscaesar,1599\ndank,1,juliuscaesar,1599\nEpicurus,1,juliuscaesar,1599\nConspirators,1,juliuscaesar,1599\nundergo,1,juliuscaesar,1599\narming,1,juliuscaesar,1599\npass'd,1,juliuscaesar,1599\ndamn,1,juliuscaesar,1599\nbargain,1,juliuscaesar,1599\ncognizance,1,juliuscaesar,1599\nentreated,1,juliuscaesar,1599\ntired,1,juliuscaesar,1599\ntrees,1,juliuscaesar,1599\nwills,1,juliuscaesar,1599\ndivided,1,juliuscaesar,1599\nascend,1,juliuscaesar,1599\ngreatness,1,juliuscaesar,1599\nKneeling,1,juliuscaesar,1599\nsmell,1,juliuscaesar,1599\nstol'n,1,juliuscaesar,1599\ndew,1,juliuscaesar,1599\nschoolboy,1,juliuscaesar,1599\ngentler,1,juliuscaesar,1599\nTalk,1,juliuscaesar,1599\npulling,1,juliuscaesar,1599\ndwelling,1,juliuscaesar,1599\nwenches,1,juliuscaesar,1599\nalchemy,1,juliuscaesar,1599\ncorporal,1,juliuscaesar,1599\nbrim,1,juliuscaesar,1599\nslip,1,juliuscaesar,1599\nstomachs,1,juliuscaesar,1599\nfigures,1,juliuscaesar,1599\nsoundly,1,juliuscaesar,1599\nmourned,1,juliuscaesar,1599\namaze,1,juliuscaesar,1599\nOpens,1,juliuscaesar,1599\nglared,1,juliuscaesar,1599\ncooling,1,juliuscaesar,1599\nparley,1,juliuscaesar,1599\nrepair,1,juliuscaesar,1599\n'Peace,1,juliuscaesar,1599\noaths,1,juliuscaesar,1599\nlack,1,juliuscaesar,1599\nshape,1,juliuscaesar,1599\nThrice,1,juliuscaesar,1599\nspoils,1,juliuscaesar,1599\nWords,1,juliuscaesar,1599\nBrutus's,1,juliuscaesar,1599\ncrows,1,juliuscaesar,1599\ndim,1,juliuscaesar,1599\nshare,1,juliuscaesar,1599\ndip,1,juliuscaesar,1599\nelbows,1,juliuscaesar,1599\nFill,1,juliuscaesar,1599\nvilely,1,juliuscaesar,1599\nFierce,1,juliuscaesar,1599\nTut,1,juliuscaesar,1599\ndegrees,1,juliuscaesar,1599\nfortunes,1,juliuscaesar,1599\nhedge,1,juliuscaesar,1599\nwafture,1,juliuscaesar,1599\nsway,1,juliuscaesar,1599\nReviving,1,juliuscaesar,1599\nheed,2,juliuscaesar,1599\narmies,2,juliuscaesar,1599\nlusty,2,juliuscaesar,1599\ninstruments,2,juliuscaesar,1599\nStir,2,juliuscaesar,1599\ntremble,2,juliuscaesar,1599\nweary,2,juliuscaesar,1599\nraw,2,juliuscaesar,1599\nwish'd,2,juliuscaesar,1599\nfollowing,2,juliuscaesar,1599\nroyal,2,juliuscaesar,1599\nbrows,2,juliuscaesar,1599\nWhether,2,juliuscaesar,1599\nfoolery,2,juliuscaesar,1599\nmend,2,juliuscaesar,1599\nbutchers,2,juliuscaesar,1599\nLupercal,2,juliuscaesar,1599\nhell,2,juliuscaesar,1599\nlaughter,2,juliuscaesar,1599\nbondmen,2,juliuscaesar,1599\nphilosophy,2,juliuscaesar,1599\ntheatre,2,juliuscaesar,1599\nprisoner,2,juliuscaesar,1599\nutterance,2,juliuscaesar,1599\ncomest,2,juliuscaesar,1599\nrid,2,juliuscaesar,1599\ndrink,2,juliuscaesar,1599\nunderneath,2,juliuscaesar,1599\nlaugh,2,juliuscaesar,1599\nsoul,2,juliuscaesar,1599\ncalls,2,juliuscaesar,1599\nterrible,2,juliuscaesar,1599\npleasures,2,juliuscaesar,1599\ncare,2,juliuscaesar,1599\nproclaim,2,juliuscaesar,1599\ndemand,2,juliuscaesar,1599\ncast,2,juliuscaesar,1599\nbattles,2,juliuscaesar,1599\nearly,2,juliuscaesar,1599\nsoftly,2,juliuscaesar,1599\nwalking,2,juliuscaesar,1599\nOver,2,juliuscaesar,1599\nstrength,2,juliuscaesar,1599\nseven,2,juliuscaesar,1599\nbirth,2,juliuscaesar,1599\ndrive,2,juliuscaesar,1599\nslept,2,juliuscaesar,1599\nYoung,2,juliuscaesar,1599\nentrails,2,juliuscaesar,1599\nstream,2,juliuscaesar,1599\nfortunate,2,juliuscaesar,1599\nbathe,2,juliuscaesar,1599\ncorse,2,juliuscaesar,1599\nRemember,2,juliuscaesar,1599\nsparks,2,juliuscaesar,1599\nOnly,2,juliuscaesar,1599\nrites,2,juliuscaesar,1599\nSenate,2,juliuscaesar,1599\nsomething,2,juliuscaesar,1599\nhereafter,2,juliuscaesar,1599\nbound,2,juliuscaesar,1599\nimpossible,2,juliuscaesar,1599\nmerry,2,juliuscaesar,1599\ndeceived,2,juliuscaesar,1599\ntouches,2,juliuscaesar,1599\nsea,2,juliuscaesar,1599\n'twas,2,juliuscaesar,1599\nbeasts,2,juliuscaesar,1599\nyield,2,juliuscaesar,1599\ncouncil,2,juliuscaesar,1599\nOctavius',2,juliuscaesar,1599\ndeliver,2,juliuscaesar,1599\nmantle,2,juliuscaesar,1599\nWas,2,juliuscaesar,1599\ncountenance,2,juliuscaesar,1599\n't,2,juliuscaesar,1599\ntestament,2,juliuscaesar,1599\nbeloved,2,juliuscaesar,1599\nsuck,2,juliuscaesar,1599\npieces,2,juliuscaesar,1599\nworst,2,juliuscaesar,1599\nreceived,2,juliuscaesar,1599\nCato's,2,juliuscaesar,1599\ncivil,2,juliuscaesar,1599\nkill'd,2,juliuscaesar,1599\nproceeded,2,juliuscaesar,1599\nFlavius,2,juliuscaesar,1599\nenvious,2,juliuscaesar,1599\nwilling,2,juliuscaesar,1599\nWherein,2,juliuscaesar,1599\nprinces,2,juliuscaesar,1599\nhumble,2,juliuscaesar,1599\ngovern'd,2,juliuscaesar,1599\nelder,2,juliuscaesar,1599\nreverence,2,juliuscaesar,1599\nbowl,2,juliuscaesar,1599\ngrow,2,juliuscaesar,1599\nswore,2,juliuscaesar,1599\nneighbourhood,2,juliuscaesar,1599\nwhisper,2,juliuscaesar,1599\nOld,2,juliuscaesar,1599\nfalse,2,juliuscaesar,1599\nspeaking,2,juliuscaesar,1599\nwing,2,juliuscaesar,1599\nceremony,2,juliuscaesar,1599\nkneel,2,juliuscaesar,1599\nmirth,2,juliuscaesar,1599\nknees,2,juliuscaesar,1599\nsteal,2,juliuscaesar,1599\nensign,2,juliuscaesar,1599\nknow'st,2,juliuscaesar,1599\nDardanius,2,juliuscaesar,1599\nseem'd,2,juliuscaesar,1599\nwindow,2,juliuscaesar,1599\nbond,2,juliuscaesar,1599\nrule,2,juliuscaesar,1599\nwast,2,juliuscaesar,1599\nruled,2,juliuscaesar,1599\nobserve,2,juliuscaesar,1599\nbook,2,juliuscaesar,1599\ncolour,2,juliuscaesar,1599\nconditions,2,juliuscaesar,1599\nrived,2,juliuscaesar,1599\nurge,2,juliuscaesar,1599\neach,2,juliuscaesar,1599\nbills,2,juliuscaesar,1599\nconspirator,2,juliuscaesar,1599\nslaves,2,juliuscaesar,1599\nhas,2,juliuscaesar,1599\ncommons,2,juliuscaesar,1599\nWhat's,2,juliuscaesar,1599\nseventy,2,juliuscaesar,1599\nAt,2,juliuscaesar,1599\nspoil,2,juliuscaesar,1599\nAn,2,juliuscaesar,1599\npay,2,juliuscaesar,1599\nwronged,2,juliuscaesar,1599\nLooks,2,juliuscaesar,1599\nHie,2,juliuscaesar,1599\nblows,2,juliuscaesar,1599\nmurderers,2,juliuscaesar,1599\nbay,2,juliuscaesar,1599\ncreature,2,juliuscaesar,1599\nStanding,2,juliuscaesar,1599\ntear,2,juliuscaesar,1599\nwhole,2,juliuscaesar,1599\ndeserved,2,juliuscaesar,1599\nquick,2,juliuscaesar,1599\nease,2,juliuscaesar,1599\ndigest,2,juliuscaesar,1599\neast,2,juliuscaesar,1599\nadded,2,juliuscaesar,1599\ntroops,2,juliuscaesar,1599\ngroaning,2,juliuscaesar,1599\npriests,2,juliuscaesar,1599\nsorry,2,juliuscaesar,1599\nDrum,2,juliuscaesar,1599\nmetal,2,juliuscaesar,1599\nleather,2,juliuscaesar,1599\nwhose,2,juliuscaesar,1599\nbury,2,juliuscaesar,1599\ncorpse,2,juliuscaesar,1599\nMARCUS,2,juliuscaesar,1599\n'tween,2,juliuscaesar,1599\nbent,2,juliuscaesar,1599\njealous,2,juliuscaesar,1599\novercame,2,juliuscaesar,1599\nDidst,2,juliuscaesar,1599\nshouted,2,juliuscaesar,1599\njust,2,juliuscaesar,1599\ncurse,2,juliuscaesar,1599\nforgetful,2,juliuscaesar,1599\nhilts,2,juliuscaesar,1599\nAbove,2,juliuscaesar,1599\nstabb'd,2,juliuscaesar,1599\nsink,2,juliuscaesar,1599\nWhither,2,juliuscaesar,1599\nbegin,2,juliuscaesar,1599\nstore,2,juliuscaesar,1599\ni',2,juliuscaesar,1599\nghost,2,juliuscaesar,1599\nimpatience,2,juliuscaesar,1599\nstay'd,2,juliuscaesar,1599\nconfess,2,juliuscaesar,1599\naim,2,juliuscaesar,1599\nSoldiers,2,juliuscaesar,1599\nyea,2,juliuscaesar,1599\ntyrant,2,juliuscaesar,1599\nraise,2,juliuscaesar,1599\nburial,2,juliuscaesar,1599\nshouts,2,juliuscaesar,1599\nfavour,2,juliuscaesar,1599\nIll,2,juliuscaesar,1599\n'Help,2,juliuscaesar,1599\nplays,2,juliuscaesar,1599\nRevenge,2,juliuscaesar,1599\ncommanders,2,juliuscaesar,1599\nthrive,2,juliuscaesar,1599\ndestruction,2,juliuscaesar,1599\ntouch'd,2,juliuscaesar,1599\nhouses,2,juliuscaesar,1599\nshed,2,juliuscaesar,1599\nforget,2,juliuscaesar,1599\nthyself,2,juliuscaesar,1599\nenclosed,2,juliuscaesar,1599\nThorough,2,juliuscaesar,1599\ndoor,2,juliuscaesar,1599\nfeast,2,juliuscaesar,1599\nfears,2,juliuscaesar,1599\n'Caesar,2,juliuscaesar,1599\nsufficeth,2,juliuscaesar,1599\nstrain,2,juliuscaesar,1599\naside,2,juliuscaesar,1599\no',2,juliuscaesar,1599\nporch,2,juliuscaesar,1599\nabide,2,juliuscaesar,1599\nLive,2,juliuscaesar,1599\nMyself,2,juliuscaesar,1599\ntemper,2,juliuscaesar,1599\nBegin,2,juliuscaesar,1599\nlover,2,juliuscaesar,1599\nYea,2,juliuscaesar,1599\nlost,2,juliuscaesar,1599\nbeholding,2,juliuscaesar,1599\nSennet,2,juliuscaesar,1599\ndevil,2,juliuscaesar,1599\ntwenty,2,juliuscaesar,1599\nnecessary,2,juliuscaesar,1599\nact,2,juliuscaesar,1599\nknew,2,juliuscaesar,1599\nspot,2,juliuscaesar,1599\nshow'd,2,juliuscaesar,1599\ntyrants,2,juliuscaesar,1599\nknee,2,juliuscaesar,1599\nattain,2,juliuscaesar,1599\nrendered,2,juliuscaesar,1599\nreads,2,juliuscaesar,1599\nBecause,2,juliuscaesar,1599\nmen's,2,juliuscaesar,1599\nharm,2,juliuscaesar,1599\nvalour,2,juliuscaesar,1599\nhart,2,juliuscaesar,1599\npersonal,2,juliuscaesar,1599\nenfranchisement,2,juliuscaesar,1599\nquarter'd,2,juliuscaesar,1599\nKnocking,2,juliuscaesar,1599\npale,2,juliuscaesar,1599\nintended,2,juliuscaesar,1599\nverses,2,juliuscaesar,1599\nMore,2,juliuscaesar,1599\nBeware,2,juliuscaesar,1599\nPluck,2,juliuscaesar,1599\nliberty,2,juliuscaesar,1599\ndraws,2,juliuscaesar,1599\nplain,2,juliuscaesar,1599\ndrawn,2,juliuscaesar,1599\nladder,2,juliuscaesar,1599\nsuitors,2,juliuscaesar,1599\nschool,2,juliuscaesar,1599\nmarching,2,juliuscaesar,1599\npluck,2,juliuscaesar,1599\nopen,2,juliuscaesar,1599\narm,2,juliuscaesar,1599\nprepare,2,juliuscaesar,1599\nambition's,2,juliuscaesar,1599\nask,2,juliuscaesar,1599\ndrachmas,2,juliuscaesar,1599\ndiest,2,juliuscaesar,1599\nmoney,2,juliuscaesar,1599\napt,2,juliuscaesar,1599\nfear'd,2,juliuscaesar,1599\nfool,2,juliuscaesar,1599\ntyranny,2,juliuscaesar,1599\nawl,2,juliuscaesar,1599\nrevenge,2,juliuscaesar,1599\ncreatures,2,juliuscaesar,1599\nass,2,juliuscaesar,1599\nCommoners,2,juliuscaesar,1599\npush,2,juliuscaesar,1599\nfresh,2,juliuscaesar,1599\nmayst,2,juliuscaesar,1599\nerror,2,juliuscaesar,1599\nsecret,2,juliuscaesar,1599\nchance,2,juliuscaesar,1599\ntouch,2,juliuscaesar,1599\njudgment,2,juliuscaesar,1599\nfantasy,2,juliuscaesar,1599\nStoop,2,juliuscaesar,1599\nhaving,2,juliuscaesar,1599\nhere's,2,juliuscaesar,1599\nwatch,2,juliuscaesar,1599\nyesterday,2,juliuscaesar,1599\nlean,2,juliuscaesar,1599\ncontented,2,juliuscaesar,1599\noften,2,juliuscaesar,1599\nKill,2,juliuscaesar,1599\ntried,2,juliuscaesar,1599\ncondemn'd,2,juliuscaesar,1599\nMadam,2,juliuscaesar,1599\nShout,2,juliuscaesar,1599\nrank,2,juliuscaesar,1599\nshouldst,2,juliuscaesar,1599\nsickly,2,juliuscaesar,1599\nfaith,2,juliuscaesar,1599\nunknown,2,juliuscaesar,1599\nthinks,2,juliuscaesar,1599\nenvy,2,juliuscaesar,1599\nbeast,2,juliuscaesar,1599\nwonder,2,juliuscaesar,1599\nstrucken,2,juliuscaesar,1599\nrash,2,juliuscaesar,1599\nwildness,2,juliuscaesar,1599\nours,2,juliuscaesar,1599\nblunt,2,juliuscaesar,1599\nsirrah,2,juliuscaesar,1599\nslain,2,juliuscaesar,1599\nShe,2,juliuscaesar,1599\nliable,2,juliuscaesar,1599\nnarrow,2,juliuscaesar,1599\nparting,2,juliuscaesar,1599\nordinance,2,juliuscaesar,1599\nTrain,2,juliuscaesar,1599\nLord,2,juliuscaesar,1599\neffect,2,juliuscaesar,1599\nspurn,2,juliuscaesar,1599\nspurs,2,juliuscaesar,1599\nstrife,2,juliuscaesar,1599\ndoors,2,juliuscaesar,1599\ntowards,2,juliuscaesar,1599\nnod,2,juliuscaesar,1599\nsoldiers,2,juliuscaesar,1599\nstart,2,juliuscaesar,1599\nstars,2,juliuscaesar,1599\npurposes,2,juliuscaesar,1599\nitching,2,juliuscaesar,1599\nchair,2,juliuscaesar,1599\nbloods,2,juliuscaesar,1599\nreading,2,juliuscaesar,1599\ntents,2,juliuscaesar,1599\nthick,2,juliuscaesar,1599\nissue,2,juliuscaesar,1599\nleaden,2,juliuscaesar,1599\ninfants,2,juliuscaesar,1599\nbeside,2,juliuscaesar,1599\nfret,2,juliuscaesar,1599\nbenefit,2,juliuscaesar,1599\nhigher,2,juliuscaesar,1599\nRoom,2,juliuscaesar,1599\napart,2,juliuscaesar,1599\ncobbler,2,juliuscaesar,1599\nbanks,2,juliuscaesar,1599\nbreed,2,juliuscaesar,1599\nItaly,2,juliuscaesar,1599\npause,2,juliuscaesar,1599\nslight,2,juliuscaesar,1599\nsting,2,juliuscaesar,1599\nwrongs,2,juliuscaesar,1599\nreflection,2,juliuscaesar,1599\nthrow,2,juliuscaesar,1599\nwit,2,juliuscaesar,1599\nsides,2,juliuscaesar,1599\nsorrow,2,juliuscaesar,1599\nbay'd,2,juliuscaesar,1599\ncross'd,2,juliuscaesar,1599\nring,2,juliuscaesar,1599\nlovedst,2,juliuscaesar,1599\nthird,2,juliuscaesar,1599\nVarro,2,juliuscaesar,1599\nbanish'd,2,juliuscaesar,1599\nbondage,2,juliuscaesar,1599\ncloset,2,juliuscaesar,1599\nwalks,2,juliuscaesar,1599\nprodigies,2,juliuscaesar,1599\nCalpurnia's,2,juliuscaesar,1599\nclock,2,juliuscaesar,1599\nchoked,2,juliuscaesar,1599\nalarums,2,juliuscaesar,1599\nsave,2,juliuscaesar,1599\nflint,2,juliuscaesar,1599\nThink,2,juliuscaesar,1599\nduty,2,juliuscaesar,1599\naudience,2,juliuscaesar,1599\ngrowing,2,juliuscaesar,1599\nFates,2,juliuscaesar,1599\nsufferance,2,juliuscaesar,1599\nassure,2,juliuscaesar,1599\nexalted,2,juliuscaesar,1599\ncoming,2,juliuscaesar,1599\nwalk'd,2,juliuscaesar,1599\nhair,2,juliuscaesar,1599\nhail,2,juliuscaesar,1599\nfamiliar,2,juliuscaesar,1599\nfaces,2,juliuscaesar,1599\ndreams,2,juliuscaesar,1599\ndreamt,2,juliuscaesar,1599\nserved,2,juliuscaesar,1599\nmarry,2,juliuscaesar,1599\nangel,2,juliuscaesar,1599\nTitinius',2,juliuscaesar,1599\ndumb,2,juliuscaesar,1599\nyoke,2,juliuscaesar,1599\nserves,2,juliuscaesar,1599\nuttermost,2,juliuscaesar,1599\nope,2,juliuscaesar,1599\nNoble,2,juliuscaesar,1599\nWhispers,2,juliuscaesar,1599\nprevention,2,juliuscaesar,1599\nheirs,2,juliuscaesar,1599\nfair,2,juliuscaesar,1599\nevil,2,juliuscaesar,1599\ndaggers,2,juliuscaesar,1599\nletter,2,juliuscaesar,1599\ndiscover,2,juliuscaesar,1599\nBRUTUS's,2,juliuscaesar,1599\nworthiness,2,juliuscaesar,1599\nrich,2,juliuscaesar,1599\nne'er,2,juliuscaesar,1599\nincorporate,2,juliuscaesar,1599\nmarried,2,juliuscaesar,1599\nshows,2,juliuscaesar,1599\nunfold,2,juliuscaesar,1599\nfawn,2,juliuscaesar,1599\npractise,2,juliuscaesar,1599\nbeware,2,juliuscaesar,1599\npartly,2,juliuscaesar,1599\ncomfort,2,juliuscaesar,1599\nunbraced,2,juliuscaesar,1599\nnames,2,juliuscaesar,1599\nprefer,2,juliuscaesar,1599\nfare,2,juliuscaesar,1599\ngallant,2,juliuscaesar,1599\narm'd,2,juliuscaesar,1599\ngentlemen,2,juliuscaesar,1599\nthrusting,2,juliuscaesar,1599\nmothers,2,juliuscaesar,1599\nsights,2,juliuscaesar,1599\nought,2,juliuscaesar,1599\nholds,2,juliuscaesar,1599\nholy,2,juliuscaesar,1599\nNone,2,juliuscaesar,1599\ntemper'd,2,juliuscaesar,1599\ncur,2,juliuscaesar,1599\ncowards,2,juliuscaesar,1599\nWherefore,2,juliuscaesar,1599\nseal,2,juliuscaesar,1599\nBrave,2,juliuscaesar,1599\ncountry's,2,juliuscaesar,1599\nhung,2,juliuscaesar,1599\nperils,2,juliuscaesar,1599\nseat,2,juliuscaesar,1599\nswear,2,juliuscaesar,1599\nlow,2,juliuscaesar,1599\nsweat,2,juliuscaesar,1599\ndecree,2,juliuscaesar,1599\naught,2,juliuscaesar,1599\nGhost,2,juliuscaesar,1599\ndefend,2,juliuscaesar,1599\nhounds,2,juliuscaesar,1599\nended,2,juliuscaesar,1599\ncourtesy,2,juliuscaesar,1599\nsees,2,juliuscaesar,1599\nexploit,2,juliuscaesar,1599\nnights,2,juliuscaesar,1599\nheels,2,juliuscaesar,1599\nSend,2,juliuscaesar,1599\nsell,2,juliuscaesar,1599\ntide,2,juliuscaesar,1599\nbleeding,2,juliuscaesar,1599\nghosts,2,juliuscaesar,1599\nswell,2,juliuscaesar,1599\nbarren,2,juliuscaesar,1599\nfearing,2,juliuscaesar,1599\nstatua,2,juliuscaesar,1599\nbestow,2,juliuscaesar,1599\nMistrust,2,juliuscaesar,1599\nJudge,2,juliuscaesar,1599\nTwo,2,juliuscaesar,1599\nservants,2,juliuscaesar,1599\nslumber,2,juliuscaesar,1599\nsuitor,2,juliuscaesar,1599\nmad,2,juliuscaesar,1599\nabroad,2,juliuscaesar,1599\nsmiling,2,juliuscaesar,1599\nbegins,2,juliuscaesar,1599\nswim,2,juliuscaesar,1599\nmakes,2,juliuscaesar,1599\nglory,2,juliuscaesar,1599\nupward,2,juliuscaesar,1599\nAccording,2,juliuscaesar,1599\nabuse,2,juliuscaesar,1599\nfled,2,juliuscaesar,1599\nwound,2,juliuscaesar,1599\nstrokes,2,juliuscaesar,1599\nmourning,2,juliuscaesar,1599\nterror,2,juliuscaesar,1599\ncredit,2,juliuscaesar,1599\nGreek,2,juliuscaesar,1599\nbetimes,2,juliuscaesar,1599\nseverally,2,juliuscaesar,1599\nstretch'd,2,juliuscaesar,1599\nOlympus,2,juliuscaesar,1599\nrevenged,2,juliuscaesar,1599\nbribes,2,juliuscaesar,1599\nLena,2,juliuscaesar,1599\nurged,2,juliuscaesar,1599\ntry,2,juliuscaesar,1599\nmouths,2,juliuscaesar,1599\nasleep,2,juliuscaesar,1599\nLest,2,juliuscaesar,1599\nSeveral,2,juliuscaesar,1599\nBring,2,juliuscaesar,1599\nchariot,2,juliuscaesar,1599\nTake,2,juliuscaesar,1599\nRide,2,juliuscaesar,1599\nshouting,2,juliuscaesar,1599\nspectacle,2,juliuscaesar,1599\naugurers,2,juliuscaesar,1599\nshoes,2,juliuscaesar,1599\nbids,2,juliuscaesar,1599\nperhaps,2,juliuscaesar,1599\nbrave,3,juliuscaesar,1599\nanswered,3,juliuscaesar,1599\ntold,3,juliuscaesar,1599\nregard,3,juliuscaesar,1599\no'er,3,juliuscaesar,1599\nc,3,juliuscaesar,1599\ndrop,3,juliuscaesar,1599\nmotion,3,juliuscaesar,1599\nhorse,3,juliuscaesar,1599\nTear,3,juliuscaesar,1599\nadvantage,3,juliuscaesar,1599\nran,3,juliuscaesar,1599\nbones,3,juliuscaesar,1599\nBear,3,juliuscaesar,1599\njoy,3,juliuscaesar,1599\nbrands,3,juliuscaesar,1599\nheld,3,juliuscaesar,1599\nStay,3,juliuscaesar,1599\ngroan,3,juliuscaesar,1599\nEither,3,juliuscaesar,1599\nwithal,3,juliuscaesar,1599\nyonder,3,juliuscaesar,1599\nsort,3,juliuscaesar,1599\ntruth,3,juliuscaesar,1599\nancestors,3,juliuscaesar,1599\nQuite,3,juliuscaesar,1599\nbecome,3,juliuscaesar,1599\nlightning,3,juliuscaesar,1599\nPoor,3,juliuscaesar,1599\nsoon,3,juliuscaesar,1599\ncharge,3,juliuscaesar,1599\nFellow,3,juliuscaesar,1599\nmatters,3,juliuscaesar,1599\nWhose,3,juliuscaesar,1599\ntoward,3,juliuscaesar,1599\nfingers,3,juliuscaesar,1599\npaper,3,juliuscaesar,1599\nfools,3,juliuscaesar,1599\nfreedom,3,juliuscaesar,1599\nvisit,3,juliuscaesar,1599\nsleep'st,3,juliuscaesar,1599\nsit,3,juliuscaesar,1599\nGet,3,juliuscaesar,1599\nthrong,3,juliuscaesar,1599\nAside,3,juliuscaesar,1599\ndisposed,3,juliuscaesar,1599\nsecond,3,juliuscaesar,1599\nmother,3,juliuscaesar,1599\nGHOST,3,juliuscaesar,1599\namiss,3,juliuscaesar,1599\nfight,3,juliuscaesar,1599\npiece,3,juliuscaesar,1599\nborn,3,juliuscaesar,1599\nWhilst,3,juliuscaesar,1599\nsun,3,juliuscaesar,1599\nabove,3,juliuscaesar,1599\npromise,3,juliuscaesar,1599\nsaucy,3,juliuscaesar,1599\nHence,3,juliuscaesar,1599\nThough,3,juliuscaesar,1599\nbold,3,juliuscaesar,1599\ndied,3,juliuscaesar,1599\ndesire,3,juliuscaesar,1599\nsteel,3,juliuscaesar,1599\nThere's,3,juliuscaesar,1599\nparts,3,juliuscaesar,1599\nHold,3,juliuscaesar,1599\nmusic,3,juliuscaesar,1599\nneither,3,juliuscaesar,1599\namong,3,juliuscaesar,1599\nitself,3,juliuscaesar,1599\nproof,3,juliuscaesar,1599\ncruel,3,juliuscaesar,1599\nbrings,3,juliuscaesar,1599\nstab,3,juliuscaesar,1599\nwisdom,3,juliuscaesar,1599\nsirs,3,juliuscaesar,1599\ngod,3,juliuscaesar,1599\nThunder,3,juliuscaesar,1599\nbend,3,juliuscaesar,1599\nchildren,3,juliuscaesar,1599\nstruck,3,juliuscaesar,1599\nDies,3,juliuscaesar,1599\nprick'd,3,juliuscaesar,1599\ntraitors',3,juliuscaesar,1599\nfriendly,3,juliuscaesar,1599\nconquest,3,juliuscaesar,1599\nAbout,3,juliuscaesar,1599\nrejoice,3,juliuscaesar,1599\nturns,3,juliuscaesar,1599\nimmortal,3,juliuscaesar,1599\nCAESAR's,3,juliuscaesar,1599\nflatterers,3,juliuscaesar,1599\nbreast,3,juliuscaesar,1599\nconsider,3,juliuscaesar,1599\nstood,3,juliuscaesar,1599\nsafe,3,juliuscaesar,1599\ndwell,3,juliuscaesar,1599\npluck'd,3,juliuscaesar,1599\nholiday,3,juliuscaesar,1599\nBesides,3,juliuscaesar,1599\ntrash,3,juliuscaesar,1599\nburied,3,juliuscaesar,1599\nmanner,3,juliuscaesar,1599\ncommend,3,juliuscaesar,1599\nidle,3,juliuscaesar,1599\nwherein,3,juliuscaesar,1599\nlest,3,juliuscaesar,1599\ngreater,3,juliuscaesar,1599\nhot,3,juliuscaesar,1599\ngraves,3,juliuscaesar,1599\nhark,3,juliuscaesar,1599\nSeeing,3,juliuscaesar,1599\nconspiracy,3,juliuscaesar,1599\npalm,3,juliuscaesar,1599\nspur,3,juliuscaesar,1599\ncall'd,3,juliuscaesar,1599\nproscription,3,juliuscaesar,1599\nUnder,3,juliuscaesar,1599\nrefused,3,juliuscaesar,1599\nform,3,juliuscaesar,1599\nknocks,3,juliuscaesar,1599\nfiery,3,juliuscaesar,1599\nPrepare,3,juliuscaesar,1599\nstones,3,juliuscaesar,1599\nbosom,3,juliuscaesar,1599\nthough,3,juliuscaesar,1599\nproper,3,juliuscaesar,1599\nawe,3,juliuscaesar,1599\nimages,3,juliuscaesar,1599\nSirrah,3,juliuscaesar,1599\nArt,3,juliuscaesar,1599\nroom,3,juliuscaesar,1599\nglories,3,juliuscaesar,1599\nsilence,3,juliuscaesar,1599\nPopilius,3,juliuscaesar,1599\ndangers,3,juliuscaesar,1599\nstrike,3,juliuscaesar,1599\nFrom,3,juliuscaesar,1599\nSir,3,juliuscaesar,1599\nshores,3,juliuscaesar,1599\nmouth,3,juliuscaesar,1599\nquestion,3,juliuscaesar,1599\nstare,3,juliuscaesar,1599\nthere's,3,juliuscaesar,1599\npermission,3,juliuscaesar,1599\nknows,3,juliuscaesar,1599\nordinary,3,juliuscaesar,1599\nBeing,3,juliuscaesar,1599\ntrouble,3,juliuscaesar,1599\no'clock,3,juliuscaesar,1599\ntaste,3,juliuscaesar,1599\nclose,3,juliuscaesar,1599\naffairs,3,juliuscaesar,1599\nFriends,3,juliuscaesar,1599\noft,3,juliuscaesar,1599\nbeseech,3,juliuscaesar,1599\nwalls,3,juliuscaesar,1599\nThus,3,juliuscaesar,1599\ncrown'd,3,juliuscaesar,1599\nrise,3,juliuscaesar,1599\nreceive,3,juliuscaesar,1599\nambition,3,juliuscaesar,1599\nbleed,3,juliuscaesar,1599\nrage,3,juliuscaesar,1599\ndanger,3,juliuscaesar,1599\ndying,3,juliuscaesar,1599\nvillains,3,juliuscaesar,1599\nhappy,3,juliuscaesar,1599\nenforced,3,juliuscaesar,1599\nmettle,3,juliuscaesar,1599\nconference,3,juliuscaesar,1599\nconsent,3,juliuscaesar,1599\ndrops,3,juliuscaesar,1599\nhundred,3,juliuscaesar,1599\nMake,3,juliuscaesar,1599\nTill,3,juliuscaesar,1599\nThat's,3,juliuscaesar,1599\nconstancy,3,juliuscaesar,1599\nfortune,3,juliuscaesar,1599\nride,3,juliuscaesar,1599\nBoy,3,juliuscaesar,1599\nanswer'd,3,juliuscaesar,1599\ndepart,3,juliuscaesar,1599\nlived,3,juliuscaesar,1599\nkiss,3,juliuscaesar,1599\nsecrets,3,juliuscaesar,1599\nfast,3,juliuscaesar,1599\nhope,3,juliuscaesar,1599\nWelcome,3,juliuscaesar,1599\nman's,3,juliuscaesar,1599\nthank,3,juliuscaesar,1599\nWho's,3,juliuscaesar,1599\nprithee,3,juliuscaesar,1599\nbachelor,3,juliuscaesar,1599\nSeek,3,juliuscaesar,1599\ncondition,3,juliuscaesar,1599\ntidings,3,juliuscaesar,1599\nsweet,3,juliuscaesar,1599\nsound,3,juliuscaesar,1599\nbriefly,3,juliuscaesar,1599\nKnow,3,juliuscaesar,1599\nentreat,3,juliuscaesar,1599\nhuge,3,juliuscaesar,1599\nCry,3,juliuscaesar,1599\nled,3,juliuscaesar,1599\nalas,3,juliuscaesar,1599\nstatue,3,juliuscaesar,1599\nmadam,3,juliuscaesar,1599\nbrow,3,juliuscaesar,1599\nNothing,3,juliuscaesar,1599\nhonesty,3,juliuscaesar,1599\nwrite,3,juliuscaesar,1599\nlimbs,3,juliuscaesar,1599\nconstrue,3,juliuscaesar,1599\nMessenger,3,juliuscaesar,1599\nevils,3,juliuscaesar,1599\nthoughts,3,juliuscaesar,1599\nMen,3,juliuscaesar,1599\nthinking,3,juliuscaesar,1599\nlips,3,juliuscaesar,1599\nAway,3,juliuscaesar,1599\nlion,3,juliuscaesar,1599\nIndeed,3,juliuscaesar,1599\nlate,3,juliuscaesar,1599\nMay,3,juliuscaesar,1599\nwindows,3,juliuscaesar,1599\ncontent,3,juliuscaesar,1599\nTherein,3,juliuscaesar,1599\nleads,3,juliuscaesar,1599\nhonour'd,3,juliuscaesar,1599\nsudden,3,juliuscaesar,1599\nslew,3,juliuscaesar,1599\nsuccess,3,juliuscaesar,1599\ncross,3,juliuscaesar,1599\nshame,3,juliuscaesar,1599\nkind,3,juliuscaesar,1599\nprivate,3,juliuscaesar,1599\norder,3,juliuscaesar,1599\nturn'd,3,juliuscaesar,1599\ncrowd,3,juliuscaesar,1599\nwomen,3,juliuscaesar,1599\nlady,3,juliuscaesar,1599\nquality,4,juliuscaesar,1599\nswords,4,juliuscaesar,1599\nsmiles,4,juliuscaesar,1599\nred,4,juliuscaesar,1599\ntook,4,juliuscaesar,1599\nHear,4,juliuscaesar,1599\ncountry,4,juliuscaesar,1599\nbusiness,4,juliuscaesar,1599\nhaste,4,juliuscaesar,1599\nhealth,4,juliuscaesar,1599\ntruly,4,juliuscaesar,1599\nMust,4,juliuscaesar,1599\nwhile,4,juliuscaesar,1599\nsight,4,juliuscaesar,1599\ntears,4,juliuscaesar,1599\nWould,4,juliuscaesar,1599\nsad,4,juliuscaesar,1599\ngrown,4,juliuscaesar,1599\nyears,4,juliuscaesar,1599\nnoise,4,juliuscaesar,1599\nTheir,4,juliuscaesar,1599\nlooks,4,juliuscaesar,1599\nfaults,4,juliuscaesar,1599\ndoubt,4,juliuscaesar,1599\noffence,4,juliuscaesar,1599\nworse,4,juliuscaesar,1599\nfault,4,juliuscaesar,1599\nPardon,4,juliuscaesar,1599\nfearful,4,juliuscaesar,1599\nAntonius,4,juliuscaesar,1599\nnoblest,4,juliuscaesar,1599\nmasters,4,juliuscaesar,1599\nwind,4,juliuscaesar,1599\nothers,4,juliuscaesar,1599\nprevent,4,juliuscaesar,1599\nwise,4,juliuscaesar,1599\nhe's,4,juliuscaesar,1599\nwherefore,4,juliuscaesar,1599\nmorning,4,juliuscaesar,1599\nsign,4,juliuscaesar,1599\ndeeds,4,juliuscaesar,1599\nThose,4,juliuscaesar,1599\ndenied,4,juliuscaesar,1599\nOn,4,juliuscaesar,1599\nHa,4,juliuscaesar,1599\nbeg,4,juliuscaesar,1599\npleasure,4,juliuscaesar,1599\nHad,4,juliuscaesar,1599\nmonstrous,4,juliuscaesar,1599\nheads,4,juliuscaesar,1599\ngave,4,juliuscaesar,1599\nburn,4,juliuscaesar,1599\nwear,4,juliuscaesar,1599\nfarewell,4,juliuscaesar,1599\nair,4,juliuscaesar,1599\nlong,4,juliuscaesar,1599\ndoes,4,juliuscaesar,1599\nspeed,4,juliuscaesar,1599\nmove,4,juliuscaesar,1599\nwisely,4,juliuscaesar,1599\nage,4,juliuscaesar,1599\nless,4,juliuscaesar,1599\nlose,4,juliuscaesar,1599\nready,4,juliuscaesar,1599\ngrace,4,juliuscaesar,1599\nPompey,4,juliuscaesar,1599\nspeaks,4,juliuscaesar,1599\nhalf,4,juliuscaesar,1599\nround,4,juliuscaesar,1599\nwhether,4,juliuscaesar,1599\npresent,4,juliuscaesar,1599\nfoot,4,juliuscaesar,1599\ndreadful,4,juliuscaesar,1599\nShould,4,juliuscaesar,1599\nhill,4,juliuscaesar,1599\nalmost,4,juliuscaesar,1599\npowers,4,juliuscaesar,1599\nSee,4,juliuscaesar,1599\nSome,4,juliuscaesar,1599\nteeth,4,juliuscaesar,1599\nknave,4,juliuscaesar,1599\nalready,4,juliuscaesar,1599\npresently,4,juliuscaesar,1599\ndream,4,juliuscaesar,1599\ncoward,4,juliuscaesar,1599\nknown,4,juliuscaesar,1599\nnumber,4,juliuscaesar,1599\nceremonies,4,juliuscaesar,1599\nliving,4,juliuscaesar,1599\nthine,4,juliuscaesar,1599\nsake,4,juliuscaesar,1599\nRun,4,juliuscaesar,1599\nSay,4,juliuscaesar,1599\nheavy,4,juliuscaesar,1599\nwar,4,juliuscaesar,1599\npoet,4,juliuscaesar,1599\narms,4,juliuscaesar,1599\noath,4,juliuscaesar,1599\nnews,4,juliuscaesar,1599\nBid,4,juliuscaesar,1599\ntaken,4,juliuscaesar,1599\nglad,4,juliuscaesar,1599\nground,4,juliuscaesar,1599\nminds,4,juliuscaesar,1599\ngrant,4,juliuscaesar,1599\nFare,4,juliuscaesar,1599\nUnto,4,juliuscaesar,1599\npatient,4,juliuscaesar,1599\npublic,4,juliuscaesar,1599\nfeeble,4,juliuscaesar,1599\nconstant,4,juliuscaesar,1599\nlay,4,juliuscaesar,1599\ngiven,4,juliuscaesar,1599\nflood,4,juliuscaesar,1599\ngives,4,juliuscaesar,1599\nlegions,4,juliuscaesar,1599\nshout,4,juliuscaesar,1599\nTruly,4,juliuscaesar,1599\ngenerals,4,juliuscaesar,1599\nsouls,4,juliuscaesar,1599\nwhilst,4,juliuscaesar,1599\nbade,4,juliuscaesar,1599\nLow,4,juliuscaesar,1599\npurpose,4,juliuscaesar,1599\nchanced,4,juliuscaesar,1599\ntriumph,4,juliuscaesar,1599\near,4,juliuscaesar,1599\nclouds,4,juliuscaesar,1599\nstraight,4,juliuscaesar,1599\nBefore,4,juliuscaesar,1599\nnature,4,juliuscaesar,1599\ndare,4,juliuscaesar,1599\nbehold,4,juliuscaesar,1599\nwithout,4,juliuscaesar,1599\ntempt,4,juliuscaesar,1599\nshalt,4,juliuscaesar,1599\nking,4,juliuscaesar,1599\nClitus,4,juliuscaesar,1599\ntimes,5,juliuscaesar,1599\npity,5,juliuscaesar,1599\ndays,5,juliuscaesar,1599\nspeech,5,juliuscaesar,1599\nAlas,5,juliuscaesar,1599\nhonours,5,juliuscaesar,1599\npeace,5,juliuscaesar,1599\ndagger,5,juliuscaesar,1599\noffended,5,juliuscaesar,1599\nNever,5,juliuscaesar,1599\nTell,5,juliuscaesar,1599\ninstrument,5,juliuscaesar,1599\npress,5,juliuscaesar,1599\nhead,5,juliuscaesar,1599\ncall,5,juliuscaesar,1599\nanother,5,juliuscaesar,1599\nshe,5,juliuscaesar,1599\nlight,5,juliuscaesar,1599\nsuit,5,juliuscaesar,1599\nworth,5,juliuscaesar,1599\nourselves,5,juliuscaesar,1599\nheavens,5,juliuscaesar,1599\nThese,5,juliuscaesar,1599\ntaper,5,juliuscaesar,1599\nwine,5,juliuscaesar,1599\nsoldier,5,juliuscaesar,1599\nheaven,5,juliuscaesar,1599\nconspirators,5,juliuscaesar,1599\nspoke,5,juliuscaesar,1599\nside,5,juliuscaesar,1599\nAm,5,juliuscaesar,1599\nmutiny,5,juliuscaesar,1599\nsmile,5,juliuscaesar,1599\nWithin,5,juliuscaesar,1599\nsince,5,juliuscaesar,1599\nIV,5,juliuscaesar,1599\nLet's,5,juliuscaesar,1599\nears,5,juliuscaesar,1599\nJulius,5,juliuscaesar,1599\ngrief,5,juliuscaesar,1599\ngown,5,juliuscaesar,1599\nTiber,5,juliuscaesar,1599\nPOPILIUS,5,juliuscaesar,1599\nearth,5,juliuscaesar,1599\nYes,5,juliuscaesar,1599\nresolved,5,juliuscaesar,1599\nthose,5,juliuscaesar,1599\nMarcus,5,juliuscaesar,1599\nthrice,5,juliuscaesar,1599\nbrought,5,juliuscaesar,1599\nwelcome,5,juliuscaesar,1599\ncourse,5,juliuscaesar,1599\nlittle,5,juliuscaesar,1599\nalive,5,juliuscaesar,1599\nCato,5,juliuscaesar,1599\nHark,5,juliuscaesar,1599\nInto,5,juliuscaesar,1599\nthrough,5,juliuscaesar,1599\ngriefs,5,juliuscaesar,1599\nPUBLIUS,5,juliuscaesar,1599\nFlourish,5,juliuscaesar,1599\nhide,5,juliuscaesar,1599\nawhile,5,juliuscaesar,1599\nseveral,5,juliuscaesar,1599\nere,5,juliuscaesar,1599\nstate,5,juliuscaesar,1599\nneed,5,juliuscaesar,1599\nfree,5,juliuscaesar,1599\nopinion,5,juliuscaesar,1599\nbreak,5,juliuscaesar,1599\nfetch,5,juliuscaesar,1599\nWell,5,juliuscaesar,1599\nbelieve,5,juliuscaesar,1599\narmy,5,juliuscaesar,1599\nClaudius,5,juliuscaesar,1599\nangry,5,juliuscaesar,1599\ncried,5,juliuscaesar,1599\nwounds,5,juliuscaesar,1599\nperceive,5,juliuscaesar,1599\nwilt,5,juliuscaesar,1599\nhonest,5,juliuscaesar,1599\nwe'll,5,juliuscaesar,1599\nseem,5,juliuscaesar,1599\nSardis,5,juliuscaesar,1599\nblame,5,juliuscaesar,1599\ngoes,5,juliuscaesar,1599\nsickness,5,juliuscaesar,1599\nLepidus,5,juliuscaesar,1599\nCassius',5,juliuscaesar,1599\nkill,5,juliuscaesar,1599\nwoman,5,juliuscaesar,1599\nmarket,5,juliuscaesar,1599\nbondman,5,juliuscaesar,1599\nV,6,juliuscaesar,1599\nNay,6,juliuscaesar,1599\nCalpurnia,6,juliuscaesar,1599\npulpit,6,juliuscaesar,1599\npray,6,juliuscaesar,1599\nunder,6,juliuscaesar,1599\ncame,6,juliuscaesar,1599\nDARDANIUS,6,juliuscaesar,1599\nFly,6,juliuscaesar,1599\nwish,6,juliuscaesar,1599\nvoice,6,juliuscaesar,1599\nstir,6,juliuscaesar,1599\npatience,6,juliuscaesar,1599\npass,6,juliuscaesar,1599\nyourselves,6,juliuscaesar,1599\ngold,6,juliuscaesar,1599\nvaliant,6,juliuscaesar,1599\nweep,6,juliuscaesar,1599\nweak,6,juliuscaesar,1599\nLike,6,juliuscaesar,1599\nleft,6,juliuscaesar,1599\nredress,6,juliuscaesar,1599\nendure,6,juliuscaesar,1599\nill,6,juliuscaesar,1599\nloved,6,juliuscaesar,1599\nPompey's,6,juliuscaesar,1599\ntrade,6,juliuscaesar,1599\npoint,6,juliuscaesar,1599\nAlarum,6,juliuscaesar,1599\nright,6,juliuscaesar,1599\nenemies,6,juliuscaesar,1599\nnew,6,juliuscaesar,1599\nHath,6,juliuscaesar,1599\nfar,6,juliuscaesar,1599\nnote,6,juliuscaesar,1599\nnone,6,juliuscaesar,1599\neye,6,juliuscaesar,1599\ntraitors,6,juliuscaesar,1599\nSet,6,juliuscaesar,1599\nTherefore,6,juliuscaesar,1599\ndidst,6,juliuscaesar,1599\nmark,6,juliuscaesar,1599\nover,6,juliuscaesar,1599\nthemselves,6,juliuscaesar,1599\nfound,6,juliuscaesar,1599\nLigarius,6,juliuscaesar,1599\nwent,6,juliuscaesar,1599\ndurst,6,juliuscaesar,1599\nold,6,juliuscaesar,1599\n'em,6,juliuscaesar,1599\nfit,6,juliuscaesar,1599\nta'en,6,juliuscaesar,1599\nbase,6,juliuscaesar,1599\nVolumnius,6,juliuscaesar,1599\npardon,6,juliuscaesar,1599\ncut,6,juliuscaesar,1599\nsatisfied,6,juliuscaesar,1599\nalone,6,juliuscaesar,1599\nseek,6,juliuscaesar,1599\nfuneral,6,juliuscaesar,1599\nhither,6,juliuscaesar,1599\ntogether,6,juliuscaesar,1599\ncold,6,juliuscaesar,1599\nAnother,6,juliuscaesar,1599\nremember,6,juliuscaesar,1599\nfashion,6,juliuscaesar,1599\nvirtue,6,juliuscaesar,1599\ngoing,6,juliuscaesar,1599\ncannot,6,juliuscaesar,1599\ncertain,6,juliuscaesar,1599\nshake,6,juliuscaesar,1599\npower,6,juliuscaesar,1599\nthought,7,juliuscaesar,1599\nTrebonius,7,juliuscaesar,1599\nlies,7,juliuscaesar,1599\nfurther,7,juliuscaesar,1599\nnothing,7,juliuscaesar,1599\nwalk,7,juliuscaesar,1599\nson,7,juliuscaesar,1599\nSuch,7,juliuscaesar,1599\nFarewell,7,juliuscaesar,1599\nPoet,7,juliuscaesar,1599\nboth,7,juliuscaesar,1599\nHis,7,juliuscaesar,1599\ntherefore,7,juliuscaesar,1599\nVOLUMNIUS,7,juliuscaesar,1599\nbed,7,juliuscaesar,1599\noffered,7,juliuscaesar,1599\nOr,7,juliuscaesar,1599\nSTRATO,7,juliuscaesar,1599\nenterprise,7,juliuscaesar,1599\ndear,7,juliuscaesar,1599\nides,7,juliuscaesar,1599\nFLAVIUS,7,juliuscaesar,1599\nsenate,7,juliuscaesar,1599\nCLAUDIUS,7,juliuscaesar,1599\nlead,7,juliuscaesar,1599\nhigh,7,juliuscaesar,1599\nend,7,juliuscaesar,1599\nletters,7,juliuscaesar,1599\nStrato,7,juliuscaesar,1599\nwhy,7,juliuscaesar,1599\nonly,7,juliuscaesar,1599\nthree,7,juliuscaesar,1599\neven,7,juliuscaesar,1599\ntalk,7,juliuscaesar,1599\nreason,7,juliuscaesar,1599\ncry,7,juliuscaesar,1599\nCATO,7,juliuscaesar,1599\npoor,7,juliuscaesar,1599\nspirits,7,juliuscaesar,1599\nbeing,7,juliuscaesar,1599\nrespect,7,juliuscaesar,1599\nCICERO,8,juliuscaesar,1599\nrather,8,juliuscaesar,1599\nappear,8,juliuscaesar,1599\nsaw,8,juliuscaesar,1599\nNot,8,juliuscaesar,1599\nagainst,8,juliuscaesar,1599\nset,8,juliuscaesar,1599\nvile,8,juliuscaesar,1599\nturn,8,juliuscaesar,1599\nbring,8,juliuscaesar,1599\ndirectly,8,juliuscaesar,1599\nIII,8,juliuscaesar,1599\nbad,8,juliuscaesar,1599\ndeed,8,juliuscaesar,1599\nloves,8,juliuscaesar,1599\nreasons,8,juliuscaesar,1599\nhard,8,juliuscaesar,1599\nARTEMIDORUS,8,juliuscaesar,1599\nchange,8,juliuscaesar,1599\nLucilius,8,juliuscaesar,1599\nindeed,8,juliuscaesar,1599\nMARULLUS,8,juliuscaesar,1599\nyoung,8,juliuscaesar,1599\nCIMBER,8,juliuscaesar,1599\nmind,8,juliuscaesar,1599\nLEPIDUS,8,juliuscaesar,1599\nCicero,8,juliuscaesar,1599\nget,8,juliuscaesar,1599\nnear,8,juliuscaesar,1599\nheard,8,juliuscaesar,1599\nplease,8,juliuscaesar,1599\nhumour,8,juliuscaesar,1599\nsenators,8,juliuscaesar,1599\nhour,8,juliuscaesar,1599\nalong,8,juliuscaesar,1599\nbattle,8,juliuscaesar,1599\nsleep,8,juliuscaesar,1599\nDecius,8,juliuscaesar,1599\nstreet,8,juliuscaesar,1599\nLIGARIUS,8,juliuscaesar,1599\ntwo,8,juliuscaesar,1599\nstrange,8,juliuscaesar,1599\nambitious,8,juliuscaesar,1599\nthe,520,juliuscaesar,1599\nCitizens,9,juliuscaesar,1599\nsure,9,juliuscaesar,1599\nenough,9,juliuscaesar,1599\nMETELLUS,9,juliuscaesar,1599\ncommon,9,juliuscaesar,1599\nafter,9,juliuscaesar,1599\nworthy,9,juliuscaesar,1599\nhence,9,juliuscaesar,1599\nCALPURNIA,9,juliuscaesar,1599\nboy,9,juliuscaesar,1599\nII,9,juliuscaesar,1599\nmeans,9,juliuscaesar,1599\ndost,9,juliuscaesar,1599\ntongue,9,juliuscaesar,1599\nPublius,9,juliuscaesar,1599\nye,9,juliuscaesar,1599\nThan,9,juliuscaesar,1599\nmoved,9,juliuscaesar,1599\ngentle,9,juliuscaesar,1599\nTHE,9,juliuscaesar,1599\nyours,9,juliuscaesar,1599\nPortia,9,juliuscaesar,1599\nLook,9,juliuscaesar,1599\nsame,9,juliuscaesar,1599\nPindarus,9,juliuscaesar,1599\nsays,9,juliuscaesar,1599\n'Tis,9,juliuscaesar,1599\nwork,9,juliuscaesar,1599\nfly,9,juliuscaesar,1599\ndangerous,9,juliuscaesar,1599\nwife,9,juliuscaesar,1599\nseen,9,juliuscaesar,1599\nsend,9,juliuscaesar,1599\nCommoner,9,juliuscaesar,1599\nlast,9,juliuscaesar,1599\nPOET,9,juliuscaesar,1599\nawake,9,juliuscaesar,1599\nI,521,juliuscaesar,1599\nanswer,10,juliuscaesar,1599\nCimber,10,juliuscaesar,1599\nSoldier,10,juliuscaesar,1599\nfull,10,juliuscaesar,1599\nNor,10,juliuscaesar,1599\nfellow,10,juliuscaesar,1599\nmatter,10,juliuscaesar,1599\ntent,10,juliuscaesar,1599\nTREBONIUS,10,juliuscaesar,1599\ngone,10,juliuscaesar,1599\npeople,10,juliuscaesar,1599\nSpeak,10,juliuscaesar,1599\nbeen,10,juliuscaesar,1599\nsaid,10,juliuscaesar,1599\nMost,10,juliuscaesar,1599\nfield,10,juliuscaesar,1599\nkeep,10,juliuscaesar,1599\nBrutus',10,juliuscaesar,1599\nMetellus,10,juliuscaesar,1599\ninto,10,juliuscaesar,1599\ngeneral,10,juliuscaesar,1599\nbloody,10,juliuscaesar,1599\nstill,10,juliuscaesar,1599\nWe'll,10,juliuscaesar,1599\nEven,10,juliuscaesar,1599\nhold,10,juliuscaesar,1599\nVARRO,10,juliuscaesar,1599\nunto,10,juliuscaesar,1599\nstrong,10,juliuscaesar,1599\nuse,10,juliuscaesar,1599\nlie,10,juliuscaesar,1599\nThy,10,juliuscaesar,1599\nenemy,10,juliuscaesar,1599\nwords,11,juliuscaesar,1599\nPINDARUS,11,juliuscaesar,1599\nmean,11,juliuscaesar,1599\nsick,11,juliuscaesar,1599\nher,11,juliuscaesar,1599\nGo,11,juliuscaesar,1599\nPeace,11,juliuscaesar,1599\nbears,11,juliuscaesar,1599\nbefore,11,juliuscaesar,1599\nwho,11,juliuscaesar,1599\nown,11,juliuscaesar,1599\nfall,11,juliuscaesar,1599\nmaster,11,juliuscaesar,1599\nstreets,11,juliuscaesar,1599\nhearts,11,juliuscaesar,1599\ncountrymen,11,juliuscaesar,1599\nCLITUS,11,juliuscaesar,1599\nMarch,11,juliuscaesar,1599\nfirst,11,juliuscaesar,1599\ncrown,11,juliuscaesar,1599\nrun,12,juliuscaesar,1599\nlife,12,juliuscaesar,1599\nUpon,12,juliuscaesar,1599\nyourself,12,juliuscaesar,1599\nGive,12,juliuscaesar,1599\nbrother,12,juliuscaesar,1599\nfell,12,juliuscaesar,1599\nwithin,12,juliuscaesar,1599\nread,12,juliuscaesar,1599\nrest,12,juliuscaesar,1599\nelse,12,juliuscaesar,1599\nDo,12,juliuscaesar,1599\nnever,12,juliuscaesar,1599\nWe,12,juliuscaesar,1599\nbest,12,juliuscaesar,1599\nshow,12,juliuscaesar,1599\nYour,12,juliuscaesar,1599\nwhere,12,juliuscaesar,1599\nThou,12,juliuscaesar,1599\nvery,12,juliuscaesar,1599\nI'll,12,juliuscaesar,1599\nhome,12,juliuscaesar,1599\nmight,12,juliuscaesar,1599\nPhilippi,13,juliuscaesar,1599\nOur,13,juliuscaesar,1599\nStand,13,juliuscaesar,1599\nstay,13,juliuscaesar,1599\nbid,13,juliuscaesar,1599\nCinna,13,juliuscaesar,1599\nRe,13,juliuscaesar,1599\nYet,13,juliuscaesar,1599\nCaius,13,juliuscaesar,1599\nhast,13,juliuscaesar,1599\nAre,13,juliuscaesar,1599\nway,13,juliuscaesar,1599\nface,13,juliuscaesar,1599\nback,13,juliuscaesar,1599\nthus,13,juliuscaesar,1599\nDid,13,juliuscaesar,1599\nfollow,13,juliuscaesar,1599\nWill,14,juliuscaesar,1599\nbetter,14,juliuscaesar,1599\nhonour,14,juliuscaesar,1599\nenter,14,juliuscaesar,1599\n'tis,14,juliuscaesar,1599\nmighty,14,juliuscaesar,1599\nmany,14,juliuscaesar,1599\nnor,14,juliuscaesar,1599\ncomes,14,juliuscaesar,1599\nonce,14,juliuscaesar,1599\nmorrow,14,juliuscaesar,1599\neyes,14,juliuscaesar,1599\nlive,14,juliuscaesar,1599\nother,14,juliuscaesar,1599\nSoothsayer,15,juliuscaesar,1599\nbody,15,juliuscaesar,1599\ncause,15,juliuscaesar,1599\naway,15,juliuscaesar,1599\nsword,15,juliuscaesar,1599\nname,15,juliuscaesar,1599\nBe,15,juliuscaesar,1599\nput,15,juliuscaesar,1599\ndead,15,juliuscaesar,1599\nhands,15,juliuscaesar,1599\nhow,15,juliuscaesar,1599\nShall,15,juliuscaesar,1599\nhimself,15,juliuscaesar,1599\nmeet,16,juliuscaesar,1599\nhonourable,16,juliuscaesar,1599\nThere,16,juliuscaesar,1599\nabout,16,juliuscaesar,1599\nmade,16,juliuscaesar,1599\nthings,16,juliuscaesar,1599\nThey,16,juliuscaesar,1599\never,16,juliuscaesar,1599\nspirit,16,juliuscaesar,1599\nRomans,17,juliuscaesar,1599\nWho,17,juliuscaesar,1599\nServant,17,juliuscaesar,1599\nwrong,17,juliuscaesar,1599\nAy,17,juliuscaesar,1599\nBy,17,juliuscaesar,1599\nDECIUS,17,juliuscaesar,1599\nho,17,juliuscaesar,1599\nAll,17,juliuscaesar,1599\ncould,17,juliuscaesar,1599\nFourth,17,juliuscaesar,1599\nfind,17,juliuscaesar,1599\nTitinius,17,juliuscaesar,1599\nRoman,17,juliuscaesar,1599\nWhere,17,juliuscaesar,1599\ndie,17,juliuscaesar,1599\nMessala,18,juliuscaesar,1599\nworld,18,juliuscaesar,1599\nHere,18,juliuscaesar,1599\nTITINIUS,18,juliuscaesar,1599\nOf,18,juliuscaesar,1599\ncan,18,juliuscaesar,1599\nmost,18,juliuscaesar,1599\npart,18,juliuscaesar,1599\nOctavius,18,juliuscaesar,1599\nACT,18,juliuscaesar,1599\nmyself,18,juliuscaesar,1599\nThen,18,juliuscaesar,1599\nLucius,18,juliuscaesar,1599\nhouse,18,juliuscaesar,1599\nleave,18,juliuscaesar,1599\ntrue,18,juliuscaesar,1599\n',19,juliuscaesar,1599\nWith,19,juliuscaesar,1599\nLUCILIUS,19,juliuscaesar,1599\nplace,19,juliuscaesar,1599\nHow,19,juliuscaesar,1599\nHave,19,juliuscaesar,1599\nThird,19,juliuscaesar,1599\nfire,19,juliuscaesar,1599\nthing,19,juliuscaesar,1599\noff,19,juliuscaesar,1599\nCapitol,19,juliuscaesar,1599\ntill,19,juliuscaesar,1599\nSCENE,19,juliuscaesar,1599\nsir,20,juliuscaesar,1599\nbear,20,juliuscaesar,1599\nart,20,juliuscaesar,1599\nJULIUS,20,juliuscaesar,1599\nagain,20,juliuscaesar,1599\nmine,20,juliuscaesar,1599\nword,20,juliuscaesar,1599\nPORTIA,21,juliuscaesar,1599\nMy,21,juliuscaesar,1599\nIs,21,juliuscaesar,1599\nthink,21,juliuscaesar,1599\nstand,21,juliuscaesar,1599\ntake,21,juliuscaesar,1599\nfriends,22,juliuscaesar,1599\nNow,22,juliuscaesar,1599\nfriend,22,juliuscaesar,1599\nIn,22,juliuscaesar,1599\nGood,22,juliuscaesar,1599\nlook,22,juliuscaesar,1599\ngive,22,juliuscaesar,1599\nwhich,23,juliuscaesar,1599\nhad,23,juliuscaesar,1599\nblood,23,juliuscaesar,1599\ndone,23,juliuscaesar,1599\nmake,23,juliuscaesar,1599\nThis,23,juliuscaesar,1599\nWhich,24,juliuscaesar,1599\nforth,24,juliuscaesar,1599\nCasca,25,juliuscaesar,1599\nCome,25,juliuscaesar,1599\nNo,25,juliuscaesar,1599\ndown,25,juliuscaesar,1599\nOCTAVIUS,25,juliuscaesar,1599\ngods,25,juliuscaesar,1599\nany,26,juliuscaesar,1599\nout,26,juliuscaesar,1599\nMark,26,juliuscaesar,1599\ntime,26,juliuscaesar,1599\ngreat,26,juliuscaesar,1599\nExit,26,juliuscaesar,1599\nExeunt,27,juliuscaesar,1599\nFirst,27,juliuscaesar,1599\nheart,27,juliuscaesar,1599\nLet,27,juliuscaesar,1599\nWhen,27,juliuscaesar,1599\nevery,28,juliuscaesar,1599\nfear,28,juliuscaesar,1599\nCINNA,28,juliuscaesar,1599\ntoo,28,juliuscaesar,1599\nmuch,29,juliuscaesar,1599\ndoth,29,juliuscaesar,1599\nyet,29,juliuscaesar,1599\nSecond,29,juliuscaesar,1599\nhand,29,juliuscaesar,1599\nhath,29,juliuscaesar,1599\nMESSALA,29,juliuscaesar,1599\nsuch,30,juliuscaesar,1599\nSo,30,juliuscaesar,1599\nspeak,30,juliuscaesar,1599\ndeath,31,juliuscaesar,1599\nIt,31,juliuscaesar,1599\nan,31,juliuscaesar,1599\nmust,32,juliuscaesar,1599\nthere,32,juliuscaesar,1599\nlike,33,juliuscaesar,1599\nsay,33,juliuscaesar,1599\nhear,33,juliuscaesar,1599\nsee,33,juliuscaesar,1599\nthan,33,juliuscaesar,1599\nthese,33,juliuscaesar,1599\ntell,33,juliuscaesar,1599\nAs,33,juliuscaesar,1599\ngo,33,juliuscaesar,1599\nlove,33,juliuscaesar,1599\nmore,33,juliuscaesar,1599\nup,33,juliuscaesar,1599\none,33,juliuscaesar,1599\nmay,34,juliuscaesar,1599\nif,35,juliuscaesar,1599\nwere,35,juliuscaesar,1599\nA,36,juliuscaesar,1599\nupon,36,juliuscaesar,1599\nWhy,36,juliuscaesar,1599\nCaesar's,37,juliuscaesar,1599\nor,37,juliuscaesar,1599\nnoble,37,juliuscaesar,1599\nshould,37,juliuscaesar,1599\nsome,38,juliuscaesar,1599\nlet,38,juliuscaesar,1599\nnight,40,juliuscaesar,1599\nwould,40,juliuscaesar,1599\nwhen,40,juliuscaesar,1599\nnow,41,juliuscaesar,1599\nLUCIUS,41,juliuscaesar,1599\nhere,42,juliuscaesar,1599\nlord,42,juliuscaesar,1599\nEnter,43,juliuscaesar,1599\nRome,43,juliuscaesar,1599\nday,45,juliuscaesar,1599\nthy,45,juliuscaesar,1599\nfrom,46,juliuscaesar,1599\nwell,46,juliuscaesar,1599\nthey,47,juliuscaesar,1599\nYou,47,juliuscaesar,1599\nCASCA,47,juliuscaesar,1599\nHe,48,juliuscaesar,1599\nthen,49,juliuscaesar,1599\nIf,49,juliuscaesar,1599\ngood,49,juliuscaesar,1599\nFor,50,juliuscaesar,1599\ncome,50,juliuscaesar,1599\nam,52,juliuscaesar,1599\nthee,54,juliuscaesar,1599\nman,56,juliuscaesar,1599\nat,57,juliuscaesar,1599\ntheir,58,juliuscaesar,1599\nthem,61,juliuscaesar,1599\nwas,62,juliuscaesar,1599\nmen,62,juliuscaesar,1599\ndid,62,juliuscaesar,1599\nWhat,62,juliuscaesar,1599\nAntony,63,juliuscaesar,1599\nus,63,juliuscaesar,1599\nwhat,64,juliuscaesar,1599\nANTONY,65,juliuscaesar,1599\nknow,65,juliuscaesar,1599\nno,68,juliuscaesar,1599\nBut,69,juliuscaesar,1599\nO,70,juliuscaesar,1599\nCAESAR,70,juliuscaesar,1599\nCitizen,72,juliuscaesar,1599\nCassius,72,juliuscaesar,1599\nour,75,juliuscaesar,1599\nbut,76,juliuscaesar,1599\nTo,77,juliuscaesar,1599\non,79,juliuscaesar,1599\nby,83,juliuscaesar,1599\nwe,84,juliuscaesar,1599\nThe,84,juliuscaesar,1599\nThat,85,juliuscaesar,1599\nyou,344,juliuscaesar,1599\nof,350,juliuscaesar,1599\nall,95,juliuscaesar,1599\nare,96,juliuscaesar,1599\nas,102,juliuscaesar,1599\nthou,104,juliuscaesar,1599\nso,109,juliuscaesar,1599\nshall,109,juliuscaesar,1599\nyour,118,juliuscaesar,1599\ndo,119,juliuscaesar,1599\nto,380,juliuscaesar,1599\nfor,127,juliuscaesar,1599\nhave,128,juliuscaesar,1599\nbe,135,juliuscaesar,1599\nBrutus,136,juliuscaesar,1599\nwith,139,juliuscaesar,1599\nthis,142,juliuscaesar,1599\nhe,145,juliuscaesar,1599\nwill,150,juliuscaesar,1599\nhis,151,juliuscaesar,1599\nCASSIUS,153,juliuscaesar,1599\nit,163,juliuscaesar,1599\nhim,165,juliuscaesar,1599\nmy,168,juliuscaesar,1599\nand,431,juliuscaesar,1599\nCaesar,182,juliuscaesar,1599\nme,189,juliuscaesar,1599\nthat,200,juliuscaesar,1599\nin,204,juliuscaesar,1599\nAnd,206,juliuscaesar,1599\nis,229,juliuscaesar,1599\na,230,juliuscaesar,1599\nBRUTUS,235,juliuscaesar,1599\nnot,248,juliuscaesar,1599\nattended,1,twelfthnight,1602\nrepaying,1,twelfthnight,1602\nfeel't,1,twelfthnight,1602\nfear'st,1,twelfthnight,1602\n'You,1,twelfthnight,1602\nYou're,1,twelfthnight,1602\n'element,1,twelfthnight,1602\nP's,1,twelfthnight,1602\nalehouse,1,twelfthnight,1602\ntroubled,1,twelfthnight,1602\nmemorials,1,twelfthnight,1602\npossibly,1,twelfthnight,1602\nmeet,1,twelfthnight,1602\nniece's,1,twelfthnight,1602\nasses,1,twelfthnight,1602\nviewing,1,twelfthnight,1602\nforbid,1,twelfthnight,1602\ndaws,1,twelfthnight,1602\ntomb,1,twelfthnight,1602\n'thought,1,twelfthnight,1602\nwillow,1,twelfthnight,1602\nname's,1,twelfthnight,1602\nDutchman's,1,twelfthnight,1602\ngrew,1,twelfthnight,1602\nProve,1,twelfthnight,1602\ninjunction,1,twelfthnight,1602\nfruits,1,twelfthnight,1602\nreverberate,1,twelfthnight,1602\nsuffer,1,twelfthnight,1602\nsmiles,1,twelfthnight,1602\ntaking,1,twelfthnight,1602\nprofanation,1,twelfthnight,1602\nunmuzzled,1,twelfthnight,1602\nimplacable,1,twelfthnight,1602\nmasterly,1,twelfthnight,1602\npestilence,1,twelfthnight,1602\nbasis,1,twelfthnight,1602\necho,1,twelfthnight,1602\ndarest,1,twelfthnight,1602\nguilt,1,twelfthnight,1602\nbespoke,1,twelfthnight,1602\napprehend,1,twelfthnight,1602\nfools',1,twelfthnight,1602\nfor's,1,twelfthnight,1602\nderives,1,twelfthnight,1602\nadvises,1,twelfthnight,1602\nchurlish,1,twelfthnight,1602\nweary,1,twelfthnight,1602\ngarter'd,1,twelfthnight,1602\nwears,1,twelfthnight,1602\ngenerous,1,twelfthnight,1602\nbusiness,1,twelfthnight,1602\nmores,1,twelfthnight,1602\ntwin,1,twelfthnight,1602\nFORTUNATE,1,twelfthnight,1602\nfollowing,1,twelfthnight,1602\ntreasure,1,twelfthnight,1602\nJourneys,1,twelfthnight,1602\nalike,1,twelfthnight,1602\nfinished,1,twelfthnight,1602\nperuse,1,twelfthnight,1602\nadvantage,1,twelfthnight,1602\nroyal,1,twelfthnight,1602\nFit,1,twelfthnight,1602\nriddle,1,twelfthnight,1602\nbaffled,1,twelfthnight,1602\nknitters,1,twelfthnight,1602\nfoolery,1,twelfthnight,1602\npreparation,1,twelfthnight,1602\nwren,1,twelfthnight,1602\nbonds,1,twelfthnight,1602\n'Besides,1,twelfthnight,1602\nscent,1,twelfthnight,1602\nsuppose,1,twelfthnight,1602\ncounterfeits,1,twelfthnight,1602\ndoubtful,1,twelfthnight,1602\nweave,1,twelfthnight,1602\napprehended,1,twelfthnight,1602\nimpressure,1,twelfthnight,1602\neasily,1,twelfthnight,1602\nexpress,1,twelfthnight,1602\nwaxen,1,twelfthnight,1602\nspeedy,1,twelfthnight,1602\nheld,1,twelfthnight,1602\nfangs,1,twelfthnight,1602\nBelong,1,twelfthnight,1602\nmonachum,1,twelfthnight,1602\nviolets,1,twelfthnight,1602\nStay,1,twelfthnight,1602\ntruly,1,twelfthnight,1602\ndish,1,twelfthnight,1602\nPhoenix,1,twelfthnight,1602\neight,1,twelfthnight,1602\njig,1,twelfthnight,1602\ndrowns,1,twelfthnight,1602\nyounger,1,twelfthnight,1602\n'some,1,twelfthnight,1602\n'Alas,1,twelfthnight,1602\nmidsummer,1,twelfthnight,1602\ncontract,1,twelfthnight,1602\nclothes,1,twelfthnight,1602\naccosted,1,twelfthnight,1602\ncare's,1,twelfthnight,1602\naptly,1,twelfthnight,1602\nharbours,1,twelfthnight,1602\nimitate,1,twelfthnight,1602\nvain,1,twelfthnight,1602\nmere,1,twelfthnight,1602\nlodging,1,twelfthnight,1602\nCried,1,twelfthnight,1602\nruffian,1,twelfthnight,1602\nassailant,1,twelfthnight,1602\ncomest,1,twelfthnight,1602\nlearn'd,1,twelfthnight,1602\nhonourable,1,twelfthnight,1602\nhearted,1,twelfthnight,1602\noffer,1,twelfthnight,1602\ninstrument,1,twelfthnight,1602\n'Slid,1,twelfthnight,1602\nlowly,1,twelfthnight,1602\nimpetuosity,1,twelfthnight,1602\ncommodity,1,twelfthnight,1602\nCries,1,twelfthnight,1602\nrid,1,twelfthnight,1602\nnaked,1,twelfthnight,1602\nunfriended,1,twelfthnight,1602\nslander,1,twelfthnight,1602\nblanks,1,twelfthnight,1602\nuncourteous,1,twelfthnight,1602\ndismount,1,twelfthnight,1602\nsayings,1,twelfthnight,1602\nalthough,1,twelfthnight,1602\nfury,1,twelfthnight,1602\nfoamy,1,twelfthnight,1602\nwithal,1,twelfthnight,1602\nunderneath,1,twelfthnight,1602\nTaint,1,twelfthnight,1602\nnought,1,twelfthnight,1602\nhorrid,1,twelfthnight,1602\nprey,1,twelfthnight,1602\npined,1,twelfthnight,1602\nbeauty's,1,twelfthnight,1602\nterrible,1,twelfthnight,1602\nbefall,1,twelfthnight,1602\nlackest,1,twelfthnight,1602\nlively,1,twelfthnight,1602\ncucullus,1,twelfthnight,1602\nAssure,1,twelfthnight,1602\nrun,1,twelfthnight,1602\ndamned,1,twelfthnight,1602\nmalapert,1,twelfthnight,1602\nlids,1,twelfthnight,1602\ncontrary,1,twelfthnight,1602\nlief,1,twelfthnight,1602\nChallenge,1,twelfthnight,1602\ncheques,1,twelfthnight,1602\ntyrannous,1,twelfthnight,1602\nrecreation,1,twelfthnight,1602\nswear't,1,twelfthnight,1602\nPERSONAE,1,twelfthnight,1602\ncars,1,twelfthnight,1602\nscathful,1,twelfthnight,1602\ndeplore,1,twelfthnight,1602\nmute,1,twelfthnight,1602\nclamorous,1,twelfthnight,1602\nspare,1,twelfthnight,1602\nbaited,1,twelfthnight,1602\nrub,1,twelfthnight,1602\nsubtractors,1,twelfthnight,1602\nattempt,1,twelfthnight,1602\nCarry,1,twelfthnight,1602\nmistook,1,twelfthnight,1602\nbreach,1,twelfthnight,1602\nPoor,1,twelfthnight,1602\nbeneath,1,twelfthnight,1602\nstrength,1,twelfthnight,1602\ngraces,1,twelfthnight,1602\nBiddy,1,twelfthnight,1602\ninconstant,1,twelfthnight,1602\nseven,1,twelfthnight,1602\nsurfeit,1,twelfthnight,1602\ngiant,1,twelfthnight,1602\nlacks,1,twelfthnight,1602\neverything,1,twelfthnight,1602\nfeather,1,twelfthnight,1602\nstock,1,twelfthnight,1602\ndrive,1,twelfthnight,1602\nsyllogism,1,twelfthnight,1602\nCataian,1,twelfthnight,1602\nthousands,1,twelfthnight,1602\nattracts,1,twelfthnight,1602\njets,1,twelfthnight,1602\nreceiving,1,twelfthnight,1602\nrelieve,1,twelfthnight,1602\nsat,1,twelfthnight,1602\ngrown,1,twelfthnight,1602\ncombination,1,twelfthnight,1602\ntoss,1,twelfthnight,1602\ndance,1,twelfthnight,1602\nalphabetical,1,twelfthnight,1602\noutside,1,twelfthnight,1602\nfulsome,1,twelfthnight,1602\nstream,1,twelfthnight,1602\nRoderigo,1,twelfthnight,1602\ninhabit,1,twelfthnight,1602\nconstantly,1,twelfthnight,1602\ndemure,1,twelfthnight,1602\npurposely,1,twelfthnight,1602\nfighter,1,twelfthnight,1602\nthou'st,1,twelfthnight,1602\ninventoried,1,twelfthnight,1602\nbowers,1,twelfthnight,1602\ncorner,1,twelfthnight,1602\nuntangle,1,twelfthnight,1602\nhoist,1,twelfthnight,1602\nunfoldeth,1,twelfthnight,1602\ndram,1,twelfthnight,1602\nAn't,1,twelfthnight,1602\nincensed,1,twelfthnight,1602\nclearstores,1,twelfthnight,1602\nsuburbs,1,twelfthnight,1602\nbroker,1,twelfthnight,1602\ninterchangement,1,twelfthnight,1602\nPhrygia,1,twelfthnight,1602\nvillanously,1,twelfthnight,1602\nRemember,1,twelfthnight,1602\ndeceiveable,1,twelfthnight,1602\nconcerns,1,twelfthnight,1602\ncockatrices,1,twelfthnight,1602\nKnow'st,1,twelfthnight,1602\nupshot,1,twelfthnight,1602\nOnly,1,twelfthnight,1602\nhearing,1,twelfthnight,1602\nvoices,1,twelfthnight,1602\nfingers,1,twelfthnight,1602\ndogged,1,twelfthnight,1602\nknaves,1,twelfthnight,1602\ngross,1,twelfthnight,1602\npipe,1,twelfthnight,1602\nSeal'd,1,twelfthnight,1602\nshrewdly,1,twelfthnight,1602\nfurious,1,twelfthnight,1602\nreliques,1,twelfthnight,1602\nfreedom,1,twelfthnight,1602\ncalamity,1,twelfthnight,1602\nblabs,1,twelfthnight,1602\nvisit,1,twelfthnight,1602\nCross,1,twelfthnight,1602\ngospels,1,twelfthnight,1602\noverture,1,twelfthnight,1602\nthrones,1,twelfthnight,1602\nbegan,1,twelfthnight,1602\npaltry,1,twelfthnight,1602\nlimits,1,twelfthnight,1602\nunclasp'd,1,twelfthnight,1602\nconfirms,1,twelfthnight,1602\ndiscovers,1,twelfthnight,1602\nConfine,1,twelfthnight,1602\nstealth,1,twelfthnight,1602\nPerchance,1,twelfthnight,1602\ndeserve,1,twelfthnight,1602\nconcurs,1,twelfthnight,1602\nWit,1,twelfthnight,1602\nseeking,1,twelfthnight,1602\ngartering,1,twelfthnight,1602\nEgyptians,1,twelfthnight,1602\nembassy,1,twelfthnight,1602\nsung,1,twelfthnight,1602\ncompliment,1,twelfthnight,1602\nthroned,1,twelfthnight,1602\nincredulous,1,twelfthnight,1602\nspheres,1,twelfthnight,1602\nboat,1,twelfthnight,1602\nperdy,1,twelfthnight,1602\nhistory,1,twelfthnight,1602\nintercepter,1,twelfthnight,1602\nconcealment,1,twelfthnight,1602\nstands,1,twelfthnight,1602\nrecompensed,1,twelfthnight,1602\nhaggard,1,twelfthnight,1602\nbabble,1,twelfthnight,1602\nimprison'd,1,twelfthnight,1602\nimpossible,1,twelfthnight,1602\nbrisk,1,twelfthnight,1602\n'twere,1,twelfthnight,1602\n'Wonder,1,twelfthnight,1602\npenance,1,twelfthnight,1602\nusurp'd,1,twelfthnight,1602\nfleet,1,twelfthnight,1602\ndispossess,1,twelfthnight,1602\ndeity,1,twelfthnight,1602\nequinoctial,1,twelfthnight,1602\nEgyptian,1,twelfthnight,1602\nconstitution,1,twelfthnight,1602\nwall,1,twelfthnight,1602\nsex,1,twelfthnight,1602\nyeoman,1,twelfthnight,1602\nfavoured,1,twelfthnight,1602\nshrill,1,twelfthnight,1602\nCatch,1,twelfthnight,1602\ndeceived,1,twelfthnight,1602\nDo't,1,twelfthnight,1602\nroaming,1,twelfthnight,1602\npersonage,1,twelfthnight,1602\nquits,1,twelfthnight,1602\nunsure,1,twelfthnight,1602\npeevish,1,twelfthnight,1602\ndisposed,1,twelfthnight,1602\n'Pourquoi',1,twelfthnight,1602\nnine,1,twelfthnight,1602\nperil,1,twelfthnight,1602\naltars,1,twelfthnight,1602\nbranched,1,twelfthnight,1602\ntwelfth,1,twelfthnight,1602\nwindy,1,twelfthnight,1602\ndelivers,1,twelfthnight,1602\nExcellently,1,twelfthnight,1602\nSuch,1,twelfthnight,1602\nearlier,1,twelfthnight,1602\nmurderer,1,twelfthnight,1602\nfollower,1,twelfthnight,1602\nplenty,1,twelfthnight,1602\nfollowed,1,twelfthnight,1602\nunprofited,1,twelfthnight,1602\nWas,1,twelfthnight,1602\nmisdemeanors,1,twelfthnight,1602\nviol,1,twelfthnight,1602\n'M,1,twelfthnight,1602\nscout,1,twelfthnight,1602\ninterlude,1,twelfthnight,1602\nkindly,1,twelfthnight,1602\nhunter,1,twelfthnight,1602\nmaidhood,1,twelfthnight,1602\ntaunt,1,twelfthnight,1602\n'Fare,1,twelfthnight,1602\nsecond,1,twelfthnight,1602\ndeeply,1,twelfthnight,1602\nstudy,1,twelfthnight,1602\ndeserts,1,twelfthnight,1602\nlevel,1,twelfthnight,1602\ngroans,1,twelfthnight,1602\nunmatchable,1,twelfthnight,1602\nparish,1,twelfthnight,1602\nsets,1,twelfthnight,1602\nincites,1,twelfthnight,1602\nmother,1,twelfthnight,1602\nstuff,1,twelfthnight,1602\nConfirm'd,1,twelfthnight,1602\nthin,1,twelfthnight,1602\nplay'd,1,twelfthnight,1602\nbecomes,1,twelfthnight,1602\nadverse,1,twelfthnight,1602\naffect,1,twelfthnight,1602\nsends,1,twelfthnight,1602\namiss,1,twelfthnight,1602\nHideth,1,twelfthnight,1602\nFear'st,1,twelfthnight,1602\ninduced,1,twelfthnight,1602\nMerry,1,twelfthnight,1602\nGorboduc,1,twelfthnight,1602\nskipping,1,twelfthnight,1602\nthieves,1,twelfthnight,1602\nminion,1,twelfthnight,1602\nmellow,1,twelfthnight,1602\nFeste,1,twelfthnight,1602\nvile,1,twelfthnight,1602\nreap,1,twelfthnight,1602\nmocks,1,twelfthnight,1602\neating,1,twelfthnight,1602\nturning,1,twelfthnight,1602\npoints,1,twelfthnight,1602\nmurmur,1,twelfthnight,1602\nsevers,1,twelfthnight,1602\nmonster,1,twelfthnight,1602\nperverseness,1,twelfthnight,1602\ncharm'd,1,twelfthnight,1602\ndropped,1,twelfthnight,1602\ncourtier,1,twelfthnight,1602\nwive,1,twelfthnight,1602\nways,1,twelfthnight,1602\ncommon,1,twelfthnight,1602\nWare,1,twelfthnight,1602\nbore,1,twelfthnight,1602\nconsequently,1,twelfthnight,1602\nconsanguineous,1,twelfthnight,1602\nkill'd,1,twelfthnight,1602\n'Od's,1,twelfthnight,1602\ndirect,1,twelfthnight,1602\nabsence,1,twelfthnight,1602\nMayst,1,twelfthnight,1602\nfalls,1,twelfthnight,1602\nruns,1,twelfthnight,1602\nexceeding,1,twelfthnight,1602\nactions,1,twelfthnight,1602\nbewitched,1,twelfthnight,1602\nencounter,1,twelfthnight,1602\ncommit,1,twelfthnight,1602\neldest,1,twelfthnight,1602\ninstance,1,twelfthnight,1602\naustere,1,twelfthnight,1602\nswiftness,1,twelfthnight,1602\nflatterer,1,twelfthnight,1602\ngodliness,1,twelfthnight,1602\nbout,1,twelfthnight,1602\nworthy,1,twelfthnight,1602\npearl,1,twelfthnight,1602\nsaw't,1,twelfthnight,1602\ncoloured,1,twelfthnight,1602\nGentlewoman,1,twelfthnight,1602\nmercies,1,twelfthnight,1602\nelder,1,twelfthnight,1602\nmitigation,1,twelfthnight,1602\nsailed,1,twelfthnight,1602\nreverence,1,twelfthnight,1602\nfearful,1,twelfthnight,1602\nfeed,1,twelfthnight,1602\naccent,1,twelfthnight,1602\nfeel,1,twelfthnight,1602\nnegotiate,1,twelfthnight,1602\nbarricadoes,1,twelfthnight,1602\nnoblest,1,twelfthnight,1602\nplainly,1,twelfthnight,1602\nwavering,1,twelfthnight,1602\ngalleys,1,twelfthnight,1602\nrelish,1,twelfthnight,1602\nmasters,1,twelfthnight,1602\nblind,1,twelfthnight,1602\nVox,1,twelfthnight,1602\nsuffering,1,twelfthnight,1602\nbrine,1,twelfthnight,1602\nvenerable,1,twelfthnight,1602\nconceal,1,twelfthnight,1602\nsailor,1,twelfthnight,1602\nwhisper,1,twelfthnight,1602\nintimate,1,twelfthnight,1602\nWhereto,1,twelfthnight,1602\nweather,1,twelfthnight,1602\naffirmatives,1,twelfthnight,1602\nspeaking,1,twelfthnight,1602\nrude,1,twelfthnight,1602\nwing,1,twelfthnight,1602\nwishes,1,twelfthnight,1602\nwink,1,twelfthnight,1602\npersonated,1,twelfthnight,1602\nprized,1,twelfthnight,1602\nceremony,1,twelfthnight,1602\nputting,1,twelfthnight,1602\nbanged,1,twelfthnight,1602\nbolts,1,twelfthnight,1602\nFly,1,twelfthnight,1602\nconveniently,1,twelfthnight,1602\nabjured,1,twelfthnight,1602\nNotable,1,twelfthnight,1602\ncuckold,1,twelfthnight,1602\nnails,1,twelfthnight,1602\nwins,1,twelfthnight,1602\ndistempered,1,twelfthnight,1602\ncaves,1,twelfthnight,1602\nboiled,1,twelfthnight,1602\ntender'd,1,twelfthnight,1602\nMight,1,twelfthnight,1602\nmirth,1,twelfthnight,1602\nwardrobe,1,twelfthnight,1602\nwant,1,twelfthnight,1602\ndedication,1,twelfthnight,1602\naccess,1,twelfthnight,1602\nTaste,1,twelfthnight,1602\nfruitless,1,twelfthnight,1602\ngoose,1,twelfthnight,1602\nunsafe,1,twelfthnight,1602\nTroth,1,twelfthnight,1602\ndies,1,twelfthnight,1602\ndiet,1,twelfthnight,1602\nladyship's,1,twelfthnight,1602\nwish,1,twelfthnight,1602\nCousin,1,twelfthnight,1602\nwitnesses,1,twelfthnight,1602\nbold,1,twelfthnight,1602\ncarest,1,twelfthnight,1602\ndirectly,1,twelfthnight,1602\nContemplation,1,twelfthnight,1602\nusest,1,twelfthnight,1602\nmurder,1,twelfthnight,1602\ngamboys,1,twelfthnight,1602\nFetch,1,twelfthnight,1602\nbeating,1,twelfthnight,1602\nbidding,1,twelfthnight,1602\nwars,1,twelfthnight,1602\npretty,1,twelfthnight,1602\nVulcan,1,twelfthnight,1602\nothergates,1,twelfthnight,1602\ntortured,1,twelfthnight,1602\nbefalls,1,twelfthnight,1602\nlunatic,1,twelfthnight,1602\nsteep,1,twelfthnight,1602\nfortified,1,twelfthnight,1602\nsteel,1,twelfthnight,1602\ncoats,1,twelfthnight,1602\ndistrust,1,twelfthnight,1602\nruled,1,twelfthnight,1602\nalliance,1,twelfthnight,1602\nmanhood,1,twelfthnight,1602\nupbraids,1,twelfthnight,1602\npraised,1,twelfthnight,1602\nveiled,1,twelfthnight,1602\ntainting,1,twelfthnight,1602\noverswear,1,twelfthnight,1602\nSoftly,1,twelfthnight,1602\naspect,1,twelfthnight,1602\nmasculine,1,twelfthnight,1602\nnephew,1,twelfthnight,1602\nsenses,1,twelfthnight,1602\nwherefore,1,twelfthnight,1602\nmistaken,1,twelfthnight,1602\nReceiveth,1,twelfthnight,1602\nauthority,1,twelfthnight,1602\nEt,1,twelfthnight,1602\nI',1,twelfthnight,1602\nstir,1,twelfthnight,1602\nsolicit,1,twelfthnight,1602\ncudgel,1,twelfthnight,1602\n'But,1,twelfthnight,1602\npeevishly,1,twelfthnight,1602\ndrown,1,twelfthnight,1602\nUnguided,1,twelfthnight,1602\nbounteously,1,twelfthnight,1602\nBabylon,1,twelfthnight,1602\nhap,1,twelfthnight,1602\nDrew,1,twelfthnight,1602\nWhile,1,twelfthnight,1602\noverthrow,1,twelfthnight,1602\nperspective,1,twelfthnight,1602\nPourquoi,1,twelfthnight,1602\nBelike,1,twelfthnight,1602\nleman,1,twelfthnight,1602\noffend,1,twelfthnight,1602\nserving,1,twelfthnight,1602\nreligious,1,twelfthnight,1602\nmeasure,1,twelfthnight,1602\nresemble,1,twelfthnight,1602\nAt,1,twelfthnight,1602\nlegitimate,1,twelfthnight,1602\n'Twere,1,twelfthnight,1602\nPossess,1,twelfthnight,1602\nsimulation,1,twelfthnight,1602\nchapter,1,twelfthnight,1602\nperfection,1,twelfthnight,1602\nvexest,1,twelfthnight,1602\naltogether,1,twelfthnight,1602\ninfection,1,twelfthnight,1602\ncomplainest,1,twelfthnight,1602\ntonight,1,twelfthnight,1602\nPigrogromitus,1,twelfthnight,1602\nwronged,1,twelfthnight,1602\nheresy,1,twelfthnight,1602\nbox,1,twelfthnight,1602\nblows,1,twelfthnight,1602\nHim,1,twelfthnight,1602\neternal,1,twelfthnight,1602\nsuffers,1,twelfthnight,1602\nThose,1,twelfthnight,1602\nlanguages,1,twelfthnight,1602\nbawcock,1,twelfthnight,1602\namong,1,twelfthnight,1602\nPeg,1,twelfthnight,1602\nLa,1,twelfthnight,1602\nHaving,1,twelfthnight,1602\nblent,1,twelfthnight,1602\nAgueface,1,twelfthnight,1602\nBy'r,1,twelfthnight,1602\nLo,1,twelfthnight,1602\ndoes't,1,twelfthnight,1602\nbay,1,twelfthnight,1602\nscurvy,1,twelfthnight,1602\nhushes,1,twelfthnight,1602\nStand,1,twelfthnight,1602\nlands,1,twelfthnight,1602\nsupporter,1,twelfthnight,1602\n'Cousin,1,twelfthnight,1602\nspeakest,1,twelfthnight,1602\ngossip,1,twelfthnight,1602\norbed,1,twelfthnight,1602\nin's,1,twelfthnight,1602\nkept,1,twelfthnight,1602\nAlbeit,1,twelfthnight,1602\ncanst,1,twelfthnight,1602\nbelike,1,twelfthnight,1602\ningrateful,1,twelfthnight,1602\nstrangest,1,twelfthnight,1602\ncreature,1,twelfthnight,1602\nexceed,1,twelfthnight,1602\nstar,1,twelfthnight,1602\nbrings,1,twelfthnight,1602\ntales,1,twelfthnight,1602\nbegun,1,twelfthnight,1602\nOh,1,twelfthnight,1602\nshines,1,twelfthnight,1602\nmellifluous,1,twelfthnight,1602\nhie,1,twelfthnight,1602\nWithin,1,twelfthnight,1602\nconceived,1,twelfthnight,1602\nentertainest,1,twelfthnight,1602\nmotions,1,twelfthnight,1602\ntear,1,twelfthnight,1602\nHa,1,twelfthnight,1602\nflowers,1,twelfthnight,1602\napprove,1,twelfthnight,1602\nRefuse,1,twelfthnight,1602\nfiner,1,twelfthnight,1602\nfatal,1,twelfthnight,1602\ncoystrill,1,twelfthnight,1602\nfingers',1,twelfthnight,1602\nfeigned,1,twelfthnight,1602\nconvents,1,twelfthnight,1602\nnotorious,1,twelfthnight,1602\nwhole,1,twelfthnight,1602\nprose,1,twelfthnight,1602\nhusbands,1,twelfthnight,1602\nsurely,1,twelfthnight,1602\nkillest,1,twelfthnight,1602\ndigest,1,twelfthnight,1602\npolitician,1,twelfthnight,1602\ncontracted,1,twelfthnight,1602\narrest,1,twelfthnight,1602\nshillings,1,twelfthnight,1602\nLet's,1,twelfthnight,1602\nUnstaid,1,twelfthnight,1602\nJezebel,1,twelfthnight,1602\nHad,1,twelfthnight,1602\npia,1,twelfthnight,1602\npast,1,twelfthnight,1602\ncommendation,1,twelfthnight,1602\nHas,1,twelfthnight,1602\npit,1,twelfthnight,1602\nstep,1,twelfthnight,1602\nTroilus,1,twelfthnight,1602\ndisplay'd,1,twelfthnight,1602\nglorious,1,twelfthnight,1602\nyourselves,1,twelfthnight,1602\njoinder,1,twelfthnight,1602\nthighs,1,twelfthnight,1602\nquantity,1,twelfthnight,1602\nswarths,1,twelfthnight,1602\ncorrupter,1,twelfthnight,1602\nheads,1,twelfthnight,1602\nquiet,1,twelfthnight,1602\nfetter,1,twelfthnight,1602\nAdieu,1,twelfthnight,1602\ncourteous,1,twelfthnight,1602\nsought,1,twelfthnight,1602\n'Please,1,twelfthnight,1602\nmadmen,1,twelfthnight,1602\noverfar,1,twelfthnight,1602\nbulk,1,twelfthnight,1602\n'we,1,twelfthnight,1602\nTillyvally,1,twelfthnight,1602\nweep,1,twelfthnight,1602\nsits,1,twelfthnight,1602\nhills,1,twelfthnight,1602\nthriftless,1,twelfthnight,1602\nReceive,1,twelfthnight,1602\nabsent,1,twelfthnight,1602\nzanies,1,twelfthnight,1602\nmetal,1,twelfthnight,1602\npreserved,1,twelfthnight,1602\nsooner,1,twelfthnight,1602\nJove's,1,twelfthnight,1602\ncontrol,1,twelfthnight,1602\nschedules,1,twelfthnight,1602\nbelief,1,twelfthnight,1602\nPresent,1,twelfthnight,1602\nmiscarry,1,twelfthnight,1602\nsuffer'd,1,twelfthnight,1602\nscoundrels,1,twelfthnight,1602\ndove,1,twelfthnight,1602\nMADLY,1,twelfthnight,1602\nperdition,1,twelfthnight,1602\nYouth's,1,twelfthnight,1602\nPlague,1,twelfthnight,1602\nburn,1,twelfthnight,1602\nsorts,1,twelfthnight,1602\ncoffin,1,twelfthnight,1602\ncrush,1,twelfthnight,1602\ncap,1,twelfthnight,1602\ncowardship,1,twelfthnight,1602\ncorpse,1,twelfthnight,1602\nstruck,1,twelfthnight,1602\nornament,1,twelfthnight,1602\ndesirous,1,twelfthnight,1602\nUnveiling,1,twelfthnight,1602\ndetraction,1,twelfthnight,1602\ndote,1,twelfthnight,1602\nlearned,1,twelfthnight,1602\nweak,1,twelfthnight,1602\ncelebration,1,twelfthnight,1602\nbent,1,twelfthnight,1602\nclause,1,twelfthnight,1602\ncomedian,1,twelfthnight,1602\ncanopied,1,twelfthnight,1602\ncraft,1,twelfthnight,1602\nconstellation,1,twelfthnight,1602\nkindnesses,1,twelfthnight,1602\nshadow,1,twelfthnight,1602\nTitus,1,twelfthnight,1602\nidleness,1,twelfthnight,1602\njealous,1,twelfthnight,1602\ncourtesies,1,twelfthnight,1602\nsepulchre,1,twelfthnight,1602\ngore,1,twelfthnight,1602\nmeanest,1,twelfthnight,1602\nDieu,1,twelfthnight,1602\nhours',1,twelfthnight,1602\naqua,1,twelfthnight,1602\nfee'd,1,twelfthnight,1602\ntickled,1,twelfthnight,1602\ncurst,1,twelfthnight,1602\npacified,1,twelfthnight,1602\nprobation,1,twelfthnight,1602\npersuasion,1,twelfthnight,1602\nexcites,1,twelfthnight,1602\n'Remember,1,twelfthnight,1602\neater,1,twelfthnight,1602\njury,1,twelfthnight,1602\nsurfeiting,1,twelfthnight,1602\ntheme,1,twelfthnight,1602\ndissembling,1,twelfthnight,1602\nInhabits,1,twelfthnight,1602\nbum,1,twelfthnight,1602\nbud,1,twelfthnight,1602\ndespite,1,twelfthnight,1602\nunauspicious,1,twelfthnight,1602\nbeef,1,twelfthnight,1602\nAbove,1,twelfthnight,1602\nused,1,twelfthnight,1602\ndisguise,1,twelfthnight,1602\nvacancy,1,twelfthnight,1602\nmasques,1,twelfthnight,1602\nAbout,1,twelfthnight,1602\n'Odours,1,twelfthnight,1602\nmollification,1,twelfthnight,1602\nlifelings,1,twelfthnight,1602\npoetical,1,twelfthnight,1602\nsink,1,twelfthnight,1602\nstrip,1,twelfthnight,1602\nStrengthen'd,1,twelfthnight,1602\njump,1,twelfthnight,1602\n'Twas,1,twelfthnight,1602\nnonpareil,1,twelfthnight,1602\nWhither,1,twelfthnight,1602\nquirk,1,twelfthnight,1602\npitch,1,twelfthnight,1602\nadheres,1,twelfthnight,1602\nturns,1,twelfthnight,1602\n'Three,1,twelfthnight,1602\ncrowner,1,twelfthnight,1602\nlately,1,twelfthnight,1602\nheadstrong,1,twelfthnight,1602\ncrowned,1,twelfthnight,1602\nBoth,1,twelfthnight,1602\noxen,1,twelfthnight,1602\norgan,1,twelfthnight,1602\nquite,1,twelfthnight,1602\nPox,1,twelfthnight,1602\nsolemn,1,twelfthnight,1602\ndogs,1,twelfthnight,1602\nstore,1,twelfthnight,1602\nstooping,1,twelfthnight,1602\nLips,1,twelfthnight,1602\ndeed,1,twelfthnight,1602\ndeem,1,twelfthnight,1602\nsail,1,twelfthnight,1602\ninstant,1,twelfthnight,1602\nunhospitable,1,twelfthnight,1602\nstay'd,1,twelfthnight,1602\naffection,1,twelfthnight,1602\n'that,1,twelfthnight,1602\nmood,1,twelfthnight,1602\nwretch,1,twelfthnight,1602\ntwanged,1,twelfthnight,1602\npassy,1,twelfthnight,1602\nNature's,1,twelfthnight,1602\nbetray,1,twelfthnight,1602\nbreast,1,twelfthnight,1602\nFortune,1,twelfthnight,1602\ncloistress,1,twelfthnight,1602\nresolute,1,twelfthnight,1602\nsnatch'd,1,twelfthnight,1602\nconsecrated,1,twelfthnight,1602\nmole,1,twelfthnight,1602\ntyrant,1,twelfthnight,1602\nsage,1,twelfthnight,1602\nsatisfy,1,twelfthnight,1602\nFear,1,twelfthnight,1602\nPare,1,twelfthnight,1602\naid,1,twelfthnight,1602\nde,1,twelfthnight,1602\nSONG,1,twelfthnight,1602\nfencing,1,twelfthnight,1602\nconsider,1,twelfthnight,1602\nbattery,1,twelfthnight,1602\nsheep,1,twelfthnight,1602\nprevented,1,twelfthnight,1602\nAdvise,1,twelfthnight,1602\nstood,1,twelfthnight,1602\ndebt,1,twelfthnight,1602\nBless,1,twelfthnight,1602\nyes,1,twelfthnight,1602\nrecovered,1,twelfthnight,1602\nmurderous,1,twelfthnight,1602\nCurio,1,twelfthnight,1602\ntongues,1,twelfthnight,1602\nyew,1,twelfthnight,1602\nEve's,1,twelfthnight,1602\nweigh'd,1,twelfthnight,1602\nPast,1,twelfthnight,1602\nswearing,1,twelfthnight,1602\ndwell,1,twelfthnight,1602\ndriving,1,twelfthnight,1602\ndwelt,1,twelfthnight,1602\npropriety,1,twelfthnight,1602\ngilt,1,twelfthnight,1602\nexpose,1,twelfthnight,1602\ndubbed,1,twelfthnight,1602\nradiant,1,twelfthnight,1602\nFeed,1,twelfthnight,1602\nopal,1,twelfthnight,1602\ninterim,1,twelfthnight,1602\nBesides,1,twelfthnight,1602\nplayed,1,twelfthnight,1602\ngaskins,1,twelfthnight,1602\nshrewishly,1,twelfthnight,1602\neloquent,1,twelfthnight,1602\nthrive,1,twelfthnight,1602\nlend,1,twelfthnight,1602\ngall,1,twelfthnight,1602\ndoer,1,twelfthnight,1602\n'Thrice,1,twelfthnight,1602\nMall's,1,twelfthnight,1602\nlighter,1,twelfthnight,1602\nsack,1,twelfthnight,1602\ndefence,1,twelfthnight,1602\nrestraint,1,twelfthnight,1602\nnicely,1,twelfthnight,1602\ncloyment,1,twelfthnight,1602\nappeared,1,twelfthnight,1602\nhouses,1,twelfthnight,1602\ncram,1,twelfthnight,1602\ngentlewoman,1,twelfthnight,1602\nedified,1,twelfthnight,1602\nbotch'd,1,twelfthnight,1602\nah,1,twelfthnight,1602\nnewly,1,twelfthnight,1602\nfixed,1,twelfthnight,1602\nforgotten,1,twelfthnight,1602\nrouse,1,twelfthnight,1602\nfeast,1,twelfthnight,1602\nidiot,1,twelfthnight,1602\nportend,1,twelfthnight,1602\nreins,1,twelfthnight,1602\ncommend,1,twelfthnight,1602\npursuit,1,twelfthnight,1602\napprobation,1,twelfthnight,1602\nbiter,1,twelfthnight,1602\nbodies,1,twelfthnight,1602\nsmall,1,twelfthnight,1602\ngoverns,1,twelfthnight,1602\nplant,1,twelfthnight,1602\nstrain,1,twelfthnight,1602\nRelieved,1,twelfthnight,1602\naside,1,twelfthnight,1602\ncrave,1,twelfthnight,1602\nbawbling,1,twelfthnight,1602\nGoes,1,twelfthnight,1602\nwrangle,1,twelfthnight,1602\nwhereof,1,twelfthnight,1602\nFortune's,1,twelfthnight,1602\nperpend,1,twelfthnight,1602\nunfirm,1,twelfthnight,1602\nteaching,1,twelfthnight,1602\nLive,1,twelfthnight,1602\nconsonancy,1,twelfthnight,1602\nMyself,1,twelfthnight,1602\nnegatives,1,twelfthnight,1602\ncomptible,1,twelfthnight,1602\nquenching,1,twelfthnight,1602\nIndia,1,twelfthnight,1602\naccomplished,1,twelfthnight,1602\nadorations,1,twelfthnight,1602\nBegin,1,twelfthnight,1602\nlover,1,twelfthnight,1602\nCountess,1,twelfthnight,1602\nbegg'd,1,twelfthnight,1602\nstudied,1,twelfthnight,1602\nsharply,1,twelfthnight,1602\nstout,1,twelfthnight,1602\nchallenged,1,twelfthnight,1602\nmoon,1,twelfthnight,1602\nloss,1,twelfthnight,1602\nagone,1,twelfthnight,1602\nWouldst,1,twelfthnight,1602\ncommands,1,twelfthnight,1602\nresolved,1,twelfthnight,1602\nample,1,twelfthnight,1602\nsemblance,1,twelfthnight,1602\ndumbness,1,twelfthnight,1602\nwherein,1,twelfthnight,1602\ntalkest,1,twelfthnight,1602\npotent,1,twelfthnight,1602\nunthought,1,twelfthnight,1602\nloved,1,twelfthnight,1602\nknot,1,twelfthnight,1602\nspend,1,twelfthnight,1602\nfaithfull'st,1,twelfthnight,1602\nsqueak,1,twelfthnight,1602\nwittily,1,twelfthnight,1602\nblue,1,twelfthnight,1602\ncontinent,1,twelfthnight,1602\nremoved,1,twelfthnight,1602\nGrace,1,twelfthnight,1602\nlets,1,twelfthnight,1602\nbench,1,twelfthnight,1602\nnuncio's,1,twelfthnight,1602\nIt's,1,twelfthnight,1602\nmournest,1,twelfthnight,1602\nwestward,1,twelfthnight,1602\nshow'd,1,twelfthnight,1602\naussi,1,twelfthnight,1602\nforgot,1,twelfthnight,1602\njocund,1,twelfthnight,1602\nCalling,1,twelfthnight,1602\npure,1,twelfthnight,1602\nbristle,1,twelfthnight,1602\nBecause,1,twelfthnight,1602\nraineth,1,twelfthnight,1602\nhot,1,twelfthnight,1602\nharm,1,twelfthnight,1602\nthrice,1,twelfthnight,1602\ndetests,1,twelfthnight,1602\nWhence,1,twelfthnight,1602\nHaply,1,twelfthnight,1602\nhavoc,1,twelfthnight,1602\nplot,1,twelfthnight,1602\nlapsed,1,twelfthnight,1602\nexecuted,1,twelfthnight,1602\ngiddily,1,twelfthnight,1602\neasy,1,twelfthnight,1602\nstraps,1,twelfthnight,1602\naccounted,1,twelfthnight,1602\nhare,1,twelfthnight,1602\nability,1,twelfthnight,1602\ncatcher,1,twelfthnight,1602\nstrangle,1,twelfthnight,1602\nfront,1,twelfthnight,1602\nfield,1,twelfthnight,1602\npistol,1,twelfthnight,1602\nSmilest,1,twelfthnight,1602\nDecember,1,twelfthnight,1602\nreproves,1,twelfthnight,1602\nhale,1,twelfthnight,1602\ncrow,1,twelfthnight,1602\ncheveril,1,twelfthnight,1602\nDiana's,1,twelfthnight,1602\nexasperate,1,twelfthnight,1602\ntinkers,1,twelfthnight,1602\nverse,1,twelfthnight,1602\nfowl,1,twelfthnight,1602\nCall,1,twelfthnight,1602\npale,1,twelfthnight,1602\nintended,1,twelfthnight,1602\npalate,1,twelfthnight,1602\nRead,1,twelfthnight,1602\nimpeticos,1,twelfthnight,1602\nBrownist,1,twelfthnight,1602\nspur,1,twelfthnight,1602\nsee't,1,twelfthnight,1602\nCourage,1,twelfthnight,1602\n'Let,1,twelfthnight,1602\ntrade,1,twelfthnight,1602\naccost,1,twelfthnight,1602\nappears,1,twelfthnight,1602\nskilless,1,twelfthnight,1602\nenchantment,1,twelfthnight,1602\nsurges,1,twelfthnight,1602\nextravagancy,1,twelfthnight,1602\nseparate,1,twelfthnight,1602\npang,1,twelfthnight,1602\nschool,1,twelfthnight,1602\nPrizes,1,twelfthnight,1602\nIndies,1,twelfthnight,1602\nsecundo,1,twelfthnight,1602\nswabber,1,twelfthnight,1602\napplies,1,twelfthnight,1602\npluck,1,twelfthnight,1602\ndealer,1,twelfthnight,1602\nrudely,1,twelfthnight,1602\nquarreller,1,twelfthnight,1602\nUnder,1,twelfthnight,1602\ndeaths,1,twelfthnight,1602\nShe's,1,twelfthnight,1602\nbrothers,1,twelfthnight,1602\nprepare,1,twelfthnight,1602\nnightly,1,twelfthnight,1602\npurged,1,twelfthnight,1602\nrack'd,1,twelfthnight,1602\nshent,1,twelfthnight,1602\npair,1,twelfthnight,1602\nship,1,twelfthnight,1602\nhangs,1,twelfthnight,1602\n'Rain,1,twelfthnight,1602\nsoe'er,1,twelfthnight,1602\ntrunks,1,twelfthnight,1602\nspin,1,twelfthnight,1602\nHusband,1,twelfthnight,1602\n'Youth,1,twelfthnight,1602\nprofound,1,twelfthnight,1602\nminute's,1,twelfthnight,1602\nstrive,1,twelfthnight,1602\ndevise,1,twelfthnight,1602\npack,1,twelfthnight,1602\nalive,1,twelfthnight,1602\nbespeak,1,twelfthnight,1602\nrings,1,twelfthnight,1602\nconcerning,1,twelfthnight,1602\nconsideration,1,twelfthnight,1602\nfall'n,1,twelfthnight,1602\ndetested,1,twelfthnight,1602\nimprobable,1,twelfthnight,1602\nrough,1,twelfthnight,1602\nduke's,1,twelfthnight,1602\nimportance,1,twelfthnight,1602\nfood,1,twelfthnight,1602\nbearer,1,twelfthnight,1602\nyare,1,twelfthnight,1602\ntestimony,1,twelfthnight,1602\ncreatures,1,twelfthnight,1602\nexcess,1,twelfthnight,1602\noverweening,1,twelfthnight,1602\nfond,1,twelfthnight,1602\nmonument,1,twelfthnight,1602\nmaiden,1,twelfthnight,1602\nfancies,1,twelfthnight,1602\nrightly,1,twelfthnight,1602\nerror,1,twelfthnight,1602\nfold,1,twelfthnight,1602\ningratitude,1,twelfthnight,1602\nconclusions,1,twelfthnight,1602\nHob,1,twelfthnight,1602\ntestril,1,twelfthnight,1602\ntrice,1,twelfthnight,1602\nchambermaid,1,twelfthnight,1602\njester,1,twelfthnight,1602\nShe'll,1,twelfthnight,1602\ncompetitors,1,twelfthnight,1602\nKing,1,twelfthnight,1602\nolive,1,twelfthnight,1602\nfurnish,1,twelfthnight,1602\nbought,1,twelfthnight,1602\nUSED,1,twelfthnight,1602\nunprizable,1,twelfthnight,1602\ndistinction,1,twelfthnight,1602\nstrangeness,1,twelfthnight,1602\nsequel,1,twelfthnight,1602\ntheirs,1,twelfthnight,1602\nApt,1,twelfthnight,1602\nrave,1,twelfthnight,1602\nshuffled,1,twelfthnight,1602\nPursue,1,twelfthnight,1602\nSport,1,twelfthnight,1602\nministers,1,twelfthnight,1602\ncheque,1,twelfthnight,1602\njudgment,1,twelfthnight,1602\nCapilet,1,twelfthnight,1602\ncommerce,1,twelfthnight,1602\nvisited,1,twelfthnight,1602\nAss,1,twelfthnight,1602\nElysium,1,twelfthnight,1602\nrecollected,1,twelfthnight,1602\nsicken,1,twelfthnight,1602\nlonging,1,twelfthnight,1602\ntrial,1,twelfthnight,1602\nridiculous,1,twelfthnight,1602\nmarkets,1,twelfthnight,1602\nprevents,1,twelfthnight,1602\nenjoy,1,twelfthnight,1602\nwillingly,1,twelfthnight,1602\nTartar,1,twelfthnight,1602\nfeign,1,twelfthnight,1602\nhowling,1,twelfthnight,1602\nmads,1,twelfthnight,1602\nprays,1,twelfthnight,1602\nCastiliano,1,twelfthnight,1602\nhousekeeper,1,twelfthnight,1602\nchantry,1,twelfthnight,1602\njaws,1,twelfthnight,1602\nexpenses,1,twelfthnight,1602\ncompact,1,twelfthnight,1602\nsurgere,1,twelfthnight,1602\nDisguise,1,twelfthnight,1602\nunchary,1,twelfthnight,1602\nfat,1,twelfthnight,1602\nyesterday,1,twelfthnight,1602\ndrawest,1,twelfthnight,1602\nfrenzy,1,twelfthnight,1602\nroof,1,twelfthnight,1602\n'Above,1,twelfthnight,1602\noften,1,twelfthnight,1602\nleap,1,twelfthnight,1602\nroom,1,twelfthnight,1602\nnap,1,twelfthnight,1602\nKill,1,twelfthnight,1602\ngratillity,1,twelfthnight,1602\nwhirligig,1,twelfthnight,1602\nOpen't,1,twelfthnight,1602\nbreathes,1,twelfthnight,1602\ngarments,1,twelfthnight,1602\nequal,1,twelfthnight,1602\ncohere,1,twelfthnight,1602\nunhatched,1,twelfthnight,1602\ntrappings,1,twelfthnight,1602\nVirtue,1,twelfthnight,1602\nshameful,1,twelfthnight,1602\ninure,1,twelfthnight,1602\ntarry,1,twelfthnight,1602\nbrock,1,twelfthnight,1602\npuzzled,1,twelfthnight,1602\nrank,1,twelfthnight,1602\nAgainst,1,twelfthnight,1602\nempty,1,twelfthnight,1602\n'Better,1,twelfthnight,1602\nforehead,1,twelfthnight,1602\nshouldst,1,twelfthnight,1602\nbreathed,1,twelfthnight,1602\nmischief,1,twelfthnight,1602\nguiltless,1,twelfthnight,1602\npedant,1,twelfthnight,1602\nrascals,1,twelfthnight,1602\nantique,1,twelfthnight,1602\n'Cast,1,twelfthnight,1602\nbuild,1,twelfthnight,1602\nmountains,1,twelfthnight,1602\nFoolery,1,twelfthnight,1602\nfiction,1,twelfthnight,1602\nprotests,1,twelfthnight,1602\nsquash,1,twelfthnight,1602\nmotley,1,twelfthnight,1602\npollution,1,twelfthnight,1602\n'Gainst,1,twelfthnight,1602\nunknown,1,twelfthnight,1602\nthinks,1,twelfthnight,1602\nElse,1,twelfthnight,1602\nSeven,1,twelfthnight,1602\nnumber'd,1,twelfthnight,1602\nBack,1,twelfthnight,1602\nMadman,1,twelfthnight,1602\nfraught,1,twelfthnight,1602\nproceed,1,twelfthnight,1602\nobscure,1,twelfthnight,1602\nmutton,1,twelfthnight,1602\naffectioned,1,twelfthnight,1602\ncounty's,1,twelfthnight,1602\nBade,1,twelfthnight,1602\nprodigal,1,twelfthnight,1602\nacting,1,twelfthnight,1602\nskittish,1,twelfthnight,1602\nnoon,1,twelfthnight,1602\nlenten,1,twelfthnight,1602\nclog,1,twelfthnight,1602\nconceited,1,twelfthnight,1602\ntickling,1,twelfthnight,1602\nungird,1,twelfthnight,1602\ntended,1,twelfthnight,1602\nbottle,1,twelfthnight,1602\ndisgraced,1,twelfthnight,1602\npreach'd,1,twelfthnight,1602\nvelvet,1,twelfthnight,1602\nleasing,1,twelfthnight,1602\nchurchman,1,twelfthnight,1602\ncandle,1,twelfthnight,1602\ntraffic's,1,twelfthnight,1602\npastime,1,twelfthnight,1602\nbottom,1,twelfthnight,1602\nspokest,1,twelfthnight,1602\nadmire,1,twelfthnight,1602\nslain,1,twelfthnight,1602\nchase,1,twelfthnight,1602\nLethe,1,twelfthnight,1602\nstrike,1,twelfthnight,1602\n'Be,1,twelfthnight,1602\nvisage,1,twelfthnight,1602\nalter,1,twelfthnight,1602\naffections,1,twelfthnight,1602\nPenthesilea,1,twelfthnight,1602\nyou'ld,1,twelfthnight,1602\nbegging,1,twelfthnight,1602\nextracting,1,twelfthnight,1602\nvainness,1,twelfthnight,1602\nignorant,1,twelfthnight,1602\nmisery,1,twelfthnight,1602\nwaylay,1,twelfthnight,1602\nApproach,1,twelfthnight,1602\nTherefore,1,twelfthnight,1602\ndares,1,twelfthnight,1602\nhousewife,1,twelfthnight,1602\nplaces,1,twelfthnight,1602\ncrammed,1,twelfthnight,1602\nmadman's,1,twelfthnight,1602\nmouse,1,twelfthnight,1602\ndenay,1,twelfthnight,1602\nDoth,1,twelfthnight,1602\nwonder'd,1,twelfthnight,1602\nbesmear'd,1,twelfthnight,1602\nutters,1,twelfthnight,1602\nchant,1,twelfthnight,1602\nfirago,1,twelfthnight,1602\nDost,1,twelfthnight,1602\nincensement,1,twelfthnight,1602\ndirty,1,twelfthnight,1602\ntransparent,1,twelfthnight,1602\nmourn,1,twelfthnight,1602\nSee,1,twelfthnight,1602\nSea,1,twelfthnight,1602\nscab,1,twelfthnight,1602\nToby's,1,twelfthnight,1602\npaced,1,twelfthnight,1602\nstrife,1,twelfthnight,1602\nairs,1,twelfthnight,1602\nlodge,1,twelfthnight,1602\nother's,1,twelfthnight,1602\ndistaff,1,twelfthnight,1602\nleaves,1,twelfthnight,1602\nstark,1,twelfthnight,1602\nsacrifice,1,twelfthnight,1602\npenned,1,twelfthnight,1602\nmilk,1,twelfthnight,1602\nfantastical,1,twelfthnight,1602\narrived,1,twelfthnight,1602\n'diluculo,1,twelfthnight,1602\nnob,1,twelfthnight,1602\nsinging,1,twelfthnight,1602\nstart,1,twelfthnight,1602\nsatisfaction,1,twelfthnight,1602\napproaches,1,twelfthnight,1602\nMakes,1,twelfthnight,1602\nkisses,1,twelfthnight,1602\nhalting,1,twelfthnight,1602\nrange,1,twelfthnight,1602\npostscript,1,twelfthnight,1602\nanother',1,twelfthnight,1602\nQueubus,1,twelfthnight,1602\nescape,1,twelfthnight,1602\nCandy,1,twelfthnight,1602\nbeauties,1,twelfthnight,1602\nmint,1,twelfthnight,1602\nminx,1,twelfthnight,1602\nexpressure,1,twelfthnight,1602\ndidst,1,twelfthnight,1602\nchain,1,twelfthnight,1602\nreading,1,twelfthnight,1602\n'gainst,1,twelfthnight,1602\nmidwife,1,twelfthnight,1602\nobstacle,1,twelfthnight,1602\nCould,1,twelfthnight,1602\nFather,1,twelfthnight,1602\nmast,1,twelfthnight,1602\npartake,1,twelfthnight,1602\nacquit,1,twelfthnight,1602\npersuades,1,twelfthnight,1602\nunsought,1,twelfthnight,1602\nmark,1,twelfthnight,1602\ndeform'd,1,twelfthnight,1602\nmonsieur,1,twelfthnight,1602\nSot,1,twelfthnight,1602\nshrew,1,twelfthnight,1602\ninjuries,1,twelfthnight,1602\npickle,1,twelfthnight,1602\nslave,1,twelfthnight,1602\nMarian,1,twelfthnight,1602\ndevils,1,twelfthnight,1602\nveil,1,twelfthnight,1602\nbelieving,1,twelfthnight,1602\nflatter,1,twelfthnight,1602\n'Go,1,twelfthnight,1602\ncraves,1,twelfthnight,1602\nlubber,1,twelfthnight,1602\nbibble,1,twelfthnight,1602\nlabour,1,twelfthnight,1602\nenlarge,1,twelfthnight,1602\naddress,1,twelfthnight,1602\nvinegar,1,twelfthnight,1602\nchide,1,twelfthnight,1602\nspecial,1,twelfthnight,1602\nturkey,1,twelfthnight,1602\ndissembled,1,twelfthnight,1602\nbenefit,1,twelfthnight,1602\nhigher,1,twelfthnight,1602\nfather's,1,twelfthnight,1602\n'pregnant',1,twelfthnight,1602\nabed,1,twelfthnight,1602\nfeelingly,1,twelfthnight,1602\nborrow'd,1,twelfthnight,1602\nsmoke,1,twelfthnight,1602\nmarvel,1,twelfthnight,1602\ngin,1,twelfthnight,1602\nabandon'd,1,twelfthnight,1602\n'She,1,twelfthnight,1602\nfindest,1,twelfthnight,1602\ndivorced,1,twelfthnight,1602\ningrate,1,twelfthnight,1602\nchuck,1,twelfthnight,1602\ngrize,1,twelfthnight,1602\nhorrible,1,twelfthnight,1602\nmockery,1,twelfthnight,1602\nstake,1,twelfthnight,1602\nfirm,1,twelfthnight,1602\naddicted,1,twelfthnight,1602\nliving,1,twelfthnight,1602\nhermit,1,twelfthnight,1602\nhorribly,1,twelfthnight,1602\nrailing,1,twelfthnight,1602\nbehalf,1,twelfthnight,1602\nproves,1,twelfthnight,1602\nbreed,1,twelfthnight,1602\nknavery,1,twelfthnight,1602\nHalloo,1,twelfthnight,1602\nbegged,1,twelfthnight,1602\npassage,1,twelfthnight,1602\nmaids,1,twelfthnight,1602\nbeagle,1,twelfthnight,1602\nrenown,1,twelfthnight,1602\nwi',1,twelfthnight,1602\nMaria's,1,twelfthnight,1602\nfinder,1,twelfthnight,1602\nwainropes,1,twelfthnight,1602\nwrongs,1,twelfthnight,1602\ngabble,1,twelfthnight,1602\nsow'd,1,twelfthnight,1602\nexample,1,twelfthnight,1602\npound,1,twelfthnight,1602\ncontemned,1,twelfthnight,1602\n'My,1,twelfthnight,1602\ntoday,1,twelfthnight,1602\nretire,1,twelfthnight,1602\nformer,1,twelfthnight,1602\ntwelvemonth,1,twelfthnight,1602\nformed,1,twelfthnight,1602\nRun,1,twelfthnight,1602\nenters,1,twelfthnight,1602\nodour,1,twelfthnight,1602\nsorrow,1,twelfthnight,1602\nstaves's,1,twelfthnight,1602\nTaking,1,twelfthnight,1602\ncurl,1,twelfthnight,1602\nroughly,1,twelfthnight,1602\nhurling,1,twelfthnight,1602\nmartial,1,twelfthnight,1602\noccurrence,1,twelfthnight,1602\nyoungest,1,twelfthnight,1602\nwoes,1,twelfthnight,1602\nknife,1,twelfthnight,1602\nservices,1,twelfthnight,1602\ndevour'd,1,twelfthnight,1602\nsitting,1,twelfthnight,1602\nAttested,1,twelfthnight,1602\nbanish'd,1,twelfthnight,1602\nfacit,1,twelfthnight,1602\nmeasures,1,twelfthnight,1602\nallay,1,twelfthnight,1602\npension,1,twelfthnight,1602\nmoment,1,twelfthnight,1602\nbloodless,1,twelfthnight,1602\nsonnet,1,twelfthnight,1602\nprotect,1,twelfthnight,1602\nicicle,1,twelfthnight,1602\nrecover,1,twelfthnight,1602\nbestow'd,1,twelfthnight,1602\ndecays,1,twelfthnight,1602\nwalks,1,twelfthnight,1602\nkickshawses,1,twelfthnight,1602\ndishonesty,1,twelfthnight,1602\nfrailty,1,twelfthnight,1602\nsaws,1,twelfthnight,1602\nclock,1,twelfthnight,1602\ntrout,1,twelfthnight,1602\noffending,1,twelfthnight,1602\nDesire,1,twelfthnight,1602\nhealths,1,twelfthnight,1602\nstanding,1,twelfthnight,1602\nfiled,1,twelfthnight,1602\nyou're,1,twelfthnight,1602\nsubtle,1,twelfthnight,1602\ncontinuance,1,twelfthnight,1602\nflint,1,twelfthnight,1602\nexcellencies,1,twelfthnight,1602\nidol,1,twelfthnight,1602\nmaidenhead,1,twelfthnight,1602\ncantons,1,twelfthnight,1602\nprotection,1,twelfthnight,1602\ncrown'd,1,twelfthnight,1602\nrevolve,1,twelfthnight,1602\ncockney,1,twelfthnight,1602\ndecreed,1,twelfthnight,1602\nmaid's,1,twelfthnight,1602\ndust,1,twelfthnight,1602\nMercury,1,twelfthnight,1602\n'Olivia,1,twelfthnight,1602\nThink,1,twelfthnight,1602\nsinews,1,twelfthnight,1602\nquarrelling,1,twelfthnight,1602\nPistol,1,twelfthnight,1602\nwax,1,twelfthnight,1602\ncubiculo,1,twelfthnight,1602\nstage,1,twelfthnight,1602\nstitches,1,twelfthnight,1602\nbotcher,1,twelfthnight,1602\nraven's,1,twelfthnight,1602\ntailor,1,twelfthnight,1602\ndrives,1,twelfthnight,1602\nbalked,1,twelfthnight,1602\nprevail,1,twelfthnight,1602\nbarbarous,1,twelfthnight,1602\nreceive,1,twelfthnight,1602\npilchards,1,twelfthnight,1602\n'To,1,twelfthnight,1602\nfancy's,1,twelfthnight,1602\naudience,1,twelfthnight,1602\nimportant,1,twelfthnight,1602\nFates,1,twelfthnight,1602\nchangeable,1,twelfthnight,1602\nenraged,1,twelfthnight,1602\nfervor,1,twelfthnight,1602\narts,1,twelfthnight,1602\nfencer,1,twelfthnight,1602\nblemish,1,twelfthnight,1602\nherring,1,twelfthnight,1602\npride,1,twelfthnight,1602\nmaiden's,1,twelfthnight,1602\nwoos,1,twelfthnight,1602\ndying,1,twelfthnight,1602\nnightingales,1,twelfthnight,1602\nbullets,1,twelfthnight,1602\nends,1,twelfthnight,1602\nadmitted,1,twelfthnight,1602\nexalted,1,twelfthnight,1602\nowl,1,twelfthnight,1602\nsplit,1,twelfthnight,1602\nFESTE,1,twelfthnight,1602\nnext,1,twelfthnight,1602\nbells,1,twelfthnight,1602\nThree,1,twelfthnight,1602\nlullaby,1,twelfthnight,1602\ndiscard,1,twelfthnight,1602\nThrows,1,twelfthnight,1602\nMonsieur,1,twelfthnight,1602\npossess,1,twelfthnight,1602\ndamask,1,twelfthnight,1602\ncaught,1,twelfthnight,1602\nQuinapalus,1,twelfthnight,1602\nunfilled,1,twelfthnight,1602\nginger,1,twelfthnight,1602\nnews,1,twelfthnight,1602\nadored,1,twelfthnight,1602\ngrossly,1,twelfthnight,1602\nerrest,1,twelfthnight,1602\ngrossness,1,twelfthnight,1602\nvulgar,1,twelfthnight,1602\nfamiliar,1,twelfthnight,1602\nrequite,1,twelfthnight,1602\n'be,1,twelfthnight,1602\nadores,1,twelfthnight,1602\nserviteur,1,twelfthnight,1602\nprompt,1,twelfthnight,1602\nbaseness,1,twelfthnight,1602\nwatery,1,twelfthnight,1602\nserved,1,twelfthnight,1602\nHeaven,1,twelfthnight,1602\nfaced,1,twelfthnight,1602\nvalidity,1,twelfthnight,1602\nprovident,1,twelfthnight,1602\ncharges,1,twelfthnight,1602\ndistractedly,1,twelfthnight,1602\npoison,1,twelfthnight,1602\ncoffer,1,twelfthnight,1602\nstainless,1,twelfthnight,1602\nspleen,1,twelfthnight,1602\nsways,1,twelfthnight,1602\nwomb,1,twelfthnight,1602\ncompass,1,twelfthnight,1602\nLegion,1,twelfthnight,1602\nlechery,1,twelfthnight,1602\nenwraps,1,twelfthnight,1602\nrail,1,twelfthnight,1602\nsupportance,1,twelfthnight,1602\nherrings,1,twelfthnight,1602\nrudeness,1,twelfthnight,1602\ntuck,1,twelfthnight,1602\nMisprision,1,twelfthnight,1602\nbarful,1,twelfthnight,1602\nwaters,1,twelfthnight,1602\nwolf,1,twelfthnight,1602\ngrain,1,twelfthnight,1602\nbelie,1,twelfthnight,1602\nharvest,1,twelfthnight,1602\nserves,1,twelfthnight,1602\nskills,1,twelfthnight,1602\nwooer,1,twelfthnight,1602\nmarble,1,twelfthnight,1602\nplumes,1,twelfthnight,1602\nbeguiled,1,twelfthnight,1602\ndisorders,1,twelfthnight,1602\nwhence,1,twelfthnight,1602\nfollowers,1,twelfthnight,1602\ndormouse,1,twelfthnight,1602\nanatomy,1,twelfthnight,1602\nheathen,1,twelfthnight,1602\nglad,1,twelfthnight,1602\nassail,1,twelfthnight,1602\nevil,1,twelfthnight,1602\nposition,1,twelfthnight,1602\nSneck,1,twelfthnight,1602\nMany,1,twelfthnight,1602\nparticle,1,twelfthnight,1602\npractising,1,twelfthnight,1602\njudge,1,twelfthnight,1602\ndoublet,1,twelfthnight,1602\ngiving,1,twelfthnight,1602\nsportful,1,twelfthnight,1602\nmiracle,1,twelfthnight,1602\nswearings,1,twelfthnight,1602\nVice,1,twelfthnight,1602\nprattle,1,twelfthnight,1602\norb,1,twelfthnight,1602\nfog,1,twelfthnight,1602\namends,1,twelfthnight,1602\ndistract,1,twelfthnight,1602\nphrases,1,twelfthnight,1602\nclearly,1,twelfthnight,1602\nconstancy,1,twelfthnight,1602\ncatechise,1,twelfthnight,1602\nwert,1,twelfthnight,1602\nestimable,1,twelfthnight,1602\nlasting,1,twelfthnight,1602\ndarkly,1,twelfthnight,1602\ncruell'st,1,twelfthnight,1602\nmethinks,1,twelfthnight,1602\nsilly,1,twelfthnight,1602\nYond,1,twelfthnight,1602\ngrand,1,twelfthnight,1602\nreturns,1,twelfthnight,1602\ndivulged,1,twelfthnight,1602\nworm,1,twelfthnight,1602\nvotre,1,twelfthnight,1602\nwickedness,1,twelfthnight,1602\nthrew,1,twelfthnight,1602\ncuff,1,twelfthnight,1602\npassing,1,twelfthnight,1602\nduello,1,twelfthnight,1602\nwest,1,twelfthnight,1602\nsemblative,1,twelfthnight,1602\ndancing,1,twelfthnight,1602\nfie,1,twelfthnight,1602\npepper,1,twelfthnight,1602\nunjust,1,twelfthnight,1602\nendeavour,1,twelfthnight,1602\nminute,1,twelfthnight,1602\nMark,1,twelfthnight,1602\nscabbard,1,twelfthnight,1602\nfine,1,twelfthnight,1602\nvow,1,twelfthnight,1602\nprofit,1,twelfthnight,1602\nVapians,1,twelfthnight,1602\nmoderate,1,twelfthnight,1602\npleaser,1,twelfthnight,1602\nAttend,1,twelfthnight,1602\nspinsters,1,twelfthnight,1602\nBoy,1,twelfthnight,1602\nclad,1,twelfthnight,1602\ncherry,1,twelfthnight,1602\nsavage,1,twelfthnight,1602\ncontinue,1,twelfthnight,1602\ncontemplative,1,twelfthnight,1602\nscrews,1,twelfthnight,1602\nhandmaid,1,twelfthnight,1602\nassume,1,twelfthnight,1602\nany's,1,twelfthnight,1602\n'that',1,twelfthnight,1602\nRamsey,1,twelfthnight,1602\ncoziers',1,twelfthnight,1602\npants,1,twelfthnight,1602\nrenegado,1,twelfthnight,1602\nreprove,1,twelfthnight,1602\nPlight,1,twelfthnight,1602\nLead,1,twelfthnight,1602\nTaught,1,twelfthnight,1602\ndistemper,1,twelfthnight,1602\nthereby,1,twelfthnight,1602\nopened,1,twelfthnight,1602\nthunder,1,twelfthnight,1602\n'havior,1,twelfthnight,1602\nexult,1,twelfthnight,1602\nshown,1,twelfthnight,1602\nwide,1,twelfthnight,1602\npocket,1,twelfthnight,1602\ndivers,1,twelfthnight,1602\nlines,1,twelfthnight,1602\nuncle,1,twelfthnight,1602\nan't,1,twelfthnight,1602\nvex,1,twelfthnight,1602\nmater,1,twelfthnight,1602\nprospect,1,twelfthnight,1602\nbetters,1,twelfthnight,1602\npartly,1,twelfthnight,1602\nMyrmidons,1,twelfthnight,1602\nlived,1,twelfthnight,1602\nwhither,1,twelfthnight,1602\nStealing,1,twelfthnight,1602\nUNHAPPY,1,twelfthnight,1602\nincreasing,1,twelfthnight,1602\nbase,1,twelfthnight,1602\nstrikes,1,twelfthnight,1602\nBolts,1,twelfthnight,1602\nthanked,1,twelfthnight,1602\ncompetent,1,twelfthnight,1602\nregardance,1,twelfthnight,1602\nstrown,1,twelfthnight,1602\ndialogue,1,twelfthnight,1602\ndeliver'd,1,twelfthnight,1602\nfate,1,twelfthnight,1602\ncock,1,twelfthnight,1602\nbank,1,twelfthnight,1602\ndeliver't,1,twelfthnight,1602\ndad,1,twelfthnight,1602\nbreasted,1,twelfthnight,1602\nvitae,1,twelfthnight,1602\nbounds,1,twelfthnight,1602\nnames,1,twelfthnight,1602\nfast,1,twelfthnight,1602\nnamed,1,twelfthnight,1602\nboldly,1,twelfthnight,1602\nfare,1,twelfthnight,1602\nflock,1,twelfthnight,1602\nWelcome,1,twelfthnight,1602\nlights,1,twelfthnight,1602\nInvites,1,twelfthnight,1602\ntalk,1,twelfthnight,1602\nwitchcraft,1,twelfthnight,1602\nFate,1,twelfthnight,1602\nProsper,1,twelfthnight,1602\nbind,1,twelfthnight,1602\nPrague,1,twelfthnight,1602\ncup,1,twelfthnight,1602\notherwise,1,twelfthnight,1602\ncub,1,twelfthnight,1602\nconvey,1,twelfthnight,1602\nstroke,1,twelfthnight,1602\nexcepted,1,twelfthnight,1602\nconsists,1,twelfthnight,1602\ncarry,1,twelfthnight,1602\nwild,1,twelfthnight,1602\nreproof,1,twelfthnight,1602\nRather,1,twelfthnight,1602\nNotorious,1,twelfthnight,1602\nEvery,1,twelfthnight,1602\ncreep,1,twelfthnight,1602\nought,1,twelfthnight,1602\nholds,1,twelfthnight,1602\nshore,1,twelfthnight,1602\npardon,1,twelfthnight,1602\naccident,1,twelfthnight,1602\nswears,1,twelfthnight,1602\nbigger,1,twelfthnight,1602\nbethought,1,twelfthnight,1602\nhyperbolical,1,twelfthnight,1602\nEngland,1,twelfthnight,1602\naugmentation,1,twelfthnight,1602\nLay,1,twelfthnight,1602\nfertile,1,twelfthnight,1602\nbaffle,1,twelfthnight,1602\ngreen,1,twelfthnight,1602\nunsuitable,1,twelfthnight,1602\ngreet,1,twelfthnight,1602\ndevout,1,twelfthnight,1602\nhollow,1,twelfthnight,1602\ncur,1,twelfthnight,1602\nmethod,1,twelfthnight,1602\ncounterfeit,1,twelfthnight,1602\nhonest,1,twelfthnight,1602\nloyal,1,twelfthnight,1602\nabatement,1,twelfthnight,1602\nrevolt,1,twelfthnight,1602\nasking,1,twelfthnight,1602\nsinner,1,twelfthnight,1602\nconsist,1,twelfthnight,1602\ncondemn,1,twelfthnight,1602\nflood,1,twelfthnight,1602\nlives,1,twelfthnight,1602\ntiny,1,twelfthnight,1602\nwriting,1,twelfthnight,1602\nBennet,1,twelfthnight,1602\nvirtues,1,twelfthnight,1602\nlustrous,1,twelfthnight,1602\nArion,1,twelfthnight,1602\nthou'ldst,1,twelfthnight,1602\nblazon,1,twelfthnight,1602\nnotwithstanding,1,twelfthnight,1602\npeascod,1,twelfthnight,1602\nmeditate,1,twelfthnight,1602\ncleft,1,twelfthnight,1602\nalso,1,twelfthnight,1602\ninevitable,1,twelfthnight,1602\nhave't,1,twelfthnight,1602\nevident,1,twelfthnight,1602\nseat,1,twelfthnight,1602\nbeset,1,twelfthnight,1602\no'erflourish'd,1,twelfthnight,1602\nhunt,1,twelfthnight,1602\nalong,1,twelfthnight,1602\nfourteen,1,twelfthnight,1602\nofferings,1,twelfthnight,1602\ncopy,1,twelfthnight,1602\npoliticians,1,twelfthnight,1602\nlying,1,twelfthnight,1602\nattendance,1,twelfthnight,1602\nAnne,1,twelfthnight,1602\nalways,1,twelfthnight,1602\nUngracious,1,twelfthnight,1602\nbachelor,1,twelfthnight,1602\nadieu,1,twelfthnight,1602\naloof,1,twelfthnight,1602\ndolphin's,1,twelfthnight,1602\ncontagion,1,twelfthnight,1602\nPrimo,1,twelfthnight,1602\nfadge,1,twelfthnight,1602\nPandarus,1,twelfthnight,1602\nserviceable,1,twelfthnight,1602\nSurprise,1,twelfthnight,1602\npublish,1,twelfthnight,1602\nthereto,1,twelfthnight,1602\ncons,1,twelfthnight,1602\nSeek,1,twelfthnight,1602\nwhipstock,1,twelfthnight,1602\nplaintiff,1,twelfthnight,1602\naught,1,twelfthnight,1602\nweaver,1,twelfthnight,1602\nsupplied,1,twelfthnight,1602\ntalking,1,twelfthnight,1602\npresence,1,twelfthnight,1602\nGentleman,1,twelfthnight,1602\ncon,1,twelfthnight,1602\nhounds,1,twelfthnight,1602\nLie,1,twelfthnight,1602\nended,1,twelfthnight,1602\ncoz,1,twelfthnight,1602\nlook'd,1,twelfthnight,1602\nundertaker,1,twelfthnight,1602\ncamest,1,twelfthnight,1602\ncovetousness,1,twelfthnight,1602\nsees,1,twelfthnight,1602\nfeigning,1,twelfthnight,1602\nvessel,1,twelfthnight,1602\ncondition,1,twelfthnight,1602\nprudent,1,twelfthnight,1602\nliking,1,twelfthnight,1602\ncost,1,twelfthnight,1602\nshapes,1,twelfthnight,1602\nfellows,1,twelfthnight,1602\nBelieve,1,twelfthnight,1602\nTrue,1,twelfthnight,1602\nstaniel,1,twelfthnight,1602\nhull,1,twelfthnight,1602\nDick,1,twelfthnight,1602\nrascally,1,twelfthnight,1602\ntaffeta,1,twelfthnight,1602\nusage,1,twelfthnight,1602\nperson,1,twelfthnight,1602\ntertio,1,twelfthnight,1602\nlabelled,1,twelfthnight,1602\navoid,1,twelfthnight,1602\ntree,1,twelfthnight,1602\nReveals,1,twelfthnight,1602\nnights,1,twelfthnight,1602\ntherein,1,twelfthnight,1602\nunsound,1,twelfthnight,1602\nlovest,1,twelfthnight,1602\ngarde,1,twelfthnight,1602\njolly,1,twelfthnight,1602\nglove,1,twelfthnight,1602\ndislike,1,twelfthnight,1602\n'There,1,twelfthnight,1602\nrecommended,1,twelfthnight,1602\ngods,1,twelfthnight,1602\nTrip,1,twelfthnight,1602\nexceptions,1,twelfthnight,1602\nSowter,1,twelfthnight,1602\nexcellence,1,twelfthnight,1602\nClose,1,twelfthnight,1602\nCry,1,twelfthnight,1602\nSmiling,1,twelfthnight,1602\nvulgo,1,twelfthnight,1602\nJust,1,twelfthnight,1602\nbelieves,1,twelfthnight,1602\naloud,1,twelfthnight,1602\nMeantime,1,twelfthnight,1602\nblank,1,twelfthnight,1602\nwhilst,1,twelfthnight,1602\n'One,1,twelfthnight,1602\nprison,1,twelfthnight,1602\npots,1,twelfthnight,1602\nvouchsafed,1,twelfthnight,1602\nmother's,1,twelfthnight,1602\nTiger,1,twelfthnight,1602\nadds,1,twelfthnight,1602\ngrieves,1,twelfthnight,1602\n'Farewell,1,twelfthnight,1602\nskull,1,twelfthnight,1602\ncold,1,twelfthnight,1602\nRoman,1,twelfthnight,1602\ngenius,1,twelfthnight,1602\ncarriage,1,twelfthnight,1602\nstable,1,twelfthnight,1602\nformal,1,twelfthnight,1602\nseason,1,twelfthnight,1602\ncountryman,1,twelfthnight,1602\nmatch,1,twelfthnight,1602\ngrizzle,1,twelfthnight,1602\nRemain,1,twelfthnight,1602\nlaudable,1,twelfthnight,1602\nchampaign,1,twelfthnight,1602\naffair,1,twelfthnight,1602\nparticipate,1,twelfthnight,1602\nnayword,1,twelfthnight,1602\nBelzebub,1,twelfthnight,1602\nNoah,1,twelfthnight,1602\nmetaphor,1,twelfthnight,1602\nstarted,1,twelfthnight,1602\nRough,1,twelfthnight,1602\nuntie,1,twelfthnight,1602\nTwo,1,twelfthnight,1602\nFire,1,twelfthnight,1602\nTempests,1,twelfthnight,1602\nthread,1,twelfthnight,1602\nbrow,1,twelfthnight,1602\nslow,1,twelfthnight,1602\nlicence,1,twelfthnight,1602\n'His,1,twelfthnight,1602\nsheriff's,1,twelfthnight,1602\nfustian,1,twelfthnight,1602\nupbraid,1,twelfthnight,1602\nquieter,1,twelfthnight,1602\nPlaced,1,twelfthnight,1602\nPunish,1,twelfthnight,1602\nthree',1,twelfthnight,1602\nhonesty,1,twelfthnight,1602\nmap,1,twelfthnight,1602\nspirits,1,twelfthnight,1602\nlimbs,1,twelfthnight,1602\nstarts,1,twelfthnight,1602\nDexterously,1,twelfthnight,1602\nallied,1,twelfthnight,1602\nbetroth'd,1,twelfthnight,1602\ndulcet,1,twelfthnight,1602\nconstrue,1,twelfthnight,1602\nStrachy,1,twelfthnight,1602\ncareful,1,twelfthnight,1602\nBlame,1,twelfthnight,1602\nquaffing,1,twelfthnight,1602\ncomfortable,1,twelfthnight,1602\nconduct,1,twelfthnight,1602\ngust,1,twelfthnight,1602\nshackles,1,twelfthnight,1602\nbrabble,1,twelfthnight,1602\n'Hey,1,twelfthnight,1602\ncaterwauling,1,twelfthnight,1602\ndoing,1,twelfthnight,1602\ntaxation,1,twelfthnight,1602\ncollier,1,twelfthnight,1602\nRudesby,1,twelfthnight,1602\nmet,1,twelfthnight,1602\nSooth,1,twelfthnight,1602\ntrip,1,twelfthnight,1602\ntravell'd,1,twelfthnight,1602\ncoranto,1,twelfthnight,1602\nounce,1,twelfthnight,1602\nhardy,1,twelfthnight,1602\nbaily,1,twelfthnight,1602\nAccording,1,twelfthnight,1602\nDoes,1,twelfthnight,1602\nendue,1,twelfthnight,1602\nmeeting,1,twelfthnight,1602\ncrumbs,1,twelfthnight,1602\nevils,1,twelfthnight,1602\nClock,1,twelfthnight,1602\nabuse,1,twelfthnight,1602\ndeterminate,1,twelfthnight,1602\nladies,1,twelfthnight,1602\ngems,1,twelfthnight,1602\nflea,1,twelfthnight,1602\nbethink,1,twelfthnight,1602\nebony,1,twelfthnight,1602\neleven,1,twelfthnight,1602\nquarrels,1,twelfthnight,1602\nacross,1,twelfthnight,1602\nquestion's,1,twelfthnight,1602\nhenceforth,1,twelfthnight,1602\nlion,1,twelfthnight,1602\n'Madam,1,twelfthnight,1602\nphysic,1,twelfthnight,1602\nhomage,1,twelfthnight,1602\nmarriage,1,twelfthnight,1602\ntelling,1,twelfthnight,1602\ndismiss,1,twelfthnight,1602\nE'er,1,twelfthnight,1602\njesting,1,twelfthnight,1602\nterror,1,twelfthnight,1602\ncarpet,1,twelfthnight,1602\nlethargy,1,twelfthnight,1602\npolitic,1,twelfthnight,1602\nphrase,1,twelfthnight,1602\nrevenges,1,twelfthnight,1602\nniggardly,1,twelfthnight,1602\nflax,1,twelfthnight,1602\nfleshed,1,twelfthnight,1602\ntalents,1,twelfthnight,1602\nMaintain,1,twelfthnight,1602\nGreek,1,twelfthnight,1602\nlath,1,twelfthnight,1602\nlimed,1,twelfthnight,1602\nknight's,1,twelfthnight,1602\ngravity,1,twelfthnight,1602\nsleeping,1,twelfthnight,1602\nshroud,1,twelfthnight,1602\nmaugre,1,twelfthnight,1602\nmanifests,1,twelfthnight,1602\ncountess,1,twelfthnight,1602\nextent,1,twelfthnight,1602\nsailors,1,twelfthnight,1602\nextend,1,twelfthnight,1602\njade,1,twelfthnight,1602\nlist,1,twelfthnight,1602\nwhet,1,twelfthnight,1602\nrevenged,1,twelfthnight,1602\nopportunity,1,twelfthnight,1602\nsuited,1,twelfthnight,1602\nresembled,1,twelfthnight,1602\nforeknowledge,1,twelfthnight,1602\nbias,1,twelfthnight,1602\ngoing,1,twelfthnight,1602\nfollow'd,1,twelfthnight,1602\nwindows,1,twelfthnight,1602\ncontent,1,twelfthnight,1602\npassages,1,twelfthnight,1602\nsimply,1,twelfthnight,1602\ncorruption,1,twelfthnight,1602\nsimple,1,twelfthnight,1602\nsentence,1,twelfthnight,1602\nuncurrent,1,twelfthnight,1602\nspring,1,twelfthnight,1602\nentrance,1,twelfthnight,1602\nnumbers,1,twelfthnight,1602\nPriests,1,twelfthnight,1602\nearned,1,twelfthnight,1602\ndenying,1,twelfthnight,1602\npresage,1,twelfthnight,1602\npayment,1,twelfthnight,1602\nConceal,1,twelfthnight,1602\nshaft,1,twelfthnight,1602\nbrag,1,twelfthnight,1602\nconfirm,1,twelfthnight,1602\nasleep,1,twelfthnight,1602\npresupposed,1,twelfthnight,1602\nsomewhere,1,twelfthnight,1602\nWhoe'er,1,twelfthnight,1602\ntransgresses,1,twelfthnight,1602\nstudent,1,twelfthnight,1602\nGracious,1,twelfthnight,1602\nhonour's,1,twelfthnight,1602\nHung,1,twelfthnight,1602\nhowever,1,twelfthnight,1602\nLest,1,twelfthnight,1602\nframe,1,twelfthnight,1602\nutensil,1,twelfthnight,1602\ndue,1,twelfthnight,1602\ntoe,1,twelfthnight,1602\ndispatch,1,twelfthnight,1602\ntop,1,twelfthnight,1602\ncouplet,1,twelfthnight,1602\nlamb,1,twelfthnight,1602\nliest,1,twelfthnight,1602\nreverend,1,twelfthnight,1602\nsea's,1,twelfthnight,1602\nDRAMATIS,1,twelfthnight,1602\nslew,1,twelfthnight,1602\nsinister,1,twelfthnight,1602\nvenom,1,twelfthnight,1602\nrescue,1,twelfthnight,1602\nbehold,1,twelfthnight,1602\n'vouchsafed,1,twelfthnight,1602\nprerogative,1,twelfthnight,1602\ntripping,1,twelfthnight,1602\ngrapple,1,twelfthnight,1602\nsweeting,1,twelfthnight,1602\nBonos,1,twelfthnight,1602\nclodpole,1,twelfthnight,1602\nrecord,1,twelfthnight,1602\nfence,1,twelfthnight,1602\ncakes,1,twelfthnight,1602\ntired,1,twelfthnight,1602\nmalignancy,1,twelfthnight,1602\nreserve,1,twelfthnight,1602\nincardinate,1,twelfthnight,1602\nfrail,1,twelfthnight,1602\nsmell,1,twelfthnight,1602\ncabin,1,twelfthnight,1602\nDaylight,1,twelfthnight,1602\ndisputes,1,twelfthnight,1602\n'That,1,twelfthnight,1602\ndrown'd,1,twelfthnight,1602\nFair,1,twelfthnight,1602\nboots,1,twelfthnight,1602\narbitrement,1,twelfthnight,1602\nrubious,1,twelfthnight,1602\nslip,1,twelfthnight,1602\ntainted,1,twelfthnight,1602\nSaying,1,twelfthnight,1602\nmutual,1,twelfthnight,1602\nsoundly,1,twelfthnight,1602\namen,1,twelfthnight,1602\ntraytrip,1,twelfthnight,1602\nbuttery,1,twelfthnight,1602\nremorse,1,twelfthnight,1602\njustly,1,twelfthnight,1602\ncharity,1,twelfthnight,1602\ncannon,1,twelfthnight,1602\nmanikin,1,twelfthnight,1602\ngiven't,1,twelfthnight,1602\ncooling,1,twelfthnight,1602\nforbear,1,twelfthnight,1602\nbreathe,1,twelfthnight,1602\noaths,1,twelfthnight,1602\nKept,1,twelfthnight,1602\nLechery,1,twelfthnight,1602\ntriplex,1,twelfthnight,1602\ndoctrine,1,twelfthnight,1602\npropertied,1,twelfthnight,1602\ndallies,1,twelfthnight,1602\nprompted,1,twelfthnight,1602\nwouldst,1,twelfthnight,1602\norder,1,twelfthnight,1602\ndissemble,1,twelfthnight,1602\ngeck,1,twelfthnight,1602\ndurance,1,twelfthnight,1602\nturn'd,1,twelfthnight,1602\npanyn,1,twelfthnight,1602\nsharp,1,twelfthnight,1602\nTut,1,twelfthnight,1602\nsummer,1,twelfthnight,1602\ndaughters,1,twelfthnight,1602\nindignation,2,twelfthnight,1602\nevent,2,twelfthnight,1602\nadvanced,2,twelfthnight,1602\n'is',2,twelfthnight,1602\ngrandam,2,twelfthnight,1602\nbrawl,2,twelfthnight,1602\nquality,2,twelfthnight,1602\ntimes,2,twelfthnight,1602\ngrey,2,twelfthnight,1602\nTaurus,2,twelfthnight,1602\ninvisible,2,twelfthnight,1602\nred,2,twelfthnight,1602\ndays,2,twelfthnight,1602\ndrop,2,twelfthnight,1602\ncountry,2,twelfthnight,1602\nforswear,2,twelfthnight,1602\npossible,2,twelfthnight,1602\ndagger,2,twelfthnight,1602\nhaste,2,twelfthnight,1602\nbones,2,twelfthnight,1602\nelement,2,twelfthnight,1602\noffended,2,twelfthnight,1602\nrascal,2,twelfthnight,1602\nWilt,2,twelfthnight,1602\nvillain,2,twelfthnight,1602\ncypress,2,twelfthnight,1602\njot,2,twelfthnight,1602\nconstruction,2,twelfthnight,1602\nNever,2,twelfthnight,1602\nlaughter,2,twelfthnight,1602\nBeshrew,2,twelfthnight,1602\nhanged,2,twelfthnight,1602\nthirteen,2,twelfthnight,1602\nthroat,2,twelfthnight,1602\nyears',2,twelfthnight,1602\nsingularity,2,twelfthnight,1602\nadmirable,2,twelfthnight,1602\nyonder,2,twelfthnight,1602\ninnocence,2,twelfthnight,1602\niron,2,twelfthnight,1602\nWhom,2,twelfthnight,1602\ncase,2,twelfthnight,1602\nearly,2,twelfthnight,1602\nOnce,2,twelfthnight,1602\nSailors,2,twelfthnight,1602\nextort,2,twelfthnight,1602\nchin,2,twelfthnight,1602\nsoon,2,twelfthnight,1602\ncharge,2,twelfthnight,1602\nbirth,2,twelfthnight,1602\namazed,2,twelfthnight,1602\nconscience,2,twelfthnight,1602\nAfter,2,twelfthnight,1602\n'What,2,twelfthnight,1602\nbearing,2,twelfthnight,1602\nbetake,2,twelfthnight,1602\ngrows,2,twelfthnight,1602\ngracious,2,twelfthnight,1602\nboldness,2,twelfthnight,1602\ninjury,2,twelfthnight,1602\nMuch,2,twelfthnight,1602\nheat,2,twelfthnight,1602\nhabits,2,twelfthnight,1602\nfunction,2,twelfthnight,1602\npossessed,2,twelfthnight,1602\nrevels,2,twelfthnight,1602\ncheek,2,twelfthnight,1602\npolicy,2,twelfthnight,1602\nhanging,2,twelfthnight,1602\nofficers,2,twelfthnight,1602\nglass,2,twelfthnight,1602\nkin,2,twelfthnight,1602\nMessaline,2,twelfthnight,1602\nview,2,twelfthnight,1602\nhereafter,2,twelfthnight,1602\nDuke,2,twelfthnight,1602\nwhatsoever,2,twelfthnight,1602\nsit,2,twelfthnight,1602\nreturned,2,twelfthnight,1602\nvice,2,twelfthnight,1602\nWrite,2,twelfthnight,1602\nshe'll,2,twelfthnight,1602\ndimension,2,twelfthnight,1602\nscorn,2,twelfthnight,1602\nfell,2,twelfthnight,1602\nyield,2,twelfthnight,1602\nlove's,2,twelfthnight,1602\nsot,2,twelfthnight,1602\nskill,2,twelfthnight,1602\n'O,2,twelfthnight,1602\nattends,2,twelfthnight,1602\nbeloved,2,twelfthnight,1602\nlooks,2,twelfthnight,1602\nMusic,2,twelfthnight,1602\nfaults,2,twelfthnight,1602\ndoubt,2,twelfthnight,1602\ndally,2,twelfthnight,1602\nindifferent,2,twelfthnight,1602\nstuck,2,twelfthnight,1602\nourselves,2,twelfthnight,1602\nThese,2,twelfthnight,1602\nredeem,2,twelfthnight,1602\npiece,2,twelfthnight,1602\nOur,2,twelfthnight,1602\ngive't,2,twelfthnight,1602\ndaughter,2,twelfthnight,1602\nexcellently,2,twelfthnight,1602\nhabit,2,twelfthnight,1602\ncivil,2,twelfthnight,1602\ndearly,2,twelfthnight,1602\nPardon,2,twelfthnight,1602\nWherein,2,twelfthnight,1602\ndraught,2,twelfthnight,1602\nOLIVIA'S,2,twelfthnight,1602\nfeet,2,twelfthnight,1602\ndesirest,2,twelfthnight,1602\nsaucy,2,twelfthnight,1602\nmalice,2,twelfthnight,1602\nupon't,2,twelfthnight,1602\nchoose,2,twelfthnight,1602\nwine,2,twelfthnight,1602\nothers,2,twelfthnight,1602\nsoldier,2,twelfthnight,1602\nflesh,2,twelfthnight,1602\nwished,2,twelfthnight,1602\nusurp,2,twelfthnight,1602\nhence,2,twelfthnight,1602\nMusicians,2,twelfthnight,1602\nseest,2,twelfthnight,1602\nthrown,2,twelfthnight,1602\nbond,2,twelfthnight,1602\nbreeding,2,twelfthnight,1602\nrule,2,twelfthnight,1602\nwash,2,twelfthnight,1602\nwast,2,twelfthnight,1602\ncanary,2,twelfthnight,1602\nspoke,2,twelfthnight,1602\ninfirmity,2,twelfthnight,1602\ndistraction,2,twelfthnight,1602\nhungry,2,twelfthnight,1602\neach,2,twelfthnight,1602\nbig,2,twelfthnight,1602\nknowledge,2,twelfthnight,1602\nchamber,2,twelfthnight,1602\nunkind,2,twelfthnight,1602\ndiscreet,2,twelfthnight,1602\ncommended,2,twelfthnight,1602\nAh,2,twelfthnight,1602\nAm,2,twelfthnight,1602\nstubborn,2,twelfthnight,1602\n'accost',2,twelfthnight,1602\nbow,2,twelfthnight,1602\nloath,2,twelfthnight,1602\nWhiles,2,twelfthnight,1602\nshortly,2,twelfthnight,1602\nhopes,2,twelfthnight,1602\npays,2,twelfthnight,1602\nbar,2,twelfthnight,1602\nSinging,2,twelfthnight,1602\ngentleness,2,twelfthnight,1602\nbeautiful,2,twelfthnight,1602\ndenied,2,twelfthnight,1602\nforce,2,twelfthnight,1602\nhid,2,twelfthnight,1602\nfinds,2,twelfthnight,1602\nhit,2,twelfthnight,1602\nLucrece,2,twelfthnight,1602\nbless,2,twelfthnight,1602\nquick,2,twelfthnight,1602\ndenial,2,twelfthnight,1602\nears,2,twelfthnight,1602\ndevotion,2,twelfthnight,1602\nnobly,2,twelfthnight,1602\ngod,2,twelfthnight,1602\ngold,2,twelfthnight,1602\ndressed,2,twelfthnight,1602\nThou'rt,2,twelfthnight,1602\ngave,2,twelfthnight,1602\nsorry,2,twelfthnight,1602\ngrief,2,twelfthnight,1602\nmankind,2,twelfthnight,1602\ndrunkenness,2,twelfthnight,1602\nbestowed,2,twelfthnight,1602\nbabbling,2,twelfthnight,1602\nmoreover,2,twelfthnight,1602\nsustain,2,twelfthnight,1602\nSpeak,2,twelfthnight,1602\nwelkin,2,twelfthnight,1602\nSaint,2,twelfthnight,1602\nPut,2,twelfthnight,1602\nfarewell,2,twelfthnight,1602\n'Shall,2,twelfthnight,1602\nvows,2,twelfthnight,1602\nCressida,2,twelfthnight,1602\nEnough,2,twelfthnight,1602\nbeds,2,twelfthnight,1602\nsavours,2,twelfthnight,1602\nvous,2,twelfthnight,1602\nnorth,2,twelfthnight,1602\nbegin,2,twelfthnight,1602\n'Hold,2,twelfthnight,1602\nsanctity,2,twelfthnight,1602\nforgive,2,twelfthnight,1602\npromised,2,twelfthnight,1602\nMethought,2,twelfthnight,1602\ngift,2,twelfthnight,1602\nsixpence,2,twelfthnight,1602\nHere's,2,twelfthnight,1602\nsheet,2,twelfthnight,1602\nwreck,2,twelfthnight,1602\nUnless,2,twelfthnight,1602\nplays,2,twelfthnight,1602\ndeal,2,twelfthnight,1602\ndead,2,twelfthnight,1602\npriest,2,twelfthnight,1602\nale,2,twelfthnight,1602\ncaper,2,twelfthnight,1602\namend,2,twelfthnight,1602\ndoor,2,twelfthnight,1602\nwonderful,2,twelfthnight,1602\nboard,2,twelfthnight,1602\nattending,2,twelfthnight,1602\nmonth,2,twelfthnight,1602\ndelay,2,twelfthnight,1602\nwisely,2,twelfthnight,1602\nnecessity,2,twelfthnight,1602\nthankful,2,twelfthnight,1602\nidle,2,twelfthnight,1602\n'Some,2,twelfthnight,1602\nearth,2,twelfthnight,1602\nscholar,2,twelfthnight,1602\nage,2,twelfthnight,1602\nloud,2,twelfthnight,1602\nstoup,2,twelfthnight,1602\nendure,2,twelfthnight,1602\nadd,2,twelfthnight,1602\nlest,2,twelfthnight,1602\nlose,2,twelfthnight,1602\ntwenty,2,twelfthnight,1602\nbeauteous,2,twelfthnight,1602\nknew,2,twelfthnight,1602\nswaggering,2,twelfthnight,1602\ngrace,2,twelfthnight,1602\nreasons,2,twelfthnight,1602\nhart,2,twelfthnight,1602\ndiscourse,2,twelfthnight,1602\ncatches,2,twelfthnight,1602\noutward,2,twelfthnight,1602\nPythagoras,2,twelfthnight,1602\nround,2,twelfthnight,1602\nChristian,2,twelfthnight,1602\nshallow,2,twelfthnight,1602\nhusband's,2,twelfthnight,1602\nweeds,2,twelfthnight,1602\nbrimstone,2,twelfthnight,1602\nshut,2,twelfthnight,1602\nthinkest,2,twelfthnight,1602\nplain,2,twelfthnight,1602\nfoul,2,twelfthnight,1602\nforty,2,twelfthnight,1602\nexcuse,2,twelfthnight,1602\nstranger,2,twelfthnight,1602\npaid,2,twelfthnight,1602\nmended,2,twelfthnight,1602\nfrown,2,twelfthnight,1602\npace,2,twelfthnight,1602\ncurate,2,twelfthnight,1602\nexcept,2,twelfthnight,1602\nrevenge,2,twelfthnight,1602\nforms,2,twelfthnight,1602\nmayst,2,twelfthnight,1602\nRobin,2,twelfthnight,1602\nsecret,2,twelfthnight,1602\nHast,2,twelfthnight,1602\nchance,2,twelfthnight,1602\nthanks,2,twelfthnight,1602\ndeadly,2,twelfthnight,1602\ntouch,2,twelfthnight,1602\nSatan,2,twelfthnight,1602\nbroke,2,twelfthnight,1602\nnew,2,twelfthnight,1602\nhere's,2,twelfthnight,1602\nInto,2,twelfthnight,1602\nBetween,2,twelfthnight,1602\nwatch,2,twelfthnight,1602\nlean,2,twelfthnight,1602\nkeeps,2,twelfthnight,1602\nsurgeon,2,twelfthnight,1602\n'Slight,2,twelfthnight,1602\nenvy,2,twelfthnight,1602\naction,2,twelfthnight,1602\napple,2,twelfthnight,1602\nrestore,2,twelfthnight,1602\nentertainment,2,twelfthnight,1602\nbears,2,twelfthnight,1602\ntender,2,twelfthnight,1602\nhide,2,twelfthnight,1602\nyear,2,twelfthnight,1602\nfeature,2,twelfthnight,1602\npregnant,2,twelfthnight,1602\nSoft,2,twelfthnight,1602\nadmit,2,twelfthnight,1602\nyou'll,2,twelfthnight,1602\nTHE,2,twelfthnight,1602\nU's,2,twelfthnight,1602\nSet,2,twelfthnight,1602\nC's,2,twelfthnight,1602\nfreely,2,twelfthnight,1602\nere,2,twelfthnight,1602\nleaving,2,twelfthnight,1602\nattire,2,twelfthnight,1602\nhigh,2,twelfthnight,1602\nSome,2,twelfthnight,1602\ndoors,2,twelfthnight,1602\ntowards,2,twelfthnight,1602\n'If,2,twelfthnight,1602\nnon,2,twelfthnight,1602\nconclusion,2,twelfthnight,1602\nmightst,2,twelfthnight,1602\ndowry,2,twelfthnight,1602\npresently,2,twelfthnight,1602\n'And,2,twelfthnight,1602\npersuaded,2,twelfthnight,1602\nAny,2,twelfthnight,1602\nbecause,2,twelfthnight,1602\nblow,2,twelfthnight,1602\ngates,2,twelfthnight,1602\nneed,2,twelfthnight,1602\nabhors,2,twelfthnight,1602\nordinary,2,twelfthnight,1602\nnumber,2,twelfthnight,1602\nBeing,2,twelfthnight,1602\nletters,2,twelfthnight,1602\ntrouble,2,twelfthnight,1602\ndivision,2,twelfthnight,1602\nsayest,2,twelfthnight,1602\ndesires,2,twelfthnight,1602\nwrath,2,twelfthnight,1602\nconstrained,2,twelfthnight,1602\nones,2,twelfthnight,1602\naltered,2,twelfthnight,1602\nwoodcock,2,twelfthnight,1602\nclose,2,twelfthnight,1602\naffairs,2,twelfthnight,1602\nAGUECHEEK,2,twelfthnight,1602\n'No,2,twelfthnight,1602\nneck,2,twelfthnight,1602\npurchase,2,twelfthnight,1602\nmessage,2,twelfthnight,1602\nWe'll,2,twelfthnight,1602\ncourt,2,twelfthnight,1602\nonly,2,twelfthnight,1602\nSad,2,twelfthnight,1602\nfetch,2,twelfthnight,1602\nducats,2,twelfthnight,1602\nDear,2,twelfthnight,1602\nSay,2,twelfthnight,1602\nSure,2,twelfthnight,1602\nripe,2,twelfthnight,1602\nnegligence,2,twelfthnight,1602\ncalled,2,twelfthnight,1602\nAguecheek,2,twelfthnight,1602\nwar,2,twelfthnight,1602\nretention,2,twelfthnight,1602\nintent,2,twelfthnight,1602\nfound,2,twelfthnight,1602\nrage,2,twelfthnight,1602\nwanton,2,twelfthnight,1602\nT's,2,twelfthnight,1602\nprice,2,twelfthnight,1602\nwomen's,2,twelfthnight,1602\npence,2,twelfthnight,1602\nmettle,2,twelfthnight,1602\nfun,2,twelfthnight,1602\nanger,2,twelfthnight,1602\nhaply,2,twelfthnight,1602\nwaste,2,twelfthnight,1602\nfox,2,twelfthnight,1602\nauthors,2,twelfthnight,1602\nfill'd,2,twelfthnight,1602\ngifts,2,twelfthnight,1602\ncompare,2,twelfthnight,1602\nminister,2,twelfthnight,1602\nperfections,2,twelfthnight,1602\ncharacter,2,twelfthnight,1602\nyond,2,twelfthnight,1602\nmodesty,2,twelfthnight,1602\nTill,2,twelfthnight,1602\ngrant,2,twelfthnight,1602\nfame,2,twelfthnight,1602\nnotoriously,2,twelfthnight,1602\npleased,2,twelfthnight,1602\nworn,2,twelfthnight,1602\ncolours,2,twelfthnight,1602\nfly,2,twelfthnight,1602\nroses,2,twelfthnight,1602\ndo't,2,twelfthnight,1602\nskilful,2,twelfthnight,1602\nflame,2,twelfthnight,1602\nne'er,2,twelfthnight,1602\nlordship,2,twelfthnight,1602\ncontagious,2,twelfthnight,1602\nmeddle,2,twelfthnight,1602\nta'en,2,twelfthnight,1602\nunfold,2,twelfthnight,1602\nsmooth,2,twelfthnight,1602\nqueen,2,twelfthnight,1602\ndepart,2,twelfthnight,1602\npatient,2,twelfthnight,1602\nmeaning,2,twelfthnight,1602\nodours,2,twelfthnight,1602\nbird,2,twelfthnight,1602\nkiss,2,twelfthnight,1602\ntang,2,twelfthnight,1602\nVery,2,twelfthnight,1602\nsurly,2,twelfthnight,1602\ntall,2,twelfthnight,1602\nlay,2,twelfthnight,1602\njests,2,twelfthnight,1602\nrapier,2,twelfthnight,1602\nVent,2,twelfthnight,1602\nNone,2,twelfthnight,1602\ngiddy,2,twelfthnight,1602\nrequest,2,twelfthnight,1602\nargument,2,twelfthnight,1602\nstreets,2,twelfthnight,1602\nWhere's,2,twelfthnight,1602\nWherefore,2,twelfthnight,1602\nseal,2,twelfthnight,1602\nprayers,2,twelfthnight,1602\nhearts,2,twelfthnight,1602\ncommission,2,twelfthnight,1602\nelements,2,twelfthnight,1602\nSophy,2,twelfthnight,1602\nsuits,2,twelfthnight,1602\nsouth,2,twelfthnight,1602\ndefend,2,twelfthnight,1602\ncourtesy,2,twelfthnight,1602\nMine,2,twelfthnight,1602\nsound,2,twelfthnight,1602\npirate,2,twelfthnight,1602\nthrust,2,twelfthnight,1602\ncry,2,twelfthnight,1602\nheels,2,twelfthnight,1602\ncurtain,2,twelfthnight,1602\nSend,2,twelfthnight,1602\nlovers,2,twelfthnight,1602\nself,2,twelfthnight,1602\nfairly,2,twelfthnight,1602\npost,2,twelfthnight,1602\nallowed,2,twelfthnight,1602\nundo,2,twelfthnight,1602\nslough,2,twelfthnight,1602\nhighest,2,twelfthnight,1602\nprotest,2,twelfthnight,1602\nepistles,2,twelfthnight,1602\nmethought,2,twelfthnight,1602\nbestow,2,twelfthnight,1602\nlip,2,twelfthnight,1602\nsleep,2,twelfthnight,1602\neat,2,twelfthnight,1602\nspite,2,twelfthnight,1602\nSignior,2,twelfthnight,1602\nbegins,2,twelfthnight,1602\nstraight,2,twelfthnight,1602\ndealing,2,twelfthnight,1602\nsovereign,2,twelfthnight,1602\nemployment,2,twelfthnight,1602\nstreet,2,twelfthnight,1602\nfashion,2,twelfthnight,1602\nbeguile,2,twelfthnight,1602\neunuch,2,twelfthnight,1602\ncredit,2,twelfthnight,1602\ngrounds,2,twelfthnight,1602\npranks,2,twelfthnight,1602\nbetimes,2,twelfthnight,1602\nfright,2,twelfthnight,1602\nbaiting,2,twelfthnight,1602\ndivinity,2,twelfthnight,1602\ngagged,2,twelfthnight,1602\nYou'll,2,twelfthnight,1602\nrespect,2,twelfthnight,1602\nattend,2,twelfthnight,1602\nconfine,2,twelfthnight,1602\ndare,2,twelfthnight,1602\nBelch,2,twelfthnight,1602\nlord's,2,twelfthnight,1602\ntoy,2,twelfthnight,1602\nshine,2,twelfthnight,1602\nToo,2,twelfthnight,1602\ntempt,2,twelfthnight,1602\nobedient,2,twelfthnight,1602\nking,2,twelfthnight,1602\njealousy,2,twelfthnight,1602\ntake't,2,twelfthnight,1602\nprincess,2,twelfthnight,1602\ncrown,2,twelfthnight,1602\nshare,2,twelfthnight,1602\nwomen,2,twelfthnight,1602\nservant's,2,twelfthnight,1602\nregard,3,twelfthnight,1602\nignorance,3,twelfthnight,1602\nV,3,twelfthnight,1602\nguard,3,twelfthnight,1602\nfancy,3,twelfthnight,1602\ndouble,3,twelfthnight,1602\nwrit,3,twelfthnight,1602\nFie,3,twelfthnight,1602\nOlivia's,3,twelfthnight,1602\npatched,3,twelfthnight,1602\ntears,3,twelfthnight,1602\nlooked,3,twelfthnight,1602\nlaugh,3,twelfthnight,1602\ncalls,3,twelfthnight,1602\ntruth,3,twelfthnight,1602\nUpon,3,twelfthnight,1602\npursue,3,twelfthnight,1602\nmercy,3,twelfthnight,1602\nplague,3,twelfthnight,1602\ndelivered,3,twelfthnight,1602\njest,3,twelfthnight,1602\ncircumstance,3,twelfthnight,1602\ntoward,3,twelfthnight,1602\ngolden,3,twelfthnight,1602\ncomplexion,3,twelfthnight,1602\nsoft,3,twelfthnight,1602\nMethinks,3,twelfthnight,1602\nshe's,3,twelfthnight,1602\nsin,3,twelfthnight,1602\ninvention,3,twelfthnight,1602\nsaying,3,twelfthnight,1602\nvirtuous,3,twelfthnight,1602\nembrace,3,twelfthnight,1602\nson,3,twelfthnight,1602\n'I,3,twelfthnight,1602\ncounsel,3,twelfthnight,1602\nit's,3,twelfthnight,1602\nfight,3,twelfthnight,1602\nbrain,3,twelfthnight,1602\nturn,3,twelfthnight,1602\nfault,3,twelfthnight,1602\nterms,3,twelfthnight,1602\nwhite,3,twelfthnight,1602\nhumble,3,twelfthnight,1602\nbrief,3,twelfthnight,1602\nAccost,3,twelfthnight,1602\nwind,3,twelfthnight,1602\nyouth's,3,twelfthnight,1602\nseems,3,twelfthnight,1602\nOne,3,twelfthnight,1602\nturned,3,twelfthnight,1602\nsooth,3,twelfthnight,1602\ncoast,3,twelfthnight,1602\noffice,3,twelfthnight,1602\nmistake,3,twelfthnight,1602\nobserve,3,twelfthnight,1602\nbook,3,twelfthnight,1602\nparts,3,twelfthnight,1602\nFaith,3,twelfthnight,1602\nElephant,3,twelfthnight,1602\nHis,3,twelfthnight,1602\npatience,3,twelfthnight,1602\ndesperate,3,twelfthnight,1602\nbad,3,twelfthnight,1602\npen,3,twelfthnight,1602\nOn,3,twelfthnight,1602\nHer,3,twelfthnight,1602\nwisdom,3,twelfthnight,1602\nproud,3,twelfthnight,1602\nobey,3,twelfthnight,1602\nvaliant,3,twelfthnight,1602\nPrithee,3,twelfthnight,1602\nkindness,3,twelfthnight,1602\norchard,3,twelfthnight,1602\nwear,3,twelfthnight,1602\nSave,3,twelfthnight,1602\njewel,3,twelfthnight,1602\ntravel,3,twelfthnight,1602\nuses,3,twelfthnight,1602\nconfess,3,twelfthnight,1602\nbeat,3,twelfthnight,1602\nstone,3,twelfthnight,1602\ngait,3,twelfthnight,1602\nhusband,3,twelfthnight,1602\nay,3,twelfthnight,1602\ncruelty,3,twelfthnight,1602\napproach,3,twelfthnight,1602\nitem,3,twelfthnight,1602\npuritan,3,twelfthnight,1602\nhadst,3,twelfthnight,1602\nYes,3,twelfthnight,1602\ndefy,3,twelfthnight,1602\nact,3,twelfthnight,1602\nready,3,twelfthnight,1602\nhardly,3,twelfthnight,1602\nbrought,3,twelfthnight,1602\nmessenger,3,twelfthnight,1602\nwelcome,3,twelfthnight,1602\ntext,3,twelfthnight,1602\nnatural,3,twelfthnight,1602\ndrawn,3,twelfthnight,1602\ncity,3,twelfthnight,1602\nmidnight,3,twelfthnight,1602\nform,3,twelfthnight,1602\ndelight,3,twelfthnight,1602\npoint,3,twelfthnight,1602\nfoot,3,twelfthnight,1602\nproper,3,twelfthnight,1602\ntrick,3,twelfthnight,1602\nenemies,3,twelfthnight,1602\nbehavior,3,twelfthnight,1602\nlead,3,twelfthnight,1602\nsilence,3,twelfthnight,1602\nLords,3,twelfthnight,1602\nrare,3,twelfthnight,1602\nwonder,3,twelfthnight,1602\ngently,3,twelfthnight,1602\nPeace,3,twelfthnight,1602\nsirrah,3,twelfthnight,1602\n'By,3,twelfthnight,1602\nFrom,3,twelfthnight,1602\narguments,3,twelfthnight,1602\nmortal,3,twelfthnight,1602\nvent,3,twelfthnight,1602\nAll,3,twelfthnight,1602\nknows,3,twelfthnight,1602\nknown,3,twelfthnight,1602\nobstruction,3,twelfthnight,1602\nachieve,3,twelfthnight,1602\nbrains,3,twelfthnight,1602\nthief,3,twelfthnight,1602\nover,3,twelfthnight,1602\nWere,3,twelfthnight,1602\ntaste,3,twelfthnight,1602\nORSINO's,3,twelfthnight,1602\nsalt,3,twelfthnight,1602\nsides,3,twelfthnight,1602\nfive,3,twelfthnight,1602\npersons,3,twelfthnight,1602\nsave,3,twelfthnight,1602\nCan,3,twelfthnight,1602\nduty,3,twelfthnight,1602\noath,3,twelfthnight,1602\nthemselves,3,twelfthnight,1602\nassure,3,twelfthnight,1602\nbrother's,3,twelfthnight,1602\ngalliard,3,twelfthnight,1602\nbounty,3,twelfthnight,1602\nhair,3,twelfthnight,1602\nduke,3,twelfthnight,1602\ntaken,3,twelfthnight,1602\nowe,3,twelfthnight,1602\ndisposition,3,twelfthnight,1602\nhideous,3,twelfthnight,1602\nMake,3,twelfthnight,1602\nground,3,twelfthnight,1602\nhumour,3,twelfthnight,1602\npalace,3,twelfthnight,1602\nride,3,twelfthnight,1602\nallow,3,twelfthnight,1602\nSweet,3,twelfthnight,1602\nfit,3,twelfthnight,1602\nrich,3,twelfthnight,1602\nsafety,3,twelfthnight,1602\nshows,3,twelfthnight,1602\nherself,3,twelfthnight,1602\npractise,3,twelfthnight,1602\nperceive,3,twelfthnight,1602\nwaves,3,twelfthnight,1602\ncomfort,3,twelfthnight,1602\nlad,3,twelfthnight,1602\nlaw,3,twelfthnight,1602\nconstant,3,twelfthnight,1602\ngentlemen,3,twelfthnight,1602\nholy,3,twelfthnight,1602\nclear,3,twelfthnight,1602\ncut,3,twelfthnight,1602\nfollows,3,twelfthnight,1602\npangs,3,twelfthnight,1602\nunto,3,twelfthnight,1602\nfavours,3,twelfthnight,1602\nwife,3,twelfthnight,1602\nlow,3,twelfthnight,1602\ndrunk,3,twelfthnight,1602\nseek,3,twelfthnight,1602\nTruly,3,twelfthnight,1602\nadore,3,twelfthnight,1602\nmodest,3,twelfthnight,1602\n'twill,3,twelfthnight,1602\nhours,3,twelfthnight,1602\nentreat,3,twelfthnight,1602\nparentage,3,twelfthnight,1602\ncapacity,3,twelfthnight,1602\nbarren,3,twelfthnight,1602\nimagination,3,twelfthnight,1602\ntaint,3,twelfthnight,1602\nleast,3,twelfthnight,1602\nsmiling,3,twelfthnight,1602\nBefore,3,twelfthnight,1602\nAway,3,twelfthnight,1602\nvirtue,3,twelfthnight,1602\nMay,3,twelfthnight,1602\nappetite,3,twelfthnight,1602\nassurance,3,twelfthnight,1602\nwitty,3,twelfthnight,1602\nHe's,3,twelfthnight,1602\nbred,3,twelfthnight,1602\nmonths,3,twelfthnight,1602\nshake,3,twelfthnight,1602\npass'd,3,twelfthnight,1602\nprivate,3,twelfthnight,1602\nawake,3,twelfthnight,1602\nshape,3,twelfthnight,1602\nbide,3,twelfthnight,1602\nundertake,3,twelfthnight,1602\ne'er,3,twelfthnight,1602\no'er,4,twelfthnight,1602\npity,4,twelfthnight,1602\nmotion,4,twelfthnight,1602\nwoman's,4,twelfthnight,1602\nmend,4,twelfthnight,1602\nsighs,4,twelfthnight,1602\nsight,4,twelfthnight,1602\nappear,4,twelfthnight,1602\ntrust,4,twelfthnight,1602\nscruple,4,twelfthnight,1602\ncast,4,twelfthnight,1602\ndrew,4,twelfthnight,1602\nblack,4,twelfthnight,1602\nmerry,4,twelfthnight,1602\nAside,4,twelfthnight,1602\nabused,4,twelfthnight,1602\ndeliver,4,twelfthnight,1602\nsworn,4,twelfthnight,1602\nServant,4,twelfthnight,1602\nOut,4,twelfthnight,1602\nafraid,4,twelfthnight,1602\nOfficers,4,twelfthnight,1602\nwilling,4,twelfthnight,1602\nsun,4,twelfthnight,1602\nabove,4,twelfthnight,1602\npromise,4,twelfthnight,1602\nfalse,4,twelfthnight,1602\nknow'st,4,twelfthnight,1602\nThough,4,twelfthnight,1602\nanon,4,twelfthnight,1602\ndied,4,twelfthnight,1602\nsense,4,twelfthnight,1602\ncolour,4,twelfthnight,1602\nsick,4,twelfthnight,1602\nside,4,twelfthnight,1602\nmorning,4,twelfthnight,1602\nmanners,4,twelfthnight,1602\nmelancholy,4,twelfthnight,1602\nsteward,4,twelfthnight,1602\ndrinking,4,twelfthnight,1602\nfoes,4,twelfthnight,1602\nscarce,4,twelfthnight,1602\nneither,4,twelfthnight,1602\nStill,4,twelfthnight,1602\nitself,4,twelfthnight,1602\ncruel,4,twelfthnight,1602\nto't,4,twelfthnight,1602\nIs't,4,twelfthnight,1602\ngown,4,twelfthnight,1602\npicture,4,twelfthnight,1602\nbreath,4,twelfthnight,1602\nimage,4,twelfthnight,1602\nvoyage,4,twelfthnight,1602\nleft,4,twelfthnight,1602\nneeds,4,twelfthnight,1602\nago,4,twelfthnight,1602\nhands,4,twelfthnight,1602\nwench,4,twelfthnight,1602\nmove,4,twelfthnight,1602\nSecond,4,twelfthnight,1602\nlost,4,twelfthnight,1602\nill,4,twelfthnight,1602\nspeaks,4,twelfthnight,1602\ncall'd,4,twelfthnight,1602\nacquaintance,4,twelfthnight,1602\nask,4,twelfthnight,1602\nexquisite,4,twelfthnight,1602\nhate,4,twelfthnight,1602\nfiend,4,twelfthnight,1602\nArt,4,twelfthnight,1602\nnotable,4,twelfthnight,1602\nfar,4,twelfthnight,1602\nmaid,4,twelfthnight,1602\nreport,4,twelfthnight,1602\nnose,4,twelfthnight,1602\nalmost,4,twelfthnight,1602\n'Thou,4,twelfthnight,1602\nremedy,4,twelfthnight,1602\nestate,4,twelfthnight,1602\nLove,4,twelfthnight,1602\nmouth,4,twelfthnight,1602\nLook,4,twelfthnight,1602\nstars,4,twelfthnight,1602\nalready,4,twelfthnight,1602\nbeggar,4,twelfthnight,1602\nI'ld,4,twelfthnight,1602\nlet's,4,twelfthnight,1602\nwoo,4,twelfthnight,1602\nfire,4,twelfthnight,1602\nget,4,twelfthnight,1602\nsake,4,twelfthnight,1602\nthrow,4,twelfthnight,1602\nbreak,4,twelfthnight,1602\nsays,4,twelfthnight,1602\nthird,4,twelfthnight,1602\nbeseech,4,twelfthnight,1602\ncoxcomb,4,twelfthnight,1602\nPriest,4,twelfthnight,1602\ndanger,4,twelfthnight,1602\nserve,4,twelfthnight,1602\ncoming,4,twelfthnight,1602\nhappy,4,twelfthnight,1602\nmarry,4,twelfthnight,1602\nwhat's,4,twelfthnight,1602\nwent,4,twelfthnight,1602\nEven,4,twelfthnight,1602\nMalvolio's,4,twelfthnight,1602\nThat's,4,twelfthnight,1602\ntune,4,twelfthnight,1602\nMary,4,twelfthnight,1602\n'em,4,twelfthnight,1602\nmarried,4,twelfthnight,1602\nanswer'd,4,twelfthnight,1602\ntabour,4,twelfthnight,1602\ncount's,4,twelfthnight,1602\ngives,4,twelfthnight,1602\nwe'll,4,twelfthnight,1602\nback,4,twelfthnight,1602\nseem,4,twelfthnight,1602\ndrunken,4,twelfthnight,1602\nMaria,4,twelfthnight,1602\nreturn,4,twelfthnight,1602\nalas,4,twelfthnight,1602\ntogether,4,twelfthnight,1602\nbade,4,twelfthnight,1602\ngoes,4,twelfthnight,1602\npurpose,4,twelfthnight,1602\nNothing,4,twelfthnight,1602\nservants,4,twelfthnight,1602\nSince,4,twelfthnight,1602\nParson,4,twelfthnight,1602\nlips,4,twelfthnight,1602\nsometimes,4,twelfthnight,1602\nrecompense,4,twelfthnight,1602\nbesides,4,twelfthnight,1602\nlaid,4,twelfthnight,1602\ndog,4,twelfthnight,1602\nfollow,4,twelfthnight,1602\nperchance,4,twelfthnight,1602\ncertain,4,twelfthnight,1602\nflower,4,twelfthnight,1602\nuncivil,4,twelfthnight,1602\nshame,4,twelfthnight,1602\ncommand,4,twelfthnight,1602\nkill,4,twelfthnight,1602\nremembrance,4,twelfthnight,1602\nlack,4,twelfthnight,1602\nperhaps,4,twelfthnight,1602\ndie,4,twelfthnight,1602\nsway,4,twelfthnight,1602\nhorse,5,twelfthnight,1602\nhell,5,twelfthnight,1602\nTell,5,twelfthnight,1602\nunderstand,5,twelfthnight,1602\nunder,5,twelfthnight,1602\nsaved,5,twelfthnight,1602\nhead,5,twelfthnight,1602\npaper,5,twelfthnight,1602\nfurther,5,twelfthnight,1602\nGet,5,twelfthnight,1602\nbound,5,twelfthnight,1602\nlight,5,twelfthnight,1602\n'twas,5,twelfthnight,1602\nFarewell,5,twelfthnight,1602\ncause,5,twelfthnight,1602\noffence,5,twelfthnight,1602\nwrong,5,twelfthnight,1602\nheavens,5,twelfthnight,1602\nThere,5,twelfthnight,1602\ngrow,5,twelfthnight,1602\nheaven,5,twelfthnight,1602\nrest,5,twelfthnight,1602\ncunning,5,twelfthnight,1602\nmean,5,twelfthnight,1602\npay,5,twelfthnight,1602\nquarrel,5,twelfthnight,1602\nhey,5,twelfthnight,1602\nladyship,5,twelfthnight,1602\nproof,5,twelfthnight,1602\nunless,5,twelfthnight,1602\nmeans,5,twelfthnight,1602\nsport,5,twelfthnight,1602\npass,5,twelfthnight,1602\nbehind,5,twelfthnight,1602\ngone,5,twelfthnight,1602\nmadman,5,twelfthnight,1602\nViola,5,twelfthnight,1602\ngate,5,twelfthnight,1602\nair,5,twelfthnight,1602\ncousin,5,twelfthnight,1602\nless,5,twelfthnight,1602\nhard,5,twelfthnight,1602\ndeny,5,twelfthnight,1602\nfour,5,twelfthnight,1602\nforth,5,twelfthnight,1602\nopen,5,twelfthnight,1602\napt,5,twelfthnight,1602\ndishonest,5,twelfthnight,1602\nhaving,5,twelfthnight,1602\nfooling,5,twelfthnight,1602\nbeard,5,twelfthnight,1602\ngarden,5,twelfthnight,1602\nLord,5,twelfthnight,1602\ndream,5,twelfthnight,1602\nsame,5,twelfthnight,1602\ngrave,5,twelfthnight,1602\ndrowned,5,twelfthnight,1602\ntakes,5,twelfthnight,1602\nopposite,5,twelfthnight,1602\ncontempt,5,twelfthnight,1602\nwork,5,twelfthnight,1602\ncompany,5,twelfthnight,1602\nExcellent,5,twelfthnight,1602\nFare,5,twelfthnight,1602\nwilt,5,twelfthnight,1602\nthank,5,twelfthnight,1602\nliver,5,twelfthnight,1602\nuse,5,twelfthnight,1602\nseen,5,twelfthnight,1602\nsouls,5,twelfthnight,1602\nleg,5,twelfthnight,1602\nMistress,5,twelfthnight,1602\near,5,twelfthnight,1602\nwrite,5,twelfthnight,1602\nmakes,5,twelfthnight,1602\nthoughts,5,twelfthnight,1602\nlast,5,twelfthnight,1602\ngull,5,twelfthnight,1602\nSings,5,twelfthnight,1602\nbeauty,5,twelfthnight,1602\nstrange,5,twelfthnight,1602\nspirit,5,twelfthnight,1602\nenemy,5,twelfthnight,1602\nM,6,twelfthnight,1602\nspeech,6,twelfthnight,1602\ndarkness,6,twelfthnight,1602\nWould,6,twelfthnight,1602\npurse,6,twelfthnight,1602\ntown,6,twelfthnight,1602\nmadness,6,twelfthnight,1602\ncame,6,twelfthnight,1602\nNor,6,twelfthnight,1602\nwarrant,6,twelfthnight,1602\nsuit,6,twelfthnight,1602\nwithin,6,twelfthnight,1602\nAttendants,6,twelfthnight,1602\nworse,6,twelfthnight,1602\nservice,6,twelfthnight,1602\nvoice,6,twelfthnight,1602\nThere's,6,twelfthnight,1602\nHold,6,twelfthnight,1602\nmusic,6,twelfthnight,1602\nin't,6,twelfthnight,1602\npleasure,6,twelfthnight,1602\nIV,6,twelfthnight,1602\nbid,6,twelfthnight,1602\nWe,6,twelfthnight,1602\nLike,6,twelfthnight,1602\nsing,6,twelfthnight,1602\nha,6,twelfthnight,1602\nmanner,6,twelfthnight,1602\nMaster,6,twelfthnight,1602\nloves,6,twelfthnight,1602\nink,6,twelfthnight,1602\nhalf,6,twelfthnight,1602\nMore,6,twelfthnight,1602\npraise,6,twelfthnight,1602\npresent,6,twelfthnight,1602\nbosom,6,twelfthnight,1602\nfresh,6,twelfthnight,1602\nye,6,twelfthnight,1602\nHave,6,twelfthnight,1602\noccasion,6,twelfthnight,1602\nnote,6,twelfthnight,1602\nwater,6,twelfthnight,1602\ngentle,6,twelfthnight,1602\nthings,6,twelfthnight,1602\nquickly,6,twelfthnight,1602\nquestion,6,twelfthnight,1602\ndevice,6,twelfthnight,1602\nmany,6,twelfthnight,1602\ncoward,6,twelfthnight,1602\nfree,6,twelfthnight,1602\nopinion,6,twelfthnight,1602\nnear,6,twelfthnight,1602\nring,6,twelfthnight,1602\nbetween,6,twelfthnight,1602\n'Tis,6,twelfthnight,1602\nShall,6,twelfthnight,1602\nrain,6,twelfthnight,1602\nfall,6,twelfthnight,1602\nkinsman,6,twelfthnight,1602\nman's,6,twelfthnight,1602\nthousand,6,twelfthnight,1602\ngiven,6,twelfthnight,1602\nhome,6,twelfthnight,1602\nFool,6,twelfthnight,1602\nstrong,6,twelfthnight,1602\nswear,6,twelfthnight,1602\ncaptain,6,twelfthnight,1602\neither,6,twelfthnight,1602\nwhom,6,twelfthnight,1602\nPray,6,twelfthnight,1602\nsend,6,twelfthnight,1602\nlie,6,twelfthnight,1602\nVALENTINE,6,twelfthnight,1602\nremember,6,twelfthnight,1602\non't,6,twelfthnight,1602\nThy,6,twelfthnight,1602\nDid,6,twelfthnight,1602\ndark,6,twelfthnight,1602\ncatch,6,twelfthnight,1602\ndry,6,twelfthnight,1602\nTake,6,twelfthnight,1602\nhe'll,6,twelfthnight,1602\nshalt,6,twelfthnight,1602\nthe,518,twelfthnight,1602\nc,7,twelfthnight,1602\nfor't,7,twelfthnight,1602\nmistress,7,twelfthnight,1602\nhelp,7,twelfthnight,1602\nthought,7,twelfthnight,1602\nwhile,7,twelfthnight,1602\nlies,7,twelfthnight,1602\nbecome,7,twelfthnight,1602\nsad,7,twelfthnight,1602\nsure,7,twelfthnight,1602\nfull,7,twelfthnight,1602\nfools,7,twelfthnight,1602\nsomething,7,twelfthnight,1602\nagainst,7,twelfthnight,1602\nwalk,7,twelfthnight,1602\nworth,7,twelfthnight,1602\nchurch,7,twelfthnight,1602\nborn,7,twelfthnight,1602\nstay,7,twelfthnight,1602\nFabian,7,twelfthnight,1602\nWhich,7,twelfthnight,1602\nchallenge,7,twelfthnight,1602\nwhose,7,twelfthnight,1602\nOr,7,twelfthnight,1602\npeople,7,twelfthnight,1602\ndegree,7,twelfthnight,1602\nlonger,7,twelfthnight,1602\nOrsino,7,twelfthnight,1602\nlook,7,twelfthnight,1602\nlegs,7,twelfthnight,1602\nlong,7,twelfthnight,1602\nlady's,7,twelfthnight,1602\nthose,7,twelfthnight,1602\nhang,7,twelfthnight,1602\nLady,7,twelfthnight,1602\nFirst,7,twelfthnight,1602\nshow,7,twelfthnight,1602\nrogue,7,twelfthnight,1602\nAre,7,twelfthnight,1602\nright,7,twelfthnight,1602\nHath,7,twelfthnight,1602\nYour,7,twelfthnight,1602\nyours,7,twelfthnight,1602\nfoolish,7,twelfthnight,1602\nThey,7,twelfthnight,1602\nCount,7,twelfthnight,1602\nThen,7,twelfthnight,1602\nonce,7,twelfthnight,1602\nthine,7,twelfthnight,1602\nstand,7,twelfthnight,1602\ncount,7,twelfthnight,1602\nfortune,7,twelfthnight,1602\nfolly,7,twelfthnight,1602\nis't,7,twelfthnight,1602\ntroth,7,twelfthnight,1602\nsent,7,twelfthnight,1602\nmaster's,7,twelfthnight,1602\nlate,7,twelfthnight,1602\ngartered,7,twelfthnight,1602\ntold,8,twelfthnight,1602\ntook,8,twelfthnight,1602\nOrsino's,8,twelfthnight,1602\nfriends,8,twelfthnight,1602\ncare,8,twelfthnight,1602\nyourself,8,twelfthnight,1602\nyears,8,twelfthnight,1602\nJove,8,twelfthnight,1602\nanother,8,twelfthnight,1602\nhonour,8,twelfthnight,1602\nsword,8,twelfthnight,1602\nfriend,8,twelfthnight,1602\nIII,8,twelfthnight,1602\nAn,8,twelfthnight,1602\nbest,8,twelfthnight,1602\ndown,8,twelfthnight,1602\ntongue,8,twelfthnight,1602\npains,8,twelfthnight,1602\nservant,8,twelfthnight,1602\nstockings,8,twelfthnight,1602\nthyself,8,twelfthnight,1602\nthat's,8,twelfthnight,1602\nvalour,8,twelfthnight,1602\nmoney,8,twelfthnight,1602\nass,8,twelfthnight,1602\nThan,8,twelfthnight,1602\nknave,8,twelfthnight,1602\nend,8,twelfthnight,1602\nbloody,8,twelfthnight,1602\nwho,8,twelfthnight,1602\noft,8,twelfthnight,1602\nmorrow,8,twelfthnight,1602\npassion,8,twelfthnight,1602\nhour,8,twelfthnight,1602\nWhen,8,twelfthnight,1602\ngreatness,8,twelfthnight,1602\ncross,8,twelfthnight,1602\nhimself,8,twelfthnight,1602\nfortunes,8,twelfthnight,1602\nAlas,9,twelfthnight,1602\npray,9,twelfthnight,1602\nsong,9,twelfthnight,1602\nwords,9,twelfthnight,1602\nNot,9,twelfthnight,1602\ndeath,9,twelfthnight,1602\nabout,9,twelfthnight,1602\nOLIVIA's,9,twelfthnight,1602\nwise,9,twelfthnight,1602\nelse,9,twelfthnight,1602\nWhat's,9,twelfthnight,1602\nBe,9,twelfthnight,1602\nII,9,twelfthnight,1602\nIs,9,twelfthnight,1602\nprove,9,twelfthnight,1602\nblood,9,twelfthnight,1602\nSebastian,9,twelfthnight,1602\nnoble,9,twelfthnight,1602\nYet,9,twelfthnight,1602\nplace,9,twelfthnight,1602\npart,9,twelfthnight,1602\nstate,9,twelfthnight,1602\noff,9,twelfthnight,1602\nbelieve,9,twelfthnight,1602\nmaster,9,twelfthnight,1602\nhither,9,twelfthnight,1602\npoor,9,twelfthnight,1602\nfirst,9,twelfthnight,1602\nMarry,9,twelfthnight,1602\nfather,9,twelfthnight,1602\nwithout,9,twelfthnight,1602\ndraw,10,twelfthnight,1602\nsaw,10,twelfthnight,1602\nGive,10,twelfthnight,1602\nread,10,twelfthnight,1602\nfear,10,twelfthnight,1602\nboth,10,twelfthnight,1602\ndesire,10,twelfthnight,1602\nplay,10,twelfthnight,1602\nsaid,10,twelfthnight,1602\nexcellent,10,twelfthnight,1602\nfavour,10,twelfthnight,1602\nbear,10,twelfthnight,1602\nMadam,10,twelfthnight,1602\nmadonna,10,twelfthnight,1602\nyoung,10,twelfthnight,1602\nAntonio,10,twelfthnight,1602\nheard,10,twelfthnight,1602\ntill,10,twelfthnight,1602\nOfficer,10,twelfthnight,1602\nhope,10,twelfthnight,1602\nyellow,10,twelfthnight,1602\nalone,10,twelfthnight,1602\nsister,10,twelfthnight,1602\nbeing,10,twelfthnight,1602\nlive,10,twelfthnight,1602\nhurt,10,twelfthnight,1602\nkind,10,twelfthnight,1602\nother,10,twelfthnight,1602\nWill,11,twelfthnight,1602\nrather,11,twelfthnight,1602\ndrink,11,twelfthnight,1602\nset,11,twelfthnight,1602\nsea,11,twelfthnight,1602\nbring,11,twelfthnight,1602\nwits,11,twelfthnight,1602\nboy,11,twelfthnight,1602\nsmile,11,twelfthnight,1602\nsince,11,twelfthnight,1602\ndost,11,twelfthnight,1602\nMost,11,twelfthnight,1602\neye,11,twelfthnight,1602\nThou,11,twelfthnight,1602\nmind,11,twelfthnight,1602\nstill,11,twelfthnight,1602\nface,11,twelfthnight,1602\nthree,11,twelfthnight,1602\neven,11,twelfthnight,1602\nprithee,11,twelfthnight,1602\neyes,11,twelfthnight,1602\nmen,11,twelfthnight,1602\nnature,11,twelfthnight,1602\nwoman,11,twelfthnight,1602\nworld,12,twelfthnight,1602\nCURIO,12,twelfthnight,1602\nOf,12,twelfthnight,1602\nbed,12,twelfthnight,1602\ndoth,12,twelfthnight,1602\nho,12,twelfthnight,1602\nlittle,12,twelfthnight,1602\nhast,12,twelfthnight,1602\nthing,12,twelfthnight,1602\nwhy,12,twelfthnight,1602\nWell,12,twelfthnight,1602\nown,12,twelfthnight,1602\nold,12,twelfthnight,1602\nplease,12,twelfthnight,1602\nword,12,twelfthnight,1602\nIllyria,12,twelfthnight,1602\nanswer,13,twelfthnight,1602\nevery,13,twelfthnight,1602\nbrother,13,twelfthnight,1602\nhear,13,twelfthnight,1602\nenough,13,twelfthnight,1602\nafter,13,twelfthnight,1602\nDo,13,twelfthnight,1602\nIt,13,twelfthnight,1602\nnight,13,twelfthnight,1602\nSo,13,twelfthnight,1602\nReads,13,twelfthnight,1602\nmade,13,twelfthnight,1602\nnone,13,twelfthnight,1602\never,13,twelfthnight,1602\nfind,13,twelfthnight,1602\nCaptain,13,twelfthnight,1602\nWhere,13,twelfthnight,1602\ncall,14,twelfthnight,1602\nWho,14,twelfthnight,1602\nGo,14,twelfthnight,1602\nRe,14,twelfthnight,1602\nGod,14,twelfthnight,1602\ndevil,14,twelfthnight,1602\nShe,14,twelfthnight,1602\nthere's,14,twelfthnight,1602\nwit,14,twelfthnight,1602\nfair,14,twelfthnight,1602\nAndrew,14,twelfthnight,1602\nNow,15,twelfthnight,1602\nname,15,twelfthnight,1602\nBy,15,twelfthnight,1602\ntherefore,15,twelfthnight,1602\ntheir,15,twelfthnight,1602\ndear,15,twelfthnight,1602\nmyself,15,twelfthnight,1602\nthus,15,twelfthnight,1602\nleave,15,twelfthnight,1602\nOlivia,15,twelfthnight,1602\ntwo,15,twelfthnight,1602\ncannot,15,twelfthnight,1602\nsoul,16,twelfthnight,1602\nnothing,16,twelfthnight,1602\nbeen,16,twelfthnight,1602\nus,16,twelfthnight,1602\nup,16,twelfthnight,1602\nkeep,16,twelfthnight,1602\nTopas,16,twelfthnight,1602\nindeed,16,twelfthnight,1602\nwhere,16,twelfthnight,1602\nnor,16,twelfthnight,1602\nbefore,16,twelfthnight,1602\ncould,16,twelfthnight,1602\nway,16,twelfthnight,1602\nday,16,twelfthnight,1602\nreason,16,twelfthnight,1602\nLet,16,twelfthnight,1602\nhold,16,twelfthnight,1602\nwhich,17,twelfthnight,1602\nlife,17,twelfthnight,1602\nfellow,17,twelfthnight,1602\nHere,17,twelfthnight,1602\nmatter,17,twelfthnight,1602\ni',17,twelfthnight,1602\ndone,17,twelfthnight,1602\nfaith,17,twelfthnight,1602\ninto,17,twelfthnight,1602\nniece,17,twelfthnight,1602\nSIR,273,twelfthnight,1602\nNay,18,twelfthnight,1602\nbetter,18,twelfthnight,1602\nhe's,18,twelfthnight,1602\nAs,18,twelfthnight,1602\nenter,18,twelfthnight,1602\nACT,18,twelfthnight,1602\nCesario,18,twelfthnight,1602\nsweet,18,twelfthnight,1602\nNIGHT,19,twelfthnight,1602\nhas,19,twelfthnight,1602\no',19,twelfthnight,1602\nTWELFTH,19,twelfthnight,1602\nagain,19,twelfthnight,1602\ntrue,19,twelfthnight,1602\nSCENE,19,twelfthnight,1602\naway,20,twelfthnight,1602\nWith,20,twelfthnight,1602\nletter,20,twelfthnight,1602\ngentleman,20,twelfthnight,1602\nGood,21,twelfthnight,1602\nart,21,twelfthnight,1602\nyouth,21,twelfthnight,1602\nThis,21,twelfthnight,1602\nmine,21,twelfthnight,1602\ntake,21,twelfthnight,1602\nmadam,21,twelfthnight,1602\nmight,21,twelfthnight,1602\nExeunt,22,twelfthnight,1602\nput,22,twelfthnight,1602\ndoes,22,twelfthnight,1602\nmost,22,twelfthnight,1602\nthough,22,twelfthnight,1602\nknight,22,twelfthnight,1602\nmad,22,twelfthnight,1602\npeace,23,twelfthnight,1602\nthese,23,twelfthnight,1602\ntell,23,twelfthnight,1602\nAy,23,twelfthnight,1602\nIn,23,twelfthnight,1602\nspeak,23,twelfthnight,1602\ncomes,23,twelfthnight,1602\nCome,24,twelfthnight,1602\nNo,24,twelfthnight,1602\nour,24,twelfthnight,1602\ntoo,24,twelfthnight,1602\nthey,25,twelfthnight,1602\nthem,25,twelfthnight,1602\ntime,25,twelfthnight,1602\ngreat,25,twelfthnight,1602\nwhen,25,twelfthnight,1602\nHe,26,twelfthnight,1602\nshould,26,twelfthnight,1602\nheart,26,twelfthnight,1602\nnever,27,twelfthnight,1602\n'tis,27,twelfthnight,1602\nYou,27,twelfthnight,1602\nHow,27,twelfthnight,1602\nany,28,twelfthnight,1602\nmust,29,twelfthnight,1602\ngive,29,twelfthnight,1602\nhand,29,twelfthnight,1602\nhath,29,twelfthnight,1602\nMalvolio,29,twelfthnight,1602\nFor,30,twelfthnight,1602\nyet,30,twelfthnight,1602\nhouse,30,twelfthnight,1602\nThe,30,twelfthnight,1602\nupon,31,twelfthnight,1602\nhad,31,twelfthnight,1602\nWhy,32,twelfthnight,1602\nlord,32,twelfthnight,1602\nhow,32,twelfthnight,1602\nANTONIO,32,twelfthnight,1602\nhere,33,twelfthnight,1602\nthen,33,twelfthnight,1602\nsuch,33,twelfthnight,1602\nthink,33,twelfthnight,1602\nout,33,twelfthnight,1602\nwere,33,twelfthnight,1602\ngo,34,twelfthnight,1602\nfrom,34,twelfthnight,1602\nmuch,35,twelfthnight,1602\nToby,35,twelfthnight,1602\nmay,35,twelfthnight,1602\nlike,36,twelfthnight,1602\nMy,36,twelfthnight,1602\nSEBASTIAN,37,twelfthnight,1602\nExit,37,twelfthnight,1602\nthere,39,twelfthnight,1602\nIf,39,twelfthnight,1602\ncan,39,twelfthnight,1602\nvery,39,twelfthnight,1602\ndid,39,twelfthnight,1602\nwas,40,twelfthnight,1602\nsee,41,twelfthnight,1602\nsome,42,twelfthnight,1602\nthan,42,twelfthnight,1602\nTo,42,twelfthnight,1602\nor,43,twelfthnight,1602\nwe,43,twelfthnight,1602\nsay,44,twelfthnight,1602\nmake,45,twelfthnight,1602\nmy,302,twelfthnight,1602\nA,47,twelfthnight,1602\nall,47,twelfthnight,1602\nan,47,twelfthnight,1602\nEnter,47,twelfthnight,1602\ncome,47,twelfthnight,1602\nknow,49,twelfthnight,1602\nfool,52,twelfthnight,1602\nmore,53,twelfthnight,1602\nO,54,twelfthnight,1602\nBut,54,twelfthnight,1602\nwell,54,twelfthnight,1602\nThat,55,twelfthnight,1602\nlet,55,twelfthnight,1602\nnow,56,twelfthnight,1602\nI'll,56,twelfthnight,1602\none,56,twelfthnight,1602\nat,57,twelfthnight,1602\nwould,59,twelfthnight,1602\nshe,60,twelfthnight,1602\ngood,60,twelfthnight,1602\nWhat,61,twelfthnight,1602\n',63,twelfthnight,1602\nif,63,twelfthnight,1602\nSir,63,twelfthnight,1602\non,64,twelfthnight,1602\nORSINO,65,twelfthnight,1602\nlady,65,twelfthnight,1602\nwhat,66,twelfthnight,1602\nFABIAN,67,twelfthnight,1602\nDUKE,67,twelfthnight,1602\nman,67,twelfthnight,1602\nshall,68,twelfthnight,1602\nby,70,twelfthnight,1602\nlove,77,twelfthnight,1602\nare,77,twelfthnight,1602\nMARIA,81,twelfthnight,1602\nam,85,twelfthnight,1602\nAnd,87,twelfthnight,1602\nI,600,twelfthnight,1602\nthee,90,twelfthnight,1602\nher,95,twelfthnight,1602\nMALVOLIO,98,twelfthnight,1602\nno,98,twelfthnight,1602\ndo,100,twelfthnight,1602\nthy,100,twelfthnight,1602\nhis,103,twelfthnight,1602\nANDREW,104,twelfthnight,1602\nbut,110,twelfthnight,1602\na,369,twelfthnight,1602\nso,115,twelfthnight,1602\nthou,116,twelfthnight,1602\nto,372,twelfthnight,1602\nsir,117,twelfthnight,1602\nClown,117,twelfthnight,1602\nOLIVIA,128,twelfthnight,1602\nhe,128,twelfthnight,1602\nas,129,twelfthnight,1602\nhave,132,twelfthnight,1602\nVIOLA,135,twelfthnight,1602\nof,400,twelfthnight,1602\nwill,145,twelfthnight,1602\nthis,151,twelfthnight,1602\nwith,156,twelfthnight,1602\nfor,157,twelfthnight,1602\nyou,416,twelfthnight,1602\nyour,165,twelfthnight,1602\nBELCH,170,twelfthnight,1602\nTOBY,170,twelfthnight,1602\nand,436,twelfthnight,1602\nit,182,twelfthnight,1602\nbe,194,twelfthnight,1602\nhim,197,twelfthnight,1602\nthat,218,twelfthnight,1602\nnot,219,twelfthnight,1602\nis,232,twelfthnight,1602\nin,236,twelfthnight,1602\nme,241,twelfthnight,1602\nbrave,1,kinghenryviii,1612\nattended,1,kinghenryviii,1612\nholding,1,kinghenryviii,1612\naugment,1,kinghenryviii,1612\nAlencon,1,kinghenryviii,1612\nevent,1,kinghenryviii,1612\nCassado,1,kinghenryviii,1612\narchbishop's,1,kinghenryviii,1612\ntimber,1,kinghenryviii,1612\nAsher,1,kinghenryviii,1612\nregard,1,kinghenryviii,1612\nquality,1,kinghenryviii,1612\ntomb,1,kinghenryviii,1612\nsped,1,kinghenryviii,1612\nignorance,1,kinghenryviii,1612\nwomanish,1,kinghenryviii,1612\nWinchester's,1,kinghenryviii,1612\ndrawing,1,kinghenryviii,1612\nmeek,1,kinghenryviii,1612\nguard,1,kinghenryviii,1612\nStands,1,kinghenryviii,1612\nChamber,1,kinghenryviii,1612\nProve,1,kinghenryviii,1612\nmuster,1,kinghenryviii,1612\nhappier,1,kinghenryviii,1612\nabsolved,1,kinghenryviii,1612\nm,1,kinghenryviii,1612\nsmiles,1,kinghenryviii,1612\nred,1,kinghenryviii,1612\ngallants,1,kinghenryviii,1612\nLonger,1,kinghenryviii,1612\nsimony,1,kinghenryviii,1612\npestilence,1,kinghenryviii,1612\nProud,1,kinghenryviii,1612\ncalumnious,1,kinghenryviii,1612\nextremity,1,kinghenryviii,1612\nplaceth,1,kinghenryviii,1612\ndrop,1,kinghenryviii,1612\ntool,1,kinghenryviii,1612\nembalm,1,kinghenryviii,1612\nderived,1,kinghenryviii,1612\nguilt,1,kinghenryviii,1612\ndozens,1,kinghenryviii,1612\ntops,1,kinghenryviii,1612\nbelongs,1,kinghenryviii,1612\nleisure,1,kinghenryviii,1612\ndouble,1,kinghenryviii,1612\nnecessities,1,kinghenryviii,1612\ntremble,1,kinghenryviii,1612\nHeat,1,kinghenryviii,1612\nbrass,1,kinghenryviii,1612\nspan,1,kinghenryviii,1612\ncoasts,1,kinghenryviii,1612\nhorse,1,kinghenryviii,1612\ndisturb,1,kinghenryviii,1612\nhaberdasher's,1,kinghenryviii,1612\nStay'd,1,kinghenryviii,1612\nvizards,1,kinghenryviii,1612\nlament,1,kinghenryviii,1612\nhinder,1,kinghenryviii,1612\ntraitor's,1,kinghenryviii,1612\ndives,1,kinghenryviii,1612\nDigest,1,kinghenryviii,1612\ntravail,1,kinghenryviii,1612\nHearts,1,kinghenryviii,1612\nNew,1,kinghenryviii,1612\ntorn,1,kinghenryviii,1612\nperuse,1,kinghenryviii,1612\nreaches,1,kinghenryviii,1612\nfollies,1,kinghenryviii,1612\nadvantage,1,kinghenryviii,1612\nran,1,kinghenryviii,1612\nFit,1,kinghenryviii,1612\nbrown,1,kinghenryviii,1612\nadding,1,kinghenryviii,1612\nWhether,1,kinghenryviii,1612\nhonourably,1,kinghenryviii,1612\nsuspicious,1,kinghenryviii,1612\nSprings,1,kinghenryviii,1612\nimplore,1,kinghenryviii,1612\nhasty,1,kinghenryviii,1612\ncannons,1,kinghenryviii,1612\ndagger,1,kinghenryviii,1612\nAffected,1,kinghenryviii,1612\nvillage,1,kinghenryviii,1612\nbeadles,1,kinghenryviii,1612\npurge,1,kinghenryviii,1612\nelement,1,kinghenryviii,1612\nelect,1,kinghenryviii,1612\nsupport,1,kinghenryviii,1612\nobstinate,1,kinghenryviii,1612\noutrun,1,kinghenryviii,1612\noffended,1,kinghenryviii,1612\no'ertake,1,kinghenryviii,1612\nSpeedily,1,kinghenryviii,1612\nshoulders,1,kinghenryviii,1612\noffender,1,kinghenryviii,1612\npublicly,1,kinghenryviii,1612\nchiding,1,kinghenryviii,1612\nBear,1,kinghenryviii,1612\nday's,1,kinghenryviii,1612\nroar,1,kinghenryviii,1612\nnote's,1,kinghenryviii,1612\nendless,1,kinghenryviii,1612\njot,1,kinghenryviii,1612\nconstruction,1,kinghenryviii,1612\ndiscourser,1,kinghenryviii,1612\ncommotion,1,kinghenryviii,1612\nrecited,1,kinghenryviii,1612\nirresolute,1,kinghenryviii,1612\nsleeps,1,kinghenryviii,1612\nBelong,1,kinghenryviii,1612\nwhereupon,1,kinghenryviii,1612\nmoiety,1,kinghenryviii,1612\ndespised,1,kinghenryviii,1612\nfreed,1,kinghenryviii,1612\nstrengthen,1,kinghenryviii,1612\nwife',1,kinghenryviii,1612\nshunning,1,kinghenryviii,1612\nentered,1,kinghenryviii,1612\nflung,1,kinghenryviii,1612\ninnumerable,1,kinghenryviii,1612\neight,1,kinghenryviii,1612\nmule,1,kinghenryviii,1612\nDefacers,1,kinghenryviii,1612\nmiss'd,1,kinghenryviii,1612\nTell,1,kinghenryviii,1612\ndarkness,1,kinghenryviii,1612\npainted,1,kinghenryviii,1612\nchaplains,1,kinghenryviii,1612\nclothes,1,kinghenryviii,1612\nthorny,1,kinghenryviii,1612\nBecame,1,kinghenryviii,1612\ngroan,1,kinghenryviii,1612\nSaving,1,kinghenryviii,1612\nproceedings,1,kinghenryviii,1612\ndropp'd,1,kinghenryviii,1612\nviolent,1,kinghenryviii,1612\nPROLOGUE,1,kinghenryviii,1612\ncelestial,1,kinghenryviii,1612\nbewailing,1,kinghenryviii,1612\nvale,1,kinghenryviii,1612\ndisease,1,kinghenryviii,1612\nprosperous,1,kinghenryviii,1612\nZeal,1,kinghenryviii,1612\ntoil,1,kinghenryviii,1612\nBevis,1,kinghenryviii,1612\nmonsieurs,1,kinghenryviii,1612\nbroom,1,kinghenryviii,1612\nravish'd,1,kinghenryviii,1612\ngrubb'd,1,kinghenryviii,1612\nBeshrew,1,kinghenryviii,1612\nlowly,1,kinghenryviii,1612\nFar,1,kinghenryviii,1612\nunmatch'd,1,kinghenryviii,1612\nnaked,1,kinghenryviii,1612\nWife,1,kinghenryviii,1612\nhanged,1,kinghenryviii,1612\nremark'd,1,kinghenryviii,1612\nadvance,1,kinghenryviii,1612\nslander,1,kinghenryviii,1612\nfeeds,1,kinghenryviii,1612\nallowance,1,kinghenryviii,1612\nCarnarvonshire,1,kinghenryviii,1612\nmaintain,1,kinghenryviii,1612\nits,1,kinghenryviii,1612\nstretches,1,kinghenryviii,1612\nteachers,1,kinghenryviii,1612\nstrangled,1,kinghenryviii,1612\nsigns,1,kinghenryviii,1612\nsour,1,kinghenryviii,1612\nhorrid,1,kinghenryviii,1612\nlaugh,1,kinghenryviii,1612\njaded,1,kinghenryviii,1612\nDaring,1,kinghenryviii,1612\nworms,1,kinghenryviii,1612\ncalls,1,kinghenryviii,1612\nVerily,1,kinghenryviii,1612\nterrible,1,kinghenryviii,1612\nmurmurers,1,kinghenryviii,1612\nloaden,1,kinghenryviii,1612\nlively,1,kinghenryviii,1612\niron,1,kinghenryviii,1612\nlewdness,1,kinghenryviii,1612\nPaid,1,kinghenryviii,1612\nstamp'd,1,kinghenryviii,1612\nconsulting,1,kinghenryviii,1612\ntenements,1,kinghenryviii,1612\n'Ego,1,kinghenryviii,1612\nviva,1,kinghenryviii,1612\nworks,1,kinghenryviii,1612\nabound,1,kinghenryviii,1612\nInstall'd,1,kinghenryviii,1612\nwounded,1,kinghenryviii,1612\ncongee,1,kinghenryviii,1612\ncheeks,1,kinghenryviii,1612\nPERSONAE,1,kinghenryviii,1612\nconsidering,1,kinghenryviii,1612\nIncensed,1,kinghenryviii,1612\nproclaim,1,kinghenryviii,1612\nmarshal,1,kinghenryviii,1612\nrumor,1,kinghenryviii,1612\nmingled,1,kinghenryviii,1612\ncrutch,1,kinghenryviii,1612\nrub,1,kinghenryviii,1612\nconvented,1,kinghenryviii,1612\ncase,1,kinghenryviii,1612\nearly,1,kinghenryviii,1612\nutter'd,1,kinghenryviii,1612\nsoftly,1,kinghenryviii,1612\nattempt,1,kinghenryviii,1612\nsong,1,kinghenryviii,1612\ngarment,1,kinghenryviii,1612\nundoubtedly,1,kinghenryviii,1612\nPope,1,kinghenryviii,1612\nspared,1,kinghenryviii,1612\nunrecounted,1,kinghenryviii,1612\nFairly,1,kinghenryviii,1612\nOver,1,kinghenryviii,1612\ndelivered,1,kinghenryviii,1612\nreign,1,kinghenryviii,1612\norder'd,1,kinghenryviii,1612\npersonally,1,kinghenryviii,1612\ndisdain,1,kinghenryviii,1612\nKinsmen,1,kinghenryviii,1612\ngiant,1,kinghenryviii,1612\nland's,1,kinghenryviii,1612\nbladders,1,kinghenryviii,1612\nhulling,1,kinghenryviii,1612\nfeather,1,kinghenryviii,1612\nGuynes,1,kinghenryviii,1612\ndrive,1,kinghenryviii,1612\nthousands,1,kinghenryviii,1612\nleaning,1,kinghenryviii,1612\nmatters,1,kinghenryviii,1612\nsat,1,kinghenryviii,1612\nExcuse,1,kinghenryviii,1612\ncombination,1,kinghenryviii,1612\nfounts,1,kinghenryviii,1612\nranking,1,kinghenryviii,1612\nspice,1,kinghenryviii,1612\nline,1,kinghenryviii,1612\ndemure,1,kinghenryviii,1612\ncountesses,1,kinghenryviii,1612\nopposed,1,kinghenryviii,1612\nshrouds,1,kinghenryviii,1612\nwilling'st,1,kinghenryviii,1612\ncorner,1,kinghenryviii,1612\noutstare,1,kinghenryviii,1612\nOrleans,1,kinghenryviii,1612\npersuading,1,kinghenryviii,1612\nincensed,1,kinghenryviii,1612\nmind's,1,kinghenryviii,1612\nGoodness,1,kinghenryviii,1612\nsuburbs,1,kinghenryviii,1612\nPerforce,1,kinghenryviii,1612\nsennet,1,kinghenryviii,1612\nboldness,1,kinghenryviii,1612\nsucceeding,1,kinghenryviii,1612\nMercy,1,kinghenryviii,1612\nenthroned,1,kinghenryviii,1612\ntrumpet,1,kinghenryviii,1612\nsectary,1,kinghenryviii,1612\nconcerns,1,kinghenryviii,1612\naction's,1,kinghenryviii,1612\ncamlet,1,kinghenryviii,1612\ntoward,1,kinghenryviii,1612\nrevels,1,kinghenryviii,1612\nsparks,1,kinghenryviii,1612\ndrew,1,kinghenryviii,1612\nsloth,1,kinghenryviii,1612\nrewarded,1,kinghenryviii,1612\nEly,1,kinghenryviii,1612\nlift,1,kinghenryviii,1612\npolicy,1,kinghenryviii,1612\ntown,1,kinghenryviii,1612\nsoil,1,kinghenryviii,1612\nMeanwhile,1,kinghenryviii,1612\ncalm,1,kinghenryviii,1612\nbreaks,1,kinghenryviii,1612\nstifled,1,kinghenryviii,1612\nChalks,1,kinghenryviii,1612\ndaring'st,1,kinghenryviii,1612\nglass,1,kinghenryviii,1612\nsixteen,1,kinghenryviii,1612\nbroiling,1,kinghenryviii,1612\nmarshalship,1,kinghenryviii,1612\nnoble's,1,kinghenryviii,1612\ngrievance,1,kinghenryviii,1612\nteach,1,kinghenryviii,1612\nsoft,1,kinghenryviii,1612\nMethinks,1,kinghenryviii,1612\nriches,1,kinghenryviii,1612\nBeside,1,kinghenryviii,1612\nbenefits,1,kinghenryviii,1612\nstuffs,1,kinghenryviii,1612\nvisit,1,kinghenryviii,1612\nlessen,1,kinghenryviii,1612\nlordships',1,kinghenryviii,1612\namity,1,kinghenryviii,1612\nbecoming,1,kinghenryviii,1612\ncontribution,1,kinghenryviii,1612\nbegan,1,kinghenryviii,1612\npartner,1,kinghenryviii,1612\nperjured,1,kinghenryviii,1612\nBULLEN,1,kinghenryviii,1612\ndiscovers,1,kinghenryviii,1612\nunshaken,1,kinghenryviii,1612\nblesses,1,kinghenryviii,1612\nmounts,1,kinghenryviii,1612\nmadams,1,kinghenryviii,1612\nWin,1,kinghenryviii,1612\ndecent,1,kinghenryviii,1612\nshe's,1,kinghenryviii,1612\nseeking,1,kinghenryviii,1612\nexecution,1,kinghenryviii,1612\nhereafter,1,kinghenryviii,1612\nslightly,1,kinghenryviii,1612\nNewly,1,kinghenryviii,1612\nplains,1,kinghenryviii,1612\nwherewithal,1,kinghenryviii,1612\nattainder,1,kinghenryviii,1612\nbombards,1,kinghenryviii,1612\nclergy,1,kinghenryviii,1612\nsung,1,kinghenryviii,1612\nthroned,1,kinghenryviii,1612\nwhatsoever,1,kinghenryviii,1612\nspeeches,1,kinghenryviii,1612\nmincing,1,kinghenryviii,1612\nGet,1,kinghenryviii,1612\nfaithfully,1,kinghenryviii,1612\nconceive,1,kinghenryviii,1612\nintercepted,1,kinghenryviii,1612\ntalker,1,kinghenryviii,1612\nconception,1,kinghenryviii,1612\nwhoresons,1,kinghenryviii,1612\nSparing,1,kinghenryviii,1612\nimpossible,1,kinghenryviii,1612\naged,1,kinghenryviii,1612\nfriended,1,kinghenryviii,1612\naccumulated,1,kinghenryviii,1612\ninformations,1,kinghenryviii,1612\nclerks,1,kinghenryviii,1612\ntenants,1,kinghenryviii,1612\nnoised,1,kinghenryviii,1612\nagent,1,kinghenryviii,1612\ntooth,1,kinghenryviii,1612\nbroach,1,kinghenryviii,1612\nPertaining,1,kinghenryviii,1612\ncoarse,1,kinghenryviii,1612\nsaying,1,kinghenryviii,1612\nadvertise,1,kinghenryviii,1612\nmonarch,1,kinghenryviii,1612\nfavourer,1,kinghenryviii,1612\nObserve,1,kinghenryviii,1612\nseals,1,kinghenryviii,1612\ncoronets,1,kinghenryviii,1612\ncarrying,1,kinghenryviii,1612\ncatching,1,kinghenryviii,1612\nchronicles,1,kinghenryviii,1612\ncommunication,1,kinghenryviii,1612\nsociety,1,kinghenryviii,1612\nripening,1,kinghenryviii,1612\nchronicler,1,kinghenryviii,1612\nDeserves,1,kinghenryviii,1612\nkneel'd,1,kinghenryviii,1612\naudit,1,kinghenryviii,1612\nchurchmen's,1,kinghenryviii,1612\nlanded,1,kinghenryviii,1612\nbitterly,1,kinghenryviii,1612\nwedding,1,kinghenryviii,1612\nGoing,1,kinghenryviii,1612\nillusions,1,kinghenryviii,1612\nlaying,1,kinghenryviii,1612\ndisposed,1,kinghenryviii,1612\nancestry,1,kinghenryviii,1612\npardons,1,kinghenryviii,1612\nlove's,1,kinghenryviii,1612\npremises,1,kinghenryviii,1612\nembrace,1,kinghenryviii,1612\nearnestly,1,kinghenryviii,1612\nPoultney,1,kinghenryviii,1612\nHimself,1,kinghenryviii,1612\nsow,1,kinghenryviii,1612\nchurch,1,kinghenryviii,1612\ncharging,1,kinghenryviii,1612\nViscount,1,kinghenryviii,1612\nsummons,1,kinghenryviii,1612\nscorn'd,1,kinghenryviii,1612\nconfident,1,kinghenryviii,1612\nchildren's,1,kinghenryviii,1612\nbringing,1,kinghenryviii,1612\nplenty,1,kinghenryviii,1612\nmantle,1,kinghenryviii,1612\nnips,1,kinghenryviii,1612\nlooking,1,kinghenryviii,1612\n'O,1,kinghenryviii,1612\nenroll'd,1,kinghenryviii,1612\n'T,1,kinghenryviii,1612\nmakings,1,kinghenryviii,1612\nkindle,1,kinghenryviii,1612\nusual,1,kinghenryviii,1612\nEmploy'd,1,kinghenryviii,1612\nweakly,1,kinghenryviii,1612\nattends,1,kinghenryviii,1612\njuggle,1,kinghenryviii,1612\nlivers,1,kinghenryviii,1612\nclothiers,1,kinghenryviii,1612\nsued,1,kinghenryviii,1612\nforthwith,1,kinghenryviii,1612\ndesign,1,kinghenryviii,1612\nacquainted,1,kinghenryviii,1612\ndisgrace,1,kinghenryviii,1612\npermit,1,kinghenryviii,1612\nstudy,1,kinghenryviii,1612\nwages,1,kinghenryviii,1612\ndeserts,1,kinghenryviii,1612\narchbishopric,1,kinghenryviii,1612\npitiful,1,kinghenryviii,1612\nlevel,1,kinghenryviii,1612\nparish,1,kinghenryviii,1612\nfaulty,1,kinghenryviii,1612\nDoctor,1,kinghenryviii,1612\ngripes,1,kinghenryviii,1612\nexaminations,1,kinghenryviii,1612\npieces,1,kinghenryviii,1612\nmother,1,kinghenryviii,1612\nthin,1,kinghenryviii,1612\nplay'd,1,kinghenryviii,1612\nWilliam,1,kinghenryviii,1612\nillustrated,1,kinghenryviii,1612\nbecomes,1,kinghenryviii,1612\nconjunction,1,kinghenryviii,1612\nToledo,1,kinghenryviii,1612\ncombustion,1,kinghenryviii,1612\nfoulness,1,kinghenryviii,1612\naffect,1,kinghenryviii,1612\nchamber's,1,kinghenryviii,1612\npoverty,1,kinghenryviii,1612\ncarp'd,1,kinghenryviii,1612\notherwhere,1,kinghenryviii,1612\nAuthority,1,kinghenryviii,1612\nindifferent,1,kinghenryviii,1612\napples,1,kinghenryviii,1612\nourselves,1,kinghenryviii,1612\nesteem,1,kinghenryviii,1612\noffence,1,kinghenryviii,1612\nsharp'st,1,kinghenryviii,1612\nmerit,1,kinghenryviii,1612\nsly,1,kinghenryviii,1612\nwedged,1,kinghenryviii,1612\nerga,1,kinghenryviii,1612\ndigestion,1,kinghenryviii,1612\nguide,1,kinghenryviii,1612\nbreeches,1,kinghenryviii,1612\nrung,1,kinghenryviii,1612\nLearn,1,kinghenryviii,1612\nvanish,1,kinghenryviii,1612\ninspiration,1,kinghenryviii,1612\nItem,1,kinghenryviii,1612\npoints,1,kinghenryviii,1612\nconceit,1,kinghenryviii,1612\nunloosed,1,kinghenryviii,1612\nmonster,1,kinghenryviii,1612\nUnwilling,1,kinghenryviii,1612\nridden,1,kinghenryviii,1612\nafraid,1,kinghenryviii,1612\nGrow,1,kinghenryviii,1612\nBe't,1,kinghenryviii,1612\nguarded,1,kinghenryviii,1612\ndevoutly,1,kinghenryviii,1612\nOfficers,1,kinghenryviii,1612\nled'st,1,kinghenryviii,1612\nbore,1,kinghenryviii,1612\nrepentance,1,kinghenryviii,1612\nmoulded,1,kinghenryviii,1612\ntempting,1,kinghenryviii,1612\nWhereof,1,kinghenryviii,1612\nfigure,1,kinghenryviii,1612\nhabit,1,kinghenryviii,1612\nshilling,1,kinghenryviii,1612\nEqual,1,kinghenryviii,1612\ndirect,1,kinghenryviii,1612\nTurn,1,kinghenryviii,1612\nuncontemn'd,1,kinghenryviii,1612\nabsence,1,kinghenryviii,1612\nreek,1,kinghenryviii,1612\nreel,1,kinghenryviii,1612\nWilling,1,kinghenryviii,1612\nWeigh'd,1,kinghenryviii,1612\nspringhalt,1,kinghenryviii,1612\nbeggarly,1,kinghenryviii,1612\nLanguage,1,kinghenryviii,1612\nexceeding,1,kinghenryviii,1612\nCause,1,kinghenryviii,1612\nWish,1,kinghenryviii,1612\nscold,1,kinghenryviii,1612\nencounter,1,kinghenryviii,1612\nruminate,1,kinghenryviii,1612\nseeks,1,kinghenryviii,1612\nforfeiting,1,kinghenryviii,1612\ncommit,1,kinghenryviii,1612\ncherish,1,kinghenryviii,1612\neldest,1,kinghenryviii,1612\ntennis,1,kinghenryviii,1612\nshowers,1,kinghenryviii,1612\nfruit,1,kinghenryviii,1612\nstump,1,kinghenryviii,1612\nhousehold,1,kinghenryviii,1612\nswiftness,1,kinghenryviii,1612\npearl,1,kinghenryviii,1612\nthence,1,kinghenryviii,1612\nmemories,1,kinghenryviii,1612\nsue,1,kinghenryviii,1612\nmodel,1,kinghenryviii,1612\nfortitude,1,kinghenryviii,1612\nsum,1,kinghenryviii,1612\nmercies,1,kinghenryviii,1612\nvanity,1,kinghenryviii,1612\npoorest,1,kinghenryviii,1612\ncompanion,1,kinghenryviii,1612\nfearful,1,kinghenryviii,1612\nbowl,1,kinghenryviii,1612\nspaniel,1,kinghenryviii,1612\npromise,1,kinghenryviii,1612\npunish,1,kinghenryviii,1612\ninfinite,1,kinghenryviii,1612\nwhoever,1,kinghenryviii,1612\nsaucy,1,kinghenryviii,1612\nblind,1,kinghenryviii,1612\nbrief,1,kinghenryviii,1612\ncostly,1,kinghenryviii,1612\nupon't,1,kinghenryviii,1612\nCapucius,1,kinghenryviii,1612\nputter,1,kinghenryviii,1612\nBetwixt,1,kinghenryviii,1612\nPerceive,1,kinghenryviii,1612\nconceal,1,kinghenryviii,1612\nwhisper,1,kinghenryviii,1612\naim'st,1,kinghenryviii,1612\nweather,1,kinghenryviii,1612\nchoose,1,kinghenryviii,1612\nBestow,1,kinghenryviii,1612\nFly,1,kinghenryviii,1612\nVouchsafe,1,kinghenryviii,1612\nfootboys,1,kinghenryviii,1612\nLatin,1,kinghenryviii,1612\nflesh,1,kinghenryviii,1612\nfrom't,1,kinghenryviii,1612\nshrink,1,kinghenryviii,1612\nconfession's,1,kinghenryviii,1612\nwins,1,kinghenryviii,1612\nbaptism,1,kinghenryviii,1612\nAllegiance,1,kinghenryviii,1612\nrend,1,kinghenryviii,1612\nwand,1,kinghenryviii,1612\ncertes,1,kinghenryviii,1612\nmirth,1,kinghenryviii,1612\nAbound,1,kinghenryviii,1612\nexpressly,1,kinghenryviii,1612\nLawrence,1,kinghenryviii,1612\nsteal,1,kinghenryviii,1612\naccess,1,kinghenryviii,1612\nknow'st,1,kinghenryviii,1612\nEnglishman,1,kinghenryviii,1612\nhates,1,kinghenryviii,1612\naboded,1,kinghenryviii,1612\ndies,1,kinghenryviii,1612\nhated,1,kinghenryviii,1612\nUnfit,1,kinghenryviii,1612\nwitnesses,1,kinghenryviii,1612\nDumb,1,kinghenryviii,1612\ncustom,1,kinghenryviii,1612\nsucceed,1,kinghenryviii,1612\nimperious,1,kinghenryviii,1612\nsooth,1,kinghenryviii,1612\nCommotions,1,kinghenryviii,1612\ndevil's,1,kinghenryviii,1612\nstaying,1,kinghenryviii,1612\nFetch,1,kinghenryviii,1612\nwindow,1,kinghenryviii,1612\nrebellion,1,kinghenryviii,1612\nincense,1,kinghenryviii,1612\nbreeding,1,kinghenryviii,1612\nthroughly,1,kinghenryviii,1612\nbrake,1,kinghenryviii,1612\njoin'd,1,kinghenryviii,1612\ncircumstances,1,kinghenryviii,1612\navow,1,kinghenryviii,1612\nflowing,1,kinghenryviii,1612\nsteep,1,kinghenryviii,1612\nsteel,1,kinghenryviii,1612\nruled,1,kinghenryviii,1612\nsteer,1,kinghenryviii,1612\nbook,1,kinghenryviii,1612\nVaux,1,kinghenryviii,1612\nTraduced,1,kinghenryviii,1612\ncolour,1,kinghenryviii,1612\nverdict,1,kinghenryviii,1612\ndistraction,1,kinghenryviii,1612\nintelligence,1,kinghenryviii,1612\n'cum,1,kinghenryviii,1612\ncirclets,1,kinghenryviii,1612\noffers,1,kinghenryviii,1612\ndeserves,1,kinghenryviii,1612\nfairest,1,kinghenryviii,1612\nconditions,1,kinghenryviii,1612\nvoce,1,kinghenryviii,1612\nplainsong,1,kinghenryviii,1612\nCANTERBURY,1,kinghenryviii,1612\nprivilegio,1,kinghenryviii,1612\nbig,1,kinghenryviii,1612\nbitten,1,kinghenryviii,1612\nmistakes,1,kinghenryviii,1612\nmuzzle,1,kinghenryviii,1612\n'treasonous,1,kinghenryviii,1612\nDrinks,1,kinghenryviii,1612\nchristenings,1,kinghenryviii,1612\npreferr'd,1,kinghenryviii,1612\nmistaken,1,kinghenryviii,1612\nyouths,1,kinghenryviii,1612\ngrievous,1,kinghenryviii,1612\ntraining,1,kinghenryviii,1612\nha',1,kinghenryviii,1612\ntumult,1,kinghenryviii,1612\nI',1,kinghenryviii,1612\nlarder,1,kinghenryviii,1612\nslaves,1,kinghenryviii,1612\ncudgel,1,kinghenryviii,1612\nmerchants',1,kinghenryviii,1612\nhap,1,kinghenryviii,1612\ncommended,1,kinghenryviii,1612\ninducement,1,kinghenryviii,1612\nCertainly,1,kinghenryviii,1612\nbacks,1,kinghenryviii,1612\nsnuff,1,kinghenryviii,1612\noverthrow,1,kinghenryviii,1612\nSweetheart,1,kinghenryviii,1612\neminence,1,kinghenryviii,1612\ncrack,1,kinghenryviii,1612\nfoes,1,kinghenryviii,1612\nHoly,1,kinghenryviii,1612\nhorseback,1,kinghenryviii,1612\nrefuse,1,kinghenryviii,1612\nSends,1,kinghenryviii,1612\nmeasure,1,kinghenryviii,1612\ndelights,1,kinghenryviii,1612\nforesaid,1,kinghenryviii,1612\npromotion,1,kinghenryviii,1612\nlegitimate,1,kinghenryviii,1612\nPossess,1,kinghenryviii,1612\ntwins,1,kinghenryviii,1612\nunsettled,1,kinghenryviii,1612\npat,1,kinghenryviii,1612\nspoil,1,kinghenryviii,1612\ntonight,1,kinghenryviii,1612\nquarrel,1,kinghenryviii,1612\nWalks,1,kinghenryviii,1612\nhang'd,1,kinghenryviii,1612\nmutiny,1,kinghenryviii,1612\nbow,1,kinghenryviii,1612\neternal,1,kinghenryviii,1612\ngovern,1,kinghenryviii,1612\nstrangers,1,kinghenryviii,1612\ndeeds,1,kinghenryviii,1612\nsinge,1,kinghenryviii,1612\nHeap'd,1,kinghenryviii,1612\nunnatural,1,kinghenryviii,1612\nSovereign,1,kinghenryviii,1612\npraemunire,1,kinghenryviii,1612\nunmanly,1,kinghenryviii,1612\npointed,1,kinghenryviii,1612\nhitherto,1,kinghenryviii,1612\nbad,1,kinghenryviii,1612\nprone,1,kinghenryviii,1612\nMe,1,kinghenryviii,1612\ngoodliest,1,kinghenryviii,1612\ninclined,1,kinghenryviii,1612\nrevokement,1,kinghenryviii,1612\nlands,1,kinghenryviii,1612\nSamson,1,kinghenryviii,1612\nproof,1,kinghenryviii,1612\nladyship,1,kinghenryviii,1612\nkings,1,kinghenryviii,1612\ngentleness,1,kinghenryviii,1612\nspeakest,1,kinghenryviii,1612\nstrangest,1,kinghenryviii,1612\nstar,1,kinghenryviii,1612\nvoid,1,kinghenryviii,1612\ndenied,1,kinghenryviii,1612\ndefied,1,kinghenryviii,1612\nbrings,1,kinghenryviii,1612\nSeventh,1,kinghenryviii,1612\nbe',1,kinghenryviii,1612\ntales,1,kinghenryviii,1612\nloyalties,1,kinghenryviii,1612\njudging,1,kinghenryviii,1612\nSpaniard,1,kinghenryviii,1612\nto's,1,kinghenryviii,1612\nas't,1,kinghenryviii,1612\nhid,1,kinghenryviii,1612\ninnocent,1,kinghenryviii,1612\nfinds,1,kinghenryviii,1612\nDenny,1,kinghenryviii,1612\nCornets,1,kinghenryviii,1612\nconceived,1,kinghenryviii,1612\nprophecies,1,kinghenryviii,1612\nremainder,1,kinghenryviii,1612\nmotions,1,kinghenryviii,1612\nenter'd,1,kinghenryviii,1612\nbuzz,1,kinghenryviii,1612\nExceeding,1,kinghenryviii,1612\nHouse,1,kinghenryviii,1612\nrequired,1,kinghenryviii,1612\nretain'd,1,kinghenryviii,1612\nBody,1,kinghenryviii,1612\napprove,1,kinghenryviii,1612\nRefuse,1,kinghenryviii,1612\npensively,1,kinghenryviii,1612\nfines,1,kinghenryviii,1612\nHo,1,kinghenryviii,1612\nrequires,1,kinghenryviii,1612\nnotorious,1,kinghenryviii,1612\nwinnow'd,1,kinghenryviii,1612\nPronounce,1,kinghenryviii,1612\nANTHONY,1,kinghenryviii,1612\nsickened,1,kinghenryviii,1612\nbevy,1,kinghenryviii,1612\nappoint,1,kinghenryviii,1612\nquick,1,kinghenryviii,1612\nscaring,1,kinghenryviii,1612\npinches,1,kinghenryviii,1612\nannual,1,kinghenryviii,1612\nnourishment,1,kinghenryviii,1612\nsport,1,kinghenryviii,1612\nnoses,1,kinghenryviii,1612\npie,1,kinghenryviii,1612\nbuys,1,kinghenryviii,1612\ntroops,1,kinghenryviii,1612\nearl,1,kinghenryviii,1612\nrankness,1,kinghenryviii,1612\nnavy,1,kinghenryviii,1612\nIs't,1,kinghenryviii,1612\ndisplay'd,1,kinghenryviii,1612\nague,1,kinghenryviii,1612\nstrew,1,kinghenryviii,1612\nformerly,1,kinghenryviii,1612\nriseth,1,kinghenryviii,1612\nmonstrous,1,kinghenryviii,1612\noutlive,1,kinghenryviii,1612\nBohun,1,kinghenryviii,1612\nGone,1,kinghenryviii,1612\nSeems,1,kinghenryviii,1612\ngroaning,1,kinghenryviii,1612\ntemple,1,kinghenryviii,1612\nthereunto,1,kinghenryviii,1612\nwringing,1,kinghenryviii,1612\ntitles,1,kinghenryviii,1612\nwarn'd,1,kinghenryviii,1612\nprecipice,1,kinghenryviii,1612\ntrimm'd,1,kinghenryviii,1612\nScholars,1,kinghenryviii,1612\nreproaches,1,kinghenryviii,1612\nroyalty,1,kinghenryviii,1612\nweed,1,kinghenryviii,1612\nbulk,1,kinghenryviii,1612\nchallenge,1,kinghenryviii,1612\npleaded,1,kinghenryviii,1612\nunhandled,1,kinghenryviii,1612\nweek,1,kinghenryviii,1612\nproportion,1,kinghenryviii,1612\nMend,1,kinghenryviii,1612\nhills,1,kinghenryviii,1612\nDance,1,kinghenryviii,1612\nbranded,1,kinghenryviii,1612\nspotless,1,kinghenryviii,1612\nbusy,1,kinghenryviii,1612\nReceive,1,kinghenryviii,1612\nabsent,1,kinghenryviii,1612\nDrum,1,kinghenryviii,1612\nHeard,1,kinghenryviii,1612\nwhereby,1,kinghenryviii,1612\nmetal,1,kinghenryviii,1612\nsooner,1,kinghenryviii,1612\nGuy,1,kinghenryviii,1612\ngleaning,1,kinghenryviii,1612\nsuffer'd,1,kinghenryviii,1612\nMelt,1,kinghenryviii,1612\ndove,1,kinghenryviii,1612\nbell,1,kinghenryviii,1612\nDistinctly,1,kinghenryviii,1612\nEmperor,1,kinghenryviii,1612\nunfit,1,kinghenryviii,1612\nAcquainted,1,kinghenryviii,1612\nPlague,1,kinghenryviii,1612\ngracefully,1,kinghenryviii,1612\nOxford,1,kinghenryviii,1612\ncap,1,kinghenryviii,1612\nstruck,1,kinghenryviii,1612\narose,1,kinghenryviii,1612\nContinual,1,kinghenryviii,1612\nattention,1,kinghenryviii,1612\naltar,1,kinghenryviii,1612\nSurely,1,kinghenryviii,1612\nshepherds,1,kinghenryviii,1612\ndote,1,kinghenryviii,1612\ntables,1,kinghenryviii,1612\nfurnished,1,kinghenryviii,1612\ndevised,1,kinghenryviii,1612\nbolden'd,1,kinghenryviii,1612\nweightier,1,kinghenryviii,1612\ncelebration,1,kinghenryviii,1612\nwoful,1,kinghenryviii,1612\nwedlock,1,kinghenryviii,1612\ntreasons,1,kinghenryviii,1612\ngall'd,1,kinghenryviii,1612\nsustain,1,kinghenryviii,1612\nshadow,1,kinghenryviii,1612\nabbey,1,kinghenryviii,1612\nBorn,1,kinghenryviii,1612\nWhitehall,1,kinghenryviii,1612\nhappen'd,1,kinghenryviii,1612\nDidst,1,kinghenryviii,1612\ngamester,1,kinghenryviii,1612\ndespise,1,kinghenryviii,1612\njury,1,kinghenryviii,1612\ntheme,1,kinghenryviii,1612\nfriendly,1,kinghenryviii,1612\nSing,1,kinghenryviii,1612\nverity,1,kinghenryviii,1612\nTongues,1,kinghenryviii,1612\nPatrum,1,kinghenryviii,1612\ncurse,1,kinghenryviii,1612\nbeget,1,kinghenryviii,1612\nPress,1,kinghenryviii,1612\nvows,1,kinghenryviii,1612\nforgetful,1,kinghenryviii,1612\nbuy,1,kinghenryviii,1612\nORDER,1,kinghenryviii,1612\njurisdiction,1,kinghenryviii,1612\ntravel,1,kinghenryviii,1612\ngather'd,1,kinghenryviii,1612\nfrowns,1,kinghenryviii,1612\ntailors,1,kinghenryviii,1612\nLodged,1,kinghenryviii,1612\npeople's,1,kinghenryviii,1612\ncrack'd,1,kinghenryviii,1612\nambassadors,1,kinghenryviii,1612\nVain,1,kinghenryviii,1612\npains,1,kinghenryviii,1612\ngate,1,kinghenryviii,1612\n'Twas,1,kinghenryviii,1612\nstretch,1,kinghenryviii,1612\nmoody,1,kinghenryviii,1612\nhourly,1,kinghenryviii,1612\npitch,1,kinghenryviii,1612\nremnants,1,kinghenryviii,1612\nheap'd,1,kinghenryviii,1612\nbegs,1,kinghenryviii,1612\nnorth,1,kinghenryviii,1612\nfooting,1,kinghenryviii,1612\npared,1,kinghenryviii,1612\nhopeful,1,kinghenryviii,1612\npiles,1,kinghenryviii,1612\nspann'd,1,kinghenryviii,1612\nholidame,1,kinghenryviii,1612\nconvey'd,1,kinghenryviii,1612\nadmirer,1,kinghenryviii,1612\nAbusing,1,kinghenryviii,1612\nquite,1,kinghenryviii,1612\nriver,1,kinghenryviii,1612\nsolemn,1,kinghenryviii,1612\nstore,1,kinghenryviii,1612\nnoted,1,kinghenryviii,1612\nStokesly,1,kinghenryviii,1612\nstorm,1,kinghenryviii,1612\ndeliverance,1,kinghenryviii,1612\nchildish,1,kinghenryviii,1612\ndeem,1,kinghenryviii,1612\ndeparted,1,kinghenryviii,1612\nvirgin,1,kinghenryviii,1612\ngovernment,1,kinghenryviii,1612\n'Tush,1,kinghenryviii,1612\naffection,1,kinghenryviii,1612\n'that,1,kinghenryviii,1612\nplate,1,kinghenryviii,1612\nwretch,1,kinghenryviii,1612\nimage,1,kinghenryviii,1612\nSaba,1,kinghenryviii,1612\nmiles,1,kinghenryviii,1612\nvoyage,1,kinghenryviii,1612\nDurst,1,kinghenryviii,1612\ngallows,1,kinghenryviii,1612\ncontinues,1,kinghenryviii,1612\ngift,1,kinghenryviii,1612\nemballing,1,kinghenryviii,1612\naid,1,kinghenryviii,1612\nSONG,1,kinghenryviii,1612\nstops,1,kinghenryviii,1612\nHere's,1,kinghenryviii,1612\ncurrent,1,kinghenryviii,1612\npainting,1,kinghenryviii,1612\nbeat,1,kinghenryviii,1612\nviolence,1,kinghenryviii,1612\nunsolicited,1,kinghenryviii,1612\nwreck,1,kinghenryviii,1612\nBless,1,kinghenryviii,1612\nyes,1,kinghenryviii,1612\net,1,kinghenryviii,1612\nPass,1,kinghenryviii,1612\nhandsome,1,kinghenryviii,1612\nago,1,kinghenryviii,1612\nUnless,1,kinghenryviii,1612\nstone,1,kinghenryviii,1612\nunworthy,1,kinghenryviii,1612\nobligation,1,kinghenryviii,1612\ngilt,1,kinghenryviii,1612\nRevenge,1,kinghenryviii,1612\nlegatine,1,kinghenryviii,1612\ngait,1,kinghenryviii,1612\nvouchsafe,1,kinghenryviii,1612\nworthily,1,kinghenryviii,1612\ngild,1,kinghenryviii,1612\nlikely,1,kinghenryviii,1612\ncarders,1,kinghenryviii,1612\nholiday,1,kinghenryviii,1612\nnobleman,1,kinghenryviii,1612\nLast,1,kinghenryviii,1612\ntruncheoners,1,kinghenryviii,1612\nI've,1,kinghenryviii,1612\nlighten,1,kinghenryviii,1612\nmakers,1,kinghenryviii,1612\nsuggestion,1,kinghenryviii,1612\nlend,1,kinghenryviii,1612\nlighted,1,kinghenryviii,1612\ngall,1,kinghenryviii,1612\ndwarfish,1,kinghenryviii,1612\ndestruction,1,kinghenryviii,1612\nunwillingly,1,kinghenryviii,1612\nforged,1,kinghenryviii,1612\naccused,1,kinghenryviii,1612\nstockings,1,kinghenryviii,1612\nbounties,1,kinghenryviii,1612\ngenerally,1,kinghenryviii,1612\ntreaty,1,kinghenryviii,1612\nglistering,1,kinghenryviii,1612\nby't,1,kinghenryviii,1612\nby'r,1,kinghenryviii,1612\nDoublets,1,kinghenryviii,1612\nspeed,1,kinghenryviii,1612\nale,1,kinghenryviii,1612\ncrab,1,kinghenryviii,1612\npossess'd,1,kinghenryviii,1612\ngentlewoman,1,kinghenryviii,1612\nshed,1,kinghenryviii,1612\ncruelty,1,kinghenryviii,1612\nporters,1,kinghenryviii,1612\nforget,1,kinghenryviii,1612\nthyself,1,kinghenryviii,1612\nbless'd,1,kinghenryviii,1612\ncorrect,1,kinghenryviii,1612\nfeast,1,kinghenryviii,1612\nprosper,1,kinghenryviii,1612\nbetray'd,1,kinghenryviii,1612\nask'd,1,kinghenryviii,1612\ncommend,1,kinghenryviii,1612\napprobation,1,kinghenryviii,1612\nrailed,1,kinghenryviii,1612\nrain'd,1,kinghenryviii,1612\nbites,1,kinghenryviii,1612\nbodies,1,kinghenryviii,1612\ndemi,1,kinghenryviii,1612\norphans',1,kinghenryviii,1612\nregion,1,kinghenryviii,1612\nmeteor,1,kinghenryviii,1612\nunspotted,1,kinghenryviii,1612\nReach,1,kinghenryviii,1612\ngladded,1,kinghenryviii,1612\ngrip'd,1,kinghenryviii,1612\nlegate,1,kinghenryviii,1612\nwhereof,1,kinghenryviii,1612\ncollected,1,kinghenryviii,1612\nstraying,1,kinghenryviii,1612\nmalignant,1,kinghenryviii,1612\nreciprocally,1,kinghenryviii,1612\nLive,1,kinghenryviii,1612\naccount,1,kinghenryviii,1612\nKildare's,1,kinghenryviii,1612\nscholar,1,kinghenryviii,1612\nregina,1,kinghenryviii,1612\nDomestics,1,kinghenryviii,1612\nIndia,1,kinghenryviii,1612\ncloaks,1,kinghenryviii,1612\nmightiness,1,kinghenryviii,1612\nMarshalsea,1,kinghenryviii,1612\neminent,1,kinghenryviii,1612\nvalue,1,kinghenryviii,1612\nlackeys,1,kinghenryviii,1612\nventurous,1,kinghenryviii,1612\nlover,1,kinghenryviii,1612\nspell,1,kinghenryviii,1612\nstudied,1,kinghenryviii,1612\nstout,1,kinghenryviii,1612\nchallenged,1,kinghenryviii,1612\nsettled,1,kinghenryviii,1612\noffer'd,1,kinghenryviii,1612\ngrooms,1,kinghenryviii,1612\nsuperstitious,1,kinghenryviii,1612\nado,1,kinghenryviii,1612\nparents,1,kinghenryviii,1612\nhumblest,1,kinghenryviii,1612\ncommands,1,kinghenryviii,1612\nagony,1,kinghenryviii,1612\nsemblance,1,kinghenryviii,1612\nlest,1,kinghenryviii,1612\nangels',1,kinghenryviii,1612\npotent,1,kinghenryviii,1612\nstrangers',1,kinghenryviii,1612\nfilling,1,kinghenryviii,1612\nhuntsman,1,kinghenryviii,1612\nstrains,1,kinghenryviii,1612\nnecessary,1,kinghenryviii,1612\nfeats,1,kinghenryviii,1612\nsmart,1,kinghenryviii,1612\nbootless,1,kinghenryviii,1612\nmischiefs,1,kinghenryviii,1612\nstatues,1,kinghenryviii,1612\nforgot,1,kinghenryviii,1612\nshoals,1,kinghenryviii,1612\nuntimely,1,kinghenryviii,1612\nsevering,1,kinghenryviii,1612\nnatures,1,kinghenryviii,1612\nsummers,1,kinghenryviii,1612\nGuards,1,kinghenryviii,1612\nwisest,1,kinghenryviii,1612\npresume,1,kinghenryviii,1612\nclimb,1,kinghenryviii,1612\nharm,1,kinghenryviii,1612\ndetests,1,kinghenryviii,1612\nprescription,1,kinghenryviii,1612\ngraver,1,kinghenryviii,1612\ngravel,1,kinghenryviii,1612\nornaments,1,kinghenryviii,1612\noppression,1,kinghenryviii,1612\ncherubins,1,kinghenryviii,1612\nfierce,1,kinghenryviii,1612\nblamed,1,kinghenryviii,1612\nscratch,1,kinghenryviii,1612\nimprisonment,1,kinghenryviii,1612\nBreak,1,kinghenryviii,1612\nfront,1,kinghenryviii,1612\nfaints,1,kinghenryviii,1612\nfrighted,1,kinghenryviii,1612\nisle,1,kinghenryviii,1612\nspleeny,1,kinghenryviii,1612\nstring,1,kinghenryviii,1612\nKate,1,kinghenryviii,1612\npopedom,1,kinghenryviii,1612\nafford,1,kinghenryviii,1612\nspells,1,kinghenryviii,1612\nte,1,kinghenryviii,1612\nbeggar's,1,kinghenryviii,1612\ncheveril,1,kinghenryviii,1612\nearl's,1,kinghenryviii,1612\nkingly,1,kinghenryviii,1612\nsuggests,1,kinghenryviii,1612\nmysteries,1,kinghenryviii,1612\npale,1,kinghenryviii,1612\npalm,1,kinghenryviii,1612\nemploy'd,1,kinghenryviii,1612\nperform'd,1,kinghenryviii,1612\nthrift,1,kinghenryviii,1612\nRead,1,kinghenryviii,1612\nspur,1,kinghenryviii,1612\nHealthful,1,kinghenryviii,1612\ntrade,1,kinghenryviii,1612\nContinue,1,kinghenryviii,1612\nrepeat,1,kinghenryviii,1612\nBeware,1,kinghenryviii,1612\nperform't,1,kinghenryviii,1612\nliberty,1,kinghenryviii,1612\nnobleness,1,kinghenryviii,1612\ncited,1,kinghenryviii,1612\nFull,1,kinghenryviii,1612\ndraws,1,kinghenryviii,1612\nsincere,1,kinghenryviii,1612\nmentis,1,kinghenryviii,1612\nRestored,1,kinghenryviii,1612\npurgation,1,kinghenryviii,1612\nprotects,1,kinghenryviii,1612\nState,1,kinghenryviii,1612\nmonks,1,kinghenryviii,1612\nreproved,1,kinghenryviii,1612\nsweetest,1,kinghenryviii,1612\ntract,1,kinghenryviii,1612\nSalutes,1,kinghenryviii,1612\nInduce,1,kinghenryviii,1612\nprovided,1,kinghenryviii,1612\nDuring,1,kinghenryviii,1612\nmiscarried,1,kinghenryviii,1612\nIndies,1,kinghenryviii,1612\npotency,1,kinghenryviii,1612\npluck,1,kinghenryviii,1612\nwhether,1,kinghenryviii,1612\ncity,1,kinghenryviii,1612\nexpect,1,kinghenryviii,1612\npausingly,1,kinghenryviii,1612\nbrothers,1,kinghenryviii,1612\nprepare,1,kinghenryviii,1612\n'Clubs,1,kinghenryviii,1612\nkingdoms,1,kinghenryviii,1612\nconsiderings,1,kinghenryviii,1612\nCommend,1,kinghenryviii,1612\ndrake,1,kinghenryviii,1612\ndominions,1,kinghenryviii,1612\nwastes,1,kinghenryviii,1612\ncourts,1,kinghenryviii,1612\nneglect,1,kinghenryviii,1612\nhangs,1,kinghenryviii,1612\npaid,1,kinghenryviii,1612\nwagging,1,kinghenryviii,1612\nspit,1,kinghenryviii,1612\npersuasions,1,kinghenryviii,1612\nmoney,1,kinghenryviii,1612\nfore,1,kinghenryviii,1612\nacquire,1,kinghenryviii,1612\nmock,1,kinghenryviii,1612\napt,1,kinghenryviii,1612\nPrepare,1,kinghenryviii,1612\nAsaph,1,kinghenryviii,1612\nscatter,1,kinghenryviii,1612\nstrive,1,kinghenryviii,1612\nattach,1,kinghenryviii,1612\nfoot,1,kinghenryviii,1612\nIndian,1,kinghenryviii,1612\npack,1,kinghenryviii,1612\nalive,1,kinghenryviii,1612\nshot,1,kinghenryviii,1612\nrogue,1,kinghenryviii,1612\nhats,1,kinghenryviii,1612\nfishes,1,kinghenryviii,1612\nbillows,1,kinghenryviii,1612\nproper,1,kinghenryviii,1612\ngentry,1,kinghenryviii,1612\nconsideration,1,kinghenryviii,1612\ncounsellors,1,kinghenryviii,1612\nretainers,1,kinghenryviii,1612\nrough,1,kinghenryviii,1612\nrebell'd,1,kinghenryviii,1612\nuproars,1,kinghenryviii,1612\nFell,1,kinghenryviii,1612\nsaints,1,kinghenryviii,1612\nArde,1,kinghenryviii,1612\nprepared,1,kinghenryviii,1612\nbearer,1,kinghenryviii,1612\nrevenge,1,kinghenryviii,1612\nyard,1,kinghenryviii,1612\nlousy,1,kinghenryviii,1612\nOrder,1,kinghenryviii,1612\ncreatures,1,kinghenryviii,1612\nbeneficial,1,kinghenryviii,1612\nWeary,1,kinghenryviii,1612\npush,1,kinghenryviii,1612\nassistants,1,kinghenryviii,1612\ninscribed,1,kinghenryviii,1612\nmonument,1,kinghenryviii,1612\nrightly,1,kinghenryviii,1612\nfold,1,kinghenryviii,1612\nBreed,1,kinghenryviii,1612\nhavings,1,kinghenryviii,1612\nShe'll,1,kinghenryviii,1612\nShort,1,kinghenryviii,1612\nStrikes,1,kinghenryviii,1612\nopen't,1,kinghenryviii,1612\nunthink,1,kinghenryviii,1612\nbought,1,kinghenryviii,1612\nundone,1,kinghenryviii,1612\nHark,1,kinghenryviii,1612\nfee,1,kinghenryviii,1612\npurchased,1,kinghenryviii,1612\nAgain,1,kinghenryviii,1612\nmazed,1,kinghenryviii,1612\nsweetly,1,kinghenryviii,1612\nSometimes,1,kinghenryviii,1612\nmanors,1,kinghenryviii,1612\nnaughty,1,kinghenryviii,1612\njustify,1,kinghenryviii,1612\nbutcher's,1,kinghenryviii,1612\nnet,1,kinghenryviii,1612\nmaim'd,1,kinghenryviii,1612\nflatteries,1,kinghenryviii,1612\ndaring,1,kinghenryviii,1612\ndeem'd,1,kinghenryviii,1612\nmention,1,kinghenryviii,1612\nridiculous,1,kinghenryviii,1612\nDangers,1,kinghenryviii,1612\nceases,1,kinghenryviii,1612\nPertains,1,kinghenryviii,1612\nAsk,1,kinghenryviii,1612\nenjoy,1,kinghenryviii,1612\nwillingly,1,kinghenryviii,1612\nStood,1,kinghenryviii,1612\nHate,1,kinghenryviii,1612\nbeams,1,kinghenryviii,1612\nguest,1,kinghenryviii,1612\nthought's,1,kinghenryviii,1612\ntastes,1,kinghenryviii,1612\nhere's,1,kinghenryviii,1612\nVergers,1,kinghenryviii,1612\nLucifer,1,kinghenryviii,1612\nStops,1,kinghenryviii,1612\nsuperfluous,1,kinghenryviii,1612\nStrangely,1,kinghenryviii,1612\nheight,1,kinghenryviii,1612\nnobler,1,kinghenryviii,1612\nhumbleness,1,kinghenryviii,1612\nClotharius,1,kinghenryviii,1612\nexecute,1,kinghenryviii,1612\nluck,1,kinghenryviii,1612\nShows,1,kinghenryviii,1612\nmeus',1,kinghenryviii,1612\nrays,1,kinghenryviii,1612\nlacking,1,kinghenryviii,1612\nprocession,1,kinghenryviii,1612\nComes,1,kinghenryviii,1612\noften,1,kinghenryviii,1612\nleap,1,kinghenryviii,1612\nroom,1,kinghenryviii,1612\nWOLSEY's,1,kinghenryviii,1612\nCollected,1,kinghenryviii,1612\nlong'd,1,kinghenryviii,1612\ncondemn'd,1,kinghenryviii,1612\nLeap'd,1,kinghenryviii,1612\nperceives,1,kinghenryviii,1612\nGreenwich,1,kinghenryviii,1612\nglories,1,kinghenryviii,1612\nconfederacy,1,kinghenryviii,1612\nincomparable,1,kinghenryviii,1612\nBeauty,1,kinghenryviii,1612\nexpected,1,kinghenryviii,1612\nBecome,1,kinghenryviii,1612\nbedchamber,1,kinghenryviii,1612\ninside,1,kinghenryviii,1612\nmaid,1,kinghenryviii,1612\nconsider'd,1,kinghenryviii,1612\ntarry,1,kinghenryviii,1612\ncomptrollers,1,kinghenryviii,1612\nStafford,1,kinghenryviii,1612\ncarried,1,kinghenryviii,1612\nembracement,1,kinghenryviii,1612\nhoney,1,kinghenryviii,1612\n'Thus,1,kinghenryviii,1612\nSpoke,1,kinghenryviii,1612\nLeicester,1,kinghenryviii,1612\nnations,1,kinghenryviii,1612\nhill,1,kinghenryviii,1612\ngriefs,1,kinghenryviii,1612\npanging,1,kinghenryviii,1612\nrams,1,kinghenryviii,1612\nAldermen,1,kinghenryviii,1612\nshouldst,1,kinghenryviii,1612\nmisfortunes,1,kinghenryviii,1612\nbarons,1,kinghenryviii,1612\nsession,1,kinghenryviii,1612\nundeserver,1,kinghenryviii,1612\nobjections,1,kinghenryviii,1612\ntakest,1,kinghenryviii,1612\nwhitest,1,kinghenryviii,1612\nclapp'd,1,kinghenryviii,1612\nbuild,1,kinghenryviii,1612\nassuredly,1,kinghenryviii,1612\nrolling,1,kinghenryviii,1612\nbores,1,kinghenryviii,1612\nmotley,1,kinghenryviii,1612\n'Gainst,1,kinghenryviii,1612\nCranmer's,1,kinghenryviii,1612\ndarts,1,kinghenryviii,1612\nrepose,1,kinghenryviii,1612\nflocks,1,kinghenryviii,1612\nHall,1,kinghenryviii,1612\nthinks,1,kinghenryviii,1612\nomit,1,kinghenryviii,1612\nrooted,1,kinghenryviii,1612\nmeridian,1,kinghenryviii,1612\nRichly,1,kinghenryviii,1612\nmartyr,1,kinghenryviii,1612\nBanister,1,kinghenryviii,1612\ncontains,1,kinghenryviii,1612\nfurniture,1,kinghenryviii,1612\naction,1,kinghenryviii,1612\ngavest,1,kinghenryviii,1612\nhire,1,kinghenryviii,1612\npatents,1,kinghenryviii,1612\nfaculties,1,kinghenryviii,1612\nhalberds,1,kinghenryviii,1612\ndamage,1,kinghenryviii,1612\naccusations,1,kinghenryviii,1612\nQUEEN'S,1,kinghenryviii,1612\ncedar,1,kinghenryviii,1612\nBade,1,kinghenryviii,1612\nShow'd,1,kinghenryviii,1612\nprodigal,1,kinghenryviii,1612\nrestore,1,kinghenryviii,1612\ngently,1,kinghenryviii,1612\npenny,1,kinghenryviii,1612\nmounted,1,kinghenryviii,1612\nPeace,1,kinghenryviii,1612\nexhalation,1,kinghenryviii,1612\nUrged,1,kinghenryviii,1612\njuror,1,kinghenryviii,1612\nProtect,1,kinghenryviii,1612\ndistribute,1,kinghenryviii,1612\npales,1,kinghenryviii,1612\ndeserving,1,kinghenryviii,1612\nBar,1,kinghenryviii,1612\nFlourish,1,kinghenryviii,1612\nBritain,1,kinghenryviii,1612\ntemperance,1,kinghenryviii,1612\ndisgraced,1,kinghenryviii,1612\nschedule,1,kinghenryviii,1612\nqueens,1,kinghenryviii,1612\nprimer,1,kinghenryviii,1612\nPursued,1,kinghenryviii,1612\nblew,1,kinghenryviii,1612\ncandle,1,kinghenryviii,1612\nest,1,kinghenryviii,1612\ntenor,1,kinghenryviii,1612\nthinkings,1,kinghenryviii,1612\nfeature,1,kinghenryviii,1612\nBeseeching,1,kinghenryviii,1612\nChristians,1,kinghenryviii,1612\nsirrah,1,kinghenryviii,1612\ndisciples,1,kinghenryviii,1612\nLove,1,kinghenryviii,1612\nmock'd,1,kinghenryviii,1612\npersonages,1,kinghenryviii,1612\n'That's,1,kinghenryviii,1612\nstrike,1,kinghenryviii,1612\nforeseeing,1,kinghenryviii,1612\nfurnace,1,kinghenryviii,1612\nmeditating,1,kinghenryviii,1612\nexcused,1,kinghenryviii,1612\nTrace,1,kinghenryviii,1612\nFlying,1,kinghenryviii,1612\nSit,1,kinghenryviii,1612\nperused,1,kinghenryviii,1612\nvisage,1,kinghenryviii,1612\nBark,1,kinghenryviii,1612\nalter,1,kinghenryviii,1612\nPeep,1,kinghenryviii,1612\nEmbrace,1,kinghenryviii,1612\narguments,1,kinghenryviii,1612\naffections,1,kinghenryviii,1612\nstays,1,kinghenryviii,1612\ngarden,1,kinghenryviii,1612\nmate,1,kinghenryviii,1612\nquickly,1,kinghenryviii,1612\nyou'ld,1,kinghenryviii,1612\nfornication,1,kinghenryviii,1612\nbegging,1,kinghenryviii,1612\nFurther,1,kinghenryviii,1612\nperform,1,kinghenryviii,1612\npaces,1,kinghenryviii,1612\nchine,1,kinghenryviii,1612\nhinder'd,1,kinghenryviii,1612\nodious,1,kinghenryviii,1612\nignorant,1,kinghenryviii,1612\nescapes,1,kinghenryviii,1612\nmisery,1,kinghenryviii,1612\nunhappy,1,kinghenryviii,1612\nintercession,1,kinghenryviii,1612\nevermore,1,kinghenryviii,1612\ndares,1,kinghenryviii,1612\nCertain,1,kinghenryviii,1612\nhousewife,1,kinghenryviii,1612\nmasque,1,kinghenryviii,1612\nanger's,1,kinghenryviii,1612\nrejoicing,1,kinghenryviii,1612\nindurance,1,kinghenryviii,1612\nseveral,1,kinghenryviii,1612\nuproar,1,kinghenryviii,1612\npowers,1,kinghenryviii,1612\nHealth,1,kinghenryviii,1612\nFlanders,1,kinghenryviii,1612\nbesmear'd,1,kinghenryviii,1612\nTurns,1,kinghenryviii,1612\ninjustice,1,kinghenryviii,1612\nplaced,1,kinghenryviii,1612\nrecount,1,kinghenryviii,1612\nmourn,1,kinghenryviii,1612\nafflictions,1,kinghenryviii,1612\ninform'd,1,kinghenryviii,1612\nappointment,1,kinghenryviii,1612\nerr,1,kinghenryviii,1612\npaced,1,kinghenryviii,1612\nlikewise,1,kinghenryviii,1612\nrolls,1,kinghenryviii,1612\nFree,1,kinghenryviii,1612\nForetold,1,kinghenryviii,1612\nmortar,1,kinghenryviii,1612\nrealms,1,kinghenryviii,1612\narrived,1,kinghenryviii,1612\n'If,1,kinghenryviii,1612\nLong,1,kinghenryviii,1612\nbudded,1,kinghenryviii,1612\nsinging,1,kinghenryviii,1612\nlearnedly,1,kinghenryviii,1612\nteeth,1,kinghenryviii,1612\ndiscerner,1,kinghenryviii,1612\nstars,1,kinghenryviii,1612\nqualities,1,kinghenryviii,1612\napproaches,1,kinghenryviii,1612\nshield,1,kinghenryviii,1612\nChoristers,1,kinghenryviii,1612\nrange,1,kinghenryviii,1612\npurposes,1,kinghenryviii,1612\nplayfellows,1,kinghenryviii,1612\nfoul'st,1,kinghenryviii,1612\nsilenced,1,kinghenryviii,1612\ncrawl'd,1,kinghenryviii,1612\nvent,1,kinghenryviii,1612\nwoven,1,kinghenryviii,1612\nbeads,1,kinghenryviii,1612\nconfidence,1,kinghenryviii,1612\nkeeper,1,kinghenryviii,1612\nbeggar,1,kinghenryviii,1612\nbloody,1,kinghenryviii,1612\nprocure,1,kinghenryviii,1612\nGrievous,1,kinghenryviii,1612\ncovent,1,kinghenryviii,1612\n'gainst,1,kinghenryviii,1612\ndecline,1,kinghenryviii,1612\ndearest,1,kinghenryviii,1612\n'Do,1,kinghenryviii,1612\nkissing,1,kinghenryviii,1612\ndream,1,kinghenryviii,1612\nproudest,1,kinghenryviii,1612\nmars,1,kinghenryviii,1612\nmisdemean'd,1,kinghenryviii,1612\nLimehouse,1,kinghenryviii,1612\nafflicted,1,kinghenryviii,1612\nslave,1,kinghenryviii,1612\nAny,1,kinghenryviii,1612\nfurnish'd,1,kinghenryviii,1612\nCrave,1,kinghenryviii,1612\nGave't,1,kinghenryviii,1612\nbecause,1,kinghenryviii,1612\nwot,1,kinghenryviii,1612\nFerdinand,1,kinghenryviii,1612\nwoo,1,kinghenryviii,1612\nblow,1,kinghenryviii,1612\nrevengeful,1,kinghenryviii,1612\nchaff,1,kinghenryviii,1612\nvision,1,kinghenryviii,1612\nadorned,1,kinghenryviii,1612\nInvite,1,kinghenryviii,1612\nbeside,1,kinghenryviii,1612\nshoulder,1,kinghenryviii,1612\nbrazier,1,kinghenryviii,1612\nfret,1,kinghenryviii,1612\nbenefit,1,kinghenryviii,1612\nfish,1,kinghenryviii,1612\n'Te,1,kinghenryviii,1612\nfather's,1,kinghenryviii,1612\nwho'll,1,kinghenryviii,1612\nholily,1,kinghenryviii,1612\nplenteous,1,kinghenryviii,1612\nStubborn,1,kinghenryviii,1612\nconstable,1,kinghenryviii,1612\nhypocrisy,1,kinghenryviii,1612\ndischarge,1,kinghenryviii,1612\nnaught,1,kinghenryviii,1612\nordinary,1,kinghenryviii,1612\nheaviest,1,kinghenryviii,1612\nwhispering,1,kinghenryviii,1612\ndoubted,1,kinghenryviii,1612\nwarranted,1,kinghenryviii,1612\ndainty,1,kinghenryviii,1612\nprivileged,1,kinghenryviii,1612\naccusation,1,kinghenryviii,1612\nallegiant,1,kinghenryviii,1612\nStrand,1,kinghenryviii,1612\npropp'd,1,kinghenryviii,1612\nhorrible,1,kinghenryviii,1612\noil,1,kinghenryviii,1612\nBosom,1,kinghenryviii,1612\ndesires,1,kinghenryviii,1612\nLofty,1,kinghenryviii,1612\nripeness,1,kinghenryviii,1612\nCommanded,1,kinghenryviii,1612\nunfolded,1,kinghenryviii,1612\nwed,1,kinghenryviii,1612\nforgiven,1,kinghenryviii,1612\no'clock,1,kinghenryviii,1612\nweb,1,kinghenryviii,1612\nAvoid,1,kinghenryviii,1612\nlouder,1,kinghenryviii,1612\nforego,1,kinghenryviii,1612\nConfessor's,1,kinghenryviii,1612\nknavery,1,kinghenryviii,1612\ntrembling,1,kinghenryviii,1612\npassage,1,kinghenryviii,1612\ntribulation,1,kinghenryviii,1612\nmaids,1,kinghenryviii,1612\ntroublesome,1,kinghenryviii,1612\n'Twixt,1,kinghenryviii,1612\nclaims,1,kinghenryviii,1612\ndarkening,1,kinghenryviii,1612\nMasquers,1,kinghenryviii,1612\nsting,1,kinghenryviii,1612\nstint,1,kinghenryviii,1612\nThey'll,1,kinghenryviii,1612\nwrongs,1,kinghenryviii,1612\nperson's,1,kinghenryviii,1612\ncontemplation,1,kinghenryviii,1612\nhoods,1,kinghenryviii,1612\ngem,1,kinghenryviii,1612\nthine,1,kinghenryviii,1612\npound,1,kinghenryviii,1612\n'My,1,kinghenryviii,1612\nneck,1,kinghenryviii,1612\nMaid,1,kinghenryviii,1612\nunhappily,1,kinghenryviii,1612\nForgetting,1,kinghenryviii,1612\ndishonour,1,kinghenryviii,1612\nO'ermount,1,kinghenryviii,1612\nfits,1,kinghenryviii,1612\nthrow,1,kinghenryviii,1612\nentreaties,1,kinghenryviii,1612\nLook'd,1,kinghenryviii,1612\ntypes,1,kinghenryviii,1612\nthroe,1,kinghenryviii,1612\nstamp,1,kinghenryviii,1612\nWitness,1,kinghenryviii,1612\nenters,1,kinghenryviii,1612\ncapable,1,kinghenryviii,1612\nscatters,1,kinghenryviii,1612\nthough't,1,kinghenryviii,1612\nPeep'd,1,kinghenryviii,1612\nprovoke,1,kinghenryviii,1612\nwhy,1,kinghenryviii,1612\nDread,1,kinghenryviii,1612\n'Twill,1,kinghenryviii,1612\nyou've,1,kinghenryviii,1612\nreceipt,1,kinghenryviii,1612\nfootboy,1,kinghenryviii,1612\nbawdy,1,kinghenryviii,1612\npublish'd,1,kinghenryviii,1612\nClap,1,kinghenryviii,1612\nPapers,1,kinghenryviii,1612\ngladding,1,kinghenryviii,1612\ncurs,1,kinghenryviii,1612\nhears,1,kinghenryviii,1612\nfetch,1,kinghenryviii,1612\nusurping,1,kinghenryviii,1612\nprime,1,kinghenryviii,1612\ncomfortless,1,kinghenryviii,1612\nTHOMAS,1,kinghenryviii,1612\nbanish'd,1,kinghenryviii,1612\ntractable,1,kinghenryviii,1612\nmarshal's,1,kinghenryviii,1612\ngap,1,kinghenryviii,1612\nRochester,1,kinghenryviii,1612\nUnmasking,1,kinghenryviii,1612\nallegiance,1,kinghenryviii,1612\nwaking,1,kinghenryviii,1612\nmeaner,1,kinghenryviii,1612\nprotect,1,kinghenryviii,1612\nposted,1,kinghenryviii,1612\nCORONATION,1,kinghenryviii,1612\nHardly,1,kinghenryviii,1612\nBeheld,1,kinghenryviii,1612\nfrailty,1,kinghenryviii,1612\nhappiest,1,kinghenryviii,1612\nconjectures,1,kinghenryviii,1612\nmusicians,1,kinghenryviii,1612\ngrosser,1,kinghenryviii,1612\nhealths,1,kinghenryviii,1612\nripe,1,kinghenryviii,1612\nchoked,1,kinghenryviii,1612\nGermany,1,kinghenryviii,1612\nstanding,1,kinghenryviii,1612\nShower'd,1,kinghenryviii,1612\nThey're,1,kinghenryviii,1612\nnegligence,1,kinghenryviii,1612\nfiled,1,kinghenryviii,1612\nvouch,1,kinghenryviii,1612\nremains,1,kinghenryviii,1612\ndistress'd,1,kinghenryviii,1612\nsubtle,1,kinghenryviii,1612\nspeeding,1,kinghenryviii,1612\nRose,1,kinghenryviii,1612\n'Mong,1,kinghenryviii,1612\ncolt's,1,kinghenryviii,1612\nfling,1,kinghenryviii,1612\nO'ertopping,1,kinghenryviii,1612\nunseal,1,kinghenryviii,1612\nissues,1,kinghenryviii,1612\nDwell,1,kinghenryviii,1612\nstiff,1,kinghenryviii,1612\ntunes,1,kinghenryviii,1612\nWeen,1,kinghenryviii,1612\nearnest,1,kinghenryviii,1612\narmy,1,kinghenryviii,1612\nmould,1,kinghenryviii,1612\nDunstable,1,kinghenryviii,1612\nmounting,1,kinghenryviii,1612\nRemove,1,kinghenryviii,1612\nprevail,1,kinghenryviii,1612\nhopeless,1,kinghenryviii,1612\npreferments,1,kinghenryviii,1612\n'To,1,kinghenryviii,1612\nfancy's,1,kinghenryviii,1612\naudience,1,kinghenryviii,1612\nperforce,1,kinghenryviii,1612\nScruple,1,kinghenryviii,1612\nintend,1,kinghenryviii,1612\nopposing,1,kinghenryviii,1612\nfellow's,1,kinghenryviii,1612\ndetermines,1,kinghenryviii,1612\nthey'll,1,kinghenryviii,1612\nrage,1,kinghenryviii,1612\nRex,1,kinghenryviii,1612\nAmpthill,1,kinghenryviii,1612\nserve,1,kinghenryviii,1612\nbedfellow,1,kinghenryviii,1612\nANNE's,1,kinghenryviii,1612\ncovetous,1,kinghenryviii,1612\nKnowing,1,kinghenryviii,1612\ndeclare,1,kinghenryviii,1612\nprick,1,kinghenryviii,1612\nsupper,1,kinghenryviii,1612\ntaxations,1,kinghenryviii,1612\nwomen's,1,kinghenryviii,1612\nmultitude,1,kinghenryviii,1612\nprofessors,1,kinghenryviii,1612\nbreakfast,1,kinghenryviii,1612\nPhysician,1,kinghenryviii,1612\nThree,1,kinghenryviii,1612\nflourish'd,1,kinghenryviii,1612\nbounty,1,kinghenryviii,1612\nGiven,1,kinghenryviii,1612\nruins,1,kinghenryviii,1612\ncaught,1,kinghenryviii,1612\nappliance,1,kinghenryviii,1612\nGives,1,kinghenryviii,1612\nSixth,1,kinghenryviii,1612\nChattels,1,kinghenryviii,1612\nproduced,1,kinghenryviii,1612\nEgypt,1,kinghenryviii,1612\nInfecting,1,kinghenryviii,1612\nclinquant,1,kinghenryviii,1612\nPageants,1,kinghenryviii,1612\nunwittingly,1,kinghenryviii,1612\nagree,1,kinghenryviii,1612\ndreams,1,kinghenryviii,1612\nmettle,1,kinghenryviii,1612\nrake,1,kinghenryviii,1612\nsurrender,1,kinghenryviii,1612\nunpartial,1,kinghenryviii,1612\nfaithless,1,kinghenryviii,1612\nestates,1,kinghenryviii,1612\nexclamation,1,kinghenryviii,1612\nslavery,1,kinghenryviii,1612\nwhat's,1,kinghenryviii,1612\ncharges,1,kinghenryviii,1612\npoison,1,kinghenryviii,1612\nlistening,1,kinghenryviii,1612\ncharged,1,kinghenryviii,1612\nsize,1,kinghenryviii,1612\nwasps,1,kinghenryviii,1612\nangel,1,kinghenryviii,1612\nCommends,1,kinghenryviii,1612\nvicious,1,kinghenryviii,1612\nforfeit,1,kinghenryviii,1612\ntamely,1,kinghenryviii,1612\nroads,1,kinghenryviii,1612\nkilling,1,kinghenryviii,1612\nSharp,1,kinghenryviii,1612\nhack'd,1,kinghenryviii,1612\nwomb,1,kinghenryviii,1612\nkeech,1,kinghenryviii,1612\nBourdeaux,1,kinghenryviii,1612\nrail,1,kinghenryviii,1612\ndisposition,1,kinghenryviii,1612\nunite,1,kinghenryviii,1612\ndull,1,kinghenryviii,1612\nOutworths,1,kinghenryviii,1612\nperfidious,1,kinghenryviii,1612\nyoke,1,kinghenryviii,1612\nwolf,1,kinghenryviii,1612\ngrain,1,kinghenryviii,1612\ndrops,1,kinghenryviii,1612\nfry,1,kinghenryviii,1612\nserves,1,kinghenryviii,1612\nunsatisfied,1,kinghenryviii,1612\nwaste,1,kinghenryviii,1612\nmarble,1,kinghenryviii,1612\nmasquers,1,kinghenryviii,1612\nfox,1,kinghenryviii,1612\nForbear,1,kinghenryviii,1612\nstepp'd,1,kinghenryviii,1612\nstirs,1,kinghenryviii,1612\nwhence,1,kinghenryviii,1612\nauthors,1,kinghenryviii,1612\nDeum,1,kinghenryviii,1612\nfill'd,1,kinghenryviii,1612\nWhispers,1,kinghenryviii,1612\nheathen,1,kinghenryviii,1612\nhideous,1,kinghenryviii,1612\ncontempt,1,kinghenryviii,1612\nuntruths,1,kinghenryviii,1612\nheirs,1,kinghenryviii,1612\ndoubled,1,kinghenryviii,1612\ncreate,1,kinghenryviii,1612\nhunger,1,kinghenryviii,1612\nemblems,1,kinghenryviii,1612\noutgo,1,kinghenryviii,1612\nLearned,1,kinghenryviii,1612\ninkling,1,kinghenryviii,1612\nexamination,1,kinghenryviii,1612\nwept,1,kinghenryviii,1612\ndiseases,1,kinghenryviii,1612\npostures,1,kinghenryviii,1612\n'fore,1,kinghenryviii,1612\nblister'd,1,kinghenryviii,1612\nThither,1,kinghenryviii,1612\ngiving,1,kinghenryviii,1612\nPromises,1,kinghenryviii,1612\nconstancy,1,kinghenryviii,1612\nwander,1,kinghenryviii,1612\nlump,1,kinghenryviii,1612\nlasting,1,kinghenryviii,1612\nCorruption,1,kinghenryviii,1612\ngrand,1,kinghenryviii,1612\nquartered,1,kinghenryviii,1612\nreturns,1,kinghenryviii,1612\nDowager,1,kinghenryviii,1612\nparcels,1,kinghenryviii,1612\nearthy,1,kinghenryviii,1612\nworn,1,kinghenryviii,1612\nweavers,1,kinghenryviii,1612\nrighteous,1,kinghenryviii,1612\nfly,1,kinghenryviii,1612\npassing,1,kinghenryviii,1612\nMalice,1,kinghenryviii,1612\ncaution,1,kinghenryviii,1612\nSweet,1,kinghenryviii,1612\nGrievingly,1,kinghenryviii,1612\nsolicited,1,kinghenryviii,1612\nthey're,1,kinghenryviii,1612\nperfect,1,kinghenryviii,1612\nfine,1,kinghenryviii,1612\npassion,1,kinghenryviii,1612\nplayhouse,1,kinghenryviii,1612\nunfinish'd,1,kinghenryviii,1612\nShut,1,kinghenryviii,1612\nswallow'd,1,kinghenryviii,1612\nMoorfields,1,kinghenryviii,1612\nseparation,1,kinghenryviii,1612\nwishing,1,kinghenryviii,1612\npleases,1,kinghenryviii,1612\nBow,1,kinghenryviii,1612\nspinsters,1,kinghenryviii,1612\nclad,1,kinghenryviii,1612\nadmiration,1,kinghenryviii,1612\nShone,1,kinghenryviii,1612\nrenouncing,1,kinghenryviii,1612\nhandmaid,1,kinghenryviii,1612\nclap,1,kinghenryviii,1612\npreservation,1,kinghenryviii,1612\nfriar,1,kinghenryviii,1612\nreviled,1,kinghenryviii,1612\nbark,1,kinghenryviii,1612\nrebuke,1,kinghenryviii,1612\nduties,1,kinghenryviii,1612\nniggard,1,kinghenryviii,1612\nminded,1,kinghenryviii,1612\nthunder,1,kinghenryviii,1612\ncontagious,1,kinghenryviii,1612\nshown,1,kinghenryviii,1612\nclung,1,kinghenryviii,1612\nworship,1,kinghenryviii,1612\narrogancy,1,kinghenryviii,1612\nshows,1,kinghenryviii,1612\nratified,1,kinghenryviii,1612\nunconsider'd,1,kinghenryviii,1612\narrogance,1,kinghenryviii,1612\nfondness,1,kinghenryviii,1612\nvex,1,kinghenryviii,1612\npractise,1,kinghenryviii,1612\ndepart,1,kinghenryviii,1612\nunsay't,1,kinghenryviii,1612\nlarks,1,kinghenryviii,1612\nscenes,1,kinghenryviii,1612\nHereford,1,kinghenryviii,1612\nwonted,1,kinghenryviii,1612\nJudges,1,kinghenryviii,1612\nmeaning,1,kinghenryviii,1612\nfreshly,1,kinghenryviii,1612\nFerrara,1,kinghenryviii,1612\naunt,1,kinghenryviii,1612\npublic,1,kinghenryviii,1612\ndeliver'd,1,kinghenryviii,1612\nadjourn,1,kinghenryviii,1612\nfriendship,1,kinghenryviii,1612\nArrested,1,kinghenryviii,1612\nfounder,1,kinghenryviii,1612\nhallow'd,1,kinghenryviii,1612\nLutheran,1,kinghenryviii,1612\nVery,1,kinghenryviii,1612\nintegritas,1,kinghenryviii,1612\ntame,1,kinghenryviii,1612\nrising,1,kinghenryviii,1612\ndam,1,kinghenryviii,1612\nNoise,1,kinghenryviii,1612\nwill'd,1,kinghenryviii,1612\nstrove,1,kinghenryviii,1612\nlarge,1,kinghenryviii,1612\nEach,1,kinghenryviii,1612\nsongs,1,kinghenryviii,1612\nevidence,1,kinghenryviii,1612\nOffers,1,kinghenryviii,1612\nmeets,1,kinghenryviii,1612\nlights,1,kinghenryviii,1612\nlag,1,kinghenryviii,1612\ngallant,1,kinghenryviii,1612\nache,1,kinghenryviii,1612\nbuzzing,1,kinghenryviii,1612\nofficious,1,kinghenryviii,1612\ntall,1,kinghenryviii,1612\ncreed,1,kinghenryviii,1612\nLouvre,1,kinghenryviii,1612\nInvited,1,kinghenryviii,1612\nconstant,1,kinghenryviii,1612\nreckon'd,1,kinghenryviii,1612\nwitchcraft,1,kinghenryviii,1612\nfruitful,1,kinghenryviii,1612\nwhatsoe'er,1,kinghenryviii,1612\nfresher,1,kinghenryviii,1612\nAppear,1,kinghenryviii,1612\nmemorised,1,kinghenryviii,1612\nhatred,1,kinghenryviii,1612\nsixth,1,kinghenryviii,1612\nWorse,1,kinghenryviii,1612\nentering,1,kinghenryviii,1612\nasunder,1,kinghenryviii,1612\nRochford,1,kinghenryviii,1612\nsights,1,kinghenryviii,1612\ntangled,1,kinghenryviii,1612\npledge,1,kinghenryviii,1612\nholds,1,kinghenryviii,1612\nheresies,1,kinghenryviii,1612\nshook,1,kinghenryviii,1612\nshore,1,kinghenryviii,1612\ngetting,1,kinghenryviii,1612\nRequires,1,kinghenryviii,1612\nbigger,1,kinghenryviii,1612\n'guilty,1,kinghenryviii,1612\nchapel,1,kinghenryviii,1612\nquit,1,kinghenryviii,1612\nclean,1,kinghenryviii,1612\nRemembrance,1,kinghenryviii,1612\nportion,1,kinghenryviii,1612\nperniciously,1,kinghenryviii,1612\nwaited,1,kinghenryviii,1612\ngainsay,1,kinghenryviii,1612\nhollow,1,kinghenryviii,1612\ncur,1,kinghenryviii,1612\ncut,1,kinghenryviii,1612\nArise,1,kinghenryviii,1612\ngaping,1,kinghenryviii,1612\npangs,1,kinghenryviii,1612\ncounterfeit,1,kinghenryviii,1612\nrequest,1,kinghenryviii,1612\nforeskirt,1,kinghenryviii,1612\npaved,1,kinghenryviii,1612\ndepth,1,kinghenryviii,1612\nArrest,1,kinghenryviii,1612\nwinter,1,kinghenryviii,1612\nrabble,1,kinghenryviii,1612\nforsooth,1,kinghenryviii,1612\nflood,1,kinghenryviii,1612\nShipwreck'd,1,kinghenryviii,1612\nbesiege,1,kinghenryviii,1612\nstate's,1,kinghenryviii,1612\ndefeat,1,kinghenryviii,1612\nNICHOLAS,1,kinghenryviii,1612\nWherefore,1,kinghenryviii,1612\nresolution,1,kinghenryviii,1612\nbits,1,kinghenryviii,1612\nserenissima,1,kinghenryviii,1612\ntitle's,1,kinghenryviii,1612\nfalsehood,1,kinghenryviii,1612\nnotwithstanding,1,kinghenryviii,1612\nprofits,1,kinghenryviii,1612\nabilities,1,kinghenryviii,1612\nNeglect,1,kinghenryviii,1612\nvainly,1,kinghenryviii,1612\nrobes,1,kinghenryviii,1612\naspire,1,kinghenryviii,1612\nCRANMER's,1,kinghenryviii,1612\ncope,1,kinghenryviii,1612\nmanage,1,kinghenryviii,1612\nprithee,1,kinghenryviii,1612\ncountry's,1,kinghenryviii,1612\nyellow,1,kinghenryviii,1612\nabject,1,kinghenryviii,1612\nhung,1,kinghenryviii,1612\nperils,1,kinghenryviii,1612\nlovely,1,kinghenryviii,1612\nassembled,1,kinghenryviii,1612\nlop,1,kinghenryviii,1612\ncontents,1,kinghenryviii,1612\nattendance,1,kinghenryviii,1612\nneglected,1,kinghenryviii,1612\ncomforting,1,kinghenryviii,1612\ngossips,1,kinghenryviii,1612\nfairer,1,kinghenryviii,1612\nexamples,1,kinghenryviii,1612\nlow,1,kinghenryviii,1612\nstartle,1,kinghenryviii,1612\nugly,1,kinghenryviii,1612\nPrince,1,kinghenryviii,1612\neasiness,1,kinghenryviii,1612\nsect,1,kinghenryviii,1612\nsuits,1,kinghenryviii,1612\nneedful,1,kinghenryviii,1612\npotently,1,kinghenryviii,1612\nSeek,1,kinghenryviii,1612\nprimero,1,kinghenryviii,1612\nstagger,1,kinghenryviii,1612\ninsolence,1,kinghenryviii,1612\n'perceive,1,kinghenryviii,1612\nheralds,1,kinghenryviii,1612\nClapp'd,1,kinghenryviii,1612\nseem,1,kinghenryviii,1612\nsingular,1,kinghenryviii,1612\nreap'd,1,kinghenryviii,1612\nfights,1,kinghenryviii,1612\nFresher,1,kinghenryviii,1612\nJuly,1,kinghenryviii,1612\nPursuivants,1,kinghenryviii,1612\ncow,1,kinghenryviii,1612\nLie,1,kinghenryviii,1612\n'twixt,1,kinghenryviii,1612\nfriendless,1,kinghenryviii,1612\ncourtesy,1,kinghenryviii,1612\nundertakes,1,kinghenryviii,1612\nvessel,1,kinghenryviii,1612\ncondition,1,kinghenryviii,1612\ntells,1,kinghenryviii,1612\nprudent,1,kinghenryviii,1612\nperiod,1,kinghenryviii,1612\nliking,1,kinghenryviii,1612\ncost,1,kinghenryviii,1612\nsweep,1,kinghenryviii,1612\ntidings,1,kinghenryviii,1612\ncramm'd,1,kinghenryviii,1612\nTrue,1,kinghenryviii,1612\nbowls,1,kinghenryviii,1612\nvehemency,1,kinghenryviii,1612\nsetting,1,kinghenryviii,1612\ncensurers,1,kinghenryviii,1612\nreplied,1,kinghenryviii,1612\nthrust,1,kinghenryviii,1612\nKilling,1,kinghenryviii,1612\nsecrecy,1,kinghenryviii,1612\nUpward,1,kinghenryviii,1612\nnor's,1,kinghenryviii,1612\nincrease,1,kinghenryviii,1612\nfireworks,1,kinghenryviii,1612\ncord,1,kinghenryviii,1612\npestilent,1,kinghenryviii,1612\nObeying,1,kinghenryviii,1612\nAbbey,1,kinghenryviii,1612\nheels,1,kinghenryviii,1612\nRepeat,1,kinghenryviii,1612\nNorthampton,1,kinghenryviii,1612\ntherein,1,kinghenryviii,1612\nwe're,1,kinghenryviii,1612\nBullen's,1,kinghenryviii,1612\nstopped,1,kinghenryviii,1612\nkindred,1,kinghenryviii,1612\ntied,1,kinghenryviii,1612\nUse,1,kinghenryviii,1612\napartment,1,kinghenryviii,1612\ngods,1,kinghenryviii,1612\nTaxation,1,kinghenryviii,1612\nmirror,1,kinghenryviii,1612\nswitches,1,kinghenryviii,1612\nSent,1,kinghenryviii,1612\nexcellence,1,kinghenryviii,1612\nCry,1,kinghenryviii,1612\nsell,1,kinghenryviii,1612\ntide,1,kinghenryviii,1612\ncapacity,1,kinghenryviii,1612\nForthwith,1,kinghenryviii,1612\npost,1,kinghenryviii,1612\nwhilst,1,kinghenryviii,1612\ngloss,1,kinghenryviii,1612\noppose,1,kinghenryviii,1612\nprison,1,kinghenryviii,1612\nled,1,kinghenryviii,1612\nreform'd,1,kinghenryviii,1612\nBlomer,1,kinghenryviii,1612\nporringer,1,kinghenryviii,1612\nmother's,1,kinghenryviii,1612\nreputed,1,kinghenryviii,1612\nundo,1,kinghenryviii,1612\nalas,1,kinghenryviii,1612\nSelf,1,kinghenryviii,1612\nadds,1,kinghenryviii,1612\nAnte,1,kinghenryviii,1612\nBayonne,1,kinghenryviii,1612\nswell,1,kinghenryviii,1612\nbade,1,kinghenryviii,1612\nAdmit,1,kinghenryviii,1612\nair'd,1,kinghenryviii,1612\nprimest,1,kinghenryviii,1612\nPower,1,kinghenryviii,1612\nherald,1,kinghenryviii,1612\ntrap,1,kinghenryviii,1612\nhedges,1,kinghenryviii,1612\nTa'en,1,kinghenryviii,1612\ncommonalty,1,kinghenryviii,1612\nCountesses,1,kinghenryviii,1612\nFears,1,kinghenryviii,1612\nhighest,1,kinghenryviii,1612\nmethought,1,kinghenryviii,1612\nsincerely,1,kinghenryviii,1612\nlip,1,kinghenryviii,1612\ncrooked,1,kinghenryviii,1612\nperk'd,1,kinghenryviii,1612\nmissed,1,kinghenryviii,1612\nMontacute,1,kinghenryviii,1612\nHeaven's,1,kinghenryviii,1612\nheated,1,kinghenryviii,1612\nunbounded,1,kinghenryviii,1612\nTanta,1,kinghenryviii,1612\ntriumph,1,kinghenryviii,1612\nuntil,1,kinghenryviii,1612\ntrow,1,kinghenryviii,1612\nsorely,1,kinghenryviii,1612\nbrow,1,kinghenryviii,1612\nspider,1,kinghenryviii,1612\nslow,1,kinghenryviii,1612\nlordship's,1,kinghenryviii,1612\ntorch,1,kinghenryviii,1612\nconverting,1,kinghenryviii,1612\nsleek,1,kinghenryviii,1612\neffects,1,kinghenryviii,1612\ncolleges,1,kinghenryviii,1612\nslumber,1,kinghenryviii,1612\npersuade,1,kinghenryviii,1612\neat,1,kinghenryviii,1612\nsuitor,1,kinghenryviii,1612\nServe,1,kinghenryviii,1612\nlays,1,kinghenryviii,1612\nseated,1,kinghenryviii,1612\ndespairs,1,kinghenryviii,1612\nInduced,1,kinghenryviii,1612\nsuccessors,1,kinghenryviii,1612\nDivers,1,kinghenryviii,1612\ndebate,1,kinghenryviii,1612\nevening,1,kinghenryviii,1612\ntreasonous,1,kinghenryviii,1612\ntargets,1,kinghenryviii,1612\nsounder,1,kinghenryviii,1612\nwands,1,kinghenryviii,1612\nwearing,1,kinghenryviii,1612\nfixeth,1,kinghenryviii,1612\nsounded,1,kinghenryviii,1612\nKisses,1,kinghenryviii,1612\nstarts,1,kinghenryviii,1612\nallied,1,kinghenryviii,1612\nGreater,1,kinghenryviii,1612\ncareful,1,kinghenryviii,1612\nspite,1,kinghenryviii,1612\ndisposing,1,kinghenryviii,1612\nsplitting,1,kinghenryviii,1612\nspavin,1,kinghenryviii,1612\ncommitting,1,kinghenryviii,1612\nfuture,1,kinghenryviii,1612\nPepin,1,kinghenryviii,1612\npinked,1,kinghenryviii,1612\nconsequence,1,kinghenryviii,1612\nsmiling,1,kinghenryviii,1612\ndepths,1,kinghenryviii,1612\nbegins,1,kinghenryviii,1612\n'Hath,1,kinghenryviii,1612\nstarve,1,kinghenryviii,1612\npatient's,1,kinghenryviii,1612\nParis,1,kinghenryviii,1612\nAnother,1,kinghenryviii,1612\nkindling,1,kinghenryviii,1612\ncompounded,1,kinghenryviii,1612\ntrusted,1,kinghenryviii,1612\nwarlike,1,kinghenryviii,1612\ndealing,1,kinghenryviii,1612\nGregory,1,kinghenryviii,1612\nheaded,1,kinghenryviii,1612\nswim,1,kinghenryviii,1612\nseemly,1,kinghenryviii,1612\nphoenix,1,kinghenryviii,1612\ntravell'd,1,kinghenryviii,1612\nmaker,1,kinghenryviii,1612\nEPILOGUE,1,kinghenryviii,1612\npull'd,1,kinghenryviii,1612\ntires,1,kinghenryviii,1612\nfabulous,1,kinghenryviii,1612\nEARL,1,kinghenryviii,1612\ndye,1,kinghenryviii,1612\nemployment,1,kinghenryviii,1612\nevils,1,kinghenryviii,1612\nLimbo,1,kinghenryviii,1612\nrights,1,kinghenryviii,1612\nconformable,1,kinghenryviii,1612\nrested,1,kinghenryviii,1612\ndeterminate,1,kinghenryviii,1612\nverified,1,kinghenryviii,1612\nburnt,1,kinghenryviii,1612\nconfirmation,1,kinghenryviii,1612\nunqueen'd,1,kinghenryviii,1612\nfully,1,kinghenryviii,1612\nbody's,1,kinghenryviii,1612\nenvied,1,kinghenryviii,1612\nflew,1,kinghenryviii,1612\nMet,1,kinghenryviii,1612\ndebating,1,kinghenryviii,1612\ncounty,1,kinghenryviii,1612\nthinking,1,kinghenryviii,1612\nattorney,1,kinghenryviii,1612\nfashion,1,kinghenryviii,1612\npunishment,1,kinghenryviii,1612\nDeals,1,kinghenryviii,1612\nrinsing,1,kinghenryviii,1612\npernicious,1,kinghenryviii,1612\nquarrels,1,kinghenryviii,1612\nwound,1,kinghenryviii,1612\nbellied,1,kinghenryviii,1612\nAndren,1,kinghenryviii,1612\nwilder,1,kinghenryviii,1612\nAbused,1,kinghenryviii,1612\nForsooth,1,kinghenryviii,1612\nwithdraw,1,kinghenryviii,1612\nextortion,1,kinghenryviii,1612\nharmony,1,kinghenryviii,1612\nOrpheus,1,kinghenryviii,1612\nmusings,1,kinghenryviii,1612\ninspired,1,kinghenryviii,1612\nlion,1,kinghenryviii,1612\nAmen,1,kinghenryviii,1612\nlark,1,kinghenryviii,1612\ncontradicted,1,kinghenryviii,1612\nSleep,1,kinghenryviii,1612\nPossession,1,kinghenryviii,1612\nDashing,1,kinghenryviii,1612\nwhiles,1,kinghenryviii,1612\nsometimes,1,kinghenryviii,1612\nPierce,1,kinghenryviii,1612\nissue's,1,kinghenryviii,1612\nRespecting,1,kinghenryviii,1612\nphrase,1,kinghenryviii,1612\npeck,1,kinghenryviii,1612\nWherever,1,kinghenryviii,1612\nProduce,1,kinghenryviii,1612\nDoor,1,kinghenryviii,1612\ntenderness,1,kinghenryviii,1612\nsheathe,1,kinghenryviii,1612\ncitizens,1,kinghenryviii,1612\nknight's,1,kinghenryviii,1612\ngravity,1,kinghenryviii,1612\ncopper,1,kinghenryviii,1612\nfitness,1,kinghenryviii,1612\ntruant,1,kinghenryviii,1612\nsleeping,1,kinghenryviii,1612\ncompel,1,kinghenryviii,1612\nchooses,1,kinghenryviii,1612\nLooking,1,kinghenryviii,1612\ndiscontented,1,kinghenryviii,1612\nimporting,1,kinghenryviii,1612\nbaiting,1,kinghenryviii,1612\nstretch'd,1,kinghenryviii,1612\nextend,1,kinghenryviii,1612\ngets,1,kinghenryviii,1612\nSalisbury,1,kinghenryviii,1612\npagan,1,kinghenryviii,1612\nwhet,1,kinghenryviii,1612\nharms,1,kinghenryviii,1612\nrevenged,1,kinghenryviii,1612\nlevied,1,kinghenryviii,1612\nhurt,1,kinghenryviii,1612\nwere't,1,kinghenryviii,1612\njustified,1,kinghenryviii,1612\nConfessor,1,kinghenryviii,1612\nBanish'd,1,kinghenryviii,1612\nappetite,1,kinghenryviii,1612\nNorthumberland,1,kinghenryviii,1612\ncordial,1,kinghenryviii,1612\nfathom,1,kinghenryviii,1612\nentreats,1,kinghenryviii,1612\nmow,1,kinghenryviii,1612\npassages,1,kinghenryviii,1612\nleading,1,kinghenryviii,1612\ncorruption,1,kinghenryviii,1612\nshade,1,kinghenryviii,1612\nDeath,1,kinghenryviii,1612\nassurance,1,kinghenryviii,1612\nsimple,1,kinghenryviii,1612\nTherein,1,kinghenryviii,1612\nwitty,1,kinghenryviii,1612\n'This,1,kinghenryviii,1612\nspring,1,kinghenryviii,1612\nentrance,1,kinghenryviii,1612\ncornets,1,kinghenryviii,1612\ntardy,1,kinghenryviii,1612\nwidow,1,kinghenryviii,1612\nPriests,1,kinghenryviii,1612\nrises,1,kinghenryviii,1612\npayment,1,kinghenryviii,1612\nexpense,1,kinghenryviii,1612\npattern,1,kinghenryviii,1612\njudged,1,kinghenryviii,1612\nColbrand,1,kinghenryviii,1612\nfail'd,1,kinghenryviii,1612\ndog,1,kinghenryviii,1612\nprovide,1,kinghenryviii,1612\nArthur,1,kinghenryviii,1612\npebbles,1,kinghenryviii,1612\nharsh,1,kinghenryviii,1612\nconfine,1,kinghenryviii,1612\nmud,1,kinghenryviii,1612\nhonour's,1,kinghenryviii,1612\nHung,1,kinghenryviii,1612\nAbsolved,1,kinghenryviii,1612\nKATHARINE's,1,kinghenryviii,1612\nLest,1,kinghenryviii,1612\nensued,1,kinghenryviii,1612\nframe,1,kinghenryviii,1612\nchoicest,1,kinghenryviii,1612\nSeveral,1,kinghenryviii,1612\nsounding,1,kinghenryviii,1612\ndue,1,kinghenryviii,1612\nPowle's,1,kinghenryviii,1612\nliquor,1,kinghenryviii,1612\n'Room,1,kinghenryviii,1612\nRich,1,kinghenryviii,1612\ncatch,1,kinghenryviii,1612\nprivily,1,kinghenryviii,1612\nLondoners,1,kinghenryviii,1612\ndispatch,1,kinghenryviii,1612\ntop,1,kinghenryviii,1612\nfellowship,1,kinghenryviii,1612\ndry,1,kinghenryviii,1612\ngreat'st,1,kinghenryviii,1612\nliest,1,kinghenryviii,1612\nlame,1,kinghenryviii,1612\nproclamation,1,kinghenryviii,1612\nblossoms,1,kinghenryviii,1612\ninter,1,kinghenryviii,1612\ninstantly,1,kinghenryviii,1612\nmonths,1,kinghenryviii,1612\nBring,1,kinghenryviii,1612\nDRAMATIS,1,kinghenryviii,1612\nreverent,1,kinghenryviii,1612\nsergeant,1,kinghenryviii,1612\ndilatory,1,kinghenryviii,1612\nprinces',1,kinghenryviii,1612\ntil,1,kinghenryviii,1612\nvenom,1,kinghenryviii,1612\nphysician,1,kinghenryviii,1612\ntip,1,kinghenryviii,1612\nTouch,1,kinghenryviii,1612\nvacant,1,kinghenryviii,1612\narraignment,1,kinghenryviii,1612\ntripping,1,kinghenryviii,1612\nDesires,1,kinghenryviii,1612\nfrankly,1,kinghenryviii,1612\nusurper,1,kinghenryviii,1612\ntendence,1,kinghenryviii,1612\nFail,1,kinghenryviii,1612\nrewards,1,kinghenryviii,1612\nambitious,1,kinghenryviii,1612\nobedient,1,kinghenryviii,1612\ncakes,1,kinghenryviii,1612\ntrees,1,kinghenryviii,1612\nwills,1,kinghenryviii,1612\nstol'n,1,kinghenryviii,1612\nHitting,1,kinghenryviii,1612\ndew,1,kinghenryviii,1612\nTalk,1,kinghenryviii,1612\nparagon'd,1,kinghenryviii,1612\nwenches,1,kinghenryviii,1612\nconclave,1,kinghenryviii,1612\npress'd,1,kinghenryviii,1612\nCarried,1,kinghenryviii,1612\nholdeth,1,kinghenryviii,1612\ntainted,1,kinghenryviii,1612\ntake't,1,kinghenryviii,1612\nnumberless,1,kinghenryviii,1612\npursuivants,1,kinghenryviii,1612\nfullers,1,kinghenryviii,1612\nsay't,1,kinghenryviii,1612\ndedicates,1,kinghenryviii,1612\nkill,1,kinghenryviii,1612\njustly,1,kinghenryviii,1612\nshire,1,kinghenryviii,1612\nrepair,1,kinghenryviii,1612\nbids,1,kinghenryviii,1612\navaunt,1,kinghenryviii,1612\nlack,1,kinghenryviii,1612\nshape,1,kinghenryviii,1612\nintends,1,kinghenryviii,1612\nKept,1,kinghenryviii,1612\nsubjects',1,kinghenryviii,1612\ndoctrine,1,kinghenryviii,1612\nLovell's,1,kinghenryviii,1612\nundertake,1,kinghenryviii,1612\ndim,1,kinghenryviii,1612\nchambers,1,kinghenryviii,1612\nobserving,1,kinghenryviii,1612\ncrowd,1,kinghenryviii,1612\nexempt,1,kinghenryviii,1612\ngrounded,1,kinghenryviii,1612\nDisdainful,1,kinghenryviii,1612\nprivity,1,kinghenryviii,1612\nsummer,1,kinghenryviii,1612\ninterpreters,1,kinghenryviii,1612\nprofession,2,kinghenryviii,1612\ndeputy,2,kinghenryviii,1612\ntroubles,2,kinghenryviii,1612\nforbid,2,kinghenryviii,1612\nstaves,2,kinghenryviii,1612\ngrew,2,kinghenryviii,1612\nports,2,kinghenryviii,1612\nrectify,2,kinghenryviii,1612\nLORD,2,kinghenryviii,1612\ngroom,2,kinghenryviii,1612\nfancy,2,kinghenryviii,1612\ninfant,2,kinghenryviii,1612\nmotion,2,kinghenryviii,1612\ncountry,2,kinghenryviii,1612\ndream'd,2,kinghenryviii,1612\nweary,2,kinghenryviii,1612\nwish'd,2,kinghenryviii,1612\ncomplaints,2,kinghenryviii,1612\nfollowing,2,kinghenryviii,1612\npossible,2,kinghenryviii,1612\nreign'd,2,kinghenryviii,1612\ntreasure,2,kinghenryviii,1612\nknell,2,kinghenryviii,1612\nwoman's,2,kinghenryviii,1612\nlawful,2,kinghenryviii,1612\npitying,2,kinghenryviii,1612\nlower,2,kinghenryviii,1612\nzeal,2,kinghenryviii,1612\nbones,2,kinghenryviii,1612\nmend,2,kinghenryviii,1612\nspoons,2,kinghenryviii,1612\nWomen,2,kinghenryviii,1612\nrather,2,kinghenryviii,1612\nbounteous,2,kinghenryviii,1612\nvain,2,kinghenryviii,1612\nspake,2,kinghenryviii,1612\nBlack,2,kinghenryviii,1612\nsight,2,kinghenryviii,1612\nhonourable,2,kinghenryviii,1612\nHeld,2,kinghenryviii,1612\nhearted,2,kinghenryviii,1612\nrichly,2,kinghenryviii,1612\ndrink,2,kinghenryviii,1612\nEre,2,kinghenryviii,1612\nwithal,2,kinghenryviii,1612\nnought,2,kinghenryviii,1612\npress,2,kinghenryviii,1612\nlies,2,kinghenryviii,1612\nbishops,2,kinghenryviii,1612\nremain,2,kinghenryviii,1612\nPace,2,kinghenryviii,1612\ndemand,2,kinghenryviii,1612\nagreed,2,kinghenryviii,1612\ncast,2,kinghenryviii,1612\nlustre,2,kinghenryviii,1612\nOnce,2,kinghenryviii,1612\nperformance,2,kinghenryviii,1612\nsoon,2,kinghenryviii,1612\namazed,2,kinghenryviii,1612\nstock,2,kinghenryviii,1612\nworking,2,kinghenryviii,1612\nfiddle,2,kinghenryviii,1612\nsap,2,kinghenryviii,1612\nflaw'd,2,kinghenryviii,1612\nstream,2,kinghenryviii,1612\nscarlet,2,kinghenryviii,1612\nassembly,2,kinghenryviii,1612\ncrying,2,kinghenryviii,1612\nlily,2,kinghenryviii,1612\nKeep,2,kinghenryviii,1612\nafterwards,2,kinghenryviii,1612\nsubjects,2,kinghenryviii,1612\nMuch,2,kinghenryviii,1612\nhabits,2,kinghenryviii,1612\nfunction,2,kinghenryviii,1612\nconfessions,2,kinghenryviii,1612\ncheer,2,kinghenryviii,1612\nundoing,2,kinghenryviii,1612\nwants,2,kinghenryviii,1612\nvoices,2,kinghenryviii,1612\ngolden,2,kinghenryviii,1612\nAmbassador,2,kinghenryviii,1612\nricher,2,kinghenryviii,1612\nfreedom,2,kinghenryviii,1612\nwait,2,kinghenryviii,1612\nvisitation,2,kinghenryviii,1612\nsix,2,kinghenryviii,1612\nsuns,2,kinghenryviii,1612\ncustoms,2,kinghenryviii,1612\nwarrant,2,kinghenryviii,1612\nbody,2,kinghenryviii,1612\n'twere,2,kinghenryviii,1612\nlight,2,kinghenryviii,1612\nlaugh'd,2,kinghenryviii,1612\ndeceived,2,kinghenryviii,1612\nwake,2,kinghenryviii,1612\nblessedness,2,kinghenryviii,1612\ncradle,2,kinghenryviii,1612\nvine,2,kinghenryviii,1612\nsteps,2,kinghenryviii,1612\nsworn,2,kinghenryviii,1612\n'I,2,kinghenryviii,1612\ncountenance,2,kinghenryviii,1612\nprejudice,2,kinghenryviii,1612\nit's,2,kinghenryviii,1612\nbow'd,2,kinghenryviii,1612\ninterview,2,kinghenryviii,1612\n't,2,kinghenryviii,1612\nWait,2,kinghenryviii,1612\nsecond,2,kinghenryviii,1612\nbeloved,2,kinghenryviii,1612\ninstruct,2,kinghenryviii,1612\nwings,2,kinghenryviii,1612\nThanks,2,kinghenryviii,1612\nstuff,2,kinghenryviii,1612\nSpain,2,kinghenryviii,1612\nMayor,2,kinghenryviii,1612\nappear'd,2,kinghenryviii,1612\ntaught,2,kinghenryviii,1612\nworse,2,kinghenryviii,1612\nfelt,2,kinghenryviii,1612\nfight,2,kinghenryviii,1612\nHarry,2,kinghenryviii,1612\nGuildford,2,kinghenryviii,1612\nhappen,2,kinghenryviii,1612\nbrain,2,kinghenryviii,1612\ncourtier,2,kinghenryviii,1612\nshower,2,kinghenryviii,1612\nborn,2,kinghenryviii,1612\nproceeded,2,kinghenryviii,1612\nfault,2,kinghenryviii,1612\nendeavours,2,kinghenryviii,1612\nrelate,2,kinghenryviii,1612\ndearly,2,kinghenryviii,1612\nwhite,2,kinghenryviii,1612\nwilling,2,kinghenryviii,1612\nWherein,2,kinghenryviii,1612\nLeave,2,kinghenryviii,1612\nWhilst,2,kinghenryviii,1612\ncomplete,2,kinghenryviii,1612\nreverence,2,kinghenryviii,1612\nfeet,2,kinghenryviii,1612\nbeaten,2,kinghenryviii,1612\ntemporal,2,kinghenryviii,1612\nclaim,2,kinghenryviii,1612\nhabited,2,kinghenryviii,1612\nspeaking,2,kinghenryviii,1612\nwine,2,kinghenryviii,1612\nSecretaries,2,kinghenryviii,1612\nceremony,2,kinghenryviii,1612\nporter,2,kinghenryviii,1612\ncuckold,2,kinghenryviii,1612\nkneel,2,kinghenryviii,1612\nushered,2,kinghenryviii,1612\nMight,2,kinghenryviii,1612\nDare,2,kinghenryviii,1612\nedge,2,kinghenryviii,1612\ndirectly,2,kinghenryviii,1612\nstop,2,kinghenryviii,1612\nwars,2,kinghenryviii,1612\nmerely,2,kinghenryviii,1612\nbond,2,kinghenryviii,1612\ndoubts,2,kinghenryviii,1612\ncunning,2,kinghenryviii,1612\nrule,2,kinghenryviii,1612\nstirr'd,2,kinghenryviii,1612\nmatter,2,kinghenryviii,1612\nassent,2,kinghenryviii,1612\nFollow,2,kinghenryviii,1612\nmenaced,2,kinghenryviii,1612\naspect,2,kinghenryviii,1612\nurge,2,kinghenryviii,1612\nnephew,2,kinghenryviii,1612\nwherefore,2,kinghenryviii,1612\nauthority,2,kinghenryviii,1612\nVIII's,2,kinghenryviii,1612\nPlace,2,kinghenryviii,1612\nstrongly,2,kinghenryviii,1612\npillars,2,kinghenryviii,1612\nhat,2,kinghenryviii,1612\nbestowing,2,kinghenryviii,1612\nWhile,2,kinghenryviii,1612\ncommons,2,kinghenryviii,1612\nsign,2,kinghenryviii,1612\ngranted,2,kinghenryviii,1612\nflattery,2,kinghenryviii,1612\nAm,2,kinghenryviii,1612\npay,2,kinghenryviii,1612\nscarce,2,kinghenryviii,1612\nchaste,2,kinghenryviii,1612\nshortly,2,kinghenryviii,1612\ndesperate,2,kinghenryviii,1612\nChartreux,2,kinghenryviii,1612\ndoctors,2,kinghenryviii,1612\nitself,2,kinghenryviii,1612\nO',2,kinghenryviii,1612\nbar,2,kinghenryviii,1612\nCouncil,2,kinghenryviii,1612\nkept,2,kinghenryviii,1612\ncanst,2,kinghenryviii,1612\ngallery,2,kinghenryviii,1612\npitied,2,kinghenryviii,1612\ntear,2,kinghenryviii,1612\nSomething,2,kinghenryviii,1612\nsovereignty,2,kinghenryviii,1612\nblest,2,kinghenryviii,1612\ngoods,2,kinghenryviii,1612\nabbot,2,kinghenryviii,1612\nHad,2,kinghenryviii,1612\nBuckingham's,2,kinghenryviii,1612\nears,2,kinghenryviii,1612\nchanges,2,kinghenryviii,1612\nyourselves,2,kinghenryviii,1612\ngodfather,2,kinghenryviii,1612\nobey,2,kinghenryviii,1612\nplants,2,kinghenryviii,1612\nsits,2,kinghenryviii,1612\n'the,2,kinghenryviii,1612\nbehind,2,kinghenryviii,1612\n'Twould,2,kinghenryviii,1612\nYourself,2,kinghenryviii,1612\nchildren,2,kinghenryviii,1612\nSS,2,kinghenryviii,1612\nargue,2,kinghenryviii,1612\ntricks,2,kinghenryviii,1612\ndoth,2,kinghenryviii,1612\nsomewhat,2,kinghenryviii,1612\ndisperse,2,kinghenryviii,1612\nSaint,2,kinghenryviii,1612\nPut,2,kinghenryviii,1612\nSaid,2,kinghenryviii,1612\nAbove,2,kinghenryviii,1612\nsins,2,kinghenryviii,1612\nsing,2,kinghenryviii,1612\ncalling,2,kinghenryviii,1612\nupper,2,kinghenryviii,1612\nlately,2,kinghenryviii,1612\ncrowned,2,kinghenryviii,1612\nchafed,2,kinghenryviii,1612\ninstant,2,kinghenryviii,1612\nbreath,2,kinghenryviii,1612\nCannot,2,kinghenryviii,1612\nbetray,2,kinghenryviii,1612\naim,2,kinghenryviii,1612\nair,2,kinghenryviii,1612\nexcellent,2,kinghenryviii,1612\nconsider,2,kinghenryviii,1612\nsafe,2,kinghenryviii,1612\nlegs,2,kinghenryviii,1612\nem,2,kinghenryviii,1612\nweigh'd,2,kinghenryviii,1612\ndwell,2,kinghenryviii,1612\nliberal,2,kinghenryviii,1612\ndignity,2,kinghenryviii,1612\nseeing,2,kinghenryviii,1612\nseeming,2,kinghenryviii,1612\ntouch'd,2,kinghenryviii,1612\nlady's,2,kinghenryviii,1612\nwaits,2,kinghenryviii,1612\nmemory,2,kinghenryviii,1612\napproach,2,kinghenryviii,1612\nforgotten,2,kinghenryviii,1612\ncured,2,kinghenryviii,1612\nrealm,2,kinghenryviii,1612\nmove,2,kinghenryviii,1612\nboard,2,kinghenryviii,1612\nattending,2,kinghenryviii,1612\nConcerning,2,kinghenryviii,1612\ndelay,2,kinghenryviii,1612\ncommendations,2,kinghenryviii,1612\nutmost,2,kinghenryviii,1612\nthankful,2,kinghenryviii,1612\nteaching,2,kinghenryviii,1612\ngoodness',2,kinghenryviii,1612\nstudies,2,kinghenryviii,1612\ncaused,2,kinghenryviii,1612\ntemper,2,kinghenryviii,1612\nage,2,kinghenryviii,1612\nloud,2,kinghenryviii,1612\nla,2,kinghenryviii,1612\nmoon,2,kinghenryviii,1612\nadd,2,kinghenryviii,1612\nIpswich,2,kinghenryviii,1612\npartners,2,kinghenryviii,1612\nrespite,2,kinghenryviii,1612\njourney,2,kinghenryviii,1612\npure,2,kinghenryviii,1612\nBecause,2,kinghenryviii,1612\nmen's,2,kinghenryviii,1612\nBeen,2,kinghenryviii,1612\ngraves,2,kinghenryviii,1612\nplot,2,kinghenryviii,1612\nattach'd,2,kinghenryviii,1612\nfield,2,kinghenryviii,1612\nhall,2,kinghenryviii,1612\nfrost,2,kinghenryviii,1612\nround,2,kinghenryviii,1612\nArms,2,kinghenryviii,1612\nfashion'd,2,kinghenryviii,1612\nhang,2,kinghenryviii,1612\nplain,2,kinghenryviii,1612\nfoul,2,kinghenryviii,1612\ndrawn,2,kinghenryviii,1612\npang,2,kinghenryviii,1612\npraise,2,kinghenryviii,1612\nexcuse,2,kinghenryviii,1612\nacquaintance,2,kinghenryviii,1612\nmidnight,2,kinghenryviii,1612\nabhor,2,kinghenryviii,1612\nDeserve,2,kinghenryviii,1612\npain,2,kinghenryviii,1612\nLaid,2,kinghenryviii,1612\nwretchedness,2,kinghenryviii,1612\nmayor,2,kinghenryviii,1612\nheretic,2,kinghenryviii,1612\npace,2,kinghenryviii,1612\nbosom,2,kinghenryviii,1612\nfaithful,2,kinghenryviii,1612\nduke's,2,kinghenryviii,1612\nGilbert,2,kinghenryviii,1612\nEighth,2,kinghenryviii,1612\ncourses,2,kinghenryviii,1612\nobey'd,2,kinghenryviii,1612\nobject,2,kinghenryviii,1612\ngirl,2,kinghenryviii,1612\ndews,2,kinghenryviii,1612\nmaiden,2,kinghenryviii,1612\nforms,2,kinghenryviii,1612\nMen's,2,kinghenryviii,1612\nopen'd,2,kinghenryviii,1612\nchance,2,kinghenryviii,1612\nfurnish,2,kinghenryviii,1612\nknock,2,kinghenryviii,1612\nAmong,2,kinghenryviii,1612\nexaction,2,kinghenryviii,1612\ntouch,2,kinghenryviii,1612\nbehavior,2,kinghenryviii,1612\nlonging,2,kinghenryviii,1612\nprecedent,2,kinghenryviii,1612\nventured,2,kinghenryviii,1612\ncontented,2,kinghenryviii,1612\nwhispers,2,kinghenryviii,1612\ntried,2,kinghenryviii,1612\nproofs,2,kinghenryviii,1612\ngodmother,2,kinghenryviii,1612\nsyllable,2,kinghenryviii,1612\npeers,2,kinghenryviii,1612\nnay,2,kinghenryviii,1612\nAgainst,2,kinghenryviii,1612\ncarries,2,kinghenryviii,1612\nempty,2,kinghenryviii,1612\nrose,2,kinghenryviii,1612\nguiltless,2,kinghenryviii,1612\nrascals,2,kinghenryviii,1612\ncurtsies,2,kinghenryviii,1612\nIreland,2,kinghenryviii,1612\nLords,2,kinghenryviii,1612\nmarks,2,kinghenryviii,1612\nrare,2,kinghenryviii,1612\ndisgraces,2,kinghenryviii,1612\nsprung,2,kinghenryviii,1612\nrate,2,kinghenryviii,1612\nview'd,2,kinghenryviii,1612\nbelow,2,kinghenryviii,1612\nremedy,2,kinghenryviii,1612\nspread,2,kinghenryviii,1612\nours,2,kinghenryviii,1612\nhide,2,kinghenryviii,1612\nkneels,2,kinghenryviii,1612\nPresently,2,kinghenryviii,1612\nsubstance,2,kinghenryviii,1612\ncoronal,2,kinghenryviii,1612\nAll's,2,kinghenryviii,1612\narise,2,kinghenryviii,1612\nprogress,2,kinghenryviii,1612\nyou'll,2,kinghenryviii,1612\nTrain,2,kinghenryviii,1612\nawhile,2,kinghenryviii,1612\nsay'st,2,kinghenryviii,1612\nfamous,2,kinghenryviii,1612\nPeck,2,kinghenryviii,1612\nensuing,2,kinghenryviii,1612\neffect,2,kinghenryviii,1612\ndevice,2,kinghenryviii,1612\nmortal,2,kinghenryviii,1612\nRichard,2,kinghenryviii,1612\nsacrifice,2,kinghenryviii,1612\nMaker,2,kinghenryviii,1612\nkisses,2,kinghenryviii,1612\nplead,2,kinghenryviii,1612\ntempest,2,kinghenryviii,1612\npurposed,2,kinghenryviii,1612\nmale,2,kinghenryviii,1612\nwrought,2,kinghenryviii,1612\nblush,2,kinghenryviii,1612\nprocess,2,kinghenryviii,1612\nbelong,2,kinghenryviii,1612\nBearing,2,kinghenryviii,1612\nchief,2,kinghenryviii,1612\nHonour,2,kinghenryviii,1612\napartments,2,kinghenryviii,1612\noracle,2,kinghenryviii,1612\nquoth,2,kinghenryviii,1612\nbrains,2,kinghenryviii,1612\ngreatest,2,kinghenryviii,1612\ninfect,2,kinghenryviii,1612\nheaven's,2,kinghenryviii,1612\nmountain,2,kinghenryviii,1612\narch,2,kinghenryviii,1612\nbrethren,2,kinghenryviii,1612\ntrifle,2,kinghenryviii,1612\nnumber,2,kinghenryviii,1612\ndivorced,2,kinghenryviii,1612\ntrouble,2,kinghenryviii,1612\nGiving,2,kinghenryviii,1612\nFound,2,kinghenryviii,1612\nTied,2,kinghenryviii,1612\nbreed,2,kinghenryviii,1612\nsuspicion,2,kinghenryviii,1612\nPages,2,kinghenryviii,1612\nduchess,2,kinghenryviii,1612\nunderstanding,2,kinghenryviii,1612\nformer,2,kinghenryviii,1612\nsafely,2,kinghenryviii,1612\nsides,2,kinghenryviii,1612\nmessage,2,kinghenryviii,1612\nprivy,2,kinghenryviii,1612\nstomach,2,kinghenryviii,1612\npretence,2,kinghenryviii,1612\nSad,2,kinghenryviii,1612\nloving,2,kinghenryviii,1612\nthird,2,kinghenryviii,1612\nallay,2,kinghenryviii,1612\nhearers,2,kinghenryviii,1612\nSure,2,kinghenryviii,1612\ncount,2,kinghenryviii,1612\nfulfill'd,2,kinghenryviii,1612\nmaidenhead,2,kinghenryviii,1612\nprotection,2,kinghenryviii,1612\nhumility,2,kinghenryviii,1612\nheavy,2,kinghenryviii,1612\nstick,2,kinghenryviii,1612\nwar,2,kinghenryviii,1612\nstaff,2,kinghenryviii,1612\noath,2,kinghenryviii,1612\nsolemnly,2,kinghenryviii,1612\nwag,2,kinghenryviii,1612\nsufferance,2,kinghenryviii,1612\nbrother's,2,kinghenryviii,1612\nwanton,2,kinghenryviii,1612\ndying,2,kinghenryviii,1612\nproceeding,2,kinghenryviii,1612\npounds,2,kinghenryviii,1612\npence,2,kinghenryviii,1612\nhair,2,kinghenryviii,1612\nrobb'd,2,kinghenryviii,1612\nfix'd,2,kinghenryviii,1612\nrequite,2,kinghenryviii,1612\nconference,2,kinghenryviii,1612\nmarry,2,kinghenryviii,1612\nlabour'd,2,kinghenryviii,1612\nlute,2,kinghenryviii,1612\ncompass,2,kinghenryviii,1612\nconsent,2,kinghenryviii,1612\nduly,2,kinghenryviii,1612\nNobles,2,kinghenryviii,1612\nhundred,2,kinghenryviii,1612\nangry,2,kinghenryviii,1612\ngifts,2,kinghenryviii,1612\nfain,2,kinghenryviii,1612\ngarlands,2,kinghenryviii,1612\nground,2,kinghenryviii,1612\nminds,2,kinghenryviii,1612\nthey've,2,kinghenryviii,1612\ncloth,2,kinghenryviii,1612\nsaint,2,kinghenryviii,1612\nutterly,2,kinghenryviii,1612\nfoe,2,kinghenryviii,1612\ncloud,2,kinghenryviii,1612\nProceed,2,kinghenryviii,1612\nfame,2,kinghenryviii,1612\nElizabeth,2,kinghenryviii,1612\nCollars,2,kinghenryviii,1612\ndancing,2,kinghenryviii,1612\nMary,2,kinghenryviii,1612\nminute,2,kinghenryviii,1612\nMark,2,kinghenryviii,1612\nLincoln,2,kinghenryviii,1612\nprofit,2,kinghenryviii,1612\nrich,2,kinghenryviii,1612\nfill,2,kinghenryviii,1612\nAttend,2,kinghenryviii,1612\nBoy,2,kinghenryviii,1612\ncherry,2,kinghenryviii,1612\ncontinue,2,kinghenryviii,1612\nbare,2,kinghenryviii,1612\nanswer'd,2,kinghenryviii,1612\ndivers,2,kinghenryviii,1612\nbite,2,kinghenryviii,1612\nherself,2,kinghenryviii,1612\nFriars,2,kinghenryviii,1612\nperceive,2,kinghenryviii,1612\nThank,2,kinghenryviii,1612\npatient,2,kinghenryviii,1612\nBullens,2,kinghenryviii,1612\ntruth's,2,kinghenryviii,1612\ncensure,2,kinghenryviii,1612\nbird,2,kinghenryviii,1612\nbase,2,kinghenryviii,1612\nCinque,2,kinghenryviii,1612\nmouth'd,2,kinghenryviii,1612\nfate,2,kinghenryviii,1612\nAbergavenny,2,kinghenryviii,1612\nweakness,2,kinghenryviii,1612\nnamed,2,kinghenryviii,1612\nfare,2,kinghenryviii,1612\nboldly,2,kinghenryviii,1612\ncoal,2,kinghenryviii,1612\ncomplaint,2,kinghenryviii,1612\nappearance,2,kinghenryviii,1612\nstroke,2,kinghenryviii,1612\nbays,2,kinghenryviii,1612\nEvery,2,kinghenryviii,1612\neagerly,2,kinghenryviii,1612\nNone,2,kinghenryviii,1612\nLay,2,kinghenryviii,1612\ndozen,2,kinghenryviii,1612\nfall'st,2,kinghenryviii,1612\nMatter,2,kinghenryviii,1612\nloyal,2,kinghenryviii,1612\nasking,2,kinghenryviii,1612\nhorses,2,kinghenryviii,1612\ngives,2,kinghenryviii,1612\ncholer,2,kinghenryviii,1612\nconvenient,2,kinghenryviii,1612\nEnvy,2,kinghenryviii,1612\nalways,2,kinghenryviii,1612\ncrept,2,kinghenryviii,1612\ntalking,2,kinghenryviii,1612\npuppy,2,kinghenryviii,1612\nlook'd,2,kinghenryviii,1612\ndiscretion,2,kinghenryviii,1612\nvalues,2,kinghenryviii,1612\nconclude,2,kinghenryviii,1612\nMine,2,kinghenryviii,1612\nprophecy,2,kinghenryviii,1612\ncorn,2,kinghenryviii,1612\ntree,2,kinghenryviii,1612\nnights,2,kinghenryviii,1612\ncurtain,2,kinghenryviii,1612\ndislike,2,kinghenryviii,1612\nsouls,2,kinghenryviii,1612\nravenous,2,kinghenryviii,1612\nbelieved,2,kinghenryviii,1612\nEdward,2,kinghenryviii,1612\nsend,2,kinghenryviii,1612\ngrieves,2,kinghenryviii,1612\nnurse,2,kinghenryviii,1612\ngrieved,2,kinghenryviii,1612\ncarriage,2,kinghenryviii,1612\nexactions,2,kinghenryviii,1612\nfearing,2,kinghenryviii,1612\ncanopy,2,kinghenryviii,1612\nbestow,2,kinghenryviii,1612\ncoin,2,kinghenryviii,1612\nTwo,2,kinghenryviii,1612\nstorms,2,kinghenryviii,1612\ntrod,2,kinghenryviii,1612\nwrite,2,kinghenryviii,1612\nlazy,2,kinghenryviii,1612\nlordships,2,kinghenryviii,1612\nHowever,2,kinghenryviii,1612\nchaplain,2,kinghenryviii,1612\nforced,2,kinghenryviii,1612\nbishop,2,kinghenryviii,1612\nstraight,2,kinghenryviii,1612\ntaxation,2,kinghenryviii,1612\nsister,2,kinghenryviii,1612\nSpirits,2,kinghenryviii,1612\ntrim,2,kinghenryviii,1612\nmeeting,2,kinghenryviii,1612\nchoir,2,kinghenryviii,1612\nreformation,2,kinghenryviii,1612\nstreet,2,kinghenryviii,1612\nburns,2,kinghenryviii,1612\npleasant,2,kinghenryviii,1612\nmerciful,2,kinghenryviii,1612\nGreat,2,kinghenryviii,1612\ncasts,2,kinghenryviii,1612\nquestion'd,2,kinghenryviii,1612\non's,2,kinghenryviii,1612\npages,2,kinghenryviii,1612\nterror,2,kinghenryviii,1612\nBeseech,2,kinghenryviii,1612\ncredit,2,kinghenryviii,1612\npious,2,kinghenryviii,1612\nbesides,2,kinghenryviii,1612\nlist,2,kinghenryviii,1612\ncompell'd,2,kinghenryviii,1612\ntry,2,kinghenryviii,1612\nshrewd,2,kinghenryviii,1612\npackets,2,kinghenryviii,1612\nalleged,2,kinghenryviii,1612\nextremely,2,kinghenryviii,1612\njudges,2,kinghenryviii,1612\nYou'ld,2,kinghenryviii,1612\nasleep,2,kinghenryviii,1612\nhonour'd,2,kinghenryviii,1612\nweigh,2,kinghenryviii,1612\ncommissions,2,kinghenryviii,1612\nblessing,2,kinghenryviii,1612\nshake,2,kinghenryviii,1612\nshine,2,kinghenryviii,1612\nvex'd,2,kinghenryviii,1612\nToo,2,kinghenryviii,1612\ncommanding,2,kinghenryviii,1612\nhe'll,2,kinghenryviii,1612\nfrail,2,kinghenryviii,1612\nspeaker,2,kinghenryviii,1612\nFall,2,kinghenryviii,1612\n'mongst,2,kinghenryviii,1612\nFind,2,kinghenryviii,1612\ne'er,2,kinghenryviii,1612\ntreason,3,kinghenryviii,1612\ndischarged,3,kinghenryviii,1612\nmeet,3,kinghenryviii,1612\nadvised,3,kinghenryviii,1612\nvanities,3,kinghenryviii,1612\ntook,3,kinghenryviii,1612\nJohn,3,kinghenryviii,1612\nHear,3,kinghenryviii,1612\nheir,3,kinghenryviii,1612\nmistress,3,kinghenryviii,1612\nspeech,3,kinghenryviii,1612\nalike,3,kinghenryviii,1612\nneighbours,3,kinghenryviii,1612\nrock,3,kinghenryviii,1612\nrobe,3,kinghenryviii,1612\nhell,3,kinghenryviii,1612\nEither,3,kinghenryviii,1612\noffer,3,kinghenryviii,1612\nunderstand,3,kinghenryviii,1612\nflow,3,kinghenryviii,1612\nPage,3,kinghenryviii,1612\nappeal,3,kinghenryviii,1612\ninnocence,3,kinghenryviii,1612\nmalicious,3,kinghenryviii,1612\ntrust,3,kinghenryviii,1612\nbreach,3,kinghenryviii,1612\npractises,3,kinghenryviii,1612\nslept,3,kinghenryviii,1612\nruin'd,3,kinghenryviii,1612\ngrown,3,kinghenryviii,1612\nGive,3,kinghenryviii,1612\ngrows,3,kinghenryviii,1612\nbroken,3,kinghenryviii,1612\npurse,3,kinghenryviii,1612\nRemember,3,kinghenryviii,1612\nhearing,3,kinghenryviii,1612\nknaves,3,kinghenryviii,1612\nPembroke,3,kinghenryviii,1612\nBeyond,3,kinghenryviii,1612\npenance,3,kinghenryviii,1612\nbarge,3,kinghenryviii,1612\nthrong,3,kinghenryviii,1612\n'twas,3,kinghenryviii,1612\nforsake,3,kinghenryviii,1612\nbranches,3,kinghenryviii,1612\nraised,3,kinghenryviii,1612\nMusic,3,kinghenryviii,1612\nfaults,3,kinghenryviii,1612\nAttendants,3,kinghenryviii,1612\nconfessor,3,kinghenryviii,1612\ncommon,3,kinghenryviii,1612\nactions,3,kinghenryviii,1612\nenvious,3,kinghenryviii,1612\nloose,3,kinghenryviii,1612\nBishops,3,kinghenryviii,1612\nHere,3,kinghenryviii,1612\nsword,3,kinghenryviii,1612\nseems,3,kinghenryviii,1612\nlength,3,kinghenryviii,1612\nwant,3,kinghenryviii,1612\naccuse,3,kinghenryviii,1612\nambassador,3,kinghenryviii,1612\nobserve,3,kinghenryviii,1612\nbright,3,kinghenryviii,1612\nKimbolton,3,kinghenryviii,1612\nsceptre,3,kinghenryviii,1612\nMarquess,3,kinghenryviii,1612\nbitter,3,kinghenryviii,1612\nknowledge,3,kinghenryviii,1612\nFaith,3,kinghenryviii,1612\nstir,3,kinghenryviii,1612\nsteward,3,kinghenryviii,1612\nutter,3,kinghenryviii,1612\nreligious,3,kinghenryviii,1612\nAh,3,kinghenryviii,1612\nstubborn,3,kinghenryviii,1612\nblown,3,kinghenryviii,1612\nsmile,3,kinghenryviii,1612\nLo,3,kinghenryviii,1612\ncruel,3,kinghenryviii,1612\nstay,3,kinghenryviii,1612\nforce,3,kinghenryviii,1612\nashes,3,kinghenryviii,1612\nsurely,3,kinghenryviii,1612\nease,3,kinghenryviii,1612\npast,3,kinghenryviii,1612\nnobility,3,kinghenryviii,1612\nnobly,3,kinghenryviii,1612\nsought,3,kinghenryviii,1612\ngrief,3,kinghenryviii,1612\nsalute,3,kinghenryviii,1612\ndifference,3,kinghenryviii,1612\npetition,3,kinghenryviii,1612\nbeyond,3,kinghenryviii,1612\njewel,3,kinghenryviii,1612\namongst,3,kinghenryviii,1612\nstronger,3,kinghenryviii,1612\nsink,3,kinghenryviii,1612\nWhither,3,kinghenryviii,1612\ndeep,3,kinghenryviii,1612\npromised,3,kinghenryviii,1612\npapers,3,kinghenryviii,1612\nde,3,kinghenryviii,1612\ngain,3,kinghenryviii,1612\nsuccor,3,kinghenryviii,1612\nconsistory,3,kinghenryviii,1612\nhusband,3,kinghenryviii,1612\nay,3,kinghenryviii,1612\ncomforts,3,kinghenryviii,1612\noffences,3,kinghenryviii,1612\nendure,3,kinghenryviii,1612\nloss,3,kinghenryviii,1612\nSuffolk,3,kinghenryviii,1612\nwherein,3,kinghenryviii,1612\nremoved,3,kinghenryviii,1612\ngreater,3,kinghenryviii,1612\nIt's,3,kinghenryviii,1612\nshow'd,3,kinghenryviii,1612\nserious,3,kinghenryviii,1612\nhot,3,kinghenryviii,1612\nCame,3,kinghenryviii,1612\nchoice,3,kinghenryviii,1612\nreasons,3,kinghenryviii,1612\naxe,3,kinghenryviii,1612\nCall,3,kinghenryviii,1612\nTrumpets,3,kinghenryviii,1612\nappears,3,kinghenryviii,1612\nreach,3,kinghenryviii,1612\nforty,3,kinghenryviii,1612\njoyful,3,kinghenryviii,1612\nShe's,3,kinghenryviii,1612\nweeps,3,kinghenryviii,1612\nstranger,3,kinghenryviii,1612\nreturn'd,3,kinghenryviii,1612\nhate,3,kinghenryviii,1612\nputs,3,kinghenryviii,1612\nCast,3,kinghenryviii,1612\nfresh,3,kinghenryviii,1612\ntrick,3,kinghenryviii,1612\nfed,3,kinghenryviii,1612\nbroke,3,kinghenryviii,1612\nguess,3,kinghenryviii,1612\nlead,3,kinghenryviii,1612\nspoken,3,kinghenryviii,1612\nBetween,3,kinghenryviii,1612\nopinions,3,kinghenryviii,1612\noccasion,3,kinghenryviii,1612\nequal,3,kinghenryviii,1612\nfreeze,3,kinghenryviii,1612\nDUKE,3,kinghenryviii,1612\nrank,3,kinghenryviii,1612\nreport,3,kinghenryviii,1612\nsilence,3,kinghenryviii,1612\nWestminster,3,kinghenryviii,1612\ndistance,3,kinghenryviii,1612\nArchbishop,3,kinghenryviii,1612\nwater,3,kinghenryviii,1612\nnose,3,kinghenryviii,1612\nalmost,3,kinghenryviii,1612\nwonder,3,kinghenryviii,1612\ndaily,3,kinghenryviii,1612\nbears,3,kinghenryviii,1612\nestate,3,kinghenryviii,1612\nchurchman,3,kinghenryviii,1612\nyear,3,kinghenryviii,1612\nborne,3,kinghenryviii,1612\nCampeius,3,kinghenryviii,1612\nTHE,3,kinghenryviii,1612\ncounsellor,3,kinghenryviii,1612\nTherefore,3,kinghenryviii,1612\nere,3,kinghenryviii,1612\nyours,3,kinghenryviii,1612\ntowards,3,kinghenryviii,1612\nleaves,3,kinghenryviii,1612\nreading,3,kinghenryviii,1612\npresently,3,kinghenryviii,1612\nmark,3,kinghenryviii,1612\nthick,3,kinghenryviii,1612\nquench,3,kinghenryviii,1612\ncoronet,3,kinghenryviii,1612\naccompanied,3,kinghenryviii,1612\nmistress',3,kinghenryviii,1612\nexample,3,kinghenryviii,1612\nsays,3,kinghenryviii,1612\nknife,3,kinghenryviii,1612\nhappiness,3,kinghenryviii,1612\nSaw,3,kinghenryviii,1612\nThus,3,kinghenryviii,1612\nstage,3,kinghenryviii,1612\nCar,3,kinghenryviii,1612\nreceive,3,kinghenryviii,1612\ngrowing,3,kinghenryviii,1612\nassure,3,kinghenryviii,1612\nnotice,3,kinghenryviii,1612\ncurses,3,kinghenryviii,1612\nBid,3,kinghenryviii,1612\nserved,3,kinghenryviii,1612\ntaken,3,kinghenryviii,1612\nspleen,3,kinghenryviii,1612\nfalling,3,kinghenryviii,1612\nNoble,3,kinghenryviii,1612\nfile,3,kinghenryviii,1612\nminister,3,kinghenryviii,1612\ngrieve,3,kinghenryviii,1612\nwholesome,3,kinghenryviii,1612\nevil,3,kinghenryviii,1612\ndurst,3,kinghenryviii,1612\nmodesty,3,kinghenryviii,1612\nmethinks,3,kinghenryviii,1612\nword,3,kinghenryviii,1612\nfie,3,kinghenryviii,1612\noffices,3,kinghenryviii,1612\nsafety,3,kinghenryviii,1612\nparticular,3,kinghenryviii,1612\nLead,3,kinghenryviii,1612\nmarried,3,kinghenryviii,1612\nfast,3,kinghenryviii,1612\naccusers,3,kinghenryviii,1612\ncoat,3,kinghenryviii,1612\nScribes,3,kinghenryviii,1612\nreason,3,kinghenryviii,1612\nperish,3,kinghenryviii,1612\nhome,3,kinghenryviii,1612\nWhere's,3,kinghenryviii,1612\nScribe,3,kinghenryviii,1612\ncounsels,3,kinghenryviii,1612\nfavours,3,kinghenryviii,1612\nsatisfied,3,kinghenryviii,1612\npacket,3,kinghenryviii,1612\nsweat,3,kinghenryviii,1612\naught,3,kinghenryviii,1612\nwe'll,3,kinghenryviii,1612\nseen,3,kinghenryviii,1612\neither,3,kinghenryviii,1612\nrender,3,kinghenryviii,1612\nfellows,3,kinghenryviii,1612\nsacred,3,kinghenryviii,1612\nheavenly,3,kinghenryviii,1612\nmodest,3,kinghenryviii,1612\nloyalty,3,kinghenryviii,1612\nKnow,3,kinghenryviii,1612\nblame,3,kinghenryviii,1612\nDeliver,3,kinghenryviii,1612\nhours,3,kinghenryviii,1612\nToward,3,kinghenryviii,1612\nblushing,3,kinghenryviii,1612\nfairly,3,kinghenryviii,1612\nNoblemen,3,kinghenryviii,1612\nsickness,3,kinghenryviii,1612\npurpose,3,kinghenryviii,1612\nmeekness,3,kinghenryviii,1612\nservants,3,kinghenryviii,1612\near,3,kinghenryviii,1612\nspirits,3,kinghenryviii,1612\nalter'd,3,kinghenryviii,1612\ntaint,3,kinghenryviii,1612\npray'd,3,kinghenryviii,1612\nabroad,3,kinghenryviii,1612\nconduct,3,kinghenryviii,1612\nButts,3,kinghenryviii,1612\ndread,3,kinghenryviii,1612\nspiritual,3,kinghenryviii,1612\ncardinals,3,kinghenryviii,1612\nMarry,3,kinghenryviii,1612\nthither,3,kinghenryviii,1612\nmouths,3,kinghenryviii,1612\ninventory,3,kinghenryviii,1612\nconfirm,3,kinghenryviii,1612\nhappily,3,kinghenryviii,1612\nDid,3,kinghenryviii,1612\nfollow,3,kinghenryviii,1612\nweight,3,kinghenryviii,1612\nmiseries,3,kinghenryviii,1612\nTogether,3,kinghenryviii,1612\nwonders,3,kinghenryviii,1612\nchancellor,3,kinghenryviii,1612\npass'd,3,kinghenryviii,1612\nmeditations,3,kinghenryviii,1612\nKneeling,3,kinghenryviii,1612\ncross,3,kinghenryviii,1612\npronounce,3,kinghenryviii,1612\nten,3,kinghenryviii,1612\ndowager,3,kinghenryviii,1612\nenemy,3,kinghenryviii,1612\ntold,4,kinghenryviii,1612\nparted,4,kinghenryviii,1612\nc,4,kinghenryviii,1612\nsuffer,4,kinghenryviii,1612\nfathers,4,kinghenryviii,1612\nhelp,4,kinghenryviii,1612\nhealth,4,kinghenryviii,1612\nrod,4,kinghenryviii,1612\nboys,4,kinghenryviii,1612\nStay,4,kinghenryviii,1612\nsingle,4,kinghenryviii,1612\nfrowning,4,kinghenryviii,1612\nmere,4,kinghenryviii,1612\nprisoner,4,kinghenryviii,1612\nwhile,4,kinghenryviii,1612\nlearn'd,4,kinghenryviii,1612\nappear,4,kinghenryviii,1612\nadvise,4,kinghenryviii,1612\ncontrary,4,kinghenryviii,1612\nscruple,4,kinghenryviii,1612\nbecome,4,kinghenryviii,1612\nyears,4,kinghenryviii,1612\ndance,4,kinghenryviii,1612\nsorrows,4,kinghenryviii,1612\nAn't,4,kinghenryviii,1612\nbrother,4,kinghenryviii,1612\nOnly,4,kinghenryviii,1612\nNicholas,4,kinghenryviii,1612\nnoise,4,kinghenryviii,1612\nblessed,4,kinghenryviii,1612\nblack,4,kinghenryviii,1612\nview,4,kinghenryviii,1612\nI'm,4,kinghenryviii,1612\nenough,4,kinghenryviii,1612\nwalk,4,kinghenryviii,1612\nMarchioness,4,kinghenryviii,1612\nsea,4,kinghenryviii,1612\nworth,4,kinghenryviii,1612\nson,4,kinghenryviii,1612\ndignities,4,kinghenryviii,1612\nVAUX,4,kinghenryviii,1612\nleague,4,kinghenryviii,1612\nreceived,4,kinghenryviii,1612\nante,4,kinghenryviii,1612\nprofess,4,kinghenryviii,1612\nways,4,kinghenryviii,1612\nSands,4,kinghenryviii,1612\nGuard,4,kinghenryviii,1612\nrude,4,kinghenryviii,1612\nothers,4,kinghenryviii,1612\nwishes,4,kinghenryviii,1612\nlanguage,4,kinghenryviii,1612\nPlease,4,kinghenryviii,1612\nhence,4,kinghenryviii,1612\ndied,4,kinghenryviii,1612\ndispleasure,4,kinghenryviii,1612\nLINCOLN,4,kinghenryviii,1612\nparts,4,kinghenryviii,1612\nBullen,4,kinghenryviii,1612\nmanners,4,kinghenryviii,1612\nboy,4,kinghenryviii,1612\nin't,4,kinghenryviii,1612\nHer,4,kinghenryviii,1612\nWithin,4,kinghenryviii,1612\nhit,4,kinghenryviii,1612\nflowers,4,kinghenryviii,1612\nmeans,4,kinghenryviii,1612\nstrangely,4,kinghenryviii,1612\nbid,4,kinghenryviii,1612\nLet's,4,kinghenryviii,1612\nproud,4,kinghenryviii,1612\nwear,4,kinghenryviii,1612\nsurveyor,4,kinghenryviii,1612\nsuddenly,4,kinghenryviii,1612\nused,4,kinghenryviii,1612\nAbout,4,kinghenryviii,1612\nmonk,4,kinghenryviii,1612\nstory,4,kinghenryviii,1612\ndeed,4,kinghenryviii,1612\nconfess,4,kinghenryviii,1612\nbreast,4,kinghenryviii,1612\npromises,4,kinghenryviii,1612\ntongues,4,kinghenryviii,1612\ndead,4,kinghenryviii,1612\nthat's,4,kinghenryviii,1612\ncommitted,4,kinghenryviii,1612\nsmall,4,kinghenryviii,1612\nYea,4,kinghenryviii,1612\nbeholding,4,kinghenryviii,1612\nless,4,kinghenryviii,1612\ntwenty,4,kinghenryviii,1612\nact,4,kinghenryviii,1612\nunmannerly,4,kinghenryviii,1612\nspeaks,4,kinghenryviii,1612\ndeny,4,kinghenryviii,1612\nmighty,4,kinghenryviii,1612\nask,4,kinghenryviii,1612\nfear'd,4,kinghenryviii,1612\nfall'n,4,kinghenryviii,1612\nsecret,4,kinghenryviii,1612\nroot,4,kinghenryviii,1612\nventure,4,kinghenryviii,1612\nmischief,4,kinghenryviii,1612\nmace,4,kinghenryviii,1612\nthings,4,kinghenryviii,1612\nGUILDFORD,4,kinghenryviii,1612\nlearning,4,kinghenryviii,1612\nplaces,4,kinghenryviii,1612\nquestion,4,kinghenryviii,1612\nLook,4,kinghenryviii,1612\nchair,4,kinghenryviii,1612\nCould,4,kinghenryviii,1612\nwoe,4,kinghenryviii,1612\nlabour,4,kinghenryviii,1612\nneed,4,kinghenryviii,1612\nBeing,4,kinghenryviii,1612\nletters,4,kinghenryviii,1612\ndesired,4,kinghenryviii,1612\nHautboys,4,kinghenryviii,1612\nWere,4,kinghenryviii,1612\nget,4,kinghenryviii,1612\ngrave,4,kinghenryviii,1612\nwit,4,kinghenryviii,1612\nwin,4,kinghenryviii,1612\npersons,4,kinghenryviii,1612\nbreak,4,kinghenryviii,1612\nring,4,kinghenryviii,1612\nmoment,4,kinghenryviii,1612\nyou're,4,kinghenryviii,1612\nflourish,4,kinghenryviii,1612\nCan,4,kinghenryviii,1612\nbetween,4,kinghenryviii,1612\nambition,4,kinghenryviii,1612\nthemselves,4,kinghenryviii,1612\ndanger,4,kinghenryviii,1612\nSIR,4,kinghenryviii,1612\nHopkins,4,kinghenryviii,1612\nfaces,4,kinghenryviii,1612\nearthly,4,kinghenryviii,1612\nSurrey,4,kinghenryviii,1612\nforeign,4,kinghenryviii,1612\nwent,4,kinghenryviii,1612\nEven,4,kinghenryviii,1612\nguilty,4,kinghenryviii,1612\nMany,4,kinghenryviii,1612\nta'en,4,kinghenryviii,1612\nholiness,4,kinghenryviii,1612\nwealth,4,kinghenryviii,1612\nlived,4,kinghenryviii,1612\nkiss,4,kinghenryviii,1612\nman's,4,kinghenryviii,1612\nEarl,4,kinghenryviii,1612\ncarry,4,kinghenryviii,1612\nwild,4,kinghenryviii,1612\narticles,4,kinghenryviii,1612\ndangerous,4,kinghenryviii,1612\nstrong,4,kinghenryviii,1612\nalong,4,kinghenryviii,1612\nseek,4,kinghenryviii,1612\ntroth,4,kinghenryviii,1612\nPatience,4,kinghenryviii,1612\ntroop,4,kinghenryviii,1612\ntraitor,4,kinghenryviii,1612\nThings,4,kinghenryviii,1612\nentreat,4,kinghenryviii,1612\nreturn,4,kinghenryviii,1612\ncold,4,kinghenryviii,1612\npope,4,kinghenryviii,1612\nlaws,4,kinghenryviii,1612\nmad,4,kinghenryviii,1612\nlimbs,4,kinghenryviii,1612\nDorset,4,kinghenryviii,1612\nchristening,4,kinghenryviii,1612\nchosen,4,kinghenryviii,1612\nBefore,4,kinghenryviii,1612\nMen,4,kinghenryviii,1612\nliege,4,kinghenryviii,1612\nphysic,4,kinghenryviii,1612\nmoe,4,kinghenryviii,1612\ncontent,4,kinghenryviii,1612\nlaid,4,kinghenryviii,1612\nprincely,4,kinghenryviii,1612\nguests,4,kinghenryviii,1612\nbehold,4,kinghenryviii,1612\nChristendom,4,kinghenryviii,1612\ncommand,4,kinghenryviii,1612\nspirit,4,kinghenryviii,1612\namen,4,kinghenryviii,1612\nusher,4,kinghenryviii,1612\ndie,4,kinghenryviii,1612\nsharp,4,kinghenryviii,1612\nfortunes,4,kinghenryviii,1612\nYou're,5,kinghenryviii,1612\nDuchess,5,kinghenryviii,1612\nfor't,5,kinghenryviii,1612\nwrit,5,kinghenryviii,1612\nhaste,5,kinghenryviii,1612\nNever,5,kinghenryviii,1612\nfinger,5,kinghenryviii,1612\ntears,5,kinghenryviii,1612\nCrier,5,kinghenryviii,1612\nweighty,5,kinghenryviii,1612\nrun,5,kinghenryviii,1612\nWhom,5,kinghenryviii,1612\nSergeant,5,kinghenryviii,1612\nspare,5,kinghenryviii,1612\nmercy,5,kinghenryviii,1612\ndraw,5,kinghenryviii,1612\nWhose,5,kinghenryviii,1612\nstands,5,kinghenryviii,1612\nsin,5,kinghenryviii,1612\nvirtuous,5,kinghenryviii,1612\nsuit,5,kinghenryviii,1612\nTheir,5,kinghenryviii,1612\nServant,5,kinghenryviii,1612\nbetwixt,5,kinghenryviii,1612\npiece,5,kinghenryviii,1612\nGardiner,5,kinghenryviii,1612\nhumbly,5,kinghenryviii,1612\ncorrupt,5,kinghenryviii,1612\nfalse,5,kinghenryviii,1612\nwise,5,kinghenryviii,1612\nruin,5,kinghenryviii,1612\nThough,5,kinghenryviii,1612\nanon,5,kinghenryviii,1612\ndesire,5,kinghenryviii,1612\nIII,5,kinghenryviii,1612\nAy,5,kinghenryviii,1612\nneither,5,kinghenryviii,1612\nStill,5,kinghenryviii,1612\nStand,5,kinghenryviii,1612\nOF,5,kinghenryviii,1612\ncreature,5,kinghenryviii,1612\nIV,5,kinghenryviii,1612\nAlmost,5,kinghenryviii,1612\nquiet,5,kinghenryviii,1612\nweep,5,kinghenryviii,1612\nRe,5,kinghenryviii,1612\nfarewell,5,kinghenryviii,1612\njust,5,kinghenryviii,1612\nlonger,5,kinghenryviii,1612\nLike,5,kinghenryviii,1612\nyea,5,kinghenryviii,1612\nstood,5,kinghenryviii,1612\nlook,5,kinghenryviii,1612\nneeds,5,kinghenryviii,1612\ndear,5,kinghenryviii,1612\npriest,5,kinghenryviii,1612\nmanner,5,kinghenryviii,1612\nwench,5,kinghenryviii,1612\ntrain,5,kinghenryviii,1612\nload,5,kinghenryviii,1612\nrunning,5,kinghenryviii,1612\neasy,5,kinghenryviii,1612\nhard,5,kinghenryviii,1612\nBishop,5,kinghenryviii,1612\nprince,5,kinghenryviii,1612\nforth,5,kinghenryviii,1612\nfool,5,kinghenryviii,1612\nbanquet,5,kinghenryviii,1612\nenemies,5,kinghenryviii,1612\nhaving,5,kinghenryviii,1612\nShould,5,kinghenryviii,1612\nthrough,5,kinghenryviii,1612\nmain,5,kinghenryviii,1612\nmoved,5,kinghenryviii,1612\nenvy,5,kinghenryviii,1612\nproceed,5,kinghenryviii,1612\ntender,5,kinghenryviii,1612\ncoronation,5,kinghenryviii,1612\nmouth,5,kinghenryviii,1612\nSome,5,kinghenryviii,1612\nissue,5,kinghenryviii,1612\nlet's,5,kinghenryviii,1612\nfire,5,kinghenryviii,1612\nclose,5,kinghenryviii,1612\naffairs,5,kinghenryviii,1612\nopinion,5,kinghenryviii,1612\npomp,5,kinghenryviii,1612\noft,5,kinghenryviii,1612\nsorrow,5,kinghenryviii,1612\nmorrow,5,kinghenryviii,1612\nbeseech,5,kinghenryviii,1612\nintegrity,5,kinghenryviii,1612\nrise,5,kinghenryviii,1612\ncommanded,5,kinghenryviii,1612\ngarland,5,kinghenryviii,1612\npride,5,kinghenryviii,1612\nforward,5,kinghenryviii,1612\nends,5,kinghenryviii,1612\nchamberlain,5,kinghenryviii,1612\nrequire,5,kinghenryviii,1612\nEver,5,kinghenryviii,1612\nfail,5,kinghenryviii,1612\ntable,5,kinghenryviii,1612\ncried,5,kinghenryviii,1612\nMake,5,kinghenryviii,1612\npleased,5,kinghenryviii,1612\nletter,5,kinghenryviii,1612\nallow'd,5,kinghenryviii,1612\nis't,5,kinghenryviii,1612\ntalk,5,kinghenryviii,1612\ngentlemen,5,kinghenryviii,1612\nshort,5,kinghenryviii,1612\nWho's,5,kinghenryviii,1612\nseat,5,kinghenryviii,1612\nswear,5,kinghenryviii,1612\nBelieve,5,kinghenryviii,1612\nhouse,5,kinghenryviii,1612\n'twill,5,kinghenryviii,1612\nwretched,5,kinghenryviii,1612\nself,5,kinghenryviii,1612\nlie,5,kinghenryviii,1612\nsleep,5,kinghenryviii,1612\nqueen's,5,kinghenryviii,1612\ndoing,5,kinghenryviii,1612\nMessenger,5,kinghenryviii,1612\nsovereign,5,kinghenryviii,1612\nSince,5,kinghenryviii,1612\nthoughts,5,kinghenryviii,1612\nWithout,5,kinghenryviii,1612\nsilver,5,kinghenryviii,1612\ngoing,5,kinghenryviii,1612\nfollow'd,5,kinghenryviii,1612\nYou'll,5,kinghenryviii,1612\nThy,5,kinghenryviii,1612\nattend,5,kinghenryviii,1612\nHe's,5,kinghenryviii,1612\nTake,5,kinghenryviii,1612\nPATIENCE,5,kinghenryviii,1612\nkind,5,kinghenryviii,1612\nheed,6,kinghenryviii,1612\ndays,6,kinghenryviii,1612\nheld,6,kinghenryviii,1612\ntruly,6,kinghenryviii,1612\nangels,6,kinghenryviii,1612\nalthough,6,kinghenryviii,1612\nAfter,6,kinghenryviii,1612\ngracious,6,kinghenryviii,1612\npaper,6,kinghenryviii,1612\nsomething,6,kinghenryviii,1612\nbound,6,kinghenryviii,1612\ndeliver,6,kinghenryviii,1612\nSuch,6,kinghenryviii,1612\nFarewell,6,kinghenryviii,1612\nwithin,6,kinghenryviii,1612\nlooks,6,kinghenryviii,1612\nworst,6,kinghenryviii,1612\nwrong,6,kinghenryviii,1612\nfalls,6,kinghenryviii,1612\nhumble,6,kinghenryviii,1612\ntitle,6,kinghenryviii,1612\nvoice,6,kinghenryviii,1612\nspoke,6,kinghenryviii,1612\nmorning,6,kinghenryviii,1612\nWhat's,6,kinghenryviii,1612\ntherefore,6,kinghenryviii,1612\nhopes,6,kinghenryviii,1612\nin's,6,kinghenryviii,1612\nwisdom,6,kinghenryviii,1612\nsince,6,kinghenryviii,1612\nHa,6,kinghenryviii,1612\nbed,6,kinghenryviii,1612\nprove,6,kinghenryviii,1612\nCharles,6,kinghenryviii,1612\nPrithee,6,kinghenryviii,1612\nSpeak,6,kinghenryviii,1612\nha,6,kinghenryviii,1612\nearth,6,kinghenryviii,1612\nlose,6,kinghenryviii,1612\nfour,6,kinghenryviii,1612\ncourse,6,kinghenryviii,1612\nopen,6,kinghenryviii,1612\nUnder,6,kinghenryviii,1612\nart,6,kinghenryviii,1612\nhast,6,kinghenryviii,1612\nKing,6,kinghenryviii,1612\nfew,6,kinghenryviii,1612\nnote,6,kinghenryviii,1612\nGarter,6,kinghenryviii,1612\nfreely,6,kinghenryviii,1612\nchild,6,kinghenryviii,1612\ngeneral,6,kinghenryviii,1612\nthere's,6,kinghenryviii,1612\ncure,6,kinghenryviii,1612\nsave,6,kinghenryviii,1612\nburthen,6,kinghenryviii,1612\nbelieve,6,kinghenryviii,1612\ncoming,6,kinghenryviii,1612\nanger,6,kinghenryviii,1612\nThat's,6,kinghenryviii,1612\nsecretary,6,kinghenryviii,1612\nfortune,6,kinghenryviii,1612\ncompany,6,kinghenryviii,1612\neven,6,kinghenryviii,1612\npalace,6,kinghenryviii,1612\ntrumpets,6,kinghenryviii,1612\npardon,6,kinghenryviii,1612\nclear,6,kinghenryviii,1612\nvirtues,6,kinghenryviii,1612\nAnne,6,kinghenryviii,1612\nuse,6,kinghenryviii,1612\nwhom,6,kinghenryviii,1612\nGentlemen,6,kinghenryviii,1612\nhither,6,kinghenryviii,1612\ngoes,6,kinghenryviii,1612\nleast,6,kinghenryviii,1612\nremember,6,kinghenryviii,1612\nDoes,6,kinghenryviii,1612\nSecretary,6,kinghenryviii,1612\non't,6,kinghenryviii,1612\nbeauty,6,kinghenryviii,1612\nrespect,6,kinghenryviii,1612\nshame,6,kinghenryviii,1612\nprincess,6,kinghenryviii,1612\nV,7,kinghenryviii,1612\njoy,7,kinghenryviii,1612\nCardinal,7,kinghenryviii,1612\npleasures,7,kinghenryviii,1612\nNor,7,kinghenryviii,1612\ndeserve,7,kinghenryviii,1612\nNorfolk,7,kinghenryviii,1612\nturn,7,kinghenryviii,1612\ndaughter,7,kinghenryviii,1612\nworthy,7,kinghenryviii,1612\ngrow,7,kinghenryviii,1612\nOne,7,kinghenryviii,1612\nrest,7,kinghenryviii,1612\noffice,7,kinghenryviii,1612\nLadies,7,kinghenryviii,1612\nDo,7,kinghenryviii,1612\nhe's,7,kinghenryviii,1612\nThose,7,kinghenryviii,1612\nto't,7,kinghenryviii,1612\nOn,7,kinghenryviii,1612\nwhole,7,kinghenryviii,1612\nCAPUCIUS,7,kinghenryviii,1612\nHas,7,kinghenryviii,1612\nheads,7,kinghenryviii,1612\nblood,7,kinghenryviii,1612\ngold,7,kinghenryviii,1612\ngot,7,kinghenryviii,1612\nlearned,7,kinghenryviii,1612\nweak,7,kinghenryviii,1612\npeople,7,kinghenryviii,1612\nBUTTS,7,kinghenryviii,1612\nBoth,7,kinghenryviii,1612\nGod's,7,kinghenryviii,1612\nservant,7,kinghenryviii,1612\nfears,7,kinghenryviii,1612\nloves,7,kinghenryviii,1612\nlost,7,kinghenryviii,1612\nill,7,kinghenryviii,1612\nknew,7,kinghenryviii,1612\nready,7,kinghenryviii,1612\nChristian,7,kinghenryviii,1612\ncall'd,7,kinghenryviii,1612\nDOCTOR,7,kinghenryviii,1612\nAre,7,kinghenryviii,1612\njudgment,7,kinghenryviii,1612\nHath,7,kinghenryviii,1612\nfaith,7,kinghenryviii,1612\nmajesty,7,kinghenryviii,1612\nblessings,7,kinghenryviii,1612\nalready,7,kinghenryviii,1612\nknows,7,kinghenryviii,1612\nover,7,kinghenryviii,1612\nfree,7,kinghenryviii,1612\nMade,7,kinghenryviii,1612\nsake,7,kinghenryviii,1612\nSay,7,kinghenryviii,1612\nable,7,kinghenryviii,1612\narms,7,kinghenryviii,1612\nface,7,kinghenryviii,1612\nnews,7,kinghenryviii,1612\ntakes,7,kinghenryviii,1612\nTill,7,kinghenryviii,1612\nthree,7,kinghenryviii,1612\nwork,7,kinghenryviii,1612\nfit,7,kinghenryviii,1612\nne'er,7,kinghenryviii,1612\nlordship,7,kinghenryviii,1612\nemperor,7,kinghenryviii,1612\nHenry,7,kinghenryviii,1612\nunto,7,kinghenryviii,1612\nseal,7,kinghenryviii,1612\nalone,7,kinghenryviii,1612\npresence,7,kinghenryviii,1612\ndivorce,7,kinghenryviii,1612\nsound,7,kinghenryviii,1612\ncry,7,kinghenryviii,1612\nmet,7,kinghenryviii,1612\nheartily,7,kinghenryviii,1612\nCranmer,7,kinghenryviii,1612\nWhere,7,kinghenryviii,1612\nsudden,7,kinghenryviii,1612\ncharity,7,kinghenryviii,1612\ncrown,7,kinghenryviii,1612\norder,7,kinghenryviii,1612\nLovell,8,kinghenryviii,1612\nanswer,8,kinghenryviii,1612\no'er,8,kinghenryviii,1612\nKeeper,8,kinghenryviii,1612\nhonours,8,kinghenryviii,1612\nthought,8,kinghenryviii,1612\ncardinal's,8,kinghenryviii,1612\nMust,8,kinghenryviii,1612\ncharge,8,kinghenryviii,1612\nsad,8,kinghenryviii,1612\ncall,8,kinghenryviii,1612\nanother,8,kinghenryviii,1612\nmerry,8,kinghenryviii,1612\nread,8,kinghenryviii,1612\nFrance,8,kinghenryviii,1612\nprinces,8,kinghenryviii,1612\nsun,8,kinghenryviii,1612\nabove,8,kinghenryviii,1612\nmusic,8,kinghenryviii,1612\npatience,8,kinghenryviii,1612\namong,8,kinghenryviii,1612\narchbishop,8,kinghenryviii,1612\nGo,8,kinghenryviii,1612\nmeant,8,kinghenryviii,1612\nbless,8,kinghenryviii,1612\nBRANDON,8,kinghenryviii,1612\nsorry,8,kinghenryviii,1612\nwhose,8,kinghenryviii,1612\ngone,8,kinghenryviii,1612\nhands,8,kinghenryviii,1612\nWolsey,8,kinghenryviii,1612\ndevil,8,kinghenryviii,1612\nkeep,8,kinghenryviii,1612\nshow,8,kinghenryviii,1612\nthough,8,kinghenryviii,1612\nthanks,8,kinghenryviii,1612\nInto,8,kinghenryviii,1612\nThou,8,kinghenryviii,1612\nQueen,8,kinghenryviii,1612\nYork,8,kinghenryviii,1612\nLondon,8,kinghenryviii,1612\njudge,8,kinghenryviii,1612\nhearts,8,kinghenryviii,1612\neyes,8,kinghenryviii,1612\nhonesty,8,kinghenryviii,1612\nmarriage,8,kinghenryviii,1612\nstrange,8,kinghenryviii,1612\nwitness,8,kinghenryviii,1612\nland,8,kinghenryviii,1612\ngreatness,8,kinghenryviii,1612\nobedience,8,kinghenryviii,1612\ntimes,9,kinghenryviii,1612\nAlas,9,kinghenryviii,1612\ngraces,9,kinghenryviii,1612\ncame,9,kinghenryviii,1612\ndeath,9,kinghenryviii,1612\nDENNY,9,kinghenryviii,1612\nsubject,9,kinghenryviii,1612\ndoubt,9,kinghenryviii,1612\nboth,9,kinghenryviii,1612\nbring,9,kinghenryviii,1612\nTower,9,kinghenryviii,1612\nsick,9,kinghenryviii,1612\nII,9,kinghenryviii,1612\nenter,9,kinghenryviii,1612\nKatharine,9,kinghenryviii,1612\nABERGAVENNY,9,kinghenryviii,1612\nforgive,9,kinghenryviii,1612\nloved,9,kinghenryviii,1612\nThan,9,kinghenryviii,1612\ntrial,9,kinghenryviii,1612\njustice,9,kinghenryviii,1612\nMadam,9,kinghenryviii,1612\neye,9,kinghenryviii,1612\nyoung,9,kinghenryviii,1612\nknown,9,kinghenryviii,1612\nthing,9,kinghenryviii,1612\noff,9,kinghenryviii,1612\nonly,9,kinghenryviii,1612\nWell,9,kinghenryviii,1612\nduty,9,kinghenryviii,1612\nhappy,9,kinghenryviii,1612\nglad,9,kinghenryviii,1612\ncomfort,9,kinghenryviii,1612\ngentleman,9,kinghenryviii,1612\nthousand,9,kinghenryviii,1612\ngiven,9,kinghenryviii,1612\nhold,9,kinghenryviii,1612\nfollows,9,kinghenryviii,1612\nWinchester,9,kinghenryviii,1612\nEnglish,9,kinghenryviii,1612\nglory,9,kinghenryviii,1612\nMan,9,kinghenryviii,1612\nvirtue,9,kinghenryviii,1612\ncertain,9,kinghenryviii,1612\nUpon,10,kinghenryviii,1612\ncare,10,kinghenryviii,1612\nCome,10,kinghenryviii,1612\nnothing,10,kinghenryviii,1612\nset,10,kinghenryviii,1612\ncounsel,10,kinghenryviii,1612\nmean,10,kinghenryviii,1612\nFrench,10,kinghenryviii,1612\nside,10,kinghenryviii,1612\nnight,10,kinghenryviii,1612\nfavour,10,kinghenryviii,1612\nYet,10,kinghenryviii,1612\nbrought,10,kinghenryviii,1612\nwelcome,10,kinghenryviii,1612\npoint,10,kinghenryviii,1612\ngentle,10,kinghenryviii,1612\nmyself,10,kinghenryviii,1612\ncomes,10,kinghenryviii,1612\nGriffith,10,kinghenryviii,1612\nRome,10,kinghenryviii,1612\nones,10,kinghenryviii,1612\nliving,10,kinghenryviii,1612\nheard,10,kinghenryviii,1612\nfound,10,kinghenryviii,1612\ntill,10,kinghenryviii,1612\nlaw,10,kinghenryviii,1612\nlay,10,kinghenryviii,1612\nwife,10,kinghenryviii,1612\ncommission,10,kinghenryviii,1612\ngoodness,10,kinghenryviii,1612\nprivate,10,kinghenryviii,1612\nwomen,10,kinghenryviii,1612\nhighness',11,kinghenryviii,1612\nsaw,11,kinghenryviii,1612\nsure,11,kinghenryviii,1612\nWhy,11,kinghenryviii,1612\nsit,11,kinghenryviii,1612\nfell,11,kinghenryviii,1612\nThese,11,kinghenryviii,1612\nOur,11,kinghenryviii,1612\nservice,11,kinghenryviii,1612\nbold,11,kinghenryviii,1612\npass,11,kinghenryviii,1612\ndown,11,kinghenryviii,1612\nYe,11,kinghenryviii,1612\nleft,11,kinghenryviii,1612\ndoes,11,kinghenryviii,1612\nMost,11,kinghenryviii,1612\nhalf,11,kinghenryviii,1612\nright,11,kinghenryviii,1612\nFrom,11,kinghenryviii,1612\nvery,11,kinghenryviii,1612\nmind,11,kinghenryviii,1612\nThird,11,kinghenryviii,1612\nsame,11,kinghenryviii,1612\nHeaven,11,kinghenryviii,1612\nholy,11,kinghenryviii,1612\nkingdom,11,kinghenryviii,1612\nback,11,kinghenryviii,1612\nsweet,11,kinghenryviii,1612\ntogether,11,kinghenryviii,1612\nChancellor,11,kinghenryviii,1612\nnature,11,kinghenryviii,1612\nwithout,11,kinghenryviii,1612\nmight,11,kinghenryviii,1612\npower,11,kinghenryviii,1612\npity,12,kinghenryviii,1612\nNay,12,kinghenryviii,1612\nWill,12,kinghenryviii,1612\nyourself,12,kinghenryviii,1612\nfellow,12,kinghenryviii,1612\nfeel,12,kinghenryviii,1612\nwish,12,kinghenryviii,1612\nThere's,12,kinghenryviii,1612\ngave,12,kinghenryviii,1612\nSurveyor,12,kinghenryviii,1612\npart,12,kinghenryviii,1612\nMore,12,kinghenryviii,1612\nnew,12,kinghenryviii,1612\nnone,12,kinghenryviii,1612\nnear,12,kinghenryviii,1612\nhope,12,kinghenryviii,1612\nEngland,12,kinghenryviii,1612\nCanterbury,12,kinghenryviii,1612\nhonest,12,kinghenryviii,1612\nreverend,12,kinghenryviii,1612\nfriends,13,kinghenryviii,1612\nbearing,13,kinghenryviii,1612\nwords,13,kinghenryviii,1612\nDuke,13,kinghenryviii,1612\ncouncil,13,kinghenryviii,1612\nWas,13,kinghenryviii,1612\naway,13,kinghenryviii,1612\nmalice,13,kinghenryviii,1612\nchamber,13,kinghenryviii,1612\nput,13,kinghenryviii,1612\nsaid,13,kinghenryviii,1612\ndoor,13,kinghenryviii,1612\npresent,13,kinghenryviii,1612\nPorter,13,kinghenryviii,1612\nnor,13,kinghenryviii,1612\nnext,13,kinghenryviii,1612\nShall,13,kinghenryviii,1612\nprayers,13,kinghenryviii,1612\nlive,13,kinghenryviii,1612\nhimself,13,kinghenryviii,1612\nBuckingham,14,kinghenryviii,1612\nunder,14,kinghenryviii,1612\nhead,14,kinghenryviii,1612\nOut,14,kinghenryviii,1612\nafter,14,kinghenryviii,1612\neach,14,kinghenryviii,1612\nAt,14,kinghenryviii,1612\nAn,14,kinghenryviii,1612\nplay,14,kinghenryviii,1612\ntongue,14,kinghenryviii,1612\nindeed,14,kinghenryviii,1612\nfall,14,kinghenryviii,1612\nold,14,kinghenryviii,1612\nhour,14,kinghenryviii,1612\nmakes,14,kinghenryviii,1612\nlast,14,kinghenryviii,1612\nbeing,14,kinghenryviii,1612\nfather,14,kinghenryviii,1612\nMay,14,kinghenryviii,1612\nfurther,15,kinghenryviii,1612\nbetter,15,kinghenryviii,1612\nabout,15,kinghenryviii,1612\nelse,15,kinghenryviii,1612\nname,15,kinghenryviii,1612\npleasure,15,kinghenryviii,1612\nShe,15,kinghenryviii,1612\nend,15,kinghenryviii,1612\nstand,15,kinghenryviii,1612\nthank,15,kinghenryviii,1612\nladies,15,kinghenryviii,1612\nroyal,16,kinghenryviii,1612\nfriend,16,kinghenryviii,1612\nhath,16,kinghenryviii,1612\nhigh,16,kinghenryviii,1612\nstill,16,kinghenryviii,1612\nduke,16,kinghenryviii,1612\nPray,16,kinghenryviii,1612\nperson,16,kinghenryviii,1612\nmadam,16,kinghenryviii,1612\nlate,16,kinghenryviii,1612\nExit,16,kinghenryviii,1612\nthou,17,kinghenryviii,1612\nAside,17,kinghenryviii,1612\nBe,17,kinghenryviii,1612\nGood,17,kinghenryviii,1612\nbest,17,kinghenryviii,1612\ni',17,kinghenryviii,1612\ngo,17,kinghenryviii,1612\nCromwell,17,kinghenryviii,1612\nACT,17,kinghenryviii,1612\nThen,17,kinghenryviii,1612\nGRIFFITH,17,kinghenryviii,1612\nWhen,17,kinghenryviii,1612\nWould,18,kinghenryviii,1612\nWho,18,kinghenryviii,1612\nthee,18,kinghenryviii,1612\nOr,18,kinghenryviii,1612\nbeen,18,kinghenryviii,1612\nbear,18,kinghenryviii,1612\nsent,18,kinghenryviii,1612\nfirst,18,kinghenryviii,1612\ntrue,18,kinghenryviii,1612\ncannot,18,kinghenryviii,1612\ndare,18,kinghenryviii,1612\nSCENE,18,kinghenryviii,1612\nsoul,19,kinghenryviii,1612\nworld,19,kinghenryviii,1612\nThomas,19,kinghenryviii,1612\nOld,19,kinghenryviii,1612\nWhich,19,kinghenryviii,1612\nany,19,kinghenryviii,1612\nYes,19,kinghenryviii,1612\nhand,19,kinghenryviii,1612\ncourt,19,kinghenryviii,1612\n',20,kinghenryviii,1612\npeace,20,kinghenryviii,1612\nevery,20,kinghenryviii,1612\nfull,20,kinghenryviii,1612\nNow,20,kinghenryviii,1612\ncause,20,kinghenryviii,1612\ntell,20,kinghenryviii,1612\nCAMPEIUS,20,kinghenryviii,1612\nmany,20,kinghenryviii,1612\nonce,20,kinghenryviii,1612\ncould,20,kinghenryviii,1612\nheart,20,kinghenryviii,1612\npoor,20,kinghenryviii,1612\nwoman,20,kinghenryviii,1612\nNot,21,kinghenryviii,1612\ndone,21,kinghenryviii,1612\ninto,21,kinghenryviii,1612\nAll,21,kinghenryviii,1612\nwho,21,kinghenryviii,1612\nmaster,21,kinghenryviii,1612\nThere,22,kinghenryviii,1612\nfear,22,kinghenryviii,1612\nfar,22,kinghenryviii,1612\nSANDS,22,kinghenryviii,1612\nplease,22,kinghenryviii,1612\nother,22,kinghenryviii,1612\ntruth,23,kinghenryviii,1612\nWe,23,kinghenryviii,1612\nlove,23,kinghenryviii,1612\nfind,23,kinghenryviii,1612\nday,23,kinghenryviii,1612\nLet,23,kinghenryviii,1612\nconscience,24,kinghenryviii,1612\nlong,24,kinghenryviii,1612\nfair,24,kinghenryviii,1612\nhear,25,kinghenryviii,1612\nNo,25,kinghenryviii,1612\nIt,25,kinghenryviii,1612\nExeunt,25,kinghenryviii,1612\nplace,25,kinghenryviii,1612\nup,25,kinghenryviii,1612\nown,25,kinghenryviii,1612\nthus,25,kinghenryviii,1612\nlife,26,kinghenryviii,1612\nagainst,26,kinghenryviii,1612\nCROMWELL,26,kinghenryviii,1612\nGod,26,kinghenryviii,1612\nANNE,26,kinghenryviii,1612\nthose,26,kinghenryviii,1612\nLady,26,kinghenryviii,1612\nagain,26,kinghenryviii,1612\nlady,26,kinghenryviii,1612\npray,27,kinghenryviii,1612\nhighness,27,kinghenryviii,1612\nhow,27,kinghenryviii,1612\nstate,27,kinghenryviii,1612\nthy,27,kinghenryviii,1612\nsome,28,kinghenryviii,1612\nnever,28,kinghenryviii,1612\nmade,28,kinghenryviii,1612\nHave,28,kinghenryviii,1612\nYour,28,kinghenryviii,1612\nCRANMER,28,kinghenryviii,1612\nbefore,28,kinghenryviii,1612\ntime,28,kinghenryviii,1612\nlet,28,kinghenryviii,1612\nWith,29,kinghenryviii,1612\no',29,kinghenryviii,1612\ngive,29,kinghenryviii,1612\nGARDINER,29,kinghenryviii,1612\nway,29,kinghenryviii,1612\nleave,29,kinghenryviii,1612\nmen,29,kinghenryviii,1612\nSURREY,30,kinghenryviii,1612\nwhere,30,kinghenryviii,1612\nthem,31,kinghenryviii,1612\nSo,31,kinghenryviii,1612\nLord,31,kinghenryviii,1612\nmine,31,kinghenryviii,1612\n'Tis,31,kinghenryviii,1612\nO,32,kinghenryviii,1612\nbusiness,32,kinghenryviii,1612\ncan,32,kinghenryviii,1612\nlittle,32,kinghenryviii,1612\ntwo,32,kinghenryviii,1612\n'tis,33,kinghenryviii,1612\nspeak,33,kinghenryviii,1612\nBUCKINGHAM,33,kinghenryviii,1612\nLOVELL,33,kinghenryviii,1612\nqueen,33,kinghenryviii,1612\ntake,33,kinghenryviii,1612\nwhen,33,kinghenryviii,1612\nking's,34,kinghenryviii,1612\nHis,34,kinghenryviii,1612\nthink,34,kinghenryviii,1612\nwere,34,kinghenryviii,1612\nBy,35,kinghenryviii,1612\nThey,35,kinghenryviii,1612\nI'll,35,kinghenryviii,1612\ncome,35,kinghenryviii,1612\nsir,36,kinghenryviii,1612\nheaven,36,kinghenryviii,1612\nhere,37,kinghenryviii,1612\nshe,37,kinghenryviii,1612\nIf,37,kinghenryviii,1612\nIs,37,kinghenryviii,1612\nmost,37,kinghenryviii,1612\nHow,37,kinghenryviii,1612\nlords,37,kinghenryviii,1612\nthere,38,kinghenryviii,1612\nshould,38,kinghenryviii,1612\nsee,39,kinghenryviii,1612\nthese,39,kinghenryviii,1612\nSecond,39,kinghenryviii,1612\nmake,39,kinghenryviii,1612\nand,551,kinghenryviii,1612\nan,40,kinghenryviii,1612\nupon,41,kinghenryviii,1612\nsay,41,kinghenryviii,1612\nthan,41,kinghenryviii,1612\nhas,41,kinghenryviii,1612\nus,41,kinghenryviii,1612\ndid,41,kinghenryviii,1612\nthen,42,kinghenryviii,1612\ncardinal,42,kinghenryviii,1612\nFirst,42,kinghenryviii,1612\nmuch,43,kinghenryviii,1612\nwell,43,kinghenryviii,1612\nhonour,44,kinghenryviii,1612\nnoble,44,kinghenryviii,1612\nif,44,kinghenryviii,1612\nSir,44,kinghenryviii,1612\ngreat,44,kinghenryviii,1612\nQUEEN,44,kinghenryviii,1612\never,45,kinghenryviii,1612\nSUFFOLK,45,kinghenryviii,1612\nmy,301,kinghenryviii,1612\nsuch,46,kinghenryviii,1612\nhad,46,kinghenryviii,1612\nIn,46,kinghenryviii,1612\nor,46,kinghenryviii,1612\nEnter,46,kinghenryviii,1612\nout,46,kinghenryviii,1612\nlike,47,kinghenryviii,1612\nHe,48,kinghenryviii,1612\nyet,48,kinghenryviii,1612\ntoo,48,kinghenryviii,1612\nmust,49,kinghenryviii,1612\nI,561,kinghenryviii,1612\ngrace,51,kinghenryviii,1612\nWhat,51,kinghenryviii,1612\nBut,52,kinghenryviii,1612\nChamberlain,53,kinghenryviii,1612\nThis,53,kinghenryviii,1612\nmay,53,kinghenryviii,1612\nAs,55,kinghenryviii,1612\nwe,56,kinghenryviii,1612\nOf,58,kinghenryviii,1612\nknow,58,kinghenryviii,1612\none,60,kinghenryviii,1612\nKATHARINE,61,kinghenryviii,1612\nman,61,kinghenryviii,1612\nwhat,61,kinghenryviii,1612\nNORFOLK,62,kinghenryviii,1612\nFor,63,kinghenryviii,1612\nam,64,kinghenryviii,1612\nour,64,kinghenryviii,1612\n'em,64,kinghenryviii,1612\nye,66,kinghenryviii,1612\ndo,67,kinghenryviii,1612\nmore,67,kinghenryviii,1612\nwould,67,kinghenryviii,1612\nwhich,68,kinghenryviii,1612\nat,68,kinghenryviii,1612\ntheir,70,kinghenryviii,1612\nMy,71,kinghenryviii,1612\nYou,73,kinghenryviii,1612\nwas,75,kinghenryviii,1612\nthey,76,kinghenryviii,1612\nno,76,kinghenryviii,1612\nnow,78,kinghenryviii,1612\non,79,kinghenryviii,1612\nA,81,kinghenryviii,1612\nbut,82,kinghenryviii,1612\nfrom,82,kinghenryviii,1612\nwill,88,kinghenryviii,1612\nyou,344,kinghenryviii,1612\nby,91,kinghenryviii,1612\nThat,92,kinghenryviii,1612\nGentleman,93,kinghenryviii,1612\nking,94,kinghenryviii,1612\nlord,97,kinghenryviii,1612\nshall,97,kinghenryviii,1612\nso,98,kinghenryviii,1612\nWOLSEY,100,kinghenryviii,1612\ngood,102,kinghenryviii,1612\nas,109,kinghenryviii,1612\nher,114,kinghenryviii,1612\nVIII,118,kinghenryviii,1612\nKING,121,kinghenryviii,1612\nCARDINAL,121,kinghenryviii,1612\nHENRY,122,kinghenryviii,1612\nare,125,kinghenryviii,1612\na,382,kinghenryviii,1612\nTo,138,kinghenryviii,1612\nall,138,kinghenryviii,1612\nfor,150,kinghenryviii,1612\nhe,153,kinghenryviii,1612\nis,156,kinghenryviii,1612\nwith,160,kinghenryviii,1612\nit,162,kinghenryviii,1612\nhave,164,kinghenryviii,1612\nbe,169,kinghenryviii,1612\nnot,171,kinghenryviii,1612\nAnd,186,kinghenryviii,1612\nhim,196,kinghenryviii,1612\nthis,202,kinghenryviii,1612\nThe,204,kinghenryviii,1612\nto,473,kinghenryviii,1612\nof,477,kinghenryviii,1612\nthe,738,kinghenryviii,1612\nthat,232,kinghenryviii,1612\nhis,234,kinghenryviii,1612\nme,235,kinghenryviii,1612\nyour,242,kinghenryviii,1612\nin,255,kinghenryviii,1612\nbrave,1,kingrichardii,1595\nfealty,1,kingrichardii,1595\nindignation,1,kingrichardii,1595\nchampions,1,kingrichardii,1595\n'all,1,kingrichardii,1595\nkerns,1,kingrichardii,1595\ngeneration,1,kingrichardii,1595\nalehouse,1,kingrichardii,1595\nRecover,1,kingrichardii,1595\nFrancis,1,kingrichardii,1595\nparchment,1,kingrichardii,1595\nunrestrained,1,kingrichardii,1595\nrushing,1,kingrichardii,1595\neffeminate,1,kingrichardii,1595\nclouded,1,kingrichardii,1595\nresignation,1,kingrichardii,1595\nmoral,1,kingrichardii,1595\nchairs,1,kingrichardii,1595\nignorance,1,kingrichardii,1595\nimaginary,1,kingrichardii,1595\nblemish'd,1,kingrichardii,1595\ndrawing,1,kingrichardii,1595\nQuick,1,kingrichardii,1595\nadvised,1,kingrichardii,1595\nWanting,1,kingrichardii,1595\nProve,1,kingrichardii,1595\nhappier,1,kingrichardii,1595\nglazed,1,kingrichardii,1595\nformally,1,kingrichardii,1595\nlamentable,1,kingrichardii,1595\nc,1,kingrichardii,1595\nfruits,1,kingrichardii,1595\nCicester,1,kingrichardii,1595\nports,1,kingrichardii,1595\nrebukes,1,kingrichardii,1595\nred,1,kingrichardii,1595\nsafeguard,1,kingrichardii,1595\ngroom,1,kingrichardii,1595\nProud,1,kingrichardii,1595\nadvice,1,kingrichardii,1595\nextremity,1,kingrichardii,1595\nvanities,1,kingrichardii,1595\njar,1,kingrichardii,1595\ncomposition,1,kingrichardii,1595\nderived,1,kingrichardii,1595\ndoubly,1,kingrichardii,1595\nfathers,1,kingrichardii,1595\nmightiest,1,kingrichardii,1595\nunrest,1,kingrichardii,1595\nyielding,1,kingrichardii,1595\nbarbed,1,kingrichardii,1595\nHear,1,kingrichardii,1595\nPity,1,kingrichardii,1595\nresist,1,kingrichardii,1595\ncountry,1,kingrichardii,1595\nforswear,1,kingrichardii,1595\ntremble,1,kingrichardii,1595\nsickliness,1,kingrichardii,1595\ncommon'st,1,kingrichardii,1595\nbrass,1,kingrichardii,1595\ntreasury,1,kingrichardii,1595\nwrit,1,kingrichardii,1595\ninveterate,1,kingrichardii,1595\nraw,1,kingrichardii,1595\nprophet,1,kingrichardii,1595\nplanted,1,kingrichardii,1595\nbewasted,1,kingrichardii,1595\nreign'd,1,kingrichardii,1595\ntreasure,1,kingrichardii,1595\nstately,1,kingrichardii,1595\nespy,1,kingrichardii,1595\nhinder,1,kingrichardii,1595\npeasant,1,kingrichardii,1595\nwoman's,1,kingrichardii,1595\nwicked,1,kingrichardii,1595\nentire,1,kingrichardii,1595\ntore,1,kingrichardii,1595\nbrows,1,kingrichardii,1595\nlawful,1,kingrichardii,1595\nWhether,1,kingrichardii,1595\nWrit,1,kingrichardii,1595\nhasty,1,kingrichardii,1595\nbaffled,1,kingrichardii,1595\nlongs,1,kingrichardii,1595\nForgiveness,1,kingrichardii,1595\nhollowness,1,kingrichardii,1595\nascends,1,kingrichardii,1595\npurge,1,kingrichardii,1595\nsterling,1,kingrichardii,1595\nThieves,1,kingrichardii,1595\nbreathless,1,kingrichardii,1595\nelect,1,kingrichardii,1595\nrot,1,kingrichardii,1595\nrobs,1,kingrichardii,1595\nsearching,1,kingrichardii,1595\nbonds,1,kingrichardii,1595\nrespect'st,1,kingrichardii,1595\nassured,1,kingrichardii,1595\nrow,1,kingrichardii,1595\nshoulders,1,kingrichardii,1595\nrod,1,kingrichardii,1595\nsuppose,1,kingrichardii,1595\nbranch,1,kingrichardii,1595\nheart's,1,kingrichardii,1595\nimpeach'd,1,kingrichardii,1595\nstopp'd,1,kingrichardii,1595\nrents,1,kingrichardii,1595\nroan,1,kingrichardii,1595\nassistance,1,kingrichardii,1595\nproclaim'd,1,kingrichardii,1595\neasily,1,kingrichardii,1595\nbutchers,1,kingrichardii,1595\nhush'd,1,kingrichardii,1595\nbrands,1,kingrichardii,1595\nwaxen,1,kingrichardii,1595\nboys,1,kingrichardii,1595\nStrives,1,kingrichardii,1595\ncraftsmen,1,kingrichardii,1595\nmelt,1,kingrichardii,1595\nreserved,1,kingrichardii,1595\ndiscoursed,1,kingrichardii,1595\nwhereupon,1,kingrichardii,1595\nfurthest,1,kingrichardii,1595\nviolets,1,kingrichardii,1595\ngrandsire's,1,kingrichardii,1595\nYork's,1,kingrichardii,1595\nfreer,1,kingrichardii,1595\nfrowning,1,kingrichardii,1595\nsuppliant,1,kingrichardii,1595\nMeasure,1,kingrichardii,1595\nAllowing,1,kingrichardii,1595\nMeaning,1,kingrichardii,1595\nNeptune,1,kingrichardii,1595\njoint,1,kingrichardii,1595\n'Come,1,kingrichardii,1595\nfinger,1,kingrichardii,1595\nDespite,1,kingrichardii,1595\nDisclaiming,1,kingrichardii,1595\nherb,1,kingrichardii,1595\nsullens,1,kingrichardii,1595\ntheatre,1,kingrichardii,1595\nviolent,1,kingrichardii,1595\nnameless,1,kingrichardii,1595\ndecay,1,kingrichardii,1595\nEither,1,kingrichardii,1595\nBlack,1,kingrichardii,1595\ncometh,1,kingrichardii,1595\nchest,1,kingrichardii,1595\ndefensive,1,kingrichardii,1595\nsecurity,1,kingrichardii,1595\ngrim,1,kingrichardii,1595\nHelp,1,kingrichardii,1595\nprosperous,1,kingrichardii,1595\ngorgeous,1,kingrichardii,1595\nutterance,1,kingrichardii,1595\nBeshrew,1,kingrichardii,1595\ndive,1,kingrichardii,1595\nparadise,1,kingrichardii,1595\nlowly,1,kingrichardii,1595\nadversary,1,kingrichardii,1595\nWife,1,kingrichardii,1595\nangels,1,kingrichardii,1595\nforbidden,1,kingrichardii,1595\nsugar,1,kingrichardii,1595\nblanks,1,kingrichardii,1595\nsuccession,1,kingrichardii,1595\nunderstand,1,kingrichardii,1595\nhavens,1,kingrichardii,1595\nSnakes,1,kingrichardii,1595\nexactly,1,kingrichardii,1595\nfury,1,kingrichardii,1595\ndrink,1,kingrichardii,1595\ncowardice,1,kingrichardii,1595\nlouring,1,kingrichardii,1595\nlaugh,1,kingrichardii,1595\nworms,1,kingrichardii,1595\nteachest,1,kingrichardii,1595\ninnocency,1,kingrichardii,1595\ncalls,1,kingrichardii,1595\nProvided,1,kingrichardii,1595\nmiscall,1,kingrichardii,1595\njades,1,kingrichardii,1595\nPort,1,kingrichardii,1595\nDispose,1,kingrichardii,1595\nterrible,1,kingrichardii,1595\nSnatching,1,kingrichardii,1595\nrug,1,kingrichardii,1595\nblinding,1,kingrichardii,1595\niron,1,kingrichardii,1595\nPost,1,kingrichardii,1595\nancestors,1,kingrichardii,1595\nyearn'd,1,kingrichardii,1595\ndismissed,1,kingrichardii,1595\ntrust,1,kingrichardii,1595\ncontrary,1,kingrichardii,1595\nworks,1,kingrichardii,1595\nstews,1,kingrichardii,1595\nUnlikely,1,kingrichardii,1595\nlief,1,kingrichardii,1595\njoys,1,kingrichardii,1595\nwounded,1,kingrichardii,1595\nStephen,1,kingrichardii,1595\nimpute,1,kingrichardii,1595\nspringing,1,kingrichardii,1595\ngoest,1,kingrichardii,1595\nunwilling,1,kingrichardii,1595\nPERSONAE,1,kingrichardii,1595\nwither,1,kingrichardii,1595\nLight,1,kingrichardii,1595\nEve,1,kingrichardii,1595\ndemand,1,kingrichardii,1595\nagreed,1,kingrichardii,1595\nclamorous,1,kingrichardii,1595\n'Thanks,1,kingrichardii,1595\ncloister,1,kingrichardii,1595\nspare,1,kingrichardii,1595\ncouched,1,kingrichardii,1595\ncool'd,1,kingrichardii,1595\nlightning,1,kingrichardii,1595\nargued,1,kingrichardii,1595\nPrevent,1,kingrichardii,1595\ncase,1,kingrichardii,1595\nwalking,1,kingrichardii,1595\ncheapest,1,kingrichardii,1595\nAlps,1,kingrichardii,1595\nliar,1,kingrichardii,1595\nProportionable,1,kingrichardii,1595\nmistook,1,kingrichardii,1595\nterrestrial,1,kingrichardii,1595\ndownfall,1,kingrichardii,1595\nOver,1,kingrichardii,1595\nalmsman's,1,kingrichardii,1595\npersonally,1,kingrichardii,1595\nire,1,kingrichardii,1595\npreys,1,kingrichardii,1595\ngraced,1,kingrichardii,1595\nsurfeit,1,kingrichardii,1595\nblinds,1,kingrichardii,1595\nwander'd,1,kingrichardii,1595\npins,1,kingrichardii,1595\ncamp,1,kingrichardii,1595\nFellow,1,kingrichardii,1595\nsadly,1,kingrichardii,1595\nguards,1,kingrichardii,1595\ndrive,1,kingrichardii,1595\npine,1,kingrichardii,1595\nBloody,1,kingrichardii,1595\nconfusion,1,kingrichardii,1595\nthousands,1,kingrichardii,1595\nsold,1,kingrichardii,1595\nmisgovern'd,1,kingrichardii,1595\nunjustly,1,kingrichardii,1595\nsap,1,kingrichardii,1595\nbefits,1,kingrichardii,1595\nsaw,1,kingrichardii,1595\nstream,1,kingrichardii,1595\nscarlet,1,kingrichardii,1595\ninhabit,1,kingrichardii,1595\nresign'd,1,kingrichardii,1595\nvoiced,1,kingrichardii,1595\natone,1,kingrichardii,1595\nCaesar's,1,kingrichardii,1595\nlime,1,kingrichardii,1595\nlimb,1,kingrichardii,1595\nKeep,1,kingrichardii,1595\nhorror,1,kingrichardii,1595\nthundering,1,kingrichardii,1595\nEnd,1,kingrichardii,1595\nsucceeding,1,kingrichardii,1595\nposts,1,kingrichardii,1595\nRemember,1,kingrichardii,1595\npatent,1,kingrichardii,1595\ndeceiveable,1,kingrichardii,1595\nheat,1,kingrichardii,1595\ntoward,1,kingrichardii,1595\nshivers,1,kingrichardii,1595\nWoe,1,kingrichardii,1595\nOurself,1,kingrichardii,1595\nenemy's,1,kingrichardii,1595\nsure,1,kingrichardii,1595\ncontrive,1,kingrichardii,1595\nseemeth,1,kingrichardii,1595\nwants,1,kingrichardii,1595\nGardeners,1,kingrichardii,1595\nvoices,1,kingrichardii,1595\npolicy,1,kingrichardii,1595\ntown,1,kingrichardii,1595\nsoil,1,kingrichardii,1595\ndemands,1,kingrichardii,1595\nbreaks,1,kingrichardii,1595\nremiss,1,kingrichardii,1595\nYield,1,kingrichardii,1595\nsprightfully,1,kingrichardii,1595\nmaking,1,kingrichardii,1595\nfalcon's,1,kingrichardii,1595\nbeseem,1,kingrichardii,1595\nlikeness,1,kingrichardii,1595\nchains,1,kingrichardii,1595\ngelded,1,kingrichardii,1595\nwantons,1,kingrichardii,1595\nPale,1,kingrichardii,1595\nsoft,1,kingrichardii,1595\nnoise,1,kingrichardii,1595\nriches,1,kingrichardii,1595\nfreedom,1,kingrichardii,1595\ncalamity,1,kingrichardii,1595\ncovering,1,kingrichardii,1595\nwait,1,kingrichardii,1595\nwidow's,1,kingrichardii,1595\nmann'd,1,kingrichardii,1595\nAdopts,1,kingrichardii,1595\n'King,1,kingrichardii,1595\nmoving,1,kingrichardii,1595\nGentle,1,kingrichardii,1595\nunwillingness,1,kingrichardii,1595\ngroats,1,kingrichardii,1595\nimprese,1,kingrichardii,1595\ndisorderly,1,kingrichardii,1595\nsinful,1,kingrichardii,1595\nshamed,1,kingrichardii,1595\nawed,1,kingrichardii,1595\nhereafter,1,kingrichardii,1595\nSwell'st,1,kingrichardii,1595\nwherewithal,1,kingrichardii,1595\nattainder,1,kingrichardii,1595\nOff,1,kingrichardii,1595\nepitaphs,1,kingrichardii,1595\namazing,1,kingrichardii,1595\nwilderness,1,kingrichardii,1595\nsums,1,kingrichardii,1595\ngrassy,1,kingrichardii,1595\nsprays,1,kingrichardii,1595\nvial,1,kingrichardii,1595\nbondslave,1,kingrichardii,1595\nComprising,1,kingrichardii,1595\nrobbing,1,kingrichardii,1595\nkey,1,kingrichardii,1595\npurses,1,kingrichardii,1595\nII's,1,kingrichardii,1595\nChange,1,kingrichardii,1595\nusurp'd,1,kingrichardii,1595\nthink'st,1,kingrichardii,1595\nbastard,1,kingrichardii,1595\nsaddle,1,kingrichardii,1595\nimitation,1,kingrichardii,1595\ntooth,1,kingrichardii,1595\nscowl,1,kingrichardii,1595\nwalk,1,kingrichardii,1595\nsaying,1,kingrichardii,1595\nshrill,1,kingrichardii,1595\nflying,1,kingrichardii,1595\nseals,1,kingrichardii,1595\nwake,1,kingrichardii,1595\nWrite,1,kingrichardii,1595\nreposeth,1,kingrichardii,1595\nlanded,1,kingrichardii,1595\ninhabitable,1,kingrichardii,1595\nchronicled,1,kingrichardii,1595\nwedding,1,kingrichardii,1595\nbitterly,1,kingrichardii,1595\nlions,1,kingrichardii,1595\nMean,1,kingrichardii,1595\ndisposed,1,kingrichardii,1595\nabused,1,kingrichardii,1595\nThinking,1,kingrichardii,1595\nspy,1,kingrichardii,1595\nlove's,1,kingrichardii,1595\nactor,1,kingrichardii,1595\ncouncil,1,kingrichardii,1595\nbirds,1,kingrichardii,1595\nfavourites,1,kingrichardii,1595\nPleads,1,kingrichardii,1595\nembrace,1,kingrichardii,1595\ncradle,1,kingrichardii,1595\nfrosty,1,kingrichardii,1595\nwhosoever,1,kingrichardii,1595\nmurdered,1,kingrichardii,1595\nsummons,1,kingrichardii,1595\nskill,1,kingrichardii,1595\nMerely,1,kingrichardii,1595\nmurderer,1,kingrichardii,1595\nchildren's,1,kingrichardii,1595\nfashions,1,kingrichardii,1595\nhammer,1,kingrichardii,1595\nlooking,1,kingrichardii,1595\nviol,1,kingrichardii,1595\nEsteem,1,kingrichardii,1595\ncropp'd,1,kingrichardii,1595\ndarted,1,kingrichardii,1595\nstern,1,kingrichardii,1595\nBordeaux,1,kingrichardii,1595\nforthwith,1,kingrichardii,1595\nintitle,1,kingrichardii,1595\nfearless,1,kingrichardii,1595\npointing,1,kingrichardii,1595\nprophet's,1,kingrichardii,1595\ntestament,1,kingrichardii,1595\nsecond,1,kingrichardii,1595\nrecanting,1,kingrichardii,1595\npitiful,1,kingrichardii,1595\nSetting,1,kingrichardii,1595\nDefiance,1,kingrichardii,1595\nchamber'd,1,kingrichardii,1595\nThanks,1,kingrichardii,1595\nleague,1,kingrichardii,1595\nwade,1,kingrichardii,1595\nhorses',1,kingrichardii,1595\npieces,1,kingrichardii,1595\nstuff,1,kingrichardii,1595\ndearth,1,kingrichardii,1595\nthin,1,kingrichardii,1595\nrelease,1,kingrichardii,1595\nadverse,1,kingrichardii,1595\nawful,1,kingrichardii,1595\nsends,1,kingrichardii,1595\namiss,1,kingrichardii,1595\n'Pardon',1,kingrichardii,1595\nindifferent,1,kingrichardii,1595\nunreverent,1,kingrichardii,1595\nswelling,1,kingrichardii,1595\ndeclining,1,kingrichardii,1595\nthieves,1,kingrichardii,1595\nrear,1,kingrichardii,1595\nshriek,1,kingrichardii,1595\nBeaumond,1,kingrichardii,1595\noffence,1,kingrichardii,1595\ngaoler,1,kingrichardii,1595\nvile,1,kingrichardii,1595\nreap,1,kingrichardii,1595\nPeruse,1,kingrichardii,1595\nunavoided,1,kingrichardii,1595\nNeeds,1,kingrichardii,1595\nsly,1,kingrichardii,1595\nmocks,1,kingrichardii,1595\nfelt,1,kingrichardii,1595\ndigestion,1,kingrichardii,1595\neating,1,kingrichardii,1595\ngoblets,1,kingrichardii,1595\nBretagne,1,kingrichardii,1595\nbeseeming,1,kingrichardii,1595\nLearn,1,kingrichardii,1595\nvanish,1,kingrichardii,1595\nWast,1,kingrichardii,1595\npoints,1,kingrichardii,1595\nhappen,1,kingrichardii,1595\nbrain,1,kingrichardii,1595\npiece,1,kingrichardii,1595\nuncles,1,kingrichardii,1595\ncompassion,1,kingrichardii,1595\nrush'd,1,kingrichardii,1595\ntormentors,1,kingrichardii,1595\nstandeth,1,kingrichardii,1595\nShorten,1,kingrichardii,1595\nphysician's,1,kingrichardii,1595\nhead's,1,kingrichardii,1595\nconsequently,1,kingrichardii,1595\nestimate,1,kingrichardii,1595\nfigure,1,kingrichardii,1595\nWhereof,1,kingrichardii,1595\nkill'd,1,kingrichardii,1595\nprosecute,1,kingrichardii,1595\nDestinies,1,kingrichardii,1595\nstomach'd,1,kingrichardii,1595\nWars,1,kingrichardii,1595\nruns,1,kingrichardii,1595\ninfidels,1,kingrichardii,1595\nshowest,1,kingrichardii,1595\nnoblesse,1,kingrichardii,1595\nencounter,1,kingrichardii,1595\nloose,1,kingrichardii,1595\nBroke,1,kingrichardii,1595\nWooing,1,kingrichardii,1595\nSound,1,kingrichardii,1595\nmark'd,1,kingrichardii,1595\ntaper,1,kingrichardii,1595\npageant,1,kingrichardii,1595\nbestrid,1,kingrichardii,1595\ncries,1,kingrichardii,1595\nphysicians,1,kingrichardii,1595\nspeechless,1,kingrichardii,1595\nReport,1,kingrichardii,1595\nruth,1,kingrichardii,1595\nunbroke,1,kingrichardii,1595\nbrace,1,kingrichardii,1595\nWipe,1,kingrichardii,1595\ndistrain'd,1,kingrichardii,1595\nfeed,1,kingrichardii,1595\naccent,1,kingrichardii,1595\nrust,1,kingrichardii,1595\nCaucasus,1,kingrichardii,1595\nTradition,1,kingrichardii,1595\npromise,1,kingrichardii,1595\nbows,1,kingrichardii,1595\nimpartial,1,kingrichardii,1595\nhumbly,1,kingrichardii,1595\ncleave,1,kingrichardii,1595\nwavering,1,kingrichardii,1595\ndescend,1,kingrichardii,1595\nclaim,1,kingrichardii,1595\nflourishing,1,kingrichardii,1595\nBehind,1,kingrichardii,1595\nlances,1,kingrichardii,1595\naccept,1,kingrichardii,1595\nconceal,1,kingrichardii,1595\ncamel,1,kingrichardii,1595\nwhisper,1,kingrichardii,1595\ntorturer,1,kingrichardii,1595\nweather,1,kingrichardii,1595\nwing,1,kingrichardii,1595\nsoars,1,kingrichardii,1595\npatrimony,1,kingrichardii,1595\nwink,1,kingrichardii,1595\nparliament,1,kingrichardii,1595\nmothers',1,kingrichardii,1595\nshrink,1,kingrichardii,1595\nHence,1,kingrichardii,1595\nnails,1,kingrichardii,1595\nlanguage,1,kingrichardii,1595\nkneel,1,kingrichardii,1595\nstrong'st,1,kingrichardii,1595\nMight,1,kingrichardii,1595\nseems,1,kingrichardii,1595\nexecutioner,1,kingrichardii,1595\nsteal,1,kingrichardii,1595\nedge,1,kingrichardii,1595\nstrew'd,1,kingrichardii,1595\ndoom'd,1,kingrichardii,1595\ndearer,1,kingrichardii,1595\nensign,1,kingrichardii,1595\nlack'st,1,kingrichardii,1595\nroundly,1,kingrichardii,1595\nruin,1,kingrichardii,1595\nking'd,1,kingrichardii,1595\ngo'st,1,kingrichardii,1595\nimmaculate,1,kingrichardii,1595\nseest,1,kingrichardii,1595\nservile,1,kingrichardii,1595\nfortress,1,kingrichardii,1595\ncompromise,1,kingrichardii,1595\ngrating,1,kingrichardii,1595\nHOTSPUR,1,kingrichardii,1595\nmurder,1,kingrichardii,1595\neagle,1,kingrichardii,1595\nportal,1,kingrichardii,1595\ncormorant,1,kingrichardii,1595\nMounted,1,kingrichardii,1595\nsooth,1,kingrichardii,1595\nDespair,1,kingrichardii,1595\nproperty,1,kingrichardii,1595\nvials,1,kingrichardii,1595\nsense,1,kingrichardii,1595\npierce,1,kingrichardii,1595\nharming,1,kingrichardii,1595\ntorment'st,1,kingrichardii,1595\nbidding,1,kingrichardii,1595\nungracious,1,kingrichardii,1595\nharbour,1,kingrichardii,1595\nstocks,1,kingrichardii,1595\nmerely,1,kingrichardii,1595\npretty,1,kingrichardii,1595\nbreeding,1,kingrichardii,1595\ndoubts,1,kingrichardii,1595\ncunning,1,kingrichardii,1595\ntimeless,1,kingrichardii,1595\nbone,1,kingrichardii,1595\nmeat,1,kingrichardii,1595\nmelted,1,kingrichardii,1595\nboot,1,kingrichardii,1595\nmistake,1,kingrichardii,1595\nsteed,1,kingrichardii,1595\ntortured,1,kingrichardii,1595\nlunatic,1,kingrichardii,1595\nspakest,1,kingrichardii,1595\nprodigy,1,kingrichardii,1595\ncoats,1,kingrichardii,1595\nmanual,1,kingrichardii,1595\nruled,1,kingrichardii,1595\nwits,1,kingrichardii,1595\nrubbish,1,kingrichardii,1595\nobserve,1,kingrichardii,1595\nshedding,1,kingrichardii,1595\nplaints,1,kingrichardii,1595\nboon,1,kingrichardii,1595\nEnglishmen,1,kingrichardii,1595\ntend,1,kingrichardii,1595\nparts,1,kingrichardii,1595\nspoke,1,kingrichardii,1595\ndigg'd,1,kingrichardii,1595\ncreated,1,kingrichardii,1595\npraises,1,kingrichardii,1595\nwayward,1,kingrichardii,1595\nsympathy,1,kingrichardii,1595\nverdict,1,kingrichardii,1595\njudgement,1,kingrichardii,1595\nDraw,1,kingrichardii,1595\nWherewith,1,kingrichardii,1595\nhungry,1,kingrichardii,1595\nobjects,1,kingrichardii,1595\nDepress'd,1,kingrichardii,1595\nfoolhardy,1,kingrichardii,1595\neverlastingly,1,kingrichardii,1595\nconquer,1,kingrichardii,1595\nfairest,1,kingrichardii,1595\nDo,1,kingrichardii,1595\nshorten,1,kingrichardii,1595\nhe's,1,kingrichardii,1595\nfoil,1,kingrichardii,1595\nurge,1,kingrichardii,1595\nbig,1,kingrichardii,1595\nbills,1,kingrichardii,1595\nmistakes,1,kingrichardii,1595\nknowledge,1,kingrichardii,1595\nscandal,1,kingrichardii,1595\nrival,1,kingrichardii,1595\nwarder,1,kingrichardii,1595\nFaith,1,kingrichardii,1595\nconspirator,1,kingrichardii,1595\nappointments,1,kingrichardii,1595\nstumble,1,kingrichardii,1595\nlife's,1,kingrichardii,1595\npalmer's,1,kingrichardii,1595\ncontrived,1,kingrichardii,1595\nleased,1,kingrichardii,1595\nsolicit,1,kingrichardii,1595\nFear'd,1,kingrichardii,1595\nWrath,1,kingrichardii,1595\nalarms,1,kingrichardii,1595\nfalter,1,kingrichardii,1595\ndrown,1,kingrichardii,1595\nTakes,1,kingrichardii,1595\nstatutes,1,kingrichardii,1595\nsequence,1,kingrichardii,1595\nenjoy'd,1,kingrichardii,1595\nshooting,1,kingrichardii,1595\nmelancholy,1,kingrichardii,1595\nunderbearing,1,kingrichardii,1595\nbenevolences,1,kingrichardii,1595\nsteward,1,kingrichardii,1595\nsurest,1,kingrichardii,1595\nhap,1,kingrichardii,1595\nPresuming,1,kingrichardii,1595\ndrinking,1,kingrichardii,1595\nrusty,1,kingrichardii,1595\nbacks,1,kingrichardii,1595\nburthenous,1,kingrichardii,1595\noverthrow,1,kingrichardii,1595\n'pardon,1,kingrichardii,1595\nclimate,1,kingrichardii,1595\nPhaethon,1,kingrichardii,1595\nHoly,1,kingrichardii,1595\nsift,1,kingrichardii,1595\nrivers,1,kingrichardii,1595\ngotten,1,kingrichardii,1595\noverflow,1,kingrichardii,1595\nsigh,1,kingrichardii,1595\nstreams,1,kingrichardii,1595\nWindsor,1,kingrichardii,1595\nreligious,1,kingrichardii,1595\nkneeling,1,kingrichardii,1595\nflatters,1,kingrichardii,1595\npaw,1,kingrichardii,1595\ninfection,1,kingrichardii,1595\nstubborn,1,kingrichardii,1595\nReproach,1,kingrichardii,1595\nrankle,1,kingrichardii,1595\nscarce,1,kingrichardii,1595\nHie,1,kingrichardii,1595\nslander's,1,kingrichardii,1595\nloath,1,kingrichardii,1595\nmanure,1,kingrichardii,1595\ndeeds,1,kingrichardii,1595\nTreason,1,kingrichardii,1595\nrefined,1,kingrichardii,1595\nvigour,1,kingrichardii,1595\nadversaries,1,kingrichardii,1595\ndesperate,1,kingrichardii,1595\nassault,1,kingrichardii,1595\ndoctors,1,kingrichardii,1595\nblown,1,kingrichardii,1595\nlanceth,1,kingrichardii,1595\nHaving,1,kingrichardii,1595\nDepose,1,kingrichardii,1595\nspots,1,kingrichardii,1595\nplough'd,1,kingrichardii,1595\nneighbours',1,kingrichardii,1595\ncareer,1,kingrichardii,1595\nhopes,1,kingrichardii,1595\nGARDENER,1,kingrichardii,1595\nNature,1,kingrichardii,1595\nsiege,1,kingrichardii,1595\npays,1,kingrichardii,1595\nblots,1,kingrichardii,1595\nsubscribe,1,kingrichardii,1595\nSays,1,kingrichardii,1595\nlisten,1,kingrichardii,1595\nbelike,1,kingrichardii,1595\nstar,1,kingrichardii,1595\nbrings,1,kingrichardii,1595\nfantastic,1,kingrichardii,1595\nstudying,1,kingrichardii,1595\npitied,1,kingrichardii,1595\nforce,1,kingrichardii,1595\nStanding,1,kingrichardii,1595\nfinds,1,kingrichardii,1595\ninnocent,1,kingrichardii,1595\nhelmet,1,kingrichardii,1595\nBareheaded,1,kingrichardii,1595\nenter'd,1,kingrichardii,1595\nashes,1,kingrichardii,1595\nremainder,1,kingrichardii,1595\ninherits,1,kingrichardii,1595\nague's,1,kingrichardii,1595\nHa,1,kingrichardii,1595\npiteous,1,kingrichardii,1595\nupturned,1,kingrichardii,1595\napprove,1,kingrichardii,1595\nHo,1,kingrichardii,1595\nsovereignty,1,kingrichardii,1595\nblest,1,kingrichardii,1595\nfined,1,kingrichardii,1595\nunfurnish'd,1,kingrichardii,1595\nsurely,1,kingrichardii,1595\nMann'd,1,kingrichardii,1595\nambush,1,kingrichardii,1595\nruffians,1,kingrichardii,1595\ntribute,1,kingrichardii,1595\nmeteors,1,kingrichardii,1595\nsacrificing,1,kingrichardii,1595\nuntruth,1,kingrichardii,1595\nneuter,1,kingrichardii,1595\nabbot,1,kingrichardii,1595\ndateless,1,kingrichardii,1595\nadded,1,kingrichardii,1595\nrevolting,1,kingrichardii,1595\ncasements,1,kingrichardii,1595\nadder,1,kingrichardii,1595\nimpregnable,1,kingrichardii,1595\ncondemned,1,kingrichardii,1595\nhides,1,kingrichardii,1595\npin,1,kingrichardii,1595\npit,1,kingrichardii,1595\nhopest,1,kingrichardii,1595\nDivides,1,kingrichardii,1595\ncovenant,1,kingrichardii,1595\ntemples,1,kingrichardii,1595\nUp,1,kingrichardii,1595\nclogging,1,kingrichardii,1595\nague,1,kingrichardii,1595\nstrew,1,kingrichardii,1595\nMary's,1,kingrichardii,1595\nVI,1,kingrichardii,1595\nWelsh,1,kingrichardii,1595\nstinging,1,kingrichardii,1595\ndevotion,1,kingrichardii,1595\ncrushing,1,kingrichardii,1595\nJulius,1,kingrichardii,1595\nwallow,1,kingrichardii,1595\nsire,1,kingrichardii,1595\nbegot,1,kingrichardii,1595\nbadges,1,kingrichardii,1595\nobey,1,kingrichardii,1595\nSeely,1,kingrichardii,1595\nridges,1,kingrichardii,1595\nboundeth,1,kingrichardii,1595\nextinct,1,kingrichardii,1595\ngod,1,kingrichardii,1595\ntrimm'd,1,kingrichardii,1595\nTransform'd,1,kingrichardii,1595\nannoyance,1,kingrichardii,1595\nplants,1,kingrichardii,1595\nmoons,1,kingrichardii,1595\nmadmen,1,kingrichardii,1595\ndolour,1,kingrichardii,1595\nvaliant,1,kingrichardii,1595\nweed,1,kingrichardii,1595\nthorn,1,kingrichardii,1595\ndivide,1,kingrichardii,1595\nGaunt's,1,kingrichardii,1595\ntossing,1,kingrichardii,1595\nchallenge,1,kingrichardii,1595\nFrighting,1,kingrichardii,1595\npostern,1,kingrichardii,1595\nhills,1,kingrichardii,1595\nAdding,1,kingrichardii,1595\nspotless,1,kingrichardii,1595\nthriftless,1,kingrichardii,1595\nReceive,1,kingrichardii,1595\nstray,1,kingrichardii,1595\nmetal,1,kingrichardii,1595\nrebel,1,kingrichardii,1595\nfields,1,kingrichardii,1595\nimagine,1,kingrichardii,1595\nbury,1,kingrichardii,1595\nsuffer'd,1,kingrichardii,1595\nSuddenly,1,kingrichardii,1595\nwhoso,1,kingrichardii,1595\ndifference,1,kingrichardii,1595\nsalute,1,kingrichardii,1595\nbell,1,kingrichardii,1595\nimmediately,1,kingrichardii,1595\nscruples,1,kingrichardii,1595\nhermitage,1,kingrichardii,1595\nlabour's,1,kingrichardii,1595\nstruck,1,kingrichardii,1595\nConsuming,1,kingrichardii,1595\nawaked,1,kingrichardii,1595\ntell'st,1,kingrichardii,1595\nattention,1,kingrichardii,1595\nsounds,1,kingrichardii,1595\nargue,1,kingrichardii,1595\nExcepting,1,kingrichardii,1595\nmoreover,1,kingrichardii,1595\nimmediate,1,kingrichardii,1595\ndevised,1,kingrichardii,1595\nsurmounts,1,kingrichardii,1595\nbeadsmen,1,kingrichardii,1595\nlatest,1,kingrichardii,1595\nwear,1,kingrichardii,1595\nparle,1,kingrichardii,1595\ncomplot,1,kingrichardii,1595\ngall'd,1,kingrichardii,1595\ndisperse,1,kingrichardii,1595\nparks,1,kingrichardii,1595\nLies,1,kingrichardii,1595\nchopping,1,kingrichardii,1595\nPut,1,kingrichardii,1595\nPlays,1,kingrichardii,1595\ndumbly,1,kingrichardii,1595\nLascivious,1,kingrichardii,1595\nDies,1,kingrichardii,1595\nDrawing,1,kingrichardii,1595\nbended,1,kingrichardii,1595\nWatching,1,kingrichardii,1595\nembassage,1,kingrichardii,1595\nDared,1,kingrichardii,1595\nantic,1,kingrichardii,1595\ntransport,1,kingrichardii,1595\nDidst,1,kingrichardii,1595\nhereof,1,kingrichardii,1595\nfurbish,1,kingrichardii,1595\ntraitors',1,kingrichardii,1595\nroyally,1,kingrichardii,1595\nconquest,1,kingrichardii,1595\nconjuration,1,kingrichardii,1595\nRain'd,1,kingrichardii,1595\nbeget,1,kingrichardii,1595\ntaxes,1,kingrichardii,1595\nvows,1,kingrichardii,1595\nnettles,1,kingrichardii,1595\ndiscomfort,1,kingrichardii,1595\nbuy,1,kingrichardii,1595\nYe,1,kingrichardii,1595\nControlling,1,kingrichardii,1595\nsubmission,1,kingrichardii,1595\nvassal,1,kingrichardii,1595\nUrge,1,kingrichardii,1595\npreserve,1,kingrichardii,1595\nchild's,1,kingrichardii,1595\nregenerate,1,kingrichardii,1595\nlonger,1,kingrichardii,1595\ngown,1,kingrichardii,1595\nAbout,1,kingrichardii,1595\nTends,1,kingrichardii,1595\nscraping,1,kingrichardii,1595\nbeds,1,kingrichardii,1595\nstories,1,kingrichardii,1595\nWelshman,1,kingrichardii,1595\nunkiss,1,kingrichardii,1595\nhourly,1,kingrichardii,1595\npitch,1,kingrichardii,1595\ngrace's,1,kingrichardii,1595\ntwigs,1,kingrichardii,1595\nbegs,1,kingrichardii,1595\nfooting,1,kingrichardii,1595\nturns,1,kingrichardii,1595\ngrandsire,1,kingrichardii,1595\norderly,1,kingrichardii,1595\ntapp'd,1,kingrichardii,1595\nimmortal,1,kingrichardii,1595\nwoefullest,1,kingrichardii,1595\nuplifted,1,kingrichardii,1595\ncrowned,1,kingrichardii,1595\nDashes,1,kingrichardii,1595\nafoot,1,kingrichardii,1595\ninheritance,1,kingrichardii,1595\nName,1,kingrichardii,1595\nAccomplish'd,1,kingrichardii,1595\nunstooping,1,kingrichardii,1595\nAttending,1,kingrichardii,1595\nenvy's,1,kingrichardii,1595\nflatterest,1,kingrichardii,1595\nstore,1,kingrichardii,1595\nLand,1,kingrichardii,1595\nentertain,1,kingrichardii,1595\nstorm,1,kingrichardii,1595\nstooping,1,kingrichardii,1595\nstory,1,kingrichardii,1595\ndeem,1,kingrichardii,1595\nMARSHAL,1,kingrichardii,1595\nthrusteth,1,kingrichardii,1595\ngovernment,1,kingrichardii,1595\nstay'd,1,kingrichardii,1595\nforgive,1,kingrichardii,1595\npromised,1,kingrichardii,1595\nwretch,1,kingrichardii,1595\nunderprop,1,kingrichardii,1595\nCommit'st,1,kingrichardii,1595\nvoyage,1,kingrichardii,1595\npaste,1,kingrichardii,1595\nexpedience,1,kingrichardii,1595\ncrossly,1,kingrichardii,1595\nNorfolk's,1,kingrichardii,1595\nembraced,1,kingrichardii,1595\nMock,1,kingrichardii,1595\nraise,1,kingrichardii,1595\nSaracens,1,kingrichardii,1595\nBores,1,kingrichardii,1595\naid,1,kingrichardii,1595\nburial,1,kingrichardii,1595\nrepent,1,kingrichardii,1595\nforbids,1,kingrichardii,1595\nmoans,1,kingrichardii,1595\nEden,1,kingrichardii,1595\ndangling,1,kingrichardii,1595\nlineal,1,kingrichardii,1595\nsheer,1,kingrichardii,1595\ndeck,1,kingrichardii,1595\nstood,1,kingrichardii,1595\ncolts,1,kingrichardii,1595\ndebt,1,kingrichardii,1595\nneeds,1,kingrichardii,1595\nsleepest,1,kingrichardii,1595\nMaking,1,kingrichardii,1595\ntaverns,1,kingrichardii,1595\ngain,1,kingrichardii,1595\nsuccor,1,kingrichardii,1595\nrightful,1,kingrichardii,1595\nlaments,1,kingrichardii,1595\nImp,1,kingrichardii,1595\nyew,1,kingrichardii,1595\nago,1,kingrichardii,1595\nJewry,1,kingrichardii,1595\nweigh'd,1,kingrichardii,1595\nNecessity,1,kingrichardii,1595\ndwell,1,kingrichardii,1595\nwhereon,1,kingrichardii,1595\nBeggar,1,kingrichardii,1595\nsureties,1,kingrichardii,1595\ncaitiff,1,kingrichardii,1595\ngilt,1,kingrichardii,1595\nmoveables,1,kingrichardii,1595\nwalled,1,kingrichardii,1595\nvictory,1,kingrichardii,1595\npriest,1,kingrichardii,1595\nFeed,1,kingrichardii,1595\nseeing,1,kingrichardii,1595\ngild,1,kingrichardii,1595\nlent,1,kingrichardii,1595\nholiday,1,kingrichardii,1595\naccuser,1,kingrichardii,1595\nenforce,1,kingrichardii,1595\ndoes,1,kingrichardii,1595\nrainy,1,kingrichardii,1595\ndestruction,1,kingrichardii,1595\nforged,1,kingrichardii,1595\naccused,1,kingrichardii,1595\nhaught,1,kingrichardii,1595\naffrighted,1,kingrichardii,1595\ndefence,1,kingrichardii,1595\ngenerally,1,kingrichardii,1595\nglistering,1,kingrichardii,1595\nnicely,1,kingrichardii,1595\nincaged,1,kingrichardii,1595\nvauntingly,1,kingrichardii,1595\nregalia,1,kingrichardii,1595\napproach,1,kingrichardii,1595\nEnforce,1,kingrichardii,1595\nCherish,1,kingrichardii,1595\nwench,1,kingrichardii,1595\ncrosses,1,kingrichardii,1595\nhumours,1,kingrichardii,1595\nfixed,1,kingrichardii,1595\nrouse,1,kingrichardii,1595\ncorrect,1,kingrichardii,1595\nprosper,1,kingrichardii,1595\nreins,1,kingrichardii,1595\nattending,1,kingrichardii,1595\nbarbarism,1,kingrichardii,1595\ncommitted,1,kingrichardii,1595\nspreading,1,kingrichardii,1595\nbites,1,kingrichardii,1595\nmonth,1,kingrichardii,1595\ndelay,1,kingrichardii,1595\ndemi,1,kingrichardii,1595\ndraymen,1,kingrichardii,1595\nabstains,1,kingrichardii,1595\ncrave,1,kingrichardii,1595\nroused,1,kingrichardii,1595\nwrinkles,1,kingrichardii,1595\ncurbs,1,kingrichardii,1595\nmisbegotten,1,kingrichardii,1595\nsharper,1,kingrichardii,1595\nRoyally,1,kingrichardii,1595\nabide,1,kingrichardii,1595\nidle,1,kingrichardii,1595\nLive,1,kingrichardii,1595\nhoard,1,kingrichardii,1595\naccount,1,kingrichardii,1595\nEdmund,1,kingrichardii,1595\nattendant,1,kingrichardii,1595\nlour,1,kingrichardii,1595\nlook'st,1,kingrichardii,1595\nquenching,1,kingrichardii,1595\ntemper,1,kingrichardii,1595\ncaused,1,kingrichardii,1595\ncarved,1,kingrichardii,1595\ncrimes,1,kingrichardii,1595\nvalue,1,kingrichardii,1595\ntrain,1,kingrichardii,1595\nDivine,1,kingrichardii,1595\nenmity,1,kingrichardii,1595\ncarver,1,kingrichardii,1595\nloves,1,kingrichardii,1595\ninn,1,kingrichardii,1595\npursues,1,kingrichardii,1595\nremembering,1,kingrichardii,1595\noffences,1,kingrichardii,1595\nRenowned,1,kingrichardii,1595\nsweetened,1,kingrichardii,1595\nwarms,1,kingrichardii,1595\nle,1,kingrichardii,1595\nsettled,1,kingrichardii,1595\noffer'd,1,kingrichardii,1595\nendure,1,kingrichardii,1595\nchallenger,1,kingrichardii,1595\nlevy,1,kingrichardii,1595\nado,1,kingrichardii,1595\nmoon,1,kingrichardii,1595\ncommands,1,kingrichardii,1595\nlaboured,1,kingrichardii,1595\nYes,1,kingrichardii,1595\nadd,1,kingrichardii,1595\nbeholding,1,kingrichardii,1595\nho,1,kingrichardii,1595\nresolved,1,kingrichardii,1595\nlest,1,kingrichardii,1595\ncelebrate,1,kingrichardii,1595\nvice's,1,kingrichardii,1595\nBreathe,1,kingrichardii,1595\nloved,1,kingrichardii,1595\nfilling,1,kingrichardii,1595\ndefy,1,kingrichardii,1595\nGrace,1,kingrichardii,1595\nact,1,kingrichardii,1595\nbeauteous,1,kingrichardii,1595\nconfessing,1,kingrichardii,1595\nkings',1,kingrichardii,1595\nserious,1,kingrichardii,1595\nnimbly,1,kingrichardii,1595\nattain,1,kingrichardii,1595\nexpiration,1,kingrichardii,1595\ngardeners,1,kingrichardii,1595\njocund,1,kingrichardii,1595\nuntimely,1,kingrichardii,1595\nreads,1,kingrichardii,1595\npure,1,kingrichardii,1595\nsummers,1,kingrichardii,1595\nloam,1,kingrichardii,1595\nkindred's,1,kingrichardii,1595\nincontinent,1,kingrichardii,1595\nharp,1,kingrichardii,1595\nwasteful,1,kingrichardii,1595\nwarm'd,1,kingrichardii,1595\ntenderly,1,kingrichardii,1595\neasy,1,kingrichardii,1595\nkills,1,kingrichardii,1595\ndiscourse,1,kingrichardii,1595\npuny,1,kingrichardii,1595\nJack,1,kingrichardii,1595\nenfranchisement,1,kingrichardii,1595\npathway,1,kingrichardii,1595\nBrought,1,kingrichardii,1595\nhowe'er,1,kingrichardii,1595\nunlook'd,1,kingrichardii,1595\nplume,1,kingrichardii,1595\nsuggested,1,kingrichardii,1595\ncozening,1,kingrichardii,1595\ncaverns,1,kingrichardii,1595\npeering,1,kingrichardii,1595\nStirr'd,1,kingrichardii,1595\nisle,1,kingrichardii,1595\nstring,1,kingrichardii,1595\ntransgressing,1,kingrichardii,1595\nEDMUND,1,kingrichardii,1595\nDecember,1,kingrichardii,1595\naye,1,kingrichardii,1595\nlewd,1,kingrichardii,1595\nafford,1,kingrichardii,1595\nNimble,1,kingrichardii,1595\naffects,1,kingrichardii,1595\nfrown'd,1,kingrichardii,1595\nBishop,1,kingrichardii,1595\nsinks,1,kingrichardii,1595\nhalf,1,kingrichardii,1595\npoorly,1,kingrichardii,1595\nowls,1,kingrichardii,1595\ncrop,1,kingrichardii,1595\nexpiring,1,kingrichardii,1595\nComplotted,1,kingrichardii,1595\nsignify,1,kingrichardii,1595\nsubmit,1,kingrichardii,1595\nnation,1,kingrichardii,1595\nhelpful,1,kingrichardii,1595\nfashion'd,1,kingrichardii,1595\nnoisome,1,kingrichardii,1595\nperform'd,1,kingrichardii,1595\nRead,1,kingrichardii,1595\nhusband's,1,kingrichardii,1595\ndigressing,1,kingrichardii,1595\ncall'd,1,kingrichardii,1595\ntrade,1,kingrichardii,1595\nredoubled,1,kingrichardii,1595\nsignal,1,kingrichardii,1595\nrepeat,1,kingrichardii,1595\nhang,1,kingrichardii,1595\nlengthen,1,kingrichardii,1595\nlanes,1,kingrichardii,1595\nladder,1,kingrichardii,1595\ntrack,1,kingrichardii,1595\nforty,1,kingrichardii,1595\njoyful,1,kingrichardii,1595\nsweetest,1,kingrichardii,1595\nCain,1,kingrichardii,1595\nspotted,1,kingrichardii,1595\nexcuse,1,kingrichardii,1595\ncombating,1,kingrichardii,1595\ngovernor,1,kingrichardii,1595\nwhether,1,kingrichardii,1595\ncasque,1,kingrichardii,1595\nUnder,1,kingrichardii,1595\ndeaths,1,kingrichardii,1595\nmajesty's,1,kingrichardii,1595\nweeps,1,kingrichardii,1595\nRazed,1,kingrichardii,1595\neased,1,kingrichardii,1595\nspears,1,kingrichardii,1595\nvipers,1,kingrichardii,1595\ncastle's,1,kingrichardii,1595\nsubject's,1,kingrichardii,1595\nCommend,1,kingrichardii,1595\nTendering,1,kingrichardii,1595\nconfederate,1,kingrichardii,1595\nharder,1,kingrichardii,1595\ndominions,1,kingrichardii,1595\nstricken,1,kingrichardii,1595\ndelight,1,kingrichardii,1595\nheaviness,1,kingrichardii,1595\nwinter's,1,kingrichardii,1595\nsouthern,1,kingrichardii,1595\nplotted,1,kingrichardii,1595\nextremest,1,kingrichardii,1595\ndiest,1,kingrichardii,1595\noutrage,1,kingrichardii,1595\nAscend,1,kingrichardii,1595\nempties,1,kingrichardii,1595\nemptier,1,kingrichardii,1595\nchastise,1,kingrichardii,1595\nforsworn,1,kingrichardii,1595\nengaol'd,1,kingrichardii,1595\nappeals,1,kingrichardii,1595\nattach,1,kingrichardii,1595\nRamston,1,kingrichardii,1595\nrevell'd,1,kingrichardii,1595\nuncurse,1,kingrichardii,1595\npace,1,kingrichardii,1595\nStays,1,kingrichardii,1595\nfear'd,1,kingrichardii,1595\ndreadful,1,kingrichardii,1595\ndismal,1,kingrichardii,1595\nexecutors,1,kingrichardii,1595\nCast,1,kingrichardii,1595\ninsatiate,1,kingrichardii,1595\nawe,1,kingrichardii,1595\nfont,1,kingrichardii,1595\nfall'n,1,kingrichardii,1595\ngraved,1,kingrichardii,1595\nAnointed,1,kingrichardii,1595\nflatter'd,1,kingrichardii,1595\nFell,1,kingrichardii,1595\nBereft,1,kingrichardii,1595\nmoat,1,kingrichardii,1595\ncontain,1,kingrichardii,1595\nsaints,1,kingrichardii,1595\nSmall,1,kingrichardii,1595\nDischarge,1,kingrichardii,1595\ncourses,1,kingrichardii,1595\nOrder,1,kingrichardii,1595\nass,1,kingrichardii,1595\nAbraham,1,kingrichardii,1595\nobject,1,kingrichardii,1595\nPierced,1,kingrichardii,1595\noverweening,1,kingrichardii,1595\nAttendant,1,kingrichardii,1595\nappeareth,1,kingrichardii,1595\nrightly,1,kingrichardii,1595\nbeards,1,kingrichardii,1595\nbegets,1,kingrichardii,1595\nfold,1,kingrichardii,1595\nhumour'd,1,kingrichardii,1595\nExeter,1,kingrichardii,1595\nWhite,1,kingrichardii,1595\nbetide,1,kingrichardii,1595\nObedience,1,kingrichardii,1595\nbeggars,1,kingrichardii,1595\nArm,1,kingrichardii,1595\nchance,1,kingrichardii,1595\nAwhile,1,kingrichardii,1595\nKind,1,kingrichardii,1595\npassengers,1,kingrichardii,1595\nfurnish,1,kingrichardii,1595\nhavior,1,kingrichardii,1595\nsprinkle,1,kingrichardii,1595\nfell'd,1,kingrichardii,1595\nboughs,1,kingrichardii,1595\ninquire,1,kingrichardii,1595\npartial,1,kingrichardii,1595\nSirrah,1,kingrichardii,1595\nfed,1,kingrichardii,1595\nAgain,1,kingrichardii,1595\ngrinning,1,kingrichardii,1595\ncheque,1,kingrichardii,1595\nlurking,1,kingrichardii,1595\nsweetly,1,kingrichardii,1595\nmanors,1,kingrichardii,1595\nflatteries,1,kingrichardii,1595\npartialize,1,kingrichardii,1595\nwooing,1,kingrichardii,1595\nsicker,1,kingrichardii,1595\ngnarling,1,kingrichardii,1595\nStoop,1,kingrichardii,1595\npurple,1,kingrichardii,1595\nLittle,1,kingrichardii,1595\nAsk,1,kingrichardii,1595\nguess,1,kingrichardii,1595\nbeams,1,kingrichardii,1595\nkindled,1,kingrichardii,1595\nmads,1,kingrichardii,1595\nprays,1,kingrichardii,1595\nneedle's,1,kingrichardii,1595\nprecedent,1,kingrichardii,1595\nlead,1,kingrichardii,1595\nCover,1,kingrichardii,1595\nspoken,1,kingrichardii,1595\nleaf,1,kingrichardii,1595\ncapital,1,kingrichardii,1595\nsuperfluous,1,kingrichardii,1595\nfooling,1,kingrichardii,1595\nconsumed,1,kingrichardii,1595\nheight,1,kingrichardii,1595\nunthrifts,1,kingrichardii,1595\nInto,1,kingrichardii,1595\nunthrifty,1,kingrichardii,1595\napprenticehood,1,kingrichardii,1595\nComfort's,1,kingrichardii,1595\nSuggest,1,kingrichardii,1595\naggravate,1,kingrichardii,1595\nGeorge,1,kingrichardii,1595\nexecute,1,kingrichardii,1595\nyesterday,1,kingrichardii,1595\nShows,1,kingrichardii,1595\nborrow,1,kingrichardii,1595\nLament,1,kingrichardii,1595\noften,1,kingrichardii,1595\nelected,1,kingrichardii,1595\nopinions,1,kingrichardii,1595\nraze,1,kingrichardii,1595\nleap,1,kingrichardii,1595\ntediousness,1,kingrichardii,1595\nrepeals,1,kingrichardii,1595\nSeymour,1,kingrichardii,1595\nDishonourable,1,kingrichardii,1595\nlong'd,1,kingrichardii,1595\nSun,1,kingrichardii,1595\nfirmness,1,kingrichardii,1595\nkeeps,1,kingrichardii,1595\nglories,1,kingrichardii,1595\nequal,1,kingrichardii,1595\nbreeds,1,kingrichardii,1595\nmaim,1,kingrichardii,1595\nmoved,1,kingrichardii,1595\nVirtue,1,kingrichardii,1595\nobscene,1,kingrichardii,1595\nshameful,1,kingrichardii,1595\nmaid,1,kingrichardii,1595\nSluiced,1,kingrichardii,1595\nprescribe,1,kingrichardii,1595\npermitted,1,kingrichardii,1595\nadminister,1,kingrichardii,1595\nNeglected,1,kingrichardii,1595\nTen,1,kingrichardii,1595\nreport,1,kingrichardii,1595\nredoubted,1,kingrichardii,1595\napprehension,1,kingrichardii,1595\nmisfortunes,1,kingrichardii,1595\nArmies,1,kingrichardii,1595\nbreathed,1,kingrichardii,1595\nrose,1,kingrichardii,1595\nclamour,1,kingrichardii,1595\nchivalrous,1,kingrichardii,1595\nbroad,1,kingrichardii,1595\nfaction,1,kingrichardii,1595\nArchbishop,1,kingrichardii,1595\nbuilt,1,kingrichardii,1595\nnote,1,kingrichardii,1595\nAim'd,1,kingrichardii,1595\nBetter,1,kingrichardii,1595\nprosperity,1,kingrichardii,1595\ndarts,1,kingrichardii,1595\nrepose,1,kingrichardii,1595\nfourth,1,kingrichardii,1595\nHall,1,kingrichardii,1595\nclergyman,1,kingrichardii,1595\nhangeth,1,kingrichardii,1595\nWilds,1,kingrichardii,1595\nRichly,1,kingrichardii,1595\nlodgings,1,kingrichardii,1595\nmarks,1,kingrichardii,1595\ncontains,1,kingrichardii,1595\npenury,1,kingrichardii,1595\ntoil'd,1,kingrichardii,1595\ndaintiness,1,kingrichardii,1595\ncastles,1,kingrichardii,1595\nobscure,1,kingrichardii,1595\npatents,1,kingrichardii,1595\nCommitted,1,kingrichardii,1595\nintellect,1,kingrichardii,1595\nunstringed,1,kingrichardii,1595\npresages,1,kingrichardii,1595\naccusations,1,kingrichardii,1595\nbeats,1,kingrichardii,1595\nStrive,1,kingrichardii,1595\ndress,1,kingrichardii,1595\nscale,1,kingrichardii,1595\nclog,1,kingrichardii,1595\nproudly,1,kingrichardii,1595\ngivest,1,kingrichardii,1595\nsubjected,1,kingrichardii,1595\nguides,1,kingrichardii,1595\nBad,1,kingrichardii,1595\npaths,1,kingrichardii,1595\ndeserving,1,kingrichardii,1595\nbelow,1,kingrichardii,1595\ncloy,1,kingrichardii,1595\ndaintiest,1,kingrichardii,1595\nclergymen,1,kingrichardii,1595\ndisgraced,1,kingrichardii,1595\nlance's,1,kingrichardii,1595\nshineth,1,kingrichardii,1595\nrash,1,kingrichardii,1595\nbrazen,1,kingrichardii,1595\nbears,1,kingrichardii,1595\ncourtship,1,kingrichardii,1595\nestate,1,kingrichardii,1595\noppresseth,1,kingrichardii,1595\nknots,1,kingrichardii,1595\ncompanions,1,kingrichardii,1595\nblew,1,kingrichardii,1595\nlustiest,1,kingrichardii,1595\nyear,1,kingrichardii,1595\nkneels,1,kingrichardii,1595\nSpurr'd,1,kingrichardii,1595\ndukes,1,kingrichardii,1595\nWeak,1,kingrichardii,1595\ndangers,1,kingrichardii,1595\nglasses,1,kingrichardii,1595\nShe,1,kingrichardii,1595\nlingers,1,kingrichardii,1595\nchase,1,kingrichardii,1595\npastures',1,kingrichardii,1595\nstares,1,kingrichardii,1595\ndrunkenly,1,kingrichardii,1595\nBarkloughly,1,kingrichardii,1595\nvisage,1,kingrichardii,1595\nperused,1,kingrichardii,1595\nalter,1,kingrichardii,1595\nEmbrace,1,kingrichardii,1595\nnarrow,1,kingrichardii,1595\nO'erthrows,1,kingrichardii,1595\nshores,1,kingrichardii,1595\ndesiring,1,kingrichardii,1595\nFurther,1,kingrichardii,1595\nperform,1,kingrichardii,1595\nstaggers,1,kingrichardii,1595\nexiled,1,kingrichardii,1595\nsprings,1,kingrichardii,1595\nSet,1,kingrichardii,1595\nmisery,1,kingrichardii,1595\nunhappy,1,kingrichardii,1595\nforest,1,kingrichardii,1595\nplaces,1,kingrichardii,1595\nawhile,1,kingrichardii,1595\npowers,1,kingrichardii,1595\ncloak,1,kingrichardii,1595\nleaving,1,kingrichardii,1595\nTurns,1,kingrichardii,1595\ninjustice,1,kingrichardii,1595\nshivering,1,kingrichardii,1595\nDost,1,kingrichardii,1595\ntutor,1,kingrichardii,1595\nLambert's,1,kingrichardii,1595\ncompassionate,1,kingrichardii,1595\nensuing,1,kingrichardii,1595\nPilates,1,kingrichardii,1595\nConvey,1,kingrichardii,1595\ninky,1,kingrichardii,1595\ngeneral,1,kingrichardii,1595\nsigh'd,1,kingrichardii,1595\nwistly,1,kingrichardii,1595\ndiscontent,1,kingrichardii,1595\neffect,1,kingrichardii,1595\ndissolution,1,kingrichardii,1595\nset'st,1,kingrichardii,1595\nEvermore,1,kingrichardii,1595\nstrife,1,kingrichardii,1595\nlodge,1,kingrichardii,1595\nduty's,1,kingrichardii,1595\ndistaff,1,kingrichardii,1595\nFree,1,kingrichardii,1595\nRode,1,kingrichardii,1595\nblessings,1,kingrichardii,1595\nelsewhere,1,kingrichardii,1595\nDestruction,1,kingrichardii,1595\narrived,1,kingrichardii,1595\nDrums,1,kingrichardii,1595\nLong,1,kingrichardii,1595\nsinging,1,kingrichardii,1595\nlisten'd,1,kingrichardii,1595\ndisdain'd,1,kingrichardii,1595\nplaining,1,kingrichardii,1595\n'Is,1,kingrichardii,1595\nmonarchize,1,kingrichardii,1595\n'It,1,kingrichardii,1595\nknave,1,kingrichardii,1595\nflinty,1,kingrichardii,1595\nrange,1,kingrichardii,1595\nspill'd,1,kingrichardii,1595\nrobbers,1,kingrichardii,1595\nMark'd,1,kingrichardii,1595\nscepter'd,1,kingrichardii,1595\nwatches,1,kingrichardii,1595\nreturn'st,1,kingrichardii,1595\nman',1,kingrichardii,1595\nbeads,1,kingrichardii,1595\nconfidence,1,kingrichardii,1595\nprocess,1,kingrichardii,1595\nbloods,1,kingrichardii,1595\nQueen,1,kingrichardii,1595\nbelong,1,kingrichardii,1595\nmidwife,1,kingrichardii,1595\nskin,1,kingrichardii,1595\nconcord,1,kingrichardii,1595\nBearing,1,kingrichardii,1595\ncontradiction,1,kingrichardii,1595\nkissing,1,kingrichardii,1595\ndream,1,kingrichardii,1595\nRevolt,1,kingrichardii,1595\nranks,1,kingrichardii,1595\nemployments,1,kingrichardii,1595\ninjuries,1,kingrichardii,1595\ncrimson,1,kingrichardii,1595\nfountain,1,kingrichardii,1595\nSon,1,kingrichardii,1595\npenitence,1,kingrichardii,1595\nfurnish'd,1,kingrichardii,1595\nmisled,1,kingrichardii,1595\nhabiliments,1,kingrichardii,1595\nforsook,1,kingrichardii,1595\nDiscomfortable,1,kingrichardii,1595\nquoth,1,kingrichardii,1595\nbelieving,1,kingrichardii,1595\nJoy,1,kingrichardii,1595\nripen,1,kingrichardii,1595\ninch,1,kingrichardii,1595\nadorned,1,kingrichardii,1595\ncraves,1,kingrichardii,1595\ngreatest,1,kingrichardii,1595\nfertility,1,kingrichardii,1595\nweaken'd,1,kingrichardii,1595\nbeside,1,kingrichardii,1595\nshoulder,1,kingrichardii,1595\nspecial,1,kingrichardii,1595\nheaven's,1,kingrichardii,1595\nthief,1,kingrichardii,1595\nmiss,1,kingrichardii,1595\nabet,1,kingrichardii,1595\nbenefit,1,kingrichardii,1595\nthreatening,1,kingrichardii,1595\ncaptive,1,kingrichardii,1595\nEating,1,kingrichardii,1595\nhypocrisy,1,kingrichardii,1595\ndischarge,1,kingrichardii,1595\nForces,1,kingrichardii,1595\napart,1,kingrichardii,1595\nWhatever,1,kingrichardii,1595\ndivorced,1,kingrichardii,1595\nseat's,1,kingrichardii,1595\nmockery,1,kingrichardii,1595\nappellants,1,kingrichardii,1595\nChoose,1,kingrichardii,1595\noil,1,kingrichardii,1595\ntrouble,1,kingrichardii,1595\ndivision,1,kingrichardii,1595\nPerhaps,1,kingrichardii,1595\nfills,1,kingrichardii,1595\nfirm,1,kingrichardii,1595\nones,1,kingrichardii,1595\nDevouring,1,kingrichardii,1595\napish,1,kingrichardii,1595\nFound,1,kingrichardii,1595\nWert,1,kingrichardii,1595\nbequeath,1,kingrichardii,1595\nbehalf,1,kingrichardii,1595\nlecture,1,kingrichardii,1595\nlengthen'd,1,kingrichardii,1595\ndeny'st,1,kingrichardii,1595\nAwaked,1,kingrichardii,1595\nComing,1,kingrichardii,1595\nclose,1,kingrichardii,1595\npause,1,kingrichardii,1595\nsuspicion,1,kingrichardii,1595\nLandlord,1,kingrichardii,1595\nRainold,1,kingrichardii,1595\naccomplish'd,1,kingrichardii,1595\nThey'll,1,kingrichardii,1595\nunfeeling,1,kingrichardii,1595\nduchess,1,kingrichardii,1595\nwindows',1,kingrichardii,1595\nstale,1,kingrichardii,1595\nsalt,1,kingrichardii,1595\npound,1,kingrichardii,1595\ncarefully,1,kingrichardii,1595\nretire,1,kingrichardii,1595\nformer,1,kingrichardii,1595\npurchase,1,kingrichardii,1595\nBespake,1,kingrichardii,1595\nsafely,1,kingrichardii,1595\nRue,1,kingrichardii,1595\nConfess,1,kingrichardii,1595\nDeep,1,kingrichardii,1595\nfostered,1,kingrichardii,1595\nfive,1,kingrichardii,1595\ndesolate,1,kingrichardii,1595\nrestful,1,kingrichardii,1595\npersons,1,kingrichardii,1595\nmessage,1,kingrichardii,1595\nwhere'er,1,kingrichardii,1595\narrival,1,kingrichardii,1595\nhateful,1,kingrichardii,1595\nvisits,1,kingrichardii,1595\nredemption,1,kingrichardii,1595\n'Twill,1,kingrichardii,1595\nbands,1,kingrichardii,1595\nherbs,1,kingrichardii,1595\nreceipt,1,kingrichardii,1595\nLANCASTER'S,1,kingrichardii,1595\ncourser's,1,kingrichardii,1595\noffenders',1,kingrichardii,1595\nreacheth,1,kingrichardii,1595\nenvying,1,kingrichardii,1595\ntumultuous,1,kingrichardii,1595\ncurs,1,kingrichardii,1595\nProcure,1,kingrichardii,1595\nring,1,kingrichardii,1595\nusurping,1,kingrichardii,1595\nprime,1,kingrichardii,1595\nsitting,1,kingrichardii,1595\nthrives,1,kingrichardii,1595\nbondage,1,kingrichardii,1595\nsteel'd,1,kingrichardii,1595\nDisbursed,1,kingrichardii,1595\nriot,1,kingrichardii,1595\ndetain'd,1,kingrichardii,1595\nVenice,1,kingrichardii,1595\nhearers,1,kingrichardii,1595\nhoofs,1,kingrichardii,1595\nEre't,1,kingrichardii,1595\nflight,1,kingrichardii,1595\nmusicians,1,kingrichardii,1595\nresidence,1,kingrichardii,1595\nchoked,1,kingrichardii,1595\nrebellious,1,kingrichardii,1595\nintegrity,1,kingrichardii,1595\nperspectives,1,kingrichardii,1595\nGolgotha,1,kingrichardii,1595\nBlunt,1,kingrichardii,1595\nflint,1,kingrichardii,1595\ndecrees,1,kingrichardii,1595\nvenom'd,1,kingrichardii,1595\nhumility,1,kingrichardii,1595\nissues,1,kingrichardii,1595\ncalled,1,kingrichardii,1595\nstiff,1,kingrichardii,1595\n'The,1,kingrichardii,1595\nunhappied,1,kingrichardii,1595\nearnest,1,kingrichardii,1595\nstage,1,kingrichardii,1595\nWeep,1,kingrichardii,1595\nmould,1,kingrichardii,1595\ndriven,1,kingrichardii,1595\nable,1,kingrichardii,1595\ntuned,1,kingrichardii,1595\nwithstood,1,kingrichardii,1595\nprevail,1,kingrichardii,1595\nhopeless,1,kingrichardii,1595\nbetween,1,kingrichardii,1595\nWoodstock's,1,kingrichardii,1595\nambition,1,kingrichardii,1595\ndeparting,1,kingrichardii,1595\nsolemnly,1,kingrichardii,1595\nWhere'er,1,kingrichardii,1595\nbleed,1,kingrichardii,1595\ntrueborn,1,kingrichardii,1595\nintend,1,kingrichardii,1595\nuntrodden,1,kingrichardii,1595\nhandle,1,kingrichardii,1595\nwood,1,kingrichardii,1595\ndugs,1,kingrichardii,1595\ngroan'd,1,kingrichardii,1595\nBrittany,1,kingrichardii,1595\ngreetings,1,kingrichardii,1595\nuncle's,1,kingrichardii,1595\nbereft,1,kingrichardii,1595\nPrinces,1,kingrichardii,1595\nprick,1,kingrichardii,1595\nsupper,1,kingrichardii,1595\nreturn',1,kingrichardii,1595\nvillains,1,kingrichardii,1595\ntaxations,1,kingrichardii,1595\nforfend,1,kingrichardii,1595\nexclaims,1,kingrichardii,1595\nwomen's,1,kingrichardii,1595\nunpossible,1,kingrichardii,1595\nScorns,1,kingrichardii,1595\nSister,1,kingrichardii,1595\nwitted,1,kingrichardii,1595\nbucket,1,kingrichardii,1595\nmore's,1,kingrichardii,1595\nstoop'd,1,kingrichardii,1595\nNorbery,1,kingrichardii,1595\nresounding,1,kingrichardii,1595\nhail,1,kingrichardii,1595\nBanish,1,kingrichardii,1595\nintermix'd,1,kingrichardii,1595\nShalt,1,kingrichardii,1595\nLondon's,1,kingrichardii,1595\nfamiliar,1,kingrichardii,1595\ngladly,1,kingrichardii,1595\nfaces,1,kingrichardii,1595\nblotted,1,kingrichardii,1595\nsurrender,1,kingrichardii,1595\nransom,1,kingrichardii,1595\nwatery,1,kingrichardii,1595\nmuddy,1,kingrichardii,1595\ntakes,1,kingrichardii,1595\ndissolved,1,kingrichardii,1595\nbetid,1,kingrichardii,1595\nmustering,1,kingrichardii,1595\n'pardonne,1,kingrichardii,1595\ntaken,1,kingrichardii,1595\nconference,1,kingrichardii,1595\nWitnessing,1,kingrichardii,1595\npurest,1,kingrichardii,1595\nHail,1,kingrichardii,1595\nrotten,1,kingrichardii,1595\nThrew,1,kingrichardii,1595\nangel,1,kingrichardii,1595\ninform,1,kingrichardii,1595\nunpleased,1,kingrichardii,1595\nkilling,1,kingrichardii,1595\nRobert,1,kingrichardii,1595\ntatter'd,1,kingrichardii,1595\nhack'd,1,kingrichardii,1595\nconveyers,1,kingrichardii,1595\nSwarming,1,kingrichardii,1595\ninclination,1,kingrichardii,1595\nrebellion's,1,kingrichardii,1595\nowe,1,kingrichardii,1595\nrail,1,kingrichardii,1595\nsupportance,1,kingrichardii,1595\nsupply,1,kingrichardii,1595\ndisposition,1,kingrichardii,1595\nlineaments,1,kingrichardii,1595\nchidest,1,kingrichardii,1595\nCobham,1,kingrichardii,1595\nduly,1,kingrichardii,1595\nsupple,1,kingrichardii,1595\nExpedient,1,kingrichardii,1595\nwaters,1,kingrichardii,1595\nshortens,1,kingrichardii,1595\nSaddle,1,kingrichardii,1595\nyoke,1,kingrichardii,1595\nfarther,1,kingrichardii,1595\nbelie,1,kingrichardii,1595\ndrops,1,kingrichardii,1595\nNobles,1,kingrichardii,1595\nAmongst,1,kingrichardii,1595\npagans,1,kingrichardii,1595\nbeguiled,1,kingrichardii,1595\nangry,1,kingrichardii,1595\nantipodes,1,kingrichardii,1595\nDispark'd,1,kingrichardii,1595\nwrong'd,1,kingrichardii,1595\ncover,1,kingrichardii,1595\nNoble,1,kingrichardii,1595\ntravelling,1,kingrichardii,1595\nsurvey'd,1,kingrichardii,1595\nprevention,1,kingrichardii,1595\nappeall'd,1,kingrichardii,1595\nStrike,1,kingrichardii,1595\ncontempt,1,kingrichardii,1595\nheirs,1,kingrichardii,1595\nsails,1,kingrichardii,1595\ndoubled,1,kingrichardii,1595\ncreate,1,kingrichardii,1595\nfretted,1,kingrichardii,1595\nSwear,1,kingrichardii,1595\ndurst,1,kingrichardii,1595\ntongueless,1,kingrichardii,1595\nyond,1,kingrichardii,1595\nTime,1,kingrichardii,1595\ntuft,1,kingrichardii,1595\nThither,1,kingrichardii,1595\ndesert,1,kingrichardii,1595\nlendings,1,kingrichardii,1595\nCondemns,1,kingrichardii,1595\nThat's,1,kingrichardii,1595\ncrystal,1,kingrichardii,1595\nprattle,1,kingrichardii,1595\narticle,1,kingrichardii,1595\nHadst,1,kingrichardii,1595\npalsy,1,kingrichardii,1595\nlasting,1,kingrichardii,1595\nSpur,1,kingrichardii,1595\nsilly,1,kingrichardii,1595\ntenement,1,kingrichardii,1595\ngrand,1,kingrichardii,1595\nRuns,1,kingrichardii,1595\nwork,1,kingrichardii,1595\nspilling,1,kingrichardii,1595\nworn,1,kingrichardii,1595\nwit's,1,kingrichardii,1595\ndiscover,1,kingrichardii,1595\ntune,1,kingrichardii,1595\nDeposing,1,kingrichardii,1595\nclerk,1,kingrichardii,1595\nfighting,1,kingrichardii,1595\nlodged,1,kingrichardii,1595\nwest,1,kingrichardii,1595\nbrandish,1,kingrichardii,1595\nclay,1,kingrichardii,1595\nunjust,1,kingrichardii,1595\nminute,1,kingrichardii,1595\nfit,1,kingrichardii,1595\nMark,1,kingrichardii,1595\nSorrow,1,kingrichardii,1595\nimpeach,1,kingrichardii,1595\noffices,1,kingrichardii,1595\ndelectable,1,kingrichardii,1595\nDoing,1,kingrichardii,1595\nfill,1,kingrichardii,1595\nDesolate,1,kingrichardii,1595\nBoy,1,kingrichardii,1595\nwoods,1,kingrichardii,1595\nclad,1,kingrichardii,1595\nsafety,1,kingrichardii,1595\nengaged,1,kingrichardii,1595\nclap,1,kingrichardii,1595\n'why,1,kingrichardii,1595\nexternal,1,kingrichardii,1595\nfolly,1,kingrichardii,1595\nrehearse,1,kingrichardii,1595\nBeats,1,kingrichardii,1595\nRedeem,1,kingrichardii,1595\nmarried,1,kingrichardii,1595\nbark,1,kingrichardii,1595\nthereby,1,kingrichardii,1595\nleopards,1,kingrichardii,1595\nNear,1,kingrichardii,1595\nthunder,1,kingrichardii,1595\ndefending,1,kingrichardii,1595\nostentation,1,kingrichardii,1595\nbite,1,kingrichardii,1595\nkill'st,1,kingrichardii,1595\nherself,1,kingrichardii,1595\nCotswold,1,kingrichardii,1595\npoison'd,1,kingrichardii,1595\nunstaid,1,kingrichardii,1595\nsmooth,1,kingrichardii,1595\ndepart,1,kingrichardii,1595\nbeware,1,kingrichardii,1595\nlarks,1,kingrichardii,1595\nThank,1,kingrichardii,1595\nfoaming,1,kingrichardii,1595\nwarr'd,1,kingrichardii,1595\nportcullis'd,1,kingrichardii,1595\nwives,1,kingrichardii,1595\nlived,1,kingrichardii,1595\nwhither,1,kingrichardii,1595\nDrinking,1,kingrichardii,1595\nGlad,1,kingrichardii,1595\nwatch'd,1,kingrichardii,1595\ngilded,1,kingrichardii,1595\ndastard,1,kingrichardii,1595\nFour,1,kingrichardii,1595\nunbegot,1,kingrichardii,1595\nbird,1,kingrichardii,1595\nprophesy,1,kingrichardii,1595\nCut,1,kingrichardii,1595\nStable,1,kingrichardii,1595\nforefather,1,kingrichardii,1595\nparasite,1,kingrichardii,1595\nWednesday,1,kingrichardii,1595\nbank,1,kingrichardii,1595\nprophets,1,kingrichardii,1595\nmotive,1,kingrichardii,1595\nwill't,1,kingrichardii,1595\nContaining,1,kingrichardii,1595\ndisfigured,1,kingrichardii,1595\nsteed's,1,kingrichardii,1595\nweakness,1,kingrichardii,1595\ninsulting,1,kingrichardii,1595\nrising,1,kingrichardii,1595\nfare,1,kingrichardii,1595\nblaze,1,kingrichardii,1595\nmischance,1,kingrichardii,1595\nfeeble,1,kingrichardii,1595\nlights,1,kingrichardii,1595\nauthor,1,kingrichardii,1595\nsoul's,1,kingrichardii,1595\ngallant,1,kingrichardii,1595\ncoal,1,kingrichardii,1595\ntall,1,kingrichardii,1595\nGLOUCESTER,1,kingrichardii,1595\nholloa'd,1,kingrichardii,1595\nfalsely,1,kingrichardii,1595\nfolks,1,kingrichardii,1595\nbind,1,kingrichardii,1595\nfresher,1,kingrichardii,1595\notherwise,1,kingrichardii,1595\nbrotherhood,1,kingrichardii,1595\nWorst,1,kingrichardii,1595\nstroke,1,kingrichardii,1595\nperish,1,kingrichardii,1595\nprovoked,1,kingrichardii,1595\nFiend,1,kingrichardii,1595\nwild,1,kingrichardii,1595\nundeaf,1,kingrichardii,1595\ngreets,1,kingrichardii,1595\nsights,1,kingrichardii,1595\ntrumpets',1,kingrichardii,1595\noccident,1,kingrichardii,1595\nought,1,kingrichardii,1595\npledge,1,kingrichardii,1595\nforbearance,1,kingrichardii,1595\nbigger,1,kingrichardii,1595\nquit,1,kingrichardii,1595\nCanterbury,1,kingrichardii,1595\ncarts,1,kingrichardii,1595\nholp,1,kingrichardii,1595\nclean,1,kingrichardii,1595\nNone,1,kingrichardii,1595\nLay,1,kingrichardii,1595\nhole,1,kingrichardii,1595\nappellant's,1,kingrichardii,1595\narticles,1,kingrichardii,1595\ndozen,1,kingrichardii,1595\npopulous,1,kingrichardii,1595\nfirmament,1,kingrichardii,1595\ngreet,1,kingrichardii,1595\nfrequent,1,kingrichardii,1595\nmaster,1,kingrichardii,1595\nproclaimed,1,kingrichardii,1595\nstand'st,1,kingrichardii,1595\nhelmets,1,kingrichardii,1595\nripens,1,kingrichardii,1595\nAlthough,1,kingrichardii,1595\nhonest,1,kingrichardii,1595\nfeasts,1,kingrichardii,1595\ncounterfeit,1,kingrichardii,1595\nripest,1,kingrichardii,1595\nundeck,1,kingrichardii,1595\noyster,1,kingrichardii,1595\nargument,1,kingrichardii,1595\nrevolt,1,kingrichardii,1595\nuntuned,1,kingrichardii,1595\ncheerly,1,kingrichardii,1595\nspurring,1,kingrichardii,1595\nwinter,1,kingrichardii,1595\nunsay,1,kingrichardii,1595\nstreets,1,kingrichardii,1595\nread'st,1,kingrichardii,1595\nfeeding,1,kingrichardii,1595\nBennet,1,kingrichardii,1595\neagle's,1,kingrichardii,1595\nresolution,1,kingrichardii,1595\nWherefore,1,kingrichardii,1595\nWaterton,1,kingrichardii,1595\nAwake,1,kingrichardii,1595\nmisinterpret,1,kingrichardii,1595\nAppointed,1,kingrichardii,1595\nfalsehood,1,kingrichardii,1595\ngives,1,kingrichardii,1595\ngiver,1,kingrichardii,1595\ncholer,1,kingrichardii,1595\nnotwithstanding,1,kingrichardii,1595\n'Fair,1,kingrichardii,1595\ngaited,1,kingrichardii,1595\nintents,1,kingrichardii,1595\nInquire,1,kingrichardii,1595\nIntended,1,kingrichardii,1595\nVex,1,kingrichardii,1595\nalso,1,kingrichardii,1595\nbawd,1,kingrichardii,1595\napproved,1,kingrichardii,1595\nsoil's,1,kingrichardii,1595\nseas,1,kingrichardii,1595\nTroy,1,kingrichardii,1595\npronouncing,1,kingrichardii,1595\nsunshine,1,kingrichardii,1595\ncombatants,1,kingrichardii,1595\nelements,1,kingrichardii,1595\ncheerful,1,kingrichardii,1595\nfeeder,1,kingrichardii,1595\ndisdained,1,kingrichardii,1595\nlop,1,kingrichardii,1595\ncontents,1,kingrichardii,1595\nendowments,1,kingrichardii,1595\nErpingham,1,kingrichardii,1595\nwinged,1,kingrichardii,1595\nneglected,1,kingrichardii,1595\nfavour'd,1,kingrichardii,1595\nbreasts,1,kingrichardii,1595\nlot,1,kingrichardii,1595\neyed,1,kingrichardii,1595\nacts,1,kingrichardii,1595\ndelightful,1,kingrichardii,1595\ndrunk,1,kingrichardii,1595\nletting,1,kingrichardii,1595\n'never,1,kingrichardii,1595\ndecree,1,kingrichardii,1595\ngoodness,1,kingrichardii,1595\nSeek,1,kingrichardii,1595\nSeen,1,kingrichardii,1595\nweep'st,1,kingrichardii,1595\ndrums,1,kingrichardii,1595\nfights,1,kingrichardii,1595\ntroth,1,kingrichardii,1595\neither,1,kingrichardii,1595\nJudases,1,kingrichardii,1595\nweaved,1,kingrichardii,1595\ncousins,1,kingrichardii,1595\nHallowmas,1,kingrichardii,1595\nJesu,1,kingrichardii,1595\nunkindness,1,kingrichardii,1595\ncousin',1,kingrichardii,1595\nfaded,1,kingrichardii,1595\nComest,1,kingrichardii,1595\n'Jesu,1,kingrichardii,1595\nunderstood,1,kingrichardii,1595\nundertakes,1,kingrichardii,1595\nsees,1,kingrichardii,1595\nconclude,1,kingrichardii,1595\npricks,1,kingrichardii,1595\ntells,1,kingrichardii,1595\nrender,1,kingrichardii,1595\nshapes,1,kingrichardii,1595\nPatience,1,kingrichardii,1595\nBelieve,1,kingrichardii,1595\ncrest,1,kingrichardii,1595\nbowls,1,kingrichardii,1595\ntroop,1,kingrichardii,1595\nsetting,1,kingrichardii,1595\nbedrench,1,kingrichardii,1595\nchasing,1,kingrichardii,1595\nlightens,1,kingrichardii,1595\nchanging,1,kingrichardii,1595\nwhate'er,1,kingrichardii,1595\nBrocas,1,kingrichardii,1595\nheavenly,1,kingrichardii,1595\ngasping,1,kingrichardii,1595\nfathers',1,kingrichardii,1595\ncased,1,kingrichardii,1595\nCamest,1,kingrichardii,1595\ndownward,1,kingrichardii,1595\ngathering,1,kingrichardii,1595\nheels,1,kingrichardii,1595\ngreedy,1,kingrichardii,1595\ntrembles,1,kingrichardii,1595\nentreat,1,kingrichardii,1595\nbait,1,kingrichardii,1595\nwretched,1,kingrichardii,1595\nglove,1,kingrichardii,1595\ntied,1,kingrichardii,1595\nprayer,1,kingrichardii,1595\nmiscreant,1,kingrichardii,1595\nsecure,1,kingrichardii,1595\njouncing,1,kingrichardii,1595\nravel,1,kingrichardii,1595\nHeralds,1,kingrichardii,1595\nfairly,1,kingrichardii,1595\nmirror,1,kingrichardii,1595\nfurrow,1,kingrichardii,1595\nravenous,1,kingrichardii,1595\nCry,1,kingrichardii,1595\ntide,1,kingrichardii,1595\nball,1,kingrichardii,1595\nblank,1,kingrichardii,1595\napricocks,1,kingrichardii,1595\noppose,1,kingrichardii,1595\nleg,1,kingrichardii,1595\nled,1,kingrichardii,1595\nStreaming,1,kingrichardii,1595\nundo,1,kingrichardii,1595\nalas,1,kingrichardii,1595\nghosts,1,kingrichardii,1595\nadds,1,kingrichardii,1595\ngrieves,1,kingrichardii,1595\no'erpower'd,1,kingrichardii,1595\nGlendower,1,kingrichardii,1595\n'Farewell,1,kingrichardii,1595\nskull,1,kingrichardii,1595\nremedies,1,kingrichardii,1595\nPower,1,kingrichardii,1595\nLimps,1,kingrichardii,1595\nexactions,1,kingrichardii,1595\nstable,1,kingrichardii,1595\nseized,1,kingrichardii,1595\nRage,1,kingrichardii,1595\nhedges,1,kingrichardii,1595\nmatch,1,kingrichardii,1595\ndescending,1,kingrichardii,1595\nmournings,1,kingrichardii,1595\nbonnet,1,kingrichardii,1595\nspiders,1,kingrichardii,1595\nbuckets,1,kingrichardii,1595\ndrooping,1,kingrichardii,1595\ncrooked,1,kingrichardii,1595\nmaster's,1,kingrichardii,1595\nseem'st,1,kingrichardii,1595\nnature's,1,kingrichardii,1595\nstormy,1,kingrichardii,1595\nQuoint,1,kingrichardii,1595\nthreat,1,kingrichardii,1595\n'grace,1,kingrichardii,1595\ntrow,1,kingrichardii,1595\nthread,1,kingrichardii,1595\nuglier,1,kingrichardii,1595\nlaws,1,kingrichardii,1595\ncommons',1,kingrichardii,1595\ntrod,1,kingrichardii,1595\nchoke,1,kingrichardii,1595\nendured,1,kingrichardii,1595\nAdam's,1,kingrichardii,1595\nrancour,1,kingrichardii,1595\nsympathize,1,kingrichardii,1595\nimagery,1,kingrichardii,1595\nbuzzed,1,kingrichardii,1595\nimagination,1,kingrichardii,1595\nqueen's,1,kingrichardii,1595\nEnfranchisement,1,kingrichardii,1595\nmap,1,kingrichardii,1595\nwrite,1,kingrichardii,1595\ncloudy,1,kingrichardii,1595\nspirits,1,kingrichardii,1595\nParle,1,kingrichardii,1595\nalter'd,1,kingrichardii,1595\nlimbs,1,kingrichardii,1595\nbarr'd,1,kingrichardii,1595\nlagging,1,kingrichardii,1595\ngains,1,kingrichardii,1595\nvolume,1,kingrichardii,1595\nGreater,1,kingrichardii,1595\npray'd,1,kingrichardii,1595\ndial's,1,kingrichardii,1595\nleast,1,kingrichardii,1595\nHowever,1,kingrichardii,1595\ncareful,1,kingrichardii,1595\nStrong,1,kingrichardii,1595\nspite,1,kingrichardii,1595\nabroad,1,kingrichardii,1595\ncomfortable,1,kingrichardii,1595\nTowards,1,kingrichardii,1595\nbalance,1,kingrichardii,1595\nblindfold,1,kingrichardii,1595\nrevolted,1,kingrichardii,1595\nfuture,1,kingrichardii,1595\nrheum,1,kingrichardii,1595\nseldom,1,kingrichardii,1595\nconsequence,1,kingrichardii,1595\nsmiling,1,kingrichardii,1595\nrapier's,1,kingrichardii,1595\nbishop,1,kingrichardii,1595\njusts,1,kingrichardii,1595\nBlanc,1,kingrichardii,1595\nbegins,1,kingrichardii,1595\nunfelt,1,kingrichardii,1595\nNamely,1,kingrichardii,1595\nforces,1,kingrichardii,1595\nposting,1,kingrichardii,1595\nsteeds,1,kingrichardii,1595\nfester'd,1,kingrichardii,1595\nlease,1,kingrichardii,1595\ndoing,1,kingrichardii,1595\nDogs,1,kingrichardii,1595\nMessenger,1,kingrichardii,1595\ninferior,1,kingrichardii,1595\nwarlike,1,kingrichardii,1595\nbrooch,1,kingrichardii,1595\nheaded,1,kingrichardii,1595\nlofty,1,kingrichardii,1595\ndefendant,1,kingrichardii,1595\nglose,1,kingrichardii,1595\nhardy,1,kingrichardii,1595\nerected,1,kingrichardii,1595\nforetell,1,kingrichardii,1595\nRise,1,kingrichardii,1595\ntires,1,kingrichardii,1595\nmurder'd,1,kingrichardii,1595\nvictor's,1,kingrichardii,1595\nstreet,1,kingrichardii,1595\nOurs,1,kingrichardii,1595\ndeterminate,1,kingrichardii,1595\nbeholders,1,kingrichardii,1595\nburnt,1,kingrichardii,1595\nsupplant,1,kingrichardii,1595\nmurder's,1,kingrichardii,1595\nwhit,1,kingrichardii,1595\npleasant,1,kingrichardii,1595\nlimit,1,kingrichardii,1595\npompous,1,kingrichardii,1595\nbody's,1,kingrichardii,1595\nbattlements,1,kingrichardii,1595\nbreathest,1,kingrichardii,1595\nheartily,1,kingrichardii,1595\npowerful,1,kingrichardii,1595\nCurrents,1,kingrichardii,1595\ndisburden'd,1,kingrichardii,1595\nincision,1,kingrichardii,1595\njourneyman,1,kingrichardii,1595\nbethink,1,kingrichardii,1595\nTears,1,kingrichardii,1595\nquarrels,1,kingrichardii,1595\n'farewell',1,kingrichardii,1595\ninspired,1,kingrichardii,1595\nvagabond,1,kingrichardii,1595\ncaroused,1,kingrichardii,1595\nenjoying,1,kingrichardii,1595\nAmen,1,kingrichardii,1595\nhomage,1,kingrichardii,1595\nbeguile,1,kingrichardii,1595\nshort'st,1,kingrichardii,1595\nPilate,1,kingrichardii,1595\nsubstitutes,1,kingrichardii,1595\ntelling,1,kingrichardii,1595\nwearisome,1,kingrichardii,1595\nRescued,1,kingrichardii,1595\ncarpet,1,kingrichardii,1595\nInfusing,1,kingrichardii,1595\nunseasonable,1,kingrichardii,1595\ndirections,1,kingrichardii,1595\nPierce,1,kingrichardii,1595\ncredit,1,kingrichardii,1595\nplucks,1,kingrichardii,1595\nfasting,1,kingrichardii,1595\ninherit,1,kingrichardii,1595\ntut,1,kingrichardii,1595\nspilt,1,kingrichardii,1595\nattendants,1,kingrichardii,1595\neastern,1,kingrichardii,1595\nunhorse,1,kingrichardii,1595\nbeauty,1,kingrichardii,1595\nLooking,1,kingrichardii,1595\nbrooks,1,kingrichardii,1595\nterritories,1,kingrichardii,1595\nsuspect,1,kingrichardii,1595\ndiscontented,1,kingrichardii,1595\ndishonour's,1,kingrichardii,1595\ncustomary,1,kingrichardii,1595\nlining,1,kingrichardii,1595\npeer,1,kingrichardii,1595\nWithout,1,kingrichardii,1595\nbesides,1,kingrichardii,1595\njade,1,kingrichardii,1595\nurging,1,kingrichardii,1595\nlist,1,kingrichardii,1595\nlevied,1,kingrichardii,1595\nhurl,1,kingrichardii,1595\nbreaking,1,kingrichardii,1595\nskulls,1,kingrichardii,1595\neighteen,1,kingrichardii,1595\nBanish'd,1,kingrichardii,1595\nappetite,1,kingrichardii,1595\nvillages,1,kingrichardii,1595\nragged,1,kingrichardii,1595\nstrange,1,kingrichardii,1595\npelting,1,kingrichardii,1595\nvenge,1,kingrichardii,1595\nbias,1,kingrichardii,1595\nunpleasing,1,kingrichardii,1595\npardoning,1,kingrichardii,1595\nmoi,1,kingrichardii,1595\nmoe,1,kingrichardii,1595\nJustice,1,kingrichardii,1595\nseverely,1,kingrichardii,1595\ndefiled,1,kingrichardii,1595\nleading,1,kingrichardii,1595\ncorruption,1,kingrichardii,1595\nUnpeopled,1,kingrichardii,1595\ndwells,1,kingrichardii,1595\nshrewd,1,kingrichardii,1595\nwildly,1,kingrichardii,1595\nsilent,1,kingrichardii,1595\nDeath,1,kingrichardii,1595\ndate,1,kingrichardii,1595\nforgiveness,1,kingrichardii,1595\nentrance,1,kingrichardii,1595\ntardy,1,kingrichardii,1595\nTeaching,1,kingrichardii,1595\nproffer'd,1,kingrichardii,1595\nreply,1,kingrichardii,1595\nBroken,1,kingrichardii,1595\ncleansing,1,kingrichardii,1595\ncareless,1,kingrichardii,1595\nMount,1,kingrichardii,1595\nconfirm,1,kingrichardii,1595\nwrathful,1,kingrichardii,1595\nbray,1,kingrichardii,1595\nprovide,1,kingrichardii,1595\nhonour'd,1,kingrichardii,1595\nsubstitute,1,kingrichardii,1595\nScoffing,1,kingrichardii,1595\nhappily,1,kingrichardii,1595\nswallow,1,kingrichardii,1595\nDisorder,1,kingrichardii,1595\nCourageously,1,kingrichardii,1595\nPIERCE,1,kingrichardii,1595\nscalps,1,kingrichardii,1595\ncracking,1,kingrichardii,1595\nRouse,1,kingrichardii,1595\nliquor,1,kingrichardii,1595\nwhencesoever,1,kingrichardii,1595\nhairless,1,kingrichardii,1595\nunrightful,1,kingrichardii,1595\nrocky,1,kingrichardii,1595\nRich,1,kingrichardii,1595\nbroking,1,kingrichardii,1595\noceans,1,kingrichardii,1595\nweighs,1,kingrichardii,1595\nmetres,1,kingrichardii,1595\npelican,1,kingrichardii,1595\nObserved,1,kingrichardii,1595\nblessing,1,kingrichardii,1595\nbedew,1,kingrichardii,1595\ndispatch,1,kingrichardii,1595\nAbel's,1,kingrichardii,1595\nuncontroll'd,1,kingrichardii,1595\nglobe,1,kingrichardii,1595\ninjurious,1,kingrichardii,1595\nbred,1,kingrichardii,1595\nlamb,1,kingrichardii,1595\nreverend,1,kingrichardii,1595\nadmonition,1,kingrichardii,1595\nwonders,1,kingrichardii,1595\nmonths,1,kingrichardii,1595\nresting,1,kingrichardii,1595\nDRAMATIS,1,kingrichardii,1595\nomnipotent,1,kingrichardii,1595\nlamp,1,kingrichardii,1595\nslew,1,kingrichardii,1595\nUntil,1,kingrichardii,1595\nlieth,1,kingrichardii,1595\ngored,1,kingrichardii,1595\ntie,1,kingrichardii,1595\nshake,1,kingrichardii,1595\nshine,1,kingrichardii,1595\nphysician,1,kingrichardii,1595\nTeach,1,kingrichardii,1595\ngazed,1,kingrichardii,1595\nupstart,1,kingrichardii,1595\nuncivil,1,kingrichardii,1595\nlargess,1,kingrichardii,1595\nLeft,1,kingrichardii,1595\nambitious,1,kingrichardii,1595\nobtain,1,kingrichardii,1595\nentreated,1,kingrichardii,1595\ndivided,1,kingrichardii,1595\nwills,1,kingrichardii,1595\nascend,1,kingrichardii,1595\nfrail,1,kingrichardii,1595\ndew,1,kingrichardii,1595\nParliament,1,kingrichardii,1595\npill'd,1,kingrichardii,1595\nsourest,1,kingrichardii,1595\nFair,1,kingrichardii,1595\nplated,1,kingrichardii,1595\nDirect,1,kingrichardii,1595\nfigured,1,kingrichardii,1595\nreconcile,1,kingrichardii,1595\nBarely,1,kingrichardii,1595\ntread'st,1,kingrichardii,1595\npronounce,1,kingrichardii,1595\nFinds,1,kingrichardii,1595\ntoads,1,kingrichardii,1595\nexchequer,1,kingrichardii,1595\nbier,1,kingrichardii,1595\nearth's,1,kingrichardii,1595\nrounds,1,kingrichardii,1595\nhaunted,1,kingrichardii,1595\ncharity,1,kingrichardii,1595\nKent,1,kingrichardii,1595\nforbear,1,kingrichardii,1595\nstables,1,kingrichardii,1595\nparley,1,kingrichardii,1595\nneighbour,1,kingrichardii,1595\nFind,1,kingrichardii,1595\noaths,1,kingrichardii,1595\nshape,1,kingrichardii,1595\nBound,1,kingrichardii,1595\nfarewells,1,kingrichardii,1595\ngraft'st,1,kingrichardii,1595\nWords,1,kingrichardii,1595\nSuppose,1,kingrichardii,1595\nDistinguish,1,kingrichardii,1595\ndim,1,kingrichardii,1595\nsands,1,kingrichardii,1595\nshare,1,kingrichardii,1595\nusurped,1,kingrichardii,1595\nships,1,kingrichardii,1595\nsharp,1,kingrichardii,1595\nTut,1,kingrichardii,1595\nwomen,1,kingrichardii,1595\nfortunes,1,kingrichardii,1595\nsway,1,kingrichardii,1595\nlady,1,kingrichardii,1595\ninsinuate,1,kingrichardii,1595\nclapping,1,kingrichardii,1595\nstringless,1,kingrichardii,1595\nGrows,1,kingrichardii,1595\nattended,2,kingrichardii,1595\nbefal,2,kingrichardii,1595\nkingdom's,2,kingrichardii,1595\ndegenerate,2,kingrichardii,1595\nregard,2,kingrichardii,1595\nlusty,2,kingrichardii,1595\ntomb,2,kingrichardii,1595\nStands,2,kingrichardii,1595\nswords,2,kingrichardii,1595\nmuster,2,kingrichardii,1595\nsuffer,2,kingrichardii,1595\ntaking,2,kingrichardii,1595\npestilence,2,kingrichardii,1595\ndrop,2,kingrichardii,1595\ninfant,2,kingrichardii,1595\nverge,2,kingrichardii,1595\ntops,2,kingrichardii,1595\nleisure,2,kingrichardii,1595\nComfort,2,kingrichardii,1595\nbusiness,2,kingrichardii,1595\nlament,2,kingrichardii,1595\nbrittle,2,kingrichardii,1595\nJoin,2,kingrichardii,1595\ntorn,2,kingrichardii,1595\nfollies,2,kingrichardii,1595\nfemale,2,kingrichardii,1595\nlower,2,kingrichardii,1595\nrode,2,kingrichardii,1595\nzeal,2,kingrichardii,1595\nsupport,2,kingrichardii,1595\nrob,2,kingrichardii,1595\nmend,2,kingrichardii,1595\nscene,2,kingrichardii,1595\nWilt,2,kingrichardii,1595\nDoubly,2,kingrichardii,1595\nendless,2,kingrichardii,1595\nNever,2,kingrichardii,1595\ndire,2,kingrichardii,1595\ndespised,2,kingrichardii,1595\ndish,2,kingrichardii,1595\neight,2,kingrichardii,1595\nslaughter'd,2,kingrichardii,1595\npainted,2,kingrichardii,1595\npardon'd,2,kingrichardii,1595\nMust,2,kingrichardii,1595\nprisoner,2,kingrichardii,1595\ndrum,2,kingrichardii,1595\nfought,2,kingrichardii,1595\nsummer's,2,kingrichardii,1595\nappear,2,kingrichardii,1595\nshelter,2,kingrichardii,1595\nEre,2,kingrichardii,1595\nwithal,2,kingrichardii,1595\nsigns,2,kingrichardii,1595\nyonder,2,kingrichardii,1595\nsort,2,kingrichardii,1595\nrue,2,kingrichardii,1595\nconsorted,2,kingrichardii,1595\nrun,2,kingrichardii,1595\nodds,2,kingrichardii,1595\nsore,2,kingrichardii,1595\n'stand,2,kingrichardii,1595\nremain,2,kingrichardii,1595\nWhom,2,kingrichardii,1595\ncheeks,2,kingrichardii,1595\ncast,2,kingrichardii,1595\ncoffers,2,kingrichardii,1595\nPoor,2,kingrichardii,1595\nplague,2,kingrichardii,1595\nbending,2,kingrichardii,1595\nForget,2,kingrichardii,1595\nbirth,2,kingrichardii,1595\namazed,2,kingrichardii,1595\njest,2,kingrichardii,1595\nyourself,2,kingrichardii,1595\nruin'd,2,kingrichardii,1595\ngrown,2,kingrichardii,1595\nunking'd,2,kingrichardii,1595\nbroken,2,kingrichardii,1595\nafterwards,2,kingrichardii,1595\ntrumpet,2,kingrichardii,1595\nawry,2,kingrichardii,1595\nsparks,2,kingrichardii,1595\ncheek,2,kingrichardii,1595\ndissolve,2,kingrichardii,1595\ncalm,2,kingrichardii,1595\npines,2,kingrichardii,1595\ngross,2,kingrichardii,1595\nofficers,2,kingrichardii,1595\nrider,2,kingrichardii,1595\nWorcester,2,kingrichardii,1595\nrites,2,kingrichardii,1595\ncomplexion,2,kingrichardii,1595\nMethinks,2,kingrichardii,1595\nblessed,2,kingrichardii,1595\nThoughts,2,kingrichardii,1595\nshe,2,kingrichardii,1595\nsomething,2,kingrichardii,1595\nlimits,2,kingrichardii,1595\nexecution,2,kingrichardii,1595\nMistake,2,kingrichardii,1595\ndeeper,2,kingrichardii,1595\nwarrant,2,kingrichardii,1595\naged,2,kingrichardii,1595\nages,2,kingrichardii,1595\nwall,2,kingrichardii,1595\nmerry,2,kingrichardii,1595\nrubs,2,kingrichardii,1595\n'twas,2,kingrichardii,1595\nYORK's,2,kingrichardii,1595\nsuit,2,kingrichardii,1595\nfell,2,kingrichardii,1595\nyield,2,kingrichardii,1595\nlivest,2,kingrichardii,1595\ndeliver,2,kingrichardii,1595\nbraving,2,kingrichardii,1595\nshades,2,kingrichardii,1595\nWithdraw,2,kingrichardii,1595\nSuch,2,kingrichardii,1595\nconfident,2,kingrichardii,1595\nshipp'd,2,kingrichardii,1595\napparent,2,kingrichardii,1595\n'I,2,kingrichardii,1595\nTheir,2,kingrichardii,1595\nlivery,2,kingrichardii,1595\ndesign,2,kingrichardii,1595\npermit,2,kingrichardii,1595\nMusic,2,kingrichardii,1595\nsuck,2,kingrichardii,1595\ntaught,2,kingrichardii,1595\nmerit,2,kingrichardii,1595\nheavens,2,kingrichardii,1595\nturning,2,kingrichardii,1595\nsnow,2,kingrichardii,1595\ncousin's,2,kingrichardii,1595\nfellow,2,kingrichardii,1595\nways,2,kingrichardii,1595\ndifferences,2,kingrichardii,1595\nreversion,2,kingrichardii,1595\ncivil,2,kingrichardii,1595\ndirect,2,kingrichardii,1595\nabsence,2,kingrichardii,1595\nfalls,2,kingrichardii,1595\nenvious,2,kingrichardii,1595\nterms,2,kingrichardii,1595\nshowers,2,kingrichardii,1595\nflatterer,2,kingrichardii,1595\nworthy,2,kingrichardii,1595\nWherein,2,kingrichardii,1595\nhumble,2,kingrichardii,1595\nabundant,2,kingrichardii,1595\nelder,2,kingrichardii,1595\nvanity,2,kingrichardii,1595\ncompanion,2,kingrichardii,1595\nslavish,2,kingrichardii,1595\ndescent,2,kingrichardii,1595\nsuffering,2,kingrichardii,1595\nchoose,2,kingrichardii,1595\nprevent,2,kingrichardii,1595\nusurp,2,kingrichardii,1595\nTaste,2,kingrichardii,1595\nEnglishman,2,kingrichardii,1595\nknow'st,2,kingrichardii,1595\ndies,2,kingrichardii,1595\ndied,2,kingrichardii,1595\naccuse,2,kingrichardii,1595\nFetch,2,kingrichardii,1595\nnorthern,2,kingrichardii,1595\nrebellion,2,kingrichardii,1595\ncoast,2,kingrichardii,1595\nLANGLEY,2,kingrichardii,1595\njoin'd,2,kingrichardii,1595\ndesire,2,kingrichardii,1595\nwoe's,2,kingrichardii,1595\nuneven,2,kingrichardii,1595\ngripe,2,kingrichardii,1595\nintelligence,2,kingrichardii,1595\ntending,2,kingrichardii,1595\naspect,2,kingrichardii,1595\nbitter,2,kingrichardii,1595\nwherefore,2,kingrichardii,1595\nstir,2,kingrichardii,1595\nslaves,2,kingrichardii,1595\nmanners,2,kingrichardii,1595\nappeach,2,kingrichardii,1595\nstrongly,2,kingrichardii,1595\nWhile,2,kingrichardii,1595\nwanting,2,kingrichardii,1595\nDraws,2,kingrichardii,1595\nsign,2,kingrichardii,1595\ndestroying,2,kingrichardii,1595\nrefuse,2,kingrichardii,1595\naltogether,2,kingrichardii,1595\nAm,2,kingrichardii,1595\nmutiny,2,kingrichardii,1595\nneither,2,kingrichardii,1595\ntherefore,2,kingrichardii,1595\nyouthful,2,kingrichardii,1595\nbow,2,kingrichardii,1595\nHim,2,kingrichardii,1595\nshortly,2,kingrichardii,1595\nlance,2,kingrichardii,1595\nLo,2,kingrichardii,1595\nMe,2,kingrichardii,1595\nStand,2,kingrichardii,1595\nproof,2,kingrichardii,1595\narbitrate,2,kingrichardii,1595\ngreatly,2,kingrichardii,1595\ncreature,2,kingrichardii,1595\ntales,2,kingrichardii,1595\nbegun,2,kingrichardii,1595\nhid,2,kingrichardii,1595\nchanged,2,kingrichardii,1595\nfatal,2,kingrichardii,1595\npleasure,2,kingrichardii,1595\nwhole,2,kingrichardii,1595\nfortune's,2,kingrichardii,1595\ndeserved,2,kingrichardii,1595\ngoods,2,kingrichardii,1595\nease,2,kingrichardii,1595\narrest,2,kingrichardii,1595\nwither'd,2,kingrichardii,1595\nrevenue,2,kingrichardii,1595\ntreachery,2,kingrichardii,1595\nstep,2,kingrichardii,1595\nrevenues,2,kingrichardii,1595\nsought,2,kingrichardii,1595\ngold,2,kingrichardii,1595\nRutland,2,kingrichardii,1595\nroyalty,2,kingrichardii,1595\nwrinkle,2,kingrichardii,1595\ntongue's,2,kingrichardii,1595\nproportion,2,kingrichardii,1595\nOpen,2,kingrichardii,1595\nabsent,2,kingrichardii,1595\nbehind,2,kingrichardii,1595\nburn,2,kingrichardii,1595\ncoffin,2,kingrichardii,1595\nbreathing,2,kingrichardii,1595\nprisoners,2,kingrichardii,1595\nsomewhat,2,kingrichardii,1595\nbent,2,kingrichardii,1595\ncraft,2,kingrichardii,1595\nSaint,2,kingrichardii,1595\nexile,2,kingrichardii,1595\nsepulchre,2,kingrichardii,1595\nafore,2,kingrichardii,1595\nserpent,2,kingrichardii,1595\njewel,2,kingrichardii,1595\nnearness,2,kingrichardii,1595\ncurse,2,kingrichardii,1595\nShowing,2,kingrichardii,1595\nswift,2,kingrichardii,1595\nattorneys,2,kingrichardii,1595\nherein,2,kingrichardii,1595\ninforced,2,kingrichardii,1595\ntravel,2,kingrichardii,1595\ndivine,2,kingrichardii,1595\ncrack'd,2,kingrichardii,1595\nensue,2,kingrichardii,1595\nWhither,2,kingrichardii,1595\nvantage,2,kingrichardii,1595\nnorth,2,kingrichardii,1595\nlately,2,kingrichardii,1595\ncrowns,2,kingrichardii,1595\ntower,2,kingrichardii,1595\nsolemn,2,kingrichardii,1595\nplate,2,kingrichardii,1595\nmiles,2,kingrichardii,1595\nha,2,kingrichardii,1595\nconfess,2,kingrichardii,1595\nSoldiers,2,kingrichardii,1595\nfavour,2,kingrichardii,1595\njewels,2,kingrichardii,1595\nPart,2,kingrichardii,1595\nIll,2,kingrichardii,1595\nwreck,2,kingrichardii,1595\nstoop,2,kingrichardii,1595\nlegs,2,kingrichardii,1595\nstone,2,kingrichardii,1595\ndeal,2,kingrichardii,1595\nliberal,2,kingrichardii,1595\ndeaf,2,kingrichardii,1595\nworthily,2,kingrichardii,1595\nReturn,2,kingrichardii,1595\nstain'd,2,kingrichardii,1595\nlend,2,kingrichardii,1595\nredress,2,kingrichardii,1595\nay,2,kingrichardii,1595\nshed,2,kingrichardii,1595\nmanner,2,kingrichardii,1595\nforget,2,kingrichardii,1595\nah,2,kingrichardii,1595\ndried,2,kingrichardii,1595\nfeast,2,kingrichardii,1595\nthat's,2,kingrichardii,1595\nmove,2,kingrichardii,1595\ncommend,2,kingrichardii,1595\nPersuades,2,kingrichardii,1595\nbodies,2,kingrichardii,1595\nplant,2,kingrichardii,1595\ncrew,2,kingrichardii,1595\nnecessity,2,kingrichardii,1595\nidly,2,kingrichardii,1595\ntwofold,2,kingrichardii,1595\nsometime,2,kingrichardii,1595\nMyself,2,kingrichardii,1595\nbegg'd,2,kingrichardii,1595\ncauses,2,kingrichardii,1595\ninterchangeably,2,kingrichardii,1595\nachieved,2,kingrichardii,1595\nServants,2,kingrichardii,1595\nwherein,2,kingrichardii,1595\ndevil,2,kingrichardii,1595\napparel,2,kingrichardii,1595\ngreater,2,kingrichardii,1595\nblood's,2,kingrichardii,1595\nharm,2,kingrichardii,1595\nevents,2,kingrichardii,1595\nbasely,2,kingrichardii,1595\nhardly,2,kingrichardii,1595\nreasons,2,kingrichardii,1595\nclime,2,kingrichardii,1595\noppression,2,kingrichardii,1595\naxe,2,kingrichardii,1595\noutward,2,kingrichardii,1595\nMost,2,kingrichardii,1595\nfield,2,kingrichardii,1595\nconspiracy,2,kingrichardii,1595\nsenseless,2,kingrichardii,1595\nemploy'd,2,kingrichardii,1595\nfaintly,2,kingrichardii,1595\nreach,2,kingrichardii,1595\nplain,2,kingrichardii,1595\ndrawn,2,kingrichardii,1595\ncourse,2,kingrichardii,1595\nvengeance,2,kingrichardii,1595\nprepare,2,kingrichardii,1595\ndeposing,2,kingrichardii,1595\npair,2,kingrichardii,1595\nhangs,2,kingrichardii,1595\nreturn'd,2,kingrichardii,1595\nwasted,2,kingrichardii,1595\nwretchedness,2,kingrichardii,1595\nowes,2,kingrichardii,1595\nstrive,2,kingrichardii,1595\ntwain,2,kingrichardii,1595\nstones,2,kingrichardii,1595\nalive,2,kingrichardii,1595\nfool,2,kingrichardii,1595\nworldly,2,kingrichardii,1595\nfaithful,2,kingrichardii,1595\ndetested,2,kingrichardii,1595\nfood,2,kingrichardii,1595\nprepared,2,kingrichardii,1595\ngirl,2,kingrichardii,1595\nfresh,2,kingrichardii,1595\nmayst,2,kingrichardii,1595\nsecret,2,kingrichardii,1595\nHast,2,kingrichardii,1595\nthanks,2,kingrichardii,1595\nforerun,2,kingrichardii,1595\ntheirs,2,kingrichardii,1595\ncomplices,2,kingrichardii,1595\ndaring,2,kingrichardii,1595\nenjoy,2,kingrichardii,1595\nroof,2,kingrichardii,1595\nlean,2,kingrichardii,1595\nComes,2,kingrichardii,1595\nrestored,2,kingrichardii,1595\nroom,2,kingrichardii,1595\ncondemn'd,2,kingrichardii,1595\nperceives,2,kingrichardii,1595\nsecurely,2,kingrichardii,1595\nhelping,2,kingrichardii,1595\npeers,2,kingrichardii,1595\nKeeps,2,kingrichardii,1595\nempty,2,kingrichardii,1595\ndress'd,2,kingrichardii,1595\nshouldst,2,kingrichardii,1595\nsilence,2,kingrichardii,1595\ntakest,2,kingrichardii,1595\nretired,2,kingrichardii,1595\ntriumphant,2,kingrichardii,1595\n'Gainst,2,kingrichardii,1595\nenvy,2,kingrichardii,1595\nproceed,2,kingrichardii,1595\nprodigal,2,kingrichardii,1595\ngently,2,kingrichardii,1595\nunwieldy,2,kingrichardii,1595\ndaily,2,kingrichardii,1595\nfaint,2,kingrichardii,1595\nours,2,kingrichardii,1595\nSix,2,kingrichardii,1595\nhide,2,kingrichardii,1595\nLove,2,kingrichardii,1595\nBase,2,kingrichardii,1595\ndisloyal,2,kingrichardii,1595\nwandering,2,kingrichardii,1595\nDown,2,kingrichardii,1595\ncoronation,2,kingrichardii,1595\nAdd,2,kingrichardii,1595\nPluck'd,2,kingrichardii,1595\nDarest,2,kingrichardii,1595\ncharters,2,kingrichardii,1595\nseveral,2,kingrichardii,1595\nTurks,2,kingrichardii,1595\nFlint,2,kingrichardii,1595\nsay'st,2,kingrichardii,1595\nfamous,2,kingrichardii,1595\nmourn,2,kingrichardii,1595\nSee,2,kingrichardii,1595\nspurs,2,kingrichardii,1595\nmild,2,kingrichardii,1595\nfares,2,kingrichardii,1595\nstride,2,kingrichardii,1595\nteeth,2,kingrichardii,1595\nstars,2,kingrichardii,1595\nstrict,2,kingrichardii,1595\nMakes,2,kingrichardii,1595\ndared,2,kingrichardii,1595\nfoolish,2,kingrichardii,1595\nmildly,2,kingrichardii,1595\nwrought,2,kingrichardii,1595\nkeeper,2,kingrichardii,1595\ndidst,2,kingrichardii,1595\n'gainst,2,kingrichardii,1595\nthere's,2,kingrichardii,1595\nson's,2,kingrichardii,1595\nissue,2,kingrichardii,1595\nbecause,2,kingrichardii,1595\ndesigns,2,kingrichardii,1595\nrevengeful,2,kingrichardii,1595\nminutes,2,kingrichardii,1595\nlabour,2,kingrichardii,1595\nBeing,2,kingrichardii,1595\npossession,2,kingrichardii,1595\nforego,2,kingrichardii,1595\nheadlong,2,kingrichardii,1595\nbreed,2,kingrichardii,1595\ndissolute,2,kingrichardii,1595\nsame,2,kingrichardii,1595\ntrembling,2,kingrichardii,1595\nItaly,2,kingrichardii,1595\nsting,2,kingrichardii,1595\nmurders,2,kingrichardii,1595\nleanness,2,kingrichardii,1595\nTwice,2,kingrichardii,1595\nenters,2,kingrichardii,1595\nconfines,2,kingrichardii,1595\ncure,2,kingrichardii,1595\nfetch,2,kingrichardii,1595\ngay,2,kingrichardii,1595\nallegiance,2,kingrichardii,1595\nDear,2,kingrichardii,1595\nclock,2,kingrichardii,1595\nripe,2,kingrichardii,1595\ncount,2,kingrichardii,1595\nremains,2,kingrichardii,1595\nrefuge,2,kingrichardii,1595\nchampion,2,kingrichardii,1595\nThine,2,kingrichardii,1595\nburthen,2,kingrichardii,1595\nchastisement,2,kingrichardii,1595\nsignories,2,kingrichardii,1595\nbelieve,2,kingrichardii,1595\nThrow,2,kingrichardii,1595\nmounting,2,kingrichardii,1595\ntrusty,2,kingrichardii,1595\nperforce,2,kingrichardii,1595\ngrowing,2,kingrichardii,1595\nkinsmen,2,kingrichardii,1595\nwont,2,kingrichardii,1595\ncomplain,2,kingrichardii,1595\nThree,2,kingrichardii,1595\ncursed,2,kingrichardii,1595\nbounty,2,kingrichardii,1595\npossess,2,kingrichardii,1595\nsweets,2,kingrichardii,1595\nGives,2,kingrichardii,1595\nnumbering,2,kingrichardii,1595\nwhat's,2,kingrichardii,1595\nearthly,2,kingrichardii,1595\nSurrey,2,kingrichardii,1595\nforeign,2,kingrichardii,1595\ncompass,2,kingrichardii,1595\nrain,2,kingrichardii,1595\ncaterpillars,2,kingrichardii,1595\ndull,2,kingrichardii,1595\nraged,2,kingrichardii,1595\nserves,2,kingrichardii,1595\nwent,2,kingrichardii,1595\nwhence,2,kingrichardii,1595\ngrass,2,kingrichardii,1595\ncompare,2,kingrichardii,1595\nminister,2,kingrichardii,1595\ngrieve,2,kingrichardii,1595\nviolate,2,kingrichardii,1595\ncried,2,kingrichardii,1595\nMany,2,kingrichardii,1595\ngiving,2,kingrichardii,1595\ngrant,2,kingrichardii,1595\nswells,2,kingrichardii,1595\nsurnamed,2,kingrichardii,1595\nmisfortune,2,kingrichardii,1595\nreturns,2,kingrichardii,1595\nride,2,kingrichardii,1595\nMars,2,kingrichardii,1595\nvow,2,kingrichardii,1595\nprofit,2,kingrichardii,1595\nrich,2,kingrichardii,1595\nScroop,2,kingrichardii,1595\nribs,2,kingrichardii,1595\nbare,2,kingrichardii,1595\nlordship,2,kingrichardii,1595\nUnto,2,kingrichardii,1595\nshows,2,kingrichardii,1595\nunfold,2,kingrichardii,1595\nvex,2,kingrichardii,1595\nbutcher,2,kingrichardii,1595\nBarbary,2,kingrichardii,1595\nwrongfully,2,kingrichardii,1595\nmeaning,2,kingrichardii,1595\nstrikes,2,kingrichardii,1595\nslanderous,2,kingrichardii,1595\nband,2,kingrichardii,1595\ntame,2,kingrichardii,1595\nnames,2,kingrichardii,1595\nhating,2,kingrichardii,1595\nEach,2,kingrichardii,1595\nis't,2,kingrichardii,1595\nlap,2,kingrichardii,1595\ncoat,2,kingrichardii,1595\nman's,2,kingrichardii,1595\ndeparture,2,kingrichardii,1595\nconvey,2,kingrichardii,1595\ntrample,2,kingrichardii,1595\nholds,2,kingrichardii,1595\nshook,2,kingrichardii,1595\nshore,2,kingrichardii,1595\nswears,2,kingrichardii,1595\npeaceful,2,kingrichardii,1595\ngreen,2,kingrichardii,1595\npupil,2,kingrichardii,1595\nfires,2,kingrichardii,1595\ncommonwealth,2,kingrichardii,1595\nseal,2,kingrichardii,1595\nfavours,2,kingrichardii,1595\nglittering,2,kingrichardii,1595\nsoil'd,2,kingrichardii,1595\nalways,2,kingrichardii,1595\ninward,2,kingrichardii,1595\nsceptre's,2,kingrichardii,1595\nPrince,2,kingrichardii,1595\ncaptain,2,kingrichardii,1595\nRight,2,kingrichardii,1595\ntrespass,2,kingrichardii,1595\n'twixt,2,kingrichardii,1595\ncourtesy,2,kingrichardii,1595\ndivorce,2,kingrichardii,1595\ncondition,2,kingrichardii,1595\nbattle,2,kingrichardii,1595\naspiring,2,kingrichardii,1595\ncorn,2,kingrichardii,1595\nthrust,2,kingrichardii,1595\nPray,2,kingrichardii,1595\nGentlemen,2,kingrichardii,1595\nassign,2,kingrichardii,1595\navoid,2,kingrichardii,1595\nnights,2,kingrichardii,1595\nloyalty,2,kingrichardii,1595\nregal,2,kingrichardii,1595\nThings,2,kingrichardii,1595\nJudas,2,kingrichardii,1595\nbeheld,2,kingrichardii,1595\nblushing,2,kingrichardii,1595\nenrich'd,2,kingrichardii,1595\naccording,2,kingrichardii,1595\nSent,2,kingrichardii,1595\n'God,2,kingrichardii,1595\nbleeding,2,kingrichardii,1595\nprison,2,kingrichardii,1595\nmother's,2,kingrichardii,1595\nconverts,2,kingrichardii,1595\ngreeting,2,kingrichardii,1595\nstewardship,2,kingrichardii,1595\nfearing,2,kingrichardii,1595\nsickness,2,kingrichardii,1595\nprotest,2,kingrichardii,1595\ntriumphs,2,kingrichardii,1595\nMarch,2,kingrichardii,1595\nceremonious,2,kingrichardii,1595\nuntil,2,kingrichardii,1595\nTwo,2,kingrichardii,1595\nbrow,2,kingrichardii,1595\nslow,2,kingrichardii,1595\nstorms,2,kingrichardii,1595\nfrantic,2,kingrichardii,1595\nsleep,2,kingrichardii,1595\nservants,2,kingrichardii,1595\neat,2,kingrichardii,1595\nmad,2,kingrichardii,1595\nsounded,2,kingrichardii,1595\ndebase,2,kingrichardii,1595\nconduct,2,kingrichardii,1595\nsister,2,kingrichardii,1595\nmet,2,kingrichardii,1595\nmeeting,2,kingrichardii,1595\nExcept,2,kingrichardii,1595\nladies,2,kingrichardii,1595\nMen,2,kingrichardii,1595\nGreat,2,kingrichardii,1595\nlips,2,kingrichardii,1595\nharmony,2,kingrichardii,1595\nmarriage,2,kingrichardii,1595\nMarry,2,kingrichardii,1595\nterror,2,kingrichardii,1595\nKneels,2,kingrichardii,1595\nthither,2,kingrichardii,1595\nvirtue,2,kingrichardii,1595\nhighway,2,kingrichardii,1595\nbetimes,2,kingrichardii,1595\nrecompense,2,kingrichardii,1595\nwindows,2,kingrichardii,1595\npassages,2,kingrichardii,1595\nmouths,2,kingrichardii,1595\nwitness,2,kingrichardii,1595\njudged,2,kingrichardii,1595\ndog,2,kingrichardii,1595\nrespect,2,kingrichardii,1595\nattend,2,kingrichardii,1595\nharsh,2,kingrichardii,1595\ndark,2,kingrichardii,1595\nboisterous,2,kingrichardii,1595\ndue,2,kingrichardii,1595\nsudden,2,kingrichardii,1595\ndestroy,2,kingrichardii,1595\ndry,2,kingrichardii,1595\nEngage,2,kingrichardii,1595\nBring,2,kingrichardii,1595\nregent,2,kingrichardii,1595\narmed,2,kingrichardii,1595\npass'd,2,kingrichardii,1595\nrecord,2,kingrichardii,1595\ntired,2,kingrichardii,1595\ncross,2,kingrichardii,1595\n'Have,2,kingrichardii,1595\nprivate,2,kingrichardii,1595\npress'd,2,kingrichardii,1595\nteeming,2,kingrichardii,1595\nspirit,2,kingrichardii,1595\nFall,2,kingrichardii,1595\nremembrance,2,kingrichardii,1595\nrepair,2,kingrichardii,1595\n'mongst,2,kingrichardii,1595\nflattering,2,kingrichardii,1595\ntread,2,kingrichardii,1595\nsubjects',2,kingrichardii,1595\nchivalry,2,kingrichardii,1595\ne'er,2,kingrichardii,1595\nshock,2,kingrichardii,1595\nsummer,2,kingrichardii,1595\nin,258,kingrichardii,1595\ndeputy,3,kingrichardii,1595\no'er,3,kingrichardii,1595\nparted,3,kingrichardii,1595\nsmiles,3,kingrichardii,1595\nreputation,3,kingrichardii,1595\nguilt,3,kingrichardii,1595\ndouble,3,kingrichardii,1595\nAlas,3,kingrichardii,1595\ndepose,3,kingrichardii,1595\nshadows,3,kingrichardii,1595\nadvantage,3,kingrichardii,1595\nunborn,3,kingrichardii,1595\nVillain,3,kingrichardii,1595\nbones,3,kingrichardii,1595\nhealth,3,kingrichardii,1595\nheld,3,kingrichardii,1595\ntruly,3,kingrichardii,1595\nChrist,3,kingrichardii,1595\ngroan,3,kingrichardii,1595\nlearn'd,3,kingrichardii,1595\nhonourable,3,kingrichardii,1595\nhearted,3,kingrichardii,1595\ninstrument,3,kingrichardii,1595\nnaked,3,kingrichardii,1595\nslander,3,kingrichardii,1595\nmaintain,3,kingrichardii,1595\nthroat,3,kingrichardii,1595\nnought,3,kingrichardii,1595\nGloucester,3,kingrichardii,1595\nOnce,3,kingrichardii,1595\nstrength,3,kingrichardii,1595\nconscience,3,kingrichardii,1595\nbearing,3,kingrichardii,1595\ndance,3,kingrichardii,1595\nEly,3,kingrichardii,1595\nhearing,3,kingrichardii,1595\nteach,3,kingrichardii,1595\nregreet,3,kingrichardii,1595\nvisit,3,kingrichardii,1595\nlesser,3,kingrichardii,1595\nview,3,kingrichardii,1595\nsix,3,kingrichardii,1595\nsir,3,kingrichardii,1595\n'twere,3,kingrichardii,1595\neager,3,kingrichardii,1595\nourself,3,kingrichardii,1595\nbeasts,3,kingrichardii,1595\nworth,3,kingrichardii,1595\nbranches,3,kingrichardii,1595\ndisgrace,3,kingrichardii,1595\ncommends,3,kingrichardii,1595\nsky,3,kingrichardii,1595\nsets,3,kingrichardii,1595\ndoubt,3,kingrichardii,1595\nbetwixt,3,kingrichardii,1595\nscope,3,kingrichardii,1595\nourselves,3,kingrichardii,1595\nreceived,3,kingrichardii,1595\nconceit,3,kingrichardii,1595\ntwelve,3,kingrichardii,1595\nOfficers,3,kingrichardii,1595\nPardon,3,kingrichardii,1595\nfruit,3,kingrichardii,1595\nwilling,3,kingrichardii,1595\nabout,3,kingrichardii,1595\nabove,3,kingrichardii,1595\nfeel,3,kingrichardii,1595\nfeet,3,kingrichardii,1595\nPomfret,3,kingrichardii,1595\nmalice,3,kingrichardii,1595\nancient,3,kingrichardii,1595\nWhereto,3,kingrichardii,1595\nOld,3,kingrichardii,1595\nGuard,3,kingrichardii,1595\nspeaking,3,kingrichardii,1595\nwind,3,kingrichardii,1595\nTower,3,kingrichardii,1595\nthrown,3,kingrichardii,1595\nseem'd,3,kingrichardii,1595\nworld's,3,kingrichardii,1595\nstop,3,kingrichardii,1595\nbond,3,kingrichardii,1595\nbook,3,kingrichardii,1595\nbright,3,kingrichardii,1595\nparty,3,kingrichardii,1595\ngrievous,3,kingrichardii,1595\nHold,3,kingrichardii,1595\nfoes,3,kingrichardii,1595\nGloucestershire,3,kingrichardii,1595\ngranted,3,kingrichardii,1595\nAy,3,kingrichardii,1595\npay,3,kingrichardii,1595\nbay,3,kingrichardii,1595\ndenied,3,kingrichardii,1595\nHer,3,kingrichardii,1595\nHouse,3,kingrichardii,1595\nflowers,3,kingrichardii,1595\nunruly,3,kingrichardii,1595\neast,3,kingrichardii,1595\npast,3,kingrichardii,1595\nglorious,3,kingrichardii,1595\nyourselves,3,kingrichardii,1595\nquiet,3,kingrichardii,1595\nsits,3,kingrichardii,1595\nRe,3,kingrichardii,1595\nsacrament,3,kingrichardii,1595\nCarlisle,3,kingrichardii,1595\nWelshmen,3,kingrichardii,1595\ndegree,3,kingrichardii,1595\nbegin,3,kingrichardii,1595\nquite,3,kingrichardii,1595\nIrish,3,kingrichardii,1595\nflatterers,3,kingrichardii,1595\nFear,3,kingrichardii,1595\ncurrent,3,kingrichardii,1595\nsafe,3,kingrichardii,1595\ntongues,3,kingrichardii,1595\npluck'd,3,kingrichardii,1595\nthrive,3,kingrichardii,1595\nboast,3,kingrichardii,1595\nhusband,3,kingrichardii,1595\nyields,3,kingrichardii,1595\nspeed,3,kingrichardii,1595\npossess'd,3,kingrichardii,1595\nprivilege,3,kingrichardii,1595\ndisorder'd,3,kingrichardii,1595\ndamn'd,3,kingrichardii,1595\nSecond,3,kingrichardii,1595\naside,3,kingrichardii,1595\no',3,kingrichardii,1595\nspend,3,kingrichardii,1595\nready,3,kingrichardii,1595\nthrice,3,kingrichardii,1595\ngraves,3,kingrichardii,1595\nfierce,3,kingrichardii,1595\nspeaks,3,kingrichardii,1595\nkingly,3,kingrichardii,1595\nweeds,3,kingrichardii,1595\nspur,3,kingrichardii,1595\ndeny,3,kingrichardii,1595\nfour,3,kingrichardii,1595\nmighty,3,kingrichardii,1595\nform,3,kingrichardii,1595\nask,3,kingrichardii,1595\nstranger,3,kingrichardii,1595\nfiery,3,kingrichardii,1595\nspit,3,kingrichardii,1595\nmoney,3,kingrichardii,1595\nspear,3,kingrichardii,1595\nmock,3,kingrichardii,1595\ndevise,3,kingrichardii,1595\nyielded,3,kingrichardii,1595\nexcept,3,kingrichardii,1595\nrevenge,3,kingrichardii,1595\narmour,3,kingrichardii,1595\ndeadly,3,kingrichardii,1595\nfew,3,kingrichardii,1595\nguest,3,kingrichardii,1595\nmarch,3,kingrichardii,1595\nwatch,3,kingrichardii,1595\nfrozen,3,kingrichardii,1595\nheavier,3,kingrichardii,1595\nnay,3,kingrichardii,1595\nfaith,3,kingrichardii,1595\nPeace,3,kingrichardii,1595\nAlack,3,kingrichardii,1595\nsubstance,3,kingrichardii,1595\nstrike,3,kingrichardii,1595\nHigh,3,kingrichardii,1595\nparting,3,kingrichardii,1595\ndares,3,kingrichardii,1595\nDoth,3,kingrichardii,1595\nchild,3,kingrichardii,1595\nyours,3,kingrichardii,1595\nother's,3,kingrichardii,1595\nleaves,3,kingrichardii,1595\ntempest,3,kingrichardii,1595\nalready,3,kingrichardii,1595\nbeggar,3,kingrichardii,1595\nknown,3,kingrichardii,1595\nslave,3,kingrichardii,1595\nwon,3,kingrichardii,1595\nnumber,3,kingrichardii,1595\nMade,3,kingrichardii,1595\nstain,3,kingrichardii,1595\naffairs,3,kingrichardii,1595\npomp,3,kingrichardii,1595\ndishonour,3,kingrichardii,1595\nbread,3,kingrichardii,1595\nwoes,3,kingrichardii,1595\nhappiness,3,kingrichardii,1595\nupright,3,kingrichardii,1595\nunseen,3,kingrichardii,1595\ndeath's,3,kingrichardii,1595\nknightly,3,kingrichardii,1595\nRoss,3,kingrichardii,1595\nflourish,3,kingrichardii,1595\nstaff,3,kingrichardii,1595\nthemselves,3,kingrichardii,1595\nbrother's,3,kingrichardii,1595\nwanton,3,kingrichardii,1595\nends,3,kingrichardii,1595\nBid,3,kingrichardii,1595\npoison,3,kingrichardii,1595\nfondly,3,kingrichardii,1595\nknight,3,kingrichardii,1595\nconsent,3,kingrichardii,1595\nwaste,3,kingrichardii,1595\nhundred,3,kingrichardii,1595\nfollowers,3,kingrichardii,1595\nShow,3,kingrichardii,1595\nwholesome,3,kingrichardii,1595\ndispersed,3,kingrichardii,1595\ndispatch'd,3,kingrichardii,1595\njudge,3,kingrichardii,1595\nwander,3,kingrichardii,1595\nmethinks,3,kingrichardii,1595\nwoeful,3,kingrichardii,1595\npleased,3,kingrichardii,1595\ncolours,3,kingrichardii,1595\ncompany,3,kingrichardii,1595\ndancing,3,kingrichardii,1595\nallow,3,kingrichardii,1595\nCalais,3,kingrichardii,1595\nta'en,3,kingrichardii,1595\nWilloughby,3,kingrichardii,1595\nfawn,3,kingrichardii,1595\nFitzwater,3,kingrichardii,1595\ndestroy'd,3,kingrichardii,1595\nbalm,3,kingrichardii,1595\nfarm,3,kingrichardii,1595\narm'd,3,kingrichardii,1595\nknighthood,3,kingrichardii,1595\nreason,3,kingrichardii,1595\nholy,3,kingrichardii,1595\ntask,3,kingrichardii,1595\nwife,3,kingrichardii,1595\nmanage,3,kingrichardii,1595\nalong,3,kingrichardii,1595\nalone,3,kingrichardii,1595\nadieu,3,kingrichardii,1595\nlow,3,kingrichardii,1595\nuse,3,kingrichardii,1595\nwe'll,3,kingrichardii,1595\naught,3,kingrichardii,1595\nseek,3,kingrichardii,1595\nfeeling,3,kingrichardii,1595\nThrough,3,kingrichardii,1595\nkindred,3,kingrichardii,1595\nbankrupt,3,kingrichardii,1595\ngrieved,3,kingrichardii,1595\nwinters,3,kingrichardii,1595\nsullen,3,kingrichardii,1595\nbarren,3,kingrichardii,1595\nPlashy,3,kingrichardii,1595\nconfound,3,kingrichardii,1595\ndread,3,kingrichardii,1595\ntreacherous,3,kingrichardii,1595\nthinking,3,kingrichardii,1595\nAway,3,kingrichardii,1595\npernicious,3,kingrichardii,1595\nlion,3,kingrichardii,1595\nsometimes,3,kingrichardii,1595\nsleeping,3,kingrichardii,1595\nfright,3,kingrichardii,1595\nsilver,3,kingrichardii,1595\ncontent,3,kingrichardii,1595\nurged,3,kingrichardii,1595\ntry,3,kingrichardii,1595\nappellant,3,kingrichardii,1595\nhonour's,3,kingrichardii,1595\nweight,3,kingrichardii,1595\nlord's,3,kingrichardii,1595\nlongest,3,kingrichardii,1595\nbehold,3,kingrichardii,1595\nflower,3,kingrichardii,1595\nToo,3,kingrichardii,1595\norder,3,kingrichardii,1595\ntold,4,kingrichardii,1595\nforbid,4,kingrichardii,1595\ndarest,4,kingrichardii,1595\nspeech,4,kingrichardii,1595\ntraitor's,4,kingrichardii,1595\nalack,4,kingrichardii,1595\nresign,4,kingrichardii,1595\nStay,4,kingrichardii,1595\nspake,4,kingrichardii,1595\nsighs,4,kingrichardii,1595\nrid,4,kingrichardii,1595\nalthough,4,kingrichardii,1595\nmarshal,4,kingrichardii,1595\nmercy,4,kingrichardii,1595\ncharge,4,kingrichardii,1595\nAfter,4,kingrichardii,1595\npilgrimage,4,kingrichardii,1595\nBristol,4,kingrichardii,1595\nlift,4,kingrichardii,1595\ngolden,4,kingrichardii,1595\npaper,4,kingrichardii,1595\nwail,4,kingrichardii,1595\nkin,4,kingrichardii,1595\ndeserve,4,kingrichardii,1595\nExton,4,kingrichardii,1595\nbound,4,kingrichardii,1595\nsteps,4,kingrichardii,1595\nWas,4,kingrichardii,1595\ngroans,4,kingrichardii,1595\ncommon,4,kingrichardii,1595\nBERKELEY,4,kingrichardii,1595\nhousehold,4,kingrichardii,1595\nsue,4,kingrichardii,1595\nmodel,4,kingrichardii,1595\nfearful,4,kingrichardii,1595\nbrief,4,kingrichardii,1595\nbring,4,kingrichardii,1595\nlength,4,kingrichardii,1595\nwise,4,kingrichardii,1595\nLadies,4,kingrichardii,1595\nFrench,4,kingrichardii,1595\nsceptre,4,kingrichardii,1595\neach,4,kingrichardii,1595\nmeasure,4,kingrichardii,1595\nquarrel,4,kingrichardii,1595\nmusic,4,kingrichardii,1595\nblows,4,kingrichardii,1595\nbad,4,kingrichardii,1595\nkept,4,kingrichardii,1595\npawn,4,kingrichardii,1595\nbeg,4,kingrichardii,1595\nsport,4,kingrichardii,1595\nears,4,kingrichardii,1595\nbest,4,kingrichardii,1595\nbend,4,kingrichardii,1595\nyon,4,kingrichardii,1595\nweak,4,kingrichardii,1595\nSave,4,kingrichardii,1595\npeople,4,kingrichardii,1595\nshadow,4,kingrichardii,1595\nput,4,kingrichardii,1595\ntwice,4,kingrichardii,1595\njust,4,kingrichardii,1595\ntedious,4,kingrichardii,1595\nsins,4,kingrichardii,1595\npains,4,kingrichardii,1595\nsing,4,kingrichardii,1595\nanointed,4,kingrichardii,1595\nbeat,4,kingrichardii,1595\nUnless,4,kingrichardii,1595\nBesides,4,kingrichardii,1595\ndoor,4,kingrichardii,1595\ndoom,4,kingrichardii,1595\nwhereof,4,kingrichardii,1595\nloss,4,kingrichardii,1595\nplace,4,kingrichardii,1595\nBecause,4,kingrichardii,1595\nbrought,4,kingrichardii,1595\nrepeal'd,4,kingrichardii,1595\nfoot,4,kingrichardii,1595\nrough,4,kingrichardii,1595\nfond,4,kingrichardii,1595\nenemies,4,kingrichardii,1595\nroot,4,kingrichardii,1595\nnobles,4,kingrichardii,1595\ncontented,4,kingrichardii,1595\ngriefs,4,kingrichardii,1595\nindeed,4,kingrichardii,1595\nFlourish,4,kingrichardii,1595\nthings,4,kingrichardii,1595\ntraitors,4,kingrichardii,1595\nslain,4,kingrichardii,1595\nborne,4,kingrichardii,1595\nmount,4,kingrichardii,1595\nquickly,4,kingrichardii,1595\nfreely,4,kingrichardii,1595\nLook,4,kingrichardii,1595\ntowards,4,kingrichardii,1595\nsoldiers,4,kingrichardii,1595\nmark,4,kingrichardii,1595\nknows,4,kingrichardii,1595\nblot,4,kingrichardii,1595\nwot,4,kingrichardii,1595\nletters,4,kingrichardii,1595\ntaste,4,kingrichardii,1595\npassage,4,kingrichardii,1595\nget,4,kingrichardii,1595\nneck,4,kingrichardii,1595\nsake,4,kingrichardii,1595\nwin,4,kingrichardii,1595\nWe'll,4,kingrichardii,1595\nonly,4,kingrichardii,1595\nmorrow,4,kingrichardii,1595\nPercy,4,kingrichardii,1595\nEngland's,4,kingrichardii,1595\nThink,4,kingrichardii,1595\nCoventry,4,kingrichardii,1595\nrise,4,kingrichardii,1595\ndanger,4,kingrichardii,1595\nforward,4,kingrichardii,1595\ncoming,4,kingrichardii,1595\njoints,4,kingrichardii,1595\nfaced,4,kingrichardii,1595\nwomb,4,kingrichardii,1595\nroyalties,4,kingrichardii,1595\nBolingbroke's,4,kingrichardii,1595\nMake,4,kingrichardii,1595\nkinsman,4,kingrichardii,1595\nfly,4,kingrichardii,1595\nSweet,4,kingrichardii,1595\naunt,4,kingrichardii,1595\nDerby,4,kingrichardii,1595\nboldly,4,kingrichardii,1595\ntrumpets,4,kingrichardii,1595\ngentlemen,4,kingrichardii,1595\ngiven,4,kingrichardii,1595\nhold,4,kingrichardii,1595\ncut,4,kingrichardii,1595\nwriting,4,kingrichardii,1595\nsatisfied,4,kingrichardii,1595\nkingdom,4,kingrichardii,1595\nseem,4,kingrichardii,1595\ncry,4,kingrichardii,1595\ntherein,4,kingrichardii,1595\ncountrymen,4,kingrichardii,1595\nself,4,kingrichardii,1595\npost,4,kingrichardii,1595\ntogether,4,kingrichardii,1595\ncold,4,kingrichardii,1595\nnurse,4,kingrichardii,1595\ngoes,4,kingrichardii,1595\npurpose,4,kingrichardii,1595\ntriumph,4,kingrichardii,1595\nclouds,4,kingrichardii,1595\nheinous,4,kingrichardii,1595\ncorrection,4,kingrichardii,1595\nrecreant,4,kingrichardii,1595\nwound,4,kingrichardii,1595\nSalisbury,4,kingrichardii,1595\nrebels,4,kingrichardii,1595\nlaid,4,kingrichardii,1595\nprincely,4,kingrichardii,1595\nLest,4,kingrichardii,1595\nvenom,4,kingrichardii,1595\ncommand,4,kingrichardii,1595\namen,4,kingrichardii,1595\nwouldst,4,kingrichardii,1595\nRavenspurgh,5,kingrichardii,1595\nhighness',5,kingrichardii,1595\nrather,5,kingrichardii,1595\nTell,5,kingrichardii,1595\nsight,5,kingrichardii,1595\noffer,5,kingrichardii,1595\nappeal,5,kingrichardii,1595\nseven,5,kingrichardii,1595\nhighness,5,kingrichardii,1595\nblack,5,kingrichardii,1595\nsin,5,kingrichardii,1595\nenough,5,kingrichardii,1595\nsea,5,kingrichardii,1595\ncounsel,5,kingrichardii,1595\nAttendants,5,kingrichardii,1595\nworst,5,kingrichardii,1595\nborn,5,kingrichardii,1595\nreverence,5,kingrichardii,1595\nrude,5,kingrichardii,1595\nflesh,5,kingrichardii,1595\nknees,5,kingrichardii,1595\nOne,5,kingrichardii,1595\nwant,5,kingrichardii,1595\nSURREY,5,kingrichardii,1595\nwish,5,kingrichardii,1595\nmean,5,kingrichardii,1595\nsteel,5,kingrichardii,1595\ncommons,5,kingrichardii,1595\npatience,5,kingrichardii,1595\nlands,5,kingrichardii,1595\ncanst,5,kingrichardii,1595\nWales,5,kingrichardii,1595\ndespair,5,kingrichardii,1595\nLet's,5,kingrichardii,1595\nplay,5,kingrichardii,1595\nHad,5,kingrichardii,1595\ngave,5,kingrichardii,1595\nweep,5,kingrichardii,1595\nchildren,5,kingrichardii,1595\ntreasons,5,kingrichardii,1595\nLike,5,kingrichardii,1595\nBoth,5,kingrichardii,1595\ndeed,5,kingrichardii,1595\nair,5,kingrichardii,1595\nburied,5,kingrichardii,1595\nthyself,5,kingrichardii,1595\nbanish,5,kingrichardii,1595\nlost,5,kingrichardii,1595\nlose,5,kingrichardii,1595\nforgot,5,kingrichardii,1595\nmen's,5,kingrichardii,1595\nhot,5,kingrichardii,1595\nvalour,5,kingrichardii,1595\nChristian,5,kingrichardii,1595\nCall,5,kingrichardii,1595\ngaunt,5,kingrichardii,1595\nFirst,5,kingrichardii,1595\npresent,5,kingrichardii,1595\nnative,5,kingrichardii,1595\ntouch,5,kingrichardii,1595\nchange,5,kingrichardii,1595\njustice,5,kingrichardii,1595\ntender,5,kingrichardii,1595\ngarden,5,kingrichardii,1595\nTherefore,5,kingrichardii,1595\nprecious,5,kingrichardii,1595\nmortal,5,kingrichardii,1595\nbloody,5,kingrichardii,1595\nUncle,5,kingrichardii,1595\nsovereign's,5,kingrichardii,1595\npresently,5,kingrichardii,1595\ncoward,5,kingrichardii,1595\nlet's,5,kingrichardii,1595\nflatter,5,kingrichardii,1595\nneed,5,kingrichardii,1595\nfree,5,kingrichardii,1595\nthing,5,kingrichardii,1595\nsays,5,kingrichardii,1595\nloving,5,kingrichardii,1595\nwalls,5,kingrichardii,1595\nThus,5,kingrichardii,1595\nfound,5,kingrichardii,1595\ndying,5,kingrichardii,1595\nserve,5,kingrichardii,1595\nprofane,5,kingrichardii,1595\ncares,5,kingrichardii,1595\nthree,5,kingrichardii,1595\nwounds,5,kingrichardii,1595\nlists,5,kingrichardii,1595\npatient,5,kingrichardii,1595\nhour,5,kingrichardii,1595\ndeliver'd,5,kingrichardii,1595\nfast,5,kingrichardii,1595\nlarge,5,kingrichardii,1595\nWelcome,5,kingrichardii,1595\ntale,5,kingrichardii,1595\nwilt,5,kingrichardii,1595\ndangerous,5,kingrichardii,1595\nhollow,5,kingrichardii,1595\nloyal,5,kingrichardii,1595\ncountry's,5,kingrichardii,1595\nseat,5,kingrichardii,1595\nswear,5,kingrichardii,1595\nMine,5,kingrichardii,1595\ntidings,5,kingrichardii,1595\n'pardon',5,kingrichardii,1595\nhouse,5,kingrichardii,1595\nwhilst,5,kingrichardii,1595\nreturn,5,kingrichardii,1595\nsorrow's,5,kingrichardii,1595\nstraight,5,kingrichardii,1595\nCaptain,5,kingrichardii,1595\nrights,5,kingrichardii,1595\nspring,5,kingrichardii,1595\ndare,5,kingrichardii,1595\ntrees,5,kingrichardii,1595\nten,5,kingrichardii,1595\nkill,5,kingrichardii,1595\nbids,5,kingrichardii,1595\ntimes,6,kingrichardii,1595\nJohn,6,kingrichardii,1595\nheir,6,kingrichardii,1595\nweary,6,kingrichardii,1595\nhelp,6,kingrichardii,1595\nvillain,6,kingrichardii,1595\nvain,6,kingrichardii,1595\nwhile,6,kingrichardii,1595\ncomest,6,kingrichardii,1595\nWould,6,kingrichardii,1595\nbecome,6,kingrichardii,1595\nsoon,6,kingrichardii,1595\nsons,6,kingrichardii,1595\nsubjects,6,kingrichardii,1595\nglass,6,kingrichardii,1595\ncame,6,kingrichardii,1595\nfurther,6,kingrichardii,1595\nstands,6,kingrichardii,1595\nbody,6,kingrichardii,1595\nBerkeley,6,kingrichardii,1595\nmother,6,kingrichardii,1595\nread,6,kingrichardii,1595\nwrong,6,kingrichardii,1595\nFrance,6,kingrichardii,1595\nfault,6,kingrichardii,1595\nafter,6,kingrichardii,1595\nsword,6,kingrichardii,1595\nothers,6,kingrichardii,1595\ntitle,6,kingrichardii,1595\nbold,6,kingrichardii,1595\nfriend,6,kingrichardii,1595\nwars,6,kingrichardii,1595\noffice,6,kingrichardii,1595\nAh,6,kingrichardii,1595\nAn,6,kingrichardii,1595\nboy,6,kingrichardii,1595\nbed,6,kingrichardii,1595\nIV,6,kingrichardii,1595\nwhose,6,kingrichardii,1595\ndeep,6,kingrichardii,1595\nbreast,6,kingrichardii,1595\nleft,6,kingrichardii,1595\nBagot,6,kingrichardii,1595\nrealm,6,kingrichardii,1595\nsmall,6,kingrichardii,1595\nYea,6,kingrichardii,1595\nless,6,kingrichardii,1595\ntwenty,6,kingrichardii,1595\nplot,6,kingrichardii,1595\nopen,6,kingrichardii,1595\npain,6,kingrichardii,1595\npoint,6,kingrichardii,1595\nbroke,6,kingrichardii,1595\nMadam,6,kingrichardii,1595\nWestminster,6,kingrichardii,1595\nMowbray's,6,kingrichardii,1595\nyouth,6,kingrichardii,1595\nover,6,kingrichardii,1595\ncould,6,kingrichardii,1595\nWere,6,kingrichardii,1595\nbeseech,6,kingrichardii,1595\nheard,6,kingrichardii,1595\nSay,6,kingrichardii,1595\ndust,6,kingrichardii,1595\nCan,6,kingrichardii,1595\npride,6,kingrichardii,1595\nseize,6,kingrichardii,1595\nguilty,6,kingrichardii,1595\nfoe,6,kingrichardii,1595\npalace,6,kingrichardii,1595\nfind,6,kingrichardii,1595\ntalk,6,kingrichardii,1595\nlaw,6,kingrichardii,1595\nLet,6,kingrichardii,1595\nstrong,6,kingrichardii,1595\nprayers,6,kingrichardii,1595\nlook'd,6,kingrichardii,1595\nWiltshire,6,kingrichardii,1595\nlearn,6,kingrichardii,1595\nGreen,6,kingrichardii,1595\nliest,6,kingrichardii,1595\nshalt,6,kingrichardii,1595\nmight,6,kingrichardii,1595\nboots,6,kingrichardii,1595\nenemy,6,kingrichardii,1595\nV,7,kingrichardii,1595\nNay,7,kingrichardii,1595\nKeeper,7,kingrichardii,1595\nhaste,7,kingrichardii,1595\nhell,7,kingrichardii,1595\nanother,7,kingrichardii,1595\nbetter,7,kingrichardii,1595\nthrone,7,kingrichardii,1595\nsworn,7,kingrichardii,1595\nworse,7,kingrichardii,1595\nThese,7,kingrichardii,1595\nturn,7,kingrichardii,1595\ngrow,7,kingrichardii,1595\nservice,7,kingrichardii,1595\nhence,7,kingrichardii,1595\nwash,7,kingrichardii,1595\nsick,7,kingrichardii,1595\nside,7,kingrichardii,1595\nAt,7,kingrichardii,1595\nGloucester's,7,kingrichardii,1595\nkings,7,kingrichardii,1595\nWithin,7,kingrichardii,1595\nsince,7,kingrichardii,1595\ntear,7,kingrichardii,1595\nmeans,7,kingrichardii,1595\nGood,7,kingrichardii,1595\nOxford,7,kingrichardii,1595\nSpeak,7,kingrichardii,1595\nspent,7,kingrichardii,1595\nhard,7,kingrichardii,1595\nwater,7,kingrichardii,1595\nSir,7,kingrichardii,1595\nmouth,7,kingrichardii,1595\nSome,7,kingrichardii,1595\nend,7,kingrichardii,1595\nAll,7,kingrichardii,1595\nfather's,7,kingrichardii,1595\nHereford's,7,kingrichardii,1595\nwrongs,7,kingrichardii,1595\nrage,7,kingrichardii,1595\nnext,7,kingrichardii,1595\nwert,7,kingrichardii,1595\nkiss,7,kingrichardii,1595\ngentleman,7,kingrichardii,1595\nEarl,7,kingrichardii,1595\nthank,7,kingrichardii,1595\nHerald,7,kingrichardii,1595\nSALISBURY,7,kingrichardii,1595\nAbbot,7,kingrichardii,1595\nseen,7,kingrichardii,1595\nwhom,7,kingrichardii,1595\nperson,7,kingrichardii,1595\nsent,7,kingrichardii,1595\nmadam,7,kingrichardii,1595\nGroom,7,kingrichardii,1595\nglory,7,kingrichardii,1595\nfled,7,kingrichardii,1595\nMay,7,kingrichardii,1595\nsentence,7,kingrichardii,1595\nDid,7,kingrichardii,1595\nwithout,7,kingrichardii,1595\nkind,7,kingrichardii,1595\nEdward's,7,kingrichardii,1595\nwoman,7,kingrichardii,1595\nbreathe,7,kingrichardii,1595\ntreason,8,kingrichardii,1595\npity,8,kingrichardii,1595\nWill,8,kingrichardii,1595\npray,8,kingrichardii,1595\nsour,8,kingrichardii,1595\nunder,8,kingrichardii,1595\ntruth,8,kingrichardii,1595\nUpon,8,kingrichardii,1595\nWhose,8,kingrichardii,1595\nFarewell,8,kingrichardii,1595\nwithin,8,kingrichardii,1595\nThere,8,kingrichardii,1595\nWhilst,8,kingrichardii,1595\nsun,8,kingrichardii,1595\nThough,8,kingrichardii,1595\nCousin,8,kingrichardii,1595\nIII,8,kingrichardii,1595\nsaid,8,kingrichardii,1595\nbear,8,kingrichardii,1595\nGardener,8,kingrichardii,1595\nknee,8,kingrichardii,1595\nwelcome,8,kingrichardii,1595\nLady,8,kingrichardii,1595\nprince,8,kingrichardii,1595\npluck,8,kingrichardii,1595\nAre,8,kingrichardii,1595\nShould,8,kingrichardii,1595\nIreland,8,kingrichardii,1595\nliving,8,kingrichardii,1595\nbreak,8,kingrichardii,1595\nsave,8,kingrichardii,1595\nEven,8,kingrichardii,1595\neven,8,kingrichardii,1595\nne'er,8,kingrichardii,1595\ncomfort,8,kingrichardii,1595\nHenry,8,kingrichardii,1595\nshort,8,kingrichardii,1595\nhearts,8,kingrichardii,1595\nsacred,8,kingrichardii,1595\nEnglish,8,kingrichardii,1595\nBushy,8,kingrichardii,1595\nremember,8,kingrichardii,1595\nEARL,8,kingrichardii,1595\nBefore,8,kingrichardii,1595\nTake,8,kingrichardii,1595\ndays,9,kingrichardii,1595\nevery,9,kingrichardii,1595\nRichard's,9,kingrichardii,1595\nGive,9,kingrichardii,1595\nlight,9,kingrichardii,1595\nking's,9,kingrichardii,1595\nmatter,9,kingrichardii,1595\nstay,9,kingrichardii,1595\nenter,9,kingrichardii,1595\nbid,9,kingrichardii,1595\nheads,9,kingrichardii,1595\nage,9,kingrichardii,1595\ntrial,9,kingrichardii,1595\ndeposed,9,kingrichardii,1595\nSTEPHEN,9,kingrichardii,1595\nThey,9,kingrichardii,1595\nfire,9,kingrichardii,1595\nwhy,9,kingrichardii,1595\noath,9,kingrichardii,1595\nFITZWATER,9,kingrichardii,1595\nfortune,9,kingrichardii,1595\nplease,9,kingrichardii,1595\ntill,9,kingrichardii,1595\nlay,9,kingrichardii,1595\nunto,9,kingrichardii,1595\nSCROOP,9,kingrichardii,1595\nsound,9,kingrichardii,1595\nhours,9,kingrichardii,1595\nsend,9,kingrichardii,1595\npoor,9,kingrichardii,1595\nlate,9,kingrichardii,1595\nmeet,10,kingrichardii,1595\nthought,10,kingrichardii,1595\nsad,10,kingrichardii,1595\nNot,10,kingrichardii,1595\nsit,10,kingrichardii,1595\nelse,10,kingrichardii,1595\nnight,10,kingrichardii,1595\npart,10,kingrichardii,1595\npale,10,kingrichardii,1595\nMore,10,kingrichardii,1595\narm,10,kingrichardii,1595\nnone,10,kingrichardii,1595\nmind,10,kingrichardii,1595\nthink,10,kingrichardii,1595\nnear,10,kingrichardii,1595\nthine,10,kingrichardii,1595\nbanishment,10,kingrichardii,1595\ncourt,10,kingrichardii,1595\nWell,10,kingrichardii,1595\nSIR,10,kingrichardii,1595\nnews,10,kingrichardii,1595\nduke,10,kingrichardii,1595\nweeping,10,kingrichardii,1595\nLondon,10,kingrichardii,1595\nTill,10,kingrichardii,1595\nfall,10,kingrichardii,1595\nqueen,10,kingrichardii,1595\near,10,kingrichardii,1595\nanswer,11,kingrichardii,1595\nhorse,11,kingrichardii,1595\nbrother,11,kingrichardii,1595\nThomas,11,kingrichardii,1595\ncall,11,kingrichardii,1595\nNor,11,kingrichardii,1595\nWho,11,kingrichardii,1595\nsubject,11,kingrichardii,1595\nlooks,11,kingrichardii,1595\nHere,11,kingrichardii,1595\nfalse,11,kingrichardii,1595\ntell,11,kingrichardii,1595\nitself,11,kingrichardii,1595\nOn,11,kingrichardii,1595\nfarewell,11,kingrichardii,1595\nill,11,kingrichardii,1595\nbosom,11,kingrichardii,1595\nthrough,11,kingrichardii,1595\ninto,11,kingrichardii,1595\nyoung,11,kingrichardii,1595\nvery,11,kingrichardii,1595\ngrave,11,kingrichardii,1595\nthrow,11,kingrichardii,1595\nEXTON,11,kingrichardii,1595\never,11,kingrichardii,1595\nhome,11,kingrichardii,1595\npresence,11,kingrichardii,1595\nmakes,11,kingrichardii,1595\nsovereign,11,kingrichardii,1595\nSince,11,kingrichardii,1595\ntwo,11,kingrichardii,1595\nExit,11,kingrichardii,1595\ngracious,12,kingrichardii,1595\nBe,12,kingrichardii,1595\ngone,12,kingrichardii,1595\ndost,12,kingrichardii,1595\nGod's,12,kingrichardii,1595\ndone,12,kingrichardii,1595\nBISHOP,12,kingrichardii,1595\nYet,12,kingrichardii,1595\nkeep,12,kingrichardii,1595\nfoul,12,kingrichardii,1595\nWILLOUGHBY,12,kingrichardii,1595\nthough,12,kingrichardii,1595\nnew,12,kingrichardii,1595\nlords,12,kingrichardii,1595\nLords,12,kingrichardii,1595\nonce,12,kingrichardii,1595\nbefore,12,kingrichardii,1595\nduty,12,kingrichardii,1595\n'Tis,12,kingrichardii,1595\nbase,12,kingrichardii,1595\nCARLISLE,12,kingrichardii,1595\nlives,12,kingrichardii,1595\ndefend,12,kingrichardii,1595\nsouls,12,kingrichardii,1595\nlie,12,kingrichardii,1595\nthoughts,12,kingrichardii,1595\njoy,13,kingrichardii,1595\ncare,13,kingrichardii,1595\nhear,13,kingrichardii,1595\nHarry,13,kingrichardii,1595\nprove,13,kingrichardii,1595\ngage,13,kingrichardii,1595\nhate,13,kingrichardii,1595\nshow,13,kingrichardii,1595\nright,13,kingrichardii,1595\nHath,13,kingrichardii,1595\nHave,13,kingrichardii,1595\ngentle,13,kingrichardii,1595\nere,13,kingrichardii,1595\nnor,13,kingrichardii,1595\nground,13,kingrichardii,1595\nback,13,kingrichardii,1595\nBAGOT,13,kingrichardii,1595\nfirst,13,kingrichardii,1595\nbeing,13,kingrichardii,1595\nfather,13,kingrichardii,1595\nNorthumberland,13,kingrichardii,1595\ndie,13,kingrichardii,1595\nCome,14,kingrichardii,1595\ncause,14,kingrichardii,1595\nfight,14,kingrichardii,1595\nOur,14,kingrichardii,1595\nrest,14,kingrichardii,1595\nGo,14,kingrichardii,1595\nproud,14,kingrichardii,1595\nMarshal,14,kingrichardii,1595\nlook,14,kingrichardii,1595\ndear,14,kingrichardii,1595\nany,14,kingrichardii,1595\nforth,14,kingrichardii,1595\nThan,14,kingrichardii,1595\nYour,14,kingrichardii,1595\nMowbray,14,kingrichardii,1595\nstill,14,kingrichardii,1595\nstand,14,kingrichardii,1595\nheavy,14,kingrichardii,1595\nwar,14,kingrichardii,1595\nhappy,14,kingrichardii,1595\nhither,14,kingrichardii,1595\nWhen,14,kingrichardii,1595\nshame,14,kingrichardii,1595\nyears,15,kingrichardii,1595\nfull,15,kingrichardii,1595\nServant,15,kingrichardii,1595\nLancaster,15,kingrichardii,1595\n'tis,15,kingrichardii,1595\nmost,15,kingrichardii,1595\nthose,15,kingrichardii,1595\nROSS,15,kingrichardii,1595\ncastle,15,kingrichardii,1595\neye,15,kingrichardii,1595\nmany,15,kingrichardii,1595\ncomes,15,kingrichardii,1595\nEngland,15,kingrichardii,1595\nsweet,15,kingrichardii,1595\nThy,15,kingrichardii,1595\npeace,16,kingrichardii,1595\nlies,16,kingrichardii,1595\nMOWBRAY,16,kingrichardii,1595\nBy,16,kingrichardii,1595\nlong,16,kingrichardii,1595\ndead,16,kingrichardii,1595\nFrom,16,kingrichardii,1595\nhigh,16,kingrichardii,1595\nTHOMAS,16,kingrichardii,1595\nbanish'd,16,kingrichardii,1595\nhope,16,kingrichardii,1595\nthousand,16,kingrichardii,1595\npardon,16,kingrichardii,1595\nhimself,16,kingrichardii,1595\ntears,17,kingrichardii,1595\nGREEN,17,kingrichardii,1595\nfriends,17,kingrichardii,1595\nwords,17,kingrichardii,1595\nNo,17,kingrichardii,1595\nbeen,17,kingrichardii,1595\nbreath,17,kingrichardii,1595\nhast,17,kingrichardii,1595\nfar,17,kingrichardii,1595\nThou,17,kingrichardii,1595\nwoe,17,kingrichardii,1595\nstate,17,kingrichardii,1595\neyes,17,kingrichardii,1595\npower,17,kingrichardii,1595\nother,17,kingrichardii,1595\nworld,18,kingrichardii,1595\nagainst,18,kingrichardii,1595\nsuch,18,kingrichardii,1595\nwhere,18,kingrichardii,1595\nleave,18,kingrichardii,1595\ncannot,18,kingrichardii,1595\nboth,19,kingrichardii,1595\nhonour,19,kingrichardii,1595\nhands,19,kingrichardii,1595\ngrace,19,kingrichardii,1595\nGaunt,19,kingrichardii,1595\nlittle,19,kingrichardii,1595\nAgainst,19,kingrichardii,1595\nACT,19,kingrichardii,1595\nword,19,kingrichardii,1595\ngreat,19,kingrichardii,1595\ntraitor,19,kingrichardii,1595\nlast,19,kingrichardii,1595\nAumerle,20,kingrichardii,1595\nmuch,20,kingrichardii,1595\nBUSHY,20,kingrichardii,1595\nWhy,20,kingrichardii,1595\nset,20,kingrichardii,1595\nNorfolk,20,kingrichardii,1595\nIt,20,kingrichardii,1595\ncan,20,kingrichardii,1595\nYou,20,kingrichardii,1595\ngive,20,kingrichardii,1595\nmade,20,kingrichardii,1595\nShall,20,kingrichardii,1595\nliege,20,kingrichardii,1595\nWhere,20,kingrichardii,1595\nSCENE,20,kingrichardii,1595\n',21,kingrichardii,1595\nher,21,kingrichardii,1595\nWe,21,kingrichardii,1595\nPERCY,21,kingrichardii,1595\nHow,21,kingrichardii,1595\nsorrow,21,kingrichardii,1595\narms,21,kingrichardii,1595\nYork,21,kingrichardii,1595\nold,21,kingrichardii,1595\ntake,21,kingrichardii,1595\ncrown,21,kingrichardii,1595\nhead,22,kingrichardii,1595\nNow,22,kingrichardii,1595\nfear,22,kingrichardii,1595\nagain,22,kingrichardii,1595\nwho,22,kingrichardii,1595\noff,22,kingrichardii,1595\nlive,22,kingrichardii,1595\nroyal,23,kingrichardii,1595\naway,23,kingrichardii,1595\nnever,23,kingrichardii,1595\nIf,23,kingrichardii,1595\ngo,23,kingrichardii,1595\nKing,23,kingrichardii,1595\nthus,23,kingrichardii,1595\nmajesty,24,kingrichardii,1595\nmyself,24,kingrichardii,1595\nThen,24,kingrichardii,1595\nsoul,25,kingrichardii,1595\nnothing,25,kingrichardii,1595\nHe,25,kingrichardii,1595\nface,25,kingrichardii,1595\nwere,25,kingrichardii,1595\nHereford,25,kingrichardii,1595\nwhich,26,kingrichardii,1595\ndown,26,kingrichardii,1595\nOr,26,kingrichardii,1595\ntongue,26,kingrichardii,1595\nan,26,kingrichardii,1595\nhow,26,kingrichardii,1595\nart,26,kingrichardii,1595\nown,26,kingrichardii,1595\nuncle,26,kingrichardii,1595\nwhen,26,kingrichardii,1595\nthan,27,kingrichardii,1595\nthese,27,kingrichardii,1595\nExeunt,27,kingrichardii,1595\ngrief,27,kingrichardii,1595\nSo,27,kingrichardii,1595\nspeak,27,kingrichardii,1595\nThis,27,kingrichardii,1595\nI'll,27,kingrichardii,1595\nway,27,kingrichardii,1595\nname,28,kingrichardii,1595\nHis,28,kingrichardii,1595\nshould,28,kingrichardii,1595\nland,28,kingrichardii,1595\nheaven,29,kingrichardii,1595\ndoth,29,kingrichardii,1595\nearth,29,kingrichardii,1595\nknow,29,kingrichardii,1595\nfair,29,kingrichardii,1595\ntrue,29,kingrichardii,1595\nson,30,kingrichardii,1595\nthen,30,kingrichardii,1595\nIs,30,kingrichardii,1595\ncousin,30,kingrichardii,1595\nout,30,kingrichardii,1595\nday,30,kingrichardii,1595\nman,30,kingrichardii,1595\ndid,30,kingrichardii,1595\nDuke,31,kingrichardii,1595\nOf,31,kingrichardii,1595\nnoble,31,kingrichardii,1595\nlife,32,kingrichardii,1595\nlove,32,kingrichardii,1595\nRichard,32,kingrichardii,1595\nwell,32,kingrichardii,1595\nthem,33,kingrichardii,1595\nup,33,kingrichardii,1595\nGAUNT,34,kingrichardii,1595\nhad,34,kingrichardii,1595\nhand,34,kingrichardii,1595\nJOHN,34,kingrichardii,1595\nor,35,kingrichardii,1595\none,35,kingrichardii,1595\nQUEEN,35,kingrichardii,1595\ntoo,35,kingrichardii,1595\nthere,36,kingrichardii,1595\nmen,36,kingrichardii,1595\nsome,37,kingrichardii,1595\nif,37,kingrichardii,1595\nLord,37,kingrichardii,1595\nIn,38,kingrichardii,1595\nyet,38,kingrichardii,1595\nnow,38,kingrichardii,1595\nmine,38,kingrichardii,1595\nwas,38,kingrichardii,1595\ntime,38,kingrichardii,1595\nA,39,kingrichardii,1595\nO,39,kingrichardii,1595\nDUCHESS,39,kingrichardii,1595\nwould,39,kingrichardii,1595\ndeath,40,kingrichardii,1595\nsee,40,kingrichardii,1595\nus,40,kingrichardii,1595\nheart,40,kingrichardii,1595\nLORD,41,kingrichardii,1595\nlike,41,kingrichardii,1595\nblood,41,kingrichardii,1595\nam,41,kingrichardii,1595\nmore,41,kingrichardii,1595\ncome,41,kingrichardii,1595\nmay,41,kingrichardii,1595\nupon,42,kingrichardii,1595\nsay,43,kingrichardii,1595\nWith,45,kingrichardii,1595\nWhich,45,kingrichardii,1595\nBolingbroke,45,kingrichardii,1595\ngood,46,kingrichardii,1595\nlet,46,kingrichardii,1595\nWhat,46,kingrichardii,1595\nmust,48,kingrichardii,1595\nNORTHUMBERLAND,49,kingrichardii,1595\nAs,49,kingrichardii,1595\nmake,49,kingrichardii,1595\nthey,50,kingrichardii,1595\nAUMERLE,51,kingrichardii,1595\nGod,52,kingrichardii,1595\nEnter,52,kingrichardii,1595\nat,55,kingrichardii,1595\nhath,55,kingrichardii,1595\nhere,56,kingrichardii,1595\nFor,62,kingrichardii,1595\ntheir,62,kingrichardii,1595\nlord,62,kingrichardii,1595\nwhat,65,kingrichardii,1595\nBut,70,kingrichardii,1595\nby,76,kingrichardii,1595\nare,76,kingrichardii,1595\nMy,77,kingrichardii,1595\nno,78,kingrichardii,1595\non,79,kingrichardii,1595\nbut,80,kingrichardii,1595\nfrom,80,kingrichardii,1595\nshall,82,kingrichardii,1595\ndo,84,kingrichardii,1595\nwe,84,kingrichardii,1595\nThat,85,kingrichardii,1595\nthee,88,kingrichardii,1595\nwill,89,kingrichardii,1595\nas,92,kingrichardii,1595\nYORK,98,kingrichardii,1595\nall,100,kingrichardii,1595\nso,100,kingrichardii,1595\nthe,612,kingrichardii,1595\nBOLINGBROKE,101,kingrichardii,1595\nyour,112,kingrichardii,1595\nhim,114,kingrichardii,1595\nking,114,kingrichardii,1595\nhe,116,kingrichardii,1595\nour,116,kingrichardii,1595\nhave,119,kingrichardii,1595\nTo,120,kingrichardii,1595\nHENRY,122,kingrichardii,1595\nDUKE,125,kingrichardii,1595\nKING,134,kingrichardii,1595\nRICHARD,134,kingrichardii,1595\nfor,134,kingrichardii,1595\nmy,390,kingrichardii,1595\nThe,136,kingrichardii,1595\nII,137,kingrichardii,1595\nyou,142,kingrichardii,1595\nit,144,kingrichardii,1595\nthis,145,kingrichardii,1595\nbe,157,kingrichardii,1595\nthou,160,kingrichardii,1595\nthy,160,kingrichardii,1595\nme,171,kingrichardii,1595\nnot,196,kingrichardii,1595\nthat,197,kingrichardii,1595\nwith,199,kingrichardii,1595\nto,457,kingrichardii,1595\nhis,207,kingrichardii,1595\nI,467,kingrichardii,1595\nOF,214,kingrichardii,1595\nis,223,kingrichardii,1595\nof,487,kingrichardii,1595\nand,494,kingrichardii,1595\nAnd,249,kingrichardii,1595\na,255,kingrichardii,1595\nbrave,1,rapeoflucrece,1609\ncheque'd,1,rapeoflucrece,1609\ndimm'd,1,rapeoflucrece,1609\nholding,1,rapeoflucrece,1609\naffords,1,rapeoflucrece,1609\ndischarged,1,rapeoflucrece,1609\nOnward,1,rapeoflucrece,1609\n'You,1,rapeoflucrece,1609\nevent,1,rapeoflucrece,1609\ndegenerate,1,rapeoflucrece,1609\nhousehold's,1,rapeoflucrece,1609\ngalled,1,rapeoflucrece,1609\narmies,1,rapeoflucrece,1609\nuncontrolled,1,rapeoflucrece,1609\nseducing,1,rapeoflucrece,1609\nviolated,1,rapeoflucrece,1609\nretiring,1,rapeoflucrece,1609\nclouded,1,rapeoflucrece,1609\nrelier,1,rapeoflucrece,1609\nuttering,1,rapeoflucrece,1609\nvastly,1,rapeoflucrece,1609\ndreadfully,1,rapeoflucrece,1609\nscraps,1,rapeoflucrece,1609\nimaginary,1,rapeoflucrece,1609\nblemish'd,1,rapeoflucrece,1609\nQuick,1,rapeoflucrece,1609\nmeek,1,rapeoflucrece,1609\nadvised,1,rapeoflucrece,1609\nguard,1,rapeoflucrece,1609\nswords,1,rapeoflucrece,1609\nsmiled,1,rapeoflucrece,1609\nmeed,1,rapeoflucrece,1609\nWanting,1,rapeoflucrece,1609\nmuster,1,rapeoflucrece,1609\ninvisible,1,rapeoflucrece,1609\nsuffer,1,rapeoflucrece,1609\naddress'd,1,rapeoflucrece,1609\njoin,1,rapeoflucrece,1609\ndays,1,rapeoflucrece,1609\nblurr'd,1,rapeoflucrece,1609\ncockatrice',1,rapeoflucrece,1609\nadvice,1,rapeoflucrece,1609\nlips',1,rapeoflucrece,1609\nfancy,1,rapeoflucrece,1609\nextremity,1,rapeoflucrece,1609\neasing,1,rapeoflucrece,1609\nvanities,1,rapeoflucrece,1609\ntool,1,rapeoflucrece,1609\ninfant,1,rapeoflucrece,1609\npretended,1,rapeoflucrece,1609\nafar,1,rapeoflucrece,1609\nBlue,1,rapeoflucrece,1609\ncureless,1,rapeoflucrece,1609\ninterchange,1,rapeoflucrece,1609\nderived,1,rapeoflucrece,1609\nunrest,1,rapeoflucrece,1609\ndireful,1,rapeoflucrece,1609\nleisure,1,rapeoflucrece,1609\nquenchless,1,rapeoflucrece,1609\ndouble,1,rapeoflucrece,1609\ncountry,1,rapeoflucrece,1609\nspeech,1,rapeoflucrece,1609\ncontradict,1,rapeoflucrece,1609\nDevise,1,rapeoflucrece,1609\nwears,1,rapeoflucrece,1609\nBurying,1,rapeoflucrece,1609\nbereaves,1,rapeoflucrece,1609\nraw,1,rapeoflucrece,1609\nTroy's,1,rapeoflucrece,1609\nhorse,1,rapeoflucrece,1609\nunicorn,1,rapeoflucrece,1609\ndiscord,1,rapeoflucrece,1609\nfollowing,1,rapeoflucrece,1609\nAlas,1,rapeoflucrece,1609\nabominations,1,rapeoflucrece,1609\nlament,1,rapeoflucrece,1609\nstately,1,rapeoflucrece,1609\ntraitor's,1,rapeoflucrece,1609\nknell,1,rapeoflucrece,1609\nobtain'd,1,rapeoflucrece,1609\nspends,1,rapeoflucrece,1609\nshapeless,1,rapeoflucrece,1609\ntravail,1,rapeoflucrece,1609\ntorn,1,rapeoflucrece,1609\nran,1,rapeoflucrece,1609\nram,1,rapeoflucrece,1609\ntore,1,rapeoflucrece,1609\nbrows,1,rapeoflucrece,1609\nplagued,1,rapeoflucrece,1609\npitying,1,rapeoflucrece,1609\nWhether,1,rapeoflucrece,1609\npeculiar,1,rapeoflucrece,1609\nWrit,1,rapeoflucrece,1609\nyieldings,1,rapeoflucrece,1609\nhasty,1,rapeoflucrece,1609\nsympathized,1,rapeoflucrece,1609\nlongs,1,rapeoflucrece,1609\nbones,1,rapeoflucrece,1609\nboned,1,rapeoflucrece,1609\npurge,1,rapeoflucrece,1609\nelement,1,rapeoflucrece,1609\nexploits,1,rapeoflucrece,1609\nrascal,1,rapeoflucrece,1609\nassured,1,rapeoflucrece,1609\nsuppose,1,rapeoflucrece,1609\nlendeth,1,rapeoflucrece,1609\ncounterfeits,1,rapeoflucrece,1609\nheart's,1,rapeoflucrece,1609\nsteals,1,rapeoflucrece,1609\ndamps,1,rapeoflucrece,1609\nstopp'd,1,rapeoflucrece,1609\nWilt,1,rapeoflucrece,1609\ntriumphing,1,rapeoflucrece,1609\ndotes,1,rapeoflucrece,1609\nBeat,1,rapeoflucrece,1609\nspace,1,rapeoflucrece,1609\nneighbour's,1,rapeoflucrece,1609\nvillain,1,rapeoflucrece,1609\ntesty,1,rapeoflucrece,1609\ndevouring,1,rapeoflucrece,1609\nendless,1,rapeoflucrece,1609\ndiscourses,1,rapeoflucrece,1609\ndoted,1,rapeoflucrece,1609\ncranny,1,rapeoflucrece,1609\nmelt,1,rapeoflucrece,1609\nGrim,1,rapeoflucrece,1609\nheld,1,rapeoflucrece,1609\ncopesmate,1,rapeoflucrece,1609\ndire,1,rapeoflucrece,1609\nwailing,1,rapeoflucrece,1609\nVenus',1,rapeoflucrece,1609\nblustering,1,rapeoflucrece,1609\nmoiety,1,rapeoflucrece,1609\nfreed,1,rapeoflucrece,1609\ntruly,1,rapeoflucrece,1609\nwife',1,rapeoflucrece,1609\nduteous,1,rapeoflucrece,1609\npiety,1,rapeoflucrece,1609\nexceeds,1,rapeoflucrece,1609\nstarteth,1,rapeoflucrece,1609\nmiss'd,1,rapeoflucrece,1609\nfumes,1,rapeoflucrece,1609\ndrowns,1,rapeoflucrece,1609\nthorns,1,rapeoflucrece,1609\nsneaped,1,rapeoflucrece,1609\nwreaths,1,rapeoflucrece,1609\njoint,1,rapeoflucrece,1609\npalmers',1,rapeoflucrece,1609\n'Come,1,rapeoflucrece,1609\ncare's,1,rapeoflucrece,1609\nfinger,1,rapeoflucrece,1609\nplunging,1,rapeoflucrece,1609\nCooling,1,rapeoflucrece,1609\ngoverness,1,rapeoflucrece,1609\nwherewith,1,rapeoflucrece,1609\nnameless,1,rapeoflucrece,1609\nimpurity,1,rapeoflucrece,1609\npurer,1,rapeoflucrece,1609\nchest,1,rapeoflucrece,1609\nunwholesome,1,rapeoflucrece,1609\nlearn'd,1,rapeoflucrece,1609\nHeld,1,rapeoflucrece,1609\nbrood,1,rapeoflucrece,1609\nFar,1,rapeoflucrece,1609\ndemeanor,1,rapeoflucrece,1609\nfought,1,rapeoflucrece,1609\nrid,1,rapeoflucrece,1609\nnaked,1,rapeoflucrece,1609\ncountermand,1,rapeoflucrece,1609\nadvance,1,rapeoflucrece,1609\nslander,1,rapeoflucrece,1609\nreplenish,1,rapeoflucrece,1609\nwield,1,rapeoflucrece,1609\nflow,1,rapeoflucrece,1609\ncave,1,rapeoflucrece,1609\nlamentations,1,rapeoflucrece,1609\nHelen's,1,rapeoflucrece,1609\ndrink,1,rapeoflucrece,1609\nunderneath,1,rapeoflucrece,1609\nsour,1,rapeoflucrece,1609\nlaugh,1,rapeoflucrece,1609\nworms,1,rapeoflucrece,1609\nobscurely,1,rapeoflucrece,1609\ninnocence,1,rapeoflucrece,1609\nbaits,1,rapeoflucrece,1609\nravish,1,rapeoflucrece,1609\nWrapp'd,1,rapeoflucrece,1609\nsort,1,rapeoflucrece,1609\nlively,1,rapeoflucrece,1609\nreproach's,1,rapeoflucrece,1609\nstrumpet,1,rapeoflucrece,1609\nPain,1,rapeoflucrece,1609\nconsorted,1,rapeoflucrece,1609\nrun,1,rapeoflucrece,1609\niron,1,rapeoflucrece,1609\nabsolute,1,rapeoflucrece,1609\nPost,1,rapeoflucrece,1609\npick,1,rapeoflucrece,1609\nunlived,1,rapeoflucrece,1609\ncontrary,1,rapeoflucrece,1609\nBegan,1,rapeoflucrece,1609\nworks,1,rapeoflucrece,1609\npleadeth,1,rapeoflucrece,1609\nwing'd,1,rapeoflucrece,1609\npry'st,1,rapeoflucrece,1609\nentice,1,rapeoflucrece,1609\nwounded,1,rapeoflucrece,1609\nbecome,1,rapeoflucrece,1609\nrequiring,1,rapeoflucrece,1609\ncurious,1,rapeoflucrece,1609\nunwilling,1,rapeoflucrece,1609\nspare,1,rapeoflucrece,1609\ninsurrection,1,rapeoflucrece,1609\nmingled,1,rapeoflucrece,1609\nRelish,1,rapeoflucrece,1609\nUnlock'd,1,rapeoflucrece,1609\nattempt,1,rapeoflucrece,1609\ncoffers,1,rapeoflucrece,1609\nimpure,1,rapeoflucrece,1609\nunconquered,1,rapeoflucrece,1609\nmistook,1,rapeoflucrece,1609\nexhaled,1,rapeoflucrece,1609\npleasing,1,rapeoflucrece,1609\nOnce,1,rapeoflucrece,1609\nobloquy,1,rapeoflucrece,1609\n'Mis,1,rapeoflucrece,1609\ninterrupted,1,rapeoflucrece,1609\nagrees,1,rapeoflucrece,1609\nstoops,1,rapeoflucrece,1609\naccidental,1,rapeoflucrece,1609\ncramps,1,rapeoflucrece,1609\nstirring,1,rapeoflucrece,1609\npractised,1,rapeoflucrece,1609\nmercy,1,rapeoflucrece,1609\npassions,1,rapeoflucrece,1609\nchid,1,rapeoflucrece,1609\ngraces,1,rapeoflucrece,1609\nalarm,1,rapeoflucrece,1609\ndarksome,1,rapeoflucrece,1609\nmartyr'd,1,rapeoflucrece,1609\ngloomy,1,rapeoflucrece,1609\ncisterns,1,rapeoflucrece,1609\nbirth,1,rapeoflucrece,1609\nmischances,1,rapeoflucrece,1609\neverything,1,rapeoflucrece,1609\nconscience,1,rapeoflucrece,1609\nstock,1,rapeoflucrece,1609\nwordless,1,rapeoflucrece,1609\nFrantic,1,rapeoflucrece,1609\nfaultful,1,rapeoflucrece,1609\nunresisted,1,rapeoflucrece,1609\nbehests,1,rapeoflucrece,1609\nunjustly,1,rapeoflucrece,1609\nbefall'n,1,rapeoflucrece,1609\ngrown,1,rapeoflucrece,1609\nfounts,1,rapeoflucrece,1609\nBirds,1,rapeoflucrece,1609\nSwift,1,rapeoflucrece,1609\nstream,1,rapeoflucrece,1609\nscarlet,1,rapeoflucrece,1609\nlilies,1,rapeoflucrece,1609\nGive,1,rapeoflucrece,1609\ngrows,1,rapeoflucrece,1609\nline,1,rapeoflucrece,1609\ndreadeth,1,rapeoflucrece,1609\nhour's,1,rapeoflucrece,1609\nJove,1,rapeoflucrece,1609\nbathe,1,rapeoflucrece,1609\ndemure,1,rapeoflucrece,1609\ncircumstance,1,rapeoflucrece,1609\nhammer'd,1,rapeoflucrece,1609\nsmothering,1,rapeoflucrece,1609\nbottomless,1,rapeoflucrece,1609\nBlind,1,rapeoflucrece,1609\ncrying,1,rapeoflucrece,1609\nbroken,1,rapeoflucrece,1609\namended,1,rapeoflucrece,1609\n'Yea,1,rapeoflucrece,1609\nCheeks,1,rapeoflucrece,1609\nbrother,1,rapeoflucrece,1609\nKeep,1,rapeoflucrece,1609\nKnights,1,rapeoflucrece,1609\nEnd,1,rapeoflucrece,1609\nsucceeding,1,rapeoflucrece,1609\nsubjects,1,rapeoflucrece,1609\ntrumpet,1,rapeoflucrece,1609\nMuch,1,rapeoflucrece,1609\nWon,1,rapeoflucrece,1609\npossessed,1,rapeoflucrece,1609\nrevels,1,rapeoflucrece,1609\nsparks,1,rapeoflucrece,1609\nIntending,1,rapeoflucrece,1609\ncontrive,1,rapeoflucrece,1609\noffenders,1,rapeoflucrece,1609\nwants,1,rapeoflucrece,1609\nsoften,1,rapeoflucrece,1609\nhearing,1,rapeoflucrece,1609\nEntombs,1,rapeoflucrece,1609\nwound'st,1,rapeoflucrece,1609\nbabes,1,rapeoflucrece,1609\nrepetition,1,rapeoflucrece,1609\nshadow'd,1,rapeoflucrece,1609\nconstrues,1,rapeoflucrece,1609\nnests,1,rapeoflucrece,1609\nhanging,1,rapeoflucrece,1609\nbetrays,1,rapeoflucrece,1609\nArgued,1,rapeoflucrece,1609\nfalcon's,1,rapeoflucrece,1609\nsluggard,1,rapeoflucrece,1609\nPuffs,1,rapeoflucrece,1609\ncongealed,1,rapeoflucrece,1609\ninfringed,1,rapeoflucrece,1609\nbeseem,1,rapeoflucrece,1609\nlikeness,1,rapeoflucrece,1609\nwrong'st,1,rapeoflucrece,1609\nwantons,1,rapeoflucrece,1609\nfaiths,1,rapeoflucrece,1609\nPale,1,rapeoflucrece,1609\nstalks,1,rapeoflucrece,1609\ncontrite,1,rapeoflucrece,1609\nenacted,1,rapeoflucrece,1609\ntransgressions,1,rapeoflucrece,1609\ndeprive,1,rapeoflucrece,1609\nassail'd,1,rapeoflucrece,1609\nquiver'st,1,rapeoflucrece,1609\npurity,1,rapeoflucrece,1609\nvisit,1,rapeoflucrece,1609\ntoss'd,1,rapeoflucrece,1609\nSlack'd,1,rapeoflucrece,1609\nThoughts,1,rapeoflucrece,1609\nBusy,1,rapeoflucrece,1609\npartner,1,rapeoflucrece,1609\nbounding,1,rapeoflucrece,1609\nperjured,1,rapeoflucrece,1609\nbatter,1,rapeoflucrece,1609\nanatomized,1,rapeoflucrece,1609\nfurther,1,rapeoflucrece,1609\nparling,1,rapeoflucrece,1609\nladies',1,rapeoflucrece,1609\nComparing,1,rapeoflucrece,1609\ndiscovery,1,rapeoflucrece,1609\nantics,1,rapeoflucrece,1609\nweaker,1,rapeoflucrece,1609\ncustoms,1,rapeoflucrece,1609\nshames,1,rapeoflucrece,1609\ndeparts,1,rapeoflucrece,1609\nsung,1,rapeoflucrece,1609\nsit,1,rapeoflucrece,1609\nwilderness,1,rapeoflucrece,1609\ndeeper,1,rapeoflucrece,1609\nfleece,1,rapeoflucrece,1609\nimprison'd,1,rapeoflucrece,1609\nviolently,1,rapeoflucrece,1609\nCancell'd,1,rapeoflucrece,1609\nstriking,1,rapeoflucrece,1609\nken,1,rapeoflucrece,1609\n'twere,1,rapeoflucrece,1609\ndiapason,1,rapeoflucrece,1609\ngreeteth,1,rapeoflucrece,1609\nkey,1,rapeoflucrece,1609\ntenants,1,rapeoflucrece,1609\nStuff,1,rapeoflucrece,1609\nfleet,1,rapeoflucrece,1609\nbastard,1,rapeoflucrece,1609\ndeprived,1,rapeoflucrece,1609\nassails,1,rapeoflucrece,1609\ninvention,1,rapeoflucrece,1609\nsex,1,rapeoflucrece,1609\nvice,1,rapeoflucrece,1609\nchain'd,1,rapeoflucrece,1609\nreproving,1,rapeoflucrece,1609\nmocking,1,rapeoflucrece,1609\ncoals,1,rapeoflucrece,1609\nPawn'd,1,rapeoflucrece,1609\nGazing,1,rapeoflucrece,1609\nvaporous,1,rapeoflucrece,1609\nsociety,1,rapeoflucrece,1609\nthrong,1,rapeoflucrece,1609\nthrone,1,rapeoflucrece,1609\nabused,1,rapeoflucrece,1609\nfrosts,1,rapeoflucrece,1609\nspy,1,rapeoflucrece,1609\ncleanly,1,rapeoflucrece,1609\nforsake,1,rapeoflucrece,1609\nactor,1,rapeoflucrece,1609\nWILLIAM,1,rapeoflucrece,1609\nvanisheth,1,rapeoflucrece,1609\nlivest,1,rapeoflucrece,1609\nconfirmed,1,rapeoflucrece,1609\nPleads,1,rapeoflucrece,1609\nbranches,1,rapeoflucrece,1609\nuncheerful,1,rapeoflucrece,1609\ncrannies,1,rapeoflucrece,1609\nhearsed,1,rapeoflucrece,1609\nwindy,1,rapeoflucrece,1609\nvine,1,rapeoflucrece,1609\ndelivers,1,rapeoflucrece,1609\navails,1,rapeoflucrece,1609\nuncertainly,1,rapeoflucrece,1609\nmurdered,1,rapeoflucrece,1609\nsteps,1,rapeoflucrece,1609\nsod,1,rapeoflucrece,1609\nsalve,1,rapeoflucrece,1609\nforbiddings,1,rapeoflucrece,1609\nexperienced,1,rapeoflucrece,1609\nleisurely,1,rapeoflucrece,1609\nsworn,1,rapeoflucrece,1609\n'a,1,rapeoflucrece,1609\nmoralize,1,rapeoflucrece,1609\nplenty,1,rapeoflucrece,1609\nmantle,1,rapeoflucrece,1609\nlooking,1,rapeoflucrece,1609\nWas,1,rapeoflucrece,1609\ncompelled,1,rapeoflucrece,1609\ncounsel,1,rapeoflucrece,1609\ncountenance,1,rapeoflucrece,1609\ndeflower,1,rapeoflucrece,1609\nweakly,1,rapeoflucrece,1609\nattends,1,rapeoflucrece,1609\nspeedeth,1,rapeoflucrece,1609\ngazeth,1,rapeoflucrece,1609\nkindly,1,rapeoflucrece,1609\nbow'd,1,rapeoflucrece,1609\ncloy'd,1,rapeoflucrece,1609\nforthwith,1,rapeoflucrece,1609\nbashful,1,rapeoflucrece,1609\ndesign,1,rapeoflucrece,1609\nqualified,1,rapeoflucrece,1609\ntestament,1,rapeoflucrece,1609\nacquainted,1,rapeoflucrece,1609\npermit,1,rapeoflucrece,1609\n'Few,1,rapeoflucrece,1609\nfirmly,1,rapeoflucrece,1609\nwoodman,1,rapeoflucrece,1609\nchat,1,rapeoflucrece,1609\nbeloved,1,rapeoflucrece,1609\ncommends,1,rapeoflucrece,1609\npitiful,1,rapeoflucrece,1609\nCovers,1,rapeoflucrece,1609\nlambs,1,rapeoflucrece,1609\nBlushing,1,rapeoflucrece,1609\ncontrolled,1,rapeoflucrece,1609\nmerciless,1,rapeoflucrece,1609\ndally,1,rapeoflucrece,1609\nplay'd,1,rapeoflucrece,1609\nsuck'd,1,rapeoflucrece,1609\nawaketh,1,rapeoflucrece,1609\nAuthority,1,rapeoflucrece,1609\ncheers,1,rapeoflucrece,1609\ntuning,1,rapeoflucrece,1609\nthieves,1,rapeoflucrece,1609\nshriek,1,rapeoflucrece,1609\nensnared,1,rapeoflucrece,1609\nsuppress'd,1,rapeoflucrece,1609\neverlasting,1,rapeoflucrece,1609\nsly,1,rapeoflucrece,1609\nfelt,1,rapeoflucrece,1609\ndigestion,1,rapeoflucrece,1609\nTereus,1,rapeoflucrece,1609\nbarns,1,rapeoflucrece,1609\nguide,1,rapeoflucrece,1609\ncompound,1,rapeoflucrece,1609\nintrude,1,rapeoflucrece,1609\nOffer,1,rapeoflucrece,1609\nlingering,1,rapeoflucrece,1609\ndebtors,1,rapeoflucrece,1609\nconceit,1,rapeoflucrece,1609\nbrain,1,rapeoflucrece,1609\nSuperbus,1,rapeoflucrece,1609\nquestioned,1,rapeoflucrece,1609\nwinks,1,rapeoflucrece,1609\nconfounded,1,rapeoflucrece,1609\nenchained,1,rapeoflucrece,1609\ncharm'd,1,rapeoflucrece,1609\nguarded,1,rapeoflucrece,1609\nLife's,1,rapeoflucrece,1609\nburneth,1,rapeoflucrece,1609\ncommon,1,rapeoflucrece,1609\nrespecting,1,rapeoflucrece,1609\nbeldam's,1,rapeoflucrece,1609\nscowls,1,rapeoflucrece,1609\nbliss,1,rapeoflucrece,1609\ngrates,1,rapeoflucrece,1609\nking's,1,rapeoflucrece,1609\npurify,1,rapeoflucrece,1609\nplots,1,rapeoflucrece,1609\norts,1,rapeoflucrece,1609\nruns,1,rapeoflucrece,1609\nterms,1,rapeoflucrece,1609\narbitrators,1,rapeoflucrece,1609\ninstance,1,rapeoflucrece,1609\nshowers,1,rapeoflucrece,1609\nfruit,1,rapeoflucrece,1609\nwilling,1,rapeoflucrece,1609\npearl,1,rapeoflucrece,1609\n'Look,1,rapeoflucrece,1609\n'Tween,1,rapeoflucrece,1609\ndisports,1,rapeoflucrece,1609\nprinces,1,rapeoflucrece,1609\nsue,1,rapeoflucrece,1609\nminority,1,rapeoflucrece,1609\nspeechless,1,rapeoflucrece,1609\nilliterate,1,rapeoflucrece,1609\nperplex'd,1,rapeoflucrece,1609\ncircles,1,rapeoflucrece,1609\nfearful,1,rapeoflucrece,1609\nfeed,1,rapeoflucrece,1609\naccent,1,rapeoflucrece,1609\nServius,1,rapeoflucrece,1609\nrein,1,rapeoflucrece,1609\ncease,1,rapeoflucrece,1609\npromise,1,rapeoflucrece,1609\nbeaten,1,rapeoflucrece,1609\ngrow,1,rapeoflucrece,1609\nswore,1,rapeoflucrece,1609\ndial,1,rapeoflucrece,1609\nbrine,1,rapeoflucrece,1609\nbaser,1,rapeoflucrece,1609\nunperceived,1,rapeoflucrece,1609\nancient,1,rapeoflucrece,1609\n'Now,1,rapeoflucrece,1609\nweather,1,rapeoflucrece,1609\nOld,1,rapeoflucrece,1609\npassion's,1,rapeoflucrece,1609\n'Nor,1,rapeoflucrece,1609\nrude,1,rapeoflucrece,1609\nclaws,1,rapeoflucrece,1609\nSuggested,1,rapeoflucrece,1609\nmothers',1,rapeoflucrece,1609\nRetire,1,rapeoflucrece,1609\nshrine,1,rapeoflucrece,1609\nward,1,rapeoflucrece,1609\ncavil,1,rapeoflucrece,1609\nbechance,1,rapeoflucrece,1609\nkneel,1,rapeoflucrece,1609\nmonarchs,1,rapeoflucrece,1609\ncuckoos,1,rapeoflucrece,1609\ntiger,1,rapeoflucrece,1609\nMight,1,rapeoflucrece,1609\ndedicate,1,rapeoflucrece,1609\nnight's,1,rapeoflucrece,1609\n'point'st,1,rapeoflucrece,1609\nknees,1,rapeoflucrece,1609\nexpressly,1,rapeoflucrece,1609\nbattle's,1,rapeoflucrece,1609\npeasants,1,rapeoflucrece,1609\nsteal,1,rapeoflucrece,1609\nentertained,1,rapeoflucrece,1609\nedge,1,rapeoflucrece,1609\nTantalus,1,rapeoflucrece,1609\nEater,1,rapeoflucrece,1609\nhates,1,rapeoflucrece,1609\nhated,1,rapeoflucrece,1609\ndetriment,1,rapeoflucrece,1609\nruin,1,rapeoflucrece,1609\n'she,1,rapeoflucrece,1609\nservile,1,rapeoflucrece,1609\ndied,1,rapeoflucrece,1609\nportal,1,rapeoflucrece,1609\neddy,1,rapeoflucrece,1609\nDespair,1,rapeoflucrece,1609\nstaying,1,rapeoflucrece,1609\nheraldry,1,rapeoflucrece,1609\nnorthern,1,rapeoflucrece,1609\nPyrrhus,1,rapeoflucrece,1609\nwindow,1,rapeoflucrece,1609\nrevolving,1,rapeoflucrece,1609\nhatch,1,rapeoflucrece,1609\nshrub's,1,rapeoflucrece,1609\nbidding,1,rapeoflucrece,1609\nparching,1,rapeoflucrece,1609\nincense,1,rapeoflucrece,1609\nbeldam,1,rapeoflucrece,1609\nharbour,1,rapeoflucrece,1609\npitch'd,1,rapeoflucrece,1609\nwars,1,rapeoflucrece,1609\nbond,1,rapeoflucrece,1609\nduring,1,rapeoflucrece,1609\ncunning,1,rapeoflucrece,1609\ntimeless,1,rapeoflucrece,1609\nwash,1,rapeoflucrece,1609\nshuts,1,rapeoflucrece,1609\nwasp,1,rapeoflucrece,1609\ncircumstances,1,rapeoflucrece,1609\nmatter,1,rapeoflucrece,1609\nsteep,1,rapeoflucrece,1609\n'these,1,rapeoflucrece,1609\nbook,1,rapeoflucrece,1609\nplaints,1,rapeoflucrece,1609\ninordinate,1,rapeoflucrece,1609\npraised,1,rapeoflucrece,1609\nunrecalling,1,rapeoflucrece,1609\ninfirmity,1,rapeoflucrece,1609\nsceptre,1,rapeoflucrece,1609\npraises,1,rapeoflucrece,1609\nwayward,1,rapeoflucrece,1609\nsympathy,1,rapeoflucrece,1609\nDraw,1,rapeoflucrece,1609\nobjects,1,rapeoflucrece,1609\naspect,1,rapeoflucrece,1609\nPausing,1,rapeoflucrece,1609\nfeather'd,1,rapeoflucrece,1609\nbin,1,rapeoflucrece,1609\nTullius,1,rapeoflucrece,1609\ngrievous,1,rapeoflucrece,1609\nconspirator,1,rapeoflucrece,1609\nunadvised,1,rapeoflucrece,1609\ntumult,1,rapeoflucrece,1609\nbastardy,1,rapeoflucrece,1609\nstir,1,rapeoflucrece,1609\nHarmless,1,rapeoflucrece,1609\nforbade,1,rapeoflucrece,1609\nmargents,1,rapeoflucrece,1609\nmanners,1,rapeoflucrece,1609\nWrath,1,rapeoflucrece,1609\nmortality,1,rapeoflucrece,1609\nLeaving,1,rapeoflucrece,1609\nenjoy'd,1,rapeoflucrece,1609\nbreakers,1,rapeoflucrece,1609\nstrongly,1,rapeoflucrece,1609\ncommended,1,rapeoflucrece,1609\nhap,1,rapeoflucrece,1609\nenchanting,1,rapeoflucrece,1609\nFaint,1,rapeoflucrece,1609\nresembling,1,rapeoflucrece,1609\nfords,1,rapeoflucrece,1609\nForetell,1,rapeoflucrece,1609\nthoughted,1,rapeoflucrece,1609\nrivers,1,rapeoflucrece,1609\nutter,1,rapeoflucrece,1609\ndiscern,1,rapeoflucrece,1609\ndistinguish,1,rapeoflucrece,1609\nslaketh,1,rapeoflucrece,1609\nresemble,1,rapeoflucrece,1609\nVast,1,rapeoflucrece,1609\nAy,1,rapeoflucrece,1609\nballs,1,rapeoflucrece,1609\nLucretia's,1,rapeoflucrece,1609\nflatters,1,rapeoflucrece,1609\npilot,1,rapeoflucrece,1609\naltogether,1,rapeoflucrece,1609\ninfection,1,rapeoflucrece,1609\npay,1,rapeoflucrece,1609\norators,1,rapeoflucrece,1609\nmeads,1,rapeoflucrece,1609\nslander's,1,rapeoflucrece,1609\nyouthful,1,rapeoflucrece,1609\nshaming,1,rapeoflucrece,1609\nwronger,1,rapeoflucrece,1609\neternal,1,rapeoflucrece,1609\nspurn'st,1,rapeoflucrece,1609\nThrowing,1,rapeoflucrece,1609\nknowing,1,rapeoflucrece,1609\ngovern,1,rapeoflucrece,1609\nantiquities,1,rapeoflucrece,1609\nalarum,1,rapeoflucrece,1609\nshortly,1,rapeoflucrece,1609\nwash'd,1,rapeoflucrece,1609\nreason's,1,rapeoflucrece,1609\ninventions,1,rapeoflucrece,1609\namong,1,rapeoflucrece,1609\nassault,1,rapeoflucrece,1609\nspoil'd,1,rapeoflucrece,1609\nencompass'd,1,rapeoflucrece,1609\nban,1,rapeoflucrece,1609\n'Think,1,rapeoflucrece,1609\nhopes,1,rapeoflucrece,1609\nLo,1,rapeoflucrece,1609\npointed,1,rapeoflucrece,1609\nprone,1,rapeoflucrece,1609\nsensible,1,rapeoflucrece,1609\ninclined,1,rapeoflucrece,1609\ngratis,1,rapeoflucrece,1609\nfoam,1,rapeoflucrece,1609\nlands,1,rapeoflucrece,1609\nplea,1,rapeoflucrece,1609\ncruel,1,rapeoflucrece,1609\nunless,1,rapeoflucrece,1609\ndoves,1,rapeoflucrece,1609\ncanst,1,rapeoflucrece,1609\ncreature,1,rapeoflucrece,1609\nexceed,1,rapeoflucrece,1609\nbubbling,1,rapeoflucrece,1609\nbe',1,rapeoflucrece,1609\nfouler,1,rapeoflucrece,1609\ntales,1,rapeoflucrece,1609\njoyless,1,rapeoflucrece,1609\npen,1,rapeoflucrece,1609\ndiligence,1,rapeoflucrece,1609\naffection's,1,rapeoflucrece,1609\nuntutored,1,rapeoflucrece,1609\ntype,1,rapeoflucrece,1609\nashes,1,rapeoflucrece,1609\nflowers,1,rapeoflucrece,1609\nbeg,1,rapeoflucrece,1609\nsouring,1,rapeoflucrece,1609\nfatal,1,rapeoflucrece,1609\nvanquished,1,rapeoflucrece,1609\nenter,1,rapeoflucrece,1609\nills,1,rapeoflucrece,1609\nnotorious,1,rapeoflucrece,1609\ndamm'd,1,rapeoflucrece,1609\nowner,1,rapeoflucrece,1609\nambush,1,rapeoflucrece,1609\nensconced,1,rapeoflucrece,1609\nquick,1,rapeoflucrece,1609\ntribute,1,rapeoflucrece,1609\narrest,1,rapeoflucrece,1609\nbruised,1,rapeoflucrece,1609\nwither'd,1,rapeoflucrece,1609\nbid,1,rapeoflucrece,1609\ndespair,1,rapeoflucrece,1609\nsluices,1,rapeoflucrece,1609\nHad,1,rapeoflucrece,1609\nsport,1,rapeoflucrece,1609\nadder,1,rapeoflucrece,1609\nReplies,1,rapeoflucrece,1609\nmermaid,1,rapeoflucrece,1609\nbuys,1,rapeoflucrece,1609\ntroops,1,rapeoflucrece,1609\nhides,1,rapeoflucrece,1609\nunmatched,1,rapeoflucrece,1609\nTroilus,1,rapeoflucrece,1609\ndisplay'd,1,rapeoflucrece,1609\nnice,1,rapeoflucrece,1609\nyourselves,1,rapeoflucrece,1609\nmeritorious,1,rapeoflucrece,1609\ntumbled,1,rapeoflucrece,1609\npolluted,1,rapeoflucrece,1609\nnobly,1,rapeoflucrece,1609\ncurled,1,rapeoflucrece,1609\nfeareth,1,rapeoflucrece,1609\nkiss'd,1,rapeoflucrece,1609\nridges,1,rapeoflucrece,1609\nincest,1,rapeoflucrece,1609\nboundeth,1,rapeoflucrece,1609\ntitles,1,rapeoflucrece,1609\nsurprise,1,rapeoflucrece,1609\nuseless,1,rapeoflucrece,1609\nstrifes,1,rapeoflucrece,1609\ndepending,1,rapeoflucrece,1609\nweed,1,rapeoflucrece,1609\ndumps,1,rapeoflucrece,1609\nthorn,1,rapeoflucrece,1609\ndivide,1,rapeoflucrece,1609\nlurk',1,rapeoflucrece,1609\nbulk,1,rapeoflucrece,1609\nchallenge,1,rapeoflucrece,1609\nespied,1,rapeoflucrece,1609\nsorry,1,rapeoflucrece,1609\nweek,1,rapeoflucrece,1609\nhills,1,rapeoflucrece,1609\n'Reward,1,rapeoflucrece,1609\nstraw,1,rapeoflucrece,1609\nspotless,1,rapeoflucrece,1609\nbend,1,rapeoflucrece,1609\nbusy,1,rapeoflucrece,1609\ntyrannize,1,rapeoflucrece,1609\nleadeth,1,rapeoflucrece,1609\nbush,1,rapeoflucrece,1609\nuntold,1,rapeoflucrece,1609\nrouseth,1,rapeoflucrece,1609\nstrived,1,rapeoflucrece,1609\nbelied,1,rapeoflucrece,1609\nfields,1,rapeoflucrece,1609\neclipsed,1,rapeoflucrece,1609\nworshipper,1,rapeoflucrece,1609\nMelt,1,rapeoflucrece,1609\ndove,1,rapeoflucrece,1609\nSits,1,rapeoflucrece,1609\nbell,1,rapeoflucrece,1609\nabstaining,1,rapeoflucrece,1609\ngoodly,1,rapeoflucrece,1609\nsorts,1,rapeoflucrece,1609\ncat,1,rapeoflucrece,1609\nBeating,1,rapeoflucrece,1609\nTO,1,rapeoflucrece,1609\nreeking,1,rapeoflucrece,1609\nhomely,1,rapeoflucrece,1609\ntricks,1,rapeoflucrece,1609\nstrives,1,rapeoflucrece,1609\nshepherds,1,rapeoflucrece,1609\n'Lucrece,1,rapeoflucrece,1609\ndote,1,rapeoflucrece,1609\ncouch,1,rapeoflucrece,1609\nlearned,1,rapeoflucrece,1609\nwedlock,1,rapeoflucrece,1609\nwear,1,rapeoflucrece,1609\ncanopied,1,rapeoflucrece,1609\ncraft,1,rapeoflucrece,1609\n'on,1,rapeoflucrece,1609\nLife,1,rapeoflucrece,1609\nquill,1,rapeoflucrece,1609\nbeyond,1,rapeoflucrece,1609\nsustain,1,rapeoflucrece,1609\nmodestly,1,rapeoflucrece,1609\nbuildings,1,rapeoflucrece,1609\nLies,1,rapeoflucrece,1609\nBraving,1,rapeoflucrece,1609\nwelkin,1,rapeoflucrece,1609\ndisdainfully,1,rapeoflucrece,1609\njealous,1,rapeoflucrece,1609\ninvective,1,rapeoflucrece,1609\ntempts,1,rapeoflucrece,1609\nlegacy,1,rapeoflucrece,1609\ndisbursed,1,rapeoflucrece,1609\nserpent,1,rapeoflucrece,1609\ntwice,1,rapeoflucrece,1609\nhealeth,1,rapeoflucrece,1609\nbrinish,1,rapeoflucrece,1609\npersuasion,1,rapeoflucrece,1609\nNestor's,1,rapeoflucrece,1609\nlust's,1,rapeoflucrece,1609\ndespise,1,rapeoflucrece,1609\n'no,1,rapeoflucrece,1609\nextreme,1,rapeoflucrece,1609\ntheme,1,rapeoflucrece,1609\nHolds,1,rapeoflucrece,1609\nroyally,1,rapeoflucrece,1609\nruinate,1,rapeoflucrece,1609\nvaulty,1,rapeoflucrece,1609\nbeforehand,1,rapeoflucrece,1609\nsentinel,1,rapeoflucrece,1609\nbadge,1,rapeoflucrece,1609\nShowing,1,rapeoflucrece,1609\nvows,1,rapeoflucrece,1609\nbuy,1,rapeoflucrece,1609\nAjax,1,rapeoflucrece,1609\namongst,1,rapeoflucrece,1609\nused,1,rapeoflucrece,1609\ndisguise,1,rapeoflucrece,1609\ncruelly,1,rapeoflucrece,1609\nhovering,1,rapeoflucrece,1609\nbees,1,rapeoflucrece,1609\nlonger,1,rapeoflucrece,1609\nwheresoe'er,1,rapeoflucrece,1609\npeople's,1,rapeoflucrece,1609\nlurks,1,rapeoflucrece,1609\nsins,1,rapeoflucrece,1609\nproportion'd,1,rapeoflucrece,1609\nshifts,1,rapeoflucrece,1609\nstronger,1,rapeoflucrece,1609\nenterprise,1,rapeoflucrece,1609\npaint,1,rapeoflucrece,1609\njump,1,rapeoflucrece,1609\nhisses,1,rapeoflucrece,1609\nstories,1,rapeoflucrece,1609\nunstain'd,1,rapeoflucrece,1609\nhourly,1,rapeoflucrece,1609\nimmortality,1,rapeoflucrece,1609\naudacity,1,rapeoflucrece,1609\nvantage,1,rapeoflucrece,1609\nwolves',1,rapeoflucrece,1609\nsharing,1,rapeoflucrece,1609\nmists,1,rapeoflucrece,1609\ncomprehend,1,rapeoflucrece,1609\nresort,1,rapeoflucrece,1609\nacceptance,1,rapeoflucrece,1609\nbeginning,1,rapeoflucrece,1609\ndestitute,1,rapeoflucrece,1609\no'ergrown,1,rapeoflucrece,1609\npearly,1,rapeoflucrece,1609\nopens,1,rapeoflucrece,1609\npillage,1,rapeoflucrece,1609\nRevealing,1,rapeoflucrece,1609\nquite,1,rapeoflucrece,1609\npearls,1,rapeoflucrece,1609\nGod,1,rapeoflucrece,1609\nclients,1,rapeoflucrece,1609\nsolemn,1,rapeoflucrece,1609\nnoted,1,rapeoflucrece,1609\nstorm,1,rapeoflucrece,1609\neagles,1,rapeoflucrece,1609\n'Fool,1,rapeoflucrece,1609\npanting,1,rapeoflucrece,1609\ndeparted,1,rapeoflucrece,1609\ndeer,1,rapeoflucrece,1609\naffection,1,rapeoflucrece,1609\n'that,1,rapeoflucrece,1609\neloquence,1,rapeoflucrece,1609\nunpractised,1,rapeoflucrece,1609\nclear'd,1,rapeoflucrece,1609\nFortune,1,rapeoflucrece,1609\nunderprop,1,rapeoflucrece,1609\nsheds,1,rapeoflucrece,1609\ntorments,1,rapeoflucrece,1609\nkeeping,1,rapeoflucrece,1609\npuddle,1,rapeoflucrece,1609\nconsecrated,1,rapeoflucrece,1609\nyea,1,rapeoflucrece,1609\ntyrant,1,rapeoflucrece,1609\nMock,1,rapeoflucrece,1609\nsatisfy,1,rapeoflucrece,1609\nFear,1,rapeoflucrece,1609\nservant,1,rapeoflucrece,1609\nfaster,1,rapeoflucrece,1609\ncurrent,1,rapeoflucrece,1609\nloop,1,rapeoflucrece,1609\ndeck,1,rapeoflucrece,1609\nsheet,1,rapeoflucrece,1609\nbeat,1,rapeoflucrece,1609\nMaking,1,rapeoflucrece,1609\nstoop,1,rapeoflucrece,1609\nrightful,1,rapeoflucrece,1609\nmurderous,1,rapeoflucrece,1609\nlaments,1,rapeoflucrece,1609\ntongued,1,rapeoflucrece,1609\nnewer,1,rapeoflucrece,1609\nbeak,1,rapeoflucrece,1609\ntongues,1,rapeoflucrece,1609\nnotes,1,rapeoflucrece,1609\nUnless,1,rapeoflucrece,1609\ndwell,1,rapeoflucrece,1609\nleader's,1,rapeoflucrece,1609\nunworthy,1,rapeoflucrece,1609\ndisturbed,1,rapeoflucrece,1609\nplays,1,rapeoflucrece,1609\nexcelleth,1,rapeoflucrece,1609\nspinning,1,rapeoflucrece,1609\nRevenge,1,rapeoflucrece,1609\nprofaned,1,rapeoflucrece,1609\nvouchsafe,1,rapeoflucrece,1609\ndignity,1,rapeoflucrece,1609\ndeaf,1,rapeoflucrece,1609\ncommanders,1,rapeoflucrece,1609\nseeing,1,rapeoflucrece,1609\ngild,1,rapeoflucrece,1609\ndaunts,1,rapeoflucrece,1609\nco,1,rapeoflucrece,1609\ncontinual,1,rapeoflucrece,1609\nseeming,1,rapeoflucrece,1609\nlighted,1,rapeoflucrece,1609\nrhymes,1,rapeoflucrece,1609\nredress,1,rapeoflucrece,1609\nvictors,1,rapeoflucrece,1609\ndoer,1,rapeoflucrece,1609\ngall,1,rapeoflucrece,1609\nwaist,1,rapeoflucrece,1609\noppressor,1,rapeoflucrece,1609\ntouch'd,1,rapeoflucrece,1609\nstole,1,rapeoflucrece,1609\nlady's,1,rapeoflucrece,1609\nwaits,1,rapeoflucrece,1609\nrestrains,1,rapeoflucrece,1609\nYou,1,rapeoflucrece,1609\nay,1,rapeoflucrece,1609\nyields,1,rapeoflucrece,1609\nvaunt,1,rapeoflucrece,1609\nrelenting,1,rapeoflucrece,1609\nmaketh,1,rapeoflucrece,1609\npossess'd,1,rapeoflucrece,1609\nshed,1,rapeoflucrece,1609\nprivilege,1,rapeoflucrece,1609\ndefends,1,rapeoflucrece,1609\nrains,1,rapeoflucrece,1609\nPluto,1,rapeoflucrece,1609\ngrowth,1,rapeoflucrece,1609\nnewly,1,rapeoflucrece,1609\nenclosed,1,rapeoflucrece,1609\nsupreme,1,rapeoflucrece,1609\nwench,1,rapeoflucrece,1609\nonset,1,rapeoflucrece,1609\npiercing,1,rapeoflucrece,1609\nunsheathed,1,rapeoflucrece,1609\nfixed,1,rapeoflucrece,1609\nrouse,1,rapeoflucrece,1609\ncured,1,rapeoflucrece,1609\nsugar'd,1,rapeoflucrece,1609\nmove,1,rapeoflucrece,1609\ncommend,1,rapeoflucrece,1609\nencloses,1,rapeoflucrece,1609\ndelay,1,rapeoflucrece,1609\ntragedies,1,rapeoflucrece,1609\nsmall,1,rapeoflucrece,1609\n'this,1,rapeoflucrece,1609\ncrew,1,rapeoflucrece,1609\nunspotted,1,rapeoflucrece,1609\nunfruitful,1,rapeoflucrece,1609\nstrait,1,rapeoflucrece,1609\naside,1,rapeoflucrece,1609\ncrave,1,rapeoflucrece,1609\n'cannot',1,rapeoflucrece,1609\npublisher,1,rapeoflucrece,1609\nmote,1,rapeoflucrece,1609\nengraven,1,rapeoflucrece,1609\noutrageous,1,rapeoflucrece,1609\nwrinkled,1,rapeoflucrece,1609\nFortune's,1,rapeoflucrece,1609\nabettor,1,rapeoflucrece,1609\ndelicious,1,rapeoflucrece,1609\nidle,1,rapeoflucrece,1609\nUnprofitable,1,rapeoflucrece,1609\nLays,1,rapeoflucrece,1609\n'Where,1,rapeoflucrece,1609\nauspicious,1,rapeoflucrece,1609\nstows,1,rapeoflucrece,1609\nsufficed,1,rapeoflucrece,1609\nlook'st,1,rapeoflucrece,1609\nPublius,1,rapeoflucrece,1609\ncaused,1,rapeoflucrece,1609\ninstigate,1,rapeoflucrece,1609\ncrimes,1,rapeoflucrece,1609\nmorn,1,rapeoflucrece,1609\nnoble,1,rapeoflucrece,1609\nenmity,1,rapeoflucrece,1609\nloves,1,rapeoflucrece,1609\nscornful,1,rapeoflucrece,1609\npursues,1,rapeoflucrece,1609\nglance,1,rapeoflucrece,1609\nhoarsely,1,rapeoflucrece,1609\nink,1,rapeoflucrece,1609\nendure,1,rapeoflucrece,1609\nquittal,1,rapeoflucrece,1609\ngrooms,1,rapeoflucrece,1609\nYea,1,rapeoflucrece,1609\nStaring,1,rapeoflucrece,1609\nblur,1,rapeoflucrece,1609\nadd,1,rapeoflucrece,1609\nHindering,1,rapeoflucrece,1609\ngleam'd,1,rapeoflucrece,1609\npartners,1,rapeoflucrece,1609\nbewray'd,1,rapeoflucrece,1609\ncipher'd,1,rapeoflucrece,1609\nlest,1,rapeoflucrece,1609\ntwinkling,1,rapeoflucrece,1609\nswains,1,rapeoflucrece,1609\ntames,1,rapeoflucrece,1609\nloved,1,rapeoflucrece,1609\nfilling,1,rapeoflucrece,1609\nabusing,1,rapeoflucrece,1609\nGrace,1,rapeoflucrece,1609\nstraggling,1,rapeoflucrece,1609\nwails,1,rapeoflucrece,1609\nlets,1,rapeoflucrece,1609\nbeauteous,1,rapeoflucrece,1609\nsightless,1,rapeoflucrece,1609\nslaughterhouse,1,rapeoflucrece,1609\ndecks,1,rapeoflucrece,1609\nboding,1,rapeoflucrece,1609\nstrand,1,rapeoflucrece,1609\nnimble,1,rapeoflucrece,1609\nknew,1,rapeoflucrece,1609\nWhoever,1,rapeoflucrece,1609\nready,1,rapeoflucrece,1609\nencouraging,1,rapeoflucrece,1609\nspot,1,rapeoflucrece,1609\nshow'd,1,rapeoflucrece,1609\nkings',1,rapeoflucrece,1609\nsubornation,1,rapeoflucrece,1609\npain'd,1,rapeoflucrece,1609\nknee,1,rapeoflucrece,1609\nminstrels,1,rapeoflucrece,1609\njocund,1,rapeoflucrece,1609\ndigression,1,rapeoflucrece,1609\nclimb,1,rapeoflucrece,1609\naccents,1,rapeoflucrece,1609\nbasely,1,rapeoflucrece,1609\nvalour,1,rapeoflucrece,1609\nSeeing,1,rapeoflucrece,1609\nHaply,1,rapeoflucrece,1609\nornaments,1,rapeoflucrece,1609\naccounted,1,rapeoflucrece,1609\nkills,1,rapeoflucrece,1609\nunlook'd,1,rapeoflucrece,1609\nProving,1,rapeoflucrece,1609\nAdvice,1,rapeoflucrece,1609\nfaints,1,rapeoflucrece,1609\nincline,1,rapeoflucrece,1609\nfrighted,1,rapeoflucrece,1609\norphan,1,rapeoflucrece,1609\nkeen,1,rapeoflucrece,1609\nremember'd,1,rapeoflucrece,1609\nafford,1,rapeoflucrece,1609\nfrost,1,rapeoflucrece,1609\ncrow,1,rapeoflucrece,1609\nhalf,1,rapeoflucrece,1609\naskance,1,rapeoflucrece,1609\nmessenger,1,rapeoflucrece,1609\nlabouring,1,rapeoflucrece,1609\npoorly,1,rapeoflucrece,1609\nfriendship's,1,rapeoflucrece,1609\nbeggar's,1,rapeoflucrece,1609\nfroth,1,rapeoflucrece,1609\nknit,1,rapeoflucrece,1609\nnearer,1,rapeoflucrece,1609\ncharacter'd,1,rapeoflucrece,1609\nquills,1,rapeoflucrece,1609\ndispensation,1,rapeoflucrece,1609\nwormwood,1,rapeoflucrece,1609\n'Tarquin,1,rapeoflucrece,1609\nrepeal,1,rapeoflucrece,1609\nfaintly,1,rapeoflucrece,1609\nplantest,1,rapeoflucrece,1609\nreprobate,1,rapeoflucrece,1609\nstrings,1,rapeoflucrece,1609\nrepeat,1,rapeoflucrece,1609\nrushes,1,rapeoflucrece,1609\nt',1,rapeoflucrece,1609\nSwelling,1,rapeoflucrece,1609\nappears,1,rapeoflucrece,1609\nFull,1,rapeoflucrece,1609\ndeny,1,rapeoflucrece,1609\ncited,1,rapeoflucrece,1609\nconsuls,1,rapeoflucrece,1609\nLosing,1,rapeoflucrece,1609\ndescried,1,rapeoflucrece,1609\nPyrrhus',1,rapeoflucrece,1609\nsecrecies,1,rapeoflucrece,1609\ndwell'd,1,rapeoflucrece,1609\nfoggy,1,rapeoflucrece,1609\nBrings,1,rapeoflucrece,1609\nmomentary,1,rapeoflucrece,1609\nhalt,1,rapeoflucrece,1609\nDuring,1,rapeoflucrece,1609\nmarching,1,rapeoflucrece,1609\nExtinguishing,1,rapeoflucrece,1609\nacquaintance,1,rapeoflucrece,1609\npluck,1,rapeoflucrece,1609\nsmoothness,1,rapeoflucrece,1609\nexpect,1,rapeoflucrece,1609\nconstrain'd,1,rapeoflucrece,1609\nmidnight,1,rapeoflucrece,1609\nmajesty's,1,rapeoflucrece,1609\nUntimely,1,rapeoflucrece,1609\narm,1,rapeoflucrece,1609\nravens',1,rapeoflucrece,1609\nform,1,rapeoflucrece,1609\nprepare,1,rapeoflucrece,1609\nbathes,1,rapeoflucrece,1609\nPure,1,rapeoflucrece,1609\nhawk,1,rapeoflucrece,1609\nharden,1,rapeoflucrece,1609\nneglect,1,rapeoflucrece,1609\nexecutest,1,rapeoflucrece,1609\nhangs,1,rapeoflucrece,1609\nfiery,1,rapeoflucrece,1609\nPlot,1,rapeoflucrece,1609\nremoving,1,rapeoflucrece,1609\nTender,1,rapeoflucrece,1609\noutrage,1,rapeoflucrece,1609\nwretchedness,1,rapeoflucrece,1609\nAjax',1,rapeoflucrece,1609\nhum,1,rapeoflucrece,1609\nspear,1,rapeoflucrece,1609\nCave,1,rapeoflucrece,1609\ncoverlet,1,rapeoflucrece,1609\nheartens,1,rapeoflucrece,1609\nminute's,1,rapeoflucrece,1609\nBorne,1,rapeoflucrece,1609\nscatter,1,rapeoflucrece,1609\npoint,1,rapeoflucrece,1609\nstrive,1,rapeoflucrece,1609\ndeceitful,1,rapeoflucrece,1609\nentertain'd,1,rapeoflucrece,1609\n'nights,1,rapeoflucrece,1609\nowed,1,rapeoflucrece,1609\nlode,1,rapeoflucrece,1609\npace,1,rapeoflucrece,1609\nforlorn,1,rapeoflucrece,1609\nbosom,1,rapeoflucrece,1609\npack,1,rapeoflucrece,1609\nalive,1,rapeoflucrece,1609\nshot,1,rapeoflucrece,1609\nputs,1,rapeoflucrece,1609\npriceless,1,rapeoflucrece,1609\ncombat,1,rapeoflucrece,1609\nrings,1,rapeoflucrece,1609\nyielded,1,rapeoflucrece,1609\nfear's,1,rapeoflucrece,1609\nwinking,1,rapeoflucrece,1609\nbragg'd,1,rapeoflucrece,1609\nawe,1,rapeoflucrece,1609\ngentry,1,rapeoflucrece,1609\nchastity,1,rapeoflucrece,1609\nfrets,1,rapeoflucrece,1609\nHONORABLE,1,rapeoflucrece,1609\nflatter'd,1,rapeoflucrece,1609\nvowed,1,rapeoflucrece,1609\ngaudy,1,rapeoflucrece,1609\nfood,1,rapeoflucrece,1609\nimages,1,rapeoflucrece,1609\ntyranny,1,rapeoflucrece,1609\nPawning,1,rapeoflucrece,1609\nSmall,1,rapeoflucrece,1609\nfainted,1,rapeoflucrece,1609\nabsolution,1,rapeoflucrece,1609\nexcess,1,rapeoflucrece,1609\n'without,1,rapeoflucrece,1609\npush,1,rapeoflucrece,1609\nhapless,1,rapeoflucrece,1609\navouched,1,rapeoflucrece,1609\nmonument,1,rapeoflucrece,1609\nforms,1,rapeoflucrece,1609\nMen's,1,rapeoflucrece,1609\nphysiognomy,1,rapeoflucrece,1609\ndewy,1,rapeoflucrece,1609\nbegets,1,rapeoflucrece,1609\narmour,1,rapeoflucrece,1609\napplied,1,rapeoflucrece,1609\npoorer,1,rapeoflucrece,1609\nThan,1,rapeoflucrece,1609\nHast,1,rapeoflucrece,1609\nopen'd,1,rapeoflucrece,1609\nShort,1,rapeoflucrece,1609\nroll,1,rapeoflucrece,1609\nthreads,1,rapeoflucrece,1609\n'Shameful,1,rapeoflucrece,1609\nbought,1,rapeoflucrece,1609\nfew,1,rapeoflucrece,1609\nfee,1,rapeoflucrece,1609\nrave,1,rapeoflucrece,1609\nsuperiors,1,rapeoflucrece,1609\ncheque,1,rapeoflucrece,1609\nlurking,1,rapeoflucrece,1609\nchides,1,rapeoflucrece,1609\nwildfire,1,rapeoflucrece,1609\ndishevell'd,1,rapeoflucrece,1609\nCircles,1,rapeoflucrece,1609\nbehavior,1,rapeoflucrece,1609\ndaring,1,rapeoflucrece,1609\nbrain's,1,rapeoflucrece,1609\ntoken,1,rapeoflucrece,1609\nglobes,1,rapeoflucrece,1609\npurified,1,rapeoflucrece,1609\ndelighting,1,rapeoflucrece,1609\ndemanded,1,rapeoflucrece,1609\npurple,1,rapeoflucrece,1609\nhazard,1,rapeoflucrece,1609\nmayest,1,rapeoflucrece,1609\nLittle,1,rapeoflucrece,1609\nenjoy,1,rapeoflucrece,1609\nTichfield,1,rapeoflucrece,1609\nincluding,1,rapeoflucrece,1609\nguess,1,rapeoflucrece,1609\nbeams,1,rapeoflucrece,1609\ncrops,1,rapeoflucrece,1609\nthought's,1,rapeoflucrece,1609\nprecedent,1,rapeoflucrece,1609\nconsumes,1,rapeoflucrece,1609\nscapes,1,rapeoflucrece,1609\nsuperfluous,1,rapeoflucrece,1609\ncompact,1,rapeoflucrece,1609\nmarch,1,rapeoflucrece,1609\nheight,1,rapeoflucrece,1609\nBetween,1,rapeoflucrece,1609\ninfamies,1,rapeoflucrece,1609\ntriumph'd,1,rapeoflucrece,1609\nfat,1,rapeoflucrece,1609\ndisplay,1,rapeoflucrece,1609\nShows,1,rapeoflucrece,1609\nfrenzy,1,rapeoflucrece,1609\nlean,1,rapeoflucrece,1609\nComes,1,rapeoflucrece,1609\nwarble,1,rapeoflucrece,1609\nleap,1,rapeoflucrece,1609\noccasion,1,rapeoflucrece,1609\nKill,1,rapeoflucrece,1609\ntried,1,rapeoflucrece,1609\ndiscolour'd,1,rapeoflucrece,1609\nfrozen,1,rapeoflucrece,1609\nYour,1,rapeoflucrece,1609\nRIGHT,1,rapeoflucrece,1609\ntries,1,rapeoflucrece,1609\nrigol,1,rapeoflucrece,1609\nhoards,1,rapeoflucrece,1609\nincomparable,1,rapeoflucrece,1609\npencill'd,1,rapeoflucrece,1609\nBeauty,1,rapeoflucrece,1609\nequal,1,rapeoflucrece,1609\ndestiny,1,rapeoflucrece,1609\nsecurely,1,rapeoflucrece,1609\nstell'd,1,rapeoflucrece,1609\nBecome,1,rapeoflucrece,1609\npeers,1,rapeoflucrece,1609\nrigor,1,rapeoflucrece,1609\nswallowing,1,rapeoflucrece,1609\nunloose,1,rapeoflucrece,1609\nsuffrages,1,rapeoflucrece,1609\ndaisy,1,rapeoflucrece,1609\n'Thus,1,rapeoflucrece,1609\nastonish'd,1,rapeoflucrece,1609\nerrors,1,rapeoflucrece,1609\nhind,1,rapeoflucrece,1609\nNeglected,1,rapeoflucrece,1609\ncarrier,1,rapeoflucrece,1609\nshrunk,1,rapeoflucrece,1609\nscorch,1,rapeoflucrece,1609\nrosy,1,rapeoflucrece,1609\ngriefs,1,rapeoflucrece,1609\nguile',1,rapeoflucrece,1609\nforehead,1,rapeoflucrece,1609\n'arise,1,rapeoflucrece,1609\nblackest,1,rapeoflucrece,1609\nimparteth,1,rapeoflucrece,1609\nalabaster,1,rapeoflucrece,1609\nundeserved,1,rapeoflucrece,1609\nidiots,1,rapeoflucrece,1609\nmischief,1,rapeoflucrece,1609\nlifeless,1,rapeoflucrece,1609\nindeed,1,rapeoflucrece,1609\nfreezing,1,rapeoflucrece,1609\nexpress'd,1,rapeoflucrece,1609\nmountains,1,rapeoflucrece,1609\nretires,1,rapeoflucrece,1609\nhild,1,rapeoflucrece,1609\npollution,1,rapeoflucrece,1609\nassays,1,rapeoflucrece,1609\npremeditate,1,rapeoflucrece,1609\no'erflows,1,rapeoflucrece,1609\nnose,1,rapeoflucrece,1609\nAssail'd,1,rapeoflucrece,1609\nHENRY,1,rapeoflucrece,1609\nPaying,1,rapeoflucrece,1609\nreflects,1,rapeoflucrece,1609\nBack,1,rapeoflucrece,1609\nbeast,1,rapeoflucrece,1609\nsparing,1,rapeoflucrece,1609\nunacted,1,rapeoflucrece,1609\nwakes,1,rapeoflucrece,1609\nproceed,1,rapeoflucrece,1609\nworkman,1,rapeoflucrece,1609\nstrucken,1,rapeoflucrece,1609\ngavest,1,rapeoflucrece,1609\nsaucily,1,rapeoflucrece,1609\ndoleful,1,rapeoflucrece,1609\nscroll,1,rapeoflucrece,1609\n'Courageous,1,rapeoflucrece,1609\ncedar,1,rapeoflucrece,1609\nroll'd,1,rapeoflucrece,1609\nbeats,1,rapeoflucrece,1609\nprodigal,1,rapeoflucrece,1609\nconquer'd,1,rapeoflucrece,1609\nlocks,1,rapeoflucrece,1609\nunstained,1,rapeoflucrece,1609\nexclaiming,1,rapeoflucrece,1609\nguides,1,rapeoflucrece,1609\nshaking,1,rapeoflucrece,1609\nspright,1,rapeoflucrece,1609\ncurtains,1,rapeoflucrece,1609\nconceited,1,rapeoflucrece,1609\nbelow,1,rapeoflucrece,1609\nmildness,1,rapeoflucrece,1609\ntickling,1,rapeoflucrece,1609\ntemperance,1,rapeoflucrece,1609\ndaily,1,rapeoflucrece,1609\nAchilles',1,rapeoflucrece,1609\nschedule,1,rapeoflucrece,1609\nremedy,1,rapeoflucrece,1609\nbeard,1,rapeoflucrece,1609\nclothe,1,rapeoflucrece,1609\ntigers,1,rapeoflucrece,1609\nspread,1,rapeoflucrece,1609\nfaint,1,rapeoflucrece,1609\nwildness,1,rapeoflucrece,1609\n'She's,1,rapeoflucrece,1609\ncompanions,1,rapeoflucrece,1609\ntraitors,1,rapeoflucrece,1609\ntenor,1,rapeoflucrece,1609\nexcuse's,1,rapeoflucrece,1609\ncastaway,1,rapeoflucrece,1609\nchaos,1,rapeoflucrece,1609\n'At,1,rapeoflucrece,1609\n'As,1,rapeoflucrece,1609\nSeasoning,1,rapeoflucrece,1609\ndescended,1,rapeoflucrece,1609\nbottom,1,rapeoflucrece,1609\nWeak,1,rapeoflucrece,1609\nhies,1,rapeoflucrece,1609\nchaps,1,rapeoflucrece,1609\nBase,1,rapeoflucrece,1609\nsmoothing,1,rapeoflucrece,1609\ndebaters,1,rapeoflucrece,1609\nSoft,1,rapeoflucrece,1609\neaseth,1,rapeoflucrece,1609\nstares,1,rapeoflucrece,1609\nstrike,1,rapeoflucrece,1609\nposterity,1,rapeoflucrece,1609\nfurnace,1,rapeoflucrece,1609\nFearing,1,rapeoflucrece,1609\nBare,1,rapeoflucrece,1609\ncitizen,1,rapeoflucrece,1609\nperused,1,rapeoflucrece,1609\nmount,1,rapeoflucrece,1609\nPromise,1,rapeoflucrece,1609\nsticks,1,rapeoflucrece,1609\ntowering,1,rapeoflucrece,1609\nstays,1,rapeoflucrece,1609\nmate,1,rapeoflucrece,1609\nbequeath'd,1,rapeoflucrece,1609\narise,1,rapeoflucrece,1609\nthrall,1,rapeoflucrece,1609\npaces,1,rapeoflucrece,1609\nAdd,1,rapeoflucrece,1609\nsprings,1,rapeoflucrece,1609\nunhappy,1,rapeoflucrece,1609\noverseen,1,rapeoflucrece,1609\nTherefore,1,rapeoflucrece,1609\ngouts,1,rapeoflucrece,1609\nplaces,1,rapeoflucrece,1609\nensnare,1,rapeoflucrece,1609\nrejoicing,1,rapeoflucrece,1609\n'Time's,1,rapeoflucrece,1609\nuproar,1,rapeoflucrece,1609\nmouse,1,rapeoflucrece,1609\nsplendor,1,rapeoflucrece,1609\nHealth,1,rapeoflucrece,1609\nThyself,1,rapeoflucrece,1609\nutters,1,rapeoflucrece,1609\nmaze,1,rapeoflucrece,1609\n'Show,1,rapeoflucrece,1609\nTurns,1,rapeoflucrece,1609\ninjustice,1,rapeoflucrece,1609\ngripe's,1,rapeoflucrece,1609\ntutor,1,rapeoflucrece,1609\ncompassionate,1,rapeoflucrece,1609\ncontraries,1,rapeoflucrece,1609\nmourn,1,rapeoflucrece,1609\nDistress,1,rapeoflucrece,1609\nImmodestly,1,rapeoflucrece,1609\nwistly,1,rapeoflucrece,1609\ngorged,1,rapeoflucrece,1609\neffect,1,rapeoflucrece,1609\nspurn,1,rapeoflucrece,1609\nembracing,1,rapeoflucrece,1609\ndevice,1,rapeoflucrece,1609\ndissolution,1,rapeoflucrece,1609\nset'st,1,rapeoflucrece,1609\nadmits,1,rapeoflucrece,1609\nvery,1,rapeoflucrece,1609\ndoors,1,rapeoflucrece,1609\nexpired,1,rapeoflucrece,1609\nlikewise,1,rapeoflucrece,1609\nmindful,1,rapeoflucrece,1609\nwork'st,1,rapeoflucrece,1609\nringing,1,rapeoflucrece,1609\nboasted,1,rapeoflucrece,1609\naugmenting,1,rapeoflucrece,1609\narrived,1,rapeoflucrece,1609\ncharitable,1,rapeoflucrece,1609\nplaining,1,rapeoflucrece,1609\nteeth,1,rapeoflucrece,1609\nstart,1,rapeoflucrece,1609\nprize,1,rapeoflucrece,1609\nconclusion,1,rapeoflucrece,1609\nshield,1,rapeoflucrece,1609\ndirge,1,rapeoflucrece,1609\nventuring,1,rapeoflucrece,1609\nfilth,1,rapeoflucrece,1609\nbeautify,1,rapeoflucrece,1609\nspill'd,1,rapeoflucrece,1609\ntempest,1,rapeoflucrece,1609\nThin,1,rapeoflucrece,1609\nbosoms,1,rapeoflucrece,1609\nFeeble,1,rapeoflucrece,1609\nfoolish,1,rapeoflucrece,1609\nblinded,1,rapeoflucrece,1609\nsmother,1,rapeoflucrece,1609\nLonging,1,rapeoflucrece,1609\nreadily,1,rapeoflucrece,1609\nbeauties,1,rapeoflucrece,1609\nvent,1,rapeoflucrece,1609\nrests,1,rapeoflucrece,1609\nalready,1,rapeoflucrece,1609\nwrought,1,rapeoflucrece,1609\ndidst,1,rapeoflucrece,1609\ndowry,1,rapeoflucrece,1609\ntreacherously,1,rapeoflucrece,1609\nshame's,1,rapeoflucrece,1609\nhandmaids,1,rapeoflucrece,1609\nUrging,1,rapeoflucrece,1609\nbelong,1,rapeoflucrece,1609\n'gainst,1,rapeoflucrece,1609\nstabbed,1,rapeoflucrece,1609\nCould,1,rapeoflucrece,1609\nmask,1,rapeoflucrece,1609\nskin,1,rapeoflucrece,1609\nshrubs,1,rapeoflucrece,1609\ndistain,1,rapeoflucrece,1609\nuncouth,1,rapeoflucrece,1609\nthere's,1,rapeoflucrece,1609\nBearing,1,rapeoflucrece,1609\nkissing,1,rapeoflucrece,1609\nmisgoverning,1,rapeoflucrece,1609\nson's,1,rapeoflucrece,1609\ncrimson,1,rapeoflucrece,1609\nknown,1,rapeoflucrece,1609\nfolly's,1,rapeoflucrece,1609\ndevils,1,rapeoflucrece,1609\nconduits,1,rapeoflucrece,1609\nmisled,1,rapeoflucrece,1609\nvein,1,rapeoflucrece,1609\nmire,1,rapeoflucrece,1609\nforsook,1,rapeoflucrece,1609\nbecause,1,rapeoflucrece,1609\nwot,1,rapeoflucrece,1609\ncontrols,1,rapeoflucrece,1609\nquote,1,rapeoflucrece,1609\nAmazedly,1,rapeoflucrece,1609\nleaden,1,rapeoflucrece,1609\nwon,1,rapeoflucrece,1609\nrevengeful,1,rapeoflucrece,1609\nminutes,1,rapeoflucrece,1609\n'Go,1,rapeoflucrece,1609\ncraves,1,rapeoflucrece,1609\nentombed,1,rapeoflucrece,1609\nbushes,1,rapeoflucrece,1609\nabridgement,1,rapeoflucrece,1609\ninfect,1,rapeoflucrece,1609\noak's,1,rapeoflucrece,1609\nface's,1,rapeoflucrece,1609\nneed,1,rapeoflucrece,1609\nmountain,1,rapeoflucrece,1609\narch,1,rapeoflucrece,1609\nfret,1,rapeoflucrece,1609\nharden'd,1,rapeoflucrece,1609\nseal'd,1,rapeoflucrece,1609\n'Disturb,1,rapeoflucrece,1609\nthreatening,1,rapeoflucrece,1609\n'All,1,rapeoflucrece,1609\nfather's,1,rapeoflucrece,1609\nover,1,rapeoflucrece,1609\nsearch,1,rapeoflucrece,1609\nboll'n,1,rapeoflucrece,1609\ncrimeful,1,rapeoflucrece,1609\nsnare,1,rapeoflucrece,1609\ndischarge,1,rapeoflucrece,1609\ndespitefully,1,rapeoflucrece,1609\nwhispering,1,rapeoflucrece,1609\nworthless,1,rapeoflucrece,1609\nMade,1,rapeoflucrece,1609\n'She,1,rapeoflucrece,1609\ncasket,1,rapeoflucrece,1609\none's,1,rapeoflucrece,1609\ndisguised,1,rapeoflucrece,1609\nwet,1,rapeoflucrece,1609\nReckoning,1,rapeoflucrece,1609\nthorough,1,rapeoflucrece,1609\nmaintain'd,1,rapeoflucrece,1609\nploughman,1,rapeoflucrece,1609\nwrath,1,rapeoflucrece,1609\ndesired,1,rapeoflucrece,1609\nWere,1,rapeoflucrece,1609\nbear'st,1,rapeoflucrece,1609\nLending,1,rapeoflucrece,1609\nceaseless,1,rapeoflucrece,1609\njeering,1,rapeoflucrece,1609\nforego,1,rapeoflucrece,1609\nBegrimed,1,rapeoflucrece,1609\nbreed,1,rapeoflucrece,1609\nheadlong,1,rapeoflucrece,1609\ngranteth,1,rapeoflucrece,1609\nRespect,1,rapeoflucrece,1609\nItaly,1,rapeoflucrece,1609\nalmighty,1,rapeoflucrece,1609\nComing,1,rapeoflucrece,1609\nsuspicion,1,rapeoflucrece,1609\naffairs,1,rapeoflucrece,1609\ndignified,1,rapeoflucrece,1609\npassage,1,rapeoflucrece,1609\nmaids,1,rapeoflucrece,1609\npensiveness,1,rapeoflucrece,1609\nopinion,1,rapeoflucrece,1609\nreposed,1,rapeoflucrece,1609\nacclamation,1,rapeoflucrece,1609\nclaims,1,rapeoflucrece,1609\ndespairing,1,rapeoflucrece,1609\nwrongs,1,rapeoflucrece,1609\nARGUMENT,1,rapeoflucrece,1609\nprescience,1,rapeoflucrece,1609\nmurders,1,rapeoflucrece,1609\nknife's,1,rapeoflucrece,1609\nexample,1,rapeoflucrece,1609\nodd,1,rapeoflucrece,1609\n'No,1,rapeoflucrece,1609\nstale,1,rapeoflucrece,1609\nInstead,1,rapeoflucrece,1609\nunhappily,1,rapeoflucrece,1609\nblushes,1,rapeoflucrece,1609\npurchase,1,rapeoflucrece,1609\nsmoky,1,rapeoflucrece,1609\nbanishment,1,rapeoflucrece,1609\nbreathings,1,rapeoflucrece,1609\nfits,1,rapeoflucrece,1609\nstamp,1,rapeoflucrece,1609\nenters,1,rapeoflucrece,1609\nwhirlwinds,1,rapeoflucrece,1609\nwin,1,rapeoflucrece,1609\nUnapt,1,rapeoflucrece,1609\noff,1,rapeoflucrece,1609\nproposed,1,rapeoflucrece,1609\narrival,1,rapeoflucrece,1609\n'Lo,1,rapeoflucrece,1609\nDread,1,rapeoflucrece,1609\nfalls',1,rapeoflucrece,1609\ncurb,1,rapeoflucrece,1609\nreceipt,1,rapeoflucrece,1609\ncloister'd,1,rapeoflucrece,1609\nmartial,1,rapeoflucrece,1609\nhears,1,rapeoflucrece,1609\nnotary,1,rapeoflucrece,1609\nwelfare,1,rapeoflucrece,1609\nfortress'd,1,rapeoflucrece,1609\ndetest,1,rapeoflucrece,1609\nprime,1,rapeoflucrece,1609\ndevour'd,1,rapeoflucrece,1609\ntraffic,1,rapeoflucrece,1609\nthrives,1,rapeoflucrece,1609\nWell,1,rapeoflucrece,1609\ngan,1,rapeoflucrece,1609\nobeys,1,rapeoflucrece,1609\nhumanity,1,rapeoflucrece,1609\ncreation,1,rapeoflucrece,1609\nThrong,1,rapeoflucrece,1609\nRushing,1,rapeoflucrece,1609\nbloodless,1,rapeoflucrece,1609\nfawneth,1,rapeoflucrece,1609\nmeaner,1,rapeoflucrece,1609\ncloset,1,rapeoflucrece,1609\npioner,1,rapeoflucrece,1609\nposted,1,rapeoflucrece,1609\ninterprets,1,rapeoflucrece,1609\ndecays,1,rapeoflucrece,1609\nwalks,1,rapeoflucrece,1609\nclosed,1,rapeoflucrece,1609\nDear,1,rapeoflucrece,1609\nDrunken,1,rapeoflucrece,1609\nhearers,1,rapeoflucrece,1609\n'Unruly,1,rapeoflucrece,1609\nAEtna,1,rapeoflucrece,1609\nSpeed,1,rapeoflucrece,1609\nback'd,1,rapeoflucrece,1609\nfalcon,1,rapeoflucrece,1609\nchoked,1,rapeoflucrece,1609\nstanding,1,rapeoflucrece,1609\nnegligence,1,rapeoflucrece,1609\ndistress'd,1,rapeoflucrece,1609\nEnchanted,1,rapeoflucrece,1609\nfulfill'd,1,rapeoflucrece,1609\nunmask,1,rapeoflucrece,1609\nadulterate,1,rapeoflucrece,1609\nrefuge,1,rapeoflucrece,1609\nnursest,1,rapeoflucrece,1609\npatiently,1,rapeoflucrece,1609\ntorture,1,rapeoflucrece,1609\ntrance,1,rapeoflucrece,1609\nthwarting,1,rapeoflucrece,1609\nThine,1,rapeoflucrece,1609\nresolving,1,rapeoflucrece,1609\nglassy,1,rapeoflucrece,1609\nowner's,1,rapeoflucrece,1609\ndeems,1,rapeoflucrece,1609\nlikes,1,rapeoflucrece,1609\nhooks,1,rapeoflucrece,1609\nShed,1,rapeoflucrece,1609\nearnest,1,rapeoflucrece,1609\nwax,1,rapeoflucrece,1609\nsmeared,1,rapeoflucrece,1609\narmy,1,rapeoflucrece,1609\n'Thy,1,rapeoflucrece,1609\ntuned,1,rapeoflucrece,1609\nactors,1,rapeoflucrece,1609\ndrives,1,rapeoflucrece,1609\nfancy's,1,rapeoflucrece,1609\nperforce,1,rapeoflucrece,1609\nursurper,1,rapeoflucrece,1609\ngrowing,1,rapeoflucrece,1609\nForced,1,rapeoflucrece,1609\ngirdle,1,rapeoflucrece,1609\nenraged,1,rapeoflucrece,1609\ngraceless,1,rapeoflucrece,1609\nCorrupted,1,rapeoflucrece,1609\nHiding,1,rapeoflucrece,1609\nkinsmen,1,rapeoflucrece,1609\ndanger,1,rapeoflucrece,1609\nExtremity,1,rapeoflucrece,1609\nforward,1,rapeoflucrece,1609\nresistance,1,rapeoflucrece,1609\nimposition,1,rapeoflucrece,1609\nserve,1,rapeoflucrece,1609\nbereft,1,rapeoflucrece,1609\n'do,1,rapeoflucrece,1609\ndazzleth,1,rapeoflucrece,1609\nLucius,1,rapeoflucrece,1609\nwont,1,rapeoflucrece,1609\nprick,1,rapeoflucrece,1609\nowl,1,rapeoflucrece,1609\nemulation,1,rapeoflucrece,1609\nexclaims,1,rapeoflucrece,1609\nwheel,1,rapeoflucrece,1609\nnext,1,rapeoflucrece,1609\nbells,1,rapeoflucrece,1609\nMuster,1,rapeoflucrece,1609\nthreats,1,rapeoflucrece,1609\nThree,1,rapeoflucrece,1609\neffecting,1,rapeoflucrece,1609\nowls',1,rapeoflucrece,1609\nplausibly,1,rapeoflucrece,1609\nruins,1,rapeoflucrece,1609\nShame,1,rapeoflucrece,1609\n'by,1,rapeoflucrece,1609\nsweets,1,rapeoflucrece,1609\nnews,1,rapeoflucrece,1609\nadored,1,rapeoflucrece,1609\nObdurate,1,rapeoflucrece,1609\nGives,1,rapeoflucrece,1609\nmightily,1,rapeoflucrece,1609\nShalt,1,rapeoflucrece,1609\nfix'd,1,rapeoflucrece,1609\ndrone,1,rapeoflucrece,1609\nGreece,1,rapeoflucrece,1609\ndreams,1,rapeoflucrece,1609\nblotted,1,rapeoflucrece,1609\nseize,1,rapeoflucrece,1609\ndarken,1,rapeoflucrece,1609\noblivion,1,rapeoflucrece,1609\njoints,1,rapeoflucrece,1609\nserved,1,rapeoflucrece,1609\nrages,1,rapeoflucrece,1609\ndissolved,1,rapeoflucrece,1609\nhonoured,1,rapeoflucrece,1609\nmustering,1,rapeoflucrece,1609\nrotted,1,rapeoflucrece,1609\npamphlet,1,rapeoflucrece,1609\ngraff,1,rapeoflucrece,1609\nexclamation,1,rapeoflucrece,1609\npining,1,rapeoflucrece,1609\nwhat's,1,rapeoflucrece,1609\nearthly,1,rapeoflucrece,1609\npoison,1,rapeoflucrece,1609\nSwell,1,rapeoflucrece,1609\nfondly,1,rapeoflucrece,1609\n'Unless,1,rapeoflucrece,1609\nanger,1,rapeoflucrece,1609\nSharp,1,rapeoflucrece,1609\nlabour'd,1,rapeoflucrece,1609\ndevoted,1,rapeoflucrece,1609\nRude,1,rapeoflucrece,1609\ninured,1,rapeoflucrece,1609\nopposite,1,rapeoflucrece,1609\nlechers,1,rapeoflucrece,1609\nCoucheth,1,rapeoflucrece,1609\ninclination,1,rapeoflucrece,1609\ncompass,1,rapeoflucrece,1609\nwondrous,1,rapeoflucrece,1609\nsmiteth,1,rapeoflucrece,1609\npitchy,1,rapeoflucrece,1609\nrain,1,rapeoflucrece,1609\nnest,1,rapeoflucrece,1609\ninvocations,1,rapeoflucrece,1609\nShape,1,rapeoflucrece,1609\nunity,1,rapeoflucrece,1609\nviews,1,rapeoflucrece,1609\nharvest,1,rapeoflucrece,1609\nwaste,1,rapeoflucrece,1609\nsuspecteth,1,rapeoflucrece,1609\nstoutly,1,rapeoflucrece,1609\nauthors,1,rapeoflucrece,1609\nwhence,1,rapeoflucrece,1609\ncover,1,rapeoflucrece,1609\nfill'd,1,rapeoflucrece,1609\ncovet,1,rapeoflucrece,1609\nappaid,1,rapeoflucrece,1609\ngrass,1,rapeoflucrece,1609\nhideous,1,rapeoflucrece,1609\ndisplacest,1,rapeoflucrece,1609\nhunger,1,rapeoflucrece,1609\nviolate,1,rapeoflucrece,1609\nweakling,1,rapeoflucrece,1609\nvomit,1,rapeoflucrece,1609\ncried,1,rapeoflucrece,1609\ndurst,1,rapeoflucrece,1609\n'if,1,rapeoflucrece,1609\ncloth,1,rapeoflucrece,1609\nmessengers,1,rapeoflucrece,1609\nweapons,1,rapeoflucrece,1609\nWRIOTHESLY,1,rapeoflucrece,1609\ngiving,1,rapeoflucrece,1609\nPhrygian,1,rapeoflucrece,1609\nAfflict,1,rapeoflucrece,1609\ncomplain'd,1,rapeoflucrece,1609\ndesert,1,rapeoflucrece,1609\ncrystal,1,rapeoflucrece,1609\nGrossly,1,rapeoflucrece,1609\nvictor,1,rapeoflucrece,1609\namends,1,rapeoflucrece,1609\nunpeopled,1,rapeoflucrece,1609\nsin's,1,rapeoflucrece,1609\nwilful,1,rapeoflucrece,1609\n'alack,1,rapeoflucrece,1609\nwander,1,rapeoflucrece,1609\ngrant,1,rapeoflucrece,1609\nblow'st,1,rapeoflucrece,1609\nsurcease,1,rapeoflucrece,1609\nanswers,1,rapeoflucrece,1609\nswells,1,rapeoflucrece,1609\nsurnamed,1,rapeoflucrece,1609\nkinsman,1,rapeoflucrece,1609\nmisfortune,1,rapeoflucrece,1609\nwoeful,1,rapeoflucrece,1609\nCozening,1,rapeoflucrece,1609\npleased,1,rapeoflucrece,1609\nspilling,1,rapeoflucrece,1609\nCapitol,1,rapeoflucrece,1609\nWhereupon,1,rapeoflucrece,1609\nthrew,1,rapeoflucrece,1609\nfighting,1,rapeoflucrece,1609\nWagg'd,1,rapeoflucrece,1609\nskilful,1,rapeoflucrece,1609\nclay,1,rapeoflucrece,1609\ndancing,1,rapeoflucrece,1609\nallow,1,rapeoflucrece,1609\nSweet,1,rapeoflucrece,1609\nflame,1,rapeoflucrece,1609\nfit,1,rapeoflucrece,1609\ngalls,1,rapeoflucrece,1609\nfix,1,rapeoflucrece,1609\ngrape,1,rapeoflucrece,1609\nwets,1,rapeoflucrece,1609\nsolicited,1,rapeoflucrece,1609\nperfect,1,rapeoflucrece,1609\nfine,1,rapeoflucrece,1609\nlordly,1,rapeoflucrece,1609\nprofit,1,rapeoflucrece,1609\nswallow'd,1,rapeoflucrece,1609\nstains,1,rapeoflucrece,1609\nstream'd,1,rapeoflucrece,1609\nclad,1,rapeoflucrece,1609\nadmiration,1,rapeoflucrece,1609\nprogenitors,1,rapeoflucrece,1609\nlean'd,1,rapeoflucrece,1609\npurloin'd,1,rapeoflucrece,1609\nchannel,1,rapeoflucrece,1609\ndecay'd,1,rapeoflucrece,1609\n'Daughter,1,rapeoflucrece,1609\nDardan,1,rapeoflucrece,1609\nduties,1,rapeoflucrece,1609\nniggard,1,rapeoflucrece,1609\nsundry,1,rapeoflucrece,1609\nmansion,1,rapeoflucrece,1609\nSouthampton,1,rapeoflucrece,1609\nta'en,1,rapeoflucrece,1609\nReceives,1,rapeoflucrece,1609\nreek'd,1,rapeoflucrece,1609\nwide,1,rapeoflucrece,1609\ndispatcheth,1,rapeoflucrece,1609\nlines,1,rapeoflucrece,1609\nlinen,1,rapeoflucrece,1609\npatient,1,rapeoflucrece,1609\nwonted,1,rapeoflucrece,1609\nwaves,1,rapeoflucrece,1609\nbars,1,rapeoflucrece,1609\nKnit,1,rapeoflucrece,1609\nmeaning,1,rapeoflucrece,1609\nregister,1,rapeoflucrece,1609\nincur,1,rapeoflucrece,1609\nwaved,1,rapeoflucrece,1609\ncomfort,1,rapeoflucrece,1609\ngrisly,1,rapeoflucrece,1609\nAnswer'd,1,rapeoflucrece,1609\nmarcheth,1,rapeoflucrece,1609\nfate,1,rapeoflucrece,1609\nobservance,1,rapeoflucrece,1609\nband,1,rapeoflucrece,1609\n'Well,1,rapeoflucrece,1609\ninvasion,1,rapeoflucrece,1609\nplaits,1,rapeoflucrece,1609\nflames,1,rapeoflucrece,1609\nbalm,1,rapeoflucrece,1609\nbedrid,1,rapeoflucrece,1609\nannexed,1,rapeoflucrece,1609\n'chaste',1,rapeoflucrece,1609\nwill's,1,rapeoflucrece,1609\nwings',1,rapeoflucrece,1609\ntame,1,rapeoflucrece,1609\nsubjection,1,rapeoflucrece,1609\ninsulting,1,rapeoflucrece,1609\ndetermining,1,rapeoflucrece,1609\nevidence,1,rapeoflucrece,1609\ndismay'd,1,rapeoflucrece,1609\ndrinks,1,rapeoflucrece,1609\nfeeble,1,rapeoflucrece,1609\nmischance,1,rapeoflucrece,1609\nauthor,1,rapeoflucrece,1609\nache,1,rapeoflucrece,1609\ncoat,1,rapeoflucrece,1609\nconstant,1,rapeoflucrece,1609\ngriping,1,rapeoflucrece,1609\ninflamed,1,rapeoflucrece,1609\nwelcomed,1,rapeoflucrece,1609\narm'd,1,rapeoflucrece,1609\nmediators,1,rapeoflucrece,1609\nfruitful,1,rapeoflucrece,1609\naloft,1,rapeoflucrece,1609\ndrumming,1,rapeoflucrece,1609\nEarl,1,rapeoflucrece,1609\nconvey,1,rapeoflucrece,1609\ncomprehends,1,rapeoflucrece,1609\nperish,1,rapeoflucrece,1609\nfolds,1,rapeoflucrece,1609\nWorse,1,rapeoflucrece,1609\nMingling,1,rapeoflucrece,1609\nGriped,1,rapeoflucrece,1609\ncarry,1,rapeoflucrece,1609\ntorment,1,rapeoflucrece,1609\nmothers,1,rapeoflucrece,1609\nreproof,1,rapeoflucrece,1609\nRather,1,rapeoflucrece,1609\nalms,1,rapeoflucrece,1609\ngreets,1,rapeoflucrece,1609\naccomplishment,1,rapeoflucrece,1609\n'Woe,1,rapeoflucrece,1609\nthaw'd,1,rapeoflucrece,1609\neyeballs,1,rapeoflucrece,1609\nholds,1,rapeoflucrece,1609\nforesight,1,rapeoflucrece,1609\nconcludes,1,rapeoflucrece,1609\nswears,1,rapeoflucrece,1609\naspects,1,rapeoflucrece,1609\ncompacted,1,rapeoflucrece,1609\ndexterity,1,rapeoflucrece,1609\nmelody,1,rapeoflucrece,1609\nhole,1,rapeoflucrece,1609\nTruth,1,rapeoflucrece,1609\ngreen,1,rapeoflucrece,1609\noutcry,1,rapeoflucrece,1609\nhollow,1,rapeoflucrece,1609\nlackey,1,rapeoflucrece,1609\ngiddy,1,rapeoflucrece,1609\npartially,1,rapeoflucrece,1609\ndevour,1,rapeoflucrece,1609\nfollows,1,rapeoflucrece,1609\ngaping,1,rapeoflucrece,1609\ncounterfeit,1,rapeoflucrece,1609\ndimpled,1,rapeoflucrece,1609\nsmear,1,rapeoflucrece,1609\nschools,1,rapeoflucrece,1609\npeerless,1,rapeoflucrece,1609\nfamily,1,rapeoflucrece,1609\ncowards,1,rapeoflucrece,1609\nsunder,1,rapeoflucrece,1609\nargument,1,rapeoflucrece,1609\nuntuned,1,rapeoflucrece,1609\nassist,1,rapeoflucrece,1609\ntire,1,rapeoflucrece,1609\narrive,1,rapeoflucrece,1609\nseeded,1,rapeoflucrece,1609\nliver,1,rapeoflucrece,1609\nstreets,1,rapeoflucrece,1609\nbesiege,1,rapeoflucrece,1609\nstate',1,rapeoflucrece,1609\nwaning,1,rapeoflucrece,1609\nvirtues,1,rapeoflucrece,1609\nsparrows',1,rapeoflucrece,1609\nsmilingly,1,rapeoflucrece,1609\nseal,1,rapeoflucrece,1609\nfalsehood,1,rapeoflucrece,1609\n'Fair,1,rapeoflucrece,1609\nLends,1,rapeoflucrece,1609\naspire,1,rapeoflucrece,1609\nAnon,1,rapeoflucrece,1609\nmaster'd,1,rapeoflucrece,1609\nsatisfied,1,rapeoflucrece,1609\nthronging,1,rapeoflucrece,1609\nbeset,1,rapeoflucrece,1609\nhunt,1,rapeoflucrece,1609\nglittering,1,rapeoflucrece,1609\ndisdained,1,rapeoflucrece,1609\nvexation,1,rapeoflucrece,1609\nrecall'd,1,rapeoflucrece,1609\ncontents,1,rapeoflucrece,1609\ndishonoured,1,rapeoflucrece,1609\nwasting,1,rapeoflucrece,1609\nNarcissus,1,rapeoflucrece,1609\nSHAKESPEARE,1,rapeoflucrece,1609\nchastity's,1,rapeoflucrece,1609\nsours,1,rapeoflucrece,1609\nlighteth,1,rapeoflucrece,1609\nwinged,1,rapeoflucrece,1609\ndrenched,1,rapeoflucrece,1609\nfavour'd,1,rapeoflucrece,1609\nBeaten,1,rapeoflucrece,1609\nblade,1,rapeoflucrece,1609\nlot,1,rapeoflucrece,1609\nfault's,1,rapeoflucrece,1609\nadorn,1,rapeoflucrece,1609\nremission,1,rapeoflucrece,1609\nbabe,1,rapeoflucrece,1609\nsinking,1,rapeoflucrece,1609\nkingdom,1,rapeoflucrece,1609\nWildly,1,rapeoflucrece,1609\ndecree,1,rapeoflucrece,1609\npublish,1,rapeoflucrece,1609\ncrept,1,rapeoflucrece,1609\noffspring,1,rapeoflucrece,1609\n'Out,1,rapeoflucrece,1609\noppress'd,1,rapeoflucrece,1609\npronounced,1,rapeoflucrece,1609\nNestor,1,rapeoflucrece,1609\naught,1,rapeoflucrece,1609\nfeathers,1,rapeoflucrece,1609\nsingular,1,rapeoflucrece,1609\nrock'd,1,rapeoflucrece,1609\nfights,1,rapeoflucrece,1609\nskill'd,1,rapeoflucrece,1609\nadore,1,rapeoflucrece,1609\noverslipp'd,1,rapeoflucrece,1609\nharmful,1,rapeoflucrece,1609\ndividing,1,rapeoflucrece,1609\nmeantime,1,rapeoflucrece,1609\ncoy,1,rapeoflucrece,1609\nconclude,1,rapeoflucrece,1609\npricks,1,rapeoflucrece,1609\ntells,1,rapeoflucrece,1609\nUnwholesome,1,rapeoflucrece,1609\nvehement,1,rapeoflucrece,1609\ncost,1,rapeoflucrece,1609\nshapes,1,rapeoflucrece,1609\nrender,1,rapeoflucrece,1609\ntidings,1,rapeoflucrece,1609\nshapen,1,rapeoflucrece,1609\nPatience,1,rapeoflucrece,1609\nbattle,1,rapeoflucrece,1609\nthereof,1,rapeoflucrece,1609\nhound,1,rapeoflucrece,1609\ndebated,1,rapeoflucrece,1609\nDebate,1,rapeoflucrece,1609\nforgeries,1,rapeoflucrece,1609\npattern'd,1,rapeoflucrece,1609\nWilder,1,rapeoflucrece,1609\nmix'd,1,rapeoflucrece,1609\ncrest,1,rapeoflucrece,1609\naspiring,1,rapeoflucrece,1609\nthereon,1,rapeoflucrece,1609\nSpeaking,1,rapeoflucrece,1609\ncorn,1,rapeoflucrece,1609\nreplied,1,rapeoflucrece,1609\nmarking,1,rapeoflucrece,1609\ncabinet,1,rapeoflucrece,1609\nespoused,1,rapeoflucrece,1609\nsecrecy,1,rapeoflucrece,1609\naudaciously,1,rapeoflucrece,1609\nsacred,1,rapeoflucrece,1609\nthreshold,1,rapeoflucrece,1609\nexpecting,1,rapeoflucrece,1609\nconfirm'd,1,rapeoflucrece,1609\nsportive,1,rapeoflucrece,1609\nperson,1,rapeoflucrece,1609\nheavenly,1,rapeoflucrece,1609\nblazed,1,rapeoflucrece,1609\nexcessive,1,rapeoflucrece,1609\npurl'd,1,rapeoflucrece,1609\nincome,1,rapeoflucrece,1609\nnights,1,rapeoflucrece,1609\nKnow,1,rapeoflucrece,1609\namending,1,rapeoflucrece,1609\nwretches,1,rapeoflucrece,1609\ngreedy,1,rapeoflucrece,1609\nrevelling,1,rapeoflucrece,1609\ncurtain,1,rapeoflucrece,1609\nheedfully,1,rapeoflucrece,1609\nreplies,1,rapeoflucrece,1609\nsuffice,1,rapeoflucrece,1609\nprayer,1,rapeoflucrece,1609\nremove,1,rapeoflucrece,1609\nChastity,1,rapeoflucrece,1609\ntrances,1,rapeoflucrece,1609\naccording,1,rapeoflucrece,1609\nchastest,1,rapeoflucrece,1609\nmirror,1,rapeoflucrece,1609\nremorseless,1,rapeoflucrece,1609\nsell,1,rapeoflucrece,1609\npenetrable,1,rapeoflucrece,1609\nvulture,1,rapeoflucrece,1609\nbalk,1,rapeoflucrece,1609\nsee'st,1,rapeoflucrece,1609\npredecease,1,rapeoflucrece,1609\nleg,1,rapeoflucrece,1609\n'Were,1,rapeoflucrece,1609\nled,1,rapeoflucrece,1609\nrainbows,1,rapeoflucrece,1609\nroaring,1,rapeoflucrece,1609\nfolded,1,rapeoflucrece,1609\nentomb,1,rapeoflucrece,1609\nalas,1,rapeoflucrece,1609\nadds,1,rapeoflucrece,1609\ngrieves,1,rapeoflucrece,1609\nsent,1,rapeoflucrece,1609\ntalk'd,1,rapeoflucrece,1609\nconverts,1,rapeoflucrece,1609\ndeceive,1,rapeoflucrece,1609\nFeast,1,rapeoflucrece,1609\nherald,1,rapeoflucrece,1609\nseized,1,rapeoflucrece,1609\nbarren,1,rapeoflucrece,1609\nfearing,1,rapeoflucrece,1609\ncavils,1,rapeoflucrece,1609\nsuppliant's,1,rapeoflucrece,1609\nallotted,1,rapeoflucrece,1609\nblast,1,rapeoflucrece,1609\n'your,1,rapeoflucrece,1609\nconvert,1,rapeoflucrece,1609\ninflict,1,rapeoflucrece,1609\nattendeth,1,rapeoflucrece,1609\nblack'st,1,rapeoflucrece,1609\nchampaign,1,rapeoflucrece,1609\ncouple,1,rapeoflucrece,1609\nOutruns,1,rapeoflucrece,1609\ncrooked,1,rapeoflucrece,1609\nglows,1,rapeoflucrece,1609\npipes,1,rapeoflucrece,1609\nfirst,1,rapeoflucrece,1609\nnature's,1,rapeoflucrece,1609\nstormy,1,rapeoflucrece,1609\nprincipal,1,rapeoflucrece,1609\nImmaculate,1,rapeoflucrece,1609\ncredulous,1,rapeoflucrece,1609\nlordship's,1,rapeoflucrece,1609\nendured,1,rapeoflucrece,1609\ndescant'st,1,rapeoflucrece,1609\nfaltering,1,rapeoflucrece,1609\nservants,1,rapeoflucrece,1609\nfowls,1,rapeoflucrece,1609\nperpetually,1,rapeoflucrece,1609\nslumber,1,rapeoflucrece,1609\nseated,1,rapeoflucrece,1609\nimagination,1,rapeoflucrece,1609\npetty,1,rapeoflucrece,1609\nwrite,1,rapeoflucrece,1609\ncommits,1,rapeoflucrece,1609\nevening,1,rapeoflucrece,1609\nbarr'd,1,rapeoflucrece,1609\nlagging,1,rapeoflucrece,1609\nreedy,1,rapeoflucrece,1609\nheinous,1,rapeoflucrece,1609\npanteth,1,rapeoflucrece,1609\nrevealed,1,rapeoflucrece,1609\ncomfortable,1,rapeoflucrece,1609\nafeard,1,rapeoflucrece,1609\nconduct,1,rapeoflucrece,1609\nhostess,1,rapeoflucrece,1609\nsells,1,rapeoflucrece,1609\nsmiling,1,rapeoflucrece,1609\ntrustless,1,rapeoflucrece,1609\nazure,1,rapeoflucrece,1609\nvices,1,rapeoflucrece,1609\ngust,1,rapeoflucrece,1609\nunfelt,1,rapeoflucrece,1609\ngush,1,rapeoflucrece,1609\nGrieving,1,rapeoflucrece,1609\n'Her,1,rapeoflucrece,1609\nParis,1,rapeoflucrece,1609\n'Hast,1,rapeoflucrece,1609\nContinuance,1,rapeoflucrece,1609\nWounding,1,rapeoflucrece,1609\nenforcement,1,rapeoflucrece,1609\n'Make,1,rapeoflucrece,1609\nwarlike,1,rapeoflucrece,1609\ndefaced,1,rapeoflucrece,1609\ndealing,1,rapeoflucrece,1609\nisland,1,rapeoflucrece,1609\nswimmer,1,rapeoflucrece,1609\nrenews,1,rapeoflucrece,1609\nlofty,1,rapeoflucrece,1609\nvents,1,rapeoflucrece,1609\ndevours,1,rapeoflucrece,1609\nwickedly,1,rapeoflucrece,1609\nevils,1,rapeoflucrece,1609\nrights,1,rapeoflucrece,1609\nBefore,1,rapeoflucrece,1609\nintending,1,rapeoflucrece,1609\nlectures,1,rapeoflucrece,1609\nscornfully,1,rapeoflucrece,1609\n'Mine,1,rapeoflucrece,1609\nburns,1,rapeoflucrece,1609\nwhiter,1,rapeoflucrece,1609\nmurder's,1,rapeoflucrece,1609\nintituled,1,rapeoflucrece,1609\nshivered,1,rapeoflucrece,1609\npleasant,1,rapeoflucrece,1609\nconjures,1,rapeoflucrece,1609\nassuage,1,rapeoflucrece,1609\nGnats,1,rapeoflucrece,1609\nlimit,1,rapeoflucrece,1609\nladies,1,rapeoflucrece,1609\ndebtor,1,rapeoflucrece,1609\nbody's,1,rapeoflucrece,1609\nrecreant,1,rapeoflucrece,1609\nBasely,1,rapeoflucrece,1609\nravished,1,rapeoflucrece,1609\nMet,1,rapeoflucrece,1609\nGreat,1,rapeoflucrece,1609\ndebating,1,rapeoflucrece,1609\nextolled,1,rapeoflucrece,1609\nJunius,1,rapeoflucrece,1609\nAway,1,rapeoflucrece,1609\n'Had,1,rapeoflucrece,1609\nfashion,1,rapeoflucrece,1609\nuncleanness,1,rapeoflucrece,1609\nhastily,1,rapeoflucrece,1609\nwent',1,rapeoflucrece,1609\nTears,1,rapeoflucrece,1609\nacross,1,rapeoflucrece,1609\nransack'd,1,rapeoflucrece,1609\nremaining,1,rapeoflucrece,1609\n'his,1,rapeoflucrece,1609\nmarigolds,1,rapeoflucrece,1609\nOrpheus,1,rapeoflucrece,1609\nbanner,1,rapeoflucrece,1609\n'Madam,1,rapeoflucrece,1609\nphysic,1,rapeoflucrece,1609\npages,1,rapeoflucrece,1609\nmarriage,1,rapeoflucrece,1609\nwhiles,1,rapeoflucrece,1609\nsometimes,1,rapeoflucrece,1609\nsporting,1,rapeoflucrece,1609\nputrified,1,rapeoflucrece,1609\nlengthened,1,rapeoflucrece,1609\nsepulchred,1,rapeoflucrece,1609\nfraud,1,rapeoflucrece,1609\nnativity,1,rapeoflucrece,1609\nunseasonable,1,rapeoflucrece,1609\nvestal,1,rapeoflucrece,1609\ngulf,1,rapeoflucrece,1609\nservitors,1,rapeoflucrece,1609\nfleeting,1,rapeoflucrece,1609\nMar,1,rapeoflucrece,1609\nspill,1,rapeoflucrece,1609\nunbent,1,rapeoflucrece,1609\nunwisely,1,rapeoflucrece,1609\neastern,1,rapeoflucrece,1609\nlimed,1,rapeoflucrece,1609\nadjunct,1,rapeoflucrece,1609\nRolling,1,rapeoflucrece,1609\nCharging,1,rapeoflucrece,1609\nwithdrew,1,rapeoflucrece,1609\ndishonour'd,1,rapeoflucrece,1609\nbrooks,1,rapeoflucrece,1609\nseemed,1,rapeoflucrece,1609\nmuffled,1,rapeoflucrece,1609\npeer,1,rapeoflucrece,1609\nWithout,1,rapeoflucrece,1609\njade,1,rapeoflucrece,1609\nshelves,1,rapeoflucrece,1609\nlist,1,rapeoflucrece,1609\nhuman,1,rapeoflucrece,1609\nApril,1,rapeoflucrece,1609\nDisdain,1,rapeoflucrece,1609\napologies,1,rapeoflucrece,1609\nragged,1,rapeoflucrece,1609\nstrange,1,rapeoflucrece,1609\nvenge,1,rapeoflucrece,1609\ncell,1,rapeoflucrece,1609\n'he',1,rapeoflucrece,1609\nJustice,1,rapeoflucrece,1609\ncontent,1,rapeoflucrece,1609\nurged,1,rapeoflucrece,1609\nleading,1,rapeoflucrece,1609\nmot,1,rapeoflucrece,1609\nsimple,1,rapeoflucrece,1609\nweasels,1,rapeoflucrece,1609\nentrance,1,rapeoflucrece,1609\nsmarts,1,rapeoflucrece,1609\nTeaching,1,rapeoflucrece,1609\nnumbers,1,rapeoflucrece,1609\nwidow,1,rapeoflucrece,1609\nshady,1,rapeoflucrece,1609\nswounds,1,rapeoflucrece,1609\npainter's,1,rapeoflucrece,1609\npayment,1,rapeoflucrece,1609\nmoisten'd,1,rapeoflucrece,1609\nValerius,1,rapeoflucrece,1609\nstrengthless,1,rapeoflucrece,1609\nlain,1,rapeoflucrece,1609\ndash,1,rapeoflucrece,1609\nneedeth,1,rapeoflucrece,1609\nwounding,1,rapeoflucrece,1609\npattern,1,rapeoflucrece,1609\ndoe,1,rapeoflucrece,1609\ndog,1,rapeoflucrece,1609\nBrand,1,rapeoflucrece,1609\nremain'd,1,rapeoflucrece,1609\noversee,1,rapeoflucrece,1609\nhonour'd,1,rapeoflucrece,1609\npelt,1,rapeoflucrece,1609\nmud,1,rapeoflucrece,1609\nswallow,1,rapeoflucrece,1609\nhonour's,1,rapeoflucrece,1609\nsmother'st,1,rapeoflucrece,1609\nwail'd,1,rapeoflucrece,1609\nDim,1,rapeoflucrece,1609\nLest,1,rapeoflucrece,1609\nscalps,1,rapeoflucrece,1609\ntaught'st,1,rapeoflucrece,1609\npuddle's,1,rapeoflucrece,1609\nembers,1,rapeoflucrece,1609\ndue,1,rapeoflucrece,1609\nensues,1,rapeoflucrece,1609\nweight,1,rapeoflucrece,1609\nsudden,1,rapeoflucrece,1609\nrocky,1,rapeoflucrece,1609\ncatch,1,rapeoflucrece,1609\nland,1,rapeoflucrece,1609\npens,1,rapeoflucrece,1609\nlank,1,rapeoflucrece,1609\nprivily,1,rapeoflucrece,1609\ntoy,1,rapeoflucrece,1609\nhoping,1,rapeoflucrece,1609\nrocks,1,rapeoflucrece,1609\nanother's,1,rapeoflucrece,1609\nhotly,1,rapeoflucrece,1609\nfellowship,1,rapeoflucrece,1609\ntransgressed,1,rapeoflucrece,1609\ncourt'sies,1,rapeoflucrece,1609\n'Such,1,rapeoflucrece,1609\nThreatening,1,rapeoflucrece,1609\nlame,1,rapeoflucrece,1609\nreverend,1,rapeoflucrece,1609\nmonths,1,rapeoflucrece,1609\nUntil,1,rapeoflucrece,1609\nsuccess,1,rapeoflucrece,1609\nleap'd,1,rapeoflucrece,1609\nshift,1,rapeoflucrece,1609\ntie,1,rapeoflucrece,1609\nshake,1,rapeoflucrece,1609\nguests,1,rapeoflucrece,1609\nphysician,1,rapeoflucrece,1609\nTeach,1,rapeoflucrece,1609\ndank,1,rapeoflucrece,1609\n'Awake,1,rapeoflucrece,1609\nMud,1,rapeoflucrece,1609\nLeft,1,rapeoflucrece,1609\nflows,1,rapeoflucrece,1609\nambitious,1,rapeoflucrece,1609\nrecord,1,rapeoflucrece,1609\nfence,1,rapeoflucrece,1609\nfrail,1,rapeoflucrece,1609\nAffection,1,rapeoflucrece,1609\nsmell,1,rapeoflucrece,1609\npirates,1,rapeoflucrece,1609\nhospitality,1,rapeoflucrece,1609\ndale,1,rapeoflucrece,1609\n'Have,1,rapeoflucrece,1609\nconvertite,1,rapeoflucrece,1609\n'That,1,rapeoflucrece,1609\ndrown'd,1,rapeoflucrece,1609\nboundless,1,rapeoflucrece,1609\njealousy,1,rapeoflucrece,1609\nHateful,1,rapeoflucrece,1609\nmourner,1,rapeoflucrece,1609\nUnmask,1,rapeoflucrece,1609\nobtaining,1,rapeoflucrece,1609\nSaying,1,rapeoflucrece,1609\nprincess,1,rapeoflucrece,1609\nFROM,1,rapeoflucrece,1609\nDevours,1,rapeoflucrece,1609\nspirit,1,rapeoflucrece,1609\ntoads,1,rapeoflucrece,1609\ninveigh,1,rapeoflucrece,1609\nten,1,rapeoflucrece,1609\nremorse,1,rapeoflucrece,1609\nspectacle,1,rapeoflucrece,1609\nFalse,1,rapeoflucrece,1609\ncannon,1,rapeoflucrece,1609\nSmoking,1,rapeoflucrece,1609\npineth,1,rapeoflucrece,1609\nwoman,1,rapeoflucrece,1609\nparley,1,rapeoflucrece,1609\nsneaking,1,rapeoflucrece,1609\nincreaseful,1,rapeoflucrece,1609\nbateless,1,rapeoflucrece,1609\nobedience,1,rapeoflucrece,1609\noaths,1,rapeoflucrece,1609\nflattering,1,rapeoflucrece,1609\navaunt,1,rapeoflucrece,1609\n'Tarquin',1,rapeoflucrece,1609\nthrong'd,1,rapeoflucrece,1609\nBetray'd,1,rapeoflucrece,1609\ntread,1,rapeoflucrece,1609\nbewitch'd,1,rapeoflucrece,1609\nunsounded,1,rapeoflucrece,1609\ncoped,1,rapeoflucrece,1609\nsubjects',1,rapeoflucrece,1609\nbreaths,1,rapeoflucrece,1609\nBaron,1,rapeoflucrece,1609\ncoin'd,1,rapeoflucrece,1609\nsobbing,1,rapeoflucrece,1609\nchivalry,1,rapeoflucrece,1609\ncrown,1,rapeoflucrece,1609\nsands,1,rapeoflucrece,1609\ndallied,1,rapeoflucrece,1609\nwouldst,1,rapeoflucrece,1609\nesteemed,1,rapeoflucrece,1609\nturn'd,1,rapeoflucrece,1609\nHuge,1,rapeoflucrece,1609\n'They,1,rapeoflucrece,1609\ncedar's,1,rapeoflucrece,1609\nsteadfast,1,rapeoflucrece,1609\nvanish'd,1,rapeoflucrece,1609\nfortunes,1,rapeoflucrece,1609\nsummer,1,rapeoflucrece,1609\nforgery,1,rapeoflucrece,1609\ndaughters,1,rapeoflucrece,1609\ngrant'st,1,rapeoflucrece,1609\nunnoted,1,rapeoflucrece,1609\nsurmise,2,rapeoflucrece,1609\npleading,2,rapeoflucrece,1609\nmeet,2,rapeoflucrece,1609\nlamentable,2,rapeoflucrece,1609\nSextus,2,rapeoflucrece,1609\ndarest,2,rapeoflucrece,1609\nreputation,2,rapeoflucrece,1609\nLucretia,2,rapeoflucrece,1609\nmotion,2,rapeoflucrece,1609\nyielding,2,rapeoflucrece,1609\nRomans,2,rapeoflucrece,1609\ntremble,2,rapeoflucrece,1609\nwicked,2,rapeoflucrece,1609\npeace,2,rapeoflucrece,1609\nexpress,2,rapeoflucrece,1609\nspeedy,2,rapeoflucrece,1609\nclears,2,rapeoflucrece,1609\npoisonous,2,rapeoflucrece,1609\npray,2,rapeoflucrece,1609\nMust,2,rapeoflucrece,1609\ngroan,2,rapeoflucrece,1609\nimitate,2,rapeoflucrece,1609\nviolent,2,rapeoflucrece,1609\nlanguishment,2,rapeoflucrece,1609\ncoral,2,rapeoflucrece,1609\nBlack,2,rapeoflucrece,1609\nWhereat,2,rapeoflucrece,1609\nprisoner,2,rapeoflucrece,1609\nhonourable,2,rapeoflucrece,1609\nSimois',2,rapeoflucrece,1609\nfury,2,rapeoflucrece,1609\ndeclined,2,rapeoflucrece,1609\nappeal,2,rapeoflucrece,1609\nwithal,2,rapeoflucrece,1609\nsigns,2,rapeoflucrece,1609\nnought,2,rapeoflucrece,1609\ncalls,2,rapeoflucrece,1609\npress,2,rapeoflucrece,1609\nheedful,2,rapeoflucrece,1609\nstamp'd,2,rapeoflucrece,1609\ntrust,2,rapeoflucrece,1609\nWould,2,rapeoflucrece,1609\nwither,2,rapeoflucrece,1609\ncare,2,rapeoflucrece,1609\nmute,2,rapeoflucrece,1609\nNight's,2,rapeoflucrece,1609\nearly,2,rapeoflucrece,1609\nsoftly,2,rapeoflucrece,1609\nbreach,2,rapeoflucrece,1609\nplague,2,rapeoflucrece,1609\nchin,2,rapeoflucrece,1609\nreign,2,rapeoflucrece,1609\ncharge,2,rapeoflucrece,1609\nsons,2,rapeoflucrece,1609\nsurfeit,2,rapeoflucrece,1609\namazed,2,rapeoflucrece,1609\nspied,2,rapeoflucrece,1609\ndraw,2,rapeoflucrece,1609\ncamp,2,rapeoflucrece,1609\nspies,2,rapeoflucrece,1609\npine,2,rapeoflucrece,1609\n'Yet,2,rapeoflucrece,1609\nconfusion,2,rapeoflucrece,1609\ngrove,2,rapeoflucrece,1609\nsap,2,rapeoflucrece,1609\nbetake,2,rapeoflucrece,1609\nsorrows,2,rapeoflucrece,1609\npilgrimage,2,rapeoflucrece,1609\nlily,2,rapeoflucrece,1609\nproceeds,2,rapeoflucrece,1609\nplight,2,rapeoflucrece,1609\nOnly,2,rapeoflucrece,1609\ncheek,2,rapeoflucrece,1609\npolicy,2,rapeoflucrece,1609\ncalm,2,rapeoflucrece,1609\ngross,2,rapeoflucrece,1609\npaper,2,rapeoflucrece,1609\nbreaks,2,rapeoflucrece,1609\nYield,2,rapeoflucrece,1609\nfinding,2,rapeoflucrece,1609\nteach,2,rapeoflucrece,1609\nsoft,2,rapeoflucrece,1609\nnoise,2,rapeoflucrece,1609\nwail,2,rapeoflucrece,1609\nsomething,2,rapeoflucrece,1609\nPerchance,2,rapeoflucrece,1609\npillow,2,rapeoflucrece,1609\nshamed,2,rapeoflucrece,1609\nhereafter,2,rapeoflucrece,1609\nsuns,2,rapeoflucrece,1609\nsheathed,2,rapeoflucrece,1609\nmarch'd,2,rapeoflucrece,1609\nsing'st,2,rapeoflucrece,1609\nstands,2,rapeoflucrece,1609\nwarrant,2,rapeoflucrece,1609\naged,2,rapeoflucrece,1609\neager,2,rapeoflucrece,1609\nsustaining,2,rapeoflucrece,1609\nwall,2,rapeoflucrece,1609\nvirtuous,2,rapeoflucrece,1609\n'When,2,rapeoflucrece,1609\nslaughter,2,rapeoflucrece,1609\ndeceit,2,rapeoflucrece,1609\nsuit,2,rapeoflucrece,1609\nbeasts,2,rapeoflucrece,1609\nembrace,2,rapeoflucrece,1609\nworth,2,rapeoflucrece,1609\nHimself,2,rapeoflucrece,1609\nchildren's,2,rapeoflucrece,1609\nwinds,2,rapeoflucrece,1609\nmelting,2,rapeoflucrece,1609\npollute,2,rapeoflucrece,1609\nstern,2,rapeoflucrece,1609\nlivery,2,rapeoflucrece,1609\nwithin,2,rapeoflucrece,1609\neither's,2,rapeoflucrece,1609\nmother,2,rapeoflucrece,1609\nworst,2,rapeoflucrece,1609\nheavens,2,rapeoflucrece,1609\npiece,2,rapeoflucrece,1609\nturn,2,rapeoflucrece,1609\nThere,2,rapeoflucrece,1609\nchased,2,rapeoflucrece,1609\nworlds,2,rapeoflucrece,1609\nhabit,2,rapeoflucrece,1609\nquake,2,rapeoflucrece,1609\nseeks,2,rapeoflucrece,1609\ncherish,2,rapeoflucrece,1609\nlatch,2,rapeoflucrece,1609\nWherein,2,rapeoflucrece,1609\nhumble,2,rapeoflucrece,1609\nfeel,2,rapeoflucrece,1609\nslavish,2,rapeoflucrece,1609\ncircled,2,rapeoflucrece,1609\nflaming,2,rapeoflucrece,1609\nclaim,2,rapeoflucrece,1609\nbrief,2,rapeoflucrece,1609\nsword,2,rapeoflucrece,1609\nprotestation,2,rapeoflucrece,1609\nothers,2,rapeoflucrece,1609\nwink,2,rapeoflucrece,1609\nprevent,2,rapeoflucrece,1609\nflesh,2,rapeoflucrece,1609\nattired,2,rapeoflucrece,1609\nsack'd,2,rapeoflucrece,1609\nmirth,2,rapeoflucrece,1609\nlength,2,rapeoflucrece,1609\nhence,2,rapeoflucrece,1609\ndearer,2,rapeoflucrece,1609\nwipe,2,rapeoflucrece,1609\nheaved,2,rapeoflucrece,1609\nwise,2,rapeoflucrece,1609\nworld's,2,rapeoflucrece,1609\nbeating,2,rapeoflucrece,1609\nvoice,2,rapeoflucrece,1609\ndistress,2,rapeoflucrece,1609\nsteel,2,rapeoflucrece,1609\nwast,2,rapeoflucrece,1609\ntent,2,rapeoflucrece,1609\nconquer,2,rapeoflucrece,1609\nDo,2,rapeoflucrece,1609\ngrief's,2,rapeoflucrece,1609\nslaves,2,rapeoflucrece,1609\norator,2,rapeoflucrece,1609\nsigh,2,rapeoflucrece,1609\nstreams,2,rapeoflucrece,1609\noratory,2,rapeoflucrece,1609\nperfection,2,rapeoflucrece,1609\nspoil,2,rapeoflucrece,1609\nReproach,2,rapeoflucrece,1609\nwronged,2,rapeoflucrece,1609\nmutiny,2,rapeoflucrece,1609\nscarce,2,rapeoflucrece,1609\nbow,2,rapeoflucrece,1609\nblown,2,rapeoflucrece,1609\nsmile,2,rapeoflucrece,1609\nHaving,2,rapeoflucrece,1609\nspots,2,rapeoflucrece,1609\nimagined,2,rapeoflucrece,1609\nsiege,2,rapeoflucrece,1609\npays,2,rapeoflucrece,1609\nPhilomel,2,rapeoflucrece,1609\neternity,2,rapeoflucrece,1609\nturrets,2,rapeoflucrece,1609\nravishment,2,rapeoflucrece,1609\nstar,2,rapeoflucrece,1609\ncontending,2,rapeoflucrece,1609\nbegun,2,rapeoflucrece,1609\nhie,2,rapeoflucrece,1609\nsince,2,rapeoflucrece,1609\nchanged,2,rapeoflucrece,1609\npiteous,2,rapeoflucrece,1609\nbee,2,rapeoflucrece,1609\nkinds,2,rapeoflucrece,1609\nsovereignty,2,rapeoflucrece,1609\n'With,2,rapeoflucrece,1609\nease,2,rapeoflucrece,1609\ndenial,2,rapeoflucrece,1609\nglorious,2,rapeoflucrece,1609\nheads,2,rapeoflucrece,1609\nsire,2,rapeoflucrece,1609\nquiet,2,rapeoflucrece,1609\ntemple,2,rapeoflucrece,1609\ncorrupted,2,rapeoflucrece,1609\ntheft,2,rapeoflucrece,1609\ngod,2,rapeoflucrece,1609\nbest,2,rapeoflucrece,1609\ngold,2,rapeoflucrece,1609\ndolour,2,rapeoflucrece,1609\nmorning's,2,rapeoflucrece,1609\nrebel,2,rapeoflucrece,1609\ncontrol,2,rapeoflucrece,1609\nchildren,2,rapeoflucrece,1609\nstruck,2,rapeoflucrece,1609\nattention,2,rapeoflucrece,1609\ngaze,2,rapeoflucrece,1609\nshadow,2,rapeoflucrece,1609\ncancell'd,2,rapeoflucrece,1609\nmonuments,2,rapeoflucrece,1609\nsuddenly,2,rapeoflucrece,1609\nput,2,rapeoflucrece,1609\njewel,2,rapeoflucrece,1609\njust,2,rapeoflucrece,1609\n'Shall,2,rapeoflucrece,1609\ntedious,2,rapeoflucrece,1609\nconquest,2,rapeoflucrece,1609\nbud,2,rapeoflucrece,1609\nvassal,2,rapeoflucrece,1609\nbeen,2,rapeoflucrece,1609\nAbout,2,rapeoflucrece,1609\nadmired,2,rapeoflucrece,1609\nensue,2,rapeoflucrece,1609\ngate,2,rapeoflucrece,1609\nsing,2,rapeoflucrece,1609\nmoody,2,rapeoflucrece,1609\nfulfil,2,rapeoflucrece,1609\nmisty,2,rapeoflucrece,1609\nBoth,2,rapeoflucrece,1609\njointly,2,rapeoflucrece,1609\nnoblemen,2,rapeoflucrece,1609\nchildish,2,rapeoflucrece,1609\ngovernment,2,rapeoflucrece,1609\nconcealing,2,rapeoflucrece,1609\nstay'd,2,rapeoflucrece,1609\nmood,2,rapeoflucrece,1609\ngage,2,rapeoflucrece,1609\nbetray,2,rapeoflucrece,1609\nsage,2,rapeoflucrece,1609\npainting,2,rapeoflucrece,1609\nsable,2,rapeoflucrece,1609\ndebt,2,rapeoflucrece,1609\nwreck,2,rapeoflucrece,1609\nstone,2,rapeoflucrece,1609\nany,2,rapeoflucrece,1609\ngait,2,rapeoflucrece,1609\nvictory,2,rapeoflucrece,1609\nengirt,2,rapeoflucrece,1609\npluck'd,2,rapeoflucrece,1609\nhands,2,rapeoflucrece,1609\nlends,2,rapeoflucrece,1609\nmakest,2,rapeoflucrece,1609\nmanner,2,rapeoflucrece,1609\ncrosses,2,rapeoflucrece,1609\npursuit,2,rapeoflucrece,1609\ncommitted,2,rapeoflucrece,1609\nlo,2,rapeoflucrece,1609\nstrain,2,rapeoflucrece,1609\nwrinkles,2,rapeoflucrece,1609\nsometime,2,rapeoflucrece,1609\ncarved,2,rapeoflucrece,1609\noffences,2,rapeoflucrece,1609\nmoon,2,rapeoflucrece,1609\nloss,2,rapeoflucrece,1609\nbeholding,2,rapeoflucrece,1609\nGrief,2,rapeoflucrece,1609\nless,2,rapeoflucrece,1609\nspend,2,rapeoflucrece,1609\nlock'd,2,rapeoflucrece,1609\nforgot,2,rapeoflucrece,1609\nclamours,2,rapeoflucrece,1609\nmen's,2,rapeoflucrece,1609\nload,2,rapeoflucrece,1609\nmurder'st,2,rapeoflucrece,1609\nscratch,2,rapeoflucrece,1609\noutward,2,rapeoflucrece,1609\nus,2,rapeoflucrece,1609\nlewd,2,rapeoflucrece,1609\nwelcome,2,rapeoflucrece,1609\nsenseless,2,rapeoflucrece,1609\nfowl,2,rapeoflucrece,1609\nimpression,2,rapeoflucrece,1609\nMore,2,rapeoflucrece,1609\n'can,2,rapeoflucrece,1609\nweeds,2,rapeoflucrece,1609\nrifled,2,rapeoflucrece,1609\nhang,2,rapeoflucrece,1609\nshun,2,rapeoflucrece,1609\nmighty,2,rapeoflucrece,1609\npraise,2,rapeoflucrece,1609\nspotted,2,rapeoflucrece,1609\nrudely,2,rapeoflucrece,1609\nUlysses,2,rapeoflucrece,1609\nUnder,2,rapeoflucrece,1609\nheartless,2,rapeoflucrece,1609\n'Dear,2,rapeoflucrece,1609\nabhor,2,rapeoflucrece,1609\nfort,2,rapeoflucrece,1609\nnightly,2,rapeoflucrece,1609\nharder,2,rapeoflucrece,1609\nurgeth,2,rapeoflucrece,1609\npair,2,rapeoflucrece,1609\nheaviness,2,rapeoflucrece,1609\nshakes,2,rapeoflucrece,1609\ntwain,2,rapeoflucrece,1609\nfool,2,rapeoflucrece,1609\nprepares,2,rapeoflucrece,1609\nobject,2,rapeoflucrece,1609\ngirl,2,rapeoflucrece,1609\nfresh,2,rapeoflucrece,1609\nmaiden,2,rapeoflucrece,1609\nebbs,2,rapeoflucrece,1609\nfold,2,rapeoflucrece,1609\nhive,2,rapeoflucrece,1609\nchance,2,rapeoflucrece,1609\ncolour'd,2,rapeoflucrece,1609\nfed,2,rapeoflucrece,1609\ntouch,2,rapeoflucrece,1609\nsweetly,2,rapeoflucrece,1609\nenemies,2,rapeoflucrece,1609\nStone,2,rapeoflucrece,1609\ntrial,2,rapeoflucrece,1609\nguest,2,rapeoflucrece,1609\ncipher,2,rapeoflucrece,1609\nprays,2,rapeoflucrece,1609\nchange,2,rapeoflucrece,1609\nmoves,2,rapeoflucrece,1609\nInto,2,rapeoflucrece,1609\nborrow,2,rapeoflucrece,1609\njustice,2,rapeoflucrece,1609\nashy,2,rapeoflucrece,1609\nsmother'd,2,rapeoflucrece,1609\nbreathes,2,rapeoflucrece,1609\nVirtue,2,rapeoflucrece,1609\nbreathed,2,rapeoflucrece,1609\nneedle,2,rapeoflucrece,1609\ncouldst,2,rapeoflucrece,1609\nbuilt,2,rapeoflucrece,1609\nnote,2,rapeoflucrece,1609\nrape,2,rapeoflucrece,1609\nrepose,2,rapeoflucrece,1609\nmidst,2,rapeoflucrece,1609\nenvy,2,rapeoflucrece,1609\nmarks,2,rapeoflucrece,1609\nalmost,2,rapeoflucrece,1609\nwonder,2,rapeoflucrece,1609\npeel'd,2,rapeoflucrece,1609\nrestless,2,rapeoflucrece,1609\nscale,2,rapeoflucrece,1609\nnoon,2,rapeoflucrece,1609\nrate,2,rapeoflucrece,1609\nview'd,2,rapeoflucrece,1609\nvapours,2,rapeoflucrece,1609\nmajesty,2,rapeoflucrece,1609\ndisgraced,2,rapeoflucrece,1609\ntender,2,rapeoflucrece,1609\nestate,2,rapeoflucrece,1609\nscar,2,rapeoflucrece,1609\nCollatinus',2,rapeoflucrece,1609\nLove,2,rapeoflucrece,1609\ndangers,2,rapeoflucrece,1609\nwandering,2,rapeoflucrece,1609\nchase,2,rapeoflucrece,1609\nannoy,2,rapeoflucrece,1609\nyoung,2,rapeoflucrece,1609\nalter,2,rapeoflucrece,1609\nSin,2,rapeoflucrece,1609\ncharm,2,rapeoflucrece,1609\nexiled,2,rapeoflucrece,1609\ndares,2,rapeoflucrece,1609\naccessary,2,rapeoflucrece,1609\nseveral,2,rapeoflucrece,1609\npowers,2,rapeoflucrece,1609\ncloak,2,rapeoflucrece,1609\nprecious,2,rapeoflucrece,1609\ndiscontent,2,rapeoflucrece,1609\nLook,2,rapeoflucrece,1609\n'He,2,rapeoflucrece,1609\nother's,2,rapeoflucrece,1609\n'If,2,rapeoflucrece,1609\nbleeds,2,rapeoflucrece,1609\n'It,2,rapeoflucrece,1609\nplead,2,rapeoflucrece,1609\ntowers,2,rapeoflucrece,1609\nbeggar,2,rapeoflucrece,1609\nmisdeeds,2,rapeoflucrece,1609\nghastly,2,rapeoflucrece,1609\npresently,2,rapeoflucrece,1609\nacquit,2,rapeoflucrece,1609\ncomes,2,rapeoflucrece,1609\nTarquins,2,rapeoflucrece,1609\nthick,2,rapeoflucrece,1609\nissue,2,rapeoflucrece,1609\nTrojan,2,rapeoflucrece,1609\ngreatest,2,rapeoflucrece,1609\npainful,2,rapeoflucrece,1609\nchide,2,rapeoflucrece,1609\nheaven's,2,rapeoflucrece,1609\nmist,2,rapeoflucrece,1609\nhigher,2,rapeoflucrece,1609\ncaptive,2,rapeoflucrece,1609\nfeelingly,2,rapeoflucrece,1609\nthievish,2,rapeoflucrece,1609\naccompanied,2,rapeoflucrece,1609\nborrow'd,2,rapeoflucrece,1609\nimpiety,2,rapeoflucrece,1609\nmistress',2,rapeoflucrece,1609\npossession,2,rapeoflucrece,1609\npause,2,rapeoflucrece,1609\nwinding,2,rapeoflucrece,1609\nflies,2,rapeoflucrece,1609\nsalt,2,rapeoflucrece,1609\nrepentant,2,rapeoflucrece,1609\nDeep,2,rapeoflucrece,1609\nBegins,2,rapeoflucrece,1609\nSad,2,rapeoflucrece,1609\nhappiness,2,rapeoflucrece,1609\nloving,2,rapeoflucrece,1609\nmoment,2,rapeoflucrece,1609\nheard,2,rapeoflucrece,1609\nflight,2,rapeoflucrece,1609\nwalls,2,rapeoflucrece,1609\ndeath's,2,rapeoflucrece,1609\nsave,2,rapeoflucrece,1609\nflint,2,rapeoflucrece,1609\ndust,2,rapeoflucrece,1609\nblasts,2,rapeoflucrece,1609\ntunes,2,rapeoflucrece,1609\nstage,2,rapeoflucrece,1609\nCan,2,rapeoflucrece,1609\nrise,2,rapeoflucrece,1609\nheave,2,rapeoflucrece,1609\nhopeless,2,rapeoflucrece,1609\nstealeth,2,rapeoflucrece,1609\nintent,2,rapeoflucrece,1609\nambition,2,rapeoflucrece,1609\nbleed,2,rapeoflucrece,1609\nfound,2,rapeoflucrece,1609\nblemish,2,rapeoflucrece,1609\nsupper,2,rapeoflucrece,1609\ncoming,2,rapeoflucrece,1609\ncomplain,2,rapeoflucrece,1609\nwomen's,2,rapeoflucrece,1609\ncursed,2,rapeoflucrece,1609\nsurvive,2,rapeoflucrece,1609\nrobb'd,2,rapeoflucrece,1609\nfact,2,rapeoflucrece,1609\nBid,2,rapeoflucrece,1609\nrotten,2,rapeoflucrece,1609\nvirtue's,2,rapeoflucrece,1609\nkilling,2,rapeoflucrece,1609\nwomb,2,rapeoflucrece,1609\nowe,2,rapeoflucrece,1609\nrail,2,rapeoflucrece,1609\ndisposition,2,rapeoflucrece,1609\nyoke,2,rapeoflucrece,1609\nwolf,2,rapeoflucrece,1609\nlurk,2,rapeoflucrece,1609\nserves,2,rapeoflucrece,1609\nsober,2,rapeoflucrece,1609\nope,2,rapeoflucrece,1609\nwent,2,rapeoflucrece,1609\nmightier,2,rapeoflucrece,1609\ncompare,2,rapeoflucrece,1609\ndispersed,2,rapeoflucrece,1609\nlustful,2,rapeoflucrece,1609\nMany,2,rapeoflucrece,1609\njudge,2,rapeoflucrece,1609\nmodesty,2,rapeoflucrece,1609\ndelays,2,rapeoflucrece,1609\nsaint,2,rapeoflucrece,1609\nfortune,2,rapeoflucrece,1609\nhumour,2,rapeoflucrece,1609\nworm,2,rapeoflucrece,1609\nworn,2,rapeoflucrece,1609\nwore,2,rapeoflucrece,1609\nlodged,2,rapeoflucrece,1609\nunjust,2,rapeoflucrece,1609\nminute,2,rapeoflucrece,1609\nfill,2,rapeoflucrece,1609\nImagine,2,rapeoflucrece,1609\nbark,2,rapeoflucrece,1609\nlordship,2,rapeoflucrece,1609\nbare,2,rapeoflucrece,1609\nhost,2,rapeoflucrece,1609\nunfold,2,rapeoflucrece,1609\npoison'd,2,rapeoflucrece,1609\nqueen,2,rapeoflucrece,1609\nmadly,2,rapeoflucrece,1609\nlived,2,rapeoflucrece,1609\nbird,2,rapeoflucrece,1609\npublic,2,rapeoflucrece,1609\nslanderous,2,rapeoflucrece,1609\nkiss,2,rapeoflucrece,1609\ncreeps,2,rapeoflucrece,1609\nsoul's,2,rapeoflucrece,1609\ncoal,2,rapeoflucrece,1609\nwrapp'd,2,rapeoflucrece,1609\nholes,2,rapeoflucrece,1609\nwild,2,rapeoflucrece,1609\nsights,2,rapeoflucrece,1609\nshoot,2,rapeoflucrece,1609\ncreep,2,rapeoflucrece,1609\nshore,2,rapeoflucrece,1609\ndefect,2,rapeoflucrece,1609\nhonest,2,rapeoflucrece,1609\nrequest,2,rapeoflucrece,1609\nbesieged,2,rapeoflucrece,1609\ncontroll'd,2,rapeoflucrece,1609\nwinter,2,rapeoflucrece,1609\nwondering,2,rapeoflucrece,1609\nprayers,2,rapeoflucrece,1609\ncomplaining,2,rapeoflucrece,1609\nseat,2,rapeoflucrece,1609\nsweat,2,rapeoflucrece,1609\ncaptain,2,rapeoflucrece,1609\nseem,2,rapeoflucrece,1609\ndefend,2,rapeoflucrece,1609\nended,2,rapeoflucrece,1609\nlook'd,2,rapeoflucrece,1609\nwrack,2,rapeoflucrece,1609\nothers',2,rapeoflucrece,1609\npeeping,2,rapeoflucrece,1609\nperiod,2,rapeoflucrece,1609\nliking,2,rapeoflucrece,1609\nMine,2,rapeoflucrece,1609\nabomination,2,rapeoflucrece,1609\nvassals,2,rapeoflucrece,1609\nthrust,2,rapeoflucrece,1609\nwearied,2,rapeoflucrece,1609\ncry,2,rapeoflucrece,1609\nhouse,2,rapeoflucrece,1609\naffright,2,rapeoflucrece,1609\neyne,2,rapeoflucrece,1609\ntherein,2,rapeoflucrece,1609\nhuge,2,rapeoflucrece,1609\nextremes,2,rapeoflucrece,1609\nbankrupt,2,rapeoflucrece,1609\nSelf,2,rapeoflucrece,1609\ntogether,2,rapeoflucrece,1609\nseason,2,rapeoflucrece,1609\nhiding,2,rapeoflucrece,1609\nattaint,2,rapeoflucrece,1609\nmerchant,2,rapeoflucrece,1609\ngaining,2,rapeoflucrece,1609\nseem'st,2,rapeoflucrece,1609\nlie,2,rapeoflucrece,1609\nlawn,2,rapeoflucrece,1609\nthreat,2,rapeoflucrece,1609\ntriumph,2,rapeoflucrece,1609\nlaws,2,rapeoflucrece,1609\nstorms,2,rapeoflucrece,1609\npersuade,2,rapeoflucrece,1609\neat,2,rapeoflucrece,1609\nfeasting,2,rapeoflucrece,1609\nbatter'd,2,rapeoflucrece,1609\nhonesty,2,rapeoflucrece,1609\nmap,2,rapeoflucrece,1609\ndebate,2,rapeoflucrece,1609\ncloudy,2,rapeoflucrece,1609\nclouds,2,rapeoflucrece,1609\nconfound,2,rapeoflucrece,1609\nstarts,2,rapeoflucrece,1609\nperjury,2,rapeoflucrece,1609\nleast,2,rapeoflucrece,1609\nspite,2,rapeoflucrece,1609\nQuoth,2,rapeoflucrece,1609\nIlion,2,rapeoflucrece,1609\nlearn,2,rapeoflucrece,1609\nAnother,2,rapeoflucrece,1609\ndread,2,rapeoflucrece,1609\nform'd,2,rapeoflucrece,1609\nimpious,2,rapeoflucrece,1609\nSometime,2,rapeoflucrece,1609\nglory,2,rapeoflucrece,1609\nlamenting,2,rapeoflucrece,1609\nmeeting,2,rapeoflucrece,1609\nsovereign,2,rapeoflucrece,1609\nburnt,2,rapeoflucrece,1609\nravisher,2,rapeoflucrece,1609\nlightless,2,rapeoflucrece,1609\nlion,2,rapeoflucrece,1609\nuntainted,2,rapeoflucrece,1609\nlaud,2,rapeoflucrece,1609\npeep,2,rapeoflucrece,1609\nHecuba,2,rapeoflucrece,1609\nweariness,2,rapeoflucrece,1609\nappetite,2,rapeoflucrece,1609\nnature,2,rapeoflucrece,1609\nTh',2,rapeoflucrece,1609\nmoe,2,rapeoflucrece,1609\nforestall,2,rapeoflucrece,1609\nshade,2,rapeoflucrece,1609\nsilent,2,rapeoflucrece,1609\nsentence,2,rapeoflucrece,1609\nlaid,2,rapeoflucrece,1609\nsprite,2,rapeoflucrece,1609\ninjurious,2,rapeoflucrece,1609\ndry,2,rapeoflucrece,1609\nSwearing,2,rapeoflucrece,1609\nslew,2,rapeoflucrece,1609\ncertain,2,rapeoflucrece,1609\nvenom,2,rapeoflucrece,1609\nburden,2,rapeoflucrece,1609\narmed,2,rapeoflucrece,1609\nSinon's,2,rapeoflucrece,1609\nobtain,2,rapeoflucrece,1609\nstol'n,2,rapeoflucrece,1609\nkind,2,rapeoflucrece,1609\n'How,2,rapeoflucrece,1609\ncommand,2,rapeoflucrece,1609\nshifting,2,rapeoflucrece,1609\nsurviving,2,rapeoflucrece,1609\nConceit,2,rapeoflucrece,1609\ndaughter',2,rapeoflucrece,1609\njustly,2,rapeoflucrece,1609\nwanteth,2,rapeoflucrece,1609\nHector,2,rapeoflucrece,1609\nblush'd,2,rapeoflucrece,1609\nenemy,2,rapeoflucrece,1609\nending,2,rapeoflucrece,1609\nlady,2,rapeoflucrece,1609\nswan,2,rapeoflucrece,1609\ntroubled,3,rapeoflucrece,1609\ntold,3,rapeoflucrece,1609\nanswer,3,rapeoflucrece,1609\nTime's,3,rapeoflucrece,1609\nregard,3,rapeoflucrece,1609\nquality,3,rapeoflucrece,1609\ntaking,3,rapeoflucrece,1609\ndrop,3,rapeoflucrece,1609\nmistress,3,rapeoflucrece,1609\nshadows,3,rapeoflucrece,1609\nlawful,3,rapeoflucrece,1609\nwaxen,3,rapeoflucrece,1609\nsleeps,3,rapeoflucrece,1609\nslaughter'd,3,rapeoflucrece,1609\ngrim,3,rapeoflucrece,1609\ninstrument,3,rapeoflucrece,1609\nbeauty's,3,rapeoflucrece,1609\nsore,3,rapeoflucrece,1609\nUpon,3,rapeoflucrece,1609\ncase,3,rapeoflucrece,1609\nworser,3,rapeoflucrece,1609\nstrength,3,rapeoflucrece,1609\nsadly,3,rapeoflucrece,1609\n'What,3,rapeoflucrece,1609\nbearing,3,rapeoflucrece,1609\nbeholds,3,rapeoflucrece,1609\nconfounds,3,rapeoflucrece,1609\ndrew,3,rapeoflucrece,1609\ncheer,3,rapeoflucrece,1609\npines,3,rapeoflucrece,1609\ncall,3,rapeoflucrece,1609\nfools,3,rapeoflucrece,1609\nLUCRECE,3,rapeoflucrece,1609\nveins,3,rapeoflucrece,1609\nNot,3,rapeoflucrece,1609\nblessed,3,rapeoflucrece,1609\nwait,3,rapeoflucrece,1609\nlesser,3,rapeoflucrece,1609\nWhy,3,rapeoflucrece,1609\nocean,3,rapeoflucrece,1609\nbound,3,rapeoflucrece,1609\nmerry,3,rapeoflucrece,1609\nscorn,3,rapeoflucrece,1609\nyield,3,rapeoflucrece,1609\nabuses,3,rapeoflucrece,1609\nwings,3,rapeoflucrece,1609\nleague,3,rapeoflucrece,1609\nswelling,3,rapeoflucrece,1609\nskies,3,rapeoflucrece,1609\nunhallow'd,3,rapeoflucrece,1609\nborn,3,rapeoflucrece,1609\nfalls,3,rapeoflucrece,1609\nworthy,3,rapeoflucrece,1609\nbring,3,rapeoflucrece,1609\nnails,3,rapeoflucrece,1609\nOne,3,rapeoflucrece,1609\nharmless,3,rapeoflucrece,1609\nwish,3,rapeoflucrece,1609\nthrows,3,rapeoflucrece,1609\nsense,3,rapeoflucrece,1609\nstop,3,rapeoflucrece,1609\npretty,3,rapeoflucrece,1609\noffice,3,rapeoflucrece,1609\nwits,3,rapeoflucrece,1609\ncreeping,3,rapeoflucrece,1609\nmanly,3,rapeoflucrece,1609\nbitter,3,rapeoflucrece,1609\nscandal,3,rapeoflucrece,1609\nmorning,3,rapeoflucrece,1609\ndrown,3,rapeoflucrece,1609\nfoes,3,rapeoflucrece,1609\nAn,3,rapeoflucrece,1609\nmistrust,3,rapeoflucrece,1609\nneither,3,rapeoflucrece,1609\nBe,3,rapeoflucrece,1609\nblows,3,rapeoflucrece,1609\nThose,3,rapeoflucrece,1609\ndesperate,3,rapeoflucrece,1609\nbad,3,rapeoflucrece,1609\nOF,3,rapeoflucrece,1609\nWithin,3,rapeoflucrece,1609\nmeans,3,rapeoflucrece,1609\npleasure,3,rapeoflucrece,1609\nIt,3,rapeoflucrece,1609\nprove,3,rapeoflucrece,1609\niniquity,3,rapeoflucrece,1609\nWe,3,rapeoflucrece,1609\nbehind,3,rapeoflucrece,1609\nsounds,3,rapeoflucrece,1609\ndost,3,rapeoflucrece,1609\nSave,3,rapeoflucrece,1609\npeople,3,rapeoflucrece,1609\n'Poor,3,rapeoflucrece,1609\ncurse,3,rapeoflucrece,1609\ndespite,3,rapeoflucrece,1609\ndivine,3,rapeoflucrece,1609\npicture,3,rapeoflucrece,1609\nturns,3,rapeoflucrece,1609\nstore,3,rapeoflucrece,1609\nstory,3,rapeoflucrece,1609\nwiped,3,rapeoflucrece,1609\naim,3,rapeoflucrece,1609\nair,3,rapeoflucrece,1609\ngo,3,rapeoflucrece,1609\naid,3,rapeoflucrece,1609\nstops,3,rapeoflucrece,1609\ndefame,3,rapeoflucrece,1609\nBesides,3,rapeoflucrece,1609\nboast,3,rapeoflucrece,1609\nthyself,3,rapeoflucrece,1609\nwhereof,3,rapeoflucrece,1609\nabide,3,rapeoflucrece,1609\nMyself,3,rapeoflucrece,1609\nlose,3,rapeoflucrece,1609\nblue,3,rapeoflucrece,1609\ngrace,3,rapeoflucrece,1609\nharm,3,rapeoflucrece,1609\nbrought,3,rapeoflucrece,1609\nhard,3,rapeoflucrece,1609\nspeaks,3,rapeoflucrece,1609\nfield,3,rapeoflucrece,1609\ncall'd,3,rapeoflucrece,1609\n'Let,3,rapeoflucrece,1609\nplain,3,rapeoflucrece,1609\ndrawn,3,rapeoflucrece,1609\nRAPE,3,rapeoflucrece,1609\nschool,3,rapeoflucrece,1609\nperpetual,3,rapeoflucrece,1609\nFirst,3,rapeoflucrece,1609\ncity,3,rapeoflucrece,1609\nask,3,rapeoflucrece,1609\nstranger,3,rapeoflucrece,1609\nmock,3,rapeoflucrece,1609\nstones,3,rapeoflucrece,1609\nrough,3,rapeoflucrece,1609\nmoan,3,rapeoflucrece,1609\nhast,3,rapeoflucrece,1609\ncreatures,3,rapeoflucrece,1609\nStood,3,rapeoflucrece,1609\nHath,3,rapeoflucrece,1609\nkindled,3,rapeoflucrece,1609\nhaving,3,rapeoflucrece,1609\nwatch,3,rapeoflucrece,1609\noften,3,rapeoflucrece,1609\nmoved,3,rapeoflucrece,1609\nshameful,3,rapeoflucrece,1609\nhoney,3,rapeoflucrece,1609\nAgainst,3,rapeoflucrece,1609\nrose,3,rapeoflucrece,1609\nguiltless,3,rapeoflucrece,1609\nhelpless,3,rapeoflucrece,1609\nunknown,3,rapeoflucrece,1609\nadvisedly,3,rapeoflucrece,1609\naction,3,rapeoflucrece,1609\nShow'd,3,rapeoflucrece,1609\ninto,3,rapeoflucrece,1609\nblunt,3,rapeoflucrece,1609\nours,3,rapeoflucrece,1609\nslain,3,rapeoflucrece,1609\nexcuses,3,rapeoflucrece,1609\nTarquinius,3,rapeoflucrece,1609\nDoth,3,rapeoflucrece,1609\nyours,3,rapeoflucrece,1609\ngeneral,3,rapeoflucrece,1609\nleaves,3,rapeoflucrece,1609\n'In,3,rapeoflucrece,1609\nstars,3,rapeoflucrece,1609\nmyself,3,rapeoflucrece,1609\nblush,3,rapeoflucrece,1609\ncoward,3,rapeoflucrece,1609\nmark,3,rapeoflucrece,1609\nfountain,3,rapeoflucrece,1609\nHonour,3,rapeoflucrece,1609\nquench,3,rapeoflucrece,1609\nflatter,3,rapeoflucrece,1609\nlabour,3,rapeoflucrece,1609\nfree,3,rapeoflucrece,1609\nBeing,3,rapeoflucrece,1609\nbanks,3,rapeoflucrece,1609\nclose,3,rapeoflucrece,1609\nstained,3,rapeoflucrece,1609\nsting,3,rapeoflucrece,1609\nretire,3,rapeoflucrece,1609\ncure,3,rapeoflucrece,1609\nsays,3,rapeoflucrece,1609\nmorrow,3,rapeoflucrece,1609\nwaking,3,rapeoflucrece,1609\nremains,3,rapeoflucrece,1609\nCollatium,3,rapeoflucrece,1609\nwar,3,rapeoflucrece,1609\nwanton,3,rapeoflucrece,1609\nhappy,3,rapeoflucrece,1609\nhair,3,rapeoflucrece,1609\nwatery,3,rapeoflucrece,1609\nfaced,3,rapeoflucrece,1609\nlistening,3,rapeoflucrece,1609\nconsent,3,rapeoflucrece,1609\ndull,3,rapeoflucrece,1609\nmarble,3,rapeoflucrece,1609\nbeguiled,3,rapeoflucrece,1609\nground,3,rapeoflucrece,1609\nArdea,3,rapeoflucrece,1609\nlasting,3,rapeoflucrece,1609\nGreeks,3,rapeoflucrece,1609\nsilly,3,rapeoflucrece,1609\nletter,3,rapeoflucrece,1609\ntune,3,rapeoflucrece,1609\ncompany,3,rapeoflucrece,1609\nroses,3,rapeoflucrece,1609\nword,3,rapeoflucrece,1609\ngazing,3,rapeoflucrece,1609\npassion,3,rapeoflucrece,1609\nne'er,3,rapeoflucrece,1609\nfolly,3,rapeoflucrece,1609\nUnto,3,rapeoflucrece,1609\nshows,3,rapeoflucrece,1609\nreproach,3,rapeoflucrece,1609\nlights,3,rapeoflucrece,1609\ntale,3,rapeoflucrece,1609\nman's,3,rapeoflucrece,1609\nknighthood,3,rapeoflucrece,1609\nraining,3,rapeoflucrece,1609\nhome,3,rapeoflucrece,1609\nholy,3,rapeoflucrece,1609\nfires,3,rapeoflucrece,1609\nloyal,3,rapeoflucrece,1609\nlives,3,rapeoflucrece,1609\nresolution,3,rapeoflucrece,1609\nDay,3,rapeoflucrece,1609\ntask,3,rapeoflucrece,1609\nbawd,3,rapeoflucrece,1609\ninterest,3,rapeoflucrece,1609\nbreasts,3,rapeoflucrece,1609\nugly,3,rapeoflucrece,1609\nuse,3,rapeoflucrece,1609\nseen,3,rapeoflucrece,1609\ntroth,3,rapeoflucrece,1609\nfeeling,3,rapeoflucrece,1609\nTrue,3,rapeoflucrece,1609\ntraitor,3,rapeoflucrece,1609\nCollatine's,3,rapeoflucrece,1609\ndispense,3,rapeoflucrece,1609\nglove,3,rapeoflucrece,1609\nbeheld,3,rapeoflucrece,1609\ngods,3,rapeoflucrece,1609\npost,3,rapeoflucrece,1609\nbleeding,3,rapeoflucrece,1609\nhither,3,rapeoflucrece,1609\nLucretius,3,rapeoflucrece,1609\neffects,3,rapeoflucrece,1609\nseldom,3,rapeoflucrece,1609\nbegins,3,rapeoflucrece,1609\nmourning,3,rapeoflucrece,1609\nterror,3,rapeoflucrece,1609\nsleeping,3,rapeoflucrece,1609\nfright,3,rapeoflucrece,1609\nharms,3,rapeoflucrece,1609\nrevenged,3,rapeoflucrece,1609\ndefiled,3,rapeoflucrece,1609\n'This,3,rapeoflucrece,1609\ndate,3,rapeoflucrece,1609\nrespect,3,rapeoflucrece,1609\nattend,3,rapeoflucrece,1609\nprincely,3,rapeoflucrece,1609\ndisputation,3,rapeoflucrece,1609\ndestroy,3,rapeoflucrece,1609\nivory,3,rapeoflucrece,1609\nlamb,3,rapeoflucrece,1609\nflower,3,rapeoflucrece,1609\ntired,3,rapeoflucrece,1609\ncross,3,rapeoflucrece,1609\ndew,3,rapeoflucrece,1609\ntainted,3,rapeoflucrece,1609\nearth's,3,rapeoflucrece,1609\nshape,3,rapeoflucrece,1609\nth',3,rapeoflucrece,1609\nwomen,3,rapeoflucrece,1609\ntimes,4,rapeoflucrece,1609\ntook,4,rapeoflucrece,1609\ndarkness,4,rapeoflucrece,1609\ndecay,4,rapeoflucrece,1609\nfeeds,4,rapeoflucrece,1609\nappear,4,rapeoflucrece,1609\nEre,4,rapeoflucrece,1609\nunder,4,rapeoflucrece,1609\nprey,4,rapeoflucrece,1609\ntruth,4,rapeoflucrece,1609\nworld,4,rapeoflucrece,1609\nfriends,4,rapeoflucrece,1609\nloathsome,4,rapeoflucrece,1609\nsoon,4,rapeoflucrece,1609\ndisdain,4,rapeoflucrece,1609\nheat,4,rapeoflucrece,1609\nfull,4,rapeoflucrece,1609\nbegan,4,rapeoflucrece,1609\nview,4,rapeoflucrece,1609\nbetter,4,rapeoflucrece,1609\nwake,4,rapeoflucrece,1609\nsea,4,rapeoflucrece,1609\nfell,4,rapeoflucrece,1609\nlove's,4,rapeoflucrece,1609\nbirds,4,rapeoflucrece,1609\nson,4,rapeoflucrece,1609\nsky,4,rapeoflucrece,1609\nsets,4,rapeoflucrece,1609\nfaults,4,rapeoflucrece,1609\nThese,4,rapeoflucrece,1609\nsnow,4,rapeoflucrece,1609\ncrime,4,rapeoflucrece,1609\ndaughter,4,rapeoflucrece,1609\nloathed,4,rapeoflucrece,1609\nblind,4,rapeoflucrece,1609\nwant,4,rapeoflucrece,1609\n'For,4,rapeoflucrece,1609\ndies,4,rapeoflucrece,1609\nmurder,4,rapeoflucrece,1609\nmean,4,rapeoflucrece,1609\nsick,4,rapeoflucrece,1609\n'But,4,rapeoflucrece,1609\nburning,4,rapeoflucrece,1609\nPriam's,4,rapeoflucrece,1609\npatience,4,rapeoflucrece,1609\ndeeds,4,rapeoflucrece,1609\nOn,4,rapeoflucrece,1609\nhid,4,rapeoflucrece,1609\nwhole,4,rapeoflucrece,1609\nsought,4,rapeoflucrece,1609\nsits,4,rapeoflucrece,1609\ngone,4,rapeoflucrece,1609\nburn,4,rapeoflucrece,1609\n'my,4,rapeoflucrece,1609\nswift,4,rapeoflucrece,1609\nbegin,4,rapeoflucrece,1609\nentertain,4,rapeoflucrece,1609\nmoans,4,rapeoflucrece,1609\nleft,4,rapeoflucrece,1609\nstood,4,rapeoflucrece,1609\nGuilty,4,rapeoflucrece,1609\nlent,4,rapeoflucrece,1609\nlend,4,rapeoflucrece,1609\nam,4,rapeoflucrece,1609\ndoor,4,rapeoflucrece,1609\ndoom,4,rapeoflucrece,1609\nfears,4,rapeoflucrece,1609\nearth,4,rapeoflucrece,1609\nsemblance,4,rapeoflucrece,1609\nwherein,4,rapeoflucrece,1609\nspent,4,rapeoflucrece,1609\nuntimely,4,rapeoflucrece,1609\nshallow,4,rapeoflucrece,1609\ncourse,4,rapeoflucrece,1609\nhate,4,rapeoflucrece,1609\nfear'd,4,rapeoflucrece,1609\ndreadful,4,rapeoflucrece,1609\nAre,4,rapeoflucrece,1609\ndeadly,4,rapeoflucrece,1609\nroot,4,rapeoflucrece,1609\nHave,4,rapeoflucrece,1609\nbreeds,4,rapeoflucrece,1609\nlords,4,rapeoflucrece,1609\nthinks,4,rapeoflucrece,1609\nrash,4,rapeoflucrece,1609\nbears,4,rapeoflucrece,1609\nyouth,4,rapeoflucrece,1609\nmortal,4,rapeoflucrece,1609\nfares,4,rapeoflucrece,1609\nbloody,4,rapeoflucrece,1609\nAll,4,rapeoflucrece,1609\ndream,4,rapeoflucrece,1609\nknows,4,rapeoflucrece,1609\nblow,4,rapeoflucrece,1609\nthief,4,rapeoflucrece,1609\nsmoke,4,rapeoflucrece,1609\nliving,4,rapeoflucrece,1609\nbequeath,4,rapeoflucrece,1609\ntaste,4,rapeoflucrece,1609\nget,4,rapeoflucrece,1609\ngrave,4,rapeoflucrece,1609\ndishonour,4,rapeoflucrece,1609\nhateful,4,rapeoflucrece,1609\nonly,4,rapeoflucrece,1609\nfalchion,4,rapeoflucrece,1609\nDesire,4,rapeoflucrece,1609\nsubtle,4,rapeoflucrece,1609\nbetween,4,rapeoflucrece,1609\n'To,4,rapeoflucrece,1609\npossess,4,rapeoflucrece,1609\nenforced,4,rapeoflucrece,1609\ndrops,4,rapeoflucrece,1609\nangry,4,rapeoflucrece,1609\nminds,4,rapeoflucrece,1609\nTime,4,rapeoflucrece,1609\nfall,4,rapeoflucrece,1609\neven,4,rapeoflucrece,1609\nvow,4,rapeoflucrece,1609\nwealth,4,rapeoflucrece,1609\nEach,4,rapeoflucrece,1609\ntalk,4,rapeoflucrece,1609\ntake,4,rapeoflucrece,1609\nreason,4,rapeoflucrece,1609\nshort,4,rapeoflucrece,1609\nhearts,4,rapeoflucrece,1609\nalone,4,rapeoflucrece,1609\ninward,4,rapeoflucrece,1609\nswear,4,rapeoflucrece,1609\neither,4,rapeoflucrece,1609\nsupposed,4,rapeoflucrece,1609\nsees,4,rapeoflucrece,1609\nsound,4,rapeoflucrece,1609\nThrough,4,rapeoflucrece,1609\nsouls,4,rapeoflucrece,1609\nblushing,4,rapeoflucrece,1609\ntide,4,rapeoflucrece,1609\nreturn,4,rapeoflucrece,1609\nprison,4,rapeoflucrece,1609\nnurse,4,rapeoflucrece,1609\nsorrow's,4,rapeoflucrece,1609\npurpose,4,rapeoflucrece,1609\nbrow,4,rapeoflucrece,1609\near,4,rapeoflucrece,1609\nleave,4,rapeoflucrece,1609\nmad,4,rapeoflucrece,1609\nstraight,4,rapeoflucrece,1609\nabuse,4,rapeoflucrece,1609\nLust,4,rapeoflucrece,1609\nbooks,4,rapeoflucrece,1609\nbred,4,rapeoflucrece,1609\ngazed,4,rapeoflucrece,1609\nwithout,4,rapeoflucrece,1609\nprivate,4,rapeoflucrece,1609\ndoting,4,rapeoflucrece,1609\n'Then,4,rapeoflucrece,1609\nsharp,4,rapeoflucrece,1609\nBrutus,5,rapeoflucrece,1609\ngroom,5,rapeoflucrece,1609\nguilt,5,rapeoflucrece,1609\nweary,5,rapeoflucrece,1609\nwrit,5,rapeoflucrece,1609\ntreasure,5,rapeoflucrece,1609\nhell,5,rapeoflucrece,1609\nsight,5,rapeoflucrece,1609\nremain,5,rapeoflucrece,1609\nsaw,5,rapeoflucrece,1609\nglass,5,rapeoflucrece,1609\nnothing,5,rapeoflucrece,1609\n'I,5,rapeoflucrece,1609\ncause,5,rapeoflucrece,1609\ndisgrace,5,rapeoflucrece,1609\nread,5,rapeoflucrece,1609\noffence,5,rapeoflucrece,1609\nabout,5,rapeoflucrece,1609\nshining,5,rapeoflucrece,1609\nwind,5,rapeoflucrece,1609\nseems,5,rapeoflucrece,1609\nThough,5,rapeoflucrece,1609\nbold,5,rapeoflucrece,1609\nelse,5,rapeoflucrece,1609\nside,5,rapeoflucrece,1609\nchamber,5,rapeoflucrece,1609\nchaste,5,rapeoflucrece,1609\nitself,5,rapeoflucrece,1609\nkept,5,rapeoflucrece,1609\nstay,5,rapeoflucrece,1609\nforce,5,rapeoflucrece,1609\nfinds,5,rapeoflucrece,1609\npast,5,rapeoflucrece,1609\nears,5,rapeoflucrece,1609\ngave,5,rapeoflucrece,1609\nmost,5,rapeoflucrece,1609\nlost,5,rapeoflucrece,1609\ndevil,5,rapeoflucrece,1609\nkeep,5,rapeoflucrece,1609\nround,5,rapeoflucrece,1609\nhusband's,5,rapeoflucrece,1609\npain,5,rapeoflucrece,1609\nspeak,5,rapeoflucrece,1609\nfoot,5,rapeoflucrece,1609\nrevenge,5,rapeoflucrece,1609\nhide,5,rapeoflucrece,1609\nTHE,5,rapeoflucrece,1609\nranks,5,rapeoflucrece,1609\n'And,5,rapeoflucrece,1609\nthink,5,rapeoflucrece,1609\n'My,5,rapeoflucrece,1609\nsake,5,rapeoflucrece,1609\nwit,5,rapeoflucrece,1609\noft,5,rapeoflucrece,1609\nbreak,5,rapeoflucrece,1609\nunseen,5,rapeoflucrece,1609\nThus,5,rapeoflucrece,1609\nduty,5,rapeoflucrece,1609\noath,5,rapeoflucrece,1609\n'Tis,5,rapeoflucrece,1609\ndying,5,rapeoflucrece,1609\nfaces,5,rapeoflucrece,1609\nweeping,5,rapeoflucrece,1609\ndumb,5,rapeoflucrece,1609\nevil,5,rapeoflucrece,1609\ncares,5,rapeoflucrece,1609\ncloud,5,rapeoflucrece,1609\nwork,5,rapeoflucrece,1609\nfast,5,rapeoflucrece,1609\nhope,5,rapeoflucrece,1609\nthousand,5,rapeoflucrece,1609\nhold,5,rapeoflucrece,1609\nwilt,5,rapeoflucrece,1609\nflood,5,rapeoflucrece,1609\nlow,5,rapeoflucrece,1609\nSinon,5,rapeoflucrece,1609\nmodest,5,rapeoflucrece,1609\nhours,5,rapeoflucrece,1609\ngoes,5,rapeoflucrece,1609\ntorch,5,rapeoflucrece,1609\nsleep,5,rapeoflucrece,1609\nforced,5,rapeoflucrece,1609\nSince,5,rapeoflucrece,1609\nlips,5,rapeoflucrece,1609\nMay,5,rapeoflucrece,1609\ntwo,5,rapeoflucrece,1609\nslay,5,rapeoflucrece,1609\ndark,5,rapeoflucrece,1609\nbids,5,rapeoflucrece,1609\ntreason,6,rapeoflucrece,1609\npity,6,rapeoflucrece,1609\nhaste,6,rapeoflucrece,1609\npainter,6,rapeoflucrece,1609\npainted,6,rapeoflucrece,1609\nvain,6,rapeoflucrece,1609\nCollatinus,6,rapeoflucrece,1609\nanother,6,rapeoflucrece,1609\nNow,6,rapeoflucrece,1609\ngroans,6,rapeoflucrece,1609\nvile,6,rapeoflucrece,1609\nkill'd,6,rapeoflucrece,1609\nthence,6,rapeoflucrece,1609\ncries,6,rapeoflucrece,1609\nsun,6,rapeoflucrece,1609\nlife's,6,rapeoflucrece,1609\ntherefore,6,rapeoflucrece,1609\ndown,6,rapeoflucrece,1609\n'tis,6,rapeoflucrece,1609\ngain,6,rapeoflucrece,1609\nstain'd,6,rapeoflucrece,1609\nact,6,rapeoflucrece,1609\nhot,6,rapeoflucrece,1609\nweeps,6,rapeoflucrece,1609\npresent,6,rapeoflucrece,1609\nfond,6,rapeoflucrece,1609\nHow,6,rapeoflucrece,1609\nsecret,6,rapeoflucrece,1609\nright,6,rapeoflucrece,1609\nnew,6,rapeoflucrece,1609\nwater,6,rapeoflucrece,1609\nnone,6,rapeoflucrece,1609\n'Thou,6,rapeoflucrece,1609\nthings,6,rapeoflucrece,1609\nchild,6,rapeoflucrece,1609\nstrife,6,rapeoflucrece,1609\nblot,6,rapeoflucrece,1609\nslave,6,rapeoflucrece,1609\n'So,6,rapeoflucrece,1609\ntrembling,6,rapeoflucrece,1609\nsame,6,rapeoflucrece,1609\nstand,6,rapeoflucrece,1609\nShall,6,rapeoflucrece,1609\ntakes,6,rapeoflucrece,1609\nMake,6,rapeoflucrece,1609\nrich,6,rapeoflucrece,1609\nhour,6,rapeoflucrece,1609\nlaw,6,rapeoflucrece,1609\nPriam,6,rapeoflucrece,1609\nclear,6,rapeoflucrece,1609\nunto,6,rapeoflucrece,1609\n'Why,6,rapeoflucrece,1609\nseek,6,rapeoflucrece,1609\ntrespass,6,rapeoflucrece,1609\nwhom,6,rapeoflucrece,1609\nself,6,rapeoflucrece,1609\nOpportunity,6,rapeoflucrece,1609\nwound,6,rapeoflucrece,1609\nlate,6,rapeoflucrece,1609\nspring,6,rapeoflucrece,1609\ndame,6,rapeoflucrece,1609\npower,6,rapeoflucrece,1609\ndim,6,rapeoflucrece,1609\ninfamy,7,rapeoflucrece,1609\nsighs,7,rapeoflucrece,1609\nPoor,7,rapeoflucrece,1609\ncame,7,rapeoflucrece,1609\nskill,7,rapeoflucrece,1609\nTheir,7,rapeoflucrece,1609\nfight,7,rapeoflucrece,1609\nafter,7,rapeoflucrece,1609\nWhile,7,rapeoflucrece,1609\nkings,7,rapeoflucrece,1609\nbreath,7,rapeoflucrece,1609\nimage,7,rapeoflucrece,1609\nbreast,7,rapeoflucrece,1609\nlook,7,rapeoflucrece,1609\nspeed,7,rapeoflucrece,1609\nage,7,rapeoflucrece,1609\nplace,7,rapeoflucrece,1609\nexcuse,7,rapeoflucrece,1609\nopen,7,rapeoflucrece,1609\ndelight,7,rapeoflucrece,1609\nthough,7,rapeoflucrece,1609\nfar,7,rapeoflucrece,1609\nmaid,7,rapeoflucrece,1609\ngentle,7,rapeoflucrece,1609\nSome,7,rapeoflucrece,1609\nmild,7,rapeoflucrece,1609\nmany,7,rapeoflucrece,1609\nstate,7,rapeoflucrece,1609\nwhy,7,rapeoflucrece,1609\n'The,7,rapeoflucrece,1609\nway,7,rapeoflucrece,1609\nwounds,7,rapeoflucrece,1609\nfind,7,rapeoflucrece,1609\ntill,7,rapeoflucrece,1609\nbase,7,rapeoflucrece,1609\nlay,7,rapeoflucrece,1609\ngreat,7,rapeoflucrece,1609\ngives,7,rapeoflucrece,1609\nback,7,rapeoflucrece,1609\nblame,7,rapeoflucrece,1609\nslow,7,rapeoflucrece,1609\nshalt,7,rapeoflucrece,1609\no'er,8,rapeoflucrece,1609\nWill,8,rapeoflucrece,1609\njoy,8,rapeoflucrece,1609\ncheeks,8,rapeoflucrece,1609\nsay,8,rapeoflucrece,1609\ngolden,8,rapeoflucrece,1609\nNor,8,rapeoflucrece,1609\nSuch,8,rapeoflucrece,1609\nfault,8,rapeoflucrece,1609\nheaven,8,rapeoflucrece,1609\nrest,8,rapeoflucrece,1609\nbright,8,rapeoflucrece,1609\ncolour,8,rapeoflucrece,1609\nthese,8,rapeoflucrece,1609\neach,8,rapeoflucrece,1609\ntear,8,rapeoflucrece,1609\nproud,8,rapeoflucrece,1609\nweep,8,rapeoflucrece,1609\nyou,8,rapeoflucrece,1609\nLike,8,rapeoflucrece,1609\nNight,8,rapeoflucrece,1609\nend,8,rapeoflucrece,1609\nThey,8,rapeoflucrece,1609\nI'll,8,rapeoflucrece,1609\nonce,8,rapeoflucrece,1609\nstain,8,rapeoflucrece,1609\nwho,8,rapeoflucrece,1609\nheavy,8,rapeoflucrece,1609\narms,8,rapeoflucrece,1609\nthemselves,8,rapeoflucrece,1609\nEven,8,rapeoflucrece,1609\nfoe,8,rapeoflucrece,1609\nfly,8,rapeoflucrece,1609\never,8,rapeoflucrece,1609\nherself,8,rapeoflucrece,1609\nwretched,8,rapeoflucrece,1609\ncold,8,rapeoflucrece,1609\nRoman,8,rapeoflucrece,1609\nlast,8,rapeoflucrece,1609\nvirtue,8,rapeoflucrece,1609\nsilver,8,rapeoflucrece,1609\nking,8,rapeoflucrece,1609\nhelp,9,rapeoflucrece,1609\nwhile,9,rapeoflucrece,1609\nhead,9,rapeoflucrece,1609\nset,9,rapeoflucrece,1609\nwrong,9,rapeoflucrece,1609\nseem'd,9,rapeoflucrece,1609\ntell,9,rapeoflucrece,1609\nIs,9,rapeoflucrece,1609\nyour,9,rapeoflucrece,1609\nwhose,9,rapeoflucrece,1609\nsaid,9,rapeoflucrece,1609\nhusband,9,rapeoflucrece,1609\nknow,9,rapeoflucrece,1609\ngreater,9,rapeoflucrece,1609\npart,9,rapeoflucrece,1609\npale,9,rapeoflucrece,1609\nhigh,9,rapeoflucrece,1609\nbefore,9,rapeoflucrece,1609\nknife,9,rapeoflucrece,1609\nrage,9,rapeoflucrece,1609\npride,9,rapeoflucrece,1609\nour,9,rapeoflucrece,1609\nguilty,9,rapeoflucrece,1609\nday,9,rapeoflucrece,1609\nstrong,9,rapeoflucrece,1609\nman,9,rapeoflucrece,1609\nmen,9,rapeoflucrece,1609\nthoughts,9,rapeoflucrece,1609\nkill,9,rapeoflucrece,1609\nmuch,10,rapeoflucrece,1609\nhere,10,rapeoflucrece,1609\nsoul,10,rapeoflucrece,1609\nWhose,10,rapeoflucrece,1609\nhear,10,rapeoflucrece,1609\nagainst,10,rapeoflucrece,1609\nboth,10,rapeoflucrece,1609\nfriend,10,rapeoflucrece,1609\nname,10,rapeoflucrece,1609\nNo,10,rapeoflucrece,1609\ndeed,10,rapeoflucrece,1609\ndear,10,rapeoflucrece,1609\nmade,10,rapeoflucrece,1609\nere,10,rapeoflucrece,1609\nagain,10,rapeoflucrece,1609\nnor,10,rapeoflucrece,1609\nRome,10,rapeoflucrece,1609\nwell,10,rapeoflucrece,1609\nfame,10,rapeoflucrece,1609\nTroy,10,rapeoflucrece,1609\ncome,10,rapeoflucrece,1609\nmakes,10,rapeoflucrece,1609\nfather,10,rapeoflucrece,1609\nWhere,10,rapeoflucrece,1609\nthought,11,rapeoflucrece,1609\nblack,11,rapeoflucrece,1609\nbody,11,rapeoflucrece,1609\nlooks,11,rapeoflucrece,1609\nHere,11,rapeoflucrece,1609\nAt,11,rapeoflucrece,1609\nYet,11,rapeoflucrece,1609\nTill,11,rapeoflucrece,1609\ntrue,11,rapeoflucrece,1609\nbehold,11,rapeoflucrece,1609\nTarquin's,11,rapeoflucrece,1609\naway,12,rapeoflucrece,1609\ngood,12,rapeoflucrece,1609\nweak,12,rapeoflucrece,1609\ndone,12,rapeoflucrece,1609\nforth,12,rapeoflucrece,1609\nlittle,12,rapeoflucrece,1609\nshow,12,rapeoflucrece,1609\nthrough,12,rapeoflucrece,1609\nmind,12,rapeoflucrece,1609\ncould,12,rapeoflucrece,1609\nfire,12,rapeoflucrece,1609\nold,12,rapeoflucrece,1609\nthus,12,rapeoflucrece,1609\ncannot,12,rapeoflucrece,1609\nupon,13,rapeoflucrece,1609\nlies,13,rapeoflucrece,1609\nLucrece',13,rapeoflucrece,1609\nlord,13,rapeoflucrece,1609\ndeep,13,rapeoflucrece,1609\nlong,13,rapeoflucrece,1609\nthose,13,rapeoflucrece,1609\nill,13,rapeoflucrece,1609\nthine,13,rapeoflucrece,1609\nthing,13,rapeoflucrece,1609\nwoes,13,rapeoflucrece,1609\nwhite,14,rapeoflucrece,1609\nnever,14,rapeoflucrece,1609\nbed,14,rapeoflucrece,1609\nIf,14,rapeoflucrece,1609\ntongue,14,rapeoflucrece,1609\ndead,14,rapeoflucrece,1609\nlove,14,rapeoflucrece,1609\ngive,14,rapeoflucrece,1609\nart,14,rapeoflucrece,1609\nFrom,14,rapeoflucrece,1609\nLet,14,rapeoflucrece,1609\nwife,14,rapeoflucrece,1609\nsweet,14,rapeoflucrece,1609\nhimself,14,rapeoflucrece,1609\nother,14,rapeoflucrece,1609\nred,15,rapeoflucrece,1609\nmust,15,rapeoflucrece,1609\nsin,15,rapeoflucrece,1609\ndesire,15,rapeoflucrece,1609\nyet,15,rapeoflucrece,1609\nThen,15,rapeoflucrece,1609\nlive,15,rapeoflucrece,1609\nWhat,15,rapeoflucrece,1609\ndie,15,rapeoflucrece,1609\n'O,16,rapeoflucrece,1609\nfalse,16,rapeoflucrece,1609\ncan,16,rapeoflucrece,1609\nbear,16,rapeoflucrece,1609\nhow,16,rapeoflucrece,1609\nwe,16,rapeoflucrece,1609\nwere,16,rapeoflucrece,1609\nbeauty,16,rapeoflucrece,1609\ntoo,16,rapeoflucrece,1609\nmight,16,rapeoflucrece,1609\nevery,17,rapeoflucrece,1609\nhonour,17,rapeoflucrece,1609\nnow,17,rapeoflucrece,1609\nThy,17,rapeoflucrece,1609\nA,18,rapeoflucrece,1609\nOf,18,rapeoflucrece,1609\nblood,18,rapeoflucrece,1609\ngrief,18,rapeoflucrece,1609\nan,18,rapeoflucrece,1609\npure,18,rapeoflucrece,1609\nlust,18,rapeoflucrece,1609\nout,18,rapeoflucrece,1609\nlet,18,rapeoflucrece,1609\ntears,19,rapeoflucrece,1609\nsad,19,rapeoflucrece,1609\nwords,19,rapeoflucrece,1609\nBy,19,rapeoflucrece,1609\nThou,19,rapeoflucrece,1609\nwoe,19,rapeoflucrece,1609\nO,20,rapeoflucrece,1609\nfear,20,rapeoflucrece,1609\nthere,20,rapeoflucrece,1609\nOr,20,rapeoflucrece,1609\nwhere,20,rapeoflucrece,1609\nown,20,rapeoflucrece,1609\nwhen,20,rapeoflucrece,1609\nthan,21,rapeoflucrece,1609\nface,21,rapeoflucrece,1609\npoor,21,rapeoflucrece,1609\nbeing,21,rapeoflucrece,1609\nlife,22,rapeoflucrece,1609\nlight,22,rapeoflucrece,1609\nsee,22,rapeoflucrece,1609\nthen,22,rapeoflucrece,1609\nhad,22,rapeoflucrece,1609\nCollatine,22,rapeoflucrece,1609\nfoul,22,rapeoflucrece,1609\nmine,22,rapeoflucrece,1609\nsorrow,22,rapeoflucrece,1609\nheart,22,rapeoflucrece,1609\nmay,22,rapeoflucrece,1609\nwould,22,rapeoflucrece,1609\nsome,23,rapeoflucrece,1609\nHis,23,rapeoflucrece,1609\nTarquin,23,rapeoflucrece,1609\nif,23,rapeoflucrece,1609\nThis,23,rapeoflucrece,1609\nquoth,23,rapeoflucrece,1609\nWho,24,rapeoflucrece,1609\nHe,24,rapeoflucrece,1609\nLucrece,24,rapeoflucrece,1609\nup,24,rapeoflucrece,1609\nhand,24,rapeoflucrece,1609\nMy,25,rapeoflucrece,1609\nSo,26,rapeoflucrece,1609\nor,26,rapeoflucrece,1609\nShe,26,rapeoflucrece,1609\nshall,26,rapeoflucrece,1609\nWith,27,rapeoflucrece,1609\nwhat,27,rapeoflucrece,1609\nWhen,27,rapeoflucrece,1609\nthem,28,rapeoflucrece,1609\ndo,28,rapeoflucrece,1609\ndeath,29,rapeoflucrece,1609\nAs,29,rapeoflucrece,1609\nnight,29,rapeoflucrece,1609\nmake,29,rapeoflucrece,1609\nfair,29,rapeoflucrece,1609\ntime,29,rapeoflucrece,1609\nsuch,30,rapeoflucrece,1609\nIn,30,rapeoflucrece,1609\nmore,30,rapeoflucrece,1609\nshame,30,rapeoflucrece,1609\nshould,31,rapeoflucrece,1609\nHer,32,rapeoflucrece,1609\neye,33,rapeoflucrece,1609\nare,34,rapeoflucrece,1609\nhath,34,rapeoflucrece,1609\nstill,34,rapeoflucrece,1609\nat,35,rapeoflucrece,1609\nWhich,36,rapeoflucrece,1609\nwhich,37,rapeoflucrece,1609\nlike,37,rapeoflucrece,1609\nwas,37,rapeoflucrece,1609\none,37,rapeoflucrece,1609\ndid,38,rapeoflucrece,1609\nhave,39,rapeoflucrece,1609\non,40,rapeoflucrece,1609\nthee,41,rapeoflucrece,1609\neyes,43,rapeoflucrece,1609\nbut,44,rapeoflucrece,1609\nas,44,rapeoflucrece,1609\nno,49,rapeoflucrece,1609\nFor,51,rapeoflucrece,1609\nme,51,rapeoflucrece,1609\nthey,54,rapeoflucrece,1609\nto,310,rapeoflucrece,1609\nall,55,rapeoflucrece,1609\nwill,56,rapeoflucrece,1609\nBut,60,rapeoflucrece,1609\nThat,64,rapeoflucrece,1609\ndoth,66,rapeoflucrece,1609\nfrom,67,rapeoflucrece,1609\n',69,rapeoflucrece,1609\nthou,71,rapeoflucrece,1609\nby,73,rapeoflucrece,1609\nhim,76,rapeoflucrece,1609\nso,79,rapeoflucrece,1609\nfor,79,rapeoflucrece,1609\nit,84,rapeoflucrece,1609\nbe,86,rapeoflucrece,1609\nnot,87,rapeoflucrece,1609\nthis,92,rapeoflucrece,1609\nI,95,rapeoflucrece,1609\nshe,95,rapeoflucrece,1609\nTo,95,rapeoflucrece,1609\ntheir,96,rapeoflucrece,1609\nThe,96,rapeoflucrece,1609\nthy,97,rapeoflucrece,1609\nis,105,rapeoflucrece,1609\nhe,112,rapeoflucrece,1609\nmy,129,rapeoflucrece,1609\na,167,rapeoflucrece,1609\nAnd,170,rapeoflucrece,1609\nthe,433,rapeoflucrece,1609\nthat,178,rapeoflucrece,1609\nher,182,rapeoflucrece,1609\nwith,191,rapeoflucrece,1609\nhis,219,rapeoflucrece,1609\nin,224,rapeoflucrece,1609\nof,243,rapeoflucrece,1609\nand,245,rapeoflucrece,1609\nforfeits,1,timonofathens,1607\nplagues,1,timonofathens,1607\nprofession,1,timonofathens,1607\naffords,1,timonofathens,1607\ndischarged,1,timonofathens,1607\nYou're,1,timonofathens,1607\nevent,1,timonofathens,1607\nleak'd,1,timonofathens,1607\nneighbouring,1,timonofathens,1607\ngeneration,1,timonofathens,1607\nsteads,1,timonofathens,1607\nmangy,1,timonofathens,1607\nregard,1,timonofathens,1607\nCholer,1,timonofathens,1607\nforbid,1,timonofathens,1607\ninstruments,1,timonofathens,1607\nmoral,1,timonofathens,1607\nchairs,1,timonofathens,1607\nignorance,1,timonofathens,1607\nrelief,1,timonofathens,1607\nmeek,1,timonofathens,1607\nencertain,1,timonofathens,1607\nguard,1,timonofathens,1607\nmeed,1,timonofathens,1607\nguise,1,timonofathens,1607\nsuffer,1,timonofathens,1607\ntaking,1,timonofathens,1607\nlivedst,1,timonofathens,1607\nports,1,timonofathens,1607\nprofess'd,1,timonofathens,1607\n'ira,1,timonofathens,1607\nextremity,1,timonofathens,1607\nbasin,1,timonofathens,1607\nconsumption,1,timonofathens,1607\ndined,1,timonofathens,1607\nafar,1,timonofathens,1607\nAssurance,1,timonofathens,1607\nlamely,1,timonofathens,1607\nreputation,1,timonofathens,1607\nderived,1,timonofathens,1607\nfeed'st,1,timonofathens,1607\nTeem,1,timonofathens,1607\nverge,1,timonofathens,1607\nassay,1,timonofathens,1607\nadvises,1,timonofathens,1607\nHear,1,timonofathens,1607\nchurlish,1,timonofathens,1607\nPity,1,timonofathens,1607\nrank'd,1,timonofathens,1607\ntruer,1,timonofathens,1607\nnecessities,1,timonofathens,1607\nlevity's,1,timonofathens,1607\nforswear,1,timonofathens,1607\nadoring,1,timonofathens,1607\nspan,1,timonofathens,1607\nscouring,1,timonofathens,1607\nwrit,1,timonofathens,1607\nunicorn,1,timonofathens,1607\nlawyer's,1,timonofathens,1607\npossible,1,timonofathens,1607\nespecially,1,timonofathens,1607\nknell,1,timonofathens,1607\nTear,1,timonofathens,1607\nTrouble,1,timonofathens,1607\nwoman's,1,timonofathens,1607\ntravail,1,timonofathens,1607\nexcrement,1,timonofathens,1607\nJoin,1,timonofathens,1607\ntorn,1,timonofathens,1607\nflush,1,timonofathens,1607\nrag,1,timonofathens,1607\nhonours,1,timonofathens,1607\nroyal,1,timonofathens,1607\nFit,1,timonofathens,1607\nexhaust,1,timonofathens,1607\nunscarr'd,1,timonofathens,1607\nLucullus',1,timonofathens,1607\njacks,1,timonofathens,1607\nrode,1,timonofathens,1607\nConvert,1,timonofathens,1607\ndepraved,1,timonofathens,1607\nbreathless,1,timonofathens,1607\nfoolery,1,timonofathens,1607\nsupport,1,timonofathens,1607\ndepraves,1,timonofathens,1607\nassured,1,timonofathens,1607\nunbolt,1,timonofathens,1607\nrob,1,timonofathens,1607\nrod,1,timonofathens,1607\nsuppose,1,timonofathens,1607\nmatron,1,timonofathens,1607\ninterpreter,1,timonofathens,1607\nheart's,1,timonofathens,1607\nWilt,1,timonofathens,1607\nembalms,1,timonofathens,1607\nuncovered,1,timonofathens,1607\nassistance,1,timonofathens,1607\njoy,1,timonofathens,1607\nWomen,1,timonofathens,1607\neasily,1,timonofathens,1607\nwhips,1,timonofathens,1607\nsimpler,1,timonofathens,1607\nreside,1,timonofathens,1607\njot,1,timonofathens,1607\nspeedy,1,timonofathens,1607\ndips,1,timonofathens,1607\nheld,1,timonofathens,1607\nNever,1,timonofathens,1607\nsleeps,1,timonofathens,1607\nspade,1,timonofathens,1607\nwindpipe's,1,timonofathens,1607\nsometime't,1,timonofathens,1607\ndish,1,timonofathens,1607\nmess,1,timonofathens,1607\nflung,1,timonofathens,1607\npoisonous,1,timonofathens,1607\ndependants,1,timonofathens,1607\nHortensius,1,timonofathens,1607\nsingly,1,timonofathens,1607\nsleepy,1,timonofathens,1607\nNeptune,1,timonofathens,1607\ntrump,1,timonofathens,1607\nPlutus,1,timonofathens,1607\njoint,1,timonofathens,1607\ncontract,1,timonofathens,1607\nclothes,1,timonofathens,1607\nfinger,1,timonofathens,1607\nplainer,1,timonofathens,1607\naptly,1,timonofathens,1607\ndecay,1,timonofathens,1607\nEither,1,timonofathens,1607\nWhereat,1,timonofathens,1607\nsecurity,1,timonofathens,1607\nShouldst,1,timonofathens,1607\nprisoner,1,timonofathens,1607\nlutes,1,timonofathens,1607\nprosperous,1,timonofathens,1607\naprons,1,timonofathens,1607\ncomest,1,timonofathens,1607\nlearn'd,1,timonofathens,1607\nequall'd,1,timonofathens,1607\nrumour,1,timonofathens,1607\ndive,1,timonofathens,1607\nhearted,1,timonofathens,1607\noffer,1,timonofathens,1607\nproperer,1,timonofathens,1607\nCries,1,timonofathens,1607\nrid,1,timonofathens,1607\nAmazon,1,timonofathens,1607\nhanged,1,timonofathens,1607\nadvance,1,timonofathens,1607\nthirteen,1,timonofathens,1607\nsuccession,1,timonofathens,1607\nmaintain,1,timonofathens,1607\nlick,1,timonofathens,1607\nalthough,1,timonofathens,1607\nderive,1,timonofathens,1607\nwithal,1,timonofathens,1607\ncowardice,1,timonofathens,1607\nterribly,1,timonofathens,1607\nhorrid,1,timonofathens,1607\nalighted,1,timonofathens,1607\nbeckon'd,1,timonofathens,1607\ncommence,1,timonofathens,1607\nterrible,1,timonofathens,1607\ninnocence,1,timonofathens,1607\nlackest,1,timonofathens,1607\nfoals,1,timonofathens,1607\npatron,1,timonofathens,1607\nditches,1,timonofathens,1607\nRotten,1,timonofathens,1607\nlively,1,timonofathens,1607\nworshipp'd,1,timonofathens,1607\niron,1,timonofathens,1607\nabsolute,1,timonofathens,1607\nsmooth'd,1,timonofathens,1607\nkinder,1,timonofathens,1607\nworks,1,timonofathens,1607\nenfranchised,1,timonofathens,1607\ncheques,1,timonofathens,1607\nPERSONAE,1,timonofathens,1607\nwither,1,timonofathens,1607\nproclaim,1,timonofathens,1607\ndemand,1,timonofathens,1607\nsaved,1,timonofathens,1607\ncrutch,1,timonofathens,1607\ncase,1,timonofathens,1607\nFlow,1,timonofathens,1607\nuntirable,1,timonofathens,1607\nargues,1,timonofathens,1607\nweepest,1,timonofathens,1607\nPrompted,1,timonofathens,1607\nmistook,1,timonofathens,1607\nlustre,1,timonofathens,1607\nbeneath,1,timonofathens,1607\nEarth,1,timonofathens,1607\npassions,1,timonofathens,1607\nreign,1,timonofathens,1607\nchid,1,timonofathens,1607\nfracted,1,timonofathens,1607\nwhittle,1,timonofathens,1607\nseven,1,timonofathens,1607\nshrinks,1,timonofathens,1607\nrepays,1,timonofathens,1607\nsurfeit,1,timonofathens,1607\nthievery,1,timonofathens,1607\nbirth,1,timonofathens,1607\nlacks,1,timonofathens,1607\nbates,1,timonofathens,1607\nland's,1,timonofathens,1607\nsad,1,timonofathens,1607\nbrothel,1,timonofathens,1607\nthank'd,1,timonofathens,1607\nwander'd,1,timonofathens,1607\nAfter,1,timonofathens,1607\ncamp,1,timonofathens,1607\nfriend's,1,timonofathens,1607\ncan't,1,timonofathens,1607\ndrive,1,timonofathens,1607\nslept,1,timonofathens,1607\nenemies',1,timonofathens,1607\nwhirlwind,1,timonofathens,1607\nBloody,1,timonofathens,1607\nruin'd,1,timonofathens,1607\nthousands,1,timonofathens,1607\nsold,1,timonofathens,1607\nmatters,1,timonofathens,1607\nrelieve,1,timonofathens,1607\nhappened,1,timonofathens,1607\nsaw,1,timonofathens,1607\noutside,1,timonofathens,1607\nscarlet,1,timonofathens,1607\nassembly,1,timonofathens,1607\nJove,1,timonofathens,1607\natone,1,timonofathens,1607\npill,1,timonofathens,1607\nthou'st,1,timonofathens,1607\nbaths,1,timonofathens,1607\ndram,1,timonofathens,1607\npersuading,1,timonofathens,1607\nendow'd,1,timonofathens,1607\nremotion,1,timonofathens,1607\ngracious,1,timonofathens,1607\nmind's,1,timonofathens,1607\nbroken,1,timonofathens,1607\nYe're,1,timonofathens,1607\nProvokes,1,timonofathens,1607\novercome,1,timonofathens,1607\ntraffics,1,timonofathens,1607\ncorse,1,timonofathens,1607\nhonestly,1,timonofathens,1607\nheat,1,timonofathens,1607\nheal,1,timonofathens,1607\nGramercies,1,timonofathens,1607\nvisitors,1,timonofathens,1607\npursy,1,timonofathens,1607\nOnly,1,timonofathens,1607\ncheek,1,timonofathens,1607\nexactest,1,timonofathens,1607\ndiscontentedly,1,timonofathens,1607\npolicy,1,timonofathens,1607\nbabes,1,timonofathens,1607\ngolden,1,timonofathens,1607\nsoil,1,timonofathens,1607\ndemands,1,timonofathens,1607\npaper,1,timonofathens,1607\nYield,1,timonofathens,1607\nglass,1,timonofathens,1607\nTraffic's,1,timonofathens,1607\ndeities,1,timonofathens,1607\nsixteen,1,timonofathens,1607\nlikeness,1,timonofathens,1607\nresumes,1,timonofathens,1607\nImportune,1,timonofathens,1607\nteach,1,timonofathens,1607\nSmells,1,timonofathens,1607\nricher,1,timonofathens,1607\nwafts,1,timonofathens,1607\nbenefits,1,timonofathens,1607\nnutriment,1,timonofathens,1607\nbackwardly,1,timonofathens,1607\nfreedom,1,timonofathens,1607\npurity,1,timonofathens,1607\nMisanthropos,1,timonofathens,1607\nlesser,1,timonofathens,1607\ntoss'd,1,timonofathens,1607\nSenate,1,timonofathens,1607\nboar,1,timonofathens,1607\nslippery,1,timonofathens,1607\nasked,1,timonofathens,1607\nbelieve't,1,timonofathens,1607\nvisitation,1,timonofathens,1607\nmoving,1,timonofathens,1607\ncompanies,1,timonofathens,1607\ncounterpoise,1,timonofathens,1607\nlobbies,1,timonofathens,1607\nsolidares,1,timonofathens,1607\nriotous,1,timonofathens,1607\nstealth,1,timonofathens,1607\ndiscovery,1,timonofathens,1607\nowners,1,timonofathens,1607\nPerchance,1,timonofathens,1607\ndeserve,1,timonofathens,1607\ngodheads,1,timonofathens,1607\nseeking,1,timonofathens,1607\nlasts,1,timonofathens,1607\nMistake,1,timonofathens,1607\nNewly,1,timonofathens,1607\nflashes,1,timonofathens,1607\nsuns,1,timonofathens,1607\ncustoms,1,timonofathens,1607\ncherubim,1,timonofathens,1607\nthroned,1,timonofathens,1607\nI'd,1,timonofathens,1607\nafflict,1,timonofathens,1607\nquickening,1,timonofathens,1607\nWrought,1,timonofathens,1607\nfaithfully,1,timonofathens,1607\nreturned,1,timonofathens,1607\nconception,1,timonofathens,1607\nbody,1,timonofathens,1607\nantidotes,1,timonofathens,1607\ncourtly,1,timonofathens,1607\nwrench,1,timonofathens,1607\nthou't,1,timonofathens,1607\npurses,1,timonofathens,1607\nages,1,timonofathens,1607\nopulency,1,timonofathens,1607\nthink'st,1,timonofathens,1607\ngerman,1,timonofathens,1607\nnoised,1,timonofathens,1607\njeweller,1,timonofathens,1607\ndispossess,1,timonofathens,1607\nbroach,1,timonofathens,1607\nDues,1,timonofathens,1607\nfelon,1,timonofathens,1607\nwalk,1,timonofathens,1607\nsaying,1,timonofathens,1607\nillustrious,1,timonofathens,1607\nthatch,1,timonofathens,1607\nApemantus',1,timonofathens,1607\nmocking,1,timonofathens,1607\nDeserved,1,timonofathens,1607\nthrongs,1,timonofathens,1607\ndeceives,1,timonofathens,1607\n'When,1,timonofathens,1607\ntouches,1,timonofathens,1607\nfamish'd,1,timonofathens,1607\nthrone,1,timonofathens,1607\nsuit,1,timonofathens,1607\nscorn,1,timonofathens,1607\nsnatches,1,timonofathens,1607\nspy,1,timonofathens,1607\nobservances,1,timonofathens,1607\nconcern,1,timonofathens,1607\nforsake,1,timonofathens,1607\nscore,1,timonofathens,1607\nperil,1,timonofathens,1607\ncradle,1,timonofathens,1607\nsuitable,1,timonofathens,1607\nsow,1,timonofathens,1607\nson,1,timonofathens,1607\nskill,1,timonofathens,1607\nCandied,1,timonofathens,1607\nraised,1,timonofathens,1607\nplenty,1,timonofathens,1607\nunhoused,1,timonofathens,1607\nCommon,1,timonofathens,1607\nlooking,1,timonofathens,1607\nwhere's,1,timonofathens,1607\n'I,1,timonofathens,1607\ndividant,1,timonofathens,1607\ndignities,1,timonofathens,1607\nexceptless,1,timonofathens,1607\nattends,1,timonofathens,1607\nMagic,1,timonofathens,1607\nFlinty,1,timonofathens,1607\n's,1,timonofathens,1607\nlivery,1,timonofathens,1607\ntestament,1,timonofathens,1607\nacquainted,1,timonofathens,1607\nsecond,1,timonofathens,1607\nmiddle,1,timonofathens,1607\nhunted,1,timonofathens,1607\nwages,1,timonofathens,1607\nlevel,1,timonofathens,1607\ninstruct,1,timonofathens,1607\ngroans,1,timonofathens,1607\nOther,1,timonofathens,1607\nsuck,1,timonofathens,1607\nyonder's,1,timonofathens,1607\nmother,1,timonofathens,1607\nthin,1,timonofathens,1607\nbridge,1,timonofathens,1607\nCripple,1,timonofathens,1607\nquittance,1,timonofathens,1607\nAthenian's,1,timonofathens,1607\nsends,1,timonofathens,1607\nthroes,1,timonofathens,1607\npoverty,1,timonofathens,1607\ncheers,1,timonofathens,1607\nbray'd,1,timonofathens,1607\nsatiety,1,timonofathens,1607\ndeclining,1,timonofathens,1607\nminion,1,timonofathens,1607\noffence,1,timonofathens,1607\ndiligent,1,timonofathens,1607\nvile,1,timonofathens,1607\neverlasting,1,timonofathens,1607\nImmortal,1,timonofathens,1607\ntapsters,1,timonofathens,1607\nheavens,1,timonofathens,1607\nguide,1,timonofathens,1607\nrecoverable,1,timonofathens,1607\nfight,1,timonofathens,1607\npasses,1,timonofathens,1607\nhautboys,1,timonofathens,1607\nreadiest,1,timonofathens,1607\nsnow,1,timonofathens,1607\nreceives,1,timonofathens,1607\npoints,1,timonofathens,1607\nunkindly,1,timonofathens,1607\nmonster,1,timonofathens,1607\nunclew,1,timonofathens,1607\ncompassion,1,timonofathens,1607\nenforcedly,1,timonofathens,1607\nSettlest,1,timonofathens,1607\ncourtier,1,timonofathens,1607\nBe't,1,timonofathens,1607\nshower,1,timonofathens,1607\ntwelve,1,timonofathens,1607\nways,1,timonofathens,1607\nOfficers,1,timonofathens,1607\ngive't,1,timonofathens,1607\nbore,1,timonofathens,1607\nloathes,1,timonofathens,1607\nestimate,1,timonofathens,1607\nimported,1,timonofathens,1607\nfigure,1,timonofathens,1607\nOwe,1,timonofathens,1607\npersonate,1,timonofathens,1607\ncivil,1,timonofathens,1607\nproceeded,1,timonofathens,1607\naccepts,1,timonofathens,1607\ncomely,1,timonofathens,1607\ndirect,1,timonofathens,1607\nabsence,1,timonofathens,1607\nWhereon,1,timonofathens,1607\ndraughts,1,timonofathens,1607\nWilling,1,timonofathens,1607\nencounter'd,1,timonofathens,1607\n'ldst,1,timonofathens,1607\nexceeding,1,timonofathens,1607\nloathed,1,timonofathens,1607\nFlavius,1,timonofathens,1607\ncashiered,1,timonofathens,1607\nabhorr'd,1,timonofathens,1607\nconfer,1,timonofathens,1607\ncoil's,1,timonofathens,1607\ncommit,1,timonofathens,1607\ncherish,1,timonofathens,1607\nvirgin's,1,timonofathens,1607\nSound,1,timonofathens,1607\nPardon,1,timonofathens,1607\nexpedition,1,timonofathens,1607\nshowers,1,timonofathens,1607\naustere,1,timonofathens,1607\nwilling,1,timonofathens,1607\nmaster',1,timonofathens,1607\nflattered,1,timonofathens,1607\nthaw,1,timonofathens,1607\nWhilst,1,timonofathens,1607\ncrossing,1,timonofathens,1607\nsue,1,timonofathens,1607\nphysicians,1,timonofathens,1607\ngovern'd,1,timonofathens,1607\nBuried,1,timonofathens,1607\nuncharged,1,timonofathens,1607\nelder,1,timonofathens,1607\nvanity,1,timonofathens,1607\ncompanion,1,timonofathens,1607\nreverence,1,timonofathens,1607\nfearful,1,timonofathens,1607\nbride,1,timonofathens,1607\npainfully,1,timonofathens,1607\nWant,1,timonofathens,1607\nthing's,1,timonofathens,1607\naccompanying,1,timonofathens,1607\nfees,1,timonofathens,1607\nSpare,1,timonofathens,1607\ncleave,1,timonofathens,1607\ngrow,1,timonofathens,1607\ndirected,1,timonofathens,1607\ndescend,1,timonofathens,1607\nbrief,1,timonofathens,1607\nneighbourhood,1,timonofathens,1607\nsuffering,1,timonofathens,1607\nbaser,1,timonofathens,1607\nbrink,1,timonofathens,1607\nancient,1,timonofathens,1607\nBanishment,1,timonofathens,1607\ncaptainship,1,timonofathens,1607\nwind,1,timonofathens,1607\nrude,1,timonofathens,1607\nwing,1,timonofathens,1607\nwishes,1,timonofathens,1607\nwink,1,timonofathens,1607\nprevent,1,timonofathens,1607\nprized,1,timonofathens,1607\nredeem'd,1,timonofathens,1607\nporter,1,timonofathens,1607\nputting,1,timonofathens,1607\nprofessions,1,timonofathens,1607\nFly,1,timonofathens,1607\nsoldier,1,timonofathens,1607\nrejoices,1,timonofathens,1607\nhumidity,1,timonofathens,1607\ncoins,1,timonofathens,1607\nvestments,1,timonofathens,1607\nwished,1,timonofathens,1607\nlanguage,1,timonofathens,1607\nmoneys,1,timonofathens,1607\nsphere,1,timonofathens,1607\nrarely,1,timonofathens,1607\nMight,1,timonofathens,1607\nBlow,1,timonofathens,1607\nnight's,1,timonofathens,1607\nspital,1,timonofathens,1607\nseems,1,timonofathens,1607\nlatter,1,timonofathens,1607\nlength,1,timonofathens,1607\nknees,1,timonofathens,1607\nContain,1,timonofathens,1607\nusury,1,timonofathens,1607\nexpressly,1,timonofathens,1607\npeasants,1,timonofathens,1607\nclamourous,1,timonofathens,1607\ncrisp,1,timonofathens,1607\nDuty,1,timonofathens,1607\ndedication,1,timonofathens,1607\nwipe,1,timonofathens,1607\nSuspect,1,timonofathens,1607\nTaste,1,timonofathens,1607\ntrifles,1,timonofathens,1607\npuff'd,1,timonofathens,1607\nrenew,1,timonofathens,1607\nrequests,1,timonofathens,1607\nseest,1,timonofathens,1607\ndied,1,timonofathens,1607\nabhorr'dst,1,timonofathens,1607\napproachers,1,timonofathens,1607\nthrown,1,timonofathens,1607\ndispleasure,1,timonofathens,1607\npierce,1,timonofathens,1607\nwindow,1,timonofathens,1607\nworld's,1,timonofathens,1607\npenurious,1,timonofathens,1607\nbidding,1,timonofathens,1607\nmalady,1,timonofathens,1607\nharbour,1,timonofathens,1607\npitch'd,1,timonofathens,1607\nwars,1,timonofathens,1607\ncrouching,1,timonofathens,1607\nbreeding,1,timonofathens,1607\nThrong'd,1,timonofathens,1607\nBurn,1,timonofathens,1607\nmelted,1,timonofathens,1607\ndistress,1,timonofathens,1607\ndich,1,timonofathens,1607\ngesture,1,timonofathens,1607\nwits,1,timonofathens,1607\nroofs,1,timonofathens,1607\nbook,1,timonofathens,1607\nseethe,1,timonofathens,1607\nmarrow,1,timonofathens,1607\nmanhood,1,timonofathens,1607\nSupply,1,timonofathens,1607\nbright,1,timonofathens,1607\ngramercy,1,timonofathens,1607\nframed,1,timonofathens,1607\nfeeders,1,timonofathens,1607\nuncheque'd,1,timonofathens,1607\nDraw,1,timonofathens,1607\nobjects,1,timonofathens,1607\nhungry,1,timonofathens,1607\nrioter,1,timonofathens,1607\nconquer,1,timonofathens,1607\nrespectively,1,timonofathens,1607\nfairest,1,timonofathens,1607\naspect,1,timonofathens,1607\nsprinkles,1,timonofathens,1607\nbig,1,timonofathens,1607\nsenses,1,timonofathens,1607\nshorter,1,timonofathens,1607\nwherefore,1,timonofathens,1607\ndrove,1,timonofathens,1607\nsacrificial,1,timonofathens,1607\npreferr'd,1,timonofathens,1607\nregardfully,1,timonofathens,1607\nlife's,1,timonofathens,1607\nchamber,1,timonofathens,1607\nstir,1,timonofathens,1607\nsequence,1,timonofathens,1607\nunkind,1,timonofathens,1607\nLeaving,1,timonofathens,1607\nbountifully,1,timonofathens,1607\nHold,1,timonofathens,1607\nhap,1,timonofathens,1607\nvisible,1,timonofathens,1607\nhat,1,timonofathens,1607\nbacks,1,timonofathens,1607\ncontumelious,1,timonofathens,1607\nwanting,1,timonofathens,1607\nmeasure,1,timonofathens,1607\nresemble,1,timonofathens,1607\n'Twere,1,timonofathens,1607\nflattery,1,timonofathens,1607\nperfection,1,timonofathens,1607\ninfection,1,timonofathens,1607\nAm,1,timonofathens,1607\nshowing,1,timonofathens,1607\nactivity,1,timonofathens,1607\nleech,1,timonofathens,1607\nWalks,1,timonofathens,1607\ntransformation,1,timonofathens,1607\nscarce,1,timonofathens,1607\nmotives,1,timonofathens,1607\nbox,1,timonofathens,1607\nboy,1,timonofathens,1607\ngrise,1,timonofathens,1607\nstrangers,1,timonofathens,1607\nknowing,1,timonofathens,1607\ntraversed,1,timonofathens,1607\nhew,1,timonofathens,1607\nhem,1,timonofathens,1607\nLa,1,timonofathens,1607\nHaving,1,timonofathens,1607\nspots,1,timonofathens,1607\nPlay,1,timonofathens,1607\nDrink,1,timonofathens,1607\nunmanly,1,timonofathens,1607\ninclined,1,timonofathens,1607\nbay,1,timonofathens,1607\nharlot,1,timonofathens,1607\nsiege,1,timonofathens,1607\nperfume,1,timonofathens,1607\npays,1,timonofathens,1607\nMatrons,1,timonofathens,1607\nCeremony,1,timonofathens,1607\nWoods,1,timonofathens,1607\ncruel,1,timonofathens,1607\ncreature,1,timonofathens,1607\nbeautiful,1,timonofathens,1607\nstar,1,timonofathens,1607\nexceed,1,timonofathens,1607\nvoid,1,timonofathens,1607\nconflicting,1,timonofathens,1607\nstab,1,timonofathens,1607\nDecline,1,timonofathens,1607\nsings,1,timonofathens,1607\nDerive,1,timonofathens,1607\npawn,1,timonofathens,1607\nhid,1,timonofathens,1607\nfinds,1,timonofathens,1607\nAsses,1,timonofathens,1607\nwisdom,1,timonofathens,1607\nconceived,1,timonofathens,1607\noathable,1,timonofathens,1607\nremainder,1,timonofathens,1607\npersonating,1,timonofathens,1607\nhit,1,timonofathens,1607\nSomething,1,timonofathens,1607\nLoaden,1,timonofathens,1607\nbeg,1,timonofathens,1607\nRaise,1,timonofathens,1607\nrequires,1,timonofathens,1607\nunruly,1,timonofathens,1607\nblest,1,timonofathens,1607\nrigg'st,1,timonofathens,1607\nReligious,1,timonofathens,1607\nsurely,1,timonofathens,1607\nruffians,1,timonofathens,1607\nPiety,1,timonofathens,1607\ndenial,1,timonofathens,1607\nthan's,1,timonofathens,1607\nadded,1,timonofathens,1607\nplay,1,timonofathens,1607\nsport,1,timonofathens,1607\nadder,1,timonofathens,1607\nbuys,1,timonofathens,1607\ntroops,1,timonofathens,1607\nmeals,1,timonofathens,1607\nunmatched,1,timonofathens,1607\npox,1,timonofathens,1607\nScarce,1,timonofathens,1607\nVI,1,timonofathens,1607\nmatches,1,timonofathens,1607\nmisbegot,1,timonofathens,1607\nGold,1,timonofathens,1607\nnobly,1,timonofathens,1607\nLights,1,timonofathens,1607\nshunn'd,1,timonofathens,1607\nallure,1,timonofathens,1607\ntemple,1,timonofathens,1607\nobey,1,timonofathens,1607\nfashionable,1,timonofathens,1607\nulcerous,1,timonofathens,1607\nRetires,1,timonofathens,1607\nForgive,1,timonofathens,1607\nbums,1,timonofathens,1607\nliquorish,1,timonofathens,1607\nwhisperings,1,timonofathens,1607\nmountain's,1,timonofathens,1607\nresolves,1,timonofathens,1607\nminstrelsy,1,timonofathens,1607\nThou'rt,1,timonofathens,1607\nbulk,1,timonofathens,1607\nabides,1,timonofathens,1607\nDrum,1,timonofathens,1607\nwhereby,1,timonofathens,1607\ncanker,1,timonofathens,1607\nmetal,1,timonofathens,1607\nbush,1,timonofathens,1607\ndays',1,timonofathens,1607\nPresent,1,timonofathens,1607\nbury,1,timonofathens,1607\nprolong,1,timonofathens,1607\nsuffer'd,1,timonofathens,1607\nwhoso,1,timonofathens,1607\nsorts,1,timonofathens,1607\ncovetously,1,timonofathens,1607\npresentment,1,timonofathens,1607\nchildren,1,timonofathens,1607\nsaw'st,1,timonofathens,1607\nstruck,1,timonofathens,1607\nreeking,1,timonofathens,1607\nConsuming,1,timonofathens,1607\nbankrupts,1,timonofathens,1607\nawaked,1,timonofathens,1607\ndesirous,1,timonofathens,1607\nerection,1,timonofathens,1607\naccounts,1,timonofathens,1607\nSurely,1,timonofathens,1607\nfriends',1,timonofathens,1607\nstrives,1,timonofathens,1607\nSlink,1,timonofathens,1607\nimmediate,1,timonofathens,1607\nhungerly,1,timonofathens,1607\ndevised,1,timonofathens,1607\nweightier,1,timonofathens,1607\nlearned,1,timonofathens,1607\nweak,1,timonofathens,1607\nweal,1,timonofathens,1607\nlatest,1,timonofathens,1607\nkindnesses,1,timonofathens,1607\nBreath,1,timonofathens,1607\nEntreat,1,timonofathens,1607\ninfectious,1,timonofathens,1607\nBehold,1,timonofathens,1607\nLabouring,1,timonofathens,1607\nDoubled,1,timonofathens,1607\nsustain,1,timonofathens,1607\ngum,1,timonofathens,1607\nHappier,1,timonofathens,1607\nbuildings,1,timonofathens,1607\nplanetary,1,timonofathens,1607\nequals,1,timonofathens,1607\nPlays,1,timonofathens,1607\nplough,1,timonofathens,1607\nPhrynia,1,timonofathens,1607\ngore,1,timonofathens,1607\nTucket,1,timonofathens,1607\nusurers,1,timonofathens,1607\nPrescribe,1,timonofathens,1607\ncauterizing,1,timonofathens,1607\ntwice,1,timonofathens,1607\npersuasion,1,timonofathens,1607\ngaol,1,timonofathens,1607\nsilk,1,timonofathens,1607\ntedious,1,timonofathens,1607\ndegree,1,timonofathens,1607\napprehendest,1,timonofathens,1607\nvaults,1,timonofathens,1607\nswift,1,timonofathens,1607\nlikest,1,timonofathens,1607\nvows,1,timonofathens,1607\nmystery,1,timonofathens,1607\ntowardly,1,timonofathens,1607\nAbove,1,timonofathens,1607\npreserve,1,timonofathens,1607\ncruelly,1,timonofathens,1607\nEnough,1,timonofathens,1607\nadmired,1,timonofathens,1607\nswine,1,timonofathens,1607\ncouch'd,1,timonofathens,1607\nsins,1,timonofathens,1607\nToad,1,timonofathens,1607\ngate,1,timonofathens,1607\nUncover,1,timonofathens,1607\n'Twas,1,timonofathens,1607\nharlots,1,timonofathens,1607\nbeds,1,timonofathens,1607\nTranslates,1,timonofathens,1607\nsister's,1,timonofathens,1607\nWhither,1,timonofathens,1607\nashamed,1,timonofathens,1607\nreligions,1,timonofathens,1607\nimmortal,1,timonofathens,1607\nlately,1,timonofathens,1607\nresort,1,timonofathens,1607\ntrades,1,timonofathens,1607\nhurts,1,timonofathens,1607\nopens,1,timonofathens,1607\nbegin,1,timonofathens,1607\nName,1,timonofathens,1607\nchafes,1,timonofathens,1607\nuses,1,timonofathens,1607\narrogant,1,timonofathens,1607\nnoted,1,timonofathens,1607\nstorm,1,timonofathens,1607\nLips,1,timonofathens,1607\nsingles,1,timonofathens,1607\naffection,1,timonofathens,1607\npromised,1,timonofathens,1607\ncourier,1,timonofathens,1607\nharness,1,timonofathens,1607\nmood,1,timonofathens,1607\nplate,1,timonofathens,1607\npapers,1,timonofathens,1607\nbetray,1,timonofathens,1607\nclear'd,1,timonofathens,1607\nvoyage,1,timonofathens,1607\nimpossibilities,1,timonofathens,1607\nkeeping,1,timonofathens,1607\nconsecrated,1,timonofathens,1607\ndoit,1,timonofathens,1607\nrepent,1,timonofathens,1607\nfaster,1,timonofathens,1607\nBest,1,timonofathens,1607\nconsider,1,timonofathens,1607\ncurrent,1,timonofathens,1607\ndeck,1,timonofathens,1607\ntruest,1,timonofathens,1607\nwreck,1,timonofathens,1607\nstool,1,timonofathens,1607\ngain,1,timonofathens,1607\ncaptains',1,timonofathens,1607\ntongues,1,timonofathens,1607\nPass,1,timonofathens,1607\nnotes,1,timonofathens,1607\nago,1,timonofathens,1607\ncaitiff,1,timonofathens,1607\ngilt,1,timonofathens,1607\nexpose,1,timonofathens,1607\nScorn'dst,1,timonofathens,1607\nliberal,1,timonofathens,1607\ngait,1,timonofathens,1607\ndeaf,1,timonofathens,1607\nworthily,1,timonofathens,1607\nlikely,1,timonofathens,1607\nbefriend,1,timonofathens,1607\nPays,1,timonofathens,1607\ninterim,1,timonofathens,1607\nTeems,1,timonofathens,1607\nBesides,1,timonofathens,1607\nReturn,1,timonofathens,1607\nredress,1,timonofathens,1607\nicy,1,timonofathens,1607\nPlagues,1,timonofathens,1607\nhusband,1,timonofathens,1607\naccused,1,timonofathens,1607\nsects,1,timonofathens,1607\nsack,1,timonofathens,1607\nlaughing,1,timonofathens,1607\nHyperion's,1,timonofathens,1607\nbluster,1,timonofathens,1607\ngenerally,1,timonofathens,1607\nice,1,timonofathens,1607\n'Here,1,timonofathens,1607\noutrunnest,1,timonofathens,1607\nburied,1,timonofathens,1607\npaintings,1,timonofathens,1607\nmakest,1,timonofathens,1607\ncomforts,1,timonofathens,1607\nspeed,1,timonofathens,1607\ntrusters',1,timonofathens,1607\nPawn,1,timonofathens,1607\nmemory,1,timonofathens,1607\nau,1,timonofathens,1607\nreckon,1,timonofathens,1607\nslips,1,timonofathens,1607\nclasp'd,1,timonofathens,1607\nmindless,1,timonofathens,1607\nbotch'd,1,timonofathens,1607\nsciatica,1,timonofathens,1607\nfourscore,1,timonofathens,1607\nnewly,1,timonofathens,1607\nbless'd,1,timonofathens,1607\nardent,1,timonofathens,1607\nrumours,1,timonofathens,1607\nsugar'd,1,timonofathens,1607\nmove,1,timonofathens,1607\napprobation,1,timonofathens,1607\nYonder,1,timonofathens,1607\nmonth,1,timonofathens,1607\ncrossed,1,timonofathens,1607\ncommendations,1,timonofathens,1607\nwisely,1,timonofathens,1607\nOthers,1,timonofathens,1607\nstrait,1,timonofathens,1607\ncrave,1,timonofathens,1607\nidly,1,timonofathens,1607\nwrinkles,1,timonofathens,1607\ngluttonous,1,timonofathens,1607\neyeless,1,timonofathens,1607\nwrinkled,1,timonofathens,1607\nrequesting,1,timonofathens,1607\nrampired,1,timonofathens,1607\nLays,1,timonofathens,1607\nroute,1,timonofathens,1607\nReads,1,timonofathens,1607\nmilky,1,timonofathens,1607\ndog's,1,timonofathens,1607\nInfects,1,timonofathens,1607\nReady,1,timonofathens,1607\ntemper,1,timonofathens,1607\ncrimes,1,timonofathens,1607\n'twould,1,timonofathens,1607\napplauding,1,timonofathens,1607\nlover,1,timonofathens,1607\nHostilius,1,timonofathens,1607\nstout,1,timonofathens,1607\nloud,1,timonofathens,1607\nshrilly,1,timonofathens,1607\noffer'd,1,timonofathens,1607\nFriendship's,1,timonofathens,1607\nYea,1,timonofathens,1607\nalteration,1,timonofathens,1607\nloss,1,timonofathens,1607\nWouldst,1,timonofathens,1607\n'bove,1,timonofathens,1607\ncommands,1,timonofathens,1607\ndrift,1,timonofathens,1607\nadd,1,timonofathens,1607\ndragons,1,timonofathens,1607\nample,1,timonofathens,1607\ncurl'd,1,timonofathens,1607\ndumbness,1,timonofathens,1607\nlest,1,timonofathens,1607\ntalkest,1,timonofathens,1607\npotent,1,timonofathens,1607\ndispose,1,timonofathens,1607\nexpel,1,timonofathens,1607\ndevil,1,timonofathens,1607\nfilling,1,timonofathens,1607\nknot,1,timonofathens,1607\ndisport,1,timonofathens,1607\nblue,1,timonofathens,1607\nhostile,1,timonofathens,1607\ngreases,1,timonofathens,1607\nnecessary,1,timonofathens,1607\nact,1,timonofathens,1607\nstraggling,1,timonofathens,1607\nnatured,1,timonofathens,1607\ngreater,1,timonofathens,1607\nready,1,timonofathens,1607\noutrages,1,timonofathens,1607\nCreep,1,timonofathens,1607\nAdmirable,1,timonofathens,1607\ncastigate,1,timonofathens,1607\nserious,1,timonofathens,1607\ntyrants,1,timonofathens,1607\nattain,1,timonofathens,1607\njourney,1,timonofathens,1607\ntriumphers,1,timonofathens,1607\nbenefactors,1,timonofathens,1607\noppressing,1,timonofathens,1607\nBecause,1,timonofathens,1607\nincontinent,1,timonofathens,1607\ntoad,1,timonofathens,1607\nload,1,timonofathens,1607\nbriers,1,timonofathens,1607\npaps,1,timonofathens,1607\nCame,1,timonofathens,1607\nclimb,1,timonofathens,1607\nthrice,1,timonofathens,1607\nkilled,1,timonofathens,1607\nwasteful,1,timonofathens,1607\ngraves,1,timonofathens,1607\nWhence,1,timonofathens,1607\nSeeing,1,timonofathens,1607\nexecuted,1,timonofathens,1607\nfierce,1,timonofathens,1607\nslide,1,timonofathens,1607\naxe,1,timonofathens,1607\nBreak,1,timonofathens,1607\nweeks,1,timonofathens,1607\nwards,1,timonofathens,1607\nremember'd,1,timonofathens,1607\nenglutted,1,timonofathens,1607\nafford,1,timonofathens,1607\nhug,1,timonofathens,1607\nmanifold,1,timonofathens,1607\nmessenger,1,timonofathens,1607\ncrop,1,timonofathens,1607\nknit,1,timonofathens,1607\nsenseless,1,timonofathens,1607\nbasest,1,timonofathens,1607\nimpression,1,timonofathens,1607\nmysteries,1,timonofathens,1607\npale,1,timonofathens,1607\npalm,1,timonofathens,1607\nfashion'd,1,timonofathens,1607\nemploy'd,1,timonofathens,1607\nthrift,1,timonofathens,1607\npalate,1,timonofathens,1607\nkiller,1,timonofathens,1607\nspur,1,timonofathens,1607\ncall'd,1,timonofathens,1607\ntreads,1,timonofathens,1607\ninterpret,1,timonofathens,1607\nt',1,timonofathens,1607\nappears,1,timonofathens,1607\nconsume,1,timonofathens,1607\nLady,1,timonofathens,1607\nnobleness,1,timonofathens,1607\nreach,1,timonofathens,1607\nfrequents,1,timonofathens,1607\nFull,1,timonofathens,1607\nthinkest,1,timonofathens,1607\nplain,1,timonofathens,1607\nsurges,1,timonofathens,1607\nfeasted,1,timonofathens,1607\nbeweep,1,timonofathens,1607\npant,1,timonofathens,1607\njoyful,1,timonofathens,1607\nremembrances,1,timonofathens,1607\ntract,1,timonofathens,1607\nmighty,1,timonofathens,1607\nhalt,1,timonofathens,1607\nperpetual,1,timonofathens,1607\npluck,1,timonofathens,1607\nPush,1,timonofathens,1607\nwhether,1,timonofathens,1607\nexpect,1,timonofathens,1607\nUnder,1,timonofathens,1607\ndisfurnish,1,timonofathens,1607\nShe's,1,timonofathens,1607\nkingdoms,1,timonofathens,1607\ncharmed,1,timonofathens,1607\nHug,1,timonofathens,1607\npain,1,timonofathens,1607\nhangs,1,timonofathens,1607\nLaid,1,timonofathens,1607\nreturn'd,1,timonofathens,1607\nwinter's,1,timonofathens,1607\nspit,1,timonofathens,1607\nsignet,1,timonofathens,1607\nextremest,1,timonofathens,1607\nmended,1,timonofathens,1607\ntrunks,1,timonofathens,1607\nwretchedness,1,timonofathens,1607\napt,1,timonofathens,1607\nexquisite,1,timonofathens,1607\npoint,1,timonofathens,1607\nstrive,1,timonofathens,1607\nshakes,1,timonofathens,1607\nhowsoe'er,1,timonofathens,1607\nowed,1,timonofathens,1607\nFeign'd,1,timonofathens,1607\npack,1,timonofathens,1607\nfear'd,1,timonofathens,1607\nInterprets,1,timonofathens,1607\nputs,1,timonofathens,1607\nexcept,1,timonofathens,1607\nawe,1,timonofathens,1607\nconsideration,1,timonofathens,1607\ndetested,1,timonofathens,1607\nflatter'd,1,timonofathens,1607\nFell,1,timonofathens,1607\nmonstrousness,1,timonofathens,1607\nbraggarts,1,timonofathens,1607\ncompanionship,1,timonofathens,1607\ncontain,1,timonofathens,1607\nsaints,1,timonofathens,1607\nbearer,1,timonofathens,1607\nunthrift,1,timonofathens,1607\nexcess,1,timonofathens,1607\noutsides,1,timonofathens,1607\ncourser,1,timonofathens,1607\nfroze,1,timonofathens,1607\nfresh,1,timonofathens,1607\nrear'd,1,timonofathens,1607\nunkindest,1,timonofathens,1607\nHoy,1,timonofathens,1607\nmonument,1,timonofathens,1607\nbeards,1,timonofathens,1607\nhatest,1,timonofathens,1607\nlock,1,timonofathens,1607\nbrevis,1,timonofathens,1607\nfold,1,timonofathens,1607\nalchemist,1,timonofathens,1607\narmour,1,timonofathens,1607\nmental,1,timonofathens,1607\npoorer,1,timonofathens,1607\nceremoniously,1,timonofathens,1607\nrother's,1,timonofathens,1607\nCare,1,timonofathens,1607\nhive,1,timonofathens,1607\nObedience,1,timonofathens,1607\nHast,1,timonofathens,1607\nparents',1,timonofathens,1607\napperil,1,timonofathens,1607\nlukewarm,1,timonofathens,1607\nchance,1,timonofathens,1607\nworkmen,1,timonofathens,1607\nolive,1,timonofathens,1607\nattraction,1,timonofathens,1607\nKind,1,timonofathens,1607\nceased,1,timonofathens,1607\nknock,1,timonofathens,1607\nsprinkle,1,timonofathens,1607\nboughs,1,timonofathens,1607\ntrick,1,timonofathens,1607\ninquire,1,timonofathens,1607\nAmong,1,timonofathens,1607\nCourteous,1,timonofathens,1607\nglib,1,timonofathens,1607\nhits,1,timonofathens,1607\nparadox,1,timonofathens,1607\nnative,1,timonofathens,1607\nHard,1,timonofathens,1607\nsweetly,1,timonofathens,1607\ncomparing,1,timonofathens,1607\nAcknowledge,1,timonofathens,1607\nvarnish'd,1,timonofathens,1607\nturncoats,1,timonofathens,1607\nbrain's,1,timonofathens,1607\ntoken,1,timonofathens,1607\nlonging,1,timonofathens,1607\ntrial,1,timonofathens,1607\ncomfort'st,1,timonofathens,1607\nbaboon,1,timonofathens,1607\nbrain'd,1,timonofathens,1607\nrivals,1,timonofathens,1607\nslays,1,timonofathens,1607\nAsk,1,timonofathens,1607\nwillingly,1,timonofathens,1607\nsuperscription,1,timonofathens,1607\nHate,1,timonofathens,1607\nbeams,1,timonofathens,1607\nhinge,1,timonofathens,1607\nguest,1,timonofathens,1607\nscolds,1,timonofathens,1607\nfatterers,1,timonofathens,1607\nmoves,1,timonofathens,1607\ndoubtfully,1,timonofathens,1607\nprecedent,1,timonofathens,1607\nspoken,1,timonofathens,1607\nleaf,1,timonofathens,1607\nPhilotus,1,timonofathens,1607\nheight,1,timonofathens,1607\nnobles,1,timonofathens,1607\nwitch,1,timonofathens,1607\nShould,1,timonofathens,1607\nbirths,1,timonofathens,1607\nnods,1,timonofathens,1607\ncomma,1,timonofathens,1607\nrarity,1,timonofathens,1607\nShows,1,timonofathens,1607\nlean,1,timonofathens,1607\nparticularly,1,timonofathens,1607\ndelicate,1,timonofathens,1607\nfitly,1,timonofathens,1607\nSevenfold,1,timonofathens,1607\nleas,1,timonofathens,1607\nrender'd,1,timonofathens,1607\ntried,1,timonofathens,1607\nSun,1,timonofathens,1607\nglories,1,timonofathens,1607\nTwinn'd,1,timonofathens,1607\nincomparable,1,timonofathens,1607\npencill'd,1,timonofathens,1607\nequal,1,timonofathens,1607\nPours,1,timonofathens,1607\nHerself's,1,timonofathens,1607\npoint'st,1,timonofathens,1607\noutlived,1,timonofathens,1607\ncarries,1,timonofathens,1607\nshrunk,1,timonofathens,1607\nnations,1,timonofathens,1607\nunluckily,1,timonofathens,1607\napprehension,1,timonofathens,1607\nInfect,1,timonofathens,1607\nprisons,1,timonofathens,1607\nrose,1,timonofathens,1607\nrascals,1,timonofathens,1607\nsilence,1,timonofathens,1607\nKnock,1,timonofathens,1607\nexpress'd,1,timonofathens,1607\nriding,1,timonofathens,1607\nfiction,1,timonofathens,1607\nfaith,1,timonofathens,1607\nBetter,1,timonofathens,1607\nthinks,1,timonofathens,1607\nsquare,1,timonofathens,1607\nnose,1,timonofathens,1607\nenvy,1,timonofathens,1607\nCrack,1,timonofathens,1607\nworkman,1,timonofathens,1607\ngavest,1,timonofathens,1607\nlevell'd,1,timonofathens,1607\nseriously,1,timonofathens,1607\nforfeited,1,timonofathens,1607\nHenceforth,1,timonofathens,1607\nhips,1,timonofathens,1607\nUndone,1,timonofathens,1607\nbeats,1,timonofathens,1607\nSecurity,1,timonofathens,1607\ncorporate,1,timonofathens,1607\nconquer'd,1,timonofathens,1607\ngently,1,timonofathens,1607\nPeace,1,timonofathens,1607\ndulness,1,timonofathens,1607\nsocieties,1,timonofathens,1607\nBelieve't,1,timonofathens,1607\nnow's,1,timonofathens,1607\ngirdlest,1,timonofathens,1607\nallows,1,timonofathens,1607\nknewest,1,timonofathens,1607\nvapours,1,timonofathens,1607\nCoupled,1,timonofathens,1607\nvantages,1,timonofathens,1607\ndonation,1,timonofathens,1607\ndisgraced,1,timonofathens,1607\nslipp'd,1,timonofathens,1607\nbeard,1,timonofathens,1607\ntigers,1,timonofathens,1607\nspread,1,timonofathens,1607\nlimited,1,timonofathens,1607\ntraitors,1,timonofathens,1607\nmaws,1,timonofathens,1607\nhide,1,timonofathens,1607\nest,1,timonofathens,1607\nyear,1,timonofathens,1607\nbanners,1,timonofathens,1607\nAlack,1,timonofathens,1607\newer,1,timonofathens,1607\ndisclaim'st,1,timonofathens,1607\nobserved,1,timonofathens,1607\nfuror,1,timonofathens,1607\nTables,1,timonofathens,1607\nburthens,1,timonofathens,1607\nspokest,1,timonofathens,1607\nbehave,1,timonofathens,1607\nslain,1,timonofathens,1607\nbroader,1,timonofathens,1607\njutting,1,timonofathens,1607\nSoft,1,timonofathens,1607\nDown,1,timonofathens,1607\nexposed,1,timonofathens,1607\nthankless,1,timonofathens,1607\nchickens,1,timonofathens,1607\nforesee,1,timonofathens,1607\nSpurns,1,timonofathens,1607\nvisage,1,timonofathens,1607\nlearning,1,timonofathens,1607\nTransformed,1,timonofathens,1607\nPromise,1,timonofathens,1607\nsticks,1,timonofathens,1607\nquickly,1,timonofathens,1607\nRascals,1,timonofathens,1607\nRoyal,1,timonofathens,1607\nyou'll,1,timonofathens,1607\nparting,1,timonofathens,1607\nSlave,1,timonofathens,1607\nsprings,1,timonofathens,1607\nPeriods,1,timonofathens,1607\nApproach,1,timonofathens,1607\nCertain,1,timonofathens,1607\nhousewife,1,timonofathens,1607\nforest,1,timonofathens,1607\nplaces,1,timonofathens,1607\nshall's,1,timonofathens,1607\nawhile,1,timonofathens,1607\noblique,1,timonofathens,1607\ngouty,1,timonofathens,1607\nquarter,1,timonofathens,1607\nsawest,1,timonofathens,1607\nDegrees,1,timonofathens,1607\nDoth,1,timonofathens,1607\nInstruction,1,timonofathens,1607\nleaving,1,timonofathens,1607\nchild,1,timonofathens,1607\nmistresses,1,timonofathens,1607\ngrateful,1,timonofathens,1607\nunusual,1,timonofathens,1607\nquestion,1,timonofathens,1607\nplaced,1,timonofathens,1607\ncontraries,1,timonofathens,1607\ndiscontent,1,timonofathens,1607\neffect,1,timonofathens,1607\ndevice,1,timonofathens,1607\nstrife,1,timonofathens,1607\nlikewise,1,timonofathens,1607\ntowards,1,timonofathens,1607\nconfluence,1,timonofathens,1607\nblessings,1,timonofathens,1607\nDestruction,1,timonofathens,1607\nmile,1,timonofathens,1607\nrealms,1,timonofathens,1607\nmild,1,timonofathens,1607\nexchange,1,timonofathens,1607\nwiser,1,timonofathens,1607\nnod,1,timonofathens,1607\nqualities,1,timonofathens,1607\nprize,1,timonofathens,1607\nmeddlers,1,timonofathens,1607\napproaches,1,timonofathens,1607\nplead,1,timonofathens,1607\npurposes,1,timonofathens,1607\nbosoms,1,timonofathens,1607\nenriched,1,timonofathens,1607\ntowers,1,timonofathens,1607\nrobbers,1,timonofathens,1607\nredeem'st,1,timonofathens,1607\nsilenced,1,timonofathens,1607\nseashore,1,timonofathens,1607\nmutter,1,timonofathens,1607\ndregs,1,timonofathens,1607\nmerrily,1,timonofathens,1607\nconfidence,1,timonofathens,1607\noutgoes,1,timonofathens,1607\nPromising,1,timonofathens,1607\nblush,1,timonofathens,1607\nwrought,1,timonofathens,1607\nkeeper,1,timonofathens,1607\nbloods,1,timonofathens,1607\nbelong,1,timonofathens,1607\nCould,1,timonofathens,1607\ncourage,1,timonofathens,1607\nmass,1,timonofathens,1607\nmast,1,timonofathens,1607\nvillanous,1,timonofathens,1607\ntenth,1,timonofathens,1607\nchief,1,timonofathens,1607\nthroughout,1,timonofathens,1607\nHalts,1,timonofathens,1607\ndream,1,timonofathens,1607\nranks,1,timonofathens,1607\ninjuries,1,timonofathens,1607\nSow,1,timonofathens,1607\nraiment,1,timonofathens,1607\nSon,1,timonofathens,1607\nblot,1,timonofathens,1607\ndevils,1,timonofathens,1607\nissue,1,timonofathens,1607\nWeigh,1,timonofathens,1607\nThee,1,timonofathens,1607\nforsook,1,timonofathens,1607\nCrust,1,timonofathens,1607\nAlcibiades',1,timonofathens,1607\ninfinitely,1,timonofathens,1607\nJoy,1,timonofathens,1607\nwon,1,timonofathens,1607\ncraves,1,timonofathens,1607\nAttempts,1,timonofathens,1607\ntides,1,timonofathens,1607\nRobs,1,timonofathens,1607\nAllow'd,1,timonofathens,1607\ndropping,1,timonofathens,1607\nspecial,1,timonofathens,1607\nheaven's,1,timonofathens,1607\narch,1,timonofathens,1607\nbenefit,1,timonofathens,1607\ncomposture,1,timonofathens,1607\nseal'd,1,timonofathens,1607\nthreatening,1,timonofathens,1607\nfather's,1,timonofathens,1607\nbalsam,1,timonofathens,1607\nEating,1,timonofathens,1607\nmissing,1,timonofathens,1607\nbleak,1,timonofathens,1607\nsnare,1,timonofathens,1607\ntrifle,1,timonofathens,1607\nheaviest,1,timonofathens,1607\napart,1,timonofathens,1607\nmarvel,1,timonofathens,1607\ncheeked,1,timonofathens,1607\ngreediness,1,timonofathens,1607\nimpiety,1,timonofathens,1607\nhorrible,1,timonofathens,1607\noil,1,timonofathens,1607\nblasted,1,timonofathens,1607\ndesires,1,timonofathens,1607\nGiving,1,timonofathens,1607\ncompounds,1,timonofathens,1607\nwed,1,timonofathens,1607\nforgiven,1,timonofathens,1607\nones,1,timonofathens,1607\nHautboys,1,timonofathens,1607\nstain,1,timonofathens,1607\nFeasts,1,timonofathens,1607\nsans,1,timonofathens,1607\nWert,1,timonofathens,1607\nbreed,1,timonofathens,1607\ndeny'st,1,timonofathens,1607\noaks,1,timonofathens,1607\nSempronius',1,timonofathens,1607\nComing,1,timonofathens,1607\npassage,1,timonofathens,1607\nmaids,1,timonofathens,1607\nopinion,1,timonofathens,1607\n'Twixt,1,timonofathens,1607\nsemblable,1,timonofathens,1607\nstint,1,timonofathens,1607\nrepugnancy,1,timonofathens,1607\nfevers,1,timonofathens,1607\nmerits,1,timonofathens,1607\n'No,1,timonofathens,1607\nrogues,1,timonofathens,1607\ninferr'd,1,timonofathens,1607\nneck,1,timonofathens,1607\nMaid,1,timonofathens,1607\nForgetting,1,timonofathens,1607\ndishonour,1,timonofathens,1607\nvines,1,timonofathens,1607\nDenied,1,timonofathens,1607\nfragment,1,timonofathens,1607\nstamp,1,timonofathens,1607\namplest,1,timonofathens,1607\ndisdains,1,timonofathens,1607\noft,1,timonofathens,1607\nmessage,1,timonofathens,1607\nWe'll,1,timonofathens,1607\nConfounded,1,timonofathens,1607\nproposed,1,timonofathens,1607\nhateful,1,timonofathens,1607\noperant,1,timonofathens,1607\nstomach,1,timonofathens,1607\ncurb,1,timonofathens,1607\ncross'd,1,timonofathens,1607\nBowing,1,timonofathens,1607\nbread,1,timonofathens,1607\ndetestable,1,timonofathens,1607\nswath,1,timonofathens,1607\nyoungest,1,timonofathens,1607\nsays,1,timonofathens,1607\nbawds,1,timonofathens,1607\nCreditors,1,timonofathens,1607\nservices,1,timonofathens,1607\nretentive,1,timonofathens,1607\nloving,1,timonofathens,1607\nthird,1,timonofathens,1607\nupright,1,timonofathens,1607\nbinds,1,timonofathens,1607\ntraffic,1,timonofathens,1607\nsitting,1,timonofathens,1607\nbanish'd,1,timonofathens,1607\nholier,1,timonofathens,1607\nabandon,1,timonofathens,1607\nRecanting,1,timonofathens,1607\npours,1,timonofathens,1607\nmoment,1,timonofathens,1607\ntrenchant,1,timonofathens,1607\ninfluence,1,timonofathens,1607\nsermon,1,timonofathens,1607\naddressing,1,timonofathens,1607\nbestow'd,1,timonofathens,1607\nwalks,1,timonofathens,1607\nhanded,1,timonofathens,1607\noak,1,timonofathens,1607\ncorner'd,1,timonofathens,1607\nreverend'st,1,timonofathens,1607\n'mong,1,timonofathens,1607\nfiles,1,timonofathens,1607\nheaps,1,timonofathens,1607\nRogue,1,timonofathens,1607\ndiffer,1,timonofathens,1607\nhealths,1,timonofathens,1607\nresidence,1,timonofathens,1607\nDucks,1,timonofathens,1607\nripe,1,timonofathens,1607\nSubdues,1,timonofathens,1607\nstanding,1,timonofathens,1607\nThey're,1,timonofathens,1607\nsave,1,timonofathens,1607\ncount,1,timonofathens,1607\nfragile,1,timonofathens,1607\nrefuge,1,timonofathens,1607\ninsculpture,1,timonofathens,1607\nflint,1,timonofathens,1607\nlicentious,1,timonofathens,1607\nvenom'd,1,timonofathens,1607\nprotection,1,timonofathens,1607\nunaptness,1,timonofathens,1607\nDrowns,1,timonofathens,1607\nliked,1,timonofathens,1607\nDian's,1,timonofathens,1607\ncopies,1,timonofathens,1607\nforerunner,1,timonofathens,1607\n'We,1,timonofathens,1607\ndust,1,timonofathens,1607\ncalled,1,timonofathens,1607\nprocreation,1,timonofathens,1607\nmountant,1,timonofathens,1607\nHereafter,1,timonofathens,1607\nquarrelling,1,timonofathens,1607\nprofitably,1,timonofathens,1607\nThrow,1,timonofathens,1607\nflourish,1,timonofathens,1607\nspacious,1,timonofathens,1607\nduty,1,timonofathens,1607\nCap,1,timonofathens,1607\nWorthy,1,timonofathens,1607\ntrusts,1,timonofathens,1607\nUnwisely,1,timonofathens,1607\narms,1,timonofathens,1607\nconfectionary,1,timonofathens,1607\ndrives,1,timonofathens,1607\nbetween,1,timonofathens,1607\nunpeaceable,1,timonofathens,1607\nintent,1,timonofathens,1607\noath,1,timonofathens,1607\nbleed,1,timonofathens,1607\ngirdle,1,timonofathens,1607\nExpecting,1,timonofathens,1607\nshudders,1,timonofathens,1607\ndanger,1,timonofathens,1607\nforward,1,timonofathens,1607\nImmediate,1,timonofathens,1607\nextoll'd,1,timonofathens,1607\nrags,1,timonofathens,1607\ndying,1,timonofathens,1607\nbereft,1,timonofathens,1607\nEats,1,timonofathens,1607\ncovetous,1,timonofathens,1607\nadmitted,1,timonofathens,1607\napace,1,timonofathens,1607\nperadventure,1,timonofathens,1607\nvessels,1,timonofathens,1607\nwont,1,timonofathens,1607\nsupper,1,timonofathens,1607\nwarmth,1,timonofathens,1607\nwomen's,1,timonofathens,1607\nOutlives,1,timonofathens,1607\ncounterfeit'st,1,timonofathens,1607\nthreats,1,timonofathens,1607\nConsumptions,1,timonofathens,1607\nchamberlain,1,timonofathens,1607\ncaught,1,timonofathens,1607\nWarr'st,1,timonofathens,1607\ndetention,1,timonofathens,1607\nirons,1,timonofathens,1607\nnewt,1,timonofathens,1607\nadored,1,timonofathens,1607\ncull,1,timonofathens,1607\ndiscover'd,1,timonofathens,1607\nmightily,1,timonofathens,1607\nfact,1,timonofathens,1607\nraging,1,timonofathens,1607\nRid,1,timonofathens,1607\nunctuous,1,timonofathens,1607\nhusbandry,1,timonofathens,1607\nprompt,1,timonofathens,1607\nagree,1,timonofathens,1607\nbruit,1,timonofathens,1607\nbaseness,1,timonofathens,1607\nAbroad,1,timonofathens,1607\ndreamt,1,timonofathens,1607\nmettle,1,timonofathens,1607\nthankfulness,1,timonofathens,1607\nBid,1,timonofathens,1607\njoints,1,timonofathens,1607\nransom,1,timonofathens,1607\nworships,1,timonofathens,1607\nrages,1,timonofathens,1607\nfaced,1,timonofathens,1607\nestates,1,timonofathens,1607\nmarry,1,timonofathens,1607\nreports,1,timonofathens,1607\npurest,1,timonofathens,1607\ndemonstrate,1,timonofathens,1607\nput'st,1,timonofathens,1607\nTouches,1,timonofathens,1607\nsize,1,timonofathens,1607\nfife,1,timonofathens,1607\ncoffer,1,timonofathens,1607\nvicious,1,timonofathens,1607\npassive,1,timonofathens,1607\ncourteously,1,timonofathens,1607\nrequire,1,timonofathens,1607\nspleen,1,timonofathens,1607\nkilling,1,timonofathens,1607\ngod's,1,timonofathens,1607\nopposite,1,timonofathens,1607\nsways,1,timonofathens,1607\nknight,1,timonofathens,1607\ntubs,1,timonofathens,1607\nleisures,1,timonofathens,1607\ndull,1,timonofathens,1607\nsupple,1,timonofathens,1607\nvirtuously,1,timonofathens,1607\nwooer,1,timonofathens,1607\nwaste,1,timonofathens,1607\nReciting,1,timonofathens,1607\nope,1,timonofathens,1607\nfalling,1,timonofathens,1607\nsolder'st,1,timonofathens,1607\nwent,1,timonofathens,1607\ndiscontents,1,timonofathens,1607\nwhence,1,timonofathens,1607\nunfortunate,1,timonofathens,1607\nfill'd,1,timonofathens,1607\n'ld,1,timonofathens,1607\nwatching,1,timonofathens,1607\nsatire,1,timonofathens,1607\nmince,1,timonofathens,1607\nSenator's,1,timonofathens,1607\ngrass,1,timonofathens,1607\ncompare,1,timonofathens,1607\nShow,1,timonofathens,1607\nfain,1,timonofathens,1607\nRob,1,timonofathens,1607\n'll,1,timonofathens,1607\nhunger,1,timonofathens,1607\ninwardly,1,timonofathens,1607\nbruise,1,timonofathens,1607\nflatter'st,1,timonofathens,1607\nground,1,timonofathens,1607\nwanted,1,timonofathens,1607\ncharacter,1,timonofathens,1607\nTime,1,timonofathens,1607\ndiseased,1,timonofathens,1607\njudge,1,timonofathens,1607\ngiving,1,timonofathens,1607\nmodesty,1,timonofathens,1607\nstolen,1,timonofathens,1607\ncovered,1,timonofathens,1607\nflatterer's,1,timonofathens,1607\ndiamonds,1,timonofathens,1607\ndecimation,1,timonofathens,1607\nunlearn'd,1,timonofathens,1607\ncares,1,timonofathens,1607\norb,1,timonofathens,1607\nembossed,1,timonofathens,1607\nsin's,1,timonofathens,1607\nHadst,1,timonofathens,1607\naffable,1,timonofathens,1607\nquell,1,timonofathens,1607\nSupported,1,timonofathens,1607\nswells,1,timonofathens,1607\nchurl,1,timonofathens,1607\ngratulate,1,timonofathens,1607\nrace,1,timonofathens,1607\nwithstanding,1,timonofathens,1607\nscorns,1,timonofathens,1607\nworm,1,timonofathens,1607\nendeared,1,timonofathens,1607\ncuriosity,1,timonofathens,1607\nletter,1,timonofathens,1607\nmultiplying,1,timonofathens,1607\nrighteous,1,timonofathens,1607\nfang,1,timonofathens,1607\ndo't,1,timonofathens,1607\nbrush,1,timonofathens,1607\ndancing,1,timonofathens,1607\nMars,1,timonofathens,1607\n'Commend,1,timonofathens,1607\nflame,1,timonofathens,1607\nminute,1,timonofathens,1607\nMark,1,timonofathens,1607\noffices,1,timonofathens,1607\ngrape,1,timonofathens,1607\nperfect,1,timonofathens,1607\nfine,1,timonofathens,1607\nprofit,1,timonofathens,1607\nstains,1,timonofathens,1607\nmoderate,1,timonofathens,1607\npleases,1,timonofathens,1607\nAttend,1,timonofathens,1607\nunagreeable,1,timonofathens,1607\nsavage,1,timonofathens,1607\ncontinue,1,timonofathens,1607\nengaged,1,timonofathens,1607\nassume,1,timonofathens,1607\ndamnation,1,timonofathens,1607\noozes,1,timonofathens,1607\nblister,1,timonofathens,1607\nfolly,1,timonofathens,1607\nDomestic,1,timonofathens,1607\nBeats,1,timonofathens,1607\nTaught,1,timonofathens,1607\nNear,1,timonofathens,1607\nniggard,1,timonofathens,1607\nwide,1,timonofathens,1607\nUnto,1,timonofathens,1607\ndivers,1,timonofathens,1607\nlined,1,timonofathens,1607\nfawn,1,timonofathens,1607\nByzantium,1,timonofathens,1607\nye're,1,timonofathens,1607\nvex,1,timonofathens,1607\nchiefly,1,timonofathens,1607\nmates,1,timonofathens,1607\nbetters,1,timonofathens,1607\nimportunacy,1,timonofathens,1607\nyells,1,timonofathens,1607\nturbulent,1,timonofathens,1607\nbate,1,timonofathens,1607\nBeast,1,timonofathens,1607\nbars,1,timonofathens,1607\nmeaning,1,timonofathens,1607\ngilded,1,timonofathens,1607\nFour,1,timonofathens,1607\nwax'd,1,timonofathens,1607\npredominate,1,timonofathens,1607\ndispraise,1,timonofathens,1607\ndialogue,1,timonofathens,1607\nmorsels,1,timonofathens,1607\nvotarist,1,timonofathens,1607\ndroplets,1,timonofathens,1607\ncock,1,timonofathens,1607\nband,1,timonofathens,1607\nflamen,1,timonofathens,1607\nbalm,1,timonofathens,1607\nStriving,1,timonofathens,1607\nbounds,1,timonofathens,1607\nquillets,1,timonofathens,1607\ntrapp'd,1,timonofathens,1607\nprefer,1,timonofathens,1607\nsoftness,1,timonofathens,1607\nnamed,1,timonofathens,1607\nbill,1,timonofathens,1607\nWelcome,1,timonofathens,1607\nfeeble,1,timonofathens,1607\nshepherd,1,timonofathens,1607\nlag,1,timonofathens,1607\nache,1,timonofathens,1607\ntale,1,timonofathens,1607\ntalk,1,timonofathens,1607\nbans,1,timonofathens,1607\nHymen's,1,timonofathens,1607\nsource,1,timonofathens,1607\naffliction,1,timonofathens,1607\nwelcomes,1,timonofathens,1607\nfruitful,1,timonofathens,1607\nparasites,1,timonofathens,1607\nsufficient,1,timonofathens,1607\nwappen'd,1,timonofathens,1607\nunwise,1,timonofathens,1607\nshops,1,timonofathens,1607\nWorse,1,timonofathens,1607\nRascal,1,timonofathens,1607\ntorment,1,timonofathens,1607\ncarry,1,timonofathens,1607\ntutors,1,timonofathens,1607\nreproof,1,timonofathens,1607\nmothers,1,timonofathens,1607\nRather,1,timonofathens,1607\ningeniously,1,timonofathens,1607\nsights,1,timonofathens,1607\nwreakful,1,timonofathens,1607\nrecorded,1,timonofathens,1607\nSpeaks,1,timonofathens,1607\nholds,1,timonofathens,1607\nshook,1,timonofathens,1607\nempire,1,timonofathens,1607\nquit,1,timonofathens,1607\nAttends,1,timonofathens,1607\nvirgins,1,timonofathens,1607\nshort,1,timonofathens,1607\nclean,1,timonofathens,1607\nvictories,1,timonofathens,1607\nNone,1,timonofathens,1607\ncontentless,1,timonofathens,1607\nunmeasurable,1,timonofathens,1607\nfertile,1,timonofathens,1607\ngreyhounds,1,timonofathens,1607\ndozen,1,timonofathens,1607\ngreen,1,timonofathens,1607\nvirginity,1,timonofathens,1607\nstand'st,1,timonofathens,1607\nlards,1,timonofathens,1607\nimplements,1,timonofathens,1607\nLives,1,timonofathens,1607\nfollows,1,timonofathens,1607\nAlthough,1,timonofathens,1607\npangs,1,timonofathens,1607\nWho's,1,timonofathens,1607\nspices,1,timonofathens,1607\ndimpled,1,timonofathens,1607\nschools,1,timonofathens,1607\nAches,1,timonofathens,1607\nrequest,1,timonofathens,1607\nmoulten,1,timonofathens,1607\nrevolt,1,timonofathens,1607\nsinner,1,timonofathens,1607\ncheerly,1,timonofathens,1607\nspurring,1,timonofathens,1607\npresents,1,timonofathens,1607\ndepth,1,timonofathens,1607\ncondemn,1,timonofathens,1607\narrive,1,timonofathens,1607\ncommonwealth,1,timonofathens,1607\nstate's,1,timonofathens,1607\ndefeat,1,timonofathens,1607\nagues,1,timonofathens,1607\nWhere's,1,timonofathens,1607\nmanslaughter,1,timonofathens,1607\nwriting,1,timonofathens,1607\nbits,1,timonofathens,1607\nwant'st,1,timonofathens,1607\nborrowing,1,timonofathens,1607\nfalsehood,1,timonofathens,1607\ngiver,1,timonofathens,1607\nCall'st,1,timonofathens,1607\ninherited,1,timonofathens,1607\nthou'ldst,1,timonofathens,1607\nprovision,1,timonofathens,1607\n'nothing,1,timonofathens,1607\nvainly,1,timonofathens,1607\nalso,1,timonofathens,1607\ncountry's,1,timonofathens,1607\nhung,1,timonofathens,1607\nignobly,1,timonofathens,1607\nseat,1,timonofathens,1607\nbetraying,1,timonofathens,1607\nperfumes,1,timonofathens,1607\nglittering,1,timonofathens,1607\nelements,1,timonofathens,1607\nEntomb'd,1,timonofathens,1607\ncool,1,timonofathens,1607\ncook,1,timonofathens,1607\nattendance,1,timonofathens,1607\nrestraining,1,timonofathens,1607\ncontinuate,1,timonofathens,1607\nCorinth,1,timonofathens,1607\nfairer,1,timonofathens,1607\nsweat,1,timonofathens,1607\ndeepest,1,timonofathens,1607\ntrophies,1,timonofathens,1607\nfault's,1,timonofathens,1607\nfractions,1,timonofathens,1607\nSurprise,1,timonofathens,1607\nreckoning,1,timonofathens,1607\nSeek,1,timonofathens,1607\noppress'd,1,timonofathens,1607\ninsolence,1,timonofathens,1607\npronounced,1,timonofathens,1607\ndrums,1,timonofathens,1607\ntalking,1,timonofathens,1607\nfeeling,1,timonofathens,1607\ncog,1,timonofathens,1607\nDebts,1,timonofathens,1607\ndefend,1,timonofathens,1607\nbounty's,1,timonofathens,1607\ntithed,1,timonofathens,1607\ncon,1,timonofathens,1607\nsupposed,1,timonofathens,1607\nunkindness,1,timonofathens,1607\nauditors,1,timonofathens,1607\ncourtesy,1,timonofathens,1607\ndistasteful,1,timonofathens,1607\nothers',1,timonofathens,1607\ndivorce,1,timonofathens,1607\nsees,1,timonofathens,1607\npick'd,1,timonofathens,1607\nlug,1,timonofathens,1607\ndrunken,1,timonofathens,1607\nvessel,1,timonofathens,1607\ncondition,1,timonofathens,1607\ndiffering,1,timonofathens,1607\nsweep,1,timonofathens,1607\ncumber,1,timonofathens,1607\nbattle,1,timonofathens,1607\nBelieve,1,timonofathens,1607\nberries,1,timonofathens,1607\nshaped,1,timonofathens,1607\nexpectation,1,timonofathens,1607\npregnantly,1,timonofathens,1607\narrant,1,timonofathens,1607\nthrust,1,timonofathens,1607\nzeals,1,timonofathens,1607\nregular,1,timonofathens,1607\nneedless,1,timonofathens,1607\nsluts,1,timonofathens,1607\nsacred,1,timonofathens,1607\ncry,1,timonofathens,1607\nindisposition,1,timonofathens,1607\nGentlemen,1,timonofathens,1607\nmonkey,1,timonofathens,1607\ndispense,1,timonofathens,1607\nheavenly,1,timonofathens,1607\npledges,1,timonofathens,1607\nblazed,1,timonofathens,1607\nHe'll,1,timonofathens,1607\n'twill,1,timonofathens,1607\ntherein,1,timonofathens,1607\nThings,1,timonofathens,1607\ndrugs,1,timonofathens,1607\ntiring,1,timonofathens,1607\nslender,1,timonofathens,1607\nToward,1,timonofathens,1607\nhuge,1,timonofathens,1607\ndestroyers,1,timonofathens,1607\nkindred,1,timonofathens,1607\ninviting,1,timonofathens,1607\ncaudle,1,timonofathens,1607\ntide,1,timonofathens,1607\nmoon's,1,timonofathens,1607\nbelieves,1,timonofathens,1607\nTrumpet,1,timonofathens,1607\nuncertain,1,timonofathens,1607\nsmit,1,timonofathens,1607\ncases,1,timonofathens,1607\nGraves,1,timonofathens,1607\nbald,1,timonofathens,1607\ngloss,1,timonofathens,1607\noppose,1,timonofathens,1607\nTraffic,1,timonofathens,1607\nwork'd,1,timonofathens,1607\nprison,1,timonofathens,1607\nRain,1,timonofathens,1607\nMoves,1,timonofathens,1607\nnakedness,1,timonofathens,1607\nmated,1,timonofathens,1607\nbeached,1,timonofathens,1607\nmother's,1,timonofathens,1607\nundo,1,timonofathens,1607\nalas,1,timonofathens,1607\ngrieves,1,timonofathens,1607\nvillainies,1,timonofathens,1607\nswell,1,timonofathens,1607\nshoots,1,timonofathens,1607\nbecks,1,timonofathens,1607\ncanons,1,timonofathens,1607\ngrieved,1,timonofathens,1607\nFeast,1,timonofathens,1607\ngreeting,1,timonofathens,1607\ncarriage,1,timonofathens,1607\nsorrow'd,1,timonofathens,1607\nplunge,1,timonofathens,1607\nseized,1,timonofathens,1607\nsullen,1,timonofathens,1607\ncalamities,1,timonofathens,1607\ncountryman,1,timonofathens,1607\nhighest,1,timonofathens,1607\naches,1,timonofathens,1607\nconvert,1,timonofathens,1607\nsafer,1,timonofathens,1607\nbestow,1,timonofathens,1607\npatchery,1,timonofathens,1607\nmoss'd,1,timonofathens,1607\nnature's,1,timonofathens,1607\nebb,1,timonofathens,1607\nthreat,1,timonofathens,1607\nDoors,1,timonofathens,1607\ntrod,1,timonofathens,1607\nsleep,1,timonofathens,1607\nborrowed,1,timonofathens,1607\nsenator,1,timonofathens,1607\nfeasting,1,timonofathens,1607\nimagination,1,timonofathens,1607\nItches,1,timonofathens,1607\nwrite,1,timonofathens,1607\nlimbs,1,timonofathens,1607\nsounded,1,timonofathens,1607\nnourish'd,1,timonofathens,1607\npray'd,1,timonofathens,1607\nviced,1,timonofathens,1607\n'scape,1,timonofathens,1607\nmine's,1,timonofathens,1607\npasture,1,timonofathens,1607\npropagate,1,timonofathens,1607\nsmiling,1,timonofathens,1607\nforced,1,timonofathens,1607\nstrides,1,timonofathens,1607\ngust,1,timonofathens,1607\nbegins,1,timonofathens,1607\nlearn,1,timonofathens,1607\nburst,1,timonofathens,1607\nstarve,1,timonofathens,1607\ndoing,1,timonofathens,1607\nstraight,1,timonofathens,1607\ncompounded,1,timonofathens,1607\npoesy,1,timonofathens,1607\nviler,1,timonofathens,1607\nwarlike,1,timonofathens,1607\ndealing,1,timonofathens,1607\nlofty,1,timonofathens,1607\nphoenix,1,timonofathens,1607\nlivelier,1,timonofathens,1607\nCaptain,1,timonofathens,1607\nwhelped,1,timonofathens,1607\nupward,1,timonofathens,1607\nAlways,1,timonofathens,1607\nreadiness,1,timonofathens,1607\nerected,1,timonofathens,1607\nplunged,1,timonofathens,1607\nmeeting,1,timonofathens,1607\nstirrup,1,timonofathens,1607\npitifully,1,timonofathens,1607\nsovereign,1,timonofathens,1607\nruinous,1,timonofathens,1607\nemployment,1,timonofathens,1607\nevils,1,timonofathens,1607\nfamiliars,1,timonofathens,1607\nintending,1,timonofathens,1607\nSince,1,timonofathens,1607\nOurs,1,timonofathens,1607\nabuse,1,timonofathens,1607\npleasant,1,timonofathens,1607\nfully,1,timonofathens,1607\nmocked,1,timonofathens,1607\nPainting,1,timonofathens,1607\nfled,1,timonofathens,1607\nVoiced,1,timonofathens,1607\nswound,1,timonofathens,1607\nfashion,1,timonofathens,1607\npomps,1,timonofathens,1607\nPity's,1,timonofathens,1607\nThrive,1,timonofathens,1607\nspills,1,timonofathens,1607\nremaining,1,timonofathens,1607\nforfeiture,1,timonofathens,1607\nhenceforth,1,timonofathens,1607\nstrokes,1,timonofathens,1607\nbellies,1,timonofathens,1607\nphysic,1,timonofathens,1607\nvisitations,1,timonofathens,1607\nharshly,1,timonofathens,1607\nforgetfulness,1,timonofathens,1607\nmarriage,1,timonofathens,1607\nbeguile,1,timonofathens,1607\nbeagles,1,timonofathens,1607\nreliances,1,timonofathens,1607\nblains,1,timonofathens,1607\nMarry,1,timonofathens,1607\ncarper,1,timonofathens,1607\nfever,1,timonofathens,1607\ngull,1,timonofathens,1607\nBeseech,1,timonofathens,1607\nWherever,1,timonofathens,1607\nflat,1,timonofathens,1607\nevilly,1,timonofathens,1607\npious,1,timonofathens,1607\nliquid,1,timonofathens,1607\nMaintain,1,timonofathens,1607\ntub,1,timonofathens,1607\nlawyer,1,timonofathens,1607\nEat,1,timonofathens,1607\nLooking,1,timonofathens,1607\nseverally,1,timonofathens,1607\ndiscontented,1,timonofathens,1607\nSecure,1,timonofathens,1607\nbesides,1,timonofathens,1607\nextend,1,timonofathens,1607\nApril,1,timonofathens,1607\nbreaking,1,timonofathens,1607\nspilth,1,timonofathens,1607\nbribed,1,timonofathens,1607\nbriber,1,timonofathens,1607\nLust,1,timonofathens,1607\ncarelessly,1,timonofathens,1607\nentreaty,1,timonofathens,1607\nbooks,1,timonofathens,1607\nplough'st,1,timonofathens,1607\nmoe,1,timonofathens,1607\ndefiler,1,timonofathens,1607\noutstretch'd,1,timonofathens,1607\nentreats,1,timonofathens,1607\nlimping,1,timonofathens,1607\nurged,1,timonofathens,1607\ndefiled,1,timonofathens,1607\nconflict,1,timonofathens,1607\nrebels,1,timonofathens,1607\nsilent,1,timonofathens,1607\n'This,1,timonofathens,1607\nomitt'st,1,timonofathens,1607\nmouths,1,timonofathens,1607\ndate,1,timonofathens,1607\nhired,1,timonofathens,1607\nwidow,1,timonofathens,1607\nreply,1,timonofathens,1607\nrecanter,1,timonofathens,1607\nextremely,1,timonofathens,1607\nYou'll,1,timonofathens,1607\njurors,1,timonofathens,1607\nEnsear,1,timonofathens,1607\nconfirm,1,timonofathens,1607\npillows,1,timonofathens,1607\ndestined,1,timonofathens,1607\nDid,1,timonofathens,1607\nlosses,1,timonofathens,1607\npelf,1,timonofathens,1607\nfamish,1,timonofathens,1607\nWashes,1,timonofathens,1607\nboisterous,1,timonofathens,1607\nLest,1,timonofathens,1607\nprecepts,1,timonofathens,1607\nmiseries,1,timonofathens,1607\nTogether,1,timonofathens,1607\ncondition'd,1,timonofathens,1607\nivory,1,timonofathens,1607\ndispatch,1,timonofathens,1607\nanother's,1,timonofathens,1607\ntop,1,timonofathens,1607\nfellowship,1,timonofathens,1607\ncourt'sies,1,timonofathens,1607\nscarcity,1,timonofathens,1607\nlamb,1,timonofathens,1607\nsea's,1,timonofathens,1607\ninstantly,1,timonofathens,1607\nmonths,1,timonofathens,1607\ntravail'd,1,timonofathens,1607\nDRAMATIS,1,timonofathens,1607\nshift,1,timonofathens,1607\nspangled,1,timonofathens,1607\nphysician,1,timonofathens,1607\nKeeping,1,timonofathens,1607\ndotage,1,timonofathens,1607\nvacant,1,timonofathens,1607\nburden,1,timonofathens,1607\nundergo,1,timonofathens,1607\nshins,1,timonofathens,1607\nfilths,1,timonofathens,1607\nleans,1,timonofathens,1607\ncommanding,1,timonofathens,1607\nfrankly,1,timonofathens,1607\nduller,1,timonofathens,1607\npass'd,1,timonofathens,1607\ncaked,1,timonofathens,1607\nrewards,1,timonofathens,1607\nmarbled,1,timonofathens,1607\ngnaw,1,timonofathens,1607\nflows,1,timonofathens,1607\nobedient,1,timonofathens,1607\nrecord,1,timonofathens,1607\nfence,1,timonofathens,1607\nhe'll,1,timonofathens,1607\ntrees,1,timonofathens,1607\ndivided,1,timonofathens,1607\nsmell,1,timonofathens,1607\nshame,1,timonofathens,1607\ngorge,1,timonofathens,1607\nencountered,1,timonofathens,1607\nking,1,timonofathens,1607\nprivate,1,timonofathens,1607\ndrown'd,1,timonofathens,1607\nDry,1,timonofathens,1607\nboundless,1,timonofathens,1607\nLarge,1,timonofathens,1607\nslip,1,timonofathens,1607\nnumberless,1,timonofathens,1607\nWrong,1,timonofathens,1607\nconceptious,1,timonofathens,1607\nemboldens,1,timonofathens,1607\nbelonged,1,timonofathens,1607\nFall,1,timonofathens,1607\nremorse,1,timonofathens,1607\nearth's,1,timonofathens,1607\njustly,1,timonofathens,1607\ndone't,1,timonofathens,1607\ncaitiffs,1,timonofathens,1607\ntrifling,1,timonofathens,1607\nHonest,1,timonofathens,1607\nIndifferent,1,timonofathens,1607\ndedicated,1,timonofathens,1607\nremembrance,1,timonofathens,1607\nparley,1,timonofathens,1607\nHumbly,1,timonofathens,1607\nneighbour,1,timonofathens,1607\nunremoveably,1,timonofathens,1607\nshirt,1,timonofathens,1607\nflattering,1,timonofathens,1607\noaths,1,timonofathens,1607\nproperties,1,timonofathens,1607\nhangman,1,timonofathens,1607\nshape,1,timonofathens,1607\nthrong'd,1,timonofathens,1607\nPaint,1,timonofathens,1607\nhunting,1,timonofathens,1607\nendear'd,1,timonofathens,1607\nEngenders,1,timonofathens,1607\ndip,1,timonofathens,1607\ndissemble,1,timonofathens,1607\nesteemed,1,timonofathens,1607\nchambers,1,timonofathens,1607\nFill,1,timonofathens,1607\nexempt,1,timonofathens,1607\ndraw'st,1,timonofathens,1607\nsharp,1,timonofathens,1607\nwoo'd,1,timonofathens,1607\nmonsters,1,timonofathens,1607\ndegrees,1,timonofathens,1607\nwondrously,1,timonofathens,1607\nConfound,1,timonofathens,1607\nlady,1,timonofathens,1607\ngrant'st,1,timonofathens,1607\nunnoted,1,timonofathens,1607\nbrave,2,timonofathens,1607\nheed,2,timonofathens,1607\ntomb,2,timonofathens,1607\nc,2,timonofathens,1607\njoin,2,timonofathens,1607\nsmiles,2,timonofathens,1607\ninfected,2,timonofathens,1607\ndescription,2,timonofathens,1607\nmotion,2,timonofathens,1607\nbelongs,2,timonofathens,1607\nheir,2,timonofathens,1607\ncountry,2,timonofathens,1607\nweary,2,timonofathens,1607\nwears,2,timonofathens,1607\nwish'd,2,timonofathens,1607\nfollowing,2,timonofathens,1607\nfactions,2,timonofathens,1607\nvillain's,2,timonofathens,1607\nhaste,2,timonofathens,1607\nzeal,2,timonofathens,1607\nthankfully,2,timonofathens,1607\nbones,2,timonofathens,1607\noffended,2,timonofathens,1607\nrascal,2,timonofathens,1607\nbonds,2,timonofathens,1607\nexpress,2,timonofathens,1607\npainter,2,timonofathens,1607\nlaughter,2,timonofathens,1607\nwarning,2,timonofathens,1607\ntruly,2,timonofathens,1607\npainted,2,timonofathens,1607\nimitate,2,timonofathens,1607\ndisease,2,timonofathens,1607\nsight,2,timonofathens,1607\nbrook,2,timonofathens,1607\ntears,2,timonofathens,1607\nfeeds,2,timonofathens,1607\nappear,2,timonofathens,1607\nits,2,timonofathens,1607\nthroat,2,timonofathens,1607\nnought,2,timonofathens,1607\nsour,2,timonofathens,1607\nlaugh,2,timonofathens,1607\ndamned,2,timonofathens,1607\ntruth,2,timonofathens,1607\ncontrary,2,timonofathens,1607\nremain,2,timonofathens,1607\nrated,2,timonofathens,1607\nperformance,2,timonofathens,1607\nvast,2,timonofathens,1607\nsoon,2,timonofathens,1607\ncharge,2,timonofathens,1607\nsons,2,timonofathens,1607\nfeather,2,timonofathens,1607\nsadly,2,timonofathens,1607\nyourself,2,timonofathens,1607\nbearing,2,timonofathens,1607\nstream,2,timonofathens,1607\nopposed,2,timonofathens,1607\ncaps,2,timonofathens,1607\nKeep,2,timonofathens,1607\nDigging,2,timonofathens,1607\nheap,2,timonofathens,1607\nhearing,2,timonofathens,1607\nmadness,2,timonofathens,1607\nhanging,2,timonofathens,1607\nmaking,2,timonofathens,1607\nriches,2,timonofathens,1607\nblessed,2,timonofathens,1607\nvisit,2,timonofathens,1607\nkin,2,timonofathens,1607\nsomething,2,timonofathens,1607\nAmazons,2,timonofathens,1607\nsix,2,timonofathens,1607\nconceive,2,timonofathens,1607\nwarrant,2,timonofathens,1607\nmerry,2,timonofathens,1607\n'twas,2,timonofathens,1607\nnine,2,timonofathens,1607\nSuch,2,timonofathens,1607\nsworn,2,timonofathens,1607\nFarewell,2,timonofathens,1607\nsubject,2,timonofathens,1607\nWas,2,timonofathens,1607\nadmittance,2,timonofathens,1607\nkindly,2,timonofathens,1607\nHeavens,2,timonofathens,1607\ndeserts,2,timonofathens,1607\npieces,2,timonofathens,1607\nstuff,2,timonofathens,1607\nscope,2,timonofathens,1607\nstuck,2,timonofathens,1607\nfelt,2,timonofathens,1607\nshowed,2,timonofathens,1607\nconceit,2,timonofathens,1607\ncrime,2,timonofathens,1607\nWhereof,2,timonofathens,1607\nseeks,2,timonofathens,1607\nhumble,2,timonofathens,1607\nabout,2,timonofathens,1607\ndraught,2,timonofathens,1607\nbrace,2,timonofathens,1607\ncomplete,2,timonofathens,1607\nsauce,2,timonofathens,1607\nnoblest,2,timonofathens,1607\nhumbly,2,timonofathens,1607\nmalice,2,timonofathens,1607\nupon't,2,timonofathens,1607\nspeaking,2,timonofathens,1607\nchoose,2,timonofathens,1607\nVouchsafe,2,timonofathens,1607\nflesh,2,timonofathens,1607\nfrom't,2,timonofathens,1607\nHence,2,timonofathens,1607\nknow'st,2,timonofathens,1607\ndiet,2,timonofathens,1607\nbold,2,timonofathens,1607\neagle,2,timonofathens,1607\nsense,2,timonofathens,1607\nwarm,2,timonofathens,1607\npretty,2,timonofathens,1607\nmerely,2,timonofathens,1607\nbond,2,timonofathens,1607\ncunning,2,timonofathens,1607\nbone,2,timonofathens,1607\nmistake,2,timonofathens,1607\nmatter,2,timonofathens,1607\nSempronius,2,timonofathens,1607\npraised,2,timonofathens,1607\nFollow,2,timonofathens,1607\ndeserves,2,timonofathens,1607\nconditions,2,timonofathens,1607\nauthority,2,timonofathens,1607\nmorning,2,timonofathens,1607\ndrown,2,timonofathens,1607\nmelancholy,2,timonofathens,1607\nWhile,2,timonofathens,1607\noffend,2,timonofathens,1607\nsores,2,timonofathens,1607\nAh,2,timonofathens,1607\naltogether,2,timonofathens,1607\nfool's,2,timonofathens,1607\nblows,2,timonofathens,1607\nThrowing,2,timonofathens,1607\ndesperate,2,timonofathens,1607\nStill,2,timonofathens,1607\nsmile,2,timonofathens,1607\nbad,2,timonofathens,1607\nfoam,2,timonofathens,1607\nproof,2,timonofathens,1607\ningrateful,2,timonofathens,1607\nAnswer,2,timonofathens,1607\nbrings,2,timonofathens,1607\nforce,2,timonofathens,1607\nbed,2,timonofathens,1607\nHo,2,timonofathens,1607\nfeigned,2,timonofathens,1607\nquick,2,timonofathens,1607\nease,2,timonofathens,1607\npate,2,timonofathens,1607\nabhorred,2,timonofathens,1607\nquantity,2,timonofathens,1607\nsire,2,timonofathens,1607\ndoubting,2,timonofathens,1607\ntheft,2,timonofathens,1607\npriests,2,timonofathens,1607\nsits,2,timonofathens,1607\ngoodly,2,timonofathens,1607\nburn,2,timonofathens,1607\ntendance,2,timonofathens,1607\nmadman,2,timonofathens,1607\nsounds,2,timonofathens,1607\nSave,2,timonofathens,1607\nStrange,2,timonofathens,1607\npeople,2,timonofathens,1607\nshadow,2,timonofathens,1607\nTitus,2,timonofathens,1607\nfarewell,2,timonofathens,1607\nfriendly,2,timonofathens,1607\nconquest,2,timonofathens,1607\nbuy,2,timonofathens,1607\namongst,2,timonofathens,1607\ngown,2,timonofathens,1607\nsink,2,timonofathens,1607\npaint,2,timonofathens,1607\npicture,2,timonofathens,1607\nturns,2,timonofathens,1607\ncrowns,2,timonofathens,1607\nentertain,2,timonofathens,1607\nfailing,2,timonofathens,1607\nbanqueting,2,timonofathens,1607\ndeep,2,timonofathens,1607\nflatterers,2,timonofathens,1607\nconfess,2,timonofathens,1607\nbreast,2,timonofathens,1607\npromises,2,timonofathens,1607\nartificial,2,timonofathens,1607\nyea,2,timonofathens,1607\naid,2,timonofathens,1607\nfavour,2,timonofathens,1607\npainting,2,timonofathens,1607\nlegs,2,timonofathens,1607\ntime's,2,timonofathens,1607\nenforce,2,timonofathens,1607\ndestruction,2,timonofathens,1607\ntouch'd,2,timonofathens,1607\nbounties,2,timonofathens,1607\ndefence,2,timonofathens,1607\nusurer,2,timonofathens,1607\ngame,2,timonofathens,1607\nmanner,2,timonofathens,1607\nforget,2,timonofathens,1607\nbanished,2,timonofathens,1607\nattending,2,timonofathens,1607\ncommend,2,timonofathens,1607\nfears,2,timonofathens,1607\nsmall,2,timonofathens,1607\naside,2,timonofathens,1607\nbanish,2,timonofathens,1607\nwhereof,2,timonofathens,1607\nFortune's,2,timonofathens,1607\nidle,2,timonofathens,1607\nMyself,2,timonofathens,1607\nvalue,2,timonofathens,1607\nendure,2,timonofathens,1607\nspeak'st,2,timonofathens,1607\nplaying,2,timonofathens,1607\nall's,2,timonofathens,1607\nlose,2,timonofathens,1607\nbench,2,timonofathens,1607\npure,2,timonofathens,1607\nhot,2,timonofathens,1607\nsun's,2,timonofathens,1607\nhardly,2,timonofathens,1607\nhard,2,timonofathens,1607\nFreely,2,timonofathens,1607\nfield,2,timonofathens,1607\naye,2,timonofathens,1607\nround,2,timonofathens,1607\nbeggar's,2,timonofathens,1607\nfroth,2,timonofathens,1607\nsignify,2,timonofathens,1607\nverse,2,timonofathens,1607\nsee't,2,timonofathens,1607\ntrade,2,timonofathens,1607\nTrumpets,2,timonofathens,1607\nPluck,2,timonofathens,1607\nliberty,2,timonofathens,1607\ndeny,2,timonofathens,1607\nspotted,2,timonofathens,1607\nexcuse,2,timonofathens,1607\npage,2,timonofathens,1607\nrashness,2,timonofathens,1607\noccasions,2,timonofathens,1607\nform,2,timonofathens,1607\nprepare,2,timonofathens,1607\nabhor,2,timonofathens,1607\nstones,2,timonofathens,1607\nfishes,2,timonofathens,1607\nfall'n,2,timonofathens,1607\nrough,2,timonofathens,1607\nrevenge,2,timonofathens,1607\nfond,2,timonofathens,1607\nnearest,2,timonofathens,1607\nbeggars,2,timonofathens,1607\nfurnish,2,timonofathens,1607\ntheirs,2,timonofathens,1607\nfew,2,timonofathens,1607\nbountiful,2,timonofathens,1607\ntasted,2,timonofathens,1607\nImprison'd,2,timonofathens,1607\nprays,2,timonofathens,1607\ntrumpet's,2,timonofathens,1607\nthrough,2,timonofathens,1607\nLucilius,2,timonofathens,1607\nbreeds,2,timonofathens,1607\nmoved,2,timonofathens,1607\nmaid,2,timonofathens,1607\nnay,2,timonofathens,1607\nhill,2,timonofathens,1607\nCanst,2,timonofathens,1607\nbreathed,2,timonofathens,1607\nmischief,2,timonofathens,1607\nrapt,2,timonofathens,1607\nretired,2,timonofathens,1607\nbuild,2,timonofathens,1607\ncouldst,2,timonofathens,1607\nretires,2,timonofathens,1607\nnote,2,timonofathens,1607\nprosperity,2,timonofathens,1607\nsending,2,timonofathens,1607\nElse,2,timonofathens,1607\ntrencher,2,timonofathens,1607\neye,2,timonofathens,1607\nscald,2,timonofathens,1607\ngivest,2,timonofathens,1607\nsprung,2,timonofathens,1607\nReligion,2,timonofathens,1607\nsirrah,2,timonofathens,1607\nLove,2,timonofathens,1607\nmock'd,2,timonofathens,1607\nShe,2,timonofathens,1607\nmount,2,timonofathens,1607\nperform,2,timonofathens,1607\npresented,2,timonofathens,1607\nfreely,2,timonofathens,1607\npowers,2,timonofathens,1607\nprecious,2,timonofathens,1607\nafflictions,2,timonofathens,1607\nspurn,2,timonofathens,1607\nother's,2,timonofathens,1607\nleaves,2,timonofathens,1607\nmilk,2,timonofathens,1607\nLong,2,timonofathens,1607\ncharitable,2,timonofathens,1607\nsoldiers,2,timonofathens,1607\nstrict,2,timonofathens,1607\nGrant,2,timonofathens,1607\nleopard,2,timonofathens,1607\nmask,2,timonofathens,1607\nskip,2,timonofathens,1607\nmark,2,timonofathens,1607\ncoward,2,timonofathens,1607\nHonour,2,timonofathens,1607\noracle,2,timonofathens,1607\nmire,2,timonofathens,1607\nStrangers,2,timonofathens,1607\nwoo,2,timonofathens,1607\nbrains,2,timonofathens,1607\nusurers',2,timonofathens,1607\ninfect,2,timonofathens,1607\nmedlar,2,timonofathens,1607\nnumber,2,timonofathens,1607\nusuring,2,timonofathens,1607\nsmoke,2,timonofathens,1607\nBeing,2,timonofathens,1607\nletters,2,timonofathens,1607\ncasket,2,timonofathens,1607\nDescend,2,timonofathens,1607\nmistress',2,timonofathens,1607\nOffering,2,timonofathens,1607\nthorough,2,timonofathens,1607\nwealthy,2,timonofathens,1607\nbehalf,2,timonofathens,1607\nslight,2,timonofathens,1607\nproved,2,timonofathens,1607\nexample,2,timonofathens,1607\npurchase,2,timonofathens,1607\nwit,2,timonofathens,1607\nsides,2,timonofathens,1607\nsorrow,2,timonofathens,1607\ncure,2,timonofathens,1607\ndifferent,2,timonofathens,1607\nDead,2,timonofathens,1607\ndinner's,2,timonofathens,1607\ncity's,2,timonofathens,1607\nflight,2,timonofathens,1607\nyou're,2,timonofathens,1607\nremains,2,timonofathens,1607\nsubtle,2,timonofathens,1607\nheavy,2,timonofathens,1607\nable,2,timonofathens,1607\nrise,2,timonofathens,1607\nreceive,2,timonofathens,1607\nambition,2,timonofathens,1607\nsufferance,2,timonofathens,1607\npride,2,timonofathens,1607\nends,2,timonofathens,1607\nbreakfast,2,timonofathens,1607\nThrows,2,timonofathens,1607\ncursed,2,timonofathens,1607\nShame,2,timonofathens,1607\ncurses,2,timonofathens,1607\nnews,2,timonofathens,1607\nBanish,2,timonofathens,1607\nfix'd,2,timonofathens,1607\nhonoured,2,timonofathens,1607\nwhat's,2,timonofathens,1607\nHail,2,timonofathens,1607\nweeping,2,timonofathens,1607\nlabour'd,2,timonofathens,1607\nconsent,2,timonofathens,1607\nwolf,2,timonofathens,1607\ndrops,2,timonofathens,1607\nserves,2,timonofathens,1607\nsober,2,timonofathens,1607\nstepp'd,2,timonofathens,1607\nhundred,2,timonofathens,1607\ncover,2,timonofathens,1607\nEver,2,timonofathens,1607\nfail,2,timonofathens,1607\nEven,2,timonofathens,1607\nglad,2,timonofathens,1607\nStrike,2,timonofathens,1607\nminister,2,timonofathens,1607\nwept,2,timonofathens,1607\nyond,2,timonofathens,1607\ndates,2,timonofathens,1607\nfoe,2,timonofathens,1607\ncloud,2,timonofathens,1607\nmethinks,2,timonofathens,1607\npleased,2,timonofathens,1607\nfit,2,timonofathens,1607\nExcellent,2,timonofathens,1607\ndues,2,timonofathens,1607\npassion,2,timonofathens,1607\nsafety,2,timonofathens,1607\nCaphis,2,timonofathens,1607\nlascivious,2,timonofathens,1607\nbark,2,timonofathens,1607\nmansion,2,timonofathens,1607\nshown,2,timonofathens,1607\nworship,2,timonofathens,1607\nsurge,2,timonofathens,1607\nsmooth,2,timonofathens,1607\ndepart,2,timonofathens,1607\nlived,2,timonofathens,1607\nCut,2,timonofathens,1607\nfate,2,timonofathens,1607\nkiss,2,timonofathens,1607\nye've,2,timonofathens,1607\ndrinks,2,timonofathens,1607\nlights,2,timonofathens,1607\nis't,2,timonofathens,1607\nlap,2,timonofathens,1607\nstroke,2,timonofathens,1607\nwild,2,timonofathens,1607\nEvery,2,timonofathens,1607\nincident,2,timonofathens,1607\npardon,2,timonofathens,1607\nhome,2,timonofathens,1607\nholy,2,timonofathens,1607\nhollow,2,timonofathens,1607\nfeasts,2,timonofathens,1607\ncounterfeit,2,timonofathens,1607\nflood,2,timonofathens,1607\nWherefore,2,timonofathens,1607\nvirtues,2,timonofathens,1607\nmarrows,2,timonofathens,1607\nyellow,2,timonofathens,1607\nhunt,2,timonofathens,1607\nalong,2,timonofathens,1607\nugly,2,timonofathens,1607\nstates,2,timonofathens,1607\nRight,2,timonofathens,1607\nknowest,2,timonofathens,1607\nseem,2,timonofathens,1607\nServing,2,timonofathens,1607\nLie,2,timonofathens,1607\ncost,2,timonofathens,1607\nshapes,2,timonofathens,1607\nLacedaemon,2,timonofathens,1607\nconfounding,2,timonofathens,1607\ntree,2,timonofathens,1607\nnights,2,timonofathens,1607\nKnow,2,timonofathens,1607\nblame,2,timonofathens,1607\nentreat,2,timonofathens,1607\nglove,2,timonofathens,1607\ncountrymen,2,timonofathens,1607\nsell,2,timonofathens,1607\ndistracted,2,timonofathens,1607\nwhilst,2,timonofathens,1607\nbleeding,2,timonofathens,1607\nseason,2,timonofathens,1607\nprotest,2,timonofathens,1607\npurpose,2,timonofathens,1607\nMarch,2,timonofathens,1607\ninvite,2,timonofathens,1607\nmerchant,2,timonofathens,1607\nHearing,2,timonofathens,1607\nlordship's,2,timonofathens,1607\nchoke,2,timonofathens,1607\near,2,timonofathens,1607\nsuitor,2,timonofathens,1607\nmar,2,timonofathens,1607\nwearing,2,timonofathens,1607\nleast,2,timonofathens,1607\ncomfortable,2,timonofathens,1607\nfuture,2,timonofathens,1607\nreward,2,timonofathens,1607\nremember,2,timonofathens,1607\nDoes,2,timonofathens,1607\nconjured,2,timonofathens,1607\nwhip,2,timonofathens,1607\nthoughts,2,timonofathens,1607\nGreat,2,timonofathens,1607\nthinking,2,timonofathens,1607\nconfess'd,2,timonofathens,1607\npolitic,2,timonofathens,1607\nrevenges,2,timonofathens,1607\ncredit,2,timonofathens,1607\ngules,2,timonofathens,1607\nthither,2,timonofathens,1607\nkeepers,2,timonofathens,1607\nsleeping,2,timonofathens,1607\nTIMON's,2,timonofathens,1607\nmuffled,2,timonofathens,1607\nWithout,2,timonofathens,1607\nhuman,2,timonofathens,1607\nLend,2,timonofathens,1607\ngoing,2,timonofathens,1607\nfollow'd,2,timonofathens,1607\ncontent,2,timonofathens,1607\nimportunate,2,timonofathens,1607\nMoe,2,timonofathens,1607\npayment,2,timonofathens,1607\nexpense,2,timonofathens,1607\nlaid,2,timonofathens,1607\nrespect,2,timonofathens,1607\ninvites,2,timonofathens,1607\nprovide,2,timonofathens,1607\nattend,2,timonofathens,1607\nhoar,2,timonofathens,1607\nswallow,2,timonofathens,1607\nframe,2,timonofathens,1607\nreverend,2,timonofathens,1607\nwhores,2,timonofathens,1607\nfilthy,2,timonofathens,1607\nbehold,2,timonofathens,1607\ndamn,2,timonofathens,1607\nquietly,2,timonofathens,1607\nreserve,2,timonofathens,1607\nwills,2,timonofathens,1607\nfigures,2,timonofathens,1607\ntake't,2,timonofathens,1607\nwhoremaster,2,timonofathens,1607\ncharity,2,timonofathens,1607\nrepair,2,timonofathens,1607\nbreathe,2,timonofathens,1607\nFind,2,timonofathens,1607\nshare,2,timonofathens,1607\ne'er,2,timonofathens,1607\nturn'd,2,timonofathens,1607\nenemy,2,timonofathens,1607\nungrateful,2,timonofathens,1607\nsummer,2,timonofathens,1607\no'er,3,timonofathens,1607\nvillany,3,timonofathens,1607\nquality,3,timonofathens,1607\ntook,3,timonofathens,1607\nAlas,3,timonofathens,1607\ntreasure,3,timonofathens,1607\nalike,3,timonofathens,1607\nFie,3,timonofathens,1607\nwicked,3,timonofathens,1607\ndine,3,timonofathens,1607\nrot,3,timonofathens,1607\nepitaph,3,timonofathens,1607\ndespised,3,timonofathens,1607\nsingle,3,timonofathens,1607\nTell,3,timonofathens,1607\nnaked,3,timonofathens,1607\nEre,3,timonofathens,1607\nsort,3,timonofathens,1607\nlies,3,timonofathens,1607\npleasures,3,timonofathens,1607\nspare,3,timonofathens,1607\ncast,3,timonofathens,1607\nPoor,3,timonofathens,1607\nmercy,3,timonofathens,1607\nconscience,3,timonofathens,1607\ndraw,3,timonofathens,1607\ndance,3,timonofathens,1607\nbrother,3,timonofathens,1607\npurse,3,timonofathens,1607\nMuch,3,timonofathens,1607\ncheer,3,timonofathens,1607\nwants,3,timonofathens,1607\ntown,3,timonofathens,1607\ngross,3,timonofathens,1607\nsoft,3,timonofathens,1607\nblack,3,timonofathens,1607\nI'm,3,timonofathens,1607\naged,3,timonofathens,1607\n'twere,3,timonofathens,1607\nbastard,3,timonofathens,1607\nwall,3,timonofathens,1607\nvirtuous,3,timonofathens,1607\nsociety,3,timonofathens,1607\nfell,3,timonofathens,1607\nyield,3,timonofathens,1607\nbirds,3,timonofathens,1607\nembrace,3,timonofathens,1607\nknives,3,timonofathens,1607\nMusic,3,timonofathens,1607\naffect,3,timonofathens,1607\nworse,3,timonofathens,1607\naccursed,3,timonofathens,1607\nwrong,3,timonofathens,1607\nOut,3,timonofathens,1607\ndaughter,3,timonofathens,1607\nhabit,3,timonofathens,1607\nfault,3,timonofathens,1607\nwhite,3,timonofathens,1607\nsum,3,timonofathens,1607\nfeel,3,timonofathens,1607\ncease,3,timonofathens,1607\ninfinite,3,timonofathens,1607\n'Faith,3,timonofathens,1607\ntitle,3,timonofathens,1607\nhence,3,timonofathens,1607\ndies,3,timonofathens,1607\nhated,3,timonofathens,1607\nThough,3,timonofathens,1607\nanon,3,timonofathens,1607\nstop,3,timonofathens,1607\nvoice,3,timonofathens,1607\noffice,3,timonofathens,1607\ndesire,3,timonofathens,1607\nspoke,3,timonofathens,1607\nurge,3,timonofathens,1607\nbills,3,timonofathens,1607\nmusic,3,timonofathens,1607\nhang'd,3,timonofathens,1607\nneither,3,timonofathens,1607\ndeeds,3,timonofathens,1607\nThose,3,timonofathens,1607\nshortly,3,timonofathens,1607\nlands,3,timonofathens,1607\ncanst,3,timonofathens,1607\nto't,3,timonofathens,1607\nWithin,3,timonofathens,1607\nsince,3,timonofathens,1607\npleasure,3,timonofathens,1607\nLet's,3,timonofathens,1607\nDoubt,3,timonofathens,1607\nIs't,3,timonofathens,1607\nmonstrous,3,timonofathens,1607\nprove,3,timonofathens,1607\nheads,3,timonofathens,1607\nsooner,3,timonofathens,1607\nbehind,3,timonofathens,1607\ngot,3,timonofathens,1607\nbeyond,3,timonofathens,1607\npains,3,timonofathens,1607\ndogs,3,timonofathens,1607\ndeed,3,timonofathens,1607\nSoldiers,3,timonofathens,1607\nexcellent,3,timonofathens,1607\ndeal,3,timonofathens,1607\nlend,3,timonofathens,1607\napproach,3,timonofathens,1607\nnecessity,3,timonofathens,1607\nLive,3,timonofathens,1607\naccount,3,timonofathens,1607\nsometime,3,timonofathens,1607\nmiserable,3,timonofathens,1607\nla,3,timonofathens,1607\nmoon,3,timonofathens,1607\nlost,3,timonofathens,1607\nloved,3,timonofathens,1607\nspend,3,timonofathens,1607\nharm,3,timonofathens,1607\nhall,3,timonofathens,1607\nnearer,3,timonofathens,1607\nCall,3,timonofathens,1607\nnatural,3,timonofathens,1607\nhang,3,timonofathens,1607\nshut,3,timonofathens,1607\nfoul,3,timonofathens,1607\nprovided,3,timonofathens,1607\narm,3,timonofathens,1607\nbrothers,3,timonofathens,1607\nask,3,timonofathens,1607\npaid,3,timonofathens,1607\nhum,3,timonofathens,1607\nentertain'd,3,timonofathens,1607\nfood,3,timonofathens,1607\ncreatures,3,timonofathens,1607\nbanquet,3,timonofathens,1607\nundone,3,timonofathens,1607\njudgment,3,timonofathens,1607\nflatteries,3,timonofathens,1607\nhaving,3,timonofathens,1607\nhere's,3,timonofathens,1607\nchange,3,timonofathens,1607\njustice,3,timonofathens,1607\nkeeps,3,timonofathens,1607\nAgainst,3,timonofathens,1607\nreport,3,timonofathens,1607\nalmost,3,timonofathens,1607\nwonder,3,timonofathens,1607\nprodigal,3,timonofathens,1607\ndaily,3,timonofathens,1607\nentertainment,3,timonofathens,1607\ntender,3,timonofathens,1607\nfaint,3,timonofathens,1607\nwolves,3,timonofathens,1607\nSet,3,timonofathens,1607\nmouth,3,timonofathens,1607\ndares,3,timonofathens,1607\ncloak,3,timonofathens,1607\nSee,3,timonofathens,1607\nmightst,3,timonofathens,1607\nend,3,timonofathens,1607\nalready,3,timonofathens,1607\ndidst,3,timonofathens,1607\nhereditary,3,timonofathens,1607\n'gainst,3,timonofathens,1607\ndearest,3,timonofathens,1607\npresently,3,timonofathens,1607\nknows,3,timonofathens,1607\nbecause,3,timonofathens,1607\nflatter,3,timonofathens,1607\ngreatest,3,timonofathens,1607\ngates,3,timonofathens,1607\nplenteous,3,timonofathens,1607\ntrouble,3,timonofathens,1607\nwrath,3,timonofathens,1607\ntaste,3,timonofathens,1607\nget,3,timonofathens,1607\nsalt,3,timonofathens,1607\nsake,3,timonofathens,1607\nformer,3,timonofathens,1607\npomp,3,timonofathens,1607\nthrow,3,timonofathens,1607\nhumanity,3,timonofathens,1607\nbeastly,3,timonofathens,1607\nriot,3,timonofathens,1607\ncrown'd,3,timonofathens,1607\nThink,3,timonofathens,1607\nearnest,3,timonofathens,1607\nwax,3,timonofathens,1607\npoet,3,timonofathens,1607\nrage,3,timonofathens,1607\nface,3,timonofathens,1607\nleprosy,3,timonofathens,1607\nnext,3,timonofathens,1607\nThree,3,timonofathens,1607\nrequite,3,timonofathens,1607\nfaces,3,timonofathens,1607\ntakes,3,timonofathens,1607\nwomb,3,timonofathens,1607\nlust,3,timonofathens,1607\nrail,3,timonofathens,1607\nfox,3,timonofathens,1607\nNoble,3,timonofathens,1607\nMany,3,timonofathens,1607\ndiseases,3,timonofathens,1607\nminds,3,timonofathens,1607\ngrant,3,timonofathens,1607\nhumour,3,timonofathens,1607\nreturns,3,timonofathens,1607\nwounds,3,timonofathens,1607\nfly,3,timonofathens,1607\nfie,3,timonofathens,1607\nfill,3,timonofathens,1607\nparticular,3,timonofathens,1607\nbare,3,timonofathens,1607\nshows,3,timonofathens,1607\nperceive,3,timonofathens,1607\nhour,3,timonofathens,1607\ncomfort,3,timonofathens,1607\npublic,3,timonofathens,1607\nfast,3,timonofathens,1607\nEach,3,timonofathens,1607\nreason,3,timonofathens,1607\ngreet,3,timonofathens,1607\ndangerous,3,timonofathens,1607\nargument,3,timonofathens,1607\nwinter,3,timonofathens,1607\nhorses,3,timonofathens,1607\ngives,3,timonofathens,1607\nbawd,3,timonofathens,1607\ninterest,3,timonofathens,1607\nwaiting,3,timonofathens,1607\nswear,3,timonofathens,1607\nbabe,3,timonofathens,1607\ngoodness,3,timonofathens,1607\nseek,3,timonofathens,1607\nNe'er,3,timonofathens,1607\nrender,3,timonofathens,1607\nTrue,3,timonofathens,1607\nsetting,3,timonofathens,1607\nheels,3,timonofathens,1607\nhours,3,timonofathens,1607\nself,3,timonofathens,1607\nfairly,3,timonofathens,1607\nsickness,3,timonofathens,1607\nlip,3,timonofathens,1607\ncoin,3,timonofathens,1607\nhonesty,3,timonofathens,1607\nspirits,3,timonofathens,1607\nspite,3,timonofathens,1607\nFive,3,timonofathens,1607\nladies,3,timonofathens,1607\nlips,3,timonofathens,1607\nAmen,3,timonofathens,1607\nE'en,3,timonofathens,1607\nsuspect,3,timonofathens,1607\nrecompense,3,timonofathens,1607\nsilver,3,timonofathens,1607\nhonour'd,3,timonofathens,1607\ndare,3,timonofathens,1607\nfollow,3,timonofathens,1607\nweigh,3,timonofathens,1607\nRich,3,timonofathens,1607\nland,3,timonofathens,1607\nTimandra,3,timonofathens,1607\nbred,3,timonofathens,1607\nliest,3,timonofathens,1607\nshake,3,timonofathens,1607\nshine,3,timonofathens,1607\nTake,3,timonofathens,1607\ncreditors,3,timonofathens,1607\ncommand,3,timonofathens,1607\nwoman,3,timonofathens,1607\n'mongst,3,timonofathens,1607\nth',3,timonofathens,1607\nmistress,4,timonofathens,1607\nbusiness,4,timonofathens,1607\nthought,4,timonofathens,1607\nStay,4,timonofathens,1607\nbounteous,4,timonofathens,1607\nmere,4,timonofathens,1607\nunderstand,4,timonofathens,1607\nunder,4,timonofathens,1607\nthou'lt,4,timonofathens,1607\nodds,4,timonofathens,1607\ntrust,4,timonofathens,1607\nbecome,4,timonofathens,1607\nconfusion,4,timonofathens,1607\ngrows,4,timonofathens,1607\ntoward,4,timonofathens,1607\ncame,4,timonofathens,1607\nwait,4,timonofathens,1607\nfurther,4,timonofathens,1607\nsums,4,timonofathens,1607\nbound,4,timonofathens,1607\nlight,4,timonofathens,1607\ncounsel,4,timonofathens,1607\nwithin,4,timonofathens,1607\ncause,4,timonofathens,1607\nlooks,4,timonofathens,1607\ndoubt,4,timonofathens,1607\nAttendants,4,timonofathens,1607\namiss,4,timonofathens,1607\nread,4,timonofathens,1607\nourselves,4,timonofathens,1607\nreceived,4,timonofathens,1607\nroots,4,timonofathens,1607\nfellow,4,timonofathens,1607\naccept,4,timonofathens,1607\nsteal,4,timonofathens,1607\nmean,4,timonofathens,1607\nobserve,4,timonofathens,1607\nparts,4,timonofathens,1607\nha',4,timonofathens,1607\nmanners,4,timonofathens,1607\nWhat's,4,timonofathens,1607\nfoes,4,timonofathens,1607\ntherefore,4,timonofathens,1607\nin't,4,timonofathens,1607\nkept,4,timonofathens,1607\ndinner,4,timonofathens,1607\nbless,4,timonofathens,1607\nwhole,4,timonofathens,1607\nHad,4,timonofathens,1607\npast,4,timonofathens,1607\ngod,4,timonofathens,1607\nweep,4,timonofathens,1607\ngrief,4,timonofathens,1607\nPrithee,4,timonofathens,1607\nkindness,4,timonofathens,1607\nfifty,4,timonofathens,1607\nPut,4,timonofathens,1607\ntongue,4,timonofathens,1607\nLike,4,timonofathens,1607\ni',4,timonofathens,1607\nFortune,4,timonofathens,1607\nservant,4,timonofathens,1607\njewels,4,timonofathens,1607\nage,4,timonofathens,1607\nho,4,timonofathens,1607\nspent,4,timonofathens,1607\nill,4,timonofathens,1607\nknew,4,timonofathens,1607\nknee,4,timonofathens,1607\nnatures,4,timonofathens,1607\nbrought,4,timonofathens,1607\nspeaks,4,timonofathens,1607\ncourse,4,timonofathens,1607\nCommend,4,timonofathens,1607\nfoot,4,timonofathens,1607\nbosom,4,timonofathens,1607\nalive,4,timonofathens,1607\nrogue,4,timonofathens,1607\ningratitude,4,timonofathens,1607\nhazard,4,timonofathens,1607\nbroke,4,timonofathens,1607\nnew,4,timonofathens,1607\nempty,4,timonofathens,1607\ngentle,4,timonofathens,1607\nHang,4,timonofathens,1607\nAthenians,4,timonofathens,1607\nours,4,timonofathens,1607\nstrike,4,timonofathens,1607\nIsidore,4,timonofathens,1607\nphilosopher,4,timonofathens,1607\nSome,4,timonofathens,1607\nknave,4,timonofathens,1607\nI'ld,4,timonofathens,1607\nSEMPRONIUS,4,timonofathens,1607\nlabour,4,timonofathens,1607\nover,4,timonofathens,1607\nclose,4,timonofathens,1607\nwrongs,4,timonofathens,1607\nflies,4,timonofathens,1607\nthing,4,timonofathens,1607\nbreak,4,timonofathens,1607\nhappiness,4,timonofathens,1607\nheard,4,timonofathens,1607\nbelieve,4,timonofathens,1607\nCan,4,timonofathens,1607\nfound,4,timonofathens,1607\ncoming,4,timonofathens,1607\nFourth,4,timonofathens,1607\nserved,4,timonofathens,1607\nLUCIUS,4,timonofathens,1607\nanger,4,timonofathens,1607\nangry,4,timonofathens,1607\ntable,4,timonofathens,1607\nThat's,4,timonofathens,1607\nFare,4,timonofathens,1607\nlay,4,timonofathens,1607\ngiven,4,timonofathens,1607\nclear,4,timonofathens,1607\ndishes,4,timonofathens,1607\ncut,4,timonofathens,1607\nstrong,4,timonofathens,1607\nlives,4,timonofathens,1607\nalone,4,timonofathens,1607\nalways,4,timonofathens,1607\nwe'll,4,timonofathens,1607\nMine,4,timonofathens,1607\nlaws,4,timonofathens,1607\nNothing,4,timonofathens,1607\nseldom,4,timonofathens,1607\nmet,4,timonofathens,1607\nglory,4,timonofathens,1607\nAway,4,timonofathens,1607\nlion,4,timonofathens,1607\nfather,4,timonofathens,1607\ntry,4,timonofathens,1607\nwitness,4,timonofathens,1607\ndue,4,timonofathens,1607\ncatch,4,timonofathens,1607\nBring,4,timonofathens,1607\nwomen,4,timonofathens,1607\nVENTIDIUS,5,timonofathens,1607\nV,5,timonofathens,1607\ntimes,5,timonofathens,1607\nhelp,5,timonofathens,1607\nvillain,5,timonofathens,1607\nflow,5,timonofathens,1607\nSoldier,5,timonofathens,1607\nGive,5,timonofathens,1607\nthou'rt,5,timonofathens,1607\nanother,5,timonofathens,1607\nNow,5,timonofathens,1607\nMethinks,5,timonofathens,1607\nsea,5,timonofathens,1607\nTheir,5,timonofathens,1607\nbeloved,5,timonofathens,1607\nfaults,5,timonofathens,1607\nThese,5,timonofathens,1607\nboth,5,timonofathens,1607\nflatterer,5,timonofathens,1607\nsun,5,timonofathens,1607\nfeed,5,timonofathens,1607\nheaven,5,timonofathens,1607\nwise,5,timonofathens,1607\nrest,5,timonofathens,1607\nLadies,5,timonofathens,1607\nwast,5,timonofathens,1607\nHa,5,timonofathens,1607\nIV,5,timonofathens,1607\nears,5,timonofathens,1607\nnight,5,timonofathens,1607\nvaliant,5,timonofathens,1607\ngave,5,timonofathens,1607\nsorry,5,timonofathens,1607\nOr,5,timonofathens,1607\ncap,5,timonofathens,1607\nSpeak,5,timonofathens,1607\njust,5,timonofathens,1607\ncurse,5,timonofathens,1607\nquite,5,timonofathens,1607\nsaid,5,timonofathens,1607\ngift,5,timonofathens,1607\nbeat,5,timonofathens,1607\ndebt,5,timonofathens,1607\nstone,5,timonofathens,1607\nthrive,5,timonofathens,1607\nhands,5,timonofathens,1607\nstrain,5,timonofathens,1607\nYet,5,timonofathens,1607\ntwenty,5,timonofathens,1607\nforgot,5,timonofathens,1607\npraise,5,timonofathens,1607\nopen,5,timonofathens,1607\nowes,5,timonofathens,1607\nthough,5,timonofathens,1607\nass,5,timonofathens,1607\nye,5,timonofathens,1607\ntouch,5,timonofathens,1607\nArt,5,timonofathens,1607\nInto,5,timonofathens,1607\nfar,5,timonofathens,1607\noften,5,timonofathens,1607\ngriefs,5,timonofathens,1607\nshouldst,5,timonofathens,1607\nbelow,5,timonofathens,1607\nbears,5,timonofathens,1607\nyoung,5,timonofathens,1607\nmisery,5,timonofathens,1607\nTherefore,5,timonofathens,1607\ndoors,5,timonofathens,1607\nknown,5,timonofathens,1607\nfire,5,timonofathens,1607\nWere,5,timonofathens,1607\nmorrow,5,timonofathens,1607\nVarro,5,timonofathens,1607\nThus,5,timonofathens,1607\nhappy,5,timonofathens,1607\nthroats,5,timonofathens,1607\nsupply,5,timonofathens,1607\ngifts,5,timonofathens,1607\ncontempt,5,timonofathens,1607\nTill,5,timonofathens,1607\nbase,5,timonofathens,1607\nlarge,5,timonofathens,1607\nfare,5,timonofathens,1607\ngentlemen,5,timonofathens,1607\nIsidore's,5,timonofathens,1607\nlow,5,timonofathens,1607\nsweet,5,timonofathens,1607\nsound,5,timonofathens,1607\nPray,5,timonofathens,1607\nwretched,5,timonofathens,1607\nhither,5,timonofathens,1607\nmaster's,5,timonofathens,1607\nlie,5,timonofathens,1607\nmad,5,timonofathens,1607\nBefore,5,timonofathens,1607\nMen,5,timonofathens,1607\non't,5,timonofathens,1607\nvirtue,5,timonofathens,1607\nstrange,5,timonofathens,1607\nHe's,5,timonofathens,1607\nlack,5,timonofathens,1607\ntold,6,timonofathens,1607\ndebts,6,timonofathens,1607\nfor't,6,timonofathens,1607\nhorse,6,timonofathens,1607\nMust,6,timonofathens,1607\ndrum,6,timonofathens,1607\nfury,6,timonofathens,1607\nsoul,6,timonofathens,1607\nWhom,6,timonofathens,1607\nhead,6,timonofathens,1607\nsure,6,timonofathens,1607\nsit,6,timonofathens,1607\nsin,6,timonofathens,1607\nGet,6,timonofathens,1607\nbeasts,6,timonofathens,1607\nworth,6,timonofathens,1607\nworst,6,timonofathens,1607\nThere,6,timonofathens,1607\nabove,6,timonofathens,1607\npromise,6,timonofathens,1607\nmasters,6,timonofathens,1607\nwine,6,timonofathens,1607\nPlease,6,timonofathens,1607\nelse,6,timonofathens,1607\nAt,6,timonofathens,1607\nname,6,timonofathens,1607\nAn,6,timonofathens,1607\npass,6,timonofathens,1607\nRe,6,timonofathens,1607\ninstant,6,timonofathens,1607\nearth,6,timonofathens,1607\nloves,6,timonofathens,1607\nhadst,6,timonofathens,1607\nless,6,timonofathens,1607\ngrace,6,timonofathens,1607\nmen's,6,timonofathens,1607\nvalour,6,timonofathens,1607\nhalf,6,timonofathens,1607\nMore,6,timonofathens,1607\ncity,6,timonofathens,1607\nenemies,6,timonofathens,1607\nborrow,6,timonofathens,1607\nroom,6,timonofathens,1607\noccasion,6,timonofathens,1607\nindeed,6,timonofathens,1607\nSir,6,timonofathens,1607\nyouth,6,timonofathens,1607\nseveral,6,timonofathens,1607\nere,6,timonofathens,1607\nDost,6,timonofathens,1607\nhigh,6,timonofathens,1607\nLook,6,timonofathens,1607\nthere's,6,timonofathens,1607\nslave,6,timonofathens,1607\nlet's,6,timonofathens,1607\nbeseech,6,timonofathens,1607\nwalls,6,timonofathens,1607\nLucius,6,timonofathens,1607\nvillains,6,timonofathens,1607\nShall,6,timonofathens,1607\npoison,6,timonofathens,1607\nplease,6,timonofathens,1607\nfind,6,timonofathens,1607\nwoods,6,timonofathens,1607\nthank,6,timonofathens,1607\nprithee,6,timonofathens,1607\nVentidius,6,timonofathens,1607\ncaptain,6,timonofathens,1607\ngoes,6,timonofathens,1607\nservants,6,timonofathens,1607\nMay,6,timonofathens,1607\ne'en,6,timonofathens,1607\nmeet,7,timonofathens,1607\npeace,7,timonofathens,1607\nWill,7,timonofathens,1607\nmend,7,timonofathens,1607\nvain,7,timonofathens,1607\nPage,7,timonofathens,1607\ncare,7,timonofathens,1607\nLucullus,7,timonofathens,1607\nfull,7,timonofathens,1607\nfools,7,timonofathens,1607\nCupid,7,timonofathens,1607\npiece,7,timonofathens,1607\nturn,7,timonofathens,1607\nborn,7,timonofathens,1607\nafter,7,timonofathens,1607\nothers,7,timonofathens,1607\nwish,7,timonofathens,1607\nsick,7,timonofathens,1607\nslaves,7,timonofathens,1607\npay,7,timonofathens,1607\nitself,7,timonofathens,1607\nOn,7,timonofathens,1607\nII,7,timonofathens,1607\nproud,7,timonofathens,1607\nyourselves,7,timonofathens,1607\nwhore,7,timonofathens,1607\nwear,7,timonofathens,1607\nHere's,7,timonofathens,1607\ndear,7,timonofathens,1607\ndead,7,timonofathens,1607\nthat's,7,timonofathens,1607\nsenate,7,timonofathens,1607\nThan,7,timonofathens,1607\nthanks,7,timonofathens,1607\nthings,7,timonofathens,1607\nestate,7,timonofathens,1607\nyours,7,timonofathens,1607\nstate,7,timonofathens,1607\nthief,7,timonofathens,1607\nneed,7,timonofathens,1607\nliving,7,timonofathens,1607\nnear,7,timonofathens,1607\nfive,7,timonofathens,1607\nstand,7,timonofathens,1607\nwhy,7,timonofathens,1607\nway,7,timonofathens,1607\nthemselves,7,timonofathens,1607\ntill,7,timonofathens,1607\nfriendship,7,timonofathens,1607\nhope,7,timonofathens,1607\nman's,7,timonofathens,1607\nunto,7,timonofathens,1607\ntogether,7,timonofathens,1607\ncold,7,timonofathens,1607\nPHRYNIA,7,timonofathens,1607\nleave,7,timonofathens,1607\nconfound,7,timonofathens,1607\nmakes,7,timonofathens,1607\nlast,7,timonofathens,1607\nbeing,7,timonofathens,1607\nFlaminius,7,timonofathens,1607\nWhere,7,timonofathens,1607\nlord's,7,timonofathens,1607\ncertain,7,timonofathens,1607\nwithout,7,timonofathens,1607\nspirit,7,timonofathens,1607\nBanditti,7,timonofathens,1607\nkill,7,timonofathens,1607\n',8,timonofathens,1607\npity,8,timonofathens,1607\nNay,8,timonofathens,1607\ndays,8,timonofathens,1607\nhealth,8,timonofathens,1607\nrather,8,timonofathens,1607\ndrink,8,timonofathens,1607\nknaves,8,timonofathens,1607\nshe,8,timonofathens,1607\ndeath,8,timonofathens,1607\nOur,8,timonofathens,1607\nservice,8,timonofathens,1607\nsword,8,timonofathens,1607\nbring,8,timonofathens,1607\nBy,8,timonofathens,1607\ndenied,8,timonofathens,1607\nHas,8,timonofathens,1607\njewel,8,timonofathens,1607\nair,8,timonofathens,1607\nleft,8,timonofathens,1607\nLUCULLUS,8,timonofathens,1607\nany,8,timonofathens,1607\nplace,8,timonofathens,1607\nServilius,8,timonofathens,1607\nhand,8,timonofathens,1607\nPHILOTUS,8,timonofathens,1607\nAre,8,timonofathens,1607\nright,8,timonofathens,1607\nroot,8,timonofathens,1607\nmind,8,timonofathens,1607\nbeggar,8,timonofathens,1607\nonce,8,timonofathens,1607\nsame,8,timonofathens,1607\nWell,8,timonofathens,1607\nbounty,8,timonofathens,1607\nHORTENSIUS,8,timonofathens,1607\nold,8,timonofathens,1607\nthree,8,timonofathens,1607\nwork,8,timonofathens,1607\ncompany,8,timonofathens,1607\nword,8,timonofathens,1607\neven,8,timonofathens,1607\nsenators,8,timonofathens,1607\nlaw,8,timonofathens,1607\nseen,8,timonofathens,1607\nfellows,8,timonofathens,1607\nreturn,8,timonofathens,1607\nsend,8,timonofathens,1607\nlate,8,timonofathens,1607\nshalt,8,timonofathens,1607\ndie,8,timonofathens,1607\npray,9,timonofathens,1607\nUpon,9,timonofathens,1607\nTIMANDRA,9,timonofathens,1607\nthieves,9,timonofathens,1607\nfalse,9,timonofathens,1607\nThere's,9,timonofathens,1607\neach,9,timonofathens,1607\nIII,9,timonofathens,1607\nbid,9,timonofathens,1607\nmankind,9,timonofathens,1607\ndoth,9,timonofathens,1607\nBoth,9,timonofathens,1607\nbreath,9,timonofathens,1607\nneeds,9,timonofathens,1607\ndone,9,timonofathens,1607\nYes,9,timonofathens,1607\nhast,9,timonofathens,1607\nLords,9,timonofathens,1607\nwater,9,timonofathens,1607\nFrom,9,timonofathens,1607\nwar,9,timonofathens,1607\nserve,9,timonofathens,1607\nMake,9,timonofathens,1607\ngentleman,9,timonofathens,1607\nhearts,9,timonofathens,1607\nthus,9,timonofathens,1607\nThy,9,timonofathens,1607\nanswer,10,timonofathens,1607\nevery,10,timonofathens,1607\nWould,10,timonofathens,1607\nwords,10,timonofathens,1607\ncall,10,timonofathens,1607\nNot,10,timonofathens,1607\nAside,10,timonofathens,1607\ncommon,10,timonofathens,1607\nstay,10,timonofathens,1607\nenter,10,timonofathens,1607\nblood,10,timonofathens,1607\nbear,10,timonofathens,1607\nforth,10,timonofathens,1607\nhate,10,timonofathens,1607\nshow,10,timonofathens,1607\nHath,10,timonofathens,1607\nHave,10,timonofathens,1607\nbeast,10,timonofathens,1607\ngeneral,10,timonofathens,1607\nnor,10,timonofathens,1607\nfree,10,timonofathens,1607\nwho,10,timonofathens,1607\nfair,10,timonofathens,1607\nfall,10,timonofathens,1607\nfortune,10,timonofathens,1607\nthousand,10,timonofathens,1607\nhold,10,timonofathens,1607\nwilt,10,timonofathens,1607\nMessenger,10,timonofathens,1607\nwouldst,10,timonofathens,1607\nWhose,11,timonofathens,1607\nNor,11,timonofathens,1607\nagainst,11,timonofathens,1607\nset,11,timonofathens,1607\nJeweller,11,timonofathens,1607\nOne,11,timonofathens,1607\nhe's,11,timonofathens,1607\nBe,11,timonofathens,1607\nmeans,11,timonofathens,1607\nwhose,11,timonofathens,1607\nStranger,11,timonofathens,1607\nfeast,11,timonofathens,1607\nlittle,11,timonofathens,1607\nwhere,11,timonofathens,1607\ngrave,11,timonofathens,1607\nSenators,11,timonofathens,1607\nrich,11,timonofathens,1607\nmaster,11,timonofathens,1607\nback,11,timonofathens,1607\nMerchant,11,timonofathens,1607\nlive,11,timonofathens,1607\nhonourable,12,timonofathens,1607\nplague,12,timonofathens,1607\nCome,12,timonofathens,1607\nfear,12,timonofathens,1607\nworthy,12,timonofathens,1607\nOld,12,timonofathens,1607\nGood,12,timonofathens,1607\nlong,12,timonofathens,1607\nMost,12,timonofathens,1607\npart,12,timonofathens,1607\nkeep,12,timonofathens,1607\npresent,12,timonofathens,1607\nmany,12,timonofathens,1607\nwhom,12,timonofathens,1607\neat,12,timonofathens,1607\npower,12,timonofathens,1607\ncave,13,timonofathens,1607\nlife,13,timonofathens,1607\nenough,13,timonofathens,1607\nbetter,13,timonofathens,1607\nmeat,13,timonofathens,1607\nsteward,13,timonofathens,1607\nHis,13,timonofathens,1607\nGo,13,timonofathens,1607\nWhich,13,timonofathens,1607\nput,13,timonofathens,1607\nlook,13,timonofathens,1607\nlords,13,timonofathens,1607\nvery,13,timonofathens,1607\nmyself,13,timonofathens,1607\nThey,13,timonofathens,1607\noff,13,timonofathens,1607\nonly,13,timonofathens,1607\nne'er,13,timonofathens,1607\nwealth,13,timonofathens,1607\nSERVILIUS,13,timonofathens,1607\nfirst,13,timonofathens,1607\ntalents,13,timonofathens,1607\nkind,13,timonofathens,1607\nworld,14,timonofathens,1607\nTITUS,14,timonofathens,1607\nwant,14,timonofathens,1607\nDo,14,timonofathens,1607\nbeen,14,timonofathens,1607\nYour,14,timonofathens,1607\ncould,14,timonofathens,1607\nAlcibiades,14,timonofathens,1607\nwert,14,timonofathens,1607\ntrue,14,timonofathens,1607\nhimself,14,timonofathens,1607\nfortunes,14,timonofathens,1607\na,270,timonofathens,1607\naway,15,timonofathens,1607\ntell,15,timonofathens,1607\ndown,15,timonofathens,1607\ngone,15,timonofathens,1607\nBandit,15,timonofathens,1607\no',15,timonofathens,1607\nFLAMINIUS,15,timonofathens,1607\nnone,15,timonofathens,1607\ninto,15,timonofathens,1607\nThis,15,timonofathens,1607\nthink,15,timonofathens,1607\ntwo,15,timonofathens,1607\nmight,15,timonofathens,1607\nhear,16,timonofathens,1607\nwelcome,16,timonofathens,1607\nThen,16,timonofathens,1607\nbefore,16,timonofathens,1607\nFool,16,timonofathens,1607\neyes,16,timonofathens,1607\nsent,16,timonofathens,1607\npoor,16,timonofathens,1607\ndog,16,timonofathens,1607\nother,16,timonofathens,1607\nLucilius',17,timonofathens,1607\nHere,17,timonofathens,1607\nbest,17,timonofathens,1607\ndost,17,timonofathens,1607\nthyself,17,timonofathens,1607\nmade,17,timonofathens,1607\nACT,17,timonofathens,1607\nagain,17,timonofathens,1607\nCAPHIS,17,timonofathens,1607\nATHENS,18,timonofathens,1607\nnever,18,timonofathens,1607\nher,18,timonofathens,1607\nOF,18,timonofathens,1607\nLUCILIUS,18,timonofathens,1607\nWe,18,timonofathens,1607\ngo,18,timonofathens,1607\nServants,18,timonofathens,1607\nup,18,timonofathens,1607\nmoney,18,timonofathens,1607\nstill,18,timonofathens,1607\never,18,timonofathens,1607\nday,18,timonofathens,1607\nSCENE,18,timonofathens,1607\nIs,19,timonofathens,1607\nhath,19,timonofathens,1607\nfool,19,timonofathens,1607\ncomes,19,timonofathens,1607\nthine,19,timonofathens,1607\nLet,19,timonofathens,1607\nAthenian,19,timonofathens,1607\nnature,19,timonofathens,1607\nnothing,20,timonofathens,1607\n't,20,timonofathens,1607\nthose,20,timonofathens,1607\n'Tis,20,timonofathens,1607\n'em,20,timonofathens,1607\nlordship,20,timonofathens,1607\nhouse,20,timonofathens,1607\ncannot,20,timonofathens,1607\ndid,20,timonofathens,1607\nWho,21,timonofathens,1607\nsuch,21,timonofathens,1607\nfriend,21,timonofathens,1607\nhad,21,timonofathens,1607\nAs,21,timonofathens,1607\nIn,21,timonofathens,1607\nExeunt,21,timonofathens,1607\nspeak,21,timonofathens,1607\ncome,21,timonofathens,1607\nhere,22,timonofathens,1607\nsay,22,timonofathens,1607\nthen,22,timonofathens,1607\ncan,22,timonofathens,1607\nVarro's,22,timonofathens,1607\nnoble,22,timonofathens,1607\nhow,22,timonofathens,1607\nmine,22,timonofathens,1607\nwhen,22,timonofathens,1607\nWhen,22,timonofathens,1607\nhonour,23,timonofathens,1607\nhas,23,timonofathens,1607\nNo,23,timonofathens,1607\nOf,23,timonofathens,1607\ndoes,23,timonofathens,1607\nmost,23,timonofathens,1607\nApemantus,23,timonofathens,1607\nheart,23,timonofathens,1607\nuse,23,timonofathens,1607\nWhy,24,timonofathens,1607\nthese,24,timonofathens,1607\nAy,24,timonofathens,1607\nthere,24,timonofathens,1607\nThird,24,timonofathens,1607\nwas,24,timonofathens,1607\ngreat,24,timonofathens,1607\nsee,25,timonofathens,1607\nyet,25,timonofathens,1607\nor,25,timonofathens,1607\nHe,26,timonofathens,1607\nAll,26,timonofathens,1607\nown,26,timonofathens,1607\nhonest,26,timonofathens,1607\nmust,27,timonofathens,1607\nWith,27,timonofathens,1607\nSo,27,timonofathens,1607\ntime,27,timonofathens,1607\ntake,27,timonofathens,1607\nupon,28,timonofathens,1607\ntoo,28,timonofathens,1607\ngive,29,timonofathens,1607\nExit,29,timonofathens,1607\nsome,30,timonofathens,1607\nIt,30,timonofathens,1607\n'tis,30,timonofathens,1607\nus,30,timonofathens,1607\nmuch,31,timonofathens,1607\nthan,31,timonofathens,1607\nart,31,timonofathens,1607\nFor,32,timonofathens,1607\nlove,32,timonofathens,1607\nHow,32,timonofathens,1607\nwhich,34,timonofathens,1607\nfriends,34,timonofathens,1607\nsir,34,timonofathens,1607\nlet,34,timonofathens,1607\nPainter,35,timonofathens,1607\nTimon's,35,timonofathens,1607\nPoet,35,timonofathens,1607\nan,35,timonofathens,1607\nthey,36,timonofathens,1607\nif,36,timonofathens,1607\nknow,36,timonofathens,1607\nmake,36,timonofathens,1607\nThou,36,timonofathens,1607\nwere,36,timonofathens,1607\nmay,36,timonofathens,1607\nO,37,timonofathens,1607\nAthens,37,timonofathens,1607\ngold,37,timonofathens,1607\nYou,38,timonofathens,1607\nwell,38,timonofathens,1607\nIf,39,timonofathens,1607\none,39,timonofathens,1607\nA,40,timonofathens,1607\nam,40,timonofathens,1607\nshall,40,timonofathens,1607\nMy,41,timonofathens,1607\nI'll,42,timonofathens,1607\nshould,43,timonofathens,1607\nout,43,timonofathens,1607\ngods,43,timonofathens,1607\nBut,44,timonofathens,1607\nwould,44,timonofathens,1607\nlike,45,timonofathens,1607\nat,45,timonofathens,1607\nwe,46,timonofathens,1607\nmore,47,timonofathens,1607\nof,303,timonofathens,1607\nALCIBIADES,48,timonofathens,1607\ngood,50,timonofathens,1607\nEnter,51,timonofathens,1607\nmen,51,timonofathens,1607\nby,52,timonofathens,1607\non,52,timonofathens,1607\nfrom,52,timonofathens,1607\nSenator,52,timonofathens,1607\ndo,55,timonofathens,1607\nno,55,timonofathens,1607\nFLAVIUS,55,timonofathens,1607\nnow,55,timonofathens,1607\nwhat,55,timonofathens,1607\nwill,58,timonofathens,1607\nWhat,58,timonofathens,1607\nas,60,timonofathens,1607\nSecond,63,timonofathens,1607\nThat,65,timonofathens,1607\nour,65,timonofathens,1607\ntheir,67,timonofathens,1607\nman,67,timonofathens,1607\nthem,71,timonofathens,1607\nServant,74,timonofathens,1607\nTimon,76,timonofathens,1607\nTo,76,timonofathens,1607\nare,77,timonofathens,1607\nThe,78,timonofathens,1607\nFirst,79,timonofathens,1607\nso,85,timonofathens,1607\nbut,91,timonofathens,1607\nall,97,timonofathens,1607\nthis,105,timonofathens,1607\nLord,107,timonofathens,1607\nAPEMANTUS,109,timonofathens,1607\nhe,109,timonofathens,1607\nto,366,timonofathens,1607\nfor,111,timonofathens,1607\nlord,115,timonofathens,1607\nyour,120,timonofathens,1607\nbe,120,timonofathens,1607\nthy,124,timonofathens,1607\nAnd,127,timonofathens,1607\nhave,128,timonofathens,1607\nthee,134,timonofathens,1607\nwith,136,timonofathens,1607\nit,140,timonofathens,1607\nhim,141,timonofathens,1607\nI,397,timonofathens,1607\nis,151,timonofathens,1607\nme,155,timonofathens,1607\nand,415,timonofathens,1607\nthou,160,timonofathens,1607\nthat,160,timonofathens,1607\nthe,429,timonofathens,1607\nnot,185,timonofathens,1607\nhis,187,timonofathens,1607\nin,215,timonofathens,1607\nmy,226,timonofathens,1607\nyou,238,timonofathens,1607\nTIMON,246,timonofathens,1607\nattended,1,comedyoferrors,1592\nchance,1,comedyoferrors,1592\naffords,1,comedyoferrors,1592\ndischarged,1,comedyoferrors,1592\nanswered,1,comedyoferrors,1592\nYou're,1,comedyoferrors,1592\nheed,1,comedyoferrors,1592\nAmong,1,comedyoferrors,1592\nbrawl,1,comedyoferrors,1592\ntroubled,1,comedyoferrors,1592\nparchment,1,comedyoferrors,1592\nsequel,1,comedyoferrors,1592\npartial,1,comedyoferrors,1592\nrushing,1,comedyoferrors,1592\nThink'st,1,comedyoferrors,1592\nHark,1,comedyoferrors,1592\nfee,1,comedyoferrors,1592\nSoul,1,comedyoferrors,1592\nfed,1,comedyoferrors,1592\nnative,1,comedyoferrors,1592\nAgain,1,comedyoferrors,1592\ntroubles,1,comedyoferrors,1592\nasses,1,comedyoferrors,1592\nforbid,1,comedyoferrors,1592\ntruce,1,comedyoferrors,1592\nsanctuary,1,comedyoferrors,1592\nimaginary,1,comedyoferrors,1592\nmeek,1,comedyoferrors,1592\nV,1,comedyoferrors,1592\nPossess'd,1,comedyoferrors,1592\ntoken,1,comedyoferrors,1592\ntimes,1,comedyoferrors,1592\nguard,1,comedyoferrors,1592\nExpedition,1,comedyoferrors,1592\nlash'd,1,comedyoferrors,1592\ntragic,1,comedyoferrors,1592\ninvisible,1,comedyoferrors,1592\nmayest,1,comedyoferrors,1592\ngain'd,1,comedyoferrors,1592\nfallacy,1,comedyoferrors,1592\nrebukes,1,comedyoferrors,1592\nTartar,1,comedyoferrors,1592\nred,1,comedyoferrors,1592\nguess,1,comedyoferrors,1592\nVicious,1,comedyoferrors,1592\nguest,1,comedyoferrors,1592\nchargeth,1,comedyoferrors,1592\nmerrier,1,comedyoferrors,1592\nchange,1,comedyoferrors,1592\ndilate,1,comedyoferrors,1592\nmoves,1,comedyoferrors,1592\ndines,1,comedyoferrors,1592\nmales',1,comedyoferrors,1592\nheight,1,comedyoferrors,1592\nInto,1,comedyoferrors,1592\nmotion,1,comedyoferrors,1592\nyielding,1,comedyoferrors,1592\nluck,1,comedyoferrors,1592\nheir,1,comedyoferrors,1592\ndouble,1,comedyoferrors,1592\nComfort,1,comedyoferrors,1592\nfrenzy,1,comedyoferrors,1592\nComes,1,comedyoferrors,1592\nforswear,1,comedyoferrors,1592\nspeech,1,comedyoferrors,1592\nroom,1,comedyoferrors,1592\nSOLINUS'S,1,comedyoferrors,1592\nburn'd,1,comedyoferrors,1592\ndiscord,1,comedyoferrors,1592\nfollowing,1,comedyoferrors,1592\nwhiteness,1,comedyoferrors,1592\ngarments,1,comedyoferrors,1592\nspends,1,comedyoferrors,1592\ncarcanet,1,comedyoferrors,1592\nshapeless,1,comedyoferrors,1592\ntravail,1,comedyoferrors,1592\nexcrement,1,comedyoferrors,1592\nmasters',1,comedyoferrors,1592\ncommodities,1,comedyoferrors,1592\nheavier,1,comedyoferrors,1592\nsiren,1,comedyoferrors,1592\nrag,1,comedyoferrors,1592\nshameful,1,comedyoferrors,1592\npeace,1,comedyoferrors,1592\nmaid,1,comedyoferrors,1592\nAbetting,1,comedyoferrors,1592\ntarry,1,comedyoferrors,1592\nBelgia,1,comedyoferrors,1592\nfainting,1,comedyoferrors,1592\nsavor'd,1,comedyoferrors,1592\ndisparagement,1,comedyoferrors,1592\nsympathized,1,comedyoferrors,1592\nrock,1,comedyoferrors,1592\nhind,1,comedyoferrors,1592\nbones,1,comedyoferrors,1592\ncarries,1,comedyoferrors,1592\nscorch,1,comedyoferrors,1592\nunluckily,1,comedyoferrors,1592\nfoolery,1,comedyoferrors,1592\nrot,1,comedyoferrors,1592\ndistinguish'd,1,comedyoferrors,1592\nexploits,1,comedyoferrors,1592\ngriefs,1,comedyoferrors,1592\nforehead,1,comedyoferrors,1592\noffended,1,comedyoferrors,1592\nInfect,1,comedyoferrors,1592\nassured,1,comedyoferrors,1592\nmisfortunes,1,comedyoferrors,1592\nrow,1,comedyoferrors,1592\nbreathed,1,comedyoferrors,1592\ndoubtful,1,comedyoferrors,1592\nbranch,1,comedyoferrors,1592\nlifeless,1,comedyoferrors,1592\nsteals,1,comedyoferrors,1592\nWilt,1,comedyoferrors,1592\napprehended,1,comedyoferrors,1592\nungalled,1,comedyoferrors,1592\nday's,1,comedyoferrors,1592\njoy,1,comedyoferrors,1592\nIreland,1,comedyoferrors,1592\nlords,1,comedyoferrors,1592\nComplain,1,comedyoferrors,1592\nroad,1,comedyoferrors,1592\nHeadsman,1,comedyoferrors,1592\nGenius,1,comedyoferrors,1592\nbrands,1,comedyoferrors,1592\nLords,1,comedyoferrors,1592\ncouldst,1,comedyoferrors,1592\ndiscourses,1,comedyoferrors,1592\npuddled,1,comedyoferrors,1592\nfaith,1,comedyoferrors,1592\ncurtal,1,comedyoferrors,1592\nsleeps,1,comedyoferrors,1592\nBetter,1,comedyoferrors,1592\ncords,1,comedyoferrors,1592\ndire,1,comedyoferrors,1592\ndiscoursed,1,comedyoferrors,1592\nEstablish,1,comedyoferrors,1592\nthinks,1,comedyoferrors,1592\nfurthest,1,comedyoferrors,1592\nElse,1,comedyoferrors,1592\nStay,1,comedyoferrors,1592\nmidst,1,comedyoferrors,1592\ndish,1,comedyoferrors,1592\nproverb,1,comedyoferrors,1592\nentered,1,comedyoferrors,1592\nfable,1,comedyoferrors,1592\nBack,1,comedyoferrors,1592\nbutton'd,1,comedyoferrors,1592\nsparing,1,comedyoferrors,1592\nloureth,1,comedyoferrors,1592\nwaked,1,comedyoferrors,1592\ngavest,1,comedyoferrors,1592\nstrucken,1,comedyoferrors,1592\npenalty,1,comedyoferrors,1592\ndarkness,1,comedyoferrors,1592\nhire,1,comedyoferrors,1592\nhalberds,1,comedyoferrors,1592\nunurged,1,comedyoferrors,1592\ndigestions,1,comedyoferrors,1592\ninfringe,1,comedyoferrors,1592\nplainer,1,comedyoferrors,1592\nDiscover,1,comedyoferrors,1592\nharbours,1,comedyoferrors,1592\nSaving,1,comedyoferrors,1592\nmace,1,comedyoferrors,1592\ndiminishing,1,comedyoferrors,1592\nmere,1,comedyoferrors,1592\nalleys,1,comedyoferrors,1592\nvale,1,comedyoferrors,1592\nruffian,1,comedyoferrors,1592\nfemales,1,comedyoferrors,1592\nShouldst,1,comedyoferrors,1592\nwhile,1,comedyoferrors,1592\ngrim,1,comedyoferrors,1592\nprosperous,1,comedyoferrors,1592\nerrand,1,comedyoferrors,1592\nSprung,1,comedyoferrors,1592\nireful,1,comedyoferrors,1592\nMightst,1,comedyoferrors,1592\nLightens,1,comedyoferrors,1592\nfamiliarly,1,comedyoferrors,1592\nvapours,1,comedyoferrors,1592\nbrook,1,comedyoferrors,1592\nBeshrew,1,comedyoferrors,1592\ndaily,1,comedyoferrors,1592\nrout,1,comedyoferrors,1592\ndemeanor,1,comedyoferrors,1592\naccidentally,1,comedyoferrors,1592\nCries,1,comedyoferrors,1592\nrash,1,comedyoferrors,1592\nlooked,1,comedyoferrors,1592\nhost's,1,comedyoferrors,1592\nnaked,1,comedyoferrors,1592\nbeard,1,comedyoferrors,1592\njugglers,1,comedyoferrors,1592\nspread,1,comedyoferrors,1592\ndrunkard,1,comedyoferrors,1592\nslander,1,comedyoferrors,1592\nsuccession,1,comedyoferrors,1592\nfeeds,1,comedyoferrors,1592\nblunt,1,comedyoferrors,1592\nours,1,comedyoferrors,1592\nalthough,1,comedyoferrors,1592\ncommunicate,1,comedyoferrors,1592\nmeanly,1,comedyoferrors,1592\nsorceress,1,comedyoferrors,1592\nEre,1,comedyoferrors,1592\nyear,1,comedyoferrors,1592\nrubies,1,comedyoferrors,1592\nGinn,1,comedyoferrors,1592\nbestows,1,comedyoferrors,1592\ncheat,1,comedyoferrors,1592\nnought,1,comedyoferrors,1592\nsour,1,comedyoferrors,1592\nprey,1,comedyoferrors,1592\ncalls,1,comedyoferrors,1592\ntravels,1,comedyoferrors,1592\nbefall,1,comedyoferrors,1592\nadvocate,1,comedyoferrors,1592\ncheap,1,comedyoferrors,1592\ndangers,1,comedyoferrors,1592\nLove,1,comedyoferrors,1592\nWear,1,comedyoferrors,1592\npatron,1,comedyoferrors,1592\nditches,1,comedyoferrors,1592\nlies,1,comedyoferrors,1592\nstrumpet,1,comedyoferrors,1592\nivy,1,comedyoferrors,1592\niron,1,comedyoferrors,1592\ndamned,1,comedyoferrors,1592\nsubstance,1,comedyoferrors,1592\nfraughtage,1,comedyoferrors,1592\nstrike,1,comedyoferrors,1592\nsore,1,comedyoferrors,1592\nStriking,1,comedyoferrors,1592\npinch,1,comedyoferrors,1592\nbridle,1,comedyoferrors,1592\nMoney,1,comedyoferrors,1592\nadmit,1,comedyoferrors,1592\nEmbrace,1,comedyoferrors,1592\nnarrow,1,comedyoferrors,1592\naffections,1,comedyoferrors,1592\nnut,1,comedyoferrors,1592\nWould,1,comedyoferrors,1592\nmate,1,comedyoferrors,1592\nbaggage,1,comedyoferrors,1592\nbecome,1,comedyoferrors,1592\nfairy,1,comedyoferrors,1592\nrecreation,1,comedyoferrors,1592\nwhoreson,1,comedyoferrors,1592\nvoluble,1,comedyoferrors,1592\nConsider,1,comedyoferrors,1592\nfriends,1,comedyoferrors,1592\nfairs,1,comedyoferrors,1592\nPERSONAE,1,comedyoferrors,1592\nproclaim,1,comedyoferrors,1592\nparings,1,comedyoferrors,1592\nsprings,1,comedyoferrors,1592\nignorant,1,comedyoferrors,1592\nunviolated,1,comedyoferrors,1592\nmisery,1,comedyoferrors,1592\ndemand,1,comedyoferrors,1592\nagreed,1,comedyoferrors,1592\npreeminence,1,comedyoferrors,1592\nCertain,1,comedyoferrors,1592\nscars,1,comedyoferrors,1592\nyouth,1,comedyoferrors,1592\ndoomsday,1,comedyoferrors,1592\nmingled,1,comedyoferrors,1592\nsoothe,1,comedyoferrors,1592\nloathsome,1,comedyoferrors,1592\nfreely,1,comedyoferrors,1592\nPretty,1,comedyoferrors,1592\nquarter,1,comedyoferrors,1592\nsoftly,1,comedyoferrors,1592\nbuttocks,1,comedyoferrors,1592\nfamous,1,comedyoferrors,1592\nsong,1,comedyoferrors,1592\nRevel,1,comedyoferrors,1592\nDoth,1,comedyoferrors,1592\ngarment,1,comedyoferrors,1592\ntapestry,1,comedyoferrors,1592\nThyself,1,comedyoferrors,1592\nbreach,1,comedyoferrors,1592\npack'd,1,comedyoferrors,1592\nagrees,1,comedyoferrors,1592\nquestion,1,comedyoferrors,1592\nstirring,1,comedyoferrors,1592\nmercy,1,comedyoferrors,1592\ncontraries,1,comedyoferrors,1592\nKnown,1,comedyoferrors,1592\nchin,1,comedyoferrors,1592\ncounter,1,comedyoferrors,1592\nKnows,1,comedyoferrors,1592\nchid,1,comedyoferrors,1592\nire,1,comedyoferrors,1592\nconsort,1,comedyoferrors,1592\ndisdain,1,comedyoferrors,1592\nerr,1,comedyoferrors,1592\ndevice,1,comedyoferrors,1592\nhigh,1,comedyoferrors,1592\nstrife,1,comedyoferrors,1592\ngoblins,1,comedyoferrors,1592\nother's,1,comedyoferrors,1592\nmortal,1,comedyoferrors,1592\nlikewise,1,comedyoferrors,1592\namazed,1,comedyoferrors,1592\nCertes,1,comedyoferrors,1592\nembellished,1,comedyoferrors,1592\ntowards,1,comedyoferrors,1592\nFree,1,comedyoferrors,1592\nwander'd,1,comedyoferrors,1592\nconsuming,1,comedyoferrors,1592\nDelay,1,comedyoferrors,1592\nslept,1,comedyoferrors,1592\narrived,1,comedyoferrors,1592\nAsia,1,comedyoferrors,1592\nworking,1,comedyoferrors,1592\nloseth,1,comedyoferrors,1592\nsole,1,comedyoferrors,1592\nruin'd,1,comedyoferrors,1592\nsold,1,comedyoferrors,1592\nconfusion,1,comedyoferrors,1592\nwiser,1,comedyoferrors,1592\nLong,1,comedyoferrors,1592\nDromios,1,comedyoferrors,1592\ncharitable,1,comedyoferrors,1592\nelm,1,comedyoferrors,1592\nell,1,comedyoferrors,1592\nrandom,1,comedyoferrors,1592\nbefall'n,1,comedyoferrors,1592\nrelieve,1,comedyoferrors,1592\nstart,1,comedyoferrors,1592\nshrewish,1,comedyoferrors,1592\noutfacing,1,comedyoferrors,1592\nbearing,1,comedyoferrors,1592\ncreditor,1,comedyoferrors,1592\nMakes,1,comedyoferrors,1592\nstream,1,comedyoferrors,1592\nSoon,1,comedyoferrors,1592\nhighness,1,comedyoferrors,1592\nescape,1,comedyoferrors,1592\ncall'st,1,comedyoferrors,1592\ncircumstance,1,comedyoferrors,1592\njars,1,comedyoferrors,1592\nKinsman,1,comedyoferrors,1592\nobservation,1,comedyoferrors,1592\nmildly,1,comedyoferrors,1592\nmale,1,comedyoferrors,1592\nconfounds,1,comedyoferrors,1592\nsynods,1,comedyoferrors,1592\nundividable,1,comedyoferrors,1592\nmerrily,1,comedyoferrors,1592\nbeads,1,comedyoferrors,1592\nPromising,1,comedyoferrors,1592\nwrought,1,comedyoferrors,1592\nbeggar,1,comedyoferrors,1592\nmalt,1,comedyoferrors,1592\nshame's,1,comedyoferrors,1592\npike,1,comedyoferrors,1592\nConsent,1,comedyoferrors,1592\nbloods,1,comedyoferrors,1592\nKeep,1,comedyoferrors,1592\nprocure,1,comedyoferrors,1592\nobscured,1,comedyoferrors,1592\ngoodwill,1,comedyoferrors,1592\nsubjects,1,comedyoferrors,1592\ndecline,1,comedyoferrors,1592\nrevile,1,comedyoferrors,1592\nPinch's,1,comedyoferrors,1592\ncake,1,comedyoferrors,1592\nunsought,1,comedyoferrors,1592\nBasting,1,comedyoferrors,1592\nintellectual,1,comedyoferrors,1592\nbareheaded,1,comedyoferrors,1592\nmark,1,comedyoferrors,1592\nwants,1,comedyoferrors,1592\nshrew,1,comedyoferrors,1592\nbabes,1,comedyoferrors,1592\nsenior,1,comedyoferrors,1592\ncalm,1,comedyoferrors,1592\nblot,1,comedyoferrors,1592\nMarian,1,comedyoferrors,1592\ngross,1,comedyoferrors,1592\ndevils,1,comedyoferrors,1592\nincreased,1,comedyoferrors,1592\nconduits,1,comedyoferrors,1592\nfurnish'd,1,comedyoferrors,1592\nquench,1,comedyoferrors,1592\nmire,1,comedyoferrors,1592\nThee,1,comedyoferrors,1592\nlet's,1,comedyoferrors,1592\ndeciphers,1,comedyoferrors,1592\nwot,1,comedyoferrors,1592\ncontrols,1,comedyoferrors,1592\nrides,1,comedyoferrors,1592\nglass,1,comedyoferrors,1592\ndeform,1,comedyoferrors,1592\nungentle,1,comedyoferrors,1592\nwon,1,comedyoferrors,1592\napparently,1,comedyoferrors,1592\nNetherlands,1,comedyoferrors,1592\nbeseem,1,comedyoferrors,1592\nUnfeeling,1,comedyoferrors,1592\ndesperately,1,comedyoferrors,1592\ncomplexion,1,comedyoferrors,1592\ngates,1,comedyoferrors,1592\naddition,1,comedyoferrors,1592\nteach,1,comedyoferrors,1592\nnoise,1,comedyoferrors,1592\nAmerica,1,comedyoferrors,1592\nwafts,1,comedyoferrors,1592\nlapwing,1,comedyoferrors,1592\nBeside,1,comedyoferrors,1592\nfoolishness,1,comedyoferrors,1592\nAvaunt,1,comedyoferrors,1592\nmist,1,comedyoferrors,1592\nblessed,1,comedyoferrors,1592\nmountain,1,comedyoferrors,1592\nmourn'd,1,comedyoferrors,1592\nfreedom,1,comedyoferrors,1592\nfret,1,comedyoferrors,1592\n'Sir,1,comedyoferrors,1592\nseal'd,1,comedyoferrors,1592\nthreatening,1,comedyoferrors,1592\nvisit,1,comedyoferrors,1592\nover,1,comedyoferrors,1592\ncoldly,1,comedyoferrors,1592\nRings,1,comedyoferrors,1592\nBuy,1,comedyoferrors,1592\nblack,1,comedyoferrors,1592\nasked,1,comedyoferrors,1592\nconfirms,1,comedyoferrors,1592\nSaw'st,1,comedyoferrors,1592\noftentimes,1,comedyoferrors,1592\napart,1,comedyoferrors,1592\n'respice,1,comedyoferrors,1592\nmarvel,1,comedyoferrors,1592\ntowns,1,comedyoferrors,1592\nstealth,1,comedyoferrors,1592\nadventures,1,comedyoferrors,1592\ndainty,1,comedyoferrors,1592\nletters,1,comedyoferrors,1592\nshe's,1,comedyoferrors,1592\none's,1,comedyoferrors,1592\nwizard,1,comedyoferrors,1592\nocean,1,comedyoferrors,1592\nexecution,1,comedyoferrors,1592\noil,1,comedyoferrors,1592\nsix,1,comedyoferrors,1592\ndisguised,1,comedyoferrors,1592\nCirce's,1,comedyoferrors,1592\nPerhaps,1,comedyoferrors,1592\nsayest,1,comedyoferrors,1592\nfelt'st,1,comedyoferrors,1592\nshames,1,comedyoferrors,1592\nI'm,1,comedyoferrors,1592\nscanted,1,comedyoferrors,1592\nAvoid,1,comedyoferrors,1592\ndesired,1,comedyoferrors,1592\nundishonoured,1,comedyoferrors,1592\nwhatsoever,1,comedyoferrors,1592\nboat,1,comedyoferrors,1592\nWere,1,comedyoferrors,1592\ndisfigure,1,comedyoferrors,1592\nblindness,1,comedyoferrors,1592\nindignity,1,comedyoferrors,1592\ncheaters,1,comedyoferrors,1592\nreturned,1,comedyoferrors,1592\naccords,1,comedyoferrors,1592\nrailing,1,comedyoferrors,1592\nmountebank,1,comedyoferrors,1592\ntaste,1,comedyoferrors,1592\nviolently,1,comedyoferrors,1592\npause,1,comedyoferrors,1592\nminions,1,comedyoferrors,1592\nmishap,1,comedyoferrors,1592\npassage,1,comedyoferrors,1592\nBeyond,1,comedyoferrors,1592\nmaids,1,comedyoferrors,1592\n'twere,1,comedyoferrors,1592\n'Twixt,1,comedyoferrors,1592\nproved,1,comedyoferrors,1592\nDenies,1,comedyoferrors,1592\nReserve,1,comedyoferrors,1592\ndisturb'd,1,comedyoferrors,1592\nbasting,1,comedyoferrors,1592\nservitude,1,comedyoferrors,1592\ngrave,1,comedyoferrors,1592\nScotland,1,comedyoferrors,1592\nbastard,1,comedyoferrors,1592\ntooth,1,comedyoferrors,1592\nodd,1,comedyoferrors,1592\nstale,1,comedyoferrors,1592\npound,1,comedyoferrors,1592\nsalt,1,comedyoferrors,1592\nsaying,1,comedyoferrors,1592\nvice,1,comedyoferrors,1592\nvirtuous,1,comedyoferrors,1592\nfittest,1,comedyoferrors,1592\npurchase,1,comedyoferrors,1592\nchain'd,1,comedyoferrors,1592\nHerein,1,comedyoferrors,1592\nweepings,1,comedyoferrors,1592\nParadise,1,comedyoferrors,1592\nsorrowest,1,comedyoferrors,1592\ndisloyalty,1,comedyoferrors,1592\nKneel,1,comedyoferrors,1592\nLook'd,1,comedyoferrors,1592\nDenied,1,comedyoferrors,1592\nexperience,1,comedyoferrors,1592\nRun,1,comedyoferrors,1592\nDeep,1,comedyoferrors,1592\nbogs,1,comedyoferrors,1592\nliberties,1,comedyoferrors,1592\nWitness,1,comedyoferrors,1592\nincivility,1,comedyoferrors,1592\nenters,1,comedyoferrors,1592\ntouches,1,comedyoferrors,1592\nshe'll,1,comedyoferrors,1592\ndeceit,1,comedyoferrors,1592\nspherical,1,comedyoferrors,1592\nthrong,1,comedyoferrors,1592\nwedding,1,comedyoferrors,1592\narrival,1,comedyoferrors,1592\nillusions,1,comedyoferrors,1592\nprivy,1,comedyoferrors,1592\nredemption,1,comedyoferrors,1592\nsorrow,1,comedyoferrors,1592\nfell,1,comedyoferrors,1592\ntraders,1,comedyoferrors,1592\nabused,1,comedyoferrors,1592\nforsake,1,comedyoferrors,1592\nscore,1,comedyoferrors,1592\nroughly,1,comedyoferrors,1592\nlivest,1,comedyoferrors,1592\nstealing,1,comedyoferrors,1592\nlinger'd,1,comedyoferrors,1592\nonly,1,comedyoferrors,1592\ndisannul,1,comedyoferrors,1592\nyoungest,1,comedyoferrors,1592\nsyrups,1,comedyoferrors,1592\nSmother'd,1,comedyoferrors,1592\nsot,1,comedyoferrors,1592\ncrannies,1,comedyoferrors,1592\nvine,1,comedyoferrors,1592\nkitchen'd,1,comedyoferrors,1592\nscorn'd,1,comedyoferrors,1592\nSuch,1,comedyoferrors,1592\nmorrow,1,comedyoferrors,1592\nTurkish,1,comedyoferrors,1592\ncomfortless,1,comedyoferrors,1592\nmanaged,1,comedyoferrors,1592\ntraffic,1,comedyoferrors,1592\ngay,1,comedyoferrors,1592\nthwart,1,comedyoferrors,1592\nbringing,1,comedyoferrors,1592\nsworn,1,comedyoferrors,1592\nsob,1,comedyoferrors,1592\ndifferent,1,comedyoferrors,1592\nFarewell,1,comedyoferrors,1592\nbeastly,1,comedyoferrors,1592\nraised,1,comedyoferrors,1592\nwaking,1,comedyoferrors,1592\nmeaner,1,comedyoferrors,1592\ncoxcomb,1,comedyoferrors,1592\nbestow'd,1,comedyoferrors,1592\nwalks,1,comedyoferrors,1592\nbuck,1,comedyoferrors,1592\n'I,1,comedyoferrors,1592\nviol,1,comedyoferrors,1592\ncuts,1,comedyoferrors,1592\nfloated,1,comedyoferrors,1592\nwalls,1,comedyoferrors,1592\nforthwith,1,comedyoferrors,1592\nripe,1,comedyoferrors,1592\ntaunt,1,comedyoferrors,1592\nMuffle,1,comedyoferrors,1592\nsecond,1,comedyoferrors,1592\nchat,1,comedyoferrors,1592\nhope's,1,comedyoferrors,1592\nbeloved,1,comedyoferrors,1592\nadulterate,1,comedyoferrors,1592\nUsurping,1,comedyoferrors,1592\ncommends,1,comedyoferrors,1592\nbuffet,1,comedyoferrors,1592\nsky,1,comedyoferrors,1592\nSleeping,1,comedyoferrors,1592\nlicentious,1,comedyoferrors,1592\nsprites,1,comedyoferrors,1592\nsets,1,comedyoferrors,1592\ngnaw'd,1,comedyoferrors,1592\npatiently,1,comedyoferrors,1592\nDoctor,1,comedyoferrors,1592\nsuck,1,comedyoferrors,1592\nEpidaurus,1,comedyoferrors,1592\ndecreed,1,comedyoferrors,1592\nmerciless,1,comedyoferrors,1592\ndally,1,comedyoferrors,1592\nSpake,1,comedyoferrors,1592\nthin,1,comedyoferrors,1592\nstiff,1,comedyoferrors,1592\nwan,1,comedyoferrors,1592\nsere,1,comedyoferrors,1592\nGillian,1,comedyoferrors,1592\nenamelled,1,comedyoferrors,1592\nhurried,1,comedyoferrors,1592\nadverse,1,comedyoferrors,1592\namiss,1,comedyoferrors,1592\nstaff,1,comedyoferrors,1592\nduty,1,comedyoferrors,1592\nrise,1,comedyoferrors,1592\ndriven,1,comedyoferrors,1592\nable,1,comedyoferrors,1592\notherwhere,1,comedyoferrors,1592\ntrusts,1,comedyoferrors,1592\ntailor,1,comedyoferrors,1592\ndrives,1,comedyoferrors,1592\ntrusty,1,comedyoferrors,1592\ndeclining,1,comedyoferrors,1592\nmorris,1,comedyoferrors,1592\nimportant,1,comedyoferrors,1592\nergo,1,comedyoferrors,1592\nheats,1,comedyoferrors,1592\ngrowing,1,comedyoferrors,1592\neverlasting,1,comedyoferrors,1592\nPeruse,1,comedyoferrors,1592\nForced,1,comedyoferrors,1592\nburdens,1,comedyoferrors,1592\nFasten'd,1,comedyoferrors,1592\nheavens,1,comedyoferrors,1592\nwaftage,1,comedyoferrors,1592\npassed,1,comedyoferrors,1592\nembracements,1,comedyoferrors,1592\nExcludes,1,comedyoferrors,1592\nbrier,1,comedyoferrors,1592\npride,1,comedyoferrors,1592\ninspiration,1,comedyoferrors,1592\nWast,1,comedyoferrors,1592\nStray'd,1,comedyoferrors,1592\nforward,1,comedyoferrors,1592\nsnow,1,comedyoferrors,1592\npoints,1,comedyoferrors,1592\nrags,1,comedyoferrors,1592\nOut,1,comedyoferrors,1592\nbereft,1,comedyoferrors,1592\ncovetous,1,comedyoferrors,1592\ndryfoot,1,comedyoferrors,1592\nUnwilling,1,comedyoferrors,1592\nrush'd,1,comedyoferrors,1592\nafraid,1,comedyoferrors,1592\nreft,1,comedyoferrors,1592\nsupper,1,comedyoferrors,1592\ncrime,1,comedyoferrors,1592\ncrupper,1,comedyoferrors,1592\ncomplain,1,comedyoferrors,1592\ntwelve,1,comedyoferrors,1592\nBeg,1,comedyoferrors,1592\ngnawing,1,comedyoferrors,1592\nwheel,1,comedyoferrors,1592\nrhyme,1,comedyoferrors,1592\nnext,1,comedyoferrors,1592\nUnquiet,1,comedyoferrors,1592\nbrags,1,comedyoferrors,1592\nhabit,1,comedyoferrors,1592\ndross,1,comedyoferrors,1592\npossess,1,comedyoferrors,1592\nruins,1,comedyoferrors,1592\nbliss,1,comedyoferrors,1592\ndrowned,1,comedyoferrors,1592\nShame,1,comedyoferrors,1592\nMaud,1,comedyoferrors,1592\nabsence,1,comedyoferrors,1592\ngrossly,1,comedyoferrors,1592\nparrot,1,comedyoferrors,1592\nvulgar,1,comedyoferrors,1592\nfix'd,1,comedyoferrors,1592\nfalls,1,comedyoferrors,1592\ngladly,1,comedyoferrors,1592\nruns,1,comedyoferrors,1592\nraft,1,comedyoferrors,1592\nexceeding,1,comedyoferrors,1592\ndiviner,1,comedyoferrors,1592\n'Fly,1,comedyoferrors,1592\ndetain,1,comedyoferrors,1592\nbreadth,1,comedyoferrors,1592\ndrone,1,comedyoferrors,1592\nGreece,1,comedyoferrors,1592\nStraight,1,comedyoferrors,1592\nransom,1,comedyoferrors,1592\npenitent,1,comedyoferrors,1592\nwatery,1,comedyoferrors,1592\nHeaven,1,comedyoferrors,1592\nseeks,1,comedyoferrors,1592\nafter,1,comedyoferrors,1592\ndainties,1,comedyoferrors,1592\ndearly,1,comedyoferrors,1592\neldest,1,comedyoferrors,1592\nconference,1,comedyoferrors,1592\nmark'd,1,comedyoferrors,1592\ngossiping,1,comedyoferrors,1592\nmarry,1,comedyoferrors,1592\nvirtue's,1,comedyoferrors,1592\npoison,1,comedyoferrors,1592\ncharged,1,comedyoferrors,1592\nangel,1,comedyoferrors,1592\nfondly,1,comedyoferrors,1592\ntilting,1,comedyoferrors,1592\nCommends,1,comedyoferrors,1592\nbestrid,1,comedyoferrors,1592\nkilling,1,comedyoferrors,1592\nprinces,1,comedyoferrors,1592\nlabour'd,1,comedyoferrors,1592\nsue,1,comedyoferrors,1592\ncountermands,1,comedyoferrors,1592\nclapper,1,comedyoferrors,1592\nBuried,1,comedyoferrors,1592\nelder,1,comedyoferrors,1592\nwondrous,1,comedyoferrors,1592\ncompanion,1,comedyoferrors,1592\nrail,1,comedyoferrors,1592\nreverence,1,comedyoferrors,1592\nsinged,1,comedyoferrors,1592\nabove,1,comedyoferrors,1592\nfearful,1,comedyoferrors,1592\nvoyages,1,comedyoferrors,1592\nmarts,1,comedyoferrors,1592\nWant,1,comedyoferrors,1592\nrush,1,comedyoferrors,1592\nconsent,1,comedyoferrors,1592\nnest,1,comedyoferrors,1592\npromise,1,comedyoferrors,1592\nplainly,1,comedyoferrors,1592\ninfinite,1,comedyoferrors,1592\nwolf,1,comedyoferrors,1592\ntouching,1,comedyoferrors,1592\ngrain,1,comedyoferrors,1592\ngrow,1,comedyoferrors,1592\ntimely,1,comedyoferrors,1592\nfactor's,1,comedyoferrors,1592\nbrief,1,comedyoferrors,1592\nembark'd,1,comedyoferrors,1592\nmarble,1,comedyoferrors,1592\nBehind,1,comedyoferrors,1592\nsober,1,comedyoferrors,1592\nope,1,comedyoferrors,1592\ndial,1,comedyoferrors,1592\nfalling,1,comedyoferrors,1592\nwrong'd,1,comedyoferrors,1592\nfollowers,1,comedyoferrors,1592\nanatomy,1,comedyoferrors,1592\nmadest,1,comedyoferrors,1592\ngifts,1,comedyoferrors,1592\nGuard,1,comedyoferrors,1592\nchoose,1,comedyoferrors,1592\nwend,1,comedyoferrors,1592\nwine,1,comedyoferrors,1592\nglad,1,comedyoferrors,1592\nseafaring,1,comedyoferrors,1592\ngrass,1,comedyoferrors,1592\nteller,1,comedyoferrors,1592\nwink,1,comedyoferrors,1592\ncontempt,1,comedyoferrors,1592\nfain,1,comedyoferrors,1592\ntable,1,comedyoferrors,1592\ndoubled,1,comedyoferrors,1592\ncreate,1,comedyoferrors,1592\ngrieve,1,comedyoferrors,1592\nwholesome,1,comedyoferrors,1592\nStigmatical,1,comedyoferrors,1592\nvestments,1,comedyoferrors,1592\nwished,1,comedyoferrors,1592\ncuckold,1,comedyoferrors,1592\nHence,1,comedyoferrors,1592\ncomputation,1,comedyoferrors,1592\npersever,1,comedyoferrors,1592\nnails,1,comedyoferrors,1592\nsnail,1,comedyoferrors,1592\nfineness,1,comedyoferrors,1592\ndurst,1,comedyoferrors,1592\nunmingled,1,comedyoferrors,1592\nAlong,1,comedyoferrors,1592\nDark,1,comedyoferrors,1592\nground,1,comedyoferrors,1592\nMany,1,comedyoferrors,1592\nMight,1,comedyoferrors,1592\nAlone,1,comedyoferrors,1592\nStop,1,comedyoferrors,1592\nlatter,1,comedyoferrors,1592\nmirth,1,comedyoferrors,1592\nreverted,1,comedyoferrors,1592\nhighly,1,comedyoferrors,1592\nThither,1,comedyoferrors,1592\nBeheaded,1,comedyoferrors,1592\nwealth's,1,comedyoferrors,1592\nPlease,1,comedyoferrors,1592\n'is,1,comedyoferrors,1592\nstolen,1,comedyoferrors,1592\nmiracle,1,comedyoferrors,1592\ndesert,1,comedyoferrors,1592\ndoom'd,1,comedyoferrors,1592\ndelays,1,comedyoferrors,1592\ndearer,1,comedyoferrors,1592\nsaint,1,comedyoferrors,1592\ncares,1,comedyoferrors,1592\nsupping,1,comedyoferrors,1592\nmishaps,1,comedyoferrors,1592\namends,1,comedyoferrors,1592\ngossips',1,comedyoferrors,1592\ndistract,1,comedyoferrors,1592\nWent'st,1,comedyoferrors,1592\nProceed,1,comedyoferrors,1592\nwert,1,comedyoferrors,1592\ndies,1,comedyoferrors,1592\nwise,1,comedyoferrors,1592\ntransformed,1,comedyoferrors,1592\nchurl,1,comedyoferrors,1592\nmethinks,1,comedyoferrors,1592\nfame,1,comedyoferrors,1592\nwitnesses,1,comedyoferrors,1592\nanon,1,comedyoferrors,1592\nensconce,1,comedyoferrors,1592\nthrown,1,comedyoferrors,1592\nmurder,1,comedyoferrors,1592\nimportunes,1,comedyoferrors,1592\nearthy,1,comedyoferrors,1592\nsooth,1,comedyoferrors,1592\ndevil's,1,comedyoferrors,1592\nstaying,1,comedyoferrors,1592\nharming,1,comedyoferrors,1592\nthrew,1,comedyoferrors,1592\nprostrate,1,comedyoferrors,1592\nprolong'd,1,comedyoferrors,1592\nworld's,1,comedyoferrors,1592\nhatch,1,comedyoferrors,1592\ntrudge,1,comedyoferrors,1592\npalace,1,comedyoferrors,1592\nwest,1,comedyoferrors,1592\nFixing,1,comedyoferrors,1592\nstop,1,comedyoferrors,1592\nanswer'st,1,comedyoferrors,1592\nfie,1,comedyoferrors,1592\nshrive,1,comedyoferrors,1592\nharbour,1,comedyoferrors,1592\nsilks,1,comedyoferrors,1592\nMart,1,comedyoferrors,1592\nwart,1,comedyoferrors,1592\nunjust,1,comedyoferrors,1592\ndishonestly,1,comedyoferrors,1592\nstocks,1,comedyoferrors,1592\npretty,1,comedyoferrors,1592\nMark,1,comedyoferrors,1592\nsunny,1,comedyoferrors,1592\nshuts,1,comedyoferrors,1592\nperfect,1,comedyoferrors,1592\nspites,1,comedyoferrors,1592\nbrake,1,comedyoferrors,1592\nunfinish'd,1,comedyoferrors,1592\nDoing,1,comedyoferrors,1592\nrunn'st,1,comedyoferrors,1592\nWeeping,1,comedyoferrors,1592\nconsecrate,1,comedyoferrors,1592\nrich,1,comedyoferrors,1592\nglanced,1,comedyoferrors,1592\nlunatic,1,comedyoferrors,1592\nruled,1,comedyoferrors,1592\ncherry,1,comedyoferrors,1592\nsafety,1,comedyoferrors,1592\nengaged,1,comedyoferrors,1592\nbattering,1,comedyoferrors,1592\ncarat,1,comedyoferrors,1592\nunwed,1,comedyoferrors,1592\nsuborn'd,1,comedyoferrors,1592\nhorn,1,comedyoferrors,1592\nreviled,1,comedyoferrors,1592\nincorporate,1,comedyoferrors,1592\nwayward,1,comedyoferrors,1592\njudgement,1,comedyoferrors,1592\nniggard,1,comedyoferrors,1592\nplainings,1,comedyoferrors,1592\nhungry,1,comedyoferrors,1592\nWorthily,1,comedyoferrors,1592\nbare,1,comedyoferrors,1592\nsubstantial,1,comedyoferrors,1592\nhealthful,1,comedyoferrors,1592\nwide,1,comedyoferrors,1592\nUnto,1,comedyoferrors,1592\nworship,1,comedyoferrors,1592\nsituate,1,comedyoferrors,1592\nindignities,1,comedyoferrors,1592\nholiness,1,comedyoferrors,1592\neach,1,comedyoferrors,1592\nbig,1,comedyoferrors,1592\nuncle,1,comedyoferrors,1592\nnail,1,comedyoferrors,1592\nknowledge,1,comedyoferrors,1592\npractise,1,comedyoferrors,1592\nscandal,1,comedyoferrors,1592\nprince's,1,comedyoferrors,1592\ngrievous,1,comedyoferrors,1592\nperceive,1,comedyoferrors,1592\nbeware,1,comedyoferrors,1592\nmickle,1,comedyoferrors,1592\nnamely,1,comedyoferrors,1592\nThank,1,comedyoferrors,1592\nChased,1,comedyoferrors,1592\nlived,1,comedyoferrors,1592\nwhither,1,comedyoferrors,1592\nsauciness,1,comedyoferrors,1592\nwaves,1,comedyoferrors,1592\nmorning,1,comedyoferrors,1592\nmanners,1,comedyoferrors,1592\ndrown,1,comedyoferrors,1592\nbass,1,comedyoferrors,1592\nwax'd,1,comedyoferrors,1592\nstrikes,1,comedyoferrors,1592\nstrumpeted,1,comedyoferrors,1592\nkick'd,1,comedyoferrors,1592\nenchanting,1,comedyoferrors,1592\ndeliver'd,1,comedyoferrors,1592\nDrew,1,comedyoferrors,1592\nPentecost,1,comedyoferrors,1592\nwanting,1,comedyoferrors,1592\ndrudge,1,comedyoferrors,1592\nWednesday,1,comedyoferrors,1592\ntrimming,1,comedyoferrors,1592\nWhat's,1,comedyoferrors,1592\nSwart,1,comedyoferrors,1592\ncools,1,comedyoferrors,1592\nfoes,1,comedyoferrors,1592\nscared,1,comedyoferrors,1592\nvitae,1,comedyoferrors,1592\n'Will,1,comedyoferrors,1592\n'out,1,comedyoferrors,1592\nutter,1,comedyoferrors,1592\nbounds,1,comedyoferrors,1592\nweakness,1,comedyoferrors,1592\ndam,1,comedyoferrors,1592\norator,1,comedyoferrors,1592\ntalks,1,comedyoferrors,1592\nEach,1,comedyoferrors,1592\nfare,1,comedyoferrors,1592\n'beware,1,comedyoferrors,1592\nmeets,1,comedyoferrors,1592\nflattery,1,comedyoferrors,1592\nsoul's,1,comedyoferrors,1592\ncontroversy,1,comedyoferrors,1592\necstasy,1,comedyoferrors,1592\nache,1,comedyoferrors,1592\ntale,1,comedyoferrors,1592\nmusic,1,comedyoferrors,1592\nwelcomed,1,comedyoferrors,1592\nyouthful,1,comedyoferrors,1592\nloath,1,comedyoferrors,1592\ncup,1,comedyoferrors,1592\ngentlemen,1,comedyoferrors,1592\nstrangers,1,comedyoferrors,1592\ndeeds,1,comedyoferrors,1592\npriory,1,comedyoferrors,1592\nvigour,1,comedyoferrors,1592\nThose,1,comedyoferrors,1592\nfalsing,1,comedyoferrors,1592\nshameless,1,comedyoferrors,1592\nbalsamum,1,comedyoferrors,1592\nconvey,1,comedyoferrors,1592\ngiven,1,comedyoferrors,1592\nprovoked,1,comedyoferrors,1592\nStill,1,comedyoferrors,1592\nspoil'd,1,comedyoferrors,1592\nSconce,1,comedyoferrors,1592\nreproof,1,comedyoferrors,1592\nrapier,1,comedyoferrors,1592\nbag,1,comedyoferrors,1592\ntold'st,1,comedyoferrors,1592\nfates,1,comedyoferrors,1592\nOurselves,1,comedyoferrors,1592\nwarrior,1,comedyoferrors,1592\nopenly,1,comedyoferrors,1592\nsensible,1,comedyoferrors,1592\ncreep,1,comedyoferrors,1592\nscissors,1,comedyoferrors,1592\n'knave',1,comedyoferrors,1592\nlands,1,comedyoferrors,1592\nshore,1,comedyoferrors,1592\ndivorcing,1,comedyoferrors,1592\naspects,1,comedyoferrors,1592\nEngland,1,comedyoferrors,1592\nquit,1,comedyoferrors,1592\nshort,1,comedyoferrors,1592\ngossip,1,comedyoferrors,1592\nunless,1,comedyoferrors,1592\nholp,1,comedyoferrors,1592\nThirty,1,comedyoferrors,1592\nLay,1,comedyoferrors,1592\nAlbeit,1,comedyoferrors,1592\ngreatly,1,comedyoferrors,1592\ncanst,1,comedyoferrors,1592\nPerdie,1,comedyoferrors,1592\npitiless,1,comedyoferrors,1592\npreserving,1,comedyoferrors,1592\nhollow,1,comedyoferrors,1592\nshines,1,comedyoferrors,1592\nsweats,1,comedyoferrors,1592\nmethod,1,comedyoferrors,1592\nforce,1,comedyoferrors,1592\ncut,1,comedyoferrors,1592\ncalendars,1,comedyoferrors,1592\npawn,1,comedyoferrors,1592\nGather,1,comedyoferrors,1592\nhid,1,comedyoferrors,1592\nfinds,1,comedyoferrors,1592\nwisdom,1,comedyoferrors,1592\nglimmer,1,comedyoferrors,1592\ncounterfeit,1,comedyoferrors,1592\nmotions,1,comedyoferrors,1592\napparelled,1,comedyoferrors,1592\nhit,1,comedyoferrors,1592\nsunder,1,comedyoferrors,1592\nrequired,1,comedyoferrors,1592\nretain'd,1,comedyoferrors,1592\npiteous,1,comedyoferrors,1592\nsinner,1,comedyoferrors,1592\nuntuned,1,comedyoferrors,1592\nbeg,1,comedyoferrors,1592\nfatal,1,comedyoferrors,1592\nlocking,1,comedyoferrors,1592\ncarbuncles,1,comedyoferrors,1592\nmeant,1,comedyoferrors,1592\nfinem,1,comedyoferrors,1592\ngrime,1,comedyoferrors,1592\nnotorious,1,comedyoferrors,1592\nArrest,1,comedyoferrors,1592\nwinter,1,comedyoferrors,1592\nrabble,1,comedyoferrors,1592\nbless,1,comedyoferrors,1592\nstreets,1,comedyoferrors,1592\ntallow,1,comedyoferrors,1592\nhusbands,1,comedyoferrors,1592\nintricate,1,comedyoferrors,1592\npreaches,1,comedyoferrors,1592\nperiwig,1,comedyoferrors,1592\ngrease,1,comedyoferrors,1592\nquick,1,comedyoferrors,1592\nintestine,1,comedyoferrors,1592\nMenaphon,1,comedyoferrors,1592\ndigest,1,comedyoferrors,1592\nslanders,1,comedyoferrors,1592\nmeteors,1,comedyoferrors,1592\nNell,1,comedyoferrors,1592\nbruised,1,comedyoferrors,1592\ncreeks,1,comedyoferrors,1592\nwant'st,1,comedyoferrors,1592\ndespair,1,comedyoferrors,1592\nbuilding,1,comedyoferrors,1592\nfalsehood,1,comedyoferrors,1592\ntask,1,comedyoferrors,1592\nHorn,1,comedyoferrors,1592\ncondemned,1,comedyoferrors,1592\npast,1,comedyoferrors,1592\nmermaid,1,comedyoferrors,1592\nprovision,1,comedyoferrors,1592\nhides,1,comedyoferrors,1592\ncalf's,1,comedyoferrors,1592\nmeals,1,comedyoferrors,1592\nfootball,1,comedyoferrors,1592\npin,1,comedyoferrors,1592\nproud,1,comedyoferrors,1592\nwedded,1,comedyoferrors,1592\nIs't,1,comedyoferrors,1592\nglorious,1,comedyoferrors,1592\nprithee,1,comedyoferrors,1592\nabject,1,comedyoferrors,1592\ncountries,1,comedyoferrors,1592\nNoah's,1,comedyoferrors,1592\nhairy,1,comedyoferrors,1592\napproved,1,comedyoferrors,1592\nHapless,1,comedyoferrors,1592\nhairs,1,comedyoferrors,1592\nbrawls,1,comedyoferrors,1592\nrigorous,1,comedyoferrors,1592\nalong,1,comedyoferrors,1592\nassembled,1,comedyoferrors,1592\ncopy,1,comedyoferrors,1592\nrecall'd,1,comedyoferrors,1592\nwasting,1,comedyoferrors,1592\nSolinus,1,comedyoferrors,1592\nheady,1,comedyoferrors,1592\nwinged,1,comedyoferrors,1592\nswear,1,comedyoferrors,1592\nBeaten,1,comedyoferrors,1592\nlow,1,comedyoferrors,1592\neyed,1,comedyoferrors,1592\ntheft,1,comedyoferrors,1592\ncontagion,1,comedyoferrors,1592\ngod,1,comedyoferrors,1592\ndrunk,1,comedyoferrors,1592\nsought,1,comedyoferrors,1592\nshipwreck'd,1,comedyoferrors,1592\nsinking,1,comedyoferrors,1592\nconverse,1,comedyoferrors,1592\nsuits,1,comedyoferrors,1592\nRight,1,comedyoferrors,1592\nplentiful,1,comedyoferrors,1592\nfeathers,1,comedyoferrors,1592\nseen,1,comedyoferrors,1592\ngnats,1,comedyoferrors,1592\ntroth,1,comedyoferrors,1592\npleaded,1,comedyoferrors,1592\nfeeling,1,comedyoferrors,1592\nnigh,1,comedyoferrors,1592\ngold's,1,comedyoferrors,1592\nthreadbare,1,comedyoferrors,1592\nsports,1,comedyoferrors,1592\nsupposed,1,comedyoferrors,1592\nbend,1,comedyoferrors,1592\nmarvellous,1,comedyoferrors,1592\nballast,1,comedyoferrors,1592\nlook'd,1,comedyoferrors,1592\nhindered,1,comedyoferrors,1592\nHeard,1,comedyoferrors,1592\nmetal,1,comedyoferrors,1592\nothers',1,comedyoferrors,1592\ndivorce,1,comedyoferrors,1592\nbarrenness,1,comedyoferrors,1592\ndrunken,1,comedyoferrors,1592\nvalued,1,comedyoferrors,1592\nBridget,1,comedyoferrors,1592\ntells,1,comedyoferrors,1592\nlamed,1,comedyoferrors,1592\nsuffer'd,1,comedyoferrors,1592\ncost,1,comedyoferrors,1592\nMine,1,comedyoferrors,1592\nsalute,1,comedyoferrors,1592\nprophecy,1,comedyoferrors,1592\nPatience,1,comedyoferrors,1592\nhound,1,comedyoferrors,1592\ngoodly,1,comedyoferrors,1592\nkindness,1,comedyoferrors,1592\nestimation,1,comedyoferrors,1592\ntroop,1,comedyoferrors,1592\nTransform,1,comedyoferrors,1592\ntraitor,1,comedyoferrors,1592\narose,1,comedyoferrors,1592\ntell'st,1,comedyoferrors,1592\nhomely,1,comedyoferrors,1592\nuncertainty,1,comedyoferrors,1592\n'Your,1,comedyoferrors,1592\ntricks,1,comedyoferrors,1592\nstrives,1,comedyoferrors,1592\nsacred,1,comedyoferrors,1592\nimmediate,1,comedyoferrors,1592\nchargeful,1,comedyoferrors,1592\nDined,1,comedyoferrors,1592\ngaze,1,comedyoferrors,1592\nweak,1,comedyoferrors,1592\nsportive,1,comedyoferrors,1592\nwear,1,comedyoferrors,1592\nblunts,1,comedyoferrors,1592\nbent,1,comedyoferrors,1592\ndealers,1,comedyoferrors,1592\ndispense,1,comedyoferrors,1592\nkindnesses,1,comedyoferrors,1592\nblazed,1,comedyoferrors,1592\ninfectious,1,comedyoferrors,1592\nlamps,1,comedyoferrors,1592\navoid,1,comedyoferrors,1592\nbuildings,1,comedyoferrors,1592\nterm'd,1,comedyoferrors,1592\nmonstrously,1,comedyoferrors,1592\nestranged,1,comedyoferrors,1592\ndrugs,1,comedyoferrors,1592\ntrembles,1,comedyoferrors,1592\nhuge,1,comedyoferrors,1592\nbait,1,comedyoferrors,1592\nmeanest,1,comedyoferrors,1592\napproach'd,1,comedyoferrors,1592\nDiet,1,comedyoferrors,1592\naqua,1,comedyoferrors,1592\nDies,1,comedyoferrors,1592\nrancorous,1,comedyoferrors,1592\ngods,1,comedyoferrors,1592\nfairly,1,comedyoferrors,1592\na',1,comedyoferrors,1592\nApparel,1,comedyoferrors,1592\nconquers,1,comedyoferrors,1592\njewel,1,comedyoferrors,1592\nCry,1,comedyoferrors,1592\npersuasion,1,comedyoferrors,1592\nCicel,1,comedyoferrors,1592\ntide,1,comedyoferrors,1592\nhereof,1,comedyoferrors,1592\n'no,1,comedyoferrors,1592\ndistracted,1,comedyoferrors,1592\nwhilst,1,comedyoferrors,1592\nbankrupt,1,comedyoferrors,1592\nSing,1,comedyoferrors,1592\nverity,1,comedyoferrors,1592\ncurse,1,comedyoferrors,1592\nfolded,1,comedyoferrors,1592\ndespite,1,comedyoferrors,1592\nvows,1,comedyoferrors,1592\nscann'd,1,comedyoferrors,1592\nworship's,1,comedyoferrors,1592\nherein,1,comedyoferrors,1592\nTiger,1,comedyoferrors,1592\nalluring,1,comedyoferrors,1592\nSelf,1,comedyoferrors,1592\nraising,1,comedyoferrors,1592\ntravel,1,comedyoferrors,1592\nused,1,comedyoferrors,1592\nnurse,1,comedyoferrors,1592\ngoes,1,comedyoferrors,1592\ncrack'd,1,comedyoferrors,1592\nshifts,1,comedyoferrors,1592\ncarriage,1,comedyoferrors,1592\npains,1,comedyoferrors,1592\nsink,1,comedyoferrors,1592\nseized,1,comedyoferrors,1592\nshipboard,1,comedyoferrors,1592\npicture,1,comedyoferrors,1592\nharlots,1,comedyoferrors,1592\nformal,1,comedyoferrors,1592\nbarren,1,comedyoferrors,1592\nstories,1,comedyoferrors,1592\nunstain'd,1,comedyoferrors,1592\nrejoice,1,comedyoferrors,1592\nsickness,1,comedyoferrors,1592\nfloating,1,comedyoferrors,1592\nmoody,1,comedyoferrors,1592\nmatch,1,comedyoferrors,1592\nSans,1,comedyoferrors,1592\nRoaming,1,comedyoferrors,1592\nleagues,1,comedyoferrors,1592\nMasters,1,comedyoferrors,1592\nhighest,1,comedyoferrors,1592\npratest,1,comedyoferrors,1592\nturns,1,comedyoferrors,1592\nfulfil,1,comedyoferrors,1592\nafterward,1,comedyoferrors,1592\nlately,1,comedyoferrors,1592\nresort,1,comedyoferrors,1592\nattaint,1,comedyoferrors,1592\nharbinger,1,comedyoferrors,1592\nheadstrong,1,comedyoferrors,1592\nunspeakable,1,comedyoferrors,1592\ninvite,1,comedyoferrors,1592\nassemblies,1,comedyoferrors,1592\nnicks,1,comedyoferrors,1592\ncrooked,1,comedyoferrors,1592\nmaster's,1,comedyoferrors,1592\nhinderd,1,comedyoferrors,1592\nunmoved,1,comedyoferrors,1592\npails,1,comedyoferrors,1592\nbegin,1,comedyoferrors,1592\nName,1,comedyoferrors,1592\nquite,1,comedyoferrors,1592\nsir',1,comedyoferrors,1592\ncoil,1,comedyoferrors,1592\nlie,1,comedyoferrors,1592\nsolemn,1,comedyoferrors,1592\nstore,1,comedyoferrors,1592\nGaze,1,comedyoferrors,1592\ni',1,comedyoferrors,1592\nghost,1,comedyoferrors,1592\nraught,1,comedyoferrors,1592\nimpatience,1,comedyoferrors,1592\nparcel,1,comedyoferrors,1592\nbrow,1,comedyoferrors,1592\nslow,1,comedyoferrors,1592\nstorms,1,comedyoferrors,1592\njeer,1,comedyoferrors,1592\nfrantic,1,comedyoferrors,1592\ndeer,1,comedyoferrors,1592\nsaffron,1,comedyoferrors,1592\naffection,1,comedyoferrors,1592\nNothing,1,comedyoferrors,1592\nbetray,1,comedyoferrors,1592\nCannot,1,comedyoferrors,1592\nbreast,1,comedyoferrors,1592\nFortune,1,comedyoferrors,1592\nvoyage,1,comedyoferrors,1592\naim,1,comedyoferrors,1592\npersuade,1,comedyoferrors,1592\nretain,1,comedyoferrors,1592\nsnatch'd,1,comedyoferrors,1592\nembraced,1,comedyoferrors,1592\nyea,1,comedyoferrors,1592\nmole,1,comedyoferrors,1592\nFear,1,comedyoferrors,1592\nencounterd,1,comedyoferrors,1592\nservant,1,comedyoferrors,1592\nsixpence,1,comedyoferrors,1592\nexcellent,1,comedyoferrors,1592\naid,1,comedyoferrors,1592\nimagination,1,comedyoferrors,1592\nshamest,1,comedyoferrors,1592\nhonesty,1,comedyoferrors,1592\n'rests,1,comedyoferrors,1592\nlimbo,1,comedyoferrors,1592\ndebate,1,comedyoferrors,1592\nsheep,1,comedyoferrors,1592\nneedy,1,comedyoferrors,1592\njewels,1,comedyoferrors,1592\nundisposed,1,comedyoferrors,1592\nfasten,1,comedyoferrors,1592\nmaw,1,comedyoferrors,1592\n'Hang,1,comedyoferrors,1592\nalter'd,1,comedyoferrors,1592\ngain,1,comedyoferrors,1592\nyes,1,comedyoferrors,1592\nbarr'd,1,comedyoferrors,1592\ngains,1,comedyoferrors,1592\nDisguised,1,comedyoferrors,1592\ndistressed,1,comedyoferrors,1592\ndwell,1,comedyoferrors,1592\nalmanac,1,comedyoferrors,1592\nstone,1,comedyoferrors,1592\ndisturbed,1,comedyoferrors,1592\nhostess,1,comedyoferrors,1592\nassaying,1,comedyoferrors,1592\nrheum,1,comedyoferrors,1592\nconsequence,1,comedyoferrors,1592\ndignity,1,comedyoferrors,1592\ndeaf,1,comedyoferrors,1592\nspringeth,1,comedyoferrors,1592\nSafe,1,comedyoferrors,1592\nbegins,1,comedyoferrors,1592\nvault,1,comedyoferrors,1592\nSpread,1,comedyoferrors,1592\nNamely,1,comedyoferrors,1592\nstarve,1,comedyoferrors,1592\nmountebanks,1,comedyoferrors,1592\nseeming,1,comedyoferrors,1592\nslug,1,comedyoferrors,1592\nPersia,1,comedyoferrors,1592\nstain'd,1,comedyoferrors,1592\ndealing,1,comedyoferrors,1592\ntouch'd,1,comedyoferrors,1592\nrestraint,1,comedyoferrors,1592\ntrim,1,comedyoferrors,1592\nobeying,1,comedyoferrors,1592\nhouses,1,comedyoferrors,1592\nspeed,1,comedyoferrors,1592\nmaker,1,comedyoferrors,1592\nmemory,1,comedyoferrors,1592\nAccording,1,comedyoferrors,1592\nprivilege,1,comedyoferrors,1592\ndebted,1,comedyoferrors,1592\nfishers,1,comedyoferrors,1592\nBlows,1,comedyoferrors,1592\nsovereign,1,comedyoferrors,1592\nruinous,1,comedyoferrors,1592\ndetermine,1,comedyoferrors,1592\ndispleased,1,comedyoferrors,1592\nhumours,1,comedyoferrors,1592\ndoom,1,comedyoferrors,1592\nburns,1,comedyoferrors,1592\nidiot,1,comedyoferrors,1592\nlimit,1,comedyoferrors,1592\ndebtor,1,comedyoferrors,1592\nMen,1,comedyoferrors,1592\nask'd,1,comedyoferrors,1592\ncommend,1,comedyoferrors,1592\nMet,1,comedyoferrors,1592\nLapland,1,comedyoferrors,1592\nGreat,1,comedyoferrors,1592\ndebating,1,comedyoferrors,1592\ncommitted,1,comedyoferrors,1592\nUnkindness,1,comedyoferrors,1592\nAway,1,comedyoferrors,1592\nattorney,1,comedyoferrors,1592\ncomment,1,comedyoferrors,1592\nsmall,1,comedyoferrors,1592\nlo,1,comedyoferrors,1592\npunishment,1,comedyoferrors,1592\nsever'd,1,comedyoferrors,1592\npernicious,1,comedyoferrors,1592\nsauced,1,comedyoferrors,1592\nmoss,1,comedyoferrors,1592\nutmost,1,comedyoferrors,1592\nbodied,1,comedyoferrors,1592\ncrave,1,comedyoferrors,1592\nacross,1,comedyoferrors,1592\nidly,1,comedyoferrors,1592\nForsooth,1,comedyoferrors,1592\nReft,1,comedyoferrors,1592\nPleaseth,1,comedyoferrors,1592\noutrageous,1,comedyoferrors,1592\nstrokes,1,comedyoferrors,1592\non's,1,comedyoferrors,1592\namain,1,comedyoferrors,1592\nharshly,1,comedyoferrors,1592\nprevailed,1,comedyoferrors,1592\nPoland,1,comedyoferrors,1592\n'Where,1,comedyoferrors,1592\ncliffs,1,comedyoferrors,1592\nsometimes,1,comedyoferrors,1592\ndog's,1,comedyoferrors,1592\nseditious,1,comedyoferrors,1592\ncarved,1,comedyoferrors,1592\nvestal,1,comedyoferrors,1592\ngulf,1,comedyoferrors,1592\nincessant,1,comedyoferrors,1592\n'twould,1,comedyoferrors,1592\ntrain,1,comedyoferrors,1592\nenmity,1,comedyoferrors,1592\nniggardly,1,comedyoferrors,1592\nPoisons,1,comedyoferrors,1592\neverywhere,1,comedyoferrors,1592\njollity,1,comedyoferrors,1592\nRenowned,1,comedyoferrors,1592\nink,1,comedyoferrors,1592\npursued,1,comedyoferrors,1592\nthither,1,comedyoferrors,1592\nhoisted,1,comedyoferrors,1592\nlightly,1,comedyoferrors,1592\neye's,1,comedyoferrors,1592\nattendants,1,comedyoferrors,1592\ncitizens,1,comedyoferrors,1592\nvirtue,1,comedyoferrors,1592\nYea,1,comedyoferrors,1592\ngravity,1,comedyoferrors,1592\nloss,1,comedyoferrors,1592\nWouldst,1,comedyoferrors,1592\ndistemperatures,1,comedyoferrors,1592\ntruant,1,comedyoferrors,1592\ndrift,1,comedyoferrors,1592\nho,1,comedyoferrors,1592\nspeak'st,1,comedyoferrors,1592\ndishonour'd,1,comedyoferrors,1592\nample,1,comedyoferrors,1592\nsemblance,1,comedyoferrors,1592\npranks,1,comedyoferrors,1592\ndeparted'st,1,comedyoferrors,1592\nsuspect,1,comedyoferrors,1592\nProdigal,1,comedyoferrors,1592\nspent,1,comedyoferrors,1592\nsailors,1,comedyoferrors,1592\nupbraidings,1,comedyoferrors,1592\nless,1,comedyoferrors,1592\nfright,1,comedyoferrors,1592\nstatute,1,comedyoferrors,1592\nWithout,1,comedyoferrors,1592\ndispose,1,comedyoferrors,1592\nafternoon,1,comedyoferrors,1592\nsilver,1,comedyoferrors,1592\ngets,1,comedyoferrors,1592\nkeepest,1,comedyoferrors,1592\nlist,1,comedyoferrors,1592\nbides,1,comedyoferrors,1592\nknave's,1,comedyoferrors,1592\nloved,1,comedyoferrors,1592\ncustomers,1,comedyoferrors,1592\nhuman,1,comedyoferrors,1592\ndankish,1,comedyoferrors,1592\nlevied,1,comedyoferrors,1592\nwords',1,comedyoferrors,1592\nhurt,1,comedyoferrors,1592\nblue,1,comedyoferrors,1592\ndefy,1,comedyoferrors,1592\nhurl,1,comedyoferrors,1592\nlets,1,comedyoferrors,1592\neighteen,1,comedyoferrors,1592\nnimble,1,comedyoferrors,1592\nWhoever,1,comedyoferrors,1592\nshow'd,1,comedyoferrors,1592\nspouse,1,comedyoferrors,1592\nforgot,1,comedyoferrors,1592\nserious,1,comedyoferrors,1592\n''Tis,1,comedyoferrors,1592\ngoing,1,comedyoferrors,1592\nDisburse,1,comedyoferrors,1592\nclamours,1,comedyoferrors,1592\nbridled,1,comedyoferrors,1592\nhoy,1,comedyoferrors,1592\nupbraided,1,comedyoferrors,1592\nfestivity,1,comedyoferrors,1592\npassages,1,comedyoferrors,1592\npure,1,comedyoferrors,1592\nsummers,1,comedyoferrors,1592\nmarr'd,1,comedyoferrors,1592\ncorruption,1,comedyoferrors,1592\nIndued,1,comedyoferrors,1592\nwildly,1,comedyoferrors,1592\nCame,1,comedyoferrors,1592\nkilled,1,comedyoferrors,1592\nhark,1,comedyoferrors,1592\nchalky,1,comedyoferrors,1592\nwitty,1,comedyoferrors,1592\nsentence,1,comedyoferrors,1592\ndate,1,comedyoferrors,1592\nrunning,1,comedyoferrors,1592\nspring,1,comedyoferrors,1592\nentrance,1,comedyoferrors,1592\nattach'd,1,comedyoferrors,1592\ntardy,1,comedyoferrors,1592\ndemean'd,1,comedyoferrors,1592\neasy,1,comedyoferrors,1592\ncover'd,1,comedyoferrors,1592\ndenying,1,comedyoferrors,1592\narmadoes,1,comedyoferrors,1592\ngrained,1,comedyoferrors,1592\nprocrastinate,1,comedyoferrors,1592\nimprisonment,1,comedyoferrors,1592\nYou'll,1,comedyoferrors,1592\nBreak,1,comedyoferrors,1592\nBrought,1,comedyoferrors,1592\nimposed,1,comedyoferrors,1592\nRan,1,comedyoferrors,1592\nhazarded,1,comedyoferrors,1592\nfield,1,comedyoferrors,1592\ntherewithal,1,comedyoferrors,1592\nexpense,1,comedyoferrors,1592\nfasten'd,1,comedyoferrors,1592\ndog,1,comedyoferrors,1592\ndiscovered,1,comedyoferrors,1592\nrespect,1,comedyoferrors,1592\nkick,1,comedyoferrors,1592\nhall,1,comedyoferrors,1592\nremain'd,1,comedyoferrors,1592\nprovide,1,comedyoferrors,1592\nDowsabel,1,comedyoferrors,1592\nhaunts,1,comedyoferrors,1592\nround,1,comedyoferrors,1592\nsomewhere,1,comedyoferrors,1592\nowls,1,comedyoferrors,1592\nbrat,1,comedyoferrors,1592\nhonour's,1,comedyoferrors,1592\ndare,1,comedyoferrors,1592\nfowl,1,comedyoferrors,1592\nshallow,1,comedyoferrors,1592\nwail'd,1,comedyoferrors,1592\nCall,1,comedyoferrors,1592\nLess,1,comedyoferrors,1592\nnation,1,comedyoferrors,1592\nhelpful,1,comedyoferrors,1592\npalm,1,comedyoferrors,1592\nMore,1,comedyoferrors,1592\nhusband's,1,comedyoferrors,1592\nhandwriting,1,comedyoferrors,1592\nnatural,1,comedyoferrors,1592\nacknowledge,1,comedyoferrors,1592\ncatch,1,comedyoferrors,1592\nweighs,1,comedyoferrors,1592\nLady,1,comedyoferrors,1592\nausterely,1,comedyoferrors,1592\nprince,1,comedyoferrors,1592\nflouting,1,comedyoferrors,1592\nblessing,1,comedyoferrors,1592\ndispatch,1,comedyoferrors,1592\nfour,1,comedyoferrors,1592\ndraws,1,comedyoferrors,1592\nfoul,1,comedyoferrors,1592\nglobe,1,comedyoferrors,1592\ngoldsmith's,1,comedyoferrors,1592\nseparate,1,comedyoferrors,1592\nfeasted,1,comedyoferrors,1592\nbred,1,comedyoferrors,1592\nporridge,1,comedyoferrors,1592\nliest,1,comedyoferrors,1592\ndemean,1,comedyoferrors,1592\njoyful,1,comedyoferrors,1592\nmonths,1,comedyoferrors,1592\nBring,1,comedyoferrors,1592\nDRAMATIS,1,comedyoferrors,1592\nlamp,1,comedyoferrors,1592\npraise,1,comedyoferrors,1592\nUnseen,1,comedyoferrors,1592\nUntil,1,comedyoferrors,1592\nDuring,1,comedyoferrors,1592\nshift,1,comedyoferrors,1592\npeacock,1,comedyoferrors,1592\nreverent,1,comedyoferrors,1592\nIndies,1,comedyoferrors,1592\nMome,1,comedyoferrors,1592\nDue,1,comedyoferrors,1592\nvenom,1,comedyoferrors,1592\nshake,1,comedyoferrors,1592\nrescue,1,comedyoferrors,1592\ncaracks,1,comedyoferrors,1592\nguests,1,comedyoferrors,1592\nunlawful,1,comedyoferrors,1592\nBind,1,comedyoferrors,1592\nwhether,1,comedyoferrors,1592\nexpect,1,comedyoferrors,1592\ndealer,1,comedyoferrors,1592\nsapphires,1,comedyoferrors,1592\npruning,1,comedyoferrors,1592\narmed,1,comedyoferrors,1592\nThereof,1,comedyoferrors,1592\ndame,1,comedyoferrors,1592\nform,1,comedyoferrors,1592\ndamn,1,comedyoferrors,1592\nabhor,1,comedyoferrors,1592\nbargain,1,comedyoferrors,1592\nobedient,1,comedyoferrors,1592\ntired,1,comedyoferrors,1592\ncozenage,1,comedyoferrors,1592\nconfederate,1,comedyoferrors,1592\npair,1,comedyoferrors,1592\nprivate,1,comedyoferrors,1592\nwinter's,1,comedyoferrors,1592\nunbound,1,comedyoferrors,1592\nfiery,1,comedyoferrors,1592\nwasted,1,comedyoferrors,1592\nape,1,comedyoferrors,1592\nReturn'd,1,comedyoferrors,1592\nSyracusians,1,comedyoferrors,1592\nHusband,1,comedyoferrors,1592\npress'd,1,comedyoferrors,1592\nfrown,1,comedyoferrors,1592\ntainted,1,comedyoferrors,1592\ncates,1,comedyoferrors,1592\nspirit,1,comedyoferrors,1592\ndrizzled,1,comedyoferrors,1592\nConceit,1,comedyoferrors,1592\nmermaid's,1,comedyoferrors,1592\nTry,1,comedyoferrors,1592\nfoot,1,comedyoferrors,1592\njustly,1,comedyoferrors,1592\ntransform'd,1,comedyoferrors,1592\nadjudged,1,comedyoferrors,1592\ndoting,1,comedyoferrors,1592\nsupposition,1,comedyoferrors,1592\nfishes,1,comedyoferrors,1592\nforbear,1,comedyoferrors,1592\nrepair,1,comedyoferrors,1592\ncontaminate,1,comedyoferrors,1592\nshoe,1,comedyoferrors,1592\nshoes,1,comedyoferrors,1592\ncoasting,1,comedyoferrors,1592\nexcept,1,comedyoferrors,1592\noaths,1,comedyoferrors,1592\nshape,1,comedyoferrors,1592\ndefault,1,comedyoferrors,1592\nsaints,1,comedyoferrors,1592\nsignior,1,comedyoferrors,1592\nperhaps,1,comedyoferrors,1592\nSmall,1,comedyoferrors,1592\nDispersed,1,comedyoferrors,1592\ncrown,1,comedyoferrors,1592\nprevailing,1,comedyoferrors,1592\nbeneficial,1,comedyoferrors,1592\nrenowned,1,comedyoferrors,1592\nobject,1,comedyoferrors,1592\nfading,1,comedyoferrors,1592\nfond,1,comedyoferrors,1592\njuggler,1,comedyoferrors,1592\nfroze,1,comedyoferrors,1592\nesteemed,1,comedyoferrors,1592\ndurance,1,comedyoferrors,1592\ncourtezan's,1,comedyoferrors,1592\nwiles,1,comedyoferrors,1592\nexempt,1,comedyoferrors,1592\nfortunes,1,comedyoferrors,1592\nsail'd,1,comedyoferrors,1592\nsway,1,comedyoferrors,1592\nsecret,1,comedyoferrors,1592\nschoolmaster,1,comedyoferrors,1592\nHast,2,comedyoferrors,1592\nthanks,2,comedyoferrors,1592\nsleeve,2,comedyoferrors,1592\ndeadly,2,comedyoferrors,1592\nSirrah,2,comedyoferrors,1592\nparted,2,comedyoferrors,1592\nadvised,2,comedyoferrors,1592\nbeams,2,comedyoferrors,1592\nhaving,2,comedyoferrors,1592\nprays,2,comedyoferrors,1592\ndoubtfully,2,comedyoferrors,1592\nlead,2,comedyoferrors,1592\ncompact,2,comedyoferrors,1592\nbespoke,2,comedyoferrors,1592\nBetween,2,comedyoferrors,1592\nleisure,2,comedyoferrors,1592\nborrow,2,comedyoferrors,1592\nlean,2,comedyoferrors,1592\nweary,2,comedyoferrors,1592\njustice,2,comedyoferrors,1592\nhorse,2,comedyoferrors,1592\nthrough,2,comedyoferrors,1592\nalike,2,comedyoferrors,1592\nkeeps,2,comedyoferrors,1592\npeasant,2,comedyoferrors,1592\nwoman's,2,comedyoferrors,1592\ncarried,2,comedyoferrors,1592\nerrors,2,comedyoferrors,1592\nVillain,2,comedyoferrors,1592\nreport,2,comedyoferrors,1592\nbonds,2,comedyoferrors,1592\nheart's,2,comedyoferrors,1592\npublicly,2,comedyoferrors,1592\nBear,2,comedyoferrors,1592\nboys,2,comedyoferrors,1592\nhelpless,2,comedyoferrors,1592\nnote,2,comedyoferrors,1592\nheld,2,comedyoferrors,1592\nnose,2,comedyoferrors,1592\npatch,2,comedyoferrors,1592\ncapon,2,comedyoferrors,1592\nvain,2,comedyoferrors,1592\nPeace,2,comedyoferrors,1592\nsight,2,comedyoferrors,1592\nrate,2,comedyoferrors,1592\nFar,2,comedyoferrors,1592\ntears,2,comedyoferrors,1592\nbears,2,comedyoferrors,1592\ntender,2,comedyoferrors,1592\nthings,2,comedyoferrors,1592\nangels,2,comedyoferrors,1592\nappear,2,comedyoferrors,1592\nfury,2,comedyoferrors,1592\nlaugh,2,comedyoferrors,1592\nunder,2,comedyoferrors,1592\nAntipholuses,2,comedyoferrors,1592\nsirrah,2,comedyoferrors,1592\ndefeatures,2,comedyoferrors,1592\nwritten,2,comedyoferrors,1592\nheedful,2,comedyoferrors,1592\nsorcerers,2,comedyoferrors,1592\nWhom,2,comedyoferrors,1592\nyou'll,2,comedyoferrors,1592\nhinder'd,2,comedyoferrors,1592\nspare,2,comedyoferrors,1592\nLord,2,comedyoferrors,1592\nsay'st,2,comedyoferrors,1592\npleasing,2,comedyoferrors,1592\nOnce,2,comedyoferrors,1592\nDost,2,comedyoferrors,1592\nyours,2,comedyoferrors,1592\ndelivered,2,comedyoferrors,1592\nstrength,2,comedyoferrors,1592\nSee,2,comedyoferrors,1592\nseven,2,comedyoferrors,1592\neffect,2,comedyoferrors,1592\nAbbess,2,comedyoferrors,1592\nLook,2,comedyoferrors,1592\nfeather,2,comedyoferrors,1592\nstark,2,comedyoferrors,1592\nelsewhere,2,comedyoferrors,1592\nteeth,2,comedyoferrors,1592\nsap,2,comedyoferrors,1592\nWhose,2,comedyoferrors,1592\nconclusion,2,comedyoferrors,1592\ninhabit,2,comedyoferrors,1592\nsorrows,2,comedyoferrors,1592\ncholeric,2,comedyoferrors,1592\ninjury,2,comedyoferrors,1592\nCould,2,comedyoferrors,1592\nmast,2,comedyoferrors,1592\ndrew,2,comedyoferrors,1592\ncheek,2,comedyoferrors,1592\nmadness,2,comedyoferrors,1592\ngolden,2,comedyoferrors,1592\nwoe,2,comedyoferrors,1592\nbreaks,2,comedyoferrors,1592\nvein,2,comedyoferrors,1592\ninquisitive,2,comedyoferrors,1592\nfools,2,comedyoferrors,1592\nMethinks,2,comedyoferrors,1592\nshoulder,2,comedyoferrors,1592\nthief,2,comedyoferrors,1592\nheaven's,2,comedyoferrors,1592\nneed,2,comedyoferrors,1592\nbenefit,2,comedyoferrors,1592\nlesser,2,comedyoferrors,1592\ndischarge,2,comedyoferrors,1592\nperjured,2,comedyoferrors,1592\nMade,2,comedyoferrors,1592\nview,2,comedyoferrors,1592\nPerchance,2,comedyoferrors,1592\ntrouble,2,comedyoferrors,1592\nDuke,2,comedyoferrors,1592\nwed,2,comedyoferrors,1592\ndoctor,2,comedyoferrors,1592\nkey,2,comedyoferrors,1592\nclaims,2,comedyoferrors,1592\nThey'll,2,comedyoferrors,1592\nset,2,comedyoferrors,1592\nfits,2,comedyoferrors,1592\noft,2,comedyoferrors,1592\nWe'll,2,comedyoferrors,1592\npeevish,2,comedyoferrors,1592\nbeasts,2,comedyoferrors,1592\nstomach,2,comedyoferrors,1592\ndisposed,2,comedyoferrors,1592\nyield,2,comedyoferrors,1592\nreceipt,2,comedyoferrors,1592\nsays,2,comedyoferrors,1592\nworth,2,comedyoferrors,1592\nbeseech,2,comedyoferrors,1592\nsubject,2,comedyoferrors,1592\nlooking,2,comedyoferrors,1592\nwhere's,2,comedyoferrors,1592\ncustody,2,comedyoferrors,1592\nadversity,2,comedyoferrors,1592\ngather,2,comedyoferrors,1592\nThus,2,comedyoferrors,1592\nheavy,2,comedyoferrors,1592\nleague,2,comedyoferrors,1592\nmother,2,comedyoferrors,1592\nAttendants,2,comedyoferrors,1592\n'The,2,comedyoferrors,1592\nSpain,2,comedyoferrors,1592\nearnest,2,comedyoferrors,1592\nbelieve,2,comedyoferrors,1592\nwar,2,comedyoferrors,1592\nCan,2,comedyoferrors,1592\nread,2,comedyoferrors,1592\nbetween,2,comedyoferrors,1592\nperforce,2,comedyoferrors,1592\noffence,2,comedyoferrors,1592\ngaoler,2,comedyoferrors,1592\noath,2,comedyoferrors,1592\nPriory,2,comedyoferrors,1592\nfelt,2,comedyoferrors,1592\nredeem,2,comedyoferrors,1592\nthey'll,2,comedyoferrors,1592\nFrance,2,comedyoferrors,1592\nmerchants,2,comedyoferrors,1592\nconceit,2,comedyoferrors,1592\nwont,2,comedyoferrors,1592\nconfiscate,2,comedyoferrors,1592\nSister,2,comedyoferrors,1592\nbore,2,comedyoferrors,1592\nhappy,2,comedyoferrors,1592\nraging,2,comedyoferrors,1592\nserved,2,comedyoferrors,1592\ntakes,2,comedyoferrors,1592\ntaken,2,comedyoferrors,1592\ninstance,2,comedyoferrors,1592\nweeping,2,comedyoferrors,1592\ncries,2,comedyoferrors,1592\ncompass,2,comedyoferrors,1592\nlust,2,comedyoferrors,1592\nhonour,2,comedyoferrors,1592\nPlead,2,comedyoferrors,1592\nfeet,2,comedyoferrors,1592\nrecovery,2,comedyoferrors,1592\nmasters,2,comedyoferrors,1592\nwhence,2,comedyoferrors,1592\nrude,2,comedyoferrors,1592\nguilty,2,comedyoferrors,1592\nminds,2,comedyoferrors,1592\nlength,2,comedyoferrors,1592\nmodesty,2,comedyoferrors,1592\nwant,2,comedyoferrors,1592\nquest,2,comedyoferrors,1592\nimportuned,2,comedyoferrors,1592\ndispleasure,2,comedyoferrors,1592\nsense,2,comedyoferrors,1592\nfly,2,comedyoferrors,1592\nwarm,2,comedyoferrors,1592\nvoice,2,comedyoferrors,1592\nfin,2,comedyoferrors,1592\nSweet,2,comedyoferrors,1592\nwars,2,comedyoferrors,1592\nbond,2,comedyoferrors,1592\nfit,2,comedyoferrors,1592\nimpeach,2,comedyoferrors,1592\nrule,2,comedyoferrors,1592\npassion,2,comedyoferrors,1592\nfine,2,comedyoferrors,1592\nvow,2,comedyoferrors,1592\nsteel,2,comedyoferrors,1592\ndalliance,2,comedyoferrors,1592\nmarried,2,comedyoferrors,1592\nta'en,2,comedyoferrors,1592\naspect,2,comedyoferrors,1592\nmadly,2,comedyoferrors,1592\nstir,2,comedyoferrors,1592\nmeaning,2,comedyoferrors,1592\nstatutes,2,comedyoferrors,1592\ncomfort,2,comedyoferrors,1592\nunkind,2,comedyoferrors,1592\nhap,2,comedyoferrors,1592\nWhile,2,comedyoferrors,1592\nBelike,2,comedyoferrors,1592\nrefuse,2,comedyoferrors,1592\nnames,2,comedyoferrors,1592\nlarge,2,comedyoferrors,1592\nmeasure,2,comedyoferrors,1592\npulse,2,comedyoferrors,1592\ntwins,2,comedyoferrors,1592\nfeeble,2,comedyoferrors,1592\ndeformed,2,comedyoferrors,1592\nAn,2,comedyoferrors,1592\nlaw,2,comedyoferrors,1592\nburdened,2,comedyoferrors,1592\nboy,2,comedyoferrors,1592\nknowing,2,comedyoferrors,1592\njests,2,comedyoferrors,1592\nwild,2,comedyoferrors,1592\nbad,2,comedyoferrors,1592\nhomeward,2,comedyoferrors,1592\nharlot,2,comedyoferrors,1592\npardon,2,comedyoferrors,1592\nclear,2,comedyoferrors,1592\nclean,2,comedyoferrors,1592\ndenies,2,comedyoferrors,1592\nbrings,2,comedyoferrors,1592\nOn,2,comedyoferrors,1592\nOh,2,comedyoferrors,1592\nHer,2,comedyoferrors,1592\ntear,2,comedyoferrors,1592\nunruly,2,comedyoferrors,1592\nwhole,2,comedyoferrors,1592\nflood,2,comedyoferrors,1592\nowner,2,comedyoferrors,1592\nsurely,2,comedyoferrors,1592\nWherefore,2,comedyoferrors,1592\nLet's,2,comedyoferrors,1592\ngives,2,comedyoferrors,1592\nplay,2,comedyoferrors,1592\npig,2,comedyoferrors,1592\npass,2,comedyoferrors,1592\nAnon,2,comedyoferrors,1592\nseas,2,comedyoferrors,1592\nalways,2,comedyoferrors,1592\nbest,2,comedyoferrors,1592\nwe'll,2,comedyoferrors,1592\naught,2,comedyoferrors,1592\nbe'st,2,comedyoferrors,1592\nweep,2,comedyoferrors,1592\nconfederates,2,comedyoferrors,1592\nweek,2,comedyoferrors,1592\nintrusion,2,comedyoferrors,1592\nNe'er,2,comedyoferrors,1592\ngrief,2,comedyoferrors,1592\ncamest,2,comedyoferrors,1592\nsooner,2,comedyoferrors,1592\nleather,2,comedyoferrors,1592\nconclude,2,comedyoferrors,1592\nbehind,2,comedyoferrors,1592\nbell,2,comedyoferrors,1592\ngot,2,comedyoferrors,1592\nimmediately,2,comedyoferrors,1592\nstruck,2,comedyoferrors,1592\nmadman,2,comedyoferrors,1592\nRe,2,comedyoferrors,1592\nfishermen,2,comedyoferrors,1592\n'twill,2,comedyoferrors,1592\nblame,2,comedyoferrors,1592\nwretched,2,comedyoferrors,1592\nguilders,2,comedyoferrors,1592\nbuff,2,comedyoferrors,1592\ncountrymen,2,comedyoferrors,1592\nprating,2,comedyoferrors,1592\ntwice,2,comedyoferrors,1592\nDidst,2,comedyoferrors,1592\njust,2,comedyoferrors,1592\ntheme,2,comedyoferrors,1592\nprison,2,comedyoferrors,1592\nmated,2,comedyoferrors,1592\ndeceive,2,comedyoferrors,1592\ndivine,2,comedyoferrors,1592\nstronger,2,comedyoferrors,1592\nensue,2,comedyoferrors,1592\nsister's,2,comedyoferrors,1592\nprotest,2,comedyoferrors,1592\npurpose,2,comedyoferrors,1592\nbestow,2,comedyoferrors,1592\nPinch,2,comedyoferrors,1592\nconvey'd,2,comedyoferrors,1592\nsaid,2,comedyoferrors,1592\nentertain,2,comedyoferrors,1592\nuntil,2,comedyoferrors,1592\nTwo,2,comedyoferrors,1592\nstory,2,comedyoferrors,1592\nsail,2,comedyoferrors,1592\ninstant,2,comedyoferrors,1592\nwretch,2,comedyoferrors,1592\nmood,2,comedyoferrors,1592\nconfess,2,comedyoferrors,1592\nair,2,comedyoferrors,1592\neat,2,comedyoferrors,1592\nlays,2,comedyoferrors,1592\nHere's,2,comedyoferrors,1592\nfavour,2,comedyoferrors,1592\nevening,2,comedyoferrors,1592\nIll,2,comedyoferrors,1592\nstood,2,comedyoferrors,1592\nwreck,2,comedyoferrors,1592\nneeds,2,comedyoferrors,1592\nGave,2,comedyoferrors,1592\ncareful,2,comedyoferrors,1592\nQuoth,2,comedyoferrors,1592\nsplitted,2,comedyoferrors,1592\nFive,2,comedyoferrors,1592\nvouchsafe,2,comedyoferrors,1592\ndead,2,comedyoferrors,1592\nlearn,2,comedyoferrors,1592\ntime's,2,comedyoferrors,1592\nremember,2,comedyoferrors,1592\nreprehended,2,comedyoferrors,1592\ndecayed,2,comedyoferrors,1592\nmakes,2,comedyoferrors,1592\ngentlewoman,2,comedyoferrors,1592\nDissembling,2,comedyoferrors,1592\nSince,2,comedyoferrors,1592\nmove,2,comedyoferrors,1592\nboard,2,comedyoferrors,1592\nfled,2,comedyoferrors,1592\nquarters,2,comedyoferrors,1592\no',2,comedyoferrors,1592\nhomage,2,comedyoferrors,1592\nidle,2,comedyoferrors,1592\nthereupon,2,comedyoferrors,1592\nattendant,2,comedyoferrors,1592\nfever,2,comedyoferrors,1592\nnativity,2,comedyoferrors,1592\nage,2,comedyoferrors,1592\nsaddler,2,comedyoferrors,1592\noffer'd,2,comedyoferrors,1592\nparents,2,comedyoferrors,1592\nYes,2,comedyoferrors,1592\ndiamond,2,comedyoferrors,1592\ntwenty,2,comedyoferrors,1592\nHopeless,2,comedyoferrors,1592\nknew,2,comedyoferrors,1592\ncontent,2,comedyoferrors,1592\ntry,2,comedyoferrors,1592\nharm,2,comedyoferrors,1592\nsimple,2,comedyoferrors,1592\nHaply,2,comedyoferrors,1592\nspeaks,2,comedyoferrors,1592\nMost,2,comedyoferrors,1592\ninvited,2,comedyoferrors,1592\namount,2,comedyoferrors,1592\ndark,2,comedyoferrors,1592\nsenseless,2,comedyoferrors,1592\nLest,2,comedyoferrors,1592\nweight,2,comedyoferrors,1592\nland,2,comedyoferrors,1592\ndrawn,2,comedyoferrors,1592\ndry,2,comedyoferrors,1592\nforty,2,comedyoferrors,1592\ncertain,2,comedyoferrors,1592\nflout,2,comedyoferrors,1592\npluck,2,comedyoferrors,1592\nTeach,2,comedyoferrors,1592\narm,2,comedyoferrors,1592\nbrothers,2,comedyoferrors,1592\nshalt,2,comedyoferrors,1592\nask,2,comedyoferrors,1592\ncross,2,comedyoferrors,1592\npain,2,comedyoferrors,1592\nstranger,2,comedyoferrors,1592\ndelight,2,comedyoferrors,1592\nkind,2,comedyoferrors,1592\nspit,2,comedyoferrors,1592\noutrage,2,comedyoferrors,1592\ncommand,2,comedyoferrors,1592\njealousy,2,comedyoferrors,1592\nforsworn,2,comedyoferrors,1592\nself's,2,comedyoferrors,1592\nattach,2,comedyoferrors,1592\nkill,2,comedyoferrors,1592\nlittle,2,comedyoferrors,1592\nearth's,2,comedyoferrors,1592\npack,2,comedyoferrors,1592\nbespeak,2,comedyoferrors,1592\npower,2,comedyoferrors,1592\nduke's,2,comedyoferrors,1592\nfood,2,comedyoferrors,1592\norder,2,comedyoferrors,1592\nships,2,comedyoferrors,1592\nerror,2,comedyoferrors,1592\nlock,2,comedyoferrors,1592\nwomen,2,comedyoferrors,1592\nlady,2,comedyoferrors,1592\nThan,3,comedyoferrors,1592\nright,3,comedyoferrors,1592\ntouch,3,comedyoferrors,1592\nswords,3,comedyoferrors,1592\nSatan,3,comedyoferrors,1592\nsuffer,3,comedyoferrors,1592\nbroke,3,comedyoferrors,1592\nnew,3,comedyoferrors,1592\nhere's,3,comedyoferrors,1592\nextremity,3,comedyoferrors,1592\ndarest,3,comedyoferrors,1592\nwitch,3,comedyoferrors,1592\nreputation,3,comedyoferrors,1592\nfat,3,comedyoferrors,1592\noften,3,comedyoferrors,1592\ntwin,3,comedyoferrors,1592\nnay,3,comedyoferrors,1592\nmend,3,comedyoferrors,1592\nindeed,3,comedyoferrors,1592\n'rested,3,comedyoferrors,1592\nwater,3,comedyoferrors,1592\nhell,3,comedyoferrors,1592\nunknown,3,comedyoferrors,1592\nPhoenix,3,comedyoferrors,1592\nbeast,3,comedyoferrors,1592\nalmost,3,comedyoferrors,1592\nfinger,3,comedyoferrors,1592\nspake,3,comedyoferrors,1592\nEither,3,comedyoferrors,1592\nLuce,3,comedyoferrors,1592\nprisoner,3,comedyoferrors,1592\nyonder,3,comedyoferrors,1592\nFrom,3,comedyoferrors,1592\nborne,3,comedyoferrors,1592\nunhappy,3,comedyoferrors,1592\nAfter,3,comedyoferrors,1592\nsatisfaction,3,comedyoferrors,1592\nknave,3,comedyoferrors,1592\nplead,3,comedyoferrors,1592\ngrows,3,comedyoferrors,1592\nfoolish,3,comedyoferrors,1592\ngracious,3,comedyoferrors,1592\nAll,3,comedyoferrors,1592\nskin,3,comedyoferrors,1592\npresently,3,comedyoferrors,1592\ndream,3,comedyoferrors,1592\nknows,3,comedyoferrors,1592\nstate,3,comedyoferrors,1592\nbecause,3,comedyoferrors,1592\nwitches,3,comedyoferrors,1592\nblow,3,comedyoferrors,1592\nlabour,3,comedyoferrors,1592\nBeing,3,comedyoferrors,1592\nmistress',3,comedyoferrors,1592\no'clock,3,comedyoferrors,1592\nones,3,comedyoferrors,1592\nsit,3,comedyoferrors,1592\npossession,3,comedyoferrors,1592\nstands,3,comedyoferrors,1592\nsin,3,comedyoferrors,1592\nGet,3,comedyoferrors,1592\nenough,3,comedyoferrors,1592\nnear,3,comedyoferrors,1592\nneck,3,comedyoferrors,1592\noff,3,comedyoferrors,1592\nwoes,3,comedyoferrors,1592\nheard,3,comedyoferrors,1592\nclock,3,comedyoferrors,1592\nSure,3,comedyoferrors,1592\nacquainted,3,comedyoferrors,1592\ndoubt,3,comedyoferrors,1592\nourselves,3,comedyoferrors,1592\nminion,3,comedyoferrors,1592\nvile,3,comedyoferrors,1592\nserve,3,comedyoferrors,1592\nOur,3,comedyoferrors,1592\nkitchen,3,comedyoferrors,1592\ncoming,3,comedyoferrors,1592\nOfficers,3,comedyoferrors,1592\nShall,3,comedyoferrors,1592\nBalthazar,3,comedyoferrors,1592\nloose,3,comedyoferrors,1592\nfaced,3,comedyoferrors,1592\nwhat's,3,comedyoferrors,1592\nservice,3,comedyoferrors,1592\nswore,3,comedyoferrors,1592\nsword,3,comedyoferrors,1592\nothers,3,comedyoferrors,1592\nflesh,3,comedyoferrors,1592\nevil,3,comedyoferrors,1592\nsconce,3,comedyoferrors,1592\nseems,3,comedyoferrors,1592\nheaven,3,comedyoferrors,1592\nfall,3,comedyoferrors,1592\nknow'st,3,comedyoferrors,1592\nwander,3,comedyoferrors,1592\ngrant,3,comedyoferrors,1592\nThough,3,comedyoferrors,1592\nfortune,3,comedyoferrors,1592\nbeating,3,comedyoferrors,1592\noffice,3,comedyoferrors,1592\nmatter,3,comedyoferrors,1592\nwits,3,comedyoferrors,1592\nhost,3,comedyoferrors,1592\nherself,3,comedyoferrors,1592\nFaith,3,comedyoferrors,1592\npublic,3,comedyoferrors,1592\nmelancholy,3,comedyoferrors,1592\nHold,3,comedyoferrors,1592\ngentleman,3,comedyoferrors,1592\nHome,3,comedyoferrors,1592\nIII,3,comedyoferrors,1592\nAh,3,comedyoferrors,1592\nAm,3,comedyoferrors,1592\nlay,3,comedyoferrors,1592\nscarce,3,comedyoferrors,1592\nkept,3,comedyoferrors,1592\ndenied,3,comedyoferrors,1592\nspoon,3,comedyoferrors,1592\nhonest,3,comedyoferrors,1592\nstrong,3,comedyoferrors,1592\nconjure,3,comedyoferrors,1592\nprayers,3,comedyoferrors,1592\nalone,3,comedyoferrors,1592\nprove,3,comedyoferrors,1592\nbecame,3,comedyoferrors,1592\neither,3,comedyoferrors,1592\npresence,3,comedyoferrors,1592\nsorry,3,comedyoferrors,1592\nthereof,3,comedyoferrors,1592\nBeating,3,comedyoferrors,1592\nchildren,3,comedyoferrors,1592\ndote,3,comedyoferrors,1592\ncry,3,comedyoferrors,1592\nperson,3,comedyoferrors,1592\npeople,3,comedyoferrors,1592\nheels,3,comedyoferrors,1592\nSpeak,3,comedyoferrors,1592\njealous,3,comedyoferrors,1592\nbail,3,comedyoferrors,1592\nsouls,3,comedyoferrors,1592\nself,3,comedyoferrors,1592\n'God,3,comedyoferrors,1592\npost,3,comedyoferrors,1592\nseason,3,comedyoferrors,1592\nBoth,3,comedyoferrors,1592\nlaws,3,comedyoferrors,1592\ndeep,3,comedyoferrors,1592\nservants,3,comedyoferrors,1592\nfowls,3,comedyoferrors,1592\near,3,comedyoferrors,1592\nspite,3,comedyoferrors,1592\nay,3,comedyoferrors,1592\npossess'd,3,comedyoferrors,1592\nBefore,3,comedyoferrors,1592\nconjurer,3,comedyoferrors,1592\nfashion,3,comedyoferrors,1592\nliege,3,comedyoferrors,1592\ninn,3,comedyoferrors,1592\nhadst,3,comedyoferrors,1592\nbegg'd,3,comedyoferrors,1592\nMay,3,comedyoferrors,1592\nbreaking,3,comedyoferrors,1592\nnature,3,comedyoferrors,1592\nJustice,3,comedyoferrors,1592\nBecause,3,comedyoferrors,1592\nhot,3,comedyoferrors,1592\ndesk,3,comedyoferrors,1592\ndiscourse,3,comedyoferrors,1592\nThy,3,comedyoferrors,1592\nlaid,3,comedyoferrors,1592\nattend,3,comedyoferrors,1592\nhalf,3,comedyoferrors,1592\nmessenger,3,comedyoferrors,1592\nreverend,3,comedyoferrors,1592\nmighty,3,comedyoferrors,1592\nexcuse,3,comedyoferrors,1592\ncourse,3,comedyoferrors,1592\nopen,3,comedyoferrors,1592\nbehold,3,comedyoferrors,1592\ntempt,3,comedyoferrors,1592\nreturn'd,3,comedyoferrors,1592\nwenches,3,comedyoferrors,1592\nforswore,3,comedyoferrors,1592\nowes,3,comedyoferrors,1592\nshop,3,comedyoferrors,1592\nAEMILIA,3,comedyoferrors,1592\nrough,3,comedyoferrors,1592\nfiend,3,comedyoferrors,1592\nbondman,3,comedyoferrors,1592\nwouldst,3,comedyoferrors,1592\nsharp,3,comedyoferrors,1592\nknock,4,comedyoferrors,1592\nbought,4,comedyoferrors,1592\no'er,4,comedyoferrors,1592\npity,4,comedyoferrors,1592\nAdam,4,comedyoferrors,1592\nfar,4,comedyoferrors,1592\nbusiness,4,comedyoferrors,1592\nAlas,4,comedyoferrors,1592\nFie,4,comedyoferrors,1592\nran,4,comedyoferrors,1592\nhaste,4,comedyoferrors,1592\nshoulders,4,comedyoferrors,1592\nrather,4,comedyoferrors,1592\nwonder,4,comedyoferrors,1592\noffer,4,comedyoferrors,1592\nunderstand,4,comedyoferrors,1592\nrun,4,comedyoferrors,1592\ntruth,4,comedyoferrors,1592\ntrust,4,comedyoferrors,1592\nUpon,4,comedyoferrors,1592\nspurn,4,comedyoferrors,1592\nsad,4,comedyoferrors,1592\nmany,4,comedyoferrors,1592\nGive,4,comedyoferrors,1592\nfull,4,comedyoferrors,1592\nmaking,4,comedyoferrors,1592\nNow,4,comedyoferrors,1592\nsoft,4,comedyoferrors,1592\nfish,4,comedyoferrors,1592\nsomething,4,comedyoferrors,1592\nonce,4,comedyoferrors,1592\nfire,4,comedyoferrors,1592\nwrongs,4,comedyoferrors,1592\nthing,4,comedyoferrors,1592\nscorn,4,comedyoferrors,1592\ndeliver,4,comedyoferrors,1592\nrecover,4,comedyoferrors,1592\nWas,4,comedyoferrors,1592\nServant,4,comedyoferrors,1592\nstuff,4,comedyoferrors,1592\nreceive,4,comedyoferrors,1592\nfound,4,comedyoferrors,1592\nreceived,4,comedyoferrors,1592\nturn,4,comedyoferrors,1592\nborn,4,comedyoferrors,1592\ncommon,4,comedyoferrors,1592\nthence,4,comedyoferrors,1592\ndull,4,comedyoferrors,1592\nbeaten,4,comedyoferrors,1592\nhundred,4,comedyoferrors,1592\nporter,4,comedyoferrors,1592\nOne,4,comedyoferrors,1592\nAEmilia,4,comedyoferrors,1592\nrest,4,comedyoferrors,1592\never,4,comedyoferrors,1592\ngazing,4,comedyoferrors,1592\nwealth,4,comedyoferrors,1592\nband,4,comedyoferrors,1592\ntalk,4,comedyoferrors,1592\nneither,4,comedyoferrors,1592\nwilt,4,comedyoferrors,1592\nbay,4,comedyoferrors,1592\nthank,4,comedyoferrors,1592\ncreature,4,comedyoferrors,1592\nhip,4,comedyoferrors,1592\nchanged,4,comedyoferrors,1592\nmeans,4,comedyoferrors,1592\nlives,4,comedyoferrors,1592\ngoods,4,comedyoferrors,1592\nHad,4,comedyoferrors,1592\nquiet,4,comedyoferrors,1592\nblood,4,comedyoferrors,1592\nsound,4,comedyoferrors,1592\nNeither,4,comedyoferrors,1592\nSyracusa,4,comedyoferrors,1592\nlonger,4,comedyoferrors,1592\nMistress,4,comedyoferrors,1592\nsleep,4,comedyoferrors,1592\nUnless,4,comedyoferrors,1592\nSignior,4,comedyoferrors,1592\nBesides,4,comedyoferrors,1592\nhoused,4,comedyoferrors,1592\nwench,4,comedyoferrors,1592\nfeast,4,comedyoferrors,1592\nmarriage,4,comedyoferrors,1592\nearth,4,comedyoferrors,1592\ncredit,4,comedyoferrors,1592\nlate,4,comedyoferrors,1592\nbeauty,4,comedyoferrors,1592\nfather,4,comedyoferrors,1592\nlest,4,comedyoferrors,1592\nbesides,4,comedyoferrors,1592\nhard,4,comedyoferrors,1592\ndue,4,comedyoferrors,1592\nplain,4,comedyoferrors,1592\nsergeant,4,comedyoferrors,1592\ncity,4,comedyoferrors,1592\nburden,4,comedyoferrors,1592\nshow,4,comedyoferrors,1592\ntold,5,comedyoferrors,1592\nAgainst,5,comedyoferrors,1592\nWill,5,comedyoferrors,1592\nevery,5,comedyoferrors,1592\nTell,5,comedyoferrors,1592\nwithal,5,comedyoferrors,1592\nSir,5,comedyoferrors,1592\nrope's,5,comedyoferrors,1592\nsons,5,comedyoferrors,1592\npurse,5,comedyoferrors,1592\nhead,5,comedyoferrors,1592\nwarrant,5,comedyoferrors,1592\nbody,5,comedyoferrors,1592\nbetter,5,comedyoferrors,1592\nthine,5,comedyoferrors,1592\n'My,5,comedyoferrors,1592\nfive,5,comedyoferrors,1592\nsea,5,comedyoferrors,1592\ncause,5,comedyoferrors,1592\nThese,5,comedyoferrors,1592\nfellow,5,comedyoferrors,1592\nfault,5,comedyoferrors,1592\nWhilst,5,comedyoferrors,1592\nAdriana,5,comedyoferrors,1592\nsun,5,comedyoferrors,1592\nowe,5,comedyoferrors,1592\nfeel,5,comedyoferrors,1592\nLuciana,5,comedyoferrors,1592\nwent,5,comedyoferrors,1592\nTill,5,comedyoferrors,1592\nThat's,5,comedyoferrors,1592\nhumour,5,comedyoferrors,1592\neven,5,comedyoferrors,1592\nThere's,5,comedyoferrors,1592\nne'er,5,comedyoferrors,1592\nbark,5,comedyoferrors,1592\ndepart,5,comedyoferrors,1592\npatient,5,comedyoferrors,1592\naboard,5,comedyoferrors,1592\nHis,5,comedyoferrors,1592\nholy,5,comedyoferrors,1592\nGaoler,5,comedyoferrors,1592\nIV,5,comedyoferrors,1592\narrest,5,comedyoferrors,1592\nsport,5,comedyoferrors,1592\nobey,5,comedyoferrors,1592\nwhose,5,comedyoferrors,1592\nburn,5,comedyoferrors,1592\nhours,5,comedyoferrors,1592\nbald,5,comedyoferrors,1592\ncold,5,comedyoferrors,1592\ngate,5,comedyoferrors,1592\nGod's,5,comedyoferrors,1592\npromised,5,comedyoferrors,1592\nsafe,5,comedyoferrors,1592\ndebt,5,comedyoferrors,1592\nstraight,5,comedyoferrors,1592\nhands,5,comedyoferrors,1592\nthat's,5,comedyoferrors,1592\nlast,5,comedyoferrors,1592\nill,5,comedyoferrors,1592\nurging,5,comedyoferrors,1592\ndevil,5,comedyoferrors,1592\nPorpentine,5,comedyoferrors,1592\ncrow,5,comedyoferrors,1592\nDid,5,comedyoferrors,1592\npale,5,comedyoferrors,1592\ncall'd,5,comedyoferrors,1592\nAngelo,5,comedyoferrors,1592\nfool,5,comedyoferrors,1592\ndie,5,comedyoferrors,1592\nAre,6,comedyoferrors,1592\nHath,6,comedyoferrors,1592\ndrop,6,comedyoferrors,1592\ndined,6,comedyoferrors,1592\nthought,6,comedyoferrors,1592\ninto,6,comedyoferrors,1592\nsoul,6,comedyoferrors,1592\nstays,6,comedyoferrors,1592\nworld,6,comedyoferrors,1592\ncare,6,comedyoferrors,1592\nere,6,comedyoferrors,1592\ndraw,6,comedyoferrors,1592\nyourself,6,comedyoferrors,1592\nyears,6,comedyoferrors,1592\nwords,6,comedyoferrors,1592\nmind,6,comedyoferrors,1592\nthere's,6,comedyoferrors,1592\ncheer,6,comedyoferrors,1592\nanother,6,comedyoferrors,1592\narrested,6,comedyoferrors,1592\nwalk,6,comedyoferrors,1592\nstand,6,comedyoferrors,1592\nson,6,comedyoferrors,1592\nsave,6,comedyoferrors,1592\nlooks,6,comedyoferrors,1592\nway,6,comedyoferrors,1592\nworse,6,comedyoferrors,1592\nrage,6,comedyoferrors,1592\nfear,6,comedyoferrors,1592\nclaim,6,comedyoferrors,1592\nplease,6,comedyoferrors,1592\nthree,6,comedyoferrors,1592\ncompany,6,comedyoferrors,1592\nfast,6,comedyoferrors,1592\nAt,6,comedyoferrors,1592\npatience,6,comedyoferrors,1592\nII,6,comedyoferrors,1592\npate,6,comedyoferrors,1592\nCorinth,6,comedyoferrors,1592\nback,6,comedyoferrors,1592\nhither,6,comedyoferrors,1592\nbuy,6,comedyoferrors,1592\ntongue,6,comedyoferrors,1592\nmerchant,6,comedyoferrors,1592\nGod,6,comedyoferrors,1592\nfirst,6,comedyoferrors,1592\nlord,6,comedyoferrors,1592\nbreath,6,comedyoferrors,1592\nbeat,6,comedyoferrors,1592\ndear,6,comedyoferrors,1592\nabbess,6,comedyoferrors,1592\nstreet,6,comedyoferrors,1592\ndone,6,comedyoferrors,1592\nlive,6,comedyoferrors,1592\nYet,6,comedyoferrors,1592\nthose,6,comedyoferrors,1592\nlose,6,comedyoferrors,1592\nlock'd,6,comedyoferrors,1592\nbrought,6,comedyoferrors,1592\nliberty,6,comedyoferrors,1592\nshut,6,comedyoferrors,1592\npresent,6,comedyoferrors,1592\nmight,6,comedyoferrors,1592\nshame,6,comedyoferrors,1592\nmeet,7,comedyoferrors,1592\nAEgeon,7,comedyoferrors,1592\nrope,7,comedyoferrors,1592\nSyracusian,7,comedyoferrors,1592\ngentle,7,comedyoferrors,1592\nTherefore,7,comedyoferrors,1592\ncase,7,comedyoferrors,1592\nCentaur,7,comedyoferrors,1592\nEpidamnum,7,comedyoferrors,1592\nNor,7,comedyoferrors,1592\nsame,7,comedyoferrors,1592\nwho,7,comedyoferrors,1592\nstill,7,comedyoferrors,1592\nsuit,7,comedyoferrors,1592\n'Tis,7,comedyoferrors,1592\nabout,7,comedyoferrors,1592\nHere,7,comedyoferrors,1592\nEven,7,comedyoferrors,1592\nBALTHAZAR,7,comedyoferrors,1592\nfind,7,comedyoferrors,1592\nwherefore,7,comedyoferrors,1592\ntherefore,7,comedyoferrors,1592\nbind,7,comedyoferrors,1592\nLet,7,comedyoferrors,1592\nhold,7,comedyoferrors,1592\nhie,7,comedyoferrors,1592\nIs,7,comedyoferrors,1592\neyes,7,comedyoferrors,1592\nseek,7,comedyoferrors,1592\ndown,7,comedyoferrors,1592\nreturn,7,comedyoferrors,1592\nsend,7,comedyoferrors,1592\ntogether,7,comedyoferrors,1592\nmet,7,comedyoferrors,1592\ntrue,7,comedyoferrors,1592\nlost,7,comedyoferrors,1592\npart,7,comedyoferrors,1592\nkeep,7,comedyoferrors,1592\nFirst,7,comedyoferrors,1592\nship,7,comedyoferrors,1592\nPINCH,8,comedyoferrors,1592\nhelp,8,comedyoferrors,1592\ncharge,8,comedyoferrors,1592\nSome,8,comedyoferrors,1592\njest,8,comedyoferrors,1592\nNot,8,comedyoferrors,1592\nsake,8,comedyoferrors,1592\nwit,8,comedyoferrors,1592\nsum,8,comedyoferrors,1592\nbring,8,comedyoferrors,1592\nwind,8,comedyoferrors,1592\nTime,8,comedyoferrors,1592\nold,8,comedyoferrors,1592\nfriend,8,comedyoferrors,1592\nmeat,8,comedyoferrors,1592\nDo,8,comedyoferrors,1592\nhe's,8,comedyoferrors,1592\nhope,8,comedyoferrors,1592\nthousand,8,comedyoferrors,1592\ngreat,8,comedyoferrors,1592\nBe,8,comedyoferrors,1592\nblows,8,comedyoferrors,1592\nstay,8,comedyoferrors,1592\nenter,8,comedyoferrors,1592\nbid,8,comedyoferrors,1592\nnight,8,comedyoferrors,1592\nuse,8,comedyoferrors,1592\nWe,8,comedyoferrors,1592\nLUCE,8,comedyoferrors,1592\nput,8,comedyoferrors,1592\nleave,8,comedyoferrors,1592\nlook,8,comedyoferrors,1592\nstrange,8,comedyoferrors,1592\ngrace,8,comedyoferrors,1592\nwitness,8,comedyoferrors,1592\nhimself,8,comedyoferrors,1592\nass,8,comedyoferrors,1592\nme,264,comedyoferrors,1592\nanswer,9,comedyoferrors,1592\ntook,9,comedyoferrors,1592\ndine,9,comedyoferrors,1592\nsoon,9,comedyoferrors,1592\nThey,9,comedyoferrors,1592\ndeath,9,comedyoferrors,1592\nSay,9,comedyoferrors,1592\nwithin,9,comedyoferrors,1592\nWith,9,comedyoferrors,1592\nhair,9,comedyoferrors,1592\nelse,9,comedyoferrors,1592\npay,9,comedyoferrors,1592\nears,9,comedyoferrors,1592\nwhom,9,comedyoferrors,1592\nSo,9,comedyoferrors,1592\ndost,9,comedyoferrors,1592\nabbey,9,comedyoferrors,1592\n'tis,9,comedyoferrors,1592\nMarry,9,comedyoferrors,1592\ncannot,9,comedyoferrors,1592\nwithout,9,comedyoferrors,1592\nthough,9,comedyoferrors,1592\nwoman,9,comedyoferrors,1592\nvery,10,comedyoferrors,1592\ndoors,10,comedyoferrors,1592\ndidst,10,comedyoferrors,1592\nsure,10,comedyoferrors,1592\nmart,10,comedyoferrors,1592\nslave,10,comedyoferrors,1592\nquoth,10,comedyoferrors,1592\nbefore,10,comedyoferrors,1592\nlight,10,comedyoferrors,1592\nagainst,10,comedyoferrors,1592\nwhy,10,comedyoferrors,1592\nring,10,comedyoferrors,1592\nheart,10,comedyoferrors,1592\nWell,10,comedyoferrors,1592\nducats,10,comedyoferrors,1592\ngoldsmith,10,comedyoferrors,1592\nfalse,10,comedyoferrors,1592\nword,10,comedyoferrors,1592\nofficer,10,comedyoferrors,1592\nreason,10,comedyoferrors,1592\nunto,10,comedyoferrors,1592\nbed,10,comedyoferrors,1592\nWhich,10,comedyoferrors,1592\ncan,10,comedyoferrors,1592\nmen,10,comedyoferrors,1592\nthyself,10,comedyoferrors,1592\nplace,10,comedyoferrors,1592\nwelcome,10,comedyoferrors,1592\ndeny,10,comedyoferrors,1592\nforth,10,comedyoferrors,1592\nHave,11,comedyoferrors,1592\nYour,11,comedyoferrors,1592\nmarks,11,comedyoferrors,1592\neye,11,comedyoferrors,1592\nACT,11,comedyoferrors,1592\nmyself,11,comedyoferrors,1592\nbrother,11,comedyoferrors,1592\nThen,11,comedyoferrors,1592\nnothing,11,comedyoferrors,1592\nmerry,11,comedyoferrors,1592\nwrong,11,comedyoferrors,1592\nThere,11,comedyoferrors,1592\nhence,11,comedyoferrors,1592\nmean,11,comedyoferrors,1592\nsweet,11,comedyoferrors,1592\nOr,11,comedyoferrors,1592\nbeen,11,comedyoferrors,1592\npoor,11,comedyoferrors,1592\nleft,11,comedyoferrors,1592\nmost,11,comedyoferrors,1592\nspeak,11,comedyoferrors,1592\nhast,11,comedyoferrors,1592\nCOMEDY,12,comedyoferrors,1592\nwhich,12,comedyoferrors,1592\nERRORS,12,comedyoferrors,1592\nShe,12,comedyoferrors,1592\nTHE,12,comedyoferrors,1592\nnor,12,comedyoferrors,1592\ntown,12,comedyoferrors,1592\ncall,12,comedyoferrors,1592\nWho,12,comedyoferrors,1592\nget,12,comedyoferrors,1592\nboth,12,comedyoferrors,1592\nGood,12,comedyoferrors,1592\ngave,12,comedyoferrors,1592\ngone,12,comedyoferrors,1592\ndoor,12,comedyoferrors,1592\nMaster,12,comedyoferrors,1592\nup,12,comedyoferrors,1592\nSCENE,12,comedyoferrors,1592\nmade,13,comedyoferrors,1592\nwhere,13,comedyoferrors,1592\nnone,13,comedyoferrors,1592\nsaw,13,comedyoferrors,1592\ncomes,13,comedyoferrors,1592\ncould,13,comedyoferrors,1592\nbreak,13,comedyoferrors,1592\naway,13,comedyoferrors,1592\nown,13,comedyoferrors,1592\nface,13,comedyoferrors,1592\nduke,13,comedyoferrors,1592\nfair,13,comedyoferrors,1592\nhour,13,comedyoferrors,1592\nOf,13,comedyoferrors,1592\nthus,13,comedyoferrors,1592\nyet,13,comedyoferrors,1592\nhand,13,comedyoferrors,1592\nNay,14,comedyoferrors,1592\nmust,14,comedyoferrors,1592\nhear,14,comedyoferrors,1592\nfetch,14,comedyoferrors,1592\nthan,14,comedyoferrors,1592\nAs,14,comedyoferrors,1592\nAy,14,comedyoferrors,1592\nsince,14,comedyoferrors,1592\nExeunt,14,comedyoferrors,1592\nbeing,14,comedyoferrors,1592\nWhere,14,comedyoferrors,1592\nWhen,14,comedyoferrors,1592\ngive,14,comedyoferrors,1592\nvillain,15,comedyoferrors,1592\ncame,15,comedyoferrors,1592\nbound,15,comedyoferrors,1592\nname,15,comedyoferrors,1592\ndoth,15,comedyoferrors,1592\nExit,15,comedyoferrors,1592\nHow,15,comedyoferrors,1592\nagain,16,comedyoferrors,1592\nThis,16,comedyoferrors,1592\nAEMELIA,16,comedyoferrors,1592\nOfficer,16,comedyoferrors,1592\nNo,16,comedyoferrors,1592\nGo,16,comedyoferrors,1592\nIn,16,comedyoferrors,1592\nIt,16,comedyoferrors,1592\ngood,16,comedyoferrors,1592\nlong,16,comedyoferrors,1592\nCourtezan,16,comedyoferrors,1592\ntwo,16,comedyoferrors,1592\nshould,16,comedyoferrors,1592\nmuch,17,comedyoferrors,1592\npray,17,comedyoferrors,1592\nend,17,comedyoferrors,1592\nlife,18,comedyoferrors,1592\nCome,18,comedyoferrors,1592\nsuch,18,comedyoferrors,1592\ntake,18,comedyoferrors,1592\nsent,18,comedyoferrors,1592\nany,18,comedyoferrors,1592\nSecond,18,comedyoferrors,1592\nlove,18,comedyoferrors,1592\nother,18,comedyoferrors,1592\nThou,19,comedyoferrors,1592\nnever,19,comedyoferrors,1592\ngold,19,comedyoferrors,1592\nbear,19,comedyoferrors,1592\nAEGEON,20,comedyoferrors,1592\ntill,20,comedyoferrors,1592\nBy,20,comedyoferrors,1592\nHe,20,comedyoferrors,1592\nmay,20,comedyoferrors,1592\nmistress,21,comedyoferrors,1592\nwell,21,comedyoferrors,1592\nYou,21,comedyoferrors,1592\n',22,comedyoferrors,1592\nlike,22,comedyoferrors,1592\nsay,22,comedyoferrors,1592\nthey,22,comedyoferrors,1592\ntell,22,comedyoferrors,1592\nWithin,22,comedyoferrors,1592\nwhen,22,comedyoferrors,1592\nhow,22,comedyoferrors,1592\nart,22,comedyoferrors,1592\nupon,23,comedyoferrors,1592\nsome,23,comedyoferrors,1592\nmine,23,comedyoferrors,1592\nthink,23,comedyoferrors,1592\nMerchant,23,comedyoferrors,1592\nsister,23,comedyoferrors,1592\nshall,23,comedyoferrors,1592\nWhy,24,comedyoferrors,1592\nout,24,comedyoferrors,1592\nthese,24,comedyoferrors,1592\ndinner,24,comedyoferrors,1592\nAntipholus,24,comedyoferrors,1592\ntoo,24,comedyoferrors,1592\nmake,25,comedyoferrors,1592\nhouse,25,comedyoferrors,1592\nmoney,25,comedyoferrors,1592\nO,26,comedyoferrors,1592\nDUKE,26,comedyoferrors,1592\ntime,26,comedyoferrors,1592\nthere,26,comedyoferrors,1592\nSOLINUS,26,comedyoferrors,1592\nlet,26,comedyoferrors,1592\ntheir,26,comedyoferrors,1592\nyou,282,comedyoferrors,1592\nFor,27,comedyoferrors,1592\nmad,27,comedyoferrors,1592\nhusband,27,comedyoferrors,1592\nour,28,comedyoferrors,1592\nSyracuse,28,comedyoferrors,1592\nif,28,comedyoferrors,1592\nhath,28,comedyoferrors,1592\none,29,comedyoferrors,1592\nday,29,comedyoferrors,1592\nEphesus,30,comedyoferrors,1592\nthen,30,comedyoferrors,1592\ncome,30,comedyoferrors,1592\ngo,30,comedyoferrors,1592\nMy,31,comedyoferrors,1592\nIf,31,comedyoferrors,1592\nmore,31,comedyoferrors,1592\nEnter,32,comedyoferrors,1592\nI'll,33,comedyoferrors,1592\nsee,33,comedyoferrors,1592\nwere,33,comedyoferrors,1592\nan,33,comedyoferrors,1592\nthem,34,comedyoferrors,1592\nmaster,34,comedyoferrors,1592\nhad,35,comedyoferrors,1592\nANGELO,36,comedyoferrors,1592\ndo,36,comedyoferrors,1592\nwife,37,comedyoferrors,1592\nWhat,37,comedyoferrors,1592\nwe,38,comedyoferrors,1592\nwas,39,comedyoferrors,1592\nhome,39,comedyoferrors,1592\nus,39,comedyoferrors,1592\nare,39,comedyoferrors,1592\nshe,40,comedyoferrors,1592\nor,40,comedyoferrors,1592\nnow,41,comedyoferrors,1592\nas,41,comedyoferrors,1592\nA,42,comedyoferrors,1592\nno,42,comedyoferrors,1592\non,42,comedyoferrors,1592\nknow,42,comedyoferrors,1592\nThe,42,comedyoferrors,1592\nDromio,42,comedyoferrors,1592\nhere,44,comedyoferrors,1592\nTo,44,comedyoferrors,1592\nwould,44,comedyoferrors,1592\nwhat,45,comedyoferrors,1592\nall,45,comedyoferrors,1592\nThat,46,comedyoferrors,1592\nchain,46,comedyoferrors,1592\nBut,49,comedyoferrors,1592\ndid,50,comedyoferrors,1592\nand,306,comedyoferrors,1592\nLUCIANA,51,comedyoferrors,1592\nam,54,comedyoferrors,1592\nthy,56,comedyoferrors,1592\nman,57,comedyoferrors,1592\nto,314,comedyoferrors,1592\nthee,64,comedyoferrors,1592\nby,64,comedyoferrors,1592\nso,64,comedyoferrors,1592\nfrom,65,comedyoferrors,1592\nbut,65,comedyoferrors,1592\nher,70,comedyoferrors,1592\nat,73,comedyoferrors,1592\nbe,75,comedyoferrors,1592\nhave,77,comedyoferrors,1592\nADRIANA,85,comedyoferrors,1592\nwill,85,comedyoferrors,1592\nhis,97,comedyoferrors,1592\nOF,355,comedyoferrors,1592\nthis,101,comedyoferrors,1592\nsir,104,comedyoferrors,1592\nyour,105,comedyoferrors,1592\nhim,108,comedyoferrors,1592\nthou,115,comedyoferrors,1592\nwith,127,comedyoferrors,1592\nhe,130,comedyoferrors,1592\nis,134,comedyoferrors,1592\nEPHESUS,139,comedyoferrors,1592\nfor,142,comedyoferrors,1592\nit,142,comedyoferrors,1592\nthe,399,comedyoferrors,1592\nAnd,156,comedyoferrors,1592\nnot,159,comedyoferrors,1592\nthat,171,comedyoferrors,1592\nDROMIO,179,comedyoferrors,1592\nANTIPHOLUS,195,comedyoferrors,1592\nSYRACUSE,204,comedyoferrors,1592\nin,206,comedyoferrors,1592\na,211,comedyoferrors,1592\nI,469,comedyoferrors,1592\nmy,229,comedyoferrors,1592\nof,251,comedyoferrors,1592\nmy,512,kingrichardiii,1592\ndimm'd,1,kingrichardiii,1592\ncheque'd,1,kingrichardiii,1592\nattended,1,kingrichardiii,1592\ndrink'st,1,kingrichardiii,1592\nbefal,1,kingrichardiii,1592\nNed,1,kingrichardiii,1592\nUnmanner'd,1,kingrichardiii,1592\nindignation,1,kingrichardiii,1592\naffords,1,kingrichardiii,1592\nsilken,1,kingrichardiii,1592\nkingdom's,1,kingrichardiii,1592\nsurmise,1,kingrichardiii,1592\nTremble,1,kingrichardiii,1592\ncripple,1,kingrichardiii,1592\ndeputy,1,kingrichardiii,1592\nscathe,1,kingrichardiii,1592\njet,1,kingrichardiii,1592\nbrawl,1,kingrichardiii,1592\nErroneous,1,kingrichardiii,1592\ntroubled,1,kingrichardiii,1592\ngalled,1,kingrichardiii,1592\nvillany,1,kingrichardiii,1592\ntroubler,1,kingrichardiii,1592\ntroubles,1,kingrichardiii,1592\nviewing,1,kingrichardiii,1592\ndirest,1,kingrichardiii,1592\neffeminate,1,kingrichardiii,1592\nignorance,1,kingrichardiii,1592\nblemish'd,1,kingrichardiii,1592\nparted,1,kingrichardiii,1592\nwomanish,1,kingrichardiii,1592\nMelting,1,kingrichardiii,1592\nStands,1,kingrichardiii,1592\nsmiled,1,kingrichardiii,1592\nProve,1,kingrichardiii,1592\ntermed,1,kingrichardiii,1592\nbonny,1,kingrichardiii,1592\nshrouded,1,kingrichardiii,1592\nc,1,kingrichardiii,1592\nmisplaced,1,kingrichardiii,1592\nsmiles,1,kingrichardiii,1592\ntaking,1,kingrichardiii,1592\nsafeguard,1,kingrichardiii,1592\nStir,1,kingrichardiii,1592\nadvice,1,kingrichardiii,1592\nplainest,1,kingrichardiii,1592\nextremity,1,kingrichardiii,1592\nValiant,1,kingrichardiii,1592\ninfected,1,kingrichardiii,1592\nafar,1,kingrichardiii,1592\nmarrying,1,kingrichardiii,1592\nlamely,1,kingrichardiii,1592\nreputation,1,kingrichardiii,1592\nretail'd,1,kingrichardiii,1592\nDuchess,1,kingrichardiii,1592\nderived,1,kingrichardiii,1592\nlengthens,1,kingrichardiii,1592\nfreezeth,1,kingrichardiii,1592\nfools',1,kingrichardiii,1592\nCourageous,1,kingrichardiii,1592\nverge,1,kingrichardiii,1592\nPity,1,kingrichardiii,1592\nComfort,1,kingrichardiii,1592\ntruer,1,kingrichardiii,1592\ndream'd,1,kingrichardiii,1592\nspeech,1,kingrichardiii,1592\ntremble,1,kingrichardiii,1592\nGEORGE,1,kingrichardiii,1592\nwrit,1,kingrichardiii,1592\nraw,1,kingrichardiii,1592\npersons',1,kingrichardiii,1592\npossible,1,kingrichardiii,1592\nwish't,1,kingrichardiii,1592\nruthless,1,kingrichardiii,1592\nhelms,1,kingrichardiii,1592\ntreasure,1,kingrichardiii,1592\nhinder,1,kingrichardiii,1592\nbrats,1,kingrichardiii,1592\nTear,1,kingrichardiii,1592\nperturbations,1,kingrichardiii,1592\ndepose,1,kingrichardiii,1592\nwoman's,1,kingrichardiii,1592\nsnarling,1,kingrichardiii,1592\nexcepting,1,kingrichardiii,1592\nmasters',1,kingrichardiii,1592\nbrittle,1,kingrichardiii,1592\ndived,1,kingrichardiii,1592\ndine,1,kingrichardiii,1592\nrag,1,kingrichardiii,1592\nvillain's,1,kingrichardiii,1592\nplagued,1,kingrichardiii,1592\nthus',1,kingrichardiii,1592\nunscarr'd,1,kingrichardiii,1592\nlower,1,kingrichardiii,1592\nriddle,1,kingrichardiii,1592\nlooker,1,kingrichardiii,1592\nrode,1,kingrichardiii,1592\nVillain,1,kingrichardiii,1592\nvillage,1,kingrichardiii,1592\nlongs,1,kingrichardiii,1592\nMessengers,1,kingrichardiii,1592\ndefused,1,kingrichardiii,1592\nobstinate,1,kingrichardiii,1592\nMilford,1,kingrichardiii,1592\nrow,1,kingrichardiii,1592\ncarters,1,kingrichardiii,1592\nhighness',1,kingrichardiii,1592\nWilt,1,kingrichardiii,1592\npublicly,1,kingrichardiii,1592\ntriumphing,1,kingrichardiii,1592\nspeeds,1,kingrichardiii,1592\ncommenting,1,kingrichardiii,1592\nroar,1,kingrichardiii,1592\nassistance,1,kingrichardiii,1592\nmuse,1,kingrichardiii,1592\nproclaim'd,1,kingrichardiii,1592\ntrivial,1,kingrichardiii,1592\nbutchery,1,kingrichardiii,1592\neasily,1,kingrichardiii,1592\nspace,1,kingrichardiii,1592\nambling,1,kingrichardiii,1592\nneighbour's,1,kingrichardiii,1592\ntesty,1,kingrichardiii,1592\njot,1,kingrichardiii,1592\nspeedy,1,kingrichardiii,1592\nGrim,1,kingrichardiii,1592\nmell,1,kingrichardiii,1592\nPenker,1,kingrichardiii,1592\nLord's,1,kingrichardiii,1592\nreserved,1,kingrichardiii,1592\nwailing,1,kingrichardiii,1592\ndrowsy,1,kingrichardiii,1592\ndrew'st,1,kingrichardiii,1592\nfrowning,1,kingrichardiii,1592\nseason'd,1,kingrichardiii,1592\npoisonous,1,kingrichardiii,1592\nMisconstrue,1,kingrichardiii,1592\nMethoughts,1,kingrichardiii,1592\nsleepy,1,kingrichardiii,1592\nEnviron'd,1,kingrichardiii,1592\nwreaths,1,kingrichardiii,1592\neasier,1,kingrichardiii,1592\nhers,1,kingrichardiii,1592\nMust,1,kingrichardiii,1592\nfinger,1,kingrichardiii,1592\ninfringe,1,kingrichardiii,1592\naptly,1,kingrichardiii,1592\nHeir,1,kingrichardiii,1592\nbounteous,1,kingrichardiii,1592\ncursing,1,kingrichardiii,1592\nmere,1,kingrichardiii,1592\nintercepts,1,kingrichardiii,1592\ndecay,1,kingrichardiii,1592\nRougemont,1,kingrichardiii,1592\nmean'st,1,kingrichardiii,1592\nBlack,1,kingrichardiii,1592\nrecourse,1,kingrichardiii,1592\nprisoner,1,kingrichardiii,1592\ngrim,1,kingrichardiii,1592\nbraved,1,kingrichardiii,1592\nHelp,1,kingrichardiii,1592\nprosperous,1,kingrichardiii,1592\nReward,1,kingrichardiii,1592\nferryman,1,kingrichardiii,1592\ntoil,1,kingrichardiii,1592\nmisusest,1,kingrichardiii,1592\nhonourable,1,kingrichardiii,1592\nHeld,1,kingrichardiii,1592\nhearted,1,kingrichardiii,1592\ncheering,1,kingrichardiii,1592\nlowly,1,kingrichardiii,1592\nFar,1,kingrichardiii,1592\nfought,1,kingrichardiii,1592\nlooked,1,kingrichardiii,1592\ncountermand,1,kingrichardiii,1592\nsugar,1,kingrichardiii,1592\nUntouch'd,1,kingrichardiii,1592\nrooting,1,kingrichardiii,1592\nunderstand,1,kingrichardiii,1592\nappear,1,kingrichardiii,1592\nmaintain,1,kingrichardiii,1592\ncave,1,kingrichardiii,1592\nomitted,1,kingrichardiii,1592\nunhappiness,1,kingrichardiii,1592\nHarry's,1,kingrichardiii,1592\nmatch'd,1,kingrichardiii,1592\nstretched,1,kingrichardiii,1592\nunderneath,1,kingrichardiii,1592\nstumbled,1,kingrichardiii,1592\ncharter,1,kingrichardiii,1592\nlaugh,1,kingrichardiii,1592\nDaring,1,kingrichardiii,1592\ndaub'd,1,kingrichardiii,1592\nworms,1,kingrichardiii,1592\nChristopher,1,kingrichardiii,1592\ninnocency,1,kingrichardiii,1592\ncalls,1,kingrichardiii,1592\nbeauty's,1,kingrichardiii,1592\nyonder,1,kingrichardiii,1592\nterrible,1,kingrichardiii,1592\nbefall,1,kingrichardiii,1592\nadvocate,1,kingrichardiii,1592\ndreaming,1,kingrichardiii,1592\nconsorted,1,kingrichardiii,1592\nodds,1,kingrichardiii,1592\niron,1,kingrichardiii,1592\nbishops,1,kingrichardiii,1592\nsore,1,kingrichardiii,1592\nmalapert,1,kingrichardiii,1592\nPost,1,kingrichardiii,1592\ndrawbridge,1,kingrichardiii,1592\nJacks,1,kingrichardiii,1592\nancestors,1,kingrichardiii,1592\nsmooth'd,1,kingrichardiii,1592\nstamp'd,1,kingrichardiii,1592\nbuilds,1,kingrichardiii,1592\nAmaze,1,kingrichardiii,1592\nwrens,1,kingrichardiii,1592\nPour,1,kingrichardiii,1592\nnymph,1,kingrichardiii,1592\n'ever',1,kingrichardiii,1592\nWere't,1,kingrichardiii,1592\ncloyed,1,kingrichardiii,1592\nearls,1,kingrichardiii,1592\ncheques,1,kingrichardiii,1592\ntyrannous,1,kingrichardiii,1592\nspringing,1,kingrichardiii,1592\nrecreation,1,kingrichardiii,1592\nunwilling,1,kingrichardiii,1592\nPERSONAE,1,kingrichardiii,1592\nwither,1,kingrichardiii,1592\nrescued,1,kingrichardiii,1592\nmute,1,kingrichardiii,1592\n'Small,1,kingrichardiii,1592\nsplinter'd,1,kingrichardiii,1592\nclamorous,1,kingrichardiii,1592\n'Thanks,1,kingrichardiii,1592\nsaved,1,kingrichardiii,1592\nyoemen,1,kingrichardiii,1592\nbaited,1,kingrichardiii,1592\nlightning,1,kingrichardiii,1592\ncast,1,kingrichardiii,1592\nsoothe,1,kingrichardiii,1592\ncase,1,kingrichardiii,1592\nwalking,1,kingrichardiii,1592\nargues,1,kingrichardiii,1592\nimpure,1,kingrichardiii,1592\nworser,1,kingrichardiii,1592\nbreach,1,kingrichardiii,1592\nvast,1,kingrichardiii,1592\nFramed,1,kingrichardiii,1592\nstirring,1,kingrichardiii,1592\nEarth,1,kingrichardiii,1592\nhelped,1,kingrichardiii,1592\nbending,1,kingrichardiii,1592\nseven,1,kingrichardiii,1592\ncounted,1,kingrichardiii,1592\nexhales,1,kingrichardiii,1592\nsurfeit,1,kingrichardiii,1592\nespouse,1,kingrichardiii,1592\nthank'd,1,kingrichardiii,1592\nwander'd,1,kingrichardiii,1592\ncamp,1,kingrichardiii,1592\nsadly,1,kingrichardiii,1592\nreconciled,1,kingrichardiii,1592\nUntainted,1,kingrichardiii,1592\nsole,1,kingrichardiii,1592\nspitteth,1,kingrichardiii,1592\n'What,1,kingrichardiii,1592\nsold,1,kingrichardiii,1592\ndissentious,1,kingrichardiii,1592\ncharms,1,kingrichardiii,1592\nmatters,1,kingrichardiii,1592\nbefall'n,1,kingrichardiii,1592\nrelieve,1,kingrichardiii,1592\nbearing,1,kingrichardiii,1592\nclosure,1,kingrichardiii,1592\ndance,1,kingrichardiii,1592\nfulsome,1,kingrichardiii,1592\ninhabit,1,kingrichardiii,1592\nresign'd,1,kingrichardiii,1592\ngrows,1,kingrichardiii,1592\nhour's,1,kingrichardiii,1592\nbluntly,1,kingrichardiii,1592\nTongue,1,kingrichardiii,1592\nennoble,1,kingrichardiii,1592\nCaesar's,1,kingrichardiii,1592\nBlind,1,kingrichardiii,1592\ninstigation,1,kingrichardiii,1592\npersuading,1,kingrichardiii,1592\ncrying,1,kingrichardiii,1592\nvaunts,1,kingrichardiii,1592\namended,1,kingrichardiii,1592\ncaps,1,kingrichardiii,1592\nProvokes,1,kingrichardiii,1592\nboldness,1,kingrichardiii,1592\nIniquity,1,kingrichardiii,1592\ndeceivest,1,kingrichardiii,1592\nproceeds,1,kingrichardiii,1592\nintelligencer,1,kingrichardiii,1592\nsucceeding,1,kingrichardiii,1592\nWot,1,kingrichardiii,1592\ndiffers,1,kingrichardiii,1592\nKnow'st,1,kingrichardiii,1592\ncockatrice,1,kingrichardiii,1592\nunresolved,1,kingrichardiii,1592\ndrew,1,kingrichardiii,1592\nIntending,1,kingrichardiii,1592\noffenders,1,kingrichardiii,1592\nexclaim,1,kingrichardiii,1592\nQuiet,1,kingrichardiii,1592\ncheek,1,kingrichardiii,1592\nseemeth,1,kingrichardiii,1592\nwants,1,kingrichardiii,1592\nhearing,1,kingrichardiii,1592\nvoices,1,kingrichardiii,1592\nrewarder,1,kingrichardiii,1592\nchop,1,kingrichardiii,1592\nkindness',1,kingrichardiii,1592\novergo,1,kingrichardiii,1592\ncharacters,1,kingrichardiii,1592\nsoil,1,kingrichardiii,1592\nrepetition,1,kingrichardiii,1592\nPitchers,1,kingrichardiii,1592\nsoonest,1,kingrichardiii,1592\nDickon,1,kingrichardiii,1592\nFairer,1,kingrichardiii,1592\nunsuspected,1,kingrichardiii,1592\nmaking,1,kingrichardiii,1592\nvisaged,1,kingrichardiii,1592\nsluggard,1,kingrichardiii,1592\nthraldom,1,kingrichardiii,1592\nrites,1,kingrichardiii,1592\nLoath,1,kingrichardiii,1592\ndesperately,1,kingrichardiii,1592\nfools,1,kingrichardiii,1592\nArgues,1,kingrichardiii,1592\nveins,1,kingrichardiii,1592\nPale,1,kingrichardiii,1592\nMethinks,1,kingrichardiii,1592\nriches,1,kingrichardiii,1592\ntoys,1,kingrichardiii,1592\nfurious,1,kingrichardiii,1592\nAvaunt,1,kingrichardiii,1592\nabode,1,kingrichardiii,1592\nfreedom,1,kingrichardiii,1592\nrunagate,1,kingrichardiii,1592\ncalamity,1,kingrichardiii,1592\ninhuman,1,kingrichardiii,1592\namity,1,kingrichardiii,1592\ntoss'd,1,kingrichardiii,1592\ncongeal'd,1,kingrichardiii,1592\ningenious,1,kingrichardiii,1592\nkin,1,kingrichardiii,1592\nbegan,1,kingrichardiii,1592\npaltry,1,kingrichardiii,1592\nCourtney,1,kingrichardiii,1592\nshrift,1,kingrichardiii,1592\nseizing,1,kingrichardiii,1592\nsobs,1,kingrichardiii,1592\nperjured,1,kingrichardiii,1592\nvisitation,1,kingrichardiii,1592\nSaw'st,1,kingrichardiii,1592\nunwillingness,1,kingrichardiii,1592\ncarnal,1,kingrichardiii,1592\ncities,1,kingrichardiii,1592\ntowns,1,kingrichardiii,1592\nbedash'd,1,kingrichardiii,1592\nlour'd,1,kingrichardiii,1592\njumpeth,1,kingrichardiii,1592\nFellows,1,kingrichardiii,1592\npillow,1,kingrichardiii,1592\nfamously,1,kingrichardiii,1592\ngodfathers,1,kingrichardiii,1592\nocean,1,kingrichardiii,1592\nwizard,1,kingrichardiii,1592\nsix,1,kingrichardiii,1592\ndistraught,1,kingrichardiii,1592\nslightly,1,kingrichardiii,1592\nsmoking,1,kingrichardiii,1592\nDull,1,kingrichardiii,1592\nseeth,1,kingrichardiii,1592\nmarch'd,1,kingrichardiii,1592\nperch,1,kingrichardiii,1592\nsing'st,1,kingrichardiii,1592\nattainder,1,kingrichardiii,1592\nInter,1,kingrichardiii,1592\n'judgment',1,kingrichardiii,1592\ntraditional,1,kingrichardiii,1592\nblocks,1,kingrichardiii,1592\nboat,1,kingrichardiii,1592\nafflict,1,kingrichardiii,1592\nDivinely,1,kingrichardiii,1592\nhistory,1,kingrichardiii,1592\nOft,1,kingrichardiii,1592\ndeeper,1,kingrichardiii,1592\nLeads,1,kingrichardiii,1592\ninnocents,1,kingrichardiii,1592\nintercepted,1,kingrichardiii,1592\npetitioner,1,kingrichardiii,1592\ntrebles,1,kingrichardiii,1592\nimprison'd,1,kingrichardiii,1592\naged,1,kingrichardiii,1592\nreaching,1,kingrichardiii,1592\nkey,1,kingrichardiii,1592\nages,1,kingrichardiii,1592\nbrook'd,1,kingrichardiii,1592\ntenants,1,kingrichardiii,1592\nsubdued,1,kingrichardiii,1592\nhalbert,1,kingrichardiii,1592\nbastard,1,kingrichardiii,1592\nscourge,1,kingrichardiii,1592\ndeity,1,kingrichardiii,1592\ndisclosed,1,kingrichardiii,1592\nmeetings,1,kingrichardiii,1592\nwalk,1,kingrichardiii,1592\nMARQUIS,1,kingrichardiii,1592\nfavoured,1,kingrichardiii,1592\nOffended,1,kingrichardiii,1592\ncourtezans,1,kingrichardiii,1592\nBurgundy,1,kingrichardiii,1592\ndeceived,1,kingrichardiii,1592\ncarrying,1,kingrichardiii,1592\nWrite,1,kingrichardiii,1592\n'When,1,kingrichardiii,1592\nsociety,1,kingrichardiii,1592\nfamish'd,1,kingrichardiii,1592\nchiefest,1,kingrichardiii,1592\nlanded,1,kingrichardiii,1592\nPlantagenets,1,kingrichardiii,1592\nancestry,1,kingrichardiii,1592\nfell,1,kingrichardiii,1592\nabused,1,kingrichardiii,1592\nThinking,1,kingrichardiii,1592\nunprepared,1,kingrichardiii,1592\nscore,1,kingrichardiii,1592\nbetrayed,1,kingrichardiii,1592\nWILLIAM,1,kingrichardiii,1592\nstealing,1,kingrichardiii,1592\nlivest,1,kingrichardiii,1592\ndispersing,1,kingrichardiii,1592\ncradle,1,kingrichardiii,1592\nbranches,1,kingrichardiii,1592\ndelivers,1,kingrichardiii,1592\nsteps,1,kingrichardiii,1592\nshoulder'd,1,kingrichardiii,1592\njustices,1,kingrichardiii,1592\nconsiderate,1,kingrichardiii,1592\nleisurely,1,kingrichardiii,1592\nstripling,1,kingrichardiii,1592\nsob,1,kingrichardiii,1592\nmoralize,1,kingrichardiii,1592\nexecutioners,1,kingrichardiii,1592\nplenty,1,kingrichardiii,1592\nfashions,1,kingrichardiii,1592\nAffrights,1,kingrichardiii,1592\n'O,1,kingrichardiii,1592\nKneel'd,1,kingrichardiii,1592\nashore,1,kingrichardiii,1592\nnephews',1,kingrichardiii,1592\nDuck,1,kingrichardiii,1592\ncropp'd,1,kingrichardiii,1592\nBerkeley,1,kingrichardiii,1592\negally,1,kingrichardiii,1592\nlivery,1,kingrichardiii,1592\ntaunt,1,kingrichardiii,1592\nbashful,1,kingrichardiii,1592\nacquainted,1,kingrichardiii,1592\ndeeply,1,kingrichardiii,1592\nDevonshire,1,kingrichardiii,1592\nstudy,1,kingrichardiii,1592\nmiddle,1,kingrichardiii,1592\nProdigious,1,kingrichardiii,1592\nDissemble,1,kingrichardiii,1592\npitiful,1,kingrichardiii,1592\ncommends,1,kingrichardiii,1592\nlevel,1,kingrichardiii,1592\ngroans,1,kingrichardiii,1592\nhatch'd,1,kingrichardiii,1592\ngather,1,kingrichardiii,1592\nsets,1,kingrichardiii,1592\ngnaw'd,1,kingrichardiii,1592\nDoctor,1,kingrichardiii,1592\nSinfully,1,kingrichardiii,1592\nmerciless,1,kingrichardiii,1592\ndally,1,kingrichardiii,1592\nthin,1,kingrichardiii,1592\ndearth,1,kingrichardiii,1592\nbridge,1,kingrichardiii,1592\nHidest,1,kingrichardiii,1592\nbecomes,1,kingrichardiii,1592\nconjunction,1,kingrichardiii,1592\nshelter'd,1,kingrichardiii,1592\nincludes,1,kingrichardiii,1592\namiss,1,kingrichardiii,1592\npoverty,1,kingrichardiii,1592\nAnthony,1,kingrichardiii,1592\nread,1,kingrichardiii,1592\nseats,1,kingrichardiii,1592\nabstract,1,kingrichardiii,1592\ncolder,1,kingrichardiii,1592\nswelling,1,kingrichardiii,1592\nworst,1,kingrichardiii,1592\nmellow,1,kingrichardiii,1592\npuissant,1,kingrichardiii,1592\ntaught,1,kingrichardiii,1592\nfelt,1,kingrichardiii,1592\nsly,1,kingrichardiii,1592\nmocks,1,kingrichardiii,1592\nclaim'd,1,kingrichardiii,1592\nbroils,1,kingrichardiii,1592\ncacodemon,1,kingrichardiii,1592\nworry,1,kingrichardiii,1592\nguide,1,kingrichardiii,1592\nwear'st,1,kingrichardiii,1592\nembracements,1,kingrichardiii,1592\nBretagne,1,kingrichardiii,1592\nredeem,1,kingrichardiii,1592\nvanish,1,kingrichardiii,1592\nstaring,1,kingrichardiii,1592\nreadiest,1,kingrichardiii,1592\ntormenting,1,kingrichardiii,1592\npoints,1,kingrichardiii,1592\nconceit,1,kingrichardiii,1592\nbrain,1,kingrichardiii,1592\nSwills,1,kingrichardiii,1592\nweeder,1,kingrichardiii,1592\nDeformed,1,kingrichardiii,1592\ninduction,1,kingrichardiii,1592\nheal'd,1,kingrichardiii,1592\ncompassion,1,kingrichardiii,1592\nreft,1,kingrichardiii,1592\npeise,1,kingrichardiii,1592\ndropper,1,kingrichardiii,1592\ntwelve,1,kingrichardiii,1592\nguarded,1,kingrichardiii,1592\nCheated,1,kingrichardiii,1592\ncommon,1,kingrichardiii,1592\nswoln,1,kingrichardiii,1592\nhead's,1,kingrichardiii,1592\nbore,1,kingrichardiii,1592\nloathes,1,kingrichardiii,1592\nfigure,1,kingrichardiii,1592\ncivil,1,kingrichardiii,1592\nproceeded,1,kingrichardiii,1592\ndirect,1,kingrichardiii,1592\nabsence,1,kingrichardiii,1592\nROTHERHAM,1,kingrichardiii,1592\nplots,1,kingrichardiii,1592\nbeggarly,1,kingrichardiii,1592\nshuns,1,kingrichardiii,1592\ninfidels,1,kingrichardiii,1592\nendeavours,1,kingrichardiii,1592\nactions,1,kingrichardiii,1592\nCLARENCE's,1,kingrichardiii,1592\nencounter,1,kingrichardiii,1592\nloose,1,kingrichardiii,1592\nsuborn,1,kingrichardiii,1592\nconfer,1,kingrichardiii,1592\naffected,1,kingrichardiii,1592\ndearly,1,kingrichardiii,1592\nSound,1,kingrichardiii,1592\nmark'd,1,kingrichardiii,1592\ninstance,1,kingrichardiii,1592\nconsented,1,kingrichardiii,1592\nflatterer,1,kingrichardiii,1592\nwilling,1,kingrichardiii,1592\nswoon,1,kingrichardiii,1592\nparcell'd,1,kingrichardiii,1592\nLeave,1,kingrichardiii,1592\npageant,1,kingrichardiii,1592\nsty,1,kingrichardiii,1592\nmodel,1,kingrichardiii,1592\nphysicians,1,kingrichardiii,1592\nminority,1,kingrichardiii,1592\nForbids,1,kingrichardiii,1592\nmutinies,1,kingrichardiii,1592\nsum,1,kingrichardiii,1592\nBishops,1,kingrichardiii,1592\nelder,1,kingrichardiii,1592\nvanity,1,kingrichardiii,1592\ncomplete,1,kingrichardiii,1592\nbrace,1,kingrichardiii,1592\nKings,1,kingrichardiii,1592\nreverence,1,kingrichardiii,1592\nabove,1,kingrichardiii,1592\nfeed,1,kingrichardiii,1592\naccent,1,kingrichardiii,1592\nrein,1,kingrichardiii,1592\nfeet,1,kingrichardiii,1592\npunish,1,kingrichardiii,1592\ndescent,1,kingrichardiii,1592\nplainly,1,kingrichardiii,1592\nascendeth,1,kingrichardiii,1592\nbeaten,1,kingrichardiii,1592\ndirected,1,kingrichardiii,1592\n'Faith,1,kingrichardiii,1592\nwhoever,1,kingrichardiii,1592\noutgrown,1,kingrichardiii,1592\nswore,1,kingrichardiii,1592\nmasters,1,kingrichardiii,1592\nunexamined,1,kingrichardiii,1592\ncorrupt,1,kingrichardiii,1592\nsailor,1,kingrichardiii,1592\nconceal,1,kingrichardiii,1592\nDrown,1,kingrichardiii,1592\nlanced,1,kingrichardiii,1592\nOld,1,kingrichardiii,1592\nGuard,1,kingrichardiii,1592\nspeaking,1,kingrichardiii,1592\nrude,1,kingrichardiii,1592\nwing,1,kingrichardiii,1592\nprevent,1,kingrichardiii,1592\napplause,1,kingrichardiii,1592\nFly,1,kingrichardiii,1592\ngapes,1,kingrichardiii,1592\nward,1,kingrichardiii,1592\nflesh,1,kingrichardiii,1592\ncovert'st,1,kingrichardiii,1592\ntiger,1,kingrichardiii,1592\nrend,1,kingrichardiii,1592\nseparated,1,kingrichardiii,1592\nhandiwork,1,kingrichardiii,1592\nlength,1,kingrichardiii,1592\ndamnable,1,kingrichardiii,1592\nPlease,1,kingrichardiii,1592\nAdvancing,1,kingrichardiii,1592\npeasants,1,kingrichardiii,1592\nedge,1,kingrichardiii,1592\nrely,1,kingrichardiii,1592\nharmless,1,kingrichardiii,1592\nSuspect,1,kingrichardiii,1592\nsparingly,1,kingrichardiii,1592\nheaved,1,kingrichardiii,1592\nEnglishman,1,kingrichardiii,1592\nhated,1,kingrichardiii,1592\ndies,1,kingrichardiii,1592\nRetreat,1,kingrichardiii,1592\ntrifles,1,kingrichardiii,1592\ndiet,1,kingrichardiii,1592\nscaffold,1,kingrichardiii,1592\ncounsel's,1,kingrichardiii,1592\nseest,1,kingrichardiii,1592\nturned,1,kingrichardiii,1592\nanon,1,kingrichardiii,1592\ndistressful,1,kingrichardiii,1592\neagle,1,kingrichardiii,1592\nwithheld,1,kingrichardiii,1592\nPlots,1,kingrichardiii,1592\nSimple,1,kingrichardiii,1592\nrevolving,1,kingrichardiii,1592\nsummon,1,kingrichardiii,1592\ntrudge,1,kingrichardiii,1592\nwarm,1,kingrichardiii,1592\nungracious,1,kingrichardiii,1592\nloins,1,kingrichardiii,1592\ndukedom,1,kingrichardiii,1592\nSouth,1,kingrichardiii,1592\ncoast,1,kingrichardiii,1592\nbond,1,kingrichardiii,1592\ncunning,1,kingrichardiii,1592\ntimeless,1,kingrichardiii,1592\nbrake,1,kingrichardiii,1592\nconveyance,1,kingrichardiii,1592\ndealt,1,kingrichardiii,1592\nMisused,1,kingrichardiii,1592\njoin'd,1,kingrichardiii,1592\ncircumstances,1,kingrichardiii,1592\nlunatic,1,kingrichardiii,1592\nrevel,1,kingrichardiii,1592\nuntired,1,kingrichardiii,1592\nsteel,1,kingrichardiii,1592\ndomestic,1,kingrichardiii,1592\nrules,1,kingrichardiii,1592\ncondemns,1,kingrichardiii,1592\nsweating,1,kingrichardiii,1592\nwits,1,kingrichardiii,1592\ncreeping,1,kingrichardiii,1592\nmanly,1,kingrichardiii,1592\nplaints,1,kingrichardiii,1592\nchastised,1,kingrichardiii,1592\nmanhood,1,kingrichardiii,1592\nFrench,1,kingrichardiii,1592\npraised,1,kingrichardiii,1592\nparts,1,kingrichardiii,1592\ntwill,1,kingrichardiii,1592\nverdict,1,kingrichardiii,1592\nDraw,1,kingrichardiii,1592\nhungry,1,kingrichardiii,1592\neverlastingly,1,kingrichardiii,1592\noffers,1,kingrichardiii,1592\nbewept,1,kingrichardiii,1592\ndeserves,1,kingrichardiii,1592\nfairest,1,kingrichardiii,1592\nSuccessively,1,kingrichardiii,1592\nfoil,1,kingrichardiii,1592\nknowledge,1,kingrichardiii,1592\nscandal,1,kingrichardiii,1592\nprince's,1,kingrichardiii,1592\nFaith,1,kingrichardiii,1592\nstumble,1,kingrichardiii,1592\nTressel,1,kingrichardiii,1592\nlife's,1,kingrichardiii,1592\nstir,1,kingrichardiii,1592\nkeys,1,kingrichardiii,1592\nsolicit,1,kingrichardiii,1592\no'erworn,1,kingrichardiii,1592\nFoes,1,kingrichardiii,1592\nBettering,1,kingrichardiii,1592\nTaken,1,kingrichardiii,1592\nHold,1,kingrichardiii,1592\nsteward,1,kingrichardiii,1592\ninducement,1,kingrichardiii,1592\nfatting,1,kingrichardiii,1592\nWhile,1,kingrichardiii,1592\nwanting,1,kingrichardiii,1592\nhag,1,kingrichardiii,1592\nStruck,1,kingrichardiii,1592\nsweeter,1,kingrichardiii,1592\nHoly,1,kingrichardiii,1592\nrivers,1,kingrichardiii,1592\nbarded,1,kingrichardiii,1592\nrefuse,1,kingrichardiii,1592\noffend,1,kingrichardiii,1592\nguiltily,1,kingrichardiii,1592\norator,1,kingrichardiii,1592\ndistinguish,1,kingrichardiii,1592\nstreams,1,kingrichardiii,1592\nStabs,1,kingrichardiii,1592\nreligious,1,kingrichardiii,1592\nburthen'd,1,kingrichardiii,1592\ngranted,1,kingrichardiii,1592\nwheel'd,1,kingrichardiii,1592\nspoil,1,kingrichardiii,1592\ninfection,1,kingrichardiii,1592\naltogether,1,kingrichardiii,1592\npay,1,kingrichardiii,1592\npacking,1,kingrichardiii,1592\ntonight,1,kingrichardiii,1592\nstrangling,1,kingrichardiii,1592\nhastings,1,kingrichardiii,1592\nrankle,1,kingrichardiii,1592\nmusic,1,kingrichardiii,1592\nhang'd,1,kingrichardiii,1592\ndream'st,1,kingrichardiii,1592\ntimorously,1,kingrichardiii,1592\nHie,1,kingrichardiii,1592\nbow,1,kingrichardiii,1592\nGloucester's,1,kingrichardiii,1592\nguiltiness,1,kingrichardiii,1592\ngovern,1,kingrichardiii,1592\nalarum,1,kingrichardiii,1592\nmisused,1,kingrichardiii,1592\nlance,1,kingrichardiii,1592\nmurderers,1,kingrichardiii,1592\nStill,1,kingrichardiii,1592\nblown,1,kingrichardiii,1592\nspoil'd,1,kingrichardiii,1592\nitself,1,kingrichardiii,1592\nDive,1,kingrichardiii,1592\nlisted,1,kingrichardiii,1592\nPlay,1,kingrichardiii,1592\nteen,1,kingrichardiii,1592\npointed,1,kingrichardiii,1592\nlibels,1,kingrichardiii,1592\nthoughts',1,kingrichardiii,1592\nsecretly,1,kingrichardiii,1592\nMe,1,kingrichardiii,1592\nbay,1,kingrichardiii,1592\nharlot,1,kingrichardiii,1592\npays,1,kingrichardiii,1592\nPlain,1,kingrichardiii,1592\nrazed,1,kingrichardiii,1592\nStand,1,kingrichardiii,1592\nblots,1,kingrichardiii,1592\nempery,1,kingrichardiii,1592\npew,1,kingrichardiii,1592\ncruel,1,kingrichardiii,1592\nUnrip'dst,1,kingrichardiii,1592\nunless,1,kingrichardiii,1592\nTyrants,1,kingrichardiii,1592\ndenier,1,kingrichardiii,1592\nAlbeit,1,kingrichardiii,1592\nAiry,1,kingrichardiii,1592\n'Jockey,1,kingrichardiii,1592\npities,1,kingrichardiii,1592\nstar,1,kingrichardiii,1592\nbestial,1,kingrichardiii,1592\njoyless,1,kingrichardiii,1592\nto't,1,kingrichardiii,1592\nDecline,1,kingrichardiii,1592\nstab,1,kingrichardiii,1592\nProclaim,1,kingrichardiii,1592\nstag,1,kingrichardiii,1592\nprops,1,kingrichardiii,1592\nBOURCHIER,1,kingrichardiii,1592\ninterior,1,kingrichardiii,1592\nhid,1,kingrichardiii,1592\nking',1,kingrichardiii,1592\ntype,1,kingrichardiii,1592\nencompasseth,1,kingrichardiii,1592\nlesson'd,1,kingrichardiii,1592\nLetters,1,kingrichardiii,1592\nenter'd,1,kingrichardiii,1592\nashes,1,kingrichardiii,1592\nOutlive,1,kingrichardiii,1592\nhit,1,kingrichardiii,1592\nExceeding,1,kingrichardiii,1592\nWALTER,1,kingrichardiii,1592\nRefuse,1,kingrichardiii,1592\nHo,1,kingrichardiii,1592\nrequires,1,kingrichardiii,1592\nfeigned,1,kingrichardiii,1592\nblest,1,kingrichardiii,1592\naweless,1,kingrichardiii,1592\nHASTING,1,kingrichardiii,1592\nCalled,1,kingrichardiii,1592\ngoods,1,kingrichardiii,1592\nease,1,kingrichardiii,1592\ndigest,1,kingrichardiii,1592\nconsidered,1,kingrichardiii,1592\nUsurp,1,kingrichardiii,1592\nbruised,1,kingrichardiii,1592\nrevenue,1,kingrichardiii,1592\nBruised,1,kingrichardiii,1592\nSeldom,1,kingrichardiii,1592\nBuckingham's,1,kingrichardiii,1592\nearl,1,kingrichardiii,1592\nwrecks,1,kingrichardiii,1592\nstem,1,kingrichardiii,1592\nstep,1,kingrichardiii,1592\nprompts,1,kingrichardiii,1592\nglorious,1,kingrichardiii,1592\nanchor'd,1,kingrichardiii,1592\nnice,1,kingrichardiii,1592\nadmiral,1,kingrichardiii,1592\ndeluge,1,kingrichardiii,1592\nDivided,1,kingrichardiii,1592\ninterruption,1,kingrichardiii,1592\nGold,1,kingrichardiii,1592\nWindy,1,kingrichardiii,1592\ncardinal,1,kingrichardiii,1592\nsire,1,kingrichardiii,1592\nbecame,1,kingrichardiii,1592\nbegot,1,kingrichardiii,1592\ncorrupted,1,kingrichardiii,1592\nbeheaded,1,kingrichardiii,1592\nDukes,1,kingrichardiii,1592\nAdieu,1,kingrichardiii,1592\nwarn'd,1,kingrichardiii,1592\nCompare,1,kingrichardiii,1592\nstrifes,1,kingrichardiii,1592\nFerrers,1,kingrichardiii,1592\ndolour,1,kingrichardiii,1592\ndoers,1,kingrichardiii,1592\nbulk,1,kingrichardiii,1592\ncostard,1,kingrichardiii,1592\nHour,1,kingrichardiii,1592\nweek,1,kingrichardiii,1592\nOpen,1,kingrichardiii,1592\nstraw,1,kingrichardiii,1592\nabides,1,kingrichardiii,1592\nDrum,1,kingrichardiii,1592\nHeard,1,kingrichardiii,1592\nrunaways,1,kingrichardiii,1592\npreserved,1,kingrichardiii,1592\nrebel,1,kingrichardiii,1592\nhelp'st,1,kingrichardiii,1592\nJove's,1,kingrichardiii,1592\nfields,1,kingrichardiii,1592\ncontrol,1,kingrichardiii,1592\nmiscarry,1,kingrichardiii,1592\nwillingness,1,kingrichardiii,1592\nbury,1,kingrichardiii,1592\ntumble,1,kingrichardiii,1592\nBona,1,kingrichardiii,1592\ncherish'd,1,kingrichardiii,1592\nburn,1,kingrichardiii,1592\ncrust,1,kingrichardiii,1592\nimmediately,1,kingrichardiii,1592\ncoffin,1,kingrichardiii,1592\ncar,1,kingrichardiii,1592\nhereby,1,kingrichardiii,1592\nbabbling,1,kingrichardiii,1592\ncrush,1,kingrichardiii,1592\nConsorted,1,kingrichardiii,1592\natonement,1,kingrichardiii,1592\npry,1,kingrichardiii,1592\ntricks,1,kingrichardiii,1592\nSeduced,1,kingrichardiii,1592\nfriends',1,kingrichardiii,1592\ndefects,1,kingrichardiii,1592\nyon,1,kingrichardiii,1592\nwrecked,1,kingrichardiii,1592\ntables,1,kingrichardiii,1592\ntroublest,1,kingrichardiii,1592\ndevised,1,kingrichardiii,1592\nBold,1,kingrichardiii,1592\nordered,1,kingrichardiii,1592\nlearned,1,kingrichardiii,1592\nSirs,1,kingrichardiii,1592\nweightier,1,kingrichardiii,1592\ngaze,1,kingrichardiii,1592\nSave,1,kingrichardiii,1592\nbent,1,kingrichardiii,1592\nvagabonds,1,kingrichardiii,1592\nBehold,1,kingrichardiii,1592\npeople,1,kingrichardiii,1592\nbeyond,1,kingrichardiii,1592\nFalsely,1,kingrichardiii,1592\nLies,1,kingrichardiii,1592\nunsway'd,1,kingrichardiii,1592\nwelkin,1,kingrichardiii,1592\ngape,1,kingrichardiii,1592\nequals,1,kingrichardiii,1592\nUnarm'd,1,kingrichardiii,1592\nmonuments,1,kingrichardiii,1592\nWelshmen,1,kingrichardiii,1592\nfoulest,1,kingrichardiii,1592\nvomits,1,kingrichardiii,1592\nDrawing,1,kingrichardiii,1592\nprating,1,kingrichardiii,1592\nembassage,1,kingrichardiii,1592\nClifford,1,kingrichardiii,1592\ncurst,1,kingrichardiii,1592\ntwice,1,kingrichardiii,1592\nboar's,1,kingrichardiii,1592\nEncourage,1,kingrichardiii,1592\nConscience,1,kingrichardiii,1592\nkeep'st,1,kingrichardiii,1592\nscoffs,1,kingrichardiii,1592\ntackling,1,kingrichardiii,1592\nimprison,1,kingrichardiii,1592\nFamous,1,kingrichardiii,1592\nnonage,1,kingrichardiii,1592\nfriendly,1,kingrichardiii,1592\nanguish,1,kingrichardiii,1592\nPreys,1,kingrichardiii,1592\nbulwarks,1,kingrichardiii,1592\nChop,1,kingrichardiii,1592\nvows,1,kingrichardiii,1592\nattorneys,1,kingrichardiii,1592\nstander,1,kingrichardiii,1592\nNeighbour,1,kingrichardiii,1592\ninsinuating,1,kingrichardiii,1592\nsubmission,1,kingrichardiii,1592\nhilts,1,kingrichardiii,1592\nvassal,1,kingrichardiii,1592\nfrowns,1,kingrichardiii,1592\ntailors,1,kingrichardiii,1592\npreserve,1,kingrichardiii,1592\nsurvey,1,kingrichardiii,1592\nengrave,1,kingrichardiii,1592\nMeet,1,kingrichardiii,1592\nswine,1,kingrichardiii,1592\ncrack'd,1,kingrichardiii,1592\nenterprise,1,kingrichardiii,1592\nsink,1,kingrichardiii,1592\nRumour,1,kingrichardiii,1592\n'Twas,1,kingrichardiii,1592\nstories,1,kingrichardiii,1592\nWelshman,1,kingrichardiii,1592\nrejoice,1,kingrichardiii,1592\nmoody,1,kingrichardiii,1592\nGot,1,kingrichardiii,1592\nfooting,1,kingrichardiii,1592\nturns,1,kingrichardiii,1592\nfulfil,1,kingrichardiii,1592\nupper,1,kingrichardiii,1592\nsharing,1,kingrichardiii,1592\nhopeful,1,kingrichardiii,1592\nowest,1,kingrichardiii,1592\nlately,1,kingrichardiii,1592\nresort,1,kingrichardiii,1592\nengross'd,1,kingrichardiii,1592\nimportune,1,kingrichardiii,1592\no'ershade,1,kingrichardiii,1592\nconvey'd,1,kingrichardiii,1592\nanointed,1,kingrichardiii,1592\nopens,1,kingrichardiii,1592\nName,1,kingrichardiii,1592\nNaught,1,kingrichardiii,1592\ntower,1,kingrichardiii,1592\nquite,1,kingrichardiii,1592\nwhet'st,1,kingrichardiii,1592\nshamefast,1,kingrichardiii,1592\nnoted,1,kingrichardiii,1592\nmistrusting,1,kingrichardiii,1592\neagles,1,kingrichardiii,1592\nstorm,1,kingrichardiii,1592\npanting,1,kingrichardiii,1592\nsail,1,kingrichardiii,1592\nstay'd,1,kingrichardiii,1592\nforgive,1,kingrichardiii,1592\nmood,1,kingrichardiii,1592\nimage,1,kingrichardiii,1592\nbetray,1,kingrichardiii,1592\nFortune,1,kingrichardiii,1592\ntorments,1,kingrichardiii,1592\nresolute,1,kingrichardiii,1592\nsnatch'd,1,kingrichardiii,1592\nkeeping,1,kingrichardiii,1592\nhearkens,1,kingrichardiii,1592\nretail,1,kingrichardiii,1592\nsage,1,kingrichardiii,1592\nidea,1,kingrichardiii,1592\nunfeignedly,1,kingrichardiii,1592\nburial,1,kingrichardiii,1592\nROBERT,1,kingrichardiii,1592\nstops,1,kingrichardiii,1592\nHere's,1,kingrichardiii,1592\nforbids,1,kingrichardiii,1592\nstrut,1,kingrichardiii,1592\nBest,1,kingrichardiii,1592\nmarches,1,kingrichardiii,1592\nconsider,1,kingrichardiii,1592\nmoans,1,kingrichardiii,1592\njewels,1,kingrichardiii,1592\nIll,1,kingrichardiii,1592\ncarping,1,kingrichardiii,1592\nwreck,1,kingrichardiii,1592\nlegs,1,kingrichardiii,1592\nhandsome,1,kingrichardiii,1592\nago,1,kingrichardiii,1592\ngentlewomen,1,kingrichardiii,1592\namendment,1,kingrichardiii,1592\nGuilty,1,kingrichardiii,1592\nconsistory,1,kingrichardiii,1592\nunworthy,1,kingrichardiii,1592\ntragedy,1,kingrichardiii,1592\nEnrich,1,kingrichardiii,1592\ncaitiff,1,kingrichardiii,1592\nAiming,1,kingrichardiii,1592\nprofaned,1,kingrichardiii,1592\nliberal,1,kingrichardiii,1592\nCousins,1,kingrichardiii,1592\naims,1,kingrichardiii,1592\ntragedian,1,kingrichardiii,1592\nSafe,1,kingrichardiii,1592\nseeing,1,kingrichardiii,1592\nslaughters,1,kingrichardiii,1592\nsleeper,1,kingrichardiii,1592\ndrain,1,kingrichardiii,1592\nLash,1,kingrichardiii,1592\neloquent,1,kingrichardiii,1592\nsuggestion,1,kingrichardiii,1592\nenforce,1,kingrichardiii,1592\nlighted,1,kingrichardiii,1592\ndeclension,1,kingrichardiii,1592\nmirrors,1,kingrichardiii,1592\nicy,1,kingrichardiii,1592\ncopious,1,kingrichardiii,1592\nlighter,1,kingrichardiii,1592\ntouch'd,1,kingrichardiii,1592\nhaught,1,kingrichardiii,1592\naffrighted,1,kingrichardiii,1592\nlady's,1,kingrichardiii,1592\nwaits,1,kingrichardiii,1592\nice,1,kingrichardiii,1592\nStanley's,1,kingrichardiii,1592\nhell's,1,kingrichardiii,1592\nAbraham's,1,kingrichardiii,1592\nby'r,1,kingrichardiii,1592\nappeared,1,kingrichardiii,1592\nmakest,1,kingrichardiii,1592\ncomforts,1,kingrichardiii,1592\npossess'd,1,kingrichardiii,1592\nap,1,kingrichardiii,1592\nedified,1,kingrichardiii,1592\nah,1,kingrichardiii,1592\namend,1,kingrichardiii,1592\ninterred,1,kingrichardiii,1592\nstrew'st,1,kingrichardiii,1592\nslimy,1,kingrichardiii,1592\nwench,1,kingrichardiii,1592\ndeaths',1,kingrichardiii,1592\ndispleased,1,kingrichardiii,1592\ndoor,1,kingrichardiii,1592\ncrosses,1,kingrichardiii,1592\nBeget,1,kingrichardiii,1592\ncurtail'd,1,kingrichardiii,1592\ninclusive,1,kingrichardiii,1592\nbanished,1,kingrichardiii,1592\nrumours,1,kingrichardiii,1592\nrealm,1,kingrichardiii,1592\nsugar'd,1,kingrichardiii,1592\nMaster,1,kingrichardiii,1592\nSweetly,1,kingrichardiii,1592\nask'd,1,kingrichardiii,1592\nbegnaw,1,kingrichardiii,1592\ninnocents',1,kingrichardiii,1592\npursuit,1,kingrichardiii,1592\nDispute,1,kingrichardiii,1592\nthreaten,1,kingrichardiii,1592\nmonth,1,kingrichardiii,1592\nInsulting,1,kingrichardiii,1592\ncrew,1,kingrichardiii,1592\nnecessity,1,kingrichardiii,1592\nutmost,1,kingrichardiii,1592\ncrave,1,kingrichardiii,1592\nslily,1,kingrichardiii,1592\nmalignant,1,kingrichardiii,1592\nplayfellow,1,kingrichardiii,1592\nsometime,1,kingrichardiii,1592\nReads,1,kingrichardiii,1592\nattendant,1,kingrichardiii,1592\nlour,1,kingrichardiii,1592\ncaused,1,kingrichardiii,1592\ncloaks,1,kingrichardiii,1592\nventurous,1,kingrichardiii,1592\nlover,1,kingrichardiii,1592\nexpostulate,1,kingrichardiii,1592\nInestimable,1,kingrichardiii,1592\npursues,1,kingrichardiii,1592\nHoisted,1,kingrichardiii,1592\nCountess,1,kingrichardiii,1592\nbegg'd,1,kingrichardiii,1592\no'ercast,1,kingrichardiii,1592\nstout,1,kingrichardiii,1592\nimpediment,1,kingrichardiii,1592\nenjoys,1,kingrichardiii,1592\nuntroubled,1,kingrichardiii,1592\noffer'd,1,kingrichardiii,1592\ncrowning,1,kingrichardiii,1592\nlevy,1,kingrichardiii,1592\nmoon,1,kingrichardiii,1592\naery's,1,kingrichardiii,1592\nho,1,kingrichardiii,1592\nresolved,1,kingrichardiii,1592\ndragons,1,kingrichardiii,1592\nample,1,kingrichardiii,1592\nsemblance,1,kingrichardiii,1592\nSpurn,1,kingrichardiii,1592\nafternoon,1,kingrichardiii,1592\nloved,1,kingrichardiii,1592\nall's,1,kingrichardiii,1592\ncircumspect,1,kingrichardiii,1592\nspend,1,kingrichardiii,1592\nblue,1,kingrichardiii,1592\nbrutish,1,kingrichardiii,1592\nbruising,1,kingrichardiii,1592\nhostile,1,kingrichardiii,1592\nabusing,1,kingrichardiii,1592\nProfaned,1,kingrichardiii,1592\nwails,1,kingrichardiii,1592\nact,1,kingrichardiii,1592\nlets,1,kingrichardiii,1592\nbootless,1,kingrichardiii,1592\nmeanings,1,kingrichardiii,1592\nstatues,1,kingrichardiii,1592\nmischiefs,1,kingrichardiii,1592\nBrecknock,1,kingrichardiii,1592\nnimbly,1,kingrichardiii,1592\nslack,1,kingrichardiii,1592\nrespite,1,kingrichardiii,1592\nloan,1,kingrichardiii,1592\nreads,1,kingrichardiii,1592\nappease,1,kingrichardiii,1592\nsummers,1,kingrichardiii,1592\nmarr'd,1,kingrichardiii,1592\nhog,1,kingrichardiii,1592\n'lay,1,kingrichardiii,1592\nzealous,1,kingrichardiii,1592\npresume,1,kingrichardiii,1592\ngraven,1,kingrichardiii,1592\npamper,1,kingrichardiii,1592\nthrice,1,kingrichardiii,1592\nkilled,1,kingrichardiii,1592\nhardly,1,kingrichardiii,1592\nornaments,1,kingrichardiii,1592\nexecuted,1,kingrichardiii,1592\nroyalize,1,kingrichardiii,1592\neasy,1,kingrichardiii,1592\nfierce,1,kingrichardiii,1592\nSeeking,1,kingrichardiii,1592\nunlook'd,1,kingrichardiii,1592\nfront,1,kingrichardiii,1592\nMost,1,kingrichardiii,1592\nreasonable,1,kingrichardiii,1592\nStirr'd,1,kingrichardiii,1592\nstring,1,kingrichardiii,1592\nweapon,1,kingrichardiii,1592\nkeen,1,kingrichardiii,1592\nremember'd,1,kingrichardiii,1592\nhall,1,kingrichardiii,1592\nArmy,1,kingrichardiii,1592\nembowell'd,1,kingrichardiii,1592\nWhenever,1,kingrichardiii,1592\nround,1,kingrichardiii,1592\nadders,1,kingrichardiii,1592\nowls,1,kingrichardiii,1592\nhandled,1,kingrichardiii,1592\nknit,1,kingrichardiii,1592\nsignify,1,kingrichardiii,1592\nsenseless,1,kingrichardiii,1592\ncrutches,1,kingrichardiii,1592\nquarter'd,1,kingrichardiii,1592\nimpression,1,kingrichardiii,1592\nRepair'd,1,kingrichardiii,1592\nemploy'd,1,kingrichardiii,1592\njoyfully,1,kingrichardiii,1592\ncontinually,1,kingrichardiii,1592\nUnlawfully,1,kingrichardiii,1592\nperform'd,1,kingrichardiii,1592\nDefinitively,1,kingrichardiii,1592\nhusband's,1,kingrichardiii,1592\nnatural,1,kingrichardiii,1592\nenointed,1,kingrichardiii,1592\nsignal,1,kingrichardiii,1592\nstrings,1,kingrichardiii,1592\nrepeat,1,kingrichardiii,1592\nhang,1,kingrichardiii,1592\nre,1,kingrichardiii,1592\nshun,1,kingrichardiii,1592\nnobleness,1,kingrichardiii,1592\nshut,1,kingrichardiii,1592\nFull,1,kingrichardiii,1592\ncited,1,kingrichardiii,1592\nthinkest,1,kingrichardiii,1592\nbunch,1,kingrichardiii,1592\nconsult,1,kingrichardiii,1592\nmitigate,1,kingrichardiii,1592\nbobb'd,1,kingrichardiii,1592\ndescried,1,kingrichardiii,1592\nbeweep,1,kingrichardiii,1592\ntrack,1,kingrichardiii,1592\nschool,1,kingrichardiii,1592\nsweetest,1,kingrichardiii,1592\npraise,1,kingrichardiii,1592\nmomentary,1,kingrichardiii,1592\nDuring,1,kingrichardiii,1592\nInspire,1,kingrichardiii,1592\nmiscarried,1,kingrichardiii,1592\ndetects,1,kingrichardiii,1592\nwisdoms,1,kingrichardiii,1592\nspotted,1,kingrichardiii,1592\nmarching,1,kingrichardiii,1592\nsuccessively,1,kingrichardiii,1592\ncity,1,kingrichardiii,1592\nrudely,1,kingrichardiii,1592\nmidnight,1,kingrichardiii,1592\npage,1,kingrichardiii,1592\ngrudging,1,kingrichardiii,1592\nrashness,1,kingrichardiii,1592\ngarish,1,kingrichardiii,1592\nweeps,1,kingrichardiii,1592\n'Dear,1,kingrichardiii,1592\nprepare,1,kingrichardiii,1592\npurged,1,kingrichardiii,1592\nCommend,1,kingrichardiii,1592\nDeserve,1,kingrichardiii,1592\nunwept,1,kingrichardiii,1592\nTendering,1,kingrichardiii,1592\nconducting,1,kingrichardiii,1592\npair,1,kingrichardiii,1592\navenged,1,kingrichardiii,1592\nship,1,kingrichardiii,1592\nneglect,1,kingrichardiii,1592\nbloodily,1,kingrichardiii,1592\nstranger,1,kingrichardiii,1592\nhangs,1,kingrichardiii,1592\nLaid,1,kingrichardiii,1592\nforswearing,1,kingrichardiii,1592\nwagging,1,kingrichardiii,1592\nspit,1,kingrichardiii,1592\nplotted,1,kingrichardiii,1592\nape,1,kingrichardiii,1592\nextremest,1,kingrichardiii,1592\nforswore,1,kingrichardiii,1592\nTouch'd,1,kingrichardiii,1592\nspear,1,kingrichardiii,1592\ndevise,1,kingrichardiii,1592\nowed,1,kingrichardiii,1592\nconvict,1,kingrichardiii,1592\nEighty,1,kingrichardiii,1592\ninfer,1,kingrichardiii,1592\nFelt,1,kingrichardiii,1592\nshot,1,kingrichardiii,1592\nhats,1,kingrichardiii,1592\ntransform'd,1,kingrichardiii,1592\ninsatiate,1,kingrichardiii,1592\nfishes,1,kingrichardiii,1592\nbillows,1,kingrichardiii,1592\nRichmonds,1,kingrichardiii,1592\nawe,1,kingrichardiii,1592\nexcept,1,kingrichardiii,1592\ndetested,1,kingrichardiii,1592\nfiend,1,kingrichardiii,1592\nflatter'd,1,kingrichardiii,1592\nAnointed,1,kingrichardiii,1592\noutstrip,1,kingrichardiii,1592\nduke's,1,kingrichardiii,1592\nGilbert,1,kingrichardiii,1592\nstall'd,1,kingrichardiii,1592\nimages,1,kingrichardiii,1592\nSmall,1,kingrichardiii,1592\nbabies,1,kingrichardiii,1592\ncreatures,1,kingrichardiii,1592\nobey'd,1,kingrichardiii,1592\nobject,1,kingrichardiii,1592\noverweening,1,kingrichardiii,1592\nassistants,1,kingrichardiii,1592\nrear'd,1,kingrichardiii,1592\nattempts,1,kingrichardiii,1592\ndewy,1,kingrichardiii,1592\nnearest,1,kingrichardiii,1592\nterm,1,kingrichardiii,1592\nmenace,1,kingrichardiii,1592\nHast,1,kingrichardiii,1592\ncompetitors,1,kingrichardiii,1592\nShort,1,kingrichardiii,1592\nchance,1,kingrichardiii,1592\nprate,1,kingrichardiii,1592\nAccursed,1,kingrichardiii,1592\nmellow'd,1,kingrichardiii,1592\nalacrity,1,kingrichardiii,1592\nbeggary,1,kingrichardiii,1592\nAgain,1,kingrichardiii,1592\n'girdling,1,kingrichardiii,1592\njudgment,1,kingrichardiii,1592\ndaring,1,kingrichardiii,1592\ntoken,1,kingrichardiii,1592\nStony,1,kingrichardiii,1592\nconversation,1,kingrichardiii,1592\ntrial,1,kingrichardiii,1592\npurple,1,kingrichardiii,1592\nbrain'd,1,kingrichardiii,1592\nEnforced,1,kingrichardiii,1592\nhazard,1,kingrichardiii,1592\nLittle,1,kingrichardiii,1592\nStood,1,kingrichardiii,1592\nbroke,1,kingrichardiii,1592\nexpiate,1,kingrichardiii,1592\nUncharitably,1,kingrichardiii,1592\nbeams,1,kingrichardiii,1592\nliver'd,1,kingrichardiii,1592\nprays,1,kingrichardiii,1592\nroot,1,kingrichardiii,1592\nprecedent,1,kingrichardiii,1592\nrequites,1,kingrichardiii,1592\nservitor,1,kingrichardiii,1592\ncompact,1,kingrichardiii,1592\nconsumed,1,kingrichardiii,1592\nnobles,1,kingrichardiii,1592\nBetween,1,kingrichardiii,1592\nnods,1,kingrichardiii,1592\nexecute,1,kingrichardiii,1592\nfat,1,kingrichardiii,1592\nluck,1,kingrichardiii,1592\ntumbling,1,kingrichardiii,1592\ncontented,1,kingrichardiii,1592\nraze,1,kingrichardiii,1592\nroom,1,kingrichardiii,1592\ntherewith,1,kingrichardiii,1592\nnap,1,kingrichardiii,1592\nwhispers,1,kingrichardiii,1592\ntrained,1,kingrichardiii,1592\nbreathes,1,kingrichardiii,1592\nglories,1,kingrichardiii,1592\nventures,1,kingrichardiii,1592\nMatch,1,kingrichardiii,1592\nEleven,1,kingrichardiii,1592\nheavier,1,kingrichardiii,1592\nshameful,1,kingrichardiii,1592\nmaid,1,kingrichardiii,1592\nconsider'd,1,kingrichardiii,1592\nswallowing,1,kingrichardiii,1592\nSelves,1,kingrichardiii,1592\nSorry,1,kingrichardiii,1592\npiping,1,kingrichardiii,1592\nhoney,1,kingrichardiii,1592\nGuildfords,1,kingrichardiii,1592\nSpoke,1,kingrichardiii,1592\nhind,1,kingrichardiii,1592\nredoubted,1,kingrichardiii,1592\nCanst,1,kingrichardiii,1592\nforehead,1,kingrichardiii,1592\nDabbled,1,kingrichardiii,1592\nalabaster,1,kingrichardiii,1592\nrose,1,kingrichardiii,1592\nrascals,1,kingrichardiii,1592\n'Margaret,1,kingrichardiii,1592\nWestminster,1,kingrichardiii,1592\ntakest,1,kingrichardiii,1592\nIreland,1,kingrichardiii,1592\nfaction,1,kingrichardiii,1592\nqueen',1,kingrichardiii,1592\ncouldst,1,kingrichardiii,1592\nhelpless,1,kingrichardiii,1592\nbuilt,1,kingrichardiii,1592\nBrothers,1,kingrichardiii,1592\nBetter,1,kingrichardiii,1592\nprosperity,1,kingrichardiii,1592\nrepose,1,kingrichardiii,1592\nElse,1,kingrichardiii,1592\nsheweth,1,kingrichardiii,1592\nmidst,1,kingrichardiii,1592\ndeposed,1,kingrichardiii,1592\nmarks,1,kingrichardiii,1592\ncaparison,1,kingrichardiii,1592\nBack,1,kingrichardiii,1592\nwaken,1,kingrichardiii,1592\nsparing,1,kingrichardiii,1592\nafresh,1,kingrichardiii,1592\nproceed,1,kingrichardiii,1592\nwonder,1,kingrichardiii,1592\ngavest,1,kingrichardiii,1592\nhire,1,kingrichardiii,1592\nFuries,1,kingrichardiii,1592\nscroll,1,kingrichardiii,1592\ndamage,1,kingrichardiii,1592\nsignified,1,kingrichardiii,1592\nabroach,1,kingrichardiii,1592\nBade,1,kingrichardiii,1592\nholp'st,1,kingrichardiii,1592\nadoreth,1,kingrichardiii,1592\nrestore,1,kingrichardiii,1592\nconquer'd,1,kingrichardiii,1592\nrestless,1,kingrichardiii,1592\ngently,1,kingrichardiii,1592\nHoyday,1,kingrichardiii,1592\nnoon,1,kingrichardiii,1592\nproudly,1,kingrichardiii,1592\ncloy,1,kingrichardiii,1592\nrats,1,kingrichardiii,1592\ndisinherited,1,kingrichardiii,1592\nmildness,1,kingrichardiii,1592\nclergymen,1,kingrichardiii,1592\napostle,1,kingrichardiii,1592\nluxury,1,kingrichardiii,1592\ninfancy,1,kingrichardiii,1592\nunblown,1,kingrichardiii,1592\nFrozen,1,kingrichardiii,1592\nrash,1,kingrichardiii,1592\nclothe,1,kingrichardiii,1592\nbravely,1,kingrichardiii,1592\nestate,1,kingrichardiii,1592\npunched,1,kingrichardiii,1592\ndissembler,1,kingrichardiii,1592\nSix,1,kingrichardiii,1592\nmeanly,1,kingrichardiii,1592\nfeature,1,kingrichardiii,1592\nSleeps,1,kingrichardiii,1592\nexclamations,1,kingrichardiii,1592\n'Ay,1,kingrichardiii,1592\ndukes,1,kingrichardiii,1592\nsirrah,1,kingrichardiii,1592\nhies,1,kingrichardiii,1592\nLove,1,kingrichardiii,1592\ndangers,1,kingrichardiii,1592\nSlander,1,kingrichardiii,1592\nsmoothing,1,kingrichardiii,1592\nClean,1,kingrichardiii,1592\nSoft,1,kingrichardiii,1592\nrestrain,1,kingrichardiii,1592\ncapers,1,kingrichardiii,1592\nLethe,1,kingrichardiii,1592\nsubstance,1,kingrichardiii,1592\nslower,1,kingrichardiii,1592\nadventure,1,kingrichardiii,1592\nposterity,1,kingrichardiii,1592\n'Be,1,kingrichardiii,1592\nmeditating,1,kingrichardiii,1592\nannoy,1,kingrichardiii,1592\nexcused,1,kingrichardiii,1592\nblindly,1,kingrichardiii,1592\ncitizen,1,kingrichardiii,1592\nFlatter,1,kingrichardiii,1592\nWedges,1,kingrichardiii,1592\nadmit,1,kingrichardiii,1592\nSin,1,kingrichardiii,1592\nDeck'd,1,kingrichardiii,1592\ncharm,1,kingrichardiii,1592\nspicery,1,kingrichardiii,1592\narguments,1,kingrichardiii,1592\nmount,1,kingrichardiii,1592\nstays,1,kingrichardiii,1592\nmorrows,1,kingrichardiii,1592\ngrants,1,kingrichardiii,1592\nequally,1,kingrichardiii,1592\nHigh,1,kingrichardiii,1592\nmeet'st,1,kingrichardiii,1592\nquickly,1,kingrichardiii,1592\ngarden,1,kingrichardiii,1592\nCurse,1,kingrichardiii,1592\nthrall,1,kingrichardiii,1592\nmisdoubt,1,kingrichardiii,1592\no'erlook,1,kingrichardiii,1592\nyou'll,1,kingrichardiii,1592\nperform,1,kingrichardiii,1592\nthreefold,1,kingrichardiii,1592\nSlave,1,kingrichardiii,1592\nsprings,1,kingrichardiii,1592\nchurchmen,1,kingrichardiii,1592\nmisery,1,kingrichardiii,1592\nDarest,1,kingrichardiii,1592\nintestate,1,kingrichardiii,1592\nscars,1,kingrichardiii,1592\nHarford,1,kingrichardiii,1592\ndoomsday,1,kingrichardiii,1592\naccessary,1,kingrichardiii,1592\nscripture,1,kingrichardiii,1592\nTurks,1,kingrichardiii,1592\navouch,1,kingrichardiii,1592\nAlban's,1,kingrichardiii,1592\nwithholds,1,kingrichardiii,1592\nleaving,1,kingrichardiii,1592\npack'd,1,kingrichardiii,1592\ninjustice,1,kingrichardiii,1592\nDost,1,kingrichardiii,1592\nplaced,1,kingrichardiii,1592\nunprovided,1,kingrichardiii,1592\ndiscontent,1,kingrichardiii,1592\nspurn,1,kingrichardiii,1592\nseasons,1,kingrichardiii,1592\nairy,1,kingrichardiii,1592\ndevice,1,kingrichardiii,1592\nyourself's,1,kingrichardiii,1592\ndoors,1,kingrichardiii,1592\nlikewise,1,kingrichardiii,1592\nblessings,1,kingrichardiii,1592\nmilk,1,kingrichardiii,1592\nDelay,1,kingrichardiii,1592\nreplenished,1,kingrichardiii,1592\neaves,1,kingrichardiii,1592\nnod,1,kingrichardiii,1592\ncharitable,1,kingrichardiii,1592\ndisdain'd,1,kingrichardiii,1592\naiding,1,kingrichardiii,1592\nFriar,1,kingrichardiii,1592\nRICHMOND's,1,kingrichardiii,1592\nteeth,1,kingrichardiii,1592\nnon,1,kingrichardiii,1592\nbubble,1,kingrichardiii,1592\nprize,1,kingrichardiii,1592\nconclusion,1,kingrichardiii,1592\nshield,1,kingrichardiii,1592\nengross,1,kingrichardiii,1592\nDerby's,1,kingrichardiii,1592\nknave,1,kingrichardiii,1592\nplayfellows,1,kingrichardiii,1592\nPersuade,1,kingrichardiii,1592\nSons,1,kingrichardiii,1592\nMORTON,1,kingrichardiii,1592\nGrant,1,kingrichardiii,1592\nscepter'd,1,kingrichardiii,1592\nMark'd,1,kingrichardiii,1592\nreversed,1,kingrichardiii,1592\nsmother,1,kingrichardiii,1592\nAdvantaging,1,kingrichardiii,1592\nHither,1,kingrichardiii,1592\ntempers,1,kingrichardiii,1592\ndregs,1,kingrichardiii,1592\nfortnight,1,kingrichardiii,1592\nbeads,1,kingrichardiii,1592\nremorseful,1,kingrichardiii,1592\nunviolable,1,kingrichardiii,1592\nmisdeeds,1,kingrichardiii,1592\nstabbed,1,kingrichardiii,1592\ncourage,1,kingrichardiii,1592\nsovereign's,1,kingrichardiii,1592\nsqueak'd,1,kingrichardiii,1592\nmast,1,kingrichardiii,1592\ndevil',1,kingrichardiii,1592\ndistain,1,kingrichardiii,1592\ndearest,1,kingrichardiii,1592\naccustom'd,1,kingrichardiii,1592\npartake,1,kingrichardiii,1592\nunshapen,1,kingrichardiii,1592\nkissing,1,kingrichardiii,1592\n'G',1,kingrichardiii,1592\nproudest,1,kingrichardiii,1592\npresentation,1,kingrichardiii,1592\nFill'd,1,kingrichardiii,1592\nknown,1,kingrichardiii,1592\ngrandam's,1,kingrichardiii,1592\ntrough,1,kingrichardiii,1592\nWeigh,1,kingrichardiii,1592\nveil,1,kingrichardiii,1592\noracle,1,kingrichardiii,1592\nforsook,1,kingrichardiii,1592\nEndured,1,kingrichardiii,1592\nbecause,1,kingrichardiii,1592\nconjoin,1,kingrichardiii,1592\nwot,1,kingrichardiii,1592\nleader,1,kingrichardiii,1592\nmagician,1,kingrichardiii,1592\ninfants,1,kingrichardiii,1592\nblow,1,kingrichardiii,1592\nrevengeful,1,kingrichardiii,1592\ninfect,1,kingrichardiii,1592\nchide,1,kingrichardiii,1592\nregister'd,1,kingrichardiii,1592\narch,1,kingrichardiii,1592\nseal'd,1,kingrichardiii,1592\nbrethren,1,kingrichardiii,1592\nhigher,1,kingrichardiii,1592\ncaptive,1,kingrichardiii,1592\nplenteous,1,kingrichardiii,1592\nwretched'st,1,kingrichardiii,1592\naccompanied,1,kingrichardiii,1592\ncozen'd,1,kingrichardiii,1592\nnaught,1,kingrichardiii,1592\nForces,1,kingrichardiii,1592\nsmothered,1,kingrichardiii,1592\ngreediness,1,kingrichardiii,1592\nstratagems,1,kingrichardiii,1592\nmockery,1,kingrichardiii,1592\nthump'd,1,kingrichardiii,1592\ndivision,1,kingrichardiii,1592\nsayest,1,kingrichardiii,1592\nblasted,1,kingrichardiii,1592\nsunrising,1,kingrichardiii,1592\nvapour,1,kingrichardiii,1592\nweb,1,kingrichardiii,1592\nFatal,1,kingrichardiii,1592\nones,1,kingrichardiii,1592\nstain,1,kingrichardiii,1592\nfire,1,kingrichardiii,1592\napish,1,kingrichardiii,1592\nDorset's,1,kingrichardiii,1592\nexpedient,1,kingrichardiii,1592\nblameful,1,kingrichardiii,1592\nFound,1,kingrichardiii,1592\nbanks,1,kingrichardiii,1592\nWert,1,kingrichardiii,1592\nbreed,1,kingrichardiii,1592\nhowled,1,kingrichardiii,1592\nAwaked,1,kingrichardiii,1592\ntaste,1,kingrichardiii,1592\n'almost,1,kingrichardiii,1592\naffairs,1,kingrichardiii,1592\nfrightful,1,kingrichardiii,1592\ncoining,1,kingrichardiii,1592\ndesolation,1,kingrichardiii,1592\nproved,1,kingrichardiii,1592\nenacts,1,kingrichardiii,1592\nsupposest,1,kingrichardiii,1592\napology,1,kingrichardiii,1592\nflesh'd,1,kingrichardiii,1592\nWept,1,kingrichardiii,1592\nSabbath,1,kingrichardiii,1592\nScotland,1,kingrichardiii,1592\nperson's,1,kingrichardiii,1592\ncontemplation,1,kingrichardiii,1592\nstalk,1,kingrichardiii,1592\nsalt,1,kingrichardiii,1592\ntoday,1,kingrichardiii,1592\nformer,1,kingrichardiii,1592\npomp,1,kingrichardiii,1592\nindictment,1,kingrichardiii,1592\nthrow,1,kingrichardiii,1592\nstyle,1,kingrichardiii,1592\nLook'd,1,kingrichardiii,1592\nvines,1,kingrichardiii,1592\nwis,1,kingrichardiii,1592\nrepentant,1,kingrichardiii,1592\nexperience,1,kingrichardiii,1592\ndiscipline,1,kingrichardiii,1592\nfitteth,1,kingrichardiii,1592\nDeep,1,kingrichardiii,1592\nArmed,1,kingrichardiii,1592\nsleep's,1,kingrichardiii,1592\nstamp,1,kingrichardiii,1592\ndisdains,1,kingrichardiii,1592\nfive,1,kingrichardiii,1592\nWitness,1,kingrichardiii,1592\nWhisper,1,kingrichardiii,1592\ncapable,1,kingrichardiii,1592\ngrave's,1,kingrichardiii,1592\nreflecting,1,kingrichardiii,1592\nWent,1,kingrichardiii,1592\nRevolving,1,kingrichardiii,1592\nproposed,1,kingrichardiii,1592\nhandkerchief,1,kingrichardiii,1592\n'Lo,1,kingrichardiii,1592\nprivy,1,kingrichardiii,1592\nredemption,1,kingrichardiii,1592\nherbs,1,kingrichardiii,1592\nconfines,1,kingrichardiii,1592\ncourt,1,kingrichardiii,1592\nimpose,1,kingrichardiii,1592\nRavish,1,kingrichardiii,1592\nDespiteful,1,kingrichardiii,1592\nyoungest,1,kingrichardiii,1592\nhears,1,kingrichardiii,1592\nMoreover,1,kingrichardiii,1592\nestablish'd,1,kingrichardiii,1592\nfetch,1,kingrichardiii,1592\nfaultless,1,kingrichardiii,1592\nfetch'd,1,kingrichardiii,1592\nthird,1,kingrichardiii,1592\nsitting,1,kingrichardiii,1592\nDenounced,1,kingrichardiii,1592\nfalchion,1,kingrichardiii,1592\nmeasures,1,kingrichardiii,1592\ntractable,1,kingrichardiii,1592\ncreation,1,kingrichardiii,1592\nbeastly,1,kingrichardiii,1592\nsteel'd,1,kingrichardiii,1592\nmoment,1,kingrichardiii,1592\nbloodless,1,kingrichardiii,1592\nwaking,1,kingrichardiii,1592\nallegiance,1,kingrichardiii,1592\nmeaner,1,kingrichardiii,1592\ncloset,1,kingrichardiii,1592\nrecover,1,kingrichardiii,1592\ncity's,1,kingrichardiii,1592\nconspire,1,kingrichardiii,1592\ndimming,1,kingrichardiii,1592\nchristen'd,1,kingrichardiii,1592\nrelent,1,kingrichardiii,1592\nabjects,1,kingrichardiii,1592\nclock,1,kingrichardiii,1592\nheaps,1,kingrichardiii,1592\nSaw,1,kingrichardiii,1592\nbigamy,1,kingrichardiii,1592\nDesire,1,kingrichardiii,1592\nShaw,1,kingrichardiii,1592\nUngovern'd,1,kingrichardiii,1592\nseniory,1,kingrichardiii,1592\nsalutation,1,kingrichardiii,1592\nresemblance,1,kingrichardiii,1592\nalarums,1,kingrichardiii,1592\nstanding,1,kingrichardiii,1592\nlessen'd,1,kingrichardiii,1592\ncount,1,kingrichardiii,1592\nknightly,1,kingrichardiii,1592\ndistress'd,1,kingrichardiii,1592\nnomination,1,kingrichardiii,1592\nniece,1,kingrichardiii,1592\nadulterate,1,kingrichardiii,1592\nshamefully,1,kingrichardiii,1592\nSleeping,1,kingrichardiii,1592\nflint,1,kingrichardiii,1592\nvenom'd,1,kingrichardiii,1592\npatiently,1,kingrichardiii,1592\ntorture,1,kingrichardiii,1592\nHASTINGS',1,kingrichardiii,1592\nProvoke,1,kingrichardiii,1592\nscarr'd,1,kingrichardiii,1592\nissued,1,kingrichardiii,1592\nchastisement,1,kingrichardiii,1592\nmaid's,1,kingrichardiii,1592\n'We,1,kingrichardiii,1592\ndust,1,kingrichardiii,1592\n'True,1,kingrichardiii,1592\ndusky,1,kingrichardiii,1592\nunadvisedly,1,kingrichardiii,1592\nHereafter,1,kingrichardiii,1592\nslewest,1,kingrichardiii,1592\nblasts,1,kingrichardiii,1592\n'The,1,kingrichardiii,1592\ninterr'd,1,kingrichardiii,1592\nreplying,1,kingrichardiii,1592\nencloseth,1,kingrichardiii,1592\nThrow,1,kingrichardiii,1592\nspacious,1,kingrichardiii,1592\nmounting,1,kingrichardiii,1592\ntrusty,1,kingrichardiii,1592\npreferments,1,kingrichardiii,1592\nstandard,1,kingrichardiii,1592\ngrowing,1,kingrichardiii,1592\nambition,1,kingrichardiii,1592\nsolemnly,1,kingrichardiii,1592\nmethoughts,1,kingrichardiii,1592\nhidden,1,kingrichardiii,1592\nbleed,1,kingrichardiii,1592\nreeling,1,kingrichardiii,1592\ndugs,1,kingrichardiii,1592\nblemish,1,kingrichardiii,1592\nBrittany,1,kingrichardiii,1592\npride,1,kingrichardiii,1592\nsaith,1,kingrichardiii,1592\nwanton,1,kingrichardiii,1592\nimposition,1,kingrichardiii,1592\nrags,1,kingrichardiii,1592\ndying,1,kingrichardiii,1592\nlegion,1,kingrichardiii,1592\nuncle's,1,kingrichardiii,1592\nbereft,1,kingrichardiii,1592\ninstinct,1,kingrichardiii,1592\nadmitted,1,kingrichardiii,1592\napace,1,kingrichardiii,1592\nvillains,1,kingrichardiii,1592\ncomplain,1,kingrichardiii,1592\nemulation,1,kingrichardiii,1592\nmultitude,1,kingrichardiii,1592\nbreakfast,1,kingrichardiii,1592\nwitted,1,kingrichardiii,1592\nThree,1,kingrichardiii,1592\nShine,1,kingrichardiii,1592\nThrows,1,kingrichardiii,1592\nbounty,1,kingrichardiii,1592\nruins,1,kingrichardiii,1592\nenforced,1,kingrichardiii,1592\nShame,1,kingrichardiii,1592\nhail,1,kingrichardiii,1592\nConsisting,1,kingrichardiii,1592\nirons,1,kingrichardiii,1592\nshriving,1,kingrichardiii,1592\nsweets,1,kingrichardiii,1592\ngrossness,1,kingrichardiii,1592\ndiscover'd,1,kingrichardiii,1592\nmightily,1,kingrichardiii,1592\nfix'd,1,kingrichardiii,1592\nanchors,1,kingrichardiii,1592\nunwilligness,1,kingrichardiii,1592\nunwittingly,1,kingrichardiii,1592\nreposing,1,kingrichardiii,1592\nmettle,1,kingrichardiii,1592\noblivion,1,kingrichardiii,1592\nmarsh,1,kingrichardiii,1592\nransom,1,kingrichardiii,1592\npenitent,1,kingrichardiii,1592\nwatery,1,kingrichardiii,1592\nserved,1,kingrichardiii,1592\nHeaven,1,kingrichardiii,1592\ndisobeys,1,kingrichardiii,1592\nestates,1,kingrichardiii,1592\nedict,1,kingrichardiii,1592\nfallen,1,kingrichardiii,1592\nFainting,1,kingrichardiii,1592\ncharges,1,kingrichardiii,1592\nTouches,1,kingrichardiii,1592\ngraft,1,kingrichardiii,1592\nfondly,1,kingrichardiii,1592\nbunchback'd,1,kingrichardiii,1592\nforfeit,1,kingrichardiii,1592\nblemished,1,kingrichardiii,1592\nlute,1,kingrichardiii,1592\nRobert,1,kingrichardiii,1592\nRude,1,kingrichardiii,1592\nhack'd,1,kingrichardiii,1592\nUnmeritable,1,kingrichardiii,1592\ninclination,1,kingrichardiii,1592\ncompass,1,kingrichardiii,1592\nbitterness,1,kingrichardiii,1592\nlust,1,kingrichardiii,1592\nCancel,1,kingrichardiii,1592\ndisposition,1,kingrichardiii,1592\nrain,1,kingrichardiii,1592\nunite,1,kingrichardiii,1592\nPlead,1,kingrichardiii,1592\ndubb'd,1,kingrichardiii,1592\nSaddle,1,kingrichardiii,1592\nelvish,1,kingrichardiii,1592\nwolf,1,kingrichardiii,1592\nfarther,1,kingrichardiii,1592\ntouching,1,kingrichardiii,1592\nAmongst,1,kingrichardiii,1592\nserves,1,kingrichardiii,1592\nwooer,1,kingrichardiii,1592\nembark'd,1,kingrichardiii,1592\nRush,1,kingrichardiii,1592\nclout,1,kingrichardiii,1592\nwent,1,kingrichardiii,1592\nstirs,1,kingrichardiii,1592\nwhence,1,kingrichardiii,1592\nWhispers,1,kingrichardiii,1592\ngifts,1,kingrichardiii,1592\ncovet,1,kingrichardiii,1592\nglad,1,kingrichardiii,1592\nbelch,1,kingrichardiii,1592\nStrike,1,kingrichardiii,1592\nhideous,1,kingrichardiii,1592\nShow,1,kingrichardiii,1592\ngarlands,1,kingrichardiii,1592\nsails,1,kingrichardiii,1592\ntable,1,kingrichardiii,1592\ndispatch'd,1,kingrichardiii,1592\ncomputation,1,kingrichardiii,1592\nsnail,1,kingrichardiii,1592\ntongueless,1,kingrichardiii,1592\nadvertised,1,kingrichardiii,1592\nMany,1,kingrichardiii,1592\npedlar,1,kingrichardiii,1592\ncloth,1,kingrichardiii,1592\nhighly,1,kingrichardiii,1592\nunpossess'd,1,kingrichardiii,1592\ngiving,1,kingrichardiii,1592\nstolen,1,kingrichardiii,1592\nunited,1,kingrichardiii,1592\nGrossly,1,kingrichardiii,1592\nquest,1,kingrichardiii,1592\nmista'en,1,kingrichardiii,1592\nwilful,1,kingrichardiii,1592\nNearer,1,kingrichardiii,1592\ndaggers,1,kingrichardiii,1592\ncastaways,1,kingrichardiii,1592\nProceed,1,kingrichardiii,1592\nlump,1,kingrichardiii,1592\nlasting,1,kingrichardiii,1592\nsafest,1,kingrichardiii,1592\ndarkly,1,kingrichardiii,1592\nSpur,1,kingrichardiii,1592\nrace,1,kingrichardiii,1592\ngratulate,1,kingrichardiii,1592\nkinsman,1,kingrichardiii,1592\nmethinks,1,kingrichardiii,1592\ngrand,1,kingrichardiii,1592\nprodigality,1,kingrichardiii,1592\nreturns,1,kingrichardiii,1592\nkites,1,kingrichardiii,1592\nworm,1,kingrichardiii,1592\ninductions,1,kingrichardiii,1592\nWarwick's,1,kingrichardiii,1592\nletter,1,kingrichardiii,1592\nstab'dst,1,kingrichardiii,1592\nrighteous,1,kingrichardiii,1592\nprolong'd,1,kingrichardiii,1592\nroses,1,kingrichardiii,1592\nfighting,1,kingrichardiii,1592\npassing,1,kingrichardiii,1592\nlodged,1,kingrichardiii,1592\nride,1,kingrichardiii,1592\noverboard,1,kingrichardiii,1592\nenfranchise,1,kingrichardiii,1592\ntragical,1,kingrichardiii,1592\nflame,1,kingrichardiii,1592\nfit,1,kingrichardiii,1592\nSorrow,1,kingrichardiii,1592\noffices,1,kingrichardiii,1592\ninvocate,1,kingrichardiii,1592\nunfinish'd,1,kingrichardiii,1592\nstains,1,kingrichardiii,1592\nAttend,1,kingrichardiii,1592\nopprobriously,1,kingrichardiii,1592\ncherry,1,kingrichardiii,1592\nflaky,1,kingrichardiii,1592\nswallow's,1,kingrichardiii,1592\ncontinue,1,kingrichardiii,1592\nMadest,1,kingrichardiii,1592\npreservation,1,kingrichardiii,1592\nlascivious,1,kingrichardiii,1592\nreprove,1,kingrichardiii,1592\nImagine,1,kingrichardiii,1592\nthereby,1,kingrichardiii,1592\nNear,1,kingrichardiii,1592\nbard,1,kingrichardiii,1592\nthunder,1,kingrichardiii,1592\nmeddle,1,kingrichardiii,1592\nanswer'd,1,kingrichardiii,1592\nshown,1,kingrichardiii,1592\nwide,1,kingrichardiii,1592\ntail,1,kingrichardiii,1592\nshows,1,kingrichardiii,1592\nIncapable,1,kingrichardiii,1592\nunfold,1,kingrichardiii,1592\narrogance,1,kingrichardiii,1592\nMother,1,kingrichardiii,1592\nan't,1,kingrichardiii,1592\nFriars,1,kingrichardiii,1592\nbutcher,1,kingrichardiii,1592\nbeware,1,kingrichardiii,1592\nmates,1,kingrichardiii,1592\nStratford,1,kingrichardiii,1592\njourneys,1,kingrichardiii,1592\nTalbot,1,kingrichardiii,1592\nbars,1,kingrichardiii,1592\nreproach,1,kingrichardiii,1592\nincur,1,kingrichardiii,1592\nclient,1,kingrichardiii,1592\ncheered,1,kingrichardiii,1592\nslanderous,1,kingrichardiii,1592\nappointed,1,kingrichardiii,1592\naccuseth,1,kingrichardiii,1592\nbalm,1,kingrichardiii,1592\nwill't,1,kingrichardiii,1592\ntame,1,kingrichardiii,1592\nbounds,1,kingrichardiii,1592\nweakness,1,kingrichardiii,1592\nsecrets,1,kingrichardiii,1592\nprefer,1,kingrichardiii,1592\nField,1,kingrichardiii,1592\nsongs,1,kingrichardiii,1592\n'Clarence,1,kingrichardiii,1592\nboldly,1,kingrichardiii,1592\ndismay'd,1,kingrichardiii,1592\nfare,1,kingrichardiii,1592\nmischance,1,kingrichardiii,1592\nmeets,1,kingrichardiii,1592\nfeeble,1,kingrichardiii,1592\nlights,1,kingrichardiii,1592\nfavourable,1,kingrichardiii,1592\ngallant,1,kingrichardiii,1592\nlag,1,kingrichardiii,1592\naccusers,1,kingrichardiii,1592\ntimorous,1,kingrichardiii,1592\ncalendar,1,kingrichardiii,1592\ndeparture,1,kingrichardiii,1592\nsojourn,1,kingrichardiii,1592\nfalsely,1,kingrichardiii,1592\norient,1,kingrichardiii,1592\nfolks,1,kingrichardiii,1592\nwelcomer,1,kingrichardiii,1592\nfruitful,1,kingrichardiii,1592\nbind,1,kingrichardiii,1592\naloft,1,kingrichardiii,1592\ncup,1,kingrichardiii,1592\nhigh'st,1,kingrichardiii,1592\nexcursions,1,kingrichardiii,1592\nsunder'd,1,kingrichardiii,1592\ncue,1,kingrichardiii,1592\nperish,1,kingrichardiii,1592\nunwise,1,kingrichardiii,1592\nfearful'st,1,kingrichardiii,1592\nconsists,1,kingrichardiii,1592\ntorment,1,kingrichardiii,1592\nmothers,1,kingrichardiii,1592\nLines,1,kingrichardiii,1592\nEvery,1,kingrichardiii,1592\nVillains,1,kingrichardiii,1592\nunthankfulness,1,kingrichardiii,1592\nLed,1,kingrichardiii,1592\ndallying,1,kingrichardiii,1592\nrecorder,1,kingrichardiii,1592\nrecorded,1,kingrichardiii,1592\nought,1,kingrichardiii,1592\nshook,1,kingrichardiii,1592\naccident,1,kingrichardiii,1592\nempire,1,kingrichardiii,1592\ndungeon,1,kingrichardiii,1592\nCanterbury,1,kingrichardiii,1592\nholp,1,kingrichardiii,1592\nvisiting,1,kingrichardiii,1592\nvictories,1,kingrichardiii,1592\nNone,1,kingrichardiii,1592\nRelenting,1,kingrichardiii,1592\nhole,1,kingrichardiii,1592\nstand'st,1,kingrichardiii,1592\ndevout,1,kingrichardiii,1592\nlackey,1,kingrichardiii,1592\nhelmets,1,kingrichardiii,1592\ncur,1,kingrichardiii,1592\nLives,1,kingrichardiii,1592\ngiddy,1,kingrichardiii,1592\nmethod,1,kingrichardiii,1592\nArise,1,kingrichardiii,1592\nEnsuing,1,kingrichardiii,1592\nAlthough,1,kingrichardiii,1592\nensnareth,1,kingrichardiii,1592\ncounterfeit,1,kingrichardiii,1592\ncowards,1,kingrichardiii,1592\nwhetted,1,kingrichardiii,1592\nsunder,1,kingrichardiii,1592\nfatherless,1,kingrichardiii,1592\nmurdering,1,kingrichardiii,1592\ncheerly,1,kingrichardiii,1592\ntire,1,kingrichardiii,1592\ncircling,1,kingrichardiii,1592\nforsooth,1,kingrichardiii,1592\nmonastery,1,kingrichardiii,1592\nencouragement,1,kingrichardiii,1592\nhorses,1,kingrichardiii,1592\nstartled,1,kingrichardiii,1592\nremnant,1,kingrichardiii,1592\ngrudge,1,kingrichardiii,1592\nresolution,1,kingrichardiii,1592\nDay,1,kingrichardiii,1592\nslanders,1,kingrichardiii,1592\nAwake,1,kingrichardiii,1592\nRideth,1,kingrichardiii,1592\ndicipline,1,kingrichardiii,1592\nfalsehood,1,kingrichardiii,1592\ngives,1,kingrichardiii,1592\ntask,1,kingrichardiii,1592\nnotwithstanding,1,kingrichardiii,1592\nintents,1,kingrichardiii,1592\nInquire,1,kingrichardiii,1592\nSeize,1,kingrichardiii,1592\nNeglect,1,kingrichardiii,1592\nunpitied,1,kingrichardiii,1592\nalso,1,kingrichardiii,1592\nshout,1,kingrichardiii,1592\nGramercy,1,kingrichardiii,1592\nAnon,1,kingrichardiii,1592\nprettily,1,kingrichardiii,1592\nTetchy,1,kingrichardiii,1592\nthronging,1,kingrichardiii,1592\ncope,1,kingrichardiii,1592\nprithee,1,kingrichardiii,1592\nsear,1,kingrichardiii,1592\nbattalion,1,kingrichardiii,1592\nrecomforture,1,kingrichardiii,1592\nlovely,1,kingrichardiii,1592\ncommission,1,kingrichardiii,1592\ncheerful,1,kingrichardiii,1592\ndisturbers,1,kingrichardiii,1592\nassembled,1,kingrichardiii,1592\nvexation,1,kingrichardiii,1592\nwaiting,1,kingrichardiii,1592\nattendance,1,kingrichardiii,1592\nalways,1,kingrichardiii,1592\nhearse,1,kingrichardiii,1592\nbachelor,1,kingrichardiii,1592\nblade,1,kingrichardiii,1592\ngossips,1,kingrichardiii,1592\nlow,1,kingrichardiii,1592\nsweat,1,kingrichardiii,1592\nvictress,1,kingrichardiii,1592\nacts,1,kingrichardiii,1592\ndelightful,1,kingrichardiii,1592\ndrunk,1,kingrichardiii,1592\nadorn,1,kingrichardiii,1592\nbabe,1,kingrichardiii,1592\nsorrowing,1,kingrichardiii,1592\ncaptain,1,kingrichardiii,1592\nconverse,1,kingrichardiii,1592\nneedful,1,kingrichardiii,1592\noffspring,1,kingrichardiii,1592\ncurrents,1,kingrichardiii,1592\nheralds,1,kingrichardiii,1592\nSeer,1,kingrichardiii,1592\nAbides,1,kingrichardiii,1592\nseek,1,kingrichardiii,1592\nfights,1,kingrichardiii,1592\ntalking,1,kingrichardiii,1592\nfeeling,1,kingrichardiii,1592\ncog,1,kingrichardiii,1592\nconfederates,1,kingrichardiii,1592\nskill'd,1,kingrichardiii,1592\nTruly,1,kingrichardiii,1592\nharmful,1,kingrichardiii,1592\nwed'st,1,kingrichardiii,1592\narrows,1,kingrichardiii,1592\ncamest,1,kingrichardiii,1592\nothers',1,kingrichardiii,1592\nsees,1,kingrichardiii,1592\nconclude,1,kingrichardiii,1592\nsteep'd,1,kingrichardiii,1592\nvehement,1,kingrichardiii,1592\nMine,1,kingrichardiii,1592\nshapes,1,kingrichardiii,1592\nfellows,1,kingrichardiii,1592\nplanets,1,kingrichardiii,1592\nprophecy,1,kingrichardiii,1592\nkennel,1,kingrichardiii,1592\nhound,1,kingrichardiii,1592\nshaped,1,kingrichardiii,1592\n'shall,1,kingrichardiii,1592\naspiring,1,kingrichardiii,1592\nthereon,1,kingrichardiii,1592\nhull,1,kingrichardiii,1592\nsuspects,1,kingrichardiii,1592\nvassals,1,kingrichardiii,1592\nfawns,1,kingrichardiii,1592\nneedless,1,kingrichardiii,1592\nPray,1,kingrichardiii,1592\nEnglish,1,kingrichardiii,1592\nwearied,1,kingrichardiii,1592\nexpecting,1,kingrichardiii,1592\nconfirm'd,1,kingrichardiii,1592\nbasilisks,1,kingrichardiii,1592\nchanging,1,kingrichardiii,1592\nsportive,1,kingrichardiii,1592\nunfashionable,1,kingrichardiii,1592\nheavenly,1,kingrichardiii,1592\nimpeachments,1,kingrichardiii,1592\naffright,1,kingrichardiii,1592\nTalkers,1,kingrichardiii,1592\nloveth,1,kingrichardiii,1592\ntree,1,kingrichardiii,1592\nWiltshire,1,kingrichardiii,1592\npour,1,kingrichardiii,1592\nloyalty,1,kingrichardiii,1592\nheels,1,kingrichardiii,1592\nNorthampton,1,kingrichardiii,1592\nwretches,1,kingrichardiii,1592\ntrembles,1,kingrichardiii,1592\njolly,1,kingrichardiii,1592\ncountrymen,1,kingrichardiii,1592\nbouted,1,kingrichardiii,1592\nprotector's,1,kingrichardiii,1592\nUse,1,kingrichardiii,1592\nremove,1,kingrichardiii,1592\nHumphrey,1,kingrichardiii,1592\nbeheld,1,kingrichardiii,1592\nblushing,1,kingrichardiii,1592\nrancorous,1,kingrichardiii,1592\ngods,1,kingrichardiii,1592\nenrich'd,1,kingrichardiii,1592\nbelieved,1,kingrichardiii,1592\nindirectly,1,kingrichardiii,1592\nfloods,1,kingrichardiii,1592\npenetrable,1,kingrichardiii,1592\nLately,1,kingrichardiii,1592\nForthwith,1,kingrichardiii,1592\nCuts,1,kingrichardiii,1592\nbutchered,1,kingrichardiii,1592\nprison,1,kingrichardiii,1592\nRail,1,kingrichardiii,1592\nunmoan'd,1,kingrichardiii,1592\nGRAY,1,kingrichardiii,1592\nfolded,1,kingrichardiii,1592\nSelf,1,kingrichardiii,1592\nFamiliarly,1,kingrichardiii,1592\nobsequiously,1,kingrichardiii,1592\nLieutenant,1,kingrichardiii,1592\nbade,1,kingrichardiii,1592\nswell,1,kingrichardiii,1592\nherald,1,kingrichardiii,1592\nseized,1,kingrichardiii,1592\nsullen,1,kingrichardiii,1592\ninjured,1,kingrichardiii,1592\nbarren,1,kingrichardiii,1592\nformal,1,kingrichardiii,1592\nfearing,1,kingrichardiii,1592\nPerjury,1,kingrichardiii,1592\n'ifs',1,kingrichardiii,1592\nhighest,1,kingrichardiii,1592\nrenders,1,kingrichardiii,1592\nafterward,1,kingrichardiii,1592\nslumbers,1,kingrichardiii,1592\nbolder,1,kingrichardiii,1592\nspiders,1,kingrichardiii,1592\npalpable,1,kingrichardiii,1592\nstarted,1,kingrichardiii,1592\nFouler,1,kingrichardiii,1592\nRough,1,kingrichardiii,1592\n'zounds,1,kingrichardiii,1592\nTwo,1,kingrichardiii,1592\nImmaculate,1,kingrichardiii,1592\nWoodville,1,kingrichardiii,1592\novermuch,1,kingrichardiii,1592\nconqueror's,1,kingrichardiii,1592\nstorms,1,kingrichardiii,1592\nslow,1,kingrichardiii,1592\nlordship's,1,kingrichardiii,1592\nmeekness,1,kingrichardiii,1592\nNothing,1,kingrichardiii,1592\nendured,1,kingrichardiii,1592\nservants,1,kingrichardiii,1592\nslumber,1,kingrichardiii,1592\nsuitor,1,kingrichardiii,1592\neat,1,kingrichardiii,1592\nLimit,1,kingrichardiii,1592\nlays,1,kingrichardiii,1592\nlolling,1,kingrichardiii,1592\nimagination,1,kingrichardiii,1592\nhonesty,1,kingrichardiii,1592\npetty,1,kingrichardiii,1592\nendow,1,kingrichardiii,1592\nmap,1,kingrichardiii,1592\nspirits,1,kingrichardiii,1592\nacquittance,1,kingrichardiii,1592\nstarts,1,kingrichardiii,1592\nbetroth'd,1,kingrichardiii,1592\nANOTHER,1,kingrichardiii,1592\ngains,1,kingrichardiii,1592\ndebase,1,kingrichardiii,1592\nheinous,1,kingrichardiii,1592\naward,1,kingrichardiii,1592\ndisposing,1,kingrichardiii,1592\ncomfortable,1,kingrichardiii,1592\nFive,1,kingrichardiii,1592\nscum,1,kingrichardiii,1592\nseldom,1,kingrichardiii,1592\nchaplain,1,kingrichardiii,1592\nsmiling,1,kingrichardiii,1592\ngulls,1,kingrichardiii,1592\nunfelt,1,kingrichardiii,1592\nburst,1,kingrichardiii,1592\nNamely,1,kingrichardiii,1592\npoets,1,kingrichardiii,1592\nsteeds,1,kingrichardiii,1592\nunvalued,1,kingrichardiii,1592\nParis,1,kingrichardiii,1592\nslug,1,kingrichardiii,1592\ncompounded,1,kingrichardiii,1592\ntrusted,1,kingrichardiii,1592\nHolborn,1,kingrichardiii,1592\ncourageous,1,kingrichardiii,1592\ndefacer,1,kingrichardiii,1592\nlurk'd,1,kingrichardiii,1592\nreprehended,1,kingrichardiii,1592\nunrespective,1,kingrichardiii,1592\nlamenting,1,kingrichardiii,1592\nreadiness,1,kingrichardiii,1592\nelbow,1,kingrichardiii,1592\nmeeting,1,kingrichardiii,1592\nClock,1,kingrichardiii,1592\nbuzzards,1,kingrichardiii,1592\nnuns,1,kingrichardiii,1592\nbeholders,1,kingrichardiii,1592\nscornfully,1,kingrichardiii,1592\nburns,1,kingrichardiii,1592\nrepay,1,kingrichardiii,1592\nwhit,1,kingrichardiii,1592\ncomforter,1,kingrichardiii,1592\nconjures,1,kingrichardiii,1592\nwhip,1,kingrichardiii,1592\nAbase,1,kingrichardiii,1592\nladies,1,kingrichardiii,1592\nbody's,1,kingrichardiii,1592\nMen,1,kingrichardiii,1592\npowerful,1,kingrichardiii,1592\ngems,1,kingrichardiii,1592\nbiting,1,kingrichardiii,1592\nthinking,1,kingrichardiii,1592\nAway,1,kingrichardiii,1592\nNeighbours,1,kingrichardiii,1592\nGazed,1,kingrichardiii,1592\nbethink,1,kingrichardiii,1592\nAbate,1,kingrichardiii,1592\nsolus,1,kingrichardiii,1592\npunishment,1,kingrichardiii,1592\nnumb,1,kingrichardiii,1592\ntaunted,1,kingrichardiii,1592\nstrokes,1,kingrichardiii,1592\nforgetfulness,1,kingrichardiii,1592\nWoe's,1,kingrichardiii,1592\nappearing,1,kingrichardiii,1592\nlark,1,kingrichardiii,1592\namorous,1,kingrichardiii,1592\nSleep,1,kingrichardiii,1592\nPilate,1,kingrichardiii,1592\nwhiles,1,kingrichardiii,1592\nthereupon,1,kingrichardiii,1592\nhedgehog,1,kingrichardiii,1592\nsometimes,1,kingrichardiii,1592\nwearisome,1,kingrichardiii,1592\nuntainted,1,kingrichardiii,1592\nvizard,1,kingrichardiii,1592\nGENTLEMEN,1,kingrichardiii,1592\nnativity,1,kingrichardiii,1592\npolitic,1,kingrichardiii,1592\ngulf,1,kingrichardiii,1592\nsuckers,1,kingrichardiii,1592\nfleeting,1,kingrichardiii,1592\nplucks,1,kingrichardiii,1592\npositively,1,kingrichardiii,1592\npreposterous,1,kingrichardiii,1592\nliquid,1,kingrichardiii,1592\nflag,1,kingrichardiii,1592\ndemise,1,kingrichardiii,1592\nbetimes,1,kingrichardiii,1592\nupbraidings,1,kingrichardiii,1592\nimporting,1,kingrichardiii,1592\nurging,1,kingrichardiii,1592\nwhet,1,kingrichardiii,1592\nharms,1,kingrichardiii,1592\npuissance,1,kingrichardiii,1592\nSomewhat,1,kingrichardiii,1592\nlevied,1,kingrichardiii,1592\ninstalment,1,kingrichardiii,1592\nskulls,1,kingrichardiii,1592\nlovelier,1,kingrichardiii,1592\nappetite,1,kingrichardiii,1592\nTellest,1,kingrichardiii,1592\nragged,1,kingrichardiii,1592\nreprehend,1,kingrichardiii,1592\nLend,1,kingrichardiii,1592\nChrist's,1,kingrichardiii,1592\ncordial,1,kingrichardiii,1592\nunpleasing,1,kingrichardiii,1592\ndemand'st,1,kingrichardiii,1592\nexhale,1,kingrichardiii,1592\nripen'd,1,kingrichardiii,1592\ncompell'd,1,kingrichardiii,1592\ntry,1,kingrichardiii,1592\nshrewd,1,kingrichardiii,1592\nassurance,1,kingrichardiii,1592\nforeward,1,kingrichardiii,1592\nsentinels,1,kingrichardiii,1592\nwitty,1,kingrichardiii,1592\nsentence,1,kingrichardiii,1592\n'This,1,kingrichardiii,1592\ndate,1,kingrichardiii,1592\nmouths,1,kingrichardiii,1592\nspring,1,kingrichardiii,1592\nShamed,1,kingrichardiii,1592\nhired,1,kingrichardiii,1592\ncover'd,1,kingrichardiii,1592\nreply,1,kingrichardiii,1592\ndenying,1,kingrichardiii,1592\nPLANTAGENET,1,kingrichardiii,1592\ncorrupting,1,kingrichardiii,1592\nyesternight,1,kingrichardiii,1592\ndash,1,kingrichardiii,1592\npattern,1,kingrichardiii,1592\nTim,1,kingrichardiii,1592\nconfirm,1,kingrichardiii,1592\nrespect,1,kingrichardiii,1592\nasleep,1,kingrichardiii,1592\nrecure,1,kingrichardiii,1592\npell,1,kingrichardiii,1592\ncentre,1,kingrichardiii,1592\ndestined,1,kingrichardiii,1592\nharsh,1,kingrichardiii,1592\nbrat,1,kingrichardiii,1592\nswallow,1,kingrichardiii,1592\nhonour's,1,kingrichardiii,1592\nSteep'd,1,kingrichardiii,1592\nnovice,1,kingrichardiii,1592\nboisterous,1,kingrichardiii,1592\nwooer's,1,kingrichardiii,1592\ntottering,1,kingrichardiii,1592\nsolace,1,kingrichardiii,1592\ntoe,1,kingrichardiii,1592\nRice,1,kingrichardiii,1592\nweight,1,kingrichardiii,1592\nunmindful,1,kingrichardiii,1592\nprelate,1,kingrichardiii,1592\nrocky,1,kingrichardiii,1592\nlawless,1,kingrichardiii,1592\nlord's,1,kingrichardiii,1592\nthriving,1,kingrichardiii,1592\nadversary's,1,kingrichardiii,1592\nhoping,1,kingrichardiii,1592\ntoy,1,kingrichardiii,1592\nanother's,1,kingrichardiii,1592\nbred,1,kingrichardiii,1592\nproclamation,1,kingrichardiii,1592\nmum,1,kingrichardiii,1592\nDRAMATIS,1,kingrichardiii,1592\ncertain,1,kingrichardiii,1592\nharts,1,kingrichardiii,1592\nflout,1,kingrichardiii,1592\narmed,1,kingrichardiii,1592\nChristendom,1,kingrichardiii,1592\nrewards,1,kingrichardiii,1592\nFlock,1,kingrichardiii,1592\ngnaw,1,kingrichardiii,1592\nhe'll,1,kingrichardiii,1592\ntrees,1,kingrichardiii,1592\nfrail,1,kingrichardiii,1592\nascend,1,kingrichardiii,1592\ncabin,1,kingrichardiii,1592\npirates,1,kingrichardiii,1592\ndew,1,kingrichardiii,1592\npill'd,1,kingrichardiii,1592\nimpotent,1,kingrichardiii,1592\ninheritor,1,kingrichardiii,1592\nprivate,1,kingrichardiii,1592\nUncertain,1,kingrichardiii,1592\narbitrement,1,kingrichardiii,1592\nfigured,1,kingrichardiii,1592\nreconcile,1,kingrichardiii,1592\nimmured,1,kingrichardiii,1592\nrepaid,1,kingrichardiii,1592\nslip,1,kingrichardiii,1592\nstragglers,1,kingrichardiii,1592\nprincess,1,kingrichardiii,1592\nmutual,1,kingrichardiii,1592\nsoundly,1,kingrichardiii,1592\nhellish,1,kingrichardiii,1592\ntoads,1,kingrichardiii,1592\nmid,1,kingrichardiii,1592\nunderhand,1,kingrichardiii,1592\nKent,1,kingrichardiii,1592\ngear,1,kingrichardiii,1592\nFight,1,kingrichardiii,1592\ndoting,1,kingrichardiii,1592\nneighbour,1,kingrichardiii,1592\nHumbly,1,kingrichardiii,1592\nshoes,1,kingrichardiii,1592\nEnsues,1,kingrichardiii,1592\nlace,1,kingrichardiii,1592\nmarked,1,kingrichardiii,1592\nwanteth,1,kingrichardiii,1592\nFind,1,kingrichardiii,1592\nobedience,1,kingrichardiii,1592\nflattering,1,kingrichardiii,1592\nshape,1,kingrichardiii,1592\ntread,1,kingrichardiii,1592\nBound,1,kingrichardiii,1592\nKept,1,kingrichardiii,1592\nbewitch'd,1,kingrichardiii,1592\nRutland's,1,kingrichardiii,1592\nmarket,1,kingrichardiii,1592\noverta'en,1,kingrichardiii,1592\ndallies,1,kingrichardiii,1592\nBrief,1,kingrichardiii,1592\nunsatiate,1,kingrichardiii,1592\ndallied,1,kingrichardiii,1592\nshare,1,kingrichardiii,1592\ndissemble,1,kingrichardiii,1592\nturn'd,1,kingrichardiii,1592\nusurped,1,kingrichardiii,1592\nships,1,kingrichardiii,1592\nFill,1,kingrichardiii,1592\ncedar's,1,kingrichardiii,1592\nBless'd,1,kingrichardiii,1592\nexempt,1,kingrichardiii,1592\nvanish'd,1,kingrichardiii,1592\nsapling,1,kingrichardiii,1592\nmajestical,1,kingrichardiii,1592\ngrounded,1,kingrichardiii,1592\nshock,1,kingrichardiii,1592\nending,1,kingrichardiii,1592\nservant's,1,kingrichardiii,1592\nungrateful,1,kingrichardiii,1592\nbeaver,1,kingrichardiii,1592\nlads,1,kingrichardiii,1592\nJOHN,1,kingrichardiii,1592\nConfound,1,kingrichardiii,1592\ninsinuate,1,kingrichardiii,1592\nJames,2,kingrichardiii,1592\nsomebody,2,kingrichardiii,1592\nforbid,2,kingrichardiii,1592\nstaves,2,kingrichardiii,1592\nsuffer,2,kingrichardiii,1592\ninfant,2,kingrichardiii,1592\ntook,2,kingrichardiii,1592\ninterchange,2,kingrichardiii,1592\nmalmsey,2,kingrichardiii,1592\nguilt,2,kingrichardiii,1592\nunrest,2,kingrichardiii,1592\ndireful,2,kingrichardiii,1592\ndouble,2,kingrichardiii,1592\ninfamy,2,kingrichardiii,1592\ncountry,2,kingrichardiii,1592\nmistress,2,kingrichardiii,1592\nmassacre,2,kingrichardiii,1592\nprophet,2,kingrichardiii,1592\nwish'd,2,kingrichardiii,1592\ncomplaints,2,kingrichardiii,1592\nfollowing,2,kingrichardiii,1592\nBreton,2,kingrichardiii,1592\nFie,2,kingrichardiii,1592\nshadows,2,kingrichardiii,1592\nwicked,2,kingrichardiii,1592\nhonours,2,kingrichardiii,1592\nhasty,2,kingrichardiii,1592\ndagger,2,kingrichardiii,1592\nbones,2,kingrichardiii,1592\nresign,2,kingrichardiii,1592\nsuppose,2,kingrichardiii,1592\nwestern,2,kingrichardiii,1592\nstopp'd,2,kingrichardiii,1592\nday's,2,kingrichardiii,1592\nworshipful,2,kingrichardiii,1592\nboys,2,kingrichardiii,1592\nTamworth,2,kingrichardiii,1592\nsleeps,2,kingrichardiii,1592\nmoiety,2,kingrichardiii,1592\ntruly,2,kingrichardiii,1592\nsuppliant,2,kingrichardiii,1592\npainted,2,kingrichardiii,1592\nMarquis,2,kingrichardiii,1592\nproceedings,2,kingrichardiii,1592\nvain,2,kingrichardiii,1592\nPaul's,2,kingrichardiii,1592\ncomest,2,kingrichardiii,1592\nLucy,2,kingrichardiii,1592\nrid,2,kingrichardiii,1592\nWife,2,kingrichardiii,1592\nlamentations,2,kingrichardiii,1592\nalthough,2,kingrichardiii,1592\nweighty,2,kingrichardiii,1592\ndrink,2,kingrichardiii,1592\nnought,2,kingrichardiii,1592\nunder,2,kingrichardiii,1592\ntaunts,2,kingrichardiii,1592\nlies,2,kingrichardiii,1592\nrue,2,kingrichardiii,1592\nstrumpet,2,kingrichardiii,1592\nrun,2,kingrichardiii,1592\npleasures,2,kingrichardiii,1592\ncontrary,2,kingrichardiii,1592\norphans,2,kingrichardiii,1592\nbutcheries,2,kingrichardiii,1592\nShore's,2,kingrichardiii,1592\ndemand,2,kingrichardiii,1592\nspare,2,kingrichardiii,1592\naery,2,kingrichardiii,1592\nindirect,2,kingrichardiii,1592\ndownfall,2,kingrichardiii,1592\nplague,2,kingrichardiii,1592\ngraces,2,kingrichardiii,1592\ngraced,2,kingrichardiii,1592\nland's,2,kingrichardiii,1592\nAfter,2,kingrichardiii,1592\nstock,2,kingrichardiii,1592\nslept,2,kingrichardiii,1592\nBloody,2,kingrichardiii,1592\nunjustly,2,kingrichardiii,1592\nsap,2,kingrichardiii,1592\ngrown,2,kingrichardiii,1592\nentrails,2,kingrichardiii,1592\nsorrows,2,kingrichardiii,1592\ncircumstance,2,kingrichardiii,1592\nCold,2,kingrichardiii,1592\nlamentation,2,kingrichardiii,1592\nincensed,2,kingrichardiii,1592\nRescue,2,kingrichardiii,1592\ninjury,2,kingrichardiii,1592\nfactious,2,kingrichardiii,1592\nobdurate,2,kingrichardiii,1592\nMuch,2,kingrichardiii,1592\nheap,2,kingrichardiii,1592\nWoe,2,kingrichardiii,1592\nsure,2,kingrichardiii,1592\nOnly,2,kingrichardiii,1592\ntown,2,kingrichardiii,1592\ngross,2,kingrichardiii,1592\nbreaks,2,kingrichardiii,1592\nsoft,2,kingrichardiii,1592\nblessed,2,kingrichardiii,1592\nvisit,2,kingrichardiii,1592\nwait,2,kingrichardiii,1592\nsomething,2,kingrichardiii,1592\nview,2,kingrichardiii,1592\nhereafter,2,kingrichardiii,1592\nOff,2,kingrichardiii,1592\nwhatsoever,2,kingrichardiii,1592\nURSWICK,2,kingrichardiii,1592\nprevail'd,2,kingrichardiii,1592\nbound,2,kingrichardiii,1592\ntooth,2,kingrichardiii,1592\nmerry,2,kingrichardiii,1592\nvice,2,kingrichardiii,1592\nwake,2,kingrichardiii,1592\nspy,2,kingrichardiii,1592\nnine,2,kingrichardiii,1592\nforsake,2,kingrichardiii,1592\nlove's,2,kingrichardiii,1592\ncouncil,2,kingrichardiii,1592\ndeliver,2,kingrichardiii,1592\nworth,2,kingrichardiii,1592\nmurdered,2,kingrichardiii,1592\nsop,2,kingrichardiii,1592\nchildren's,2,kingrichardiii,1592\ndelivery,2,kingrichardiii,1592\nsworn,2,kingrichardiii,1592\nraised,2,kingrichardiii,1592\ndeformity,2,kingrichardiii,1592\nstern,2,kingrichardiii,1592\nsecond,2,kingrichardiii,1592\ndisgrace,2,kingrichardiii,1592\ndeserts,2,kingrichardiii,1592\nsky,2,kingrichardiii,1592\nRedeemer,2,kingrichardiii,1592\nscope,2,kingrichardiii,1592\nadverse,2,kingrichardiii,1592\ndaughter's,2,kingrichardiii,1592\nstanders,2,kingrichardiii,1592\nvile,2,kingrichardiii,1592\nreap,2,kingrichardiii,1592\nunavoided,2,kingrichardiii,1592\nsnow,2,kingrichardiii,1592\npiece,2,kingrichardiii,1592\nTush,2,kingrichardiii,1592\nBERKELEY,2,kingrichardiii,1592\nWhereof,2,kingrichardiii,1592\ntoucheth,2,kingrichardiii,1592\nfalls,2,kingrichardiii,1592\nquake,2,kingrichardiii,1592\nloathed,2,kingrichardiii,1592\nenvious,2,kingrichardiii,1592\nterms,2,kingrichardiii,1592\ncommit,2,kingrichardiii,1592\ncherish,2,kingrichardiii,1592\nexpedition,2,kingrichardiii,1592\nfruit,2,kingrichardiii,1592\nwhite,2,kingrichardiii,1592\nworthy,2,kingrichardiii,1592\nWherein,2,kingrichardiii,1592\npearl,2,kingrichardiii,1592\nshining,2,kingrichardiii,1592\nsup,2,kingrichardiii,1592\nbowl,2,kingrichardiii,1592\nfeel,2,kingrichardiii,1592\nominous,2,kingrichardiii,1592\nmalice,2,kingrichardiii,1592\nBetwixt,2,kingrichardiii,1592\nchoose,2,kingrichardiii,1592\nwind,2,kingrichardiii,1592\nsoldier,2,kingrichardiii,1592\nungovern'd,2,kingrichardiii,1592\nshrink,2,kingrichardiii,1592\nnails,2,kingrichardiii,1592\nsoever,2,kingrichardiii,1592\nmonarchy,2,kingrichardiii,1592\nusurp,2,kingrichardiii,1592\nseems,2,kingrichardiii,1592\nexecutioner,2,kingrichardiii,1592\nknees,2,kingrichardiii,1592\nHover,2,kingrichardiii,1592\nhates,2,kingrichardiii,1592\nruin,2,kingrichardiii,1592\ncomplots,2,kingrichardiii,1592\ngo'st,2,kingrichardiii,1592\naccuse,2,kingrichardiii,1592\npierce,2,kingrichardiii,1592\nincense,2,kingrichardiii,1592\nadvancement,2,kingrichardiii,1592\ndistress,2,kingrichardiii,1592\noffice,2,kingrichardiii,1592\nboot,2,kingrichardiii,1592\ncrazed,2,kingrichardiii,1592\nruled,2,kingrichardiii,1592\nboon,2,kingrichardiii,1592\nalliance,2,kingrichardiii,1592\nframed,2,kingrichardiii,1592\ncolour,2,kingrichardiii,1592\nwayward,2,kingrichardiii,1592\nintelligence,2,kingrichardiii,1592\naspect,2,kingrichardiii,1592\nhe's,2,kingrichardiii,1592\nunquiet,2,kingrichardiii,1592\nbastards,2,kingrichardiii,1592\nmanners,2,kingrichardiii,1592\nenjoy'd,2,kingrichardiii,1592\nhap,2,kingrichardiii,1592\nabortive,2,kingrichardiii,1592\nfoes,2,kingrichardiii,1592\nsigh,2,kingrichardiii,1592\nexercise,2,kingrichardiii,1592\noratory,2,kingrichardiii,1592\nperfection,2,kingrichardiii,1592\nmorrow's,2,kingrichardiii,1592\norators,2,kingrichardiii,1592\nloath,2,kingrichardiii,1592\neternal,2,kingrichardiii,1592\nwash'd,2,kingrichardiii,1592\nsmile,2,kingrichardiii,1592\nHerbert,2,kingrichardiii,1592\nlands,2,kingrichardiii,1592\nproof,2,kingrichardiii,1592\nbelike,2,kingrichardiii,1592\nfouler,2,kingrichardiii,1592\nclosely,2,kingrichardiii,1592\nfinds,2,kingrichardiii,1592\nwisdom,2,kingrichardiii,1592\nprophecies,2,kingrichardiii,1592\ntear,2,kingrichardiii,1592\nflowers,2,kingrichardiii,1592\nfatal,2,kingrichardiii,1592\nmeant,2,kingrichardiii,1592\ndinner,2,kingrichardiii,1592\npath,2,kingrichardiii,1592\neast,2,kingrichardiii,1592\nLet's,2,kingrichardiii,1592\nenrich,2,kingrichardiii,1592\ntroops,2,kingrichardiii,1592\nnavy,2,kingrichardiii,1592\ntemples,2,kingrichardiii,1592\nnobility,2,kingrichardiii,1592\nJulius,2,kingrichardiii,1592\nobey,2,kingrichardiii,1592\nkiss'd,2,kingrichardiii,1592\nplants,2,kingrichardiii,1592\nhaunt,2,kingrichardiii,1592\nroyalty,2,kingrichardiii,1592\nsits,2,kingrichardiii,1592\nbend,2,kingrichardiii,1592\nbusy,2,kingrichardiii,1592\nmetal,2,kingrichardiii,1592\nimagine,2,kingrichardiii,1592\nsalute,2,kingrichardiii,1592\nunfit,2,kingrichardiii,1592\ngot,2,kingrichardiii,1592\ncorpse,2,kingrichardiii,1592\nsacrament,2,kingrichardiii,1592\nsomewhat,2,kingrichardiii,1592\nimperial,2,kingrichardiii,1592\nSpeak,2,kingrichardiii,1592\nPut,2,kingrichardiii,1592\nobstacles,2,kingrichardiii,1592\nbottled,2,kingrichardiii,1592\nblock,2,kingrichardiii,1592\nDidst,2,kingrichardiii,1592\nextreme,2,kingrichardiii,1592\ndissembling,2,kingrichardiii,1592\nconquest,2,kingrichardiii,1592\nbeget,2,kingrichardiii,1592\nbuy,2,kingrichardiii,1592\nherein,2,kingrichardiii,1592\nYe,2,kingrichardiii,1592\nused,2,kingrichardiii,1592\nUrge,2,kingrichardiii,1592\nlonger,2,kingrichardiii,1592\nAbout,2,kingrichardiii,1592\ndivine,2,kingrichardiii,1592\nWhither,2,kingrichardiii,1592\ncrowned,2,kingrichardiii,1592\ndisgracious,2,kingrichardiii,1592\ndogs,2,kingrichardiii,1592\nstore,2,kingrichardiii,1592\nimpatience,2,kingrichardiii,1592\nchildish,2,kingrichardiii,1592\ngovernment,2,kingrichardiii,1592\npromised,2,kingrichardiii,1592\nha,2,kingrichardiii,1592\nconfess,2,kingrichardiii,1592\naim,2,kingrichardiii,1592\nSoldiers,2,kingrichardiii,1592\nDevised,2,kingrichardiii,1592\nexcellent,2,kingrichardiii,1592\nlineal,2,kingrichardiii,1592\nviolence,2,kingrichardiii,1592\npraying,2,kingrichardiii,1592\ntongues,2,kingrichardiii,1592\ndwell,2,kingrichardiii,1592\nmoveables,2,kingrichardiii,1592\nlent,2,kingrichardiii,1592\nLast,2,kingrichardiii,1592\nReturn,2,kingrichardiii,1592\naccused,2,kingrichardiii,1592\nRest,2,kingrichardiii,1592\nay,2,kingrichardiii,1592\nprivilege,2,kingrichardiii,1592\nmanner,2,kingrichardiii,1592\nforget,2,kingrichardiii,1592\nsupreme,2,kingrichardiii,1592\nbless'd,2,kingrichardiii,1592\nprosper,2,kingrichardiii,1592\ncowardly,2,kingrichardiii,1592\ncommend,2,kingrichardiii,1592\nattending,2,kingrichardiii,1592\nfears,2,kingrichardiii,1592\nbodies,2,kingrichardiii,1592\nsmall,2,kingrichardiii,1592\nplant,2,kingrichardiii,1592\naside,2,kingrichardiii,1592\nwrinkled,2,kingrichardiii,1592\nTold,2,kingrichardiii,1592\nLive,2,kingrichardiii,1592\nstraitly,2,kingrichardiii,1592\nReady,2,kingrichardiii,1592\nmorn,2,kingrichardiii,1592\ncauser,2,kingrichardiii,1592\nparents,2,kingrichardiii,1592\nYes,2,kingrichardiii,1592\nagony,2,kingrichardiii,1592\nSennet,2,kingrichardiii,1592\ngreater,2,kingrichardiii,1592\nboding,2,kingrichardiii,1592\nIt's,2,kingrichardiii,1592\nknew,2,kingrichardiii,1592\nready,2,kingrichardiii,1592\nshow'd,2,kingrichardiii,1592\nknee,2,kingrichardiii,1592\njocund,2,kingrichardiii,1592\npure,2,kingrichardiii,1592\ngraves,2,kingrichardiii,1592\nvalour,2,kingrichardiii,1592\ntempted,2,kingrichardiii,1592\ndiscourse,2,kingrichardiii,1592\nspeaks,2,kingrichardiii,1592\nbuildeth,2,kingrichardiii,1592\nlewd,2,kingrichardiii,1592\nBishop,2,kingrichardiii,1592\nfrown'd,2,kingrichardiii,1592\nmessenger,2,kingrichardiii,1592\nnearer,2,kingrichardiii,1592\nreduce,2,kingrichardiii,1592\nHappy,2,kingrichardiii,1592\nreach,2,kingrichardiii,1592\ndrawn,2,kingrichardiii,1592\nprovided,2,kingrichardiii,1592\nhalt,2,kingrichardiii,1592\nexcuse,2,kingrichardiii,1592\nunlawful,2,kingrichardiii,1592\npluck,2,kingrichardiii,1592\nUnder,2,kingrichardiii,1592\ndeaths,2,kingrichardiii,1592\nSmile,2,kingrichardiii,1592\nUntimely,2,kingrichardiii,1592\nask,2,kingrichardiii,1592\ndelight,2,kingrichardiii,1592\noutrage,2,kingrichardiii,1592\nmock,2,kingrichardiii,1592\nPrepare,2,kingrichardiii,1592\nfrown,2,kingrichardiii,1592\nincreaseth,2,kingrichardiii,1592\nDispatch,2,kingrichardiii,1592\npoint,2,kingrichardiii,1592\nstrive,2,kingrichardiii,1592\npack,2,kingrichardiii,1592\nworldly,2,kingrichardiii,1592\ndismal,2,kingrichardiii,1592\nyielded,2,kingrichardiii,1592\nproper,2,kingrichardiii,1592\nfaithful,2,kingrichardiii,1592\nfall'n,2,kingrichardiii,1592\npursuivant,2,kingrichardiii,1592\nsaints,2,kingrichardiii,1592\nAlarum,2,kingrichardiii,1592\nExeter,2,kingrichardiii,1592\nWhite,2,kingrichardiii,1592\nArm,2,kingrichardiii,1592\nbeggars,2,kingrichardiii,1592\nKind,2,kingrichardiii,1592\nHarp,2,kingrichardiii,1592\nsequel,2,kingrichardiii,1592\nministers,2,kingrichardiii,1592\nhurl'd,2,kingrichardiii,1592\ntragic,2,kingrichardiii,1592\nhaving,2,kingrichardiii,1592\nspoken,2,kingrichardiii,1592\nwitch,2,kingrichardiii,1592\nbirths,2,kingrichardiii,1592\nrood,2,kingrichardiii,1592\noccasion,2,kingrichardiii,1592\nthrough,2,kingrichardiii,1592\ngarments,2,kingrichardiii,1592\nkeeps,2,kingrichardiii,1592\ndestiny,2,kingrichardiii,1592\nmain,2,kingrichardiii,1592\nDUKE,2,kingrichardiii,1592\ncastle,2,kingrichardiii,1592\n'Thus,2,kingrichardiii,1592\nAgainst,2,kingrichardiii,1592\nTen,2,kingrichardiii,1592\nLeicester,2,kingrichardiii,1592\nreported,2,kingrichardiii,1592\nshouldst,2,kingrichardiii,1592\nbreathed,2,kingrichardiii,1592\nsilence,2,kingrichardiii,1592\nbuild,2,kingrichardiii,1592\nArchbishop,2,kingrichardiii,1592\ntriumphant,2,kingrichardiii,1592\npawn'd,2,kingrichardiii,1592\nunknown,2,kingrichardiii,1592\nthinks,2,kingrichardiii,1592\nHENRY,2,kingrichardiii,1592\nbeast,2,kingrichardiii,1592\nTRESSEL,2,kingrichardiii,1592\nwakes,2,kingrichardiii,1592\nwaked,2,kingrichardiii,1592\nPeace,2,kingrichardiii,1592\nbelow,2,kingrichardiii,1592\ndaily,2,kingrichardiii,1592\ndisgraced,2,kingrichardiii,1592\nqueens,2,kingrichardiii,1592\nbears,2,kingrichardiii,1592\npleaseth,2,kingrichardiii,1592\nblunt,2,kingrichardiii,1592\nours,2,kingrichardiii,1592\nAlack,2,kingrichardiii,1592\nbottom,2,kingrichardiii,1592\nWear,2,kingrichardiii,1592\nmock'd,2,kingrichardiii,1592\noration,2,kingrichardiii,1592\nchase,2,kingrichardiii,1592\nborne,2,kingrichardiii,1592\nBretons,2,kingrichardiii,1592\nbegging,2,kingrichardiii,1592\nSet,2,kingrichardiii,1592\nunhappy,2,kingrichardiii,1592\nordinance,2,kingrichardiii,1592\nmouth,2,kingrichardiii,1592\nawhile,2,kingrichardiii,1592\nfamous,2,kingrichardiii,1592\nThyself,2,kingrichardiii,1592\nedgeless,2,kingrichardiii,1592\nmourn,2,kingrichardiii,1592\nSee,2,kingrichardiii,1592\nparlous,2,kingrichardiii,1592\npaced,2,kingrichardiii,1592\nreigns,2,kingrichardiii,1592\no'erpast,2,kingrichardiii,1592\nleaves,2,kingrichardiii,1592\nmile,2,kingrichardiii,1592\nRelent,2,kingrichardiii,1592\nWidow,2,kingrichardiii,1592\nstart,2,kingrichardiii,1592\nstars,2,kingrichardiii,1592\nsucceeders,2,kingrichardiii,1592\ntempest,2,kingrichardiii,1592\nbosoms,2,kingrichardiii,1592\nkeeper,2,kingrichardiii,1592\nprocess,2,kingrichardiii,1592\nchair,2,kingrichardiii,1592\nUncle,2,kingrichardiii,1592\nCould,2,kingrichardiii,1592\nghastly,2,kingrichardiii,1592\ntents,2,kingrichardiii,1592\nacquit,2,kingrichardiii,1592\nmark,2,kingrichardiii,1592\ndevils,2,kingrichardiii,1592\nvein,2,kingrichardiii,1592\nlet's,2,kingrichardiii,1592\nInfer,2,kingrichardiii,1592\nwoo,2,kingrichardiii,1592\ngreatest,2,kingrichardiii,1592\nlabour,2,kingrichardiii,1592\ntides,2,kingrichardiii,1592\nfree,2,kingrichardiii,1592\nnumber,2,kingrichardiii,1592\napart,2,kingrichardiii,1592\nmarvel,2,kingrichardiii,1592\nletters,2,kingrichardiii,1592\ntrouble,2,kingrichardiii,1592\nfills,2,kingrichardiii,1592\ndesires,2,kingrichardiii,1592\nwet,2,kingrichardiii,1592\nfirm,2,kingrichardiii,1592\nlieutenant,2,kingrichardiii,1592\nlengthen'd,2,kingrichardiii,1592\ntrembling,2,kingrichardiii,1592\nsuspicion,2,kingrichardiii,1592\ndespairing,2,kingrichardiii,1592\nodd,2,kingrichardiii,1592\nflies,2,kingrichardiii,1592\ninferr'd,2,kingrichardiii,1592\nneck,2,kingrichardiii,1592\nbanishment,2,kingrichardiii,1592\nentreaties,2,kingrichardiii,1592\ncure,2,kingrichardiii,1592\nknife,2,kingrichardiii,1592\nring,2,kingrichardiii,1592\nBlush,2,kingrichardiii,1592\ntroublous,2,kingrichardiii,1592\nbuckle,2,kingrichardiii,1592\nusurping,2,kingrichardiii,1592\nupright,2,kingrichardiii,1592\nhaughty,2,kingrichardiii,1592\nTHOMAS,2,kingrichardiii,1592\nprophesied,2,kingrichardiii,1592\nThrong,2,kingrichardiii,1592\nprotect,2,kingrichardiii,1592\nquicken,2,kingrichardiii,1592\nback'd,2,kingrichardiii,1592\nripe,2,kingrichardiii,1592\nAlarums,2,kingrichardiii,1592\nThine,2,kingrichardiii,1592\nhumility,2,kingrichardiii,1592\nlikes,2,kingrichardiii,1592\nMercury,2,kingrichardiii,1592\nprevail,2,kingrichardiii,1592\nreceive,2,kingrichardiii,1592\ngarland,2,kingrichardiii,1592\nends,2,kingrichardiii,1592\nsplit,2,kingrichardiii,1592\nexclaims,2,kingrichardiii,1592\npossess,2,kingrichardiii,1592\nnotice,2,kingrichardiii,1592\nGives,2,kingrichardiii,1592\nfactor,2,kingrichardiii,1592\ndivines,2,kingrichardiii,1592\ndreamt,2,kingrichardiii,1592\ntaken,2,kingrichardiii,1592\nindex,2,kingrichardiii,1592\nrotten,2,kingrichardiii,1592\ncharged,2,kingrichardiii,1592\nspleen,2,kingrichardiii,1592\nforeign,2,kingrichardiii,1592\nkilling,2,kingrichardiii,1592\ndevoted,2,kingrichardiii,1592\ndumb,2,kingrichardiii,1592\ndescant,2,kingrichardiii,1592\nlineaments,2,kingrichardiii,1592\nconsent,2,kingrichardiii,1592\nnest,2,kingrichardiii,1592\nunity,2,kingrichardiii,1592\nForbear,2,kingrichardiii,1592\nfalling,2,kingrichardiii,1592\nfrank'd,2,kingrichardiii,1592\nfollowers,2,kingrichardiii,1592\nmadest,2,kingrichardiii,1592\nminister,2,kingrichardiii,1592\ndispersed,2,kingrichardiii,1592\nlustful,2,kingrichardiii,1592\nevil,2,kingrichardiii,1592\nSwear,2,kingrichardiii,1592\nminds,2,kingrichardiii,1592\ndesert,2,kingrichardiii,1592\ncares,2,kingrichardiii,1592\nscorns,2,kingrichardiii,1592\ncolours,2,kingrichardiii,1592\nheavily,2,kingrichardiii,1592\nwest,2,kingrichardiii,1592\nSweet,2,kingrichardiii,1592\nprophetess,2,kingrichardiii,1592\nfill,2,kingrichardiii,1592\nGuildhall,2,kingrichardiii,1592\nsavage,2,kingrichardiii,1592\nmarried,2,kingrichardiii,1592\nworship,2,kingrichardiii,1592\ndivers,2,kingrichardiii,1592\ndepart,2,kingrichardiii,1592\nperceive,2,kingrichardiii,1592\npartly,2,kingrichardiii,1592\nHereford,2,kingrichardiii,1592\nstandards,2,kingrichardiii,1592\nbase,2,kingrichardiii,1592\ncock,2,kingrichardiii,1592\nfriendship,2,kingrichardiii,1592\nnames,2,kingrichardiii,1592\nevidence,2,kingrichardiii,1592\nsoul's,2,kingrichardiii,1592\nlap,2,kingrichardiii,1592\nwitchcraft,2,kingrichardiii,1592\nbrotherhood,2,kingrichardiii,1592\nwild,2,kingrichardiii,1592\nreproof,2,kingrichardiii,1592\nholds,2,kingrichardiii,1592\nshort,2,kingrichardiii,1592\ngreen,2,kingrichardiii,1592\nhollow,2,kingrichardiii,1592\nfollows,2,kingrichardiii,1592\nhonest,2,kingrichardiii,1592\nloyal,2,kingrichardiii,1592\nrevolt,2,kingrichardiii,1592\nFool,2,kingrichardiii,1592\nwinter,2,kingrichardiii,1592\nflood,2,kingrichardiii,1592\nwaning,2,kingrichardiii,1592\nWherefore,2,kingrichardiii,1592\nfitter,2,kingrichardiii,1592\nStabb'd,2,kingrichardiii,1592\nsatisfied,2,kingrichardiii,1592\ncomplaining,2,kingrichardiii,1592\nhung,2,kingrichardiii,1592\ninterest,2,kingrichardiii,1592\nhunt,2,kingrichardiii,1592\nignoble,2,kingrichardiii,1592\ninward,2,kingrichardiii,1592\nconquerors,2,kingrichardiii,1592\nRight,2,kingrichardiii,1592\npronounced,2,kingrichardiii,1592\nwe'll,2,kingrichardiii,1592\nfitting,2,kingrichardiii,1592\ntroth,2,kingrichardiii,1592\nGentleman,2,kingrichardiii,1592\nJesu,2,kingrichardiii,1592\nsupposed,2,kingrichardiii,1592\nmarvellous,2,kingrichardiii,1592\nRichmond's,2,kingrichardiii,1592\ncourtesy,2,kingrichardiii,1592\nperiod,2,kingrichardiii,1592\ncost,2,kingrichardiii,1592\ntroop,2,kingrichardiii,1592\nexploit,2,kingrichardiii,1592\nGentlemen,2,kingrichardiii,1592\nstriketh,2,kingrichardiii,1592\n'twill,2,kingrichardiii,1592\navoid,2,kingrichardiii,1592\nnights,2,kingrichardiii,1592\ntied,2,kingrichardiii,1592\nGeorge's,2,kingrichardiii,1592\nfairly,2,kingrichardiii,1592\nCry,2,kingrichardiii,1592\ntide,2,kingrichardiii,1592\naloud,2,kingrichardiii,1592\nwhilst,2,kingrichardiii,1592\ngrieves,2,kingrichardiii,1592\ntalk'd,2,kingrichardiii,1592\ndeceive,2,kingrichardiii,1592\ngoes,2,kingrichardiii,1592\nwrangling,2,kingrichardiii,1592\nseason,2,kingrichardiii,1592\nsickness,2,kingrichardiii,1592\nsorrow's,2,kingrichardiii,1592\nmatch,2,kingrichardiii,1592\ngarter,2,kingrichardiii,1592\nVirtuous,2,kingrichardiii,1592\nMarch,2,kingrichardiii,1592\nmethought,2,kingrichardiii,1592\nMistress,2,kingrichardiii,1592\nceremonious,2,kingrichardiii,1592\nlip,2,kingrichardiii,1592\ninstead,2,kingrichardiii,1592\nthreat,2,kingrichardiii,1592\ntriumph,2,kingrichardiii,1592\nbrow,2,kingrichardiii,1592\nspider,2,kingrichardiii,1592\ndealings,2,kingrichardiii,1592\nfrantic,2,kingrichardiii,1592\nrancour,2,kingrichardiii,1592\near,2,kingrichardiii,1592\nseated,2,kingrichardiii,1592\nstrawberries,2,kingrichardiii,1592\nwrite,2,kingrichardiii,1592\ncloudy,2,kingrichardiii,1592\nconfound,2,kingrichardiii,1592\nfiends,2,kingrichardiii,1592\nlimbs,2,kingrichardiii,1592\nsounded,2,kingrichardiii,1592\nperjury,2,kingrichardiii,1592\ndistressed,2,kingrichardiii,1592\nleast,2,kingrichardiii,1592\nTowards,2,kingrichardiii,1592\nconsequence,2,kingrichardiii,1592\nrashly,2,kingrichardiii,1592\nforces,2,kingrichardiii,1592\nwring,2,kingrichardiii,1592\ndefaced,2,kingrichardiii,1592\nBosworth,2,kingrichardiii,1592\nhardy,2,kingrichardiii,1592\ncensures,2,kingrichardiii,1592\nmurder'd,2,kingrichardiii,1592\nevils,2,kingrichardiii,1592\nrights,2,kingrichardiii,1592\ndetermine,2,kingrichardiii,1592\nlimit,2,kingrichardiii,1592\nheartily,2,kingrichardiii,1592\nGreat,2,kingrichardiii,1592\nattorney,2,kingrichardiii,1592\nwound,2,kingrichardiii,1592\nwithdraw,2,kingrichardiii,1592\nmarriage,2,kingrichardiii,1592\nIndeed,2,kingrichardiii,1592\ntelling,2,kingrichardiii,1592\nrespects,2,kingrichardiii,1592\ntut,2,kingrichardiii,1592\nspilt,2,kingrichardiii,1592\ntenderness,2,kingrichardiii,1592\nVII,2,kingrichardiii,1592\ndishonour'd,2,kingrichardiii,1592\nJAMES,2,kingrichardiii,1592\nfright,2,kingrichardiii,1592\nWithout,2,kingrichardiii,1592\nimpart,2,kingrichardiii,1592\ngoing,2,kingrichardiii,1592\nwindows,2,kingrichardiii,1592\nentreats,2,kingrichardiii,1592\nleading,2,kingrichardiii,1592\ncorruption,2,kingrichardiii,1592\ndwells,2,kingrichardiii,1592\nshade,2,kingrichardiii,1592\nsilent,2,kingrichardiii,1592\nsimple,2,kingrichardiii,1592\nleads,2,kingrichardiii,1592\nproffer'd,2,kingrichardiii,1592\nslay,2,kingrichardiii,1592\nemploy,2,kingrichardiii,1592\nsubstitute,2,kingrichardiii,1592\nhugg'd,2,kingrichardiii,1592\ndare,2,kingrichardiii,1592\nDie,2,kingrichardiii,1592\nweigh,2,kingrichardiii,1592\nmiseries,2,kingrichardiii,1592\ncatch,2,kingrichardiii,1592\nblessing,2,kingrichardiii,1592\ntop,2,kingrichardiii,1592\ndry,2,kingrichardiii,1592\nliest,2,kingrichardiii,1592\nwonders,2,kingrichardiii,1592\nmonths,2,kingrichardiii,1592\nUntil,2,kingrichardiii,1592\nvenom,2,kingrichardiii,1592\nshake,2,kingrichardiii,1592\nrescue,2,kingrichardiii,1592\npromotions,2,kingrichardiii,1592\nshine,2,kingrichardiii,1592\nTeach,2,kingrichardiii,1592\ncommanding,2,kingrichardiii,1592\npass'd,2,kingrichardiii,1592\nobedient,2,kingrichardiii,1592\nBLOUNT,2,kingrichardiii,1592\ngreatness,2,kingrichardiii,1592\nWrong,2,kingrichardiii,1592\nYorkshire,2,kingrichardiii,1592\nearth's,2,kingrichardiii,1592\nFalse,2,kingrichardiii,1592\narchers,2,kingrichardiii,1592\nrepair,2,kingrichardiii,1592\nmillstones,2,kingrichardiii,1592\nundertake,2,kingrichardiii,1592\nhatches,2,kingrichardiii,1592\nwoo'd,2,kingrichardiii,1592\nwomen,2,kingrichardiii,1592\nbrave,3,kingrichardiii,1592\ntreason,3,kingrichardiii,1592\nG,3,kingrichardiii,1592\nadvised,3,kingrichardiii,1592\ngrew,3,kingrichardiii,1592\nmeed,3,kingrichardiii,1592\nmuster,3,kingrichardiii,1592\njoin,3,kingrichardiii,1592\ndrop,3,kingrichardiii,1592\nJohn,3,kingrichardiii,1592\nHear,3,kingrichardiii,1592\nheir,3,kingrichardiii,1592\nadvantage,3,kingrichardiii,1592\nbrows,3,kingrichardiii,1592\nzeal,3,kingrichardiii,1592\noffended,3,kingrichardiii,1592\nshoulders,3,kingrichardiii,1592\ndoubtful,3,kingrichardiii,1592\nscene,3,kingrichardiii,1592\nBear,3,kingrichardiii,1592\nheld,3,kingrichardiii,1592\nNever,3,kingrichardiii,1592\nhelm,3,kingrichardiii,1592\ndire,3,kingrichardiii,1592\nStay,3,kingrichardiii,1592\nYork's,3,kingrichardiii,1592\nduteous,3,kingrichardiii,1592\ndarkness,3,kingrichardiii,1592\ncontract,3,kingrichardiii,1592\nbrook,3,kingrichardiii,1592\nnaked,3,kingrichardiii,1592\nslander,3,kingrichardiii,1592\nthroat,3,kingrichardiii,1592\nsort,3,kingrichardiii,1592\nbowels,3,kingrichardiii,1592\ncheeks,3,kingrichardiii,1592\nearly,3,kingrichardiii,1592\nattempt,3,kingrichardiii,1592\nOnce,3,kingrichardiii,1592\nstrength,3,kingrichardiii,1592\nreign,3,kingrichardiii,1592\nYoung,3,kingrichardiii,1592\nRemember,3,kingrichardiii,1592\nnoise,3,kingrichardiii,1592\nshe's,3,kingrichardiii,1592\nexecution,3,kingrichardiii,1592\nPembroke,3,kingrichardiii,1592\nstands,3,kingrichardiii,1592\nenough,3,kingrichardiii,1592\nusurp'd,3,kingrichardiii,1592\nthink'st,3,kingrichardiii,1592\nsaying,3,kingrichardiii,1592\ndeceit,3,kingrichardiii,1592\nbitterly,3,kingrichardiii,1592\nperil,3,kingrichardiii,1592\nembrace,3,kingrichardiii,1592\nWithdraw,3,kingrichardiii,1592\nscorn'd,3,kingrichardiii,1592\nlooking,3,kingrichardiii,1592\napparent,3,kingrichardiii,1592\nsued,3,kingrichardiii,1592\nkindly,3,kingrichardiii,1592\nsues,3,kingrichardiii,1592\nwings,3,kingrichardiii,1592\nlambs,3,kingrichardiii,1592\nleague,3,kingrichardiii,1592\npieces,3,kingrichardiii,1592\nAttendants,3,kingrichardiii,1592\noffence,3,kingrichardiii,1592\nworse,3,kingrichardiii,1592\nheavens,3,kingrichardiii,1592\nbustle,3,kingrichardiii,1592\nOut,3,kingrichardiii,1592\nWhilst,3,kingrichardiii,1592\ngovern'd,3,kingrichardiii,1592\nhumbly,3,kingrichardiii,1592\naccept,3,kingrichardiii,1592\nguile,3,kingrichardiii,1592\nVouchsafe,3,kingrichardiii,1592\nsteal,3,kingrichardiii,1592\nThough,3,kingrichardiii,1592\nwarn,3,kingrichardiii,1592\nstop,3,kingrichardiii,1592\nwars,3,kingrichardiii,1592\nrule,3,kingrichardiii,1592\nwash,3,kingrichardiii,1592\nmistake,3,kingrichardiii,1592\nmatter,3,kingrichardiii,1592\nChildren,3,kingrichardiii,1592\nThere's,3,kingrichardiii,1592\nwast,3,kingrichardiii,1592\nbright,3,kingrichardiii,1592\nspoke,3,kingrichardiii,1592\nconquer,3,kingrichardiii,1592\nDaughter,3,kingrichardiii,1592\nsick,3,kingrichardiii,1592\nwherefore,3,kingrichardiii,1592\nbastardy,3,kingrichardiii,1592\nPlace,3,kingrichardiii,1592\nsign,3,kingrichardiii,1592\nmarquess,3,kingrichardiii,1592\nmistrust,3,kingrichardiii,1592\nHim,3,kingrichardiii,1592\nThose,3,kingrichardiii,1592\nHaving,3,kingrichardiii,1592\nbar,3,kingrichardiii,1592\nbutt,3,kingrichardiii,1592\nAdvance,3,kingrichardiii,1592\nWalter,3,kingrichardiii,1592\ncreature,3,kingrichardiii,1592\nbrings,3,kingrichardiii,1592\nforce,3,kingrichardiii,1592\nhomicide,3,kingrichardiii,1592\nhie,3,kingrichardiii,1592\nWithin,3,kingrichardiii,1592\nHa,3,kingrichardiii,1592\npiteous,3,kingrichardiii,1592\ncheerfully,3,kingrichardiii,1592\nconqueror,3,kingrichardiii,1592\npast,3,kingrichardiii,1592\nUp,3,kingrichardiii,1592\nyourselves,3,kingrichardiii,1592\nmonstrous,3,kingrichardiii,1592\ndevotion,3,kingrichardiii,1592\nMurder,3,kingrichardiii,1592\nRutland,3,kingrichardiii,1592\nvaliant,3,kingrichardiii,1592\ngave,3,kingrichardiii,1592\nproportion,3,kingrichardiii,1592\ngoodly,3,kingrichardiii,1592\nkindness,3,kingrichardiii,1592\nOxford,3,kingrichardiii,1592\nstruck,3,kingrichardiii,1592\nprisoners,3,kingrichardiii,1592\ndevilish,3,kingrichardiii,1592\nweak,3,kingrichardiii,1592\nwoful,3,kingrichardiii,1592\njealous,3,kingrichardiii,1592\nsuddenly,3,kingrichardiii,1592\nswift,3,kingrichardiii,1592\nsins,3,kingrichardiii,1592\npains,3,kingrichardiii,1592\nLike,3,kingrichardiii,1592\npitch,3,kingrichardiii,1592\ngrace's,3,kingrichardiii,1592\nnorth,3,kingrichardiii,1592\nbegin,3,kingrichardiii,1592\nstory,3,kingrichardiii,1592\nwretch,3,kingrichardiii,1592\nCannot,3,kingrichardiii,1592\ngift,3,kingrichardiii,1592\nFear,3,kingrichardiii,1592\nservant,3,kingrichardiii,1592\nprevented,3,kingrichardiii,1592\nstood,3,kingrichardiii,1592\nneeds,3,kingrichardiii,1592\nstone,3,kingrichardiii,1592\ndeal,3,kingrichardiii,1592\npluck'd,3,kingrichardiii,1592\nForrest,3,kingrichardiii,1592\nBesides,3,kingrichardiii,1592\nlend,3,kingrichardiii,1592\nthat's,3,kingrichardiii,1592\nmove,3,kingrichardiii,1592\nwonderful,3,kingrichardiii,1592\nbites,3,kingrichardiii,1592\ndelay,3,kingrichardiii,1592\nMyself,3,kingrichardiii,1592\nCrosby,3,kingrichardiii,1592\ntrain,3,kingrichardiii,1592\nenmity,3,kingrichardiii,1592\nink,3,kingrichardiii,1592\nlightly,3,kingrichardiii,1592\nbeholding,3,kingrichardiii,1592\nwherein,3,kingrichardiii,1592\nknot,3,kingrichardiii,1592\ntwenty,3,kingrichardiii,1592\nbeauteous,3,kingrichardiii,1592\nforgot,3,kingrichardiii,1592\nscatter'd,3,kingrichardiii,1592\nuntimely,3,kingrichardiii,1592\nacquaint,3,kingrichardiii,1592\nhot,3,kingrichardiii,1592\nCame,3,kingrichardiii,1592\nhard,3,kingrichardiii,1592\nJack,3,kingrichardiii,1592\nhalf,3,kingrichardiii,1592\nCall,3,kingrichardiii,1592\nweeds,3,kingrichardiii,1592\nmew'd,3,kingrichardiii,1592\navoided,3,kingrichardiii,1592\nknocks,3,kingrichardiii,1592\nfiery,3,kingrichardiii,1592\nshow,3,kingrichardiii,1592\nfear'd,3,kingrichardiii,1592\nmoan,3,kingrichardiii,1592\nrenowned,3,kingrichardiii,1592\nscarcely,3,kingrichardiii,1592\nmayst,3,kingrichardiii,1592\nye,3,kingrichardiii,1592\nsecret,3,kingrichardiii,1592\nthanks,3,kingrichardiii,1592\nbought,3,kingrichardiii,1592\nfew,3,kingrichardiii,1592\nfee,3,kingrichardiii,1592\nArt,3,kingrichardiii,1592\nBaynard's,3,kingrichardiii,1592\njustice,3,kingrichardiii,1592\nmoved,3,kingrichardiii,1592\nDighton,3,kingrichardiii,1592\nreport,3,kingrichardiii,1592\nempty,3,kingrichardiii,1592\nsickly,3,kingrichardiii,1592\nenvy,3,kingrichardiii,1592\nSouls',3,kingrichardiii,1592\n'Zounds,3,kingrichardiii,1592\nChertsey,3,kingrichardiii,1592\nhalberds,3,kingrichardiii,1592\nBad,3,kingrichardiii,1592\nFlourish,3,kingrichardiii,1592\nmeditation,3,kingrichardiii,1592\nwandering,3,kingrichardiii,1592\nlikelihood,3,kingrichardiii,1592\nDoth,3,kingrichardiii,1592\nprecious,3,kingrichardiii,1592\nMakes,3,kingrichardiii,1592\nfoolish,3,kingrichardiii,1592\nalready,3,kingrichardiii,1592\nQueen,3,kingrichardiii,1592\nLudlow,3,kingrichardiii,1592\nleaden,3,kingrichardiii,1592\nflatter,3,kingrichardiii,1592\nvictorious,3,kingrichardiii,1592\nbenefit,3,kingrichardiii,1592\nbehalf,3,kingrichardiii,1592\npause,3,kingrichardiii,1592\nopinion,3,kingrichardiii,1592\npurchase,3,kingrichardiii,1592\nhateful,3,kingrichardiii,1592\nDream,3,kingrichardiii,1592\nselfsame,3,kingrichardiii,1592\nsubtle,3,kingrichardiii,1592\nburthen,3,kingrichardiii,1592\nearnest,3,kingrichardiii,1592\nbetween,3,kingrichardiii,1592\nperforce,3,kingrichardiii,1592\nintent,3,kingrichardiii,1592\nfound,3,kingrichardiii,1592\ndanger,3,kingrichardiii,1592\nFourth,3,kingrichardiii,1592\nhair,3,kingrichardiii,1592\nfaces,3,kingrichardiii,1592\nfaced,3,kingrichardiii,1592\nconference,3,kingrichardiii,1592\nwhat's,3,kingrichardiii,1592\nangel,3,kingrichardiii,1592\nwife's,3,kingrichardiii,1592\nearldom,3,kingrichardiii,1592\nwaters,3,kingrichardiii,1592\nyoke,3,kingrichardiii,1592\ndrops,3,kingrichardiii,1592\nwrong'd,3,kingrichardiii,1592\ncontempt,3,kingrichardiii,1592\nfain,3,kingrichardiii,1592\ncried,3,kingrichardiii,1592\nground,3,kingrichardiii,1592\njudge,3,kingrichardiii,1592\nWithal,3,kingrichardiii,1592\nTill,3,kingrichardiii,1592\nsaint,3,kingrichardiii,1592\nfoe,3,kingrichardiii,1592\namends,3,kingrichardiii,1592\nwork,3,kingrichardiii,1592\nperfect,3,kingrichardiii,1592\nvow,3,kingrichardiii,1592\nLORDS,3,kingrichardiii,1592\nsafety,3,kingrichardiii,1592\nne'er,3,kingrichardiii,1592\nbark,3,kingrichardiii,1592\nta'en,3,kingrichardiii,1592\nherself,3,kingrichardiii,1592\nwhither,3,kingrichardiii,1592\nFoul,3,kingrichardiii,1592\nprophesy,3,kingrichardiii,1592\ndeliver'd,3,kingrichardiii,1592\nis't,3,kingrichardiii,1592\nCaesar,3,kingrichardiii,1592\nman's,3,kingrichardiii,1592\nconvey,3,kingrichardiii,1592\nwatchful,3,kingrichardiii,1592\nholes,3,kingrichardiii,1592\nsights,3,kingrichardiii,1592\nshore,3,kingrichardiii,1592\nquit,3,kingrichardiii,1592\ngreet,3,kingrichardiii,1592\nconcluded,3,kingrichardiii,1592\nrequest,3,kingrichardiii,1592\nstrong,3,kingrichardiii,1592\nseal,3,kingrichardiii,1592\nSitting,3,kingrichardiii,1592\nalone,3,kingrichardiii,1592\nwinged,3,kingrichardiii,1592\nfairer,3,kingrichardiii,1592\nadieu,3,kingrichardiii,1592\nMurderers,3,kingrichardiii,1592\ncrept,3,kingrichardiii,1592\naught,3,kingrichardiii,1592\ndrums,3,kingrichardiii,1592\nseem,3,kingrichardiii,1592\neither,3,kingrichardiii,1592\ndrunken,3,kingrichardiii,1592\ncondition,3,kingrichardiii,1592\nincrease,3,kingrichardiii,1592\ntherein,3,kingrichardiii,1592\nSend,3,kingrichardiii,1592\nprayer,3,kingrichardiii,1592\nsecure,3,kingrichardiii,1592\n'God,3,kingrichardiii,1592\nbleeding,3,kingrichardiii,1592\nled,3,kingrichardiii,1592\nalas,3,kingrichardiii,1592\nCursed,3,kingrichardiii,1592\nHastings',3,kingrichardiii,1592\nprotest,3,kingrichardiii,1592\nmaster's,3,kingrichardiii,1592\nmad,3,kingrichardiii,1592\ncareful,3,kingrichardiii,1592\nconduct,3,kingrichardiii,1592\nbegins,3,kingrichardiii,1592\ndoing,3,kingrichardiii,1592\ndread,3,kingrichardiii,1592\nenforcement,3,kingrichardiii,1592\nwarlike,3,kingrichardiii,1592\nCaptain,3,kingrichardiii,1592\nlips,3,kingrichardiii,1592\nAmen,3,kingrichardiii,1592\nsuspect,3,kingrichardiii,1592\ndiscontented,3,kingrichardiii,1592\nhurl,3,kingrichardiii,1592\nNorthumberland,3,kingrichardiii,1592\ncontent,3,kingrichardiii,1592\nurged,3,kingrichardiii,1592\nrebels,3,kingrichardiii,1592\nDeath,3,kingrichardiii,1592\ntardy,3,kingrichardiii,1592\ndark,3,kingrichardiii,1592\npent,3,kingrichardiii,1592\nsuccess,3,kingrichardiii,1592\nbehold,3,kingrichardiii,1592\nToo,3,kingrichardiii,1592\ntempt,3,kingrichardiii,1592\ndivided,3,kingrichardiii,1592\nmourner,3,kingrichardiii,1592\nremorse,3,kingrichardiii,1592\nbreathe,3,kingrichardiii,1592\nperhaps,3,kingrichardiii,1592\ne'er,3,kingrichardiii,1592\nsummer,3,kingrichardiii,1592\ndaughters,3,kingrichardiii,1592\nheed,4,kingrichardiii,1592\nswords,4,kingrichardiii,1592\nred,4,kingrichardiii,1592\nWarwick,4,kingrichardiii,1592\nfathers,4,kingrichardiii,1592\nLovel,4,kingrichardiii,1592\nlament,4,kingrichardiii,1592\nslaughter'd,4,kingrichardiii,1592\nEither,4,kingrichardiii,1592\nangels,4,kingrichardiii,1592\ntrust,4,kingrichardiii,1592\nbecome,4,kingrichardiii,1592\ncare,4,kingrichardiii,1592\nRichard's,4,kingrichardiii,1592\npleasing,4,kingrichardiii,1592\nGirl,4,kingrichardiii,1592\njest,4,kingrichardiii,1592\nyourself,4,kingrichardiii,1592\nBrandon,4,kingrichardiii,1592\nresolve,4,kingrichardiii,1592\nsubjects,4,kingrichardiii,1592\ntoward,4,kingrichardiii,1592\nteach,4,kingrichardiii,1592\ndeserve,4,kingrichardiii,1592\nsin,4,kingrichardiii,1592\npeevish,4,kingrichardiii,1592\nmurderer,4,kingrichardiii,1592\nTheir,4,kingrichardiii,1592\naccursed,4,kingrichardiii,1592\nHarry,4,kingrichardiii,1592\nafraid,4,kingrichardiii,1592\nborn,4,kingrichardiii,1592\ncries,4,kingrichardiii,1592\nhumble,4,kingrichardiii,1592\nOne,4,kingrichardiii,1592\nSURREY,4,kingrichardiii,1592\nCousin,4,kingrichardiii,1592\nworld's,4,kingrichardiii,1592\ndesire,4,kingrichardiii,1592\nchamber,4,kingrichardiii,1592\nquarrel,4,kingrichardiii,1592\nwronged,4,kingrichardiii,1592\nshortly,4,kingrichardiii,1592\nunnatural,4,kingrichardiii,1592\ndesperate,4,kingrichardiii,1592\nhopes,4,kingrichardiii,1592\nkings,4,kingrichardiii,1592\ninnocent,4,kingrichardiii,1592\nchanged,4,kingrichardiii,1592\nbeg,4,kingrichardiii,1592\nsovereignty,4,kingrichardiii,1592\nwither'd,4,kingrichardiii,1592\nheads,4,kingrichardiii,1592\nsirs,4,kingrichardiii,1592\ngold,4,kingrichardiii,1592\nshadow,4,kingrichardiii,1592\ntedious,4,kingrichardiii,1592\nvantage,4,kingrichardiii,1592\nBoth,4,kingrichardiii,1592\nentertain,4,kingrichardiii,1592\nghost,4,kingrichardiii,1592\ntyrant,4,kingrichardiii,1592\ncurrent,4,kingrichardiii,1592\nfavour,4,kingrichardiii,1592\ndebt,4,kingrichardiii,1592\nmurderous,4,kingrichardiii,1592\npriest,4,kingrichardiii,1592\ndestruction,4,kingrichardiii,1592\nburied,4,kingrichardiii,1592\nspeed,4,kingrichardiii,1592\nshed,4,kingrichardiii,1592\ngrowth,4,kingrichardiii,1592\ndoom,4,kingrichardiii,1592\ncommitted,4,kingrichardiii,1592\nidle,4,kingrichardiii,1592\naccount,4,kingrichardiii,1592\nendure,4,kingrichardiii,1592\nspent,4,kingrichardiii,1592\nlest,4,kingrichardiii,1592\nBLUNT,4,kingrichardiii,1592\nmen's,4,kingrichardiii,1592\nload,4,kingrichardiii,1592\nbrought,4,kingrichardiii,1592\nimprisonment,4,kingrichardiii,1592\noutward,4,kingrichardiii,1592\nisle,4,kingrichardiii,1592\nafford,4,kingrichardiii,1592\nkingly,4,kingrichardiii,1592\npale,4,kingrichardiii,1592\nfour,4,kingrichardiii,1592\njoyful,4,kingrichardiii,1592\nperpetual,4,kingrichardiii,1592\nvengeance,4,kingrichardiii,1592\nform,4,kingrichardiii,1592\nstones,4,kingrichardiii,1592\nfool,4,kingrichardiii,1592\ndreadful,4,kingrichardiii,1592\ntyranny,4,kingrichardiii,1592\nfond,4,kingrichardiii,1592\narmour,4,kingrichardiii,1592\nbetide,4,kingrichardiii,1592\nMargaret's,4,kingrichardiii,1592\nbutcher'd,4,kingrichardiii,1592\nenjoy,4,kingrichardiii,1592\nchange,4,kingrichardiii,1592\nlead,4,kingrichardiii,1592\nheight,4,kingrichardiii,1592\nInto,4,kingrichardiii,1592\nwatch,4,kingrichardiii,1592\nregiment,4,kingrichardiii,1592\noften,4,kingrichardiii,1592\nnay,4,kingrichardiii,1592\nguiltless,4,kingrichardiii,1592\nClarence',4,kingrichardiii,1592\ncoronation,4,kingrichardiii,1592\nwho's,4,kingrichardiii,1592\nyouth,4,kingrichardiii,1592\ngeneral,4,kingrichardiii,1592\nother's,4,kingrichardiii,1592\nmild,4,kingrichardiii,1592\nLong,4,kingrichardiii,1592\nbeggar,4,kingrichardiii,1592\npresently,4,kingrichardiii,1592\ncoward,4,kingrichardiii,1592\nwoe,4,kingrichardiii,1592\nslave,4,kingrichardiii,1592\ndesigns,4,kingrichardiii,1592\nMade,4,kingrichardiii,1592\nBeing,4,kingrichardiii,1592\nwrath,4,kingrichardiii,1592\nget,4,kingrichardiii,1592\nwrongs,4,kingrichardiii,1592\nwit,4,kingrichardiii,1592\nonly,4,kingrichardiii,1592\nprime,4,kingrichardiii,1592\nwalls,4,kingrichardiii,1592\nPriest,4,kingrichardiii,1592\nrise,4,kingrichardiii,1592\ncommanded,4,kingrichardiii,1592\noath,4,kingrichardiii,1592\nserve,4,kingrichardiii,1592\nPrinces,4,kingrichardiii,1592\nwont,4,kingrichardiii,1592\nsupper,4,kingrichardiii,1592\nnext,4,kingrichardiii,1592\nchamberlain,4,kingrichardiii,1592\nSixth,4,kingrichardiii,1592\nBid,4,kingrichardiii,1592\npoison,4,kingrichardiii,1592\nopposite,4,kingrichardiii,1592\nhaply,4,kingrichardiii,1592\nharvest,4,kingrichardiii,1592\ncouncils,4,kingrichardiii,1592\nfame,4,kingrichardiii,1592\nthree,4,kingrichardiii,1592\nwounds,4,kingrichardiii,1592\nsmooth,4,kingrichardiii,1592\nCastle,4,kingrichardiii,1592\naunt,4,kingrichardiii,1592\nkiss,4,kingrichardiii,1592\ntrumpets,4,kingrichardiii,1592\nhome,4,kingrichardiii,1592\nmaster,4,kingrichardiii,1592\nGrandam,4,kingrichardiii,1592\nBrakenbury,4,kingrichardiii,1592\nseas,4,kingrichardiii,1592\nugly,4,kingrichardiii,1592\ncousins,4,kingrichardiii,1592\ntidings,4,kingrichardiii,1592\nTrue,4,kingrichardiii,1592\nMeantime,4,kingrichardiii,1592\nnurse,4,kingrichardiii,1592\nuntil,4,kingrichardiii,1592\nallies,4,kingrichardiii,1592\nabroad,4,kingrichardiii,1592\nreward,4,kingrichardiii,1592\nScrivener,4,kingrichardiii,1592\nAnother,4,kingrichardiii,1592\ntreacherous,4,kingrichardiii,1592\nHERBERT,4,kingrichardiii,1592\nEARL,4,kingrichardiii,1592\nstreet,4,kingrichardiii,1592\nfled,4,kingrichardiii,1592\nterror,4,kingrichardiii,1592\nsleeping,4,kingrichardiii,1592\nMay,4,kingrichardiii,1592\nfollow'd,4,kingrichardiii,1592\nsudden,4,kingrichardiii,1592\ndispatch,4,kingrichardiii,1592\nreverend,4,kingrichardiii,1592\nrecord,4,kingrichardiii,1592\ncross,4,kingrichardiii,1592\ncommand,4,kingrichardiii,1592\namen,4,kingrichardiii,1592\nremembrance,4,kingrichardiii,1592\nbids,4,kingrichardiii,1592\nwouldst,4,kingrichardiii,1592\nsharp,4,kingrichardiii,1592\nTut,4,kingrichardiii,1592\ngrandam,5,kingrichardiii,1592\no'er,5,kingrichardiii,1592\nweary,5,kingrichardiii,1592\nbusiness,5,kingrichardiii,1592\nlawful,5,kingrichardiii,1592\nassured,5,kingrichardiii,1592\nhealth,5,kingrichardiii,1592\nheart's,5,kingrichardiii,1592\nspake,5,kingrichardiii,1592\nCitizens,5,kingrichardiii,1592\ndrum,5,kingrichardiii,1592\nTewksbury,5,kingrichardiii,1592\nPage,5,kingrichardiii,1592\nEre,5,kingrichardiii,1592\njoys,5,kingrichardiii,1592\nWhom,5,kingrichardiii,1592\nsoon,5,kingrichardiii,1592\nHenry's,5,kingrichardiii,1592\nhighness,5,kingrichardiii,1592\nbroken,5,kingrichardiii,1592\nafterwards,5,kingrichardiii,1592\npurse,5,kingrichardiii,1592\nThomas,5,kingrichardiii,1592\ncheer,5,kingrichardiii,1592\nEly,5,kingrichardiii,1592\nglass,5,kingrichardiii,1592\nlight,5,kingrichardiii,1592\nsea,5,kingrichardiii,1592\nSuch,5,kingrichardiii,1592\nsubject,5,kingrichardiii,1592\nbetwixt,5,kingrichardiii,1592\nsends,5,kingrichardiii,1592\nuncles,5,kingrichardiii,1592\nking's,5,kingrichardiii,1592\nfault,5,kingrichardiii,1592\nthence,5,kingrichardiii,1592\ngrow,5,kingrichardiii,1592\nservice,5,kingrichardiii,1592\nclaim,5,kingrichardiii,1592\nblind,5,kingrichardiii,1592\nancient,5,kingrichardiii,1592\nwine,5,kingrichardiii,1592\nwise,5,kingrichardiii,1592\nbook,5,kingrichardiii,1592\nparty,5,kingrichardiii,1592\nDo,5,kingrichardiii,1592\nurge,5,kingrichardiii,1592\nmorning,5,kingrichardiii,1592\nmelancholy,5,kingrichardiii,1592\nAh,5,kingrichardiii,1592\nscarce,5,kingrichardiii,1592\nneither,5,kingrichardiii,1592\ndeeds,5,kingrichardiii,1592\nadversaries,5,kingrichardiii,1592\nLo,5,kingrichardiii,1592\nHer,5,kingrichardiii,1592\npleasure,5,kingrichardiii,1592\nWales,5,kingrichardiii,1592\nbless,5,kingrichardiii,1592\ndeserved,5,kingrichardiii,1592\nplay,5,kingrichardiii,1592\nbehind,5,kingrichardiii,1592\nbreathing,5,kingrichardiii,1592\nstabb'd,5,kingrichardiii,1592\nOXFORD,5,kingrichardiii,1592\nbreast,5,kingrichardiii,1592\nMethought,5,kingrichardiii,1592\nrepent,5,kingrichardiii,1592\nsafe,5,kingrichardiii,1592\ndignity,5,kingrichardiii,1592\nSheriff,5,kingrichardiii,1592\nmiserable,5,kingrichardiii,1592\nYea,5,kingrichardiii,1592\nill,5,kingrichardiii,1592\nlose,5,kingrichardiii,1592\ntoad,5,kingrichardiii,1592\nshallow,5,kingrichardiii,1592\nliberty,5,kingrichardiii,1592\ndeny,5,kingrichardiii,1592\nwhether,5,kingrichardiii,1592\nexpect,5,kingrichardiii,1592\npain,5,kingrichardiii,1592\nalive,5,kingrichardiii,1592\nthough,5,kingrichardiii,1592\nShore,5,kingrichardiii,1592\nHark,5,kingrichardiii,1592\nmarch,5,kingrichardiii,1592\nsmother'd,5,kingrichardiii,1592\nLords,5,kingrichardiii,1592\nthings,5,kingrichardiii,1592\ntraitors,5,kingrichardiii,1592\neffect,5,kingrichardiii,1592\ntowards,5,kingrichardiii,1592\nfares,5,kingrichardiii,1592\nplead,5,kingrichardiii,1592\nliving,5,kingrichardiii,1592\nclose,5,kingrichardiii,1592\nheard,5,kingrichardiii,1592\nBlunt,5,kingrichardiii,1592\ncrown'd,5,kingrichardiii,1592\narmy,5,kingrichardiii,1592\nCan,5,kingrichardiii,1592\nintend,5,kingrichardiii,1592\nrage,5,kingrichardiii,1592\nforward,5,kingrichardiii,1592\nSurrey,5,kingrichardiii,1592\nweeping,5,kingrichardiii,1592\ndetermined,5,kingrichardiii,1592\nheirs,5,kingrichardiii,1592\nBrother,5,kingrichardiii,1592\nhumour,5,kingrichardiii,1592\nfind,5,kingrichardiii,1592\npatient,5,kingrichardiii,1592\nlived,5,kingrichardiii,1592\nmeaning,5,kingrichardiii,1592\nDerby,5,kingrichardiii,1592\nfast,5,kingrichardiii,1592\nWelcome,5,kingrichardiii,1592\nEarl,5,kingrichardiii,1592\nstroke,5,kingrichardiii,1592\ngiven,5,kingrichardiii,1592\nprovoked,5,kingrichardiii,1592\ncut,5,kingrichardiii,1592\ncountry's,5,kingrichardiii,1592\nalong,5,kingrichardiii,1592\nuse,5,kingrichardiii,1592\nseen,5,kingrichardiii,1592\nsound,5,kingrichardiii,1592\ntogether,5,kingrichardiii,1592\npurpose,5,kingrichardiii,1592\nclouds,5,kingrichardiii,1592\nsister,5,kingrichardiii,1592\nSince,5,kingrichardiii,1592\nthither,5,kingrichardiii,1592\nlate,5,kingrichardiii,1592\nCHRISTOPHER,5,kingrichardiii,1592\nvirtue,5,kingrichardiii,1592\nrevenged,5,kingrichardiii,1592\nlaid,5,kingrichardiii,1592\nattend,5,kingrichardiii,1592\nwithout,5,kingrichardiii,1592\nawake,5,kingrichardiii,1592\nspirit,5,kingrichardiii,1592\nten,5,kingrichardiii,1592\nwoman,5,kingrichardiii,1592\ndirection,5,kingrichardiii,1592\nanswer,6,kingrichardiii,1592\nleisure,6,kingrichardiii,1592\nAlas,6,kingrichardiii,1592\nhaste,6,kingrichardiii,1592\nsight,6,kingrichardiii,1592\nprey,6,kingrichardiii,1592\nbirth,6,kingrichardiii,1592\nWhose,6,kingrichardiii,1592\nwords,6,kingrichardiii,1592\nGhosts,6,kingrichardiii,1592\npaper,6,kingrichardiii,1592\nsit,6,kingrichardiii,1592\nvirtuous,6,kingrichardiii,1592\n'twas,6,kingrichardiii,1592\nthrone,6,kingrichardiii,1592\nturn,6,kingrichardiii,1592\nknow'st,6,kingrichardiii,1592\nbold,6,kingrichardiii,1592\ndied,6,kingrichardiii,1592\nvoice,6,kingrichardiii,1592\npretty,6,kingrichardiii,1592\nbitter,6,kingrichardiii,1592\ngrievous,6,kingrichardiii,1592\ndrown,6,kingrichardiii,1592\nAn,6,kingrichardiii,1592\nprotector,6,kingrichardiii,1592\npatience,6,kingrichardiii,1592\nkept,6,kingrichardiii,1592\nquick,6,kingrichardiii,1592\npass,6,kingrichardiii,1592\nquiet,6,kingrichardiii,1592\ndegree,6,kingrichardiii,1592\nbreath,6,kingrichardiii,1592\nPaul,6,kingrichardiii,1592\nair,6,kingrichardiii,1592\nyea,6,kingrichardiii,1592\naid,6,kingrichardiii,1592\nbeat,6,kingrichardiii,1592\ngain,6,kingrichardiii,1592\nUnless,6,kingrichardiii,1592\nthrive,6,kingrichardiii,1592\nless,6,kingrichardiii,1592\nreasons,6,kingrichardiii,1592\nwelcome,6,kingrichardiii,1592\nplain,6,kingrichardiii,1592\npresent,6,kingrichardiii,1592\ntouch,6,kingrichardiii,1592\nnew,6,kingrichardiii,1592\npeers,6,kingrichardiii,1592\nalmost,6,kingrichardiii,1592\nhide,6,kingrichardiii,1592\nseveral,6,kingrichardiii,1592\nsoldiers,6,kingrichardiii,1592\nthere's,6,kingrichardiii,1592\nwon,6,kingrichardiii,1592\nPursuivant,6,kingrichardiii,1592\no'clock,6,kingrichardiii,1592\nnear,6,kingrichardiii,1592\nhappiness,6,kingrichardiii,1592\nbelieve,6,kingrichardiii,1592\ncursed,6,kingrichardiii,1592\nangry,6,kingrichardiii,1592\nMake,6,kingrichardiii,1592\nwept,6,kingrichardiii,1592\nold,6,kingrichardiii,1592\nwert,6,kingrichardiii,1592\ncompany,6,kingrichardiii,1592\npalace,6,kingrichardiii,1592\nElizabeth,6,kingrichardiii,1592\nUnto,6,kingrichardiii,1592\nwives,6,kingrichardiii,1592\ntalk,6,kingrichardiii,1592\nreason,6,kingrichardiii,1592\nseat,6,kingrichardiii,1592\ndefend,6,kingrichardiii,1592\ncry,6,kingrichardiii,1592\nblame,6,kingrichardiii,1592\npost,6,kingrichardiii,1592\nreturn,6,kingrichardiii,1592\nqueen's,6,kingrichardiii,1592\nremember,6,kingrichardiii,1592\nSalisbury,6,kingrichardiii,1592\nnature,6,kingrichardiii,1592\nwitness,6,kingrichardiii,1592\nDid,6,kingrichardiii,1592\nLest,6,kingrichardiii,1592\ndue,6,kingrichardiii,1592\norder,6,kingrichardiii,1592\nguard,7,kingrichardiii,1592\nNay,7,kingrichardiii,1592\nrather,7,kingrichardiii,1592\ndamned,7,kingrichardiii,1592\ntruth,7,kingrichardiii,1592\nmercy,7,kingrichardiii,1592\nPoor,7,kingrichardiii,1592\nsad,7,kingrichardiii,1592\nsaw,7,kingrichardiii,1592\nyears,7,kingrichardiii,1592\ncorse,7,kingrichardiii,1592\nbabes,7,kingrichardiii,1592\nblack,7,kingrichardiii,1592\nLOVEL,7,kingrichardiii,1592\nwarrant,7,kingrichardiii,1592\n'twere,7,kingrichardiii,1592\nyield,7,kingrichardiii,1592\nFarewell,7,kingrichardiii,1592\npromise,7,kingrichardiii,1592\ntitle,7,kingrichardiii,1592\nboy,7,kingrichardiii,1592\nOh,7,kingrichardiii,1592\nHad,7,kingrichardiii,1592\nVI,7,kingrichardiii,1592\ngrief,7,kingrichardiii,1592\nLancaster,7,kingrichardiii,1592\nleft,7,kingrichardiii,1592\nharm,7,kingrichardiii,1592\nChristian,7,kingrichardiii,1592\nLady,7,kingrichardiii,1592\ncourse,7,kingrichardiii,1592\nopen,7,kingrichardiii,1592\nfoot,7,kingrichardiii,1592\nfaith,7,kingrichardiii,1592\nCARDINAL,7,kingrichardiii,1592\nSome,7,kingrichardiii,1592\nquoth,7,kingrichardiii,1592\nover,7,kingrichardiii,1592\nwoes,7,kingrichardiii,1592\nflourish,7,kingrichardiii,1592\nduty,7,kingrichardiii,1592\nthemselves,7,kingrichardiii,1592\ndreams,7,kingrichardiii,1592\nwomb,7,kingrichardiii,1592\ndull,7,kingrichardiii,1592\nfly,7,kingrichardiii,1592\ngentleman,7,kingrichardiii,1592\nhatred,7,kingrichardiii,1592\nprayers,7,kingrichardiii,1592\nlook'd,7,kingrichardiii,1592\nperson,7,kingrichardiii,1592\nself,7,kingrichardiii,1592\nVAUGHAN,7,kingrichardiii,1592\nmother's,7,kingrichardiii,1592\nlie,7,kingrichardiii,1592\nARCHBISHOP,7,kingrichardiii,1592\nmet,7,kingrichardiii,1592\nglory,7,kingrichardiii,1592\nBefore,7,kingrichardiii,1592\ndog,7,kingrichardiii,1592\nslew,7,kingrichardiii,1592\ncharity,7,kingrichardiii,1592\nenemy,7,kingrichardiii,1592\nlady,7,kingrichardiii,1592\npity,8,kingrichardiii,1592\nvillain,8,kingrichardiii,1592\nwithal,8,kingrichardiii,1592\ndraw,8,kingrichardiii,1592\ngolden,8,kingrichardiii,1592\nNot,8,kingrichardiii,1592\nwail,8,kingrichardiii,1592\nsir,8,kingrichardiii,1592\nslaughter,8,kingrichardiii,1592\nAside,8,kingrichardiii,1592\nsuit,8,kingrichardiii,1592\nscorn,8,kingrichardiii,1592\ncounsel,8,kingrichardiii,1592\nWilliam,8,kingrichardiii,1592\nFrance,8,kingrichardiii,1592\nThere,8,kingrichardiii,1592\nfellow,8,kingrichardiii,1592\nkill'd,8,kingrichardiii,1592\nbrief,8,kingrichardiii,1592\nwant,8,kingrichardiii,1592\nhence,8,kingrichardiii,1592\nfriend,8,kingrichardiii,1592\nOn,8,kingrichardiii,1592\nears,8,kingrichardiii,1592\nproud,8,kingrichardiii,1592\nprove,8,kingrichardiii,1592\nwear,8,kingrichardiii,1592\nSaint,8,kingrichardiii,1592\nfarewell,8,kingrichardiii,1592\nvictory,8,kingrichardiii,1592\nhadst,8,kingrichardiii,1592\nlost,8,kingrichardiii,1592\ncall'd,8,kingrichardiii,1592\ndeadly,8,kingrichardiii,1592\nsanctuary,8,kingrichardiii,1592\nguess,8,kingrichardiii,1592\neye,8,kingrichardiii,1592\nstrike,8,kingrichardiii,1592\nTherefore,8,kingrichardiii,1592\nmortal,8,kingrichardiii,1592\nissue,8,kingrichardiii,1592\ngrave,8,kingrichardiii,1592\nwin,8,kingrichardiii,1592\nsave,8,kingrichardiii,1592\nThus,8,kingrichardiii,1592\nSIR,8,kingrichardiii,1592\nface,8,kingrichardiii,1592\ncurses,8,kingrichardiii,1592\nmarry,8,kingrichardiii,1592\nguilty,8,kingrichardiii,1592\ntale,8,kingrichardiii,1592\nthousand,8,kingrichardiii,1592\ngentlemen,8,kingrichardiii,1592\nwilt,8,kingrichardiii,1592\nAnne,8,kingrichardiii,1592\nPrince,8,kingrichardiii,1592\ntraitor,8,kingrichardiii,1592\nentreat,8,kingrichardiii,1592\nwretched,8,kingrichardiii,1592\nkindred,8,kingrichardiii,1592\nhither,8,kingrichardiii,1592\nfirst,8,kingrichardiii,1592\nlearn,8,kingrichardiii,1592\nstraight,8,kingrichardiii,1592\nthoughts,8,kingrichardiii,1592\nMarry,8,kingrichardiii,1592\nfollow,8,kingrichardiii,1592\nVaughan,8,kingrichardiii,1592\nMargaret,9,kingrichardiii,1592\nmeet,9,kingrichardiii,1592\nV,9,kingrichardiii,1592\ntimes,9,kingrichardiii,1592\nLORD,9,kingrichardiii,1592\njoy,9,kingrichardiii,1592\nwhile,9,kingrichardiii,1592\nnothing,9,kingrichardiii,1592\nbody,9,kingrichardiii,1592\nTyrrel,9,kingrichardiii,1592\nThese,9,kingrichardiii,1592\nOur,9,kingrichardiii,1592\nwish,9,kingrichardiii,1592\nmurder,9,kingrichardiii,1592\nPlantagenet,9,kingrichardiii,1592\ncanst,9,kingrichardiii,1592\nII,9,kingrichardiii,1592\nmeans,9,kingrichardiii,1592\nbest,9,kingrichardiii,1592\nwhose,9,kingrichardiii,1592\nBISHOP,9,kingrichardiii,1592\nloves,9,kingrichardiii,1592\nMore,9,kingrichardiii,1592\narm,9,kingrichardiii,1592\nbosom,9,kingrichardiii,1592\nrevenge,9,kingrichardiii,1592\ninto,9,kingrichardiii,1592\nShe,9,kingrichardiii,1592\nfather's,9,kingrichardiii,1592\nWere,9,kingrichardiii,1592\nsame,9,kingrichardiii,1592\nbreak,9,kingrichardiii,1592\nsays,9,kingrichardiii,1592\nloving,9,kingrichardiii,1592\nbeseech,9,kingrichardiii,1592\nThink,9,kingrichardiii,1592\ngrant,9,kingrichardiii,1592\nfortune,9,kingrichardiii,1592\neven,9,kingrichardiii,1592\nBoy,9,kingrichardiii,1592\nlordship,9,kingrichardiii,1592\nhearts,9,kingrichardiii,1592\nkingdom,9,kingrichardiii,1592\nback,9,kingrichardiii,1592\npresence,9,kingrichardiii,1592\nbeauty,9,kingrichardiii,1592\nELY,9,kingrichardiii,1592\nwidow,9,kingrichardiii,1592\nshalt,9,kingrichardiii,1592\nWill,10,kingrichardiii,1592\ntears,10,kingrichardiii,1592\ncharge,10,kingrichardiii,1592\ncall,10,kingrichardiii,1592\nboar,10,kingrichardiii,1592\nwrong,10,kingrichardiii,1592\nprinces,10,kingrichardiii,1592\nsun,10,kingrichardiii,1592\nfearful,10,kingrichardiii,1592\nPomfret,10,kingrichardiii,1592\nAt,10,kingrichardiii,1592\nbad,10,kingrichardiii,1592\nbed,10,kingrichardiii,1592\nRe,10,kingrichardiii,1592\nsaid,10,kingrichardiii,1592\ndevil,10,kingrichardiii,1592\nBecause,10,kingrichardiii,1592\nfar,10,kingrichardiii,1592\nslain,10,kingrichardiii,1592\nvery,10,kingrichardiii,1592\nneed,10,kingrichardiii,1592\nRatcliff,10,kingrichardiii,1592\nsake,10,kingrichardiii,1592\nwar,10,kingrichardiii,1592\nbrother's,10,kingrichardiii,1592\nhold,10,kingrichardiii,1592\ndangerous,10,kingrichardiii,1592\nswear,10,kingrichardiii,1592\ncold,10,kingrichardiii,1592\nDorset,10,kingrichardiii,1592\ncitizens,10,kingrichardiii,1592\nkind,10,kingrichardiii,1592\nGrey,11,kingrichardiii,1592\nWould,11,kingrichardiii,1592\nsons,11,kingrichardiii,1592\nanother,11,kingrichardiii,1592\nWas,11,kingrichardiii,1592\nNorfolk,11,kingrichardiii,1592\nothers,11,kingrichardiii,1592\nelse,11,kingrichardiii,1592\nside,11,kingrichardiii,1592\nweep,11,kingrichardiii,1592\ngone,11,kingrichardiii,1592\njust,11,kingrichardiii,1592\nearth,11,kingrichardiii,1592\nkeep,11,kingrichardiii,1592\nbrothers,11,kingrichardiii,1592\nHath,11,kingrichardiii,1592\nere,11,kingrichardiii,1592\nchild,11,kingrichardiii,1592\nLook,11,kingrichardiii,1592\ndidst,11,kingrichardiii,1592\ndream,11,kingrichardiii,1592\nstate,11,kingrichardiii,1592\nthing,11,kingrichardiii,1592\noff,11,kingrichardiii,1592\nSay,11,kingrichardiii,1592\nEngland's,11,kingrichardiii,1592\nhour,11,kingrichardiii,1592\nlaw,11,kingrichardiii,1592\nlay,11,kingrichardiii,1592\npardon,11,kingrichardiii,1592\nEngland,11,kingrichardiii,1592\nhours,11,kingrichardiii,1592\nsend,11,kingrichardiii,1592\nsent,11,kingrichardiii,1592\nTake,11,kingrichardiii,1592\nhimself,11,kingrichardiii,1592\nhelp,12,kingrichardiii,1592\nconscience,12,kingrichardiii,1592\nGive,12,kingrichardiii,1592\nwithin,12,kingrichardiii,1592\nafter,12,kingrichardiii,1592\nabout,12,kingrichardiii,1592\nsword,12,kingrichardiii,1592\nbring,12,kingrichardiii,1592\ntherefore,12,kingrichardiii,1592\nenter,12,kingrichardiii,1592\ntongue,12,kingrichardiii,1592\nhands,12,kingrichardiii,1592\nthyself,12,kingrichardiii,1592\nloss,12,kingrichardiii,1592\nplace,12,kingrichardiii,1592\nfoul,12,kingrichardiii,1592\nforth,12,kingrichardiii,1592\nmayor,12,kingrichardiii,1592\nAre,12,kingrichardiii,1592\nenemies,12,kingrichardiii,1592\ncould,12,kingrichardiii,1592\nstand,12,kingrichardiii,1592\nthank,12,kingrichardiii,1592\nthereof,12,kingrichardiii,1592\nGREY,12,kingrichardiii,1592\nmakes,12,kingrichardiii,1592\nland,12,kingrichardiii,1592\nshame,12,kingrichardiii,1592\npower,12,kingrichardiii,1592\nevery,13,kingrichardiii,1592\ncame,13,kingrichardiii,1592\nNor,13,kingrichardiii,1592\naway,13,kingrichardiii,1592\nHere,13,kingrichardiii,1592\nhonour,13,kingrichardiii,1592\neach,13,kingrichardiii,1592\nstay,13,kingrichardiii,1592\n'tis,13,kingrichardiii,1592\nage,13,kingrichardiii,1592\nfield,13,kingrichardiii,1592\npart,13,kingrichardiii,1592\nMadam,13,kingrichardiii,1592\nindeed,13,kingrichardiii,1592\nFrom,13,kingrichardiii,1592\nonce,13,kingrichardiii,1592\nthine,13,kingrichardiii,1592\nwhy,13,kingrichardiii,1592\nheavy,13,kingrichardiii,1592\nown,13,kingrichardiii,1592\nShall,13,kingrichardiii,1592\nEven,13,kingrichardiii,1592\nplease,13,kingrichardiii,1592\ntill,13,kingrichardiii,1592\ncomfort,13,kingrichardiii,1592\nHenry,13,kingrichardiii,1592\nbattle,13,kingrichardiii,1592\nwhom,13,kingrichardiii,1592\nliege,13,kingrichardiii,1592\nlast,13,kingrichardiii,1592\nTell,14,kingrichardiii,1592\npray,14,kingrichardiii,1592\nfull,14,kingrichardiii,1592\nfalse,14,kingrichardiii,1592\nrest,14,kingrichardiii,1592\nmean,14,kingrichardiii,1592\nsince,14,kingrichardiii,1592\ndespair,14,kingrichardiii,1592\nput,14,kingrichardiii,1592\nGeorge,14,kingrichardiii,1592\nhigh,14,kingrichardiii,1592\nend,14,kingrichardiii,1592\nThey,14,kingrichardiii,1592\nStanley,14,kingrichardiii,1592\nThird,14,kingrichardiii,1592\nsorrow,14,kingrichardiii,1592\nLondon,14,kingrichardiii,1592\nword,14,kingrichardiii,1592\nNORFOLK,14,kingrichardiii,1592\ngreat,14,kingrichardiii,1592\nRivers,14,kingrichardiii,1592\nprincely,14,kingrichardiii,1592\nthought,15,kingrichardiii,1592\nhell,15,kingrichardiii,1592\nlooks,15,kingrichardiii,1592\nMayor,15,kingrichardiii,1592\ntent,15,kingrichardiii,1592\nbid,15,kingrichardiii,1592\ndeed,15,kingrichardiii,1592\ncousin,15,kingrichardiii,1592\nYet,15,kingrichardiii,1592\nmighty,15,kingrichardiii,1592\nhast,15,kingrichardiii,1592\nThan,15,kingrichardiii,1592\nright,15,kingrichardiii,1592\nTYRREL,15,kingrichardiii,1592\nnone,15,kingrichardiii,1592\ntender,15,kingrichardiii,1592\nyours,15,kingrichardiii,1592\nknows,15,kingrichardiii,1592\nway,15,kingrichardiii,1592\n'Tis,15,kingrichardiii,1592\nsouls,15,kingrichardiii,1592\nmadam,15,kingrichardiii,1592\ntold,16,kingrichardiii,1592\ndays,16,kingrichardiii,1592\nUpon,16,kingrichardiii,1592\nbetter,16,kingrichardiii,1592\nfight,16,kingrichardiii,1592\nBe,16,kingrichardiii,1592\nIt,16,kingrichardiii,1592\ndost,16,kingrichardiii,1592\nhate,16,kingrichardiii,1592\nSir,16,kingrichardiii,1592\ncomes,16,kingrichardiii,1592\never,16,kingrichardiii,1592\nlives,16,kingrichardiii,1592\nhouse,16,kingrichardiii,1592\nmight,16,kingrichardiii,1592\nkill,16,kingrichardiii,1592\ncrown,16,kingrichardiii,1592\nset,17,kingrichardiii,1592\ncause,17,kingrichardiii,1592\ndoubt,17,kingrichardiii,1592\nDORSET,17,kingrichardiii,1592\nlittle,17,kingrichardiii,1592\nmajesty,17,kingrichardiii,1592\nmany,17,kingrichardiii,1592\narms,17,kingrichardiii,1592\nfall,17,kingrichardiii,1592\nhope,17,kingrichardiii,1592\nAy,18,kingrichardiii,1592\nlords,18,kingrichardiii,1592\nnor,18,kingrichardiii,1592\nWell,18,kingrichardiii,1592\nhappy,18,kingrichardiii,1592\nLet,18,kingrichardiii,1592\nsleep,18,kingrichardiii,1592\nhorse,19,kingrichardiii,1592\nhead,19,kingrichardiii,1592\nDuke,19,kingrichardiii,1592\nagainst,19,kingrichardiii,1592\nWe,19,kingrichardiii,1592\nOr,19,kingrichardiii,1592\ncurse,19,kingrichardiii,1592\nGod's,19,kingrichardiii,1592\nbear,19,kingrichardiii,1592\ndear,19,kingrichardiii,1592\nart,19,kingrichardiii,1592\nAll,19,kingrichardiii,1592\nbefore,19,kingrichardiii,1592\nuncle,19,kingrichardiii,1592\nsweet,19,kingrichardiii,1592\nthus,19,kingrichardiii,1592\nleave,19,kingrichardiii,1592\nsovereign,19,kingrichardiii,1592\ndaughter,20,kingrichardiii,1592\nGo,20,kingrichardiii,1592\nGood,20,kingrichardiii,1592\ndeep,20,kingrichardiii,1592\nlook,20,kingrichardiii,1592\nhusband,20,kingrichardiii,1592\nwhere,20,kingrichardiii,1592\nstill,20,kingrichardiii,1592\nPRINCE,20,kingrichardiii,1592\ntrue,20,kingrichardiii,1592\ndown,21,kingrichardiii,1592\nbeen,21,kingrichardiii,1592\nHave,21,kingrichardiii,1592\nThis,21,kingrichardiii,1592\nmind,21,kingrichardiii,1592\nCatesby,21,kingrichardiii,1592\nduke,21,kingrichardiii,1592\nbeing,21,kingrichardiii,1592\n',22,kingrichardiii,1592\nGloucester,22,kingrichardiii,1592\nThy,22,kingrichardiii,1592\nEdward's,22,kingrichardiii,1592\nsuch,23,kingrichardiii,1592\nchildren,23,kingrichardiii,1592\nan,23,kingrichardiii,1592\nthose,23,kingrichardiii,1592\nagain,23,kingrichardiii,1592\nout,23,kingrichardiii,1592\nwife,23,kingrichardiii,1592\nSTANLEY,24,kingrichardiii,1592\nIs,24,kingrichardiii,1592\nlong,24,kingrichardiii,1592\nprince,24,kingrichardiii,1592\nyoung,24,kingrichardiii,1592\nBRAKENBURY,24,kingrichardiii,1592\nDERBY,24,kingrichardiii,1592\nholy,24,kingrichardiii,1592\nunto,24,kingrichardiii,1592\nGhost,24,kingrichardiii,1592\npoor,24,kingrichardiii,1592\nmen,24,kingrichardiii,1592\nother,24,kingrichardiii,1592\npeace,25,kingrichardiii,1592\nworld,25,kingrichardiii,1592\nNow,25,kingrichardiii,1592\nfear,25,kingrichardiii,1592\nheaven,25,kingrichardiii,1592\nname,25,kingrichardiii,1592\nany,25,kingrichardiii,1592\nACT,25,kingrichardiii,1592\nthink,25,kingrichardiii,1592\nWhere,25,kingrichardiii,1592\nboth,26,kingrichardiii,1592\nOf,26,kingrichardiii,1592\nIV,26,kingrichardiii,1592\nhand,26,kingrichardiii,1592\ngentle,26,kingrichardiii,1592\nbloody,26,kingrichardiii,1592\nwho,26,kingrichardiii,1592\nCitizen,26,kingrichardiii,1592\nYork,26,kingrichardiii,1592\nfather,26,kingrichardiii,1592\nSCENE,26,kingrichardiii,1592\nmuch,27,kingrichardiii,1592\ngracious,27,kingrichardiii,1592\nhear,27,kingrichardiii,1592\nHis,27,kingrichardiii,1592\ncan,27,kingrichardiii,1592\nroyal,28,kingrichardiii,1592\nIn,28,kingrichardiii,1592\nnight,28,kingrichardiii,1592\nmost,28,kingrichardiii,1592\nspeak,28,kingrichardiii,1592\nmorrow,28,kingrichardiii,1592\nnews,28,kingrichardiii,1592\neyes,28,kingrichardiii,1592\nWith,29,kingrichardiii,1592\nhow,29,kingrichardiii,1592\nfair,29,kingrichardiii,1592\nMessenger,29,kingrichardiii,1592\ntwo,29,kingrichardiii,1592\nlife,30,kingrichardiii,1592\nRICHMOND,30,kingrichardiii,1592\nBy,30,kingrichardiii,1592\nyet,30,kingrichardiii,1592\nHastings,30,kingrichardiii,1592\ncannot,30,kingrichardiii,1592\nfriends,31,kingrichardiii,1592\nWho,31,kingrichardiii,1592\nTower,31,kingrichardiii,1592\ngive,31,kingrichardiii,1592\nup,31,kingrichardiii,1592\nKing,31,kingrichardiii,1592\nThen,31,kingrichardiii,1592\nqueen,31,kingrichardiii,1592\nRATCLIFF,31,kingrichardiii,1592\nCome,32,kingrichardiii,1592\nRIVERS,32,kingrichardiii,1592\nnever,32,kingrichardiii,1592\ndoth,32,kingrichardiii,1592\nHow,32,kingrichardiii,1592\nThou,32,kingrichardiii,1592\nRichmond,32,kingrichardiii,1592\ntake,32,kingrichardiii,1592\nWhen,32,kingrichardiii,1592\nmust,33,kingrichardiii,1592\nwhich,34,kingrichardiii,1592\ntell,34,kingrichardiii,1592\nknow,34,kingrichardiii,1592\nmade,34,kingrichardiii,1592\nExit,34,kingrichardiii,1592\ndie,34,kingrichardiii,1592\nthese,35,kingrichardiii,1592\nYou,35,kingrichardiii,1592\ndone,35,kingrichardiii,1592\nYour,35,kingrichardiii,1592\nsee,36,kingrichardiii,1592\nthan,36,kingrichardiii,1592\nExeunt,36,kingrichardiii,1592\nheart,36,kingrichardiii,1592\nEDWARD,36,kingrichardiii,1592\ntoo,36,kingrichardiii,1592\nthere,37,kingrichardiii,1592\nNo,37,kingrichardiii,1592\nnoble,37,kingrichardiii,1592\nBuckingham,38,kingrichardiii,1592\nlike,38,kingrichardiii,1592\nbrother,38,kingrichardiii,1592\nlive,38,kingrichardiii,1592\nsome,39,kingrichardiii,1592\nshe,39,kingrichardiii,1592\nSo,39,kingrichardiii,1592\ndead,39,kingrichardiii,1592\nmyself,39,kingrichardiii,1592\nMARGARET,39,kingrichardiii,1592\nman,39,kingrichardiii,1592\nWhy,40,kingrichardiii,1592\nblood,40,kingrichardiii,1592\nSecond,40,kingrichardiii,1592\ngo,41,kingrichardiii,1592\nClarence,41,kingrichardiii,1592\nmake,41,kingrichardiii,1592\nmine,41,kingrichardiii,1592\nCLARENCE,41,kingrichardiii,1592\nmother,42,kingrichardiii,1592\nHe,42,kingrichardiii,1592\nRichard,42,kingrichardiii,1592\none,42,kingrichardiii,1592\nshould,44,kingrichardiii,1592\ntime,44,kingrichardiii,1592\nlet,44,kingrichardiii,1592\nAs,45,kingrichardiii,1592\nor,45,kingrichardiii,1592\nmore,45,kingrichardiii,1592\nhere,46,kingrichardiii,1592\nsoul,46,kingrichardiii,1592\nson,46,kingrichardiii,1592\nhad,47,kingrichardiii,1592\nFirst,47,kingrichardiii,1592\nwhen,47,kingrichardiii,1592\ncome,48,kingrichardiii,1592\ndid,48,kingrichardiii,1592\nI'll,49,kingrichardiii,1592\nDUCHESS,49,kingrichardiii,1592\nme,305,kingrichardiii,1592\nupon,50,kingrichardiii,1592\nEdward,50,kingrichardiii,1592\nWhich,51,kingrichardiii,1592\nmay,51,kingrichardiii,1592\nsay,52,kingrichardiii,1592\nif,53,kingrichardiii,1592\nhath,54,kingrichardiii,1592\nCATESBY,54,kingrichardiii,1592\nwould,55,kingrichardiii,1592\nday,56,kingrichardiii,1592\nIf,58,kingrichardiii,1592\nLADY,58,kingrichardiii,1592\nam,59,kingrichardiii,1592\nANNE,59,kingrichardiii,1592\nwell,59,kingrichardiii,1592\ngrace,60,kingrichardiii,1592\na,316,kingrichardiii,1592\nHASTINGS,61,kingrichardiii,1592\nus,61,kingrichardiii,1592\nwere,61,kingrichardiii,1592\nAnd,317,kingrichardiii,1592\nA,62,kingrichardiii,1592\nthen,62,kingrichardiii,1592\nlove,63,kingrichardiii,1592\nthat,319,kingrichardiii,1592\nthem,64,kingrichardiii,1592\nOF,65,kingrichardiii,1592\nMurderer,65,kingrichardiii,1592\nFor,66,kingrichardiii,1592\ndeath,68,kingrichardiii,1592\nking,68,kingrichardiii,1592\nLord,72,kingrichardiii,1592\nnow,73,kingrichardiii,1592\nand,585,kingrichardiii,1592\nthey,75,kingrichardiii,1592\nwas,76,kingrichardiii,1592\nWhat,77,kingrichardiii,1592\nO,80,kingrichardiii,1592\ntheir,80,kingrichardiii,1592\nYORK,80,kingrichardiii,1592\nthe,848,kingrichardiii,1592\nno,81,kingrichardiii,1592\nEnter,84,kingrichardiii,1592\nwhat,85,kingrichardiii,1592\nat,86,kingrichardiii,1592\nMy,87,kingrichardiii,1592\nfrom,88,kingrichardiii,1592\nGod,89,kingrichardiii,1592\nare,91,kingrichardiii,1592\nyou,347,kingrichardiii,1592\nshall,93,kingrichardiii,1592\nas,95,kingrichardiii,1592\nwe,95,kingrichardiii,1592\ndo,96,kingrichardiii,1592\nBut,97,kingrichardiii,1592\ngood,100,kingrichardiii,1592\nThat,101,kingrichardiii,1592\nbut,107,kingrichardiii,1592\nELIZABETH,108,kingrichardiii,1592\nour,110,kingrichardiii,1592\nBUCKINGHAM,114,kingrichardiii,1592\nher,116,kingrichardiii,1592\nin,382,kingrichardiii,1592\nto,643,kingrichardiii,1592\nthee,133,kingrichardiii,1592\nall,133,kingrichardiii,1592\nso,133,kingrichardiii,1592\non,138,kingrichardiii,1592\nby,142,kingrichardiii,1592\nThe,143,kingrichardiii,1592\nof,655,kingrichardiii,1592\nwill,144,kingrichardiii,1592\nQUEEN,144,kingrichardiii,1592\nTo,157,kingrichardiii,1592\nhim,166,kingrichardiii,1592\nlord,166,kingrichardiii,1592\nhe,173,kingrichardiii,1592\nhave,175,kingrichardiii,1592\nthou,178,kingrichardiii,1592\nthis,179,kingrichardiii,1592\nGLOUCESTER,182,kingrichardiii,1592\nthy,187,kingrichardiii,1592\nRICHARD,188,kingrichardiii,1592\nIII,198,kingrichardiii,1592\nKING,201,kingrichardiii,1592\nit,202,kingrichardiii,1592\nI,715,kingrichardiii,1592\nbe,210,kingrichardiii,1592\nfor,215,kingrichardiii,1592\nhis,222,kingrichardiii,1592\nwith,235,kingrichardiii,1592\nyour,239,kingrichardiii,1592\nis,246,kingrichardiii,1592\nnot,254,kingrichardiii,1592\nattended,1,romeoandjuliet,1596\nplagues,1,romeoandjuliet,1596\ntreason,1,romeoandjuliet,1596\npitcher,1,romeoandjuliet,1596\naffords,1,romeoandjuliet,1596\ndischarged,1,romeoandjuliet,1596\nfear'st,1,romeoandjuliet,1596\nreligion,1,romeoandjuliet,1596\npleading,1,romeoandjuliet,1596\nscathe,1,romeoandjuliet,1596\ncage,1,romeoandjuliet,1596\nsteads,1,romeoandjuliet,1596\nJames,1,romeoandjuliet,1596\ntroubled,1,romeoandjuliet,1596\ncrow'd,1,romeoandjuliet,1596\nprayers',1,romeoandjuliet,1596\nMaintains,1,romeoandjuliet,1596\nscrape,1,romeoandjuliet,1596\nseducing,1,romeoandjuliet,1596\n'broad,1,romeoandjuliet,1596\nencamp,1,romeoandjuliet,1596\neffeminate,1,romeoandjuliet,1596\ntruce,1,romeoandjuliet,1596\nmoral,1,romeoandjuliet,1596\nsped,1,romeoandjuliet,1596\nignorance,1,romeoandjuliet,1596\nparted,1,romeoandjuliet,1596\njaunt,1,romeoandjuliet,1596\nStands,1,romeoandjuliet,1596\nropes,1,romeoandjuliet,1596\nabsolved,1,romeoandjuliet,1596\nmanes,1,romeoandjuliet,1596\nsuffer,1,romeoandjuliet,1596\ncutting,1,romeoandjuliet,1596\njoin,1,romeoandjuliet,1596\nmistaking,1,romeoandjuliet,1596\nmedlars,1,romeoandjuliet,1596\nprofess'd,1,romeoandjuliet,1596\nabsolver,1,romeoandjuliet,1596\npestilence,1,romeoandjuliet,1596\nProud,1,romeoandjuliet,1596\nextremity,1,romeoandjuliet,1596\ndrop,1,romeoandjuliet,1596\ntool,1,romeoandjuliet,1596\ninfant,1,romeoandjuliet,1596\nreclaim'd,1,romeoandjuliet,1596\ndined,1,romeoandjuliet,1596\ndarest,1,romeoandjuliet,1596\nreputation,1,romeoandjuliet,1596\nlengthens,1,romeoandjuliet,1596\nunrest,1,romeoandjuliet,1596\nyielding,1,romeoandjuliet,1596\ndireful,1,romeoandjuliet,1596\nAdam,1,romeoandjuliet,1596\nHear,1,romeoandjuliet,1596\ndouble,1,romeoandjuliet,1596\nrank'd,1,romeoandjuliet,1596\ncountry,1,romeoandjuliet,1596\nforswear,1,romeoandjuliet,1596\ndream'd,1,romeoandjuliet,1596\nspeech,1,romeoandjuliet,1596\ncontradict,1,romeoandjuliet,1596\nunfurnished,1,romeoandjuliet,1596\nconjurations,1,romeoandjuliet,1596\nbrightness,1,romeoandjuliet,1596\nfollowing,1,romeoandjuliet,1596\ntreasure,1,romeoandjuliet,1596\nlament,1,romeoandjuliet,1596\nWhole,1,romeoandjuliet,1596\ntorn,1,romeoandjuliet,1596\nperuse,1,romeoandjuliet,1596\nwicked,1,romeoandjuliet,1596\ndine,1,romeoandjuliet,1596\nconvoy,1,romeoandjuliet,1596\nfemale,1,romeoandjuliet,1596\nSwitch,1,romeoandjuliet,1596\nhasty,1,romeoandjuliet,1596\nrigour,1,romeoandjuliet,1596\ndisparagement,1,romeoandjuliet,1596\nrode,1,romeoandjuliet,1596\nVillain,1,romeoandjuliet,1596\nconfusion's,1,romeoandjuliet,1596\ndistill'd,1,romeoandjuliet,1596\n'marry',1,romeoandjuliet,1596\n'Signior,1,romeoandjuliet,1596\npurge,1,romeoandjuliet,1596\nBondage,1,romeoandjuliet,1596\nresign,1,romeoandjuliet,1596\nhealth,1,romeoandjuliet,1596\nwaddled,1,romeoandjuliet,1596\nmatron,1,romeoandjuliet,1596\nCondemned,1,romeoandjuliet,1596\nsteals,1,romeoandjuliet,1596\nstopp'd,1,romeoandjuliet,1596\nroe,1,romeoandjuliet,1596\nBear,1,romeoandjuliet,1596\nWisely,1,romeoandjuliet,1596\nambling,1,romeoandjuliet,1596\nHowlings,1,romeoandjuliet,1596\nsimples,1,romeoandjuliet,1596\nbucklers,1,romeoandjuliet,1596\nboys,1,romeoandjuliet,1596\nexpect'st,1,romeoandjuliet,1596\nwaxes,1,romeoandjuliet,1596\ndevouring,1,romeoandjuliet,1596\npainter,1,romeoandjuliet,1596\nspeedy,1,romeoandjuliet,1596\nRebellious,1,romeoandjuliet,1596\nNever,1,romeoandjuliet,1596\ntoes,1,romeoandjuliet,1596\ndire,1,romeoandjuliet,1596\nwailing,1,romeoandjuliet,1596\nswifter,1,romeoandjuliet,1596\ndrowsy,1,romeoandjuliet,1596\nclears,1,romeoandjuliet,1596\nfurthest,1,romeoandjuliet,1596\ndespised,1,romeoandjuliet,1596\nwarning,1,romeoandjuliet,1596\nassailing,1,romeoandjuliet,1596\nfrowning,1,romeoandjuliet,1596\neight,1,romeoandjuliet,1596\nsisters,1,romeoandjuliet,1596\nwrites,1,romeoandjuliet,1596\npenalty,1,romeoandjuliet,1596\nyounger,1,romeoandjuliet,1596\ndarkness,1,romeoandjuliet,1596\npainted,1,romeoandjuliet,1596\nclothes,1,romeoandjuliet,1596\ncontract,1,romeoandjuliet,1596\npalmers',1,romeoandjuliet,1596\npardon'd,1,romeoandjuliet,1596\nunreasonable,1,romeoandjuliet,1596\ngroan,1,romeoandjuliet,1596\ntrunk,1,romeoandjuliet,1596\nschoolboys,1,romeoandjuliet,1596\nmean'st,1,romeoandjuliet,1596\nBlack,1,romeoandjuliet,1596\nBeguiled,1,romeoandjuliet,1596\nhate's,1,romeoandjuliet,1596\nprisoner,1,romeoandjuliet,1596\ngorgeous,1,romeoandjuliet,1596\nerrand,1,romeoandjuliet,1596\ndrum,1,romeoandjuliet,1596\nutterance,1,romeoandjuliet,1596\npotion's,1,romeoandjuliet,1596\ncomest,1,romeoandjuliet,1596\nUnworthy,1,romeoandjuliet,1596\nDoting,1,romeoandjuliet,1596\nhearted,1,romeoandjuliet,1596\nabound'st,1,romeoandjuliet,1596\ncheering,1,romeoandjuliet,1596\nproperer,1,romeoandjuliet,1596\nbandying,1,romeoandjuliet,1596\nadversary,1,romeoandjuliet,1596\nrid,1,romeoandjuliet,1596\nlooked,1,romeoandjuliet,1596\nnaked,1,romeoandjuliet,1596\nangels,1,romeoandjuliet,1596\nLovers,1,romeoandjuliet,1596\nhanged,1,romeoandjuliet,1596\nbenefice,1,romeoandjuliet,1596\nadvance,1,romeoandjuliet,1596\nsummer's,1,romeoandjuliet,1596\nravening,1,romeoandjuliet,1596\nwield,1,romeoandjuliet,1596\nflow,1,romeoandjuliet,1596\nits,1,romeoandjuliet,1596\nlamentations,1,romeoandjuliet,1596\nstretches,1,romeoandjuliet,1596\ncoated,1,romeoandjuliet,1596\nstrangled,1,romeoandjuliet,1596\nalthough,1,romeoandjuliet,1596\nLaura,1,romeoandjuliet,1596\nlouring,1,romeoandjuliet,1596\nstumbled,1,romeoandjuliet,1596\nworms,1,romeoandjuliet,1596\nContempt,1,romeoandjuliet,1596\npined,1,romeoandjuliet,1596\nSojourn,1,romeoandjuliet,1596\nuntaught,1,romeoandjuliet,1596\nfound'st,1,romeoandjuliet,1596\nSnatching,1,romeoandjuliet,1596\nAlla,1,romeoandjuliet,1596\nsort,1,romeoandjuliet,1596\nreceptacle,1,romeoandjuliet,1596\nlively,1,romeoandjuliet,1596\nprest,1,romeoandjuliet,1596\nbosom's,1,romeoandjuliet,1596\nadvise,1,romeoandjuliet,1596\nconsorted,1,romeoandjuliet,1596\nodds,1,romeoandjuliet,1596\nworshipp'd,1,romeoandjuliet,1596\nsore,1,romeoandjuliet,1596\nJacks,1,romeoandjuliet,1596\nancestors,1,romeoandjuliet,1596\nstools,1,romeoandjuliet,1596\ntilts,1,romeoandjuliet,1596\nunattainted,1,romeoandjuliet,1596\nsnowy,1,romeoandjuliet,1596\nperverse,1,romeoandjuliet,1596\nlief,1,romeoandjuliet,1596\nCatling,1,romeoandjuliet,1596\nshowering,1,romeoandjuliet,1596\nimpute,1,romeoandjuliet,1596\ntyrannous,1,romeoandjuliet,1596\nwhoreson,1,romeoandjuliet,1596\nclasps,1,romeoandjuliet,1596\nshoemaker,1,romeoandjuliet,1596\nbower,1,romeoandjuliet,1596\ncurious,1,romeoandjuliet,1596\nPERSONAE,1,romeoandjuliet,1596\nwither,1,romeoandjuliet,1596\nconsidering,1,romeoandjuliet,1596\nLight,1,romeoandjuliet,1596\nboy's,1,romeoandjuliet,1596\ndemand,1,romeoandjuliet,1596\nNight's,1,romeoandjuliet,1596\ngoeth,1,romeoandjuliet,1596\nRemnants,1,romeoandjuliet,1596\nattempt,1,romeoandjuliet,1596\nwalking,1,romeoandjuliet,1596\nargues,1,romeoandjuliet,1596\nTickle,1,romeoandjuliet,1596\nOnce,1,romeoandjuliet,1596\nvast,1,romeoandjuliet,1596\nagrees,1,romeoandjuliet,1596\nshrieks,1,romeoandjuliet,1596\nstirring,1,romeoandjuliet,1596\nEarth,1,romeoandjuliet,1596\nexhales,1,romeoandjuliet,1596\nmartyr'd,1,romeoandjuliet,1596\nlacks,1,romeoandjuliet,1596\nbladders,1,romeoandjuliet,1596\nAfter,1,romeoandjuliet,1596\ngrubs,1,romeoandjuliet,1596\nstock,1,romeoandjuliet,1596\nsadly,1,romeoandjuliet,1596\nGriefs,1,romeoandjuliet,1596\nperforming,1,romeoandjuliet,1596\npink,1,romeoandjuliet,1596\ngrove,1,romeoandjuliet,1596\nbehests,1,romeoandjuliet,1596\nbefits,1,romeoandjuliet,1596\nbearing,1,romeoandjuliet,1596\nbetake,1,romeoandjuliet,1596\nstream,1,romeoandjuliet,1596\nassembly,1,romeoandjuliet,1596\nafire,1,romeoandjuliet,1596\nJove,1,romeoandjuliet,1596\nCold,1,romeoandjuliet,1596\nPink,1,romeoandjuliet,1596\nopposed,1,romeoandjuliet,1596\nlustier,1,romeoandjuliet,1596\npilgrimage,1,romeoandjuliet,1596\nlamentation,1,romeoandjuliet,1596\nresolve,1,romeoandjuliet,1596\nBlind,1,romeoandjuliet,1596\ndrag,1,romeoandjuliet,1596\nconfounds,1,romeoandjuliet,1596\ngracious,1,romeoandjuliet,1596\nbroken,1,romeoandjuliet,1596\namended,1,romeoandjuliet,1596\nmaidenheads,1,romeoandjuliet,1596\nMercy,1,romeoandjuliet,1596\nsubjects,1,romeoandjuliet,1596\nBliss,1,romeoandjuliet,1596\ntrumpet,1,romeoandjuliet,1596\nMuch,1,romeoandjuliet,1596\nhonestly,1,romeoandjuliet,1596\nheat,1,romeoandjuliet,1596\nrevels,1,romeoandjuliet,1596\nroar'd,1,romeoandjuliet,1596\nbudge,1,romeoandjuliet,1596\ncockatrice,1,romeoandjuliet,1596\nnecessaries,1,romeoandjuliet,1596\nsententious,1,romeoandjuliet,1596\n'Tybalt,1,romeoandjuliet,1596\noppress,1,romeoandjuliet,1596\nshanks,1,romeoandjuliet,1596\nadjacent,1,romeoandjuliet,1596\nvoices,1,romeoandjuliet,1596\nmadness,1,romeoandjuliet,1596\nchop,1,romeoandjuliet,1596\nknaves,1,romeoandjuliet,1596\nrepetition,1,romeoandjuliet,1596\nsoonest,1,romeoandjuliet,1596\ngross,1,romeoandjuliet,1596\nbreaks,1,romeoandjuliet,1596\nstifled,1,romeoandjuliet,1596\nhanging,1,romeoandjuliet,1596\nSeal'd,1,romeoandjuliet,1596\nfinding,1,romeoandjuliet,1596\njour,1,romeoandjuliet,1596\nEyes,1,romeoandjuliet,1596\nrites,1,romeoandjuliet,1596\nwrong'st,1,romeoandjuliet,1596\nwantons,1,romeoandjuliet,1596\ngrievance,1,romeoandjuliet,1596\nPale,1,romeoandjuliet,1596\nMethinks,1,romeoandjuliet,1596\nfurious,1,romeoandjuliet,1596\ncricket's,1,romeoandjuliet,1596\npastry,1,romeoandjuliet,1596\nfume,1,romeoandjuliet,1596\nrunagate,1,romeoandjuliet,1596\ncalamity,1,romeoandjuliet,1596\nwait,1,romeoandjuliet,1596\nlesser,1,romeoandjuliet,1596\nwail,1,romeoandjuliet,1596\narithmetic,1,romeoandjuliet,1596\nkin,1,romeoandjuliet,1596\ncoldly,1,romeoandjuliet,1596\ncourtiers',1,romeoandjuliet,1596\ndefiance,1,romeoandjuliet,1596\nlimits,1,romeoandjuliet,1596\nperjured,1,romeoandjuliet,1596\nBelonging,1,romeoandjuliet,1596\nGentle,1,romeoandjuliet,1596\ntortoise,1,romeoandjuliet,1596\nprudence,1,romeoandjuliet,1596\nstealth,1,romeoandjuliet,1596\nladies',1,romeoandjuliet,1596\ndiscovery,1,romeoandjuliet,1596\nPerchance,1,romeoandjuliet,1596\nparson's,1,romeoandjuliet,1596\nInherit,1,romeoandjuliet,1596\npursuing,1,romeoandjuliet,1596\nexecution,1,romeoandjuliet,1596\nsix,1,romeoandjuliet,1596\ndistraught,1,romeoandjuliet,1596\nweaker,1,romeoandjuliet,1596\nacted,1,romeoandjuliet,1596\nsheathed,1,romeoandjuliet,1596\nperch,1,romeoandjuliet,1596\ncompliment,1,romeoandjuliet,1596\nriband,1,romeoandjuliet,1596\nspheres,1,romeoandjuliet,1596\ntalked,1,romeoandjuliet,1596\nMisshapen,1,romeoandjuliet,1596\nordained,1,romeoandjuliet,1596\nsunset,1,romeoandjuliet,1596\nRetain,1,romeoandjuliet,1596\nfaithfully,1,romeoandjuliet,1596\nconceive,1,romeoandjuliet,1596\nPhoebus',1,romeoandjuliet,1596\nFranciscans,1,romeoandjuliet,1596\nCynthia's,1,romeoandjuliet,1596\nviolently,1,romeoandjuliet,1596\nHappily,1,romeoandjuliet,1596\nstoccata,1,romeoandjuliet,1596\nbrisk,1,romeoandjuliet,1596\n'twere,1,romeoandjuliet,1596\ndeceased,1,romeoandjuliet,1596\nspider's,1,romeoandjuliet,1596\nthou's,1,romeoandjuliet,1596\nwagon,1,romeoandjuliet,1596\nCophetua,1,romeoandjuliet,1596\nVitravio,1,romeoandjuliet,1596\nLifts,1,romeoandjuliet,1596\nfleer,1,romeoandjuliet,1596\nscourge,1,romeoandjuliet,1596\nfelon,1,romeoandjuliet,1596\ncontaining,1,romeoandjuliet,1596\ndeprived,1,romeoandjuliet,1596\nportentous,1,romeoandjuliet,1596\nsaying,1,romeoandjuliet,1596\nDriving,1,romeoandjuliet,1596\nmonarch,1,romeoandjuliet,1596\nthankings,1,romeoandjuliet,1596\ncoals,1,romeoandjuliet,1596\nfiddlestick,1,romeoandjuliet,1596\nmongers,1,romeoandjuliet,1596\n'When,1,romeoandjuliet,1596\nhereabout,1,romeoandjuliet,1596\nsociety,1,romeoandjuliet,1596\nripening,1,romeoandjuliet,1596\ntithe,1,romeoandjuliet,1596\ndeceit,1,romeoandjuliet,1596\nlanguish,1,romeoandjuliet,1596\nGoing,1,romeoandjuliet,1596\npeevish,1,romeoandjuliet,1596\nbeasts,1,romeoandjuliet,1596\nfell,1,romeoandjuliet,1596\nabused,1,romeoandjuliet,1596\ncollar,1,romeoandjuliet,1596\nglide,1,romeoandjuliet,1596\nscore,1,romeoandjuliet,1596\nperil,1,romeoandjuliet,1596\nlivest,1,romeoandjuliet,1596\nbirds,1,romeoandjuliet,1596\ndeliver,1,romeoandjuliet,1596\ncombine,1,romeoandjuliet,1596\nembrace,1,romeoandjuliet,1596\nworth,1,romeoandjuliet,1596\ndarting,1,romeoandjuliet,1596\nmurdered,1,romeoandjuliet,1596\nabuses,1,romeoandjuliet,1596\nskill,1,romeoandjuliet,1596\nexperienced,1,romeoandjuliet,1596\nbecomed,1,romeoandjuliet,1596\nbringing,1,romeoandjuliet,1596\nchildren's,1,romeoandjuliet,1596\nsycamore,1,romeoandjuliet,1596\nfollower,1,romeoandjuliet,1596\nsubject,1,romeoandjuliet,1596\nconstrains,1,romeoandjuliet,1596\ndeliciousness,1,romeoandjuliet,1596\nmantle,1,romeoandjuliet,1596\nlooking,1,romeoandjuliet,1596\nMartino,1,romeoandjuliet,1596\nprocures,1,romeoandjuliet,1596\nstumblest,1,romeoandjuliet,1596\nbelonging,1,romeoandjuliet,1596\nTheir,1,romeoandjuliet,1596\nkindly,1,romeoandjuliet,1596\nbow'd,1,romeoandjuliet,1596\n't,1,romeoandjuliet,1596\ndisgrace,1,romeoandjuliet,1596\nunmann'd,1,romeoandjuliet,1596\nPetrucio,1,romeoandjuliet,1596\nstudy,1,romeoandjuliet,1596\nchat,1,romeoandjuliet,1596\nextremities,1,romeoandjuliet,1596\nProdigious,1,romeoandjuliet,1596\npitiful,1,romeoandjuliet,1596\nlevel,1,romeoandjuliet,1596\nmisbehaved,1,romeoandjuliet,1596\nsets,1,romeoandjuliet,1596\nchildhood,1,romeoandjuliet,1596\nWatchmen,1,romeoandjuliet,1596\npieces,1,romeoandjuliet,1596\nfreezes,1,romeoandjuliet,1596\nthin,1,romeoandjuliet,1596\nscope,1,romeoandjuliet,1596\nbecomes,1,romeoandjuliet,1596\nsends,1,romeoandjuliet,1596\ncheers,1,romeoandjuliet,1596\nourselves,1,romeoandjuliet,1596\nminion,1,romeoandjuliet,1596\nworst,1,romeoandjuliet,1596\nshriek,1,romeoandjuliet,1596\nrear,1,romeoandjuliet,1596\nesteem,1,romeoandjuliet,1596\nGuests,1,romeoandjuliet,1596\noffence,1,romeoandjuliet,1596\nthrusts,1,romeoandjuliet,1596\noccupy,1,romeoandjuliet,1596\nskins,1,romeoandjuliet,1596\nguide,1,romeoandjuliet,1596\nredeem,1,romeoandjuliet,1596\nheartsick,1,romeoandjuliet,1596\nrung,1,romeoandjuliet,1596\nturning,1,romeoandjuliet,1596\ndanced,1,romeoandjuliet,1596\ndismember'd,1,romeoandjuliet,1596\nsnow,1,romeoandjuliet,1596\npoints,1,romeoandjuliet,1596\nconceit,1,romeoandjuliet,1596\nportly,1,romeoandjuliet,1596\nmonster,1,romeoandjuliet,1596\nrush'd,1,romeoandjuliet,1596\nafraid,1,romeoandjuliet,1596\nunhallow'd,1,romeoandjuliet,1596\nburneth,1,romeoandjuliet,1596\nbrags,1,romeoandjuliet,1596\nfigure,1,romeoandjuliet,1596\ngrub,1,romeoandjuliet,1596\ntreading,1,romeoandjuliet,1596\nseeds,1,romeoandjuliet,1596\nbliss,1,romeoandjuliet,1596\nWash,1,romeoandjuliet,1596\ncombined,1,romeoandjuliet,1596\nmixture,1,romeoandjuliet,1596\nbeggarly,1,romeoandjuliet,1596\nruns,1,romeoandjuliet,1596\nWarm,1,romeoandjuliet,1596\nYounger,1,romeoandjuliet,1596\nvariable,1,romeoandjuliet,1596\nword's,1,romeoandjuliet,1596\nbrow'd,1,romeoandjuliet,1596\nterms,1,romeoandjuliet,1596\nloose,1,romeoandjuliet,1596\nseeks,1,romeoandjuliet,1596\ncherish,1,romeoandjuliet,1596\nmark'd,1,romeoandjuliet,1596\nmoonshine's,1,romeoandjuliet,1596\nbout,1,romeoandjuliet,1596\nworthy,1,romeoandjuliet,1596\nLeave,1,romeoandjuliet,1596\nprinces,1,romeoandjuliet,1596\nUnplagued,1,romeoandjuliet,1596\ncrossing,1,romeoandjuliet,1596\nmisapplied,1,romeoandjuliet,1596\noverthrown,1,romeoandjuliet,1596\nshining,1,romeoandjuliet,1596\ngovern'd,1,romeoandjuliet,1596\nsinger,1,romeoandjuliet,1596\nelder,1,romeoandjuliet,1596\nHero,1,romeoandjuliet,1596\nbrace,1,romeoandjuliet,1596\nreverence,1,romeoandjuliet,1596\nrust,1,romeoandjuliet,1596\nbowl,1,romeoandjuliet,1596\ngirls,1,romeoandjuliet,1596\ncircled,1,romeoandjuliet,1596\nfeet,1,romeoandjuliet,1596\npromise,1,romeoandjuliet,1596\ndescent,1,romeoandjuliet,1596\nfees,1,romeoandjuliet,1596\nPetrarch,1,romeoandjuliet,1596\nsauce,1,romeoandjuliet,1596\nSpare,1,romeoandjuliet,1596\nclimbs,1,romeoandjuliet,1596\nplainly,1,romeoandjuliet,1596\nForbidden,1,romeoandjuliet,1596\ninfinite,1,romeoandjuliet,1596\nhoodwink'd,1,romeoandjuliet,1596\nhumbly,1,romeoandjuliet,1596\ndesirest,1,romeoandjuliet,1596\noverthrows,1,romeoandjuliet,1596\nbeaten,1,romeoandjuliet,1596\nmasters,1,romeoandjuliet,1596\nSearch,1,romeoandjuliet,1596\nbrine,1,romeoandjuliet,1596\ndial,1,romeoandjuliet,1596\nTybalts,1,romeoandjuliet,1596\nWhereto,1,romeoandjuliet,1596\nOld,1,romeoandjuliet,1596\nwine,1,romeoandjuliet,1596\nwink,1,romeoandjuliet,1596\nattires,1,romeoandjuliet,1596\nstuff'd,1,romeoandjuliet,1596\nporter,1,romeoandjuliet,1596\nputting,1,romeoandjuliet,1596\nconveniently,1,romeoandjuliet,1596\nFly,1,romeoandjuliet,1596\ngapes,1,romeoandjuliet,1596\nbauble,1,romeoandjuliet,1596\ncutt'st,1,romeoandjuliet,1596\nshrine,1,romeoandjuliet,1596\nlanguage,1,romeoandjuliet,1596\ntraces,1,romeoandjuliet,1596\nseparated,1,romeoandjuliet,1596\nproverb'd,1,romeoandjuliet,1596\ndedicate,1,romeoandjuliet,1596\nAlone,1,romeoandjuliet,1596\nPlacentio,1,romeoandjuliet,1596\ntitle,1,romeoandjuliet,1596\nrespective,1,romeoandjuliet,1596\nexpressly,1,romeoandjuliet,1596\ncatch'd,1,romeoandjuliet,1596\nfantasticoes,1,romeoandjuliet,1596\ndearer,1,romeoandjuliet,1596\naccess,1,romeoandjuliet,1596\nprincox,1,romeoandjuliet,1596\ncupboard,1,romeoandjuliet,1596\nensign,1,romeoandjuliet,1596\nindite,1,romeoandjuliet,1596\nUneven,1,romeoandjuliet,1596\nhated,1,romeoandjuliet,1596\nimportuned,1,romeoandjuliet,1596\nImmediately,1,romeoandjuliet,1596\ndied,1,romeoandjuliet,1596\ncustom,1,romeoandjuliet,1596\nusest,1,romeoandjuliet,1596\nidles,1,romeoandjuliet,1596\nthrown,1,romeoandjuliet,1596\neagle,1,romeoandjuliet,1596\ntalk'st,1,romeoandjuliet,1596\ndispleasure,1,romeoandjuliet,1596\nFetch,1,romeoandjuliet,1596\nwinning,1,romeoandjuliet,1596\nblades,1,romeoandjuliet,1596\nsinners',1,romeoandjuliet,1596\nloins,1,romeoandjuliet,1596\ndistemperature,1,romeoandjuliet,1596\nclaps,1,romeoandjuliet,1596\nspited,1,romeoandjuliet,1596\nbaked,1,romeoandjuliet,1596\npig's,1,romeoandjuliet,1596\nwary,1,romeoandjuliet,1596\ntimeless,1,romeoandjuliet,1596\nshuts,1,romeoandjuliet,1596\nwash,1,romeoandjuliet,1596\nbakes,1,romeoandjuliet,1596\njoin'd,1,romeoandjuliet,1596\nTurning,1,romeoandjuliet,1596\nrevel,1,romeoandjuliet,1596\nThere's,1,romeoandjuliet,1596\nmanly,1,romeoandjuliet,1596\nalliance,1,romeoandjuliet,1596\ngrasshoppers,1,romeoandjuliet,1596\nUncomfortable,1,romeoandjuliet,1596\npraised,1,romeoandjuliet,1596\n'Tybalt's,1,romeoandjuliet,1596\nprevails,1,romeoandjuliet,1596\nFollow,1,romeoandjuliet,1596\nwayward,1,romeoandjuliet,1596\nsympathy,1,romeoandjuliet,1596\nhungry,1,romeoandjuliet,1596\nsubstantial,1,romeoandjuliet,1596\nfairest,1,romeoandjuliet,1596\npencil,1,romeoandjuliet,1596\nbit,1,romeoandjuliet,1596\nfeather'd,1,romeoandjuliet,1596\nunmade,1,romeoandjuliet,1596\nsenses,1,romeoandjuliet,1596\nbills,1,romeoandjuliet,1596\nDrinks,1,romeoandjuliet,1596\nmickle,1,romeoandjuliet,1596\nunadvised,1,romeoandjuliet,1596\nConsort,1,romeoandjuliet,1596\naim'd,1,romeoandjuliet,1596\nstumble,1,romeoandjuliet,1596\nmerriment,1,romeoandjuliet,1596\nI',1,romeoandjuliet,1596\ndishonourable,1,romeoandjuliet,1596\nkeys,1,romeoandjuliet,1596\ndigging,1,romeoandjuliet,1596\namerce,1,romeoandjuliet,1596\nunkind,1,romeoandjuliet,1596\nenjoy'd,1,romeoandjuliet,1596\nmelancholy,1,romeoandjuliet,1596\ndiscreet,1,romeoandjuliet,1596\nglooming,1,romeoandjuliet,1596\nhai,1,romeoandjuliet,1596\nbacks,1,romeoandjuliet,1596\n'Wilt,1,romeoandjuliet,1596\naboard,1,romeoandjuliet,1596\nWhiter,1,romeoandjuliet,1596\nWhile,1,romeoandjuliet,1596\nA',1,romeoandjuliet,1596\ndrudge,1,romeoandjuliet,1596\nhag,1,romeoandjuliet,1596\nPhaethon,1,romeoandjuliet,1596\nsweeten,1,romeoandjuliet,1596\nsweeter,1,romeoandjuliet,1596\nfoes,1,romeoandjuliet,1596\nDraws,1,romeoandjuliet,1596\nDrawn,1,romeoandjuliet,1596\nflowered,1,romeoandjuliet,1596\nrefuse,1,romeoandjuliet,1596\ndiscern,1,romeoandjuliet,1596\nalderman,1,romeoandjuliet,1596\nStabs,1,romeoandjuliet,1596\nsigh,1,romeoandjuliet,1596\npromotion,1,romeoandjuliet,1596\npout'st,1,romeoandjuliet,1596\nTiberio,1,romeoandjuliet,1596\npulse,1,romeoandjuliet,1596\nThisbe,1,romeoandjuliet,1596\nPitiful,1,romeoandjuliet,1596\nperfection,1,romeoandjuliet,1596\ndepend,1,romeoandjuliet,1596\nfool's,1,romeoandjuliet,1596\nwronged,1,romeoandjuliet,1596\nvariance,1,romeoandjuliet,1596\nslander'd,1,romeoandjuliet,1596\nscarce,1,romeoandjuliet,1596\nneither,1,romeoandjuliet,1596\nbon,1,romeoandjuliet,1596\nchaste,1,romeoandjuliet,1596\nhilding,1,romeoandjuliet,1596\nmisgives,1,romeoandjuliet,1596\neternal,1,romeoandjuliet,1596\nbedaub'd,1,romeoandjuliet,1596\nthrills,1,romeoandjuliet,1596\nstrangers,1,romeoandjuliet,1596\ndeeds,1,romeoandjuliet,1596\ndistilled,1,romeoandjuliet,1596\nshortly,1,romeoandjuliet,1596\nunnatural,1,romeoandjuliet,1596\nreason's,1,romeoandjuliet,1596\nSovereign,1,romeoandjuliet,1596\nharlotry,1,romeoandjuliet,1596\nropery,1,romeoandjuliet,1596\nhopes,1,romeoandjuliet,1596\nBy'r,1,romeoandjuliet,1596\nLo,1,romeoandjuliet,1596\nO',1,romeoandjuliet,1596\nMe,1,romeoandjuliet,1596\nSupper,1,romeoandjuliet,1596\nimagined,1,romeoandjuliet,1596\naddle,1,romeoandjuliet,1596\n'better,1,romeoandjuliet,1596\nSinging,1,romeoandjuliet,1596\njuiced,1,romeoandjuliet,1596\nladyship,1,romeoandjuliet,1596\nkings,1,romeoandjuliet,1596\nmusty,1,romeoandjuliet,1596\ngossip,1,romeoandjuliet,1596\nosier,1,romeoandjuliet,1596\ndoves,1,romeoandjuliet,1596\nhymns,1,romeoandjuliet,1596\nbutt,1,romeoandjuliet,1596\nkept,1,romeoandjuliet,1596\nAnswer,1,romeoandjuliet,1596\nstar,1,romeoandjuliet,1596\ndenied,1,romeoandjuliet,1596\npen,1,romeoandjuliet,1596\npreserving,1,romeoandjuliet,1596\nbegun,1,romeoandjuliet,1596\nforce,1,romeoandjuliet,1596\nas't,1,romeoandjuliet,1596\nclosely,1,romeoandjuliet,1596\nHood,1,romeoandjuliet,1596\nEthiope's,1,romeoandjuliet,1596\nteat,1,romeoandjuliet,1596\nmedicine,1,romeoandjuliet,1596\nupturned,1,romeoandjuliet,1596\nRaise,1,romeoandjuliet,1596\nHo,1,romeoandjuliet,1596\nteam,1,romeoandjuliet,1596\nLucentio,1,romeoandjuliet,1596\nunruly,1,romeoandjuliet,1596\ntallow,1,romeoandjuliet,1596\nfan's,1,romeoandjuliet,1596\ndivinest,1,romeoandjuliet,1596\nbraggart,1,romeoandjuliet,1596\npath,1,romeoandjuliet,1596\npate,1,romeoandjuliet,1596\nwhistles,1,romeoandjuliet,1596\ndateless,1,romeoandjuliet,1596\nLet's,1,romeoandjuliet,1596\ndrizzle,1,romeoandjuliet,1596\nadded,1,romeoandjuliet,1596\nnoses,1,romeoandjuliet,1596\nenrich,1,romeoandjuliet,1596\ncondemned,1,romeoandjuliet,1596\npie,1,romeoandjuliet,1596\nabhorred,1,romeoandjuliet,1596\nClubs,1,romeoandjuliet,1596\nearl,1,romeoandjuliet,1596\npin,1,romeoandjuliet,1596\nmoderately,1,romeoandjuliet,1596\nchanges,1,romeoandjuliet,1596\npox,1,romeoandjuliet,1596\nglorious,1,romeoandjuliet,1596\ncaetera,1,romeoandjuliet,1596\nhealthsome,1,romeoandjuliet,1596\nVI,1,romeoandjuliet,1596\ncull'd,1,romeoandjuliet,1596\nnobly,1,romeoandjuliet,1596\nshunn'd,1,romeoandjuliet,1596\ngroaning,1,romeoandjuliet,1596\nobey,1,romeoandjuliet,1596\nbrawling,1,romeoandjuliet,1596\nnick,1,romeoandjuliet,1596\nvalour's,1,romeoandjuliet,1596\nAntony,1,romeoandjuliet,1596\nAdieu,1,romeoandjuliet,1596\nbating,1,romeoandjuliet,1596\nForgive,1,romeoandjuliet,1596\nfishified,1,romeoandjuliet,1596\nstrain'd,1,romeoandjuliet,1596\noffered,1,romeoandjuliet,1596\nplants,1,romeoandjuliet,1596\nbump,1,romeoandjuliet,1596\nwhore,1,romeoandjuliet,1596\nCompare,1,romeoandjuliet,1596\nmessages,1,romeoandjuliet,1596\nhaunt,1,romeoandjuliet,1596\nmadmen,1,romeoandjuliet,1596\ndumps,1,romeoandjuliet,1596\nthorn,1,romeoandjuliet,1596\nnipple,1,romeoandjuliet,1596\nsorry,1,romeoandjuliet,1596\nunworthiest,1,romeoandjuliet,1596\nintrusion,1,romeoandjuliet,1596\ntongue's,1,romeoandjuliet,1596\nproportion,1,romeoandjuliet,1596\nhills,1,romeoandjuliet,1596\nOpen,1,romeoandjuliet,1596\nAdding,1,romeoandjuliet,1596\nbusy,1,romeoandjuliet,1596\nReceive,1,romeoandjuliet,1596\ndeformities,1,romeoandjuliet,1596\nUnseemly,1,romeoandjuliet,1596\ncanker,1,romeoandjuliet,1596\nsooner,1,romeoandjuliet,1596\ngoodly,1,romeoandjuliet,1596\nimmediately,1,romeoandjuliet,1596\nwent'st,1,romeoandjuliet,1596\ncrush,1,romeoandjuliet,1596\nAdversity's,1,romeoandjuliet,1596\nneglecting,1,romeoandjuliet,1596\nmadman,1,romeoandjuliet,1596\nmeats,1,romeoandjuliet,1596\nhomely,1,romeoandjuliet,1596\nsounds,1,romeoandjuliet,1596\npry,1,romeoandjuliet,1596\nsorted,1,romeoandjuliet,1596\ninterrupt,1,romeoandjuliet,1596\ntables,1,romeoandjuliet,1596\ncouch,1,romeoandjuliet,1596\nweal,1,romeoandjuliet,1596\nbent,1,romeoandjuliet,1596\ngory,1,romeoandjuliet,1596\ninfectious,1,romeoandjuliet,1596\nStrange,1,romeoandjuliet,1596\nLife,1,romeoandjuliet,1596\nbaskets,1,romeoandjuliet,1596\npeople,1,romeoandjuliet,1596\nValentine,1,romeoandjuliet,1596\ndisperse,1,romeoandjuliet,1596\nlamps,1,romeoandjuliet,1596\nswashing,1,romeoandjuliet,1596\ngadding,1,romeoandjuliet,1596\nabbey,1,romeoandjuliet,1596\nquivering,1,romeoandjuliet,1596\ncopest,1,romeoandjuliet,1596\ncancell'd,1,romeoandjuliet,1596\nProfaners,1,romeoandjuliet,1596\nfalconer's,1,romeoandjuliet,1596\ngore,1,romeoandjuliet,1596\nAngelica,1,romeoandjuliet,1596\nDeath's,1,romeoandjuliet,1596\nSailing,1,romeoandjuliet,1596\nhours',1,romeoandjuliet,1596\nprating,1,romeoandjuliet,1596\nswitch,1,romeoandjuliet,1596\nbuds,1,romeoandjuliet,1596\nserpent,1,romeoandjuliet,1596\njewel,1,romeoandjuliet,1596\nprorogue,1,romeoandjuliet,1596\nSpanish,1,romeoandjuliet,1596\nextreme,1,romeoandjuliet,1596\ntheme,1,romeoandjuliet,1596\nfriendly,1,romeoandjuliet,1596\ntossed,1,romeoandjuliet,1596\nanguish,1,romeoandjuliet,1596\ngun,1,romeoandjuliet,1596\nvaulty,1,romeoandjuliet,1596\nSaid,1,romeoandjuliet,1596\ntestify,1,romeoandjuliet,1596\ncurse,1,romeoandjuliet,1596\ndespite,1,romeoandjuliet,1596\nfettle,1,romeoandjuliet,1596\nvows,1,romeoandjuliet,1596\nYe,1,romeoandjuliet,1596\nAbove,1,romeoandjuliet,1596\nsubmission,1,romeoandjuliet,1596\nfrowns,1,romeoandjuliet,1596\nchild's,1,romeoandjuliet,1596\nhurry,1,romeoandjuliet,1596\nsteerage,1,romeoandjuliet,1596\nEnough,1,romeoandjuliet,1596\ngown,1,romeoandjuliet,1596\nprolixity,1,romeoandjuliet,1596\nWhate'er,1,romeoandjuliet,1596\nadmired,1,romeoandjuliet,1596\ndivine,1,romeoandjuliet,1596\nperjuries,1,romeoandjuliet,1596\ntuners,1,romeoandjuliet,1596\nMiscarried,1,romeoandjuliet,1596\ngate,1,romeoandjuliet,1596\nharlots,1,romeoandjuliet,1596\nunstain'd,1,romeoandjuliet,1596\ncharnel,1,romeoandjuliet,1596\nWhither,1,romeoandjuliet,1596\nstretch,1,romeoandjuliet,1596\npitch,1,romeoandjuliet,1596\nheap'd,1,romeoandjuliet,1596\ncalling,1,romeoandjuliet,1596\nnorth,1,romeoandjuliet,1596\nashamed,1,romeoandjuliet,1596\nhopeful,1,romeoandjuliet,1596\nlately,1,romeoandjuliet,1596\nresort,1,romeoandjuliet,1596\nheadstrong,1,romeoandjuliet,1596\nmisty,1,romeoandjuliet,1596\nholidame,1,romeoandjuliet,1596\nTempering,1,romeoandjuliet,1596\nScaring,1,romeoandjuliet,1596\ntower,1,romeoandjuliet,1596\n'Hold,1,romeoandjuliet,1596\nhouseholds',1,romeoandjuliet,1596\nsolemn,1,romeoandjuliet,1596\nnoted,1,romeoandjuliet,1596\nghost,1,romeoandjuliet,1596\nlisping,1,romeoandjuliet,1596\ndeed,1,romeoandjuliet,1596\nchildish,1,romeoandjuliet,1596\nFranciscan,1,romeoandjuliet,1596\nflourishes,1,romeoandjuliet,1596\nsolely,1,romeoandjuliet,1596\ndeparted,1,romeoandjuliet,1596\nplats,1,romeoandjuliet,1596\ngovernment,1,romeoandjuliet,1596\ninstant,1,romeoandjuliet,1596\naffection,1,romeoandjuliet,1596\nforgive,1,romeoandjuliet,1596\nwreak,1,romeoandjuliet,1596\npromised,1,romeoandjuliet,1596\nplate,1,romeoandjuliet,1596\nmood,1,romeoandjuliet,1596\neloquence,1,romeoandjuliet,1596\nmiles,1,romeoandjuliet,1596\nCannot,1,romeoandjuliet,1596\nartificial,1,romeoandjuliet,1596\ndoff,1,romeoandjuliet,1596\nBegot,1,romeoandjuliet,1596\nburial,1,romeoandjuliet,1596\nfaster,1,romeoandjuliet,1596\noddly,1,romeoandjuliet,1596\nmoans,1,romeoandjuliet,1596\nminstrel,1,romeoandjuliet,1596\naffecting,1,romeoandjuliet,1596\ndeck,1,romeoandjuliet,1596\nPart,1,romeoandjuliet,1596\nsheet,1,romeoandjuliet,1596\nprevented,1,romeoandjuliet,1596\nAdvances,1,romeoandjuliet,1596\nviolence,1,romeoandjuliet,1596\nbird's,1,romeoandjuliet,1596\nMaking,1,romeoandjuliet,1596\nmistemper'd,1,romeoandjuliet,1596\nwakened,1,romeoandjuliet,1596\nvowel,1,romeoandjuliet,1596\ntongues,1,romeoandjuliet,1596\nnotes,1,romeoandjuliet,1596\net,1,romeoandjuliet,1596\nhandsome,1,romeoandjuliet,1596\nweigh'd,1,romeoandjuliet,1596\nfountains,1,romeoandjuliet,1596\nwhereon,1,romeoandjuliet,1596\ninvocation,1,romeoandjuliet,1596\nunworthy,1,romeoandjuliet,1596\ncaitiff,1,romeoandjuliet,1596\ndignity,1,romeoandjuliet,1596\nvictory,1,romeoandjuliet,1596\nlikely,1,romeoandjuliet,1596\nitch,1,romeoandjuliet,1596\nSpread,1,romeoandjuliet,1596\nholiday,1,romeoandjuliet,1596\nliars,1,romeoandjuliet,1596\nWhipp'd,1,romeoandjuliet,1596\nthrive,1,romeoandjuliet,1596\nenforce,1,romeoandjuliet,1596\nlend,1,romeoandjuliet,1596\nredress,1,romeoandjuliet,1596\nShuts,1,romeoandjuliet,1596\nbescreen'd,1,romeoandjuliet,1596\nmisadventured,1,romeoandjuliet,1596\nstole,1,romeoandjuliet,1596\nsack,1,romeoandjuliet,1596\ndefence,1,romeoandjuliet,1596\nRest,1,romeoandjuliet,1596\ndowdy,1,romeoandjuliet,1596\nusurer,1,romeoandjuliet,1596\nYon,1,romeoandjuliet,1596\nCanker'd,1,romeoandjuliet,1596\ncram,1,romeoandjuliet,1596\ngame,1,romeoandjuliet,1596\nmemory,1,romeoandjuliet,1596\npierced,1,romeoandjuliet,1596\nmanner,1,romeoandjuliet,1596\nwanton's,1,romeoandjuliet,1596\nRiddling,1,romeoandjuliet,1596\nrains,1,romeoandjuliet,1596\npiercing,1,romeoandjuliet,1596\ndispleased,1,romeoandjuliet,1596\nhumours,1,romeoandjuliet,1596\nmaidenhoods,1,romeoandjuliet,1596\ntwisted,1,romeoandjuliet,1596\nsheath,1,romeoandjuliet,1596\ndried,1,romeoandjuliet,1596\nbutton,1,romeoandjuliet,1596\nhurdle,1,romeoandjuliet,1596\ncures,1,romeoandjuliet,1596\nheretics,1,romeoandjuliet,1596\nask'd,1,romeoandjuliet,1596\nattending,1,romeoandjuliet,1596\nfears,1,romeoandjuliet,1596\nTransparent,1,romeoandjuliet,1596\nhereabouts,1,romeoandjuliet,1596\nbodies,1,romeoandjuliet,1596\nregion,1,romeoandjuliet,1596\nplant,1,romeoandjuliet,1596\nstrain,1,romeoandjuliet,1596\nmeteor,1,romeoandjuliet,1596\ncrave,1,romeoandjuliet,1596\nroused,1,romeoandjuliet,1596\neyeless,1,romeoandjuliet,1596\ntiptoe,1,romeoandjuliet,1596\n'Juliet,1,romeoandjuliet,1596\nSuspecting,1,romeoandjuliet,1596\n'Proud,1,romeoandjuliet,1596\narbitrating,1,romeoandjuliet,1596\nhoars,1,romeoandjuliet,1596\nunfirm,1,romeoandjuliet,1596\nidle,1,romeoandjuliet,1596\nspiders',1,romeoandjuliet,1596\nambiguities,1,romeoandjuliet,1596\nsometime,1,romeoandjuliet,1596\nMyself,1,romeoandjuliet,1596\nReads,1,romeoandjuliet,1596\nsmilest,1,romeoandjuliet,1596\nlour,1,romeoandjuliet,1596\ndog's,1,romeoandjuliet,1596\nReady,1,romeoandjuliet,1596\nwarns,1,romeoandjuliet,1596\n'twould,1,romeoandjuliet,1596\nhunt's,1,romeoandjuliet,1596\nspell,1,romeoandjuliet,1596\ngyves,1,romeoandjuliet,1596\ngipsy,1,romeoandjuliet,1596\nink,1,romeoandjuliet,1596\nworms',1,romeoandjuliet,1596\npursued,1,romeoandjuliet,1596\nloud,1,romeoandjuliet,1596\n'man,1,romeoandjuliet,1596\nsettled,1,romeoandjuliet,1596\nlightly,1,romeoandjuliet,1596\nado,1,romeoandjuliet,1596\nPeer'd,1,romeoandjuliet,1596\nWouldst,1,romeoandjuliet,1596\nRevive,1,romeoandjuliet,1596\ncherishing,1,romeoandjuliet,1596\nadd,1,romeoandjuliet,1596\nspeak'st,1,romeoandjuliet,1596\nAcquaint,1,romeoandjuliet,1596\nplaying,1,romeoandjuliet,1596\nsemblance,1,romeoandjuliet,1596\nServants,1,romeoandjuliet,1596\nwherein,1,romeoandjuliet,1596\nGrief,1,romeoandjuliet,1596\ndispose,1,romeoandjuliet,1596\nSpeakest,1,romeoandjuliet,1596\ndrier,1,romeoandjuliet,1596\nweakest,1,romeoandjuliet,1596\nknot,1,romeoandjuliet,1596\nstrains,1,romeoandjuliet,1596\nremoved,1,romeoandjuliet,1596\nsuspected,1,romeoandjuliet,1596\nswear'st,1,romeoandjuliet,1596\nlets,1,romeoandjuliet,1596\nconfusions,1,romeoandjuliet,1596\nforefather's,1,romeoandjuliet,1596\ngreater,1,romeoandjuliet,1596\nbench,1,romeoandjuliet,1596\nSaints,1,romeoandjuliet,1596\nwestward,1,romeoandjuliet,1596\numpire,1,romeoandjuliet,1596\nrepliest,1,romeoandjuliet,1596\nserious,1,romeoandjuliet,1596\nslack,1,romeoandjuliet,1596\nscatter'd,1,romeoandjuliet,1596\njocund,1,romeoandjuliet,1596\njourney,1,romeoandjuliet,1596\nsevering,1,romeoandjuliet,1596\nsummers,1,romeoandjuliet,1596\nCulling,1,romeoandjuliet,1596\nmarr'd,1,romeoandjuliet,1596\nMove,1,romeoandjuliet,1596\nGuards,1,romeoandjuliet,1596\nbaptized,1,romeoandjuliet,1596\nhop,1,romeoandjuliet,1596\nsun's,1,romeoandjuliet,1596\nversal,1,romeoandjuliet,1596\npomegranate,1,romeoandjuliet,1596\nthrice,1,romeoandjuliet,1596\nhark,1,romeoandjuliet,1596\naccents,1,romeoandjuliet,1596\nbrought,1,romeoandjuliet,1596\nshrived,1,romeoandjuliet,1596\nHaply,1,romeoandjuliet,1596\nbetossed,1,romeoandjuliet,1596\neats,1,romeoandjuliet,1596\ntransgression,1,romeoandjuliet,1596\ndescry,1,romeoandjuliet,1596\nfierce,1,romeoandjuliet,1596\nlogger,1,romeoandjuliet,1596\ndenote,1,romeoandjuliet,1596\naxe,1,romeoandjuliet,1596\ncatcher,1,romeoandjuliet,1596\nSeeking,1,romeoandjuliet,1596\nunlook'd,1,romeoandjuliet,1596\nfrighted,1,romeoandjuliet,1596\npilgrims,1,romeoandjuliet,1596\nremember'd,1,romeoandjuliet,1596\nsquirrel,1,romeoandjuliet,1596\nfrost,1,romeoandjuliet,1596\nround,1,romeoandjuliet,1596\nChristian,1,romeoandjuliet,1596\nswounded,1,romeoandjuliet,1596\nArms,1,romeoandjuliet,1596\nbeggar's,1,romeoandjuliet,1596\ncheveril,1,romeoandjuliet,1596\nknit,1,romeoandjuliet,1596\nsignify,1,romeoandjuliet,1596\nsenseless,1,romeoandjuliet,1596\ntext,1,romeoandjuliet,1596\nburying,1,romeoandjuliet,1596\nintended,1,romeoandjuliet,1596\nRead,1,romeoandjuliet,1596\npaly,1,romeoandjuliet,1596\ncoachmakers,1,romeoandjuliet,1596\nacknowledge,1,romeoandjuliet,1596\nCourage,1,romeoandjuliet,1596\nfaintly,1,romeoandjuliet,1596\ncall'd,1,romeoandjuliet,1596\ntreads,1,romeoandjuliet,1596\nFlower,1,romeoandjuliet,1596\nsignal,1,romeoandjuliet,1596\nt',1,romeoandjuliet,1596\nDisplant,1,romeoandjuliet,1596\nappears,1,romeoandjuliet,1596\nconsume,1,romeoandjuliet,1596\nreach,1,romeoandjuliet,1596\ndraws,1,romeoandjuliet,1596\nplain,1,romeoandjuliet,1596\nladder,1,romeoandjuliet,1596\nhams,1,romeoandjuliet,1596\nmourners,1,romeoandjuliet,1596\nmew'd,1,romeoandjuliet,1596\nthreaten'd,1,romeoandjuliet,1596\nseverity,1,romeoandjuliet,1596\nbehoveful,1,romeoandjuliet,1596\npinion'd,1,romeoandjuliet,1596\nschool,1,romeoandjuliet,1596\ndrave,1,romeoandjuliet,1596\nprovided,1,romeoandjuliet,1596\ncountervail,1,romeoandjuliet,1596\nquarrelled,1,romeoandjuliet,1596\nwanders,1,romeoandjuliet,1596\nsucking,1,romeoandjuliet,1596\nacquaintance,1,romeoandjuliet,1596\ninterchanging,1,romeoandjuliet,1596\ngarish,1,romeoandjuliet,1596\nheartless,1,romeoandjuliet,1596\nbeguil'd,1,romeoandjuliet,1596\nGorged,1,romeoandjuliet,1596\nimpatient,1,romeoandjuliet,1596\nCommend,1,romeoandjuliet,1596\nshin,1,romeoandjuliet,1596\nmi's,1,romeoandjuliet,1596\nappertaining,1,romeoandjuliet,1596\ncourts,1,romeoandjuliet,1596\nship,1,romeoandjuliet,1596\nstranger,1,romeoandjuliet,1596\nunbound,1,romeoandjuliet,1596\nspit,1,romeoandjuliet,1596\nape,1,romeoandjuliet,1596\nmoney,1,romeoandjuliet,1596\nAscend,1,romeoandjuliet,1596\nwretchedness,1,romeoandjuliet,1596\nfore,1,romeoandjuliet,1596\nUnwieldy,1,romeoandjuliet,1596\nfooted,1,romeoandjuliet,1596\nPrepare,1,romeoandjuliet,1596\nowes,1,romeoandjuliet,1596\nexquisite,1,romeoandjuliet,1596\nHelen,1,romeoandjuliet,1596\nmany's,1,romeoandjuliet,1596\nangelical,1,romeoandjuliet,1596\norisons,1,romeoandjuliet,1596\nstrive,1,romeoandjuliet,1596\nattach,1,romeoandjuliet,1596\nUtter,1,romeoandjuliet,1596\nentertain'd,1,romeoandjuliet,1596\nValentio,1,romeoandjuliet,1596\npack,1,romeoandjuliet,1596\nalive,1,romeoandjuliet,1596\ndreadful,1,romeoandjuliet,1596\nBenedicite,1,romeoandjuliet,1596\nrogue,1,romeoandjuliet,1596\nCast,1,romeoandjuliet,1596\nfishes,1,romeoandjuliet,1596\nfisher,1,romeoandjuliet,1596\nwinking,1,romeoandjuliet,1596\nchastity,1,romeoandjuliet,1596\nfall'n,1,romeoandjuliet,1596\nnapkins,1,romeoandjuliet,1596\nsoftest,1,romeoandjuliet,1596\nchapless,1,romeoandjuliet,1596\nprepared,1,romeoandjuliet,1596\nserpents,1,romeoandjuliet,1596\nbearer,1,romeoandjuliet,1596\nrevenge,1,romeoandjuliet,1596\nyard,1,romeoandjuliet,1596\nexcess,1,romeoandjuliet,1596\nbeetle,1,romeoandjuliet,1596\npush,1,romeoandjuliet,1596\naccidents,1,romeoandjuliet,1596\nforms,1,romeoandjuliet,1596\nMen's,1,romeoandjuliet,1596\ntombs,1,romeoandjuliet,1596\narmour,1,romeoandjuliet,1596\nchid'st,1,romeoandjuliet,1596\nmenace,1,romeoandjuliet,1596\nlearns,1,romeoandjuliet,1596\nCare,1,romeoandjuliet,1596\nbeggars,1,romeoandjuliet,1596\nKing,1,romeoandjuliet,1596\nmisfortune's,1,romeoandjuliet,1596\nfurnish,1,romeoandjuliet,1596\nunbruised,1,romeoandjuliet,1596\nbanquet,1,romeoandjuliet,1596\npathways,1,romeoandjuliet,1596\ntrick,1,romeoandjuliet,1596\nbought,1,romeoandjuliet,1596\npacing,1,romeoandjuliet,1596\nAccursed,1,romeoandjuliet,1596\nforerun,1,romeoandjuliet,1596\nhiss'd,1,romeoandjuliet,1596\nrunaway's,1,romeoandjuliet,1596\ntheirs,1,romeoandjuliet,1596\nbeggary,1,romeoandjuliet,1596\nsmells,1,romeoandjuliet,1596\nEcho,1,romeoandjuliet,1596\nsweetly,1,romeoandjuliet,1596\nmarchpane,1,romeoandjuliet,1596\nbehavior,1,romeoandjuliet,1596\nfantasy,1,romeoandjuliet,1596\nhist,1,romeoandjuliet,1596\nContent,1,romeoandjuliet,1596\npurple,1,romeoandjuliet,1596\nblubbering,1,romeoandjuliet,1596\npentecost,1,romeoandjuliet,1596\nslays,1,romeoandjuliet,1596\nwillingly,1,romeoandjuliet,1596\ntasted,1,romeoandjuliet,1596\nfeign,1,romeoandjuliet,1596\nmasterless,1,romeoandjuliet,1596\nmoves,1,romeoandjuliet,1596\nspoken,1,romeoandjuliet,1596\nleaf,1,romeoandjuliet,1596\njaws,1,romeoandjuliet,1596\nspokes,1,romeoandjuliet,1596\nprorogued,1,romeoandjuliet,1596\nAlive,1,romeoandjuliet,1596\nfay,1,romeoandjuliet,1596\ncoughing,1,romeoandjuliet,1596\nsallow,1,romeoandjuliet,1596\nwheels,1,romeoandjuliet,1596\nlabel,1,romeoandjuliet,1596\nborrow,1,romeoandjuliet,1596\nlean,1,romeoandjuliet,1596\nComes,1,romeoandjuliet,1596\nexposition,1,romeoandjuliet,1596\nsweetmeats,1,romeoandjuliet,1596\nrood,1,romeoandjuliet,1596\ncolliers,1,romeoandjuliet,1596\nleap,1,romeoandjuliet,1596\njustice,1,romeoandjuliet,1596\ntried,1,romeoandjuliet,1596\ndiscolour'd,1,romeoandjuliet,1596\nfrozen,1,romeoandjuliet,1596\nHist,1,romeoandjuliet,1596\nBlister'd,1,romeoandjuliet,1596\n'lady,1,romeoandjuliet,1596\nuniversal,1,romeoandjuliet,1596\nbreathes,1,romeoandjuliet,1596\nmask'd,1,romeoandjuliet,1596\nBeauty,1,romeoandjuliet,1596\nDepart,1,romeoandjuliet,1596\nVirtue,1,romeoandjuliet,1596\nsurgeon,1,romeoandjuliet,1596\nrelations,1,romeoandjuliet,1596\nPiteous,1,romeoandjuliet,1596\ntarry,1,romeoandjuliet,1596\nscant,1,romeoandjuliet,1596\nrank,1,romeoandjuliet,1596\nrote,1,romeoandjuliet,1596\nAgainst,1,romeoandjuliet,1596\nneedly,1,romeoandjuliet,1596\nreport,1,romeoandjuliet,1596\ncarries,1,romeoandjuliet,1596\ncanker'd,1,romeoandjuliet,1596\nTorments,1,romeoandjuliet,1596\nshrunk,1,romeoandjuliet,1596\ndress'd,1,romeoandjuliet,1596\nunluckily,1,romeoandjuliet,1596\nhill,1,romeoandjuliet,1596\nforehead,1,romeoandjuliet,1596\nmangle,1,romeoandjuliet,1596\nmischief,1,romeoandjuliet,1596\nrose,1,romeoandjuliet,1596\ndistance,1,romeoandjuliet,1596\nthinly,1,romeoandjuliet,1596\ntriumphant,1,romeoandjuliet,1596\nsmallest,1,romeoandjuliet,1596\nunknown,1,romeoandjuliet,1596\npuffs,1,romeoandjuliet,1596\nrepose,1,romeoandjuliet,1596\nsending,1,romeoandjuliet,1596\nomit,1,romeoandjuliet,1596\nclub,1,romeoandjuliet,1596\nunclean,1,romeoandjuliet,1596\nreflex,1,romeoandjuliet,1596\ngleek,1,romeoandjuliet,1596\napparell'd,1,romeoandjuliet,1596\nbegone,1,romeoandjuliet,1596\npenury,1,romeoandjuliet,1596\nBack,1,romeoandjuliet,1596\nwaken,1,romeoandjuliet,1596\nhinds,1,romeoandjuliet,1596\nsparing,1,romeoandjuliet,1596\nstirreth,1,romeoandjuliet,1596\naction,1,romeoandjuliet,1596\nstrucken,1,romeoandjuliet,1596\ngavest,1,romeoandjuliet,1596\ndoleful,1,romeoandjuliet,1596\ncounty's,1,romeoandjuliet,1596\nopposition,1,romeoandjuliet,1596\nabroach,1,romeoandjuliet,1596\nHenceforth,1,romeoandjuliet,1596\nawaking,1,romeoandjuliet,1596\nconquer'd,1,romeoandjuliet,1596\npenny,1,romeoandjuliet,1596\nacting,1,romeoandjuliet,1596\nnoon,1,romeoandjuliet,1596\nlenten,1,romeoandjuliet,1596\ndun's,1,romeoandjuliet,1596\ncircle,1,romeoandjuliet,1596\nsprung,1,romeoandjuliet,1596\nforsaken,1,romeoandjuliet,1596\nbelow,1,romeoandjuliet,1596\nwhining,1,romeoandjuliet,1596\npantry,1,romeoandjuliet,1596\nGraze,1,romeoandjuliet,1596\nNoting,1,romeoandjuliet,1596\nrash,1,romeoandjuliet,1596\nbeard,1,romeoandjuliet,1596\ntigers,1,romeoandjuliet,1596\nspread,1,romeoandjuliet,1596\nRosaline's,1,romeoandjuliet,1596\ndrunkard,1,romeoandjuliet,1596\ncourtship,1,romeoandjuliet,1596\nestate,1,romeoandjuliet,1596\nPursued,1,romeoandjuliet,1596\nDove,1,romeoandjuliet,1596\ncandle,1,romeoandjuliet,1596\nhasten,1,romeoandjuliet,1596\npensive,1,romeoandjuliet,1596\nhastes,1,romeoandjuliet,1596\nchaos,1,romeoandjuliet,1596\n'An,1,romeoandjuliet,1596\nslew'st,1,romeoandjuliet,1596\nneed'st,1,romeoandjuliet,1596\nChequering,1,romeoandjuliet,1596\nstick'st,1,romeoandjuliet,1596\nfails,1,romeoandjuliet,1596\nchase,1,romeoandjuliet,1596\nexcuses,1,romeoandjuliet,1596\n'By,1,romeoandjuliet,1596\nDown,1,romeoandjuliet,1596\nposterity,1,romeoandjuliet,1596\nexcused,1,romeoandjuliet,1596\nidolatry,1,romeoandjuliet,1596\nborne,1,romeoandjuliet,1596\npeppered,1,romeoandjuliet,1596\nvisage,1,romeoandjuliet,1596\nlearning,1,romeoandjuliet,1596\nSin,1,romeoandjuliet,1596\nmuffle,1,romeoandjuliet,1596\ncharm,1,romeoandjuliet,1596\nnarrow,1,romeoandjuliet,1596\nbasket,1,romeoandjuliet,1596\nnut,1,romeoandjuliet,1596\nStraining,1,romeoandjuliet,1596\nprogress,1,romeoandjuliet,1596\narise,1,romeoandjuliet,1596\nendart,1,romeoandjuliet,1596\nyou'll,1,romeoandjuliet,1596\nperform,1,romeoandjuliet,1596\nexiled,1,romeoandjuliet,1596\nparting,1,romeoandjuliet,1596\noverheard'st,1,romeoandjuliet,1596\nunhappy,1,romeoandjuliet,1596\nRebeck,1,romeoandjuliet,1596\nintercession,1,romeoandjuliet,1596\nGallop,1,romeoandjuliet,1596\nhousewife,1,romeoandjuliet,1596\nscars,1,romeoandjuliet,1596\nmadman's,1,romeoandjuliet,1596\nanger'd,1,romeoandjuliet,1596\nscarf,1,romeoandjuliet,1596\nscare,1,romeoandjuliet,1596\nquarter,1,romeoandjuliet,1596\nsplendor,1,romeoandjuliet,1596\ncloak,1,romeoandjuliet,1596\nutters,1,romeoandjuliet,1596\nbestride,1,romeoandjuliet,1596\nleaving,1,romeoandjuliet,1596\ndrivelling,1,romeoandjuliet,1596\nmistresses,1,romeoandjuliet,1596\nTitan's,1,romeoandjuliet,1596\ntutor,1,romeoandjuliet,1596\nsociable,1,romeoandjuliet,1596\nHelena,1,romeoandjuliet,1596\nparlous,1,romeoandjuliet,1596\nSole,1,romeoandjuliet,1596\nlodge,1,romeoandjuliet,1596\narrives,1,romeoandjuliet,1596\nstark,1,romeoandjuliet,1596\nFree,1,romeoandjuliet,1596\nblessings,1,romeoandjuliet,1596\nsharps,1,romeoandjuliet,1596\nDelay,1,romeoandjuliet,1596\nmilk,1,romeoandjuliet,1596\nTorch,1,romeoandjuliet,1596\naugmenting,1,romeoandjuliet,1596\naffections',1,romeoandjuliet,1596\nDrums,1,romeoandjuliet,1596\nfares,1,romeoandjuliet,1596\nmumbling,1,romeoandjuliet,1596\nell,1,romeoandjuliet,1596\nbleeds,1,romeoandjuliet,1596\nESCALUS,1,romeoandjuliet,1596\ncovert,1,romeoandjuliet,1596\nsatisfaction,1,romeoandjuliet,1596\nqualities,1,romeoandjuliet,1596\n'It,1,romeoandjuliet,1596\nshield,1,romeoandjuliet,1596\nMakes,1,romeoandjuliet,1596\nsacrifices,1,romeoandjuliet,1596\nbeautify,1,romeoandjuliet,1596\nbedeck,1,romeoandjuliet,1596\npricking,1,romeoandjuliet,1596\ntempest,1,romeoandjuliet,1596\nSoon,1,romeoandjuliet,1596\ndared,1,romeoandjuliet,1596\nPlay'd,1,romeoandjuliet,1596\nrests,1,romeoandjuliet,1596\nfortnight,1,romeoandjuliet,1596\nhumorous,1,romeoandjuliet,1596\nmerrily,1,romeoandjuliet,1596\nconfidence,1,romeoandjuliet,1596\nkeeper,1,romeoandjuliet,1596\nbeggar,1,romeoandjuliet,1596\nchain,1,romeoandjuliet,1596\nsacrificed,1,romeoandjuliet,1596\nbad'st,1,romeoandjuliet,1596\ndreamers,1,romeoandjuliet,1596\nQueen,1,romeoandjuliet,1596\nprocure,1,romeoandjuliet,1596\nobscured,1,romeoandjuliet,1596\nUncle,1,romeoandjuliet,1596\nbelong,1,romeoandjuliet,1596\n'gainst,1,romeoandjuliet,1596\nmidwife,1,romeoandjuliet,1596\nstabbed,1,romeoandjuliet,1596\nFather,1,romeoandjuliet,1596\nmass,1,romeoandjuliet,1596\nvillanous,1,romeoandjuliet,1596\nfriar's,1,romeoandjuliet,1596\ntruckle,1,romeoandjuliet,1596\nparties,1,romeoandjuliet,1596\ndearest,1,romeoandjuliet,1596\nBearing,1,romeoandjuliet,1596\naccustom'd,1,romeoandjuliet,1596\nthroughout,1,romeoandjuliet,1596\ncoward,1,romeoandjuliet,1596\nson's,1,romeoandjuliet,1596\nsoles,1,romeoandjuliet,1596\ninjuries,1,romeoandjuliet,1596\ncrimson,1,romeoandjuliet,1596\nsoled,1,romeoandjuliet,1596\nsearchers,1,romeoandjuliet,1596\nafflicted,1,romeoandjuliet,1596\nAny,1,romeoandjuliet,1596\nissue,1,romeoandjuliet,1596\nengrossing,1,romeoandjuliet,1596\nThee,1,romeoandjuliet,1596\nmire,1,romeoandjuliet,1596\nwot,1,romeoandjuliet,1596\nFlies,1,romeoandjuliet,1596\nquote,1,romeoandjuliet,1596\nwon,1,romeoandjuliet,1596\nstarved,1,romeoandjuliet,1596\ninch,1,romeoandjuliet,1596\ngreatest,1,romeoandjuliet,1596\npunto,1,romeoandjuliet,1596\nAffliction,1,romeoandjuliet,1596\nlabour,1,romeoandjuliet,1596\nBlubbering,1,romeoandjuliet,1596\nAfore,1,romeoandjuliet,1596\ndropping,1,romeoandjuliet,1596\nspecial,1,romeoandjuliet,1596\ninexorable,1,romeoandjuliet,1596\nsoften'd,1,romeoandjuliet,1596\nmountain,1,romeoandjuliet,1596\nseal'd,1,romeoandjuliet,1596\nMurder'd,1,romeoandjuliet,1596\nthievish,1,romeoandjuliet,1596\nmedlar,1,romeoandjuliet,1596\nabhors,1,romeoandjuliet,1596\ndissemblers,1,romeoandjuliet,1596\nnaught,1,romeoandjuliet,1596\nlaughs,1,romeoandjuliet,1596\nwhispering,1,romeoandjuliet,1596\ndivideth,1,romeoandjuliet,1596\nuttered,1,romeoandjuliet,1596\nMade,1,romeoandjuliet,1596\ndainty,1,romeoandjuliet,1596\ndivorced,1,romeoandjuliet,1596\npoised,1,romeoandjuliet,1596\none's,1,romeoandjuliet,1596\nthigh,1,romeoandjuliet,1596\ndrybeat,1,romeoandjuliet,1596\nhorrible,1,romeoandjuliet,1596\nstratagems,1,romeoandjuliet,1596\ndisguised,1,romeoandjuliet,1596\nsluttish,1,romeoandjuliet,1596\ndivision,1,romeoandjuliet,1596\nPerhaps,1,romeoandjuliet,1596\nstair,1,romeoandjuliet,1596\ncompounds,1,romeoandjuliet,1596\nweb,1,romeoandjuliet,1596\nparamour,1,romeoandjuliet,1596\nstain,1,romeoandjuliet,1596\ntassel,1,romeoandjuliet,1596\ngi',1,romeoandjuliet,1596\nWert,1,romeoandjuliet,1596\nproves,1,romeoandjuliet,1596\nbehalf,1,romeoandjuliet,1596\nItaly,1,romeoandjuliet,1596\nstained,1,romeoandjuliet,1596\ndignified,1,romeoandjuliet,1596\npassage,1,romeoandjuliet,1596\nagate,1,romeoandjuliet,1596\n'for,1,romeoandjuliet,1596\n'Twixt,1,romeoandjuliet,1596\ndisturb'd,1,romeoandjuliet,1596\nstint,1,romeoandjuliet,1596\napology,1,romeoandjuliet,1596\nThey'll,1,romeoandjuliet,1596\npredicament,1,romeoandjuliet,1596\nsale,1,romeoandjuliet,1596\nenamour'd,1,romeoandjuliet,1596\nstale,1,romeoandjuliet,1596\n'My,1,romeoandjuliet,1596\nForgetting,1,romeoandjuliet,1596\nretire,1,romeoandjuliet,1596\npurchase,1,romeoandjuliet,1596\nfits,1,romeoandjuliet,1596\nhouseholds,1,romeoandjuliet,1596\nRun,1,romeoandjuliet,1596\nsides,1,romeoandjuliet,1596\nenters,1,romeoandjuliet,1596\n'not,1,romeoandjuliet,1596\nHeart's,1,romeoandjuliet,1596\nprivy,1,romeoandjuliet,1596\nprovoke,1,romeoandjuliet,1596\nunsubstantial,1,romeoandjuliet,1596\nconfines,1,romeoandjuliet,1596\ncourt,1,romeoandjuliet,1596\nreceipt,1,romeoandjuliet,1596\nrestorative,1,romeoandjuliet,1596\nbawdy,1,romeoandjuliet,1596\ncross'd,1,romeoandjuliet,1596\noperation,1,romeoandjuliet,1596\nflirt,1,romeoandjuliet,1596\nmartial,1,romeoandjuliet,1596\nbread,1,romeoandjuliet,1596\nyoungest,1,romeoandjuliet,1596\ntying,1,romeoandjuliet,1596\nSoundpost,1,romeoandjuliet,1596\nhappiness,1,romeoandjuliet,1596\nmoveth,1,romeoandjuliet,1596\nthird,1,romeoandjuliet,1596\nsmock,1,romeoandjuliet,1596\nhaughty,1,romeoandjuliet,1596\nsitting,1,romeoandjuliet,1596\ntraffic,1,romeoandjuliet,1596\nbandy,1,romeoandjuliet,1596\nheareth,1,romeoandjuliet,1596\nrind,1,romeoandjuliet,1596\nunseen,1,romeoandjuliet,1596\ncloset,1,romeoandjuliet,1596\nstabs,1,romeoandjuliet,1596\nDead,1,romeoandjuliet,1596\ncity's,1,romeoandjuliet,1596\nducats,1,romeoandjuliet,1596\nlightness,1,romeoandjuliet,1596\nSups,1,romeoandjuliet,1596\nclock,1,romeoandjuliet,1596\nEaster,1,romeoandjuliet,1596\nhealths,1,romeoandjuliet,1596\nresidence,1,romeoandjuliet,1596\nripe,1,romeoandjuliet,1596\nsalutation,1,romeoandjuliet,1596\nlessen'd,1,romeoandjuliet,1596\nmasks,1,romeoandjuliet,1596\nniece,1,romeoandjuliet,1596\nspeeding,1,romeoandjuliet,1596\ncontinuance,1,romeoandjuliet,1596\nflint,1,romeoandjuliet,1596\nrenown'd,1,romeoandjuliet,1596\ncrown'd,1,romeoandjuliet,1596\nDian's,1,romeoandjuliet,1596\ndecreed,1,romeoandjuliet,1596\ndust,1,romeoandjuliet,1596\nvow'd,1,romeoandjuliet,1596\nThink,1,romeoandjuliet,1596\nstumbling,1,romeoandjuliet,1596\nAncient,1,romeoandjuliet,1596\ninterr'd,1,romeoandjuliet,1596\nstick,1,romeoandjuliet,1596\nhooks,1,romeoandjuliet,1596\nstage,1,romeoandjuliet,1596\nThrow,1,romeoandjuliet,1596\nchinks,1,romeoandjuliet,1596\nrise,1,romeoandjuliet,1596\nalligator,1,romeoandjuliet,1596\nraven's,1,romeoandjuliet,1596\nRemembering,1,romeoandjuliet,1596\narms,1,romeoandjuliet,1596\ntrusty,1,romeoandjuliet,1596\nWives,1,romeoandjuliet,1596\nsaluteth,1,romeoandjuliet,1596\nrooteth,1,romeoandjuliet,1596\nintend,1,romeoandjuliet,1596\nHunting,1,romeoandjuliet,1596\nwood,1,romeoandjuliet,1596\narrow,1,romeoandjuliet,1596\nlure,1,romeoandjuliet,1596\ntutor'd,1,romeoandjuliet,1596\ngroan'd,1,romeoandjuliet,1596\nassure,1,romeoandjuliet,1596\nassociate,1,romeoandjuliet,1596\nherring,1,romeoandjuliet,1596\ndanger,1,romeoandjuliet,1596\ngreetings,1,romeoandjuliet,1596\nunharm'd,1,romeoandjuliet,1596\ncockerel's,1,romeoandjuliet,1596\nAurora's,1,romeoandjuliet,1596\nprayer's,1,romeoandjuliet,1596\nends,1,romeoandjuliet,1596\nunstuff'd,1,romeoandjuliet,1596\nkitchen,1,romeoandjuliet,1596\nvessels,1,romeoandjuliet,1596\nproceeding,1,romeoandjuliet,1596\nProportion'd,1,romeoandjuliet,1596\nMass,1,romeoandjuliet,1596\nwarmth,1,romeoandjuliet,1596\ncomplain,1,romeoandjuliet,1596\nBeg,1,romeoandjuliet,1596\nflowering,1,romeoandjuliet,1596\nbells,1,romeoandjuliet,1596\ncounterfeit'st,1,romeoandjuliet,1596\nThrows,1,romeoandjuliet,1596\nbounty,1,romeoandjuliet,1596\nUndraws,1,romeoandjuliet,1596\npossess,1,romeoandjuliet,1596\nnotice,1,romeoandjuliet,1596\nbreaches,1,romeoandjuliet,1596\nShame,1,romeoandjuliet,1596\nfade,1,romeoandjuliet,1596\nthroats,1,romeoandjuliet,1596\nShalt,1,romeoandjuliet,1596\nfamiliar,1,romeoandjuliet,1596\nraging,1,romeoandjuliet,1596\nprompt,1,romeoandjuliet,1596\nagree,1,romeoandjuliet,1596\n'death,1,romeoandjuliet,1596\nseize,1,romeoandjuliet,1596\nearthquake,1,romeoandjuliet,1596\nwatery,1,romeoandjuliet,1596\nHeaven,1,romeoandjuliet,1596\nVile,1,romeoandjuliet,1596\nmorsel,1,romeoandjuliet,1596\ntaker,1,romeoandjuliet,1596\nvalidity,1,romeoandjuliet,1596\nBalthasar,1,romeoandjuliet,1596\nrotten,1,romeoandjuliet,1596\ndispute,1,romeoandjuliet,1596\nprologue,1,romeoandjuliet,1596\nfun,1,romeoandjuliet,1596\nangel,1,romeoandjuliet,1596\nstainless,1,romeoandjuliet,1596\nspleen,1,romeoandjuliet,1596\nforeign,1,romeoandjuliet,1596\nSharp,1,romeoandjuliet,1596\ntatter'd,1,romeoandjuliet,1596\nsmelling,1,romeoandjuliet,1596\nServingman,1,romeoandjuliet,1596\nopposite,1,romeoandjuliet,1596\nRevolts,1,romeoandjuliet,1596\nnets,1,romeoandjuliet,1596\ncompass,1,romeoandjuliet,1596\nowe,1,romeoandjuliet,1596\nwondrous,1,romeoandjuliet,1596\nbaleful,1,romeoandjuliet,1596\nthreatened,1,romeoandjuliet,1596\nhildings,1,romeoandjuliet,1596\nwhistle,1,romeoandjuliet,1596\nsupple,1,romeoandjuliet,1596\nminister'd,1,romeoandjuliet,1596\nDigressing,1,romeoandjuliet,1596\nyoke,1,romeoandjuliet,1596\ntouching,1,romeoandjuliet,1596\ndrops,1,romeoandjuliet,1596\nlurk,1,romeoandjuliet,1596\nserves,1,romeoandjuliet,1596\nunsatisfied,1,romeoandjuliet,1596\nwooes,1,romeoandjuliet,1596\nflask,1,romeoandjuliet,1596\nbeguiled,1,romeoandjuliet,1596\nsober,1,romeoandjuliet,1596\nangry,1,romeoandjuliet,1596\nhighmost,1,romeoandjuliet,1596\nvexed,1,romeoandjuliet,1596\nclout,1,romeoandjuliet,1596\nwent,1,romeoandjuliet,1596\nstirs,1,romeoandjuliet,1596\nfollowers,1,romeoandjuliet,1596\nanatomy,1,romeoandjuliet,1596\nagile,1,romeoandjuliet,1596\ncrotchets,1,romeoandjuliet,1596\nShot,1,romeoandjuliet,1596\nSpakest,1,romeoandjuliet,1596\nStrike,1,romeoandjuliet,1596\nhideous,1,romeoandjuliet,1596\nsails,1,romeoandjuliet,1596\ntable,1,romeoandjuliet,1596\ngrieve,1,romeoandjuliet,1596\ncreate,1,romeoandjuliet,1596\nBetroth'd,1,romeoandjuliet,1596\ncried,1,romeoandjuliet,1596\nUnhappy,1,romeoandjuliet,1596\nprofane,1,romeoandjuliet,1596\nwench's,1,romeoandjuliet,1596\nminds,1,romeoandjuliet,1596\nTime,1,romeoandjuliet,1596\ndates,1,romeoandjuliet,1596\nladybird,1,romeoandjuliet,1596\ndoublet,1,romeoandjuliet,1596\ninfold,1,romeoandjuliet,1596\nBrother,1,romeoandjuliet,1596\nplaintain,1,romeoandjuliet,1596\ncrystal,1,romeoandjuliet,1596\norb,1,romeoandjuliet,1596\nmista'en,1,romeoandjuliet,1596\ncreature's,1,romeoandjuliet,1596\nwilful,1,romeoandjuliet,1596\nHadst,1,romeoandjuliet,1596\nShake,1,romeoandjuliet,1596\nlasting,1,romeoandjuliet,1596\nsurcease,1,romeoandjuliet,1596\nchurl,1,romeoandjuliet,1596\ntwinkle,1,romeoandjuliet,1596\nmisfortune,1,romeoandjuliet,1596\nearthen,1,romeoandjuliet,1596\nwounds,1,romeoandjuliet,1596\ndiscover,1,romeoandjuliet,1596\ntune,1,romeoandjuliet,1596\nlodges,1,romeoandjuliet,1596\nTies,1,romeoandjuliet,1596\nrighteous,1,romeoandjuliet,1596\nambuscadoes,1,romeoandjuliet,1596\nprostrate,1,romeoandjuliet,1596\nfighting,1,romeoandjuliet,1596\nwest,1,romeoandjuliet,1596\nbestrides,1,romeoandjuliet,1596\nallow,1,romeoandjuliet,1596\nDeny,1,romeoandjuliet,1596\nminim,1,romeoandjuliet,1596\nimpeach,1,romeoandjuliet,1596\nofficer,1,romeoandjuliet,1596\nissuing,1,romeoandjuliet,1596\nthey're,1,romeoandjuliet,1596\nDoing,1,romeoandjuliet,1596\nfilm,1,romeoandjuliet,1596\nrunn'st,1,romeoandjuliet,1596\nWeeping,1,romeoandjuliet,1596\nShut,1,romeoandjuliet,1596\nswallow'd,1,romeoandjuliet,1596\nfill,1,romeoandjuliet,1596\nstains,1,romeoandjuliet,1596\nBoy,1,romeoandjuliet,1596\nsafety,1,romeoandjuliet,1596\nenpierced,1,romeoandjuliet,1596\npunish'd,1,romeoandjuliet,1596\nsavage,1,romeoandjuliet,1596\njaunting,1,romeoandjuliet,1596\ncontinue,1,romeoandjuliet,1596\nunwashed,1,romeoandjuliet,1596\nnieces,1,romeoandjuliet,1596\ndamnation,1,romeoandjuliet,1596\nrattling,1,romeoandjuliet,1596\njoiner,1,romeoandjuliet,1596\nBeats,1,romeoandjuliet,1596\nLead,1,romeoandjuliet,1596\ncompliments,1,romeoandjuliet,1596\nincorporate,1,romeoandjuliet,1596\ntackled,1,romeoandjuliet,1596\nminded,1,romeoandjuliet,1596\nmeddle,1,romeoandjuliet,1596\n'havior,1,romeoandjuliet,1596\ntavern,1,romeoandjuliet,1596\ntail,1,romeoandjuliet,1596\ndivers,1,romeoandjuliet,1596\npractise,1,romeoandjuliet,1596\nperdona,1,romeoandjuliet,1596\nlawyers',1,romeoandjuliet,1596\nbutcher,1,romeoandjuliet,1596\nchiefly,1,romeoandjuliet,1596\nmates,1,romeoandjuliet,1596\nThank,1,romeoandjuliet,1596\nbeginners,1,romeoandjuliet,1596\npartly,1,romeoandjuliet,1596\nmadly,1,romeoandjuliet,1596\nlived,1,romeoandjuliet,1596\nwhither,1,romeoandjuliet,1596\nwatch'd,1,romeoandjuliet,1596\nmeaning,1,romeoandjuliet,1596\nprouds,1,romeoandjuliet,1596\ndeflowered,1,romeoandjuliet,1596\ndispraise,1,romeoandjuliet,1596\ngrievances,1,romeoandjuliet,1596\ndeliver'd,1,romeoandjuliet,1596\nfate,1,romeoandjuliet,1596\nwrenching,1,romeoandjuliet,1596\nTartar's,1,romeoandjuliet,1596\nfriendship,1,romeoandjuliet,1596\nEnvironed,1,romeoandjuliet,1596\nhoop,1,romeoandjuliet,1596\nbounds,1,romeoandjuliet,1596\nquivers,1,romeoandjuliet,1596\nwill'd,1,romeoandjuliet,1596\nlenity,1,romeoandjuliet,1596\nlarge,1,romeoandjuliet,1596\nnamed,1,romeoandjuliet,1596\ncooks,1,romeoandjuliet,1596\nEach,1,romeoandjuliet,1596\nemperor,1,romeoandjuliet,1596\nblaze,1,romeoandjuliet,1596\ndrinks,1,romeoandjuliet,1596\nmischance,1,romeoandjuliet,1596\nally,1,romeoandjuliet,1596\nache,1,romeoandjuliet,1596\nLivia,1,romeoandjuliet,1596\npredominant,1,romeoandjuliet,1596\nlap,1,romeoandjuliet,1596\ntall,1,romeoandjuliet,1596\ngoodfellows,1,romeoandjuliet,1596\ngriping,1,romeoandjuliet,1596\nNeed,1,romeoandjuliet,1596\npurblind,1,romeoandjuliet,1596\nfarthest,1,romeoandjuliet,1596\nfolks,1,romeoandjuliet,1596\nLeap,1,romeoandjuliet,1596\nquinces,1,romeoandjuliet,1596\nAppear,1,romeoandjuliet,1596\nbrotherhood,1,romeoandjuliet,1596\nhatred,1,romeoandjuliet,1596\nconvey,1,romeoandjuliet,1596\nstroke,1,romeoandjuliet,1596\nTrust,1,romeoandjuliet,1596\njests,1,romeoandjuliet,1596\nMantua's,1,romeoandjuliet,1596\ntorment,1,romeoandjuliet,1596\nthwarted,1,romeoandjuliet,1596\nasunder,1,romeoandjuliet,1596\nRather,1,romeoandjuliet,1596\nEvery,1,romeoandjuliet,1596\nPrick,1,romeoandjuliet,1596\nunthankfulness,1,romeoandjuliet,1596\nblisters,1,romeoandjuliet,1596\nkinsman's,1,romeoandjuliet,1596\nelflocks,1,romeoandjuliet,1596\nshore,1,romeoandjuliet,1596\naccident,1,romeoandjuliet,1596\nconcludes,1,romeoandjuliet,1596\nswears,1,romeoandjuliet,1596\nfestering,1,romeoandjuliet,1596\nquit,1,romeoandjuliet,1596\ndexterity,1,romeoandjuliet,1596\nclear,1,romeoandjuliet,1596\nsparkling,1,romeoandjuliet,1596\nholp,1,romeoandjuliet,1596\nvisiting,1,romeoandjuliet,1596\nskains,1,romeoandjuliet,1596\nNone,1,romeoandjuliet,1596\nhole,1,romeoandjuliet,1596\ndozen,1,romeoandjuliet,1596\ntemper'd,1,romeoandjuliet,1596\ndangerous,1,romeoandjuliet,1596\noutcry,1,romeoandjuliet,1596\nfamine,1,romeoandjuliet,1596\ndevout,1,romeoandjuliet,1596\npupil,1,romeoandjuliet,1596\ngiddy,1,romeoandjuliet,1596\nfollows,1,romeoandjuliet,1596\nfired,1,romeoandjuliet,1596\nFeather,1,romeoandjuliet,1596\ndragon,1,romeoandjuliet,1596\nLucio,1,romeoandjuliet,1596\nspices,1,romeoandjuliet,1596\nfires,1,romeoandjuliet,1596\nrequest,1,romeoandjuliet,1596\nsunder,1,romeoandjuliet,1596\nargument,1,romeoandjuliet,1596\nrevolt,1,romeoandjuliet,1596\nasking,1,romeoandjuliet,1596\ntetchy,1,romeoandjuliet,1596\ncheerly,1,romeoandjuliet,1596\ndepth,1,romeoandjuliet,1596\nclubs,1,romeoandjuliet,1596\ninundation,1,romeoandjuliet,1596\nwinter,1,romeoandjuliet,1596\nforsooth,1,romeoandjuliet,1596\nflood,1,romeoandjuliet,1596\nliver,1,romeoandjuliet,1596\ngrudge,1,romeoandjuliet,1596\nwriting,1,romeoandjuliet,1596\nwondering,1,romeoandjuliet,1596\nresolution,1,romeoandjuliet,1596\nDay,1,romeoandjuliet,1596\nvirtues,1,romeoandjuliet,1596\nseal,1,romeoandjuliet,1596\ntrain'd,1,romeoandjuliet,1596\nstartles,1,romeoandjuliet,1596\naffray,1,romeoandjuliet,1596\npotion,1,romeoandjuliet,1596\nNell,1,romeoandjuliet,1596\nquean,1,romeoandjuliet,1596\nfalsehood,1,romeoandjuliet,1596\nboxes,1,romeoandjuliet,1596\nprovision,1,romeoandjuliet,1596\nblazon,1,romeoandjuliet,1596\ngoodman,1,romeoandjuliet,1596\npuling,1,romeoandjuliet,1596\nvainly,1,romeoandjuliet,1596\nprayers,1,romeoandjuliet,1596\ntips,1,romeoandjuliet,1596\ncleft,1,romeoandjuliet,1596\npackthread,1,romeoandjuliet,1596\nyellow,1,romeoandjuliet,1596\nhung,1,romeoandjuliet,1596\nbepaint,1,romeoandjuliet,1596\nhairs,1,romeoandjuliet,1596\ninterest,1,romeoandjuliet,1596\nhunt,1,romeoandjuliet,1596\nSitting,1,romeoandjuliet,1596\ncommission,1,romeoandjuliet,1596\ncheerful,1,romeoandjuliet,1596\nCleopatra,1,romeoandjuliet,1596\nbodes,1,romeoandjuliet,1596\nwaiting,1,romeoandjuliet,1596\nwinged,1,romeoandjuliet,1596\nbachelor,1,romeoandjuliet,1596\ngossips,1,romeoandjuliet,1596\nlow,1,romeoandjuliet,1596\ncontagion,1,romeoandjuliet,1596\nacts,1,romeoandjuliet,1596\nmeagre,1,romeoandjuliet,1596\nletting,1,romeoandjuliet,1596\nbabe,1,romeoandjuliet,1596\ncaptain,1,romeoandjuliet,1596\ndecree,1,romeoandjuliet,1596\nneedful,1,romeoandjuliet,1596\nunsavoury,1,romeoandjuliet,1596\nsingleness,1,romeoandjuliet,1596\nholder,1,romeoandjuliet,1596\nweep'st,1,romeoandjuliet,1596\nheralds,1,romeoandjuliet,1596\nbooted,1,romeoandjuliet,1596\nfeathers,1,romeoandjuliet,1596\nseem,1,romeoandjuliet,1596\nwean'd,1,romeoandjuliet,1596\nfeeling,1,romeoandjuliet,1596\nsouth,1,romeoandjuliet,1596\nslow'd,1,romeoandjuliet,1596\ntrespass,1,romeoandjuliet,1596\ncot,1,romeoandjuliet,1596\nmarvellous,1,romeoandjuliet,1596\nNews,1,romeoandjuliet,1596\nlook'd,1,romeoandjuliet,1596\nNe'er,1,romeoandjuliet,1596\n'twixt,1,romeoandjuliet,1596\nsees,1,romeoandjuliet,1596\npricks,1,romeoandjuliet,1596\nsteep'd,1,romeoandjuliet,1596\nliking,1,romeoandjuliet,1596\ncost,1,romeoandjuliet,1596\nshapen,1,romeoandjuliet,1596\nPatience,1,romeoandjuliet,1596\nthereof,1,romeoandjuliet,1596\nBelieve,1,romeoandjuliet,1596\nmix'd,1,romeoandjuliet,1596\ncourtier's,1,romeoandjuliet,1596\nshaped,1,romeoandjuliet,1596\npacked,1,romeoandjuliet,1596\nDido,1,romeoandjuliet,1596\ntraitor,1,romeoandjuliet,1596\npilgrims',1,romeoandjuliet,1596\n'Your,1,romeoandjuliet,1596\nKilling,1,romeoandjuliet,1596\nSeal,1,romeoandjuliet,1596\nwearied,1,romeoandjuliet,1596\nGroan,1,romeoandjuliet,1596\ntrooping,1,romeoandjuliet,1596\nlightens,1,romeoandjuliet,1596\ngossamer,1,romeoandjuliet,1596\npurgatory,1,romeoandjuliet,1596\npestilent,1,romeoandjuliet,1596\nheavenly,1,romeoandjuliet,1596\nObey,1,romeoandjuliet,1596\nHe'll,1,romeoandjuliet,1596\naffright,1,romeoandjuliet,1596\npalmers,1,romeoandjuliet,1596\n'twill,1,romeoandjuliet,1596\nbriefly,1,romeoandjuliet,1596\nterm'd,1,romeoandjuliet,1596\nnights,1,romeoandjuliet,1596\ndownright,1,romeoandjuliet,1596\nheels,1,romeoandjuliet,1596\njointure,1,romeoandjuliet,1596\nSubtly,1,romeoandjuliet,1596\nblame,1,romeoandjuliet,1596\ntrembles,1,romeoandjuliet,1596\ncurtain,1,romeoandjuliet,1596\nhuge,1,romeoandjuliet,1596\nriddling,1,romeoandjuliet,1596\nbait,1,romeoandjuliet,1596\nMaria,1,romeoandjuliet,1596\nfuneral,1,romeoandjuliet,1596\nkindred,1,romeoandjuliet,1596\nglove,1,romeoandjuliet,1596\ndislike,1,romeoandjuliet,1596\nextremes,1,romeoandjuliet,1596\nparentage,1,romeoandjuliet,1596\nblushing,1,romeoandjuliet,1596\nuncover'd,1,romeoandjuliet,1596\naccording,1,romeoandjuliet,1596\nmodern,1,romeoandjuliet,1596\nraven,1,romeoandjuliet,1596\nCry,1,romeoandjuliet,1596\n'God,1,romeoandjuliet,1596\nball,1,romeoandjuliet,1596\nCuts,1,romeoandjuliet,1596\nbankrupt,1,romeoandjuliet,1596\nFeeling,1,romeoandjuliet,1596\nfearfully,1,romeoandjuliet,1596\ndriveth,1,romeoandjuliet,1596\npots,1,romeoandjuliet,1596\nNeither,1,romeoandjuliet,1596\ndrawer,1,romeoandjuliet,1596\nsimpleness,1,romeoandjuliet,1596\nremedies,1,romeoandjuliet,1596\ncarriage,1,romeoandjuliet,1596\nherald,1,romeoandjuliet,1596\nBeautiful,1,romeoandjuliet,1596\nstatue,1,romeoandjuliet,1596\ninjured,1,romeoandjuliet,1596\nseason,1,romeoandjuliet,1596\nwolvish,1,romeoandjuliet,1596\nsickness,1,romeoandjuliet,1596\nGrindstone,1,romeoandjuliet,1596\naches,1,romeoandjuliet,1596\nconvert,1,romeoandjuliet,1596\ncanopy,1,romeoandjuliet,1596\nMist,1,romeoandjuliet,1596\nMistress,1,romeoandjuliet,1596\ncouple,1,romeoandjuliet,1596\nchoking,1,romeoandjuliet,1596\ninvite,1,romeoandjuliet,1596\nAnselme,1,romeoandjuliet,1596\nlip,1,romeoandjuliet,1596\nmerchant,1,romeoandjuliet,1596\nQuarrel,1,romeoandjuliet,1596\nrail'st,1,romeoandjuliet,1596\npipes,1,romeoandjuliet,1596\nconstable's,1,romeoandjuliet,1596\nseem'st,1,romeoandjuliet,1596\nchances,1,romeoandjuliet,1596\naching,1,romeoandjuliet,1596\ncoil,1,romeoandjuliet,1596\neyes',1,romeoandjuliet,1596\nAthwart,1,romeoandjuliet,1596\nebb,1,romeoandjuliet,1596\nmerchandise,1,romeoandjuliet,1596\nthread,1,romeoandjuliet,1596\nconduit,1,romeoandjuliet,1596\nStuff'd,1,romeoandjuliet,1596\nendured,1,romeoandjuliet,1596\nrancour,1,romeoandjuliet,1596\ndivining,1,romeoandjuliet,1596\nlolling,1,romeoandjuliet,1596\nHerself,1,romeoandjuliet,1596\nmeasuring,1,romeoandjuliet,1596\nhonesty,1,romeoandjuliet,1596\ncloudy,1,romeoandjuliet,1596\nevening,1,romeoandjuliet,1596\nspirits,1,romeoandjuliet,1596\nCheerly,1,romeoandjuliet,1596\nmaw,1,romeoandjuliet,1596\nbearers,1,romeoandjuliet,1596\nKisses,1,romeoandjuliet,1596\nperjury,1,romeoandjuliet,1596\nnourish'd,1,romeoandjuliet,1596\npear,1,romeoandjuliet,1596\ndistressed,1,romeoandjuliet,1596\nleast,1,romeoandjuliet,1596\ncareful,1,romeoandjuliet,1596\ncomfortable,1,romeoandjuliet,1596\nafeard,1,romeoandjuliet,1596\npropagate,1,romeoandjuliet,1596\nFive,1,romeoandjuliet,1596\nconsequence,1,romeoandjuliet,1596\nrapier's,1,romeoandjuliet,1596\nwring,1,romeoandjuliet,1596\nstarve,1,romeoandjuliet,1596\nsteeds,1,romeoandjuliet,1596\n'dove,1,romeoandjuliet,1596\ndoing,1,romeoandjuliet,1596\nslug,1,romeoandjuliet,1596\nspits,1,romeoandjuliet,1596\ngossip's,1,romeoandjuliet,1596\ndealing,1,romeoandjuliet,1596\nmargent,1,romeoandjuliet,1596\ncourageous,1,romeoandjuliet,1596\ndishclout,1,romeoandjuliet,1596\ntreacherous,1,romeoandjuliet,1596\nleaps,1,romeoandjuliet,1596\nglory,1,romeoandjuliet,1596\nswung,1,romeoandjuliet,1596\ngentlemanlike,1,romeoandjuliet,1596\nemployment,1,romeoandjuliet,1596\n'I'll,1,romeoandjuliet,1596\ncomforted,1,romeoandjuliet,1596\nconjured,1,romeoandjuliet,1596\nnuns,1,romeoandjuliet,1596\nabuse,1,romeoandjuliet,1596\nwidowed,1,romeoandjuliet,1596\nburns,1,romeoandjuliet,1596\nwhit,1,romeoandjuliet,1596\npleasant,1,romeoandjuliet,1596\nlimit,1,romeoandjuliet,1596\nMen,1,romeoandjuliet,1596\nbattlements,1,romeoandjuliet,1596\ncollars,1,romeoandjuliet,1596\nEnters,1,romeoandjuliet,1596\ntormented,1,romeoandjuliet,1596\nmonthly,1,romeoandjuliet,1596\npowerful,1,romeoandjuliet,1596\nmandrakes',1,romeoandjuliet,1596\natomies,1,romeoandjuliet,1596\nthinking,1,romeoandjuliet,1596\nmocker,1,romeoandjuliet,1596\ncounts,1,romeoandjuliet,1596\nAbate,1,romeoandjuliet,1596\nfashion,1,romeoandjuliet,1596\nfoe's,1,romeoandjuliet,1596\npernicious,1,romeoandjuliet,1596\nquarrels,1,romeoandjuliet,1596\nreeky,1,romeoandjuliet,1596\n'love',1,romeoandjuliet,1596\nreels,1,romeoandjuliet,1596\nliege,1,romeoandjuliet,1596\nhenceforth,1,romeoandjuliet,1596\n'dost,1,romeoandjuliet,1596\nRetorts,1,romeoandjuliet,1596\nphysic,1,romeoandjuliet,1596\nmannerly,1,romeoandjuliet,1596\nrespects,1,romeoandjuliet,1596\nphrase,1,romeoandjuliet,1596\nlash,1,romeoandjuliet,1596\naspired,1,romeoandjuliet,1596\nplucks,1,romeoandjuliet,1596\nspilt,1,romeoandjuliet,1596\nflag,1,romeoandjuliet,1596\nliquid,1,romeoandjuliet,1596\nGreen,1,romeoandjuliet,1596\nlath,1,romeoandjuliet,1596\nuntangled,1,romeoandjuliet,1596\nSings,1,romeoandjuliet,1596\nprefixed,1,romeoandjuliet,1596\neastern,1,romeoandjuliet,1596\ngravity,1,romeoandjuliet,1596\ndashing,1,romeoandjuliet,1596\nhighway,1,romeoandjuliet,1596\nkeepers,1,romeoandjuliet,1596\nsleeping,1,romeoandjuliet,1596\nHappiness,1,romeoandjuliet,1596\ndishonour'd,1,romeoandjuliet,1596\nuntalk'd,1,romeoandjuliet,1596\ndirges,1,romeoandjuliet,1596\nmuffled,1,romeoandjuliet,1596\nfright,1,romeoandjuliet,1596\nshelves,1,romeoandjuliet,1596\nurging,1,romeoandjuliet,1596\nlist,1,romeoandjuliet,1596\nopportunity,1,romeoandjuliet,1596\nApril,1,romeoandjuliet,1596\ncurfew,1,romeoandjuliet,1596\n'banishment,1,romeoandjuliet,1596\nsuited,1,romeoandjuliet,1596\npoultice,1,romeoandjuliet,1596\ntributary,1,romeoandjuliet,1596\nBanish'd,1,romeoandjuliet,1596\nappetite,1,romeoandjuliet,1596\nassistant,1,romeoandjuliet,1596\nvenge,1,romeoandjuliet,1596\ncarelessly,1,romeoandjuliet,1596\ncordial,1,romeoandjuliet,1596\nunpleasing,1,romeoandjuliet,1596\npardoning,1,romeoandjuliet,1596\nbooks,1,romeoandjuliet,1596\nfathom,1,romeoandjuliet,1596\nfollow'd,1,romeoandjuliet,1596\nlimping,1,romeoandjuliet,1596\nconsort'st,1,romeoandjuliet,1596\ndwells,1,romeoandjuliet,1596\nfrank,1,romeoandjuliet,1596\nletter's,1,romeoandjuliet,1596\ntardy,1,romeoandjuliet,1596\nwidow,1,romeoandjuliet,1596\nnumbers,1,romeoandjuliet,1596\nshady,1,romeoandjuliet,1596\nolder,1,romeoandjuliet,1596\nreply,1,romeoandjuliet,1596\nyesternight,1,romeoandjuliet,1596\nreverse,1,romeoandjuliet,1596\npresage,1,romeoandjuliet,1596\nenjoin'd,1,romeoandjuliet,1596\nnuts,1,romeoandjuliet,1596\nreverso,1,romeoandjuliet,1596\ncannon's,1,romeoandjuliet,1596\ntherewithal,1,romeoandjuliet,1596\ndash,1,romeoandjuliet,1596\nflecked,1,romeoandjuliet,1596\ndistemper'd,1,romeoandjuliet,1596\ninvited,1,romeoandjuliet,1596\ndiscovered,1,romeoandjuliet,1596\ncentre,1,romeoandjuliet,1596\nhappily,1,romeoandjuliet,1596\nharsh,1,romeoandjuliet,1596\nstakes,1,romeoandjuliet,1596\nTickling,1,romeoandjuliet,1596\nMis,1,romeoandjuliet,1596\ncourt'sy,1,romeoandjuliet,1596\nmusic's,1,romeoandjuliet,1596\nstarveth,1,romeoandjuliet,1596\nboisterous,1,romeoandjuliet,1596\ngills,1,romeoandjuliet,1596\nwhoe'er,1,romeoandjuliet,1596\nlogic,1,romeoandjuliet,1596\ndun,1,romeoandjuliet,1596\ncracking,1,romeoandjuliet,1596\nsolace,1,romeoandjuliet,1596\nliquor,1,romeoandjuliet,1596\nTogether,1,romeoandjuliet,1596\ncatch,1,romeoandjuliet,1596\npens,1,romeoandjuliet,1596\nlane,1,romeoandjuliet,1596\nImmoderately,1,romeoandjuliet,1596\ntoy,1,romeoandjuliet,1596\nblessing,1,romeoandjuliet,1596\ndispatch,1,romeoandjuliet,1596\nwaverer,1,romeoandjuliet,1596\nrocks,1,romeoandjuliet,1596\ntop,1,romeoandjuliet,1596\nfellowship,1,romeoandjuliet,1596\ncourt'sies,1,romeoandjuliet,1596\nbred,1,romeoandjuliet,1596\nliest,1,romeoandjuliet,1596\nlame,1,romeoandjuliet,1596\nreverend,1,romeoandjuliet,1596\nseverest,1,romeoandjuliet,1596\nBring,1,romeoandjuliet,1596\nDRAMATIS,1,romeoandjuliet,1596\nchariot,1,romeoandjuliet,1596\nlamp,1,romeoandjuliet,1596\nSimon,1,romeoandjuliet,1596\nsmatter,1,romeoandjuliet,1596\ncertain,1,romeoandjuliet,1596\nshift,1,romeoandjuliet,1596\nleap'd,1,romeoandjuliet,1596\nshake,1,romeoandjuliet,1596\nnuptials,1,romeoandjuliet,1596\nflowed,1,romeoandjuliet,1596\ndank,1,romeoandjuliet,1596\nlineament,1,romeoandjuliet,1596\narmed,1,romeoandjuliet,1596\nleans,1,romeoandjuliet,1596\nsweeting,1,romeoandjuliet,1596\npennyworths,1,romeoandjuliet,1596\npass'd,1,romeoandjuliet,1596\nbargain,1,romeoandjuliet,1596\ngnat,1,romeoandjuliet,1596\ntempt,1,romeoandjuliet,1596\nhe'll,1,romeoandjuliet,1596\nentreated,1,romeoandjuliet,1596\ncakes,1,romeoandjuliet,1596\noverwhelming,1,romeoandjuliet,1596\nwills,1,romeoandjuliet,1596\nconceal'd,1,romeoandjuliet,1596\nAffection,1,romeoandjuliet,1596\nsmell,1,romeoandjuliet,1596\ngentler,1,romeoandjuliet,1596\nTalk,1,romeoandjuliet,1596\nking,1,romeoandjuliet,1596\nFain,1,romeoandjuliet,1596\ndrown'd,1,romeoandjuliet,1596\ninauspicious,1,romeoandjuliet,1596\nReturn'd,1,romeoandjuliet,1596\nsmelt,1,romeoandjuliet,1596\nStaying,1,romeoandjuliet,1596\nexpire,1,romeoandjuliet,1596\nDirect,1,romeoandjuliet,1596\nboundless,1,romeoandjuliet,1596\nreconcile,1,romeoandjuliet,1596\nscales,1,romeoandjuliet,1596\nBrags,1,romeoandjuliet,1596\nslip,1,romeoandjuliet,1596\noverset,1,romeoandjuliet,1596\ntainted,1,romeoandjuliet,1596\npoperin,1,romeoandjuliet,1596\nConceit,1,romeoandjuliet,1596\nsisterhood,1,romeoandjuliet,1596\nAlike,1,romeoandjuliet,1596\njustly,1,romeoandjuliet,1596\ntrifling,1,romeoandjuliet,1596\nOpens,1,romeoandjuliet,1596\ncandles,1,romeoandjuliet,1596\ndoting,1,romeoandjuliet,1596\nmammet,1,romeoandjuliet,1596\nshirt,1,romeoandjuliet,1596\nlace,1,romeoandjuliet,1596\nbreathe,1,romeoandjuliet,1596\nconspires,1,romeoandjuliet,1596\nbids,1,romeoandjuliet,1596\nskitless,1,romeoandjuliet,1596\ntread,1,romeoandjuliet,1596\nbreaths,1,romeoandjuliet,1596\nbide,1,romeoandjuliet,1596\nPrick'd,1,romeoandjuliet,1596\ndoctrine,1,romeoandjuliet,1596\n'pothecary,1,romeoandjuliet,1596\ndirection,1,romeoandjuliet,1596\nNURSE,1,romeoandjuliet,1596\nundertake,1,romeoandjuliet,1596\nBrief,1,romeoandjuliet,1596\ncrows,1,romeoandjuliet,1596\nUnfold,1,romeoandjuliet,1596\n'Then,1,romeoandjuliet,1596\nbetwitched,1,romeoandjuliet,1596\ne'en,1,romeoandjuliet,1596\nprompter,1,romeoandjuliet,1596\nslop,1,romeoandjuliet,1596\nturn'd,1,romeoandjuliet,1596\nHolding,1,romeoandjuliet,1596\nHugh,1,romeoandjuliet,1596\n'fall'st,1,romeoandjuliet,1596\nRetiring,1,romeoandjuliet,1596\nwoo'd,1,romeoandjuliet,1596\nvanish'd,1,romeoandjuliet,1596\npunished,1,romeoandjuliet,1596\nconsents,1,romeoandjuliet,1596\nfortunes,1,romeoandjuliet,1596\nsway,1,romeoandjuliet,1596\nearliness,1,romeoandjuliet,1596\nswan,1,romeoandjuliet,1596\nbusied,1,romeoandjuliet,1596\nbrave,2,romeoandjuliet,1596\nheed,2,romeoandjuliet,1596\nFrancis,2,romeoandjuliet,1596\ncorns,2,romeoandjuliet,1596\nbrawl,2,romeoandjuliet,1596\nheel,2,romeoandjuliet,1596\nlusty,2,romeoandjuliet,1596\nforbid,2,romeoandjuliet,1596\ninstruments,2,romeoandjuliet,1596\nname's,2,romeoandjuliet,1596\nwomanish,2,romeoandjuliet,1596\nR,2,romeoandjuliet,1596\npity,2,romeoandjuliet,1596\nc,2,romeoandjuliet,1596\nsmiles,2,romeoandjuliet,1596\nLaying,2,romeoandjuliet,1596\nmotion,2,romeoandjuliet,1596\ntops,2,romeoandjuliet,1596\nleisure,2,romeoandjuliet,1596\ntremble,2,romeoandjuliet,1596\ndisturb,2,romeoandjuliet,1596\nrat,2,romeoandjuliet,1596\nalike,2,romeoandjuliet,1596\nshadows,2,romeoandjuliet,1596\nmend,2,romeoandjuliet,1596\nscene,2,romeoandjuliet,1596\nVerona's,2,romeoandjuliet,1596\nWomen,2,romeoandjuliet,1596\ndiscourses,2,romeoandjuliet,1596\nheld,2,romeoandjuliet,1596\nsleeps,2,romeoandjuliet,1596\nhelps,2,romeoandjuliet,1596\nspade,2,romeoandjuliet,1596\nsingle,2,romeoandjuliet,1596\nMeaning,2,romeoandjuliet,1596\nMust,2,romeoandjuliet,1596\nspake,2,romeoandjuliet,1596\nviolent,2,romeoandjuliet,1596\nPROLOGUE,2,romeoandjuliet,1596\nlodging,2,romeoandjuliet,1596\nprosperous,2,romeoandjuliet,1596\nlearn'd,2,romeoandjuliet,1596\nBeshrew,2,romeoandjuliet,1596\noffer,2,romeoandjuliet,1596\nparadise,2,romeoandjuliet,1596\nslander,2,romeoandjuliet,1596\nappear,2,romeoandjuliet,1596\ncave,2,romeoandjuliet,1596\nmatch'd,2,romeoandjuliet,1596\nunderneath,2,romeoandjuliet,1596\nnought,2,romeoandjuliet,1596\nthirty,2,romeoandjuliet,1596\nbeauty's,2,romeoandjuliet,1596\npress,2,romeoandjuliet,1596\ndemesnes,2,romeoandjuliet,1596\nremain,2,romeoandjuliet,1596\njoys,2,romeoandjuliet,1596\nbaggage,2,romeoandjuliet,1596\nwounded,2,romeoandjuliet,1596\ncast,2,romeoandjuliet,1596\ncrutch,2,romeoandjuliet,1596\nPretty,2,romeoandjuliet,1596\nsong,2,romeoandjuliet,1596\nworser,2,romeoandjuliet,1596\ncats,2,romeoandjuliet,1596\nreign,2,romeoandjuliet,1596\namazed,2,romeoandjuliet,1596\nsole,2,romeoandjuliet,1596\nsold,2,romeoandjuliet,1596\nscarlet,2,romeoandjuliet,1596\ngrows,2,romeoandjuliet,1596\nsorrows,2,romeoandjuliet,1596\ncircumstance,2,romeoandjuliet,1596\ndram,2,romeoandjuliet,1596\ncrying,2,romeoandjuliet,1596\n'Yea,2,romeoandjuliet,1596\ndrew,2,romeoandjuliet,1596\ncheer,2,romeoandjuliet,1596\nhearing,2,romeoandjuliet,1596\npaper,2,romeoandjuliet,1596\nmaking,2,romeoandjuliet,1596\nfools,2,romeoandjuliet,1596\nbegan,2,romeoandjuliet,1596\nasked,2,romeoandjuliet,1596\nsoar,2,romeoandjuliet,1596\nhereafter,2,romeoandjuliet,1596\nvial,2,romeoandjuliet,1596\nthink'st,2,romeoandjuliet,1596\nvice,2,romeoandjuliet,1596\ndeceived,2,romeoandjuliet,1596\nshe'll,2,romeoandjuliet,1596\nthrone,2,romeoandjuliet,1596\nbitterly,2,romeoandjuliet,1596\nprettiest,2,romeoandjuliet,1596\nspy,2,romeoandjuliet,1596\nwinds,2,romeoandjuliet,1596\nraised,2,romeoandjuliet,1596\nlivery,2,romeoandjuliet,1596\nbeloved,2,romeoandjuliet,1596\ngroans,2,romeoandjuliet,1596\nMusic,2,romeoandjuliet,1596\nconfessor,2,romeoandjuliet,1596\nsuck'd,2,romeoandjuliet,1596\npoverty,2,romeoandjuliet,1596\neverlasting,2,romeoandjuliet,1596\nmerit,2,romeoandjuliet,1596\nfelt,2,romeoandjuliet,1596\nwrong,2,romeoandjuliet,1596\npiece,2,romeoandjuliet,1596\nrevived,2,romeoandjuliet,1596\ntwelve,2,romeoandjuliet,1596\nways,2,romeoandjuliet,1596\ncommon,2,romeoandjuliet,1596\nbore,2,romeoandjuliet,1596\nTush,2,romeoandjuliet,1596\nloathed,2,romeoandjuliet,1596\ndearly,2,romeoandjuliet,1596\nPardon,2,romeoandjuliet,1596\nfruit,2,romeoandjuliet,1596\nthence,2,romeoandjuliet,1596\nsum,2,romeoandjuliet,1596\nvanity,2,romeoandjuliet,1596\ngrow,2,romeoandjuliet,1596\ndescend,2,romeoandjuliet,1596\nsaucy,2,romeoandjuliet,1596\nfalse,2,romeoandjuliet,1596\nprevent,2,romeoandjuliet,1596\nward,2,romeoandjuliet,1596\nware,2,romeoandjuliet,1596\nStop,2,romeoandjuliet,1596\nseems,2,romeoandjuliet,1596\nwant,2,romeoandjuliet,1596\nsteal,2,romeoandjuliet,1596\nHenceforward,2,romeoandjuliet,1596\nThough,2,romeoandjuliet,1596\nseest,2,romeoandjuliet,1596\nworld's,2,romeoandjuliet,1596\ntrudge,2,romeoandjuliet,1596\ncunning,2,romeoandjuliet,1596\nbone,2,romeoandjuliet,1596\noffice,2,romeoandjuliet,1596\ndesire,2,romeoandjuliet,1596\nFrench,2,romeoandjuliet,1596\nparts,2,romeoandjuliet,1596\neach,2,romeoandjuliet,1596\nbig,2,romeoandjuliet,1596\nCapel's,2,romeoandjuliet,1596\nburning,2,romeoandjuliet,1596\nmanners,2,romeoandjuliet,1596\nhap,2,romeoandjuliet,1596\nwanting,2,romeoandjuliet,1596\nHoly,2,romeoandjuliet,1596\nserving,2,romeoandjuliet,1596\ndelights,2,romeoandjuliet,1596\npilot,2,romeoandjuliet,1596\ninfection,2,romeoandjuliet,1596\nAm,2,romeoandjuliet,1596\nmutiny,2,romeoandjuliet,1596\nstreaks,2,romeoandjuliet,1596\nStill,2,romeoandjuliet,1596\nsmile,2,romeoandjuliet,1596\nHaving,2,romeoandjuliet,1596\nsiege,2,romeoandjuliet,1596\nunless,2,romeoandjuliet,1596\ncreature,2,romeoandjuliet,1596\nbrings,2,romeoandjuliet,1596\nto't,2,romeoandjuliet,1596\nsings,2,romeoandjuliet,1596\nfinds,2,romeoandjuliet,1596\nchanged,2,romeoandjuliet,1596\nashes,2,romeoandjuliet,1596\nHa,2,romeoandjuliet,1596\nmeant,2,romeoandjuliet,1596\nblest,2,romeoandjuliet,1596\nbless,2,romeoandjuliet,1596\nfortune's,2,romeoandjuliet,1596\nquick,2,romeoandjuliet,1596\ndespair,2,romeoandjuliet,1596\nsport,2,romeoandjuliet,1596\nwedded,2,romeoandjuliet,1596\nstep,2,romeoandjuliet,1596\nnice,2,romeoandjuliet,1596\nbrawls,2,romeoandjuliet,1596\ndevotion,2,romeoandjuliet,1596\n'banished,2,romeoandjuliet,1596\nvaliant,2,romeoandjuliet,1596\nsits,2,romeoandjuliet,1596\nchallenge,2,romeoandjuliet,1596\nweek,2,romeoandjuliet,1596\nbehind,2,romeoandjuliet,1596\nbell,2,romeoandjuliet,1596\ncat,2,romeoandjuliet,1596\nchildren,2,romeoandjuliet,1596\nstruck,2,romeoandjuliet,1596\nornament,2,romeoandjuliet,1596\nyon,2,romeoandjuliet,1596\nlearned,2,romeoandjuliet,1596\nLies,2,romeoandjuliet,1596\nsepulchre,2,romeoandjuliet,1596\nafore,2,romeoandjuliet,1596\nDies,2,romeoandjuliet,1596\naqua,2,romeoandjuliet,1596\nDrawing,2,romeoandjuliet,1596\nantic,2,romeoandjuliet,1596\nsilk,2,romeoandjuliet,1596\ntedious,2,romeoandjuliet,1596\nbud,2,romeoandjuliet,1596\npains,2,romeoandjuliet,1596\nsink,2,romeoandjuliet,1596\nrejoice,2,romeoandjuliet,1596\nsing,2,romeoandjuliet,1596\nmoody,2,romeoandjuliet,1596\ngrandsire,2,romeoandjuliet,1596\nBoth,2,romeoandjuliet,1596\nquite,2,romeoandjuliet,1596\nstore,2,romeoandjuliet,1596\nstorm,2,romeoandjuliet,1596\nstory,2,romeoandjuliet,1596\ntyrant,2,romeoandjuliet,1596\nFear,2,romeoandjuliet,1596\nexcellent,2,romeoandjuliet,1596\nrepent,2,romeoandjuliet,1596\ncarrion,2,romeoandjuliet,1596\nfavour,2,romeoandjuliet,1596\ndebt,2,romeoandjuliet,1596\nfa,2,romeoandjuliet,1596\nlegs,2,romeoandjuliet,1596\nyew,2,romeoandjuliet,1596\nago,2,romeoandjuliet,1596\nstone,2,romeoandjuliet,1596\nplays,2,romeoandjuliet,1596\nstony,2,romeoandjuliet,1596\ndeal,2,romeoandjuliet,1596\ndeaf,2,romeoandjuliet,1596\nnobleman,2,romeoandjuliet,1596\nstain'd,2,romeoandjuliet,1596\ngall,2,romeoandjuliet,1596\ntorches,2,romeoandjuliet,1596\npossess'd,2,romeoandjuliet,1596\nshed,2,romeoandjuliet,1596\nnewly,2,romeoandjuliet,1596\nmonth,2,romeoandjuliet,1596\ndelay,2,romeoandjuliet,1596\nlo,2,romeoandjuliet,1596\nthankful,2,romeoandjuliet,1596\nLive,2,romeoandjuliet,1596\naccount,2,romeoandjuliet,1596\nlook'st,2,romeoandjuliet,1596\ntemper,2,romeoandjuliet,1596\nenmity,2,romeoandjuliet,1596\nloves,2,romeoandjuliet,1596\nstout,2,romeoandjuliet,1596\nmiserable,2,romeoandjuliet,1596\nendure,2,romeoandjuliet,1596\nYea,2,romeoandjuliet,1596\ngallops,2,romeoandjuliet,1596\nYes,2,romeoandjuliet,1596\ndrift,2,romeoandjuliet,1596\nlest,2,romeoandjuliet,1596\nlose,2,romeoandjuliet,1596\ndefy,2,romeoandjuliet,1596\nact,2,romeoandjuliet,1596\nbeauteous,2,romeoandjuliet,1596\nnimble,2,romeoandjuliet,1596\nforgot,2,romeoandjuliet,1596\nminstrels,2,romeoandjuliet,1596\nkindred's,2,romeoandjuliet,1596\nexcels,2,romeoandjuliet,1596\nclimb,2,romeoandjuliet,1596\ngraves,2,romeoandjuliet,1596\nchoice,2,romeoandjuliet,1596\nvalour,2,romeoandjuliet,1596\nornaments,2,romeoandjuliet,1596\nJack,2,romeoandjuliet,1596\nweapon,2,romeoandjuliet,1596\nsoldier's,2,romeoandjuliet,1596\nmessenger,2,romeoandjuliet,1596\npump,2,romeoandjuliet,1596\npalm,2,romeoandjuliet,1596\nwormwood,2,romeoandjuliet,1596\nweeds,2,romeoandjuliet,1596\nnatural,2,romeoandjuliet,1596\nrushes,2,romeoandjuliet,1596\nre,2,romeoandjuliet,1596\nhang,2,romeoandjuliet,1596\nFull,2,romeoandjuliet,1596\nfour,2,romeoandjuliet,1596\ndrawn,2,romeoandjuliet,1596\nMontague's,2,romeoandjuliet,1596\nforty,2,romeoandjuliet,1596\npluck,2,romeoandjuliet,1596\nUnder,2,romeoandjuliet,1596\npage,2,romeoandjuliet,1596\nvengeance,2,romeoandjuliet,1596\nknocks,2,romeoandjuliet,1596\nnightly,2,romeoandjuliet,1596\npurged,2,romeoandjuliet,1596\npair,2,romeoandjuliet,1596\nhangs,2,romeoandjuliet,1596\nheaviness,2,romeoandjuliet,1596\noutrage,2,romeoandjuliet,1596\nfrown,2,romeoandjuliet,1596\ntwain,2,romeoandjuliet,1596\nstones,2,romeoandjuliet,1596\nshop,2,romeoandjuliet,1596\nmortals,2,romeoandjuliet,1596\nshot,2,romeoandjuliet,1596\ndismal,2,romeoandjuliet,1596\nsaints,2,romeoandjuliet,1596\nunlucky,2,romeoandjuliet,1596\nfresh,2,romeoandjuliet,1596\nmaiden,2,romeoandjuliet,1596\nterm,2,romeoandjuliet,1596\nparents',2,romeoandjuliet,1596\ninquire,2,romeoandjuliet,1596\nAmong,2,romeoandjuliet,1596\nundone,2,romeoandjuliet,1596\nfee,2,romeoandjuliet,1596\nnative,2,romeoandjuliet,1596\narray,2,romeoandjuliet,1596\nenemies,2,romeoandjuliet,1596\ndooms,2,romeoandjuliet,1596\nbroke,2,romeoandjuliet,1596\nbeams,2,romeoandjuliet,1596\nguest,2,romeoandjuliet,1596\nfan,2,romeoandjuliet,1596\nfairies',2,romeoandjuliet,1596\noften,2,romeoandjuliet,1596\ngriefs,2,romeoandjuliet,1596\nbreathed,2,romeoandjuliet,1596\nhoarse,2,romeoandjuliet,1596\nscape,2,romeoandjuliet,1596\ncouldst,2,romeoandjuliet,1596\nwater,2,romeoandjuliet,1596\nHall,2,romeoandjuliet,1596\nnose,2,romeoandjuliet,1596\nVenus,2,romeoandjuliet,1596\n'Zounds,2,romeoandjuliet,1596\ntrencher,2,romeoandjuliet,1596\nwonder,2,romeoandjuliet,1596\nlocks,2,romeoandjuliet,1596\nrate,2,romeoandjuliet,1596\nbears,2,romeoandjuliet,1596\nours,2,romeoandjuliet,1596\nbottom,2,romeoandjuliet,1596\neve,2,romeoandjuliet,1596\nSoft,2,romeoandjuliet,1596\nadventure,2,romeoandjuliet,1596\naffections,2,romeoandjuliet,1596\nstays,2,romeoandjuliet,1596\nlantern,2,romeoandjuliet,1596\ncounsellor,2,romeoandjuliet,1596\nMonday,2,romeoandjuliet,1596\nmisery,2,romeoandjuliet,1596\nmouth,2,romeoandjuliet,1596\nseveral,2,romeoandjuliet,1596\nquestion,2,romeoandjuliet,1596\npilgrim,2,romeoandjuliet,1596\ngeneral,2,romeoandjuliet,1596\neffect,2,romeoandjuliet,1596\nconsort,2,romeoandjuliet,1596\nspurs,2,romeoandjuliet,1596\nEvermore,2,romeoandjuliet,1596\nstrife,2,romeoandjuliet,1596\ndoors,2,romeoandjuliet,1596\nmortal,2,romeoandjuliet,1596\nlikewise,2,romeoandjuliet,1596\ntowards,2,romeoandjuliet,1596\nleaves,2,romeoandjuliet,1596\nteeth,2,romeoandjuliet,1596\nmightst,2,romeoandjuliet,1596\nfoolish,2,romeoandjuliet,1596\nwrought,2,romeoandjuliet,1596\nnursed,2,romeoandjuliet,1596\negg,2,romeoandjuliet,1596\nquench,2,romeoandjuliet,1596\nblow,2,romeoandjuliet,1596\nbrains,2,romeoandjuliet,1596\n'I',2,romeoandjuliet,1596\nmiss,2,romeoandjuliet,1596\nfish,2,romeoandjuliet,1596\nfree,2,romeoandjuliet,1596\nover,2,romeoandjuliet,1596\nnumber,2,romeoandjuliet,1596\nborrow'd,2,romeoandjuliet,1596\nsmoke,2,romeoandjuliet,1596\ntrouble,2,romeoandjuliet,1596\no'clock,2,romeoandjuliet,1596\nsuspicion,2,romeoandjuliet,1596\nodd,2,romeoandjuliet,1596\nsalt,2,romeoandjuliet,1596\nneck,2,romeoandjuliet,1596\npersons,2,romeoandjuliet,1596\nherbs,2,romeoandjuliet,1596\nTaking,2,romeoandjuliet,1596\ndetestable,2,romeoandjuliet,1596\nimport,2,romeoandjuliet,1596\npassado,2,romeoandjuliet,1596\ndifferent,2,romeoandjuliet,1596\nheard,2,romeoandjuliet,1596\nSay,2,romeoandjuliet,1596\nobsequies,2,romeoandjuliet,1596\ndeath's,2,romeoandjuliet,1596\nmaidenhead,2,romeoandjuliet,1596\ncalled,2,romeoandjuliet,1596\nstiff,2,romeoandjuliet,1596\nquarrelling,2,romeoandjuliet,1596\nwax,2,romeoandjuliet,1596\nable,2,romeoandjuliet,1596\ntailor,2,romeoandjuliet,1596\nperforce,2,romeoandjuliet,1596\nrite,2,romeoandjuliet,1596\nbrother's,2,romeoandjuliet,1596\npride,2,romeoandjuliet,1596\nforward,2,romeoandjuliet,1596\nwanton,2,romeoandjuliet,1596\napace,2,romeoandjuliet,1596\nprice,2,romeoandjuliet,1596\nprick,2,romeoandjuliet,1596\nPoison,2,romeoandjuliet,1596\nfestival,2,romeoandjuliet,1596\ngladly,2,romeoandjuliet,1596\ndreamt,2,romeoandjuliet,1596\nBid,2,romeoandjuliet,1596\nserved,2,romeoandjuliet,1596\nCupid's,2,romeoandjuliet,1596\ntaken,2,romeoandjuliet,1596\nwhat's,2,romeoandjuliet,1596\nLaurence,2,romeoandjuliet,1596\nforfeit,2,romeoandjuliet,1596\ndump,2,romeoandjuliet,1596\nknight,2,romeoandjuliet,1596\ndisposition,2,romeoandjuliet,1596\ndull,2,romeoandjuliet,1596\nnest,2,romeoandjuliet,1596\nope,2,romeoandjuliet,1596\nwhence,2,romeoandjuliet,1596\ncover,2,romeoandjuliet,1596\nfail,2,romeoandjuliet,1596\nwatching,2,romeoandjuliet,1596\nglad,2,romeoandjuliet,1596\nShow,2,romeoandjuliet,1596\ncompare,2,romeoandjuliet,1596\nguilty,2,romeoandjuliet,1596\nMany,2,romeoandjuliet,1596\npresses,2,romeoandjuliet,1596\nweapons,2,romeoandjuliet,1596\nwert,2,romeoandjuliet,1596\ngrant,2,romeoandjuliet,1596\nmethinks,2,romeoandjuliet,1596\nworm,2,romeoandjuliet,1596\nroses,2,romeoandjuliet,1596\npalace,2,romeoandjuliet,1596\npassing,2,romeoandjuliet,1596\ndancing,2,romeoandjuliet,1596\nfit,2,romeoandjuliet,1596\nmansion,2,romeoandjuliet,1596\nta'en,2,romeoandjuliet,1596\nshown,2,romeoandjuliet,1596\nworship,2,romeoandjuliet,1596\nwealth,2,romeoandjuliet,1596\nsmooth,2,romeoandjuliet,1596\nbird,2,romeoandjuliet,1596\ncock,2,romeoandjuliet,1596\nhood,2,romeoandjuliet,1596\nvitae,2,romeoandjuliet,1596\nNoise,2,romeoandjuliet,1596\nlights,2,romeoandjuliet,1596\narm'd,2,romeoandjuliet,1596\ncarry,2,romeoandjuliet,1596\nmothers,2,romeoandjuliet,1596\nrapier,2,romeoandjuliet,1596\nbeshrew,2,romeoandjuliet,1596\nhazel,2,romeoandjuliet,1596\nbigger,2,romeoandjuliet,1596\nArise,2,romeoandjuliet,1596\nWho's,2,romeoandjuliet,1596\ncounterfeit,2,romeoandjuliet,1596\ncholer,2,romeoandjuliet,1596\nNightly,2,romeoandjuliet,1596\nrobes,2,romeoandjuliet,1596\nmanage,2,romeoandjuliet,1596\nlovely,2,romeoandjuliet,1596\ncook,2,romeoandjuliet,1596\nblade,2,romeoandjuliet,1596\nfairer,2,romeoandjuliet,1596\neyed,2,romeoandjuliet,1596\n'silver,2,romeoandjuliet,1596\nPrince,2,romeoandjuliet,1596\nreckoning,2,romeoandjuliet,1596\nRight,2,romeoandjuliet,1596\naught,2,romeoandjuliet,1596\nsingular,2,romeoandjuliet,1596\nfights,2,romeoandjuliet,1596\ntroth,2,romeoandjuliet,1596\npresence,2,romeoandjuliet,1596\nended,2,romeoandjuliet,1596\nmeantime,2,romeoandjuliet,1596\ncamest,2,romeoandjuliet,1596\nfellows,2,romeoandjuliet,1596\nTrue,2,romeoandjuliet,1596\nPray,2,romeoandjuliet,1596\nmisadventure,2,romeoandjuliet,1596\nperson,2,romeoandjuliet,1596\nThrough,2,romeoandjuliet,1596\ndrugs,2,romeoandjuliet,1596\nlovest,2,romeoandjuliet,1596\nentreat,2,romeoandjuliet,1596\nSend,2,romeoandjuliet,1596\nprayer,2,romeoandjuliet,1596\nlovers,2,romeoandjuliet,1596\nsouls,2,romeoandjuliet,1596\nself,2,romeoandjuliet,1596\nfairly,2,romeoandjuliet,1596\ntide,2,romeoandjuliet,1596\nJust,2,romeoandjuliet,1596\naloud,2,romeoandjuliet,1596\nleg,2,romeoandjuliet,1596\nbleeding,2,romeoandjuliet,1596\nprison,2,romeoandjuliet,1596\nScurvy,2,romeoandjuliet,1596\nroaring,2,romeoandjuliet,1596\nsent,2,romeoandjuliet,1596\ntalk'd,2,romeoandjuliet,1596\ngreeting,2,romeoandjuliet,1596\ndisobedient,2,romeoandjuliet,1596\nsullen,2,romeoandjuliet,1596\nmaster's,2,romeoandjuliet,1596\nnature's,2,romeoandjuliet,1596\ntriumph,2,romeoandjuliet,1596\ntrow,2,romeoandjuliet,1596\nPotpan,2,romeoandjuliet,1596\nservants,2,romeoandjuliet,1596\nfeasting,2,romeoandjuliet,1596\nshamest,2,romeoandjuliet,1596\nwrite,2,romeoandjuliet,1596\nmar,2,romeoandjuliet,1596\nwearing,2,romeoandjuliet,1596\nlimbs,2,romeoandjuliet,1596\nstarts,2,romeoandjuliet,1596\nvolume,2,romeoandjuliet,1596\nlazy,2,romeoandjuliet,1596\nTowards,2,romeoandjuliet,1596\nbegins,2,romeoandjuliet,1596\nDespised,2,romeoandjuliet,1596\nSometime,2,romeoandjuliet,1596\nGregory,2,romeoandjuliet,1596\ntrim,2,romeoandjuliet,1596\nmeeting,2,romeoandjuliet,1596\nmurder'd,2,romeoandjuliet,1596\npartisans,2,romeoandjuliet,1596\ndetermine,2,romeoandjuliet,1596\nburnt,2,romeoandjuliet,1596\nwhip,2,romeoandjuliet,1596\nmerciful,2,romeoandjuliet,1596\nbody's,2,romeoandjuliet,1596\nfled,2,romeoandjuliet,1596\nbethink,2,romeoandjuliet,1596\neleven,2,romeoandjuliet,1596\non't,2,romeoandjuliet,1596\nAmen,2,romeoandjuliet,1596\nIndeed,2,romeoandjuliet,1596\namorous,2,romeoandjuliet,1596\nSleep,2,romeoandjuliet,1596\nsometimes,2,romeoandjuliet,1596\nterror,2,romeoandjuliet,1596\nvestal,2,romeoandjuliet,1596\ncitizens,2,romeoandjuliet,1596\nskulls,2,romeoandjuliet,1596\n'Romeo,2,romeoandjuliet,1596\nwindows,2,romeoandjuliet,1596\ncontent,2,romeoandjuliet,1596\ntry,2,romeoandjuliet,1596\nduellist,2,romeoandjuliet,1596\nsentence,2,romeoandjuliet,1596\nspring,2,romeoandjuliet,1596\nentrance,2,romeoandjuliet,1596\n'music,2,romeoandjuliet,1596\ncover'd,2,romeoandjuliet,1596\nshaft,2,romeoandjuliet,1596\nrespect,2,romeoandjuliet,1596\nwagoner,2,romeoandjuliet,1596\nmangled,2,romeoandjuliet,1596\nstinted,2,romeoandjuliet,1596\nFalls,2,romeoandjuliet,1596\nLest,2,romeoandjuliet,1596\nsounding,2,romeoandjuliet,1596\neyesight,2,romeoandjuliet,1596\nExamine,2,romeoandjuliet,1596\nvex'd,2,romeoandjuliet,1596\ntrees,2,romeoandjuliet,1596\ncross,2,romeoandjuliet,1596\nstol'n,2,romeoandjuliet,1596\nprivate,2,romeoandjuliet,1596\nDry,2,romeoandjuliet,1596\nmis,2,romeoandjuliet,1596\nawake,2,romeoandjuliet,1596\nsoundly,2,romeoandjuliet,1596\nten,2,romeoandjuliet,1596\namen,2,romeoandjuliet,1596\nbier,2,romeoandjuliet,1596\nHonest,2,romeoandjuliet,1596\ngear,2,romeoandjuliet,1596\nforbear,2,romeoandjuliet,1596\nneighbour,2,romeoandjuliet,1596\nshoes,2,romeoandjuliet,1596\nflattering,2,romeoandjuliet,1596\ndim,2,romeoandjuliet,1596\nshare,2,romeoandjuliet,1596\norder,2,romeoandjuliet,1596\nsharp,2,romeoandjuliet,1596\nsummer,2,romeoandjuliet,1596\ndaughters,2,romeoandjuliet,1596\nadvanced,3,romeoandjuliet,1596\ntold,3,romeoandjuliet,1596\napprehend,3,romeoandjuliet,1596\nweary,3,romeoandjuliet,1596\nbusiness,3,romeoandjuliet,1596\nFie,3,romeoandjuliet,1596\nbrows,3,romeoandjuliet,1596\nheart's,3,romeoandjuliet,1596\nday's,3,romeoandjuliet,1596\nrather,3,romeoandjuliet,1596\ntruly,3,romeoandjuliet,1596\njoint,3,romeoandjuliet,1596\nphilosophy,3,romeoandjuliet,1596\nfinger,3,romeoandjuliet,1596\nvain,3,romeoandjuliet,1596\nCitizens,3,romeoandjuliet,1596\nHelp,3,romeoandjuliet,1596\ntoil,3,romeoandjuliet,1596\nmattock,3,romeoandjuliet,1596\nWife,3,romeoandjuliet,1596\nlick,3,romeoandjuliet,1596\nfury,3,romeoandjuliet,1596\ndrink,3,romeoandjuliet,1596\nlaugh,3,romeoandjuliet,1596\ncontrary,3,romeoandjuliet,1596\nWould,3,romeoandjuliet,1596\nloathsome,3,romeoandjuliet,1596\nPoor,3,romeoandjuliet,1596\nplague,3,romeoandjuliet,1596\ninconstant,3,romeoandjuliet,1596\ncharge,3,romeoandjuliet,1596\nYoung,3,romeoandjuliet,1596\nunaccustom'd,3,romeoandjuliet,1596\nWhose,3,romeoandjuliet,1596\ngrown,3,romeoandjuliet,1596\nbackward,3,romeoandjuliet,1596\ntoward,3,romeoandjuliet,1596\nrosemary,3,romeoandjuliet,1596\ncalm,3,romeoandjuliet,1596\nlikeness,3,romeoandjuliet,1596\nteach,3,romeoandjuliet,1596\nsoft,3,romeoandjuliet,1596\nCupid,3,romeoandjuliet,1596\nview,3,romeoandjuliet,1596\nstands,3,romeoandjuliet,1596\nGet,3,romeoandjuliet,1596\nvirtuous,3,romeoandjuliet,1596\n'twas,3,romeoandjuliet,1596\nbridal,3,romeoandjuliet,1596\nsuit,3,romeoandjuliet,1596\nmurderer,3,romeoandjuliet,1596\nsworn,3,romeoandjuliet,1596\nwhere's,3,romeoandjuliet,1596\nAttendants,3,romeoandjuliet,1596\ndaughter's,3,romeoandjuliet,1596\nworse,3,romeoandjuliet,1596\nbeseeming,3,romeoandjuliet,1596\nbrain,3,romeoandjuliet,1596\ncousin's,3,romeoandjuliet,1596\nborn,3,romeoandjuliet,1596\nrhyme,3,romeoandjuliet,1596\nencounter,3,romeoandjuliet,1596\nwhite,3,romeoandjuliet,1596\ncries,3,romeoandjuliet,1596\ncease,3,romeoandjuliet,1596\nchoose,3,romeoandjuliet,1596\nHence,3,romeoandjuliet,1596\nknees,3,romeoandjuliet,1596\nvisor,3,romeoandjuliet,1596\nanon,3,romeoandjuliet,1596\nsense,3,romeoandjuliet,1596\nstop,3,romeoandjuliet,1596\nwarm,3,romeoandjuliet,1596\nmeat,3,romeoandjuliet,1596\nruled,3,romeoandjuliet,1596\nDraw,3,romeoandjuliet,1596\nnephew,3,romeoandjuliet,1596\nblows,3,romeoandjuliet,1596\nyouthful,3,romeoandjuliet,1596\nwash'd,3,romeoandjuliet,1596\nbad,3,romeoandjuliet,1596\nChurch,3,romeoandjuliet,1596\nStand,3,romeoandjuliet,1596\nproof,3,romeoandjuliet,1596\ndiscords,3,romeoandjuliet,1596\nhid,3,romeoandjuliet,1596\nbeg,3,romeoandjuliet,1596\ndinner,3,romeoandjuliet,1596\nwhole,3,romeoandjuliet,1596\nHad,3,romeoandjuliet,1596\npass,3,romeoandjuliet,1596\nUp,3,romeoandjuliet,1596\nRetires,3,romeoandjuliet,1596\ncourteous,3,romeoandjuliet,1596\ngod,3,romeoandjuliet,1596\nsought,3,romeoandjuliet,1596\nmorning's,3,romeoandjuliet,1596\napothecary,3,romeoandjuliet,1596\nROMEO's,3,romeoandjuliet,1596\nbury,3,romeoandjuliet,1596\ndove,3,romeoandjuliet,1596\nburn,3,romeoandjuliet,1596\ngot,3,romeoandjuliet,1596\ngaze,3,romeoandjuliet,1596\nweak,3,romeoandjuliet,1596\nPut,3,romeoandjuliet,1596\nMaskers,3,romeoandjuliet,1596\nsound',3,romeoandjuliet,1596\nbuy,3,romeoandjuliet,1596\nturns,3,romeoandjuliet,1596\nimmortal,3,romeoandjuliet,1596\ni',3,romeoandjuliet,1596\nGod's,3,romeoandjuliet,1596\nsail,3,romeoandjuliet,1596\nstay'd,3,romeoandjuliet,1596\nwretch,3,romeoandjuliet,1596\nconfess,3,romeoandjuliet,1596\nraise,3,romeoandjuliet,1596\nservant,3,romeoandjuliet,1596\nneedy,3,romeoandjuliet,1596\ndwell,3,romeoandjuliet,1596\nseeing,3,romeoandjuliet,1596\nlends,3,romeoandjuliet,1596\nspeed,3,romeoandjuliet,1596\napproach,3,romeoandjuliet,1596\nah,3,romeoandjuliet,1596\nhear'st,3,romeoandjuliet,1596\ndoor,3,romeoandjuliet,1596\nWatch,3,romeoandjuliet,1596\nrouse,3,romeoandjuliet,1596\nsmall,3,romeoandjuliet,1596\naside,3,romeoandjuliet,1596\nmorn,3,romeoandjuliet,1596\nlost,3,romeoandjuliet,1596\nspent,3,romeoandjuliet,1596\nafternoon,3,romeoandjuliet,1596\ndevil,3,romeoandjuliet,1596\nknew,3,romeoandjuliet,1596\npure,3,romeoandjuliet,1596\nBecause,3,romeoandjuliet,1596\ntoad,3,romeoandjuliet,1596\noppression,3,romeoandjuliet,1596\nscratch,3,romeoandjuliet,1596\nMost,3,romeoandjuliet,1596\nfield,3,romeoandjuliet,1596\nafford,3,romeoandjuliet,1596\nhall,3,romeoandjuliet,1596\nliberty,3,romeoandjuliet,1596\ndeny,3,romeoandjuliet,1596\nconfession,3,romeoandjuliet,1596\nsweetest,3,romeoandjuliet,1596\ncity,3,romeoandjuliet,1596\nShe's,3,romeoandjuliet,1596\npresent,3,romeoandjuliet,1596\npain,3,romeoandjuliet,1596\ndelight,3,romeoandjuliet,1596\nfiery,3,romeoandjuliet,1596\nlogs,3,romeoandjuliet,1596\napt,3,romeoandjuliet,1596\ndevise,3,romeoandjuliet,1596\nfaithful,3,romeoandjuliet,1596\nfiend,3,romeoandjuliet,1596\nfood,3,romeoandjuliet,1596\nfond,3,romeoandjuliet,1596\nmayst,3,romeoandjuliet,1596\nAre,3,romeoandjuliet,1596\nHast,3,romeoandjuliet,1596\nchance,3,romeoandjuliet,1596\nknock,3,romeoandjuliet,1596\nthanks,3,romeoandjuliet,1596\nright,3,romeoandjuliet,1596\ndeadly,3,romeoandjuliet,1596\nHark,3,romeoandjuliet,1596\nSirrah,3,romeoandjuliet,1596\ntouch,3,romeoandjuliet,1596\njudgment,3,romeoandjuliet,1596\nPeter's,3,romeoandjuliet,1596\nhere's,3,romeoandjuliet,1596\nShould,3,romeoandjuliet,1596\noccasion,3,romeoandjuliet,1596\nhoney,3,romeoandjuliet,1596\nbroad,3,romeoandjuliet,1596\nElse,3,romeoandjuliet,1596\nbeast,3,romeoandjuliet,1596\nalmost,3,romeoandjuliet,1596\nwakes,3,romeoandjuliet,1596\nhire,3,romeoandjuliet,1596\nbeats,3,romeoandjuliet,1596\nHang,3,romeoandjuliet,1596\ncurtains,3,romeoandjuliet,1596\nremedy,3,romeoandjuliet,1596\nfaint,3,romeoandjuliet,1596\nyear,3,romeoandjuliet,1596\nsirrah,3,romeoandjuliet,1596\nLove,3,romeoandjuliet,1596\nsubstance,3,romeoandjuliet,1596\nSir,3,romeoandjuliet,1596\nsay'st,3,romeoandjuliet,1596\nDost,3,romeoandjuliet,1596\nairy,3,romeoandjuliet,1596\nParis',3,romeoandjuliet,1596\ndaylight,3,romeoandjuliet,1596\nexchange,3,romeoandjuliet,1596\nkisses,3,romeoandjuliet,1596\nbeauties,3,romeoandjuliet,1596\nblush,3,romeoandjuliet,1596\nmask,3,romeoandjuliet,1596\npresently,3,romeoandjuliet,1596\nknows,3,romeoandjuliet,1596\nslave,3,romeoandjuliet,1596\ncraves,3,romeoandjuliet,1596\nsearch,3,romeoandjuliet,1596\nmistress',3,romeoandjuliet,1596\nwed,3,romeoandjuliet,1596\nWere,3,romeoandjuliet,1596\ntaste,3,romeoandjuliet,1596\nmurders,3,romeoandjuliet,1596\nflies,3,romeoandjuliet,1596\nWe'll,3,romeoandjuliet,1596\ncure,3,romeoandjuliet,1596\nclosed,3,romeoandjuliet,1596\nwalls,3,romeoandjuliet,1596\nServingmen,3,romeoandjuliet,1596\nsave,3,romeoandjuliet,1596\nbelieve,3,romeoandjuliet,1596\nbetween,3,romeoandjuliet,1596\nLammas,3,romeoandjuliet,1596\nsupper,3,romeoandjuliet,1596\nThree,3,romeoandjuliet,1596\ncursed,3,romeoandjuliet,1596\njoints,3,romeoandjuliet,1596\nweeping,3,romeoandjuliet,1596\nwaste,3,romeoandjuliet,1596\nhundred,3,romeoandjuliet,1596\nEven,3,romeoandjuliet,1596\nMake,3,romeoandjuliet,1596\nyond,3,romeoandjuliet,1596\ngiving,3,romeoandjuliet,1596\nmodesty,3,romeoandjuliet,1596\nplease,3,romeoandjuliet,1596\nhumour,3,romeoandjuliet,1596\nfly,3,romeoandjuliet,1596\n'Heart's,3,romeoandjuliet,1596\nfie,3,romeoandjuliet,1596\npassion,3,romeoandjuliet,1596\nvow,3,romeoandjuliet,1596\nbark,3,romeoandjuliet,1596\nwide,3,romeoandjuliet,1596\nUnto,3,romeoandjuliet,1596\nuncle,3,romeoandjuliet,1596\ndepart,3,romeoandjuliet,1596\npatient,3,romeoandjuliet,1596\npublic,3,romeoandjuliet,1596\nWednesday,3,romeoandjuliet,1596\nfast,3,romeoandjuliet,1596\npowder,3,romeoandjuliet,1596\ngallant,3,romeoandjuliet,1596\ncup,3,romeoandjuliet,1596\nhollow,3,romeoandjuliet,1596\nstrong,3,romeoandjuliet,1596\nhorses,3,romeoandjuliet,1596\nWhere's,3,romeoandjuliet,1596\nbawd,3,romeoandjuliet,1596\nhearts,3,romeoandjuliet,1596\nfickle,3,romeoandjuliet,1596\nadieu,3,romeoandjuliet,1596\naloof,3,romeoandjuliet,1596\ndrunk,3,romeoandjuliet,1596\nJule,3,romeoandjuliet,1596\nJesu,3,romeoandjuliet,1596\nsupposed,3,romeoandjuliet,1596\ncourtesy,3,romeoandjuliet,1596\ntidings,3,romeoandjuliet,1596\nthrust,3,romeoandjuliet,1596\ncry,3,romeoandjuliet,1596\nGentlemen,3,romeoandjuliet,1596\nThings,3,romeoandjuliet,1596\nwretched,3,romeoandjuliet,1596\nSusan,3,romeoandjuliet,1596\nChorus,3,romeoandjuliet,1596\npost,3,romeoandjuliet,1596\nalas,3,romeoandjuliet,1596\ngoes,3,romeoandjuliet,1596\nprotest,3,romeoandjuliet,1596\npurpose,3,romeoandjuliet,1596\nabroad,3,romeoandjuliet,1596\nSignior,3,romeoandjuliet,1596\nconduct,3,romeoandjuliet,1596\nlearn,3,romeoandjuliet,1596\nthoughts,3,romeoandjuliet,1596\nwound,3,romeoandjuliet,1596\nwithdraw,3,romeoandjuliet,1596\nMab,3,romeoandjuliet,1596\nshroud,3,romeoandjuliet,1596\nWithout,3,romeoandjuliet,1596\ngoing,3,romeoandjuliet,1596\nurged,3,romeoandjuliet,1596\ndate,3,romeoandjuliet,1596\nYou'll,3,romeoandjuliet,1596\nlain,3,romeoandjuliet,1596\nnightingale,3,romeoandjuliet,1596\ndug,3,romeoandjuliet,1596\nanother's,3,romeoandjuliet,1596\ndry,3,romeoandjuliet,1596\nguests,3,romeoandjuliet,1596\nburden,3,romeoandjuliet,1596\npronounce,3,romeoandjuliet,1596\nwoman,3,romeoandjuliet,1596\nsolemnity,3,romeoandjuliet,1596\nFind,3,romeoandjuliet,1596\nwouldst,3,romeoandjuliet,1596\ne'er,3,romeoandjuliet,1596\nwomen,3,romeoandjuliet,1596\ngrey,4,romeoandjuliet,1596\nJohn,4,romeoandjuliet,1596\nran,4,romeoandjuliet,1596\nalack,4,romeoandjuliet,1596\nWilt,4,romeoandjuliet,1596\nTell,4,romeoandjuliet,1596\nhers,4,romeoandjuliet,1596\nEither,4,romeoandjuliet,1596\nfought,4,romeoandjuliet,1596\nsour,4,romeoandjuliet,1596\niron,4,romeoandjuliet,1596\ndamned,4,romeoandjuliet,1596\ntrust,4,romeoandjuliet,1596\nlightning,4,romeoandjuliet,1596\nbridegroom,4,romeoandjuliet,1596\nmercy,4,romeoandjuliet,1596\nbirth,4,romeoandjuliet,1596\nbrother,4,romeoandjuliet,1596\nsure,4,romeoandjuliet,1596\ngolden,4,romeoandjuliet,1596\nveins,4,romeoandjuliet,1596\nsomething,4,romeoandjuliet,1596\nwalk,4,romeoandjuliet,1596\nSuch,4,romeoandjuliet,1596\n'I,4,romeoandjuliet,1596\ndoubt,4,romeoandjuliet,1596\nheavens,4,romeoandjuliet,1596\ncivil,4,romeoandjuliet,1596\nfault,4,romeoandjuliet,1596\nfalls,4,romeoandjuliet,1596\nafter,4,romeoandjuliet,1596\nblind,4,romeoandjuliet,1596\nbrief,4,romeoandjuliet,1596\nwind,4,romeoandjuliet,1596\nnight's,4,romeoandjuliet,1596\nMusicians,4,romeoandjuliet,1596\ndies,4,romeoandjuliet,1596\nbold,4,romeoandjuliet,1596\nsteel,4,romeoandjuliet,1596\nbitter,4,romeoandjuliet,1596\nFaith,4,romeoandjuliet,1596\npay,4,romeoandjuliet,1596\nHie,4,romeoandjuliet,1596\npatience,4,romeoandjuliet,1596\nbow,4,romeoandjuliet,1596\namong,4,romeoandjuliet,1596\ncruel,4,romeoandjuliet,1596\nhie,4,romeoandjuliet,1596\nwisdom,4,romeoandjuliet,1596\npiteous,4,romeoandjuliet,1596\nfatal,4,romeoandjuliet,1596\neast,4,romeoandjuliet,1596\nproud,4,romeoandjuliet,1596\nstrew,4,romeoandjuliet,1596\nquiet,4,romeoandjuliet,1596\ngave,4,romeoandjuliet,1596\nwear,4,romeoandjuliet,1596\njealous,4,romeoandjuliet,1596\na',4,romeoandjuliet,1596\nswift,4,romeoandjuliet,1596\nO'er,4,romeoandjuliet,1596\nbegin,4,romeoandjuliet,1596\nha,4,romeoandjuliet,1596\nleft,4,romeoandjuliet,1596\nneeds,4,romeoandjuliet,1596\nUnless,4,romeoandjuliet,1596\nlent,4,romeoandjuliet,1596\nseeming,4,romeoandjuliet,1596\nburied,4,romeoandjuliet,1596\nay,4,romeoandjuliet,1596\ngentlewoman,4,romeoandjuliet,1596\nwench,4,romeoandjuliet,1596\nthat's,4,romeoandjuliet,1596\ncommend,4,romeoandjuliet,1596\nwisely,4,romeoandjuliet,1596\nlover,4,romeoandjuliet,1596\nmoon,4,romeoandjuliet,1596\nloss,4,romeoandjuliet,1596\nloved,4,romeoandjuliet,1596\nready,4,romeoandjuliet,1596\nCame,4,romeoandjuliet,1596\nhard,4,romeoandjuliet,1596\ncrow,4,romeoandjuliet,1596\nhalf,4,romeoandjuliet,1596\nwelcome,4,romeoandjuliet,1596\nKnocking,4,romeoandjuliet,1596\nshut,4,romeoandjuliet,1596\nfoul,4,romeoandjuliet,1596\ncourse,4,romeoandjuliet,1596\nopen,4,romeoandjuliet,1596\nweeps,4,romeoandjuliet,1596\nprepare,4,romeoandjuliet,1596\nforsworn,4,romeoandjuliet,1596\nghostly,4,romeoandjuliet,1596\nsecret,4,romeoandjuliet,1596\nArt,4,romeoandjuliet,1596\nroom,4,romeoandjuliet,1596\nkeeps,4,romeoandjuliet,1596\nempty,4,romeoandjuliet,1596\nnote,4,romeoandjuliet,1596\nPeace,4,romeoandjuliet,1596\n'banished',4,romeoandjuliet,1596\nstrike,4,romeoandjuliet,1596\ndares,4,romeoandjuliet,1596\nmouse,4,romeoandjuliet,1596\nprecious,4,romeoandjuliet,1596\nyours,4,romeoandjuliet,1596\nknave,4,romeoandjuliet,1596\nthere's,4,romeoandjuliet,1596\nknown,4,romeoandjuliet,1596\nwoo,4,romeoandjuliet,1596\nfather's,4,romeoandjuliet,1596\nThird,4,romeoandjuliet,1596\nsake,4,romeoandjuliet,1596\noft,4,romeoandjuliet,1596\nhateful,4,romeoandjuliet,1596\nknife,4,romeoandjuliet,1596\nbanish'd,4,romeoandjuliet,1596\nwaking,4,romeoandjuliet,1596\ncount,4,romeoandjuliet,1596\ntorture,4,romeoandjuliet,1596\nThus,4,romeoandjuliet,1596\nCan,4,romeoandjuliet,1596\nrage,4,romeoandjuliet,1596\nkinsmen,4,romeoandjuliet,1596\ncoming,4,romeoandjuliet,1596\nhair,4,romeoandjuliet,1596\nCitizen,4,romeoandjuliet,1596\nanger,4,romeoandjuliet,1596\nwomb,4,romeoandjuliet,1596\nfain,4,romeoandjuliet,1596\nThat's,4,romeoandjuliet,1596\nwork,4,romeoandjuliet,1596\nworn,4,romeoandjuliet,1596\nminute,4,romeoandjuliet,1596\nbare,4,romeoandjuliet,1596\nnames,4,romeoandjuliet,1596\nhope,4,romeoandjuliet,1596\nWelcome,4,romeoandjuliet,1596\ngreen,4,romeoandjuliet,1596\ncut,4,romeoandjuliet,1596\nstreets,4,romeoandjuliet,1596\nconjure,4,romeoandjuliet,1596\nintents,4,romeoandjuliet,1596\nalong,4,romeoandjuliet,1596\nseek,4,romeoandjuliet,1596\ncoz,4,romeoandjuliet,1596\ntree,4,romeoandjuliet,1596\nremove,4,romeoandjuliet,1596\nsell,4,romeoandjuliet,1596\nmatch,4,romeoandjuliet,1596\nbrow,4,romeoandjuliet,1596\nslow,4,romeoandjuliet,1596\nspite,4,romeoandjuliet,1596\nsadness,4,romeoandjuliet,1596\nmet,4,romeoandjuliet,1596\nSince,4,romeoandjuliet,1596\nladies,4,romeoandjuliet,1596\nAway,4,romeoandjuliet,1596\nthither,4,romeoandjuliet,1596\nnature,4,romeoandjuliet,1596\nslay,4,romeoandjuliet,1596\nattend,4,romeoandjuliet,1596\nhoar,4,romeoandjuliet,1596\nlamb,4,romeoandjuliet,1596\nspirit,4,romeoandjuliet,1596\nTut,4,romeoandjuliet,1596\nswords,5,romeoandjuliet,1596\nlamentable,5,romeoandjuliet,1596\nheir,5,romeoandjuliet,1596\nAlas,5,romeoandjuliet,1596\nhell,5,romeoandjuliet,1596\nslaughter'd,5,romeoandjuliet,1596\nsighs,5,romeoandjuliet,1596\nhonourable,5,romeoandjuliet,1596\nEre,5,romeoandjuliet,1596\nwithal,5,romeoandjuliet,1596\nunder,5,romeoandjuliet,1596\ntruth,5,romeoandjuliet,1596\nUpon,5,romeoandjuliet,1596\nfriends,5,romeoandjuliet,1596\ncare,5,romeoandjuliet,1596\nsad,5,romeoandjuliet,1596\nyourself,5,romeoandjuliet,1596\ndance,5,romeoandjuliet,1596\nfingers,5,romeoandjuliet,1596\ntown,5,romeoandjuliet,1596\nblessed,5,romeoandjuliet,1596\nshrift,5,romeoandjuliet,1596\nfurther,5,romeoandjuliet,1596\nlovers',5,romeoandjuliet,1596\nwake,5,romeoandjuliet,1596\nwedding,5,romeoandjuliet,1596\nscorn,5,romeoandjuliet,1596\nnine,5,romeoandjuliet,1596\nWas,5,romeoandjuliet,1596\ncause,5,romeoandjuliet,1596\nsecond,5,romeoandjuliet,1596\nwings,5,romeoandjuliet,1596\nread,5,romeoandjuliet,1596\nOut,5,romeoandjuliet,1596\nfellow,5,romeoandjuliet,1596\nLaurence',5,romeoandjuliet,1596\nTurn,5,romeoandjuliet,1596\nbride,5,romeoandjuliet,1596\nhonour,5,romeoandjuliet,1596\nrude,5,romeoandjuliet,1596\nknow'st,5,romeoandjuliet,1596\nwise,5,romeoandjuliet,1596\nwindow,5,romeoandjuliet,1596\nvoice,5,romeoandjuliet,1596\npretty,5,romeoandjuliet,1596\nPAGE,5,romeoandjuliet,1596\nwits,5,romeoandjuliet,1596\nbright,5,romeoandjuliet,1596\nwherefore,5,romeoandjuliet,1596\nprince's,5,romeoandjuliet,1596\nside,5,romeoandjuliet,1596\nmusic,5,romeoandjuliet,1596\nMercutio's,5,romeoandjuliet,1596\ntear,5,romeoandjuliet,1596\npleasure,5,romeoandjuliet,1596\nLaurence's,5,romeoandjuliet,1596\nease,5,romeoandjuliet,1596\ngold,5,romeoandjuliet,1596\nSpeak,5,romeoandjuliet,1596\nSaint,5,romeoandjuliet,1596\nlonger,5,romeoandjuliet,1596\nbeat,5,romeoandjuliet,1596\nhadst,5,romeoandjuliet,1596\nuntimely,5,romeoandjuliet,1596\ngrace,5,romeoandjuliet,1596\nhare,5,romeoandjuliet,1596\nCall,5,romeoandjuliet,1596\nLady,5,romeoandjuliet,1596\njoyful,5,romeoandjuliet,1596\nexcuse,5,romeoandjuliet,1596\nform,5,romeoandjuliet,1596\nask,5,romeoandjuliet,1596\npoint,5,romeoandjuliet,1596\nrough,5,romeoandjuliet,1596\nchange,5,romeoandjuliet,1596\nlead,5,romeoandjuliet,1596\nthings,5,romeoandjuliet,1596\nwritten,5,romeoandjuliet,1596\nquickly,5,romeoandjuliet,1596\nSee,5,romeoandjuliet,1596\nalready,5,romeoandjuliet,1596\nCould,5,romeoandjuliet,1596\nstate,5,romeoandjuliet,1596\nlet's,5,romeoandjuliet,1596\nquoth,5,romeoandjuliet,1596\nchide,5,romeoandjuliet,1596\nletters,5,romeoandjuliet,1596\nliving,5,romeoandjuliet,1596\nfray,5,romeoandjuliet,1596\nfive,5,romeoandjuliet,1596\nbreak,5,romeoandjuliet,1596\nring,5,romeoandjuliet,1596\nmusicians,5,romeoandjuliet,1596\ndreams,5,romeoandjuliet,1596\nMontagues,5,romeoandjuliet,1596\nconsent,5,romeoandjuliet,1596\nsaint,5,romeoandjuliet,1596\nfoe,5,romeoandjuliet,1596\nSweet,5,romeoandjuliet,1596\nfine,5,romeoandjuliet,1596\nherself,5,romeoandjuliet,1596\nis't,5,romeoandjuliet,1596\nman's,5,romeoandjuliet,1596\nreason,5,romeoandjuliet,1596\nthank,5,romeoandjuliet,1596\nhonest,5,romeoandjuliet,1596\ngives,5,romeoandjuliet,1596\nAnon,5,romeoandjuliet,1596\nsatisfied,5,romeoandjuliet,1596\neither,5,romeoandjuliet,1596\nthus,5,romeoandjuliet,1596\nreturn,5,romeoandjuliet,1596\nbade,5,romeoandjuliet,1596\nTwo,5,romeoandjuliet,1596\nMay,5,romeoandjuliet,1596\nstrange,5,romeoandjuliet,1596\nsimple,5,romeoandjuliet,1596\nlaid,5,romeoandjuliet,1596\ndog,5,romeoandjuliet,1596\nasleep,5,romeoandjuliet,1596\nDid,5,romeoandjuliet,1596\ndare,5,romeoandjuliet,1596\nslew,5,romeoandjuliet,1596\nmight,5,romeoandjuliet,1596\ndew,5,romeoandjuliet,1596\npower,5,romeoandjuliet,1596\nshape,5,romeoandjuliet,1596\ntook,6,romeoandjuliet,1596\ncords,6,romeoandjuliet,1596\nStay,6,romeoandjuliet,1596\nwhile,6,romeoandjuliet,1596\nyonder,6,romeoandjuliet,1596\ncheeks,6,romeoandjuliet,1596\nthumb,6,romeoandjuliet,1596\nstrength,6,romeoandjuliet,1596\njest,6,romeoandjuliet,1596\ncheek,6,romeoandjuliet,1596\nnoise,6,romeoandjuliet,1596\nsit,6,romeoandjuliet,1596\nAside,6,romeoandjuliet,1596\nThese,6,romeoandjuliet,1596\nfight,6,romeoandjuliet,1596\nOur,6,romeoandjuliet,1596\nenvious,6,romeoandjuliet,1596\nwish,6,romeoandjuliet,1596\nmurder,6,romeoandjuliet,1596\nmatter,6,romeoandjuliet,1596\nwast,6,romeoandjuliet,1596\nspoke,6,romeoandjuliet,1596\nstir,6,romeoandjuliet,1596\nitself,6,romeoandjuliet,1596\nflowers,6,romeoandjuliet,1596\nprove,6,romeoandjuliet,1596\nheads,6,romeoandjuliet,1596\nexile,6,romeoandjuliet,1596\nLike,6,romeoandjuliet,1596\ndeep,6,romeoandjuliet,1596\nbreast,6,romeoandjuliet,1596\nHere's,6,romeoandjuliet,1596\ndoom,6,romeoandjuliet,1596\nfeast,6,romeoandjuliet,1596\nage,6,romeoandjuliet,1596\nless,6,romeoandjuliet,1596\nspeaks,6,romeoandjuliet,1596\nfool,6,romeoandjuliet,1596\ngirl,6,romeoandjuliet,1596\nmonument,6,romeoandjuliet,1596\nhaving,6,romeoandjuliet,1596\nfar,6,romeoandjuliet,1596\nthrough,6,romeoandjuliet,1596\nnay,6,romeoandjuliet,1596\n'Ay,6,romeoandjuliet,1596\nFrom,6,romeoandjuliet,1596\nyouth,6,romeoandjuliet,1596\nawhile,6,romeoandjuliet,1596\nLook,6,romeoandjuliet,1596\ndidst,6,romeoandjuliet,1596\nclose,6,romeoandjuliet,1596\nbanishment,6,romeoandjuliet,1596\nfetch,6,romeoandjuliet,1596\nfound,6,romeoandjuliet,1596\nserve,6,romeoandjuliet,1596\nCapulets,6,romeoandjuliet,1596\nthree,6,romeoandjuliet,1596\ncompany,6,romeoandjuliet,1596\ntale,6,romeoandjuliet,1596\nwild,6,romeoandjuliet,1596\nhold,6,romeoandjuliet,1596\nhome,6,romeoandjuliet,1596\nunto,6,romeoandjuliet,1596\nfourteen,6,romeoandjuliet,1596\nseen,6,romeoandjuliet,1596\nwhom,6,romeoandjuliet,1596\ncold,6,romeoandjuliet,1596\nremember,6,romeoandjuliet,1596\nstreet,6,romeoandjuliet,1596\nlark,6,romeoandjuliet,1596\nhurt,6,romeoandjuliet,1596\nfollow,6,romeoandjuliet,1596\nkind,6,romeoandjuliet,1596\nBenvolio,6,romeoandjuliet,1596\nden,6,romeoandjuliet,1596\nenemy,6,romeoandjuliet,1596\nJOHN,6,romeoandjuliet,1596\nV,7,romeoandjuliet,1596\nmistress,7,romeoandjuliet,1596\nwrit,7,romeoandjuliet,1596\ndagger,7,romeoandjuliet,1596\nPage,7,romeoandjuliet,1596\nwords,7,romeoandjuliet,1596\ncorse,7,romeoandjuliet,1596\nshe's,7,romeoandjuliet,1596\nenough,7,romeoandjuliet,1596\nchurch,7,romeoandjuliet,1596\nlooks,7,romeoandjuliet,1596\nvile,7,romeoandjuliet,1596\nturn,7,romeoandjuliet,1596\nApothecary,7,romeoandjuliet,1596\nkill'd,7,romeoandjuliet,1596\nfearful,7,romeoandjuliet,1596\nfeel,7,romeoandjuliet,1596\nflesh,7,romeoandjuliet,1596\nWhat's,7,romeoandjuliet,1596\nmeasure,7,romeoandjuliet,1596\nAt,7,romeoandjuliet,1596\nHis,7,romeoandjuliet,1596\ncanst,7,romeoandjuliet,1596\nsince,7,romeoandjuliet,1596\nhit,7,romeoandjuliet,1596\npast,7,romeoandjuliet,1596\nRe,7,romeoandjuliet,1596\norchard,7,romeoandjuliet,1596\nair,7,romeoandjuliet,1596\nhouses,7,romeoandjuliet,1596\nthyself,7,romeoandjuliet,1596\nYet,7,romeoandjuliet,1596\nmen's,7,romeoandjuliet,1596\nhot,7,romeoandjuliet,1596\nMore,7,romeoandjuliet,1596\narm,7,romeoandjuliet,1596\nbosom,7,romeoandjuliet,1596\nmoved,7,romeoandjuliet,1596\nindeed,7,romeoandjuliet,1596\ntender,7,romeoandjuliet,1596\nAlack,7,romeoandjuliet,1596\nJuliet's,7,romeoandjuliet,1596\nstars,7,romeoandjuliet,1596\nbloody,7,romeoandjuliet,1596\nAll,7,romeoandjuliet,1596\nmark,7,romeoandjuliet,1596\nbecause,7,romeoandjuliet,1596\nfire,7,romeoandjuliet,1596\nmaids,7,romeoandjuliet,1596\nnear,7,romeoandjuliet,1596\nloving,7,romeoandjuliet,1596\nbeseech,7,romeoandjuliet,1596\nnext,7,romeoandjuliet,1596\nTill,7,romeoandjuliet,1596\nfortune,7,romeoandjuliet,1596\nshows,7,romeoandjuliet,1596\nthousand,7,romeoandjuliet,1596\ngentlemen,7,romeoandjuliet,1596\nshort,7,romeoandjuliet,1596\nwe'll,7,romeoandjuliet,1596\nABRAHAM,7,romeoandjuliet,1596\near,7,romeoandjuliet,1596\nDeath,7,romeoandjuliet,1596\ndark,7,romeoandjuliet,1596\nsudden,7,romeoandjuliet,1596\nbehold,7,romeoandjuliet,1596\nToo,7,romeoandjuliet,1596\nme,263,romeoandjuliet,1596\nmeet,8,romeoandjuliet,1596\ntimes,8,romeoandjuliet,1596\nbones,8,romeoandjuliet,1596\nthought,8,romeoandjuliet,1596\nchurchyard,8,romeoandjuliet,1596\ndraw,8,romeoandjuliet,1596\nfull,8,romeoandjuliet,1596\nbound,8,romeoandjuliet,1596\nmerry,8,romeoandjuliet,1596\nsea,8,romeoandjuliet,1596\ncounsel,8,romeoandjuliet,1596\nsword,8,romeoandjuliet,1596\nancient,8,romeoandjuliet,1596\ngoose,8,romeoandjuliet,1596\nbook,8,romeoandjuliet,1596\nsick,8,romeoandjuliet,1596\nmorning,8,romeoandjuliet,1596\nmeans,8,romeoandjuliet,1596\nplay,8,romeoandjuliet,1596\nwoful,8,romeoandjuliet,1596\nlady's,8,romeoandjuliet,1596\nmove,8,romeoandjuliet,1596\nnoble,8,romeoandjuliet,1596\nhide,8,romeoandjuliet,1596\nLord,8,romeoandjuliet,1596\nhigh,8,romeoandjuliet,1596\nmind,8,romeoandjuliet,1596\nCounty,8,romeoandjuliet,1596\nsorrow,8,romeoandjuliet,1596\nwoes,8,romeoandjuliet,1596\nbite,8,romeoandjuliet,1596\npardon,8,romeoandjuliet,1596\nhours,8,romeoandjuliet,1596\nclouds,8,romeoandjuliet,1596\ncounty,8,romeoandjuliet,1596\nlast,8,romeoandjuliet,1596\nsilver,8,romeoandjuliet,1596\nTake,8,romeoandjuliet,1596\nanswer,9,romeoandjuliet,1596\no'er,9,romeoandjuliet,1596\ndays,9,romeoandjuliet,1596\nsight,9,romeoandjuliet,1596\ncase,9,romeoandjuliet,1596\ncame,9,romeoandjuliet,1596\nNor,9,romeoandjuliet,1596\nbody,9,romeoandjuliet,1596\nagainst,9,romeoandjuliet,1596\nTybalt's,9,romeoandjuliet,1596\nothers,9,romeoandjuliet,1596\nmean,9,romeoandjuliet,1596\nboy,9,romeoandjuliet,1596\nOn,9,romeoandjuliet,1596\nWithin,9,romeoandjuliet,1596\nIV,9,romeoandjuliet,1596\nweep,9,romeoandjuliet,1596\nfarewell,9,romeoandjuliet,1596\nvault,9,romeoandjuliet,1596\nforget,9,romeoandjuliet,1596\nshow,9,romeoandjuliet,1596\nthough,9,romeoandjuliet,1596\ninto,9,romeoandjuliet,1596\nDoth,9,romeoandjuliet,1596\nPeter,9,romeoandjuliet,1596\nend,9,romeoandjuliet,1596\nneed,9,romeoandjuliet,1596\nonce,9,romeoandjuliet,1596\nonly,9,romeoandjuliet,1596\nway,9,romeoandjuliet,1596\neven,9,romeoandjuliet,1596\nne'er,9,romeoandjuliet,1596\ngreat,9,romeoandjuliet,1596\nRosaline,9,romeoandjuliet,1596\nswear,9,romeoandjuliet,1596\nfirst,9,romeoandjuliet,1596\ntorch,9,romeoandjuliet,1596\nflower,9,romeoandjuliet,1596\ncalls,10,romeoandjuliet,1596\nsaw,10,romeoandjuliet,1596\nblack,10,romeoandjuliet,1596\nwall,10,romeoandjuliet,1596\nset,10,romeoandjuliet,1596\nThere,10,romeoandjuliet,1596\nbring,10,romeoandjuliet,1596\nelse,10,romeoandjuliet,1596\nHold,10,romeoandjuliet,1596\nIII,10,romeoandjuliet,1596\nquarrel,10,romeoandjuliet,1596\nBe,10,romeoandjuliet,1596\ndesperate,10,romeoandjuliet,1596\nHer,10,romeoandjuliet,1596\nenter,10,romeoandjuliet,1596\nears,10,romeoandjuliet,1596\ntongue,10,romeoandjuliet,1596\ndone,10,romeoandjuliet,1596\no',10,romeoandjuliet,1596\ntwenty,10,romeoandjuliet,1596\npale,10,romeoandjuliet,1596\nfoot,10,romeoandjuliet,1596\nye,10,romeoandjuliet,1596\nThan,10,romeoandjuliet,1596\nwatch,10,romeoandjuliet,1596\nHave,10,romeoandjuliet,1596\nmaid,10,romeoandjuliet,1596\ndream,10,romeoandjuliet,1596\nget,10,romeoandjuliet,1596\noff,10,romeoandjuliet,1596\nsays,10,romeoandjuliet,1596\nheavy,10,romeoandjuliet,1596\nground,10,romeoandjuliet,1596\nrich,10,romeoandjuliet,1596\ncomfort,10,romeoandjuliet,1596\nkiss,10,romeoandjuliet,1596\nmaster,10,romeoandjuliet,1596\nsound,10,romeoandjuliet,1596\nsleep,10,romeoandjuliet,1596\nstraight,10,romeoandjuliet,1596\nMarry,10,romeoandjuliet,1596\nbeauty,10,romeoandjuliet,1596\nshalt,10,romeoandjuliet,1596\nkill,10,romeoandjuliet,1596\nhimself,10,romeoandjuliet,1596\ntomb,11,romeoandjuliet,1596\nWill,11,romeoandjuliet,1596\nevery,11,romeoandjuliet,1596\nanother,11,romeoandjuliet,1596\nwarrant,11,romeoandjuliet,1596\nbetter,11,romeoandjuliet,1596\nWatchman,11,romeoandjuliet,1596\nabout,11,romeoandjuliet,1596\nOne,11,romeoandjuliet,1596\nhe's,11,romeoandjuliet,1596\nchamber,11,romeoandjuliet,1596\nwhose,11,romeoandjuliet,1596\nbear,11,romeoandjuliet,1596\nHath,11,romeoandjuliet,1596\nCapulet's,11,romeoandjuliet,1596\nTherefore,11,romeoandjuliet,1596\nFriar,11,romeoandjuliet,1596\nmany,11,romeoandjuliet,1596\nnor,11,romeoandjuliet,1596\ntalk,11,romeoandjuliet,1596\nlay,11,romeoandjuliet,1596\nLet,11,romeoandjuliet,1596\nsend,11,romeoandjuliet,1596\nmadam,11,romeoandjuliet,1596\nmad,11,romeoandjuliet,1596\nmakes,11,romeoandjuliet,1596\nmarriage,11,romeoandjuliet,1596\nlate,11,romeoandjuliet,1596\nwithout,11,romeoandjuliet,1596\nshame,11,romeoandjuliet,1596\nrun,12,romeoandjuliet,1596\nyears,12,romeoandjuliet,1596\nsin,12,romeoandjuliet,1596\nlove's,12,romeoandjuliet,1596\nFarewell,12,romeoandjuliet,1596\nwithin,12,romeoandjuliet,1596\ntherefore,12,romeoandjuliet,1596\nII,12,romeoandjuliet,1596\nbest,12,romeoandjuliet,1596\ngrief,12,romeoandjuliet,1596\ndost,12,romeoandjuliet,1596\nbanished,12,romeoandjuliet,1596\nho,12,romeoandjuliet,1596\nforth,12,romeoandjuliet,1596\nlittle,12,romeoandjuliet,1596\nYour,12,romeoandjuliet,1596\nMadam,12,romeoandjuliet,1596\ngentle,12,romeoandjuliet,1596\nSome,12,romeoandjuliet,1596\nThey,12,romeoandjuliet,1596\ncould,12,romeoandjuliet,1596\nwit,12,romeoandjuliet,1596\nhappy,12,romeoandjuliet,1596\nmarry,12,romeoandjuliet,1596\npoison,12,romeoandjuliet,1596\never,12,romeoandjuliet,1596\nlaw,12,romeoandjuliet,1596\nhither,12,romeoandjuliet,1596\nleave,12,romeoandjuliet,1596\nbeing,12,romeoandjuliet,1596\nsoon,13,romeoandjuliet,1596\nGive,13,romeoandjuliet,1596\nfear,13,romeoandjuliet,1596\nabove,13,romeoandjuliet,1596\nhands,13,romeoandjuliet,1596\nmost,13,romeoandjuliet,1596\nplace,13,romeoandjuliet,1596\nhate,13,romeoandjuliet,1596\nRomeo's,13,romeoandjuliet,1596\nBeing,13,romeoandjuliet,1596\nthine,13,romeoandjuliet,1596\nstill,13,romeoandjuliet,1596\nkinsman,13,romeoandjuliet,1596\nletter,13,romeoandjuliet,1596\nWhen,13,romeoandjuliet,1596\nNay,14,romeoandjuliet,1596\nhaste,14,romeoandjuliet,1596\njoy,14,romeoandjuliet,1596\nThursday,14,romeoandjuliet,1596\nsoul,14,romeoandjuliet,1596\nNot,14,romeoandjuliet,1596\nnothing,14,romeoandjuliet,1596\ndaughter,14,romeoandjuliet,1596\nrest,14,romeoandjuliet,1596\nsaid,14,romeoandjuliet,1596\nbreath,14,romeoandjuliet,1596\nhusband,14,romeoandjuliet,1596\nMantua,14,romeoandjuliet,1596\nfaith,14,romeoandjuliet,1596\nnone,14,romeoandjuliet,1596\nVerona,14,romeoandjuliet,1596\nmyself,14,romeoandjuliet,1596\nwoe,14,romeoandjuliet,1596\nsame,14,romeoandjuliet,1596\n'Tis,14,romeoandjuliet,1596\nnews,14,romeoandjuliet,1596\nfall,14,romeoandjuliet,1596\nMercutio,14,romeoandjuliet,1596\ngentleman,14,romeoandjuliet,1596\nlives,14,romeoandjuliet,1596\nuse,14,romeoandjuliet,1596\nthat,270,romeoandjuliet,1596\npeace,15,romeoandjuliet,1596\nhelp,15,romeoandjuliet,1596\npray,15,romeoandjuliet,1596\nhead,15,romeoandjuliet,1596\nmother,15,romeoandjuliet,1596\nsun,15,romeoandjuliet,1596\nHere,15,romeoandjuliet,1596\nfriend,15,romeoandjuliet,1596\nDo,15,romeoandjuliet,1596\nAh,15,romeoandjuliet,1596\nput,15,romeoandjuliet,1596\nnew,15,romeoandjuliet,1596\nere,15,romeoandjuliet,1596\nchild,15,romeoandjuliet,1596\nShall,15,romeoandjuliet,1596\ntill,15,romeoandjuliet,1596\nalone,15,romeoandjuliet,1596\npoor,15,romeoandjuliet,1596\nyou,271,romeoandjuliet,1596\nvillain,16,romeoandjuliet,1596\nearly,16,romeoandjuliet,1596\nAn,16,romeoandjuliet,1596\nbid,16,romeoandjuliet,1596\nthose,16,romeoandjuliet,1596\nill,16,romeoandjuliet,1596\nkeep,16,romeoandjuliet,1596\nprince,16,romeoandjuliet,1596\nwhy,16,romeoandjuliet,1596\nfriar,16,romeoandjuliet,1596\nlies,17,romeoandjuliet,1596\nworld,17,romeoandjuliet,1596\nWho,17,romeoandjuliet,1596\nhad,17,romeoandjuliet,1596\nnever,17,romeoandjuliet,1596\nWe,17,romeoandjuliet,1596\nlong,17,romeoandjuliet,1596\nSecond,17,romeoandjuliet,1596\ncousin,17,romeoandjuliet,1596\nMusician,17,romeoandjuliet,1596\nslain,17,romeoandjuliet,1596\ngrave,17,romeoandjuliet,1596\nown,17,romeoandjuliet,1596\nhour,17,romeoandjuliet,1596\nlips,17,romeoandjuliet,1596\nlive,17,romeoandjuliet,1596\ncell,17,romeoandjuliet,1596\nThy,17,romeoandjuliet,1596\ncall,18,romeoandjuliet,1596\nBALTHASAR,18,romeoandjuliet,1596\nson,18,romeoandjuliet,1596\nPETER,18,romeoandjuliet,1596\nblood,18,romeoandjuliet,1596\nGood,18,romeoandjuliet,1596\neye,18,romeoandjuliet,1596\nwho,18,romeoandjuliet,1596\nthing,18,romeoandjuliet,1596\nGREGORY,18,romeoandjuliet,1596\nwife,18,romeoandjuliet,1596\ntwo,18,romeoandjuliet,1596\nother,18,romeoandjuliet,1596\naway,19,romeoandjuliet,1596\nHe,19,romeoandjuliet,1596\ndown,19,romeoandjuliet,1596\nearth,19,romeoandjuliet,1596\nShe,19,romeoandjuliet,1596\nmarried,19,romeoandjuliet,1596\nholy,19,romeoandjuliet,1596\nPRINCE,19,romeoandjuliet,1596\ntears,20,romeoandjuliet,1596\nbeen,20,romeoandjuliet,1596\nany,20,romeoandjuliet,1596\nYou,20,romeoandjuliet,1596\nbefore,20,romeoandjuliet,1596\nthink,20,romeoandjuliet,1596\nWell,20,romeoandjuliet,1596\nmen,20,romeoandjuliet,1596\ncannot,20,romeoandjuliet,1596\nlife,21,romeoandjuliet,1596\nhear,21,romeoandjuliet,1596\nmade,21,romeoandjuliet,1596\nyoung,21,romeoandjuliet,1596\nmorrow,21,romeoandjuliet,1596\nfind,21,romeoandjuliet,1596\nfather,21,romeoandjuliet,1596\nWhy,22,romeoandjuliet,1596\nboth,22,romeoandjuliet,1596\nAy,22,romeoandjuliet,1596\nstay,22,romeoandjuliet,1596\nMONTAGUE,22,romeoandjuliet,1596\npart,22,romeoandjuliet,1596\nSAMPSON,22,romeoandjuliet,1596\nCapulet,22,romeoandjuliet,1596\nlie,22,romeoandjuliet,1596\nlord,23,romeoandjuliet,1596\nTYBALT,23,romeoandjuliet,1596\nspeak,23,romeoandjuliet,1596\nstand,23,romeoandjuliet,1596\nface,23,romeoandjuliet,1596\ndie,23,romeoandjuliet,1596\nNow,24,romeoandjuliet,1596\nWith,24,romeoandjuliet,1596\nhence,24,romeoandjuliet,1596\nwhere,24,romeoandjuliet,1596\nThen,24,romeoandjuliet,1596\nMontague,25,romeoandjuliet,1596\nname,25,romeoandjuliet,1596\nNo,25,romeoandjuliet,1596\nIf,25,romeoandjuliet,1596\nSo,25,romeoandjuliet,1596\nlook,25,romeoandjuliet,1596\nhand,25,romeoandjuliet,1596\nhast,25,romeoandjuliet,1596\nACT,25,romeoandjuliet,1596\nvery,25,romeoandjuliet,1596\nwilt,25,romeoandjuliet,1596\nParis,25,romeoandjuliet,1596\nSCENE,25,romeoandjuliet,1596\nBy,26,romeoandjuliet,1596\nGo,26,romeoandjuliet,1596\n'tis,26,romeoandjuliet,1596\ncomes,26,romeoandjuliet,1596\neyes,26,romeoandjuliet,1596\ntrue,26,romeoandjuliet,1596\nheaven,27,romeoandjuliet,1596\ndear,27,romeoandjuliet,1596\nHow,27,romeoandjuliet,1596\nagain,27,romeoandjuliet,1596\nAND,27,romeoandjuliet,1596\nheart,27,romeoandjuliet,1596\nold,27,romeoandjuliet,1596\nback,27,romeoandjuliet,1596\nlight,28,romeoandjuliet,1596\nOf,28,romeoandjuliet,1596\nbed,28,romeoandjuliet,1596\nWhich,28,romeoandjuliet,1596\nFirst,28,romeoandjuliet,1596\nmine,28,romeoandjuliet,1596\nword,28,romeoandjuliet,1596\nWhere,28,romeoandjuliet,1596\nOr,29,romeoandjuliet,1596\nGod,29,romeoandjuliet,1596\nServant,30,romeoandjuliet,1596\nExeunt,30,romeoandjuliet,1596\nus,30,romeoandjuliet,1596\nhouse,30,romeoandjuliet,1596\nsee,31,romeoandjuliet,1596\nhow,31,romeoandjuliet,1596\nsweet,31,romeoandjuliet,1596\nExit,31,romeoandjuliet,1596\nIt,32,romeoandjuliet,1596\nnurse,32,romeoandjuliet,1596\nPARIS,33,romeoandjuliet,1596\nAs,33,romeoandjuliet,1596\nIn,33,romeoandjuliet,1596\ngone,33,romeoandjuliet,1596\ntime,33,romeoandjuliet,1596\ntake,33,romeoandjuliet,1596\nwhich,34,romeoandjuliet,1596\ngive,34,romeoandjuliet,1596\nwere,34,romeoandjuliet,1596\nlet,34,romeoandjuliet,1596\nlike,35,romeoandjuliet,1596\nknow,35,romeoandjuliet,1596\ndid,35,romeoandjuliet,1596\nin,291,romeoandjuliet,1596\nmuch,36,romeoandjuliet,1596\nCome,36,romeoandjuliet,1596\ncan,36,romeoandjuliet,1596\nThis,36,romeoandjuliet,1596\nthan,37,romeoandjuliet,1596\nthese,37,romeoandjuliet,1596\nmake,37,romeoandjuliet,1596\nupon,38,romeoandjuliet,1596\nmust,38,romeoandjuliet,1596\nIs,38,romeoandjuliet,1596\ndoth,38,romeoandjuliet,1596\nThou,38,romeoandjuliet,1596\nor,39,romeoandjuliet,1596\nwhen,39,romeoandjuliet,1596\nlady,39,romeoandjuliet,1596\nyet,40,romeoandjuliet,1596\ntell,41,romeoandjuliet,1596\nJuliet,41,romeoandjuliet,1596\nsuch,42,romeoandjuliet,1596\nMy,42,romeoandjuliet,1596\nmay,42,romeoandjuliet,1596\nthem,43,romeoandjuliet,1596\nfair,43,romeoandjuliet,1596\nsome,44,romeoandjuliet,1596\nwas,44,romeoandjuliet,1596\nwell,44,romeoandjuliet,1596\nthey,45,romeoandjuliet,1596\nTybalt,45,romeoandjuliet,1596\ntheir,46,romeoandjuliet,1596\nshould,46,romeoandjuliet,1596\ndead,47,romeoandjuliet,1596\n',48,romeoandjuliet,1596\nout,48,romeoandjuliet,1596\none,48,romeoandjuliet,1596\nwe,49,romeoandjuliet,1596\nsay,50,romeoandjuliet,1596\ngo,50,romeoandjuliet,1596\nart,50,romeoandjuliet,1596\ntoo,50,romeoandjuliet,1596\nis,307,romeoandjuliet,1596\nhath,52,romeoandjuliet,1596\nday,52,romeoandjuliet,1596\nwould,53,romeoandjuliet,1596\nthere,54,romeoandjuliet,1596\nour,54,romeoandjuliet,1596\nsir,55,romeoandjuliet,1596\nup,56,romeoandjuliet,1596\nam,57,romeoandjuliet,1596\nif,57,romeoandjuliet,1596\nFor,58,romeoandjuliet,1596\nnow,58,romeoandjuliet,1596\nmy,314,romeoandjuliet,1596\nthen,59,romeoandjuliet,1596\nmore,61,romeoandjuliet,1596\ncome,61,romeoandjuliet,1596\nA,63,romeoandjuliet,1596\nat,63,romeoandjuliet,1596\ndeath,64,romeoandjuliet,1596\nan,64,romeoandjuliet,1596\nLADY,64,romeoandjuliet,1596\nhere,65,romeoandjuliet,1596\ngood,65,romeoandjuliet,1596\nare,65,romeoandjuliet,1596\nI,577,romeoandjuliet,1596\nLAURENCE,66,romeoandjuliet,1596\nman,67,romeoandjuliet,1596\non,68,romeoandjuliet,1596\nMERCUTIO,70,romeoandjuliet,1596\nThe,70,romeoandjuliet,1596\nEnter,71,romeoandjuliet,1596\nI'll,71,romeoandjuliet,1596\nFRIAR,72,romeoandjuliet,1596\ndo,74,romeoandjuliet,1596\nThat,74,romeoandjuliet,1596\nBut,75,romeoandjuliet,1596\nBENVOLIO,75,romeoandjuliet,1596\nno,77,romeoandjuliet,1596\nfrom,80,romeoandjuliet,1596\nWhat,80,romeoandjuliet,1596\nnight,83,romeoandjuliet,1596\nwhat,84,romeoandjuliet,1596\nTo,87,romeoandjuliet,1596\nby,88,romeoandjuliet,1596\nyour,90,romeoandjuliet,1596\nall,90,romeoandjuliet,1596\nshall,95,romeoandjuliet,1596\nshe,96,romeoandjuliet,1596\nhim,97,romeoandjuliet,1596\nthe,614,romeoandjuliet,1596\nhe,104,romeoandjuliet,1596\nbut,108,romeoandjuliet,1596\nof,367,romeoandjuliet,1596\nNurse,116,romeoandjuliet,1596\nhave,117,romeoandjuliet,1596\nRomeo,117,romeoandjuliet,1596\nso,120,romeoandjuliet,1596\nCAPULET,121,romeoandjuliet,1596\nas,123,romeoandjuliet,1596\nhis,126,romeoandjuliet,1596\nlove,134,romeoandjuliet,1596\nwill,136,romeoandjuliet,1596\nthee,138,romeoandjuliet,1596\nher,142,romeoandjuliet,1596\nO,149,romeoandjuliet,1596\nthy,150,romeoandjuliet,1596\na,407,romeoandjuliet,1596\nJULIET,162,romeoandjuliet,1596\nfor,166,romeoandjuliet,1596\nthis,181,romeoandjuliet,1596\nit,194,romeoandjuliet,1596\nbe,200,romeoandjuliet,1596\nROMEO,205,romeoandjuliet,1596\nwith,228,romeoandjuliet,1596\nto,486,romeoandjuliet,1596\nAnd,232,romeoandjuliet,1596\nand,490,romeoandjuliet,1596\nthou,239,romeoandjuliet,1596\nnot,243,romeoandjuliet,1596\nattended,1,venusandadonis,1609\ntreason,1,venusandadonis,1609\nseaman,1,venusandadonis,1609\nliveries,1,venusandadonis,1609\ncleaves,1,venusandadonis,1609\nceased,1,venusandadonis,1609\n'You,1,venusandadonis,1609\nPlanting,1,venusandadonis,1609\nbanquet,1,venusandadonis,1609\nundone,1,venusandadonis,1609\nregard,1,venusandadonis,1609\ntheirs,1,venusandadonis,1609\nmeet,1,venusandadonis,1609\no'er,1,venusandadonis,1609\ndigs,1,venusandadonis,1609\nuncontrolled,1,venusandadonis,1609\nunwelcome,1,venusandadonis,1609\ngrinning,1,venusandadonis,1609\nEcho,1,venusandadonis,1609\ntroubles,1,venusandadonis,1609\nPursue,1,venusandadonis,1609\nTires,1,venusandadonis,1609\nviewing,1,venusandadonis,1609\nchides,1,venusandadonis,1609\narray,1,venusandadonis,1609\nclouded,1,venusandadonis,1609\ndishevell'd,1,venusandadonis,1609\ntomb,1,venusandadonis,1609\nhorns,1,venusandadonis,1609\ntruce,1,venusandadonis,1609\nimaginary,1,venusandadonis,1609\nnet,1,venusandadonis,1609\nrelief,1,venusandadonis,1609\nfantasy,1,venusandadonis,1609\nadvised,1,venusandadonis,1609\nhiss,1,venusandadonis,1609\nwooing,1,venusandadonis,1609\ntooth'd,1,venusandadonis,1609\nElysium,1,venusandadonis,1609\nTantalus',1,venusandadonis,1609\nStands,1,venusandadonis,1609\nstillitory,1,venusandadonis,1609\nfoundation,1,venusandadonis,1609\nmeed,1,venusandadonis,1609\nguise,1,venusandadonis,1609\n'and,1,venusandadonis,1609\nsnuffing,1,venusandadonis,1609\nridiculous,1,venusandadonis,1609\nmyrtle,1,venusandadonis,1609\npits,1,venusandadonis,1609\ngardens,1,venusandadonis,1609\nexcel,1,venusandadonis,1609\nenjoy,1,venusandadonis,1609\njoin,1,venusandadonis,1609\ntasted,1,venusandadonis,1609\npith,1,venusandadonis,1609\nArt,1,venusandadonis,1609\nstrongest,1,venusandadonis,1609\nhowling,1,venusandadonis,1609\nbeams,1,venusandadonis,1609\ncrops,1,venusandadonis,1609\nguest,1,venusandadonis,1609\npestilence,1,venusandadonis,1609\nbullet,1,venusandadonis,1609\nmarketh,1,venusandadonis,1609\nlips',1,venusandadonis,1609\ntreasures,1,venusandadonis,1609\nTells,1,venusandadonis,1609\nprays,1,venusandadonis,1609\nmover,1,venusandadonis,1609\nfranticly,1,venusandadonis,1609\nroot,1,venusandadonis,1609\ndrop,1,venusandadonis,1609\ninfant,1,venusandadonis,1609\ntook,1,venusandadonis,1609\nprecedent,1,venusandadonis,1609\nImperious,1,venusandadonis,1609\nrider's,1,venusandadonis,1609\ncompact,1,venusandadonis,1609\nanthem,1,venusandadonis,1609\nswelleth,1,venusandadonis,1609\njar,1,venusandadonis,1609\nShould,1,venusandadonis,1609\nplaster,1,venusandadonis,1609\nfathers,1,venusandadonis,1609\nBetween,1,venusandadonis,1609\ntops,1,venusandadonis,1609\nyielding,1,venusandadonis,1609\ndireful,1,venusandadonis,1609\nwatch,1,venusandadonis,1609\nLeaves,1,venusandadonis,1609\nleisure,1,venusandadonis,1609\nheir,1,venusandadonis,1609\nfan,1,venusandadonis,1609\nmistress,1,venusandadonis,1609\nComes,1,venusandadonis,1609\nspeech,1,venusandadonis,1609\ncontented,1,venusandadonis,1609\noften,1,venusandadonis,1609\ngroin,1,venusandadonis,1609\nwears,1,venusandadonis,1609\nleap,1,venusandadonis,1609\nbereaves,1,venusandadonis,1609\nwrit,1,venusandadonis,1609\nOpen'd,1,venusandadonis,1609\n'expected,1,venusandadonis,1609\ntried,1,venusandadonis,1609\nfrozen,1,venusandadonis,1609\ndiscord,1,venusandadonis,1609\ndisturb,1,venusandadonis,1609\ncondemn'd,1,venusandadonis,1609\nashy,1,venusandadonis,1609\n'behold,1,venusandadonis,1609\nsmother'd,1,venusandadonis,1609\nspear's,1,venusandadonis,1609\nespy,1,venusandadonis,1609\nhinder,1,venusandadonis,1609\nwhiteness,1,venusandadonis,1609\nkeeps,1,venusandadonis,1609\nmiretur,1,venusandadonis,1609\nwoman's,1,venusandadonis,1609\nglories,1,venusandadonis,1609\nshapeless,1,venusandadonis,1609\n'Bid,1,venusandadonis,1609\nbreeds,1,venusandadonis,1609\ngray,1,venusandadonis,1609\nburden'd,1,venusandadonis,1609\nmoved,1,venusandadonis,1609\nLoseth,1,venusandadonis,1609\nhonours,1,venusandadonis,1609\nran,1,venusandadonis,1609\nEVEN,1,venusandadonis,1609\nbedchamber,1,venusandadonis,1609\nbrows,1,venusandadonis,1609\nventure,1,venusandadonis,1609\nswallowing,1,venusandadonis,1609\nlower,1,venusandadonis,1609\nrigour,1,venusandadonis,1609\nrock,1,venusandadonis,1609\nlisteth,1,venusandadonis,1609\nglorifies,1,venusandadonis,1609\n'Thus,1,venusandadonis,1609\nrank,1,venusandadonis,1609\nAgainst,1,venusandadonis,1609\nlongs,1,venusandadonis,1609\nasks,1,venusandadonis,1609\ncarries,1,venusandadonis,1609\nTen,1,venusandadonis,1609\ndint,1,venusandadonis,1609\nalight,1,venusandadonis,1609\nlabours,1,venusandadonis,1609\n'Nay,1,venusandadonis,1609\nhill,1,venusandadonis,1609\nbreathless,1,venusandadonis,1609\nperplexed,1,venusandadonis,1609\noffended,1,venusandadonis,1609\nresign,1,venusandadonis,1609\nesteems,1,venusandadonis,1609\nalabaster,1,venusandadonis,1609\nHasting,1,venusandadonis,1609\nscent,1,venusandadonis,1609\nmischief,1,venusandadonis,1609\nWill,1,venusandadonis,1609\nmend,1,venusandadonis,1609\nlifeless,1,venusandadonis,1609\nstopp'd,1,venusandadonis,1609\nindeed,1,venusandadonis,1609\nbroad,1,venusandadonis,1609\neasily,1,venusandadonis,1609\nexpress,1,venusandadonis,1609\nhush'd,1,venusandadonis,1609\ntesty,1,venusandadonis,1609\nretires,1,venusandadonis,1609\ndevouring,1,venusandadonis,1609\nrather,1,venusandadonis,1609\npainter,1,venusandadonis,1609\njot,1,venusandadonis,1609\nhelpless,1,venusandadonis,1609\nheld,1,venusandadonis,1609\nsealing,1,venusandadonis,1609\nfangs,1,venusandadonis,1609\n'Gainst,1,venusandadonis,1609\nwailing,1,venusandadonis,1609\nthinks,1,venusandadonis,1609\ndespised,1,venusandadonis,1609\nviolets,1,venusandadonis,1609\nElse,1,venusandadonis,1609\nnose,1,venusandadonis,1609\nswiftly,1,venusandadonis,1609\nadvisedly,1,venusandadonis,1609\nHENRY,1,venusandadonis,1609\nPaying,1,venusandadonis,1609\nMeasure,1,venusandadonis,1609\n'Holla,1,venusandadonis,1609\nseizeth,1,venusandadonis,1609\nexceeds,1,venusandadonis,1609\nsparing,1,venusandadonis,1609\nwakes,1,venusandadonis,1609\nPassion,1,venusandadonis,1609\nTell,1,venusandadonis,1609\npray,1,venusandadonis,1609\nobscure,1,venusandadonis,1609\ndarkness,1,venusandadonis,1609\n'some,1,venusandadonis,1609\ncurvets,1,venusandadonis,1609\nblab,1,venusandadonis,1609\nthorny,1,venusandadonis,1609\nhers,1,venusandadonis,1609\ndiminish'd,1,venusandadonis,1609\ncedar,1,venusandadonis,1609\ncountless,1,venusandadonis,1609\nhips,1,venusandadonis,1609\nShow'd,1,venusandadonis,1609\naptly,1,venusandadonis,1609\ncranks,1,venusandadonis,1609\nprodigal,1,venusandadonis,1609\nherb,1,venusandadonis,1609\nherd,1,venusandadonis,1609\ncoasteth,1,venusandadonis,1609\ndropp'd,1,venusandadonis,1609\nglued,1,venusandadonis,1609\ncoral,1,venusandadonis,1609\ncelestial,1,venusandadonis,1609\nfetlocks,1,venusandadonis,1609\ndisjoin'd,1,venusandadonis,1609\nruffian,1,venusandadonis,1609\ncontenting,1,venusandadonis,1609\nfemales,1,venusandadonis,1609\nimposthumes,1,venusandadonis,1609\ngrin,1,venusandadonis,1609\nprisoner,1,venusandadonis,1609\nspright,1,venusandadonis,1609\nrate,1,venusandadonis,1609\nview'd,1,venusandadonis,1609\nbelow,1,venusandadonis,1609\ndrum,1,venusandadonis,1609\n'Over,1,venusandadonis,1609\ncloy,1,venusandadonis,1609\nireful,1,venusandadonis,1609\nlearn'd,1,venusandadonis,1609\nanswering,1,venusandadonis,1609\nhonourable,1,venusandadonis,1609\nGraze,1,venusandadonis,1609\ninto,1,venusandadonis,1609\ndive,1,venusandadonis,1609\nhearted,1,venusandadonis,1609\ncheering,1,venusandadonis,1609\nlowly,1,venusandadonis,1609\nentertainment,1,venusandadonis,1609\nrash,1,venusandadonis,1609\nbethinking,1,venusandadonis,1609\nnaked,1,venusandadonis,1609\nungrown,1,venusandadonis,1609\nslander,1,venusandadonis,1609\nfeeds,1,venusandadonis,1609\nblunt,1,venusandadonis,1609\ncave,1,venusandadonis,1609\nalthough,1,venusandadonis,1609\nframing,1,venusandadonis,1609\nshelter,1,venusandadonis,1609\nhide,1,venusandadonis,1609\nScorning,1,venusandadonis,1609\nyear,1,venusandadonis,1609\nwithal,1,venusandadonis,1609\nlouring,1,venusandadonis,1609\nchaos,1,venusandadonis,1609\nUncouple,1,venusandadonis,1609\nsnout,1,venusandadonis,1609\nworms,1,venusandadonis,1609\n'As,1,venusandadonis,1609\nbedabbled,1,venusandadonis,1609\nkneels,1,venusandadonis,1609\nhied,1,venusandadonis,1609\nhies,1,venusandadonis,1609\ndecrepit,1,venusandadonis,1609\n'Pity,1,venusandadonis,1609\npatron,1,venusandadonis,1609\nglasses,1,venusandadonis,1609\nleathern,1,venusandadonis,1609\nlively,1,venusandadonis,1609\ndeviseth,1,venusandadonis,1609\nrestrain,1,venusandadonis,1609\nexcuses,1,venusandadonis,1609\nrail'd,1,venusandadonis,1609\nSurfeits,1,venusandadonis,1609\nAffection's,1,venusandadonis,1609\niron,1,venusandadonis,1609\n'By,1,venusandadonis,1609\nstares,1,venusandadonis,1609\n'More,1,venusandadonis,1609\nposterity,1,venusandadonis,1609\nfurnace,1,venusandadonis,1609\nlids,1,venusandadonis,1609\nconsulting,1,venusandadonis,1609\nbridle,1,venusandadonis,1609\nThick,1,venusandadonis,1609\nrelenteth,1,venusandadonis,1609\nborne,1,venusandadonis,1609\nSpurns,1,venusandadonis,1609\nkinder,1,venusandadonis,1609\nyelping,1,venusandadonis,1609\nDanger,1,venusandadonis,1609\nlustily,1,venusandadonis,1609\nthirst,1,venusandadonis,1609\nnymph,1,venusandadonis,1609\nremain,1,venusandadonis,1609\nmount,1,venusandadonis,1609\nthirsty,1,venusandadonis,1609\nsticks,1,venusandadonis,1609\nequally,1,venusandadonis,1609\nHigh,1,venusandadonis,1609\nreflect,1,venusandadonis,1609\nthrall,1,venusandadonis,1609\nministret,1,venusandadonis,1609\nfairy,1,venusandadonis,1609\nTHE,1,venusandadonis,1609\nspringing,1,venusandadonis,1609\nparting,1,venusandadonis,1609\ncurious,1,venusandadonis,1609\nsprings,1,venusandadonis,1609\nSet,1,venusandadonis,1609\npresented,1,venusandadonis,1609\nclamorous,1,venusandadonis,1609\ngoeth,1,venusandadonis,1609\noversway'd,1,venusandadonis,1609\nducks,1,venusandadonis,1609\no'erstraw'd,1,venusandadonis,1609\nyouth,1,venusandadonis,1609\ncool'd,1,venusandadonis,1609\nlightning,1,venusandadonis,1609\ncast,1,venusandadonis,1609\nscowling,1,venusandadonis,1609\nloathsome,1,venusandadonis,1609\nseveral,1,venusandadonis,1609\nunlikely,1,venusandadonis,1609\nrecketh,1,venusandadonis,1609\nearly,1,venusandadonis,1609\nquaking,1,venusandadonis,1609\nimpure,1,venusandadonis,1609\ngarment,1,venusandadonis,1609\nchant,1,venusandadonis,1609\nchild,1,venusandadonis,1609\npursue,1,venusandadonis,1609\noverlook,1,venusandadonis,1609\ntutor,1,venusandadonis,1609\nagrees,1,venusandadonis,1609\nstoops,1,venusandadonis,1609\nensuing,1,venusandadonis,1609\nshrieks,1,venusandadonis,1609\nstirring,1,venusandadonis,1609\nPoor,1,venusandadonis,1609\nplague,1,venusandadonis,1609\nrecures,1,venusandadonis,1609\nbending,1,venusandadonis,1609\nwistly,1,venusandadonis,1609\nconsort,1,venusandadonis,1609\nnuzzling,1,venusandadonis,1609\nsons,1,venusandadonis,1609\npreys,1,venusandadonis,1609\ndevice,1,venusandadonis,1609\nassuaged,1,venusandadonis,1609\nwanderers,1,venusandadonis,1609\nreigns,1,venusandadonis,1609\nother's,1,venusandadonis,1609\ndivination,1,venusandadonis,1609\nmischances,1,venusandadonis,1609\nsad,1,venusandadonis,1609\nspied,1,venusandadonis,1609\nleaves,1,venusandadonis,1609\nkissed,1,venusandadonis,1609\nfeather,1,venusandadonis,1609\nFree,1,venusandadonis,1609\nobscurity,1,venusandadonis,1609\namazes,1,venusandadonis,1609\nstripping,1,venusandadonis,1609\nmilk,1,venusandadonis,1609\ndrive,1,venusandadonis,1609\nmild,1,venusandadonis,1609\npine,1,venusandadonis,1609\nruin'd,1,venusandadonis,1609\ngrove,1,venusandadonis,1609\nLong,1,venusandadonis,1609\ndissentious,1,venusandadonis,1609\nleaning,1,venusandadonis,1609\nrandom,1,venusandadonis,1609\n'In,1,venusandadonis,1609\ndisdain'd,1,venusandadonis,1609\nnon,1,venusandadonis,1609\nsap,1,venusandadonis,1609\nlifts,1,venusandadonis,1609\nsoldiers,1,venusandadonis,1609\n'Is,1,venusandadonis,1609\nvestals,1,venusandadonis,1609\nsat,1,venusandadonis,1609\nstars,1,venusandadonis,1609\nqualities,1,venusandadonis,1609\nresisteth,1,venusandadonis,1609\nclosure,1,venusandadonis,1609\nmightst,1,venusandadonis,1609\nstrict,1,venusandadonis,1609\nshield,1,venusandadonis,1609\ndance,1,venusandadonis,1609\nCool,1,venusandadonis,1609\nreprehends,1,venusandadonis,1609\nventuring,1,venusandadonis,1609\nflinty,1,venusandadonis,1609\nO'erworn,1,venusandadonis,1609\nstream,1,venusandadonis,1609\nspill'd,1,venusandadonis,1609\nGive,1,venusandadonis,1609\npricking,1,venusandadonis,1609\ngrows,1,venusandadonis,1609\nThin,1,venusandadonis,1609\nJove,1,venusandadonis,1609\nfoolish,1,venusandadonis,1609\ncircumstance,1,venusandadonis,1609\nsmother,1,venusandadonis,1609\nfilleth,1,venusandadonis,1609\n'Vouchsafe,1,venusandadonis,1609\nbeauties,1,venusandadonis,1609\nshudder,1,venusandadonis,1609\nAdons,1,venusandadonis,1609\nvent,1,venusandadonis,1609\nconfounds,1,venusandadonis,1609\nprop,1,venusandadonis,1609\nwoven,1,venusandadonis,1609\nquakes,1,venusandadonis,1609\nlimb,1,venusandadonis,1609\nwrought,1,venusandadonis,1609\nblush,1,venusandadonis,1609\nverbal,1,venusandadonis,1609\nbroken,1,venusandadonis,1609\nPerforce,1,venusandadonis,1609\nCome,1,venusandadonis,1609\nchain,1,venusandadonis,1609\nshame's,1,venusandadonis,1609\nassay'd,1,venusandadonis,1609\nEnd,1,venusandadonis,1609\nobdurate,1,venusandadonis,1609\nCould,1,venusandadonis,1609\nSheathed,1,venusandadonis,1609\ntoward,1,venusandadonis,1609\nveils,1,venusandadonis,1609\nrevels,1,venusandadonis,1609\nyearly,1,venusandadonis,1609\ndrew,1,venusandadonis,1609\nmare,1,venusandadonis,1609\nexclaim,1,venusandadonis,1609\nobscures,1,venusandadonis,1609\nyell,1,venusandadonis,1609\nfoil'd,1,venusandadonis,1609\ncabins,1,venusandadonis,1609\nPanting,1,venusandadonis,1609\ngloriously,1,venusandadonis,1609\nextemporally,1,venusandadonis,1609\n'Therefore,1,venusandadonis,1609\ndimple,1,venusandadonis,1609\nexcelling,1,venusandadonis,1609\nrepetition,1,venusandadonis,1609\ndissolve,1,venusandadonis,1609\npetitioners,1,venusandadonis,1609\nblot,1,venusandadonis,1609\nslave,1,venusandadonis,1609\ngross,1,venusandadonis,1609\nissue,1,venusandadonis,1609\nveil,1,venusandadonis,1609\nfrothy,1,venusandadonis,1609\nbecause,1,venusandadonis,1609\nglass,1,venusandadonis,1609\nmaking,1,venusandadonis,1609\nleaden,1,venusandadonis,1609\nflatter,1,venusandadonis,1609\ncongealed,1,venusandadonis,1609\nlikeness,1,venusandadonis,1609\nlaund,1,venusandadonis,1609\ncomplexion,1,venusandadonis,1609\ngates,1,venusandadonis,1609\nnoise,1,venusandadonis,1609\nsurpass,1,venusandadonis,1609\nbeside,1,venusandadonis,1609\ndropping,1,venusandadonis,1609\nshoulder,1,venusandadonis,1609\nstruggles,1,venusandadonis,1609\ndowns,1,venusandadonis,1609\nfume,1,venusandadonis,1609\nneed,1,venusandadonis,1609\nblessed,1,venusandadonis,1609\nfreedom,1,venusandadonis,1609\ncaptive,1,venusandadonis,1609\nfather's,1,venusandadonis,1609\nmissing,1,venusandadonis,1609\nwail,1,venusandadonis,1609\noven,1,venusandadonis,1609\nherdmen,1,venusandadonis,1609\ncomforteth,1,venusandadonis,1609\n'So,1,venusandadonis,1609\nnaught,1,venusandadonis,1609\nsobs,1,venusandadonis,1609\nlaughs,1,venusandadonis,1609\nmoving,1,venusandadonis,1609\nSaw'st,1,venusandadonis,1609\noftentimes,1,venusandadonis,1609\nBud,1,venusandadonis,1609\nborrow'd,1,venusandadonis,1609\nsmoke,1,venusandadonis,1609\n'Dost,1,venusandadonis,1609\n'Grim,1,venusandadonis,1609\nfurther,1,venusandadonis,1609\nmounts,1,venusandadonis,1609\nmarvel,1,venusandadonis,1609\nbepainted,1,venusandadonis,1609\ngashes,1,venusandadonis,1609\nComparing,1,venusandadonis,1609\ndiscovery,1,venusandadonis,1609\nthigh,1,venusandadonis,1609\nocean,1,venusandadonis,1609\nhandling,1,venusandadonis,1609\noil,1,venusandadonis,1609\nsluttish,1,venusandadonis,1609\ntrouble,1,venusandadonis,1609\nbraided,1,venusandadonis,1609\nillumined,1,venusandadonis,1609\nawed,1,venusandadonis,1609\nhereafter,1,venusandadonis,1609\nmidday,1,venusandadonis,1609\nVENUS,1,venusandadonis,1609\nblasted,1,venusandadonis,1609\nPocula,1,venusandadonis,1609\nsheathed,1,venusandadonis,1609\n'Kill,1,venusandadonis,1609\ndisliking,1,venusandadonis,1609\nvapour,1,venusandadonis,1609\nflatly,1,venusandadonis,1609\nsung,1,venusandadonis,1609\nweb,1,venusandadonis,1609\nforage,1,venusandadonis,1609\nfrenzies,1,venusandadonis,1609\nlovers',1,venusandadonis,1609\nimprison'd,1,venusandadonis,1609\nenough,1,venusandadonis,1609\nclose,1,venusandadonis,1609\nstriking,1,venusandadonis,1609\n'On,1,venusandadonis,1609\nreleasing,1,venusandadonis,1609\n'Wonder,1,venusandadonis,1609\nproved,1,venusandadonis,1609\n'Twixt,1,venusandadonis,1609\nlaugh'd,1,venusandadonis,1609\nusurp'd,1,venusandadonis,1609\n'Torches,1,venusandadonis,1609\nfleet,1,venusandadonis,1609\nsaddle,1,venusandadonis,1609\nagainst,1,venusandadonis,1609\nfevers,1,venusandadonis,1609\nstalk,1,venusandadonis,1609\nmurders,1,venusandadonis,1609\nIncorporate,1,venusandadonis,1609\n'A,1,venusandadonis,1609\nthing,1,venusandadonis,1609\nsalt,1,venusandadonis,1609\ninvention,1,venusandadonis,1609\n'My,1,venusandadonis,1609\ntrampling,1,venusandadonis,1609\nmerry,1,venusandadonis,1609\nForgetting,1,venusandadonis,1609\nruby,1,venusandadonis,1609\nabate,1,venusandadonis,1609\nsake,1,venusandadonis,1609\nshrill,1,venusandadonis,1609\npurchase,1,venusandadonis,1609\ndeceived,1,venusandadonis,1609\ncoals,1,venusandadonis,1609\nfits,1,venusandadonis,1609\nflying,1,venusandadonis,1609\nseals,1,venusandadonis,1609\nstonish'd,1,venusandadonis,1609\nmastering,1,venusandadonis,1609\nGazing,1,venusandadonis,1609\nbeguiling,1,venusandadonis,1609\ncatching,1,venusandadonis,1609\nsides,1,venusandadonis,1609\nWitness,1,venusandadonis,1609\n'When,1,venusandadonis,1609\nenters,1,venusandadonis,1609\ntouches,1,venusandadonis,1609\nmihi,1,venusandadonis,1609\nsea,1,venusandadonis,1609\nthrong,1,venusandadonis,1609\nthrone,1,venusandadonis,1609\n'nor,1,venusandadonis,1609\nanew,1,venusandadonis,1609\n'miss,1,venusandadonis,1609\nstand,1,venusandadonis,1609\nwhere'er,1,venusandadonis,1609\n'Lo,1,venusandadonis,1609\nhateful,1,venusandadonis,1609\nprovoke,1,venusandadonis,1609\nwaxeth,1,venusandadonis,1609\nfell,1,venusandadonis,1609\ncleanly,1,venusandadonis,1609\nspy,1,venusandadonis,1609\nTaking,1,venusandadonis,1609\nforsake,1,venusandadonis,1609\ncurb,1,venusandadonis,1609\nWILLIAM,1,venusandadonis,1609\naltars,1,venusandadonis,1609\nrelieved,1,venusandadonis,1609\nbreak,1,venusandadonis,1609\ncourser's,1,venusandadonis,1609\nrejected,1,venusandadonis,1609\ncradle,1,venusandadonis,1609\nwoes,1,venusandadonis,1609\nfrosty,1,venusandadonis,1609\nnymphs,1,venusandadonis,1609\nlesson,1,venusandadonis,1609\nunweaves,1,venusandadonis,1609\nwindy,1,venusandadonis,1609\nsighted,1,venusandadonis,1609\ndandling,1,venusandadonis,1609\nSuch,1,venusandadonis,1609\nsteps,1,venusandadonis,1609\n'Lest,1,venusandadonis,1609\nupright,1,venusandadonis,1609\nsalve,1,venusandadonis,1609\nWell,1,venusandadonis,1609\ngay,1,venusandadonis,1609\nbeseech,1,venusandadonis,1609\nbanish'd,1,venusandadonis,1609\nbondage,1,venusandadonis,1609\nmeasures,1,venusandadonis,1609\nobeys,1,venusandadonis,1609\nmoralize,1,venusandadonis,1609\nsteel'd,1,venusandadonis,1609\nherds,1,venusandadonis,1609\nbloodless,1,venusandadonis,1609\ninfluence,1,venusandadonis,1609\nriot,1,venusandadonis,1609\ngazers,1,venusandadonis,1609\nbestow'd,1,venusandadonis,1609\nmelting,1,venusandadonis,1609\nWas,1,venusandadonis,1609\nWat,1,venusandadonis,1609\nprodigies,1,venusandadonis,1609\ncounsel,1,venusandadonis,1609\nkindle,1,venusandadonis,1609\n'Say,1,venusandadonis,1609\nDumbly,1,venusandadonis,1609\nstern,1,venusandadonis,1609\nsay',1,venusandadonis,1609\ndazzling,1,venusandadonis,1609\ngazeth,1,venusandadonis,1609\nback'd,1,venusandadonis,1609\nlivery,1,venusandadonis,1609\nchokes,1,venusandadonis,1609\nripe,1,venusandadonis,1609\nfalcon,1,venusandadonis,1609\nalarums,1,venusandadonis,1609\nbashful,1,venusandadonis,1609\nstanding,1,venusandadonis,1609\ndeath's,1,venusandadonis,1609\nremains,1,venusandadonis,1609\ndistress'd,1,venusandadonis,1609\ndisgrace,1,venusandadonis,1609\nchat,1,venusandadonis,1609\nhunted,1,venusandadonis,1609\nflint,1,venusandadonis,1609\nvenom'd,1,venusandadonis,1609\nidol,1,venusandadonis,1609\nRose,1,venusandadonis,1609\nchampion,1,venusandadonis,1609\nThing,1,venusandadonis,1609\nThine,1,venusandadonis,1609\nBewitching,1,venusandadonis,1609\ncontrolled,1,venusandadonis,1609\n'young,1,venusandadonis,1609\nmerciless,1,venusandadonis,1609\ndally,1,venusandadonis,1609\nbough,1,venusandadonis,1609\nsinewy,1,venusandadonis,1609\nsinews,1,venusandadonis,1609\ntunes,1,venusandadonis,1609\ncaptivate,1,venusandadonis,1609\nbelieve,1,venusandadonis,1609\nsavour,1,venusandadonis,1609\nCan,1,venusandadonis,1609\ndriven,1,venusandadonis,1609\n'Thy,1,venusandadonis,1609\ntormenteth,1,venusandadonis,1609\ncheers,1,venusandadonis,1609\nRemove,1,venusandadonis,1609\n'To,1,venusandadonis,1609\nsatiety,1,venusandadonis,1609\naudience,1,venusandadonis,1609\nmellow,1,venusandadonis,1609\ngrowing,1,venusandadonis,1609\nintent,1,venusandadonis,1609\nprint,1,venusandadonis,1609\nForced,1,venusandadonis,1609\ncommander,1,venusandadonis,1609\nlimning,1,venusandadonis,1609\nhidden,1,venusandadonis,1609\neating,1,venusandadonis,1609\nHunting,1,venusandadonis,1609\ntapsters,1,venusandadonis,1609\nhurries,1,venusandadonis,1609\nguide,1,venusandadonis,1609\nTrifles,1,venusandadonis,1609\narrow,1,venusandadonis,1609\ndugs,1,venusandadonis,1609\nlure,1,venusandadonis,1609\nrage,1,venusandadonis,1609\nbrier,1,venusandadonis,1609\nassure,1,venusandadonis,1609\nturning,1,venusandadonis,1609\nstaring,1,venusandadonis,1609\nwoos,1,venusandadonis,1609\njuice,1,venusandadonis,1609\nresistance,1,venusandadonis,1609\nreceives,1,venusandadonis,1609\nstamps,1,venusandadonis,1609\nmurmur,1,venusandadonis,1609\ndying,1,venusandadonis,1609\nOut,1,venusandadonis,1609\nwinks,1,venusandadonis,1609\nconfounded,1,venusandadonis,1609\nroots,1,venusandadonis,1609\nlooketh,1,venusandadonis,1609\napace,1,venusandadonis,1609\ntempered,1,venusandadonis,1609\nprice,1,venusandadonis,1609\nreft,1,venusandadonis,1609\nafraid,1,venusandadonis,1609\nrevives,1,venusandadonis,1609\nWreathed,1,venusandadonis,1609\nowl,1,venusandadonis,1609\ncoming,1,venusandadonis,1609\nwomen's,1,venusandadonis,1609\nexclaims,1,venusandadonis,1609\nSoothing,1,venusandadonis,1609\nburneth,1,venusandadonis,1609\ncommon,1,venusandadonis,1609\nswoln,1,venusandadonis,1609\nnext,1,venusandadonis,1609\nrespecting,1,venusandadonis,1609\neffecting,1,venusandadonis,1609\nbelly,1,venusandadonis,1609\nladen,1,venusandadonis,1609\nblotting,1,venusandadonis,1609\nwalk'd,1,venusandadonis,1609\nsurvive,1,venusandadonis,1609\nsappy,1,venusandadonis,1609\nhappy,1,venusandadonis,1609\npoisoning,1,venusandadonis,1609\ncivil,1,venusandadonis,1609\nseeds,1,venusandadonis,1609\nresounding,1,venusandadonis,1609\ncaught,1,venusandadonis,1609\nnotice,1,venusandadonis,1609\nhair,1,venusandadonis,1609\n'Call,1,venusandadonis,1609\nTurn,1,venusandadonis,1609\nsweets,1,venusandadonis,1609\nnews,1,venusandadonis,1609\nsalutes,1,venusandadonis,1609\nGives,1,venusandadonis,1609\nrobb'd,1,venusandadonis,1609\nreek,1,venusandadonis,1609\npassenger,1,venusandadonis,1609\nfix'd,1,venusandadonis,1609\nbilling,1,venusandadonis,1609\nraging,1,venusandadonis,1609\nShall,1,venusandadonis,1609\nsnorts,1,venusandadonis,1609\nloathed,1,venusandadonis,1609\nKNOW,1,venusandadonis,1609\ndetain,1,venusandadonis,1609\nenvious,1,venusandadonis,1609\nseize,1,venusandadonis,1609\nearthquake,1,venusandadonis,1609\noblivion,1,venusandadonis,1609\nransom,1,venusandadonis,1609\nSuspicion,1,venusandadonis,1609\nlivelihood,1,venusandadonis,1609\nCupid's,1,venusandadonis,1609\naffected,1,venusandadonis,1609\n'Witness,1,venusandadonis,1609\n'Long,1,venusandadonis,1609\nhonoured,1,venusandadonis,1609\nBackward,1,venusandadonis,1609\ndissolves,1,venusandadonis,1609\nshowers,1,venusandadonis,1609\nunback'd,1,venusandadonis,1609\ntrodden,1,venusandadonis,1609\npoison,1,venusandadonis,1609\nWreck,1,venusandadonis,1609\nlistening,1,venusandadonis,1609\ndrouth,1,venusandadonis,1609\nbrow's,1,venusandadonis,1609\ncoffer,1,venusandadonis,1609\n'Look,1,venusandadonis,1609\nanger,1,venusandadonis,1609\nshining,1,venusandadonis,1609\ngovern'd,1,venusandadonis,1609\nwomb,1,venusandadonis,1609\ntusk,1,venusandadonis,1609\nunyielding,1,venusandadonis,1609\nSeeming,1,venusandadonis,1609\nwondrous,1,venusandadonis,1609\npitchy,1,venusandadonis,1609\nabove,1,venusandadonis,1609\nDries,1,venusandadonis,1609\nrust,1,venusandadonis,1609\ndroop,1,venusandadonis,1609\ncaterpillars,1,venusandadonis,1609\nclip,1,venusandadonis,1609\nRed,1,venusandadonis,1609\nnest,1,venusandadonis,1609\npromise,1,venusandadonis,1609\nbows,1,venusandadonis,1609\nvariety,1,venusandadonis,1609\nimpartial,1,venusandadonis,1609\nhumbly,1,venusandadonis,1609\ntouching,1,venusandadonis,1609\ndropt,1,venusandadonis,1609\nmusets,1,venusandadonis,1609\ncircuit,1,venusandadonis,1609\nlurk,1,venusandadonis,1609\nharvest,1,venusandadonis,1609\nfry,1,venusandadonis,1609\nour,1,venusandadonis,1609\nwaste,1,venusandadonis,1609\nBehind,1,venusandadonis,1609\nfox,1,venusandadonis,1609\noutruns,1,venusandadonis,1609\nope,1,venusandadonis,1609\nfalling,1,venusandadonis,1609\ndiscontents,1,venusandadonis,1609\nvolleys,1,venusandadonis,1609\nstirs,1,venusandadonis,1609\nCastalia,1,venusandadonis,1609\nHerbs,1,venusandadonis,1609\nchoose,1,venusandadonis,1609\n'flint,1,venusandadonis,1609\nglisters,1,venusandadonis,1609\nStrike,1,venusandadonis,1609\nconcealed,1,venusandadonis,1609\ncompare,1,venusandadonis,1609\nfain,1,venusandadonis,1609\nyouth's,1,venusandadonis,1609\nEar's,1,venusandadonis,1609\nprevent,1,venusandadonis,1609\nstuff'd,1,venusandadonis,1609\ndoubled,1,venusandadonis,1609\nboil,1,venusandadonis,1609\ninfant's,1,venusandadonis,1609\nlustful,1,venusandadonis,1609\nRot,1,venusandadonis,1609\nlanguage,1,venusandadonis,1609\nsnail,1,venusandadonis,1609\nSwear,1,venusandadonis,1609\ndedicating,1,venusandadonis,1609\n'in,1,venusandadonis,1609\ntiger,1,venusandadonis,1609\ntender'd,1,venusandadonis,1609\n'if,1,venusandadonis,1609\nEnfranchising,1,venusandadonis,1609\nminds,1,venusandadonis,1609\nnight's,1,venusandadonis,1609\nStruggling,1,venusandadonis,1609\nwhetteth,1,venusandadonis,1609\njudge,1,venusandadonis,1609\nhighly,1,venusandadonis,1609\nWRIOTHESLY,1,venusandadonis,1609\ndoubles,1,venusandadonis,1609\noutwore,1,venusandadonis,1609\nwant,1,venusandadonis,1609\nhence,1,venusandadonis,1609\ninfold,1,venusandadonis,1609\ndelays,1,venusandadonis,1609\nfruitless,1,venusandadonis,1609\nBroad,1,venusandadonis,1609\no'erwhelming,1,venusandadonis,1609\nmishaps,1,venusandadonis,1609\nensign,1,venusandadonis,1609\nscorning,1,venusandadonis,1609\nfoe,1,venusandadonis,1609\nknow'st,1,venusandadonis,1609\nwilful,1,venusandadonis,1609\nsteam,1,venusandadonis,1609\ndies,1,venusandadonis,1609\nanswers,1,venusandadonis,1609\nfortune,1,venusandadonis,1609\nseest,1,venusandadonis,1609\nhumour,1,venusandadonis,1609\nthree,1,venusandadonis,1609\nscorns,1,venusandadonis,1609\nwork,1,venusandadonis,1609\nariseth,1,venusandadonis,1609\nmead,1,venusandadonis,1609\nworm,1,venusandadonis,1609\nwounds,1,venusandadonis,1609\neagle,1,venusandadonis,1609\nportal,1,venusandadonis,1609\nthrows,1,venusandadonis,1609\nDespair,1,venusandadonis,1609\nsense,1,venusandadonis,1609\nDainties,1,venusandadonis,1609\nstalled,1,venusandadonis,1609\ncolours,1,venusandadonis,1609\nseem'd,1,venusandadonis,1609\nthrew,1,venusandadonis,1609\nbeating,1,venusandadonis,1609\nroses,1,venusandadonis,1609\nsummon,1,venusandadonis,1609\nfighting,1,venusandadonis,1609\nwore,1,venusandadonis,1609\nwest,1,venusandadonis,1609\nminute,1,venusandadonis,1609\nMark,1,venusandadonis,1609\nrule,1,venusandadonis,1609\nwash,1,venusandadonis,1609\nmelted,1,venusandadonis,1609\nperfect,1,venusandadonis,1609\nlists,1,venusandadonis,1609\nvow,1,venusandadonis,1609\nunfinish'd,1,venusandadonis,1609\noffice,1,venusandadonis,1609\nmistake,1,venusandadonis,1609\nscratch'd,1,venusandadonis,1609\nSouring,1,venusandadonis,1609\nreaves,1,venusandadonis,1609\npush'd,1,venusandadonis,1609\nwast,1,venusandadonis,1609\nruled,1,venusandadonis,1609\nmanual,1,venusandadonis,1609\nShone,1,venusandadonis,1609\nWelcomes,1,venusandadonis,1609\nchannel,1,venusandadonis,1609\n'why,1,venusandadonis,1609\nwilleth,1,venusandadonis,1609\nfolly,1,venusandadonis,1609\npants,1,venusandadonis,1609\nframed,1,venusandadonis,1609\npraised,1,venusandadonis,1609\nsuchlike,1,venusandadonis,1609\nreprove,1,venusandadonis,1609\nparts,1,venusandadonis,1609\ncolour,1,venusandadonis,1609\ncompared,1,venusandadonis,1609\nvein'd,1,venusandadonis,1609\nwayward,1,venusandadonis,1609\nbark,1,venusandadonis,1609\nsympathy,1,venusandadonis,1609\ntent,1,venusandadonis,1609\nlordship,1,venusandadonis,1609\nbare,1,venusandadonis,1609\nthunder,1,venusandadonis,1609\ncompares,1,venusandadonis,1609\n'Love,1,venusandadonis,1609\nta'en,1,venusandadonis,1609\noffers,1,venusandadonis,1609\nfairest,1,venusandadonis,1609\ngoddess,1,venusandadonis,1609\nshows,1,venusandadonis,1609\nbit,1,venusandadonis,1609\nneighbors,1,venusandadonis,1609\nhe's,1,venusandadonis,1609\nfeather'd,1,venusandadonis,1609\ntwine,1,venusandadonis,1609\nurge,1,venusandadonis,1609\nimmodest,1,venusandadonis,1609\nbreath'd,1,venusandadonis,1609\nfeedeth,1,venusandadonis,1609\nlines,1,venusandadonis,1609\nfawn,1,venusandadonis,1609\nbills,1,venusandadonis,1609\nmistakes,1,venusandadonis,1609\ndepart,1,venusandadonis,1609\ncankering,1,venusandadonis,1609\nperceive,1,venusandadonis,1609\nbeware,1,venusandadonis,1609\nmadly,1,venusandadonis,1609\nsubtlety,1,venusandadonis,1609\nwonted,1,venusandadonis,1609\ntell,1,venusandadonis,1609\nbate,1,venusandadonis,1609\nwhither,1,venusandadonis,1609\nstir,1,venusandadonis,1609\nwaves,1,venusandadonis,1609\no'erworn,1,venusandadonis,1609\ncensure,1,venusandadonis,1609\n'Fondling,1,venusandadonis,1609\nUsurps,1,venusandadonis,1609\nincreasing,1,venusandadonis,1609\nmeaning,1,venusandadonis,1609\nbristles,1,venusandadonis,1609\npicks,1,venusandadonis,1609\nenchant,1,venusandadonis,1609\nmelancholy,1,venusandadonis,1609\nclient,1,venusandadonis,1609\nmouth'd,1,venusandadonis,1609\nKnocks,1,venusandadonis,1609\nenchanting,1,venusandadonis,1609\nDistempering,1,venusandadonis,1609\nextenuate,1,venusandadonis,1609\nhat,1,venusandadonis,1609\nbane,1,venusandadonis,1609\nresembling,1,venusandadonis,1609\nlicking,1,venusandadonis,1609\nTitan,1,venusandadonis,1609\ngrapes,1,venusandadonis,1609\nWhile,1,venusandadonis,1609\nSteal,1,venusandadonis,1609\noverthrow,1,venusandadonis,1609\nhoof,1,venusandadonis,1609\nStruck,1,venusandadonis,1609\nimprinted,1,venusandadonis,1609\nthoughted,1,venusandadonis,1609\nbalm,1,venusandadonis,1609\npluck'st,1,venusandadonis,1609\nnoteth,1,venusandadonis,1609\ntame,1,venusandadonis,1609\nweakness,1,venusandadonis,1609\nrising,1,venusandadonis,1609\noffend,1,venusandadonis,1609\nsecrets,1,venusandadonis,1609\noverflow,1,venusandadonis,1609\norator,1,venusandadonis,1609\nsigh,1,venusandadonis,1609\nSick,1,venusandadonis,1609\nsongs,1,venusandadonis,1609\ndismay'd,1,venusandadonis,1609\nblaze,1,venusandadonis,1609\nsores,1,venusandadonis,1609\nflock,1,venusandadonis,1609\nfeeble,1,venusandadonis,1609\nmeets,1,venusandadonis,1609\nflattery,1,venusandadonis,1609\nauthor,1,venusandadonis,1609\nballs,1,venusandadonis,1609\nflatters,1,venusandadonis,1609\necstasy,1,venusandadonis,1609\nache,1,venusandadonis,1609\ndeformed,1,venusandadonis,1609\nspoil,1,venusandadonis,1609\ninfection,1,venusandadonis,1609\nmistrust,1,venusandadonis,1609\nconstant,1,venusandadonis,1609\ndelving,1,venusandadonis,1609\nman's,1,venusandadonis,1609\npurblind,1,venusandadonis,1609\nLooks,1,venusandadonis,1609\narm'd,1,venusandadonis,1609\nneither,1,venusandadonis,1609\ninformer,1,venusandadonis,1609\ninsulter,1,venusandadonis,1609\nMeans,1,venusandadonis,1609\norient,1,venusandadonis,1609\ngreat,1,venusandadonis,1609\n'desire,1,venusandadonis,1609\neternal,1,venusandadonis,1609\n'Upon,1,venusandadonis,1609\nThrowing,1,venusandadonis,1609\nparasites,1,venusandadonis,1609\nhatefully,1,venusandadonis,1609\nServilely,1,venusandadonis,1609\nvigour,1,venusandadonis,1609\nThose,1,venusandadonis,1609\nuntreads,1,venusandadonis,1609\nprovoked,1,venusandadonis,1609\nfolds,1,venusandadonis,1609\namong,1,venusandadonis,1609\nlance,1,venusandadonis,1609\nFold,1,venusandadonis,1609\ncarry,1,venusandadonis,1609\nitself,1,venusandadonis,1609\nPlay,1,venusandadonis,1609\n'Leave,1,venusandadonis,1609\nasunder,1,venusandadonis,1609\nteen,1,venusandadonis,1609\nDismiss,1,venusandadonis,1609\ntold'st,1,venusandadonis,1609\nbad,1,venusandadonis,1609\nhomeward,1,venusandadonis,1609\nwrings,1,venusandadonis,1609\nsensible,1,venusandadonis,1609\nbay,1,venusandadonis,1609\n'Woe,1,venusandadonis,1609\ncreep,1,venusandadonis,1609\ntangled,1,venusandadonis,1609\nsiege,1,venusandadonis,1609\nthaw'd,1,venusandadonis,1609\ncherries,1,venusandadonis,1609\nShrinks,1,venusandadonis,1609\npardon,1,venusandadonis,1609\nshore,1,venusandadonis,1609\nflaws,1,venusandadonis,1609\nhome,1,venusandadonis,1609\nForeknowing,1,venusandadonis,1609\nconcludes,1,venusandadonis,1609\nembarked,1,venusandadonis,1609\nswears,1,venusandadonis,1609\nproof,1,venusandadonis,1609\nkings,1,venusandadonis,1609\ntreble,1,venusandadonis,1609\ncruel,1,venusandadonis,1609\nclear,1,venusandadonis,1609\nvictories,1,venusandadonis,1609\nkept,1,venusandadonis,1609\npeaceful,1,venusandadonis,1609\nwaited,1,venusandadonis,1609\nexceed,1,venusandadonis,1609\nbrings,1,venusandadonis,1609\nfantastic,1,venusandadonis,1609\ndangerous,1,venusandadonis,1609\ncontending,1,venusandadonis,1609\nfollows,1,venusandadonis,1609\nhie,1,venusandadonis,1609\nhid,1,venusandadonis,1609\nintendments,1,venusandadonis,1609\nSOUTHAMPTON,1,venusandadonis,1609\nprophecies,1,venusandadonis,1609\nstaineth,1,venusandadonis,1609\ndisturbing,1,venusandadonis,1609\nLurk'd,1,venusandadonis,1609\nwreak'd,1,venusandadonis,1609\npiteous,1,venusandadonis,1609\nbeg,1,venusandadonis,1609\nfatal,1,venusandadonis,1609\nChiefly,1,venusandadonis,1609\nlabyrinth,1,venusandadonis,1609\nteam,1,venusandadonis,1609\nprickles,1,venusandadonis,1609\nunruly,1,venusandadonis,1609\nfeigned,1,venusandadonis,1609\nblest,1,venusandadonis,1609\nwinter,1,venusandadonis,1609\nbless,1,venusandadonis,1609\nwhole,1,venusandadonis,1609\ngrowth's,1,venusandadonis,1609\n'Stand,1,venusandadonis,1609\nagues,1,venusandadonis,1609\ndeserved,1,venusandadonis,1609\nseal,1,venusandadonis,1609\nStain,1,venusandadonis,1609\nsluices,1,venusandadonis,1609\nadded,1,venusandadonis,1609\ngives,1,venusandadonis,1609\ntask,1,venusandadonis,1609\nenrich,1,venusandadonis,1609\nadder,1,venusandadonis,1609\ndew'd,1,venusandadonis,1609\nmangling,1,venusandadonis,1609\npast,1,venusandadonis,1609\nbuys,1,venusandadonis,1609\npass,1,venusandadonis,1609\n'Fair,1,venusandadonis,1609\nhides,1,venusandadonis,1609\nprovokest,1,venusandadonis,1609\nforbears,1,venusandadonis,1609\nJealous,1,venusandadonis,1609\nneck'd,1,venusandadonis,1609\nbawd,1,venusandadonis,1609\n'Why,1,venusandadonis,1609\naspire,1,venusandadonis,1609\nmaster'd,1,venusandadonis,1609\nprettily,1,venusandadonis,1609\nSighs,1,venusandadonis,1609\nApplying,1,venusandadonis,1609\nindenting,1,venusandadonis,1609\ncope,1,venusandadonis,1609\nmanage,1,venusandadonis,1609\ndissension,1,venusandadonis,1609\nhung,1,venusandadonis,1609\nhairy,1,venusandadonis,1609\nverdure,1,venusandadonis,1609\nperfumed,1,venusandadonis,1609\ninterest,1,venusandadonis,1609\nsunshine,1,venusandadonis,1609\ncommission,1,venusandadonis,1609\nfickle,1,venusandadonis,1609\nfeeder,1,venusandadonis,1609\ncool,1,venusandadonis,1609\nmoulds,1,venusandadonis,1609\nHeavy,1,venusandadonis,1609\nNarcissus,1,venusandadonis,1609\nSHAKESPEARE,1,venusandadonis,1609\nbegot,1,venusandadonis,1609\nridges,1,venusandadonis,1609\ninward,1,venusandadonis,1609\nwringing,1,venusandadonis,1609\nkennell'd,1,venusandadonis,1609\nfairer,1,venusandadonis,1609\nsweat,1,venusandadonis,1609\ntrophies,1,venusandadonis,1609\ntheft,1,venusandadonis,1609\nbrawny,1,venusandadonis,1609\ndelightful,1,venusandadonis,1609\nacts,1,venusandadonis,1609\nsought,1,venusandadonis,1609\nplants,1,venusandadonis,1609\nmeagre,1,venusandadonis,1609\nbabe,1,venusandadonis,1609\ncaptain,1,venusandadonis,1609\nImperiously,1,venusandadonis,1609\nconquerors,1,venusandadonis,1609\nunsavoury,1,venusandadonis,1609\nunfortunately,1,venusandadonis,1609\nSubject,1,venusandadonis,1609\nburnish'd,1,venusandadonis,1609\ntrots,1,venusandadonis,1609\nbrambles,1,venusandadonis,1609\ncome,1,venusandadonis,1609\nfeathers,1,venusandadonis,1609\nseek,1,venusandadonis,1609\n'gan,1,venusandadonis,1609\nwrinkle,1,venusandadonis,1609\nweep,1,venusandadonis,1609\neither,1,venusandadonis,1609\nsits,1,venusandadonis,1609\ndefeature,1,venusandadonis,1609\nsorry,1,venusandadonis,1609\ndecease,1,venusandadonis,1609\ndefend,1,venusandadonis,1609\nconies,1,venusandadonis,1609\nDance,1,venusandadonis,1609\nCeasing,1,venusandadonis,1609\nunkindness,1,venusandadonis,1609\nbusy,1,venusandadonis,1609\nended,1,venusandadonis,1609\nlook'd,1,venusandadonis,1609\nwrack,1,venusandadonis,1609\n'twixt,1,venusandadonis,1609\npresenteth,1,venusandadonis,1609\ncourtesy,1,venusandadonis,1609\ncanker,1,venusandadonis,1609\nSaith,1,venusandadonis,1609\ndivorce,1,venusandadonis,1609\nleadeth,1,venusandadonis,1609\nimagine,1,venusandadonis,1609\nflash'd,1,venusandadonis,1609\nbury,1,venusandadonis,1609\nsuffer'd,1,venusandadonis,1609\nvail'd,1,venusandadonis,1609\nliking,1,venusandadonis,1609\nleaders,1,venusandadonis,1609\ntidings,1,venusandadonis,1609\nbell,1,venusandadonis,1609\nBurneth,1,venusandadonis,1609\nDian,1,venusandadonis,1609\nhound,1,venusandadonis,1609\nBARON,1,venusandadonis,1609\nmix'd,1,venusandadonis,1609\n'Hadst,1,venusandadonis,1609\ncrush,1,venusandadonis,1609\nexpectation,1,venusandadonis,1609\nBeating,1,venusandadonis,1609\nditty,1,venusandadonis,1609\nTO,1,venusandadonis,1609\nbreathing,1,venusandadonis,1609\nstruck,1,venusandadonis,1609\njointed,1,venusandadonis,1609\nsuggesteth,1,venusandadonis,1609\nmarking,1,venusandadonis,1609\nsounds,1,venusandadonis,1609\nthrust,1,venusandadonis,1609\nthong,1,venusandadonis,1609\nchasing,1,venusandadonis,1609\ntricks,1,venusandadonis,1609\n'tween,1,venusandadonis,1609\ncabinet,1,venusandadonis,1609\nchequer'd,1,venusandadonis,1609\nshepherds,1,venusandadonis,1609\ndote,1,venusandadonis,1609\ndefects,1,venusandadonis,1609\nweal,1,venusandadonis,1609\nwhate'er,1,venusandadonis,1609\nSave,1,venusandadonis,1609\nbent,1,venusandadonis,1609\nrelieveth,1,venusandadonis,1609\nunpolished,1,venusandadonis,1609\nsuing,1,venusandadonis,1609\nLife,1,venusandadonis,1609\npeople,1,venusandadonis,1609\ndeign,1,venusandadonis,1609\neyne,1,venusandadonis,1609\nhollows,1,venusandadonis,1609\ndownward,1,venusandadonis,1609\ndownright,1,venusandadonis,1609\nheels,1,venusandadonis,1609\nThrough,1,venusandadonis,1609\nSpeak,1,venusandadonis,1609\nwelkin,1,venusandadonis,1609\nEarth's,1,venusandadonis,1609\nSeeds,1,venusandadonis,1609\nVariable,1,venusandadonis,1609\nPut,1,venusandadonis,1609\nresounds,1,venusandadonis,1609\nthrobbing,1,venusandadonis,1609\ntrembles,1,venusandadonis,1609\nentreat,1,venusandadonis,1609\n'Poor,1,venusandadonis,1609\nADONIS,1,venusandadonis,1609\nDeath's,1,venusandadonis,1609\naqua,1,venusandadonis,1609\nextremes,1,venusandadonis,1609\nlovers,1,venusandadonis,1609\nblushing,1,venusandadonis,1609\ncurst,1,venusandadonis,1609\nself,1,venusandadonis,1609\nprick'd,1,venusandadonis,1609\nserpent,1,venusandadonis,1609\nconquers,1,venusandadonis,1609\nboar's,1,venusandadonis,1609\njewel,1,venusandadonis,1609\nfarewell,1,venusandadonis,1609\nsell,1,venusandadonis,1609\nlust's,1,venusandadonis,1609\ngaol,1,venusandadonis,1609\nvulture,1,venusandadonis,1609\nexcell'd,1,venusandadonis,1609\nreturn,1,venusandadonis,1609\nbankrupt,1,venusandadonis,1609\n'hast,1,venusandadonis,1609\nfriendly,1,venusandadonis,1609\ntedious,1,venusandadonis,1609\ngun,1,venusandadonis,1609\nhillocks,1,venusandadonis,1609\nconquest,1,venusandadonis,1609\nbleeding,1,venusandadonis,1609\n'Were,1,venusandadonis,1609\nfearfully,1,venusandadonis,1609\nMistakes,1,venusandadonis,1609\nsentinel,1,venusandadonis,1609\ncurse,1,venusandadonis,1609\njavelin's,1,venusandadonis,1609\nRain,1,venusandadonis,1609\nglowing,1,venusandadonis,1609\nbud,1,venusandadonis,1609\nswift,1,venusandadonis,1609\nvows,1,venusandadonis,1609\nmated,1,venusandadonis,1609\nsend,1,venusandadonis,1609\nbuy,1,venusandadonis,1609\ncolt,1,venusandadonis,1609\ngrieves,1,venusandadonis,1609\nadds,1,venusandadonis,1609\nControlling,1,venusandadonis,1609\ngather'd,1,venusandadonis,1609\nfrowns,1,venusandadonis,1609\nClaps,1,venusandadonis,1609\nStray,1,venusandadonis,1609\nlonger,1,venusandadonis,1609\nsurvey,1,venusandadonis,1609\n'Bonnet,1,venusandadonis,1609\nCynthia,1,venusandadonis,1609\ndivine,1,venusandadonis,1609\nproportion'd,1,venusandadonis,1609\nMelodious,1,venusandadonis,1609\nshifts,1,venusandadonis,1609\nherald,1,venusandadonis,1609\nstronger,1,venusandadonis,1609\nBanning,1,venusandadonis,1609\nsink,1,venusandadonis,1609\nTICHFIELD,1,venusandadonis,1609\nhisses,1,venusandadonis,1609\ngate,1,venusandadonis,1609\nsullen,1,venusandadonis,1609\nbeds,1,venusandadonis,1609\nseason,1,venusandadonis,1609\nsing,1,venusandadonis,1609\nrejoice,1,venusandadonis,1609\nsickness,1,venusandadonis,1609\npitch,1,venusandadonis,1609\nBreaketh,1,venusandadonis,1609\nprotest,1,venusandadonis,1609\nvantage,1,venusandadonis,1609\ntriumphs,1,venusandadonis,1609\nturns,1,venusandadonis,1609\ndescending,1,venusandadonis,1609\nnumbs,1,venusandadonis,1609\nmistrustful,1,venusandadonis,1609\nhopeful,1,venusandadonis,1609\nattaint,1,venusandadonis,1609\nmisty,1,venusandadonis,1609\nbeginning,1,venusandadonis,1609\nlip,1,venusandadonis,1609\ncrooked,1,venusandadonis,1609\nconvey'd,1,venusandadonis,1609\nopens,1,venusandadonis,1609\nbegin,1,venusandadonis,1609\nchafes,1,venusandadonis,1609\nsheets,1,venusandadonis,1609\npulses,1,venusandadonis,1609\npearls,1,venusandadonis,1609\nquite,1,venusandadonis,1609\nstormy,1,venusandadonis,1609\nsolemn,1,venusandadonis,1609\ndogs,1,venusandadonis,1609\nlawn,1,venusandadonis,1609\nthreat,1,venusandadonis,1609\nghost,1,venusandadonis,1609\nimpatience,1,venusandadonis,1609\nstory,1,venusandadonis,1609\nchildish,1,venusandadonis,1609\ncredulous,1,venusandadonis,1609\nreviveth,1,venusandadonis,1609\nstay'd,1,venusandadonis,1609\n'His,1,venusandadonis,1609\ncheek'd,1,venusandadonis,1609\nengine,1,venusandadonis,1609\neffects,1,venusandadonis,1609\ndesire's,1,venusandadonis,1609\nsnouted,1,venusandadonis,1609\namid,1,venusandadonis,1609\nstruggle,1,venusandadonis,1609\npersuade,1,venusandadonis,1609\nsingled,1,venusandadonis,1609\nsuitor,1,venusandadonis,1609\nhearkens,1,venusandadonis,1609\nnostrils,1,venusandadonis,1609\nbatter'd,1,venusandadonis,1609\nraise,1,venusandadonis,1609\ntreatise,1,venusandadonis,1609\nfield's,1,venusandadonis,1609\nremaineth,1,venusandadonis,1609\naid,1,venusandadonis,1609\novershoot,1,venusandadonis,1609\nberry,1,venusandadonis,1609\nstops,1,venusandadonis,1609\nrheumatic,1,venusandadonis,1609\npetty,1,venusandadonis,1609\nMusing,1,venusandadonis,1609\nbattery,1,venusandadonis,1609\nmoans,1,venusandadonis,1609\ncloudy,1,venusandadonis,1609\njewels,1,venusandadonis,1609\ntruest,1,venusandadonis,1609\nIll,1,venusandadonis,1609\nconfound,1,venusandadonis,1609\nmilch,1,venusandadonis,1609\nmaw,1,venusandadonis,1609\n'Adieu,1,venusandadonis,1609\nfiends,1,venusandadonis,1609\n'since,1,venusandadonis,1609\nrepine,1,venusandadonis,1609\nyes,1,venusandadonis,1609\ndapper,1,venusandadonis,1609\nbetoken'd,1,venusandadonis,1609\ntongued,1,venusandadonis,1609\nshag,1,venusandadonis,1609\nstill'd,1,venusandadonis,1609\nbeak,1,venusandadonis,1609\nApollo,1,venusandadonis,1609\ncopse,1,venusandadonis,1609\nlazy,1,venusandadonis,1609\ndwell,1,venusandadonis,1609\nfountains,1,venusandadonis,1609\nleast,1,venusandadonis,1609\nStrong,1,venusandadonis,1609\ndisposing,1,venusandadonis,1609\ndisturbed,1,venusandadonis,1609\ncaitiff,1,venusandadonis,1609\nblindfold,1,venusandadonis,1609\nchoosing,1,venusandadonis,1609\nyokes,1,venusandadonis,1609\ngait,1,venusandadonis,1609\ndeaf,1,venusandadonis,1609\nengirts,1,venusandadonis,1609\nFeed,1,venusandadonis,1609\nseeing,1,venusandadonis,1609\nlikely,1,venusandadonis,1609\nGloss,1,venusandadonis,1609\ncontinual,1,venusandadonis,1609\nmulberries,1,venusandadonis,1609\nsuggestion,1,venusandadonis,1609\nFinding,1,venusandadonis,1609\nstain'd,1,venusandadonis,1609\ndread,1,venusandadonis,1609\nboast,1,venusandadonis,1609\ntails,1,venusandadonis,1609\nsadness,1,venusandadonis,1609\n'Thrice,1,venusandadonis,1609\ndealing,1,venusandadonis,1609\nrears,1,venusandadonis,1609\ncopious,1,venusandadonis,1609\ntempering,1,venusandadonis,1609\nforged,1,venusandadonis,1609\nstole,1,venusandadonis,1609\nmet,1,venusandadonis,1609\nbargains,1,venusandadonis,1609\nwaits,1,venusandadonis,1609\n'Here,1,venusandadonis,1609\nburied,1,venusandadonis,1609\ntrip,1,venusandadonis,1609\ntrim,1,venusandadonis,1609\nlends,1,venusandadonis,1609\nincaged,1,venusandadonis,1609\nmakest,1,venusandadonis,1609\nyields,1,venusandadonis,1609\n'Hard,1,venusandadonis,1609\nperceiving,1,venusandadonis,1609\nshed,1,venusandadonis,1609\nslips,1,venusandadonis,1609\nmeeting,1,venusandadonis,1609\nheating,1,venusandadonis,1609\napproach,1,venusandadonis,1609\nforget,1,venusandadonis,1609\nchoir,1,venusandadonis,1609\nEARL,1,venusandadonis,1609\nhear'st,1,venusandadonis,1609\nsupreme,1,venusandadonis,1609\nrights,1,venusandadonis,1609\ndoor,1,venusandadonis,1609\nBefore,1,venusandadonis,1609\nforging,1,venusandadonis,1609\ncrosses,1,venusandadonis,1609\nshooteth,1,venusandadonis,1609\nnuns,1,venusandadonis,1609\nclepes,1,venusandadonis,1609\nrouse,1,venusandadonis,1609\nscornfully,1,venusandadonis,1609\nburnt,1,venusandadonis,1609\nwhiter,1,venusandadonis,1609\ncomforter,1,venusandadonis,1609\npleasant,1,venusandadonis,1609\nmerciful,1,venusandadonis,1609\nassuage,1,venusandadonis,1609\nmove,1,venusandadonis,1609\nimmure,1,venusandadonis,1609\nlimit,1,venusandadonis,1609\nplena,1,venusandadonis,1609\ncauseless,1,venusandadonis,1609\nbody's,1,venusandadonis,1609\nheartily,1,venusandadonis,1609\nFanning,1,venusandadonis,1609\ndamn'd,1,venusandadonis,1609\n'Pure,1,venusandadonis,1609\nrain'd,1,venusandadonis,1609\nbites,1,venusandadonis,1609\nAway,1,venusandadonis,1609\nattorney,1,venusandadonis,1609\nunwitnessed,1,venusandadonis,1609\ncomment,1,venusandadonis,1609\nsmall,1,venusandadonis,1609\nstrain,1,venusandadonis,1609\ncrave,1,venusandadonis,1609\nmalcontent,1,venusandadonis,1609\npursuers,1,venusandadonis,1609\nhand's,1,venusandadonis,1609\nharmony,1,venusandadonis,1609\nhenceforth,1,venusandadonis,1609\nebon,1,venusandadonis,1609\nwrinkled,1,venusandadonis,1609\nwhereof,1,venusandadonis,1609\namain,1,venusandadonis,1609\nPerverse,1,venusandadonis,1609\n'Didst,1,venusandadonis,1609\nflavus,1,venusandadonis,1609\nbeguile,1,venusandadonis,1609\nlark,1,venusandadonis,1609\n'Where,1,venusandadonis,1609\nharshsounding,1,venusandadonis,1609\naccount,1,venusandadonis,1609\nmingle,1,venusandadonis,1609\nrecreate,1,venusandadonis,1609\nsometimes,1,venusandadonis,1609\nterror,1,venusandadonis,1609\nrespects,1,venusandadonis,1609\nfraud,1,venusandadonis,1609\nInfusing,1,venusandadonis,1609\nfastens,1,venusandadonis,1609\nmaladies,1,venusandadonis,1609\nthriveth,1,venusandadonis,1609\nyoking,1,venusandadonis,1609\nnoble,1,venusandadonis,1609\n'how,1,venusandadonis,1609\ntamed,1,venusandadonis,1609\nlive,1,venusandadonis,1609\nscornful,1,venusandadonis,1609\noverruled,1,venusandadonis,1609\nplucks,1,venusandadonis,1609\nflap,1,venusandadonis,1609\nbegg'd,1,venusandadonis,1609\nsharply,1,venusandadonis,1609\nGreen,1,venusandadonis,1609\nsettled,1,venusandadonis,1609\nendure,1,venusandadonis,1609\nbetter'd,1,venusandadonis,1609\nvirtue,1,venusandadonis,1609\nbrakes,1,venusandadonis,1609\nado,1,venusandadonis,1609\nmoon,1,venusandadonis,1609\ncommands,1,venusandadonis,1609\n'Touch,1,venusandadonis,1609\nAppals,1,venusandadonis,1609\nsleeping,1,venusandadonis,1609\nsweetness,1,venusandadonis,1609\nfather,1,venusandadonis,1609\nwithdrew,1,venusandadonis,1609\nresolved,1,venusandadonis,1609\nsemblance,1,venusandadonis,1609\nwherein,1,venusandadonis,1609\nGrief,1,venusandadonis,1609\nlest,1,venusandadonis,1609\nfright,1,venusandadonis,1609\n'Since,1,venusandadonis,1609\npeep,1,venusandadonis,1609\nexpel,1,venusandadonis,1609\njade,1,venusandadonis,1609\nwhet,1,venusandadonis,1609\nlist,1,venusandadonis,1609\nhuntsman,1,venusandadonis,1609\ncrystals,1,venusandadonis,1609\nlose,1,venusandadonis,1609\njennet,1,venusandadonis,1609\nwittily,1,venusandadonis,1609\nviolet,1,venusandadonis,1609\nnurtured,1,venusandadonis,1609\nact,1,venusandadonis,1609\nsepulchres,1,venusandadonis,1609\nforceless,1,venusandadonis,1609\nnurse's,1,venusandadonis,1609\ngreater,1,venusandadonis,1609\nbootless,1,venusandadonis,1609\nboding,1,venusandadonis,1609\nstatues,1,venusandadonis,1609\nappetite,1,venusandadonis,1609\nbribed,1,venusandadonis,1609\nready,1,venusandadonis,1609\nragged,1,venusandadonis,1609\nreprehend,1,venusandadonis,1609\ntrapping,1,venusandadonis,1609\nglides,1,venusandadonis,1609\n'Sometime,1,venusandadonis,1609\ncontemn,1,venusandadonis,1609\ncontend,1,venusandadonis,1609\ngoing,1,venusandadonis,1609\npouted,1,venusandadonis,1609\nlanguisheth,1,venusandadonis,1609\nwindows,1,venusandadonis,1609\nhoof'd,1,venusandadonis,1609\ngrace,1,venusandadonis,1609\nurged,1,venusandadonis,1609\nmarr'd,1,venusandadonis,1609\nraineth,1,venusandadonis,1609\nmen's,1,venusandadonis,1609\nchorus,1,venusandadonis,1609\nconflict,1,venusandadonis,1609\nload,1,venusandadonis,1609\ndwells,1,venusandadonis,1609\nshade,1,venusandadonis,1609\nshrewd,1,venusandadonis,1609\nwildly,1,venusandadonis,1609\nharm'd,1,venusandadonis,1609\nbristly,1,venusandadonis,1609\nharm,1,venusandadonis,1609\ngraves,1,venusandadonis,1609\nchoice,1,venusandadonis,1609\nevents,1,venusandadonis,1609\ngraver,1,venusandadonis,1609\nbasely,1,venusandadonis,1609\nwitty,1,venusandadonis,1609\nharken,1,venusandadonis,1609\nvalour,1,venusandadonis,1609\n'This,1,venusandadonis,1609\nbrought,1,venusandadonis,1609\nSeeing,1,venusandadonis,1609\neats,1,venusandadonis,1609\nhollo,1,venusandadonis,1609\n'Lie,1,venusandadonis,1609\nkills,1,venusandadonis,1609\nResembling,1,venusandadonis,1609\ndiscourse,1,venusandadonis,1609\nscratch,1,venusandadonis,1609\ndistilling,1,venusandadonis,1609\n'Sweet,1,venusandadonis,1609\npresage,1,venusandadonis,1609\ntrips,1,venusandadonis,1609\npayment,1,venusandadonis,1609\nplump,1,venusandadonis,1609\nbends,1,venusandadonis,1609\nblames,1,venusandadonis,1609\nplume,1,venusandadonis,1609\nfaints,1,venusandadonis,1609\nstrengthless,1,venusandadonis,1609\npeering,1,venusandadonis,1609\ncareless,1,venusandadonis,1609\nfasten'd,1,venusandadonis,1609\nbrag,1,venusandadonis,1609\nstifle,1,venusandadonis,1609\nspleens,1,venusandadonis,1609\ndoe,1,venusandadonis,1609\ndog,1,venusandadonis,1609\nattend,1,venusandadonis,1609\ncombustious,1,venusandadonis,1609\nGusts,1,venusandadonis,1609\nhalf,1,venusandadonis,1609\naskance,1,venusandadonis,1609\nharsh,1,venusandadonis,1609\ncrop,1,venusandadonis,1609\nhandled,1,venusandadonis,1609\nurchin,1,venusandadonis,1609\nNimbly,1,venusandadonis,1609\nswallow,1,venusandadonis,1609\nDisorder,1,venusandadonis,1609\ninfirmities,1,venusandadonis,1609\ndoteth,1,venusandadonis,1609\nsenseless,1,venusandadonis,1609\nfollow,1,venusandadonis,1609\ntext,1,venusandadonis,1609\nfamish,1,venusandadonis,1609\nCourageously,1,venusandadonis,1609\nimpression,1,venusandadonis,1609\nboisterous,1,venusandadonis,1609\ngills,1,venusandadonis,1609\ndun,1,venusandadonis,1609\ncrusheth,1,venusandadonis,1609\nrepel,1,venusandadonis,1609\nspur,1,venusandadonis,1609\naidance,1,venusandadonis,1609\n'let,1,venusandadonis,1609\nhairless,1,venusandadonis,1609\ncall'd,1,venusandadonis,1609\nfaintly,1,venusandadonis,1609\n'Let,1,venusandadonis,1609\nsteadfastly,1,venusandadonis,1609\nRich,1,venusandadonis,1609\ncatch,1,venusandadonis,1609\nland,1,venusandadonis,1609\nredoubled,1,venusandadonis,1609\nwithhold,1,venusandadonis,1609\nPluck,1,venusandadonis,1609\nconsume,1,venusandadonis,1609\nbarketh,1,venusandadonis,1609\nhoping,1,venusandadonis,1609\nprimrose,1,venusandadonis,1609\ndraws,1,venusandadonis,1609\ntop,1,venusandadonis,1609\ntrench'd,1,venusandadonis,1609\nsighing,1,venusandadonis,1609\nStatue,1,venusandadonis,1609\nscarcity,1,venusandadonis,1609\naccurst,1,venusandadonis,1609\nlamb,1,venusandadonis,1609\nscuds,1,venusandadonis,1609\nchariot,1,venusandadonis,1609\ncertain,1,venusandadonis,1609\ntil,1,venusandadonis,1609\ntie,1,venusandadonis,1609\nshake,1,venusandadonis,1609\npluck,1,venusandadonis,1609\napparitions,1,venusandadonis,1609\nopen,1,venusandadonis,1609\nbehold,1,venusandadonis,1609\nburden,1,venusandadonis,1609\nShe's,1,venusandadonis,1609\narm,1,venusandadonis,1609\narmed,1,venusandadonis,1609\ngazed,1,venusandadonis,1609\ncaparisons,1,venusandadonis,1609\nsturdy,1,venusandadonis,1609\nabhor,1,venusandadonis,1609\nbathes,1,venusandadonis,1609\nPure,1,venusandadonis,1609\nquietly,1,venusandadonis,1609\nplum,1,venusandadonis,1609\npresent,1,venusandadonis,1609\ntrees,1,venusandadonis,1609\ncross,1,venusandadonis,1609\nsurfeits,1,venusandadonis,1609\ncabin,1,venusandadonis,1609\ngorge,1,venusandadonis,1609\nreviving,1,venusandadonis,1609\ndew,1,venusandadonis,1609\ndale,1,venusandadonis,1609\npain,1,venusandadonis,1609\nstranger,1,venusandadonis,1609\nunapt,1,venusandadonis,1609\nfiery,1,venusandadonis,1609\n'How,1,venusandadonis,1609\ndrown'd,1,venusandadonis,1609\nspear,1,venusandadonis,1609\nbrim,1,venusandadonis,1609\njealousy,1,venusandadonis,1609\nHateful,1,venusandadonis,1609\napt,1,venusandadonis,1609\nshelly,1,venusandadonis,1609\nmourner,1,venusandadonis,1609\nslip,1,venusandadonis,1609\nforsworn,1,venusandadonis,1609\nunask'd,1,venusandadonis,1609\nminute's,1,venusandadonis,1609\nmutual,1,venusandadonis,1609\nPaphos,1,venusandadonis,1609\nsoundly,1,venusandadonis,1609\nentertain'd,1,venusandadonis,1609\neyelids,1,venusandadonis,1609\nUnlike,1,venusandadonis,1609\ngirths,1,venusandadonis,1609\nmid,1,venusandadonis,1609\namaze,1,venusandadonis,1609\npace,1,venusandadonis,1609\nremorse,1,venusandadonis,1609\nfear'd,1,venusandadonis,1609\ndreadful,1,venusandadonis,1609\ndismal,1,venusandadonis,1609\nputs,1,venusandadonis,1609\nstriving,1,venusandadonis,1609\nfishes,1,venusandadonis,1609\ncombat,1,venusandadonis,1609\nrings,1,venusandadonis,1609\nfisher,1,venusandadonis,1609\nneighbour,1,venusandadonis,1609\nchastity,1,venusandadonis,1609\nFind,1,venusandadonis,1609\nClapping,1,venusandadonis,1609\nnectar,1,venusandadonis,1609\nflattering,1,venusandadonis,1609\nfall'n,1,venusandadonis,1609\nsorteth,1,venusandadonis,1609\nLeading,1,venusandadonis,1609\nshape,1,venusandadonis,1609\nintends,1,venusandadonis,1609\ntread,1,venusandadonis,1609\ntenderer,1,venusandadonis,1609\ngaudy,1,venusandadonis,1609\n'Vilia,1,venusandadonis,1609\nhunting,1,venusandadonis,1609\nAdon,1,venusandadonis,1609\ntyranny,1,venusandadonis,1609\ndirection,1,venusandadonis,1609\nagents,1,venusandadonis,1609\nHot,1,venusandadonis,1609\ncreatures,1,venusandadonis,1609\nobey'd,1,venusandadonis,1609\nprepares,1,venusandadonis,1609\nvulgus,1,venusandadonis,1609\ncrows,1,venusandadonis,1609\n'Then,1,venusandadonis,1609\nsands,1,venusandadonis,1609\nfond,1,venusandadonis,1609\nwouldst,1,venusandadonis,1609\ndissemble,1,venusandadonis,1609\nblush'd,1,venusandadonis,1609\npikes,1,venusandadonis,1609\ntwining,1,venusandadonis,1609\nelbows,1,venusandadonis,1609\nHolding,1,venusandadonis,1609\nmaiden,1,venusandadonis,1609\ngazes,1,venusandadonis,1609\ngazer,1,venusandadonis,1609\nsinketh,1,venusandadonis,1609\nenemy,1,venusandadonis,1609\nnostril,1,venusandadonis,1609\nmayst,1,venusandadonis,1609\nerror,1,venusandadonis,1609\nmurther,1,venusandadonis,1609\nlock,1,venusandadonis,1609\nbegets,1,venusandadonis,1609\nfold,1,venusandadonis,1609\nlours,1,venusandadonis,1609\nending,1,venusandadonis,1609\nhedge,1,venusandadonis,1609\ntombs,1,venusandadonis,1609\nsummer,1,venusandadonis,1609\nlady,1,venusandadonis,1609\ndaughters,1,venusandadonis,1609\ninsinuate,1,venusandadonis,1609\nstudded,1,venusandadonis,1609\nclapping,1,venusandadonis,1609\nopen'd,2,venusandadonis,1609\ndeadly,2,venusandadonis,1609\nstrangeness,2,venusandadonis,1609\ncolour'd,2,venusandadonis,1609\ntouch,2,venusandadonis,1609\nlusty,2,venusandadonis,1609\nSometimes,2,venusandadonis,1609\n'you,2,venusandadonis,1609\nchafing,2,venusandadonis,1609\nNay,2,venusandadonis,1609\ninvisible,2,venusandadonis,1609\nsmiles,2,venusandadonis,1609\nnew,2,venusandadonis,1609\nHath,2,venusandadonis,1609\nlead,2,venusandadonis,1609\nleaf,2,venusandadonis,1609\nBids,2,venusandadonis,1609\nShows,2,venusandadonis,1609\nlacking,2,venusandadonis,1609\ntremble,2,venusandadonis,1609\nwhispers,2,venusandadonis,1609\nYour,2,venusandadonis,1609\nRIGHT,2,venusandadonis,1609\ndeceiving,2,venusandadonis,1609\nGrew,2,venusandadonis,1609\nBeauty,2,venusandadonis,1609\nglow,2,venusandadonis,1609\ncompass'd,2,venusandadonis,1609\nempty,2,venusandadonis,1609\ndrench'd,2,venusandadonis,1609\nsupport,2,venusandadonis,1609\nechoes,2,venusandadonis,1609\nrob,2,venusandadonis,1609\nroe,2,venusandadonis,1609\nday's,2,venusandadonis,1609\nnote,2,venusandadonis,1609\nmelt,2,venusandadonis,1609\nNever,2,venusandadonis,1609\nsleeps,2,venusandadonis,1609\ndire,2,venusandadonis,1609\ndarts,2,venusandadonis,1609\nbeast,2,venusandadonis,1609\nwonder,2,venusandadonis,1609\nnone,2,venusandadonis,1609\n'Alas,2,venusandadonis,1609\npainted,2,venusandadonis,1609\nbeats,2,venusandadonis,1609\nproceedings,2,venusandadonis,1609\ngently,2,venusandadonis,1609\nmounted,2,venusandadonis,1609\nwhile,2,venusandadonis,1609\nsprung,2,venusandadonis,1609\ngrim,2,venusandadonis,1609\n'Thou,2,venusandadonis,1609\nvapours,2,venusandadonis,1609\nbrook,2,venusandadonis,1609\nmajesty,2,venusandadonis,1609\nsummer's,2,venusandadonis,1609\nfury,2,venusandadonis,1609\nunder,2,venusandadonis,1609\n'Ay,2,venusandadonis,1609\ncalls,2,venusandadonis,1609\nbottom,2,venusandadonis,1609\nrun,2,venusandadonis,1609\nstrike,2,venusandadonis,1609\nsore,2,venusandadonis,1609\ntruth,2,venusandadonis,1609\nannoy,2,venusandadonis,1609\nShaking,2,venusandadonis,1609\nbecome,2,venusandadonis,1609\nunwilling,2,venusandadonis,1609\nwither,2,venusandadonis,1609\ncare,2,venusandadonis,1609\nmoist,2,venusandadonis,1609\nmisery,2,venusandadonis,1609\nmute,2,venusandadonis,1609\nTherefore,2,venusandadonis,1609\nmingled,2,venusandadonis,1609\nsong,2,venusandadonis,1609\nbreach,2,venusandadonis,1609\nOnce,2,venusandadonis,1609\nprecious,2,venusandadonis,1609\nOver,2,venusandadonis,1609\npassions,2,venusandadonis,1609\nchin,2,venusandadonis,1609\neffect,2,venusandadonis,1609\nembracing,2,venusandadonis,1609\nsurfeit,2,venusandadonis,1609\nSome,2,venusandadonis,1609\nfeels,2,venusandadonis,1609\njest,2,venusandadonis,1609\ndraw,2,venusandadonis,1609\nsadly,2,venusandadonis,1609\nspies,2,venusandadonis,1609\nteeth,2,venusandadonis,1609\n'Art,2,venusandadonis,1609\nbearing,2,venusandadonis,1609\nyears,2,venusandadonis,1609\nbackward,2,venusandadonis,1609\nend,2,venusandadonis,1609\ndidst,2,venusandadonis,1609\nbloody,2,venusandadonis,1609\novercome,2,venusandadonis,1609\nAND,2,venusandadonis,1609\nchief,2,venusandadonis,1609\nmark,2,venusandadonis,1609\nseemeth,2,venusandadonis,1609\nhearing,2,venusandadonis,1609\ncrimson,2,venusandadonis,1609\nthick,2,venusandadonis,1609\nfingers,2,venusandadonis,1609\ncall,2,venusandadonis,1609\nquench,2,venusandadonis,1609\nforsook,2,venusandadonis,1609\nhanging,2,venusandadonis,1609\nrider,2,venusandadonis,1609\nbelieving,2,venusandadonis,1609\nblow,2,venusandadonis,1609\ncame,2,venusandadonis,1609\nNor,2,venusandadonis,1609\nlabour,2,venusandadonis,1609\nNot,2,venusandadonis,1609\nbushes,2,venusandadonis,1609\nchide,2,venusandadonis,1609\nhasteth,2,venusandadonis,1609\nmountain,2,venusandadonis,1609\npalfrey,2,venusandadonis,1609\nfret,2,venusandadonis,1609\nWhy,2,venusandadonis,1609\nliving,2,venusandadonis,1609\nWere,2,venusandadonis,1609\nstands,2,venusandadonis,1609\nbody,2,venusandadonis,1609\nbreed,2,venusandadonis,1609\ntrembling,2,venusandadonis,1609\npause,2,venusandadonis,1609\npassage,2,venusandadonis,1609\nbreedeth,2,venusandadonis,1609\nbetter,2,venusandadonis,1609\nflies,2,venusandadonis,1609\noft,2,venusandadonis,1609\nsuit,2,venusandadonis,1609\ncure,2,venusandadonis,1609\nonly,2,venusandadonis,1609\nworth,2,venusandadonis,1609\nloving,2,venusandadonis,1609\nsubject,2,venusandadonis,1609\nplenty,2,venusandadonis,1609\nheard,2,venusandadonis,1609\n'I,2,venusandadonis,1609\nSay,2,venusandadonis,1609\nsecond,2,venusandadonis,1609\ndeeply,2,venusandadonis,1609\nwings,2,venusandadonis,1609\ngroans,2,venusandadonis,1609\ndoubt,2,venusandadonis,1609\nmother,2,venusandadonis,1609\ndearth,2,venusandadonis,1609\nwax,2,venusandadonis,1609\nsuck'd,2,venusandadonis,1609\nduty,2,venusandadonis,1609\nrise,2,venusandadonis,1609\ntushes,2,venusandadonis,1609\nbetween,2,venusandadonis,1609\nswelling,2,venusandadonis,1609\ntaught,2,venusandadonis,1609\nbleed,2,venusandadonis,1609\nenraged,2,venusandadonis,1609\nfight,2,venusandadonis,1609\nembracements,2,venusandadonis,1609\nheaveth,2,venusandadonis,1609\nbereft,2,venusandadonis,1609\nends,2,venusandadonis,1609\nThere,2,venusandadonis,1609\nskies,2,venusandadonis,1609\nfalleth,2,venusandadonis,1609\ncomplain,2,venusandadonis,1609\nways,2,venusandadonis,1609\ntempting,2,venusandadonis,1609\nDestinies,2,venusandadonis,1609\nWhereon,2,venusandadonis,1609\nfalls,2,venusandadonis,1609\njoints,2,venusandadonis,1609\nLust's,2,venusandadonis,1609\nearthly,2,venusandadonis,1609\nWherein,2,venusandadonis,1609\nweeping,2,venusandadonis,1609\nsmelling,2,venusandadonis,1609\nabout,2,venusandadonis,1609\nowe,2,venusandadonis,1609\nlust,2,venusandadonis,1609\nsevere,2,venusandadonis,1609\nhonour,2,venusandadonis,1609\nfeel,2,venusandadonis,1609\ndull,2,venusandadonis,1609\nwolf,2,venusandadonis,1609\ngrow,2,venusandadonis,1609\ndrops,2,venusandadonis,1609\nhundred,2,venusandadonis,1609\nbring,2,venusandadonis,1609\n'Now,2,venusandadonis,1609\nweather,2,venusandadonis,1609\nothers,2,venusandadonis,1609\nwink,2,venusandadonis,1609\nflesh,2,venusandadonis,1609\ncaves,2,venusandadonis,1609\nwept,2,venusandadonis,1609\nsteal,2,venusandadonis,1609\ncares,2,venusandadonis,1609\nwert,2,venusandadonis,1609\nwise,2,venusandadonis,1609\nwoeful,2,venusandadonis,1609\nservile,2,venusandadonis,1609\nflank,2,venusandadonis,1609\nfroward,2,venusandadonis,1609\ntune,2,venusandadonis,1609\nwave,2,venusandadonis,1609\nword,2,venusandadonis,1609\npassing,2,venusandadonis,1609\nfriend,2,venusandadonis,1609\nstop,2,venusandadonis,1609\nfie,2,venusandadonis,1609\nSweet,2,venusandadonis,1609\npretty,2,venusandadonis,1609\nbreeding,2,venusandadonis,1609\ncunning,2,venusandadonis,1609\nbone,2,venusandadonis,1609\nmean,2,venusandadonis,1609\nmatter,2,venusandadonis,1609\nstains,2,venusandadonis,1609\nsweating,2,venusandadonis,1609\nwits,2,venusandadonis,1609\nne'er,2,venusandadonis,1609\nmarrow,2,venusandadonis,1609\nmoisture,2,venusandadonis,1609\nhorn,2,venusandadonis,1609\nspoke,2,venusandadonis,1609\nwide,2,venusandadonis,1609\nsenses,2,venusandadonis,1609\nbreaketh,2,venusandadonis,1609\nsmooth,2,venusandadonis,1609\nbutcher,2,venusandadonis,1609\nside,2,venusandadonis,1609\n'Good,2,venusandadonis,1609\nFoul,2,venusandadonis,1609\nmorning,2,venusandadonis,1609\nalarms,2,venusandadonis,1609\nbird,2,venusandadonis,1609\nbreeder,2,venusandadonis,1609\nbase,2,venusandadonis,1609\nprophesy,2,venusandadonis,1609\nband,2,venusandadonis,1609\nbank,2,venusandadonis,1609\nbounds,2,venusandadonis,1609\nAt,2,venusandadonis,1609\nperfection,2,venusandadonis,1609\nAn,2,venusandadonis,1609\ntimorous,2,venusandadonis,1609\ntalk,2,venusandadonis,1609\nlaw,2,venusandadonis,1609\nmusic,2,venusandadonis,1609\nmutiny,2,venusandadonis,1609\ntherefore,2,venusandadonis,1609\nstroke,2,venusandadonis,1609\nStill,2,venusandadonis,1609\nsmile,2,venusandadonis,1609\nHaving,2,venusandadonis,1609\nwild,2,venusandadonis,1609\nhold,2,venusandadonis,1609\nLo,2,venusandadonis,1609\nholds,2,venusandadonis,1609\nOF,2,venusandadonis,1609\ncreature,2,venusandadonis,1609\nworkmanship,2,venusandadonis,1609\nbegun,2,venusandadonis,1609\nhollow,2,venusandadonis,1609\nshines,2,venusandadonis,1609\nforce,2,venusandadonis,1609\nsings,2,venusandadonis,1609\nfinds,2,venusandadonis,1609\nhit,2,venusandadonis,1609\npleasure,2,venusandadonis,1609\nenter,2,venusandadonis,1609\nflood,2,venusandadonis,1609\nprison'd,2,venusandadonis,1609\n'Who,2,venusandadonis,1609\nbuttock,2,venusandadonis,1609\npath,2,venusandadonis,1609\ndespair,2,venusandadonis,1609\nplay,2,venusandadonis,1609\nHad,2,venusandadonis,1609\nlovely,2,venusandadonis,1609\nalong,2,venusandadonis,1609\nquiet,2,venusandadonis,1609\nalways,2,venusandadonis,1609\nobey,2,venusandadonis,1609\nfavour'd,2,venusandadonis,1609\nlow,2,venusandadonis,1609\nsurprise,2,venusandadonis,1609\nugly,2,venusandadonis,1609\nweed,2,venusandadonis,1609\nfeeling,2,venusandadonis,1609\nunaware,2,venusandadonis,1609\nhills,2,venusandadonis,1609\nnigh,2,venusandadonis,1609\nNe'er,2,venusandadonis,1609\ncoy,2,venusandadonis,1609\ndrunken,2,venusandadonis,1609\ntells,2,venusandadonis,1609\nSith,2,venusandadonis,1609\nwhereat,2,venusandadonis,1609\nbattle,2,venusandadonis,1609\nsound,2,venusandadonis,1609\nberries,2,venusandadonis,1609\n'sweet,2,venusandadonis,1609\nmodest,2,venusandadonis,1609\nlamps,2,venusandadonis,1609\ntree,2,venusandadonis,1609\nblame,2,venusandadonis,1609\nThings,2,venusandadonis,1609\nhours,2,venusandadonis,1609\ngore,2,venusandadonis,1609\ntied,2,venusandadonis,1609\nremove,2,venusandadonis,1609\nbeheld,2,venusandadonis,1609\ntide,2,venusandadonis,1609\naloud,2,venusandadonis,1609\nhemm'd,2,venusandadonis,1609\ntheme,2,venusandadonis,1609\ndespite,2,venusandadonis,1609\nnurse,2,venusandadonis,1609\nswine,2,venusandadonis,1609\npicture,2,venusandadonis,1609\nstories,2,venusandadonis,1609\nfearing,2,venusandadonis,1609\nmatch,2,venusandadonis,1609\nfooting,2,venusandadonis,1609\nashamed,2,venusandadonis,1609\nimmortal,2,venusandadonis,1609\nbonnet,2,venusandadonis,1609\nBoth,2,venusandadonis,1609\neyes',2,venusandadonis,1609\nnature's,2,venusandadonis,1609\nriver,2,venusandadonis,1609\nTwo,2,venusandadonis,1609\nwretch,2,venusandadonis,1609\nimage,2,venusandadonis,1609\nconfess,2,venusandadonis,1609\naim,2,venusandadonis,1609\ntyrant,2,venusandadonis,1609\nimagination,2,venusandadonis,1609\nstopt,2,venusandadonis,1609\nsheep,2,venusandadonis,1609\n'Give,2,venusandadonis,1609\ndebt,2,venusandadonis,1609\nbarr'd,2,venusandadonis,1609\nstarts,2,venusandadonis,1609\ntongues,2,venusandadonis,1609\nUnless,2,venusandadonis,1609\nspite,2,venusandadonis,1609\nstone,2,venusandadonis,1609\npluck'd,2,venusandadonis,1609\nlearn,2,venusandadonis,1609\nlent,2,venusandadonis,1609\nseeming,2,venusandadonis,1609\nAnother,2,venusandadonis,1609\nthrive,2,venusandadonis,1609\nSometime,2,venusandadonis,1609\nmelts,2,venusandadonis,1609\nhands,2,venusandadonis,1609\nYou,2,venusandadonis,1609\nsovereign,2,venusandadonis,1609\nmurder'd,2,venusandadonis,1609\nabuse,2,venusandadonis,1609\nburns,2,venusandadonis,1609\nfeast,2,venusandadonis,1609\nbreatheth,2,venusandadonis,1609\n'Had,2,venusandadonis,1609\nage,2,venusandadonis,1609\nlover,2,venusandadonis,1609\nhadst,2,venusandadonis,1609\nloud,2,venusandadonis,1609\n'gins,2,venusandadonis,1609\nMay,2,venusandadonis,1609\nsuspect,2,venusandadonis,1609\nspent,2,venusandadonis,1609\nill,2,venusandadonis,1609\nRound,2,venusandadonis,1609\nloved,2,venusandadonis,1609\nspend,2,venusandadonis,1609\nblue,2,venusandadonis,1609\ntributary,2,venusandadonis,1609\nknew,2,venusandadonis,1609\nstrange,2,venusandadonis,1609\nnature,2,venusandadonis,1609\nplace,2,venusandadonis,1609\nentreats,2,venusandadonis,1609\ncontent,2,venusandadonis,1609\npure,2,venusandadonis,1609\nBecause,2,venusandadonis,1609\nsimple,2,venusandadonis,1609\nmouths,2,venusandadonis,1609\nTeaching,2,venusandadonis,1609\nhare,2,venusandadonis,1609\noutward,2,venusandadonis,1609\npark,2,venusandadonis,1609\nslay,2,venusandadonis,1609\nus,2,venusandadonis,1609\nspeaks,2,venusandadonis,1609\nwounding,2,venusandadonis,1609\ndart,2,venusandadonis,1609\nhonour's,2,venusandadonis,1609\nLest,2,venusandadonis,1609\npalm,2,venusandadonis,1609\nMore,2,venusandadonis,1609\ntreads,2,venusandadonis,1609\nsudden,2,venusandadonis,1609\nrushes,2,venusandadonis,1609\nhang,2,venusandadonis,1609\nappears,2,venusandadonis,1609\ntoy,2,venusandadonis,1609\nFull,2,venusandadonis,1609\nivory,2,venusandadonis,1609\nfour,2,venusandadonis,1609\nWishing,2,venusandadonis,1609\nhotly,2,venusandadonis,1609\nlamp,2,venusandadonis,1609\nexcuse,2,venusandadonis,1609\nwhether,2,venusandadonis,1609\ncourse,2,venusandadonis,1609\nweeps,2,venusandadonis,1609\nwithout,2,venusandadonis,1609\nunripe,2,venusandadonis,1609\ntired,2,venusandadonis,1609\nAffection,2,venusandadonis,1609\nking,2,venusandadonis,1609\nFair,2,venusandadonis,1609\npress'd,2,venusandadonis,1609\npoint,2,venusandadonis,1609\nspirit,2,venusandadonis,1609\nmermaid's,2,venusandadonis,1609\nten,2,venusandadonis,1609\nhate,2,venusandadonis,1609\nfoot,2,venusandadonis,1609\nwoman,2,venusandadonis,1609\npower,2,venusandadonis,1609\nfrets,2,venusandadonis,1609\nlack,2,venusandadonis,1609\nrough,2,venusandadonis,1609\nHONORABLE,2,venusandadonis,1609\nobject,2,venusandadonis,1609\ncourser,2,venusandadonis,1609\nturn'd,2,venusandadonis,1609\nwoo'd,2,venusandadonis,1609\npleading,3,venusandadonis,1609\nright,3,venusandadonis,1609\ntroubled,3,venusandadonis,1609\ntold,3,venusandadonis,1609\nfee,3,venusandadonis,1609\ntimes,3,venusandadonis,1609\npurple,3,venusandadonis,1609\nInto,3,venusandadonis,1609\nfar,3,venusandadonis,1609\nchurlish,3,venusandadonis,1609\ndouble,3,venusandadonis,1609\nborrow,3,venusandadonis,1609\nlean,3,venusandadonis,1609\nhoney,3,venusandadonis,1609\nhelp,3,venusandadonis,1609\nwater,3,venusandadonis,1609\nVenus',3,venusandadonis,1609\ngroan,3,venusandadonis,1609\nvain,3,venusandadonis,1609\nlocks,3,venusandadonis,1609\nspread,3,venusandadonis,1609\ndrink,3,venusandadonis,1609\nsigns,3,venusandadonis,1609\nsour,3,venusandadonis,1609\nfriends,3,venusandadonis,1609\nThou,3,venusandadonis,1609\nmouth,3,venusandadonis,1609\nDoth,3,venusandadonis,1609\nstrength,3,venusandadonis,1609\nsoon,3,venusandadonis,1609\nstrife,3,venusandadonis,1609\nvery,3,venusandadonis,1609\namazed,3,venusandadonis,1609\n'If,3,venusandadonis,1609\nmane,3,venusandadonis,1609\nmany,3,venusandadonis,1609\ntempest,3,venusandadonis,1609\nlily,3,venusandadonis,1609\nAll,3,venusandadonis,1609\nkissing,3,venusandadonis,1609\ncoward,3,venusandadonis,1609\ncomes,3,venusandadonis,1609\nknows,3,venusandadonis,1609\ngolden,3,venusandadonis,1609\nwoo,3,venusandadonis,1609\nteach,3,venusandadonis,1609\nheaven's,3,venusandadonis,1609\nover,3,venusandadonis,1609\nview,3,venusandadonis,1609\nwet,3,venusandadonis,1609\nsit,3,venusandadonis,1609\nbound,3,venusandadonis,1609\nthink,3,venusandadonis,1609\nget,3,venusandadonis,1609\n'No,3,venusandadonis,1609\nwit,3,venusandadonis,1609\nscorn,3,venusandadonis,1609\nyield,3,venusandadonis,1609\nstealing,3,venusandadonis,1609\nembrace,3,venusandadonis,1609\nprime,3,venusandadonis,1609\nglutton,3,venusandadonis,1609\nwithin,3,venusandadonis,1609\ncause,3,venusandadonis,1609\nwar,3,venusandadonis,1609\nthieves,3,venusandadonis,1609\nfelt,3,venusandadonis,1609\n'Tis,3,venusandadonis,1609\nThese,3,venusandadonis,1609\nwood,3,venusandadonis,1609\npride,3,venusandadonis,1609\ndanger,3,venusandadonis,1609\nsnow,3,venusandadonis,1609\nwanton,3,venusandadonis,1609\nbrain,3,venusandadonis,1609\nturn,3,venusandadonis,1609\nkill'd,3,venusandadonis,1609\nfault,3,venusandadonis,1609\nencounter,3,venusandadonis,1609\nseeks,3,venusandadonis,1609\nfaced,3,venusandadonis,1609\ndumb,3,venusandadonis,1609\nHere,3,venusandadonis,1609\nfearful,3,venusandadonis,1609\nfeed,3,venusandadonis,1609\nneighs,3,venusandadonis,1609\ncrystal,3,venusandadonis,1609\n'For,3,venusandadonis,1609\nwish,3,venusandadonis,1609\nbold,3,venusandadonis,1609\npleased,3,venusandadonis,1609\nfly,3,venusandadonis,1609\nworld's,3,venusandadonis,1609\nwarm,3,venusandadonis,1609\nSorrow,3,venusandadonis,1609\nbrake,3,venusandadonis,1609\nrich,3,venusandadonis,1609\nsteel,3,venusandadonis,1609\nelse,3,venusandadonis,1609\ntail,3,venusandadonis,1609\nunkind,3,venusandadonis,1609\nstrikes,3,venusandadonis,1609\nfoes,3,venusandadonis,1609\nfast,3,venusandadonis,1609\ncoal,3,venusandadonis,1609\nname,3,venusandadonis,1609\nBe,3,venusandadonis,1609\ndesperate,3,venusandadonis,1609\nblown,3,venusandadonis,1609\nJealousy,3,venusandadonis,1609\nNature,3,venusandadonis,1609\nstay,3,venusandadonis,1609\ngreen,3,venusandadonis,1609\nstar,3,venusandadonis,1609\nmaster,3,venusandadonis,1609\nWithin,3,venusandadonis,1609\nsince,3,venusandadonis,1609\nbed,3,venusandadonis,1609\nquick,3,venusandadonis,1609\nIs,3,venusandadonis,1609\nhairs,3,venusandadonis,1609\nhunt,3,venusandadonis,1609\nalone,3,venusandadonis,1609\nsire,3,venusandadonis,1609\ngold,3,venusandadonis,1609\nMine,3,venusandadonis,1609\nincrease,3,venusandadonis,1609\nweak,3,venusandadonis,1609\nwear,3,venusandadonis,1609\nreplies,3,venusandadonis,1609\nput,3,venusandadonis,1609\njust,3,venusandadonis,1609\ngoes,3,venusandadonis,1609\nbarren,3,venusandadonis,1609\nbrow,3,venusandadonis,1609\ndeer,3,venusandadonis,1609\nfavour,3,venusandadonis,1609\nclouds,3,venusandadonis,1609\nbear,3,venusandadonis,1609\nlook,3,venusandadonis,1609\nstood,3,venusandadonis,1609\nneeds,3,venusandadonis,1609\nMaking,3,venusandadonis,1609\nlegs,3,venusandadonis,1609\nwhereon,3,venusandadonis,1609\nstraight,3,venusandadonis,1609\nleaps,3,venusandadonis,1609\nSince,3,venusandadonis,1609\nthoughts,3,venusandadonis,1609\nfled,3,venusandadonis,1609\n'this,3,venusandadonis,1609\nlion,3,venusandadonis,1609\nloves,3,venusandadonis,1609\nhurt,3,venusandadonis,1609\nbeauteous,3,venusandadonis,1609\nWhere,3,venusandadonis,1609\nLust,3,venusandadonis,1609\ngive,3,venusandadonis,1609\nfield,3,venusandadonis,1609\nhue,3,venusandadonis,1609\nround,3,venusandadonis,1609\ndestroy,3,venusandadonis,1609\nplain,3,venusandadonis,1609\nbred,3,venusandadonis,1609\nshine,3,venusandadonis,1609\nmight,3,venusandadonis,1609\nkind,3,venusandadonis,1609\nwasted,3,venusandadonis,1609\nspeak,3,venusandadonis,1609\nfrown,3,venusandadonis,1609\nshakes,3,venusandadonis,1609\ntwain,3,venusandadonis,1609\nforlorn,3,venusandadonis,1609\nearth's,3,venusandadonis,1609\nalive,3,venusandadonis,1609\nfool,3,venusandadonis,1609\nbids,3,venusandadonis,1609\nAre,4,venusandadonis,1609\nanswer,4,venusandadonis,1609\nfed,4,venusandadonis,1609\npity,4,venusandadonis,1609\ntreasure,4,venusandadonis,1609\nadvantage,4,venusandadonis,1609\nhaste,4,venusandadonis,1609\nshouldst,4,venusandadonis,1609\nrose,4,venusandadonis,1609\nheart's,4,venusandadonis,1609\njoy,4,venusandadonis,1609\nVenus,4,venusandadonis,1609\nsighs,4,venusandadonis,1609\nthings,4,venusandadonis,1609\nnought,4,venusandadonis,1609\nprey,4,venusandadonis,1609\nchase,4,venusandadonis,1609\nFrom,4,venusandadonis,1609\nyoung,4,venusandadonis,1609\nere,4,venusandadonis,1609\n'It,4,venusandadonis,1609\nsaw,4,venusandadonis,1609\ncourage,4,venusandadonis,1609\nbegan,4,venusandadonis,1609\nblack,4,venusandadonis,1609\ncould,4,venusandadonis,1609\ntaste,4,venusandadonis,1609\ngrave,4,venusandadonis,1609\nson,4,venusandadonis,1609\nmorrow,4,venusandadonis,1609\nThus,4,venusandadonis,1609\n'The,4,venusandadonis,1609\nwrong,4,venusandadonis,1609\nsaith,4,venusandadonis,1609\n'Fie,4,venusandadonis,1609\nruns,4,venusandadonis,1609\nboth,4,venusandadonis,1609\nthence,4,venusandadonis,1609\ncries,4,venusandadonis,1609\nrein,4,venusandadonis,1609\nangry,4,venusandadonis,1609\ngrass,4,venusandadonis,1609\nMake,4,venusandadonis,1609\nseems,4,venusandadonis,1609\nheaven,4,venusandadonis,1609\nThough,4,venusandadonis,1609\nsilly,4,venusandadonis,1609\ndied,4,venusandadonis,1609\neven,4,venusandadonis,1609\nrest,4,venusandadonis,1609\never,4,venusandadonis,1609\npassion,4,venusandadonis,1609\nsteed,4,venusandadonis,1609\nbright,4,venusandadonis,1609\nDo,4,venusandadonis,1609\nherself,4,venusandadonis,1609\nsick,4,venusandadonis,1609\nhour,4,venusandadonis,1609\n'But,4,venusandadonis,1609\nburning,4,venusandadonis,1609\ntill,4,venusandadonis,1609\nhope,4,venusandadonis,1609\nEach,4,venusandadonis,1609\ntale,4,venusandadonis,1609\nlay,4,venusandadonis,1609\nreason,4,venusandadonis,1609\ndoves,4,venusandadonis,1609\ncanst,4,venusandadonis,1609\nNo,4,venusandadonis,1609\nlives,4,venusandadonis,1609\nAnon,4,venusandadonis,1609\nprove,4,venusandadonis,1609\ngod,4,venusandadonis,1609\nuse,4,venusandadonis,1609\ngave,4,venusandadonis,1609\nwhom,4,venusandadonis,1609\ncrest,4,venusandadonis,1609\nburn,4,venusandadonis,1609\nthus,4,venusandadonis,1609\nheavenly,4,venusandadonis,1609\ntogether,4,venusandadonis,1609\nbeen,4,venusandadonis,1609\nsaid,4,venusandadonis,1609\nair,4,venusandadonis,1609\ngo,4,venusandadonis,1609\nleft,4,venusandadonis,1609\nman,4,venusandadonis,1609\nbegins,4,venusandadonis,1609\nmen,4,venusandadonis,1609\nthat's,4,venusandadonis,1609\nidle,4,venusandadonis,1609\nsometime,4,venusandadonis,1609\nAdonis',4,venusandadonis,1609\nkeep,4,venusandadonis,1609\ndare,4,venusandadonis,1609\nUnder,4,venusandadonis,1609\nstrive,4,venusandadonis,1609\nbosom,4,venusandadonis,1609\nhast,4,venusandadonis,1609\nsharp,4,venusandadonis,1609\nhaving,5,venusandadonis,1609\nthought,5,venusandadonis,1609\nslain,5,venusandadonis,1609\nWould,5,venusandadonis,1609\nquickly,5,venusandadonis,1609\nUpon,5,venusandadonis,1609\nmortal,5,venusandadonis,1609\n'What,5,venusandadonis,1609\nmyself,5,venusandadonis,1609\nkisses,5,venusandadonis,1609\nmind,5,venusandadonis,1609\nhear,5,venusandadonis,1609\nbreaks,5,venusandadonis,1609\nanother,5,venusandadonis,1609\nnothing,5,venusandadonis,1609\nset,5,venusandadonis,1609\noff,5,venusandadonis,1609\nwhy,5,venusandadonis,1609\nbirds,5,venusandadonis,1609\nsays,5,venusandadonis,1609\nTheir,5,venusandadonis,1609\nsky,5,venusandadonis,1609\nheavy,5,venusandadonis,1609\nworse,5,venusandadonis,1609\ntakes,5,venusandadonis,1609\nold,5,venusandadonis,1609\nvoice,5,venusandadonis,1609\nLove's,5,venusandadonis,1609\nlived,5,venusandadonis,1609\npay,5,venusandadonis,1609\nbow,5,venusandadonis,1609\nOf,5,venusandadonis,1609\nflowers,5,venusandadonis,1609\nstrong,5,venusandadonis,1609\nbid,5,venusandadonis,1609\nsport,5,venusandadonis,1609\nfirst,5,venusandadonis,1609\ndeep,5,venusandadonis,1609\nmad,5,venusandadonis,1609\nany,5,venusandadonis,1609\nlo,5,venusandadonis,1609\nlast,5,venusandadonis,1609\nmorn,5,venusandadonis,1609\nlost,5,venusandadonis,1609\nthose,5,venusandadonis,1609\nsilver,5,venusandadonis,1609\n''Tis,5,venusandadonis,1609\nwe,5,venusandadonis,1609\nspring,5,venusandadonis,1609\nThy,5,venusandadonis,1609\nkill,5,venusandadonis,1609\nlittle,5,venusandadonis,1609\nHow,5,venusandadonis,1609\nhere,6,venusandadonis,1609\nWhereat,6,venusandadonis,1609\nfaint,6,venusandadonis,1609\ndisdain,6,venusandadonis,1609\nwords,6,venusandadonis,1609\nheat,6,venusandadonis,1609\n'And,6,venusandadonis,1609\nonce,6,venusandadonis,1609\nneck,6,venusandadonis,1609\nsorrow,6,venusandadonis,1609\nlove's,6,venusandadonis,1609\nhears,6,venusandadonis,1609\naway,6,venusandadonis,1609\nthemselves,6,venusandadonis,1609\nafter,6,venusandadonis,1609\nrain,6,venusandadonis,1609\nout,6,venusandadonis,1609\nfalse,6,venusandadonis,1609\nground,6,venusandadonis,1609\nfall,6,venusandadonis,1609\ntime,6,venusandadonis,1609\nthese,6,venusandadonis,1609\nqueen,6,venusandadonis,1609\nBy,6,venusandadonis,1609\ntake,6,venusandadonis,1609\nshort,6,venusandadonis,1609\nIt,6,venusandadonis,1609\ndown,6,venusandadonis,1609\nhounds,6,venusandadonis,1609\ngrief,6,venusandadonis,1609\nsees,6,venusandadonis,1609\nlie,6,venusandadonis,1609\nlend,6,venusandadonis,1609\nthyself,6,venusandadonis,1609\nmost,6,venusandadonis,1609\nwound,6,venusandadonis,1609\nlate,6,venusandadonis,1609\nDeath,6,venusandadonis,1609\npart,6,venusandadonis,1609\ntoo,6,venusandadonis,1609\nshalt,6,venusandadonis,1609\nsmell,6,venusandadonis,1609\ndelight,6,venusandadonis,1609\nthough,6,venusandadonis,1609\ndie,6,venusandadonis,1609\nweary,7,venusandadonis,1609\nlies,7,venusandadonis,1609\nhigh,7,venusandadonis,1609\nLook,7,venusandadonis,1609\nThey,7,venusandadonis,1609\nI'll,7,venusandadonis,1609\nwoe,7,venusandadonis,1609\nbefore,7,venusandadonis,1609\n'O,7,venusandadonis,1609\nlooks,7,venusandadonis,1609\nwilt,7,venusandadonis,1609\nseem,7,venusandadonis,1609\ncry,7,venusandadonis,1609\ndost,7,venusandadonis,1609\ncold,7,venusandadonis,1609\ntongue,7,venusandadonis,1609\nlong,7,venusandadonis,1609\nam,7,venusandadonis,1609\ndone,7,venusandadonis,1609\ntrue,7,venusandadonis,1609\ntwo,7,venusandadonis,1609\ntwenty,7,venusandadonis,1609\nhot,7,venusandadonis,1609\ncannot,7,venusandadonis,1609\ndry,7,venusandadonis,1609\nflower,7,venusandadonis,1609\nhimself,7,venusandadonis,1609\nfresh,7,venusandadonis,1609\nmade,8,venusandadonis,1609\nmuch,8,venusandadonis,1609\nhorse,8,venusandadonis,1609\ngentle,8,venusandadonis,1609\ntender,8,venusandadonis,1609\nlife,8,venusandadonis,1609\nworld,8,venusandadonis,1609\nmust,8,venusandadonis,1609\nhead,8,venusandadonis,1609\nsoft,8,venusandadonis,1609\nwho,8,venusandadonis,1609\nway,8,venusandadonis,1609\narms,8,venusandadonis,1609\nown,8,venusandadonis,1609\nTill,8,venusandadonis,1609\nears,8,venusandadonis,1609\nbest,8,venusandadonis,1609\nback,8,venusandadonis,1609\nseen,8,venusandadonis,1609\ngood,8,venusandadonis,1609\nshadow,8,venusandadonis,1609\nlet,8,venusandadonis,1609\n'tis,8,venusandadonis,1609\nleave,8,venusandadonis,1609\nYet,8,venusandadonis,1609\nWhen,8,venusandadonis,1609\ndark,8,venusandadonis,1609\nshame,8,venusandadonis,1609\nevery,9,venusandadonis,1609\nsight,9,venusandadonis,1609\ncheeks,9,venusandadonis,1609\nnor,9,venusandadonis,1609\nsay,9,venusandadonis,1609\nsome,9,venusandadonis,1609\nThen,9,venusandadonis,1609\nNow,9,venusandadonis,1609\ndeath,9,venusandadonis,1609\nsee,9,venusandadonis,1609\nwhite,9,venusandadonis,1609\nthousand,9,venusandadonis,1609\nboy,9,venusandadonis,1609\nunto,9,venusandadonis,1609\nproud,9,venusandadonis,1609\ncan,9,venusandadonis,1609\nbreath,9,venusandadonis,1609\nbreast,9,venusandadonis,1609\near,9,venusandadonis,1609\nmakes,9,venusandadonis,1609\nfoul,9,venusandadonis,1609\nforth,9,venusandadonis,1609\nart,9,venusandadonis,1609\ncheek,10,venusandadonis,1609\nBeing,10,venusandadonis,1609\nEven,10,venusandadonis,1609\ndesire,10,venusandadonis,1609\nday,10,venusandadonis,1609\nIf,10,venusandadonis,1609\nIn,10,venusandadonis,1609\nblood,10,venusandadonis,1609\ngone,10,venusandadonis,1609\nan,10,venusandadonis,1609\nearth,10,venusandadonis,1609\nknow,10,venusandadonis,1609\nother,10,venusandadonis,1609\nA,11,venusandadonis,1609\nthrough,11,venusandadonis,1609\nThis,11,venusandadonis,1609\nfull,11,venusandadonis,1609\nwind,11,venusandadonis,1609\neach,11,venusandadonis,1609\nthere,11,venusandadonis,1609\nMy,11,venusandadonis,1609\nhard,11,venusandadonis,1609\npale,11,venusandadonis,1609\nWhose,12,venusandadonis,1609\nWho,12,venusandadonis,1609\nthine,12,venusandadonis,1609\nsuch,12,venusandadonis,1609\nthan,12,venusandadonis,1609\nwhose,12,venusandadonis,1609\npoor,12,venusandadonis,1609\nAdonis,12,venusandadonis,1609\nhand,12,venusandadonis,1609\nLove,13,venusandadonis,1609\nmine,13,venusandadonis,1609\nwell,13,venusandadonis,1609\nmay,13,venusandadonis,1609\nhow,13,venusandadonis,1609\nmake,14,venusandadonis,1609\nfire,14,venusandadonis,1609\nWhich,14,venusandadonis,1609\nLike,14,venusandadonis,1609\ndead,14,venusandadonis,1609\nup,14,venusandadonis,1609\nWhat,14,venusandadonis,1609\nred,15,venusandadonis,1609\nwhich,15,venusandadonis,1609\nupon,15,venusandadonis,1609\nlight,15,venusandadonis,1609\nyour,15,venusandadonis,1609\nSo,15,venusandadonis,1609\nyou,15,venusandadonis,1609\ndo,15,venusandadonis,1609\ntears,16,venusandadonis,1609\nagain,16,venusandadonis,1609\nboar,16,venusandadonis,1609\nsun,16,venusandadonis,1609\nhad,16,venusandadonis,1609\nthen,17,venusandadonis,1609\nWith,17,venusandadonis,1609\nsweet,17,venusandadonis,1609\nwhat,17,venusandadonis,1609\nyet,17,venusandadonis,1609\nO,18,venusandadonis,1609\nquoth,18,venusandadonis,1609\nstill,18,venusandadonis,1609\nfear,18,venusandadonis,1609\nAs,18,venusandadonis,1609\nOr,18,venusandadonis,1609\nif,18,venusandadonis,1609\nHis,19,venusandadonis,1609\nHer,19,venusandadonis,1609\nwhen,19,venusandadonis,1609\nbeauty,19,venusandadonis,1609\nshould,19,venusandadonis,1609\nwhere,20,venusandadonis,1609\nface,20,venusandadonis,1609\nfair,20,venusandadonis,1609\nwere,20,venusandadonis,1609\nkiss,20,venusandadonis,1609\nnever,20,venusandadonis,1609\nbeing,20,venusandadonis,1609\neye,21,venusandadonis,1609\nnight,21,venusandadonis,1609\nwould,21,venusandadonis,1609\nor,22,venusandadonis,1609\nhave,23,venusandadonis,1609\nThat,24,venusandadonis,1609\nwas,24,venusandadonis,1609\nlips,24,venusandadonis,1609\ndid,25,venusandadonis,1609\nhath,25,venusandadonis,1609\nHe,26,venusandadonis,1609\nShe,27,venusandadonis,1609\nthem,27,venusandadonis,1609\nheart,28,venusandadonis,1609\none,28,venusandadonis,1609\nmore,28,venusandadonis,1609\nare,28,venusandadonis,1609\nfrom,30,venusandadonis,1609\nat,30,venusandadonis,1609\nFor,31,venusandadonis,1609\nwill,31,venusandadonis,1609\neyes,31,venusandadonis,1609\nthe,287,venusandadonis,1609\nTo,33,venusandadonis,1609\nthey,34,venusandadonis,1609\nno,34,venusandadonis,1609\nBut,35,venusandadonis,1609\nshall,35,venusandadonis,1609\nnow,36,venusandadonis,1609\ntheir,36,venusandadonis,1609\nme,38,venusandadonis,1609\nlike,39,venusandadonis,1609\nthis,39,venusandadonis,1609\nthee,41,venusandadonis,1609\nfor,41,venusandadonis,1609\nbut,41,venusandadonis,1609\nby,43,venusandadonis,1609\nall,43,venusandadonis,1609\ndoth,45,venusandadonis,1609\nthy,50,venusandadonis,1609\nThe,51,venusandadonis,1609\nlove,52,venusandadonis,1609\nas,53,venusandadonis,1609\non,55,venusandadonis,1609\nso,57,venusandadonis,1609\nhim,58,venusandadonis,1609\nbe,58,venusandadonis,1609\nit,62,venusandadonis,1609\nmy,64,venusandadonis,1609\nthou,65,venusandadonis,1609\n',68,venusandadonis,1609\nnot,78,venusandadonis,1609\nI,81,venusandadonis,1609\nthat,84,venusandadonis,1609\nis,85,venusandadonis,1609\nwith,101,venusandadonis,1609\nhe,107,venusandadonis,1609\nAnd,110,venusandadonis,1609\nof,119,venusandadonis,1609\nher,133,venusandadonis,1609\nin,133,venusandadonis,1609\na,134,venusandadonis,1609\nshe,136,venusandadonis,1609\nhis,163,venusandadonis,1609\nto,163,venusandadonis,1609\nand,211,venusandadonis,1609\nhive,1,loverscomplaint,1609\nplaintful,1,loverscomplaint,1609\nAre,1,loverscomplaint,1609\nThan,1,loverscomplaint,1609\nattended,1,loverscomplaint,1609\nmoisture,1,loverscomplaint,1609\npraised,1,loverscomplaint,1609\nparticular,1,loverscomplaint,1609\ntend,1,loverscomplaint,1609\nparty,1,loverscomplaint,1609\nliveries,1,loverscomplaint,1609\nveil'd,1,loverscomplaint,1609\nLove's,1,loverscomplaint,1609\nverdict,1,loverscomplaint,1609\njet,1,loverscomplaint,1609\nright,1,loverscomplaint,1609\nbare,1,loverscomplaint,1609\nthunder,1,loverscomplaint,1609\nelse,1,loverscomplaint,1609\nHarm,1,loverscomplaint,1609\nregard,1,loverscomplaint,1609\ntheirs,1,loverscomplaint,1609\nshows,1,loverscomplaint,1609\nfee,1,loverscomplaint,1609\nfoil,1,loverscomplaint,1609\nquality,1,loverscomplaint,1609\nwealth,1,loverscomplaint,1609\nlines,1,loverscomplaint,1609\neach,1,loverscomplaint,1609\npoison'd,1,loverscomplaint,1609\nforbid,1,loverscomplaint,1609\ndefiling,1,loverscomplaint,1609\nSometimes,1,loverscomplaint,1609\ncautels,1,loverscomplaint,1609\ncontrives,1,loverscomplaint,1609\npatient,1,loverscomplaint,1609\ndaff'd,1,loverscomplaint,1609\ngrew,1,loverscomplaint,1609\nsmiled,1,loverscomplaint,1609\ntragic,1,loverscomplaint,1609\nbastards,1,loverscomplaint,1609\npity,1,loverscomplaint,1609\nglazed,1,loverscomplaint,1609\nbrain'd,1,loverscomplaint,1609\nhour,1,loverscomplaint,1609\nCOMPLAINT,1,loverscomplaint,1609\ntill,1,loverscomplaint,1609\ngilded,1,loverscomplaint,1609\nreproach,1,loverscomplaint,1609\nregister,1,loverscomplaint,1609\nred,1,loverscomplaint,1609\nextincture,1,loverscomplaint,1609\nEnswathed,1,loverscomplaint,1609\nenchant,1,loverscomplaint,1609\nProud,1,loverscomplaint,1609\nadvice,1,loverscomplaint,1609\nfancy,1,loverscomplaint,1609\ncommended,1,loverscomplaint,1609\nprecedent,1,loverscomplaint,1609\ninfected,1,loverscomplaint,1609\nhat,1,loverscomplaint,1609\n'Well,1,loverscomplaint,1609\nmotion,1,loverscomplaint,1609\nWhat's,1,loverscomplaint,1609\nassay,1,loverscomplaint,1609\ndouble,1,loverscomplaint,1609\ntame,1,loverscomplaint,1609\nbounds,1,loverscomplaint,1609\nmistress,1,loverscomplaint,1609\nsubjection,1,loverscomplaint,1609\ntermless,1,loverscomplaint,1609\nprefer,1,loverscomplaint,1609\nlargeness,1,loverscomplaint,1609\nwish'd,1,loverscomplaint,1609\nacture,1,loverscomplaint,1609\ndistant,1,loverscomplaint,1609\noccasion,1,loverscomplaint,1609\ngranted,1,loverscomplaint,1609\nburn'd,1,loverscomplaint,1609\nAy,1,loverscomplaint,1609\nproofs,1,loverscomplaint,1609\nballs,1,loverscomplaint,1609\nfollowing,1,loverscomplaint,1609\nreign'd,1,loverscomplaint,1609\necstasy,1,loverscomplaint,1609\ncontroversy,1,loverscomplaint,1609\ntale,1,loverscomplaint,1609\nis't,1,loverscomplaint,1609\nspoil,1,loverscomplaint,1609\ncoat,1,loverscomplaint,1609\nslackly,1,loverscomplaint,1609\nlaw,1,loverscomplaint,1609\nTearing,1,loverscomplaint,1609\nhurls,1,loverscomplaint,1609\n''Among,1,loverscomplaint,1609\ndepend,1,loverscomplaint,1609\nwitchcraft,1,loverscomplaint,1609\nman's,1,loverscomplaint,1609\nthousand,1,loverscomplaint,1609\nmaim,1,loverscomplaint,1609\namplify,1,loverscomplaint,1609\nmoved,1,loverscomplaint,1609\nadvantage,1,loverscomplaint,1609\nmotives,1,loverscomplaint,1609\ntore,1,loverscomplaint,1609\npeace,1,loverscomplaint,1609\nKnew,1,loverscomplaint,1609\nyouthful,1,loverscomplaint,1609\nWhether,1,loverscomplaint,1609\neternal,1,loverscomplaint,1609\nDemand,1,loverscomplaint,1609\nphraseless,1,loverscomplaint,1609\nAppear,1,loverscomplaint,1609\ndiverted,1,loverscomplaint,1609\nsleided,1,loverscomplaint,1609\n'Thus,1,loverscomplaint,1609\nrank,1,loverscomplaint,1609\nAgainst,1,loverscomplaint,1609\nCounsel,1,loverscomplaint,1609\nerrors,1,loverscomplaint,1609\nreplication,1,loverscomplaint,1609\namong,1,loverscomplaint,1609\nblend,1,loverscomplaint,1609\n''Now,1,loverscomplaint,1609\npenn'd,1,loverscomplaint,1609\nhill,1,loverscomplaint,1609\naloes,1,loverscomplaint,1609\nannexions,1,loverscomplaint,1609\nLet,1,loverscomplaint,1609\nteen,1,loverscomplaint,1609\npaled,1,loverscomplaint,1609\nNature,1,loverscomplaint,1609\nwilt,1,loverscomplaint,1609\nposied,1,loverscomplaint,1609\nbat,1,loverscomplaint,1609\nrents,1,loverscomplaint,1609\npardon,1,loverscomplaint,1609\nlands,1,loverscomplaint,1609\naccident,1,loverscomplaint,1609\nproof,1,loverscomplaint,1609\nholy,1,loverscomplaint,1609\nspace,1,loverscomplaint,1609\nquit,1,loverscomplaint,1609\nblasting,1,loverscomplaint,1609\norbed,1,loverscomplaint,1609\nnote,1,loverscomplaint,1609\nkept,1,loverscomplaint,1609\nheld,1,loverscomplaint,1609\nstay,1,loverscomplaint,1609\nsickly,1,loverscomplaint,1609\ngreen,1,loverscomplaint,1609\nbeautiful,1,loverscomplaint,1609\nsmallest,1,loverscomplaint,1609\nhell,1,loverscomplaint,1609\nmansions,1,loverscomplaint,1609\nblazon'd,1,loverscomplaint,1609\nthinks,1,loverscomplaint,1609\nsubduing,1,loverscomplaint,1609\npangs,1,loverscomplaint,1609\ncontains,1,loverscomplaint,1609\nlack'd,1,loverscomplaint,1609\nfeasts,1,loverscomplaint,1609\nseason'd,1,loverscomplaint,1609\nunto,1,loverscomplaint,1609\nHanging,1,loverscomplaint,1609\nkinds,1,loverscomplaint,1609\npeep'd,1,loverscomplaint,1609\nMust,1,loverscomplaint,1609\n''But,1,loverscomplaint,1609\nrichest,1,loverscomplaint,1609\ninundation,1,loverscomplaint,1609\ngrazed,1,loverscomplaint,1609\nrestore,1,loverscomplaint,1609\nflood,1,loverscomplaint,1609\nlocks,1,loverscomplaint,1609\nenchanted,1,loverscomplaint,1609\nPieced,1,loverscomplaint,1609\nReligious,1,loverscomplaint,1609\nEffects,1,loverscomplaint,1609\nbesiege,1,loverscomplaint,1609\nscale,1,loverscomplaint,1609\nCried,1,loverscomplaint,1609\nvale,1,loverscomplaint,1609\nsight,1,loverscomplaint,1609\ndeified,1,loverscomplaint,1609\nbeaded,1,loverscomplaint,1609\nfavours,1,loverscomplaint,1609\nconceited,1,loverscomplaint,1609\nswooning,1,loverscomplaint,1609\nsweetens,1,loverscomplaint,1609\ngives,1,loverscomplaint,1609\ninto,1,loverscomplaint,1609\npast,1,loverscomplaint,1609\nluxury,1,loverscomplaint,1609\nplat,1,loverscomplaint,1609\nnaked,1,loverscomplaint,1609\namber,1,loverscomplaint,1609\ntender,1,loverscomplaint,1609\npreach'd,1,loverscomplaint,1609\nthings,1,loverscomplaint,1609\ncleft,1,loverscomplaint,1609\nvelvet,1,loverscomplaint,1609\nadvance,1,loverscomplaint,1609\nappear,1,loverscomplaint,1609\ndismount,1,loverscomplaint,1609\nnice,1,loverscomplaint,1609\nmanage,1,loverscomplaint,1609\nencrimson'd,1,loverscomplaint,1609\nperils,1,loverscomplaint,1609\nEre,1,loverscomplaint,1609\nrubies,1,loverscomplaint,1609\nfickle,1,loverscomplaint,1609\nshunn'd,1,loverscomplaint,1609\nnowhere,1,loverscomplaint,1609\nlaugh,1,loverscomplaint,1609\nsoul,1,loverscomplaint,1609\nunder,1,loverscomplaint,1609\npined,1,loverscomplaint,1609\nbecame,1,loverscomplaint,1609\nobserved,1,loverscomplaint,1609\nobey,1,loverscomplaint,1609\nkiss'd,1,loverscomplaint,1609\ndescended,1,loverscomplaint,1609\nimpleach'd,1,loverscomplaint,1609\nWeak,1,loverscomplaint,1609\nfairer,1,loverscomplaint,1609\nlow,1,loverscomplaint,1609\nexamples,1,loverscomplaint,1609\ntrophies,1,loverscomplaint,1609\naloof,1,loverscomplaint,1609\nplants,1,loverscomplaint,1609\ndamned,1,loverscomplaint,1609\nlife,1,loverscomplaint,1609\ntruth,1,loverscomplaint,1609\ngold,1,loverscomplaint,1609\npleasures,1,loverscomplaint,1609\nlandlord,1,loverscomplaint,1609\naught,1,loverscomplaint,1609\nvaliant,1,loverscomplaint,1609\nperused,1,loverscomplaint,1609\ndivide,1,loverscomplaint,1609\nseem,1,loverscomplaint,1609\n'gan,1,loverscomplaint,1609\ncharm,1,loverscomplaint,1609\ntroth,1,loverscomplaint,1609\naffectedly,1,loverscomplaint,1609\nfalseness,1,loverscomplaint,1609\nsits,1,loverscomplaint,1609\narguments,1,loverscomplaint,1609\nremain,1,loverscomplaint,1609\nespied,1,loverscomplaint,1609\nfeeling,1,loverscomplaint,1609\nWould,1,loverscomplaint,1609\nquickly,1,loverscomplaint,1609\nworld,1,loverscomplaint,1609\nnigh,1,loverscomplaint,1609\nwounded,1,loverscomplaint,1609\nstraw,1,loverscomplaint,1609\nsports,1,loverscomplaint,1609\nsupposed,1,loverscomplaint,1609\ngood,1,loverscomplaint,1609\n'twixt,1,loverscomplaint,1609\ngrief,1,loverscomplaint,1609\ncurious,1,loverscomplaint,1609\nHeard,1,loverscomplaint,1609\nmetal,1,loverscomplaint,1609\nunderstood,1,loverscomplaint,1609\nradiance,1,loverscomplaint,1609\nschedules,1,loverscomplaint,1609\n'Small,1,loverscomplaint,1609\ncloister,1,loverscomplaint,1609\nscars,1,loverscomplaint,1609\ncost,1,loverscomplaint,1609\nrender,1,loverscomplaint,1609\ndifference,1,loverscomplaint,1609\nawhile,1,loverscomplaint,1609\nbattle,1,loverscomplaint,1609\nthereof,1,loverscomplaint,1609\ngouty,1,loverscomplaint,1609\nwhom,1,loverscomplaint,1609\ngoodly,1,loverscomplaint,1609\ncase,1,loverscomplaint,1609\nearly,1,loverscomplaint,1609\nlattice,1,loverscomplaint,1609\nere,1,loverscomplaint,1609\ngarment,1,loverscomplaint,1609\nholiest,1,loverscomplaint,1609\nReligion's,1,loverscomplaint,1609\nSo,1,loverscomplaint,1609\nweepingly,1,loverscomplaint,1609\nornament,1,loverscomplaint,1609\nshielded,1,loverscomplaint,1609\nsanctified,1,loverscomplaint,1609\nyours,1,loverscomplaint,1609\naltar,1,loverscomplaint,1609\nthreaden,1,loverscomplaint,1609\nthus,1,loverscomplaint,1609\nchin,1,loverscomplaint,1609\nreign,1,loverscomplaint,1609\nchill,1,loverscomplaint,1609\nstrives,1,loverscomplaint,1609\nsecrecy,1,loverscomplaint,1609\nsacred,1,loverscomplaint,1609\ndote,1,loverscomplaint,1609\nconcave,1,loverscomplaint,1609\ngeneral,1,loverscomplaint,1609\ndoth,1,loverscomplaint,1609\ncry,1,loverscomplaint,1609\nsigh'd,1,loverscomplaint,1609\ndiscontent,1,loverscomplaint,1609\noblations,1,loverscomplaint,1609\neffect,1,loverscomplaint,1609\ndevice,1,loverscomplaint,1609\nairy,1,loverscomplaint,1609\ngraced,1,loverscomplaint,1609\nhigh,1,loverscomplaint,1609\ndost,1,loverscomplaint,1609\nender,1,loverscomplaint,1609\nlikewise,1,loverscomplaint,1609\nleaves,1,loverscomplaint,1609\nfilial,1,loverscomplaint,1609\nguards,1,loverscomplaint,1609\nsadly,1,loverscomplaint,1609\neyne,1,loverscomplaint,1609\nappertainings,1,loverscomplaint,1609\ndownward,1,loverscomplaint,1609\npour,1,loverscomplaint,1609\nreconciled,1,loverscomplaint,1609\npine,1,loverscomplaint,1609\n'Yet,1,loverscomplaint,1609\nsistering,1,loverscomplaint,1609\nequals,1,loverscomplaint,1609\nhours,1,loverscomplaint,1609\n'In,1,loverscomplaint,1609\nundistinguish'd,1,loverscomplaint,1609\nlike,1,loverscomplaint,1609\nsat,1,loverscomplaint,1609\nqualities,1,loverscomplaint,1609\nsatisfaction,1,loverscomplaint,1609\n'It,1,loverscomplaint,1609\nkindred,1,loverscomplaint,1609\nsonnets,1,loverscomplaint,1609\nstream,1,loverscomplaint,1609\nremove,1,loverscomplaint,1609\nCrack'd,1,loverscomplaint,1609\nreworded,1,loverscomplaint,1609\ninvised,1,loverscomplaint,1609\npaleness,1,loverscomplaint,1609\nbosoms,1,loverscomplaint,1609\nThis,1,loverscomplaint,1609\nenrich'd,1,loverscomplaint,1609\nunshorn,1,loverscomplaint,1609\njewel,1,loverscomplaint,1609\nwords,1,loverscomplaint,1609\nbrinish,1,loverscomplaint,1609\npensived,1,loverscomplaint,1609\npurposed,1,loverscomplaint,1609\nsilk,1,loverscomplaint,1609\nauthorized,1,loverscomplaint,1609\napplying,1,loverscomplaint,1609\nCatching,1,loverscomplaint,1609\nblush,1,loverscomplaint,1609\nbroken,1,loverscomplaint,1609\nFeeling,1,loverscomplaint,1609\nglow'd,1,loverscomplaint,1609\ninjury,1,loverscomplaint,1609\nglowing,1,loverscomplaint,1609\nShowing,1,loverscomplaint,1609\namorously,1,loverscomplaint,1609\nbulwarks,1,loverscomplaint,1609\nfolded,1,loverscomplaint,1609\nreading,1,loverscomplaint,1609\nbelong,1,loverscomplaint,1609\nhurting,1,loverscomplaint,1609\nCould,1,loverscomplaint,1609\nskin,1,loverscomplaint,1609\nhear,1,loverscomplaint,1609\nadditions,1,loverscomplaint,1609\nhead,1,loverscomplaint,1609\ntongue,1,loverscomplaint,1609\ncarriage,1,loverscomplaint,1609\nexclaim,1,loverscomplaint,1609\ncomes,1,loverscomplaint,1609\ngate,1,loverscomplaint,1609\nhearing,1,loverscomplaint,1609\npicture,1,loverscomplaint,1609\n'And,1,loverscomplaint,1609\nformal,1,loverscomplaint,1609\nThey,1,loverscomplaint,1609\nsorrow's,1,loverscomplaint,1609\nsheaved,1,loverscomplaint,1609\nafflicted,1,loverscomplaint,1609\nassign'd,1,loverscomplaint,1609\nbegs,1,loverscomplaint,1609\nrider,1,loverscomplaint,1609\nfull,1,loverscomplaint,1609\nunexperient,1,loverscomplaint,1609\ndeceits,1,loverscomplaint,1609\n''Look,1,loverscomplaint,1609\nwoo,1,loverscomplaint,1609\nacceptance,1,loverscomplaint,1609\nbestow,1,loverscomplaint,1609\ninvite,1,loverscomplaint,1609\nBoth,1,loverscomplaint,1609\ncrooked,1,loverscomplaint,1609\npoor,1,loverscomplaint,1609\npotential,1,loverscomplaint,1609\ncame,1,loverscomplaint,1609\ngrievance,1,loverscomplaint,1609\nfools,1,loverscomplaint,1609\nNor,1,loverscomplaint,1609\nlabour,1,loverscomplaint,1609\nsoft,1,loverscomplaint,1609\nAccomplish'd,1,loverscomplaint,1609\nruffle,1,loverscomplaint,1609\nblusterer,1,loverscomplaint,1609\ncaged,1,loverscomplaint,1609\npearls,1,loverscomplaint,1609\nhued,1,loverscomplaint,1609\nheaven's,1,loverscomplaint,1609\nnature's,1,loverscomplaint,1609\nfreedom,1,loverscomplaint,1609\n'scapeth,1,loverscomplaint,1609\nseal'd,1,loverscomplaint,1609\noutwards,1,loverscomplaint,1609\nstorm,1,loverscomplaint,1609\nstory,1,loverscomplaint,1609\ndeed,1,loverscomplaint,1609\nInk,1,loverscomplaint,1609\nsear'd,1,loverscomplaint,1609\ncurls,1,loverscomplaint,1609\nbegan,1,loverscomplaint,1609\ncoldly,1,loverscomplaint,1609\nblack,1,loverscomplaint,1609\nbreath,1,loverscomplaint,1609\naffection,1,loverscomplaint,1609\npatterns,1,loverscomplaint,1609\nonce,1,loverscomplaint,1609\npromised,1,loverscomplaint,1609\nmood,1,loverscomplaint,1609\nReserved,1,loverscomplaint,1609\nsupplicant,1,loverscomplaint,1609\npapers,1,loverscomplaint,1609\ncredent,1,loverscomplaint,1609\nsleep,1,loverscomplaint,1609\nborrow'd,1,loverscomplaint,1609\nbetray,1,loverscomplaint,1609\nfurther,1,loverscomplaint,1609\naim,1,loverscomplaint,1609\nprivileged,1,loverscomplaint,1609\nview,1,loverscomplaint,1609\nletters,1,loverscomplaint,1609\ngo,1,loverscomplaint,1609\nraise,1,loverscomplaint,1609\nwarmed,1,loverscomplaint,1609\nsubdue,1,loverscomplaint,1609\nfluxive,1,loverscomplaint,1609\nocean,1,loverscomplaint,1609\nimagination,1,loverscomplaint,1609\nbraided,1,loverscomplaint,1609\nrarest,1,loverscomplaint,1609\ncurrent,1,loverscomplaint,1609\nbear,1,loverscomplaint,1609\nstood,1,loverscomplaint,1609\ncherubin,1,loverscomplaint,1609\nneeds,1,loverscomplaint,1609\nwrath,1,loverscomplaint,1609\nweb,1,loverscomplaint,1609\nspheres,1,loverscomplaint,1609\ndesired,1,loverscomplaint,1609\nliving,1,loverscomplaint,1609\ngain,1,loverscomplaint,1609\nOft,1,loverscomplaint,1609\nLending,1,loverscomplaint,1609\nsums,1,loverscomplaint,1609\nspeeches,1,loverscomplaint,1609\ntongued,1,loverscomplaint,1609\npervert,1,loverscomplaint,1609\nFound,1,loverscomplaint,1609\nnapkin,1,loverscomplaint,1609\ndwell,1,loverscomplaint,1609\nfountains,1,loverscomplaint,1609\nstone,1,loverscomplaint,1609\nspite,1,loverscomplaint,1609\ntaste,1,loverscomplaint,1609\nwho,1,loverscomplaint,1609\n'scape,1,loverscomplaint,1609\nTowards,1,loverscomplaint,1609\nany,1,loverscomplaint,1609\nlight,1,loverscomplaint,1609\nsmiling,1,loverscomplaint,1609\nvictory,1,loverscomplaint,1609\n''And,1,loverscomplaint,1609\nthink,1,loverscomplaint,1609\nget,1,loverscomplaint,1609\nsting,1,loverscomplaint,1609\nopal,1,loverscomplaint,1609\nsubdued,1,loverscomplaint,1609\nlent,1,loverscomplaint,1609\nforces,1,loverscomplaint,1609\nenpatron,1,loverscomplaint,1609\ndoing,1,loverscomplaint,1609\nstalk,1,loverscomplaint,1609\nseeming,1,loverscomplaint,1609\nlaugher,1,loverscomplaint,1609\nexample,1,loverscomplaint,1609\nFinding,1,loverscomplaint,1609\nthine,1,loverscomplaint,1609\nfastly,1,loverscomplaint,1609\nlend,1,loverscomplaint,1609\nstale,1,loverscomplaint,1609\nApplied,1,loverscomplaint,1609\nboast,1,loverscomplaint,1609\nsake,1,loverscomplaint,1609\noutwardly,1,loverscomplaint,1609\nmargent,1,loverscomplaint,1609\nParadise,1,loverscomplaint,1609\ntouch'd,1,loverscomplaint,1609\nstole,1,loverscomplaint,1609\nsister,1,loverscomplaint,1609\n''All,1,loverscomplaint,1609\nmastering,1,loverscomplaint,1609\nhands,1,loverscomplaint,1609\nwit,1,loverscomplaint,1609\nmaund,1,loverscomplaint,1609\nwake,1,loverscomplaint,1609\nbeguiling,1,loverscomplaint,1609\nsapphire,1,loverscomplaint,1609\ntrim,1,loverscomplaint,1609\nphoenix,1,loverscomplaint,1609\nAsk'd,1,loverscomplaint,1609\ndeceives,1,loverscomplaint,1609\ndisciplined,1,loverscomplaint,1609\nay,1,loverscomplaint,1609\nspongy,1,loverscomplaint,1609\naudit,1,loverscomplaint,1609\nwin,1,loverscomplaint,1609\n''How,1,loverscomplaint,1609\noft,1,loverscomplaint,1609\n'twas,1,loverscomplaint,1609\nam,1,loverscomplaint,1609\nan,1,loverscomplaint,1609\nbeseech'd,1,loverscomplaint,1609\namend,1,loverscomplaint,1609\nah,1,loverscomplaint,1609\nwhy,1,loverscomplaint,1609\nsorrow,1,loverscomplaint,1609\nnewly,1,loverscomplaint,1609\nyield,1,loverscomplaint,1609\ncurb,1,loverscomplaint,1609\nSince,1,loverscomplaint,1609\ntwisted,1,loverscomplaint,1609\nblunting,1,loverscomplaint,1609\nemerald,1,loverscomplaint,1609\nsays,1,loverscomplaint,1609\ncongest,1,loverscomplaint,1609\nwoes,1,loverscomplaint,1609\nsexes,1,loverscomplaint,1609\nbetray'd,1,loverscomplaint,1609\nassuage,1,loverscomplaint,1609\nthoughts,1,loverscomplaint,1609\nring,1,loverscomplaint,1609\nSweetly,1,loverscomplaint,1609\nflew,1,loverscomplaint,1609\nencloses,1,loverscomplaint,1609\ngems,1,loverscomplaint,1609\nskill,1,loverscomplaint,1609\nspreading,1,loverscomplaint,1609\nuntuck'd,1,loverscomplaint,1609\nlips,1,loverscomplaint,1609\nbondage,1,loverscomplaint,1609\nunconstrained,1,loverscomplaint,1609\nsmall,1,loverscomplaint,1609\ngan,1,loverscomplaint,1609\nsworn,1,loverscomplaint,1609\nthee,1,loverscomplaint,1609\nobeys,1,loverscomplaint,1609\nwinds,1,loverscomplaint,1609\ndifferent,1,loverscomplaint,1609\nmoment,1,loverscomplaint,1609\nbloodless,1,loverscomplaint,1609\nbestow'd,1,loverscomplaint,1609\ndialogued,1,loverscomplaint,1609\n'Many,1,loverscomplaint,1609\nsawn,1,loverscomplaint,1609\nmelting,1,loverscomplaint,1609\nmonarch's,1,loverscomplaint,1609\nuntidy,1,loverscomplaint,1609\nphysic,1,loverscomplaint,1609\nSaw,1,loverscomplaint,1609\nabide,1,loverscomplaint,1609\nprocured,1,loverscomplaint,1609\nflight,1,loverscomplaint,1609\namorous,1,loverscomplaint,1609\nlivery,1,loverscomplaint,1609\nHallow'd,1,loverscomplaint,1609\nhoard,1,loverscomplaint,1609\nsometime,1,loverscomplaint,1609\nearth,1,loverscomplaint,1609\ndesign,1,loverscomplaint,1609\nnegligence,1,loverscomplaint,1609\nimpediments,1,loverscomplaint,1609\nlast,1,loverscomplaint,1609\nremains,1,loverscomplaint,1609\nsometimes,1,loverscomplaint,1609\nterror,1,loverscomplaint,1609\nStorming,1,loverscomplaint,1609\naptness,1,loverscomplaint,1609\nsubtle,1,loverscomplaint,1609\nadulterate,1,loverscomplaint,1609\naccorded,1,loverscomplaint,1609\nlevel,1,loverscomplaint,1609\ngroans,1,loverscomplaint,1609\ngrounds,1,loverscomplaint,1609\ngyves,1,loverscomplaint,1609\ntalents,1,loverscomplaint,1609\ndoubt,1,loverscomplaint,1609\noffences,1,loverscomplaint,1609\neither's,1,loverscomplaint,1609\nlate,1,loverscomplaint,1609\nway,1,loverscomplaint,1609\nfather,1,loverscomplaint,1609\nreal,1,loverscomplaint,1609\nExperience,1,loverscomplaint,1609\nunapproved,1,loverscomplaint,1609\nresolved,1,loverscomplaint,1609\nduty,1,loverscomplaint,1609\ntuned,1,loverscomplaint,1609\nif,1,loverscomplaint,1609\ndiamond,1,loverscomplaint,1609\nheave,1,loverscomplaint,1609\nMay,1,loverscomplaint,1609\nshrieking,1,loverscomplaint,1609\narms,1,loverscomplaint,1609\nEncamp'd,1,loverscomplaint,1609\nmaidens',1,loverscomplaint,1609\nstuck,1,loverscomplaint,1609\nspent,1,loverscomplaint,1609\nreceive,1,loverscomplaint,1609\nless,1,loverscomplaint,1609\nReason,1,loverscomplaint,1609\nthose,1,loverscomplaint,1609\naudience,1,loverscomplaint,1609\ntributes,1,loverscomplaint,1609\nill,1,loverscomplaint,1609\nlist,1,loverscomplaint,1609\n''When,1,loverscomplaint,1609\n'though,1,loverscomplaint,1609\noath,1,loverscomplaint,1609\nknow,1,loverscomplaint,1609\nfount,1,loverscomplaint,1609\nknot,1,loverscomplaint,1609\nharms,1,loverscomplaint,1609\nspend,1,loverscomplaint,1609\n'Father,1,loverscomplaint,1609\naids,1,loverscomplaint,1609\nApril,1,loverscomplaint,1609\nplatted,1,loverscomplaint,1609\nconsecrations,1,loverscomplaint,1609\nGrace,1,loverscomplaint,1609\nintend,1,loverscomplaint,1609\nthemselves,1,loverscomplaint,1609\n'Tis,1,loverscomplaint,1609\nsepulchres,1,loverscomplaint,1609\nbeauteous,1,loverscomplaint,1609\nThese,1,loverscomplaint,1609\ncompound,1,loverscomplaint,1609\nreceived,1,loverscomplaint,1609\nappetite,1,loverscomplaint,1609\nshow'd,1,loverscomplaint,1609\nstrange,1,loverscomplaint,1609\nConsents,1,loverscomplaint,1609\nimpressest,1,loverscomplaint,1609\nbrowny,1,loverscomplaint,1609\nreceives,1,loverscomplaint,1609\nFiguring,1,loverscomplaint,1609\nserve,1,loverscomplaint,1609\nturn,1,loverscomplaint,1609\ntempter,1,loverscomplaint,1609\nclamours,1,loverscomplaint,1609\nforbod,1,loverscomplaint,1609\nProclaim'd,1,loverscomplaint,1609\nThere,1,loverscomplaint,1609\nBelieved,1,loverscomplaint,1609\napace,1,loverscomplaint,1609\ncharm'd,1,loverscomplaint,1609\ncontent,1,loverscomplaint,1609\npure,1,loverscomplaint,1609\nafraid,1,loverscomplaint,1609\nFresh,1,loverscomplaint,1609\nbuilded,1,loverscomplaint,1609\nCame,1,loverscomplaint,1609\nharm'd,1,loverscomplaint,1609\nbore,1,loverscomplaint,1609\nWorks,1,loverscomplaint,1609\nbrought,1,loverscomplaint,1609\nrunning,1,loverscomplaint,1609\nwarm'd,1,loverscomplaint,1609\nwitness,1,loverscomplaint,1609\ntempted,1,loverscomplaint,1609\npersonal,1,loverscomplaint,1609\nbounty,1,loverscomplaint,1609\ncover'd,1,loverscomplaint,1609\ncivil,1,loverscomplaint,1609\nThought,1,loverscomplaint,1609\nhard,1,loverscomplaint,1609\ncomely,1,loverscomplaint,1609\n''My,1,loverscomplaint,1609\ngrained,1,loverscomplaint,1609\nhail,1,loverscomplaint,1609\ndieted,1,loverscomplaint,1609\nsweets,1,loverscomplaint,1609\nabsence,1,loverscomplaint,1609\nWhereon,1,loverscomplaint,1609\nlover'd,1,loverscomplaint,1609\ncombined,1,loverscomplaint,1609\nup,1,loverscomplaint,1609\nfix'd,1,loverscomplaint,1609\ncareless,1,loverscomplaint,1609\nlaid,1,loverscomplaint,1609\nkeen,1,loverscomplaint,1609\nprompt,1,loverscomplaint,1609\npart,1,loverscomplaint,1609\nfeat,1,loverscomplaint,1609\nbrokers,1,loverscomplaint,1609\nattend,1,loverscomplaint,1609\nremain'd,1,loverscomplaint,1609\nmettle,1,loverscomplaint,1609\nhue,1,loverscomplaint,1609\nmanifold,1,loverscomplaint,1609\nterms,1,loverscomplaint,1609\ndestined,1,loverscomplaint,1609\nwatery,1,loverscomplaint,1609\nlabouring,1,loverscomplaint,1609\nconfine,1,loverscomplaint,1609\nmud,1,loverscomplaint,1609\nDid,1,loverscomplaint,1609\norchards,1,loverscomplaint,1609\nuntrue,1,loverscomplaint,1609\ndistractedly,1,loverscomplaint,1609\nThrew,1,loverscomplaint,1609\nswoon,1,loverscomplaint,1609\ncharged,1,loverscomplaint,1609\nprecepts,1,loverscomplaint,1609\nsize,1,loverscomplaint,1609\nhover'd,1,loverscomplaint,1609\nBig,1,loverscomplaint,1609\npalate,1,loverscomplaint,1609\nLaundering,1,loverscomplaint,1609\ncries,1,loverscomplaint,1609\nslides,1,loverscomplaint,1609\ncall'd,1,loverscomplaint,1609\nrocky,1,loverscomplaint,1609\ncarcass,1,loverscomplaint,1609\nwomb,1,loverscomplaint,1609\nweighs,1,loverscomplaint,1609\nhang,1,loverscomplaint,1609\nappears,1,loverscomplaint,1609\nshun,1,loverscomplaint,1609\nsun,1,loverscomplaint,1609\nowe,1,loverscomplaint,1609\nliberty,1,loverscomplaint,1609\nleisures,1,loverscomplaint,1609\nabove,1,loverscomplaint,1609\nswiftest,1,loverscomplaint,1609\nrudeness,1,loverscomplaint,1609\nrain,1,loverscomplaint,1609\ntoo,1,loverscomplaint,1609\ndrawn,1,loverscomplaint,1609\ntop,1,loverscomplaint,1609\nsimiles,1,loverscomplaint,1609\nblossoms,1,loverscomplaint,1609\nreverend,1,loverscomplaint,1609\nplenitude,1,loverscomplaint,1609\nwavering,1,loverscomplaint,1609\nmighty,1,loverscomplaint,1609\ndrops,1,loverscomplaint,1609\npraise,1,loverscomplaint,1609\nbrief,1,loverscomplaint,1609\n''The,1,loverscomplaint,1609\nforth,1,loverscomplaint,1609\nsober,1,loverscomplaint,1609\nbrine,1,loverscomplaint,1609\ntip,1,loverscomplaint,1609\nwent,1,loverscomplaint,1609\ncourse,1,loverscomplaint,1609\nthy,1,loverscomplaint,1609\nEven,1,loverscomplaint,1609\nflow'd,1,loverscomplaint,1609\nWhereto,1,loverscomplaint,1609\nbathed,1,loverscomplaint,1609\n'Nor,1,loverscomplaint,1609\nfillet,1,loverscomplaint,1609\ncommanding,1,loverscomplaint,1609\nconcealed,1,loverscomplaint,1609\npreach,1,loverscomplaint,1609\nshocks,1,loverscomplaint,1609\nTake,1,loverscomplaint,1609\nminister,1,loverscomplaint,1609\n'Gentle,1,loverscomplaint,1609\nwithout,1,loverscomplaint,1609\nshall,1,loverscomplaint,1609\ntempt,1,loverscomplaint,1609\nLOVER'S,1,loverscomplaint,1609\ncharmed,1,loverscomplaint,1609\nassail,1,loverscomplaint,1609\nbonded,1,loverscomplaint,1609\nhabitude,1,loverscomplaint,1609\nmonarchy,1,loverscomplaint,1609\nscythed,1,loverscomplaint,1609\nTime,1,loverscomplaint,1609\nemptied,1,loverscomplaint,1609\ndwelling,1,loverscomplaint,1609\ncommand,1,loverscomplaint,1609\nusury,1,loverscomplaint,1609\nfore,1,loverscomplaint,1609\ngiving,1,loverscomplaint,1609\nwant,1,loverscomplaint,1609\ninflame,1,loverscomplaint,1609\nheaven,1,loverscomplaint,1609\nimmured,1,loverscomplaint,1609\nThat's,1,loverscomplaint,1609\nfigures,1,loverscomplaint,1609\nshould,1,loverscomplaint,1609\nbehoof,1,loverscomplaint,1609\norb,1,loverscomplaint,1609\nfall,1,loverscomplaint,1609\ntwain,1,loverscomplaint,1609\nFROM,1,loverscomplaint,1609\ndistract,1,loverscomplaint,1609\nowed,1,loverscomplaint,1609\nbosom,1,loverscomplaint,1609\nsafest,1,loverscomplaint,1609\nlittle,1,loverscomplaint,1609\nshow,1,loverscomplaint,1609\nrounds,1,loverscomplaint,1609\nhaunted,1,loverscomplaint,1609\ncharity,1,loverscomplaint,1609\nweeper,1,loverscomplaint,1609\nwoeful,1,loverscomplaint,1609\nanon,1,loverscomplaint,1609\nrings,1,loverscomplaint,1609\nyielded,1,loverscomplaint,1609\nbragg'd,1,loverscomplaint,1609\nbreathe,1,loverscomplaint,1609\ndialect,1,loverscomplaint,1609\nsense,1,loverscomplaint,1609\nproperties,1,loverscomplaint,1609\nmoan,1,loverscomplaint,1609\ncattle,1,loverscomplaint,1609\nfiend,1,loverscomplaint,1609\nhimself,1,loverscomplaint,1609\nKept,1,loverscomplaint,1609\nbewitch'd,1,loverscomplaint,1609\nthrew,1,loverscomplaint,1609\npelleted,1,loverscomplaint,1609\nbide,1,loverscomplaint,1609\ncommix'd,1,loverscomplaint,1609\nroses,1,loverscomplaint,1609\nfighting,1,loverscomplaint,1609\nlodged,1,loverscomplaint,1609\nvoice,1,loverscomplaint,1609\nexcess,1,loverscomplaint,1609\nundertake,1,loverscomplaint,1609\nbond,1,loverscomplaint,1609\nShook,1,loverscomplaint,1609\nfresh,1,loverscomplaint,1609\nrule,1,loverscomplaint,1609\nbone,1,loverscomplaint,1609\nHow,1,loverscomplaint,1609\nmaiden,1,loverscomplaint,1609\npassion,1,loverscomplaint,1609\ngazes,1,loverscomplaint,1609\nforms,1,loverscomplaint,1609\nvow,1,loverscomplaint,1609\nfancies,1,loverscomplaint,1609\nye,1,loverscomplaint,1609\nsteed,1,loverscomplaint,1609\ndesire,1,loverscomplaint,1609\nmatter,1,loverscomplaint,1609\norigin,1,loverscomplaint,1609\nfortified,1,loverscomplaint,1609\nsway,1,loverscomplaint,1609\nwits,1,loverscomplaint,1609\nBidding,1,loverscomplaint,1609\nhavings,1,loverscomplaint,1609\nstone's,1,loverscomplaint,1609\nchannel,1,loverscomplaint,1609\nparts,2,loverscomplaint,1609\nsilken,2,loverscomplaint,1609\nobjects,2,loverscomplaint,1609\no'er,2,loverscomplaint,1609\nherself,2,loverscomplaint,1609\njudgment,2,loverscomplaint,1609\nside,2,loverscomplaint,1609\ntell,2,loverscomplaint,1609\nburning,2,loverscomplaint,1609\nHave,2,loverscomplaint,1609\nhorse,2,loverscomplaint,1609\nthrough,2,loverscomplaint,1609\nBy,2,loverscomplaint,1609\nneither,2,loverscomplaint,1609\nnever,2,loverscomplaint,1609\nreason,2,loverscomplaint,1609\nsights,2,loverscomplaint,1609\nMy,2,loverscomplaint,1609\nthought,2,loverscomplaint,1609\ndistance,2,loverscomplaint,1609\nbegun,2,loverscomplaint,1609\nforce,2,loverscomplaint,1609\nHer,2,loverscomplaint,1609\nevery,2,loverscomplaint,1609\ntear,2,loverscomplaint,1609\nnone,2,loverscomplaint,1609\nlevell'd,2,loverscomplaint,1609\nHe,2,loverscomplaint,1609\naptly,2,loverscomplaint,1609\nsighs,2,loverscomplaint,1609\nPlaying,2,loverscomplaint,1609\ntears,2,loverscomplaint,1609\nbears,2,loverscomplaint,1609\nlungs,2,loverscomplaint,1609\ncontents,2,loverscomplaint,1609\nlies,2,loverscomplaint,1609\nShe,2,loverscomplaint,1609\nseen,2,loverscomplaint,1609\nyoung,2,loverscomplaint,1609\nnun,2,loverscomplaint,1609\nothers',2,loverscomplaint,1609\nseveral,2,loverscomplaint,1609\npassions,2,loverscomplaint,1609\nwear,2,loverscomplaint,1609\nSome,2,loverscomplaint,1609\ncraft,2,loverscomplaint,1609\nsad,2,loverscomplaint,1609\nsaw,2,loverscomplaint,1609\ntied,2,loverscomplaint,1609\nself,2,loverscomplaint,1609\nlet,2,loverscomplaint,1609\nbleeding,2,loverscomplaint,1609\nbeen,2,loverscomplaint,1609\nsent,2,loverscomplaint,1609\ndrew,2,loverscomplaint,1609\ncharacters,2,loverscomplaint,1609\nbeside,2,loverscomplaint,1609\nriver,2,loverscomplaint,1609\nover,2,loverscomplaint,1609\nfree,2,loverscomplaint,1609\n'So,2,loverscomplaint,1609\n'His,2,loverscomplaint,1609\nbreast,2,loverscomplaint,1609\nleave,2,loverscomplaint,1609\ncould,2,loverscomplaint,1609\nbattery,2,loverscomplaint,1609\nwet,2,loverscomplaint,1609\nman,2,loverscomplaint,1609\nspirits,2,loverscomplaint,1609\nfire,2,loverscomplaint,1609\nabroad,2,loverscomplaint,1609\nlong,2,loverscomplaint,1609\nforced,2,loverscomplaint,1609\nthing,2,loverscomplaint,1609\nset,2,loverscomplaint,1609\nblushes,2,loverscomplaint,1609\nSometime,2,loverscomplaint,1609\nmen,2,loverscomplaint,1609\nmakes,2,loverscomplaint,1609\nstill,2,loverscomplaint,1609\nsee,2,loverscomplaint,1609\noff,2,loverscomplaint,1609\nsuit,2,loverscomplaint,1609\nfell,2,loverscomplaint,1609\nno,2,loverscomplaint,1609\ncourt,2,loverscomplaint,1609\nbreak,2,loverscomplaint,1609\nworth,2,loverscomplaint,1609\ndone,2,loverscomplaint,1609\nfears,2,loverscomplaint,1609\nlo,2,loverscomplaint,1609\nmost,2,loverscomplaint,1609\nnoble,2,loverscomplaint,1609\nsuch,2,loverscomplaint,1609\nYet,2,loverscomplaint,1609\nbeauty,2,loverscomplaint,1609\nextend,2,loverscomplaint,1609\nbreaking,2,loverscomplaint,1609\nknew,2,loverscomplaint,1609\nWhere,2,loverscomplaint,1609\npride,2,loverscomplaint,1609\nnature,2,loverscomplaint,1609\nmoe,2,loverscomplaint,1609\nhot,2,loverscomplaint,1609\nface,2,loverscomplaint,1609\nsimple,2,loverscomplaint,1609\n'This,2,loverscomplaint,1609\nhair,2,loverscomplaint,1609\nus,2,loverscomplaint,1609\n''Lo,2,loverscomplaint,1609\nfear,2,loverscomplaint,1609\nloose,2,loverscomplaint,1609\npale,2,loverscomplaint,1609\nweeping,2,loverscomplaint,1609\nthence,2,loverscomplaint,1609\nfoul,2,loverscomplaint,1609\nhonour,2,loverscomplaint,1609\nout,2,loverscomplaint,1609\ncity,2,loverscomplaint,1609\nbehold,2,loverscomplaint,1609\nflower,2,loverscomplaint,1609\nwind,2,loverscomplaint,1609\nform,2,loverscomplaint,1609\nwills,2,loverscomplaint,1609\n''O,2,loverscomplaint,1609\nmodesty,2,loverscomplaint,1609\nhence,2,loverscomplaint,1609\nTill,2,loverscomplaint,1609\ncrystal,2,loverscomplaint,1609\n'For,2,loverscomplaint,1609\nold,2,loverscomplaint,1609\nThough,2,loverscomplaint,1609\nthough,2,loverscomplaint,1609\nfame,2,loverscomplaint,1609\nparcels,2,loverscomplaint,1609\nchastity,2,loverscomplaint,1609\nth',2,loverscomplaint,1609\nseem'd,2,loverscomplaint,1609\nfly,2,loverscomplaint,1609\nride,2,loverscomplaint,1609\nstop,2,loverscomplaint,1609\nmerely,2,loverscomplaint,1609\nflame,2,loverscomplaint,1609\nne'er,2,loverscomplaint,1609\napplied,2,loverscomplaint,1609\n'But,3,loverscomplaint,1609\nnew,3,loverscomplaint,1609\nmuch,3,loverscomplaint,1609\nEach,3,loverscomplaint,1609\nthere,3,loverscomplaint,1609\nwater,3,loverscomplaint,1609\nhere,3,loverscomplaint,1609\nIf,3,loverscomplaint,1609\nhearts,3,loverscomplaint,1609\nLove,3,loverscomplaint,1609\nsought,3,loverscomplaint,1609\nbest,3,loverscomplaint,1609\nvisage,3,loverscomplaint,1609\nweep,3,loverscomplaint,1609\naffections,3,loverscomplaint,1609\nquestion,3,loverscomplaint,1609\nagain,3,loverscomplaint,1609\nnow,3,loverscomplaint,1609\nsay,3,loverscomplaint,1609\nvows,3,loverscomplaint,1609\nLike,3,loverscomplaint,1609\ncheek,3,loverscomplaint,1609\nNot,3,loverscomplaint,1609\nsaid,3,loverscomplaint,1609\nWho,3,loverscomplaint,1609\nBut,3,loverscomplaint,1609\ndeep,3,loverscomplaint,1609\ndesires,3,loverscomplaint,1609\ndear,3,loverscomplaint,1609\nstand,3,loverscomplaint,1609\nthen,3,loverscomplaint,1609\n'O,3,loverscomplaint,1609\nTheir,3,loverscomplaint,1609\nbeing,3,loverscomplaint,1609\nmore,3,loverscomplaint,1609\nwhen,3,loverscomplaint,1609\nrage,3,loverscomplaint,1609\nhow,3,loverscomplaint,1609\nwe,3,loverscomplaint,1609\nboth,3,loverscomplaint,1609\ntakes,3,loverscomplaint,1609\nwell,3,loverscomplaint,1609\nhand,3,loverscomplaint,1609\nsuffering,3,loverscomplaint,1609\nfalse,3,loverscomplaint,1609\nmight,3,loverscomplaint,1609\nkind,3,loverscomplaint,1609\n'That,3,loverscomplaint,1609\npower,3,loverscomplaint,1609\nmake,4,loverscomplaint,1609\nAs,4,loverscomplaint,1609\nHis,4,loverscomplaint,1609\nmaid,4,loverscomplaint,1609\nupon,4,loverscomplaint,1609\nwhere,4,loverscomplaint,1609\neye,4,loverscomplaint,1609\nstrong,4,loverscomplaint,1609\ndown,4,loverscomplaint,1609\nUpon,4,loverscomplaint,1609\nmust,4,loverscomplaint,1609\nwhose,4,loverscomplaint,1609\nsweet,4,loverscomplaint,1609\nWhose,4,loverscomplaint,1609\nmyself,4,loverscomplaint,1609\nput,4,loverscomplaint,1609\nmind,4,loverscomplaint,1609\nwoe,4,loverscomplaint,1609\nmay,4,loverscomplaint,1609\nat,4,loverscomplaint,1609\nor,4,loverscomplaint,1609\ntrue,4,loverscomplaint,1609\nage,4,loverscomplaint,1609\nWhen,4,loverscomplaint,1609\nwhite,4,loverscomplaint,1609\nour,4,loverscomplaint,1609\nfair,4,loverscomplaint,1609\nshame,4,loverscomplaint,1609\never,4,loverscomplaint,1609\nfind,4,loverscomplaint,1609\nA,5,loverscomplaint,1609\nwill,5,loverscomplaint,1609\nblood,5,loverscomplaint,1609\ngave,5,loverscomplaint,1609\nsome,5,loverscomplaint,1609\n'gainst,5,loverscomplaint,1609\nAll,5,loverscomplaint,1609\ncold,5,loverscomplaint,1609\nthou,5,loverscomplaint,1609\ngrace,5,loverscomplaint,1609\nown,5,loverscomplaint,1609\nare,5,loverscomplaint,1609\nart,5,loverscomplaint,1609\nhath,5,loverscomplaint,1609\nthese,6,loverscomplaint,1609\nmade,6,loverscomplaint,1609\nyouth,6,loverscomplaint,1609\nyet,6,loverscomplaint,1609\nlove,6,loverscomplaint,1609\nthis,6,loverscomplaint,1609\nplace,6,loverscomplaint,1609\nfor,6,loverscomplaint,1609\nThat,7,loverscomplaint,1609\n',7,loverscomplaint,1609\noften,7,loverscomplaint,1609\nIn,7,loverscomplaint,1609\nWhich,7,loverscomplaint,1609\nmany,7,loverscomplaint,1609\nmine,7,loverscomplaint,1609\ndo,7,loverscomplaint,1609\nheart,7,loverscomplaint,1609\nWith,7,loverscomplaint,1609\nwere,7,loverscomplaint,1609\none,7,loverscomplaint,1609\nhad,8,loverscomplaint,1609\nwhich,8,loverscomplaint,1609\nyour,8,loverscomplaint,1609\neyes,8,loverscomplaint,1609\nOr,8,loverscomplaint,1609\nnor,8,loverscomplaint,1609\non,8,loverscomplaint,1609\nWhat,8,loverscomplaint,1609\nwould,9,loverscomplaint,1609\nbe,9,loverscomplaint,1609\nas,9,loverscomplaint,1609\nthey,9,loverscomplaint,1609\nis,9,loverscomplaint,1609\nhave,9,loverscomplaint,1609\nO,10,loverscomplaint,1609\nyou,10,loverscomplaint,1609\nbut,10,loverscomplaint,1609\nFor,10,loverscomplaint,1609\nTo,11,loverscomplaint,1609\nwhat,11,loverscomplaint,1609\nthem,11,loverscomplaint,1609\nwith,11,loverscomplaint,1609\nfrom,12,loverscomplaint,1609\nso,12,loverscomplaint,1609\nhim,13,loverscomplaint,1609\nit,13,loverscomplaint,1609\nOf,14,loverscomplaint,1609\nshe,14,loverscomplaint,1609\nby,15,loverscomplaint,1609\nwas,15,loverscomplaint,1609\nThe,15,loverscomplaint,1609\nnot,19,loverscomplaint,1609\nI,20,loverscomplaint,1609\nhe,21,loverscomplaint,1609\nall,21,loverscomplaint,1609\nme,21,loverscomplaint,1609\ntheir,22,loverscomplaint,1609\nmy,22,loverscomplaint,1609\ndid,25,loverscomplaint,1609\nher,26,loverscomplaint,1609\nAnd,28,loverscomplaint,1609\na,30,loverscomplaint,1609\nthat,35,loverscomplaint,1609\nhis,40,loverscomplaint,1609\nto,51,loverscomplaint,1609\nin,55,loverscomplaint,1609\nthe,57,loverscomplaint,1609\nof,58,loverscomplaint,1609\nand,63,loverscomplaint,1609\nfealty,1,titusandronicus,1593\ndimm'd,1,titusandronicus,1593\naffords,1,titusandronicus,1593\ndischarged,1,titusandronicus,1593\nchampions,1,titusandronicus,1593\nsilken,1,titusandronicus,1593\nsurmise,1,titusandronicus,1593\ntadpole,1,titusandronicus,1593\npleading,1,titusandronicus,1593\nTremble,1,titusandronicus,1593\nAccompanied,1,titusandronicus,1593\ndegenerate,1,titusandronicus,1593\ndeclared,1,titusandronicus,1593\nAaron's,1,titusandronicus,1593\ncage,1,titusandronicus,1593\nhousehold's,1,titusandronicus,1593\nalehouse,1,titusandronicus,1593\nbrawl,1,titusandronicus,1593\ntroubled,1,titusandronicus,1593\nlusty,1,titusandronicus,1593\nencamp,1,titusandronicus,1593\nforbid,1,titusandronicus,1593\nlusts,1,titusandronicus,1593\nDismounted,1,titusandronicus,1593\nrelief,1,titusandronicus,1593\nBrutus,1,titusandronicus,1593\nadvised,1,titusandronicus,1593\nvenomous,1,titusandronicus,1593\nguard,1,titusandronicus,1593\nUnbind,1,titusandronicus,1593\ngrey,1,titusandronicus,1593\nWanting,1,titusandronicus,1593\nconfused,1,titusandronicus,1593\nm,1,titusandronicus,1593\nmistaking,1,titusandronicus,1593\nbitterest,1,titusandronicus,1593\nslaughtering,1,titusandronicus,1593\nred,1,titusandronicus,1593\ncontinence,1,titusandronicus,1593\nlibrary,1,titusandronicus,1593\nFew,1,titusandronicus,1593\nPius,1,titusandronicus,1593\ndrop,1,titusandronicus,1593\ntook,1,titusandronicus,1593\nImperious,1,titusandronicus,1593\ndarest,1,titusandronicus,1593\njar,1,titusandronicus,1593\nfathers,1,titusandronicus,1593\nmotion,1,titusandronicus,1593\ndiscord's,1,titusandronicus,1593\nLoves,1,titusandronicus,1593\ndireful,1,titusandronicus,1593\nbelongs,1,titusandronicus,1593\nleisure,1,titusandronicus,1593\nHear,1,titusandronicus,1593\nmassacre,1,titusandronicus,1593\nforswear,1,titusandronicus,1593\ntremble,1,titusandronicus,1593\nfame's,1,titusandronicus,1593\nweary,1,titusandronicus,1593\nbrass,1,titusandronicus,1593\ntreasury,1,titusandronicus,1593\nwish'd,1,titusandronicus,1593\nAmbitiously,1,titusandronicus,1593\nignomy,1,titusandronicus,1593\nfollowing,1,titusandronicus,1593\nunburied,1,titusandronicus,1593\nfactions,1,titusandronicus,1593\ntreasure,1,titusandronicus,1593\nTear,1,titusandronicus,1593\nwoman's,1,titusandronicus,1593\nJoin,1,titusandronicus,1593\ntorn,1,titusandronicus,1593\nsiren,1,titusandronicus,1593\nadvantage,1,titusandronicus,1593\nlawful,1,titusandronicus,1593\nWhether,1,titusandronicus,1593\nunroll,1,titusandronicus,1593\nhonourably,1,titusandronicus,1593\nwhirl,1,titusandronicus,1593\nfainting,1,titusandronicus,1593\nRevenge's,1,titusandronicus,1593\ndagger,1,titusandronicus,1593\nrock,1,titusandronicus,1593\nVulcan's,1,titusandronicus,1593\nzeal,1,titusandronicus,1593\ndistill'd,1,titusandronicus,1593\nboned,1,titusandronicus,1593\nelect,1,titusandronicus,1593\nrot,1,titusandronicus,1593\nexploits,1,titusandronicus,1593\noffended,1,titusandronicus,1593\nConfusion,1,titusandronicus,1593\nresign,1,titusandronicus,1593\nhealth,1,titusandronicus,1593\nrobe,1,titusandronicus,1593\noffender,1,titusandronicus,1593\nheart's,1,titusandronicus,1593\nstopp'd,1,titusandronicus,1593\nhighness',1,titusandronicus,1593\nDefend,1,titusandronicus,1593\neasily,1,titusandronicus,1593\nunappeased,1,titusandronicus,1593\nActs,1,titusandronicus,1593\ndevouring,1,titusandronicus,1593\nrather,1,titusandronicus,1593\nhabiliment,1,titusandronicus,1593\nStab,1,titusandronicus,1593\nfoster,1,titusandronicus,1593\nsleeps,1,titusandronicus,1593\nspade,1,titusandronicus,1593\nreserved,1,titusandronicus,1593\ndespised,1,titusandronicus,1593\nstrengthen,1,titusandronicus,1593\ngrandsire's,1,titusandronicus,1593\nlaughter,1,titusandronicus,1593\ntrull,1,titusandronicus,1593\ntruly,1,titusandronicus,1593\ndish,1,titusandronicus,1593\nbondmen,1,titusandronicus,1593\nRemaineth,1,titusandronicus,1593\nsuppliant,1,titusandronicus,1593\ntrump,1,titusandronicus,1593\nwrap,1,titusandronicus,1593\nhers,1,titusandronicus,1593\nMust,1,titusandronicus,1593\nuphold,1,titusandronicus,1593\nfinger,1,titusandronicus,1593\ngroan,1,titusandronicus,1593\noverlooks,1,titusandronicus,1593\nproceedings,1,titusandronicus,1593\nspake,1,titusandronicus,1593\ndropp'd,1,titusandronicus,1593\nlanguishment,1,titusandronicus,1593\neffectless,1,titusandronicus,1593\nmean'st,1,titusandronicus,1593\nbraver,1,titusandronicus,1593\nchest,1,titusandronicus,1593\nCoal,1,titusandronicus,1593\nblossom,1,titusandronicus,1593\nurchins,1,titusandronicus,1593\n'Integer,1,titusandronicus,1593\nutterance,1,titusandronicus,1593\ncomest,1,titusandronicus,1593\nlearn'd,1,titusandronicus,1593\nUnworthy,1,titusandronicus,1593\nbrook,1,titusandronicus,1593\nponiard,1,titusandronicus,1593\ndive,1,titusandronicus,1593\nbrood,1,titusandronicus,1593\nmattock,1,titusandronicus,1593\nRavish'd,1,titusandronicus,1593\nvillanies,1,titusandronicus,1593\nunderstand,1,titusandronicus,1593\nconducted,1,titusandronicus,1593\ndismount,1,titusandronicus,1593\nshelter,1,titusandronicus,1593\nthroat,1,titusandronicus,1593\nunderneath,1,titusandronicus,1593\ncowardice,1,titusandronicus,1593\nsour,1,titusandronicus,1593\nSuffer,1,titusandronicus,1593\nlaugh,1,titusandronicus,1593\nthou'lt,1,titusandronicus,1593\nyonder,1,titusandronicus,1593\nWound,1,titusandronicus,1593\ninnocence,1,titusandronicus,1593\nloaden,1,titusandronicus,1593\nMortal,1,titusandronicus,1593\nbaits,1,titusandronicus,1593\npress,1,titusandronicus,1593\nstrumpet,1,titusandronicus,1593\nadvise,1,titusandronicus,1593\nodds,1,titusandronicus,1593\ndamned,1,titusandronicus,1593\nancestors,1,titusandronicus,1593\noffendeth,1,titusandronicus,1593\nrates,1,titusandronicus,1593\nyelping,1,titusandronicus,1593\nlustily,1,titusandronicus,1593\nnymph,1,titusandronicus,1593\nenfranchised,1,titusandronicus,1593\nTereus',1,titusandronicus,1593\njoys,1,titusandronicus,1593\ninsult,1,titusandronicus,1593\nrated,1,titusandronicus,1593\nlulls,1,titusandronicus,1593\nwrest,1,titusandronicus,1593\nStephen,1,titusandronicus,1593\ninfuse,1,titusandronicus,1593\nthump,1,titusandronicus,1593\nPERSONAE,1,titusandronicus,1593\ncard,1,titusandronicus,1593\nmute,1,titusandronicus,1593\nAlso,1,titusandronicus,1593\nlightning,1,titusandronicus,1593\nHanged,1,titusandronicus,1593\nbattles,1,titusandronicus,1593\nearly,1,titusandronicus,1593\nattempt,1,titusandronicus,1593\nsong,1,titusandronicus,1593\ninterrupter,1,titusandronicus,1593\npursue,1,titusandronicus,1593\nstoops,1,titusandronicus,1593\ndownfall,1,titusandronicus,1593\nsuccessive,1,titusandronicus,1593\ntiger's,1,titusandronicus,1593\ndelivered,1,titusandronicus,1593\ncharge,1,titusandronicus,1593\nMuli,1,titusandronicus,1593\ngraced,1,titusandronicus,1593\nsurfeit,1,titusandronicus,1593\nPatient,1,titusandronicus,1593\nplies,1,titusandronicus,1593\ngloomy,1,titusandronicus,1593\nlacks,1,titusandronicus,1593\nespouse,1,titusandronicus,1593\nconscience,1,titusandronicus,1593\nwander'd,1,titusandronicus,1593\ninmost,1,titusandronicus,1593\nconsuming,1,titusandronicus,1593\nstock,1,titusandronicus,1593\ndrive,1,titusandronicus,1593\nreconciled,1,titusandronicus,1593\nenemies',1,titusandronicus,1593\nslept,1,titusandronicus,1593\nworking,1,titusandronicus,1593\nconfusion,1,titusandronicus,1593\noverflow'd,1,titusandronicus,1593\nwrung,1,titusandronicus,1593\nblabb'd,1,titusandronicus,1593\npiteously,1,titusandronicus,1593\nlifts,1,titusandronicus,1593\ngrown,1,titusandronicus,1593\nclosure,1,titusandronicus,1593\nCook,1,titusandronicus,1593\nstream,1,titusandronicus,1593\nlosers,1,titusandronicus,1593\nhour's,1,titusandronicus,1593\nfortunate,1,titusandronicus,1593\nbroach'd,1,titusandronicus,1593\ncall'st,1,titusandronicus,1593\ncircumstance,1,titusandronicus,1593\npurposely,1,titusandronicus,1593\nCaesar's,1,titusandronicus,1593\nbottomless,1,titusandronicus,1593\nPlains,1,titusandronicus,1593\ncrying,1,titusandronicus,1593\nbroken,1,titusandronicus,1593\nRam's,1,titusandronicus,1593\nbrothers',1,titusandronicus,1593\nproceeds,1,titusandronicus,1593\nobdurate,1,titusandronicus,1593\nRemember,1,titusandronicus,1593\nheat,1,titusandronicus,1593\nheap,1,titusandronicus,1593\nVictorious,1,titusandronicus,1593\nheal,1,titusandronicus,1593\nWoe,1,titusandronicus,1593\nOnly,1,titusandronicus,1593\nheadless,1,titusandronicus,1593\nwants,1,titusandronicus,1593\nfingers,1,titusandronicus,1593\nlift,1,titusandronicus,1593\nhew'd,1,titusandronicus,1593\ncalf,1,titusandronicus,1593\npoet's,1,titusandronicus,1593\nshadow'd,1,titusandronicus,1593\nnests,1,titusandronicus,1593\npipe,1,titusandronicus,1593\nhanging,1,titusandronicus,1593\nchilling,1,titusandronicus,1593\nlikeness,1,titusandronicus,1593\nchains,1,titusandronicus,1593\ncame,1,titusandronicus,1593\nstalks,1,titusandronicus,1593\nNon,1,titusandronicus,1593\npurus,1,titusandronicus,1593\nfurious,1,titusandronicus,1593\nblazoning,1,titusandronicus,1593\nfreedom,1,titusandronicus,1593\ninhuman,1,titusandronicus,1593\nwishes',1,titusandronicus,1593\nboar,1,titusandronicus,1593\nsomething,1,titusandronicus,1593\nstanch,1,titusandronicus,1593\nsobs,1,titusandronicus,1593\nlimits,1,titusandronicus,1593\ncandidatus,1,titusandronicus,1593\nGentle,1,titusandronicus,1593\nsnakes,1,titusandronicus,1593\nPerformers,1,titusandronicus,1593\nfurther,1,titusandronicus,1593\nsumptuously,1,titusandronicus,1593\nview,1,titusandronicus,1593\nowners,1,titusandronicus,1593\nCentaurs',1,titusandronicus,1593\ndeserve,1,titusandronicus,1593\nwags,1,titusandronicus,1593\nshamed,1,titusandronicus,1593\nsuns,1,titusandronicus,1593\nfere,1,titusandronicus,1593\nsheathed,1,titusandronicus,1593\nsung,1,titusandronicus,1593\nhottest,1,titusandronicus,1593\nrepresent,1,titusandronicus,1593\nforever,1,titusandronicus,1593\ndeeper,1,titusandronicus,1593\nGet,1,titusandronicus,1593\nindignity,1,titusandronicus,1593\nprevail'd,1,titusandronicus,1593\nintercepted,1,titusandronicus,1593\ncontempts,1,titusandronicus,1593\nexecrable,1,titusandronicus,1593\nfleece,1,titusandronicus,1593\nimprison'd,1,titusandronicus,1593\nHappily,1,titusandronicus,1593\n'twere,1,titusandronicus,1593\ndeceased,1,titusandronicus,1593\npry'd,1,titusandronicus,1593\nCrown,1,titusandronicus,1593\nbastard,1,titusandronicus,1593\nbroach,1,titusandronicus,1593\nwalk,1,titusandronicus,1593\nsaying,1,titusandronicus,1593\nsprawl,1,titusandronicus,1593\nvirtuous,1,titusandronicus,1593\nKneel,1,titusandronicus,1593\nSpeechless,1,titusandronicus,1593\ntouched,1,titusandronicus,1593\ntouches,1,titusandronicus,1593\naudis,1,titusandronicus,1593\nSung,1,titusandronicus,1593\ndeceit,1,titusandronicus,1593\nchiefest,1,titusandronicus,1593\nthrone,1,titusandronicus,1593\nanew,1,titusandronicus,1593\nbeasts,1,titusandronicus,1593\nabused,1,titusandronicus,1593\nyield,1,titusandronicus,1593\ncleanly,1,titusandronicus,1593\nhalter,1,titusandronicus,1593\ncurtain'd,1,titusandronicus,1593\nearnestly,1,titusandronicus,1593\nbraving,1,titusandronicus,1593\nworth,1,titusandronicus,1593\nbranches,1,titusandronicus,1593\nvaunter,1,titusandronicus,1593\nnymphs,1,titusandronicus,1593\nlesson,1,titusandronicus,1593\nsteps,1,titusandronicus,1593\nSuch,1,titusandronicus,1593\nskill,1,titusandronicus,1593\nconfident,1,titusandronicus,1593\nalphabet,1,titusandronicus,1593\nlives',1,titusandronicus,1593\nwofull'st,1,titusandronicus,1593\ncedars,1,titusandronicus,1593\napparent,1,titusandronicus,1593\nmelting,1,titusandronicus,1593\nwhere's,1,titusandronicus,1593\ncountenance,1,titusandronicus,1593\nbrides,1,titusandronicus,1593\ntofore,1,titusandronicus,1593\nsued,1,titusandronicus,1593\nkindly,1,titusandronicus,1593\ncloy'd,1,titusandronicus,1593\nforthwith,1,titusandronicus,1593\nHymenaeus,1,titusandronicus,1593\n'larums,1,titusandronicus,1593\ndisgrace,1,titusandronicus,1593\npermit,1,titusandronicus,1593\ndeeply,1,titusandronicus,1593\nfirmly,1,titusandronicus,1593\nnecks,1,titusandronicus,1593\nhunted,1,titusandronicus,1593\nDissemble,1,titusandronicus,1593\ninstruct,1,titusandronicus,1593\ngroans,1,titusandronicus,1593\nMartem,1,titusandronicus,1593\nBlushing,1,titusandronicus,1593\nO'ercome,1,titusandronicus,1593\nsuck,1,titusandronicus,1593\nensigns,1,titusandronicus,1593\ncontroller,1,titusandronicus,1593\nbetwixt,1,titusandronicus,1593\ntattle,1,titusandronicus,1593\nbecomes,1,titusandronicus,1593\nconfronted,1,titusandronicus,1593\naffect,1,titusandronicus,1593\namiss,1,titusandronicus,1593\nwoolly,1,titusandronicus,1593\nreliquit,1,titusandronicus,1593\nminion,1,titusandronicus,1593\ncoach,1,titusandronicus,1593\nrear,1,titusandronicus,1593\noffence,1,titusandronicus,1593\ntaught,1,titusandronicus,1593\nTyphon's,1,titusandronicus,1593\nbarns,1,titusandronicus,1593\nVirgo's,1,titusandronicus,1593\nskins,1,titusandronicus,1593\nredeem,1,titusandronicus,1593\nrung,1,titusandronicus,1593\nwrote,1,titusandronicus,1593\nbeseeming,1,titusandronicus,1593\nintrude,1,titusandronicus,1593\ncuique',1,titusandronicus,1593\ndanced,1,titusandronicus,1593\nlingering,1,titusandronicus,1593\nreadiest,1,titusandronicus,1593\nreceives,1,titusandronicus,1593\nStyx,1,titusandronicus,1593\nconceit,1,titusandronicus,1593\nbrain,1,titusandronicus,1593\nSuccessful,1,titusandronicus,1593\nunkindly,1,titusandronicus,1593\nmonster,1,titusandronicus,1593\nroots,1,titusandronicus,1593\ncompassion,1,titusandronicus,1593\nrush'd,1,titusandronicus,1593\nfellow,1,titusandronicus,1593\nguarded,1,titusandronicus,1593\nways,1,titusandronicus,1593\nBrew'd,1,titusandronicus,1593\ngnawing,1,titusandronicus,1593\ntorturing,1,titusandronicus,1593\nOfficers,1,titusandronicus,1593\nswoln,1,titusandronicus,1593\nladen,1,titusandronicus,1593\nWhereof,1,titusandronicus,1593\njaculis,1,titusandronicus,1593\ncivil,1,titusandronicus,1593\nwhenever,1,titusandronicus,1593\nvehor,1,titusandronicus,1593\nluxurious,1,titusandronicus,1593\nWilling,1,titusandronicus,1593\nTigers,1,titusandronicus,1593\nAloud,1,titusandronicus,1593\nquake,1,titusandronicus,1593\nruns,1,titusandronicus,1593\nCause,1,titusandronicus,1593\nloathed,1,titusandronicus,1593\nenvious,1,titusandronicus,1593\nterms,1,titusandronicus,1593\nruminate,1,titusandronicus,1593\nencounter,1,titusandronicus,1593\ndrought,1,titusandronicus,1593\naffected,1,titusandronicus,1593\ndearly,1,titusandronicus,1593\ncommit,1,titusandronicus,1593\nPardon,1,titusandronicus,1593\ntaper,1,titusandronicus,1593\nstump,1,titusandronicus,1593\ncharming,1,titusandronicus,1593\nWhilst,1,titusandronicus,1593\nhumble,1,titusandronicus,1593\nConfederates,1,titusandronicus,1593\nwreathed,1,titusandronicus,1593\nsum,1,titusandronicus,1593\ngovern'd,1,titusandronicus,1593\nSolon's,1,titusandronicus,1593\nreverence,1,titusandronicus,1593\nwreathen,1,titusandronicus,1593\nCaucasus,1,titusandronicus,1593\nancestor,1,titusandronicus,1593\nslavish,1,titusandronicus,1593\ncease,1,titusandronicus,1593\nbows,1,titusandronicus,1593\nnoblest,1,titusandronicus,1593\ninfinite,1,titusandronicus,1593\nwinded,1,titusandronicus,1593\ncleave,1,titusandronicus,1593\nMagni,1,titusandronicus,1593\nRepose,1,titusandronicus,1593\nswore,1,titusandronicus,1593\nflourishing,1,titusandronicus,1593\nmalice,1,titusandronicus,1593\naccept,1,titusandronicus,1593\nbrine,1,titusandronicus,1593\nBull,1,titusandronicus,1593\nrazors,1,titusandronicus,1593\nbrink,1,titusandronicus,1593\nwhisper,1,titusandronicus,1593\nancient,1,titusandronicus,1593\nDrown,1,titusandronicus,1593\nfalse,1,titusandronicus,1593\nhabited,1,titusandronicus,1593\nrude,1,titusandronicus,1593\nPrincely,1,titusandronicus,1593\nscrolls,1,titusandronicus,1593\nwink,1,titusandronicus,1593\ndagger's,1,titusandronicus,1593\napplause,1,titusandronicus,1593\nsoldier,1,titusandronicus,1593\nbauble,1,titusandronicus,1593\nDominator,1,titusandronicus,1593\nshrink,1,titusandronicus,1593\ntam,1,titusandronicus,1593\nFilling,1,titusandronicus,1593\ncaves,1,titusandronicus,1593\nAlong,1,titusandronicus,1593\nStop,1,titusandronicus,1593\nCerberus,1,titusandronicus,1593\ntitle,1,titusandronicus,1593\nusurp,1,titusandronicus,1593\nagreeing,1,titusandronicus,1593\nknees,1,titusandronicus,1593\nheaves,1,titusandronicus,1593\nPlease,1,titusandronicus,1593\nobsequious,1,titusandronicus,1593\nsteal,1,titusandronicus,1593\nedge,1,titusandronicus,1593\nharmless,1,titusandronicus,1593\n'For,1,titusandronicus,1593\nmishaps,1,titusandronicus,1593\nruin,1,titusandronicus,1593\nrenew,1,titusandronicus,1593\ntransformed,1,titusandronicus,1593\nwrongful,1,titusandronicus,1593\nCousin,1,titusandronicus,1593\nwitnesses,1,titusandronicus,1593\nrequests,1,titusandronicus,1593\ntools,1,titusandronicus,1593\nturned,1,titusandronicus,1593\nanon,1,titusandronicus,1593\nCyclops',1,titusandronicus,1593\nthrown,1,titusandronicus,1593\neagle,1,titusandronicus,1593\nsucceed,1,titusandronicus,1593\nimperious,1,titusandronicus,1593\nthrows,1,titusandronicus,1593\ndevil's,1,titusandronicus,1593\nnorthern,1,titusandronicus,1593\npierce,1,titusandronicus,1593\nambassador,1,titusandronicus,1593\nbeating,1,titusandronicus,1593\nhatch,1,titusandronicus,1593\nsuccessantly,1,titusandronicus,1593\nbidding,1,titusandronicus,1593\nincense,1,titusandronicus,1593\nBury,1,titusandronicus,1593\nsanguine,1,titusandronicus,1593\ncunning,1,titusandronicus,1593\ntimeless,1,titusandronicus,1593\no'erflow,1,titusandronicus,1593\ndistress,1,titusandronicus,1593\nwasp,1,titusandronicus,1593\nstirr'd,1,titusandronicus,1593\nsteed,1,titusandronicus,1593\nrevel,1,titusandronicus,1593\nruled,1,titusandronicus,1593\nwits,1,titusandronicus,1593\nobserve,1,titusandronicus,1593\nSempronius,1,titusandronicus,1593\nboon,1,titusandronicus,1593\nchastised,1,titusandronicus,1593\ngramercy,1,titusandronicus,1593\nparty,1,titusandronicus,1593\nunrelenting,1,titusandronicus,1593\ndigg'd,1,titusandronicus,1593\nveiled,1,titusandronicus,1593\nFollow,1,titusandronicus,1593\nsceptre,1,titusandronicus,1593\ntent,1,titusandronicus,1593\nsympathy,1,titusandronicus,1593\nDraw,1,titusandronicus,1593\nscelera,1,titusandronicus,1593\nfairest,1,titusandronicus,1593\ngoddess,1,titusandronicus,1593\nDrag,1,titusandronicus,1593\nprince's,1,titusandronicus,1593\nFaith,1,titusandronicus,1593\ncontriver,1,titusandronicus,1593\nconspirator,1,titusandronicus,1593\nunadvised,1,titusandronicus,1593\ntumult,1,titusandronicus,1593\nbastardy,1,titusandronicus,1593\nsauciness,1,titusandronicus,1593\nchamber,1,titusandronicus,1593\nstir,1,titusandronicus,1593\nsolicit,1,titusandronicus,1593\nmorning,1,titusandronicus,1593\nmanners,1,titusandronicus,1593\nscelerisque,1,titusandronicus,1593\nTakes,1,titusandronicus,1593\nsequence,1,titusandronicus,1593\nwarded,1,titusandronicus,1593\nenjoy'd,1,titusandronicus,1593\nenchant,1,titusandronicus,1593\nmelancholy,1,titusandronicus,1593\nHold,1,titusandronicus,1593\nhap,1,titusandronicus,1593\ndrinking,1,titusandronicus,1593\nPriam's,1,titusandronicus,1593\nenchanting,1,titusandronicus,1593\nconquered,1,titusandronicus,1593\nbacks,1,titusandronicus,1593\nFaint,1,titusandronicus,1593\nplanet,1,titusandronicus,1593\nwanting,1,titusandronicus,1593\ntrimming,1,titusandronicus,1593\nStruck,1,titusandronicus,1593\ncrack,1,titusandronicus,1593\nsweeter,1,titusandronicus,1593\nflowered,1,titusandronicus,1593\nhorror's,1,titusandronicus,1593\nBelike,1,titusandronicus,1593\nrefuse,1,titusandronicus,1593\nProgne,1,titusandronicus,1593\noffend,1,titusandronicus,1593\nSends,1,titusandronicus,1593\nhay,1,titusandronicus,1593\nnefas,1,titusandronicus,1593\nStabs,1,titusandronicus,1593\nsigh,1,titusandronicus,1593\ntriumpher,1,titusandronicus,1593\nreligious,1,titusandronicus,1593\nresemble,1,titusandronicus,1593\ngranted,1,titusandronicus,1593\nflattery,1,titusandronicus,1593\noratory,1,titusandronicus,1593\nAd,1,titusandronicus,1593\nspoil,1,titusandronicus,1593\nmusic,1,titusandronicus,1593\norators,1,titusandronicus,1593\nmeads,1,titusandronicus,1593\nforge,1,titusandronicus,1593\nmutiny,1,titusandronicus,1593\nHie,1,titusandronicus,1593\nyouthful,1,titusandronicus,1593\nbow,1,titusandronicus,1593\nBecomes,1,titusandronicus,1593\nstrangers,1,titusandronicus,1593\nsuffers,1,titusandronicus,1593\nTreason,1,titusandronicus,1593\nvigour,1,titusandronicus,1593\nwash'd,1,titusandronicus,1593\nPer,1,titusandronicus,1593\nunnatural,1,titusandronicus,1593\nMetamorphoses,1,titusandronicus,1593\ndeuce,1,titusandronicus,1593\nsensibly,1,titusandronicus,1593\nDismiss,1,titusandronicus,1593\nsecretly,1,titusandronicus,1593\ngoodliest,1,titusandronicus,1593\nperfume,1,titusandronicus,1593\nurns,1,titusandronicus,1593\nladyship,1,titusandronicus,1593\ntreble,1,titusandronicus,1593\ngentleness,1,titusandronicus,1593\nkings,1,titusandronicus,1593\ngossip,1,titusandronicus,1593\nsubscribe,1,titusandronicus,1593\ndenies,1,titusandronicus,1593\ngreatly,1,titusandronicus,1593\nkept,1,titusandronicus,1593\nAnswer,1,titusandronicus,1593\ncreature,1,titusandronicus,1593\nmerited,1,titusandronicus,1593\nstar,1,titusandronicus,1593\ndenied,1,titusandronicus,1593\nbubbling,1,titusandronicus,1593\njoyless,1,titusandronicus,1593\npitiless,1,titusandronicus,1593\nOn,1,titusandronicus,1593\nper,1,titusandronicus,1593\nshines,1,titusandronicus,1593\nProclaim,1,titusandronicus,1593\nforce,1,titusandronicus,1593\npaws,1,titusandronicus,1593\nstag,1,titusandronicus,1593\nHer,1,titusandronicus,1593\nhid,1,titusandronicus,1593\nwisdom,1,titusandronicus,1593\nlesson'd,1,titusandronicus,1593\nteat,1,titusandronicus,1593\nbuzz,1,titusandronicus,1593\nply,1,titusandronicus,1593\napprove,1,titusandronicus,1593\nfeigned,1,titusandronicus,1593\nnotorious,1,titusandronicus,1593\nLucrece,1,titusandronicus,1593\nbless,1,titusandronicus,1593\nwhole,1,titusandronicus,1593\nfortune's,1,titusandronicus,1593\nambush,1,titusandronicus,1593\nApproved,1,titusandronicus,1593\nappoint,1,titusandronicus,1593\ntribute,1,titusandronicus,1593\nsacrificing,1,titusandronicus,1593\nshipwreck,1,titusandronicus,1593\npath,1,titusandronicus,1593\neast,1,titusandronicus,1593\nconqueror,1,titusandronicus,1593\ndespair,1,titusandronicus,1593\nadded,1,titusandronicus,1593\nrolled,1,titusandronicus,1593\nimpregnable,1,titusandronicus,1593\nadder,1,titusandronicus,1593\ncondemned,1,titusandronicus,1593\npie,1,titusandronicus,1593\nClubs,1,titusandronicus,1593\nabhorred,1,titusandronicus,1593\ntroops,1,titusandronicus,1593\npig,1,titusandronicus,1593\nAlmost,1,titusandronicus,1593\nstep,1,titusandronicus,1593\ntemples,1,titusandronicus,1593\nadulteress,1,titusandronicus,1593\nmadded,1,titusandronicus,1593\ngrandfather,1,titusandronicus,1593\nglorious,1,titusandronicus,1593\nnice,1,titusandronicus,1593\ndeluge,1,titusandronicus,1593\nyourselves,1,titusandronicus,1593\ncull'd,1,titusandronicus,1593\nbrawls,1,titusandronicus,1593\nstinging,1,titusandronicus,1593\nPatron,1,titusandronicus,1593\nsire,1,titusandronicus,1593\ngroaning,1,titusandronicus,1593\nbegot,1,titusandronicus,1593\nobey,1,titusandronicus,1593\ncorrupted,1,titusandronicus,1593\nbeheaded,1,titusandronicus,1593\nlipp'd,1,titusandronicus,1593\nsirs,1,titusandronicus,1593\nanchor's,1,titusandronicus,1593\ntitles,1,titusandronicus,1593\nfetter,1,titusandronicus,1593\nintercept,1,titusandronicus,1593\nsought,1,titusandronicus,1593\nwhore,1,titusandronicus,1593\nbewet,1,titusandronicus,1593\ndressed,1,titusandronicus,1593\ndumps,1,titusandronicus,1593\nliberality,1,titusandronicus,1593\nbull,1,titusandronicus,1593\nsorry,1,titusandronicus,1593\nween,1,titusandronicus,1593\nweek,1,titusandronicus,1593\ndandle,1,titusandronicus,1593\nproportion,1,titusandronicus,1593\nnigh,1,titusandronicus,1593\nhills,1,titusandronicus,1593\nstraw,1,titusandronicus,1593\nremit,1,titusandronicus,1593\nwas't,1,titusandronicus,1593\nmetal,1,titusandronicus,1593\nbush,1,titusandronicus,1593\nsooner,1,titusandronicus,1593\ntumble,1,titusandronicus,1593\nSith,1,titusandronicus,1593\ndifference,1,titusandronicus,1593\nbell,1,titusandronicus,1593\nwhereat,1,titusandronicus,1593\nWriting,1,titusandronicus,1593\ngot,1,titusandronicus,1593\nkindness,1,titusandronicus,1593\nimmediately,1,titusandronicus,1593\ncar,1,titusandronicus,1593\nsaw'st,1,titusandronicus,1593\ncorpse,1,titusandronicus,1593\npetition,1,titusandronicus,1593\nornament,1,titusandronicus,1593\ndesirous,1,titusandronicus,1593\nCompany,1,titusandronicus,1593\ntricks,1,titusandronicus,1593\n'tween,1,titusandronicus,1593\nfriends',1,titusandronicus,1593\nSeest,1,titusandronicus,1593\ndote,1,titusandronicus,1593\nGrandsire,1,titusandronicus,1593\nflouted,1,titusandronicus,1593\ncouch,1,titusandronicus,1593\ndevised,1,titusandronicus,1593\nwean,1,titusandronicus,1593\nsomewhat,1,titusandronicus,1593\nwear,1,titusandronicus,1593\nSave,1,titusandronicus,1593\nbent,1,titusandronicus,1593\nparle,1,titusandronicus,1593\ngall'd,1,titusandronicus,1593\ndisperse,1,titusandronicus,1593\nApollinem,1,titusandronicus,1593\nSaint,1,titusandronicus,1593\ngrudges,1,titusandronicus,1593\nexile,1,titusandronicus,1593\nplough,1,titusandronicus,1593\nmeanest,1,titusandronicus,1593\nLascivious,1,titusandronicus,1593\nDies,1,titusandronicus,1593\ntwice,1,titusandronicus,1593\nbrinish,1,titusandronicus,1593\ndespise,1,titusandronicus,1593\nextreme,1,titusandronicus,1593\ntedious,1,titusandronicus,1593\nruinate,1,titusandronicus,1593\ndespite,1,titusandronicus,1593\nnettles,1,titusandronicus,1593\nShaken,1,titusandronicus,1593\nAjax,1,titusandronicus,1593\namongst,1,titusandronicus,1593\nYe,1,titusandronicus,1593\npreserve,1,titusandronicus,1593\nbees,1,titusandronicus,1593\nsurvey,1,titusandronicus,1593\nlonger,1,titusandronicus,1593\nMeet,1,titusandronicus,1593\nWhate'er,1,titusandronicus,1593\nlurks,1,titusandronicus,1593\nshifts,1,titusandronicus,1593\nHunters,1,titusandronicus,1593\npains,1,titusandronicus,1593\nsink,1,titusandronicus,1593\ngate,1,titusandronicus,1593\n'Twas,1,titusandronicus,1593\nstories,1,titusandronicus,1593\nhourly,1,titusandronicus,1593\npitch,1,titusandronicus,1593\nnorth,1,titusandronicus,1593\npared,1,titusandronicus,1593\nhopeful,1,titusandronicus,1593\nlately,1,titusandronicus,1593\nChief,1,titusandronicus,1593\nchafed,1,titusandronicus,1593\nbeginning,1,titusandronicus,1593\nBoth,1,titusandronicus,1593\nafoot,1,titusandronicus,1593\npillage,1,titusandronicus,1593\nenvy's,1,titusandronicus,1593\nriver,1,titusandronicus,1593\ndogs,1,titusandronicus,1593\nstore,1,titusandronicus,1593\nnoted,1,titusandronicus,1593\nentertain,1,titusandronicus,1593\nAlcides,1,titusandronicus,1593\nSingle,1,titusandronicus,1593\nstory,1,titusandronicus,1593\nbreath,1,titusandronicus,1593\nstay'd,1,titusandronicus,1593\nFollows,1,titusandronicus,1593\neloquence,1,titusandronicus,1593\nCannot,1,titusandronicus,1593\npromises,1,titusandronicus,1593\nsingled,1,titusandronicus,1593\nkeeping,1,titusandronicus,1593\nblithe,1,titusandronicus,1593\ntyrant,1,titusandronicus,1593\ngift,1,titusandronicus,1593\nsatisfy,1,titusandronicus,1593\nhorning,1,titusandronicus,1593\nexcellent,1,titusandronicus,1593\naid,1,titusandronicus,1593\nfaster,1,titusandronicus,1593\nrepute,1,titusandronicus,1593\nsheep,1,titusandronicus,1593\nintruder,1,titusandronicus,1593\njewels,1,titusandronicus,1593\nAdvise,1,titusandronicus,1593\nfetter'd,1,titusandronicus,1593\nyoked,1,titusandronicus,1593\nunsolicited,1,titusandronicus,1593\npromontory,1,titusandronicus,1593\ntawny,1,titusandronicus,1593\nstoop,1,titusandronicus,1593\ngain,1,titusandronicus,1593\nRend,1,titusandronicus,1593\nsuccor,1,titusandronicus,1593\nAdvanced,1,titusandronicus,1593\nlaments,1,titusandronicus,1593\ntongued,1,titusandronicus,1593\nlegs,1,titusandronicus,1593\nyew,1,titusandronicus,1593\nnotes,1,titusandronicus,1593\nPass,1,titusandronicus,1593\nago,1,titusandronicus,1593\nproud'st,1,titusandronicus,1593\nquiver,1,titusandronicus,1593\nunworthy,1,titusandronicus,1593\ntragedy,1,titusandronicus,1593\ndescribes,1,titusandronicus,1593\ngilt,1,titusandronicus,1593\nstony,1,titusandronicus,1593\ndominator,1,titusandronicus,1593\nSafe,1,titusandronicus,1593\nworthily,1,titusandronicus,1593\nengines,1,titusandronicus,1593\nlikely,1,titusandronicus,1593\npluck'd,1,titusandronicus,1593\nwillful,1,titusandronicus,1593\nbefriend,1,titusandronicus,1593\nlent,1,titusandronicus,1593\nsampler,1,titusandronicus,1593\nCocytus',1,titusandronicus,1593\nBesides,1,titusandronicus,1593\ncontinual,1,titusandronicus,1593\nredress,1,titusandronicus,1593\nboast,1,titusandronicus,1593\nrainy,1,titusandronicus,1593\ntouch'd,1,titusandronicus,1593\nspleenful,1,titusandronicus,1593\ntreats,1,titusandronicus,1593\nHyperion's,1,titusandronicus,1593\nbrethren's,1,titusandronicus,1593\nturn'st,1,titusandronicus,1593\nRest,1,titusandronicus,1593\nglistering,1,titusandronicus,1593\nby'r,1,titusandronicus,1593\nmakest,1,titusandronicus,1593\nay,1,titusandronicus,1593\ncomforts,1,titusandronicus,1593\ngame,1,titusandronicus,1593\npossess'd,1,titusandronicus,1593\nslips,1,titusandronicus,1593\npierced,1,titusandronicus,1593\nedified,1,titusandronicus,1593\nah,1,titusandronicus,1593\nPluto,1,titusandronicus,1593\ncurds,1,titusandronicus,1593\nnewly,1,titusandronicus,1593\nstamped,1,titusandronicus,1593\nonset,1,titusandronicus,1593\nwench,1,titusandronicus,1593\ndispleased,1,titusandronicus,1593\nslime,1,titusandronicus,1593\nsheath,1,titusandronicus,1593\nidiot,1,titusandronicus,1593\nattending,1,titusandronicus,1593\nComplots,1,titusandronicus,1593\ncommitted,1,titusandronicus,1593\nhostage,1,titusandronicus,1593\nbodies,1,titusandronicus,1593\ntragedies,1,titusandronicus,1593\nvaried,1,titusandronicus,1593\nblackamoor,1,titusandronicus,1593\nregion,1,titusandronicus,1593\nTomb,1,titusandronicus,1593\nmoss,1,titusandronicus,1593\nwrinkles,1,titusandronicus,1593\nReach,1,titusandronicus,1593\nTroubled,1,titusandronicus,1593\nGallops,1,titusandronicus,1593\noutrageous,1,titusandronicus,1593\nthankful,1,titusandronicus,1593\nstraying,1,titusandronicus,1593\ndelicious,1,titusandronicus,1593\nidle,1,titusandronicus,1593\naccount,1,titusandronicus,1593\nsometime,1,titusandronicus,1593\ninfernal,1,titusandronicus,1593\nMyself,1,titusandronicus,1593\nlook'st,1,titusandronicus,1593\ncousin,1,titusandronicus,1593\ncarved,1,titusandronicus,1593\nmightiness,1,titusandronicus,1593\ntrain,1,titusandronicus,1593\nloves,1,titusandronicus,1593\nfind'st,1,titusandronicus,1593\nink,1,titusandronicus,1593\nchallenged,1,titusandronicus,1593\nloud,1,titusandronicus,1593\nshrilly,1,titusandronicus,1593\nlightly,1,titusandronicus,1593\ngrooms,1,titusandronicus,1593\nYea,1,titusandronicus,1593\nlost,1,titusandronicus,1593\nYes,1,titusandronicus,1593\nsheaf,1,titusandronicus,1593\nspeak'st,1,titusandronicus,1593\nThrust,1,titusandronicus,1593\nzodiac,1,titusandronicus,1593\nlest,1,titusandronicus,1593\neffectual,1,titusandronicus,1593\ndispose,1,titusandronicus,1593\nknot,1,titusandronicus,1593\nlose,1,titusandronicus,1593\nquotes,1,titusandronicus,1593\nbeauteous,1,titusandronicus,1593\nadventurous,1,titusandronicus,1593\ngreater,1,titusandronicus,1593\nmischiefs,1,titusandronicus,1593\nhaps,1,titusandronicus,1593\noutrages,1,titusandronicus,1593\nshow'd,1,titusandronicus,1593\nforgot,1,titusandronicus,1593\nscatter'd,1,titusandronicus,1593\nuprise,1,titusandronicus,1593\nacquaint,1,titusandronicus,1593\nreads,1,titusandronicus,1593\npure,1,titusandronicus,1593\nappease,1,titusandronicus,1593\nloaf,1,titusandronicus,1593\nhot,1,titusandronicus,1593\ntoad,1,titusandronicus,1593\nbriers,1,titusandronicus,1593\nsun's,1,titusandronicus,1593\nabandoned,1,titusandronicus,1593\nCame,1,titusandronicus,1593\nthrice,1,titusandronicus,1593\nharm,1,titusandronicus,1593\nspouts,1,titusandronicus,1593\nkilled,1,titusandronicus,1593\ngraves,1,titusandronicus,1593\ncomplainer,1,titusandronicus,1593\nhart,1,titusandronicus,1593\nclime,1,titusandronicus,1593\nOlympus',1,titusandronicus,1593\nrunning,1,titusandronicus,1593\nornaments,1,titusandronicus,1593\nconsummate,1,titusandronicus,1593\nfierce,1,titusandronicus,1593\nswarth,1,titusandronicus,1593\npark,1,titusandronicus,1593\ninduce,1,titusandronicus,1593\nBrought,1,titusandronicus,1593\nSeeking,1,titusandronicus,1593\nRan,1,titusandronicus,1593\npeering,1,titusandronicus,1593\ndistil,1,titusandronicus,1593\nfasten'd,1,titusandronicus,1593\npour'd,1,titusandronicus,1593\nremember'd,1,titusandronicus,1593\ncontrolment,1,titusandronicus,1593\nhug,1,titusandronicus,1593\npull,1,titusandronicus,1593\nfrost,1,titusandronicus,1593\nmessenger,1,titusandronicus,1593\nBarr'st,1,titusandronicus,1593\nsignify,1,titusandronicus,1593\nblowse,1,titusandronicus,1593\nfowl,1,titusandronicus,1593\nshallow,1,titusandronicus,1593\nCalm,1,titusandronicus,1593\nnation,1,titusandronicus,1593\nverses,1,titusandronicus,1593\nRead,1,titusandronicus,1593\nuncurls,1,titusandronicus,1593\n'Let,1,titusandronicus,1593\nglideth,1,titusandronicus,1593\ninterpret,1,titusandronicus,1593\nstrings,1,titusandronicus,1593\npalliament,1,titusandronicus,1593\nconsume,1,titusandronicus,1593\nreach,1,titusandronicus,1593\nshut,1,titusandronicus,1593\ndraws,1,titusandronicus,1593\nconsult,1,titusandronicus,1593\ncommonweal's,1,titusandronicus,1593\nsighing,1,titusandronicus,1593\nsuitors,1,titusandronicus,1593\nforty,1,titusandronicus,1593\ndaintily,1,titusandronicus,1593\nDuring,1,titusandronicus,1593\nInspire,1,titusandronicus,1593\nyounglings,1,titusandronicus,1593\nwrapped,1,titusandronicus,1593\nexcuse,1,titusandronicus,1593\ngovernor,1,titusandronicus,1593\nFury,1,titusandronicus,1593\nopen,1,titusandronicus,1593\nconstrain'd,1,titusandronicus,1593\nShe's,1,titusandronicus,1593\nabjectly,1,titusandronicus,1593\noped,1,titusandronicus,1593\nbathed,1,titusandronicus,1593\nhammering,1,titusandronicus,1593\nnightly,1,titusandronicus,1593\nkingdoms,1,titusandronicus,1593\nlaurel,1,titusandronicus,1593\nTendering,1,titusandronicus,1593\nProvide,1,titusandronicus,1593\npair,1,titusandronicus,1593\navenged,1,titusandronicus,1593\ncourts,1,titusandronicus,1593\nnobility's,1,titusandronicus,1593\npain,1,titusandronicus,1593\nRuthful,1,titusandronicus,1593\nheaviness,1,titusandronicus,1593\nPlot,1,titusandronicus,1593\nspit,1,titusandronicus,1593\nwasted,1,titusandronicus,1593\nplotted,1,titusandronicus,1593\nsoe'er,1,titusandronicus,1593\noutrage,1,titusandronicus,1593\nunsearch'd,1,titusandronicus,1593\nAscend,1,titusandronicus,1593\nmention'd,1,titusandronicus,1593\nmock,1,titusandronicus,1593\nplotter,1,titusandronicus,1593\nwalked,1,titusandronicus,1593\nscatter,1,titusandronicus,1593\nshakes,1,titusandronicus,1593\ndevise,1,titusandronicus,1593\nhate,1,titusandronicus,1593\nwaggoner,1,titusandronicus,1593\npack,1,titusandronicus,1593\naut,1,titusandronicus,1593\ninsatiate,1,titusandronicus,1593\nRansomless,1,titusandronicus,1593\nproper,1,titusandronicus,1593\nlovingly,1,titusandronicus,1593\nfaithful,1,titusandronicus,1593\nfall'n,1,titusandronicus,1593\nbelievest,1,titusandronicus,1593\nfood,1,titusandronicus,1593\npalfreys,1,titusandronicus,1593\nfavors,1,titusandronicus,1593\ntestimony,1,titusandronicus,1593\ncreatures,1,titusandronicus,1593\nprevailing,1,titusandronicus,1593\nHides,1,titusandronicus,1593\nass,1,titusandronicus,1593\nunlucky,1,titusandronicus,1593\nfond,1,titusandronicus,1593\nrear'd,1,titusandronicus,1593\nmaiden,1,titusandronicus,1593\nFitted,1,titusandronicus,1593\nBlood,1,titusandronicus,1593\ndrank,1,titusandronicus,1593\nbetide,1,titusandronicus,1593\nsecret,1,titusandronicus,1593\nHast,1,titusandronicus,1593\ncompetitors,1,titusandronicus,1593\nArm,1,titusandronicus,1593\noverborne,1,titusandronicus,1593\nYoungling,1,titusandronicus,1593\nKind,1,titusandronicus,1593\ndefended,1,titusandronicus,1593\ntrick,1,titusandronicus,1593\nboughs,1,titusandronicus,1593\nbought,1,titusandronicus,1593\ninquire,1,titusandronicus,1593\nAmong,1,titusandronicus,1593\n'Stuprum,1,titusandronicus,1593\ncolour'd,1,titusandronicus,1593\nfee,1,titusandronicus,1593\npurchased,1,titusandronicus,1593\nrave,1,titusandronicus,1593\nsmells,1,titusandronicus,1593\nleer,1,titusandronicus,1593\ndefender,1,titusandronicus,1593\nlurking,1,titusandronicus,1593\nsuffer'st,1,titusandronicus,1593\ncoffins,1,titusandronicus,1593\nbutcher'd,1,titusandronicus,1593\nunrecuring,1,titusandronicus,1593\nexperiments,1,titusandronicus,1593\nContent,1,titusandronicus,1593\nnec,1,titusandronicus,1593\ntragic,1,titusandronicus,1593\nStood,1,titusandronicus,1593\nlunacy,1,titusandronicus,1593\nbroke,1,titusandronicus,1593\nbeams,1,titusandronicus,1593\nguest,1,titusandronicus,1593\nemperial,1,titusandronicus,1593\nfranticly,1,titusandronicus,1593\nroot,1,titusandronicus,1593\nchange,1,titusandronicus,1593\nprecedent,1,titusandronicus,1593\nrequites,1,titusandronicus,1593\nlead,1,titusandronicus,1593\nspoken,1,titusandronicus,1593\nleaf,1,titusandronicus,1593\ncompact,1,titusandronicus,1593\nmarch,1,titusandronicus,1593\nconsumed,1,titusandronicus,1593\nInto,1,titusandronicus,1593\nnobler,1,titusandronicus,1593\nSibyl's,1,titusandronicus,1593\nAlive,1,titusandronicus,1593\nfas,1,titusandronicus,1593\nwheels,1,titusandronicus,1593\nfat,1,titusandronicus,1593\nmolest,1,titusandronicus,1593\ndisplay,1,titusandronicus,1593\nrays,1,titusandronicus,1593\nfumble,1,titusandronicus,1593\nlean,1,titusandronicus,1593\nsoaking,1,titusandronicus,1593\nCimmerian,1,titusandronicus,1593\nraze,1,titusandronicus,1593\nproclamations,1,titusandronicus,1593\nfrozen,1,titusandronicus,1593\neffected,1,titusandronicus,1593\nsecurely,1,titusandronicus,1593\nBecome,1,titusandronicus,1593\nsuck'dst,1,titusandronicus,1593\ncastle,1,titusandronicus,1593\ntarry,1,titusandronicus,1593\novershine,1,titusandronicus,1593\nswallowing,1,titusandronicus,1593\nembracement,1,titusandronicus,1593\nreport,1,titusandronicus,1593\ncarrier,1,titusandronicus,1593\ntokens,1,titusandronicus,1593\nsaid'st,1,titusandronicus,1593\nCanst,1,titusandronicus,1593\nshouldst,1,titusandronicus,1593\nGnawing,1,titusandronicus,1593\nbreathed,1,titusandronicus,1593\nLaertes',1,titusandronicus,1593\nbroad,1,titusandronicus,1593\nbuild,1,titusandronicus,1593\nexpress'd,1,titusandronicus,1593\nPattern'd,1,titusandronicus,1593\nTam,1,titusandronicus,1593\nBrothers,1,titusandronicus,1593\nnourish,1,titusandronicus,1593\nBetter,1,titusandronicus,1593\nhermits,1,titusandronicus,1593\nHalf,1,titusandronicus,1593\nnose,1,titusandronicus,1593\nmartyr,1,titusandronicus,1593\nenvy,1,titusandronicus,1593\nVenus,1,titusandronicus,1593\ncraftier,1,titusandronicus,1593\n'Zounds,1,titusandronicus,1593\nseizeth,1,titusandronicus,1593\nPyramus,1,titusandronicus,1593\ntrenches,1,titusandronicus,1593\nfraught,1,titusandronicus,1593\nwonder,1,titusandronicus,1593\nobscure,1,titusandronicus,1593\nadorest,1,titusandronicus,1593\nVengeance,1,titusandronicus,1593\nlanguor,1,titusandronicus,1593\nSicily,1,titusandronicus,1593\nholp'st,1,titusandronicus,1593\nmistletoe,1,titusandronicus,1593\nbeats,1,titusandronicus,1593\ngently,1,titusandronicus,1593\nglued,1,titusandronicus,1593\nsignifies,1,titusandronicus,1593\ngiveth,1,titusandronicus,1593\ncircle,1,titusandronicus,1593\nWarrants,1,titusandronicus,1593\nsprung,1,titusandronicus,1593\nlonely,1,titusandronicus,1593\nNurse's,1,titusandronicus,1593\nindifferently,1,titusandronicus,1593\npasties,1,titusandronicus,1593\ngrammar,1,titusandronicus,1593\nSooner,1,titusandronicus,1593\ninfancy,1,titusandronicus,1593\nrash,1,titusandronicus,1593\nfoemen's,1,titusandronicus,1593\nbears,1,titusandronicus,1593\ntigers,1,titusandronicus,1593\ndrunkard,1,titusandronicus,1593\nbravely,1,titusandronicus,1593\nfaint,1,titusandronicus,1593\nfavorers,1,titusandronicus,1593\nAlarbus',1,titusandronicus,1593\nunfrequented,1,titusandronicus,1593\nbundle,1,titusandronicus,1593\nyear,1,titusandronicus,1593\ncastaway,1,titusandronicus,1593\nCiting,1,titusandronicus,1593\n'An,1,titusandronicus,1593\nUncouple,1,titusandronicus,1593\nchaps,1,titusandronicus,1593\ndangers,1,titusandronicus,1593\nmock'd,1,titusandronicus,1593\nwandering,1,titusandronicus,1593\nmisbelieving,1,titusandronicus,1593\nClear,1,titusandronicus,1593\nsubstance,1,titusandronicus,1593\nannoy,1,titusandronicus,1593\nCourt,1,titusandronicus,1593\nSir,1,titusandronicus,1593\nsustenance,1,titusandronicus,1593\nbasket,1,titusandronicus,1593\nmorrows,1,titusandronicus,1593\nquickly,1,titusandronicus,1593\ngarden,1,titusandronicus,1593\nbefriended,1,titusandronicus,1593\narise,1,titusandronicus,1593\nbegging,1,titusandronicus,1593\nyou'll,1,titusandronicus,1593\nLose,1,titusandronicus,1593\nadopted,1,titusandronicus,1593\nunhappy,1,titusandronicus,1593\nuprightness,1,titusandronicus,1593\nevermore,1,titusandronicus,1593\nKissing,1,titusandronicus,1593\nuproar,1,titusandronicus,1593\nswallows,1,titusandronicus,1593\novershades,1,titusandronicus,1593\nwonder'd,1,titusandronicus,1593\nWill't,1,titusandronicus,1593\nchant,1,titusandronicus,1593\nTerras,1,titusandronicus,1593\ninjustice,1,titusandronicus,1593\nInhuman,1,titusandronicus,1593\ntutor,1,titusandronicus,1593\nDost,1,titusandronicus,1593\ngroves,1,titusandronicus,1593\ncompassionate,1,titusandronicus,1593\nquestion,1,titusandronicus,1593\nrecount,1,titusandronicus,1593\nmourn,1,titusandronicus,1593\nravens,1,titusandronicus,1593\ndiscontent,1,titusandronicus,1593\ntempestuous,1,titusandronicus,1593\nspurn,1,titusandronicus,1593\nscath,1,titusandronicus,1593\npretend,1,titusandronicus,1593\nadmits,1,titusandronicus,1593\nstrife,1,titusandronicus,1593\nPeople,1,titusandronicus,1593\nlodge,1,titusandronicus,1593\ndoors,1,titusandronicus,1593\nmortal,1,titusandronicus,1593\ntowards,1,titusandronicus,1593\nobscurity,1,titusandronicus,1593\nmill,1,titusandronicus,1593\nchariots,1,titusandronicus,1593\nmile,1,titusandronicus,1593\nmild,1,titusandronicus,1593\nDrums,1,titusandronicus,1593\nnod,1,titusandronicus,1593\ngleeful,1,titusandronicus,1593\nHector's,1,titusandronicus,1593\nsatisfaction,1,titusandronicus,1593\nprize,1,titusandronicus,1593\nmightst,1,titusandronicus,1593\nbeautify,1,titusandronicus,1593\nlioness,1,titusandronicus,1593\nDishonour'd,1,titusandronicus,1593\nvalley,1,titusandronicus,1593\nescape,1,titusandronicus,1593\nSufficeth,1,titusandronicus,1593\nAEneas,1,titusandronicus,1593\nmildly,1,titusandronicus,1593\nalready,1,titusandronicus,1593\nmesh'd,1,titusandronicus,1593\nhissing,1,titusandronicus,1593\nplebs,1,titusandronicus,1593\narcher,1,titusandronicus,1593\nnursed,1,titusandronicus,1593\neget,1,titusandronicus,1593\nsuccessfully,1,titusandronicus,1593\nthird's,1,titusandronicus,1593\nUncle,1,titusandronicus,1593\n'gainst,1,titusandronicus,1593\nCould,1,titusandronicus,1593\nFather,1,titusandronicus,1593\nshrubs,1,titusandronicus,1593\ntribunal,1,titusandronicus,1593\nuncouth,1,titusandronicus,1593\nremunerate,1,titusandronicus,1593\nanchorage,1,titusandronicus,1593\ndream,1,titusandronicus,1593\ncoward,1,titusandronicus,1593\n'And,1,titusandronicus,1593\nthick,1,titusandronicus,1593\nafflicted,1,titusandronicus,1593\nblot,1,titusandronicus,1593\ndevourers,1,titusandronicus,1593\nthrash,1,titusandronicus,1593\njading,1,titusandronicus,1593\nquench,1,titusandronicus,1593\nThee,1,titusandronicus,1593\npastimes,1,titusandronicus,1593\nungentle,1,titusandronicus,1593\nripen,1,titusandronicus,1593\ninfants,1,titusandronicus,1593\nrevengeful,1,titusandronicus,1593\nflatter,1,titusandronicus,1593\nbrains,1,titusandronicus,1593\nmiry,1,titusandronicus,1593\nstarved,1,titusandronicus,1593\negal,1,titusandronicus,1593\ncraves,1,titusandronicus,1593\ngreatest,1,titusandronicus,1593\nmournful,1,titusandronicus,1593\nSly,1,titusandronicus,1593\nruffle,1,titusandronicus,1593\nslaughterman,1,titusandronicus,1593\nspecial,1,titusandronicus,1593\nnip,1,titusandronicus,1593\ndissembled,1,titusandronicus,1593\nmiss,1,titusandronicus,1593\nCaptives,1,titusandronicus,1593\nneed,1,titusandronicus,1593\nmountain,1,titusandronicus,1593\nfish,1,titusandronicus,1593\nEating,1,titusandronicus,1593\nfree,1,titusandronicus,1593\nsearch,1,titusandronicus,1593\noven,1,titusandronicus,1593\ncozen'd,1,titusandronicus,1593\nBuz,1,titusandronicus,1593\nwaxing,1,titusandronicus,1593\nfavor'd,1,titusandronicus,1593\nnumber,1,titusandronicus,1593\nworthless,1,titusandronicus,1593\napart,1,titusandronicus,1593\ndoubted,1,titusandronicus,1593\nlibelling,1,titusandronicus,1593\narcu,1,titusandronicus,1593\ndownwards,1,titusandronicus,1593\nceremonies,1,titusandronicus,1593\nimpiety,1,titusandronicus,1593\nbreeders,1,titusandronicus,1593\ndisguised,1,titusandronicus,1593\nHorns,1,titusandronicus,1593\nmistress',1,titusandronicus,1593\nPerhaps,1,titusandronicus,1593\nliving,1,titusandronicus,1593\nones,1,titusandronicus,1593\nHautboys,1,titusandronicus,1593\nthunder'st,1,titusandronicus,1593\nbear'st,1,titusandronicus,1593\nLending,1,titusandronicus,1593\nAndronicus',1,titusandronicus,1593\nfray,1,titusandronicus,1593\nheadlong,1,titusandronicus,1593\ntrembling,1,titusandronicus,1593\ntaste,1,titusandronicus,1593\nstained,1,titusandronicus,1593\npoli,1,titusandronicus,1593\nsuspicion,1,titusandronicus,1593\npassage,1,titusandronicus,1593\nopinion,1,titusandronicus,1593\ndisturb'd,1,titusandronicus,1593\nenacts,1,titusandronicus,1593\nsting,1,titusandronicus,1593\nstint,1,titusandronicus,1593\ncontemplation,1,titusandronicus,1593\nknife's,1,titusandronicus,1593\nsubstances,1,titusandronicus,1593\nstale,1,titusandronicus,1593\nsalt,1,titusandronicus,1593\nneck,1,titusandronicus,1593\nabate,1,titusandronicus,1593\npurchase,1,titusandronicus,1593\npomp,1,titusandronicus,1593\nexperience,1,titusandronicus,1593\nstamp,1,titusandronicus,1593\nclimbeth,1,titusandronicus,1593\nthrob,1,titusandronicus,1593\ndiadem,1,titusandronicus,1593\nmildest,1,titusandronicus,1593\nLucius',1,titusandronicus,1593\nrelieves,1,titusandronicus,1593\nherbs,1,titusandronicus,1593\nfratrum,1,titusandronicus,1593\nRavish,1,titusandronicus,1593\nWeke,1,titusandronicus,1593\nDespiteful,1,titusandronicus,1593\ndetestable,1,titusandronicus,1593\nonly,1,titusandronicus,1593\nyoungest,1,titusandronicus,1593\ncurs,1,titusandronicus,1593\nActaeon's,1,titusandronicus,1593\nSad,1,titusandronicus,1593\nhears,1,titusandronicus,1593\ngad,1,titusandronicus,1593\nwelfare,1,titusandronicus,1593\nupright,1,titusandronicus,1593\nhaughty,1,titusandronicus,1593\ncomfortless,1,titusandronicus,1593\nbanish'd,1,titusandronicus,1593\ntractable,1,titusandronicus,1593\nbandy,1,titusandronicus,1593\nbloodless,1,titusandronicus,1593\nmeaner,1,titusandronicus,1593\nreprehending,1,titusandronicus,1593\nstabs,1,titusandronicus,1593\ncloset,1,titusandronicus,1593\nDead,1,titusandronicus,1593\nBeheld,1,titusandronicus,1593\ndawning,1,titusandronicus,1593\nTaurus',1,titusandronicus,1593\nclosed,1,titusandronicus,1593\nDear,1,titusandronicus,1593\nprodigies,1,titusandronicus,1593\nAstraea,1,titusandronicus,1593\ncuts,1,titusandronicus,1593\nhandless,1,titusandronicus,1593\nobsequies,1,titusandronicus,1593\nAEtna,1,titusandronicus,1593\nflight,1,titusandronicus,1593\nstanding,1,titusandronicus,1593\nvouch,1,titusandronicus,1593\no'erreach,1,titusandronicus,1593\nguileful,1,titusandronicus,1593\nremains,1,titusandronicus,1593\nintegrity,1,titusandronicus,1593\nsenate's,1,titusandronicus,1593\nmistership,1,titusandronicus,1593\ndecrees,1,titusandronicus,1593\nchampion,1,titusandronicus,1593\nThus,1,titusandronicus,1593\nscarr'd,1,titusandronicus,1593\ndecreed,1,titusandronicus,1593\nPalace,1,titusandronicus,1593\naccomplish,1,titusandronicus,1593\nwan,1,titusandronicus,1593\nearnest,1,titusandronicus,1593\nbelieve,1,titusandronicus,1593\nspacious,1,titusandronicus,1593\nsware,1,titusandronicus,1593\npoet,1,titusandronicus,1593\nable,1,titusandronicus,1593\ntuned,1,titusandronicus,1593\nWorthy,1,titusandronicus,1593\nTamora's,1,titusandronicus,1593\nreceive,1,titusandronicus,1593\ncommanded,1,titusandronicus,1593\ntrusty,1,titusandronicus,1593\nbegg'st,1,titusandronicus,1593\nnuptial,1,titusandronicus,1593\nhover,1,titusandronicus,1593\nintent,1,titusandronicus,1593\nprint,1,titusandronicus,1593\nForced,1,titusandronicus,1593\nrite,1,titusandronicus,1593\nbleed,1,titusandronicus,1593\nwood,1,titusandronicus,1593\nassure,1,titusandronicus,1593\nExpecting,1,titusandronicus,1593\nassociate,1,titusandronicus,1593\nExtremity,1,titusandronicus,1593\nsaith,1,titusandronicus,1593\nwanton,1,titusandronicus,1593\nMauri,1,titusandronicus,1593\nbereft,1,titusandronicus,1593\nends,1,titusandronicus,1593\nKnowing,1,titusandronicus,1593\nadmitted,1,titusandronicus,1593\nPrinces,1,titusandronicus,1593\nprice,1,titusandronicus,1593\ncoming,1,titusandronicus,1593\nowl,1,titusandronicus,1593\nBeg,1,titusandronicus,1593\nforfend,1,titusandronicus,1593\nexclaims,1,titusandronicus,1593\nwheel,1,titusandronicus,1593\nwitted,1,titusandronicus,1593\nwhirling,1,titusandronicus,1593\npopish,1,titusandronicus,1593\nthreats,1,titusandronicus,1593\nlullaby,1,titusandronicus,1593\nflourish'd,1,titusandronicus,1593\naspen,1,titusandronicus,1593\nrosed,1,titusandronicus,1593\nenforced,1,titusandronicus,1593\nswan's,1,titusandronicus,1593\ncurses,1,titusandronicus,1593\nsalutes,1,titusandronicus,1593\nrobb'd,1,titusandronicus,1593\ndiscover'd,1,titusandronicus,1593\nmightily,1,titusandronicus,1593\nShalt,1,titusandronicus,1593\nfact,1,titusandronicus,1593\nJovem,1,titusandronicus,1593\nprompt,1,titusandronicus,1593\ncompetitor,1,titusandronicus,1593\nagree,1,titusandronicus,1593\nemperial's,1,titusandronicus,1593\nvengeful,1,titusandronicus,1593\nplebeians,1,titusandronicus,1593\noblivion,1,titusandronicus,1593\nStraight,1,titusandronicus,1593\njoints,1,titusandronicus,1593\nwatery,1,titusandronicus,1593\nHeaven,1,titusandronicus,1593\nfaced,1,titusandronicus,1593\nrotted,1,titusandronicus,1593\nmarry,1,titusandronicus,1593\ncharges,1,titusandronicus,1593\nearthly,1,titusandronicus,1593\nHail,1,titusandronicus,1593\npoison,1,titusandronicus,1593\nweke,1,titusandronicus,1593\nkeeper's,1,titusandronicus,1593\nsize,1,titusandronicus,1593\nspeedier,1,titusandronicus,1593\nlute,1,titusandronicus,1593\nnets,1,titusandronicus,1593\ncompass,1,titusandronicus,1593\nbitterness,1,titusandronicus,1593\nOvid's,1,titusandronicus,1593\nrail,1,titusandronicus,1593\naccit'd,1,titusandronicus,1593\nnest,1,titusandronicus,1593\ndetermined,1,titusandronicus,1593\nAmongst,1,titusandronicus,1593\nStyga,1,titusandronicus,1593\nflash,1,titusandronicus,1593\nmarble,1,titusandronicus,1593\nhundred,1,titusandronicus,1593\ndiscontents,1,titusandronicus,1593\ndecipher'd,1,titusandronicus,1593\nNoble,1,titusandronicus,1593\nfile,1,titusandronicus,1593\nsurance,1,titusandronicus,1593\nglad,1,titusandronicus,1593\ngrass,1,titusandronicus,1593\nconcealed,1,titusandronicus,1593\ndispatch'd,1,titusandronicus,1593\nvomit,1,titusandronicus,1593\nlustful,1,titusandronicus,1593\ndreary,1,titusandronicus,1593\nSwear,1,titusandronicus,1593\ndurst,1,titusandronicus,1593\nlead'st,1,titusandronicus,1593\nmassacres,1,titusandronicus,1593\ncovered,1,titusandronicus,1593\nBrother,1,titusandronicus,1593\ndelays,1,titusandronicus,1593\nmeadows,1,titusandronicus,1593\nAcheron,1,titusandronicus,1593\nfog,1,titusandronicus,1593\ncloud,1,titusandronicus,1593\ndistract,1,titusandronicus,1593\ntenders,1,titusandronicus,1593\nHadst,1,titusandronicus,1593\nSomewhither,1,titusandronicus,1593\nvenereal,1,titusandronicus,1593\nlasting,1,titusandronicus,1593\nchurl,1,titusandronicus,1593\nsurnamed,1,titusandronicus,1593\ngratulate,1,titusandronicus,1593\nmethinks,1,titusandronicus,1593\nwreaks,1,titusandronicus,1593\nStabbing,1,titusandronicus,1593\nthree,1,titusandronicus,1593\nscorns,1,titusandronicus,1593\nRises,1,titusandronicus,1593\nworn,1,titusandronicus,1593\ndiscover,1,titusandronicus,1593\necstasies,1,titusandronicus,1593\ncattle,1,titusandronicus,1593\nrighteous,1,titusandronicus,1593\nthrew,1,titusandronicus,1593\nthunder's,1,titusandronicus,1593\nwore,1,titusandronicus,1593\ndancing,1,titusandronicus,1593\nunjust,1,titusandronicus,1593\nSorrow,1,titusandronicus,1593\nMark,1,titusandronicus,1593\nfix,1,titusandronicus,1593\nissuing,1,titusandronicus,1593\nperfect,1,titusandronicus,1593\nSeizing,1,titusandronicus,1593\nwots,1,titusandronicus,1593\nrich,1,titusandronicus,1593\nBoy,1,titusandronicus,1593\nhandmaid,1,titusandronicus,1593\nhorn,1,titusandronicus,1593\nBeats,1,titusandronicus,1593\nincorporate,1,titusandronicus,1593\nmarried,1,titusandronicus,1593\narm's,1,titusandronicus,1593\nvides,1,titusandronicus,1593\nminded,1,titusandronicus,1593\nlordship,1,titusandronicus,1593\nbare,1,titusandronicus,1593\nopened,1,titusandronicus,1593\nta'en,1,titusandronicus,1593\nFlattering,1,titusandronicus,1593\nsurge,1,titusandronicus,1593\nbite,1,titusandronicus,1593\nthereat,1,titusandronicus,1593\nkill'st,1,titusandronicus,1593\nwealth,1,titusandronicus,1593\ndepart,1,titusandronicus,1593\nReveal,1,titusandronicus,1593\nlived,1,titusandronicus,1593\nwhither,1,titusandronicus,1593\nPluto's,1,titusandronicus,1593\nwatch'd,1,titusandronicus,1593\nFoul,1,titusandronicus,1593\ngilded,1,titusandronicus,1593\nbird,1,titusandronicus,1593\nreproach,1,titusandronicus,1593\nbreeder,1,titusandronicus,1593\nstrikes,1,titusandronicus,1593\npublic,1,titusandronicus,1593\ndeflowered,1,titusandronicus,1593\nANDRONICI,1,titusandronicus,1593\nCut,1,titusandronicus,1593\nKill'd,1,titusandronicus,1593\nbane,1,titusandronicus,1593\nappointed,1,titusandronicus,1593\ngentleman,1,titusandronicus,1593\nEnvironed,1,titusandronicus,1593\nwill't,1,titusandronicus,1593\nvitae,1,titusandronicus,1593\nbounds,1,titusandronicus,1593\nrising,1,titusandronicus,1593\nsecrets,1,titusandronicus,1593\nprefer,1,titusandronicus,1593\nEnceladus,1,titusandronicus,1593\npowder,1,titusandronicus,1593\n'Suum,1,titusandronicus,1593\nspousal,1,titusandronicus,1593\ndrinks,1,titusandronicus,1593\nauthor,1,titusandronicus,1593\nsoul's,1,titusandronicus,1593\nally,1,titusandronicus,1593\necstasy,1,titusandronicus,1593\nbuzzing,1,titusandronicus,1593\nlap,1,titusandronicus,1593\nofficious,1,titusandronicus,1593\nListen,1,titusandronicus,1593\ndazzle,1,titusandronicus,1593\n'ticed,1,titusandronicus,1593\narm'd,1,titusandronicus,1593\nScatter'd,1,titusandronicus,1593\nPriam,1,titusandronicus,1593\ndreads,1,titusandronicus,1593\nwhatsoe'er,1,titusandronicus,1593\npoetry,1,titusandronicus,1593\nstroke,1,titusandronicus,1593\nintolerable,1,titusandronicus,1593\nRather,1,titusandronicus,1593\nalms,1,titusandronicus,1593\ngreets,1,titusandronicus,1593\nChosen,1,titusandronicus,1593\nwreakful,1,titusandronicus,1593\npledge,1,titusandronicus,1593\nholds,1,titusandronicus,1593\nshore,1,titusandronicus,1593\nswears,1,titusandronicus,1593\nquit,1,titusandronicus,1593\nmanfully,1,titusandronicus,1593\nshort,1,titusandronicus,1593\nclean,1,titusandronicus,1593\nwaited,1,titusandronicus,1593\nfirmament,1,titusandronicus,1593\nstand'st,1,titusandronicus,1593\nunknit,1,titusandronicus,1593\ndishes,1,titusandronicus,1593\nLives,1,titusandronicus,1593\neffectually,1,titusandronicus,1593\ngaping,1,titusandronicus,1593\nhonest,1,titusandronicus,1593\nmiller,1,titusandronicus,1593\nrevolt,1,titusandronicus,1593\nHelping,1,titusandronicus,1593\nclubs,1,titusandronicus,1593\ncircling,1,titusandronicus,1593\nforsooth,1,titusandronicus,1593\nmonastery,1,titusandronicus,1593\nBleeding,1,titusandronicus,1593\ncommonwealth,1,titusandronicus,1593\ngrudge,1,titusandronicus,1593\nfeeding,1,titusandronicus,1593\nresolution,1,titusandronicus,1593\nvirtues,1,titusandronicus,1593\nTully's,1,titusandronicus,1593\nundertook,1,titusandronicus,1593\ncounsels,1,titusandronicus,1593\nbuilding,1,titusandronicus,1593\nembrewed,1,titusandronicus,1593\nUnfurnish'd,1,titusandronicus,1593\nnotwithstanding,1,titusandronicus,1593\nfitted,1,titusandronicus,1593\nconvenient,1,titusandronicus,1593\nIngrateful,1,titusandronicus,1593\nHolloa,1,titusandronicus,1593\nBrave,1,titusandronicus,1593\nsurer,1,titusandronicus,1593\nGramercy,1,titusandronicus,1593\nseat,1,titusandronicus,1593\ninterest,1,titusandronicus,1593\nCauseless,1,titusandronicus,1593\ndisturbers,1,titusandronicus,1593\ncheerful,1,titusandronicus,1593\nTrot,1,titusandronicus,1593\nPrometheus,1,titusandronicus,1593\ncook,1,titusandronicus,1593\nbodes,1,titusandronicus,1593\nbachelor,1,titusandronicus,1593\nlow,1,titusandronicus,1593\neyed,1,titusandronicus,1593\nsweat,1,titusandronicus,1593\naloof,1,titusandronicus,1593\ntrophies,1,titusandronicus,1593\ndelightful,1,titusandronicus,1593\nadorn,1,titusandronicus,1593\ncaptain,1,titusandronicus,1593\nkingdom,1,titusandronicus,1593\nneedful,1,titusandronicus,1593\nbaby,1,titusandronicus,1593\noffspring,1,titusandronicus,1593\npronounced,1,titusandronicus,1593\ngnats,1,titusandronicus,1593\nseek,1,titusandronicus,1593\nfights,1,titusandronicus,1593\nUnmannerly,1,titusandronicus,1593\nfeeling,1,titusandronicus,1593\nconfederates,1,titusandronicus,1593\nskill'd,1,titusandronicus,1593\ncousins,1,titusandronicus,1593\nauditory,1,titusandronicus,1593\nsupposed,1,titusandronicus,1593\nsports,1,titusandronicus,1593\ncow,1,titusandronicus,1593\nNews,1,titusandronicus,1593\nNe'er,1,titusandronicus,1593\ncamest,1,titusandronicus,1593\ncourtesy,1,titusandronicus,1593\nEmpress,1,titusandronicus,1593\nCometh,1,titusandronicus,1593\nNilus,1,titusandronicus,1593\nscribe,1,titusandronicus,1593\nbattle,1,titusandronicus,1593\ndebated,1,titusandronicus,1593\nBelieve,1,titusandronicus,1593\nmix'd,1,titusandronicus,1593\ncrest,1,titusandronicus,1593\nberries,1,titusandronicus,1593\nConfer,1,titusandronicus,1593\nchristen,1,titusandronicus,1593\nsuspects,1,titusandronicus,1593\nDido,1,titusandronicus,1593\ntraitor,1,titusandronicus,1593\nSaturninus',1,titusandronicus,1593\nespoused,1,titusandronicus,1593\nchequer'd,1,titusandronicus,1593\nPray,1,titusandronicus,1593\nSinon,1,titusandronicus,1593\nlightens,1,titusandronicus,1593\nGentlemen,1,titusandronicus,1593\nchanging,1,titusandronicus,1593\nincrease,1,titusandronicus,1593\nusage,1,titusandronicus,1593\ncord,1,titusandronicus,1593\nwhate'er,1,titusandronicus,1593\nheavenly,1,titusandronicus,1593\nHe'll,1,titusandronicus,1593\nhostages,1,titusandronicus,1593\nunderstands,1,titusandronicus,1593\nloyalty,1,titusandronicus,1593\nnights,1,titusandronicus,1593\nheels,1,titusandronicus,1593\ntherein,1,titusandronicus,1593\nwretches,1,titusandronicus,1593\nmillion,1,titusandronicus,1593\ntiring,1,titusandronicus,1593\ngoat,1,titusandronicus,1593\nhours,1,titusandronicus,1593\nslender,1,titusandronicus,1593\nAries,1,titusandronicus,1593\nbait,1,titusandronicus,1593\nReflect,1,titusandronicus,1593\ncountrymen,1,titusandronicus,1593\ntied,1,titusandronicus,1593\nport,1,titusandronicus,1593\nSend,1,titusandronicus,1593\nextremes,1,titusandronicus,1593\nprayer,1,titusandronicus,1593\nlovers,1,titusandronicus,1593\nbeheld,1,titusandronicus,1593\nblushing,1,titusandronicus,1593\nTrim,1,titusandronicus,1593\ngusts,1,titusandronicus,1593\ngibbet,1,titusandronicus,1593\nravenous,1,titusandronicus,1593\nSent,1,titusandronicus,1593\n'Old,1,titusandronicus,1593\nfloods,1,titusandronicus,1593\ntide,1,titusandronicus,1593\nvulture,1,titusandronicus,1593\npost,1,titusandronicus,1593\nCuts,1,titusandronicus,1593\ncommiseration,1,titusandronicus,1593\nfolded,1,titusandronicus,1593\ngrieves,1,titusandronicus,1593\nbrightly,1,titusandronicus,1593\nordain'd,1,titusandronicus,1593\nbade,1,titusandronicus,1593\nbetrothed,1,titusandronicus,1593\ngrieved,1,titusandronicus,1593\nAlarbus,1,titusandronicus,1593\nCursed,1,titusandronicus,1593\nFeast,1,titusandronicus,1593\nregards,1,titusandronicus,1593\nbarren,1,titusandronicus,1593\nreputes,1,titusandronicus,1593\ncountryman,1,titusandronicus,1593\nPhoebe,1,titusandronicus,1593\nmatch,1,titusandronicus,1593\nLastly,1,titusandronicus,1593\ngloze,1,titusandronicus,1593\npassionate,1,titusandronicus,1593\nprotest,1,titusandronicus,1593\npurpose,1,titusandronicus,1593\naright,1,titusandronicus,1593\nMarch,1,titusandronicus,1593\ndevoid,1,titusandronicus,1593\nsafer,1,titusandronicus,1593\ncouple,1,titusandronicus,1593\ncodding,1,titusandronicus,1593\ndetect,1,titusandronicus,1593\ncoin,1,titusandronicus,1593\nchances,1,titusandronicus,1593\ncoil,1,titusandronicus,1593\nchanced,1,titusandronicus,1593\nlie,1,titusandronicus,1593\nAccuse,1,titusandronicus,1593\nsequester'd,1,titusandronicus,1593\nuntil,1,titusandronicus,1593\nparcel,1,titusandronicus,1593\nfootman,1,titusandronicus,1593\nlaws,1,titusandronicus,1593\ncredulous,1,titusandronicus,1593\nconduit,1,titusandronicus,1593\nchoke,1,titusandronicus,1593\nNothing,1,titusandronicus,1593\neffects,1,titusandronicus,1593\nclearness,1,titusandronicus,1593\nshive,1,titusandronicus,1593\ndivining,1,titusandronicus,1593\nbatter'd,1,titusandronicus,1593\nHerself,1,titusandronicus,1593\nhonesty,1,titusandronicus,1593\npetty,1,titusandronicus,1593\nmap,1,titusandronicus,1593\nKnighted,1,titusandronicus,1593\nclouds,1,titusandronicus,1593\nconfound,1,titusandronicus,1593\nfiends,1,titusandronicus,1593\nCountless,1,titusandronicus,1593\nbarr'd,1,titusandronicus,1593\nbetroth'd,1,titusandronicus,1593\nVALENTINE,1,titusandronicus,1593\nnourish'd,1,titusandronicus,1593\nsuccessful,1,titusandronicus,1593\nlordships,1,titusandronicus,1593\nGave,1,titusandronicus,1593\nHowever,1,titusandronicus,1593\nbalance,1,titusandronicus,1593\nconduct,1,titusandronicus,1593\ncrevice,1,titusandronicus,1593\nReplying,1,titusandronicus,1593\nrapier's,1,titusandronicus,1593\ngallant'st,1,titusandronicus,1593\nbrabble,1,titusandronicus,1593\ndoing,1,titusandronicus,1593\ncaterwauling,1,titusandronicus,1593\nbonjour,1,titusandronicus,1593\nAnother,1,titusandronicus,1593\nwouldest,1,titusandronicus,1593\nSaucy,1,titusandronicus,1593\nfunerals,1,titusandronicus,1593\nremember,1,titusandronicus,1593\nchosen,1,titusandronicus,1593\nlofty,1,titusandronicus,1593\nOppose,1,titusandronicus,1593\ntreacherous,1,titusandronicus,1593\ndisdaineth,1,titusandronicus,1593\nmightful,1,titusandronicus,1593\nmaker,1,titusandronicus,1593\nglory,1,titusandronicus,1593\nreadiness,1,titusandronicus,1593\ncheater,1,titusandronicus,1593\nmeeting,1,titusandronicus,1593\nsovereign,1,titusandronicus,1593\nruinous,1,titusandronicus,1593\nevils,1,titusandronicus,1593\nstreet,1,titusandronicus,1593\ndetermine,1,titusandronicus,1593\nLimbo,1,titusandronicus,1593\ndigress,1,titusandronicus,1593\n'Vengeance,1,titusandronicus,1593\ncinders,1,titusandronicus,1593\nsupplant,1,titusandronicus,1593\nburnt,1,titusandronicus,1593\nwhit,1,titusandronicus,1593\npleasant,1,titusandronicus,1593\nmerciful,1,titusandronicus,1593\nravisher,1,titusandronicus,1593\nMen,1,titusandronicus,1593\nbody's,1,titusandronicus,1593\nplayeth,1,titusandronicus,1593\nBasely,1,titusandronicus,1593\ntenfold,1,titusandronicus,1593\nGreat,1,titusandronicus,1593\nfled,1,titusandronicus,1593\nJunius,1,titusandronicus,1593\npunishment,1,titusandronicus,1593\nsever'd,1,titusandronicus,1593\nnumb,1,titusandronicus,1593\nTears,1,titusandronicus,1593\nwarriors,1,titusandronicus,1593\nharmony,1,titusandronicus,1593\nhenceforth,1,titusandronicus,1593\ninspired,1,titusandronicus,1593\ntosseth,1,titusandronicus,1593\namain,1,titusandronicus,1593\nphysic,1,titusandronicus,1593\nsubstituted,1,titusandronicus,1593\nIndeed,1,titusandronicus,1593\nappearing,1,titusandronicus,1593\nshafts,1,titusandronicus,1593\nbeguile,1,titusandronicus,1593\namorous,1,titusandronicus,1593\nMarry,1,titusandronicus,1593\nOrator,1,titusandronicus,1593\neunuch,1,titusandronicus,1593\nservitors,1,titusandronicus,1593\naspired,1,titusandronicus,1593\ninherit,1,titusandronicus,1593\nthither,1,titusandronicus,1593\nlath,1,titusandronicus,1593\nlimed,1,titusandronicus,1593\nbeauty,1,titusandronicus,1593\nmaugre,1,titusandronicus,1593\nLooking,1,titusandronicus,1593\nextent,1,titusandronicus,1593\nfright,1,titusandronicus,1593\nslunk,1,titusandronicus,1593\nsilver,1,titusandronicus,1593\nlist,1,titusandronicus,1593\nharms,1,titusandronicus,1593\nwhey,1,titusandronicus,1593\nSomewhat,1,titusandronicus,1593\nHecuba,1,titusandronicus,1593\nlave,1,titusandronicus,1593\nBearers,1,titusandronicus,1593\nopportunity,1,titusandronicus,1593\nApril,1,titusandronicus,1593\nCoriolanus,1,titusandronicus,1593\nwere't,1,titusandronicus,1593\nnurse's,1,titusandronicus,1593\ndon,1,titusandronicus,1593\nappetite,1,titusandronicus,1593\nLend,1,titusandronicus,1593\ncordial,1,titusandronicus,1593\nUpright,1,titusandronicus,1593\ndeflow'r,1,titusandronicus,1593\nSheathing,1,titusandronicus,1593\ncell,1,titusandronicus,1593\nstacks,1,titusandronicus,1593\nstray'd,1,titusandronicus,1593\nleading,1,titusandronicus,1593\nconflict,1,titusandronicus,1593\nshade,1,titusandronicus,1593\ntry,1,titusandronicus,1593\nwitty,1,titusandronicus,1593\nsentence,1,titusandronicus,1593\nSpotted,1,titusandronicus,1593\ndate,1,titusandronicus,1593\nswooned,1,titusandronicus,1593\nentrance,1,titusandronicus,1593\nleads,1,titusandronicus,1593\nincarnate,1,titusandronicus,1593\ncover'd,1,titusandronicus,1593\nreverse,1,titusandronicus,1593\nyesternight,1,titusandronicus,1593\njudges,1,titusandronicus,1593\nReligiously,1,titusandronicus,1593\ncareless,1,titusandronicus,1593\npattern,1,titusandronicus,1593\nbrag,1,titusandronicus,1593\nunhallowed,1,titusandronicus,1593\nlaid,1,titusandronicus,1593\ndiscovered,1,titusandronicus,1593\nrespect,1,titusandronicus,1593\ncentre,1,titusandronicus,1593\nmangled,1,titusandronicus,1593\nsomewhere,1,titusandronicus,1593\nhappily,1,titusandronicus,1593\nbrat,1,titusandronicus,1593\nmud,1,titusandronicus,1593\ndragging,1,titusandronicus,1593\nbusily,1,titusandronicus,1593\ncourt'sy,1,titusandronicus,1593\nlake,1,titusandronicus,1593\nshone,1,titusandronicus,1593\narchitect,1,titusandronicus,1593\noverwhelm'd,1,titusandronicus,1593\nliquor,1,titusandronicus,1593\nland,1,titusandronicus,1593\ncatch,1,titusandronicus,1593\nlawless,1,titusandronicus,1593\nsurvives,1,titusandronicus,1593\ncunningly,1,titusandronicus,1593\nsent'st,1,titusandronicus,1593\ndestroy,1,titusandronicus,1593\ndispatch,1,titusandronicus,1593\nglobe,1,titusandronicus,1593\nanother's,1,titusandronicus,1593\nbred,1,titusandronicus,1593\nplucking,1,titusandronicus,1593\nscimitar's,1,titusandronicus,1593\nThreatening,1,titusandronicus,1593\nsnatch,1,titusandronicus,1593\ncircumscribed,1,titusandronicus,1593\nmonths,1,titusandronicus,1593\nDRAMATIS,1,titusandronicus,1593\nslew,1,titusandronicus,1593\ncertain,1,titusandronicus,1593\nUntil,1,titusandronicus,1593\nleap'd,1,titusandronicus,1593\nshift,1,titusandronicus,1593\nhandsomely,1,titusandronicus,1593\ntis,1,titusandronicus,1593\nTouch,1,titusandronicus,1593\npropose,1,titusandronicus,1593\narmed,1,titusandronicus,1593\nDesires,1,titusandronicus,1593\nToo,1,titusandronicus,1593\nfrankly,1,titusandronicus,1593\nCaptive,1,titusandronicus,1593\nfeebleness,1,titusandronicus,1593\ndame,1,titusandronicus,1593\nquietly,1,titusandronicus,1593\nrecord,1,titusandronicus,1593\nobtain,1,titusandronicus,1593\ntired,1,titusandronicus,1593\nwills,1,titusandronicus,1593\nascend,1,titusandronicus,1593\nKneeling,1,titusandronicus,1593\ncross,1,titusandronicus,1593\ncabin,1,titusandronicus,1593\nencountered,1,titusandronicus,1593\npossibilities,1,titusandronicus,1593\npatrons,1,titusandronicus,1593\ncommand,1,titusandronicus,1593\nbooty,1,titusandronicus,1593\nboots,1,titusandronicus,1593\nrepaid,1,titusandronicus,1593\nslip,1,titusandronicus,1593\ndeflower'd,1,titusandronicus,1593\ntoads,1,titusandronicus,1593\nten,1,titusandronicus,1593\namen,1,titusandronicus,1593\nmeanwhile,1,titusandronicus,1593\njustly,1,titusandronicus,1593\nearth's,1,titusandronicus,1593\ncharity,1,titusandronicus,1593\nDido's,1,titusandronicus,1593\nadjudged,1,titusandronicus,1593\ngear,1,titusandronicus,1593\narchery,1,titusandronicus,1593\ncooling,1,titusandronicus,1593\nforbear,1,titusandronicus,1593\nremembrance,1,titusandronicus,1593\n'Peace,1,titusandronicus,1593\n'mongst,1,titusandronicus,1593\navaunt,1,titusandronicus,1593\nbids,1,titusandronicus,1593\nshape,1,titusandronicus,1593\nFame,1,titusandronicus,1593\nbewitch'd,1,titusandronicus,1593\nspoils,1,titusandronicus,1593\nThrice,1,titusandronicus,1593\nfaggot,1,titusandronicus,1593\nscrowl,1,titusandronicus,1593\nperhaps,1,titusandronicus,1593\ncrown,1,titusandronicus,1593\nundertake,1,titusandronicus,1593\nsandy,1,titusandronicus,1593\ndim,1,titusandronicus,1593\nsands,1,titusandronicus,1593\norder,1,titusandronicus,1593\nDaunt,1,titusandronicus,1593\nturn'd,1,titusandronicus,1593\nbalcony,1,titusandronicus,1593\nLieth,1,titusandronicus,1593\nwoo'd,1,titusandronicus,1593\nsapling,1,titusandronicus,1593\nwomen,1,titusandronicus,1593\nexeunt,1,titusandronicus,1593\ninsinuate,1,titusandronicus,1593\njet,2,titusandronicus,1593\nanswer,2,titusandronicus,1593\nmeet,2,titusandronicus,1593\nmanes,2,titusandronicus,1593\nsuffer,2,titusandronicus,1593\nsmiles,2,titusandronicus,1593\nProud,2,titusandronicus,1593\nbasin,2,titusandronicus,1593\necho,2,titusandronicus,1593\ndames,2,titusandronicus,1593\nunrest,2,titusandronicus,1593\ndouble,2,titusandronicus,1593\nheir,2,titusandronicus,1593\nplanted,2,titusandronicus,1593\nbusiness,2,titusandronicus,1593\nruthless,2,titusandronicus,1593\nstately,2,titusandronicus,1593\nalike,2,titusandronicus,1593\nCornelia,2,titusandronicus,1593\nrob,2,titusandronicus,1593\nsuppose,2,titusandronicus,1593\nWilt,2,titusandronicus,1593\nBear,2,titusandronicus,1593\ndire,2,titusandronicus,1593\nCAIUS,2,titusandronicus,1593\npiety,2,titusandronicus,1593\nslaughter'd,2,titusandronicus,1593\npainted,2,titusandronicus,1593\ntrunk,2,titusandronicus,1593\nbraves,2,titusandronicus,1593\nvale,2,titusandronicus,1593\nHelp,2,titusandronicus,1593\nirreligious,2,titusandronicus,1593\nhearted,2,titusandronicus,1593\nhanged,2,titusandronicus,1593\nsummer's,2,titusandronicus,1593\nmaintain,2,titusandronicus,1593\nmelodious,2,titusandronicus,1593\ncalls,2,titusandronicus,1593\nreceptacle,2,titusandronicus,1593\nrue,2,titusandronicus,1593\nlively,2,titusandronicus,1593\nrun,2,titusandronicus,1593\nsupplication,2,titusandronicus,1593\nWhom,2,titusandronicus,1593\nwaggon,2,titusandronicus,1593\nbecome,2,titusandronicus,1593\ndemand,2,titusandronicus,1593\ncast,2,titusandronicus,1593\ncase,2,titusandronicus,1593\nvast,2,titusandronicus,1593\nmercy,2,titusandronicus,1593\npassions,2,titusandronicus,1593\nKinsmen,2,titusandronicus,1593\nAfter,2,titusandronicus,1593\ncamp,2,titusandronicus,1593\nyourself,2,titusandronicus,1593\nentrails,2,titusandronicus,1593\npile,2,titusandronicus,1593\nresolve,2,titusandronicus,1593\ndrag,2,titusandronicus,1593\nConfederate,2,titusandronicus,1593\nlily,2,titusandronicus,1593\nKeep,2,titusandronicus,1593\nafterwards,2,titusandronicus,1593\nplight,2,titusandronicus,1593\nPhilomela,2,titusandronicus,1593\nconcerns,2,titusandronicus,1593\nSurprised,2,titusandronicus,1593\ndrew,2,titusandronicus,1593\nenemy's,2,titusandronicus,1593\nhearing,2,titusandronicus,1593\nvoices,2,titusandronicus,1593\npolicy,2,titusandronicus,1593\nMeanwhile,2,titusandronicus,1593\nYield,2,titusandronicus,1593\nfools,2,titusandronicus,1593\nsoft,2,titusandronicus,1593\nPerchance,2,titusandronicus,1593\npillow,2,titusandronicus,1593\nshe's,2,titusandronicus,1593\nPantheon,2,titusandronicus,1593\nerst,2,titusandronicus,1593\nafflict,2,titusandronicus,1593\nOft,2,titusandronicus,1593\nwilderness,2,titusandronicus,1593\nspeeches,2,titusandronicus,1593\nsin,2,titusandronicus,1593\nLucrece',2,titusandronicus,1593\nlight,2,titusandronicus,1593\nlaugh'd,2,titusandronicus,1593\ndeceived,2,titusandronicus,1593\nWrite,2,titusandronicus,1593\nscorn,2,titusandronicus,1593\nembrace,2,titusandronicus,1593\nfrosty,2,titusandronicus,1593\nwinds,2,titusandronicus,1593\nshipp'd,2,titusandronicus,1593\nstern,2,titusandronicus,1593\nTheir,2,titusandronicus,1593\nstudy,2,titusandronicus,1593\npitiful,2,titusandronicus,1593\nsky,2,titusandronicus,1593\nwings,2,titusandronicus,1593\nplay'd,2,titusandronicus,1593\nbewray,2,titusandronicus,1593\nswelling,2,titusandronicus,1593\nvile,2,titusandronicus,1593\neverlasting,2,titusandronicus,1593\nmocks,2,titusandronicus,1593\nTereus,2,titusandronicus,1593\nguide,2,titusandronicus,1593\nfight,2,titusandronicus,1593\nsnow,2,titusandronicus,1593\npiece,2,titusandronicus,1593\nOut,2,titusandronicus,1593\nCommit,2,titusandronicus,1593\nunhallow'd,2,titusandronicus,1593\nbliss,2,titusandronicus,1593\nprosecute,2,titusandronicus,1593\nplots,2,titusandronicus,1593\n'Long,2,titusandronicus,1593\neldest,2,titusandronicus,1593\nmark'd,2,titusandronicus,1593\nshowers,2,titusandronicus,1593\nfruit,2,titusandronicus,1593\nWherein,2,titusandronicus,1593\npearl,2,titusandronicus,1593\nprinces,2,titusandronicus,1593\ncries,2,titusandronicus,1593\npromise,2,titusandronicus,1593\nhumbly,2,titusandronicus,1593\ndescend,2,titusandronicus,1593\nmasters,2,titusandronicus,1593\nattired,2,titusandronicus,1593\ntiger,2,titusandronicus,1593\nseems,2,titusandronicus,1593\nOne,2,titusandronicus,1593\ndearer,2,titusandronicus,1593\nknow'st,2,titusandronicus,1593\nwise,2,titusandronicus,1593\nThough,2,titusandronicus,1593\nbold,2,titusandronicus,1593\nservile,2,titusandronicus,1593\nworld's,2,titusandronicus,1593\nwave,2,titusandronicus,1593\nvoice,2,titusandronicus,1593\nbaked,2,titusandronicus,1593\nrule,2,titusandronicus,1593\ndesire,2,titusandronicus,1593\nbook,2,titusandronicus,1593\nframed,2,titusandronicus,1593\nTitus's,2,titusandronicus,1593\nhe's,2,titusandronicus,1593\nsick,2,titusandronicus,1593\neach,2,titusandronicus,1593\nbig,2,titusandronicus,1593\ngrind,2,titusandronicus,1593\ntapers,2,titusandronicus,1593\ngratify,2,titusandronicus,1593\ndrown,2,titusandronicus,1593\nunkind,2,titusandronicus,1593\nWhat's,2,titusandronicus,1593\nsign,2,titusandronicus,1593\nAt,2,titusandronicus,1593\npay,2,titusandronicus,1593\nchaste,2,titusandronicus,1593\nWhiles,2,titusandronicus,1593\nhew,2,titusandronicus,1593\ndesperate,2,titusandronicus,1593\nmurderers,2,titusandronicus,1593\nbag,2,titusandronicus,1593\nhopes,2,titusandronicus,1593\nbad,2,titusandronicus,1593\nwarrior,2,titusandronicus,1593\ncruel,2,titusandronicus,1593\npities,2,titusandronicus,1593\npen,2,titusandronicus,1593\nstab,2,titusandronicus,1593\nremainder,2,titusandronicus,1593\nhit,2,titusandronicus,1593\nHa,2,titusandronicus,1593\nflowers,2,titusandronicus,1593\nquick,2,titusandronicus,1593\nwither'd,2,titusandronicus,1593\nplay,2,titusandronicus,1593\nmonstrous,2,titusandronicus,1593\nnobly,2,titusandronicus,1593\noutlive,2,titusandronicus,1593\ndevices,2,titusandronicus,1593\ntrimm'd,2,titusandronicus,1593\nsith,2,titusandronicus,1593\nsits,2,titusandronicus,1593\nespied,2,titusandronicus,1593\nOpen,2,titusandronicus,1593\nspotless,2,titusandronicus,1593\ntyrannize,2,titusandronicus,1593\npreserved,2,titusandronicus,1593\ncontrol,2,titusandronicus,1593\nsalute,2,titusandronicus,1593\nbabbling,2,titusandronicus,1593\nchildren,2,titusandronicus,1593\ngaze,2,titusandronicus,1593\nlatest,2,titusandronicus,1593\nFollowers,2,titusandronicus,1593\ncomplot,2,titusandronicus,1593\nValentine,2,titusandronicus,1593\nbeyond,2,titusandronicus,1593\nshadow,2,titusandronicus,1593\nreproachful,2,titusandronicus,1593\nTarquin,2,titusandronicus,1593\ntheme,2,titusandronicus,1593\nfriendly,2,titusandronicus,1593\ncurse,2,titusandronicus,1593\nbadge,2,titusandronicus,1593\ngather'd,2,titusandronicus,1593\nused,2,titusandronicus,1593\nTraitors,2,titusandronicus,1593\npicture,2,titusandronicus,1593\nsister's,2,titusandronicus,1593\nsing,2,titusandronicus,1593\nmisty,2,titusandronicus,1593\ndeer,2,titusandronicus,1593\nwreak,2,titusandronicus,1593\nengine,2,titusandronicus,1593\npromised,2,titusandronicus,1593\nimage,2,titusandronicus,1593\naim,2,titusandronicus,1593\nSoldiers,2,titusandronicus,1593\nTraitor,2,titusandronicus,1593\nair,2,titusandronicus,1593\nraise,2,titusandronicus,1593\nFear,2,titusandronicus,1593\nHere's,2,titusandronicus,1593\nstood,2,titusandronicus,1593\nbeat,2,titusandronicus,1593\nmurderous,2,titusandronicus,1593\nApollo,2,titusandronicus,1593\nnapkin,2,titusandronicus,1593\nweigh'd,2,titusandronicus,1593\ndeal,2,titusandronicus,1593\nwhelps,2,titusandronicus,1593\npriest,2,titusandronicus,1593\ndestruction,2,titusandronicus,1593\ndismall'st,2,titusandronicus,1593\nspeed,2,titusandronicus,1593\nprivilege,2,titusandronicus,1593\naccompany,2,titusandronicus,1593\nrouse,2,titusandronicus,1593\nmove,2,titusandronicus,1593\nabominable,2,titusandronicus,1593\nsmall,2,titusandronicus,1593\nSecond,2,titusandronicus,1593\nReads,2,titusandronicus,1593\ntemper,2,titusandronicus,1593\nmorn,2,titusandronicus,1593\nrapes,2,titusandronicus,1593\nenmity,2,titusandronicus,1593\nhadst,2,titusandronicus,1593\nbegg'd,2,titusandronicus,1593\nado,2,titusandronicus,1593\nmoon,2,titusandronicus,1593\nloss,2,titusandronicus,1593\nbeholding,2,titusandronicus,1593\nwherein,2,titusandronicus,1593\nspent,2,titusandronicus,1593\nbootless,2,titusandronicus,1593\nknee,2,titusandronicus,1593\nmen's,2,titusandronicus,1593\nevents,2,titusandronicus,1593\neasy,2,titusandronicus,1593\nkills,2,titusandronicus,1593\nhard,2,titusandronicus,1593\ndiscourse,2,titusandronicus,1593\nfield,2,titusandronicus,1593\nafford,2,titusandronicus,1593\nhale,2,titusandronicus,1593\nknit,2,titusandronicus,1593\nverse,2,titusandronicus,1593\nsenate,2,titusandronicus,1593\nperform'd,2,titusandronicus,1593\nTrumpets,2,titusandronicus,1593\nladder,2,titusandronicus,1593\nScythia,2,titusandronicus,1593\njoyful,2,titusandronicus,1593\ncity,2,titusandronicus,1593\nUnder,2,titusandronicus,1593\ndeaths,2,titusandronicus,1593\nweeps,2,titusandronicus,1593\nprepare,2,titusandronicus,1593\nimpatient,2,titusandronicus,1593\ndelight,2,titusandronicus,1593\nmoney,2,titusandronicus,1593\nfrown,2,titusandronicus,1593\nstrive,2,titusandronicus,1593\nfoot,2,titusandronicus,1593\nbosom,2,titusandronicus,1593\nworldly,2,titusandronicus,1593\nfool,2,titusandronicus,1593\nputs,2,titusandronicus,1593\nVirginius,2,titusandronicus,1593\nfiend,2,titusandronicus,1593\nprepared,2,titusandronicus,1593\nobject,2,titusandronicus,1593\nmayst,2,titusandronicus,1593\nfold,2,titusandronicus,1593\ningratitude,2,titusandronicus,1593\nknock,2,titusandronicus,1593\nthanks,2,titusandronicus,1593\nAccursed,2,titusandronicus,1593\nfed,2,titusandronicus,1593\nenjoy,2,titusandronicus,1593\nwillingly,2,titusandronicus,1593\nArt,2,titusandronicus,1593\nhaving,2,titusandronicus,1593\nhumbleness,2,titusandronicus,1593\nShould,2,titusandronicus,1593\nhunter's,2,titusandronicus,1593\nfrenzy,2,titusandronicus,1593\noften,2,titusandronicus,1593\nroom,2,titusandronicus,1593\nthrough,2,titusandronicus,1593\ncondemn'd,2,titusandronicus,1593\nkeeps,2,titusandronicus,1593\nbreeds,2,titusandronicus,1593\nshameful,2,titusandronicus,1593\nmaid,2,titusandronicus,1593\nsuffrages,2,titusandronicus,1593\nmischief,2,titusandronicus,1593\nKnock,2,titusandronicus,1593\nTribune,2,titusandronicus,1593\nLords,2,titusandronicus,1593\nnote,2,titusandronicus,1593\nrepose,2,titusandronicus,1593\nmarks,2,titusandronicus,1593\nbeast,2,titusandronicus,1593\naction,2,titusandronicus,1593\nscroll,2,titusandronicus,1593\nrestore,2,titusandronicus,1593\nPeace,2,titusandronicus,1593\nPresents,2,titusandronicus,1593\nguides,2,titusandronicus,1593\nPointing,2,titusandronicus,1593\nremedy,2,titusandronicus,1593\nthings,2,titusandronicus,1593\ntraitors,2,titusandronicus,1593\nsirrah,2,titusandronicus,1593\nbottom,2,titusandronicus,1593\nSoft,2,titusandronicus,1593\nchase,2,titusandronicus,1593\nGrave,2,titusandronicus,1593\nSit,2,titusandronicus,1593\ncharm,2,titusandronicus,1593\nmount,2,titusandronicus,1593\nHigh,2,titusandronicus,1593\nscars,2,titusandronicus,1593\nplaces,2,titusandronicus,1593\nere,2,titusandronicus,1593\nSemiramis,2,titusandronicus,1593\nTitan's,2,titusandronicus,1593\nprecious,2,titusandronicus,1593\nyours,2,titusandronicus,1593\nother's,2,titusandronicus,1593\nmilk,2,titusandronicus,1593\nLong,2,titusandronicus,1593\nshield,2,titusandronicus,1593\nMakes,2,titusandronicus,1593\nkisses,2,titusandronicus,1593\ntempest,2,titusandronicus,1593\nbosoms,2,titusandronicus,1593\nfoolish,2,titusandronicus,1593\nSons,2,titusandronicus,1593\nrests,2,titusandronicus,1593\nwrought,2,titusandronicus,1593\nson's,2,titusandronicus,1593\nproudest,2,titusandronicus,1593\ncrimson,2,titusandronicus,1593\ndevils,2,titusandronicus,1593\nstate,2,titusandronicus,1593\nlet's,2,titusandronicus,1593\nSEMPRONIUS,2,titusandronicus,1593\nlentus,2,titusandronicus,1593\nblow,2,titusandronicus,1593\nvictorious,2,titusandronicus,1593\nheaven's,2,titusandronicus,1593\nsmoke,2,titusandronicus,1593\nThird,2,titusandronicus,1593\ndainty,2,titusandronicus,1593\nstain,2,titusandronicus,1593\nComing,2,titusandronicus,1593\nclose,2,titusandronicus,1593\nproved,2,titusandronicus,1593\nmurders,2,titusandronicus,1593\ncarefully,2,titusandronicus,1593\nFriends,2,titusandronicus,1593\nReturns,2,titusandronicus,1593\nbanishment,2,titusandronicus,1593\nthrow,2,titusandronicus,1593\noft,2,titusandronicus,1593\n'Twill,2,titusandronicus,1593\nhappiness,2,titusandronicus,1593\nbeastly,2,titusandronicus,1593\nwalks,2,titusandronicus,1593\nrelent,2,titusandronicus,1593\nwalls,2,titusandronicus,1593\nflint,2,titusandronicus,1593\ndust,2,titusandronicus,1593\ncalled,2,titusandronicus,1593\nShed,2,titusandronicus,1593\nwax,2,titusandronicus,1593\nflourish,2,titusandronicus,1593\narmy,2,titusandronicus,1593\ngrowing,2,titusandronicus,1593\ncommander,2,titusandronicus,1593\nthemselves,2,titusandronicus,1593\nhandle,2,titusandronicus,1593\nrage,2,titusandronicus,1593\npride,2,titusandronicus,1593\nforward,2,titusandronicus,1593\nwont,2,titusandronicus,1593\nnext,2,titusandronicus,1593\npossess,2,titusandronicus,1593\nhail,2,titusandronicus,1593\nrequite,2,titusandronicus,1593\nseize,2,titusandronicus,1593\nransom,2,titusandronicus,1593\nserved,2,titusandronicus,1593\ntaken,2,titusandronicus,1593\nwhat's,2,titusandronicus,1593\nrequire,2,titusandronicus,1593\nkilling,2,titusandronicus,1593\nwomb,2,titusandronicus,1593\nowe,2,titusandronicus,1593\nlopp'd,2,titusandronicus,1593\nrain,2,titusandronicus,1593\nbaleful,2,titusandronicus,1593\ndoings,2,titusandronicus,1593\nPlead,2,titusandronicus,1593\ndull,2,titusandronicus,1593\nope,2,titusandronicus,1593\nwrong'd,2,titusandronicus,1593\nwhence,2,titusandronicus,1593\ncontempt,2,titusandronicus,1593\nguilty,2,titusandronicus,1593\ntable,2,titusandronicus,1593\nwept,2,titusandronicus,1593\nminds,2,titusandronicus,1593\njudge,2,titusandronicus,1593\ndesert,2,titusandronicus,1593\nsnake,2,titusandronicus,1593\nswells,2,titusandronicus,1593\nGreeks,2,titusandronicus,1593\npleased,2,titusandronicus,1593\nwork,2,titusandronicus,1593\nearthy,2,titusandronicus,1593\ncolours,2,titusandronicus,1593\npassing,2,titusandronicus,1593\npassion,2,titusandronicus,1593\nfill,2,titusandronicus,1593\nsafety,2,titusandronicus,1593\nbark,2,titusandronicus,1593\nthereby,2,titusandronicus,1593\nduties,2,titusandronicus,1593\nwide,2,titusandronicus,1593\nUnto,2,titusandronicus,1593\nshows,2,titusandronicus,1593\nvex,2,titusandronicus,1593\nsmooth,2,titusandronicus,1593\npractise,2,titusandronicus,1593\nperceive,2,titusandronicus,1593\nbeware,2,titusandronicus,1593\nwrongfully,2,titusandronicus,1593\nJudges,2,titusandronicus,1593\nband,2,titusandronicus,1593\nfeeble,2,titusandronicus,1593\ngallant,2,titusandronicus,1593\ncoal,2,titusandronicus,1593\ntorment,2,titusandronicus,1593\ncarry,2,titusandronicus,1593\nrapier,2,titusandronicus,1593\nopenly,2,titusandronicus,1593\nVillains,2,titusandronicus,1593\nLed,2,titusandronicus,1593\nHorace,2,titusandronicus,1593\nempire,2,titusandronicus,1593\ngreen,2,titusandronicus,1593\nmaster,2,titusandronicus,1593\ngiddy,2,titusandronicus,1593\nclosing,2,titusandronicus,1593\nsew'd,2,titusandronicus,1593\ncontroll'd,2,titusandronicus,1593\nwinter,2,titusandronicus,1593\nflood,2,titusandronicus,1593\ntrain'd,2,titusandronicus,1593\nseal,2,titusandronicus,1593\ncool,2,titusandronicus,1593\naught,2,titusandronicus,1593\nseem,2,titusandronicus,1593\npresence,2,titusandronicus,1593\nadore,2,titusandronicus,1593\nMine,2,titusandronicus,1593\nrender,2,titusandronicus,1593\nPatience,2,titusandronicus,1593\nDian,2,titusandronicus,1593\nhound,2,titusandronicus,1593\npatricians,2,titusandronicus,1593\ncorn,2,titusandronicus,1593\ntroop,2,titusandronicus,1593\npledges,2,titusandronicus,1593\ntrembles,2,titusandronicus,1593\nbail,2,titusandronicus,1593\nsouls,2,titusandronicus,1593\nself,2,titusandronicus,1593\nled,2,titusandronicus,1593\nundo,2,titusandronicus,1593\nalas,2,titusandronicus,1593\ncold,2,titusandronicus,1593\nhighest,2,titusandronicus,1593\ntriumphs,2,titusandronicus,1593\nbestow,2,titusandronicus,1593\nunspeakable,2,titusandronicus,1593\nthreat,2,titusandronicus,1593\ntriumph,2,titusandronicus,1593\nfrantic,2,titusandronicus,1593\nPatricians,2,titusandronicus,1593\nwrite,2,titusandronicus,1593\ncloudy,2,titusandronicus,1593\nAgree,2,titusandronicus,1593\nsounded,2,titusandronicus,1593\ndistressed,2,titusandronicus,1593\nleast,2,titusandronicus,1593\nabroad,2,titusandronicus,1593\nSaturn,2,titusandronicus,1593\nforced,2,titusandronicus,1593\ndread,2,titusandronicus,1593\nmet,2,titusandronicus,1593\narmoury,2,titusandronicus,1593\nlamenting,2,titusandronicus,1593\nRise,2,titusandronicus,1593\nmurder'd,2,titusandronicus,1593\ngraciously,2,titusandronicus,1593\nheartily,2,titusandronicus,1593\nravished,2,titusandronicus,1593\nwithdraw,2,titusandronicus,1593\nlion,2,titusandronicus,1593\nlark,2,titusandronicus,1593\ndismiss,2,titusandronicus,1593\nwomanhood,2,titusandronicus,1593\nterror,2,titusandronicus,1593\nsheathe,2,titusandronicus,1593\ncitizens,2,titusandronicus,1593\nSecure,2,titusandronicus,1593\nWithout,2,titusandronicus,1593\ntributary,2,titusandronicus,1593\nragged,2,titusandronicus,1593\nJustice,2,titusandronicus,1593\nentreats,2,titusandronicus,1593\ncontent,2,titusandronicus,1593\nsilent,2,titusandronicus,1593\nslay,2,titusandronicus,1593\nMutius',2,titusandronicus,1593\nhonour'd,2,titusandronicus,1593\ndark,2,titusandronicus,1593\nfamish,2,titusandronicus,1593\nFalls,2,titusandronicus,1593\nDie,2,titusandronicus,1593\nThracian,2,titusandronicus,1593\nmiseries,2,titusandronicus,1593\nsudden,2,titusandronicus,1593\nstratagem,2,titusandronicus,1593\ntop,2,titusandronicus,1593\nlamb,2,titusandronicus,1593\ninter,2,titusandronicus,1593\nBring,2,titusandronicus,1593\nchariot,2,titusandronicus,1593\nrescue,2,titusandronicus,1593\npass'd,2,titusandronicus,1593\nwithout,2,titusandronicus,1593\nambitious,2,titusandronicus,1593\ntrees,2,titusandronicus,1593\ndew,2,titusandronicus,1593\nprivate,2,titusandronicus,1593\nFair,2,titusandronicus,1593\nawake,2,titusandronicus,1593\nstomachs,2,titusandronicus,1593\nmutual,2,titusandronicus,1593\nspirit,2,titusandronicus,1593\nhellish,2,titusandronicus,1593\nfragrant,2,titusandronicus,1593\nrepair,2,titusandronicus,1593\nparley,2,titusandronicus,1593\nbreathe,2,titusandronicus,1593\nbide,2,titusandronicus,1593\ne'er,2,titusandronicus,1593\ndig,2,titusandronicus,1593\nungrateful,2,titusandronicus,1593\nsummer,2,titusandronicus,1593\nin,258,titusandronicus,1593\nattended,3,titusandronicus,1593\nadvanced,3,titusandronicus,1593\nV,3,titusandronicus,1593\ntimes,3,titusandronicus,1593\nmeed,3,titusandronicus,1593\nc,3,titusandronicus,1593\nguilt,3,titusandronicus,1593\nhorse,3,titusandronicus,1593\nlament,3,titusandronicus,1593\nwicked,3,titusandronicus,1593\nhonours,3,titusandronicus,1593\nVillain,3,titusandronicus,1593\nmelt,3,titusandronicus,1593\nwrites,3,titusandronicus,1593\nsighs,3,titusandronicus,1593\ndrum,3,titusandronicus,1593\nfought,3,titusandronicus,1593\nadvance,3,titusandronicus,1593\nnought,3,titusandronicus,1593\nbefall,3,titusandronicus,1593\nsort,3,titusandronicus,1593\nlies,3,titusandronicus,1593\nALARBUS,3,titusandronicus,1593\nbowels,3,titusandronicus,1593\nspare,3,titusandronicus,1593\nloathsome,3,titusandronicus,1593\nPoor,3,titusandronicus,1593\nmartyr'd,3,titusandronicus,1593\nsaw,3,titusandronicus,1593\nchop,3,titusandronicus,1593\ngolden,3,titusandronicus,1593\nrites,3,titusandronicus,1593\nstands,3,titusandronicus,1593\nwarrant,3,titusandronicus,1593\nwall,3,titusandronicus,1593\nsuit,3,titusandronicus,1593\nmurdered,3,titusandronicus,1593\ncounsel,3,titusandronicus,1593\nbeloved,3,titusandronicus,1593\nfaults,3,titusandronicus,1593\nleague,3,titusandronicus,1593\nsends,3,titusandronicus,1593\nreceived,3,titusandronicus,1593\nborn,3,titusandronicus,1593\ncommon,3,titusandronicus,1593\nloose,3,titusandronicus,1593\nelder,3,titusandronicus,1593\ngrow,3,titusandronicus,1593\nwant,3,titusandronicus,1593\nwipe,3,titusandronicus,1593\nwarm,3,titusandronicus,1593\npretty,3,titusandronicus,1593\nwash,3,titusandronicus,1593\nconsecrate,3,titusandronicus,1593\nmatter,3,titusandronicus,1593\nurge,3,titusandronicus,1593\nhas,3,titusandronicus,1593\nutter,3,titusandronicus,1593\npatience,3,titusandronicus,1593\namong,3,titusandronicus,1593\nbay,3,titusandronicus,1593\nempery,3,titusandronicus,1593\npanther,3,titusandronicus,1593\ninnocent,3,titusandronicus,1593\nsince,3,titusandronicus,1593\npleasure,3,titusandronicus,1593\nLet's,3,titusandronicus,1593\napplaud,3,titusandronicus,1593\npast,3,titusandronicus,1593\npass,3,titusandronicus,1593\nnobility,3,titusandronicus,1593\nprove,3,titusandronicus,1593\nfields,3,titusandronicus,1593\nEmperor,3,titusandronicus,1593\nstruck,3,titusandronicus,1593\nprisoners,3,titusandronicus,1593\nwoful,3,titusandronicus,1593\nBehold,3,titusandronicus,1593\nwelkin,3,titusandronicus,1593\nsuddenly,3,titusandronicus,1593\nbeget,3,titusandronicus,1593\nswift,3,titusandronicus,1593\nPallas,3,titusandronicus,1593\nsolemn,3,titusandronicus,1593\nwretch,3,titusandronicus,1593\nha,3,titusandronicus,1593\nbreast,3,titusandronicus,1593\npaste,3,titusandronicus,1593\nTITUS's,3,titusandronicus,1593\nrepent,3,titusandronicus,1593\nneeds,3,titusandronicus,1593\nstone,3,titusandronicus,1593\napproach,3,titusandronicus,1593\nforget,3,titusandronicus,1593\ndoor,3,titusandronicus,1593\nbanished,3,titusandronicus,1593\ndamn'd,3,titusandronicus,1593\nRenowned,3,titusandronicus,1593\nendure,3,titusandronicus,1593\nless,3,titusandronicus,1593\nill,3,titusandronicus,1593\nhuntsman,3,titusandronicus,1593\nready,3,titusandronicus,1593\nclimb,3,titusandronicus,1593\nhark,3,titusandronicus,1593\nbasely,3,titusandronicus,1593\nexecuted,3,titusandronicus,1593\naxe,3,titusandronicus,1593\nspeaks,3,titusandronicus,1593\nweapon,3,titusandronicus,1593\nround,3,titusandronicus,1593\nemploy'd,3,titusandronicus,1593\nMore,3,titusandronicus,1593\nFull,3,titusandronicus,1593\ndrawn,3,titusandronicus,1593\npraise,3,titusandronicus,1593\npluck,3,titusandronicus,1593\ncourse,3,titusandronicus,1593\nCaius,3,titusandronicus,1593\npresent,3,titusandronicus,1593\nreturn'd,3,titusandronicus,1593\nBassianus',3,titusandronicus,1593\nstones,3,titusandronicus,1593\ndismal,3,titusandronicus,1593\nAndronici,3,titusandronicus,1593\nchastity,3,titusandronicus,1593\nLavinia's,3,titusandronicus,1593\ntyranny,3,titusandronicus,1593\nfresh,3,titusandronicus,1593\nAttendant,3,titusandronicus,1593\nmonument,3,titusandronicus,1593\nchance,3,titusandronicus,1593\nundone,3,titusandronicus,1593\ndeadly,3,titusandronicus,1593\nministers,3,titusandronicus,1593\nguess,3,titusandronicus,1593\nheight,3,titusandronicus,1593\nfar,3,titusandronicus,1593\nnay,3,titusandronicus,1593\nTen,3,titusandronicus,1593\nsilence,3,titusandronicus,1593\nindeed,3,titusandronicus,1593\nfaction,3,titusandronicus,1593\nthinks,3,titusandronicus,1593\nsquare,3,titusandronicus,1593\n'Ad,3,titusandronicus,1593\noration,3,titusandronicus,1593\nborne,3,titusandronicus,1593\nperform,3,titusandronicus,1593\nSet,3,titusandronicus,1593\nmisery,3,titusandronicus,1593\nawhile,3,titusandronicus,1593\neffect,3,titusandronicus,1593\nsacrifice,3,titusandronicus,1593\ncharitable,3,titusandronicus,1593\nteeth,3,titusandronicus,1593\nsoldiers,3,titusandronicus,1593\nblush,3,titusandronicus,1593\nthere's,3,titusandronicus,1593\nknows,3,titusandronicus,1593\nfountain,3,titusandronicus,1593\nissue,3,titusandronicus,1593\nachieve,3,titusandronicus,1593\nbecause,3,titusandronicus,1593\nwot,3,titusandronicus,1593\nwon,3,titusandronicus,1593\ngates,3,titusandronicus,1593\nthreatening,3,titusandronicus,1593\ntrouble,3,titusandronicus,1593\ndesires,3,titusandronicus,1593\nwrath,3,titusandronicus,1593\nflies,3,titusandronicus,1593\nfive,3,titusandronicus,1593\nring,3,titusandronicus,1593\ncommonweal,3,titusandronicus,1593\nmorrow,3,titusandronicus,1593\nsubtle,3,titusandronicus,1593\nMercury,3,titusandronicus,1593\nstaff,3,titusandronicus,1593\nrise,3,titusandronicus,1593\nperforce,3,titusandronicus,1593\noath,3,titusandronicus,1593\nintend,3,titusandronicus,1593\nkinsmen,3,titusandronicus,1593\ncursed,3,titusandronicus,1593\nhair,3,titusandronicus,1593\ntakes,3,titusandronicus,1593\nvirtue's,3,titusandronicus,1593\nwondrous,3,titusandronicus,1593\nyoke,3,titusandronicus,1593\nangry,3,titusandronicus,1593\ngifts,3,titusandronicus,1593\nShow,3,titusandronicus,1593\ncreate,3,titusandronicus,1593\nMany,3,titusandronicus,1593\nweapons,3,titusandronicus,1593\nhumour,3,titusandronicus,1593\ncompany,3,titusandronicus,1593\nfie,3,titusandronicus,1593\nwoods,3,titusandronicus,1593\nlines,3,titusandronicus,1593\nmeaning,3,titusandronicus,1593\nbase,3,titusandronicus,1593\nfast,3,titusandronicus,1593\ntrumpets,3,titusandronicus,1593\nlad,3,titusandronicus,1593\nman's,3,titusandronicus,1593\nshoot,3,titusandronicus,1593\nholy,3,titusandronicus,1593\nmelody,3,titusandronicus,1593\ngreet,3,titusandronicus,1593\ndangerous,3,titusandronicus,1593\nAlthough,3,titusandronicus,1593\nfamily,3,titusandronicus,1593\ntask,3,titusandronicus,1593\nwife,3,titusandronicus,1593\nprayers,3,titusandronicus,1593\nhearts,3,titusandronicus,1593\narrows,3,titusandronicus,1593\nsacred,3,titusandronicus,1593\nperson,3,titusandronicus,1593\nfuneral,3,titusandronicus,1593\nprison,3,titusandronicus,1593\ndeceive,3,titusandronicus,1593\ngoes,3,titusandronicus,1593\nTwo,3,titusandronicus,1593\nstorms,3,titusandronicus,1593\npeal,3,titusandronicus,1593\nreward,3,titusandronicus,1593\nmakes,3,titusandronicus,1593\nladies,3,titusandronicus,1593\nmourning,3,titusandronicus,1593\nnephews,3,titusandronicus,1593\nlate,3,titusandronicus,1593\nhurt,3,titusandronicus,1593\nstrange,3,titusandronicus,1593\nbooks,3,titusandronicus,1593\ngoing,3,titusandronicus,1593\nmouths,3,titusandronicus,1593\nspring,3,titusandronicus,1593\ndoe,3,titusandronicus,1593\nprincely,3,titusandronicus,1593\nGracious,3,titusandronicus,1593\nhonour's,3,titusandronicus,1593\nswallow,3,titusandronicus,1593\ndare,3,titusandronicus,1593\nLest,3,titusandronicus,1593\nhumbled,3,titusandronicus,1593\ndry,3,titusandronicus,1593\nreverend,3,titusandronicus,1593\nTake,3,titusandronicus,1593\ndrown'd,3,titusandronicus,1593\nden,3,titusandronicus,1593\nhunting,3,titusandronicus,1593\nenemy,3,titusandronicus,1593\nTut,3,titusandronicus,1593\nfortunes,3,titusandronicus,1593\nlady,3,titusandronicus,1593\ntreason,4,titusandronicus,1593\no'er,4,titusandronicus,1593\njoin,4,titusandronicus,1593\ndays,4,titusandronicus,1593\nwrit,4,titusandronicus,1593\nFie,4,titusandronicus,1593\nshadows,4,titusandronicus,1593\nheld,4,titusandronicus,1593\nStay,4,titusandronicus,1593\nKills,4,titusandronicus,1593\nviolent,4,titusandronicus,1593\nprisoner,4,titusandronicus,1593\nravish'd,4,titusandronicus,1593\ncave,4,titusandronicus,1593\nalthough,4,titusandronicus,1593\nfury,4,titusandronicus,1593\ndrink,4,titusandronicus,1593\nunder,4,titusandronicus,1593\nprey,4,titusandronicus,1593\ntruth,4,titusandronicus,1593\ntrust,4,titusandronicus,1593\nwounded,4,titusandronicus,1593\npleasing,4,titusandronicus,1593\nsoon,4,titusandronicus,1593\njest,4,titusandronicus,1593\nyears,4,titusandronicus,1593\nRape,4,titusandronicus,1593\nJove,4,titusandronicus,1593\ncalm,4,titusandronicus,1593\nnoise,4,titusandronicus,1593\nwait,4,titusandronicus,1593\nocean,4,titusandronicus,1593\nexecution,4,titusandronicus,1593\nnothing,4,titusandronicus,1593\nmerry,4,titusandronicus,1593\nwake,4,titusandronicus,1593\n'twas,4,titusandronicus,1593\nmurderer,4,titusandronicus,1593\nWas,4,titusandronicus,1593\ndeserts,4,titusandronicus,1593\nlooks,4,titusandronicus,1593\nThanks,4,titusandronicus,1593\naccursed,4,titusandronicus,1593\nfault,4,titusandronicus,1593\nabove,4,titusandronicus,1593\nfearful,4,titusandronicus,1593\nblind,4,titusandronicus,1593\nchoose,4,titusandronicus,1593\nflesh,4,titusandronicus,1593\ndies,4,titusandronicus,1593\nwish,4,titusandronicus,1593\nmurder,4,titusandronicus,1593\nstop,4,titusandronicus,1593\nwars,4,titusandronicus,1593\nsteel,4,titusandronicus,1593\nThere's,4,titusandronicus,1593\nbright,4,titusandronicus,1593\nnephew,4,titusandronicus,1593\neternal,4,titusandronicus,1593\ngovern,4,titusandronicus,1593\nLo,4,titusandronicus,1593\nPhilomel,4,titusandronicus,1593\nStand,4,titusandronicus,1593\ntear,4,titusandronicus,1593\nelection,4,titusandronicus,1593\nReceive,4,titusandronicus,1593\nburn,4,titusandronicus,1593\ncoffin,4,titusandronicus,1593\nimperial,4,titusandronicus,1593\nChild,4,titusandronicus,1593\nput,4,titusandronicus,1593\nfarewell,4,titusandronicus,1593\nturns,4,titusandronicus,1593\nbegin,4,titusandronicus,1593\nsaid,4,titusandronicus,1593\nstorm,4,titusandronicus,1593\nRapine,4,titusandronicus,1593\nbetray,4,titusandronicus,1593\nUnless,4,titusandronicus,1593\ndeaf,4,titusandronicus,1593\nstain'd,4,titusandronicus,1593\nburied,4,titusandronicus,1593\nmiserable,4,titusandronicus,1593\nresolved,4,titusandronicus,1593\nloved,4,titusandronicus,1593\nplot,4,titusandronicus,1593\nweeds,4,titusandronicus,1593\nprince,4,titusandronicus,1593\nplain,4,titusandronicus,1593\nmighty,4,titusandronicus,1593\narm,4,titusandronicus,1593\nforlorn,4,titusandronicus,1593\nlittle,4,titusandronicus,1593\nalive,4,titusandronicus,1593\nshot,4,titusandronicus,1593\ndreadful,4,titusandronicus,1593\nAre,4,titusandronicus,1593\nKing,4,titusandronicus,1593\nSirrah,4,titusandronicus,1593\nHath,4,titusandronicus,1593\nMadam,4,titusandronicus,1593\nmoved,4,titusandronicus,1593\nhoney,4,titusandronicus,1593\nalmost,4,titusandronicus,1593\ntender,4,titusandronicus,1593\nours,4,titusandronicus,1593\nhide,4,titusandronicus,1593\nwritten,4,titusandronicus,1593\ndevice,4,titusandronicus,1593\ndidst,4,titusandronicus,1593\nmidwife,4,titusandronicus,1593\nmark,4,titusandronicus,1593\nknown,4,titusandronicus,1593\nsorrowful,4,titusandronicus,1593\nletters,4,titusandronicus,1593\nfire,4,titusandronicus,1593\nWere,4,titusandronicus,1593\nmessage,4,titusandronicus,1593\nhateful,4,titusandronicus,1593\nfetch,4,titusandronicus,1593\nSay,4,titusandronicus,1593\nsave,4,titusandronicus,1593\nbrother's,4,titusandronicus,1593\nsurvive,4,titusandronicus,1593\nhappy,4,titusandronicus,1593\nSenators,4,titusandronicus,1593\nthroats,4,titusandronicus,1593\nBid,4,titusandronicus,1593\nweeping,4,titusandronicus,1593\ndrops,4,titusandronicus,1593\nMake,4,titusandronicus,1593\nground,4,titusandronicus,1593\nwert,4,titusandronicus,1593\nJupiter,4,titusandronicus,1593\nfortune,4,titusandronicus,1593\nfame,4,titusandronicus,1593\nne'er,4,titusandronicus,1593\ntraitorous,4,titusandronicus,1593\ncomfort,4,titusandronicus,1593\ndeliver'd,4,titusandronicus,1593\nWelcome,4,titusandronicus,1593\nconvey,4,titusandronicus,1593\ngiven,4,titusandronicus,1593\nhollow,4,titusandronicus,1593\nstrong,4,titusandronicus,1593\ngives,4,titusandronicus,1593\ncountry's,4,titusandronicus,1593\nalong,4,titusandronicus,1593\nalone,4,titusandronicus,1593\nsons',4,titusandronicus,1593\nPrince,4,titusandronicus,1593\nseen,4,titusandronicus,1593\ntidings,4,titusandronicus,1593\nsound,4,titusandronicus,1593\ntree,4,titusandronicus,1593\nKnow,4,titusandronicus,1593\nraven,4,titusandronicus,1593\nslumber,4,titusandronicus,1593\neat,4,titusandronicus,1593\nstraight,4,titusandronicus,1593\nMessenger,4,titusandronicus,1593\nCaptain,4,titusandronicus,1593\nlips,4,titusandronicus,1593\nquarrels,4,titusandronicus,1593\nvirtue,4,titusandronicus,1593\nMay,4,titusandronicus,1593\nrevenged,4,titusandronicus,1593\ndog,4,titusandronicus,1593\nasleep,4,titusandronicus,1593\nDid,4,titusandronicus,1593\nfollow,4,titusandronicus,1593\nshine,4,titusandronicus,1593\nwouldst,4,titusandronicus,1593\nsharp,4,titusandronicus,1593\nvillany,5,titusandronicus,1593\nswords,5,titusandronicus,1593\ncountry,5,titusandronicus,1593\nroyal,5,titusandronicus,1593\nbones,5,titusandronicus,1593\nthought,5,titusandronicus,1593\nhonourable,5,titusandronicus,1593\nAEmilius,5,titusandronicus,1593\nwithal,5,titusandronicus,1593\nfavor,5,titusandronicus,1593\ncare,5,titusandronicus,1593\nhighness,5,titusandronicus,1593\ncheer,5,titusandronicus,1593\nteach,5,titusandronicus,1593\naged,5,titusandronicus,1593\nbirds,5,titusandronicus,1593\nFarewell,5,titusandronicus,1593\nwrong,5,titusandronicus,1593\nafter,5,titusandronicus,1593\nwhite,5,titusandronicus,1593\nworthy,5,titusandronicus,1593\nfeet,5,titusandronicus,1593\ndied,5,titusandronicus,1593\nwherefore,5,titusandronicus,1593\nIII,5,titusandronicus,1593\nquarrel,5,titusandronicus,1593\nbeg,5,titusandronicus,1593\nHad,5,titusandronicus,1593\nbest,5,titusandronicus,1593\nwhose,5,titusandronicus,1593\ngoodly,5,titusandronicus,1593\nLike,5,titusandronicus,1593\nburial,5,titusandronicus,1593\ntongues,5,titusandronicus,1593\nthose,5,titusandronicus,1593\nknew,5,titusandronicus,1593\nhalf,5,titusandronicus,1593\ncall'd,5,titusandronicus,1593\nre,5,titusandronicus,1593\nvengeance,5,titusandronicus,1593\nask,5,titusandronicus,1593\npoint,5,titusandronicus,1593\ndetested,5,titusandronicus,1593\nHark,5,titusandronicus,1593\nhere's,5,titusandronicus,1593\nMutius,5,titusandronicus,1593\nFlourish,5,titusandronicus,1593\nmajesty,5,titusandronicus,1593\nstrike,5,titusandronicus,1593\nTherefore,5,titusandronicus,1593\nforest,5,titusandronicus,1593\ngeneral,5,titusandronicus,1593\nhigh,5,titusandronicus,1593\nAll,5,titusandronicus,1593\npresently,5,titusandronicus,1593\nslave,5,titusandronicus,1593\nsake,5,titusandronicus,1593\ndishonour,5,titusandronicus,1593\nwit,5,titusandronicus,1593\nWitness,5,titusandronicus,1593\nbreak,5,titusandronicus,1593\nwar,5,titusandronicus,1593\nCan,5,titusandronicus,1593\nnews,5,titusandronicus,1593\nsurprised,5,titusandronicus,1593\ndumb,5,titusandronicus,1593\nlust,5,titusandronicus,1593\nhighly,5,titusandronicus,1593\nCapitol,5,titusandronicus,1593\nvow,5,titusandronicus,1593\nhour,5,titusandronicus,1593\nlaw,5,titusandronicus,1593\nbind,5,titusandronicus,1593\nthank,5,titusandronicus,1593\nstreets,5,titusandronicus,1593\nbabe,5,titusandronicus,1593\nwe'll,5,titusandronicus,1593\nreturn,5,titusandronicus,1593\nnurse,5,titusandronicus,1593\nlimbs,5,titusandronicus,1593\ncareful,5,titusandronicus,1593\nlearn,5,titusandronicus,1593\nsister,5,titusandronicus,1593\nBefore,5,titusandronicus,1593\nwound,5,titusandronicus,1593\nSaturninus,5,titusandronicus,1593\nwoman,5,titusandronicus,1593\npower,5,titusandronicus,1593\nhimself,5,titusandronicus,1593\nstumps,5,titusandronicus,1593\na,261,titusandronicus,1593\nbrave,6,titusandronicus,1593\ntold,6,titusandronicus,1593\nhorns,6,titusandronicus,1593\nNay,6,titusandronicus,1593\nadvice,6,titusandronicus,1593\nboys,6,titusandronicus,1593\nvain,6,titusandronicus,1593\nWould,6,titusandronicus,1593\nworld,6,titusandronicus,1593\nbearing,6,titusandronicus,1593\nNot,6,titusandronicus,1593\nbound,6,titusandronicus,1593\nenough,6,titusandronicus,1593\nagainst,6,titusandronicus,1593\nfell,6,titusandronicus,1593\ndeliver,6,titusandronicus,1593\nAttendants,6,titusandronicus,1593\nworse,6,titusandronicus,1593\nheavens,6,titusandronicus,1593\nOur,6,titusandronicus,1593\nkill'd,6,titusandronicus,1593\nsun,6,titusandronicus,1593\nbride,6,titusandronicus,1593\nservice,6,titusandronicus,1593\nwind,6,titusandronicus,1593\nburning,6,titusandronicus,1593\nbed,6,titusandronicus,1593\nfatal,6,titusandronicus,1593\nIV,6,titusandronicus,1593\nsport,6,titusandronicus,1593\nears,6,titusandronicus,1593\nWe,6,titusandronicus,1593\ngave,6,titusandronicus,1593\nSirs,6,titusandronicus,1593\npeople's,6,titusandronicus,1593\nsafe,6,titusandronicus,1593\nthyself,6,titusandronicus,1593\ndoom,6,titusandronicus,1593\ntwenty,6,titusandronicus,1593\nBecause,6,titusandronicus,1593\nchoice,6,titusandronicus,1593\npart,6,titusandronicus,1593\npale,6,titusandronicus,1593\nhang,6,titusandronicus,1593\ngirl,6,titusandronicus,1593\nbanquet,6,titusandronicus,1593\ngriefs,6,titusandronicus,1593\nwater,6,titusandronicus,1593\nbelow,6,titusandronicus,1593\nyouth,6,titusandronicus,1593\nDoth,6,titusandronicus,1593\nend,6,titusandronicus,1593\nover,6,titusandronicus,1593\nget,6,titusandronicus,1593\nheavy,6,titusandronicus,1593\nbetween,6,titusandronicus,1593\nvillains,6,titusandronicus,1593\nfollowers,6,titusandronicus,1593\neven,6,titusandronicus,1593\npalace,6,titusandronicus,1593\nfit,6,titusandronicus,1593\nherself,6,titusandronicus,1593\naunt,6,titusandronicus,1593\ndam,6,titusandronicus,1593\naloft,6,titusandronicus,1593\nhome,6,titusandronicus,1593\nTroy,6,titusandronicus,1593\nhunt,6,titusandronicus,1593\nuse,6,titusandronicus,1593\ncry,6,titusandronicus,1593\nwretched,6,titusandronicus,1593\nwhilst,6,titusandronicus,1593\near,6,titusandronicus,1593\nheinous,6,titusandronicus,1593\nAway,6,titusandronicus,1593\nlast,6,titusandronicus,1593\nbeing,6,titusandronicus,1593\ndishonour'd,6,titusandronicus,1593\nattend,6,titusandronicus,1593\nbehold,6,titusandronicus,1593\nmight,6,titusandronicus,1593\npity,7,titusandronicus,1593\nmistress,7,titusandronicus,1593\njoy,7,titusandronicus,1593\nhell,7,titusandronicus,1593\npray,7,titusandronicus,1593\nstrength,7,titusandronicus,1593\nhead,7,titusandronicus,1593\ncall,7,titusandronicus,1593\nanother,7,titusandronicus,1593\nwithin,7,titusandronicus,1593\nChiron,7,titusandronicus,1593\ndaughter,7,titusandronicus,1593\nothers,7,titusandronicus,1593\nfriend,7,titusandronicus,1593\nbitter,7,titusandronicus,1593\nfoes,7,titusandronicus,1593\nAn,7,titusandronicus,1593\nHis,7,titusandronicus,1593\ncanst,7,titusandronicus,1593\nstay,7,titusandronicus,1593\nease,7,titusandronicus,1593\nproud,7,titusandronicus,1593\nMurder,7,titusandronicus,1593\nvaliant,7,titusandronicus,1593\njust,7,titusandronicus,1593\nGod,7,titusandronicus,1593\nshed,7,titusandronicus,1593\nfeast,7,titusandronicus,1593\nthat's,7,titusandronicus,1593\nbrothers,7,titusandronicus,1593\nshow,7,titusandronicus,1593\nenemies,7,titusandronicus,1593\nnew,7,titusandronicus,1593\nHave,7,titusandronicus,1593\nYour,7,titusandronicus,1593\nnone,7,titusandronicus,1593\nFrom,7,titusandronicus,1593\nLook,7,titusandronicus,1593\nleaves,7,titusandronicus,1593\nmind,7,titusandronicus,1593\nQueen,7,titusandronicus,1593\nwoe,7,titusandronicus,1593\nthing,7,titusandronicus,1593\nstill,7,titusandronicus,1593\nstand,7,titusandronicus,1593\nwhy,7,titusandronicus,1593\nwoes,7,titusandronicus,1593\nloving,7,titusandronicus,1593\nbarbarous,7,titusandronicus,1593\nfound,7,titusandronicus,1593\nserve,7,titusandronicus,1593\ntale,7,titusandronicus,1593\nhold,7,titusandronicus,1593\nwilt,7,titusandronicus,1593\nlives,7,titusandronicus,1593\nswear,7,titusandronicus,1593\nhounds,7,titusandronicus,1593\nTitus',7,titusandronicus,1593\npigeons,7,titusandronicus,1593\nfirst,7,titusandronicus,1593\nwarlike,7,titusandronicus,1593\nwitness,7,titusandronicus,1593\nkind,7,titusandronicus,1593\nkill,7,titusandronicus,1593\ntomb,8,titusandronicus,1593\nAlas,8,titusandronicus,1593\ncheeks,8,titusandronicus,1593\nfull,8,titusandronicus,1593\nsit,8,titusandronicus,1593\nsea,8,titusandronicus,1593\nread,8,titusandronicus,1593\nabout,8,titusandronicus,1593\nfeed,8,titusandronicus,1593\nhence,8,titusandronicus,1593\nrest,8,titusandronicus,1593\nDemetrius,8,titusandronicus,1593\nII,8,titusandronicus,1593\nmeans,8,titusandronicus,1593\nnight,8,titusandronicus,1593\nweep,8,titusandronicus,1593\ngrief,8,titusandronicus,1593\ngone,8,titusandronicus,1593\nSpeak,8,titusandronicus,1593\ngrandsire,8,titusandronicus,1593\ndeep,8,titusandronicus,1593\nleft,8,titusandronicus,1593\nhusband,8,titusandronicus,1593\ndevil,8,titusandronicus,1593\nkeep,8,titusandronicus,1593\nhue,8,titusandronicus,1593\nforth,8,titusandronicus,1593\nFirst,8,titusandronicus,1593\nthough,8,titusandronicus,1593\nrape,8,titusandronicus,1593\nmouth,8,titusandronicus,1593\nTribunes,8,titusandronicus,1593\nSome,8,titusandronicus,1593\nmany,8,titusandronicus,1593\nplead,8,titusandronicus,1593\nbrethren,8,titusandronicus,1593\nonce,8,titusandronicus,1593\nbefore,8,titusandronicus,1593\nsame,8,titusandronicus,1593\ngrave,8,titusandronicus,1593\nfits,8,titusandronicus,1593\nsays,8,titusandronicus,1593\nknife,8,titusandronicus,1593\nniece,8,titusandronicus,1593\nfall,8,titusandronicus,1593\nletter,8,titusandronicus,1593\nkiss,8,titusandronicus,1593\npardon,8,titusandronicus,1593\nhole,8,titusandronicus,1593\nback,8,titusandronicus,1593\nentreat,8,titusandronicus,1593\nmother's,8,titusandronicus,1593\nsleep,8,titusandronicus,1593\ncannot,8,titusandronicus,1593\nking,8,titusandronicus,1593\npeace,9,titusandronicus,1593\nvillain,9,titusandronicus,1593\nsigns,9,titusandronicus,1593\nAEMILIUS,9,titusandronicus,1593\nUpon,9,titusandronicus,1593\nsad,9,titusandronicus,1593\ndraw,9,titusandronicus,1593\nGive,9,titusandronicus,1593\nsorrows,9,titusandronicus,1593\nMUTIUS,9,titusandronicus,1593\nbetter,9,titusandronicus,1593\nset,9,titusandronicus,1593\nturn,9,titusandronicus,1593\nmean,9,titusandronicus,1593\nelse,9,titusandronicus,1593\ndeeds,9,titusandronicus,1593\nIt,9,titusandronicus,1593\nbid,9,titusandronicus,1593\nheads,9,titusandronicus,1593\ngod,9,titusandronicus,1593\nbury,9,titusandronicus,1593\nRe,9,titusandronicus,1593\nmost,9,titusandronicus,1593\nYet,9,titusandronicus,1593\nwelcome,9,titusandronicus,1593\nfoul,9,titusandronicus,1593\nPUBLIUS,9,titusandronicus,1593\nslain,9,titusandronicus,1593\nyoung,9,titusandronicus,1593\nvery,9,titusandronicus,1593\ntribunes,9,titusandronicus,1593\ncould,9,titusandronicus,1593\nWell,9,titusandronicus,1593\nShall,9,titusandronicus,1593\nfair,9,titusandronicus,1593\nTill,9,titusandronicus,1593\ntime,9,titusandronicus,1593\nhope,9,titusandronicus,1593\nlay,9,titusandronicus,1593\nreason,9,titusandronicus,1593\nsend,9,titusandronicus,1593\nsent,9,titusandronicus,1593\nthoughts,9,titusandronicus,1593\nnature,9,titusandronicus,1593\nTell,10,titusandronicus,1593\nwords,10,titusandronicus,1593\nsword,10,titusandronicus,1593\nkneel,10,titusandronicus,1593\nside,10,titusandronicus,1593\ngold,10,titusandronicus,1593\ntribune,10,titusandronicus,1593\npeople,10,titusandronicus,1593\nlong,10,titusandronicus,1593\nPublius,10,titusandronicus,1593\nage,10,titusandronicus,1593\nThan,10,titusandronicus,1593\neye,10,titusandronicus,1593\nnear,10,titusandronicus,1593\ncourt,10,titusandronicus,1593\nway,10,titusandronicus,1593\nSweet,10,titusandronicus,1593\nuncle,10,titusandronicus,1593\ntalk,10,titusandronicus,1593\nlovely,10,titusandronicus,1593\nmadam,10,titusandronicus,1593\nWhere,10,titusandronicus,1593\nshame,10,titusandronicus,1593\nWill,11,titusandronicus,1593\nevery,11,titusandronicus,1593\nsoul,11,titusandronicus,1593\nWhose,11,titusandronicus,1593\nsure,11,titusandronicus,1593\nbody,11,titusandronicus,1593\nThere,11,titusandronicus,1593\nDo,11,titusandronicus,1593\nany,11,titusandronicus,1593\nplace,11,titusandronicus,1593\nSee,11,titusandronicus,1593\nmyself,11,titusandronicus,1593\nbloody,11,titusandronicus,1593\nwrongs,11,titusandronicus,1593\nface,11,titusandronicus,1593\nEven,11,titusandronicus,1593\nfly,11,titusandronicus,1593\ngods,11,titusandronicus,1593\nRomans,12,titusandronicus,1593\ngracious,12,titusandronicus,1593\ncause,12,titusandronicus,1593\nfear,12,titusandronicus,1593\nempress',12,titusandronicus,1593\nAh,12,titusandronicus,1593\nBe,12,titusandronicus,1593\nenter,12,titusandronicus,1593\nGood,12,titusandronicus,1593\n'tis,12,titusandronicus,1593\nbear,12,titusandronicus,1593\nagain,12,titusandronicus,1593\ncomes,12,titusandronicus,1593\nthink,12,titusandronicus,1593\noff,12,titusandronicus,1593\nheard,12,titusandronicus,1593\nplease,12,titusandronicus,1593\ntill,12,titusandronicus,1593\nunto,12,titusandronicus,1593\nemperor's,12,titusandronicus,1593\ndie,12,titusandronicus,1593\nblack,13,titusandronicus,1593\nThese,13,titusandronicus,1593\nbring,13,titusandronicus,1593\nBy,13,titusandronicus,1593\nOf,13,titusandronicus,1593\nIs,13,titusandronicus,1593\npit,13,titusandronicus,1593\nWhich,13,titusandronicus,1593\nbeen,13,titusandronicus,1593\nbrought,13,titusandronicus,1593\nThey,13,titusandronicus,1593\nwho,13,titusandronicus,1593\nword,13,titusandronicus,1593\nthousand,13,titusandronicus,1593\ngreat,13,titusandronicus,1593\nhouse,13,titusandronicus,1593\npoor,13,titusandronicus,1593\ntoo,13,titusandronicus,1593\nshalt,13,titusandronicus,1593\nother,13,titusandronicus,1593\nmy,269,titusandronicus,1593\n',14,titusandronicus,1593\nmuch,14,titusandronicus,1593\nsight,14,titusandronicus,1593\nhear,14,titusandronicus,1593\nWho,14,titusandronicus,1593\nAside,14,titusandronicus,1593\nGo,14,titusandronicus,1593\nSo,14,titusandronicus,1593\ndeed,14,titusandronicus,1593\ndear,14,titusandronicus,1593\nRevenge,14,titusandronicus,1593\ngrace,14,titusandronicus,1593\nrevenge,14,titusandronicus,1593\nright,14,titusandronicus,1593\nACT,14,titusandronicus,1593\nchild,14,titusandronicus,1593\nqueen,14,titusandronicus,1593\nwhom,14,titusandronicus,1593\nhither,14,titusandronicus,1593\nmad,14,titusandronicus,1593\nleave,14,titusandronicus,1593\nand,526,titusandronicus,1593\nwhich,15,titusandronicus,1593\nhelp,15,titusandronicus,1593\nNor,15,titusandronicus,1593\ntherefore,15,titusandronicus,1593\nGoth,15,titusandronicus,1593\nearth,15,titusandronicus,1593\ngentle,15,titusandronicus,1593\nShe,15,titusandronicus,1593\nLord,15,titusandronicus,1593\nsorrow,15,titusandronicus,1593\n'Tis,15,titusandronicus,1593\nold,15,titusandronicus,1593\nfind,15,titusandronicus,1593\nLet,15,titusandronicus,1593\ncut,15,titusandronicus,1593\neyes,15,titusandronicus,1593\nNurse,15,titusandronicus,1593\nmen,15,titusandronicus,1593\ntrue,15,titusandronicus,1593\nSCENE,15,titusandronicus,1593\nExit,15,titusandronicus,1593\nSaturnine,16,titusandronicus,1593\nsir,16,titusandronicus,1593\nheaven,16,titusandronicus,1593\nlook,16,titusandronicus,1593\nYou,16,titusandronicus,1593\nThou,16,titusandronicus,1593\narms,16,titusandronicus,1593\nClown,16,titusandronicus,1593\nThy,16,titusandronicus,1593\nHere,17,titusandronicus,1593\nname,17,titusandronicus,1593\ndost,17,titusandronicus,1593\nyet,17,titusandronicus,1593\njustice,17,titusandronicus,1593\nown,17,titusandronicus,1593\nsuch,18,titusandronicus,1593\nWith,18,titusandronicus,1593\nboth,18,titusandronicus,1593\ntell,18,titusandronicus,1593\ndead,18,titusandronicus,1593\nMoor,18,titusandronicus,1593\nye,18,titusandronicus,1593\nwhere,18,titusandronicus,1593\ninto,18,titusandronicus,1593\nRoman,18,titusandronicus,1593\nBassianus,18,titusandronicus,1593\nWhen,18,titusandronicus,1593\nfriends,19,titusandronicus,1593\nYoung,19,titusandronicus,1593\nmother,19,titusandronicus,1593\nNo,19,titusandronicus,1593\nnor,19,titusandronicus,1593\nfather's,19,titusandronicus,1593\nthine,19,titusandronicus,1593\never,19,titusandronicus,1593\nday,19,titusandronicus,1593\nhonour,20,titusandronicus,1593\nMARTIUS,20,titusandronicus,1593\nAy,20,titusandronicus,1593\ntongue,20,titusandronicus,1593\nHow,20,titusandronicus,1593\nout,20,titusandronicus,1593\ntake,20,titusandronicus,1593\nRome's,20,titusandronicus,1593\nQUINTUS,20,titusandronicus,1593\nlive,20,titusandronicus,1593\nthere,21,titusandronicus,1593\nart,21,titusandronicus,1593\nfather,21,titusandronicus,1593\nIn,22,titusandronicus,1593\nOr,22,titusandronicus,1593\ntwo,22,titusandronicus,1593\naway,23,titusandronicus,1593\nnever,23,titusandronicus,1593\nHe,23,titusandronicus,1593\nblood,23,titusandronicus,1593\nlords,23,titusandronicus,1593\ncan,24,titusandronicus,1593\ndoth,24,titusandronicus,1593\nboy,25,titusandronicus,1593\nAaron,25,titusandronicus,1593\nIf,25,titusandronicus,1593\nlove,25,titusandronicus,1593\ngive,25,titusandronicus,1593\nup,25,titusandronicus,1593\nspeak,25,titusandronicus,1593\nthus,25,titusandronicus,1593\nNow,26,titusandronicus,1593\ndeath,26,titusandronicus,1593\nExeunt,26,titusandronicus,1593\ndone,26,titusandronicus,1593\nmade,26,titusandronicus,1593\nBASSIANUS,26,titusandronicus,1593\nTamora,27,titusandronicus,1593\nhad,27,titusandronicus,1593\ndown,27,titusandronicus,1593\nwell,27,titusandronicus,1593\nlife,28,titusandronicus,1593\nempress,28,titusandronicus,1593\nhands,28,titusandronicus,1593\none,28,titusandronicus,1593\nman,28,titusandronicus,1593\nCome,29,titusandronicus,1593\nAs,29,titusandronicus,1593\nThen,29,titusandronicus,1593\ndid,29,titusandronicus,1593\nsweet,30,titusandronicus,1593\nam,31,titusandronicus,1593\nnoble,31,titusandronicus,1593\nwere,31,titusandronicus,1593\nsome,32,titusandronicus,1593\nson,32,titusandronicus,1593\ngo,32,titusandronicus,1593\nwhen,32,titusandronicus,1593\nupon,33,titusandronicus,1593\nmust,33,titusandronicus,1593\nthan,33,titusandronicus,1593\nhast,33,titusandronicus,1593\nor,34,titusandronicus,1593\nshould,34,titusandronicus,1593\nmine,34,titusandronicus,1593\nsay,35,titusandronicus,1593\nan,35,titusandronicus,1593\nGoths,35,titusandronicus,1593\nhow,35,titusandronicus,1593\nI'll,35,titusandronicus,1593\ngood,36,titusandronicus,1593\nLAVINIA,36,titusandronicus,1593\ntears,37,titusandronicus,1593\nTitus,37,titusandronicus,1593\nmay,37,titusandronicus,1593\nbrother,38,titusandronicus,1593\nWhy,38,titusandronicus,1593\nheart,38,titusandronicus,1593\nwas,39,titusandronicus,1593\nLavinia,40,titusandronicus,1593\nthen,41,titusandronicus,1593\nknow,41,titusandronicus,1593\nMarcus,41,titusandronicus,1593\nmake,41,titusandronicus,1593\nsee,42,titusandronicus,1593\nThis,42,titusandronicus,1593\nEnter,43,titusandronicus,1593\nLucius,43,titusandronicus,1593\ncome,43,titusandronicus,1593\nlike,44,titusandronicus,1593\nwould,44,titusandronicus,1593\nA,45,titusandronicus,1593\nWhat,45,titusandronicus,1593\nAnd,301,titusandronicus,1593\nCHIRON,46,titusandronicus,1593\nAndronicus,46,titusandronicus,1593\nnow,46,titusandronicus,1593\nemperor,48,titusandronicus,1593\nlord,50,titusandronicus,1593\nus,50,titusandronicus,1593\nhand,50,titusandronicus,1593\nthese,51,titusandronicus,1593\nbut,51,titusandronicus,1593\nhath,51,titusandronicus,1593\nMy,52,titusandronicus,1593\nmore,52,titusandronicus,1593\nif,52,titusandronicus,1593\nsons,53,titusandronicus,1593\nFor,54,titusandronicus,1593\nDEMETRIUS,55,titusandronicus,1593\nof,312,titusandronicus,1593\nshe,57,titusandronicus,1593\nat,57,titusandronicus,1593\nthey,58,titusandronicus,1593\nhere,59,titusandronicus,1593\nwhat,59,titusandronicus,1593\nTAMORA,64,titusandronicus,1593\nno,64,titusandronicus,1593\nfrom,64,titusandronicus,1593\nBut,65,titusandronicus,1593\nSATURNINUS,66,titusandronicus,1593\nthe,579,titusandronicus,1593\nlet,68,titusandronicus,1593\nO,69,titusandronicus,1593\nshall,70,titusandronicus,1593\nby,72,titusandronicus,1593\nAARON,72,titusandronicus,1593\nhe,73,titusandronicus,1593\nwe,73,titusandronicus,1593\ntheir,75,titusandronicus,1593\ndo,76,titusandronicus,1593\non,76,titusandronicus,1593\nThe,77,titusandronicus,1593\nthem,79,titusandronicus,1593\nare,79,titusandronicus,1593\nour,80,titusandronicus,1593\nMARCUS,83,titusandronicus,1593\nThat,86,titusandronicus,1593\nLUCIUS,87,titusandronicus,1593\nas,88,titusandronicus,1593\nso,88,titusandronicus,1593\nRome,92,titusandronicus,1593\nTo,94,titusandronicus,1593\nall,99,titusandronicus,1593\nhim,111,titusandronicus,1593\nthee,113,titusandronicus,1593\nyour,120,titusandronicus,1593\nwill,121,titusandronicus,1593\nhave,124,titusandronicus,1593\nbe,139,titusandronicus,1593\nher,142,titusandronicus,1593\nit,146,titusandronicus,1593\nis,149,titusandronicus,1593\nto,405,titusandronicus,1593\nI,407,titusandronicus,1593\nhis,152,titusandronicus,1593\nTITUS,156,titusandronicus,1593\nthou,157,titusandronicus,1593\nfor,162,titusandronicus,1593\nnot,166,titusandronicus,1593\nthis,170,titusandronicus,1593\nthy,190,titusandronicus,1593\nthat,194,titusandronicus,1593\nme,196,titusandronicus,1593\nANDRONICUS,202,titusandronicus,1593\nyou,216,titusandronicus,1593\nwith,247,titusandronicus,1593\nsilken,1,loveslabourslost,1594\nAlencon,1,loveslabourslost,1594\nanswered,1,loveslabourslost,1594\n'all,1,loveslabourslost,1594\nreligion,1,loveslabourslost,1594\ndeputy,1,loveslabourslost,1594\nevent,1,loveslabourslost,1594\nribbon,1,loveslabourslost,1594\nheed,1,loveslabourslost,1594\ngrandam,1,loveslabourslost,1594\nbrawl,1,loveslabourslost,1594\nWide,1,loveslabourslost,1594\nviolates,1,loveslabourslost,1594\npossibly,1,loveslabourslost,1594\nvillany,1,loveslabourslost,1594\npitched,1,loveslabourslost,1594\nposteriors,1,loveslabourslost,1594\ndaws,1,loveslabourslost,1594\nclouded,1,loveslabourslost,1594\nReigns,1,loveslabourslost,1594\nindited,1,loveslabourslost,1594\nB,1,loveslabourslost,1594\nscraps,1,loveslabourslost,1594\nDespise,1,loveslabourslost,1594\ndrawing,1,loveslabourslost,1594\nverba,1,loveslabourslost,1594\npennyworth,1,loveslabourslost,1594\nguard,1,loveslabourslost,1594\nmeed,1,loveslabourslost,1594\nYouth,1,loveslabourslost,1594\ndeclares,1,loveslabourslost,1594\nlamentable,1,loveslabourslost,1594\nshrouded,1,loveslabourslost,1594\nc,1,loveslabourslost,1594\ninvisible,1,loveslabourslost,1594\no,1,loveslabourslost,1594\naddress'd,1,loveslabourslost,1594\ntaking,1,loveslabourslost,1594\ni,1,loveslabourslost,1594\nu,1,loveslabourslost,1594\ny,1,loveslabourslost,1594\ndames,1,loveslabourslost,1594\nmalmsey,1,loveslabourslost,1594\ndescription,1,loveslabourslost,1594\nbeadle,1,loveslabourslost,1594\nNip,1,loveslabourslost,1594\nwoolward,1,loveslabourslost,1594\n'What's,1,loveslabourslost,1594\nfools',1,loveslabourslost,1594\nfor't,1,loveslabourslost,1594\nLoves,1,loveslabourslost,1594\nmalcontents,1,loveslabourslost,1594\nbelongs,1,loveslabourslost,1594\nHear,1,loveslabourslost,1594\ninfamy,1,loveslabourslost,1594\nComfort,1,loveslabourslost,1594\ntruer,1,loveslabourslost,1594\nschoolboy's,1,loveslabourslost,1594\nfame's,1,loveslabourslost,1594\nDevise,1,loveslabourslost,1594\nwears,1,loveslabourslost,1594\nbrass,1,loveslabourslost,1594\nvotary,1,loveslabourslost,1594\nraw,1,loveslabourslost,1594\nplanted,1,loveslabourslost,1594\nbusiness,1,loveslabourslost,1594\nImpose,1,loveslabourslost,1594\nAlas,1,loveslabourslost,1594\ntreasure,1,loveslabourslost,1594\nhinder,1,loveslabourslost,1594\nCourses,1,loveslabourslost,1594\nobtain'd,1,loveslabourslost,1594\nalike,1,loveslabourslost,1594\nshapeless,1,loveslabourslost,1594\nexcrement,1,loveslabourslost,1594\nFie,1,loveslabourslost,1594\ntorn,1,loveslabourslost,1594\nentire,1,loveslabourslost,1594\nhonours,1,loveslabourslost,1594\nfemale,1,loveslabourslost,1594\nFit,1,loveslabourslost,1594\nlawful,1,loveslabourslost,1594\nWhether,1,loveslabourslost,1594\nPaints,1,loveslabourslost,1594\nhonourably,1,loveslabourslost,1594\nWrit,1,loveslabourslost,1594\nvane,1,loveslabourslost,1594\nsuspicious,1,loveslabourslost,1594\nsympathized,1,loveslabourslost,1594\nhaste,1,loveslabourslost,1594\nVillain,1,loveslabourslost,1594\nreplication,1,loveslabourslost,1594\nbones,1,loveslabourslost,1594\nhorse',1,loveslabourslost,1594\nculled,1,loveslabourslost,1594\noffended,1,loveslabourslost,1594\nfructify,1,loveslabourslost,1594\nmend,1,loveslabourslost,1594\nbranch,1,loveslabourslost,1594\nheart's,1,loveslabourslost,1594\nstopp'd,1,loveslabourslost,1594\napprehended,1,loveslabourslost,1594\ntriumphing,1,loveslabourslost,1594\nspeeds,1,loveslabourslost,1594\nassistance,1,loveslabourslost,1594\nroar,1,loveslabourslost,1594\nexpress,1,loveslabourslost,1594\nepitaph,1,loveslabourslost,1594\ndevouring,1,loveslabourslost,1594\npainter,1,loveslabourslost,1594\nheld,1,loveslabourslost,1594\nmell,1,loveslabourslost,1594\nNever,1,loveslabourslost,1594\nhell,1,loveslabourslost,1594\nLord's,1,loveslabourslost,1594\nExhalest,1,loveslabourslost,1594\nswifter,1,loveslabourslost,1594\ndrowsy,1,loveslabourslost,1594\nviolets,1,loveslabourslost,1594\npencils,1,loveslabourslost,1594\ntruly,1,loveslabourslost,1594\ndish,1,loveslabourslost,1594\nsingle,1,loveslabourslost,1594\ndrowns,1,loveslabourslost,1594\nyounger,1,loveslabourslost,1594\ndarkness,1,loveslabourslost,1594\nSubscribes,1,loveslabourslost,1594\n'virgin,1,loveslabourslost,1594\njoint,1,loveslabourslost,1594\neasier,1,loveslabourslost,1594\nphilosophy,1,loveslabourslost,1594\nrichest,1,loveslabourslost,1594\ninfringe,1,loveslabourslost,1594\nploughmen's,1,loveslabourslost,1594\nDespite,1,loveslabourslost,1594\nimitate,1,loveslabourslost,1594\nwherewith,1,loveslabourslost,1594\nlodging,1,loveslabourslost,1594\nbuttonhole,1,loveslabourslost,1594\ncelestial,1,loveslabourslost,1594\nBlack,1,loveslabourslost,1594\no'erheard,1,loveslabourslost,1594\nCried,1,loveslabourslost,1594\nroes,1,loveslabourslost,1594\nsanguis,1,loveslabourslost,1594\nblossom,1,loveslabourslost,1594\nprisoner,1,loveslabourslost,1594\ngrim,1,loveslabourslost,1594\nHelp,1,loveslabourslost,1594\nsurveyest,1,loveslabourslost,1594\ngorgeous,1,loveslabourslost,1594\ndrum,1,loveslabourslost,1594\nrejoiceth,1,loveslabourslost,1594\nhonourable,1,loveslabourslost,1594\nFat,1,loveslabourslost,1594\nbrook,1,loveslabourslost,1594\noffer,1,loveslabourslost,1594\nintelligo,1,loveslabourslost,1594\nscythe's,1,loveslabourslost,1594\nlooked,1,loveslabourslost,1594\naccidentally,1,loveslabourslost,1594\nrevolutions,1,loveslabourslost,1594\nangels,1,loveslabourslost,1594\nsneaping,1,loveslabourslost,1594\nadvance,1,loveslabourslost,1594\nforbidden,1,loveslabourslost,1594\nsugar,1,loveslabourslost,1594\nappear,1,loveslabourslost,1594\nflow,1,loveslabourslost,1594\nomitted,1,loveslabourslost,1594\ncoated,1,loveslabourslost,1594\nBiron's,1,loveslabourslost,1594\nalthough,1,loveslabourslost,1594\nfashioning,1,loveslabourslost,1594\ndrink,1,loveslabourslost,1594\ntittles,1,loveslabourslost,1594\nlibbard's,1,loveslabourslost,1594\nnought,1,loveslabourslost,1594\ncheat,1,loveslabourslost,1594\nsour,1,loveslabourslost,1594\npied,1,loveslabourslost,1594\nworms,1,loveslabourslost,1594\nprey,1,loveslabourslost,1594\nPriscian,1,loveslabourslost,1594\nyonder,1,loveslabourslost,1594\npreambulate,1,loveslabourslost,1594\ntimbered,1,loveslabourslost,1594\nsolemnized,1,loveslabourslost,1594\nmete,1,loveslabourslost,1594\nsort,1,loveslabourslost,1594\npatron,1,loveslabourslost,1594\nlieu,1,loveslabourslost,1594\nconsorted,1,loveslabourslost,1594\nsignificant,1,loveslabourslost,1594\ncongratulate,1,loveslabourslost,1594\nrated,1,loveslabourslost,1594\nvara,1,loveslabourslost,1594\nbecome,1,loveslabourslost,1594\nbowler,1,loveslabourslost,1594\nwhoreson,1,loveslabourslost,1594\nspecialties,1,loveslabourslost,1594\ncurious,1,loveslabourslost,1594\nPERSONAE,1,loveslabourslost,1594\nwither,1,loveslabourslost,1594\ngreyhound,1,loveslabourslost,1594\nboy's,1,loveslabourslost,1594\nmute,1,loveslabourslost,1594\npartest,1,loveslabourslost,1594\n'Thanks,1,loveslabourslost,1594\nweathercock,1,loveslabourslost,1594\nspare,1,loveslabourslost,1594\nsaved,1,loveslabourslost,1594\nvary,1,loveslabourslost,1594\nbaited,1,loveslabourslost,1594\nlightning,1,loveslabourslost,1594\ncast,1,loveslabourslost,1594\ncrutch,1,loveslabourslost,1594\nJaquenetta's,1,loveslabourslost,1594\nteacher,1,loveslabourslost,1594\nabhominable,1,loveslabourslost,1594\nteaches,1,loveslabourslost,1594\nPretty,1,loveslabourslost,1594\nutter'd,1,loveslabourslost,1594\nsoftly,1,loveslabourslost,1594\nsong,1,loveslabourslost,1594\nargues,1,loveslabourslost,1594\npleasing,1,loveslabourslost,1594\nbreach,1,loveslabourslost,1594\nlustre,1,loveslabourslost,1594\nstirring,1,loveslabourslost,1594\ncaelo,1,loveslabourslost,1594\nlaw's,1,loveslabourslost,1594\ncauf,1,loveslabourslost,1594\ndelivered,1,loveslabourslost,1594\nparson,1,loveslabourslost,1594\nstrength,1,loveslabourslost,1594\nrescues,1,loveslabourslost,1594\ngraces,1,loveslabourslost,1594\nsever,1,loveslabourslost,1594\nTimon,1,loveslabourslost,1594\neruptions,1,loveslabourslost,1594\nrepasture,1,loveslabourslost,1594\ngiant,1,loveslabourslost,1594\nApollo's,1,loveslabourslost,1594\nhereupon,1,loveslabourslost,1594\nconscience,1,loveslabourslost,1594\nskilfully,1,loveslabourslost,1594\namazes,1,loveslabourslost,1594\npins,1,loveslabourslost,1594\nguards,1,loveslabourslost,1594\nAmazed,1,loveslabourslost,1594\nsola,1,loveslabourslost,1594\nRuminat,1,loveslabourslost,1594\nsold,1,loveslabourslost,1594\nYoung,1,loveslabourslost,1594\ndisplayed,1,loveslabourslost,1594\nExcuse,1,loveslabourslost,1594\nsat,1,loveslabourslost,1594\nbearing,1,loveslabourslost,1594\nprecor,1,loveslabourslost,1594\nbackward,1,loveslabourslost,1594\nGive,1,loveslabourslost,1594\nhour's,1,loveslabourslost,1594\nhighness,1,loveslabourslost,1594\nArgus,1,loveslabourslost,1594\nrepast,1,loveslabourslost,1594\nopposed,1,loveslabourslost,1594\nlamentation,1,loveslabourslost,1594\naforehand,1,loveslabourslost,1594\nCaesar's,1,loveslabourslost,1594\nwitnesseth,1,loveslabourslost,1594\nincensed,1,loveslabourslost,1594\nlily,1,loveslabourslost,1594\ncaps,1,loveslabourslost,1594\nfixing,1,loveslabourslost,1594\nKeep,1,loveslabourslost,1594\n'which,1,loveslabourslost,1594\npurse,1,loveslabourslost,1594\nsubjects,1,loveslabourslost,1594\novercome,1,loveslabourslost,1594\ntrumpet,1,loveslabourslost,1594\ncockl'd,1,loveslabourslost,1594\nWoo,1,loveslabourslost,1594\nrevels,1,loveslabourslost,1594\nHoney,1,loveslabourslost,1594\nworthies,1,loveslabourslost,1594\nsententious,1,loveslabourslost,1594\nrewarded,1,loveslabourslost,1594\ndwarf,1,loveslabourslost,1594\ntrotting,1,loveslabourslost,1594\npolicy,1,loveslabourslost,1594\ntown,1,loveslabourslost,1594\ndemands,1,loveslabourslost,1594\nsoonest,1,loveslabourslost,1594\nvisages,1,loveslabourslost,1594\npipe,1,loveslabourslost,1594\nofficers,1,loveslabourslost,1594\nglass,1,loveslabourslost,1594\nfinding,1,loveslabourslost,1594\nvisaged,1,loveslabourslost,1594\nchimney,1,loveslabourslost,1594\nClimb,1,loveslabourslost,1594\nsnails,1,loveslabourslost,1594\nstudents,1,loveslabourslost,1594\ninfringed,1,loveslabourslost,1594\nEthiope,1,loveslabourslost,1594\nCain's,1,loveslabourslost,1594\nlikeness,1,loveslabourslost,1594\ngelded,1,loveslabourslost,1594\naffectation,1,loveslabourslost,1594\nMercade,1,loveslabourslost,1594\nnoise,1,loveslabourslost,1594\nsoft,1,loveslabourslost,1594\nricher,1,loveslabourslost,1594\ntoys,1,loveslabourslost,1594\nAvaunt,1,loveslabourslost,1594\ntwas,1,loveslabourslost,1594\nbombast,1,loveslabourslost,1594\nStuck,1,loveslabourslost,1594\npurposeth,1,loveslabourslost,1594\nbecoming,1,loveslabourslost,1594\nwail,1,loveslabourslost,1594\nunhold,1,loveslabourslost,1594\nImitari,1,loveslabourslost,1594\nmoonshine,1,loveslabourslost,1594\nBelonging,1,loveslabourslost,1594\nJoshua,1,loveslabourslost,1594\ntowns,1,loveslabourslost,1594\nview,1,loveslabourslost,1594\nPerchance,1,loveslabourslost,1594\nparson's,1,loveslabourslost,1594\ngodfathers,1,loveslabourslost,1594\nseeking,1,loveslabourslost,1594\nconceits,1,loveslabourslost,1594\nTwenty,1,loveslabourslost,1594\nweaker,1,loveslabourslost,1594\nDuke,1,loveslabourslost,1594\nattainder,1,loveslabourslost,1594\njumps,1,loveslabourslost,1594\ncompliment,1,loveslabourslost,1594\nOft,1,loveslabourslost,1594\ndomineering,1,loveslabourslost,1594\ndeer's,1,loveslabourslost,1594\nforage,1,loveslabourslost,1594\nFlat,1,loveslabourslost,1594\nconceive,1,loveslabourslost,1594\nindignity,1,loveslabourslost,1594\ncontempts,1,loveslabourslost,1594\nwarrant,1,loveslabourslost,1594\npetitioner,1,loveslabourslost,1594\nMinime,1,loveslabourslost,1594\nknavish,1,loveslabourslost,1594\nimpossible,1,loveslabourslost,1594\naged,1,loveslabourslost,1594\naccompt,1,loveslabourslost,1594\nmaidens,1,loveslabourslost,1594\ntapster,1,loveslabourslost,1594\nkey,1,loveslabourslost,1594\npurses,1,loveslabourslost,1594\nages,1,loveslabourslost,1594\nlaugh'd,1,loveslabourslost,1594\nsubdues,1,loveslabourslost,1594\nChange,1,loveslabourslost,1594\nCophetua,1,loveslabourslost,1594\nperge,1,loveslabourslost,1594\nourself,1,loveslabourslost,1594\nConcolinel,1,loveslabourslost,1594\nbastard,1,loveslabourslost,1594\ntooth,1,loveslabourslost,1594\ndeity,1,loveslabourslost,1594\npaunches,1,loveslabourslost,1594\nmeetings,1,loveslabourslost,1594\nwall,1,loveslabourslost,1594\nillustrious,1,loveslabourslost,1594\nmonarch,1,loveslabourslost,1594\nvice,1,loveslabourslost,1594\nvirtuous,1,loveslabourslost,1594\nForerun,1,loveslabourslost,1594\nvici,1,loveslabourslost,1594\nwhipping,1,loveslabourslost,1594\ncarrying,1,loveslabourslost,1594\nWrite,1,loveslabourslost,1594\nmustachio,1,loveslabourslost,1594\nDutchman,1,loveslabourslost,1594\ncoctus,1,loveslabourslost,1594\nshrimp,1,loveslabourslost,1594\nvidi,1,loveslabourslost,1594\nsavouring,1,loveslabourslost,1594\nbeasts,1,loveslabourslost,1594\ngeese,1,loveslabourslost,1594\nfell,1,loveslabourslost,1594\nWalk,1,loveslabourslost,1594\nmanager,1,loveslabourslost,1594\nabused,1,loveslabourslost,1594\nfrosts,1,loveslabourslost,1594\nobservances,1,loveslabourslost,1594\nconcern,1,loveslabourslost,1594\nbetrayed,1,loveslabourslost,1594\ncouncil,1,loveslabourslost,1594\nembrace,1,loveslabourslost,1594\nrubb'd,1,loveslabourslost,1594\neducated,1,loveslabourslost,1594\npigeon,1,loveslabourslost,1594\ndelivers,1,loveslabourslost,1594\nbookmates,1,loveslabourslost,1594\nsol,1,loveslabourslost,1594\nStudies,1,loveslabourslost,1594\nterra,1,loveslabourslost,1594\nsod,1,loveslabourslost,1594\nOvidius,1,loveslabourslost,1594\nconfident,1,loveslabourslost,1594\nmurderer,1,loveslabourslost,1594\nsycamore,1,loveslabourslost,1594\nnourished,1,loveslabourslost,1594\nratherest,1,loveslabourslost,1594\nGall,1,loveslabourslost,1594\nsubject,1,loveslabourslost,1594\nknotted,1,loveslabourslost,1594\nundressed,1,loveslabourslost,1594\nVeal,1,loveslabourslost,1594\nfangled,1,loveslabourslost,1594\nwight,1,loveslabourslost,1594\nThump,1,loveslabourslost,1594\ncounsel,1,loveslabourslost,1594\nnominate,1,loveslabourslost,1594\nscout,1,loveslabourslost,1594\nattends,1,loveslabourslost,1594\nadmittance,1,loveslabourslost,1594\ntofore,1,loveslabourslost,1594\ndazzling,1,loveslabourslost,1594\nvidelicet,1,loveslabourslost,1594\nbow'd,1,loveslabourslost,1594\ninterview,1,loveslabourslost,1594\ndesign,1,loveslabourslost,1594\nacquainted,1,loveslabourslost,1594\nsecond,1,loveslabourslost,1594\ndeserts,1,loveslabourslost,1594\nHereby,1,loveslabourslost,1594\ncodpieces,1,loveslabourslost,1594\ncommends,1,loveslabourslost,1594\nwings,1,loveslabourslost,1594\nhatch'd,1,loveslabourslost,1594\nparish,1,loveslabourslost,1594\nMusic,1,loveslabourslost,1594\nquondam,1,loveslabourslost,1594\nOther,1,loveslabourslost,1594\nVilely,1,loveslabourslost,1594\ndally,1,loveslabourslost,1594\nunvisited,1,loveslabourslost,1594\nmother,1,loveslabourslost,1594\nstuff,1,loveslabourslost,1594\nplay'd,1,loveslabourslost,1594\nindubitate,1,loveslabourslost,1594\nconfronted,1,loveslabourslost,1594\nsmaller,1,loveslabourslost,1594\nrackers,1,loveslabourslost,1594\nstuck,1,loveslabourslost,1594\nskipping,1,loveslabourslost,1594\ncoach,1,loveslabourslost,1594\nesteem,1,loveslabourslost,1594\noffence,1,loveslabourslost,1594\ntaught,1,loveslabourslost,1594\nmerit,1,loveslabourslost,1594\nNeeds,1,loveslabourslost,1594\nbleach,1,loveslabourslost,1594\nstandest,1,loveslabourslost,1594\nfulfills,1,loveslabourslost,1594\npasses,1,loveslabourslost,1594\nvanish,1,loveslabourslost,1594\nturning,1,loveslabourslost,1594\npiece,1,loveslabourslost,1594\ndances,1,loveslabourslost,1594\nmonster,1,loveslabourslost,1594\nconfounded,1,loveslabourslost,1594\nclimbing,1,loveslabourslost,1594\nfalleth,1,loveslabourslost,1594\nstandeth,1,loveslabourslost,1594\ncourtier,1,loveslabourslost,1594\ntwelve,1,loveslabourslost,1594\nNormandy,1,loveslabourslost,1594\nways,1,loveslabourslost,1594\nunguem,1,loveslabourslost,1594\nbore,1,loveslabourslost,1594\nTush,1,loveslabourslost,1594\nbrags,1,loveslabourslost,1594\nshilling,1,loveslabourslost,1594\ncivil,1,loveslabourslost,1594\ningenuous,1,loveslabourslost,1594\n'Lord,1,loveslabourslost,1594\nhornbook,1,loveslabourslost,1594\nabsence,1,loveslabourslost,1594\nreek,1,loveslabourslost,1594\ndashed,1,loveslabourslost,1594\nruns,1,loveslabourslost,1594\nexceeding,1,loveslabourslost,1594\nWise,1,loveslabourslost,1594\nfeat,1,loveslabourslost,1594\nWish,1,loveslabourslost,1594\nrelate,1,loveslabourslost,1594\nenvious,1,loveslabourslost,1594\nencounter,1,loveslabourslost,1594\nHannibal,1,loveslabourslost,1594\nAdriano,1,loveslabourslost,1594\nDisfigure,1,loveslabourslost,1594\nloiterers,1,loveslabourslost,1594\nmark'd,1,loveslabourslost,1594\naustere,1,loveslabourslost,1594\nuntrue,1,loveslabourslost,1594\npease,1,loveslabourslost,1594\nswoon,1,loveslabourslost,1594\npageant,1,loveslabourslost,1594\nscoff,1,loveslabourslost,1594\nthrasonical,1,loveslabourslost,1594\nVideo,1,loveslabourslost,1594\nverbosity,1,loveslabourslost,1594\nsub,1,loveslabourslost,1594\ncries,1,loveslabourslost,1594\nwreathed,1,loveslabourslost,1594\noverthrown,1,loveslabourslost,1594\nshining,1,loveslabourslost,1594\nsup,1,loveslabourslost,1594\nbrace,1,loveslabourslost,1594\ncompanion,1,loveslabourslost,1594\nFauste,1,loveslabourslost,1594\nfeed,1,loveslabourslost,1594\nrust,1,loveslabourslost,1594\npainfully,1,loveslabourslost,1594\nfeel,1,loveslabourslost,1594\nnebor,1,loveslabourslost,1594\ninfinite,1,loveslabourslost,1594\nmanus,1,loveslabourslost,1594\nbeaten,1,loveslabourslost,1594\ndirected,1,loveslabourslost,1594\nsaucy,1,loveslabourslost,1594\nimperator,1,loveslabourslost,1594\nVow,1,loveslabourslost,1594\ninfallible,1,loveslabourslost,1594\nErgo,1,loveslabourslost,1594\nbehaviors,1,loveslabourslost,1594\nintimate,1,loveslabourslost,1594\nOld,1,loveslabourslost,1594\npassion's,1,loveslabourslost,1594\nprotestation,1,loveslabourslost,1594\nchoose,1,loveslabourslost,1594\nrubbing,1,loveslabourslost,1594\nothers,1,loveslabourslost,1594\nclaws,1,loveslabourslost,1594\nSuggested,1,loveslabourslost,1594\nporter,1,loveslabourslost,1594\nmanor,1,loveslabourslost,1594\nward,1,loveslabourslost,1594\nDevils,1,loveslabourslost,1594\nlanguage,1,loveslabourslost,1594\nsoever,1,loveslabourslost,1594\nDark,1,loveslabourslost,1594\nushered,1,loveslabourslost,1594\nBlow,1,loveslabourslost,1594\ncertes,1,loveslabourslost,1594\nCerberus,1,loveslabourslost,1594\nseems,1,loveslabourslost,1594\nlatter,1,loveslabourslost,1594\nrooks,1,loveslabourslost,1594\nenjoined,1,loveslabourslost,1594\nrent,1,loveslabourslost,1594\nexpressly,1,loveslabourslost,1594\ncatch'd,1,loveslabourslost,1594\nwarily,1,loveslabourslost,1594\nwipe,1,loveslabourslost,1594\nquasi,1,loveslabourslost,1594\nvisor,1,loveslabourslost,1594\nwholly,1,loveslabourslost,1594\nbolt,1,loveslabourslost,1594\nladyship's,1,loveslabourslost,1594\npuff'd,1,loveslabourslost,1594\ntransformed,1,loveslabourslost,1594\nimmaculate,1,loveslabourslost,1594\nrequests,1,loveslabourslost,1594\nseest,1,loveslabourslost,1594\nImmediately,1,loveslabourslost,1594\njerks,1,loveslabourslost,1594\ncormorant,1,loveslabourslost,1594\nthrows,1,loveslabourslost,1594\nstrewing,1,loveslabourslost,1594\nnorthern,1,loveslabourslost,1594\nFetch,1,loveslabourslost,1594\nseem'd,1,loveslabourslost,1594\npierce,1,loveslabourslost,1594\nwindow,1,loveslabourslost,1594\nambassador,1,loveslabourslost,1594\nwave,1,loveslabourslost,1594\nsummon,1,loveslabourslost,1594\nstop,1,loveslabourslost,1594\nharbour,1,loveslabourslost,1594\nwars,1,loveslabourslost,1594\ncoast,1,loveslabourslost,1594\nbreeding,1,loveslabourslost,1594\ncunning,1,loveslabourslost,1594\nduring,1,loveslabourslost,1594\nFrances,1,loveslabourslost,1594\nDeceive,1,loveslabourslost,1594\nmeal,1,loveslabourslost,1594\noffice,1,loveslabourslost,1594\nAchilles,1,loveslabourslost,1594\nTurning,1,loveslabourslost,1594\nlunatic,1,loveslabourslost,1594\nsteep,1,loveslabourslost,1594\nobserve,1,loveslabourslost,1594\nBlessed,1,loveslabourslost,1594\ninfallibly,1,loveslabourslost,1594\nanne,1,loveslabourslost,1594\nframed,1,loveslabourslost,1594\ncanary,1,loveslabourslost,1594\ncompared,1,loveslabourslost,1594\npraises,1,loveslabourslost,1594\nwayward,1,loveslabourslost,1594\njudgement,1,loveslabourslost,1594\nobjects,1,loveslabourslost,1594\nphantasime,1,loveslabourslost,1594\nnickname,1,loveslabourslost,1594\ndeserves,1,loveslabourslost,1594\nseller's,1,loveslabourslost,1594\nsituate,1,loveslabourslost,1594\naspect,1,loveslabourslost,1594\nopening,1,loveslabourslost,1594\nparti,1,loveslabourslost,1594\nwherefore,1,loveslabourslost,1594\nnail,1,loveslabourslost,1594\nmistaken,1,loveslabourslost,1594\nycliped,1,loveslabourslost,1594\nventricle,1,loveslabourslost,1594\nha',1,loveslabourslost,1594\nchirrah,1,loveslabourslost,1594\npretia,1,loveslabourslost,1594\ndefine,1,loveslabourslost,1594\nslaves,1,loveslabourslost,1594\nburning,1,loveslabourslost,1594\ngratify,1,loveslabourslost,1594\nstatutes,1,loveslabourslost,1594\nprecise,1,loveslabourslost,1594\nprecisely,1,loveslabourslost,1594\nhap,1,loveslabourslost,1594\nenchanting,1,loveslabourslost,1594\nresembling,1,loveslabourslost,1594\nabortive,1,loveslabourslost,1594\nsnuff,1,loveslabourslost,1594\nA',1,loveslabourslost,1594\nsweeter,1,loveslabourslost,1594\nDraws,1,loveslabourslost,1594\ndefile,1,loveslabourslost,1594\nutter,1,loveslabourslost,1594\noffend,1,loveslabourslost,1594\nunderstandeth,1,loveslabourslost,1594\nhay,1,loveslabourslost,1594\nSick,1,loveslabourslost,1594\ncrabs,1,loveslabourslost,1594\ntendering,1,loveslabourslost,1594\nforesaid,1,loveslabourslost,1594\nCelestial,1,loveslabourslost,1594\ngranted,1,loveslabourslost,1594\n'Twere,1,loveslabourslost,1594\nsores,1,loveslabourslost,1594\nflattery,1,loveslabourslost,1594\nballs,1,loveslabourslost,1594\ndeformed,1,loveslabourslost,1594\nAm,1,loveslabourslost,1594\nstubborn,1,loveslabourslost,1594\nstrangling,1,loveslabourslost,1594\ntaller,1,loveslabourslost,1594\nsurety,1,loveslabourslost,1594\nempress,1,loveslabourslost,1594\npap,1,loveslabourslost,1594\nmutiny,1,loveslabourslost,1594\ncolourable,1,loveslabourslost,1594\nreplete,1,loveslabourslost,1594\nchaste,1,loveslabourslost,1594\nHim,1,loveslabourslost,1594\nloath,1,loveslabourslost,1594\nguiltiness,1,loveslabourslost,1594\nwassails,1,loveslabourslost,1594\neternal,1,loveslabourslost,1594\nsequent,1,loveslabourslost,1594\nrefined,1,loveslabourslost,1594\ntanquam,1,loveslabourslost,1594\nvigour,1,loveslabourslost,1594\n'Ware,1,loveslabourslost,1594\nglass'd,1,loveslabourslost,1594\nlanguages,1,loveslabourslost,1594\nreason's,1,loveslabourslost,1594\noverhead,1,loveslabourslost,1594\ndeuce,1,loveslabourslost,1594\nPlay,1,loveslabourslost,1594\nsensibly,1,loveslabourslost,1594\nmaids',1,loveslabourslost,1594\nteen,1,loveslabourslost,1594\ncareer,1,loveslabourslost,1594\nLo,1,loveslabourslost,1594\nbad,1,loveslabourslost,1594\nNature,1,loveslabourslost,1594\nO',1,loveslabourslost,1594\ncockle,1,loveslabourslost,1594\nImpossible,1,loveslabourslost,1594\nSinging,1,loveslabourslost,1594\nStand,1,loveslabourslost,1594\nSow'd,1,loveslabourslost,1594\nproof,1,loveslabourslost,1594\neternity,1,loveslabourslost,1594\ngentleness,1,loveslabourslost,1594\nspeakest,1,loveslabourslost,1594\nplea,1,loveslabourslost,1594\nsubscribe,1,loveslabourslost,1594\narbitrate,1,loveslabourslost,1594\nin't,1,loveslabourslost,1594\nfeminine,1,loveslabourslost,1594\nin's,1,loveslabourslost,1594\nlisten,1,loveslabourslost,1594\nAdvance,1,loveslabourslost,1594\ngreatly,1,loveslabourslost,1594\noverhear,1,loveslabourslost,1594\nPay,1,loveslabourslost,1594\nZenelophon,1,loveslabourslost,1594\nbeautiful,1,loveslabourslost,1594\ndenied,1,loveslabourslost,1594\nbrings,1,loveslabourslost,1594\nSeventh,1,loveslabourslost,1594\ntales,1,loveslabourslost,1594\nto't,1,loveslabourslost,1594\nhouse's,1,loveslabourslost,1594\nshines,1,loveslabourslost,1594\nto's,1,loveslabourslost,1594\nclosely,1,loveslabourslost,1594\naffection's,1,loveslabourslost,1594\nWithin,1,loveslabourslost,1594\ndamosella,1,loveslabourslost,1594\npardoned,1,loveslabourslost,1594\nchanged,1,loveslabourslost,1594\nmotions,1,loveslabourslost,1594\n'long,1,loveslabourslost,1594\nSomething,1,loveslabourslost,1594\nHa,1,loveslabourslost,1594\nOffered,1,loveslabourslost,1594\nfiner,1,loveslabourslost,1594\nfingers',1,loveslabourslost,1594\nben,1,loveslabourslost,1594\ndinner,1,loveslabourslost,1594\nenchanted,1,loveslabourslost,1594\nprose,1,loveslabourslost,1594\ndigest,1,loveslabourslost,1594\ntriumviry,1,loveslabourslost,1594\nbraggart,1,loveslabourslost,1594\narrest,1,loveslabourslost,1594\nwither'd,1,loveslabourslost,1594\n'sorted,1,loveslabourslost,1594\nannual,1,loveslabourslost,1594\nadded,1,loveslabourslost,1594\nnourishment,1,loveslabourslost,1594\nMehercle,1,loveslabourslost,1594\nvailing,1,loveslabourslost,1594\npenthouse,1,loveslabourslost,1594\nHad,1,loveslabourslost,1594\npia,1,loveslabourslost,1594\nmoderately,1,loveslabourslost,1594\nwedded,1,loveslabourslost,1594\nAlmost,1,loveslabourslost,1594\nstep,1,loveslabourslost,1594\npractisers,1,loveslabourslost,1594\nUt,1,loveslabourslost,1594\npox,1,loveslabourslost,1594\nvocatur,1,loveslabourslost,1594\n'veal',1,loveslabourslost,1594\nmatched,1,loveslabourslost,1594\ngrandfather,1,loveslabourslost,1594\nScarce,1,loveslabourslost,1594\ncull'd,1,loveslabourslost,1594\nDenis,1,loveslabourslost,1594\nquantity,1,loveslabourslost,1594\nGone,1,loveslabourslost,1594\nstanze,1,loveslabourslost,1594\nquiet,1,loveslabourslost,1594\ngroaning,1,loveslabourslost,1594\nCharles,1,loveslabourslost,1594\ngodfather,1,loveslabourslost,1594\nhominem,1,loveslabourslost,1594\n'welcome',1,loveslabourslost,1594\nbadges,1,loveslabourslost,1594\nobey,1,loveslabourslost,1594\nkiss'd,1,loveslabourslost,1594\nbrawling,1,loveslabourslost,1594\nsirs,1,loveslabourslost,1594\nepitheton,1,loveslabourslost,1594\nsmoothly,1,loveslabourslost,1594\ntitles,1,loveslabourslost,1594\nAdieu,1,loveslabourslost,1594\ntheft,1,loveslabourslost,1594\nplants,1,loveslabourslost,1594\nosiers,1,loveslabourslost,1594\ngold,1,loveslabourslost,1594\nminstrelsy,1,loveslabourslost,1594\nroyalty,1,loveslabourslost,1594\nweed,1,loveslabourslost,1594\nthorn,1,loveslabourslost,1594\ncondign,1,loveslabourslost,1594\nmaggot,1,loveslabourslost,1594\nsorry,1,loveslabourslost,1594\ntongue's,1,loveslabourslost,1594\nMend,1,loveslabourslost,1594\nwelkin's,1,loveslabourslost,1594\nremit,1,loveslabourslost,1594\nicicles,1,loveslabourslost,1594\nbend,1,loveslabourslost,1594\ncoaches,1,loveslabourslost,1594\nmetal,1,loveslabourslost,1594\ncradle's,1,loveslabourslost,1594\nsooner,1,loveslabourslost,1594\nunsullied,1,loveslabourslost,1594\nJove's,1,loveslabourslost,1594\nfields,1,loveslabourslost,1594\nmiscarry,1,loveslabourslost,1594\ntumble,1,loveslabourslost,1594\n'thus,1,loveslabourslost,1594\npollusion,1,loveslabourslost,1594\ndout,1,loveslabourslost,1594\nhereby,1,loveslabourslost,1594\ncanon,1,loveslabourslost,1594\nYourself,1,loveslabourslost,1594\nhermitage,1,loveslabourslost,1594\njointed,1,loveslabourslost,1594\nmadman,1,loveslabourslost,1594\nprisoners,1,loveslabourslost,1594\nCompany,1,loveslabourslost,1594\nattention,1,loveslabourslost,1594\nsounds,1,loveslabourslost,1594\ntricks,1,loveslabourslost,1594\nshepherds,1,loveslabourslost,1594\nstrives,1,loveslabourslost,1594\ninterrupt,1,loveslabourslost,1594\ntables,1,loveslabourslost,1594\nBold,1,loveslabourslost,1594\ngaze,1,loveslabourslost,1594\nwean,1,loveslabourslost,1594\nlatest,1,loveslabourslost,1594\nSave,1,loveslabourslost,1594\nbent,1,loveslabourslost,1594\nunpolished,1,loveslabourslost,1594\nparle,1,loveslabourslost,1594\nBehold,1,loveslabourslost,1594\nWarble,1,loveslabourslost,1594\nenlargement,1,loveslabourslost,1594\nestranged,1,loveslabourslost,1594\nspending,1,loveslabourslost,1594\nunlock,1,loveslabourslost,1594\nPut,1,loveslabourslost,1594\npiled,1,loveslabourslost,1594\nplough,1,loveslabourslost,1594\nDeath's,1,loveslabourslost,1594\nDies,1,loveslabourslost,1594\nlemon,1,loveslabourslost,1594\nVarying,1,loveslabourslost,1594\nembassage,1,loveslabourslost,1594\ncurst,1,loveslabourslost,1594\nDeaf'd,1,loveslabourslost,1594\nbuds,1,loveslabourslost,1594\nprick'd,1,loveslabourslost,1594\ntwice,1,loveslabourslost,1594\neaten,1,loveslabourslost,1594\ngamester,1,loveslabourslost,1594\nprick't,1,loveslabourslost,1594\nsilk,1,loveslabourslost,1594\nextreme,1,loveslabourslost,1594\nfifth,1,loveslabourslost,1594\ninfamonize,1,loveslabourslost,1594\nsurmounted,1,loveslabourslost,1594\nestablished,1,loveslabourslost,1594\ngun,1,loveslabourslost,1594\nperttaunt,1,loveslabourslost,1594\nSing,1,loveslabourslost,1594\nbadge,1,loveslabourslost,1594\nbud,1,loveslabourslost,1594\nDares,1,loveslabourslost,1594\nlikest,1,loveslabourslost,1594\ncanis,1,loveslabourslost,1594\nextravagant,1,loveslabourslost,1594\nTeaches,1,loveslabourslost,1594\nherein,1,loveslabourslost,1594\nProclaims,1,loveslabourslost,1594\nused,1,loveslabourslost,1594\nsakes,1,loveslabourslost,1594\no'ersway,1,loveslabourslost,1594\ngown,1,loveslabourslost,1594\nadmired,1,loveslabourslost,1594\ncraving,1,loveslabourslost,1594\nswine,1,loveslabourslost,1594\nstabb'd,1,loveslabourslost,1594\nsins,1,loveslabourslost,1594\nyear's,1,loveslabourslost,1594\nambassadors,1,loveslabourslost,1594\nconsciences,1,loveslabourslost,1594\ngate,1,loveslabourslost,1594\nepilogue,1,loveslabourslost,1594\n'Twas,1,loveslabourslost,1594\nbeds,1,loveslabourslost,1594\ninsinuation,1,loveslabourslost,1594\nrejoice,1,loveslabourslost,1594\nSans,1,loveslabourslost,1594\na'leven,1,loveslabourslost,1594\nashamed,1,loveslabourslost,1594\nimporteth,1,loveslabourslost,1594\ncomprehend,1,loveslabourslost,1594\nsearch'd,1,loveslabourslost,1594\nanointed,1,loveslabourslost,1594\ngrandmother,1,loveslabourslost,1594\nName,1,loveslabourslost,1594\npearls,1,loveslabourslost,1594\nmagnanimous,1,loveslabourslost,1594\nsolemn,1,loveslabourslost,1594\ndogs,1,loveslabourslost,1594\nstore,1,loveslabourslost,1594\nraught,1,loveslabourslost,1594\ndeed,1,loveslabourslost,1594\ndeem,1,loveslabourslost,1594\nsain,1,loveslabourslost,1594\nsail,1,loveslabourslost,1594\nconquering,1,loveslabourslost,1594\nforgive,1,loveslabourslost,1594\npromised,1,loveslabourslost,1594\nridest,1,loveslabourslost,1594\npapers,1,loveslabourslost,1594\nCannot,1,loveslabourslost,1594\nha,1,loveslabourslost,1594\nHolla,1,loveslabourslost,1594\nMethought,1,loveslabourslost,1594\nresolute,1,loveslabourslost,1594\ntorments,1,loveslabourslost,1594\nmons,1,loveslabourslost,1594\nsingled,1,loveslabourslost,1594\ngallows,1,loveslabourslost,1594\nlege,1,loveslabourslost,1594\nrewarding,1,loveslabourslost,1594\nattempted,1,loveslabourslost,1594\nspirited,1,loveslabourslost,1594\nSONG,1,loveslabourslost,1594\nstops,1,loveslabourslost,1594\n'with,1,loveslabourslost,1594\njewels,1,loveslabourslost,1594\nsheet,1,loveslabourslost,1594\nIll,1,loveslabourslost,1594\nsable,1,loveslabourslost,1594\nsafe,1,loveslabourslost,1594\nbeat,1,loveslabourslost,1594\nstool,1,loveslabourslost,1594\nMaking,1,loveslabourslost,1594\nfa,1,loveslabourslost,1594\ntawny,1,loveslabourslost,1594\nperegrinate,1,loveslabourslost,1594\nintimation,1,loveslabourslost,1594\ngain,1,loveslabourslost,1594\ntongued,1,loveslabourslost,1594\nApollo,1,loveslabourslost,1594\nDisguised,1,loveslabourslost,1594\nbeam,1,loveslabourslost,1594\nstaple,1,loveslabourslost,1594\nbid'st,1,loveslabourslost,1594\net,1,loveslabourslost,1594\nago,1,loveslabourslost,1594\nstrung,1,loveslabourslost,1594\nNecessity,1,loveslabourslost,1594\ninterrupt'st,1,loveslabourslost,1594\nGuilty,1,loveslabourslost,1594\ninvocation,1,loveslabourslost,1594\nBeggar,1,loveslabourslost,1594\nGlory,1,loveslabourslost,1594\ngilt,1,loveslabourslost,1594\nmonger,1,loveslabourslost,1594\nwightly,1,loveslabourslost,1594\ndignity,1,loveslabourslost,1594\ndominator,1,loveslabourslost,1594\nvictory,1,loveslabourslost,1594\nFigures,1,loveslabourslost,1594\npriest,1,loveslabourslost,1594\nloggerhead,1,loveslabourslost,1594\nlent,1,loveslabourslost,1594\ninterim,1,loveslabourslost,1594\ncontinual,1,loveslabourslost,1594\nthrive,1,loveslabourslost,1594\nTapers,1,loveslabourslost,1594\ngall,1,loveslabourslost,1594\nboast,1,loveslabourslost,1594\nJill,1,loveslabourslost,1594\nstole,1,loveslabourslost,1594\ndefence,1,loveslabourslost,1594\nburied,1,loveslabourslost,1594\nsufficit,1,loveslabourslost,1594\nmakest,1,loveslabourslost,1594\nay,1,loveslabourslost,1594\ncrab,1,loveslabourslost,1594\nmaketh,1,loveslabourslost,1594\nLaus,1,loveslabourslost,1594\nprivilege,1,loveslabourslost,1594\nad,1,loveslabourslost,1594\ncrosses,1,loveslabourslost,1594\nfixed,1,loveslabourslost,1594\ncures,1,loveslabourslost,1594\nquestions,1,loveslabourslost,1594\nox,1,loveslabourslost,1594\nboard,1,loveslabourslost,1594\nplodding,1,loveslabourslost,1594\nbarbarism,1,loveslabourslost,1594\nfears,1,loveslabourslost,1594\nbites,1,loveslabourslost,1594\ncommendations,1,loveslabourslost,1594\nlo,1,loveslabourslost,1594\nplant,1,loveslabourslost,1594\npotentates,1,loveslabourslost,1594\nengenders,1,loveslabourslost,1594\ncrave,1,loveslabourslost,1594\nmellowing,1,loveslabourslost,1594\nwrangle,1,loveslabourslost,1594\nmi,1,loveslabourslost,1594\nebon,1,loveslabourslost,1594\nTold,1,loveslabourslost,1594\nentitle,1,loveslabourslost,1594\ncatastrophe,1,loveslabourslost,1594\nLive,1,loveslabourslost,1594\nne,1,loveslabourslost,1594\nscholar,1,loveslabourslost,1594\nproduce,1,loveslabourslost,1594\nMay's,1,loveslabourslost,1594\nfacere,1,loveslabourslost,1594\nspelt,1,loveslabourslost,1594\nstudies,1,loveslabourslost,1594\nabbominable,1,loveslabourslost,1594\ncarved,1,loveslabourslost,1594\naccomplished,1,loveslabourslost,1594\nage,1,loveslabourslost,1594\nmorn,1,loveslabourslost,1594\nvalue,1,loveslabourslost,1594\ncrimes,1,loveslabourslost,1594\nguerdon,1,loveslabourslost,1594\nBegin,1,loveslabourslost,1594\nArts,1,loveslabourslost,1594\nglance,1,loveslabourslost,1594\noffences,1,loveslabourslost,1594\nRenowned,1,loveslabourslost,1594\nstudied,1,loveslabourslost,1594\nlightly,1,loveslabourslost,1594\ncauses,1,loveslabourslost,1594\ncauser,1,loveslabourslost,1594\nConverses,1,loveslabourslost,1594\nparents,1,loveslabourslost,1594\nfirework,1,loveslabourslost,1594\nFleeter,1,loveslabourslost,1594\nfairings,1,loveslabourslost,1594\ngallops,1,loveslabourslost,1594\nspeak'st,1,loveslabourslost,1594\nagony,1,loveslabourslost,1594\nThrust,1,loveslabourslost,1594\nresolved,1,loveslabourslost,1594\nspent,1,loveslabourslost,1594\nlest,1,loveslabourslost,1594\nstatute,1,loveslabourslost,1594\ndependents,1,loveslabourslost,1594\nquoted,1,loveslabourslost,1594\nloved,1,loveslabourslost,1594\nace,1,loveslabourslost,1594\nexplication,1,loveslabourslost,1594\napparel,1,loveslabourslost,1594\ntwenty,1,loveslabourslost,1594\nblue,1,loveslabourslost,1594\nremoves,1,loveslabourslost,1594\nstrains,1,loveslabourslost,1594\nremoved,1,loveslabourslost,1594\nlets,1,loveslabourslost,1594\nlock'd,1,loveslabourslost,1594\nhearings,1,loveslabourslost,1594\nbetime,1,loveslabourslost,1594\ngreater,1,loveslabourslost,1594\nbootless,1,loveslabourslost,1594\nweeding,1,loveslabourslost,1594\nHesperides,1,loveslabourslost,1594\numpire,1,loveslabourslost,1594\nmeasurable,1,loveslabourslost,1594\nknee,1,loveslabourslost,1594\nSubscribe,1,loveslabourslost,1594\ntyrants,1,loveslabourslost,1594\nclamours,1,loveslabourslost,1594\nminstrels,1,loveslabourslost,1594\nexpiration,1,loveslabourslost,1594\nrendered,1,loveslabourslost,1594\noppressing,1,loveslabourslost,1594\ndigression,1,loveslabourslost,1594\nBecause,1,loveslabourslost,1594\nendued,1,loveslabourslost,1594\no'ergone,1,loveslabourslost,1594\nzealous,1,loveslabourslost,1594\nclimb,1,loveslabourslost,1594\nchoice,1,loveslabourslost,1594\nbrought,1,loveslabourslost,1594\nreasons,1,loveslabourslost,1594\nornaments,1,loveslabourslost,1594\npersonal,1,loveslabourslost,1594\ntransgression,1,loveslabourslost,1594\neasy,1,loveslabourslost,1594\nfierce,1,loveslabourslost,1594\naccounted,1,loveslabourslost,1594\ndoters,1,loveslabourslost,1594\naxe,1,loveslabourslost,1594\nthumped,1,loveslabourslost,1594\nentitled,1,loveslabourslost,1594\nimprisonment,1,loveslabourslost,1594\nJack,1,loveslabourslost,1594\noutward,1,loveslabourslost,1594\nvowels,1,loveslabourslost,1594\nstrangle,1,loveslabourslost,1594\nplume,1,loveslabourslost,1594\nincline,1,loveslabourslost,1594\ntransgressing,1,loveslabourslost,1594\nKate,1,loveslabourslost,1594\nremember'd,1,loveslabourslost,1594\nmadcap,1,loveslabourslost,1594\naffects,1,loveslabourslost,1594\nfashion's,1,loveslabourslost,1594\nhall,1,loveslabourslost,1594\nfrost,1,loveslabourslost,1594\nte,1,loveslabourslost,1594\nlabouring,1,loveslabourslost,1594\nQuare,1,loveslabourslost,1594\nbeggar's,1,loveslabourslost,1594\nPerigort,1,loveslabourslost,1594\nknit,1,loveslabourslost,1594\nsignify,1,loveslabourslost,1594\nnearer,1,loveslabourslost,1594\nwares,1,loveslabourslost,1594\nhests,1,loveslabourslost,1594\nbasest,1,loveslabourslost,1594\nverse,1,loveslabourslost,1594\nCall,1,loveslabourslost,1594\nintended,1,loveslabourslost,1594\npalm,1,loveslabourslost,1594\nJaques,1,loveslabourslost,1594\nfinish,1,loveslabourslost,1594\nshortness,1,loveslabourslost,1594\npreyful,1,loveslabourslost,1594\nwormwood,1,loveslabourslost,1594\ndispensation,1,loveslabourslost,1594\nspur,1,loveslabourslost,1594\nGathering,1,loveslabourslost,1594\ntreads,1,loveslabourslost,1594\nTrumpets,1,loveslabourslost,1594\nreprobate,1,loveslabourslost,1594\nt',1,loveslabourslost,1594\nre,1,loveslabourslost,1594\nacquittances,1,loveslabourslost,1594\ndrawn,1,loveslabourslost,1594\nqui,1,loveslabourslost,1594\nconfession,1,loveslabourslost,1594\nporridge,1,loveslabourslost,1594\ndescried,1,loveslabourslost,1594\nSatisfy,1,loveslabourslost,1594\nthanksgiving,1,loveslabourslost,1594\nsuitors,1,loveslabourslost,1594\npurgation,1,loveslabourslost,1594\nrestrained,1,loveslabourslost,1594\nsweetest,1,loveslabourslost,1594\nmighty,1,loveslabourslost,1594\nUnseen,1,loveslabourslost,1594\nmiscarried,1,loveslabourslost,1594\nWINTER,1,loveslabourslost,1594\n'hobby,1,loveslabourslost,1594\nviewest,1,loveslabourslost,1594\ncourse,1,loveslabourslost,1594\nShe's,1,loveslabourslost,1594\narm,1,loveslabourslost,1594\nabhor,1,loveslabourslost,1594\nfort,1,loveslabourslost,1594\nplighted,1,loveslabourslost,1594\npurged,1,loveslabourslost,1594\nimpatient,1,loveslabourslost,1594\nrack'd,1,loveslabourslost,1594\nstraws,1,loveslabourslost,1594\nappertaining,1,loveslabourslost,1594\nship,1,loveslabourslost,1594\nvicegerent,1,loveslabourslost,1594\nneglect,1,loveslabourslost,1594\npail,1,loveslabourslost,1594\nstranger,1,loveslabourslost,1594\nhangs,1,loveslabourslost,1594\nEthiopes,1,loveslabourslost,1594\nreturn'd,1,loveslabourslost,1594\nfasts,1,loveslabourslost,1594\npaid,1,loveslabourslost,1594\nfanatical,1,loveslabourslost,1594\nspit,1,loveslabourslost,1594\nmoney,1,loveslabourslost,1594\nglozes,1,loveslabourslost,1594\nlogs,1,loveslabourslost,1594\nwalked,1,loveslabourslost,1594\nminute's,1,loveslabourslost,1594\nattach,1,loveslabourslost,1594\nSamson's,1,loveslabourslost,1594\ndecides,1,loveslabourslost,1594\nshop,1,loveslabourslost,1594\nhate,1,loveslabourslost,1594\nforlorn,1,loveslabourslost,1594\nfear'd,1,loveslabourslost,1594\nshot,1,loveslabourslost,1594\ntransform'd,1,loveslabourslost,1594\nproper,1,loveslabourslost,1594\nshoe,1,loveslabourslost,1594\nenforcest,1,loveslabourslost,1594\ndetested,1,loveslabourslost,1594\nrough,1,loveslabourslost,1594\nvowed,1,loveslabourslost,1594\nAnointed,1,loveslabourslost,1594\nFell,1,loveslabourslost,1594\ngaudy,1,loveslabourslost,1594\nfood,1,loveslabourslost,1594\ncontain,1,loveslabourslost,1594\nSmall,1,loveslabourslost,1594\nserpents,1,loveslabourslost,1594\nbearer,1,loveslabourslost,1594\nreject,1,loveslabourslost,1594\nyard,1,loveslabourslost,1594\nathwart,1,loveslabourslost,1594\ntestimony,1,loveslabourslost,1594\nexcess,1,loveslabourslost,1594\nclipt,1,loveslabourslost,1594\npush,1,loveslabourslost,1594\nWorthy's,1,loveslabourslost,1594\ntasker,1,loveslabourslost,1594\nelegancy,1,loveslabourslost,1594\nassistants,1,loveslabourslost,1594\nsacks,1,loveslabourslost,1594\nQualm,1,loveslabourslost,1594\nrightly,1,loveslabourslost,1594\nfolk,1,loveslabourslost,1594\nhauf,1,loveslabourslost,1594\nMuscovits,1,loveslabourslost,1594\nlearnt,1,loveslabourslost,1594\nfold,1,loveslabourslost,1594\nbegets,1,loveslabourslost,1594\nWhite,1,loveslabourslost,1594\ntombs,1,loveslabourslost,1594\nlearns,1,loveslabourslost,1594\nsecret,1,loveslabourslost,1594\nspeaker's,1,loveslabourslost,1594\ncompetitors,1,loveslabourslost,1594\nArm,1,loveslabourslost,1594\nfinely,1,loveslabourslost,1594\nroll,1,loveslabourslost,1594\nbanquet,1,loveslabourslost,1594\ndisputest,1,loveslabourslost,1594\nMirth,1,loveslabourslost,1594\ndeadly,1,loveslabourslost,1594\nsequel,1,loveslabourslost,1594\nHark,1,loveslabourslost,1594\ncolour'd,1,loveslabourslost,1594\nfed,1,loveslabourslost,1594\nparadox,1,loveslabourslost,1594\nsmells,1,loveslabourslost,1594\nleer,1,loveslabourslost,1594\ncheque,1,loveslabourslost,1594\nchides,1,loveslabourslost,1594\nbehavior,1,loveslabourslost,1594\nvisited,1,loveslabourslost,1594\nAction,1,loveslabourslost,1594\nStoop,1,loveslabourslost,1594\no'erparted,1,loveslabourslost,1594\nmarkets,1,loveslabourslost,1594\nAsk,1,loveslabourslost,1594\nLittle,1,loveslabourslost,1594\nenjoy,1,loveslabourslost,1594\ngain'd,1,loveslabourslost,1594\nwillingly,1,loveslabourslost,1594\npurifies,1,loveslabourslost,1594\nQuis,1,loveslabourslost,1594\nArt,1,loveslabourslost,1594\nplackets,1,loveslabourslost,1594\nguess,1,loveslabourslost,1594\nbeams,1,loveslabourslost,1594\nguest,1,loveslabourslost,1594\ncipher,1,loveslabourslost,1594\nhaving,1,loveslabourslost,1594\nmerrier,1,loveslabourslost,1594\nbullet,1,loveslabourslost,1594\nprecedent,1,loveslabourslost,1594\nspoken,1,loveslabourslost,1594\nleaf,1,loveslabourslost,1594\nsuperfluous,1,loveslabourslost,1594\nodouriferous,1,loveslabourslost,1594\ndelighted,1,loveslabourslost,1594\nnoes,1,loveslabourslost,1594\nQuoniam,1,loveslabourslost,1594\nBetween,1,loveslabourslost,1594\ncoughing,1,loveslabourslost,1594\nexecute,1,loveslabourslost,1594\nannothanize,1,loveslabourslost,1594\nGuinover,1,loveslabourslost,1594\noutswear,1,loveslabourslost,1594\nfan,1,loveslabourslost,1594\nborrow,1,loveslabourslost,1594\nrays,1,loveslabourslost,1594\nroof,1,loveslabourslost,1594\noften,1,loveslabourslost,1594\ncolliers,1,loveslabourslost,1594\nMarvellous,1,loveslabourslost,1594\nCommand,1,loveslabourslost,1594\njustice,1,loveslabourslost,1594\nTaffeta,1,loveslabourslost,1594\nrational,1,loveslabourslost,1594\nuniversal,1,loveslabourslost,1594\nkeeps,1,loveslabourslost,1594\nShout,1,loveslabourslost,1594\nForbid,1,loveslabourslost,1594\nmail,1,loveslabourslost,1594\ncircum,1,loveslabourslost,1594\nequal,1,loveslabourslost,1594\nWounds,1,loveslabourslost,1594\nmoved,1,loveslabourslost,1594\nmortified,1,loveslabourslost,1594\nobscene,1,loveslabourslost,1594\nForm'd,1,loveslabourslost,1594\nhunteth,1,loveslabourslost,1594\ncarried,1,loveslabourslost,1594\n'Thus,1,loveslabourslost,1594\nhind,1,loveslabourslost,1594\nfostering,1,loveslabourslost,1594\nempty,1,loveslabourslost,1594\nreport,1,loveslabourslost,1594\ncarries,1,loveslabourslost,1594\nflouts,1,loveslabourslost,1594\nforehead,1,loveslabourslost,1594\nVidesne,1,loveslabourslost,1594\ngreasily,1,loveslabourslost,1594\nclapp'd,1,loveslabourslost,1594\nhackney,1,loveslabourslost,1594\nsickly,1,loveslabourslost,1594\nsmallest,1,loveslabourslost,1594\nnourish,1,loveslabourslost,1594\nfourth,1,loveslabourslost,1594\nSatis,1,loveslabourslost,1594\nhangeth,1,loveslabourslost,1594\npatch,1,loveslabourslost,1594\napply,1,loveslabourslost,1594\nPell,1,loveslabourslost,1594\nVenus,1,loveslabourslost,1594\napparell'd,1,loveslabourslost,1594\nlack'd,1,loveslabourslost,1594\nnumber'd,1,loveslabourslost,1594\nfable,1,loveslabourslost,1594\nbeast,1,loveslabourslost,1594\nwakes,1,loveslabourslost,1594\nproceed,1,loveslabourslost,1594\naction,1,loveslabourslost,1594\nstrucken,1,loveslabourslost,1594\nmutton,1,loveslabourslost,1594\nsuperscript,1,loveslabourslost,1594\ncapon,1,loveslabourslost,1594\nopposition,1,loveslabourslost,1594\ncedar,1,loveslabourslost,1594\npates,1,loveslabourslost,1594\nHenceforth,1,loveslabourslost,1594\npommel,1,loveslabourslost,1594\nHang,1,loveslabourslost,1594\napple,1,loveslabourslost,1594\nrestore,1,loveslabourslost,1594\nmounted,1,loveslabourslost,1594\nnomi,1,loveslabourslost,1594\ndemigod,1,loveslabourslost,1594\nIgnorance,1,loveslabourslost,1594\nguided,1,loveslabourslost,1594\nclepeth,1,loveslabourslost,1594\nForestall,1,loveslabourslost,1594\nabrogate,1,loveslabourslost,1594\nwhale's,1,loveslabourslost,1594\nBritain,1,loveslabourslost,1594\nwhining,1,loveslabourslost,1594\nexceedingly,1,loveslabourslost,1594\nshinest,1,loveslabourslost,1594\nPlaying,1,loveslabourslost,1594\ninfancy,1,loveslabourslost,1594\nschedule,1,loveslabourslost,1594\nbrazen,1,loveslabourslost,1594\nqueens,1,loveslabourslost,1594\nspread,1,loveslabourslost,1594\ndrunkard,1,loveslabourslost,1594\npleaseth,1,loveslabourslost,1594\nblunt,1,loveslabourslost,1594\nJew,1,loveslabourslost,1594\ntraitors,1,loveslabourslost,1594\nmeanly,1,loveslabourslost,1594\nyeas,1,loveslabourslost,1594\nentirely,1,loveslabourslost,1594\nAlack,1,loveslabourslost,1594\n'An,1,loveslabourslost,1594\nobserved,1,loveslabourslost,1594\nSubmissive,1,loveslabourslost,1594\npastime,1,loveslabourslost,1594\ndecrepit,1,loveslabourslost,1594\nadmire,1,loveslabourslost,1594\nglasses,1,loveslabourslost,1594\n'By,1,loveslabourslost,1594\nstrike,1,loveslabourslost,1594\nwritten,1,loveslabourslost,1594\nidolatry,1,loveslabourslost,1594\nliable,1,loveslabourslost,1594\nborne,1,loveslabourslost,1594\npicked,1,loveslabourslost,1594\narguments,1,loveslabourslost,1594\nthirsty,1,loveslabourslost,1594\naffections,1,loveslabourslost,1594\nbasket,1,loveslabourslost,1594\nphantasimes,1,loveslabourslost,1594\ngarden,1,loveslabourslost,1594\nbegging,1,loveslabourslost,1594\nTHE,1,loveslabourslost,1594\noutwear,1,loveslabourslost,1594\ngingerbread,1,loveslabourslost,1594\nallons,1,loveslabourslost,1594\no'ereye,1,loveslabourslost,1594\nunhappy,1,loveslabourslost,1594\nevermore,1,loveslabourslost,1594\ndares,1,loveslabourslost,1594\nmouth,1,loveslabourslost,1594\ncarnation,1,loveslabourslost,1594\ndoomsday,1,loveslabourslost,1594\nInde,1,loveslabourslost,1594\nunbefitting,1,loveslabourslost,1594\nenfreedoming,1,loveslabourslost,1594\npowers,1,loveslabourslost,1594\nmouse,1,loveslabourslost,1594\ngrievest,1,loveslabourslost,1594\nwonder'd,1,loveslabourslost,1594\nutters,1,loveslabourslost,1594\nHide,1,loveslabourslost,1594\nwall'd,1,loveslabourslost,1594\ntransparent,1,loveslabourslost,1594\ngirdles,1,loveslabourslost,1594\nSea,1,loveslabourslost,1594\neffect,1,loveslabourslost,1594\nconsort,1,loveslabourslost,1594\nSola,1,loveslabourslost,1594\nSole,1,loveslabourslost,1594\nrequest'st,1,loveslabourslost,1594\nRebuke,1,loveslabourslost,1594\nmill,1,loveslabourslost,1594\nrazor's,1,loveslabourslost,1594\nreplenished,1,loveslabourslost,1594\nindustry,1,loveslabourslost,1594\nfares,1,loveslabourslost,1594\ndeck'd,1,loveslabourslost,1594\nsinging,1,loveslabourslost,1594\nnipp'd,1,loveslabourslost,1594\nteeth,1,loveslabourslost,1594\ncovers,1,loveslabourslost,1594\nsonnets,1,loveslabourslost,1594\nshield,1,loveslabourslost,1594\nMakes,1,loveslabourslost,1594\ntranslation,1,loveslabourslost,1594\npurposes,1,loveslabourslost,1594\nPlay'd,1,loveslabourslost,1594\nPersuade,1,loveslabourslost,1594\nenriched,1,loveslabourslost,1594\nGrant,1,loveslabourslost,1594\nfleer'd,1,loveslabourslost,1594\nbeauties,1,loveslabourslost,1594\nslash,1,loveslabourslost,1594\n'past,1,loveslabourslost,1594\nhumorous,1,loveslabourslost,1594\nprocess,1,loveslabourslost,1594\ndidst,1,loveslabourslost,1594\ndowry,1,loveslabourslost,1594\nchain,1,loveslabourslost,1594\nhonorificabilitudinitatibus,1,loveslabourslost,1594\nbloods,1,loveslabourslost,1594\nlowest,1,loveslabourslost,1594\nQueen,1,loveslabourslost,1594\nbelong,1,loveslabourslost,1594\nNavarre's,1,loveslabourslost,1594\negg,1,loveslabourslost,1594\nparties,1,loveslabourslost,1594\nthere's,1,loveslabourslost,1594\nchief,1,loveslabourslost,1594\ndream,1,loveslabourslost,1594\ndeform'd,1,loveslabourslost,1594\nzany,1,loveslabourslost,1594\nmonsieur,1,loveslabourslost,1594\nninth,1,loveslabourslost,1594\nyell,1,loveslabourslost,1594\n'daughter,1,loveslabourslost,1594\nblot,1,loveslabourslost,1594\nAny,1,loveslabourslost,1594\nBleat,1,loveslabourslost,1594\noracle,1,loveslabourslost,1594\nmire,1,loveslabourslost,1594\nPresence,1,loveslabourslost,1594\npastimes,1,loveslabourslost,1594\nwot,1,loveslabourslost,1594\ndesigns,1,loveslabourslost,1594\ninfants,1,loveslabourslost,1594\nflatter,1,loveslabourslost,1594\ngaudeo,1,loveslabourslost,1594\ngreatest,1,loveslabourslost,1594\npainful,1,loveslabourslost,1594\nAffliction,1,loveslabourslost,1594\ntasks,1,loveslabourslost,1594\ncanzonet,1,loveslabourslost,1594\naddrest,1,loveslabourslost,1594\nnit,1,loveslabourslost,1594\nchide,1,loveslabourslost,1594\nthief,1,loveslabourslost,1594\nface's,1,loveslabourslost,1594\nmiss,1,loveslabourslost,1594\neducate,1,loveslabourslost,1594\nregister'd,1,loveslabourslost,1594\nMediterraneum,1,loveslabourslost,1594\nharper's,1,loveslabourslost,1594\nseal'd,1,loveslabourslost,1594\n'All,1,loveslabourslost,1594\ncaptive,1,loveslabourslost,1594\nFolly,1,loveslabourslost,1594\nRoom,1,loveslabourslost,1594\npained,1,loveslabourslost,1594\ngraze,1,loveslabourslost,1594\nwantonness,1,loveslabourslost,1594\nsmoke,1,loveslabourslost,1594\nMarian's,1,loveslabourslost,1594\ncoppice,1,loveslabourslost,1594\nBeing,1,loveslabourslost,1594\narteries,1,loveslabourslost,1594\nmaskers,1,loveslabourslost,1594\nchuck,1,loveslabourslost,1594\nJud,1,loveslabourslost,1594\nsubdue,1,loveslabourslost,1594\nendeavors,1,loveslabourslost,1594\nHorns,1,loveslabourslost,1594\nstairs,1,loveslabourslost,1594\nsayest,1,loveslabourslost,1594\nRome,1,loveslabourslost,1594\nOffering,1,loveslabourslost,1594\nthorough,1,loveslabourslost,1594\nwed,1,loveslabourslost,1594\ndesired,1,loveslabourslost,1594\nhermit,1,loveslabourslost,1594\nstain,1,loveslabourslost,1594\nconsonant,1,loveslabourslost,1594\nrusset,1,loveslabourslost,1594\nfray,1,loveslabourslost,1594\nbehalf,1,loveslabourslost,1594\nbreed,1,loveslabourslost,1594\noaks,1,loveslabourslost,1594\n'On,1,loveslabourslost,1594\npoll,1,loveslabourslost,1594\nslight,1,loveslabourslost,1594\npassage,1,loveslabourslost,1594\nagate,1,loveslabourslost,1594\nmaids,1,loveslabourslost,1594\nopinion,1,loveslabourslost,1594\ncirca,1,loveslabourslost,1594\noverglance,1,loveslabourslost,1594\node,1,loveslabourslost,1594\nwi',1,loveslabourslost,1594\ncontemplation,1,loveslabourslost,1594\nodd,1,loveslabourslost,1594\n'No,1,loveslabourslost,1594\nflies,1,loveslabourslost,1594\nsalt,1,loveslabourslost,1594\nMaid,1,loveslabourslost,1594\nretire,1,loveslabourslost,1594\npurchase,1,loveslabourslost,1594\npomp,1,loveslabourslost,1594\nsafely,1,loveslabourslost,1594\nnapping,1,loveslabourslost,1594\nvede,1,loveslabourslost,1594\nSaturday,1,loveslabourslost,1594\nexperience,1,loveslabourslost,1594\nfitteth,1,loveslabourslost,1594\nsides,1,loveslabourslost,1594\nArmed,1,loveslabourslost,1594\nchapmen's,1,loveslabourslost,1594\nushering,1,loveslabourslost,1594\noft,1,loveslabourslost,1594\ndominical,1,loveslabourslost,1594\ncapable,1,loveslabourslost,1594\n'Me,1,loveslabourslost,1594\nmessage,1,loveslabourslost,1594\nWe'll,1,loveslabourslost,1594\nbodkin,1,loveslabourslost,1594\nscutcheon,1,loveslabourslost,1594\nprovoke,1,loveslabourslost,1594\nhateful,1,loveslabourslost,1594\nstomach,1,loveslabourslost,1594\nDread,1,loveslabourslost,1594\nreceipt,1,loveslabourslost,1594\ncure,1,loveslabourslost,1594\nRemote,1,loveslabourslost,1594\nunbosom,1,loveslabourslost,1594\nimport,1,loveslabourslost,1594\nknife,1,loveslabourslost,1594\nring,1,loveslabourslost,1594\nsighted,1,loveslabourslost,1594\nhappiness,1,loveslabourslost,1594\nsmock,1,loveslabourslost,1594\nusurping,1,loveslabourslost,1594\nupright,1,loveslabourslost,1594\npassado,1,loveslabourslost,1594\nfalchion,1,loveslabourslost,1594\nunseen,1,loveslabourslost,1594\nDisbursed,1,loveslabourslost,1594\ninfluence,1,loveslabourslost,1594\nabstinence,1,loveslabourslost,1594\nDead,1,loveslabourslost,1594\ncollusion,1,loveslabourslost,1594\ncoxcomb,1,loveslabourslost,1594\nhanded,1,loveslabourslost,1594\nbuck,1,loveslabourslost,1594\nDear,1,loveslabourslost,1594\n'no',1,loveslabourslost,1594\nmumble,1,loveslabourslost,1594\nclock,1,loveslabourslost,1594\nImportunes,1,loveslabourslost,1594\nSaw,1,loveslabourslost,1594\nVenice,1,loveslabourslost,1594\nhearers,1,loveslabourslost,1594\noffending,1,loveslabourslost,1594\nDesire,1,loveslabourslost,1594\ngrosser,1,loveslabourslost,1594\ncouplement,1,loveslabourslost,1594\nsalutation,1,loveslabourslost,1594\nConstrue,1,loveslabourslost,1594\nfiled,1,loveslabourslost,1594\nremains,1,loveslabourslost,1594\nintegrity,1,loveslabourslost,1594\nmasks,1,loveslabourslost,1594\nnomination,1,loveslabourslost,1594\nunconfirmed,1,loveslabourslost,1594\nBows,1,loveslabourslost,1594\nflint,1,loveslabourslost,1594\nDefine,1,loveslabourslost,1594\ndecrees,1,loveslabourslost,1594\ntorture,1,loveslabourslost,1594\nmusical,1,loveslabourslost,1594\nhumility,1,loveslabourslost,1594\nrepairing,1,loveslabourslost,1594\ncomparison,1,loveslabourslost,1594\nliker,1,loveslabourslost,1594\nMercury,1,loveslabourslost,1594\nsinewy,1,loveslabourslost,1594\nbeseemeth,1,loveslabourslost,1594\n'The,1,loveslabourslost,1594\nbelieve,1,loveslabourslost,1594\narmy,1,loveslabourslost,1594\nstaff,1,loveslabourslost,1594\npoet,1,loveslabourslost,1594\nmounting,1,loveslabourslost,1594\nactors,1,loveslabourslost,1594\nmisprision,1,loveslabourslost,1594\nPerge,1,loveslabourslost,1594\n'To,1,loveslabourslost,1594\nnuptial,1,loveslabourslost,1594\nimportant,1,loveslabourslost,1594\nprofitable,1,loveslabourslost,1594\ninsanie,1,loveslabourslost,1594\nsaluteth,1,loveslabourslost,1594\nwag,1,loveslabourslost,1594\nintend,1,loveslabourslost,1594\nprompting,1,loveslabourslost,1594\nspurred,1,loveslabourslost,1594\nPiercing,1,loveslabourslost,1594\nwhirls,1,loveslabourslost,1594\nslipper,1,loveslabourslost,1594\nrags,1,loveslabourslost,1594\nbullets,1,loveslabourslost,1594\nKnowing,1,loveslabourslost,1594\napace,1,loveslabourslost,1594\nproceeding,1,loveslabourslost,1594\nwont,1,loveslabourslost,1594\nprick,1,loveslabourslost,1594\nsupper,1,loveslabourslost,1594\ncomplain,1,loveslabourslost,1594\n'mere,1,loveslabourslost,1594\nmultitude,1,loveslabourslost,1594\n'ay,1,loveslabourslost,1594\nlettered,1,loveslabourslost,1594\nprogression,1,loveslabourslost,1594\n'an,1,loveslabourslost,1594\nMuster,1,loveslabourslost,1594\ngravity's,1,loveslabourslost,1594\npence,1,loveslabourslost,1594\nwalk'd,1,loveslabourslost,1594\nhappy,1,loveslabourslost,1594\ndamask,1,loveslabourslost,1594\nunpruned,1,loveslabourslost,1594\nreligiously,1,loveslabourslost,1594\nsweets,1,loveslabourslost,1594\nintelligis,1,loveslabourslost,1594\nbetook,1,loveslabourslost,1594\nsurprised,1,loveslabourslost,1594\nHercules',1,loveslabourslost,1594\ngodhead,1,loveslabourslost,1594\nagree,1,loveslabourslost,1594\nsolicitor,1,loveslabourslost,1594\nexpositor,1,loveslabourslost,1594\no'erthrown,1,loveslabourslost,1594\nsurrender,1,loveslabourslost,1594\nnumbering,1,loveslabourslost,1594\nransom,1,loveslabourslost,1594\nwatery,1,loveslabourslost,1594\ndainties,1,loveslabourslost,1594\nestates,1,loveslabourslost,1594\nrotten,1,loveslabourslost,1594\nprologue,1,loveslabourslost,1594\nMonarcho,1,loveslabourslost,1594\ntilting,1,loveslabourslost,1594\nBig,1,loveslabourslost,1594\nanger,1,loveslabourslost,1594\nweeping,1,loveslabourslost,1594\nSpaniard's,1,loveslabourslost,1594\ndevoted,1,loveslabourslost,1594\nlute,1,loveslabourslost,1594\nwomb,1,loveslabourslost,1594\ninclination,1,loveslabourslost,1594\ncaper'd,1,loveslabourslost,1594\nrain,1,loveslabourslost,1594\nanimal,1,loveslabourslost,1594\nfunctions,1,loveslabourslost,1594\nLearning,1,loveslabourslost,1594\nconsent,1,loveslabourslost,1594\ngravities,1,loveslabourslost,1594\nforester,1,loveslabourslost,1594\ndemonstration,1,loveslabourslost,1594\nclocks,1,loveslabourslost,1594\ngodlike,1,loveslabourslost,1594\ndrops,1,loveslabourslost,1594\nharvest,1,loveslabourslost,1594\nunsatisfied,1,loveslabourslost,1594\nflask,1,loveslabourslost,1594\nvia,1,loveslabourslost,1594\nForbear,1,loveslabourslost,1594\nclout,1,loveslabourslost,1594\nwhence,1,loveslabourslost,1594\nauthors,1,loveslabourslost,1594\nvir,1,loveslabourslost,1594\ncomparisons,1,loveslabourslost,1594\ntravelling,1,loveslabourslost,1594\ntwelvemonth's,1,loveslabourslost,1594\nShot,1,loveslabourslost,1594\nglad,1,loveslabourslost,1594\ncontempt,1,loveslabourslost,1594\nheirs,1,loveslabourslost,1594\ncried,1,loveslabourslost,1594\nSwear,1,loveslabourslost,1594\ndurst,1,loveslabourslost,1594\nIscariot,1,loveslabourslost,1594\nMany,1,loveslabourslost,1594\nperfections,1,loveslabourslost,1594\nBeauteous,1,loveslabourslost,1594\nminds,1,loveslabourslost,1594\nHiems,1,loveslabourslost,1594\nTime,1,loveslabourslost,1594\ncloth,1,loveslabourslost,1594\ntuft,1,loveslabourslost,1594\ncompile,1,loveslabourslost,1594\ndoublet,1,loveslabourslost,1594\nstolen,1,loveslabourslost,1594\ndiamonds,1,loveslabourslost,1594\nmeadows,1,loveslabourslost,1594\nretails,1,loveslabourslost,1594\ncaret,1,loveslabourslost,1594\nuntrained,1,loveslabourslost,1594\nfoe,1,loveslabourslost,1594\nunpeopled,1,loveslabourslost,1594\no'errule,1,loveslabourslost,1594\npueritia,1,loveslabourslost,1594\nmourns,1,loveslabourslost,1594\nheaving,1,loveslabourslost,1594\ndarkly,1,loveslabourslost,1594\nanswers,1,loveslabourslost,1594\nplentifully,1,loveslabourslost,1594\nwoeful,1,loveslabourslost,1594\nscorns,1,loveslabourslost,1594\ncolumbine,1,loveslabourslost,1594\nwort,1,loveslabourslost,1594\nsapit,1,loveslabourslost,1594\nheavily,1,loveslabourslost,1594\nfly,1,loveslabourslost,1594\napprehensions,1,loveslabourslost,1594\nduello,1,loveslabourslost,1594\npassing,1,loveslabourslost,1594\nlodged,1,loveslabourslost,1594\npedler,1,loveslabourslost,1594\ndancing,1,loveslabourslost,1594\nenfranchise,1,loveslabourslost,1594\nprecedence,1,loveslabourslost,1594\nepithets,1,loveslabourslost,1594\nfestinately,1,loveslabourslost,1594\no'ershot,1,loveslabourslost,1594\nWinter,1,loveslabourslost,1594\nesteem'd,1,loveslabourslost,1594\nminute,1,loveslabourslost,1594\nundeserving,1,loveslabourslost,1594\nliege's,1,loveslabourslost,1594\nmisdoubts,1,loveslabourslost,1594\nofficer,1,loveslabourslost,1594\noffices,1,loveslabourslost,1594\nperfect,1,loveslabourslost,1594\nBon,1,loveslabourslost,1594\nscratch'd,1,loveslabourslost,1594\nfill,1,loveslabourslost,1594\npleases,1,loveslabourslost,1594\nribs,1,loveslabourslost,1594\ntask'd,1,loveslabourslost,1594\ncontinue,1,loveslabourslost,1594\nfortuna,1,loveslabourslost,1594\ncontemplative,1,loveslabourslost,1594\ngelida,1,loveslabourslost,1594\nengaged,1,loveslabourslost,1594\nclaw,1,loveslabourslost,1594\nsmote,1,loveslabourslost,1594\nblister,1,loveslabourslost,1594\nreprove,1,loveslabourslost,1594\nminnow,1,loveslabourslost,1594\ncompliments,1,loveslabourslost,1594\nhose,1,loveslabourslost,1594\nbark,1,loveslabourslost,1594\nthereby,1,loveslabourslost,1594\n'three,1,loveslabourslost,1594\nthunder,1,loveslabourslost,1594\nFare,1,loveslabourslost,1594\ndaisies,1,loveslabourslost,1594\nwide,1,loveslabourslost,1594\nUnto,1,loveslabourslost,1594\nshows,1,loveslabourslost,1594\nratified,1,loveslabourslost,1594\npocket,1,loveslabourslost,1594\nuncasing,1,loveslabourslost,1594\nReceived,1,loveslabourslost,1594\nfawn,1,loveslabourslost,1594\nlinen,1,loveslabourslost,1594\nsmooth,1,loveslabourslost,1594\npractise,1,loveslabourslost,1594\nbutcher,1,loveslabourslost,1594\nmater,1,loveslabourslost,1594\ncloven,1,loveslabourslost,1594\nlarks,1,loveslabourslost,1594\ncloves,1,loveslabourslost,1594\nwives,1,loveslabourslost,1594\nbate,1,loveslabourslost,1594\nwhither,1,loveslabourslost,1594\nwatch'd,1,loveslabourslost,1594\nscholars,1,loveslabourslost,1594\nperfectness,1,loveslabourslost,1594\nbepray,1,loveslabourslost,1594\nMatchless,1,loveslabourslost,1594\nFour,1,loveslabourslost,1594\nbird,1,loveslabourslost,1594\nstandards,1,loveslabourslost,1594\nBehavior,1,loveslabourslost,1594\ncuckold's,1,loveslabourslost,1594\nstrikes,1,loveslabourslost,1594\npublic,1,loveslabourslost,1594\nallow'd,1,loveslabourslost,1594\ndispraise,1,loveslabourslost,1594\nCut,1,loveslabourslost,1594\nbedecking,1,loveslabourslost,1594\ndialogue,1,loveslabourslost,1594\ndeliver'd,1,loveslabourslost,1594\nfate,1,loveslabourslost,1594\n'Well,1,loveslabourslost,1594\nfriendship,1,loveslabourslost,1594\nloquitur,1,loveslabourslost,1594\nSeemeth,1,loveslabourslost,1594\nVery,1,loveslabourslost,1594\nbedrid,1,loveslabourslost,1594\nhoop,1,loveslabourslost,1594\nVisit,1,loveslabourslost,1594\nLABOUR'S,1,loveslabourslost,1594\ntabour,1,loveslabourslost,1594\nAcademe,1,loveslabourslost,1594\nfolio,1,loveslabourslost,1594\nnames,1,loveslabourslost,1594\nquillets,1,loveslabourslost,1594\nsongs,1,loveslabourslost,1594\nboldly,1,loveslabourslost,1594\ndismay'd,1,loveslabourslost,1594\nvolumes,1,loveslabourslost,1594\nlights,1,loveslabourslost,1594\nauthor,1,loveslabourslost,1594\nshepherd,1,loveslabourslost,1594\nsoul's,1,loveslabourslost,1594\nis't,1,loveslabourslost,1594\npurblind,1,loveslabourslost,1594\narm'd,1,loveslabourslost,1594\npursents,1,loveslabourslost,1594\nparfect,1,loveslabourslost,1594\nDelivers,1,loveslabourslost,1594\nfruitful,1,loveslabourslost,1594\ncup,1,loveslabourslost,1594\nprovokes,1,loveslabourslost,1594\npoetry,1,loveslabourslost,1594\njest's,1,loveslabourslost,1594\nperish,1,loveslabourslost,1594\nsixth,1,loveslabourslost,1594\naudacious,1,loveslabourslost,1594\nimpress'd,1,loveslabourslost,1594\nAssist,1,loveslabourslost,1594\nRegent,1,loveslabourslost,1594\ntutors,1,loveslabourslost,1594\nwild,1,loveslabourslost,1594\nVeni,1,loveslabourslost,1594\nalms,1,loveslabourslost,1594\nhomeward,1,loveslabourslost,1594\nbeshrew,1,loveslabourslost,1594\nrecorded,1,loveslabourslost,1594\nought,1,loveslabourslost,1594\nHorace,1,loveslabourslost,1594\nFood,1,loveslabourslost,1594\nkersey,1,loveslabourslost,1594\nclean,1,loveslabourslost,1594\nDeo,1,loveslabourslost,1594\nNone,1,loveslabourslost,1594\nhole,1,loveslabourslost,1594\nsnuffed,1,loveslabourslost,1594\ndozen,1,loveslabourslost,1594\nvirginity,1,loveslabourslost,1594\ntemper'd,1,loveslabourslost,1594\ndevout,1,loveslabourslost,1594\ntoiling,1,loveslabourslost,1594\nplodders,1,loveslabourslost,1594\nsweepers,1,loveslabourslost,1594\nLives,1,loveslabourslost,1594\ncut,1,loveslabourslost,1594\nNemean,1,loveslabourslost,1594\nfollows,1,loveslabourslost,1594\nfired,1,loveslabourslost,1594\nAlthough,1,loveslabourslost,1594\nostentare,1,loveslabourslost,1594\nsnap,1,loveslabourslost,1594\ndragon,1,loveslabourslost,1594\naforesaid,1,loveslabourslost,1594\nSphinx,1,loveslabourslost,1594\ncowards,1,loveslabourslost,1594\nVia,1,loveslabourslost,1594\nrevolt,1,loveslabourslost,1594\n'years',1,loveslabourslost,1594\npaved,1,loveslabourslost,1594\nbesieged,1,loveslabourslost,1594\nassist,1,loveslabourslost,1594\nperplexity,1,loveslabourslost,1594\ntire,1,loveslabourslost,1594\namounts,1,loveslabourslost,1594\nCutting,1,loveslabourslost,1594\nforsooth,1,loveslabourslost,1594\nliver,1,loveslabourslost,1594\nstreets,1,loveslabourslost,1594\nbesiege,1,loveslabourslost,1594\ngentility,1,loveslabourslost,1594\nrabbit,1,loveslabourslost,1594\nDan,1,loveslabourslost,1594\nsonneting,1,loveslabourslost,1594\nWherefore,1,loveslabourslost,1594\nsparkle,1,loveslabourslost,1594\nappertinent,1,loveslabourslost,1594\ncounsels,1,loveslabourslost,1594\nseal,1,loveslabourslost,1594\nconceit's,1,loveslabourslost,1594\npecks,1,loveslabourslost,1594\nbits,1,loveslabourslost,1594\ncholer,1,loveslabourslost,1594\nscraped,1,loveslabourslost,1594\nquod,1,loveslabourslost,1594\ngaited,1,loveslabourslost,1594\nmoney's,1,loveslabourslost,1594\nvainly,1,loveslabourslost,1594\nadieus,1,loveslabourslost,1594\nrobes,1,loveslabourslost,1594\nmaster'd,1,loveslabourslost,1594\nsatisfied,1,loveslabourslost,1594\nunmeet,1,loveslabourslost,1594\nlungs,1,loveslabourslost,1594\nyellow,1,loveslabourslost,1594\nmanage,1,loveslabourslost,1594\nChi,1,loveslabourslost,1594\nhairs,1,loveslabourslost,1594\nlovely,1,loveslabourslost,1594\nsunshine,1,loveslabourslost,1594\nelements,1,loveslabourslost,1594\nBacchus,1,loveslabourslost,1594\ncopy,1,loveslabourslost,1594\ncool,1,loveslabourslost,1594\ninconsiderate,1,loveslabourslost,1594\nJuno,1,loveslabourslost,1594\nCurtsy,1,loveslabourslost,1594\nconvince,1,loveslabourslost,1594\nneglected,1,loveslabourslost,1594\ninward,1,loveslabourslost,1594\npacket,1,loveslabourslost,1594\nsweat,1,loveslabourslost,1594\nprodigally,1,loveslabourslost,1594\ndelightful,1,loveslabourslost,1594\ndrunk,1,loveslabourslost,1594\nstates,1,loveslabourslost,1594\nfadge,1,loveslabourslost,1594\nbabe,1,loveslabourslost,1594\nconquerors,1,loveslabourslost,1594\nwoodcocks,1,loveslabourslost,1594\nneedful,1,loveslabourslost,1594\nthereto,1,loveslabourslost,1594\nRight,1,loveslabourslost,1594\nNestor,1,loveslabourslost,1594\naught,1,loveslabourslost,1594\nknowest,1,loveslabourslost,1594\nfeathers,1,loveslabourslost,1594\nsingular,1,loveslabourslost,1594\nBeauties,1,loveslabourslost,1594\nhandful,1,loveslabourslost,1594\nreap'd,1,loveslabourslost,1594\neither,1,loveslabourslost,1594\ncog,1,loveslabourslost,1594\nsouth,1,loveslabourslost,1594\nTruly,1,loveslabourslost,1594\ndefend,1,loveslabourslost,1594\nadore,1,loveslabourslost,1594\nwhimpled,1,loveslabourslost,1594\nprogeny,1,loveslabourslost,1594\nlowliness,1,loveslabourslost,1594\nus',1,loveslabourslost,1594\nNe'er,1,loveslabourslost,1594\nSpied,1,loveslabourslost,1594\narrows,1,loveslabourslost,1594\nothers',1,loveslabourslost,1594\ndivorce,1,loveslabourslost,1594\nvalued,1,loveslabourslost,1594\ngarnished,1,loveslabourslost,1594\npeeping,1,loveslabourslost,1594\ncondition,1,loveslabourslost,1594\nliking,1,loveslabourslost,1594\nrender,1,loveslabourslost,1594\ncramm'd,1,loveslabourslost,1594\njangling,1,loveslabourslost,1594\nhound,1,loveslabourslost,1594\ncrest,1,loveslabourslost,1594\nestimation,1,loveslabourslost,1594\ncaptivated,1,loveslabourslost,1594\nabbreviated,1,loveslabourslost,1594\nthereon,1,loveslabourslost,1594\nsetting,1,loveslabourslost,1594\ntraitor,1,loveslabourslost,1594\nreplied,1,loveslabourslost,1594\nmarking,1,loveslabourslost,1594\n'Your,1,loveslabourslost,1594\nneedless,1,loveslabourslost,1594\nmerriness,1,loveslabourslost,1594\nsecrecy,1,loveslabourslost,1594\naudaciously,1,loveslabourslost,1594\nthreshold,1,loveslabourslost,1594\nexpecting,1,loveslabourslost,1594\ntaffeta,1,loveslabourslost,1594\nGentlemen,1,loveslabourslost,1594\nchanging,1,loveslabourslost,1594\nhearken,1,loveslabourslost,1594\ndispense,1,loveslabourslost,1594\nHaste,1,loveslabourslost,1594\nMetheglin,1,loveslabourslost,1594\nTyburn,1,loveslabourslost,1594\navoid,1,loveslabourslost,1594\nloveth,1,loveslabourslost,1594\neyne,1,loveslabourslost,1594\npour,1,loveslabourslost,1594\nnights,1,loveslabourslost,1594\ndownright,1,loveslabourslost,1594\nblame,1,loveslabourslost,1594\nThings,1,loveslabourslost,1594\nwretches,1,loveslabourslost,1594\ntrembles,1,loveslabourslost,1594\nslender,1,loveslabourslost,1594\nToward,1,loveslabourslost,1594\nsaucers,1,loveslabourslost,1594\nwretched,1,loveslabourslost,1594\nSubtle,1,loveslabourslost,1594\nheedfully,1,loveslabourslost,1594\nGeorge's,1,loveslabourslost,1594\ncaudle,1,loveslabourslost,1594\nTrim,1,loveslabourslost,1594\ngods,1,loveslabourslost,1594\nTrip,1,loveslabourslost,1594\nenrich'd,1,loveslabourslost,1594\nguerra,1,loveslabourslost,1594\nraven,1,loveslabourslost,1594\nexcellence,1,loveslabourslost,1594\ncoursing,1,loveslabourslost,1594\nye'll,1,loveslabourslost,1594\nnutmeg,1,loveslabourslost,1594\ncommixture,1,loveslabourslost,1594\naloud,1,loveslabourslost,1594\noverheard,1,loveslabourslost,1594\nMeantime,1,loveslabourslost,1594\npost,1,loveslabourslost,1594\ncases,1,loveslabourslost,1594\nbankrupt,1,loveslabourslost,1594\n'One,1,loveslabourslost,1594\ncommiseration,1,loveslabourslost,1594\nprison,1,loveslabourslost,1594\nsheeps,1,loveslabourslost,1594\nhooting,1,loveslabourslost,1594\nfolded,1,loveslabourslost,1594\npigeons,1,loveslabourslost,1594\nallowed,1,loveslabourslost,1594\nundo,1,loveslabourslost,1594\ncolt,1,loveslabourslost,1594\nalas,1,loveslabourslost,1594\nadds,1,loveslabourslost,1594\ndrawer,1,loveslabourslost,1594\ntalk'd,1,loveslabourslost,1594\nswell,1,loveslabourslost,1594\nRoman,1,loveslabourslost,1594\nerewhile,1,loveslabourslost,1594\nstrict'st,1,loveslabourslost,1594\nregards,1,loveslabourslost,1594\nwinters,1,loveslabourslost,1594\nMuscovy,1,loveslabourslost,1594\nbandied,1,loveslabourslost,1594\njunior,1,loveslabourslost,1594\nreputes,1,loveslabourslost,1594\nsickness,1,loveslabourslost,1594\nFollowing,1,loveslabourslost,1594\nPhoebe,1,loveslabourslost,1594\nuneducated,1,loveslabourslost,1594\nPrize,1,loveslabourslost,1594\npassionate,1,loveslabourslost,1594\nhighest,1,loveslabourslost,1594\nChirrah,1,loveslabourslost,1594\naright,1,loveslabourslost,1594\ninkle,1,loveslabourslost,1594\nnovum,1,loveslabourslost,1594\nMadame,1,loveslabourslost,1594\nattaint,1,loveslabourslost,1594\nbolder,1,loveslabourslost,1594\ninvite,1,loveslabourslost,1594\ncoin,1,loveslabourslost,1594\ndungeons,1,loveslabourslost,1594\nebb,1,loveslabourslost,1594\nuntil,1,loveslabourslost,1594\nTwo,1,loveslabourslost,1594\nmeekly,1,loveslabourslost,1594\nparcel,1,loveslabourslost,1594\ntrow,1,loveslabourslost,1594\nthread,1,loveslabourslost,1594\nfrantic,1,loveslabourslost,1594\nchoke,1,loveslabourslost,1594\nRaining,1,loveslabourslost,1594\neat,1,loveslabourslost,1594\nhospital,1,loveslabourslost,1594\nperjure,1,loveslabourslost,1594\nLiege,1,loveslabourslost,1594\nSpring,1,loveslabourslost,1594\nProceeded,1,loveslabourslost,1594\nhonesty,1,loveslabourslost,1594\nuprising,1,loveslabourslost,1594\ndebate,1,loveslabourslost,1594\nnated,1,loveslabourslost,1594\napostraphas,1,loveslabourslost,1594\nconfound,1,loveslabourslost,1594\nwearing,1,loveslabourslost,1594\nquando,1,loveslabourslost,1594\nbarr'd,1,loveslabourslost,1594\nKisses,1,loveslabourslost,1594\npeal,1,loveslabourslost,1594\nencounters,1,loveslabourslost,1594\nGreater,1,loveslabourslost,1594\nmaintained,1,loveslabourslost,1594\nthrees,1,loveslabourslost,1594\nconn'd,1,loveslabourslost,1594\nspite,1,loveslabourslost,1594\nafeard,1,loveslabourslost,1594\ntreys,1,loveslabourslost,1594\nunlike,1,loveslabourslost,1594\nPepin,1,loveslabourslost,1594\nseldom,1,loveslabourslost,1594\nIlion,1,loveslabourslost,1594\nobscenely,1,loveslabourslost,1594\n'damsel,1,loveslabourslost,1594\nstarve,1,loveslabourslost,1594\ndread,1,loveslabourslost,1594\ncittern,1,loveslabourslost,1594\ncleaving,1,loveslabourslost,1594\npoesy,1,loveslabourslost,1594\nBruise,1,loveslabourslost,1594\ndealing,1,loveslabourslost,1594\ndishclout,1,loveslabourslost,1594\nsister,1,loveslabourslost,1594\nheaded,1,loveslabourslost,1594\nlofty,1,loveslabourslost,1594\nounce,1,loveslabourslost,1594\nupward,1,loveslabourslost,1594\nvenue,1,loveslabourslost,1594\nelbow,1,loveslabourslost,1594\ntires,1,loveslabourslost,1594\nreformation,1,loveslabourslost,1594\nstreet,1,loveslabourslost,1594\nheatest,1,loveslabourslost,1594\nshrows,1,loveslabourslost,1594\nchucks,1,loveslabourslost,1594\nseduced,1,loveslabourslost,1594\nvenuto,1,loveslabourslost,1594\nburns,1,loveslabourslost,1594\nrepay,1,loveslabourslost,1594\nintituled,1,loveslabourslost,1594\nlimit,1,loveslabourslost,1594\ndebtor,1,loveslabourslost,1594\nMen,1,loveslabourslost,1594\nbody's,1,loveslabourslost,1594\nO's,1,loveslabourslost,1594\n'paritors,1,loveslabourslost,1594\nravished,1,loveslabourslost,1594\nflee,1,loveslabourslost,1594\nflea,1,loveslabourslost,1594\nmocker,1,loveslabourslost,1594\nincision,1,loveslabourslost,1594\nAbate,1,loveslabourslost,1594\npernicious,1,loveslabourslost,1594\nwithdraw,1,loveslabourslost,1594\ninspired,1,loveslabourslost,1594\nideas,1,loveslabourslost,1594\namain,1,loveslabourslost,1594\non't,1,loveslabourslost,1594\nindiscreet,1,loveslabourslost,1594\nintellects,1,loveslabourslost,1594\nmarriage,1,loveslabourslost,1594\nbeguile,1,loveslabourslost,1594\nbeholdest,1,loveslabourslost,1594\nhail',1,loveslabourslost,1594\nGerman,1,loveslabourslost,1594\ninsert,1,loveslabourslost,1594\nthereupon,1,loveslabourslost,1594\ndismiss,1,loveslabourslost,1594\njesting,1,loveslabourslost,1594\ntumbler's,1,loveslabourslost,1594\nlass,1,loveslabourslost,1594\nterror,1,loveslabourslost,1594\neunuch,1,loveslabourslost,1594\nmilitary,1,loveslabourslost,1594\nmaladies,1,loveslabourslost,1594\npeck,1,loveslabourslost,1594\ncredit,1,loveslabourslost,1594\nMan,1,loveslabourslost,1594\nflaw,1,loveslabourslost,1594\nflat,1,loveslabourslost,1594\nspill,1,loveslabourslost,1594\nfasting,1,loveslabourslost,1594\nflap,1,loveslabourslost,1594\npomewater,1,loveslabourslost,1594\npreposterous,1,loveslabourslost,1594\ntenderness,1,loveslabourslost,1594\nSPRING,1,loveslabourslost,1594\nGreen,1,loveslabourslost,1594\ngibing,1,loveslabourslost,1594\nadjunct,1,loveslabourslost,1594\nsupervise,1,loveslabourslost,1594\ncopper,1,loveslabourslost,1594\ntruant,1,loveslabourslost,1594\nshroud,1,loveslabourslost,1594\nCallest,1,loveslabourslost,1594\northography,1,loveslabourslost,1594\nMay,1,loveslabourslost,1594\nlining,1,loveslabourslost,1594\nrecompense,1,loveslabourslost,1594\ncleped,1,loveslabourslost,1594\nlisp,1,loveslabourslost,1594\n'Via,1,loveslabourslost,1594\nimpart,1,loveslabourslost,1594\nfelicity,1,loveslabourslost,1594\nreprehend,1,loveslabourslost,1594\ntutored,1,loveslabourslost,1594\nnature,1,loveslabourslost,1594\nneigh,1,loveslabourslost,1594\nbias,1,loveslabourslost,1594\nwooers,1,loveslabourslost,1594\ndefiles,1,loveslabourslost,1594\nNovi,1,loveslabourslost,1594\ncontent,1,loveslabourslost,1594\nconflict,1,loveslabourslost,1594\nshrewd,1,loveslabourslost,1594\nwitty,1,loveslabourslost,1594\nsentence,1,loveslabourslost,1594\npers,1,loveslabourslost,1594\npert,1,loveslabourslost,1594\nwitness,1,loveslabourslost,1594\ninconstancy,1,loveslabourslost,1594\nreply,1,loveslabourslost,1594\nextremely,1,loveslabourslost,1594\nshaft,1,loveslabourslost,1594\ntherewithal,1,loveslabourslost,1594\ntharborough,1,loveslabourslost,1594\nexpense,1,loveslabourslost,1594\ndash,1,loveslabourslost,1594\nTis,1,loveslabourslost,1594\nconfirm,1,loveslabourslost,1594\nbran,1,loveslabourslost,1594\nparishioners,1,loveslabourslost,1594\nWhoe'er,1,loveslabourslost,1594\ndart,1,loveslabourslost,1594\nprincely,1,loveslabourslost,1594\nsavages,1,loveslabourslost,1594\nstudent,1,loveslabourslost,1594\nWhip,1,loveslabourslost,1594\ncrushest,1,loveslabourslost,1594\nDie,1,loveslabourslost,1594\nframe,1,loveslabourslost,1594\nimpudency,1,loveslabourslost,1594\nsolace,1,loveslabourslost,1594\ntoe,1,loveslabourslost,1594\nweight,1,loveslabourslost,1594\nHe's,1,loveslabourslost,1594\ncatch,1,loveslabourslost,1594\nLuna,1,loveslabourslost,1594\ninsinuateth,1,loveslabourslost,1594\npent,1,loveslabourslost,1594\nbrooding,1,loveslabourslost,1594\nblessing,1,loveslabourslost,1594\ninstruction,1,loveslabourslost,1594\nroasted,1,loveslabourslost,1594\ntop,1,loveslabourslost,1594\nAlencon's,1,loveslabourslost,1594\nfellowship,1,loveslabourslost,1594\nlame,1,loveslabourslost,1594\nproclamation,1,loveslabourslost,1594\npoisons,1,loveslabourslost,1594\nblossoms,1,loveslabourslost,1594\nmisbecomed,1,loveslabourslost,1594\nsnatch,1,loveslabourslost,1594\nreverend,1,loveslabourslost,1594\novershot,1,loveslabourslost,1594\nmonths,1,loveslabourslost,1594\nwonders,1,loveslabourslost,1594\ncadence,1,loveslabourslost,1594\nDRAMATIS,1,loveslabourslost,1594\nNegligent,1,loveslabourslost,1594\nhyperboles,1,loveslabourslost,1594\nshake,1,loveslabourslost,1594\nTeach,1,loveslabourslost,1594\nSuggestions,1,loveslabourslost,1594\npruning,1,loveslabourslost,1594\nunpaid,1,loveslabourslost,1594\ngrapple,1,loveslabourslost,1594\nduller,1,loveslabourslost,1594\nTom,1,loveslabourslost,1594\ngnat,1,loveslabourslost,1594\nflows,1,loveslabourslost,1594\nambitious,1,loveslabourslost,1594\ntempt,1,loveslabourslost,1594\nobedient,1,loveslabourslost,1594\ntired,1,loveslabourslost,1594\ntrees,1,loveslabourslost,1594\nwills,1,loveslabourslost,1594\npedantical,1,loveslabourslost,1594\ndet,1,loveslabourslost,1594\ndew,1,loveslabourslost,1594\nencountered,1,loveslabourslost,1594\nimpotent,1,loveslabourslost,1594\numbra,1,loveslabourslost,1594\nkind,1,loveslabourslost,1594\ninheritor,1,loveslabourslost,1594\nStaying,1,loveslabourslost,1594\nrepaid,1,loveslabourslost,1594\nsquier,1,loveslabourslost,1594\nfigures,1,loveslabourslost,1594\npecus,1,loveslabourslost,1594\nstomachs,1,loveslabourslost,1594\nunlearned,1,loveslabourslost,1594\neyelids,1,loveslabourslost,1594\nearth's,1,loveslabourslost,1594\nhaunted,1,loveslabourslost,1594\nFalse,1,loveslabourslost,1594\nHonest,1,loveslabourslost,1594\ncannon,1,loveslabourslost,1594\nshooter,1,loveslabourslost,1594\ngear,1,loveslabourslost,1594\njustle,1,loveslabourslost,1594\ncandles,1,loveslabourslost,1594\nremembrance,1,loveslabourslost,1594\nparley,1,loveslabourslost,1594\nbreathe,1,loveslabourslost,1594\nbids,1,loveslabourslost,1594\nupshoot,1,loveslabourslost,1594\nth',1,loveslabourslost,1594\nmarket,1,loveslabourslost,1594\nbreaths,1,loveslabourslost,1594\nThrice,1,loveslabourslost,1594\nbide,1,loveslabourslost,1594\nhunting,1,loveslabourslost,1594\nvenit,1,loveslabourslost,1594\ncrown,1,loveslabourslost,1594\noaten,1,loveslabourslost,1594\nundertake,1,loveslabourslost,1594\nslop,1,loveslabourslost,1594\nHuge,1,loveslabourslost,1594\ndurance,1,loveslabourslost,1594\nHolding,1,loveslabourslost,1594\nships,1,loveslabourslost,1594\ndig,1,loveslabourslost,1594\ngazes,1,loveslabourslost,1594\nunseeming,1,loveslabourslost,1594\nRetiring,1,loveslabourslost,1594\nvilely,1,loveslabourslost,1594\nwoo'd,1,loveslabourslost,1594\npunished,1,loveslabourslost,1594\ndegrees,1,loveslabourslost,1594\nending,1,loveslabourslost,1594\nhedge,1,loveslabourslost,1594\nfortunes,1,loveslabourslost,1594\ntarge,1,loveslabourslost,1594\nheroical,1,loveslabourslost,1594\nmaculate,1,loveslabourslost,1594\nDismask'd,1,loveslabourslost,1594\nplagues,2,loveslabourslost,1594\nsleeve,2,loveslabourslost,1594\nforbid,2,loveslabourslost,1594\nV,2,loveslabourslost,1594\nStands,2,loveslabourslost,1594\npity,2,loveslabourslost,1594\nd,2,loveslabourslost,1594\nb,2,loveslabourslost,1594\nsuffer,2,loveslabourslost,1594\nsmiles,2,loveslabourslost,1594\nt,2,loveslabourslost,1594\nProud,2,loveslabourslost,1594\nfancy,2,loveslabourslost,1594\ndrop,2,loveslabourslost,1594\ninfected,2,loveslabourslost,1594\nreputation,2,loveslabourslost,1594\nAdam,2,loveslabourslost,1594\nspeech,2,loveslabourslost,1594\ngenerous,2,loveslabourslost,1594\nvizards,2,loveslabourslost,1594\ndine,2,loveslabourslost,1594\nbrows,2,loveslabourslost,1594\nlower,2,loveslabourslost,1594\nimplore,2,loveslabourslost,1594\nriddle,2,loveslabourslost,1594\nfoolery,2,loveslabourslost,1594\nscene,2,loveslabourslost,1594\neasily,2,loveslabourslost,1594\nspace,2,loveslabourslost,1594\nBlackamoors,2,loveslabourslost,1594\nboys,2,loveslabourslost,1594\nStay,2,loveslabourslost,1594\nmess,2,loveslabourslost,1594\ninsociable,2,loveslabourslost,1594\nenigma,2,loveslabourslost,1594\njig,2,loveslabourslost,1594\nmere,2,loveslabourslost,1594\nsight,2,loveslabourslost,1594\ntoil,2,loveslabourslost,1594\nwhipped,2,loveslabourslost,1594\nparadise,2,loveslabourslost,1594\nnaked,2,loveslabourslost,1594\nhanged,2,loveslabourslost,1594\nunderstand,2,loveslabourslost,1594\nfury,2,loveslabourslost,1594\nderive,2,loveslabourslost,1594\nsigns,2,loveslabourslost,1594\nbeauty's,2,loveslabourslost,1594\npick,2,loveslabourslost,1594\npleasures,2,loveslabourslost,1594\ntrust,2,loveslabourslost,1594\nUpon,2,loveslabourslost,1594\nthicket,2,loveslabourslost,1594\nrecreation,2,loveslabourslost,1594\nLight,2,loveslabourslost,1594\nEve,2,loveslabourslost,1594\ndemand,2,loveslabourslost,1594\ncase,2,loveslabourslost,1594\nthumb,2,loveslabourslost,1594\nmistook,2,loveslabourslost,1594\nacute,2,loveslabourslost,1594\nplague,2,loveslabourslost,1594\nsoon,2,loveslabourslost,1594\ncharge,2,loveslabourslost,1594\nsons,2,loveslabourslost,1594\nworking,2,loveslabourslost,1594\npine,2,loveslabourslost,1594\nsole,2,loveslabourslost,1594\nresolve,2,loveslabourslost,1594\ncorner,2,loveslabourslost,1594\nlimb,2,loveslabourslost,1594\nMuch,2,loveslabourslost,1594\nheat,2,loveslabourslost,1594\nGardon,2,loveslabourslost,1594\nseemeth,2,loveslabourslost,1594\nwants,2,loveslabourslost,1594\nbreaks,2,loveslabourslost,1594\nrider,2,loveslabourslost,1594\nmaking,2,loveslabourslost,1594\nwait,2,loveslabourslost,1594\ningenious,2,loveslabourslost,1594\nsomething,2,loveslabourslost,1594\nvisitation,2,loveslabourslost,1594\nmoving,2,loveslabourslost,1594\nladies',2,loveslabourslost,1594\ndeserve,2,loveslabourslost,1594\nembassy,2,loveslabourslost,1594\nspeeches,2,loveslabourslost,1594\nendeavor,2,loveslabourslost,1594\nstands,2,loveslabourslost,1594\nfaithfully,2,loveslabourslost,1594\nbody,2,loveslabourslost,1594\ninvention,2,loveslabourslost,1594\nsea,2,loveslabourslost,1594\ndisposed,2,loveslabourslost,1594\nscore,2,loveslabourslost,1594\ndeliver,2,loveslabourslost,1594\nsteps,2,loveslabourslost,1594\nskill,2,loveslabourslost,1594\nfollowed,2,loveslabourslost,1594\n'Fair',2,loveslabourslost,1594\nwhereuntil,2,loveslabourslost,1594\nPompion,2,loveslabourslost,1594\nchat,2,loveslabourslost,1594\nsky,2,loveslabourslost,1594\npieces,2,loveslabourslost,1594\nthin,2,loveslabourslost,1594\nSpain,2,loveslabourslost,1594\nbecomes,2,loveslabourslost,1594\naffect,2,loveslabourslost,1594\nsends,2,loveslabourslost,1594\npoverty,2,loveslabourslost,1594\nAnthony,2,loveslabourslost,1594\nvile,2,loveslabourslost,1594\nBrabant,2,loveslabourslost,1594\nreceived,2,loveslabourslost,1594\nstaring,2,loveslabourslost,1594\nconceit,2,loveslabourslost,1594\nhabit,2,loveslabourslost,1594\nkill'd,2,loveslabourslost,1594\nterms,2,loveslabourslost,1594\npearl,2,loveslabourslost,1594\nscurrility,2,loveslabourslost,1594\nminority,2,loveslabourslost,1594\ncoloured,2,loveslabourslost,1594\nspeechless,2,loveslabourslost,1594\nelder,2,loveslabourslost,1594\naccent,2,loveslabourslost,1594\nrein,2,loveslabourslost,1594\nbowl,2,loveslabourslost,1594\ngirls,2,loveslabourslost,1594\nlances,2,loveslabourslost,1594\nbaser,2,loveslabourslost,1594\nwhisper,2,loveslabourslost,1594\nweather,2,loveslabourslost,1594\nwink,2,loveslabourslost,1594\nLatin,2,loveslabourslost,1594\nHence,2,loveslabourslost,1594\nsnip,2,loveslabourslost,1594\ncomedy,2,loveslabourslost,1594\nMight,2,loveslabourslost,1594\nPlease,2,loveslabourslost,1594\nhence,2,loveslabourslost,1594\ncomplements,2,loveslabourslost,1594\n'For,2,loveslabourslost,1594\nbold,2,loveslabourslost,1594\nanon,2,loveslabourslost,1594\ndied,2,loveslabourslost,1594\neagle,2,loveslabourslost,1594\nvoice,2,loveslabourslost,1594\ndice,2,loveslabourslost,1594\nbone,2,loveslabourslost,1594\nAtes,2,loveslabourslost,1594\nparty,2,loveslabourslost,1594\ncolour,2,loveslabourslost,1594\ntent,2,loveslabourslost,1594\nhe's,2,loveslabourslost,1594\nbitter,2,loveslabourslost,1594\nbig,2,loveslabourslost,1594\nsenses,2,loveslabourslost,1594\nFaith,2,loveslabourslost,1594\nstumble,2,loveslabourslost,1594\nstir,2,loveslabourslost,1594\nmorning,2,loveslabourslost,1594\nstrongly,2,loveslabourslost,1594\nshooting,2,loveslabourslost,1594\nHold,2,loveslabourslost,1594\nbacks,2,loveslabourslost,1594\ncrack,2,loveslabourslost,1594\nIII,2,loveslabourslost,1594\nBa,2,loveslabourslost,1594\ntonight,2,loveslabourslost,1594\nscarce,2,loveslabourslost,1594\nbon,2,loveslabourslost,1594\nheresy,2,loveslabourslost,1594\nBe,2,loveslabourslost,1594\nblows,2,loveslabourslost,1594\nextemporal,2,loveslabourslost,1594\nstrangers,2,loveslabourslost,1594\nknowing,2,loveslabourslost,1594\nwash'd,2,loveslabourslost,1594\nblown,2,loveslabourslost,1594\nsmile,2,loveslabourslost,1594\nMe,2,loveslabourslost,1594\nsmocks,2,loveslabourslost,1594\nladyship,2,loveslabourslost,1594\nFalconbridge,2,loveslabourslost,1594\nunless,2,loveslabourslost,1594\nbutt,2,loveslabourslost,1594\nbelike,2,loveslabourslost,1594\nstar,2,loveslabourslost,1594\nSpaniard,2,loveslabourslost,1594\nwisdom,2,loveslabourslost,1594\nflowers,2,loveslabourslost,1594\nmeans,2,loveslabourslost,1594\nmeant,2,loveslabourslost,1594\nsovereignty,2,loveslabourslost,1594\nwhole,2,loveslabourslost,1594\nsurely,2,loveslabourslost,1594\nKatharine,2,loveslabourslost,1594\npast,2,loveslabourslost,1594\nbuys,2,loveslabourslost,1594\ngreasy,2,loveslabourslost,1594\ndomine,2,loveslabourslost,1594\nglorious,2,loveslabourslost,1594\npot,2,loveslabourslost,1594\nyourselves,2,loveslabourslost,1594\nheads,2,loveslabourslost,1594\nNaso,2,loveslabourslost,1594\nbegot,2,loveslabourslost,1594\ncritic,2,loveslabourslost,1594\nweep,2,loveslabourslost,1594\nbene,2,loveslabourslost,1594\nbush,2,loveslabourslost,1594\nmoreover,2,loveslabourslost,1594\ndote,2,loveslabourslost,1594\ndevised,2,loveslabourslost,1594\npeople,2,loveslabourslost,1594\nSolomon,2,loveslabourslost,1594\nfifty,2,loveslabourslost,1594\nwelkin,2,loveslabourslost,1594\nhobby,2,loveslabourslost,1594\nmeanest,2,loveslabourslost,1594\nsuddenly,2,loveslabourslost,1594\nfarewell,2,loveslabourslost,1594\ndegree,2,loveslabourslost,1594\nAjax,2,loveslabourslost,1594\ntravel,2,loveslabourslost,1594\nlonger,2,loveslabourslost,1594\nAbout,2,loveslabourslost,1594\ndivine,2,loveslabourslost,1594\npaint,2,loveslabourslost,1594\npicture,2,loveslabourslost,1594\nnoted,2,loveslabourslost,1594\nGod's,2,loveslabourslost,1594\ninstant,2,loveslabourslost,1594\nstay'd,2,loveslabourslost,1594\n'that,2,loveslabourslost,1594\nbetray,2,loveslabourslost,1594\nservant,2,loveslabourslost,1594\nde,2,loveslabourslost,1594\nrepute,2,loveslabourslost,1594\nleft,2,loveslabourslost,1594\ndebt,2,loveslabourslost,1594\nlegs,2,loveslabourslost,1594\nliberal,2,loveslabourslost,1594\ngait,2,loveslabourslost,1594\ndead,2,loveslabourslost,1594\nseeing,2,loveslabourslost,1594\nMuscovites,2,loveslabourslost,1594\nenforce,2,loveslabourslost,1594\nlaughing,2,loveslabourslost,1594\nspeed,2,loveslabourslost,1594\npierced,2,loveslabourslost,1594\nforget,2,loveslabourslost,1594\namend,2,loveslabourslost,1594\nnewly,2,loveslabourslost,1594\nthyself,2,loveslabourslost,1594\ndoor,2,loveslabourslost,1594\nAdramadio,2,loveslabourslost,1594\ncrossed,2,loveslabourslost,1594\narmipotent,2,loveslabourslost,1594\nnecessity,2,loveslabourslost,1594\ncomplexions,2,loveslabourslost,1594\nmote,2,loveslabourslost,1594\nthankful,2,loveslabourslost,1594\nillustrate,2,loveslabourslost,1594\nimp,2,loveslabourslost,1594\nnoble,2,loveslabourslost,1594\nhadst,2,loveslabourslost,1594\nendure,2,loveslabourslost,1594\nadd,2,loveslabourslost,1594\nho,2,loveslabourslost,1594\nhogshead,2,loveslabourslost,1594\ncontinent,2,loveslabourslost,1594\nserious,2,loveslabourslost,1594\nhot,2,loveslabourslost,1594\nharm,2,loveslabourslost,1594\nkilled,2,loveslabourslost,1594\nrunning,2,loveslabourslost,1594\ntempted,2,loveslabourslost,1594\nkills,2,loveslabourslost,1594\nBreak,2,loveslabourslost,1594\nweeks,2,loveslabourslost,1594\nkeel,2,loveslabourslost,1594\nVenetia,2,loveslabourslost,1594\nhue,2,loveslabourslost,1594\nti,2,loveslabourslost,1594\nArme,2,loveslabourslost,1594\nkingly,2,loveslabourslost,1594\nweeds,2,loveslabourslost,1594\ncall'd,2,loveslabourslost,1594\nrepeat,2,loveslabourslost,1594\nappears,2,loveslabourslost,1594\nliberty,2,loveslabourslost,1594\nshut,2,loveslabourslost,1594\nunlettered,2,loveslabourslost,1594\njoyful,2,loveslabourslost,1594\nschool,2,loveslabourslost,1594\npluck,2,loveslabourslost,1594\nnightly,2,loveslabourslost,1594\nfiery,2,loveslabourslost,1594\nforswore,2,loveslabourslost,1594\nPrepare,2,loveslabourslost,1594\nstrive,2,loveslabourslost,1594\ntwain,2,loveslabourslost,1594\nbosom,2,loveslabourslost,1594\ndreadful,2,loveslabourslost,1594\nrogue,2,loveslabourslost,1594\ncombat,2,loveslabourslost,1594\nconcerning,2,loveslabourslost,1594\nduke's,2,loveslabourslost,1594\nobject,2,loveslabourslost,1594\nfresh,2,loveslabourslost,1594\nmaiden,2,loveslabourslost,1594\nchance,2,loveslabourslost,1594\nthanks,2,loveslabourslost,1594\ntheirs,2,loveslabourslost,1594\nfew,2,loveslabourslost,1594\npurchased,2,loveslabourslost,1594\nSirrah,2,loveslabourslost,1594\nnative,2,loveslabourslost,1594\nwooing,2,loveslabourslost,1594\nhiss,2,loveslabourslost,1594\ntrial,2,loveslabourslost,1594\nexcel,2,loveslabourslost,1594\nhere's,2,loveslabourslost,1594\nShould,2,loveslabourslost,1594\nlean,2,loveslabourslost,1594\ndraweth,2,loveslabourslost,1594\nleap,2,loveslabourslost,1594\nfrozen,2,loveslabourslost,1594\nBeauty,2,loveslabourslost,1594\nballad,2,loveslabourslost,1594\nhoney,2,loveslabourslost,1594\nAgainst,2,loveslabourslost,1594\ntokens,2,loveslabourslost,1594\nhill,2,loveslabourslost,1594\ngriefs,2,loveslabourslost,1594\nshouldst,2,loveslabourslost,1594\nbreathed,2,loveslabourslost,1594\nrose,2,loveslabourslost,1594\nantique,2,loveslabourslost,1594\nexpress'd,2,loveslabourslost,1594\n'Gainst,2,loveslabourslost,1594\nprosperity,2,loveslabourslost,1594\nElse,2,loveslabourslost,1594\nrare,2,loveslabourslost,1594\ntrencher,2,loveslabourslost,1594\nobscure,2,loveslabourslost,1594\nprodigal,2,loveslabourslost,1594\nentertainment,2,loveslabourslost,1594\nbeard,2,loveslabourslost,1594\nvelvet,2,loveslabourslost,1594\ncourtship,2,loveslabourslost,1594\nours,2,loveslabourslost,1594\ncompanions,2,loveslabourslost,1594\nhide,2,loveslabourslost,1594\nyear,2,loveslabourslost,1594\nsirrah,2,loveslabourslost,1594\nmock'd,2,loveslabourslost,1594\nSoft,2,loveslabourslost,1594\nquickly,2,loveslabourslost,1594\nvoluble,2,loveslabourslost,1594\nConsider,2,loveslabourslost,1594\nfairs,2,loveslabourslost,1594\npresented,2,loveslabourslost,1594\nDost,2,loveslabourslost,1594\nrecount,2,loveslabourslost,1594\nSee,2,loveslabourslost,1594\ncongruent,2,loveslabourslost,1594\ndevice,2,loveslabourslost,1594\nlodge,2,loveslabourslost,1594\nother's,2,loveslabourslost,1594\nmilk,2,loveslabourslost,1594\nfantastical,2,loveslabourslost,1594\nmild,2,loveslabourslost,1594\nspruce,2,loveslabourslost,1594\nAir,2,loveslabourslost,1594\nHector's,2,loveslabourslost,1594\nnon,2,loveslabourslost,1594\nsoldiers,2,loveslabourslost,1594\ngardon,2,loveslabourslost,1594\nconclusion,2,loveslabourslost,1594\nstrict,2,loveslabourslost,1594\nknave,2,loveslabourslost,1594\npurposed,2,loveslabourslost,1594\nblinded,2,loveslabourslost,1594\nobservation,2,loveslabourslost,1594\nmint,2,loveslabourslost,1594\nmerrily,2,loveslabourslost,1594\nkeeper,2,loveslabourslost,1594\nreading,2,loveslabourslost,1594\n'gainst,2,loveslabourslost,1594\ntents,2,loveslabourslost,1594\nvarnish,2,loveslabourslost,1594\ndearest,2,loveslabourslost,1594\nkissing,2,loveslabourslost,1594\nknown,2,loveslabourslost,1594\nwoe,2,loveslabourslost,1594\nvein,2,loveslabourslost,1594\nlet's,2,loveslabourslost,1594\nquote,2,loveslabourslost,1594\nleaden,2,loveslabourslost,1594\nneed,2,loveslabourslost,1594\nmountain,2,loveslabourslost,1594\nperemptory,2,loveslabourslost,1594\nconstable,2,loveslabourslost,1594\nhypocrisy,2,loveslabourslost,1594\n'So,2,loveslabourslost,1594\nnumber,2,loveslabourslost,1594\nmarvel,2,loveslabourslost,1594\ndesires,2,loveslabourslost,1594\nvapour,2,loveslabourslost,1594\nhight,2,loveslabourslost,1594\nNine,2,loveslabourslost,1594\nlosing,2,loveslabourslost,1594\ntaste,2,loveslabourslost,1594\npole,2,loveslabourslost,1594\ndesolation,2,loveslabourslost,1594\napology,2,loveslabourslost,1594\nsale,2,loveslabourslost,1594\nnear,2,loveslabourslost,1594\nneck,2,loveslabourslost,1594\nunderstanding,2,loveslabourslost,1594\nthrow,2,loveslabourslost,1594\nstyle,2,loveslabourslost,1594\nTwice,2,loveslabourslost,1594\nimpose,2,loveslabourslost,1594\npathetical,2,loveslabourslost,1594\nthird,2,loveslabourslost,1594\nsitting,2,loveslabourslost,1594\nsonnet,2,loveslabourslost,1594\ndunghill,2,loveslabourslost,1594\nripe,2,loveslabourslost,1594\npauca,2,loveslabourslost,1594\nJude,2,loveslabourslost,1594\nThine,2,loveslabourslost,1594\nwax,2,loveslabourslost,1594\nflourish,2,loveslabourslost,1594\nCan,2,loveslabourslost,1594\nbarbarous,2,loveslabourslost,1594\nreceive,2,loveslabourslost,1594\nbetween,2,loveslabourslost,1594\nprint,2,loveslabourslost,1594\ncommander,2,loveslabourslost,1594\nposterior,2,loveslabourslost,1594\nthemselves,2,loveslabourslost,1594\nwood,2,loveslabourslost,1594\nthey'll,2,loveslabourslost,1594\nrage,2,loveslabourslost,1594\ntallest,2,loveslabourslost,1594\nforward,2,loveslabourslost,1594\nsaith,2,loveslabourslost,1594\nends,2,loveslabourslost,1594\nprice,2,loveslabourslost,1594\nArmado's,2,loveslabourslost,1594\nnext,2,loveslabourslost,1594\nThree,2,loveslabourslost,1594\npossess,2,loveslabourslost,1594\ncaught,2,loveslabourslost,1594\nnotice,2,loveslabourslost,1594\nhail,2,loveslabourslost,1594\nfaced,2,loveslabourslost,1594\nedict,2,loveslabourslost,1594\nduke,2,loveslabourslost,1594\nconference,2,loveslabourslost,1594\nomne,2,loveslabourslost,1594\nwhat's,2,loveslabourslost,1594\nforfeit,2,loveslabourslost,1594\nspleen,2,loveslabourslost,1594\nowe,2,loveslabourslost,1594\nfacility,2,loveslabourslost,1594\ndull,2,loveslabourslost,1594\nviews,2,loveslabourslost,1594\nEven,2,loveslabourslost,1594\ngrass,2,loveslabourslost,1594\ntable,2,loveslabourslost,1594\nwholesome,2,loveslabourslost,1594\nMake,2,loveslabourslost,1594\nprofane,2,loveslabourslost,1594\ngiving,2,loveslabourslost,1594\nThat's,2,loveslabourslost,1594\ncrystal,2,loveslabourslost,1594\nsnake,2,loveslabourslost,1594\narticle,2,loveslabourslost,1594\ncloud,2,loveslabourslost,1594\nphrases,2,loveslabourslost,1594\nProceed,2,loveslabourslost,1594\ngrant,2,loveslabourslost,1594\nsurnamed,2,loveslabourslost,1594\nsilly,2,loveslabourslost,1594\nwore,2,loveslabourslost,1594\ndo't,2,loveslabourslost,1594\nwest,2,loveslabourslost,1594\nMars,2,loveslabourslost,1594\nprofit,2,loveslabourslost,1594\nBoy,2,loveslabourslost,1594\nsavage,2,loveslabourslost,1594\nshown,2,loveslabourslost,1594\nVows,2,loveslabourslost,1594\nostentation,2,loveslabourslost,1594\nwealth,2,loveslabourslost,1594\nan't,2,loveslabourslost,1594\nqueen,2,loveslabourslost,1594\nmember,2,loveslabourslost,1594\ncomfort,2,loveslabourslost,1594\nallusion,2,loveslabourslost,1594\nlarge,2,loveslabourslost,1594\nfare,2,loveslabourslost,1594\nWelcome,2,loveslabourslost,1594\ntale,2,loveslabourslost,1594\nlaw,2,loveslabourslost,1594\nChristmas,2,loveslabourslost,1594\nfalsely,2,loveslabourslost,1594\njests,2,loveslabourslost,1594\nMocks,2,loveslabourslost,1594\nHolofernes,2,loveslabourslost,1594\nconcludes,2,loveslabourslost,1594\nholy,2,loveslabourslost,1594\nquis,2,loveslabourslost,1594\nAllons,2,loveslabourslost,1594\ngreet,2,loveslabourslost,1594\ndangerous,2,loveslabourslost,1594\npupil,2,loveslabourslost,1594\nacademes,2,loveslabourslost,1594\ncarve,2,loveslabourslost,1594\npresents,2,loveslabourslost,1594\nstrong,2,loveslabourslost,1594\nlives,2,loveslabourslost,1594\ncommonwealth,2,loveslabourslost,1594\nWhere's,2,loveslabourslost,1594\nfalsehood,2,loveslabourslost,1594\ntask,2,loveslabourslost,1594\nmasked,2,loveslabourslost,1594\nVer,2,loveslabourslost,1594\nfitted,2,loveslabourslost,1594\nintents,2,loveslabourslost,1594\nTroy,2,loveslabourslost,1594\nhunt,2,loveslabourslost,1594\nalone,2,loveslabourslost,1594\ncontents,2,loveslabourslost,1594\nalways,2,loveslabourslost,1594\nmagnificent,2,loveslabourslost,1594\nuse,2,loveslabourslost,1594\ndecree,2,loveslabourslost,1594\nseem,2,loveslabourslost,1594\npresence,2,loveslabourslost,1594\nmarvellous,2,loveslabourslost,1594\nended,2,loveslabourslost,1594\ndiscretion,2,loveslabourslost,1594\nunderstood,2,loveslabourslost,1594\nSteps,2,loveslabourslost,1594\nsees,2,loveslabourslost,1594\npricks,2,loveslabourslost,1594\nvessel,2,loveslabourslost,1594\nfellows,2,loveslabourslost,1594\nwisdom's,2,loveslabourslost,1594\ncorn,2,loveslabourslost,1594\ncry,2,loveslabourslost,1594\nDick,2,loveslabourslost,1594\nUnpleasing,2,loveslabourslost,1594\nvotaries,2,loveslabourslost,1594\nKnow,2,loveslabourslost,1594\nThrough,2,loveslabourslost,1594\nhours,2,loveslabourslost,1594\nglove,2,loveslabourslost,1594\nsuffice,2,loveslabourslost,1594\nblushing,2,loveslabourslost,1594\ncapacity,2,loveslabourslost,1594\nincony,2,loveslabourslost,1594\ngloss,2,loveslabourslost,1594\nleg,2,loveslabourslost,1594\ncompiled,2,loveslabourslost,1594\nNeither,2,loveslabourslost,1594\nmother's,2,loveslabourslost,1594\ntogether,2,loveslabourslost,1594\nherald,2,loveslabourslost,1594\nchose,2,loveslabourslost,1594\nseason,2,loveslabourslost,1594\npore,2,loveslabourslost,1594\nbestow,2,loveslabourslost,1594\ntriumph,2,loveslabourslost,1594\nfarthings,2,loveslabourslost,1594\nlaws,2,loveslabourslost,1594\nsleep,2,loveslabourslost,1594\nsuitor,2,loveslabourslost,1594\n'Item,2,loveslabourslost,1594\nqueen's,2,loveslabourslost,1594\nmar,2,loveslabourslost,1594\nturtles,2,loveslabourslost,1594\nGave,2,loveslabourslost,1594\nabroad,2,loveslabourslost,1594\nSignior,2,loveslabourslost,1594\nconduct,2,loveslabourslost,1594\npasture,2,loveslabourslost,1594\nsmiling,2,loveslabourslost,1594\nbegins,2,loveslabourslost,1594\nlearn,2,loveslabourslost,1594\nAnother,2,loveslabourslost,1594\nstraight,2,loveslabourslost,1594\nsadness,2,loveslabourslost,1594\nbrooch,2,loveslabourslost,1594\nmargent,2,loveslabourslost,1594\nmet,2,loveslabourslost,1594\nglory,2,loveslabourslost,1594\nsovereign,2,loveslabourslost,1594\nemployment,2,loveslabourslost,1594\nwhit,2,loveslabourslost,1594\nAway,2,loveslabourslost,1594\nebony,2,loveslabourslost,1594\npunishment,2,loveslabourslost,1594\nharmony,2,loveslabourslost,1594\nphysic,2,loveslabourslost,1594\nAmen,2,loveslabourslost,1594\nmourning,2,loveslabourslost,1594\nIndeed,2,loveslabourslost,1594\nsometimes,2,loveslabourslost,1594\nrespects,2,loveslabourslost,1594\nfever,2,loveslabourslost,1594\ninherit,2,loveslabourslost,1594\nPromethean,2,loveslabourslost,1594\nfright,2,loveslabourslost,1594\nWithout,2,loveslabourslost,1594\nsilver,2,loveslabourslost,1594\nbreaking,2,loveslabourslost,1594\nTroyan,2,loveslabourslost,1594\nLend,2,loveslabourslost,1594\ngoing,2,loveslabourslost,1594\nsilent,2,loveslabourslost,1594\nlover's,2,loveslabourslost,1594\nrespect,2,loveslabourslost,1594\nattend,2,loveslabourslost,1594\nharsh,2,loveslabourslost,1594\ndare,2,loveslabourslost,1594\nweigh,2,loveslabourslost,1594\ndue,2,loveslabourslost,1594\nland,2,loveslabourslost,1594\ntoy,2,loveslabourslost,1594\ndispatch,2,loveslabourslost,1594\ndry,2,loveslabourslost,1594\nbred,2,loveslabourslost,1594\nswallowed,2,loveslabourslost,1594\nlamb,2,loveslabourslost,1594\ninches,2,loveslabourslost,1594\nflout,2,loveslabourslost,1594\nDun,2,loveslabourslost,1594\ntis,2,loveslabourslost,1594\nflower,2,loveslabourslost,1594\nToo,2,loveslabourslost,1594\nexit,2,loveslabourslost,1594\ngreatness,2,loveslabourslost,1594\ncross,2,loveslabourslost,1594\nsmell,2,loveslabourslost,1594\ngentles,2,loveslabourslost,1594\ncommand,2,loveslabourslost,1594\nden,2,loveslabourslost,1594\ncorporal,2,loveslabourslost,1594\nimmured,2,loveslabourslost,1594\npronounce,2,loveslabourslost,1594\nrepair,2,loveslabourslost,1594\nlack,2,loveslabourslost,1594\ndoctrine,2,loveslabourslost,1594\nperhaps,2,loveslabourslost,1594\nepithet,2,loveslabourslost,1594\nwouldst,2,loveslabourslost,1594\nesteemed,2,loveslabourslost,1594\nwomen,2,loveslabourslost,1594\nmajestical,2,loveslabourslost,1594\ndaughters,2,loveslabourslost,1594\nbrave,3,loveslabourslost,1594\nanswer,3,loveslabourslost,1594\nmoral,3,loveslabourslost,1594\nL,3,loveslabourslost,1594\nignorance,3,loveslabourslost,1594\nadvised,3,loveslabourslost,1594\ne,3,loveslabourslost,1594\ngallants,3,loveslabourslost,1594\ninfant,3,loveslabourslost,1594\ntook,3,loveslabourslost,1594\nyielding,3,loveslabourslost,1594\ndouble,3,loveslabourslost,1594\ncountry,3,loveslabourslost,1594\nforswear,3,loveslabourslost,1594\nwrit,3,loveslabourslost,1594\nwoman's,3,loveslabourslost,1594\nhelp,3,loveslabourslost,1594\nhealth,3,loveslabourslost,1594\njoy,3,loveslabourslost,1594\nvillain,3,loveslabourslost,1594\nTell,3,loveslabourslost,1594\npenalty,3,loveslabourslost,1594\npainted,3,loveslabourslost,1594\nfinger,3,loveslabourslost,1594\nJoan,3,loveslabourslost,1594\namber,3,loveslabourslost,1594\nthroat,3,loveslabourslost,1594\nbefall,3,loveslabourslost,1594\nravish,3,loveslabourslost,1594\ncontrary,3,loveslabourslost,1594\nWould,3,loveslabourslost,1594\nmercy,3,loveslabourslost,1594\nDictynna,3,loveslabourslost,1594\ncounted,3,loveslabourslost,1594\nbirth,3,loveslabourslost,1594\nWhose,3,loveslabourslost,1594\nOnly,3,loveslabourslost,1594\ncheek,3,loveslabourslost,1594\nhearing,3,loveslabourslost,1594\ngolden,3,loveslabourslost,1594\nsoil,3,loveslabourslost,1594\ncomplexion,3,loveslabourslost,1594\nteach,3,loveslabourslost,1594\nshe's,3,loveslabourslost,1594\npenance,3,loveslabourslost,1594\ndisclosed,3,loveslabourslost,1594\nwalk,3,loveslabourslost,1594\ndeceived,3,loveslabourslost,1594\ntraveller,3,loveslabourslost,1594\nsociety,3,loveslabourslost,1594\n'twas,3,loveslabourslost,1594\nyield,3,loveslabourslost,1594\nnine,3,loveslabourslost,1594\nbirds,3,loveslabourslost,1594\nFarewell,3,loveslabourslost,1594\nlooking,3,loveslabourslost,1594\ndisgrace,3,loveslabourslost,1594\ngroans,3,loveslabourslost,1594\ndoubt,3,loveslabourslost,1594\nAttendants,3,loveslabourslost,1594\nworst,3,loveslabourslost,1594\nworse,3,loveslabourslost,1594\nmocks,3,loveslabourslost,1594\nfight,3,loveslabourslost,1594\n'Great,3,loveslabourslost,1594\nPrincess,3,loveslabourslost,1594\nOut,3,loveslabourslost,1594\ncommon,3,loveslabourslost,1594\ndaughter,3,loveslabourslost,1594\nfigure,3,loveslabourslost,1594\nPardon,3,loveslabourslost,1594\nwilling,3,loveslabourslost,1594\nsue,3,loveslabourslost,1594\ncomplete,3,loveslabourslost,1594\nVouchsafe,3,loveslabourslost,1594\nsoldier,3,loveslabourslost,1594\ntitle,3,loveslabourslost,1594\nwant,3,loveslabourslost,1594\nAdvancing,3,loveslabourslost,1594\nLadies,3,loveslabourslost,1594\ngoddess,3,loveslabourslost,1594\nfarthing,3,loveslabourslost,1594\nknowledge,3,loveslabourslost,1594\nauthority,3,loveslabourslost,1594\nhat,3,loveslabourslost,1594\nWhile,3,loveslabourslost,1594\nWhat's,3,loveslabourslost,1594\nsign,3,loveslabourslost,1594\nsorel,3,loveslabourslost,1594\ndelights,3,loveslabourslost,1594\nbow,3,loveslabourslost,1594\nThose,3,loveslabourslost,1594\namong,3,loveslabourslost,1594\npenn'd,3,loveslabourslost,1594\nsensible,3,loveslabourslost,1594\ncanst,3,loveslabourslost,1594\nforce,3,loveslabourslost,1594\ntear,3,loveslabourslost,1594\nbee,3,loveslabourslost,1594\nIV,3,loveslabourslost,1594\nbless,3,loveslabourslost,1594\nbid,3,loveslabourslost,1594\nLet's,3,loveslabourslost,1594\npin,3,loveslabourslost,1594\nthickest,3,loveslabourslost,1594\nenrolled,3,loveslabourslost,1594\ngod,3,loveslabourslost,1594\ncostard,3,loveslabourslost,1594\ngrief,3,loveslabourslost,1594\nRemuneration,3,loveslabourslost,1594\ncap,3,loveslabourslost,1594\nSpeak,3,loveslabourslost,1594\novercame,3,loveslabourslost,1594\njewel,3,loveslabourslost,1594\nswift,3,loveslabourslost,1594\nvassal,3,loveslabourslost,1594\nAbove,3,loveslabourslost,1594\npitch,3,loveslabourslost,1594\ngrace's,3,loveslabourslost,1594\nturns,3,loveslabourslost,1594\ncrowns,3,loveslabourslost,1594\ni',3,loveslabourslost,1594\nvirgin,3,loveslabourslost,1594\ndeep,3,loveslabourslost,1594\naffection,3,loveslabourslost,1594\nyea,3,loveslabourslost,1594\nexcellent,3,loveslabourslost,1594\npainting,3,loveslabourslost,1594\nyes,3,loveslabourslost,1594\nplays,3,loveslabourslost,1594\nAlexander,3,loveslabourslost,1594\nwaist,3,loveslabourslost,1594\ngame,3,loveslabourslost,1594\nmemory,3,loveslabourslost,1594\nhumours,3,loveslabourslost,1594\nfeast,3,loveslabourslost,1594\nbetray'd,3,loveslabourslost,1594\nsmall,3,loveslabourslost,1594\nvaried,3,loveslabourslost,1594\nhalfpenny,3,loveslabourslost,1594\nidle,3,loveslabourslost,1594\nsometime,3,loveslabourslost,1594\nla,3,loveslabourslost,1594\nlost,3,loveslabourslost,1594\nRussians,3,loveslabourslost,1594\nnimble,3,loveslabourslost,1594\nforgot,3,loveslabourslost,1594\nmen's,3,loveslabourslost,1594\nvalour,3,loveslabourslost,1594\ndiscourse,3,loveslabourslost,1594\nspeaks,3,loveslabourslost,1594\nkeen,3,loveslabourslost,1594\nafford,3,loveslabourslost,1594\namount,3,loveslabourslost,1594\ntext,3,loveslabourslost,1594\nshallow,3,loveslabourslost,1594\npale,3,loveslabourslost,1594\nprince,3,loveslabourslost,1594\nforth,3,loveslabourslost,1594\nexcuse,3,loveslabourslost,1594\nUnder,3,loveslabourslost,1594\nprepare,3,loveslabourslost,1594\nprofound,3,loveslabourslost,1594\ndevise,3,loveslabourslost,1594\ncurate,3,loveslabourslost,1594\nfaithful,3,loveslabourslost,1594\ngirl,3,loveslabourslost,1594\nforms,3,loveslabourslost,1594\nye,3,loveslabourslost,1594\nerror,3,loveslabourslost,1594\ntrick,3,loveslabourslost,1594\nbought,3,loveslabourslost,1594\ntouch,3,loveslabourslost,1594\nsweetly,3,loveslabourslost,1594\nwatch,3,loveslabourslost,1594\noccasion,3,loveslabourslost,1594\ndamsel,3,loveslabourslost,1594\nmask'd,3,loveslabourslost,1594\npedant,3,loveslabourslost,1594\nFinely,3,loveslabourslost,1594\nretires,3,loveslabourslost,1594\nwater,3,loveslabourslost,1594\nclub,3,loveslabourslost,1594\nintellect,3,loveslabourslost,1594\npenny,3,loveslabourslost,1594\nyou'll,3,loveslabourslost,1594\nmistresses,3,loveslabourslost,1594\nprecious,3,loveslabourslost,1594\nquestion,3,loveslabourslost,1594\ngeneral,3,loveslabourslost,1594\nlikewise,3,loveslabourslost,1594\nleaves,3,loveslabourslost,1594\nstars,3,loveslabourslost,1594\nMantuan,3,loveslabourslost,1594\nalready,3,loveslabourslost,1594\nblush,3,loveslabourslost,1594\nmask,3,loveslabourslost,1594\nslave,3,loveslabourslost,1594\nwoo,3,loveslabourslost,1594\nbeside,3,loveslabourslost,1594\nshoulder,3,loveslabourslost,1594\nspecial,3,loveslabourslost,1594\nletters,3,loveslabourslost,1594\ngig,3,loveslabourslost,1594\nGiving,3,loveslabourslost,1594\nsans,3,loveslabourslost,1594\nalmighty,3,loveslabourslost,1594\nclose,3,loveslabourslost,1594\nproved,3,loveslabourslost,1594\nexample,3,loveslabourslost,1594\nhears,3,loveslabourslost,1594\ntalent,3,loveslabourslost,1594\nvow'd,3,loveslabourslost,1594\nwar,3,loveslabourslost,1594\nWorthy,3,loveslabourslost,1594\nintent,3,loveslabourslost,1594\narts,3,loveslabourslost,1594\nwomen's,3,loveslabourslost,1594\nbelly,3,loveslabourslost,1594\nfamiliar,3,loveslabourslost,1594\nfaces,3,loveslabourslost,1594\nearthly,3,loveslabourslost,1594\nvirtue's,3,loveslabourslost,1594\nsmelling,3,loveslabourslost,1594\ntouching,3,loveslabourslost,1594\nfox,3,loveslabourslost,1594\nfain,3,loveslabourslost,1594\nevil,3,loveslabourslost,1594\nTill,3,loveslabourslost,1594\nfall,3,loveslabourslost,1594\nmethinks,3,loveslabourslost,1594\nfame,3,loveslabourslost,1594\npleased,3,loveslabourslost,1594\nwit's,3,loveslabourslost,1594\nworn,3,loveslabourslost,1594\nworthiness,3,loveslabourslost,1594\nroses,3,loveslabourslost,1594\neven,3,loveslabourslost,1594\npassion,3,loveslabourslost,1594\nfolly,3,loveslabourslost,1594\nworship,3,loveslabourslost,1594\nherself,3,loveslabourslost,1594\nlines,3,loveslabourslost,1594\ndepart,3,loveslabourslost,1594\nmeaning,3,loveslabourslost,1594\nsecrets,3,loveslabourslost,1594\nman's,3,loveslabourslost,1594\ngiven,3,loveslabourslost,1594\ncarry,3,loveslabourslost,1594\nrapier,3,loveslabourslost,1594\nwilt,3,loveslabourslost,1594\nunto,3,loveslabourslost,1594\nwriting,3,loveslabourslost,1594\ngoodman,3,loveslabourslost,1594\nhearts,3,loveslabourslost,1594\nalong,3,loveslabourslost,1594\nlow,3,loveslabourslost,1594\nreckoning,3,loveslabourslost,1594\nfeeling,3,loveslabourslost,1594\nthereof,3,loveslabourslost,1594\nsound,3,loveslabourslost,1594\ntree,3,loveslabourslost,1594\nentreat,3,loveslabourslost,1594\nhuge,3,loveslabourslost,1594\nMaria,3,loveslabourslost,1594\nsell,3,loveslabourslost,1594\npavilion,3,loveslabourslost,1594\nbarren,3,loveslabourslost,1594\nbeamed,3,loveslabourslost,1594\nmad,3,loveslabourslost,1594\neel,3,loveslabourslost,1594\nremember,3,loveslabourslost,1594\ncorrection,3,loveslabourslost,1594\nstudy's,3,loveslabourslost,1594\nSince,3,loveslabourslost,1594\nParson,3,loveslabourslost,1594\nthoughts,3,loveslabourslost,1594\nlion,3,loveslabourslost,1594\ntelling,3,loveslabourslost,1594\nthither,3,loveslabourslost,1594\nlate,3,loveslabourslost,1594\nshade,3,loveslabourslost,1594\nspring,3,loveslabourslost,1594\nYou'll,3,loveslabourslost,1594\npayment,3,loveslabourslost,1594\nemploy,3,loveslabourslost,1594\nwounding,3,loveslabourslost,1594\nsudden,3,loveslabourslost,1594\neyesight,3,loveslabourslost,1594\nUntil,3,loveslabourslost,1594\npass'd,3,loveslabourslost,1594\nbargain,3,loveslabourslost,1594\nhe'll,3,loveslabourslost,1594\nprivate,3,loveslabourslost,1594\ncharity,3,loveslabourslost,1594\nforbear,3,loveslabourslost,1594\nneighbour,3,loveslabourslost,1594\nshirt,3,loveslabourslost,1594\nDon,3,loveslabourslost,1594\nschoolmaster,3,loveslabourslost,1594\ntold,4,loveslabourslost,1594\nmotion,4,loveslabourslost,1594\nheir,4,loveslabourslost,1594\nweary,4,loveslabourslost,1594\nfollowing,4,loveslabourslost,1594\nalack,4,loveslabourslost,1594\nzeal,4,loveslabourslost,1594\nlaughter,4,loveslabourslost,1594\ngroan,4,loveslabourslost,1594\nsighs,4,loveslabourslost,1594\nrun,4,loveslabourslost,1594\ncheeks,4,loveslabourslost,1594\ncare,4,loveslabourslost,1594\nOnce,4,loveslabourslost,1594\nsad,4,loveslabourslost,1594\ngracious,4,loveslabourslost,1594\nbroken,4,loveslabourslost,1594\nhabits,4,loveslabourslost,1594\nsure,4,loveslabourslost,1594\nanother,4,loveslabourslost,1594\nvisit,4,loveslabourslost,1594\nenough,4,loveslabourslost,1594\nsaying,4,loveslabourslost,1594\nscorn,4,loveslabourslost,1594\nlove's,4,loveslabourslost,1594\nSuch,4,loveslabourslost,1594\nWas,4,loveslabourslost,1594\ncountenance,4,loveslabourslost,1594\nlooks,4,loveslabourslost,1594\nfaults,4,loveslabourslost,1594\nheavens,4,loveslabourslost,1594\nsnow,4,loveslabourslost,1594\nbrain,4,loveslabourslost,1594\naffected,4,loveslabourslost,1594\nabout,4,loveslabourslost,1594\nsum,4,loveslabourslost,1594\nfeet,4,loveslabourslost,1594\nblind,4,loveslabourslost,1594\nsword,4,loveslabourslost,1594\nbring,4,loveslabourslost,1594\nrude,4,loveslabourslost,1594\nwind,4,loveslabourslost,1594\nedge,4,loveslabourslost,1594\nThough,4,loveslabourslost,1594\nbright,4,loveslabourslost,1594\nLove's,4,loveslabourslost,1594\nmerriment,4,loveslabourslost,1594\nNathaniel,4,loveslabourslost,1594\npatience,4,loveslabourslost,1594\nStill,4,loveslabourslost,1594\npen,4,loveslabourslost,1594\nII,4,loveslabourslost,1594\nbeg,4,loveslabourslost,1594\npleasure,4,loveslabourslost,1594\neast,4,loveslabourslost,1594\nconqueror,4,loveslabourslost,1594\nears,4,loveslabourslost,1594\nproud,4,loveslabourslost,1594\nTu,4,loveslabourslost,1594\ngave,4,loveslabourslost,1594\nweek,4,loveslabourslost,1594\nwear,4,loveslabourslost,1594\nSaint,4,loveslabourslost,1594\nsing,4,loveslabourslost,1594\nnorth,4,loveslabourslost,1594\nmiles,4,loveslabourslost,1594\nair,4,loveslabourslost,1594\nkeeping,4,loveslabourslost,1594\ngift,4,loveslabourslost,1594\nneeds,4,loveslabourslost,1594\ntongues,4,loveslabourslost,1594\nrhymes,4,loveslabourslost,1594\nattending,4,loveslabourslost,1594\ncommend,4,loveslabourslost,1594\ntrain,4,loveslabourslost,1594\nlover,4,loveslabourslost,1594\nink,4,loveslabourslost,1594\nYes,4,loveslabourslost,1594\nless,4,loveslabourslost,1594\ndevil,4,loveslabourslost,1594\nbeauteous,4,loveslabourslost,1594\nknew,4,loveslabourslost,1594\nshow'd,4,loveslabourslost,1594\nthrice,4,loveslabourslost,1594\nMoth,4,loveslabourslost,1594\nhang,4,loveslabourslost,1594\nLady,4,loveslabourslost,1594\nFull,4,loveslabourslost,1594\nFirst,4,loveslabourslost,1594\ndelight,4,loveslabourslost,1594\npoint,4,loveslabourslost,1594\nass,4,loveslabourslost,1594\nhaud,4,loveslabourslost,1594\nterm,4,loveslabourslost,1594\nKing,4,loveslabourslost,1594\nrhetoric,4,loveslabourslost,1594\nbroke,4,loveslabourslost,1594\nHath,4,loveslabourslost,1594\nfar,4,loveslabourslost,1594\nLords,4,loveslabourslost,1594\nnose,4,loveslabourslost,1594\nlearning,4,loveslabourslost,1594\nyoung,4,loveslabourslost,1594\nignorant,4,loveslabourslost,1594\nLook,4,loveslabourslost,1594\nfoolish,4,loveslabourslost,1594\nknows,4,loveslabourslost,1594\nwon,4,loveslabourslost,1594\nblow,4,loveslabourslost,1594\ngates,4,loveslabourslost,1594\nfather's,4,loveslabourslost,1594\nfree,4,loveslabourslost,1594\ndainty,4,loveslabourslost,1594\ndisguised,4,loveslabourslost,1594\ncould,4,loveslabourslost,1594\nliving,4,loveslabourslost,1594\nproves,4,loveslabourslost,1594\nget,4,loveslabourslost,1594\nsorrow,4,loveslabourslost,1594\nmeasured,4,loveslabourslost,1594\nmorrow,4,loveslabourslost,1594\nSay,4,loveslabourslost,1594\nduty,4,loveslabourslost,1594\naudience,4,loveslabourslost,1594\npride,4,loveslabourslost,1594\nwanton,4,loveslabourslost,1594\ncoming,4,loveslabourslost,1594\nhair,4,loveslabourslost,1594\nnews,4,loveslabourslost,1594\nvulgar,4,loveslabourslost,1594\nCupid's,4,loveslabourslost,1594\nmarry,4,loveslabourslost,1594\nangel,4,loveslabourslost,1594\nclown,4,loveslabourslost,1594\nwert,4,loveslabourslost,1594\ntune,4,loveslabourslost,1594\ncolours,4,loveslabourslost,1594\ncompany,4,loveslabourslost,1594\nfine,4,loveslabourslost,1594\nmarried,4,loveslabourslost,1594\nCuckoo,4,loveslabourslost,1594\ncredo,4,loveslabourslost,1594\ngallant,4,loveslabourslost,1594\nlay,4,loveslabourslost,1594\nhome,4,loveslabourslost,1594\ngreen,4,loveslabourslost,1594\nwife,4,loveslabourslost,1594\nfairer,4,loveslabourslost,1594\nback,4,loveslabourslost,1594\nshapes,4,loveslabourslost,1594\nPray,4,loveslabourslost,1594\n'twill,4,loveslabourslost,1594\nreturn,4,loveslabourslost,1594\ngoes,4,loveslabourslost,1594\nclouds,4,loveslabourslost,1594\nBefore,4,loveslabourslost,1594\npleasant,4,loveslabourslost,1594\nwhip,4,loveslabourslost,1594\nlips,4,loveslabourslost,1594\nlast,4,loveslabourslost,1594\nRussian,4,loveslabourslost,1594\nbooks,4,loveslabourslost,1594\nplantain,4,loveslabourslost,1594\nsimple,4,loveslabourslost,1594\nnumbers,4,loveslabourslost,1594\nThy,4,loveslabourslost,1594\nfollow,4,loveslabourslost,1594\nshine,4,loveslabourslost,1594\nTake,4,loveslabourslost,1594\nkill,4,loveslabourslost,1594\nhimself,4,loveslabourslost,1594\nturn'd,4,loveslabourslost,1594\nsharp,4,loveslabourslost,1594\nsummer,4,loveslabourslost,1594\ntreason,5,loveslabourslost,1594\nmeet,5,loveslabourslost,1594\ntimes,5,loveslabourslost,1594\nroyal,5,loveslabourslost,1594\nadding,5,loveslabourslost,1594\nwhile,5,loveslabourslost,1594\nyears',5,loveslabourslost,1594\nwithal,5,loveslabourslost,1594\nlaugh,5,loveslabourslost,1594\nunder,5,loveslabourslost,1594\nfriends,5,loveslabourslost,1594\nJove,5,loveslabourslost,1594\nsit,5,loveslabourslost,1594\nsin,5,loveslabourslost,1594\nbound,5,loveslabourslost,1594\nmocking,5,loveslabourslost,1594\nStudy,5,loveslabourslost,1594\nourselves,5,loveslabourslost,1594\nwrong,5,loveslabourslost,1594\nThere,5,loveslabourslost,1594\nfault,5,loveslabourslost,1594\nworthy,5,loveslabourslost,1594\ngrow,5,loveslabourslost,1594\nservice,5,loveslabourslost,1594\nfalse,5,loveslabourslost,1594\nflesh,5,loveslabourslost,1594\nfriend,5,loveslabourslost,1594\nmatter,5,loveslabourslost,1594\nThere's,5,loveslabourslost,1594\nFrench,5,loveslabourslost,1594\nparts,5,loveslabourslost,1594\nspoke,5,loveslabourslost,1594\nAh,5,loveslabourslost,1594\nmusic,5,loveslabourslost,1594\nSamson,5,loveslabourslost,1594\nsings,5,loveslabourslost,1594\nhid,5,loveslabourslost,1594\nGo,5,loveslabourslost,1594\nsince,5,loveslabourslost,1594\nnice,5,loveslabourslost,1594\nLike,5,loveslabourslost,1594\nbegin,5,loveslabourslost,1594\nsaid,5,loveslabourslost,1594\nbreast,5,loveslabourslost,1594\nbear,5,loveslabourslost,1594\nlady's,5,loveslabourslost,1594\napproach,5,loveslabourslost,1594\nmove,5,loveslabourslost,1594\nMERCADE,5,loveslabourslost,1594\nmonth,5,loveslabourslost,1594\naside,5,loveslabourslost,1594\nearth,5,loveslabourslost,1594\nafternoon,5,loveslabourslost,1594\nspend,5,loveslabourslost,1594\nlose,5,loveslabourslost,1594\nplace,5,loveslabourslost,1594\npure,5,loveslabourslost,1594\nfield,5,loveslabourslost,1594\nverses,5,loveslabourslost,1594\njuvenal,5,loveslabourslost,1594\nMaccabaeus,5,loveslabourslost,1594\nask,5,loveslabourslost,1594\nshin,5,loveslabourslost,1594\npain,5,loveslabourslost,1594\nape,5,loveslabourslost,1594\nmock,5,loveslabourslost,1594\nridiculous,5,loveslabourslost,1594\ntough,5,loveslabourslost,1594\nmaid,5,loveslabourslost,1594\nwonder,5,loveslabourslost,1594\ninto,5,loveslabourslost,1594\nbears,5,loveslabourslost,1594\nyouth,5,loveslabourslost,1594\nseveral,5,loveslabourslost,1594\nDoth,5,loveslabourslost,1594\nhigh,5,loveslabourslost,1594\nexchange,5,loveslabourslost,1594\nbeggar,5,loveslabourslost,1594\nsenior,5,loveslabourslost,1594\nstate,5,loveslabourslost,1594\nquoth,5,loveslabourslost,1594\nheaven's,5,loveslabourslost,1594\nover,5,loveslabourslost,1594\napart,5,loveslabourslost,1594\nsave,5,loveslabourslost,1594\ncalled,5,loveslabourslost,1594\n'Tis,5,loveslabourslost,1594\nfound,5,loveslabourslost,1594\nassure,5,loveslabourslost,1594\nowl,5,loveslabourslost,1594\nMonsieur,5,loveslabourslost,1594\nknight,5,loveslabourslost,1594\nhundred,5,loveslabourslost,1594\nguilty,5,loveslabourslost,1594\nhumour,5,loveslabourslost,1594\nfit,5,loveslabourslost,1594\nne'er,5,loveslabourslost,1594\nhorn,5,loveslabourslost,1594\nholds,5,loveslabourslost,1594\nproclaimed,5,loveslabourslost,1594\ngives,5,loveslabourslost,1594\nperson,5,loveslabourslost,1594\nself,5,loveslabourslost,1594\nsend,5,loveslabourslost,1594\ncarriage,5,loveslabourslost,1594\nprotest,5,loveslabourslost,1594\nslow,5,loveslabourslost,1594\nspirits,5,loveslabourslost,1594\nperjury,5,loveslabourslost,1594\nleast,5,loveslabourslost,1594\nsimplicity,5,loveslabourslost,1594\nfashion,5,loveslabourslost,1594\nMarry,5,loveslabourslost,1594\nvizard,5,loveslabourslost,1594\nlive,5,loveslabourslost,1594\nvirtue,5,loveslabourslost,1594\nstrange,5,loveslabourslost,1594\nbehold,5,loveslabourslost,1594\nshape,5,loveslabourslost,1594\ntread,5,loveslabourslost,1594\nhorns,6,loveslabourslost,1594\nred,6,loveslabourslost,1594\nthought,6,loveslabourslost,1594\npray,6,loveslabourslost,1594\nodds,6,loveslabourslost,1594\nlife,6,loveslabourslost,1594\nyourself,6,loveslabourslost,1594\ngrows,6,loveslabourslost,1594\ngross,6,loveslabourslost,1594\ncalf,6,loveslabourslost,1594\nForester,6,loveslabourslost,1594\nCupid,6,loveslabourslost,1594\nDull,6,loveslabourslost,1594\nset,6,loveslabourslost,1594\nsalve,6,loveslabourslost,1594\nTheir,6,loveslabourslost,1594\ncause,6,loveslabourslost,1594\nfellow,6,loveslabourslost,1594\nafter,6,loveslabourslost,1594\nhumble,6,loveslabourslost,1594\ndesire,6,loveslabourslost,1594\nfairest,6,loveslabourslost,1594\nsigh,6,loveslabourslost,1594\nAt,6,loveslabourslost,1594\nHis,6,loveslabourslost,1594\nneither,6,loveslabourslost,1594\nOn,6,loveslabourslost,1594\nHer,6,loveslabourslost,1594\npass,6,loveslabourslost,1594\nwhose,6,loveslabourslost,1594\nRe,6,loveslabourslost,1594\ndost,6,loveslabourslost,1594\nbuy,6,loveslabourslost,1594\nsheep,6,loveslabourslost,1594\nhands,6,loveslabourslost,1594\nMaster,6,loveslabourslost,1594\nMore,6,loveslabourslost,1594\ndeny,6,loveslabourslost,1594\nAre,6,loveslabourslost,1594\npricket,6,loveslabourslost,1594\nnew,6,loveslabourslost,1594\nlead,6,loveslabourslost,1594\nfat,6,loveslabourslost,1594\nthrough,6,loveslabourslost,1594\nnay,6,loveslabourslost,1594\nPeace,6,loveslabourslost,1594\nmajesty,6,loveslabourslost,1594\nmortal,6,loveslabourslost,1594\nmile,6,loveslabourslost,1594\nnor,6,loveslabourslost,1594\nmind,6,loveslabourslost,1594\nbecause,6,loveslabourslost,1594\nAlisander,6,loveslabourslost,1594\ntwelvemonth,6,loveslabourslost,1594\nwin,6,loveslabourslost,1594\nheavy,6,loveslabourslost,1594\nShall,6,loveslabourslost,1594\nlived,6,loveslabourslost,1594\nkiss,6,loveslabourslost,1594\ngentleman,6,loveslabourslost,1594\ntalk,6,loveslabourslost,1594\nshoot,6,loveslabourslost,1594\npardon,6,loveslabourslost,1594\nhonest,6,loveslabourslost,1594\ntroth,6,loveslabourslost,1594\nTrue,6,loveslabourslost,1594\nlovers,6,loveslabourslost,1594\nhither,6,loveslabourslost,1594\nsent,6,loveslabourslost,1594\npurpose,6,loveslabourslost,1594\nNothing,6,loveslabourslost,1594\nleave,6,loveslabourslost,1594\nmistress,7,loveslabourslost,1594\nhorse,7,loveslabourslost,1594\npeace,7,loveslabourslost,1594\ntears,7,loveslabourslost,1594\nlies,7,loveslabourslost,1594\nperjured,7,loveslabourslost,1594\ndeath,7,loveslabourslost,1594\nagainst,7,loveslabourslost,1594\nsuit,7,loveslabourslost,1594\nworth,7,loveslabourslost,1594\nking's,7,loveslabourslost,1594\nloose,7,loveslabourslost,1594\nhonour,7,loveslabourslost,1594\nswore,7,loveslabourslost,1594\ncuckoo,7,loveslabourslost,1594\nmirth,7,loveslabourslost,1594\nsense,7,loveslabourslost,1594\nelse,7,loveslabourslost,1594\nsick,7,loveslabourslost,1594\neach,7,loveslabourslost,1594\nside,7,loveslabourslost,1594\nmelancholy,7,loveslabourslost,1594\nitself,7,loveslabourslost,1594\nchallenge,7,loveslabourslost,1594\nlearned,7,loveslabourslost,1594\nquite,7,loveslabourslost,1594\ndeer,7,loveslabourslost,1594\nloves,7,loveslabourslost,1594\nYet,7,loveslabourslost,1594\nhard,7,loveslabourslost,1594\npark,7,loveslabourslost,1594\nthings,7,loveslabourslost,1594\nere,7,loveslabourslost,1594\nfire,7,loveslabourslost,1594\nWere,7,loveslabourslost,1594\noff,7,loveslabourslost,1594\nsays,7,loveslabourslost,1594\nThus,7,loveslabourslost,1594\nground,7,loveslabourslost,1594\nrich,7,loveslabourslost,1594\nhour,7,loveslabourslost,1594\nargument,7,loveslabourslost,1594\nfavours,7,loveslabourslost,1594\nconverse,7,loveslabourslost,1594\ncourtesy,7,loveslabourslost,1594\nheavenly,7,loveslabourslost,1594\nhouse,7,loveslabourslost,1594\nbrow,7,loveslabourslost,1594\nwrite,7,loveslabourslost,1594\nliege,7,loveslabourslost,1594\ndark,7,loveslabourslost,1594\ncertain,7,loveslabourslost,1594\nwenches,7,loveslabourslost,1594\nspirit,7,loveslabourslost,1594\ndays,8,loveslabourslost,1594\nrather,8,loveslabourslost,1594\nblack,8,loveslabourslost,1594\nAquitaine,8,loveslabourslost,1594\nThese,8,loveslabourslost,1594\nborn,8,loveslabourslost,1594\nrhyme,8,loveslabourslost,1594\nsun,8,loveslabourslost,1594\nOne,8,loveslabourslost,1594\nGood,8,loveslabourslost,1594\ngone,8,loveslabourslost,1594\na',8,loveslabourslost,1594\nbreath,8,loveslabourslost,1594\nconfess,8,loveslabourslost,1594\nfavour,8,loveslabourslost,1594\nthat's,8,loveslabourslost,1594\nwelcome,8,loveslabourslost,1594\nfoul,8,loveslabourslost,1594\npage,8,loveslabourslost,1594\npresent,8,loveslabourslost,1594\napt,8,loveslabourslost,1594\nfoot,8,loveslabourslost,1594\nchange,8,loveslabourslost,1594\nMadam,8,loveslabourslost,1594\nindeed,8,loveslabourslost,1594\nnote,8,loveslabourslost,1594\ntender,8,loveslabourslost,1594\nLove,8,loveslabourslost,1594\nmyself,8,loveslabourslost,1594\nonce,8,loveslabourslost,1594\nthine,8,loveslabourslost,1594\nsake,8,loveslabourslost,1594\nstand,8,loveslabourslost,1594\nloving,8,loveslabourslost,1594\nheard,8,loveslabourslost,1594\narms,8,loveslabourslost,1594\nserve,8,loveslabourslost,1594\ntaken,8,loveslabourslost,1594\nremuneration,8,loveslabourslost,1594\ntill,8,loveslabourslost,1594\nthousand,8,loveslabourslost,1594\nshort,8,loveslabourslost,1594\nthank,8,loveslabourslost,1594\nadieu,8,loveslabourslost,1594\nseek,8,loveslabourslost,1594\npoor,8,loveslabourslost,1594\nlie,8,loveslabourslost,1594\nshalt,8,loveslabourslost,1594\npower,8,loveslabourslost,1594\noaths,8,loveslabourslost,1594\ndie,8,loveslabourslost,1594\no'er,9,loveslabourslost,1594\nsoul,9,loveslabourslost,1594\nsore,9,loveslabourslost,1594\nLABOURS,9,loveslabourslost,1594\nmerry,9,loveslabourslost,1594\nAside,9,loveslabourslost,1594\nwithin,9,loveslabourslost,1594\nturn,9,loveslabourslost,1594\ngoose,9,loveslabourslost,1594\nwise,9,loveslabourslost,1594\nworld's,9,loveslabourslost,1594\nrest,9,loveslabourslost,1594\nbook,9,loveslabourslost,1594\nmeasure,9,loveslabourslost,1594\nenter,9,loveslabourslost,1594\nnight,9,loveslabourslost,1594\nJaquenetta,9,loveslabourslost,1594\nvouchsafe,9,loveslabourslost,1594\nmanner,9,loveslabourslost,1594\ndone,9,loveslabourslost,1594\no',9,loveslabourslost,1594\nill,9,loveslabourslost,1594\nform,9,loveslabourslost,1594\nhast,9,loveslabourslost,1594\nThan,9,loveslabourslost,1594\nright,9,loveslabourslost,1594\nACT,9,loveslabourslost,1594\nShe,9,loveslabourslost,1594\nyours,9,loveslabourslost,1594\nswain,9,loveslabourslost,1594\nfive,9,loveslabourslost,1594\nonly,9,loveslabourslost,1594\nbeseech,9,loveslabourslost,1594\nfind,9,loveslabourslost,1594\nvow,9,loveslabourslost,1594\nDumain,9,loveslabourslost,1594\nDid,9,loveslabourslost,1594\nmight,9,loveslabourslost,1594\nNay,10,loveslabourslost,1594\nWill,10,loveslabourslost,1594\nLOST,10,loveslabourslost,1594\ntruth,10,loveslabourslost,1594\nsaw,10,loveslabourslost,1594\nyears,10,loveslabourslost,1594\nfull,10,loveslabourslost,1594\nfools,10,loveslabourslost,1594\nNor,10,loveslabourslost,1594\nread,10,loveslabourslost,1594\nFrance,10,loveslabourslost,1594\nfear,10,loveslabourslost,1594\nHere,10,loveslabourslost,1594\nwish,10,loveslabourslost,1594\npretty,10,loveslabourslost,1594\nwits,10,loveslabourslost,1594\nhit,10,loveslabourslost,1594\ndown,10,loveslabourslost,1594\nLOVE'S,10,loveslabourslost,1594\nwench,10,loveslabourslost,1594\nmoon,10,loveslabourslost,1594\nHercules,10,loveslabourslost,1594\nthough,10,loveslabourslost,1594\ngentle,10,loveslabourslost,1594\nFrom,10,loveslabourslost,1594\nmark,10,loveslabourslost,1594\nbefore,10,loveslabourslost,1594\nthing,10,loveslabourslost,1594\nbase,10,loveslabourslost,1594\nhope,10,loveslabourslost,1594\nArmado,10,loveslabourslost,1594\nRosaline,10,loveslabourslost,1594\nseen,10,loveslabourslost,1594\nGreat,10,loveslabourslost,1594\nSCENE,10,loveslabourslost,1594\nFair,10,loveslabourslost,1594\nvain,11,loveslabourslost,1594\ndance,11,loveslabourslost,1594\ncall,11,loveslabourslost,1594\nbetter,11,loveslabourslost,1594\nmean,11,loveslabourslost,1594\nAn,11,loveslabourslost,1594\nstay,11,loveslabourslost,1594\nquick,11,loveslabourslost,1594\nsport,11,loveslabourslost,1594\n'tis,11,loveslabourslost,1594\nyet,11,loveslabourslost,1594\nlong,11,loveslabourslost,1594\nany,11,loveslabourslost,1594\nMost,11,loveslabourslost,1594\nfour,11,loveslabourslost,1594\nplain,11,loveslabourslost,1594\nHave,11,loveslabourslost,1594\nfaith,11,loveslabourslost,1594\nnone,11,loveslabourslost,1594\nTherefore,11,loveslabourslost,1594\nchild,11,loveslabourslost,1594\nmany,11,loveslabourslost,1594\nLongaville,11,loveslabourslost,1594\nreason,11,loveslabourslost,1594\nLet,11,loveslabourslost,1594\nswear,11,loveslabourslost,1594\near,11,loveslabourslost,1594\nmakes,11,loveslabourslost,1594\nladies,11,loveslabourslost,1594\nbeauty,11,loveslabourslost,1594\nBoyet,12,loveslabourslost,1594\njest,12,loveslabourslost,1594\nCome,12,loveslabourslost,1594\nhead,12,loveslabourslost,1594\npaper,12,loveslabourslost,1594\ncame,12,loveslabourslost,1594\nWho,12,loveslabourslost,1594\nsworn,12,loveslabourslost,1594\nOur,12,loveslabourslost,1594\nwhite,12,loveslabourslost,1594\nDo,12,loveslabourslost,1594\nplay,12,loveslabourslost,1594\nthose,12,loveslabourslost,1594\nNavarre,12,loveslabourslost,1594\nhalf,12,loveslabourslost,1594\nAll,12,loveslabourslost,1594\nwho,12,loveslabourslost,1594\nthink,12,loveslabourslost,1594\nbreak,12,loveslabourslost,1594\nplease,12,loveslabourslost,1594\nSweet,12,loveslabourslost,1594\nfast,12,loveslabourslost,1594\nwhom,12,loveslabourslost,1594\ntwo,12,loveslabourslost,1594\nWhere,12,loveslabourslost,1594\nwithout,12,loveslabourslost,1594\nWorthies,12,loveslabourslost,1594\nshame,12,loveslabourslost,1594\nheaven,13,loveslabourslost,1594\nboy,13,loveslabourslost,1594\nbest,13,loveslabourslost,1594\ndear,13,loveslabourslost,1594\nmade,13,loveslabourslost,1594\nSome,13,loveslabourslost,1594\nway,13,loveslabourslost,1594\nCostard,13,loveslabourslost,1594\nfirst,13,loveslabourslost,1594\nbeing,13,loveslabourslost,1594\nfather,13,loveslabourslost,1594\nnothing,14,loveslabourslost,1594\nboth,14,loveslabourslost,1594\nblood,14,loveslabourslost,1594\nOr,14,loveslabourslost,1594\npart,14,loveslabourslost,1594\nend,14,loveslabourslost,1594\never,14,loveslabourslost,1594\nhold,14,loveslabourslost,1594\nJudas,14,loveslabourslost,1594\nwoman,14,loveslabourslost,1594\nwords,15,loveslabourslost,1594\ntell,15,loveslabourslost,1594\ntherefore,15,loveslabourslost,1594\nkeep,15,loveslabourslost,1594\nart,15,loveslabourslost,1594\nfool,15,loveslabourslost,1594\nvery,15,loveslabourslost,1594\nsame,15,loveslabourslost,1594\ncourt,15,loveslabourslost,1594\noath,15,loveslabourslost,1594\nprincess,15,loveslabourslost,1594\nl'envoy,16,loveslabourslost,1594\nlook,16,loveslabourslost,1594\nspeak,16,loveslabourslost,1594\nlittle,16,loveslabourslost,1594\nlords,16,loveslabourslost,1594\ncomes,16,loveslabourslost,1594\nthus,16,loveslabourslost,1594\ncannot,16,loveslabourslost,1594\nExit,16,loveslabourslost,1594\nother,16,loveslabourslost,1594\nname,17,loveslabourslost,1594\nHe,17,loveslabourslost,1594\nIs,17,loveslabourslost,1594\nprove,17,loveslabourslost,1594\nWhich,17,loveslabourslost,1594\nExeunt,17,loveslabourslost,1594\nbeen,17,loveslabourslost,1594\nReads,17,loveslabourslost,1594\nforsworn,17,loveslabourslost,1594\nYour,17,loveslabourslost,1594\nagain,17,loveslabourslost,1594\nwhy,17,loveslabourslost,1594\ntime,17,loveslabourslost,1594\nHector,17,loveslabourslost,1594\nWith,18,loveslabourslost,1594\nput,18,loveslabourslost,1594\ngo,18,loveslabourslost,1594\nhand,18,loveslabourslost,1594\nshow,18,loveslabourslost,1594\nThou,18,loveslabourslost,1594\ntake,18,loveslabourslost,1594\nmadam,18,loveslabourslost,1594\nhad,19,loveslabourslost,1594\nSo,19,loveslabourslost,1594\nstill,19,loveslabourslost,1594\nNow,20,loveslabourslost,1594\nNot,20,loveslabourslost,1594\nstudy,20,loveslabourslost,1594\nSir,20,loveslabourslost,1594\nThey,20,loveslabourslost,1594\nWell,20,loveslabourslost,1594\nold,20,loveslabourslost,1594\ngreat,20,loveslabourslost,1594\nmaster,20,loveslabourslost,1594\nJAQUENETTA,20,loveslabourslost,1594\nupon,21,loveslabourslost,1594\nworld,21,loveslabourslost,1594\nhear,21,loveslabourslost,1594\nWhy,21,loveslabourslost,1594\nAy,21,loveslabourslost,1594\ntongue,21,loveslabourslost,1594\nPompey,21,loveslabourslost,1594\nup,21,loveslabourslost,1594\nwhere,21,loveslabourslost,1594\nmen,21,loveslabourslost,1594\nevery,22,loveslabourslost,1594\nDULL,22,loveslabourslost,1594\nLord,22,loveslabourslost,1594\nThen,22,loveslabourslost,1594\ntrue,22,loveslabourslost,1594\nMy,23,loveslabourslost,1594\nIn,23,loveslabourslost,1594\nshould,23,loveslabourslost,1594\nmine,23,loveslabourslost,1594\nown,23,loveslabourslost,1594\nthan,24,loveslabourslost,1594\nnever,24,loveslabourslost,1594\nOf,24,loveslabourslost,1594\nWe,24,loveslabourslost,1594\nletter,24,loveslabourslost,1594\nBiron,25,loveslabourslost,1594\naway,25,loveslabourslost,1594\nIt,25,loveslabourslost,1594\nHow,25,loveslabourslost,1594\nNo,26,loveslabourslost,1594\nGod,26,loveslabourslost,1594\nhow,26,loveslabourslost,1594\nSIR,26,loveslabourslost,1594\nface,26,loveslabourslost,1594\nday,26,loveslabourslost,1594\nNATHANIEL,26,loveslabourslost,1594\nWhen,26,loveslabourslost,1594\nmust,27,loveslabourslost,1594\nlight,27,loveslabourslost,1594\nthere,27,loveslabourslost,1594\npraise,27,loveslabourslost,1594\ngive,28,loveslabourslost,1594\nlet,28,loveslabourslost,1594\ncan,29,loveslabourslost,1594\ngrace,29,loveslabourslost,1594\nMARIA,29,loveslabourslost,1594\nEnter,29,loveslabourslost,1594\nI'll,29,loveslabourslost,1594\nking,29,loveslabourslost,1594\nnow,30,loveslabourslost,1594\nsuch,31,loveslabourslost,1594\nBy,31,loveslabourslost,1594\ncome,31,loveslabourslost,1594\nlady,31,loveslabourslost,1594\nis,287,loveslabourslost,1594\nAs,32,loveslabourslost,1594\neyes,32,loveslabourslost,1594\nKATHARINE,32,loveslabourslost,1594\nIf,33,loveslabourslost,1594\nlord,33,loveslabourslost,1594\nhath,33,loveslabourslost,1594\nThis,33,loveslabourslost,1594\nword,33,loveslabourslost,1594\nwit,34,loveslabourslost,1594\neye,35,loveslabourslost,1594\nheart,35,loveslabourslost,1594\nfrom,35,loveslabourslost,1594\nwhen,35,loveslabourslost,1594\n',36,loveslabourslost,1594\nthese,36,loveslabourslost,1594\nshe,37,loveslabourslost,1594\nsee,37,loveslabourslost,1594\nFor,37,loveslabourslost,1594\nus,37,loveslabourslost,1594\nmake,37,loveslabourslost,1594\nmuch,38,loveslabourslost,1594\nhere,38,loveslabourslost,1594\nsome,38,loveslabourslost,1594\ndoth,38,loveslabourslost,1594\nout,38,loveslabourslost,1594\nthem,39,loveslabourslost,1594\nmore,39,loveslabourslost,1594\nlike,41,loveslabourslost,1594\nmost,41,loveslabourslost,1594\nyou,297,loveslabourslost,1594\nknow,42,loveslabourslost,1594\nsay,43,loveslabourslost,1594\nwell,43,loveslabourslost,1594\nmay,43,loveslabourslost,1594\nYou,44,loveslabourslost,1594\ndid,44,loveslabourslost,1594\nWhat,44,loveslabourslost,1594\nfair,45,loveslabourslost,1594\nman,46,loveslabourslost,1594\nin,302,loveslabourslost,1594\ntheir,47,loveslabourslost,1594\nthree,47,loveslabourslost,1594\ngood,48,loveslabourslost,1594\nif,48,loveslabourslost,1594\nwhich,49,loveslabourslost,1594\nLONGAVILLE,49,loveslabourslost,1594\nwere,49,loveslabourslost,1594\nour,50,loveslabourslost,1594\nthen,51,loveslabourslost,1594\nwould,51,loveslabourslost,1594\nor,52,loveslabourslost,1594\nBut,52,loveslabourslost,1594\nam,54,loveslabourslost,1594\nhim,55,loveslabourslost,1594\nthee,56,loveslabourslost,1594\nat,56,loveslabourslost,1594\nan,56,loveslabourslost,1594\nsweet,57,loveslabourslost,1594\ntoo,57,loveslabourslost,1594\nThat,60,loveslabourslost,1594\nHOLOFERNES,61,loveslabourslost,1594\nthey,61,loveslabourslost,1594\nDUMAIN,63,loveslabourslost,1594\nno,63,loveslabourslost,1594\nwhat,63,loveslabourslost,1594\none,65,loveslabourslost,1594\nTo,70,loveslabourslost,1594\nthy,70,loveslabourslost,1594\nO,71,loveslabourslost,1594\nall,73,loveslabourslost,1594\nwas,73,loveslabourslost,1594\nthou,75,loveslabourslost,1594\non,75,loveslabourslost,1594\nwe,76,loveslabourslost,1594\nA,77,loveslabourslost,1594\ndo,81,loveslabourslost,1594\nROSALINE,83,loveslabourslost,1594\nshall,83,loveslabourslost,1594\nsir,84,loveslabourslost,1594\nher,89,loveslabourslost,1594\nby,89,loveslabourslost,1594\nBOYET,90,loveslabourslost,1594\nMOTH,93,loveslabourslost,1594\nlove,95,loveslabourslost,1594\nCOSTARD,100,loveslabourslost,1594\nare,101,loveslabourslost,1594\nhe,103,loveslabourslost,1594\nThe,105,loveslabourslost,1594\nbut,110,loveslabourslost,1594\nADRIANO,111,loveslabourslost,1594\nDE,111,loveslabourslost,1594\nARMADO,111,loveslabourslost,1594\nDON,111,loveslabourslost,1594\nPRINCESS,112,loveslabourslost,1594\nhave,115,loveslabourslost,1594\nas,116,loveslabourslost,1594\nthis,124,loveslabourslost,1594\nFERDINAND,127,loveslabourslost,1594\nso,128,loveslabourslost,1594\nbe,141,loveslabourslost,1594\nwith,147,loveslabourslost,1594\nyour,147,loveslabourslost,1594\nme,148,loveslabourslost,1594\nto,404,loveslabourslost,1594\nhis,149,loveslabourslost,1594\nof,416,loveslabourslost,1594\nAnd,162,loveslabourslost,1594\na,420,loveslabourslost,1594\nwill,166,loveslabourslost,1594\nand,424,loveslabourslost,1594\nBIRON,169,loveslabourslost,1594\nnot,196,loveslabourslost,1594\nfor,199,loveslabourslost,1594\nit,209,loveslabourslost,1594\nmy,211,loveslabourslost,1594\nthat,223,loveslabourslost,1594\nI,494,loveslabourslost,1594\nthe,753,loveslabourslost,1594\nbrave,1,merchantofvenice,1596\nintermission,1,merchantofvenice,1596\nreligion,1,merchantofvenice,1596\ncripple,1,merchantofvenice,1596\ngeneration,1,merchantofvenice,1596\njet,1,merchantofvenice,1596\ngrandam,1,merchantofvenice,1596\nimpugn,1,merchantofvenice,1596\ntroubled,1,merchantofvenice,1596\nvessel's,1,merchantofvenice,1596\nregard,1,merchantofvenice,1596\nvillany,1,merchantofvenice,1596\nMislike,1,merchantofvenice,1596\nasses,1,merchantofvenice,1596\nsped,1,merchantofvenice,1596\nwillow,1,merchantofvenice,1596\nrelief,1,merchantofvenice,1596\nneighing,1,merchantofvenice,1596\npennyworth,1,merchantofvenice,1596\npiers,1,merchantofvenice,1596\nguard,1,merchantofvenice,1596\nriveted,1,merchantofvenice,1596\n'and,1,merchantofvenice,1596\nProve,1,merchantofvenice,1596\nhappier,1,merchantofvenice,1596\npeasantry,1,merchantofvenice,1596\nforfeitures,1,merchantofvenice,1596\nconfused,1,merchantofvenice,1596\nsuffer,1,merchantofvenice,1596\ncutting,1,merchantofvenice,1596\naddress'd,1,merchantofvenice,1596\nsmiles,1,merchantofvenice,1596\ntaking,1,merchantofvenice,1596\nports,1,merchantofvenice,1596\nred,1,merchantofvenice,1596\ndays,1,merchantofvenice,1596\ncut'st,1,merchantofvenice,1596\nadvice,1,merchantofvenice,1596\ncureless,1,merchantofvenice,1596\nderived,1,merchantofvenice,1596\ndoubly,1,merchantofvenice,1596\nfathers,1,merchantofvenice,1596\nfor't,1,merchantofvenice,1596\ntops,1,merchantofvenice,1596\ncountry,1,merchantofvenice,1596\nspeech,1,merchantofvenice,1596\nviands,1,merchantofvenice,1596\npageants,1,merchantofvenice,1596\nraw,1,merchantofvenice,1596\nprophet,1,merchantofvenice,1596\nwish'd,1,merchantofvenice,1596\npublican,1,merchantofvenice,1596\nlaughable,1,merchantofvenice,1596\nplanted,1,merchantofvenice,1596\nrat,1,merchantofvenice,1596\nlawyer's,1,merchantofvenice,1596\npossible,1,merchantofvenice,1596\nfollowing,1,merchantofvenice,1596\ntreasure,1,merchantofvenice,1596\nquietness,1,merchantofvenice,1596\nknell,1,merchantofvenice,1596\nneighbours,1,merchantofvenice,1596\nwoman's,1,merchantofvenice,1596\nbleared,1,merchantofvenice,1596\nBarrabas,1,merchantofvenice,1596\nexcrement,1,merchantofvenice,1596\nNew,1,merchantofvenice,1596\ncapering,1,merchantofvenice,1596\nshadows,1,merchantofvenice,1596\nperuse,1,merchantofvenice,1596\nfollies,1,merchantofvenice,1596\no'erlook'd,1,merchantofvenice,1596\ndine,1,merchantofvenice,1596\nadvantage,1,merchantofvenice,1596\nhonours,1,merchantofvenice,1596\nran,1,merchantofvenice,1596\npeace,1,merchantofvenice,1596\nvillain's,1,merchantofvenice,1596\nlawful,1,merchantofvenice,1596\nbroth,1,merchantofvenice,1596\nlower,1,merchantofvenice,1596\n'Confess',1,merchantofvenice,1596\n'away,1,merchantofvenice,1596\nzeal,1,merchantofvenice,1596\nbones,1,merchantofvenice,1596\npreparation,1,merchantofvenice,1596\nwren,1,merchantofvenice,1596\noffended,1,merchantofvenice,1596\nbonds,1,merchantofvenice,1596\nshoulders,1,merchantofvenice,1596\nrob,1,merchantofvenice,1596\nrecant,1,merchantofvenice,1596\ninterpreter,1,merchantofvenice,1596\nsteals,1,merchantofvenice,1596\nWilt,1,merchantofvenice,1596\nwiving,1,merchantofvenice,1596\nglean'd,1,merchantofvenice,1596\nepitaph,1,merchantofvenice,1596\nboys,1,merchantofvenice,1596\npainter,1,merchantofvenice,1596\nagitation,1,merchantofvenice,1596\njot,1,merchantofvenice,1596\nSolyman,1,merchantofvenice,1596\nheld,1,merchantofvenice,1596\nfangs,1,merchantofvenice,1596\nVenus',1,merchantofvenice,1596\nmoiety,1,merchantofvenice,1596\nalien,1,merchantofvenice,1596\nlaughter,1,merchantofvenice,1596\nwarning,1,merchantofvenice,1596\ndish,1,merchantofvenice,1596\nsingle,1,merchantofvenice,1596\nMontferrat,1,merchantofvenice,1596\nLaban's,1,merchantofvenice,1596\nthrostle,1,merchantofvenice,1596\ninserted,1,merchantofvenice,1596\nwrites,1,merchantofvenice,1596\nmesh,1,merchantofvenice,1596\nHanging,1,merchantofvenice,1596\nclothes,1,merchantofvenice,1596\neasier,1,merchantofvenice,1596\nMarquis,1,merchantofvenice,1596\nhers,1,merchantofvenice,1596\nuphold,1,merchantofvenice,1596\nunreasonable,1,merchantofvenice,1596\nherd,1,merchantofvenice,1596\nmere,1,merchantofvenice,1596\ndecay,1,merchantofvenice,1596\nrepents,1,merchantofvenice,1596\nBlack,1,merchantofvenice,1596\nbraver,1,merchantofvenice,1596\nchest,1,merchantofvenice,1596\nbesmear,1,merchantofvenice,1596\nsighs,1,merchantofvenice,1596\nNeapolitan,1,merchantofvenice,1596\ndrum,1,merchantofvenice,1596\nlearn'd,1,merchantofvenice,1596\ncottages,1,merchantofvenice,1596\nadversary,1,merchantofvenice,1596\nrib,1,merchantofvenice,1596\nlooked,1,merchantofvenice,1596\nPause,1,merchantofvenice,1596\nGarnish'd,1,merchantofvenice,1596\nsugar,1,merchantofvenice,1596\nmartlet,1,merchantofvenice,1596\nunforfeited,1,merchantofvenice,1596\nsayings,1,merchantofvenice,1596\nfrutify,1,merchantofvenice,1596\nfury,1,merchantofvenice,1596\ndrink,1,merchantofvenice,1596\nthroat,1,merchantofvenice,1596\nSisters,1,merchantofvenice,1596\ncharter,1,merchantofvenice,1596\npied,1,merchantofvenice,1596\nExceed,1,merchantofvenice,1596\nMedea,1,merchantofvenice,1596\nworms,1,merchantofvenice,1596\nprey,1,merchantofvenice,1596\nalighted,1,merchantofvenice,1596\nyonder,1,merchantofvenice,1596\ninnocence,1,merchantofvenice,1596\ndreaming,1,merchantofvenice,1596\nsolemnized,1,merchantofvenice,1596\nEndymion,1,merchantofvenice,1596\nprest,1,merchantofvenice,1596\nsonties,1,merchantofvenice,1596\nconceiving,1,merchantofvenice,1596\nsore,1,merchantofvenice,1596\nJacks,1,merchantofvenice,1596\nOracle,1,merchantofvenice,1596\ninspirations,1,merchantofvenice,1596\nkinder,1,merchantofvenice,1596\nworks,1,merchantofvenice,1596\njoys,1,merchantofvenice,1596\nWhom,1,merchantofvenice,1596\nscruple,1,merchantofvenice,1596\ninfuse,1,merchantofvenice,1596\nPERSONAE,1,merchantofvenice,1596\nOpening,1,merchantofvenice,1596\nContinent,1,merchantofvenice,1596\nboy's,1,merchantofvenice,1596\ndemand,1,merchantofvenice,1596\nspare,1,merchantofvenice,1596\nsaved,1,merchantofvenice,1596\ncast,1,merchantofvenice,1596\nmingled,1,merchantofvenice,1596\nNerissa's,1,merchantofvenice,1596\nearly,1,merchantofvenice,1596\ndroppeth,1,merchantofvenice,1596\nindirect,1,merchantofvenice,1596\npursue,1,merchantofvenice,1596\nstoops,1,merchantofvenice,1596\nstirring,1,merchantofvenice,1596\nbeneath,1,merchantofvenice,1596\nplague,1,merchantofvenice,1596\nshuddering,1,merchantofvenice,1596\nOver,1,merchantofvenice,1596\ndelivered,1,merchantofvenice,1596\nadvantages,1,merchantofvenice,1596\nstrength,1,merchantofvenice,1596\nchin,1,merchantofvenice,1596\nVIII,1,merchantofvenice,1596\norder'd,1,merchantofvenice,1596\npalates,1,merchantofvenice,1596\ngraces,1,merchantofvenice,1596\nForget,1,merchantofvenice,1596\nostents,1,merchantofvenice,1596\nseven,1,merchantofvenice,1596\nplies,1,merchantofvenice,1596\nbirth,1,merchantofvenice,1596\namazed,1,merchantofvenice,1596\nfeather,1,merchantofvenice,1596\nAfter,1,merchantofvenice,1596\njest,1,merchantofvenice,1596\nstock,1,merchantofvenice,1596\nreddest,1,merchantofvenice,1596\nsole,1,merchantofvenice,1596\nbeefs,1,merchantofvenice,1596\nsold,1,merchantofvenice,1596\nconfusion,1,merchantofvenice,1596\nwrung,1,merchantofvenice,1596\nYoung,1,merchantofvenice,1596\ngrieving,1,merchantofvenice,1596\nmastership,1,merchantofvenice,1596\nfulsome,1,merchantofvenice,1596\nbackward,1,merchantofvenice,1596\nlosers,1,merchantofvenice,1596\nline,1,merchantofvenice,1596\nfortunate,1,merchantofvenice,1596\nArgus,1,merchantofvenice,1596\nOLD,1,merchantofvenice,1596\ncircumstance,1,merchantofvenice,1596\nCold,1,merchantofvenice,1596\nopposed,1,merchantofvenice,1596\nlimp,1,merchantofvenice,1596\npilgrimage,1,merchantofvenice,1596\noutstare,1,merchantofvenice,1596\ndram,1,merchantofvenice,1596\nboards,1,merchantofvenice,1596\n'cover',1,merchantofvenice,1596\nenthroned,1,merchantofvenice,1596\nsnore,1,merchantofvenice,1596\nobdurate,1,merchantofvenice,1596\nsubjects,1,merchantofvenice,1596\nbudge,1,merchantofvenice,1596\ndrew,1,merchantofvenice,1596\nFled,1,merchantofvenice,1596\nworthier,1,merchantofvenice,1596\ncontrive,1,merchantofvenice,1596\nexclaim,1,merchantofvenice,1596\nsoften,1,merchantofvenice,1596\nshadow's,1,merchantofvenice,1596\npines,1,merchantofvenice,1596\nshadow'd,1,merchantofvenice,1596\nuntread,1,merchantofvenice,1596\nhanging,1,merchantofvenice,1596\nhowso'er,1,merchantofvenice,1596\ncobwebs,1,merchantofvenice,1596\nhealed,1,merchantofvenice,1596\nrites,1,merchantofvenice,1596\nlikeness,1,merchantofvenice,1596\nenacted,1,merchantofvenice,1596\npillar,1,merchantofvenice,1596\nblessed,1,merchantofvenice,1596\nabode,1,merchantofvenice,1596\nDardanian,1,merchantofvenice,1596\nvisit,1,merchantofvenice,1596\ninhuman,1,merchantofvenice,1596\nwait,1,merchantofvenice,1596\ndrones,1,merchantofvenice,1596\nkin,1,merchantofvenice,1596\npaltry,1,merchantofvenice,1596\nCupid,1,merchantofvenice,1596\nvisitation,1,merchantofvenice,1596\nChance,1,merchantofvenice,1596\nadventuring,1,merchantofvenice,1596\nGentle,1,merchantofvenice,1596\nsinful,1,merchantofvenice,1596\ndiscovery,1,merchantofvenice,1596\nowners,1,merchantofvenice,1596\nocean,1,merchantofvenice,1596\noutface,1,merchantofvenice,1596\nconceits,1,merchantofvenice,1596\nNearest,1,merchantofvenice,1596\nweaker,1,merchantofvenice,1596\nhereafter,1,merchantofvenice,1596\nslightly,1,merchantofvenice,1596\nwaft,1,merchantofvenice,1596\nmonkeys,1,merchantofvenice,1596\nflatly,1,merchantofvenice,1596\nthroned,1,merchantofvenice,1596\n'honest,1,merchantofvenice,1596\nwilderness,1,merchantofvenice,1596\nsums,1,merchantofvenice,1596\nmincing,1,merchantofvenice,1596\nGet,1,merchantofvenice,1596\nfaithfully,1,merchantofvenice,1596\nconceive,1,merchantofvenice,1596\ntalker,1,merchantofvenice,1596\ncomments,1,merchantofvenice,1596\nwarrant,1,merchantofvenice,1596\nPhoebus',1,merchantofvenice,1596\ntrebled,1,merchantofvenice,1596\nimpossible,1,merchantofvenice,1596\ndeceased,1,merchantofvenice,1596\npaying,1,merchantofvenice,1596\npenance,1,merchantofvenice,1596\npossessor,1,merchantofvenice,1596\nObscures,1,merchantofvenice,1596\nwearer,1,merchantofvenice,1596\nwall,1,merchantofvenice,1596\nconstitution,1,merchantofvenice,1596\nvice,1,merchantofvenice,1596\nvirtuous,1,merchantofvenice,1596\ncoals,1,merchantofvenice,1596\nPawn'd,1,merchantofvenice,1596\nwake,1,merchantofvenice,1596\nDeserved,1,merchantofvenice,1596\nmending,1,merchantofvenice,1596\nslaughter,1,merchantofvenice,1596\nchiefest,1,merchantofvenice,1596\n'twas,1,merchantofvenice,1596\nwedding,1,merchantofvenice,1596\npeevish,1,merchantofvenice,1596\nweather'd,1,merchantofvenice,1596\ndisabled,1,merchantofvenice,1596\nscorn,1,merchantofvenice,1596\nlove's,1,merchantofvenice,1596\ndeliver,1,merchantofvenice,1596\nembrace,1,merchantofvenice,1596\ncradle,1,merchantofvenice,1596\nearnestly,1,merchantofvenice,1596\nbranches,1,merchantofvenice,1596\nhearsed,1,merchantofvenice,1596\nsteps,1,merchantofvenice,1596\n'Shylock,1,merchantofvenice,1596\ngaberdine,1,merchantofvenice,1596\nnourished,1,merchantofvenice,1596\n'a,1,merchantofvenice,1596\nfollower,1,merchantofvenice,1596\nraised,1,merchantofvenice,1596\nmantle,1,merchantofvenice,1596\nfollowed,1,merchantofvenice,1596\nlawfully,1,merchantofvenice,1596\napparent,1,merchantofvenice,1596\n'I,1,merchantofvenice,1596\nSilence,1,merchantofvenice,1596\nusual,1,merchantofvenice,1596\ncozen,1,merchantofvenice,1596\nTheir,1,merchantofvenice,1596\nlivers,1,merchantofvenice,1596\n'scuse,1,merchantofvenice,1596\nforthwith,1,merchantofvenice,1596\nimpertinent,1,merchantofvenice,1596\nBuilds,1,merchantofvenice,1596\ncompetency,1,merchantofvenice,1596\nmultitudes,1,merchantofvenice,1596\nclerk's,1,merchantofvenice,1596\nbeloved,1,merchantofvenice,1596\ncommends,1,merchantofvenice,1596\nlevel,1,merchantofvenice,1596\ngroans,1,merchantofvenice,1596\nknapped,1,merchantofvenice,1596\nlambs,1,merchantofvenice,1596\nchildhood,1,merchantofvenice,1596\nfaults,1,merchantofvenice,1596\nDoctor,1,merchantofvenice,1596\nConsisteth,1,merchantofvenice,1596\nThanks,1,merchantofvenice,1596\nstuff,1,merchantofvenice,1596\nshallows,1,merchantofvenice,1596\nbecomes,1,merchantofvenice,1596\namiss,1,merchantofvenice,1596\nbaron,1,merchantofvenice,1596\npoverty,1,merchantofvenice,1596\npurchasing,1,merchantofvenice,1596\nwoolly,1,merchantofvenice,1596\nskipping,1,merchantofvenice,1596\nswelling,1,merchantofvenice,1596\ncoach,1,merchantofvenice,1596\nFrankfort,1,merchantofvenice,1596\noffence,1,merchantofvenice,1596\ntranect,1,merchantofvenice,1596\ntaught,1,merchantofvenice,1596\n'choose,1,merchantofvenice,1596\nfelt,1,merchantofvenice,1596\nwroth,1,merchantofvenice,1596\nfight,1,merchantofvenice,1596\nredeem,1,merchantofvenice,1596\nreceived,1,merchantofvenice,1596\nsquealing,1,merchantofvenice,1596\nshowed,1,merchantofvenice,1596\nFrance,1,merchantofvenice,1596\nlingering,1,merchantofvenice,1596\nsnow,1,merchantofvenice,1596\nportly,1,merchantofvenice,1596\nbrain,1,merchantofvenice,1596\nfawning,1,merchantofvenice,1596\nstickest,1,merchantofvenice,1596\nmonster,1,merchantofvenice,1596\ncousin's,1,merchantofvenice,1596\nmarring,1,merchantofvenice,1596\ngormandise,1,merchantofvenice,1596\nchased,1,merchantofvenice,1596\nCato's,1,merchantofvenice,1596\no'ertrip,1,merchantofvenice,1596\npalaces,1,merchantofvenice,1596\nunhallow'd,1,merchantofvenice,1596\nwive,1,merchantofvenice,1596\ntwelve,1,merchantofvenice,1596\nguarded,1,merchantofvenice,1596\nOfficers,1,merchantofvenice,1596\nwoollen,1,merchantofvenice,1596\nloathes,1,merchantofvenice,1596\nWhereof,1,merchantofvenice,1596\nfigure,1,merchantofvenice,1596\ncivil,1,merchantofvenice,1596\nreed,1,merchantofvenice,1596\nDestinies,1,merchantofvenice,1596\nplots,1,merchantofvenice,1596\nAloud,1,merchantofvenice,1596\nendeavours,1,merchantofvenice,1596\nvariable,1,merchantofvenice,1596\ndetain,1,merchantofvenice,1596\nenvious,1,merchantofvenice,1596\nloose,1,merchantofvenice,1596\nseeks,1,merchantofvenice,1596\ndearly,1,merchantofvenice,1596\nfruit,1,merchantofvenice,1596\ncivility,1,merchantofvenice,1596\nrelation,1,merchantofvenice,1596\ntraffickers,1,merchantofvenice,1596\nLeave,1,merchantofvenice,1596\nprinces,1,merchantofvenice,1596\ncrossing,1,merchantofvenice,1596\nspeechless,1,merchantofvenice,1596\nLichas,1,merchantofvenice,1596\nReport,1,merchantofvenice,1596\nsup,1,merchantofvenice,1596\nelder,1,merchantofvenice,1596\nconveniency,1,merchantofvenice,1596\nsinged,1,merchantofvenice,1596\nfearful,1,merchantofvenice,1596\nrein,1,merchantofvenice,1596\nfeel,1,merchantofvenice,1596\nrush,1,merchantofvenice,1596\nslavish,1,merchantofvenice,1596\ninfinite,1,merchantofvenice,1596\nhumbly,1,merchantofvenice,1596\ndesirest,1,merchantofvenice,1596\n'amen,1,merchantofvenice,1596\nbeaten,1,merchantofvenice,1596\ntemporal,1,merchantofvenice,1596\nmasters,1,merchantofvenice,1596\ncostly,1,merchantofvenice,1596\ncuckoo,1,merchantofvenice,1596\nErgo,1,merchantofvenice,1596\ncorrupt,1,merchantofvenice,1596\ntorturer,1,merchantofvenice,1596\nweather,1,merchantofvenice,1596\nmanna,1,merchantofvenice,1596\nspeaking,1,merchantofvenice,1596\nlion's,1,merchantofvenice,1596\nwishes,1,merchantofvenice,1596\nunbated,1,merchantofvenice,1596\nGifts,1,merchantofvenice,1596\nceremony,1,merchantofvenice,1596\napplause,1,merchantofvenice,1596\nSpits,1,merchantofvenice,1596\nFly,1,merchantofvenice,1596\nconveniently,1,merchantofvenice,1596\nkeenness,1,merchantofvenice,1596\nsoldier,1,merchantofvenice,1596\nshrine,1,merchantofvenice,1596\nLatin,1,merchantofvenice,1596\nturquoise,1,merchantofvenice,1596\ncuckold,1,merchantofvenice,1596\nwins,1,merchantofvenice,1596\nrend,1,merchantofvenice,1596\nvendible,1,merchantofvenice,1596\nCrying,1,merchantofvenice,1596\nrespective,1,merchantofvenice,1596\nlatter,1,merchantofvenice,1596\nwether,1,merchantofvenice,1596\nrent,1,merchantofvenice,1596\nexpressly,1,merchantofvenice,1596\nwant,1,merchantofvenice,1596\nGratiano's,1,merchantofvenice,1596\nMusicians,1,merchantofvenice,1596\nedge,1,merchantofvenice,1596\nharmless,1,merchantofvenice,1596\nFriend,1,merchantofvenice,1596\nsuperfluity,1,merchantofvenice,1596\npeize,1,merchantofvenice,1596\nsign'd,1,merchantofvenice,1596\nEnglishman,1,merchantofvenice,1596\nknow'st,1,merchantofvenice,1596\ngaged,1,merchantofvenice,1596\ngoose,1,merchantofvenice,1596\nrenew,1,merchantofvenice,1596\ntransformed,1,merchantofvenice,1596\nuncheck'd,1,merchantofvenice,1596\nexact'st,1,merchantofvenice,1596\nImmediately,1,merchantofvenice,1596\ndied,1,merchantofvenice,1596\ndirectly,1,merchantofvenice,1596\nSlubber,1,merchantofvenice,1596\nmurder,1,merchantofvenice,1596\nJanus,1,merchantofvenice,1596\nthrows,1,merchantofvenice,1596\ndispleasure,1,merchantofvenice,1596\nsense,1,merchantofvenice,1596\nindebted,1,merchantofvenice,1596\nwindow,1,merchantofvenice,1596\nambassador,1,merchantofvenice,1596\nsummon,1,merchantofvenice,1596\nbidding,1,merchantofvenice,1596\nwarm,1,merchantofvenice,1596\nshrive,1,merchantofvenice,1596\nharbour,1,merchantofvenice,1596\nmerely,1,merchantofvenice,1596\ncoast,1,merchantofvenice,1596\ndice,1,merchantofvenice,1596\nthreatenest,1,merchantofvenice,1596\nbreeding,1,merchantofvenice,1596\ncunning,1,merchantofvenice,1596\nsunny,1,merchantofvenice,1596\nrule,1,merchantofvenice,1596\nbone,1,merchantofvenice,1596\noffice,1,merchantofvenice,1596\nTurning,1,merchantofvenice,1596\ncasualty,1,merchantofvenice,1596\nsweating,1,merchantofvenice,1596\nobserve,1,merchantofvenice,1596\nbook,1,merchantofvenice,1596\nshedding,1,merchantofvenice,1596\nSupply,1,merchantofvenice,1596\nforgave,1,merchantofvenice,1596\nframed,1,merchantofvenice,1596\nparty,1,merchantofvenice,1596\nRepair,1,merchantofvenice,1596\ncolour,1,merchantofvenice,1596\nFollow,1,merchantofvenice,1596\nsceptre,1,merchantofvenice,1596\nDraw,1,merchantofvenice,1596\nfairest,1,merchantofvenice,1596\nnephew,1,merchantofvenice,1596\neach,1,merchantofvenice,1596\nbig,1,merchantofvenice,1596\nsenses,1,merchantofvenice,1596\nparti,1,merchantofvenice,1596\nwherefore,1,merchantofvenice,1596\nknowledge,1,merchantofvenice,1596\npreferr'd,1,merchantofvenice,1596\nrival,1,merchantofvenice,1596\ngrievous,1,merchantofvenice,1596\nJewess',1,merchantofvenice,1596\nSaxony's,1,merchantofvenice,1596\nheiress,1,merchantofvenice,1596\ncontrived,1,merchantofvenice,1596\nmerriment,1,merchantofvenice,1596\nkeys,1,merchantofvenice,1596\nslaves,1,merchantofvenice,1596\ncudgel,1,merchantofvenice,1596\nburning,1,merchantofvenice,1596\ngratify,1,merchantofvenice,1596\ndrown,1,merchantofvenice,1596\nunkind,1,merchantofvenice,1596\nenjoy'd,1,merchantofvenice,1596\nstrongly,1,merchantofvenice,1596\nmelancholy,1,merchantofvenice,1596\nHold,1,merchantofvenice,1596\nHagar's,1,merchantofvenice,1596\nseasoned,1,merchantofvenice,1596\nhat,1,merchantofvenice,1596\naboard,1,merchantofvenice,1596\ndrudge,1,merchantofvenice,1596\nbushels,1,merchantofvenice,1596\nWhat's,1,merchantofvenice,1596\nDobbin,1,merchantofvenice,1596\nsweeter,1,merchantofvenice,1596\nutter,1,merchantofvenice,1596\ndelivering,1,merchantofvenice,1596\nServitor,1,merchantofvenice,1596\nobtained,1,merchantofvenice,1596\nresemble,1,merchantofvenice,1596\nquiring,1,merchantofvenice,1596\nThisbe,1,merchantofvenice,1596\ninter'gatories,1,merchantofvenice,1596\nballs,1,merchantofvenice,1596\nperfection,1,merchantofvenice,1596\ncontroversy,1,merchantofvenice,1596\ninfection,1,merchantofvenice,1596\nshowing,1,merchantofvenice,1596\nstubborn,1,merchantofvenice,1596\ntonight,1,merchantofvenice,1596\nmistrust,1,merchantofvenice,1596\nquarrel,1,merchantofvenice,1596\ncompromised,1,merchantofvenice,1596\ninformed,1,merchantofvenice,1596\nchaste,1,merchantofvenice,1596\nHie,1,merchantofvenice,1596\nheresy,1,merchantofvenice,1596\nloathing,1,merchantofvenice,1596\napproaching,1,merchantofvenice,1596\nyouthful,1,merchantofvenice,1596\nbox,1,merchantofvenice,1596\nbow,1,merchantofvenice,1596\nloath,1,merchantofvenice,1596\nWhiles,1,merchantofvenice,1596\nknowing,1,merchantofvenice,1596\nreason'd,1,merchantofvenice,1596\ngovern,1,merchantofvenice,1596\nbeggar'd,1,merchantofvenice,1596\ncursed'st,1,merchantofvenice,1596\nLe,1,merchantofvenice,1596\nbehold'st,1,merchantofvenice,1596\nvoluntary,1,merchantofvenice,1596\nsmile,1,merchantofvenice,1596\nblent,1,merchantofvenice,1596\nflats,1,merchantofvenice,1596\nNature,1,merchantofvenice,1596\nsecretly,1,merchantofvenice,1596\nimagined,1,merchantofvenice,1596\nbay,1,merchantofvenice,1596\npays,1,merchantofvenice,1596\nfurthermore,1,merchantofvenice,1596\nlands,1,merchantofvenice,1596\nCharybdis,1,merchantofvenice,1596\nGiddy,1,merchantofvenice,1596\nproof,1,merchantofvenice,1596\nladyship,1,merchantofvenice,1596\nFalconbridge,1,merchantofvenice,1596\ntreble,1,merchantofvenice,1596\ngentleness,1,merchantofvenice,1596\npatines,1,merchantofvenice,1596\ndoves,1,merchantofvenice,1596\nriping,1,merchantofvenice,1596\ndimensions,1,merchantofvenice,1596\nAlbeit,1,merchantofvenice,1596\nPersian,1,merchantofvenice,1596\nPay,1,merchantofvenice,1596\nbeautiful,1,merchantofvenice,1596\nquaintly,1,merchantofvenice,1596\ndenied,1,merchantofvenice,1596\ncontending,1,merchantofvenice,1596\npen,1,merchantofvenice,1596\nreasoning,1,merchantofvenice,1596\nhouse's,1,merchantofvenice,1596\nOh,1,merchantofvenice,1596\nSibylla,1,merchantofvenice,1596\ninterior,1,merchantofvenice,1596\nhie,1,merchantofvenice,1596\nfinds,1,merchantofvenice,1596\nCornets,1,merchantofvenice,1596\nmotions,1,merchantofvenice,1596\nhabitation,1,merchantofvenice,1596\ntear,1,merchantofvenice,1596\nSomething,1,merchantofvenice,1596\nHa,1,merchantofvenice,1596\napprove,1,merchantofvenice,1596\nfatal,1,merchantofvenice,1596\nHo,1,merchantofvenice,1596\nmeant,1,merchantofvenice,1596\nFetching,1,merchantofvenice,1596\nIX,1,merchantofvenice,1596\nenchanted,1,merchantofvenice,1596\nunfurnish'd,1,merchantofvenice,1596\nneighbourly,1,merchantofvenice,1596\ngambols,1,merchantofvenice,1596\nquick,1,merchantofvenice,1596\ndigest,1,merchantofvenice,1596\ncuckolds,1,merchantofvenice,1596\nbraggart,1,merchantofvenice,1596\nEngaged,1,merchantofvenice,1596\ndespair,1,merchantofvenice,1596\nexhortation,1,merchantofvenice,1596\nLet's,1,merchantofvenice,1596\nNotwithstanding,1,merchantofvenice,1596\ncommendation,1,merchantofvenice,1596\nthoroughfares,1,merchantofvenice,1596\nTroilus,1,merchantofvenice,1596\ntemples,1,merchantofvenice,1596\nmatched,1,merchantofvenice,1596\nague,1,merchantofvenice,1596\nnice,1,merchantofvenice,1596\nvesture,1,merchantofvenice,1596\nVI,1,merchantofvenice,1596\nformerly,1,merchantofvenice,1596\nriseth,1,merchantofvenice,1596\nGold,1,merchantofvenice,1596\nimpenetrable,1,merchantofvenice,1596\nsnapper,1,merchantofvenice,1596\noutlive,1,merchantofvenice,1596\nattentive,1,merchantofvenice,1596\nchurches,1,merchantofvenice,1596\nbecame,1,merchantofvenice,1596\ntemple,1,merchantofvenice,1596\nbegot,1,merchantofvenice,1596\njaundice,1,merchantofvenice,1596\nobey,1,merchantofvenice,1596\nvalour's,1,merchantofvenice,1596\nAdieu,1,merchantofvenice,1596\noutcries,1,merchantofvenice,1596\nForgive,1,merchantofvenice,1596\nstrain'd,1,merchantofvenice,1596\nsought,1,merchantofvenice,1596\nmessages,1,merchantofvenice,1596\ndepending,1,merchantofvenice,1596\nworshipped,1,merchantofvenice,1596\nknowist,1,merchantofvenice,1596\nvaliant,1,merchantofvenice,1596\nbe'st,1,merchantofvenice,1596\ntossing,1,merchantofvenice,1596\nexhibit,1,merchantofvenice,1596\nFading,1,merchantofvenice,1596\nunhandled,1,merchantofvenice,1596\nproportion,1,merchantofvenice,1596\nicicles,1,merchantofvenice,1596\nbend,1,merchantofvenice,1596\nstray,1,merchantofvenice,1596\nurine,1,merchantofvenice,1596\ngrief,1,merchantofvenice,1596\nwhereby,1,merchantofvenice,1596\nsooner,1,merchantofvenice,1596\nrebel,1,merchantofvenice,1596\nfields,1,merchantofvenice,1596\nsuffer'd,1,merchantofvenice,1596\nThou'lt,1,merchantofvenice,1596\ncoffin,1,merchantofvenice,1596\nhymn,1,merchantofvenice,1596\nYourself,1,merchantofvenice,1596\nchildren,1,merchantofvenice,1596\nawaked,1,merchantofvenice,1596\nnotary's,1,merchantofvenice,1596\ntricks,1,merchantofvenice,1596\nmoreover,1,merchantofvenice,1596\ndote,1,merchantofvenice,1596\nwrecked,1,merchantofvenice,1596\nfurnished,1,merchantofvenice,1596\ndevised,1,merchantofvenice,1596\nweak,1,merchantofvenice,1596\nwedlock,1,merchantofvenice,1596\ntreasons,1,merchantofvenice,1596\nlivings,1,merchantofvenice,1596\nEntreat,1,merchantofvenice,1596\nBehold,1,merchantofvenice,1596\nSnail,1,merchantofvenice,1596\nsustain,1,merchantofvenice,1596\nLies,1,merchantofvenice,1596\nSpeak,1,merchantofvenice,1596\nunlock,1,merchantofvenice,1596\nPut,1,merchantofvenice,1596\njealous,1,merchantofvenice,1596\nAvenue,1,merchantofvenice,1596\nWaste,1,merchantofvenice,1596\nsepulchre,1,merchantofvenice,1596\nArabia,1,merchantofvenice,1596\nburghers,1,merchantofvenice,1596\ntempts,1,merchantofvenice,1596\nprating,1,merchantofvenice,1596\nChus,1,merchantofvenice,1596\na',1,merchantofvenice,1596\nserpent,1,merchantofvenice,1596\ngondola,1,merchantofvenice,1596\njewel,1,merchantofvenice,1596\nDidst,1,merchantofvenice,1596\ndespise,1,merchantofvenice,1596\ndrowning,1,merchantofvenice,1596\nestablished,1,merchantofvenice,1596\nfriendly,1,merchantofvenice,1596\ncurse,1,merchantofvenice,1596\nbadge,1,merchantofvenice,1596\nswift,1,merchantofvenice,1596\nlikest,1,merchantofvenice,1596\nvows,1,merchantofvenice,1596\nmasqued,1,merchantofvenice,1596\nAbove,1,merchantofvenice,1596\ngather'd,1,merchantofvenice,1596\nused,1,merchantofvenice,1596\nsurvey,1,merchantofvenice,1596\nMeet,1,merchantofvenice,1596\nmasques,1,merchantofvenice,1596\nprolixity,1,merchantofvenice,1596\npeople's,1,merchantofvenice,1596\ndivine,1,merchantofvenice,1596\njump,1,merchantofvenice,1596\nbeds,1,merchantofvenice,1596\nsmack,1,merchantofvenice,1596\nWhither,1,merchantofvenice,1596\nMidas,1,merchantofvenice,1596\ngrace's,1,merchantofvenice,1596\nvantage,1,merchantofvenice,1596\nfooting,1,merchantofvenice,1596\ngrandsire,1,merchantofvenice,1596\norderly,1,merchantofvenice,1596\nStolen,1,merchantofvenice,1596\nimmortal,1,merchantofvenice,1596\nlately,1,merchantofvenice,1596\ntrades,1,merchantofvenice,1596\nacceptance,1,merchantofvenice,1596\ncrowned,1,merchantofvenice,1596\nsearch'd,1,merchantofvenice,1596\nopens,1,merchantofvenice,1596\nbegin,1,merchantofvenice,1596\nquite,1,merchantofvenice,1596\npearls,1,merchantofvenice,1596\nenvy's,1,merchantofvenice,1596\ndogs,1,merchantofvenice,1596\nentertain,1,merchantofvenice,1596\nstorm,1,merchantofvenice,1596\ndeliverance,1,merchantofvenice,1596\nsolely,1,merchantofvenice,1596\npromised,1,merchantofvenice,1596\ninter'gatory,1,merchantofvenice,1596\nwretch,1,merchantofvenice,1596\nmood,1,merchantofvenice,1596\neloquence,1,merchantofvenice,1596\nunpractised,1,merchantofvenice,1596\naim,1,merchantofvenice,1596\nGoodly,1,merchantofvenice,1596\nMethought,1,merchantofvenice,1596\nkeeping,1,merchantofvenice,1596\nyea,1,merchantofvenice,1596\nbarely,1,merchantofvenice,1596\ndoit,1,merchantofvenice,1596\nexcellent,1,merchantofvenice,1596\nshrug,1,merchantofvenice,1596\nburial,1,merchantofvenice,1596\nSONG,1,merchantofvenice,1596\nfaster,1,merchantofvenice,1596\noddly,1,merchantofvenice,1596\nconsider,1,merchantofvenice,1596\ncurrent,1,merchantofvenice,1596\nrunaway,1,merchantofvenice,1596\nsheep,1,merchantofvenice,1596\nprevented,1,merchantofvenice,1596\nsafe,1,merchantofvenice,1596\ncolts,1,merchantofvenice,1596\nwreck,1,merchantofvenice,1596\nMaking,1,merchantofvenice,1596\nyes,1,merchantofvenice,1596\nrightful,1,merchantofvenice,1596\npraying,1,merchantofvenice,1596\nlegs,1,merchantofvenice,1596\nnotes,1,merchantofvenice,1596\nblesseth,1,merchantofvenice,1596\nPast,1,merchantofvenice,1596\nswearing,1,merchantofvenice,1596\nrails,1,merchantofvenice,1596\nstone,1,merchantofvenice,1596\nplays,1,merchantofvenice,1596\nunlocks,1,merchantofvenice,1596\ndeal,1,merchantofvenice,1596\nstony,1,merchantofvenice,1596\nautumn,1,merchantofvenice,1596\nRevenge,1,merchantofvenice,1596\ndepends,1,merchantofvenice,1596\ndignity,1,merchantofvenice,1596\ngild,1,merchantofvenice,1596\nlikely,1,merchantofvenice,1596\nlent,1,merchantofvenice,1596\nplayed,1,merchantofvenice,1596\nReturn,1,merchantofvenice,1596\nseeming,1,merchantofvenice,1596\nstain'd,1,merchantofvenice,1596\nenforce,1,merchantofvenice,1596\nedifice,1,merchantofvenice,1596\ntouch'd,1,merchantofvenice,1596\nunwillingly,1,merchantofvenice,1596\naccused,1,merchantofvenice,1596\nstole,1,merchantofvenice,1596\nsponge,1,merchantofvenice,1596\nSultan,1,merchantofvenice,1596\nRest,1,merchantofvenice,1596\ndemurely,1,merchantofvenice,1596\nburied,1,merchantofvenice,1596\nusurer,1,merchantofvenice,1596\nlends,1,merchantofvenice,1596\nquaint,1,merchantofvenice,1596\nenfold,1,merchantofvenice,1596\ncomforts,1,merchantofvenice,1596\nLeonardo,1,merchantofvenice,1596\nDirectly,1,merchantofvenice,1596\nshed,1,merchantofvenice,1596\nslips,1,merchantofvenice,1596\napproach,1,merchantofvenice,1596\nmanner,1,merchantofvenice,1596\nwench,1,merchantofvenice,1596\ndispleased,1,merchantofvenice,1596\ncrosses,1,merchantofvenice,1596\nhumours,1,merchantofvenice,1596\nSalanio,1,merchantofvenice,1596\nrouse,1,merchantofvenice,1596\ndried,1,merchantofvenice,1596\nprosper,1,merchantofvenice,1596\nidiot,1,merchantofvenice,1596\nunderprizing,1,merchantofvenice,1596\nattending,1,merchantofvenice,1596\ndamn'd,1,merchantofvenice,1596\nslink,1,merchantofvenice,1596\nYonder,1,merchantofvenice,1596\nfledged,1,merchantofvenice,1596\nsmall,1,merchantofvenice,1596\ndemi,1,merchantofvenice,1596\nwisely,1,merchantofvenice,1596\nfairness,1,merchantofvenice,1596\ncrave,1,merchantofvenice,1596\naside,1,merchantofvenice,1596\nwrinkles,1,merchantofvenice,1596\nItalian,1,merchantofvenice,1596\noutrageous,1,merchantofvenice,1596\nmoth,1,merchantofvenice,1596\nwrinkled,1,merchantofvenice,1596\nsceptred,1,merchantofvenice,1596\nHappiest,1,merchantofvenice,1596\nLive,1,merchantofvenice,1596\ncorruptly,1,merchantofvenice,1596\ndeface,1,merchantofvenice,1596\nMyself,1,merchantofvenice,1596\nscholar,1,merchantofvenice,1596\nReady,1,merchantofvenice,1596\ntemper,1,merchantofvenice,1596\nIndia,1,merchantofvenice,1596\naccomplished,1,merchantofvenice,1596\ndock'd,1,merchantofvenice,1596\nloves,1,merchantofvenice,1596\nhadst,1,merchantofvenice,1596\nRenowned,1,merchantofvenice,1596\nstudied,1,merchantofvenice,1596\nimpediment,1,merchantofvenice,1596\noffer'd,1,merchantofvenice,1596\ncurbed,1,merchantofvenice,1596\nado,1,merchantofvenice,1596\ncommands,1,merchantofvenice,1596\nadd,1,merchantofvenice,1596\nbeholding,1,merchantofvenice,1596\ndiamond,1,merchantofvenice,1596\nsemblance,1,merchantofvenice,1596\nServants,1,merchantofvenice,1596\nwherein,1,merchantofvenice,1596\nFaster,1,merchantofvenice,1596\ntwinkling,1,merchantofvenice,1596\nweakest,1,merchantofvenice,1596\nspend,1,merchantofvenice,1596\napparel,1,merchantofvenice,1596\ncontinent,1,merchantofvenice,1596\nnecessary,1,merchantofvenice,1596\nlets,1,merchantofvenice,1596\nbeauteous,1,merchantofvenice,1596\nconfusions,1,merchantofvenice,1596\nlock'd,1,merchantofvenice,1596\nbootless,1,merchantofvenice,1596\nstrand,1,merchantofvenice,1596\ncommandment,1,merchantofvenice,1596\nCreep,1,merchantofvenice,1596\ncerecloth,1,merchantofvenice,1596\nforgot,1,merchantofvenice,1596\nattain,1,merchantofvenice,1596\nwo,1,merchantofvenice,1596\npure,1,merchantofvenice,1596\nnatures,1,merchantofvenice,1596\nmen's,1,merchantofvenice,1596\nMove,1,merchantofvenice,1596\nwisest,1,merchantofvenice,1596\nDouble,1,merchantofvenice,1596\nCame,1,merchantofvenice,1596\npresume,1,merchantofvenice,1596\nharm,1,merchantofvenice,1596\ntucket,1,merchantofvenice,1596\nkilled,1,merchantofvenice,1596\nevents,1,merchantofvenice,1596\nhardly,1,merchantofvenice,1596\nbrought,1,merchantofvenice,1596\ngravel,1,merchantofvenice,1596\nclime,1,merchantofvenice,1596\nreasons,1,merchantofvenice,1596\nrunning,1,merchantofvenice,1596\ncherubins,1,merchantofvenice,1596\no'erta'en,1,merchantofvenice,1596\nhare,1,merchantofvenice,1596\naxe,1,merchantofvenice,1596\ndiscourse,1,merchantofvenice,1596\npuny,1,merchantofvenice,1596\nunmannerly,1,merchantofvenice,1596\npark,1,merchantofvenice,1596\nsmith,1,merchantofvenice,1596\nRan,1,merchantofvenice,1596\nreasonable,1,merchantofvenice,1596\nPythagoras,1,merchantofvenice,1596\nremember'd,1,merchantofvenice,1596\nlewd,1,merchantofvenice,1596\nhall,1,merchantofvenice,1596\nfrost,1,merchantofvenice,1596\ncrow,1,merchantofvenice,1596\nBrutus',1,merchantofvenice,1596\nneat's,1,merchantofvenice,1596\nmisbeliever,1,merchantofvenice,1596\ntext,1,merchantofvenice,1596\nshallow,1,merchantofvenice,1596\nCall,1,merchantofvenice,1596\npale,1,merchantofvenice,1596\nfashion'd,1,merchantofvenice,1596\nemploy'd,1,merchantofvenice,1596\nHappy,1,merchantofvenice,1596\nacknowledge,1,merchantofvenice,1596\ncall'd,1,merchantofvenice,1596\ntrade,1,merchantofvenice,1596\ntreads,1,merchantofvenice,1596\nhang,1,merchantofvenice,1596\nPluck,1,merchantofvenice,1596\nshun,1,merchantofvenice,1596\nmuttons,1,merchantofvenice,1596\nreach,1,merchantofvenice,1596\ndraws,1,merchantofvenice,1596\noverpeer,1,merchantofvenice,1596\nconfession,1,merchantofvenice,1596\nmitigate,1,merchantofvenice,1596\nsweetest,1,merchantofvenice,1596\nScylla,1,merchantofvenice,1596\nIndies,1,merchantofvenice,1596\nsucking,1,merchantofvenice,1596\nacquaintance,1,merchantofvenice,1596\ngovernor,1,merchantofvenice,1596\ncity,1,merchantofvenice,1596\nopen,1,merchantofvenice,1596\npage,1,merchantofvenice,1596\ndescribe,1,merchantofvenice,1596\nrefused,1,merchantofvenice,1596\nbrothers,1,merchantofvenice,1596\noccasions,1,merchantofvenice,1596\nform,1,merchantofvenice,1596\nknocks,1,merchantofvenice,1596\ncite,1,merchantofvenice,1596\nCommend,1,merchantofvenice,1596\nrack'd,1,merchantofvenice,1596\nriddance,1,merchantofvenice,1596\nharder,1,merchantofvenice,1596\npain,1,merchantofvenice,1596\nheaviness,1,merchantofvenice,1596\nfellows',1,merchantofvenice,1596\ndiest,1,merchantofvenice,1596\nextremest,1,merchantofvenice,1596\ntrunks,1,merchantofvenice,1596\nspurn'd,1,merchantofvenice,1596\nfore,1,merchantofvenice,1596\nmock,1,merchantofvenice,1596\nprofound,1,merchantofvenice,1596\nfrown,1,merchantofvenice,1596\nowes,1,merchantofvenice,1596\nincurr'd,1,merchantofvenice,1596\nscatter,1,merchantofvenice,1596\nurgest,1,merchantofvenice,1596\nSilver'd,1,merchantofvenice,1596\ndevise,1,merchantofvenice,1596\ntwain,1,merchantofvenice,1596\npace,1,merchantofvenice,1596\nkindest,1,merchantofvenice,1596\nIndian,1,merchantofvenice,1596\npack,1,merchantofvenice,1596\nfear'd,1,merchantofvenice,1596\nshot,1,merchantofvenice,1596\ndreadful,1,merchantofvenice,1596\npertains,1,merchantofvenice,1596\ncrisped,1,merchantofvenice,1596\nputs,1,merchantofvenice,1596\nsupposition,1,merchantofvenice,1596\ngarnish,1,merchantofvenice,1596\nbespeak,1,merchantofvenice,1596\nshoe,1,merchantofvenice,1596\nVailing,1,merchantofvenice,1596\nawe,1,merchantofvenice,1596\nfont,1,merchantofvenice,1596\ngraved,1,merchantofvenice,1596\nrough,1,merchantofvenice,1596\nproducing,1,merchantofvenice,1596\ngaudy,1,merchantofvenice,1596\ntyranny,1,merchantofvenice,1596\nprepared,1,merchantofvenice,1596\nstreak'd,1,merchantofvenice,1596\nfamished,1,merchantofvenice,1596\nunthrift,1,merchantofvenice,1596\nrenowned,1,merchantofvenice,1596\nobject,1,merchantofvenice,1596\nattempts,1,merchantofvenice,1596\nappeareth,1,merchantofvenice,1596\nmaiden,1,merchantofvenice,1596\nbeards,1,merchantofvenice,1596\ningratitude,1,merchantofvenice,1596\ntombs,1,merchantofvenice,1596\nterm,1,merchantofvenice,1596\ngauge,1,merchantofvenice,1596\ndiscontinued,1,merchantofvenice,1596\nceremoniously,1,merchantofvenice,1596\nhive,1,merchantofvenice,1596\nHast,1,merchantofvenice,1596\nfoppery,1,merchantofvenice,1596\ndefended,1,merchantofvenice,1596\nthanks,1,merchantofvenice,1596\naweary,1,merchantofvenice,1596\nAmong,1,merchantofvenice,1596\nundone,1,merchantofvenice,1596\nfew,1,merchantofvenice,1596\ncolour'd,1,merchantofvenice,1596\ncleared,1,merchantofvenice,1596\nexaction,1,merchantofvenice,1596\nSirrah,1,merchantofvenice,1596\nnative,1,merchantofvenice,1596\nHard,1,merchantofvenice,1596\nsweetly,1,merchantofvenice,1596\nenemies,1,merchantofvenice,1596\nPick'd,1,merchantofvenice,1596\nvisited,1,merchantofvenice,1596\ndaring,1,merchantofvenice,1596\nwooing,1,merchantofvenice,1596\nContent,1,merchantofvenice,1596\ntrial,1,merchantofvenice,1596\nceases,1,merchantofvenice,1596\nAsh,1,merchantofvenice,1596\nStood,1,merchantofvenice,1596\nArt,1,merchantofvenice,1596\nHate,1,merchantofvenice,1596\nfeign,1,merchantofvenice,1596\nguess,1,merchantofvenice,1596\nhowling,1,merchantofvenice,1596\nbeams,1,merchantofvenice,1596\nguest,1,merchantofvenice,1596\nprays,1,merchantofvenice,1596\nmoves,1,merchantofvenice,1596\nprecedent,1,merchantofvenice,1596\nColchos',1,merchantofvenice,1596\nscapes,1,merchantofvenice,1596\nGilded,1,merchantofvenice,1596\nfooling,1,merchantofvenice,1596\nheight,1,merchantofvenice,1596\nunthrifty,1,merchantofvenice,1596\nDisguise,1,merchantofvenice,1596\nBetween,1,merchantofvenice,1596\nexecute,1,merchantofvenice,1596\nfat,1,merchantofvenice,1596\nyesterday,1,merchantofvenice,1596\noutswear,1,merchantofvenice,1596\nstockish,1,merchantofvenice,1596\nroof,1,merchantofvenice,1596\nComes,1,merchantofvenice,1596\nexposition,1,merchantofvenice,1596\ncontented,1,merchantofvenice,1596\nleap,1,merchantofvenice,1596\ntediousness,1,merchantofvenice,1596\nrender'd,1,merchantofvenice,1596\nLock,1,merchantofvenice,1596\nCarthage,1,merchantofvenice,1596\nuniversal,1,merchantofvenice,1596\ngarments,1,merchantofvenice,1596\nMisfortune,1,merchantofvenice,1596\ninexecrable,1,merchantofvenice,1596\nenow,1,merchantofvenice,1596\nmoved,1,merchantofvenice,1596\nsurgeon,1,merchantofvenice,1596\nGrecian,1,merchantofvenice,1596\nbrewing,1,merchantofvenice,1596\npage's,1,merchantofvenice,1596\nyounker,1,merchantofvenice,1596\ntorchbearers,1,merchantofvenice,1596\ncarries,1,merchantofvenice,1596\nredoubted,1,merchantofvenice,1596\nnations,1,merchantofvenice,1596\ndress'd,1,merchantofvenice,1596\ngriefs,1,merchantofvenice,1596\nshouldst,1,merchantofvenice,1596\nalabaster,1,merchantofvenice,1596\nundeserved,1,merchantofvenice,1596\nbreathed,1,merchantofvenice,1596\ninscriptions,1,merchantofvenice,1596\nAEson,1,merchantofvenice,1596\nriding,1,merchantofvenice,1596\nguiled,1,merchantofvenice,1596\nsmallest,1,merchantofvenice,1596\nunknown,1,merchantofvenice,1596\nfourth,1,merchantofvenice,1596\npatch,1,merchantofvenice,1596\nadvisedly,1,merchantofvenice,1596\nenvy,1,merchantofvenice,1596\nSeven,1,merchantofvenice,1596\nbeast,1,merchantofvenice,1596\nfraught,1,merchantofvenice,1596\nwakes,1,merchantofvenice,1596\nproceed,1,merchantofvenice,1596\nwonder,1,merchantofvenice,1596\nobscure,1,merchantofvenice,1596\nhire,1,merchantofvenice,1596\npeel'd,1,merchantofvenice,1596\npresages,1,merchantofvenice,1596\nmagnificoes,1,merchantofvenice,1596\ngrazed,1,merchantofvenice,1596\nHang,1,merchantofvenice,1596\napple,1,merchantofvenice,1596\ngently,1,merchantofvenice,1596\nPeace,1,merchantofvenice,1596\nmounted,1,merchantofvenice,1596\nscale,1,merchantofvenice,1596\npaler,1,merchantofvenice,1596\nallows,1,merchantofvenice,1596\nbelow,1,merchantofvenice,1596\nmajesty,1,merchantofvenice,1596\ndisgraced,1,merchantofvenice,1596\nschedule,1,merchantofvenice,1596\nrash,1,merchantofvenice,1596\ncourtship,1,merchantofvenice,1596\nfaint,1,merchantofvenice,1596\npleaseth,1,merchantofvenice,1596\nScripture,1,merchantofvenice,1596\nblunt,1,merchantofvenice,1596\ncompanions,1,merchantofvenice,1596\ntenor,1,merchantofvenice,1596\nentirely,1,merchantofvenice,1596\novertake,1,merchantofvenice,1596\nbestows,1,merchantofvenice,1596\ncall'dst,1,merchantofvenice,1596\nunburden,1,merchantofvenice,1596\nkneels,1,merchantofvenice,1596\nbottom,1,merchantofvenice,1596\nburthens,1,merchantofvenice,1596\nWear,1,merchantofvenice,1596\nSlander,1,merchantofvenice,1596\noration,1,merchantofvenice,1596\nSoft,1,merchantofvenice,1596\nDown,1,merchantofvenice,1596\nBars,1,merchantofvenice,1596\nwritten,1,merchantofvenice,1596\nEnter'd,1,merchantofvenice,1596\nCourt,1,merchantofvenice,1596\ncitizen,1,merchantofvenice,1596\nphilosopher,1,merchantofvenice,1596\newe,1,merchantofvenice,1596\nborne,1,merchantofvenice,1596\nmoneys',1,merchantofvenice,1596\nadmit,1,merchantofvenice,1596\nhasted,1,merchantofvenice,1596\nPromise,1,merchantofvenice,1596\nbasket,1,merchantofvenice,1596\ngarden,1,merchantofvenice,1596\nescaped,1,merchantofvenice,1596\nperform,1,merchantofvenice,1596\nwho's,1,merchantofvenice,1596\nMonday,1,merchantofvenice,1596\nignorant,1,merchantofvenice,1596\nunhappy,1,merchantofvenice,1596\nApproach,1,merchantofvenice,1596\nchins,1,merchantofvenice,1596\nmouth,1,merchantofvenice,1596\nseveral,1,merchantofvenice,1596\nTurks,1,merchantofvenice,1596\nscarf,1,merchantofvenice,1596\nspend'st,1,merchantofvenice,1596\npowers,1,merchantofvenice,1596\nThyself,1,merchantofvenice,1596\nTurns,1,merchantofvenice,1596\nTartars,1,merchantofvenice,1596\nplaced,1,merchantofvenice,1596\ngeneral,1,merchantofvenice,1596\nsigh'd,1,merchantofvenice,1596\nLisbon,1,merchantofvenice,1596\nferry,1,merchantofvenice,1596\nseasons,1,merchantofvenice,1596\ndevice,1,merchantofvenice,1596\nstrife,1,merchantofvenice,1596\ndaylight,1,merchantofvenice,1596\n'many',1,merchantofvenice,1596\nmortal,1,merchantofvenice,1596\nlikewise,1,merchantofvenice,1596\nOutbrave,1,merchantofvenice,1596\nexpires,1,merchantofvenice,1596\naccepted,1,merchantofvenice,1596\nmilk,1,merchantofvenice,1596\nexchange,1,merchantofvenice,1596\n'If,1,merchantofvenice,1596\n'Gobbo,1,merchantofvenice,1596\nteeth,1,merchantofvenice,1596\nstride,1,merchantofvenice,1596\nrehearsed,1,merchantofvenice,1596\ninscroll'd,1,merchantofvenice,1596\nstart,1,merchantofvenice,1596\nqualities,1,merchantofvenice,1596\nsatisfaction,1,merchantofvenice,1596\nstrict,1,merchantofvenice,1596\ncreditor,1,merchantofvenice,1596\nGovern'd,1,merchantofvenice,1596\nExact,1,merchantofvenice,1596\npurposes,1,merchantofvenice,1596\npaleness,1,merchantofvenice,1596\nunpleasant'st,1,merchantofvenice,1596\nbosoms,1,merchantofvenice,1596\nShylock's,1,merchantofvenice,1596\nbeauties,1,merchantofvenice,1596\nfortnight,1,merchantofvenice,1596\ninlaid,1,merchantofvenice,1596\nwrought,1,merchantofvenice,1596\nblush,1,merchantofvenice,1596\nprocess,1,merchantofvenice,1596\ndowry,1,merchantofvenice,1596\nbloods,1,merchantofvenice,1596\nQueen,1,merchantofvenice,1596\nobscured,1,merchantofvenice,1596\ncourage,1,merchantofvenice,1596\nCould,1,merchantofvenice,1596\ncurtsy,1,merchantofvenice,1596\nbeach,1,merchantofvenice,1596\nskip,1,merchantofvenice,1596\ntents,1,merchantofvenice,1596\nconcord,1,merchantofvenice,1596\norgans,1,merchantofvenice,1596\n'Do,1,merchantofvenice,1596\nchief,1,merchantofvenice,1596\ndream,1,merchantofvenice,1596\ntemptation,1,merchantofvenice,1596\ncomer,1,merchantofvenice,1596\nALL,1,merchantofvenice,1596\nmart,1,merchantofvenice,1596\nshrew,1,merchantofvenice,1596\npersuaded,1,merchantofvenice,1596\nthick,1,merchantofvenice,1596\ncongregate,1,merchantofvenice,1596\nwry,1,merchantofvenice,1596\nchapels,1,merchantofvenice,1596\nslave,1,merchantofvenice,1596\nCount,1,merchantofvenice,1596\nfurnish'd,1,merchantofvenice,1596\nbecause,1,merchantofvenice,1596\ninfinitely,1,merchantofvenice,1596\nflatter,1,merchantofvenice,1596\nGentile,1,merchantofvenice,1596\ngreatest,1,merchantofvenice,1596\nbondman's,1,merchantofvenice,1596\nEnrobe,1,merchantofvenice,1596\ngates,1,merchantofvenice,1596\nlabour,1,merchantofvenice,1596\neke,1,merchantofvenice,1596\nCounty,1,merchantofvenice,1596\nmaps,1,merchantofvenice,1596\nvinegar,1,merchantofvenice,1596\nspecial,1,merchantofvenice,1596\nmiss,1,merchantofvenice,1596\nincarnal,1,merchantofvenice,1596\nmountain,1,merchantofvenice,1596\nhigher,1,merchantofvenice,1596\nnorthward,1,merchantofvenice,1596\nfree,1,merchantofvenice,1596\nengender'd,1,merchantofvenice,1596\nbleat,1,merchantofvenice,1596\nwhispering,1,merchantofvenice,1596\nworthless,1,merchantofvenice,1596\nborrow'd,1,merchantofvenice,1596\nmarvel,1,merchantofvenice,1596\nDescend,1,merchantofvenice,1596\nbreeders,1,merchantofvenice,1596\nwarmed,1,merchantofvenice,1596\nstratagems,1,merchantofvenice,1596\ndivision,1,merchantofvenice,1596\nstairs,1,merchantofvenice,1596\nmistress',1,merchantofvenice,1596\nPerhaps,1,merchantofvenice,1596\nsayest,1,merchantofvenice,1596\nRome,1,merchantofvenice,1596\nscanted,1,merchantofvenice,1596\nfirm,1,merchantofvenice,1596\nconverted,1,merchantofvenice,1596\nhermit,1,merchantofvenice,1596\ninland,1,merchantofvenice,1596\nscimitar,1,merchantofvenice,1596\nabridged,1,merchantofvenice,1596\nfray,1,merchantofvenice,1596\nbanks,1,merchantofvenice,1596\nbehalf,1,merchantofvenice,1596\nlosing,1,merchantofvenice,1596\naccoutred,1,merchantofvenice,1596\nbellowing,1,merchantofvenice,1596\naffairs,1,merchantofvenice,1596\nmarvellously,1,merchantofvenice,1596\n'for,1,merchantofvenice,1596\nscarfed,1,merchantofvenice,1596\nvasty,1,merchantofvenice,1596\nsting,1,merchantofvenice,1596\npredicament,1,merchantofvenice,1596\nportrait,1,merchantofvenice,1596\nunfeeling,1,merchantofvenice,1596\nSabbath,1,merchantofvenice,1596\nbettered,1,merchantofvenice,1596\ncontemplation,1,merchantofvenice,1596\nodd,1,merchantofvenice,1596\ngem,1,merchantofvenice,1596\n'No,1,merchantofvenice,1596\nstale,1,merchantofvenice,1596\nneck,1,merchantofvenice,1596\nabate,1,merchantofvenice,1596\nroars,1,merchantofvenice,1596\nPatiently,1,merchantofvenice,1596\ntwelvemonth,1,merchantofvenice,1596\nsafely,1,merchantofvenice,1596\nthrow,1,merchantofvenice,1596\nwis,1,merchantofvenice,1596\npond,1,merchantofvenice,1596\nstamp,1,merchantofvenice,1596\nfive,1,merchantofvenice,1596\nDefy,1,merchantofvenice,1596\nDobbin's,1,merchantofvenice,1596\ngoats,1,merchantofvenice,1596\nprivy,1,merchantofvenice,1596\nthoroughly,1,merchantofvenice,1596\nstomach,1,merchantofvenice,1596\n'Twill,1,merchantofvenice,1596\ntorchbearer,1,merchantofvenice,1596\nherbs,1,merchantofvenice,1596\nregreets,1,merchantofvenice,1596\ncurb,1,merchantofvenice,1596\nreceipt,1,merchantofvenice,1596\nglitters,1,merchantofvenice,1596\nhears,1,merchantofvenice,1596\nnotary,1,merchantofvenice,1596\nNazarite,1,merchantofvenice,1596\nhappiness,1,merchantofvenice,1596\nbaned,1,merchantofvenice,1596\nsitting,1,merchantofvenice,1596\nInfused,1,merchantofvenice,1596\nmeasures,1,merchantofvenice,1596\nabundance,1,merchantofvenice,1596\ncreation,1,merchantofvenice,1596\nmanifest,1,merchantofvenice,1596\ncity's,1,merchantofvenice,1596\nwalks,1,merchantofvenice,1596\nOften,1,merchantofvenice,1596\n'mong,1,merchantofvenice,1596\nAntipodes,1,merchantofvenice,1596\nrelent,1,merchantofvenice,1596\nquicken,1,merchantofvenice,1596\nquestionless,1,merchantofvenice,1596\nwalls,1,merchantofvenice,1596\nhealths,1,merchantofvenice,1596\nripe,1,merchantofvenice,1596\nGermany,1,merchantofvenice,1596\nostent,1,merchantofvenice,1596\nstanding,1,merchantofvenice,1596\ndeath's,1,merchantofvenice,1596\ncontinuance,1,merchantofvenice,1596\nflint,1,merchantofvenice,1596\ndecrees,1,merchantofvenice,1596\ncertainly,1,merchantofvenice,1596\ntorture,1,merchantofvenice,1596\nprotection,1,merchantofvenice,1596\nhumility,1,merchantofvenice,1596\ncomparison,1,merchantofvenice,1596\nforerunner,1,merchantofvenice,1596\nunseal,1,merchantofvenice,1596\nbringeth,1,merchantofvenice,1596\nlikes,1,merchantofvenice,1596\ncalled,1,merchantofvenice,1596\n'The,1,merchantofvenice,1596\nquarrelling,1,merchantofvenice,1596\nShed,1,merchantofvenice,1596\nstage,1,merchantofvenice,1596\nflourish,1,merchantofvenice,1596\narmy,1,merchantofvenice,1596\npoet,1,merchantofvenice,1596\nlinger,1,merchantofvenice,1596\nduty,1,merchantofvenice,1596\ntailor,1,merchantofvenice,1596\nbarbarous,1,merchantofvenice,1596\nhovel,1,merchantofvenice,1596\ncommanded,1,merchantofvenice,1596\n'gree,1,merchantofvenice,1596\nfancy's,1,merchantofvenice,1596\nnuptial,1,merchantofvenice,1596\nprofitable,1,merchantofvenice,1596\nintent,1,merchantofvenice,1596\nFates,1,merchantofvenice,1596\nthreatens,1,merchantofvenice,1596\nwag,1,merchantofvenice,1596\narrow,1,merchantofvenice,1596\nthey'll,1,merchantofvenice,1596\nHiding,1,merchantofvenice,1596\nmaiden's,1,merchantofvenice,1596\nforward,1,merchantofvenice,1596\nmules,1,merchantofvenice,1596\nusances,1,merchantofvenice,1596\nbereft,1,merchantofvenice,1596\nbedfellow,1,merchantofvenice,1596\ninsculp'd,1,merchantofvenice,1596\nmoonlight,1,merchantofvenice,1596\nspurrer,1,merchantofvenice,1596\nproceeding,1,merchantofvenice,1596\nhusbands',1,merchantofvenice,1596\nprick,1,merchantofvenice,1596\nwarmth,1,merchantofvenice,1596\nGlancing,1,merchantofvenice,1596\nBeg,1,merchantofvenice,1596\npenalties,1,merchantofvenice,1596\nbelly,1,merchantofvenice,1596\nbounty,1,merchantofvenice,1596\ndross,1,merchantofvenice,1596\nMonsieur,1,merchantofvenice,1596\ncaught,1,merchantofvenice,1596\nginger,1,merchantofvenice,1596\nGives,1,merchantofvenice,1596\ngrossness,1,merchantofvenice,1596\nrequite,1,merchantofvenice,1596\neaters,1,merchantofvenice,1596\nhusbandry,1,merchantofvenice,1596\nagree,1,merchantofvenice,1596\nfaces,1,merchantofvenice,1596\nseize,1,merchantofvenice,1596\nblotted,1,merchantofvenice,1596\nBid,1,merchantofvenice,1596\nStraight,1,merchantofvenice,1596\nHeaven,1,merchantofvenice,1596\nmuddy,1,merchantofvenice,1596\nCupid's,1,merchantofvenice,1596\ntakes,1,merchantofvenice,1596\nfaithless,1,merchantofvenice,1596\nestates,1,merchantofvenice,1596\nfallen,1,merchantofvenice,1596\nrotten,1,merchantofvenice,1596\ncertainty,1,merchantofvenice,1596\npoison,1,merchantofvenice,1596\nfife,1,merchantofvenice,1596\ncoffer,1,merchantofvenice,1596\nCommends,1,merchantofvenice,1596\nweeping,1,merchantofvenice,1596\nforeign,1,merchantofvenice,1596\nroads,1,merchantofvenice,1596\nsways,1,merchantofvenice,1596\ncompulsion,1,merchantofvenice,1596\ncheerest,1,merchantofvenice,1596\nleisures,1,merchantofvenice,1596\nrail,1,merchantofvenice,1596\nsupply,1,merchantofvenice,1596\nimputation,1,merchantofvenice,1596\nrain,1,merchantofvenice,1596\nHugg'd,1,merchantofvenice,1596\ntorturest,1,merchantofvenice,1596\npries,1,merchantofvenice,1596\nlineaments,1,merchantofvenice,1596\nintercessors,1,merchantofvenice,1596\nyoke,1,merchantofvenice,1596\nfarther,1,merchantofvenice,1596\ngodlike,1,merchantofvenice,1596\ntouching,1,merchantofvenice,1596\nwooer,1,merchantofvenice,1596\nfalling,1,merchantofvenice,1596\nwent,1,merchantofvenice,1596\ndistinct,1,merchantofvenice,1596\ngifts,1,merchantofvenice,1596\ngrass,1,merchantofvenice,1596\nguilty,1,merchantofvenice,1596\nheirs,1,merchantofvenice,1596\nsails,1,merchantofvenice,1596\nclown,1,merchantofvenice,1596\nthaws,1,merchantofvenice,1596\ncubs,1,merchantofvenice,1596\nfretten,1,merchantofvenice,1596\nwept,1,merchantofvenice,1596\ndiseases,1,merchantofvenice,1596\nwanted,1,merchantofvenice,1596\nlead'st,1,merchantofvenice,1596\n'Conscience,1,merchantofvenice,1596\nweapons,1,merchantofvenice,1596\ndoublet,1,merchantofvenice,1596\nstolen,1,merchantofvenice,1596\ncovered,1,merchantofvenice,1596\ndesert,1,merchantofvenice,1596\nmiracle,1,merchantofvenice,1596\nsnaky,1,merchantofvenice,1596\nquest,1,merchantofvenice,1596\norb,1,merchantofvenice,1596\nProceed,1,merchantofvenice,1596\nScottish,1,merchantofvenice,1596\nwert,1,merchantofvenice,1596\nestimable,1,merchantofvenice,1596\nrace,1,merchantofvenice,1596\nkinsman,1,merchantofvenice,1596\nmisfortune,1,merchantofvenice,1596\nhumour,1,merchantofvenice,1596\ntricksy,1,merchantofvenice,1596\neanlings,1,merchantofvenice,1596\nwounds,1,merchantofvenice,1596\ndiscover,1,merchantofvenice,1596\nworthiness,1,merchantofvenice,1596\nlodged,1,merchantofvenice,1596\nskilful,1,merchantofvenice,1596\nMeetest,1,merchantofvenice,1596\nsilks,1,merchantofvenice,1596\nMars,1,merchantofvenice,1596\nendeavour,1,merchantofvenice,1596\nfit,1,merchantofvenice,1596\nofficer,1,merchantofvenice,1596\nwheat,1,merchantofvenice,1596\nBon,1,merchantofvenice,1596\nmoderate,1,merchantofvenice,1596\nbridegroom's,1,merchantofvenice,1596\nsavage,1,merchantofvenice,1596\nengaged,1,merchantofvenice,1596\ndamnation,1,merchantofvenice,1596\ncackling,1,merchantofvenice,1596\nhorn,1,merchantofvenice,1596\nFast,1,merchantofvenice,1596\nhose,1,merchantofvenice,1596\nlordship,1,merchantofvenice,1596\n'Love,1,merchantofvenice,1596\ndefending,1,merchantofvenice,1596\nmansion,1,merchantofvenice,1596\nunschool'd,1,merchantofvenice,1596\nratified,1,merchantofvenice,1596\npocket,1,merchantofvenice,1596\ndivers,1,merchantofvenice,1596\nunfold,1,merchantofvenice,1596\nsolemnize,1,merchantofvenice,1596\nmasquing,1,merchantofvenice,1596\nsmug,1,merchantofvenice,1596\nuncle,1,merchantofvenice,1596\nan't,1,merchantofvenice,1596\npractise,1,merchantofvenice,1596\nqueen,1,merchantofvenice,1596\ndepart,1,merchantofvenice,1596\nperceive,1,merchantofvenice,1596\nBarbary,1,merchantofvenice,1596\nmates,1,merchantofvenice,1596\nbeware,1,merchantofvenice,1596\nWrest,1,merchantofvenice,1596\npatient,1,merchantofvenice,1596\nPlucking,1,merchantofvenice,1596\nbate,1,merchantofvenice,1596\nmember,1,merchantofvenice,1596\nwaver,1,merchantofvenice,1596\nsalvation,1,merchantofvenice,1596\nStealing,1,merchantofvenice,1596\nbars,1,merchantofvenice,1596\nreproach,1,merchantofvenice,1596\nbird,1,merchantofvenice,1596\nAchieved,1,merchantofvenice,1596\nthanked,1,merchantofvenice,1596\nqualify,1,merchantofvenice,1596\ndeliver'd,1,merchantofvenice,1596\nobservance,1,merchantofvenice,1596\nbank,1,merchantofvenice,1596\nVery,1,merchantofvenice,1596\nhoop,1,merchantofvenice,1596\ncream,1,merchantofvenice,1596\nbounds,1,merchantofvenice,1596\ndismay'd,1,merchantofvenice,1596\nsentences,1,merchantofvenice,1596\nflock,1,merchantofvenice,1596\nlights,1,merchantofvenice,1596\nEnow,1,merchantofvenice,1596\nshepherd,1,merchantofvenice,1596\necstasy,1,merchantofvenice,1596\ntale,1,merchantofvenice,1596\nis't,1,merchantofvenice,1596\nbuzzing,1,merchantofvenice,1596\nPartly,1,merchantofvenice,1596\ntall,1,merchantofvenice,1596\ndeparture,1,merchantofvenice,1596\nfarthest,1,merchantofvenice,1596\nobliged,1,merchantofvenice,1596\nIssuing,1,merchantofvenice,1596\nLean,1,merchantofvenice,1596\nLeah,1,merchantofvenice,1596\nbind,1,merchantofvenice,1596\ndeliberate,1,merchantofvenice,1596\npoetry,1,merchantofvenice,1596\nStamped,1,merchantofvenice,1596\ntorment,1,merchantofvenice,1596\ncarry,1,merchantofvenice,1596\nFiend,1,merchantofvenice,1596\nthwarted,1,merchantofvenice,1596\ngreets,1,merchantofvenice,1596\nEvery,1,merchantofvenice,1596\nrecorded,1,merchantofvenice,1596\nhuddled,1,merchantofvenice,1596\nshore,1,merchantofvenice,1596\ngetting,1,merchantofvenice,1596\naccident,1,merchantofvenice,1596\nsternest,1,merchantofvenice,1596\ninterposer,1,merchantofvenice,1596\nquit,1,merchantofvenice,1596\nvirgins,1,merchantofvenice,1596\nshort,1,merchantofvenice,1596\nClamber,1,merchantofvenice,1596\ninscription,1,merchantofvenice,1596\ngreen,1,merchantofvenice,1596\nstand'st,1,merchantofvenice,1596\nhollow,1,merchantofvenice,1596\ndefect,1,merchantofvenice,1596\naforesaid,1,merchantofvenice,1596\nWho's,1,merchantofvenice,1596\ncounterfeit,1,merchantofvenice,1596\nspices,1,merchantofvenice,1596\ncowards,1,merchantofvenice,1596\nsunder,1,merchantofvenice,1596\nhogs,1,merchantofvenice,1596\ncarcasses,1,merchantofvenice,1596\nErebus,1,merchantofvenice,1596\nhangman's,1,merchantofvenice,1596\nwinter,1,merchantofvenice,1596\nmonastery,1,merchantofvenice,1596\nliver,1,merchantofvenice,1596\nstreets,1,merchantofvenice,1596\nstate's,1,merchantofvenice,1596\nRepent,1,merchantofvenice,1596\ngrudge,1,merchantofvenice,1596\nvirtues,1,merchantofvenice,1596\nundertook,1,merchantofvenice,1596\ncounsels,1,merchantofvenice,1596\ntrain'd,1,merchantofvenice,1596\nfalsehood,1,merchantofvenice,1596\nrendering,1,merchantofvenice,1596\n'Fair,1,merchantofvenice,1596\nconvenient,1,merchantofvenice,1596\nInquire,1,merchantofvenice,1596\nneck'd,1,merchantofvenice,1596\nReply,1,merchantofvenice,1596\nGramercy,1,merchantofvenice,1596\nshout,1,merchantofvenice,1596\ninevitable,1,merchantofvenice,1596\nlungs,1,merchantofvenice,1596\ncope,1,merchantofvenice,1596\nmanage,1,merchantofvenice,1596\nabject,1,merchantofvenice,1596\ngudgeon,1,merchantofvenice,1596\nTroy,1,merchantofvenice,1596\nbeset,1,merchantofvenice,1596\nlovely,1,merchantofvenice,1596\nrigorous,1,merchantofvenice,1596\nSophy,1,merchantofvenice,1596\nfeeder,1,merchantofvenice,1596\ncool,1,merchantofvenice,1596\nlying,1,merchantofvenice,1596\ncontents,1,merchantofvenice,1596\nwaiting,1,merchantofvenice,1596\nalways,1,merchantofvenice,1596\ndisabling,1,merchantofvenice,1596\ninward,1,merchantofvenice,1596\nbachelor,1,merchantofvenice,1596\nimportunity,1,merchantofvenice,1596\nugly,1,merchantofvenice,1596\ndrunk,1,merchantofvenice,1596\nmeagre,1,merchantofvenice,1596\ncutler's,1,merchantofvenice,1596\nkingdom,1,merchantofvenice,1596\npublish,1,merchantofvenice,1596\nlightest,1,merchantofvenice,1596\noffspring,1,merchantofvenice,1596\nSeem,1,merchantofvenice,1596\nNestor,1,merchantofvenice,1596\nburnish'd,1,merchantofvenice,1596\nseed,1,merchantofvenice,1596\nServing,1,merchantofvenice,1596\ngnats,1,merchantofvenice,1596\ntroth,1,merchantofvenice,1596\ndefend,1,merchantofvenice,1596\ncousins,1,merchantofvenice,1596\nsupposed,1,merchantofvenice,1596\nlook'd,1,merchantofvenice,1596\nmeantime,1,merchantofvenice,1596\nhindered,1,merchantofvenice,1596\n'twixt,1,merchantofvenice,1596\nsquandered,1,merchantofvenice,1596\ndiscretion,1,merchantofvenice,1596\nsees,1,merchantofvenice,1596\nvalued,1,merchantofvenice,1596\nvehement,1,merchantofvenice,1596\nMine,1,merchantofvenice,1596\nHyrcanian,1,merchantofvenice,1596\nTrue,1,merchantofvenice,1596\nDido,1,merchantofvenice,1596\nVeiling,1,merchantofvenice,1596\nthrust,1,merchantofvenice,1596\npreferment,1,merchantofvenice,1596\nsacred,1,merchantofvenice,1596\nexploit,1,merchantofvenice,1596\ncry,1,merchantofvenice,1596\nthreshold,1,merchantofvenice,1596\nconfirm'd,1,merchantofvenice,1596\nGentlemen,1,merchantofvenice,1596\ncord,1,merchantofvenice,1596\nmonkey,1,merchantofvenice,1596\nperson,1,merchantofvenice,1596\nnamest,1,merchantofvenice,1596\nmodest,1,merchantofvenice,1596\n'twill,1,merchantofvenice,1596\nunderstands,1,merchantofvenice,1596\ntree,1,merchantofvenice,1596\nEmpties,1,merchantofvenice,1596\nmusician,1,merchantofvenice,1596\nKnow,1,merchantofvenice,1596\nDeliver,1,merchantofvenice,1596\nchests,1,merchantofvenice,1596\nmillion,1,merchantofvenice,1596\noffend'st,1,merchantofvenice,1596\ngreedy,1,merchantofvenice,1596\nhuge,1,merchantofvenice,1596\nwretched,1,merchantofvenice,1596\nblinking,1,merchantofvenice,1596\nwarranty,1,merchantofvenice,1596\ndislike,1,merchantofvenice,1596\nUse,1,merchantofvenice,1596\nbeheld,1,merchantofvenice,1596\ngusts,1,merchantofvenice,1596\ngods,1,merchantofvenice,1596\nravenous,1,merchantofvenice,1596\nfloods,1,merchantofvenice,1596\nMeantime,1,merchantofvenice,1596\nmeshes,1,merchantofvenice,1596\noppose,1,merchantofvenice,1596\ncommiseration,1,merchantofvenice,1596\nbleeding,1,merchantofvenice,1596\nled,1,merchantofvenice,1596\nfearfully,1,merchantofvenice,1596\nroaring,1,merchantofvenice,1596\nNeither,1,merchantofvenice,1596\npigeons,1,merchantofvenice,1596\nhedged,1,merchantofvenice,1596\nreputed,1,merchantofvenice,1596\ncolt,1,merchantofvenice,1596\nbrightly,1,merchantofvenice,1596\n'Farewell,1,merchantofvenice,1596\nskull,1,merchantofvenice,1596\nRoman,1,merchantofvenice,1596\ngrieved,1,merchantofvenice,1596\nCursed,1,merchantofvenice,1596\ncertified,1,merchantofvenice,1596\nbarren,1,merchantofvenice,1596\nunwearied,1,merchantofvenice,1596\nseason,1,merchantofvenice,1596\nwolvish,1,merchantofvenice,1596\n'amen',1,merchantofvenice,1596\nLastly,1,merchantofvenice,1596\nprotest,1,merchantofvenice,1596\nattendeth,1,merchantofvenice,1596\nafterward,1,merchantofvenice,1596\nMiss,1,merchantofvenice,1596\nbonnet,1,merchantofvenice,1596\nbestow,1,merchantofvenice,1596\ncoin,1,merchantofvenice,1596\npiper,1,merchantofvenice,1596\nJews,1,merchantofvenice,1596\nchanced,1,merchantofvenice,1596\nHearing,1,merchantofvenice,1596\nwilds,1,merchantofvenice,1596\nheated,1,merchantofvenice,1596\nTwo,1,merchantofvenice,1596\nparcel,1,merchantofvenice,1596\nscorned,1,merchantofvenice,1596\nregarded,1,merchantofvenice,1596\nspider,1,merchantofvenice,1596\nslow,1,merchantofvenice,1596\ndealings,1,merchantofvenice,1596\nNothing,1,merchantofvenice,1596\nconverting,1,merchantofvenice,1596\nlading,1,merchantofvenice,1596\nsleep,1,merchantofvenice,1596\nborrowed,1,merchantofvenice,1596\nRating,1,merchantofvenice,1596\npersuade,1,merchantofvenice,1596\nsuitor,1,merchantofvenice,1596\nfeasting,1,merchantofvenice,1596\nServe,1,merchantofvenice,1596\nlays,1,merchantofvenice,1596\nseated,1,merchantofvenice,1596\nwrite,1,merchantofvenice,1596\nmar,1,merchantofvenice,1596\nwands,1,merchantofvenice,1596\nconfound,1,merchantofvenice,1596\nexpressing,1,merchantofvenice,1596\nlimbs,1,merchantofvenice,1596\nperjury,1,merchantofvenice,1596\ngains,1,merchantofvenice,1596\ndulcet,1,merchantofvenice,1596\nheinous,1,merchantofvenice,1596\nGave,1,merchantofvenice,1596\nleast,1,merchantofvenice,1596\nthrifty,1,merchantofvenice,1596\nmercenary,1,merchantofvenice,1596\nbalance,1,merchantofvenice,1596\nconduct,1,merchantofvenice,1596\nrheum,1,merchantofvenice,1596\nconsequence,1,merchantofvenice,1596\nsmiling,1,merchantofvenice,1596\n'Hath,1,merchantofvenice,1596\nchristening,1,merchantofvenice,1596\nstarve,1,merchantofvenice,1596\nhighways,1,merchantofvenice,1596\nlaughed,1,merchantofvenice,1596\nMessenger,1,merchantofvenice,1596\n'Nearest,1,merchantofvenice,1596\nchosen,1,merchantofvenice,1596\ngelt,1,merchantofvenice,1596\ncourageous,1,merchantofvenice,1596\nheaded,1,merchantofvenice,1596\ndefendant,1,merchantofvenice,1596\nleaps,1,merchantofvenice,1596\nmisconstrued,1,merchantofvenice,1596\nglory,1,merchantofvenice,1596\nGrieve,1,merchantofvenice,1596\nreadiness,1,merchantofvenice,1596\nelbow,1,merchantofvenice,1596\nmeeting,1,merchantofvenice,1596\nmortifying,1,merchantofvenice,1596\ndetermine,1,merchantofvenice,1596\nrights,1,merchantofvenice,1596\nconjured,1,merchantofvenice,1596\nfrays,1,merchantofvenice,1596\nrepay,1,merchantofvenice,1596\nwhiter,1,merchantofvenice,1596\nExcept,1,merchantofvenice,1596\nanimals,1,merchantofvenice,1596\ndebtor,1,merchantofvenice,1596\nMen,1,merchantofvenice,1596\nmocked,1,merchantofvenice,1596\nflew,1,merchantofvenice,1596\ndebating,1,merchantofvenice,1596\nsimplicity,1,merchantofvenice,1596\nmocker,1,merchantofvenice,1596\nincision,1,merchantofvenice,1596\nlay'st,1,merchantofvenice,1596\nsever'd,1,merchantofvenice,1596\neleven,1,merchantofvenice,1596\nquarrels,1,merchantofvenice,1596\nwound,1,merchantofvenice,1596\n'love',1,merchantofvenice,1596\nquestion's,1,merchantofvenice,1596\nappropriation,1,merchantofvenice,1596\nOrpheus,1,merchantofvenice,1596\nAndrew,1,merchantofvenice,1596\non's,1,merchantofvenice,1596\nlion,1,merchantofvenice,1596\nenjoying,1,merchantofvenice,1596\nHates,1,merchantofvenice,1596\non't,1,merchantofvenice,1596\nBellario's,1,merchantofvenice,1596\nIndeed,1,merchantofvenice,1596\nlark,1,merchantofvenice,1596\n'Launcelot,1,merchantofvenice,1596\namorous,1,merchantofvenice,1596\ngrains,1,merchantofvenice,1596\nSleep,1,merchantofvenice,1596\nmannerly,1,merchantofvenice,1596\nGerman,1,merchantofvenice,1596\ndismiss,1,merchantofvenice,1596\ndeterminations,1,merchantofvenice,1596\nsometimes,1,merchantofvenice,1596\neaning,1,merchantofvenice,1596\nrasher,1,merchantofvenice,1596\nprettier,1,merchantofvenice,1596\nearliest,1,merchantofvenice,1596\nflat,1,merchantofvenice,1596\nthither,1,merchantofvenice,1596\ngravity,1,merchantofvenice,1596\ntickle,1,merchantofvenice,1596\nhighway,1,merchantofvenice,1596\nVII,1,merchantofvenice,1596\nbetimes,1,merchantofvenice,1596\nsuspect,1,merchantofvenice,1596\ncustomary,1,merchantofvenice,1596\nWithout,1,merchantofvenice,1596\npeep,1,merchantofvenice,1596\nbesides,1,merchantofvenice,1596\nNeapolitan's,1,merchantofvenice,1596\npagan,1,merchantofvenice,1596\nwhet,1,merchantofvenice,1596\nCommits,1,merchantofvenice,1596\nApril,1,merchantofvenice,1596\nhurt,1,merchantofvenice,1596\n'Via,1,merchantofvenice,1596\nimpart,1,merchantofvenice,1596\nsummary,1,merchantofvenice,1596\nprouder,1,merchantofvenice,1596\nappetite,1,merchantofvenice,1596\nTroyan,1,merchantofvenice,1596\nragged,1,merchantofvenice,1596\ncouching,1,merchantofvenice,1596\nwooers,1,merchantofvenice,1596\nmoe,1,merchantofvenice,1596\nsway'd,1,merchantofvenice,1596\nstray'd,1,merchantofvenice,1596\ntwentieth,1,merchantofvenice,1596\nfloor,1,merchantofvenice,1596\nleading,1,merchantofvenice,1596\nshrewd,1,merchantofvenice,1596\nCressid,1,merchantofvenice,1596\nrebels,1,merchantofvenice,1596\nDeath,1,merchantofvenice,1596\nassumes,1,merchantofvenice,1596\nmouths,1,merchantofvenice,1596\nreply,1,merchantofvenice,1596\ndenying,1,merchantofvenice,1596\nYou'll,1,merchantofvenice,1596\nenjoin'd,1,merchantofvenice,1596\npresage,1,merchantofvenice,1596\nshaft,1,merchantofvenice,1596\nemploy,1,merchantofvenice,1596\nfail'd,1,merchantofvenice,1596\nlaid,1,merchantofvenice,1596\ninstructions,1,merchantofvenice,1596\nhonour'd,1,merchantofvenice,1596\nsubstitute,1,merchantofvenice,1596\nharsh,1,merchantofvenice,1596\nhappily,1,merchantofvenice,1596\nhollaing,1,merchantofvenice,1596\nprincely,1,merchantofvenice,1596\nnightingale,1,merchantofvenice,1596\noffender's,1,merchantofvenice,1596\nboldest,1,merchantofvenice,1596\nperchance,1,merchantofvenice,1596\nshone,1,merchantofvenice,1596\nunworthier,1,merchantofvenice,1596\nmiseries,1,merchantofvenice,1596\ncondition'd,1,merchantofvenice,1596\npent,1,merchantofvenice,1596\nfifteen,1,merchantofvenice,1596\nivory,1,merchantofvenice,1596\ninstruction,1,merchantofvenice,1596\ndispatch,1,merchantofvenice,1596\ntop,1,merchantofvenice,1596\ndry,1,merchantofvenice,1596\nbegotten,1,merchantofvenice,1596\nlamb,1,merchantofvenice,1596\nproclamation,1,merchantofvenice,1596\nDRAMATIS,1,merchantofvenice,1596\nslew,1,merchantofvenice,1596\nLaban,1,merchantofvenice,1596\nsuccess,1,merchantofvenice,1596\nshift,1,merchantofvenice,1596\nPeering,1,merchantofvenice,1596\nprinces',1,merchantofvenice,1596\nshake,1,merchantofvenice,1596\nunlock'd,1,merchantofvenice,1596\nuncapable,1,merchantofvenice,1596\nToo,1,merchantofvenice,1596\nbechanced,1,merchantofvenice,1596\ndamn,1,merchantofvenice,1596\nbargain,1,merchantofvenice,1596\nrecord,1,merchantofvenice,1596\nfence,1,merchantofvenice,1596\nbrassy,1,merchantofvenice,1596\ndivided,1,merchantofvenice,1596\ngreatness,1,merchantofvenice,1596\ncrost,1,merchantofvenice,1596\nsmell,1,merchantofvenice,1596\nGoodwins,1,merchantofvenice,1596\n'good,1,merchantofvenice,1596\npirates,1,merchantofvenice,1596\nDrops,1,merchantofvenice,1596\ndew,1,merchantofvenice,1596\njealousy,1,merchantofvenice,1596\nimmured,1,merchantofvenice,1596\ncater,1,merchantofvenice,1596\ngloves,1,merchantofvenice,1596\nstomachs,1,merchantofvenice,1596\nmutual,1,merchantofvenice,1596\nhellish,1,merchantofvenice,1596\nTry,1,merchantofvenice,1596\ninjunctions,1,merchantofvenice,1596\nFall,1,merchantofvenice,1596\nremorse,1,merchantofvenice,1596\ncandles,1,merchantofvenice,1596\ncooling,1,merchantofvenice,1596\nforbear,1,merchantofvenice,1596\nremembrance,1,merchantofvenice,1596\nshape,1,merchantofvenice,1596\nspoils,1,merchantofvenice,1596\nParted,1,merchantofvenice,1596\nconspired,1,merchantofvenice,1596\nprivately,1,merchantofvenice,1596\ncrown,1,merchantofvenice,1596\nsandy,1,merchantofvenice,1596\ndim,1,merchantofvenice,1596\ncontain'd,1,merchantofvenice,1596\ne'en,1,merchantofvenice,1596\norder,1,merchantofvenice,1596\nturn'd,1,merchantofvenice,1596\nDesired,1,merchantofvenice,1596\nunlesson'd,1,merchantofvenice,1596\nnegro's,1,merchantofvenice,1596\nsharp,1,merchantofvenice,1596\ndegrees,1,merchantofvenice,1596\nwomen,1,merchantofvenice,1596\nsway,1,merchantofvenice,1596\nexeunt,1,merchantofvenice,1596\nswan,1,merchantofvenice,1596\nattended,2,merchantofvenice,1596\nheed,2,merchantofvenice,1596\nquality,2,merchantofvenice,1596\nforbid,2,merchantofvenice,1596\nQuick,2,merchantofvenice,1596\nfancy,2,merchantofvenice,1596\ntook,2,merchantofvenice,1596\ndescription,2,merchantofvenice,1596\nmotion,2,merchantofvenice,1596\nmightiest,2,merchantofvenice,1596\nleisure,2,merchantofvenice,1596\nHear,2,merchantofvenice,1596\ndouble,2,merchantofvenice,1596\nFrenchman,2,merchantofvenice,1596\nwrit,2,merchantofvenice,1596\nobtain'd,2,merchantofvenice,1596\nroyal,2,merchantofvenice,1596\nPortia's,2,merchantofvenice,1596\ndagger,2,merchantofvenice,1596\nhelp,2,merchantofvenice,1596\nthankfully,2,merchantofvenice,1596\ndoubtful,2,merchantofvenice,1596\nheart's,2,merchantofvenice,1596\nroad,2,merchantofvenice,1596\nvillain,2,merchantofvenice,1596\nMagnificoes,2,merchantofvenice,1596\nrhenish,2,merchantofvenice,1596\nSHYLOCK'S,2,merchantofvenice,1596\ntruly,2,merchantofvenice,1596\nfrowning,2,merchantofvenice,1596\nseason'd,2,merchantofvenice,1596\nbrook,2,merchantofvenice,1596\nBeshrew,2,merchantofvenice,1596\ncommodity,2,merchantofvenice,1596\npraising,2,merchantofvenice,1596\nalthough,2,merchantofvenice,1596\nEre,2,merchantofvenice,1596\nnought,2,merchantofvenice,1596\nnominated,2,merchantofvenice,1596\nMexico,2,merchantofvenice,1596\npress,2,merchantofvenice,1596\nlieu,2,merchantofvenice,1596\nstrumpet,2,merchantofvenice,1596\ntrust,2,merchantofvenice,1596\ncontrary,2,merchantofvenice,1596\nrated,2,merchantofvenice,1596\ngoest,2,merchantofvenice,1596\nteaches,2,merchantofvenice,1596\nattempt,2,merchantofvenice,1596\nExpress'd,2,merchantofvenice,1596\npassions,2,merchantofvenice,1596\nsurfeit,2,merchantofvenice,1596\ndrive,2,merchantofvenice,1596\nWhose,2,merchantofvenice,1596\nbearing,2,merchantofvenice,1596\noutside,2,merchantofvenice,1596\nstream,2,merchantofvenice,1596\nbagpipe,2,merchantofvenice,1596\ngracious,2,merchantofvenice,1596\ntrumpet,2,merchantofvenice,1596\nheat,2,merchantofvenice,1596\ncheek,2,merchantofvenice,1596\nwants,2,merchantofvenice,1596\nhearing,2,merchantofvenice,1596\nmadness,2,merchantofvenice,1596\nvisages,2,merchantofvenice,1596\nbragging,2,merchantofvenice,1596\nTarry,2,merchantofvenice,1596\nglass,2,merchantofvenice,1596\nveins,2,merchantofvenice,1596\nnoise,2,merchantofvenice,1596\nMethinks,2,merchantofvenice,1596\nbated,2,merchantofvenice,1596\nfreedom,2,merchantofvenice,1596\namity,2,merchantofvenice,1596\nAbram,2,merchantofvenice,1596\nfurther,2,merchantofvenice,1596\nshe's,2,merchantofvenice,1596\nshames,2,merchantofvenice,1596\nDuke,2,merchantofvenice,1596\nsit,2,merchantofvenice,1596\nstands,2,merchantofvenice,1596\n'twere,2,merchantofvenice,1596\nfleet,2,merchantofvenice,1596\nbastard,2,merchantofvenice,1596\nwalk,2,merchantofvenice,1596\nmonarch,2,merchantofvenice,1596\ntouches,2,merchantofvenice,1596\nnine,2,merchantofvenice,1596\nhalter,2,merchantofvenice,1596\nchurch,2,merchantofvenice,1596\nwinds,2,merchantofvenice,1596\nsubject,2,merchantofvenice,1596\nlivery,2,merchantofvenice,1596\ndeserts,2,merchantofvenice,1596\nwager,2,merchantofvenice,1596\nwings,2,merchantofvenice,1596\nAttendants,2,merchantofvenice,1596\ndaughter's,2,merchantofvenice,1596\nstuck,2,merchantofvenice,1596\nergo,2,merchantofvenice,1596\ngaoler,2,merchantofvenice,1596\nvile,2,merchantofvenice,1596\nmerit,2,merchantofvenice,1596\nheavens,2,merchantofvenice,1596\nMorocco,2,merchantofvenice,1596\nconceit,2,merchantofvenice,1596\nborn,2,merchantofvenice,1596\nbliss,2,merchantofvenice,1596\ndirect,2,merchantofvenice,1596\nTurn,2,merchantofvenice,1596\nexceeding,2,merchantofvenice,1596\ncommit,2,merchantofvenice,1596\nPardon,2,merchantofvenice,1596\nwhite,2,merchantofvenice,1596\n'Tween,2,merchantofvenice,1596\ndirected,2,merchantofvenice,1596\nclaim,2,merchantofvenice,1596\nmalice,2,merchantofvenice,1596\naccept,2,merchantofvenice,1596\nOld,2,merchantofvenice,1596\nrude,2,merchantofvenice,1596\ntitle,2,merchantofvenice,1596\nmirth,2,merchantofvenice,1596\nlength,2,merchantofvenice,1596\nstead,2,merchantofvenice,1596\nhates,2,merchantofvenice,1596\nDiana,2,merchantofvenice,1596\nturned,2,merchantofvenice,1596\ncustom,2,merchantofvenice,1596\nsooth,2,merchantofvenice,1596\ninfidel,2,merchantofvenice,1596\npierce,2,merchantofvenice,1596\npretty,2,merchantofvenice,1596\nmeat,2,merchantofvenice,1596\nruled,2,merchantofvenice,1596\nmanly,2,merchantofvenice,1596\nbright,2,merchantofvenice,1596\noffers,2,merchantofvenice,1596\naspect,2,merchantofvenice,1596\nunquiet,2,merchantofvenice,1596\nurge,2,merchantofvenice,1596\nauthority,2,merchantofvenice,1596\nside,2,merchantofvenice,1596\nmanners,2,merchantofvenice,1596\nCertainly,2,merchantofvenice,1596\nhas,2,merchantofvenice,1596\nsynagogue,2,merchantofvenice,1596\nsign,2,merchantofvenice,1596\noffend,2,merchantofvenice,1596\nsigh,2,merchantofvenice,1596\nmeasure,2,merchantofvenice,1596\nAt,2,merchantofvenice,1596\n'Twere,2,merchantofvenice,1596\nacquitted,2,merchantofvenice,1596\nfool's,2,merchantofvenice,1596\nhang'd,2,merchantofvenice,1596\nsurety,2,merchantofvenice,1596\npatience,2,merchantofvenice,1596\nstrangers,2,merchantofvenice,1596\ndeeds,2,merchantofvenice,1596\nbag,2,merchantofvenice,1596\nsensible,2,merchantofvenice,1596\nkings,2,merchantofvenice,1596\ncruel,2,merchantofvenice,1596\ngossip,2,merchantofvenice,1596\nkept,2,merchantofvenice,1596\ncreature,2,merchantofvenice,1596\nlottery,2,merchantofvenice,1596\ntales,2,merchantofvenice,1596\nsings,2,merchantofvenice,1596\nHer,2,merchantofvenice,1596\nhip,2,merchantofvenice,1596\nchanged,2,merchantofvenice,1596\ncooled,2,merchantofvenice,1596\nhit,2,merchantofvenice,1596\nbeg,2,merchantofvenice,1596\npleasure,2,merchantofvenice,1596\nenter,2,merchantofvenice,1596\ndeserved,2,merchantofvenice,1596\ntribute,2,merchantofvenice,1596\nsport,2,merchantofvenice,1596\ncasements,2,merchantofvenice,1596\npast,2,merchantofvenice,1596\npass,2,merchantofvenice,1596\npig,2,merchantofvenice,1596\nelection,2,merchantofvenice,1596\nIs't,2,merchantofvenice,1596\nDing,2,merchantofvenice,1596\nJewish,2,merchantofvenice,1596\ndressed,2,merchantofvenice,1596\nsits,2,merchantofvenice,1596\nSalarino,2,merchantofvenice,1596\nabsent,2,merchantofvenice,1596\nmetal,2,merchantofvenice,1596\nbell,2,merchantofvenice,1596\nawards,2,merchantofvenice,1596\ngoodly,2,merchantofvenice,1596\nimmediately,2,merchantofvenice,1596\nyon,2,merchantofvenice,1596\ngaze,2,merchantofvenice,1596\nsigniors,2,merchantofvenice,1596\npeople,2,merchantofvenice,1596\ncourtesies,2,merchantofvenice,1596\nsuddenly,2,merchantofvenice,1596\njust,2,merchantofvenice,1596\nfifth,2,merchantofvenice,1596\ntedious,2,merchantofvenice,1596\ndoctor's,2,merchantofvenice,1596\nworship's,2,merchantofvenice,1596\nAbout,2,merchantofvenice,1596\nsins,2,merchantofvenice,1596\ngate,2,merchantofvenice,1596\ndeservings,2,merchantofvenice,1596\nscrubbed,2,merchantofvenice,1596\nashamed,2,merchantofvenice,1596\nargosies,2,merchantofvenice,1596\nsaid,2,merchantofvenice,1596\nstore,2,merchantofvenice,1596\nAlcides,2,merchantofvenice,1596\nPalatine,2,merchantofvenice,1596\nvirgin,2,merchantofvenice,1596\ndeep,2,merchantofvenice,1596\ninstant,2,merchantofvenice,1596\nstay'd,2,merchantofvenice,1596\nmiles,2,merchantofvenice,1596\nCannot,2,merchantofvenice,1596\nbreast,2,merchantofvenice,1596\ngallows,2,merchantofvenice,1596\nservant,2,merchantofvenice,1596\nrepent,2,merchantofvenice,1596\nHere's,2,merchantofvenice,1596\nfavour,2,merchantofvenice,1596\ndwell,2,merchantofvenice,1596\nchoosing,2,merchantofvenice,1596\nthrive,2,merchantofvenice,1596\nmemory,2,merchantofvenice,1596\ncruelty,2,merchantofvenice,1596\nthyself,2,merchantofvenice,1596\ndoor,2,merchantofvenice,1596\ndong,2,merchantofvenice,1596\ncommend,2,merchantofvenice,1596\nnecessity,2,merchantofvenice,1596\nabide,2,merchantofvenice,1596\nteaching,2,merchantofvenice,1596\nargosy,2,merchantofvenice,1596\nJasons,2,merchantofvenice,1596\nage,2,merchantofvenice,1596\nlover,2,merchantofvenice,1596\nstillness,2,merchantofvenice,1596\nloud,2,merchantofvenice,1596\nYea,2,merchantofvenice,1596\nspeak'st,2,merchantofvenice,1596\nspent,2,merchantofvenice,1596\nafternoon,2,merchantofvenice,1596\ngreater,2,merchantofvenice,1596\nusance,2,merchantofvenice,1596\nhot,2,merchantofvenice,1596\nhark,2,merchantofvenice,1596\neasy,2,merchantofvenice,1596\nhue,2,merchantofvenice,1596\nround,2,merchantofvenice,1596\nshut,2,merchantofvenice,1596\nMoor,2,merchantofvenice,1596\nschool,2,merchantofvenice,1596\nexcuse,2,merchantofvenice,1596\npluck,2,merchantofvenice,1596\ncommendable,2,merchantofvenice,1596\nstranger,2,merchantofvenice,1596\ndelight,2,merchantofvenice,1596\nforsworn,2,merchantofvenice,1596\nalive,2,merchantofvenice,1596\ndismay,2,merchantofvenice,1596\nrings,2,merchantofvenice,1596\nproper,2,merchantofvenice,1596\nmoan,2,merchantofvenice,1596\nfood,2,merchantofvenice,1596\ncontain,2,merchantofvenice,1596\nsignior,2,merchantofvenice,1596\nbearer,2,merchantofvenice,1596\nexcess,2,merchantofvenice,1596\nfond,2,merchantofvenice,1596\nrightly,2,merchantofvenice,1596\nerror,2,merchantofvenice,1596\nsecret,2,merchantofvenice,1596\nchance,2,merchantofvenice,1596\nliveries,2,merchantofvenice,1596\ninquire,2,merchantofvenice,1596\nfed,2,merchantofvenice,1596\ntouch,2,merchantofvenice,1596\n'you,2,merchantofvenice,1596\nbehavior,2,merchantofvenice,1596\nvarnish'd,2,merchantofvenice,1596\nhere's,2,merchantofvenice,1596\nhumbleness,2,merchantofvenice,1596\nborrow,2,merchantofvenice,1596\noften,2,merchantofvenice,1596\noccasion,2,merchantofvenice,1596\nequal,2,merchantofvenice,1596\ndestiny,2,merchantofvenice,1596\nmain,2,merchantofvenice,1596\nBecome,2,merchantofvenice,1596\ntarry,2,merchantofvenice,1596\nnay,2,merchantofvenice,1596\nscant,2,merchantofvenice,1596\nrank,2,merchantofvenice,1596\nempty,2,merchantofvenice,1596\nrams,2,merchantofvenice,1596\nlords,2,merchantofvenice,1596\nexpress'd,2,merchantofvenice,1596\nwater,2,merchantofvenice,1596\nthinks,2,merchantofvenice,1596\nnose,2,merchantofvenice,1596\nproverb,2,merchantofvenice,1596\nrare,2,merchantofvenice,1596\nlocks,2,merchantofvenice,1596\ncurtains,2,merchantofvenice,1596\nrats,2,merchantofvenice,1596\nducat,2,merchantofvenice,1596\ntender,2,merchantofvenice,1596\nbeard,2,merchantofvenice,1596\nours,2,merchantofvenice,1596\nsirrah,2,merchantofvenice,1596\nspecify,2,merchantofvenice,1596\nLove,2,merchantofvenice,1596\nSit,2,merchantofvenice,1596\nalter,2,merchantofvenice,1596\nnarrow,2,merchantofvenice,1596\nstays,2,merchantofvenice,1596\nmisery,2,merchantofvenice,1596\nevermore,2,merchantofvenice,1596\nawhile,2,merchantofvenice,1596\nspurn,2,merchantofvenice,1596\ntowards,2,merchantofvenice,1596\nsacrifice,2,merchantofvenice,1596\nprize,2,merchantofvenice,1596\nsaving,2,merchantofvenice,1596\nknave,2,merchantofvenice,1596\nfoolish,2,merchantofvenice,1596\nwoven,2,merchantofvenice,1596\nbeggar,2,merchantofvenice,1596\nbloody,2,merchantofvenice,1596\ndearest,2,merchantofvenice,1596\nissue,2,merchantofvenice,1596\nattribute,2,merchantofvenice,1596\nlet's,2,merchantofvenice,1596\nwoo,2,merchantofvenice,1596\nleaden,2,merchantofvenice,1596\nblow,2,merchantofvenice,1596\nstarved,2,merchantofvenice,1596\nchaff,2,merchantofvenice,1596\nthief,2,merchantofvenice,1596\nfish,2,merchantofvenice,1596\ndischarge,2,merchantofvenice,1596\nBeing,2,merchantofvenice,1596\nletters,2,merchantofvenice,1596\ntrouble,2,merchantofvenice,1596\nstake,2,merchantofvenice,1596\nliving,2,merchantofvenice,1596\nbreed,2,merchantofvenice,1596\ntaste,2,merchantofvenice,1596\nclose,2,merchantofvenice,1596\nmaids,2,merchantofvenice,1596\nproved,2,merchantofvenice,1596\ngrave,2,merchantofvenice,1596\nexample,2,merchantofvenice,1596\n'My,2,merchantofvenice,1596\nWe'll,2,merchantofvenice,1596\nmorrow,2,merchantofvenice,1596\nallay,2,merchantofvenice,1596\nbestow'd,2,merchantofvenice,1596\nDear,2,merchantofvenice,1596\nclock,2,merchantofvenice,1596\nflight,2,merchantofvenice,1596\nsave,2,merchantofvenice,1596\nwidows,2,merchantofvenice,1596\nheavy,2,merchantofvenice,1596\nHebrew,2,merchantofvenice,1596\nbelieve,2,merchantofvenice,1596\nable,2,merchantofvenice,1596\nbleed,2,merchantofvenice,1596\nsufferance,2,merchantofvenice,1596\nrage,2,merchantofvenice,1596\nwanton,2,merchantofvenice,1596\nimposition,2,merchantofvenice,1596\nprice,2,merchantofvenice,1596\nconfiscate,2,merchantofvenice,1596\nmultitude,2,merchantofvenice,1596\ngrossly,2,merchantofvenice,1596\nMargery,2,merchantofvenice,1596\nwatery,2,merchantofvenice,1596\nserved,2,merchantofvenice,1596\nBalthasar,2,merchantofvenice,1596\nearthly,2,merchantofvenice,1596\nwondrous,2,merchantofvenice,1596\nwife's,2,merchantofvenice,1596\nwolf,2,merchantofvenice,1596\ndrops,2,merchantofvenice,1596\nserves,2,merchantofvenice,1596\nuttermost,2,merchantofvenice,1596\nope,2,merchantofvenice,1596\nfollowers,2,merchantofvenice,1596\nPresenting,2,merchantofvenice,1596\ngrieve,2,merchantofvenice,1596\nevil,2,merchantofvenice,1596\nMake,2,merchantofvenice,1596\nMany,2,merchantofvenice,1596\ngiving,2,merchantofvenice,1596\nmodesty,2,merchantofvenice,1596\nTill,2,merchantofvenice,1596\nThat's,2,merchantofvenice,1596\nsaint,2,merchantofvenice,1596\nwilful,2,merchantofvenice,1596\nanswers,2,merchantofvenice,1596\nfly,2,merchantofvenice,1596\nesteem'd,2,merchantofvenice,1596\nimpeach,2,merchantofvenice,1596\ngazing,2,merchantofvenice,1596\npassion,2,merchantofvenice,1596\nvow,2,merchantofvenice,1596\nprofit,2,merchantofvenice,1596\nfill,2,merchantofvenice,1596\nassume,2,merchantofvenice,1596\nbark,2,merchantofvenice,1596\nbare,2,merchantofvenice,1596\nta'en,2,merchantofvenice,1596\nwide,2,merchantofvenice,1596\n'Budge,2,merchantofvenice,1596\npartly,2,merchantofvenice,1596\nbase,2,merchantofvenice,1596\nundervalued,2,merchantofvenice,1596\npublic,2,merchantofvenice,1596\nfriendship,2,merchantofvenice,1596\nWednesday,2,merchantofvenice,1596\nhood,2,merchantofvenice,1596\ntrains,2,merchantofvenice,1596\ndam,2,merchantofvenice,1596\nconstant,2,merchantofvenice,1596\narm'd,2,merchantofvenice,1596\ngentlemen,2,merchantofvenice,1596\nsufficient,2,merchantofvenice,1596\nshoot,2,merchantofvenice,1596\ncreep,2,merchantofvenice,1596\nholds,2,merchantofvenice,1596\nclear,2,merchantofvenice,1596\nNone,2,merchantofvenice,1596\nfollows,2,merchantofvenice,1596\nrequest,2,merchantofvenice,1596\nflood,2,merchantofvenice,1596\nlives,2,merchantofvenice,1596\ncommonwealth,2,merchantofvenice,1596\nentrap,2,merchantofvenice,1596\nwriting,2,merchantofvenice,1596\nnotwithstanding,2,merchantofvenice,1596\nprayers,2,merchantofvenice,1596\nseas,2,merchantofvenice,1596\nseat,2,merchantofvenice,1596\nhairs,2,merchantofvenice,1596\nsweat,2,merchantofvenice,1596\naloof,2,merchantofvenice,1596\nPrince,2,merchantofvenice,1596\nconverse,2,merchantofvenice,1596\ndecree,2,merchantofvenice,1596\npronounced,2,merchantofvenice,1596\nseem,2,merchantofvenice,1596\neither,2,merchantofvenice,1596\npresence,2,merchantofvenice,1596\nTruly,2,merchantofvenice,1596\nLie,2,merchantofvenice,1596\nvessel,2,merchantofvenice,1596\ntells,2,merchantofvenice,1596\ncost,2,merchantofvenice,1596\nfellows,2,merchantofvenice,1596\nEnglish,2,merchantofvenice,1596\nwearies,2,merchantofvenice,1596\nheavenly,2,merchantofvenice,1596\nheels,2,merchantofvenice,1596\ntherein,2,merchantofvenice,1596\nblame,2,merchantofvenice,1596\ncurtain,2,merchantofvenice,1596\nbait,2,merchantofvenice,1596\ncountrymen,2,merchantofvenice,1596\nsuffice,2,merchantofvenice,1596\nport,2,merchantofvenice,1596\nlovers,2,merchantofvenice,1596\nfairly,2,merchantofvenice,1596\nindirectly,2,merchantofvenice,1596\nsell,2,merchantofvenice,1596\nposy,2,merchantofvenice,1596\nbankrupt,2,merchantofvenice,1596\nhither,2,merchantofvenice,1596\ngoes,2,merchantofvenice,1596\nchose,2,merchantofvenice,1596\nmatch,2,merchantofvenice,1596\ncurrish,2,merchantofvenice,1596\nMistress,2,merchantofvenice,1596\nmaster's,2,merchantofvenice,1596\nbags,2,merchantofvenice,1596\nbrow,2,merchantofvenice,1596\ntorch,2,merchantofvenice,1596\neat,2,merchantofvenice,1596\npetty,2,merchantofvenice,1596\n'scape,2,merchantofvenice,1596\nunlike,2,merchantofvenice,1596\ntrusted,2,merchantofvenice,1596\nsadness,2,merchantofvenice,1596\nbargains,2,merchantofvenice,1596\nmerciful,2,merchantofvenice,1596\nladies,2,merchantofvenice,1596\nparrots,2,merchantofvenice,1596\nheartily,2,merchantofvenice,1596\nlips,2,merchantofvenice,1596\nAway,2,merchantofvenice,1596\nbethink,2,merchantofvenice,1596\nfashion,2,merchantofvenice,1596\nharmony,2,merchantofvenice,1596\ncredit,2,merchantofvenice,1596\nbeauty,2,merchantofvenice,1596\nchooses,2,merchantofvenice,1596\nsailors,2,merchantofvenice,1596\nextend,2,merchantofvenice,1596\nhuman,2,merchantofvenice,1596\nsuited,2,merchantofvenice,1596\ncorners,2,merchantofvenice,1596\nbooks,2,merchantofvenice,1596\ntry,2,merchantofvenice,1596\nThy,2,merchantofvenice,1596\nattend,2,merchantofvenice,1596\ndark,2,merchantofvenice,1596\nweigh,2,merchantofvenice,1596\nweight,2,merchantofvenice,1596\ncatch,2,merchantofvenice,1596\nland,2,merchantofvenice,1596\nlord's,2,merchantofvenice,1596\nArragon,2,merchantofvenice,1596\nreverend,2,merchantofvenice,1596\ninstantly,2,merchantofvenice,1596\nbehold,2,merchantofvenice,1596\nParts,2,merchantofvenice,1596\nambitious,2,merchantofvenice,1596\ntrees,2,merchantofvenice,1596\ncreditors,2,merchantofvenice,1596\ncross,2,merchantofvenice,1596\ncommand,2,merchantofvenice,1596\ntainted,2,merchantofvenice,1596\nkill,2,merchantofvenice,1596\ncharity,2,merchantofvenice,1596\ngear,2,merchantofvenice,1596\nneighbour,2,merchantofvenice,1596\nbids,2,merchantofvenice,1596\ndirection,2,merchantofvenice,1596\nwouldst,2,merchantofvenice,1596\nvilely,2,merchantofvenice,1596\ntreason,3,merchantofvenice,1596\nparted,3,merchantofvenice,1596\nadvised,3,merchantofvenice,1596\nV,3,merchantofvenice,1596\ndebts,3,merchantofvenice,1596\npity,3,merchantofvenice,1596\ndrop,3,merchantofvenice,1596\nFie,3,merchantofvenice,1596\nWhether,3,merchantofvenice,1596\nhell,3,merchantofvenice,1596\nsleeps,3,merchantofvenice,1596\nhonourable,3,merchantofvenice,1596\ntears,3,merchantofvenice,1596\nrichly,3,merchantofvenice,1596\ncalls,3,merchantofvenice,1596\nsort,3,merchantofvenice,1596\ncare,3,merchantofvenice,1596\nsoon,3,merchantofvenice,1596\nyourself,3,merchantofvenice,1596\nyears,3,merchantofvenice,1596\njudge's,3,merchantofvenice,1596\ngrows,3,merchantofvenice,1596\nprop,3,merchantofvenice,1596\npurse,3,merchantofvenice,1596\nOnly,3,merchantofvenice,1596\ngross,3,merchantofvenice,1596\nmaking,3,merchantofvenice,1596\nBALTHASAR,3,merchantofvenice,1596\nsin,3,merchantofvenice,1596\nfleece,3,merchantofvenice,1596\nkey,3,merchantofvenice,1596\ndeceived,3,merchantofvenice,1596\nperil,3,merchantofvenice,1596\nFarewell,3,merchantofvenice,1596\nWas,3,merchantofvenice,1596\nacquainted,3,merchantofvenice,1596\nlooks,3,merchantofvenice,1596\nthieves,3,merchantofvenice,1596\nworst,3,merchantofvenice,1596\nThese,3,merchantofvenice,1596\nturning,3,merchantofvenice,1596\nmerchants,3,merchantofvenice,1596\nOut,3,merchantofvenice,1596\nOur,3,merchantofvenice,1596\nways,3,merchantofvenice,1596\ncommon,3,merchantofvenice,1596\nhabit,3,merchantofvenice,1596\nabsence,3,merchantofvenice,1596\nfault,3,merchantofvenice,1596\nfalls,3,merchantofvenice,1596\nWherein,3,merchantofvenice,1596\nsun,3,merchantofvenice,1596\nreverence,3,merchantofvenice,1596\nswore,3,merchantofvenice,1596\nbrief,3,merchantofvenice,1596\nancient,3,merchantofvenice,1596\nfalse,3,merchantofvenice,1596\nwine,3,merchantofvenice,1596\ndies,3,merchantofvenice,1596\nruin,3,merchantofvenice,1596\nThough,3,merchantofvenice,1596\nbold,3,merchantofvenice,1596\nanon,3,merchantofvenice,1596\nThere's,3,merchantofvenice,1596\nFrench,3,merchantofvenice,1596\nscarce,3,merchantofvenice,1596\nshortly,3,merchantofvenice,1596\nStill,3,merchantofvenice,1596\nhopes,3,merchantofvenice,1596\nbad,3,merchantofvenice,1596\nbar,3,merchantofvenice,1596\ngratis,3,merchantofvenice,1596\ncanst,3,merchantofvenice,1596\nvoid,3,merchantofvenice,1596\nbrings,3,merchantofvenice,1596\nshines,3,merchantofvenice,1596\nhid,3,merchantofvenice,1596\nwisdom,3,merchantofvenice,1596\nWithin,3,merchantofvenice,1596\nblest,3,merchantofvenice,1596\nbless,3,merchantofvenice,1596\nwhole,3,merchantofvenice,1596\ncourteous,3,merchantofvenice,1596\ngod,3,merchantofvenice,1596\nsorry,3,merchantofvenice,1596\nbehind,3,merchantofvenice,1596\nkindness,3,merchantofvenice,1596\ncat,3,merchantofvenice,1596\nbreathing,3,merchantofvenice,1596\nornament,3,merchantofvenice,1596\nanything,3,merchantofvenice,1596\ntwice,3,merchantofvenice,1596\nbuy,3,merchantofvenice,1596\nherein,3,merchantofvenice,1596\nlonger,3,merchantofvenice,1596\npicture,3,merchantofvenice,1596\nsing,3,merchantofvenice,1596\nforgive,3,merchantofvenice,1596\nFortune,3,merchantofvenice,1596\nair,3,merchantofvenice,1596\nembraced,3,merchantofvenice,1596\ncarrion,3,merchantofvenice,1596\nstood,3,merchantofvenice,1596\ndebt,3,merchantofvenice,1596\nUnless,3,merchantofvenice,1596\nliberal,3,merchantofvenice,1596\nBesides,3,merchantofvenice,1596\nhands,3,merchantofvenice,1596\nmakest,3,merchantofvenice,1596\nay,3,merchantofvenice,1596\nfourscore,3,merchantofvenice,1596\nmonth,3,merchantofvenice,1596\naccount,3,merchantofvenice,1596\nloss,3,merchantofvenice,1596\nact,3,merchantofvenice,1596\noutward,3,merchantofvenice,1596\nspeaks,3,merchantofvenice,1596\nkeen,3,merchantofvenice,1596\nnation,3,merchantofvenice,1596\nMore,3,merchantofvenice,1596\nHercules,3,merchantofvenice,1596\nthrift,3,merchantofvenice,1596\nhusband's,3,merchantofvenice,1596\nsuitors,3,merchantofvenice,1596\nprovided,3,merchantofvenice,1596\nmiscarried,3,merchantofvenice,1596\ncourse,3,merchantofvenice,1596\nask,3,merchantofvenice,1596\nreturn'd,3,merchantofvenice,1596\nspit,3,merchantofvenice,1596\nbosom,3,merchantofvenice,1596\ngirl,3,merchantofvenice,1596\nmayst,3,merchantofvenice,1596\nfurnish,3,merchantofvenice,1596\npurchased,3,merchantofvenice,1596\nnaughty,3,merchantofvenice,1596\ntried,3,merchantofvenice,1596\nthrough,3,merchantofvenice,1596\nventure,3,merchantofvenice,1596\ncontains,3,merchantofvenice,1596\nscroll,3,merchantofvenice,1596\nrate,3,merchantofvenice,1596\ndeserving,3,merchantofvenice,1596\nbears,3,merchantofvenice,1596\newes,3,merchantofvenice,1596\nyear,3,merchantofvenice,1596\nAlack,3,merchantofvenice,1596\nsubstance,3,merchantofvenice,1596\nlearning,3,merchantofvenice,1596\naffections,3,merchantofvenice,1596\nyou'll,3,merchantofvenice,1596\nmasque,3,merchantofvenice,1596\nfreely,3,merchantofvenice,1596\nDoth,3,merchantofvenice,1596\nprecious,3,merchantofvenice,1596\nSee,3,merchantofvenice,1596\nSola,3,merchantofvenice,1596\nLook,3,merchantofvenice,1596\ndoors,3,merchantofvenice,1596\nalready,3,merchantofvenice,1596\n'gainst,3,merchantofvenice,1596\nAll,3,merchantofvenice,1596\nFather,3,merchantofvenice,1596\nthere's,3,merchantofvenice,1596\nmark,3,merchantofvenice,1596\nknown,3,merchantofvenice,1596\nneed,3,merchantofvenice,1596\nsearch,3,merchantofvenice,1596\ntrifle,3,merchantofvenice,1596\ndesires,3,merchantofvenice,1596\no'clock,3,merchantofvenice,1596\nwealthy,3,merchantofvenice,1596\nItaly,3,merchantofvenice,1596\npause,3,merchantofvenice,1596\nwin,3,merchantofvenice,1596\noft,3,merchantofvenice,1596\nTripolis,3,merchantofvenice,1596\nloving,3,merchantofvenice,1596\nSay,3,merchantofvenice,1596\nThus,3,merchantofvenice,1596\nstaff,3,merchantofvenice,1596\nCan,3,merchantofvenice,1596\nreceive,3,merchantofvenice,1596\ndanger,3,merchantofvenice,1596\nhappy,3,merchantofvenice,1596\nenforced,3,merchantofvenice,1596\ntaken,3,merchantofvenice,1596\nangel,3,merchantofvenice,1596\ndumb,3,merchantofvenice,1596\nwaste,3,merchantofvenice,1596\ncover,3,merchantofvenice,1596\nground,3,merchantofvenice,1596\nrack,3,merchantofvenice,1596\nwork,3,merchantofvenice,1596\nfie,3,merchantofvenice,1596\noffices,3,merchantofvenice,1596\nfine,3,merchantofvenice,1596\nribs,3,merchantofvenice,1596\nFare,3,merchantofvenice,1596\ntail,3,merchantofvenice,1596\nherself,3,merchantofvenice,1596\nmeaning,3,merchantofvenice,1596\ndangerous,3,merchantofvenice,1596\ncur,3,merchantofvenice,1596\ngaping,3,merchantofvenice,1596\ngives,3,merchantofvenice,1596\nsatisfied,3,merchantofvenice,1596\nalong,3,merchantofvenice,1596\nalone,3,merchantofvenice,1596\nfairer,3,merchantofvenice,1596\neyed,3,merchantofvenice,1596\nwe'll,3,merchantofvenice,1596\ncondition,3,merchantofvenice,1596\nBelieve,3,merchantofvenice,1596\nestimation,3,merchantofvenice,1596\nsouls,3,merchantofvenice,1596\naccording,3,merchantofvenice,1596\npost,3,merchantofvenice,1596\nwhilst,3,merchantofvenice,1596\nsend,3,merchantofvenice,1596\nsent,3,merchantofvenice,1596\ncold,3,merchantofvenice,1596\npork,3,merchantofvenice,1596\nmerchandise,3,merchantofvenice,1596\nuntil,3,merchantofvenice,1596\nprincipal,3,merchantofvenice,1596\nsealed,3,merchantofvenice,1596\nabroad,3,merchantofvenice,1596\nafeard,3,merchantofvenice,1596\nClerk,3,merchantofvenice,1596\nlearn,3,merchantofvenice,1596\ndread,3,merchantofvenice,1596\nremember,3,merchantofvenice,1596\nStephano,3,merchantofvenice,1596\nlate,3,merchantofvenice,1596\nnature,3,merchantofvenice,1596\nJustice,3,merchantofvenice,1596\ndwells,3,merchantofvenice,1596\nJacob's,3,merchantofvenice,1596\nsentence,3,merchantofvenice,1596\nwitness,3,merchantofvenice,1596\nrespect,3,merchantofvenice,1596\ndue,3,merchantofvenice,1596\nrocks,3,merchantofvenice,1596\nBring,3,merchantofvenice,1596\nshame,3,merchantofvenice,1596\nking,3,merchantofvenice,1596\noaths,3,merchantofvenice,1596\nmerchant's,3,merchantofvenice,1596\ne'er,3,merchantofvenice,1596\nenemy,3,merchantofvenice,1596\nsummer,3,merchantofvenice,1596\nhorse,4,merchantofvenice,1596\nbusiness,4,merchantofvenice,1596\nNever,4,merchantofvenice,1596\nMust,4,merchantofvenice,1596\nlodging,4,merchantofvenice,1596\nlaugh,4,merchantofvenice,1596\nlies,4,merchantofvenice,1596\ndamned,4,merchantofvenice,1596\nJacob,4,merchantofvenice,1596\ncharge,4,merchantofvenice,1596\ntoward,4,merchantofvenice,1596\ncheer,4,merchantofvenice,1596\ncomplexion,4,merchantofvenice,1596\nyield,4,merchantofvenice,1596\nSuch,4,merchantofvenice,1596\nsecond,4,merchantofvenice,1596\nMusic,4,merchantofvenice,1596\nread,4,merchantofvenice,1596\nVenetian,4,merchantofvenice,1596\nfellow,4,merchantofvenice,1596\nterms,4,merchantofvenice,1596\nworthy,4,merchantofvenice,1596\nservice,4,merchantofvenice,1596\nothers,4,merchantofvenice,1596\nmoneys,4,merchantofvenice,1596\nsteal,4,merchantofvenice,1596\nstop,4,merchantofvenice,1596\namong,4,merchantofvenice,1596\nplea,4,merchantofvenice,1596\nOn,4,merchantofvenice,1596\nsince,4,merchantofvenice,1596\nIV,4,merchantofvenice,1596\nhusbands,4,merchantofvenice,1596\ngoods,4,merchantofvenice,1596\nears,4,merchantofvenice,1596\nprove,4,merchantofvenice,1596\ndifference,4,merchantofvenice,1596\nshadow,4,merchantofvenice,1596\nfarewell,4,merchantofvenice,1596\npains,4,merchantofvenice,1596\nLike,4,merchantofvenice,1596\ni',4,merchantofvenice,1596\nGod's,4,merchantofvenice,1596\nsail,4,merchantofvenice,1596\nbreath,4,merchantofvenice,1596\nconfess,4,merchantofvenice,1596\ngift,4,merchantofvenice,1596\njewels,4,merchantofvenice,1596\nneeds,4,merchantofvenice,1596\ngain,4,merchantofvenice,1596\nLEONARDO,4,merchantofvenice,1596\npossess'd,4,merchantofvenice,1596\nfeast,4,merchantofvenice,1596\nwhereof,4,merchantofvenice,1596\ntrain,4,merchantofvenice,1596\nmoon,4,merchantofvenice,1596\nho,4,merchantofvenice,1596\nlest,4,merchantofvenice,1596\nill,4,merchantofvenice,1596\nGenoa,4,merchantofvenice,1596\nready,4,merchantofvenice,1596\nmessenger,4,merchantofvenice,1596\nsignify,4,merchantofvenice,1596\nappears,4,merchantofvenice,1596\nFirst,4,merchantofvenice,1596\nhate,4,merchantofvenice,1596\nfoot,4,merchantofvenice,1596\nrevenge,4,merchantofvenice,1596\nye,4,merchantofvenice,1596\nfee,4,merchantofvenice,1596\ntribe,4,merchantofvenice,1596\nhaving,4,merchantofvenice,1596\nchange,4,merchantofvenice,1596\nInto,4,merchantofvenice,1596\nwatch,4,merchantofvenice,1596\nluck,4,merchantofvenice,1596\nventures,4,merchantofvenice,1596\nsilence,4,merchantofvenice,1596\nnote,4,merchantofvenice,1596\nalmost,4,merchantofvenice,1596\nFlourish,4,merchantofvenice,1596\nestate,4,merchantofvenice,1596\ncandle,4,merchantofvenice,1596\nChristians,4,merchantofvenice,1596\nchild,4,merchantofvenice,1596\nover,4,merchantofvenice,1596\nsand,4,merchantofvenice,1596\nfire,4,merchantofvenice,1596\nthine,4,merchantofvenice,1596\nknife,4,merchantofvenice,1596\nupright,4,merchantofvenice,1596\nthemselves,4,merchantofvenice,1596\nwont,4,merchantofvenice,1596\ndull,4,merchantofvenice,1596\nwaters,4,merchantofvenice,1596\nsober,4,merchantofvenice,1596\ntable,4,merchantofvenice,1596\nfall,4,merchantofvenice,1596\nmethinks,4,merchantofvenice,1596\nmarried,4,merchantofvenice,1596\nshows,4,merchantofvenice,1596\nwives,4,merchantofvenice,1596\nfast,4,merchantofvenice,1596\nfare,4,merchantofvenice,1596\ngiven,4,merchantofvenice,1596\nEngland,4,merchantofvenice,1596\nGaoler,4,merchantofvenice,1596\nhearts,4,merchantofvenice,1596\nlow,4,merchantofvenice,1596\nseen,4,merchantofvenice,1596\ncourtesy,4,merchantofvenice,1596\nhours,4,merchantofvenice,1596\nentreat,4,merchantofvenice,1596\nprayer,4,merchantofvenice,1596\nalas,4,merchantofvenice,1596\nlaws,4,merchantofvenice,1596\nservants,4,merchantofvenice,1596\near,4,merchantofvenice,1596\nmad,4,merchantofvenice,1596\nspirits,4,merchantofvenice,1596\nmarriage,4,merchantofvenice,1596\nMarry,4,merchantofvenice,1596\nvirtue,4,merchantofvenice,1596\ncontent,4,merchantofvenice,1596\nsimple,4,merchantofvenice,1596\ncornets,4,merchantofvenice,1596\nlosses,4,merchantofvenice,1596\ndare,4,merchantofvenice,1596\nbred,4,merchantofvenice,1596\nUntil,4,merchantofvenice,1596\nTalk,4,merchantofvenice,1596\nlack,4,merchantofvenice,1596\ndie,4,merchantofvenice,1596\nships,4,merchantofvenice,1596\nfortunes,4,merchantofvenice,1596\nassured,5,merchantofvenice,1596\nTell,5,merchantofvenice,1596\npenalty,5,merchantofvenice,1596\nfinger,5,merchantofvenice,1596\nwhile,5,merchantofvenice,1596\nWould,5,merchantofvenice,1596\nSalerio,5,merchantofvenice,1596\nsola,5,merchantofvenice,1596\nsaw,5,merchantofvenice,1596\npaper,5,merchantofvenice,1596\nfools,5,merchantofvenice,1596\nsoft,5,merchantofvenice,1596\nview,5,merchantofvenice,1596\ndeserve,5,merchantofvenice,1596\nsix,5,merchantofvenice,1596\nagainst,5,merchantofvenice,1596\nfell,5,merchantofvenice,1596\nsworn,5,merchantofvenice,1596\ncounsel,5,merchantofvenice,1596\ncause,5,merchantofvenice,1596\ndoubt,5,merchantofvenice,1596\nworse,5,merchantofvenice,1596\nabove,5,merchantofvenice,1596\nfeed,5,merchantofvenice,1596\nOne,5,merchantofvenice,1596\nparts,5,merchantofvenice,1596\nspoke,5,merchantofvenice,1596\nsick,5,merchantofvenice,1596\nrefuse,5,merchantofvenice,1596\nforce,5,merchantofvenice,1596\nsounds,5,merchantofvenice,1596\naffection,5,merchantofvenice,1596\nha,5,merchantofvenice,1596\nraise,5,merchantofvenice,1596\ndead,5,merchantofvenice,1596\nspeed,5,merchantofvenice,1596\nearth,5,merchantofvenice,1596\nReads,5,merchantofvenice,1596\nbegg'd,5,merchantofvenice,1596\nthose,5,merchantofvenice,1596\nknew,5,merchantofvenice,1596\nBecause,5,merchantofvenice,1596\nchoice,5,merchantofvenice,1596\nMost,5,merchantofvenice,1596\npraise,5,merchantofvenice,1596\nexpect,5,merchantofvenice,1596\npaid,5,merchantofvenice,1596\nstones,5,merchantofvenice,1596\nbought,5,merchantofvenice,1596\nShould,5,merchantofvenice,1596\nprodigal,5,merchantofvenice,1596\nShe,5,merchantofvenice,1596\nSir,5,merchantofvenice,1596\nAntonio's,5,merchantofvenice,1596\nhigh,5,merchantofvenice,1596\nknows,5,merchantofvenice,1596\nwon,5,merchantofvenice,1596\nsake,5,merchantofvenice,1596\nfound,5,merchantofvenice,1596\nsupper,5,merchantofvenice,1596\ncoming,5,merchantofvenice,1596\nnext,5,merchantofvenice,1596\nhair,5,merchantofvenice,1596\nmarry,5,merchantofvenice,1596\nowe,5,merchantofvenice,1596\ngrant,5,merchantofvenice,1596\nne'er,5,merchantofvenice,1596\nanswer'd,5,merchantofvenice,1596\nworship,5,merchantofvenice,1596\nkiss,5,merchantofvenice,1596\nlay,5,merchantofvenice,1596\nman's,5,merchantofvenice,1596\nSTEPHANO,5,merchantofvenice,1596\nwilt,5,merchantofvenice,1596\nPRINCE,5,merchantofvenice,1596\nadieu,5,merchantofvenice,1596\naught,5,merchantofvenice,1596\nrender,5,merchantofvenice,1596\nsound,5,merchantofvenice,1596\nPray,5,merchantofvenice,1596\nself,5,merchantofvenice,1596\ntogether,5,merchantofvenice,1596\ndoing,5,merchantofvenice,1596\nBefore,5,merchantofvenice,1596\nPadua,5,merchantofvenice,1596\nMay,5,merchantofvenice,1596\nblessing,5,merchantofvenice,1596\nRialto,5,merchantofvenice,1596\nmistress,6,merchantofvenice,1596\nhaste,6,merchantofvenice,1596\njoy,6,merchantofvenice,1596\nunderstand,6,merchantofvenice,1596\nbecome,6,merchantofvenice,1596\nset,6,merchantofvenice,1596\nmother,6,merchantofvenice,1596\nafter,6,merchantofvenice,1596\npromise,6,merchantofvenice,1596\nblind,6,merchantofvenice,1596\nhence,6,merchantofvenice,1596\nvoice,6,merchantofvenice,1596\nmatter,6,merchantofvenice,1596\ndeserves,6,merchantofvenice,1596\nmorning,6,merchantofvenice,1596\nitself,6,merchantofvenice,1596\nDaniel,6,merchantofvenice,1596\nunless,6,merchantofvenice,1596\nHad,6,merchantofvenice,1596\nGood,6,merchantofvenice,1596\ngot,6,merchantofvenice,1596\nput,6,merchantofvenice,1596\nGobbo,6,merchantofvenice,1596\nless,6,merchantofvenice,1596\nloved,6,merchantofvenice,1596\nthrice,6,merchantofvenice,1596\nwhether,6,merchantofvenice,1596\nthough,6,merchantofvenice,1596\nHave,6,merchantofvenice,1596\nmaid,6,merchantofvenice,1596\nere,6,merchantofvenice,1596\nquestion,6,merchantofvenice,1596\nfather's,6,merchantofvenice,1596\nWere,6,merchantofvenice,1596\nopinion,6,merchantofvenice,1596\nnear,6,merchantofvenice,1596\nthird,6,merchantofvenice,1596\nface,6,merchantofvenice,1596\nfail,6,merchantofvenice,1596\npleased,6,merchantofvenice,1596\nMark,6,merchantofvenice,1596\nUnto,6,merchantofvenice,1596\nwild,6,merchantofvenice,1596\nseal,6,merchantofvenice,1596\ninterest,6,merchantofvenice,1596\nback,6,merchantofvenice,1596\npurpose,6,merchantofvenice,1596\ncaskets,6,merchantofvenice,1596\nstraight,6,merchantofvenice,1596\nthoughts,6,merchantofvenice,1596\nDid,6,merchantofvenice,1596\nfollow,6,merchantofvenice,1596\ncertain,6,merchantofvenice,1596\nTake,6,merchantofvenice,1596\nFair,6,merchantofvenice,1596\nten,6,merchantofvenice,1596\nme,262,merchantofvenice,1596\nmeet,7,merchantofvenice,1596\no'er,7,merchantofvenice,1596\noffer,7,merchantofvenice,1596\nappear,7,merchantofvenice,1596\nwithal,7,merchantofvenice,1596\nunder,7,merchantofvenice,1596\ngolden,7,merchantofvenice,1596\nteach,7,merchantofvenice,1596\nbody,7,merchantofvenice,1596\nsaying,7,merchantofvenice,1596\nsea,7,merchantofvenice,1596\nworth,7,merchantofvenice,1596\nwithin,7,merchantofvenice,1596\nBassanio's,7,merchantofvenice,1596\nabout,7,merchantofvenice,1596\ngrow,7,merchantofvenice,1596\nmean,7,merchantofvenice,1596\npay,7,merchantofvenice,1596\nARRAGON,7,merchantofvenice,1596\nlearned,7,merchantofvenice,1596\nwear,7,merchantofvenice,1596\ntongue,7,merchantofvenice,1596\ndeed,7,merchantofvenice,1596\nlong,7,merchantofvenice,1596\nthat's,7,merchantofvenice,1596\nvalue,7,merchantofvenice,1596\nnoble,7,merchantofvenice,1596\nlost,7,merchantofvenice,1596\nYet,7,merchantofvenice,1596\nYes,7,merchantofvenice,1596\nfour,7,merchantofvenice,1596\nplain,7,merchantofvenice,1596\nprepare,7,merchantofvenice,1596\nPORTIA'S,7,merchantofvenice,1596\nship,7,merchantofvenice,1596\nfar,7,merchantofvenice,1596\nMadam,7,merchantofvenice,1596\nend,7,merchantofvenice,1596\nonce,7,merchantofvenice,1596\nwhy,7,merchantofvenice,1596\nbeseech,7,merchantofvenice,1596\nserve,7,merchantofvenice,1596\nwhat's,7,merchantofvenice,1596\ncompany,7,merchantofvenice,1596\nwealth,7,merchantofvenice,1596\nhour,7,merchantofvenice,1596\ngreat,7,merchantofvenice,1596\nholy,7,merchantofvenice,1596\nseek,7,merchantofvenice,1596\nlie,7,merchantofvenice,1596\nSignior,7,merchantofvenice,1596\nSince,7,merchantofvenice,1596\nforfeiture,7,merchantofvenice,1596\nstrange,7,merchantofvenice,1596\nmight,7,merchantofvenice,1596\nwoman,7,merchantofvenice,1596\ntruth,8,merchantofvenice,1596\ndraw,8,merchantofvenice,1596\nfull,8,merchantofvenice,1596\ncame,8,merchantofvenice,1596\nlight,8,merchantofvenice,1596\nAside,8,merchantofvenice,1596\nbring,8,merchantofvenice,1596\nIII,8,merchantofvenice,1596\nAn,8,merchantofvenice,1596\ndown,8,merchantofvenice,1596\nwhose,8,merchantofvenice,1596\ndost,8,merchantofvenice,1596\nleft,8,merchantofvenice,1596\nbear,8,merchantofvenice,1596\nnew,8,merchantofvenice,1596\nroom,8,merchantofvenice,1596\nyouth,8,merchantofvenice,1596\npresently,8,merchantofvenice,1596\nstill,8,merchantofvenice,1596\nheard,8,merchantofvenice,1596\n'Tis,8,merchantofvenice,1596\nThree,8,merchantofvenice,1596\nBellario,8,merchantofvenice,1596\nglad,8,merchantofvenice,1596\neven,8,merchantofvenice,1596\nSweet,8,merchantofvenice,1596\ntalk,8,merchantofvenice,1596\nreason,8,merchantofvenice,1596\npardon,8,merchantofvenice,1596\nhome,8,merchantofvenice,1596\nreturn,8,merchantofvenice,1596\nmadam,8,merchantofvenice,1596\nmerchant,8,merchantofvenice,1596\nmakes,8,merchantofvenice,1596\nstreet,8,merchantofvenice,1596\nlast,8,merchantofvenice,1596\nsilver,8,merchantofvenice,1596\ndog,8,merchantofvenice,1596\nmonths,8,merchantofvenice,1596\nwithout,8,merchantofvenice,1596\nin,264,merchantofvenice,1596\nthought,9,merchantofvenice,1596\nTubal,9,merchantofvenice,1596\nsad,9,merchantofvenice,1596\nconscience,9,merchantofvenice,1596\nServant,9,merchantofvenice,1596\nsum,9,merchantofvenice,1596\nwind,9,merchantofvenice,1596\nwise,9,merchantofvenice,1596\nelse,9,merchantofvenice,1596\nname,9,merchantofvenice,1596\nbed,9,merchantofvenice,1596\nplay,9,merchantofvenice,1596\nbest,9,merchantofvenice,1596\nlend,9,merchantofvenice,1596\ndone,9,merchantofvenice,1596\nhard,9,merchantofvenice,1596\nprince,9,merchantofvenice,1596\npresent,9,merchantofvenice,1596\nfool,9,merchantofvenice,1596\nfiend,9,merchantofvenice,1596\nhast,9,merchantofvenice,1596\nright,9,merchantofvenice,1596\nlead,9,merchantofvenice,1596\nSome,9,merchantofvenice,1596\nThey,9,merchantofvenice,1596\noff,9,merchantofvenice,1596\nbreak,9,merchantofvenice,1596\nonly,9,merchantofvenice,1596\nbetween,9,merchantofvenice,1596\noath,9,merchantofvenice,1596\nShall,9,merchantofvenice,1596\nSALERIO,9,merchantofvenice,1596\nplease,9,merchantofvenice,1596\ntill,9,merchantofvenice,1596\nunto,9,merchantofvenice,1596\nWhere,9,merchantofvenice,1596\nNay,10,merchantofvenice,1596\nWill,10,merchantofvenice,1596\nUpon,10,merchantofvenice,1596\nwords,10,merchantofvenice,1596\nsure,10,merchantofvenice,1596\ncall,10,merchantofvenice,1596\nanother,10,merchantofvenice,1596\nsomething,10,merchantofvenice,1596\ndeath,10,merchantofvenice,1596\nenough,10,merchantofvenice,1596\nmerry,10,merchantofvenice,1596\nson,10,merchantofvenice,1596\nturn,10,merchantofvenice,1596\nstay,10,merchantofvenice,1596\ngave,10,merchantofvenice,1596\nTUBAL,10,merchantofvenice,1596\nhusband,10,merchantofvenice,1596\ntwenty,10,merchantofvenice,1596\ngrace,10,merchantofvenice,1596\nkeep,10,merchantofvenice,1596\nart,10,merchantofvenice,1596\njudgment,10,merchantofvenice,1596\nHath,10,merchantofvenice,1596\neye,10,merchantofvenice,1596\nthings,10,merchantofvenice,1596\ncould,10,merchantofvenice,1596\nthing,10,merchantofvenice,1596\nwit,10,merchantofvenice,1596\nEven,10,merchantofvenice,1596\ngentleman,10,merchantofvenice,1596\nhold,10,merchantofvenice,1596\nthank,10,merchantofvenice,1596\nuse,10,merchantofvenice,1596\nthus,10,merchantofvenice,1596\nJew's,10,merchantofvenice,1596\nspirit,10,merchantofvenice,1596\nWho,11,merchantofvenice,1596\nbound,11,merchantofvenice,1596\nsuit,11,merchantofvenice,1596\nrest,11,merchantofvenice,1596\ndesire,11,merchantofvenice,1596\nAy,11,merchantofvenice,1596\nHis,11,merchantofvenice,1596\nneither,11,merchantofvenice,1596\nBe,11,merchantofvenice,1596\nmeans,11,merchantofvenice,1596\ndinner,11,merchantofvenice,1596\nMOROCCO,11,merchantofvenice,1596\ndear,11,merchantofvenice,1596\nMaster,11,merchantofvenice,1596\nplace,11,merchantofvenice,1596\nforth,11,merchantofvenice,1596\nAre,11,merchantofvenice,1596\nhazard,11,merchantofvenice,1596\nThen,11,merchantofvenice,1596\ncasket,11,merchantofvenice,1596\nget,11,merchantofvenice,1596\npound,11,merchantofvenice,1596\nway,11,merchantofvenice,1596\nduke,11,merchantofvenice,1596\nforfeit,11,merchantofvenice,1596\nrich,11,merchantofvenice,1596\ncut,11,merchantofvenice,1596\nhonest,11,merchantofvenice,1596\n'Who,11,merchantofvenice,1596\nwhom,11,merchantofvenice,1596\nfirst,11,merchantofvenice,1596\nchooseth,11,merchantofvenice,1596\nshalt,11,merchantofvenice,1596\npower,11,merchantofvenice,1596\ntold,12,merchantofvenice,1596\nrather,12,merchantofvenice,1596\nevery,12,merchantofvenice,1596\nGive,12,merchantofvenice,1596\nNow,12,merchantofvenice,1596\nNor,12,merchantofvenice,1596\nNot,12,merchantofvenice,1596\nhonour,12,merchantofvenice,1596\n'tis,12,merchantofvenice,1596\nlose,12,merchantofvenice,1596\nup,12,merchantofvenice,1596\nlittle,12,merchantofvenice,1596\nThan,12,merchantofvenice,1596\ngentle,12,merchantofvenice,1596\nnone,12,merchantofvenice,1596\ninto,12,merchantofvenice,1596\nFrom,12,merchantofvenice,1596\nLord,12,merchantofvenice,1596\nstate,12,merchantofvenice,1596\nword,12,merchantofvenice,1596\never,12,merchantofvenice,1596\nhope,12,merchantofvenice,1596\npoor,12,merchantofvenice,1596\nkind,12,merchantofvenice,1596\nhimself,12,merchantofvenice,1596\nfriends,13,merchantofvenice,1596\nmercy,13,merchantofvenice,1596\nwrong,13,merchantofvenice,1596\nwish,13,merchantofvenice,1596\nDo,13,merchantofvenice,1596\nII,13,merchantofvenice,1596\nWe,13,merchantofvenice,1596\nbeen,13,merchantofvenice,1596\ndeny,13,merchantofvenice,1596\nindeed,13,merchantofvenice,1596\nTherefore,13,merchantofvenice,1596\nclerk,13,merchantofvenice,1596\nanswer,14,merchantofvenice,1596\nrun,14,merchantofvenice,1596\nhead,14,merchantofvenice,1596\nboth,14,merchantofvenice,1596\nmusic,14,merchantofvenice,1596\ngold,14,merchantofvenice,1596\ngone,14,merchantofvenice,1596\ndevil,14,merchantofvenice,1596\nhalf,14,merchantofvenice,1596\njustice,14,merchantofvenice,1596\nfaith,14,merchantofvenice,1596\nagain,14,merchantofvenice,1596\nnews,14,merchantofvenice,1596\nbeing,14,merchantofvenice,1596\ntimes,15,merchantofvenice,1596\nsoul,15,merchantofvenice,1596\nworld,15,merchantofvenice,1596\nfear,15,merchantofvenice,1596\nheaven,15,merchantofvenice,1596\nBelmont,15,merchantofvenice,1596\nblood,15,merchantofvenice,1596\nGod,15,merchantofvenice,1596\nmost,15,merchantofvenice,1596\nmoney,15,merchantofvenice,1596\ncourt,15,merchantofvenice,1596\nsays,15,merchantofvenice,1596\nGratiano,15,merchantofvenice,1596\nsweet,15,merchantofvenice,1596\nCome,16,merchantofvenice,1596\nboy,16,merchantofvenice,1596\nGo,16,merchantofvenice,1596\nhow,16,merchantofvenice,1596\nshow,16,merchantofvenice,1596\nyours,16,merchantofvenice,1596\ndoctor,16,merchantofvenice,1596\nfind,16,merchantofvenice,1596\nlaw,16,merchantofvenice,1596\nlive,16,merchantofvenice,1596\nbid,17,merchantofvenice,1596\nOr,17,merchantofvenice,1596\nwelcome,17,merchantofvenice,1596\nShylock,17,merchantofvenice,1596\nmind,17,merchantofvenice,1596\nNerissa,18,merchantofvenice,1596\ntherefore,18,merchantofvenice,1596\nmade,18,merchantofvenice,1596\nPortia,18,merchantofvenice,1596\nmyself,18,merchantofvenice,1596\nfortune,18,merchantofvenice,1596\nthree,18,merchantofvenice,1596\nletter,18,merchantofvenice,1596\ncannot,18,merchantofvenice,1596\naway,19,merchantofvenice,1596\nHere,19,merchantofvenice,1596\nlook,19,merchantofvenice,1596\npart,19,merchantofvenice,1596\nYour,19,merchantofvenice,1596\nbefore,19,merchantofvenice,1596\nheart,19,merchantofvenice,1596\nwife,19,merchantofvenice,1596\nWhen,19,merchantofvenice,1596\nExit,19,merchantofvenice,1596\nSo,20,merchantofvenice,1596\nACT,20,merchantofvenice,1596\nwho,20,merchantofvenice,1596\nown,20,merchantofvenice,1596\neyes,20,merchantofvenice,1596\nbetter,21,merchantofvenice,1596\ndaughter,21,merchantofvenice,1596\nBy,21,merchantofvenice,1596\nNo,21,merchantofvenice,1596\nIs,21,merchantofvenice,1596\nDUKE,21,merchantofvenice,1596\nwhere,21,merchantofvenice,1596\nTHE,21,merchantofvenice,1596\nThou,21,merchantofvenice,1596\nmany,21,merchantofvenice,1596\ncomes,21,merchantofvenice,1596\nstand,21,merchantofvenice,1596\nMERCHANT,21,merchantofvenice,1596\nout,21,merchantofvenice,1596\njudge,21,merchantofvenice,1596\nthousand,21,merchantofvenice,1596\nmaster,21,merchantofvenice,1596\nSCENE,21,merchantofvenice,1596\nlife,22,merchantofvenice,1596\nnothing,22,merchantofvenice,1596\nThere,22,merchantofvenice,1596\nWith,22,merchantofvenice,1596\nChristian,22,merchantofvenice,1596\nhand,22,merchantofvenice,1596\nspeak,22,merchantofvenice,1596\nnor,22,merchantofvenice,1596\nThis,22,merchantofvenice,1596\nVENICE,22,merchantofvenice,1596\nold,22,merchantofvenice,1596\ntime,22,merchantofvenice,1596\nLet,22,merchantofvenice,1596\nhear,23,merchantofvenice,1596\nGOBBO,23,merchantofvenice,1596\nflesh,23,merchantofvenice,1596\nyoung,23,merchantofvenice,1596\nWell,23,merchantofvenice,1596\nswear,23,merchantofvenice,1596\ntrue,23,merchantofvenice,1596\nother,23,merchantofvenice,1596\nsome,24,merchantofvenice,1596\nLorenzo,24,merchantofvenice,1596\nIt,24,merchantofvenice,1596\nJessica,24,merchantofvenice,1596\nmine,24,merchantofvenice,1596\nthink,24,merchantofvenice,1596\nleave,24,merchantofvenice,1596\nmen,24,merchantofvenice,1596\ncan,25,merchantofvenice,1596\ntheir,25,merchantofvenice,1596\nSALANIO,25,merchantofvenice,1596\nsame,25,merchantofvenice,1596\nchoose,26,merchantofvenice,1596\ntell,26,merchantofvenice,1596\nAs,26,merchantofvenice,1596\nExeunt,26,merchantofvenice,1596\nany,26,merchantofvenice,1596\nour,26,merchantofvenice,1596\ntwo,26,merchantofvenice,1596\nfriend,27,merchantofvenice,1596\nOF,27,merchantofvenice,1596\nday,27,merchantofvenice,1596\nlady,27,merchantofvenice,1596\nnever,28,merchantofvenice,1596\nyet,28,merchantofvenice,1596\nfair,28,merchantofvenice,1596\nthese,29,merchantofvenice,1596\nWhich,29,merchantofvenice,1596\nvery,29,merchantofvenice,1596\nducats,29,merchantofvenice,1596\nwere,29,merchantofvenice,1596\nfather,29,merchantofvenice,1596\ntoo,29,merchantofvenice,1596\nHe,30,merchantofvenice,1596\nLauncelot,30,merchantofvenice,1596\nus,30,merchantofvenice,1596\nVenice,30,merchantofvenice,1596\nwhich,31,merchantofvenice,1596\nmust,31,merchantofvenice,1596\nlike,31,merchantofvenice,1596\nMy,31,merchantofvenice,1596\nOf,31,merchantofvenice,1596\nmake,32,merchantofvenice,1596\nmay,32,merchantofvenice,1596\nO,33,merchantofvenice,1596\nshe,33,merchantofvenice,1596\nWhy,33,merchantofvenice,1596\nnight,33,merchantofvenice,1596\nsir,34,merchantofvenice,1596\nthey,34,merchantofvenice,1596\nlord,34,merchantofvenice,1596\nor,34,merchantofvenice,1596\nhouse,34,merchantofvenice,1596\nhad,35,merchantofvenice,1596\nBassanio,35,merchantofvenice,1596\nJESSICA,35,merchantofvenice,1596\nnow,35,merchantofvenice,1596\ndoth,36,merchantofvenice,1596\nSALARINO,36,merchantofvenice,1596\npray,37,merchantofvenice,1596\ngive,37,merchantofvenice,1596\nring,37,merchantofvenice,1596\ntake,37,merchantofvenice,1596\nwhen,37,merchantofvenice,1596\nsuch,39,merchantofvenice,1596\nbond,39,merchantofvenice,1596\nIn,39,merchantofvenice,1596\nupon,40,merchantofvenice,1596\nhath,40,merchantofvenice,1596\nsay,41,merchantofvenice,1596\ngo,41,merchantofvenice,1596\n',42,merchantofvenice,1596\nsee,42,merchantofvenice,1596\nthem,42,merchantofvenice,1596\nknow,42,merchantofvenice,1596\nHow,42,merchantofvenice,1596\none,43,merchantofvenice,1596\nan,44,merchantofvenice,1596\nwas,44,merchantofvenice,1596\ndid,44,merchantofvenice,1596\nAntonio,45,merchantofvenice,1596\nlet,45,merchantofvenice,1596\nIf,46,merchantofvenice,1596\nshould,46,merchantofvenice,1596\nWhat,46,merchantofvenice,1596\nNERISSA,47,merchantofvenice,1596\nI'll,47,merchantofvenice,1596\nmuch,48,merchantofvenice,1596\nFor,48,merchantofvenice,1596\nEnter,48,merchantofvenice,1596\ncome,48,merchantofvenice,1596\nhere,49,merchantofvenice,1596\nthan,51,merchantofvenice,1596\nwe,51,merchantofvenice,1596\nLAUNCELOT,52,merchantofvenice,1596\nthen,53,merchantofvenice,1596\nthere,53,merchantofvenice,1596\nYou,55,merchantofvenice,1596\ngood,56,merchantofvenice,1596\nlove,56,merchantofvenice,1596\nANTONIO,56,merchantofvenice,1596\nfrom,56,merchantofvenice,1596\nman,56,merchantofvenice,1596\nLORENZO,57,merchantofvenice,1596\nwell,57,merchantofvenice,1596\nthy,57,merchantofvenice,1596\nGRATIANO,58,merchantofvenice,1596\nA,59,merchantofvenice,1596\nJew,59,merchantofvenice,1596\nwhat,60,merchantofvenice,1596\nmore,61,merchantofvenice,1596\nthee,64,merchantofvenice,1596\nat,64,merchantofvenice,1596\nher,65,merchantofvenice,1596\non,65,merchantofvenice,1596\nThat,67,merchantofvenice,1596\nwould,67,merchantofvenice,1596\nno,71,merchantofvenice,1596\nif,73,merchantofvenice,1596\nBut,73,merchantofvenice,1596\nmy,330,merchantofvenice,1596\nam,76,merchantofvenice,1596\nall,79,merchantofvenice,1596\nthou,82,merchantofvenice,1596\nby,83,merchantofvenice,1596\nBASSANIO,83,merchantofvenice,1596\nSHYLOCK,88,merchantofvenice,1596\nare,90,merchantofvenice,1596\nThe,97,merchantofvenice,1596\nso,98,merchantofvenice,1596\ndo,99,merchantofvenice,1596\nshall,100,merchantofvenice,1596\nTo,102,merchantofvenice,1596\nbut,108,merchantofvenice,1596\nhim,110,merchantofvenice,1596\nas,115,merchantofvenice,1596\nto,374,merchantofvenice,1596\nwill,122,merchantofvenice,1596\nthis,124,merchantofvenice,1596\nyou,384,merchantofvenice,1596\nPORTIA,130,merchantofvenice,1596\na,392,merchantofvenice,1596\nI,655,merchantofvenice,1596\nhe,146,merchantofvenice,1596\nhis,149,merchantofvenice,1596\nyour,156,merchantofvenice,1596\nhave,156,merchantofvenice,1596\nof,422,merchantofvenice,1596\nwith,170,merchantofvenice,1596\nand,430,merchantofvenice,1596\nfor,176,merchantofvenice,1596\nbe,177,merchantofvenice,1596\nAnd,182,merchantofvenice,1596\nthat,190,merchantofvenice,1596\nnot,207,merchantofvenice,1596\nit,209,merchantofvenice,1596\nthe,740,merchantofvenice,1596\nis,242,merchantofvenice,1596\nprofession,1,tamingoftheshrew,1593\nbefal,1,tamingoftheshrew,1593\nquarrelsome,1,tamingoftheshrew,1593\nmetaphysics,1,tamingoftheshrew,1593\nsleekly,1,tamingoftheshrew,1593\nYou're,1,tamingoftheshrew,1593\nevent,1,tamingoftheshrew,1593\nalehouse,1,tamingoftheshrew,1593\njills,1,tamingoftheshrew,1593\nbrawl,1,tamingoftheshrew,1593\nunpink'd,1,tamingoftheshrew,1593\no'er,1,tamingoftheshrew,1593\nsomebody,1,tamingoftheshrew,1593\npitched,1,tamingoftheshrew,1593\nrudesby,1,tamingoftheshrew,1593\nQuick,1,tamingoftheshrew,1593\nneighing,1,tamingoftheshrew,1593\nBentivolii,1,tamingoftheshrew,1593\nadvised,1,tamingoftheshrew,1593\nUnbind,1,tamingoftheshrew,1593\ngrew,1,tamingoftheshrew,1593\ndebts,1,tamingoftheshrew,1593\ngrey,1,tamingoftheshrew,1593\npity,1,tamingoftheshrew,1593\nhappier,1,tamingoftheshrew,1593\nc,1,tamingoftheshrew,1593\nsuffer,1,tamingoftheshrew,1593\ncontinency,1,tamingoftheshrew,1593\nYours,1,tamingoftheshrew,1593\npith,1,tamingoftheshrew,1593\nhangings,1,tamingoftheshrew,1593\nConformable,1,tamingoftheshrew,1593\ngallants,1,tamingoftheshrew,1593\nFew,1,tamingoftheshrew,1593\n'Alla,1,tamingoftheshrew,1593\nadvice,1,tamingoftheshrew,1593\nextremity,1,tamingoftheshrew,1593\ndrop,1,tamingoftheshrew,1593\nJohn,1,tamingoftheshrew,1593\ninfected,1,tamingoftheshrew,1593\necho,1,tamingoftheshrew,1593\ndined,1,tamingoftheshrew,1593\ndarest,1,tamingoftheshrew,1593\nLoved,1,tamingoftheshrew,1593\nmotion,1,tamingoftheshrew,1593\nfeed'st,1,tamingoftheshrew,1593\nlengthens,1,tamingoftheshrew,1593\nHead,1,tamingoftheshrew,1593\nUncase,1,tamingoftheshrew,1593\nAdam,1,tamingoftheshrew,1593\nbelongs,1,tamingoftheshrew,1593\nresist,1,tamingoftheshrew,1593\nWonder,1,tamingoftheshrew,1593\njay,1,tamingoftheshrew,1593\norders,1,tamingoftheshrew,1593\nbrass,1,tamingoftheshrew,1593\nwears,1,tamingoftheshrew,1593\ntwig,1,tamingoftheshrew,1593\nobtain'd,1,tamingoftheshrew,1593\nbleared,1,tamingoftheshrew,1593\nDaphne,1,tamingoftheshrew,1593\nAl'ce,1,tamingoftheshrew,1593\ndine,1,tamingoftheshrew,1593\nentire,1,tamingoftheshrew,1593\nrag,1,tamingoftheshrew,1593\nran,1,tamingoftheshrew,1593\nvillain's,1,tamingoftheshrew,1593\nlawful,1,tamingoftheshrew,1593\nsewed,1,tamingoftheshrew,1593\ndagger,1,tamingoftheshrew,1593\njacks,1,tamingoftheshrew,1593\nnostra,1,tamingoftheshrew,1593\ndistinguish'd,1,tamingoftheshrew,1593\noffended,1,tamingoftheshrew,1593\njunkets,1,tamingoftheshrew,1593\nassured,1,tamingoftheshrew,1593\nscent,1,tamingoftheshrew,1593\nhemp,1,tamingoftheshrew,1593\nfleeter,1,tamingoftheshrew,1593\ndoubtful,1,tamingoftheshrew,1593\nroe,1,tamingoftheshrew,1593\npupils,1,tamingoftheshrew,1593\nWilt,1,tamingoftheshrew,1593\nroar,1,tamingoftheshrew,1593\nWomen,1,tamingoftheshrew,1593\nworshipful,1,tamingoftheshrew,1593\nexpress,1,tamingoftheshrew,1593\nunparted,1,tamingoftheshrew,1593\nboys,1,tamingoftheshrew,1593\ncypress,1,tamingoftheshrew,1593\njot,1,tamingoftheshrew,1593\nGrim,1,tamingoftheshrew,1593\ntoes,1,tamingoftheshrew,1593\nLord's,1,tamingoftheshrew,1593\nStay,1,tamingoftheshrew,1593\nlaughter,1,tamingoftheshrew,1593\nwarning,1,tamingoftheshrew,1593\nswiftly,1,tamingoftheshrew,1593\ntruly,1,tamingoftheshrew,1593\nmess,1,tamingoftheshrew,1593\nmiss'd,1,tamingoftheshrew,1593\nvail,1,tamingoftheshrew,1593\nthorny,1,tamingoftheshrew,1593\nhers,1,tamingoftheshrew,1593\naptly,1,tamingoftheshrew,1593\ntrunk,1,tamingoftheshrew,1593\nSaving,1,tamingoftheshrew,1593\nherd,1,tamingoftheshrew,1593\nIron,1,tamingoftheshrew,1593\ncoral,1,tamingoftheshrew,1593\nbraves,1,tamingoftheshrew,1593\nruffian,1,tamingoftheshrew,1593\ndisease,1,tamingoftheshrew,1593\nsuper,1,tamingoftheshrew,1593\nlutes,1,tamingoftheshrew,1593\ntrenchers,1,tamingoftheshrew,1593\nskirts,1,tamingoftheshrew,1593\nNeapolitan,1,tamingoftheshrew,1593\nerrand,1,tamingoftheshrew,1593\ntoil,1,tamingoftheshrew,1593\nhonourable,1,tamingoftheshrew,1593\nbrook,1,tamingoftheshrew,1593\nJoan,1,tamingoftheshrew,1593\nwhipped,1,tamingoftheshrew,1593\ncommodity,1,tamingoftheshrew,1593\nlooked,1,tamingoftheshrew,1593\namber,1,tamingoftheshrew,1593\nfeeds,1,tamingoftheshrew,1593\nmaintain,1,tamingoftheshrew,1593\nrichly,1,tamingoftheshrew,1593\nfury,1,tamingoftheshrew,1593\nConceives,1,tamingoftheshrew,1593\nEre,1,tamingoftheshrew,1593\nmatch'd,1,tamingoftheshrew,1593\nthroat,1,tamingoftheshrew,1593\nsigns,1,tamingoftheshrew,1593\nnought,1,tamingoftheshrew,1593\nstumbled,1,tamingoftheshrew,1593\nlaugh,1,tamingoftheshrew,1593\nsoul,1,tamingoftheshrew,1593\nworms,1,tamingoftheshrew,1593\nChristopher,1,tamingoftheshrew,1593\nalighted,1,tamingoftheshrew,1593\nfirst's,1,tamingoftheshrew,1593\njades,1,tamingoftheshrew,1593\nTedious,1,tamingoftheshrew,1593\nyonder,1,tamingoftheshrew,1593\nbeauty's,1,tamingoftheshrew,1593\nWrapp'd,1,tamingoftheshrew,1593\nsort,1,tamingoftheshrew,1593\nlively,1,tamingoftheshrew,1593\nodds,1,tamingoftheshrew,1593\nTripoli,1,tamingoftheshrew,1593\ndamned,1,tamingoftheshrew,1593\nsore,1,tamingoftheshrew,1593\ntruth,1,tamingoftheshrew,1593\nstamp'd,1,tamingoftheshrew,1593\nVincentio's,1,tamingoftheshrew,1593\nbridle,1,tamingoftheshrew,1593\nBegan,1,tamingoftheshrew,1593\nrates,1,tamingoftheshrew,1593\nthirst,1,tamingoftheshrew,1593\nbemoiled,1,tamingoftheshrew,1593\nlief,1,tamingoftheshrew,1593\nrated,1,tamingoftheshrew,1593\nwing'd,1,tamingoftheshrew,1593\nbaggage,1,tamingoftheshrew,1593\nwounded,1,tamingoftheshrew,1593\ncheques,1,tamingoftheshrew,1593\nStephen,1,tamingoftheshrew,1593\ncheeks,1,tamingoftheshrew,1593\nunconstant,1,tamingoftheshrew,1593\ncurious,1,tamingoftheshrew,1593\nspecialties,1,tamingoftheshrew,1593\nunwilling,1,tamingoftheshrew,1593\nPERSONAE,1,tamingoftheshrew,1593\nchequed,1,tamingoftheshrew,1593\nconsidering,1,tamingoftheshrew,1593\nproclaim,1,tamingoftheshrew,1593\ncard,1,tamingoftheshrew,1593\ngreyhound,1,tamingoftheshrew,1593\nmute,1,tamingoftheshrew,1593\nagreed,1,tamingoftheshrew,1593\ncasa,1,tamingoftheshrew,1593\nclamorous,1,tamingoftheshrew,1593\nspare,1,tamingoftheshrew,1593\ncart,1,tamingoftheshrew,1593\nScratching,1,tamingoftheshrew,1593\nimprimendum,1,tamingoftheshrew,1593\nlyingest,1,tamingoftheshrew,1593\nlaced,1,tamingoftheshrew,1593\ncoffers,1,tamingoftheshrew,1593\ngarment,1,tamingoftheshrew,1593\nworser,1,tamingoftheshrew,1593\nliar,1,tamingoftheshrew,1593\nmistook,1,tamingoftheshrew,1593\nperdonato,1,tamingoftheshrew,1593\npursue,1,tamingoftheshrew,1593\njoyous,1,tamingoftheshrew,1593\ninterrupted,1,tamingoftheshrew,1593\nPoor,1,tamingoftheshrew,1593\nstrength,1,tamingoftheshrew,1593\nwalnut,1,tamingoftheshrew,1593\nreign,1,tamingoftheshrew,1593\ndisdain,1,tamingoftheshrew,1593\npatroness,1,tamingoftheshrew,1593\nspied,1,tamingoftheshrew,1593\neverything,1,tamingoftheshrew,1593\nfeather,1,tamingoftheshrew,1593\ndraw,1,tamingoftheshrew,1593\nstock,1,tamingoftheshrew,1593\nFellow,1,tamingoftheshrew,1593\nunpolish'd,1,tamingoftheshrew,1593\npine,1,tamingoftheshrew,1593\ngrove,1,tamingoftheshrew,1593\nYoung,1,tamingoftheshrew,1593\nhappened,1,tamingoftheshrew,1593\ngrown,1,tamingoftheshrew,1593\nscarlet,1,tamingoftheshrew,1593\nlink,1,tamingoftheshrew,1593\ncomondy,1,tamingoftheshrew,1593\nJove,1,tamingoftheshrew,1593\naffability,1,tamingoftheshrew,1593\nbroach'd,1,tamingoftheshrew,1593\ncall'st,1,tamingoftheshrew,1593\nrepast,1,tamingoftheshrew,1593\naccount'st,1,tamingoftheshrew,1593\ncuffs,1,tamingoftheshrew,1593\nopposed,1,tamingoftheshrew,1593\nlimp,1,tamingoftheshrew,1593\ncorner,1,tamingoftheshrew,1593\nAn't,1,tamingoftheshrew,1593\nOvid,1,tamingoftheshrew,1593\nRescue,1,tamingoftheshrew,1593\nboldness,1,tamingoftheshrew,1593\ninjury,1,tamingoftheshrew,1593\nthou'rt,1,tamingoftheshrew,1593\npurse,1,tamingoftheshrew,1593\nForward,1,tamingoftheshrew,1593\nstalls,1,tamingoftheshrew,1593\nawry,1,tamingoftheshrew,1593\npossessed,1,tamingoftheshrew,1593\nbudge,1,tamingoftheshrew,1593\ncake,1,tamingoftheshrew,1593\nfrolic,1,tamingoftheshrew,1593\ncontrive,1,tamingoftheshrew,1593\nheedless,1,tamingoftheshrew,1593\nInduction,1,tamingoftheshrew,1593\nOnly,1,tamingoftheshrew,1593\nseemeth,1,tamingoftheshrew,1593\nPersons,1,tamingoftheshrew,1593\nfingers,1,tamingoftheshrew,1593\nForgot,1,tamingoftheshrew,1593\npolicy,1,tamingoftheshrew,1593\nNicholas,1,tamingoftheshrew,1593\ngolden,1,tamingoftheshrew,1593\npetitioners,1,tamingoftheshrew,1593\nPitchers,1,tamingoftheshrew,1593\nteacheth,1,tamingoftheshrew,1593\nbreaks,1,tamingoftheshrew,1593\npaper,1,tamingoftheshrew,1593\nTarry,1,tamingoftheshrew,1593\nmeacock,1,tamingoftheshrew,1593\nunsuspected,1,tamingoftheshrew,1593\nglass,1,tamingoftheshrew,1593\ncobwebs,1,tamingoftheshrew,1593\nrites,1,tamingoftheshrew,1593\nbeseem,1,tamingoftheshrew,1593\nMethinks,1,tamingoftheshrew,1593\nriches,1,tamingoftheshrew,1593\nBeside,1,tamingoftheshrew,1593\nfume,1,tamingoftheshrew,1593\nPegasus,1,tamingoftheshrew,1593\nabode,1,tamingoftheshrew,1593\nwait,1,tamingoftheshrew,1593\nslippers,1,tamingoftheshrew,1593\ncongeal'd,1,tamingoftheshrew,1593\nboar,1,tamingoftheshrew,1593\ningenious,1,tamingoftheshrew,1593\npaltry,1,tamingoftheshrew,1593\ncoldly,1,tamingoftheshrew,1593\nSaw'st,1,tamingoftheshrew,1593\noftentimes,1,tamingoftheshrew,1593\ncompanies,1,tamingoftheshrew,1593\n''Gamut',1,tamingoftheshrew,1593\nTyrian,1,tamingoftheshrew,1593\nladies',1,tamingoftheshrew,1593\nsoar,1,tamingoftheshrew,1593\nFellows,1,tamingoftheshrew,1593\nuntoward,1,tamingoftheshrew,1593\npillow,1,tamingoftheshrew,1593\nsix,1,tamingoftheshrew,1593\nlasts,1,tamingoftheshrew,1593\nMinion,1,tamingoftheshrew,1593\nflatly,1,tamingoftheshrew,1593\nwhatsoever,1,tamingoftheshrew,1593\nhistory,1,tamingoftheshrew,1593\nsip,1,tamingoftheshrew,1593\nsums,1,tamingoftheshrew,1593\ndeeper,1,tamingoftheshrew,1593\n'Sirrah,1,tamingoftheshrew,1593\nPedascule,1,tamingoftheshrew,1593\nrebused,1,tamingoftheshrew,1593\nHappily,1,tamingoftheshrew,1593\npurses,1,tamingoftheshrew,1593\npenance,1,tamingoftheshrew,1593\nfleet,1,tamingoftheshrew,1593\nsaddle,1,tamingoftheshrew,1593\ntooth,1,tamingoftheshrew,1593\n'E,1,tamingoftheshrew,1593\n'C,1,tamingoftheshrew,1593\n'D,1,tamingoftheshrew,1593\n'B,1,tamingoftheshrew,1593\nsew,1,tamingoftheshrew,1593\nshrill,1,tamingoftheshrew,1593\nCurster,1,tamingoftheshrew,1593\nmocking,1,tamingoftheshrew,1593\nmuscadel,1,tamingoftheshrew,1593\narguing,1,tamingoftheshrew,1593\nJeronimy,1,tamingoftheshrew,1593\nroaming,1,tamingoftheshrew,1593\ncatching,1,tamingoftheshrew,1593\nchronicles,1,tamingoftheshrew,1593\nchapeless,1,tamingoftheshrew,1593\nsuit,1,tamingoftheshrew,1593\nThou'ldst,1,tamingoftheshrew,1593\npeevish,1,tamingoftheshrew,1593\nlaying,1,tamingoftheshrew,1593\nlions,1,tamingoftheshrew,1593\nprettiest,1,tamingoftheshrew,1593\nscorn,1,tamingoftheshrew,1593\nabused,1,tamingoftheshrew,1593\nfrosts,1,tamingoftheshrew,1593\nperil,1,tamingoftheshrew,1593\nlivest,1,tamingoftheshrew,1593\nmercatante,1,tamingoftheshrew,1593\ncharging,1,tamingoftheshrew,1593\nmurdered,1,tamingoftheshrew,1593\nsteps,1,tamingoftheshrew,1593\nstripling,1,tamingoftheshrew,1593\nmoralize,1,tamingoftheshrew,1593\nsubject,1,tamingoftheshrew,1593\nextempore,1,tamingoftheshrew,1593\nfollowed,1,tamingoftheshrew,1593\nswayed,1,tamingoftheshrew,1593\nusual,1,tamingoftheshrew,1593\nattends,1,tamingoftheshrew,1593\nbow'd,1,tamingoftheshrew,1593\n't,1,tamingoftheshrew,1593\nWait,1,tamingoftheshrew,1593\nbashful,1,tamingoftheshrew,1593\nqualified,1,tamingoftheshrew,1593\nstuds,1,tamingoftheshrew,1593\ndowery,1,tamingoftheshrew,1593\nsecond,1,tamingoftheshrew,1593\n'larums,1,tamingoftheshrew,1593\nhunted,1,tamingoftheshrew,1593\nshipping,1,tamingoftheshrew,1593\ngather,1,tamingoftheshrew,1593\nhatch'd,1,tamingoftheshrew,1593\nsadder,1,tamingoftheshrew,1593\nchattering,1,tamingoftheshrew,1593\nsuck,1,tamingoftheshrew,1593\nminimo,1,tamingoftheshrew,1593\npieces,1,tamingoftheshrew,1593\nSpake,1,tamingoftheshrew,1593\nplay'd,1,tamingoftheshrew,1593\nregia,1,tamingoftheshrew,1593\nnill,1,tamingoftheshrew,1593\ngirth,1,tamingoftheshrew,1593\nawful,1,tamingoftheshrew,1593\nsends,1,tamingoftheshrew,1593\ndaughter's,1,tamingoftheshrew,1593\nswept,1,tamingoftheshrew,1593\napples,1,tamingoftheshrew,1593\nunreverent,1,tamingoftheshrew,1593\nsatiety,1,tamingoftheshrew,1593\ndeclining,1,tamingoftheshrew,1593\nswelling,1,tamingoftheshrew,1593\nthieves,1,tamingoftheshrew,1593\nergo,1,tamingoftheshrew,1593\noffence,1,tamingoftheshrew,1593\nPewter,1,tamingoftheshrew,1593\ndiligent,1,tamingoftheshrew,1593\nheavens,1,tamingoftheshrew,1593\nbreeches,1,tamingoftheshrew,1593\nembracements,1,tamingoftheshrew,1593\nreadiest,1,tamingoftheshrew,1593\ndoublets,1,tamingoftheshrew,1593\nForswear,1,tamingoftheshrew,1593\nclang,1,tamingoftheshrew,1593\npoints,1,tamingoftheshrew,1593\nbrain,1,tamingoftheshrew,1593\nunkindly,1,tamingoftheshrew,1593\nmerest,1,tamingoftheshrew,1593\nskies,1,tamingoftheshrew,1593\nafraid,1,tamingoftheshrew,1593\nshower,1,tamingoftheshrew,1593\ncommon,1,tamingoftheshrew,1593\nrespecting,1,tamingoftheshrew,1593\nundress,1,tamingoftheshrew,1593\nSlys,1,tamingoftheshrew,1593\nmoulded,1,tamingoftheshrew,1593\ntempting,1,tamingoftheshrew,1593\nfigure,1,tamingoftheshrew,1593\nWhereof,1,tamingoftheshrew,1593\ncuore,1,tamingoftheshrew,1593\nkill'd,1,tamingoftheshrew,1593\nbliss,1,tamingoftheshrew,1593\nbestrew,1,tamingoftheshrew,1593\nBianco's,1,tamingoftheshrew,1593\ntoucheth,1,tamingoftheshrew,1593\nbeggarly,1,tamingoftheshrew,1593\nshuns,1,tamingoftheshrew,1593\nfeat,1,tamingoftheshrew,1593\nenvious,1,tamingoftheshrew,1593\nproceeders,1,tamingoftheshrew,1593\nbots,1,tamingoftheshrew,1593\nunfeigned,1,tamingoftheshrew,1593\nseeks,1,tamingoftheshrew,1593\naffected,1,tamingoftheshrew,1593\nSound,1,tamingoftheshrew,1593\nquaff,1,tamingoftheshrew,1593\nunable,1,tamingoftheshrew,1593\nconsented,1,tamingoftheshrew,1593\nwilling,1,tamingoftheshrew,1593\nLeave,1,tamingoftheshrew,1593\nthence,1,tamingoftheshrew,1593\nWhilst,1,tamingoftheshrew,1593\ncrossing,1,tamingoftheshrew,1593\nphysicians,1,tamingoftheshrew,1593\ntush,1,tamingoftheshrew,1593\nsup,1,tamingoftheshrew,1593\nbrach,1,tamingoftheshrew,1593\ngrumble,1,tamingoftheshrew,1593\npoorest,1,tamingoftheshrew,1593\nreverence,1,tamingoftheshrew,1593\nbowl,1,tamingoftheshrew,1593\nspaniel,1,tamingoftheshrew,1593\ncease,1,tamingoftheshrew,1593\ndescent,1,tamingoftheshrew,1593\nlegg'd,1,tamingoftheshrew,1593\nhumbly,1,tamingoftheshrew,1593\nwinded,1,tamingoftheshrew,1593\nwhoever,1,tamingoftheshrew,1593\ngalleys,1,tamingoftheshrew,1593\ntight,1,tamingoftheshrew,1593\ncostly,1,tamingoftheshrew,1593\nelders,1,tamingoftheshrew,1593\nsword,1,tamingoftheshrew,1593\nlances,1,tamingoftheshrew,1593\n'Now,1,tamingoftheshrew,1593\nfalse,1,tamingoftheshrew,1593\nweather,1,tamingoftheshrew,1593\nartillery,1,tamingoftheshrew,1593\nwine,1,tamingoftheshrew,1593\npatrimony,1,tamingoftheshrew,1593\nwink,1,tamingoftheshrew,1593\nstuff'd,1,tamingoftheshrew,1593\nabjured,1,tamingoftheshrew,1593\nsoldier,1,tamingoftheshrew,1593\nirksome,1,tamingoftheshrew,1593\nwished,1,tamingoftheshrew,1593\nHence,1,tamingoftheshrew,1593\nnails,1,tamingoftheshrew,1593\ncavil,1,tamingoftheshrew,1593\nsnip,1,tamingoftheshrew,1593\nkneel,1,tamingoftheshrew,1593\ncomedy,1,tamingoftheshrew,1593\nusurp,1,tamingoftheshrew,1593\nmirth,1,tamingoftheshrew,1593\nknees,1,tamingoftheshrew,1593\nPlease,1,tamingoftheshrew,1593\nsteal,1,tamingoftheshrew,1593\nedge,1,tamingoftheshrew,1593\nheaven,1,tamingoftheshrew,1593\nappendix,1,tamingoftheshrew,1593\nknow'st,1,tamingoftheshrew,1593\ndisplease,1,tamingoftheshrew,1593\npuff'd,1,tamingoftheshrew,1593\ntravellest,1,tamingoftheshrew,1593\ncounsel's,1,tamingoftheshrew,1593\nturned,1,tamingoftheshrew,1593\nFlorentius',1,tamingoftheshrew,1593\nAccept,1,tamingoftheshrew,1593\ncustom,1,tamingoftheshrew,1593\nmurder,1,tamingoftheshrew,1593\ncullion,1,tamingoftheshrew,1593\ntravellers,1,tamingoftheshrew,1593\npart's,1,tamingoftheshrew,1593\ngawds,1,tamingoftheshrew,1593\nseem'd,1,tamingoftheshrew,1593\nmalady,1,tamingoftheshrew,1593\nstop,1,tamingoftheshrew,1593\npretty,1,tamingoftheshrew,1593\nthroughly,1,tamingoftheshrew,1593\nspites,1,tamingoftheshrew,1593\npittance,1,tamingoftheshrew,1593\njoin'd,1,tamingoftheshrew,1593\nnaturally,1,tamingoftheshrew,1593\nprodigy,1,tamingoftheshrew,1593\nrules,1,tamingoftheshrew,1593\nThere's,1,tamingoftheshrew,1593\ngentleman's,1,tamingoftheshrew,1593\nwits,1,tamingoftheshrew,1593\ncarousing,1,tamingoftheshrew,1593\npraised,1,tamingoftheshrew,1593\nspoke,1,tamingoftheshrew,1593\nschool'd,1,tamingoftheshrew,1593\ncolour,1,tamingoftheshrew,1593\nDraw,1,tamingoftheshrew,1593\n'cum,1,tamingoftheshrew,1593\nconditions,1,tamingoftheshrew,1593\nPimpernell,1,tamingoftheshrew,1593\nbit,1,tamingoftheshrew,1593\njarring,1,tamingoftheshrew,1593\nprivilegio,1,tamingoftheshrew,1593\nappurtenances,1,tamingoftheshrew,1593\nbills,1,tamingoftheshrew,1593\nnail,1,tamingoftheshrew,1593\nDrinks,1,tamingoftheshrew,1593\nknowledge,1,tamingoftheshrew,1593\nrival,1,tamingoftheshrew,1593\nside,1,tamingoftheshrew,1593\nI',1,tamingoftheshrew,1593\nstir,1,tamingoftheshrew,1593\nslaves,1,tamingoftheshrew,1593\ngratify,1,tamingoftheshrew,1593\nleases,1,tamingoftheshrew,1593\nunkind,1,tamingoftheshrew,1593\nmelancholy,1,tamingoftheshrew,1593\ndrinking,1,tamingoftheshrew,1593\nrusty,1,tamingoftheshrew,1593\nbacks,1,tamingoftheshrew,1593\naboard,1,tamingoftheshrew,1593\ndrudge,1,tamingoftheshrew,1593\noffend,1,tamingoftheshrew,1593\nserving,1,tamingoftheshrew,1593\nJamy,1,tamingoftheshrew,1593\nsigh,1,tamingoftheshrew,1593\nresemble,1,tamingoftheshrew,1593\ndelights,1,tamingoftheshrew,1593\ntwink,1,tamingoftheshrew,1593\nAh,1,tamingoftheshrew,1593\ncontroversy,1,tamingoftheshrew,1593\npacking,1,tamingoftheshrew,1593\nwomanly,1,tamingoftheshrew,1593\ntonight,1,tamingoftheshrew,1593\nonion,1,tamingoftheshrew,1593\nmistrust,1,tamingoftheshrew,1593\ntaller,1,tamingoftheshrew,1593\nmeads,1,tamingoftheshrew,1593\nchaste,1,tamingoftheshrew,1593\nHic,1,tamingoftheshrew,1593\namort,1,tamingoftheshrew,1593\ndrunkard's,1,tamingoftheshrew,1593\nbow,1,tamingoftheshrew,1593\nloath,1,tamingoftheshrew,1593\nhurly,1,tamingoftheshrew,1593\nSofter,1,tamingoftheshrew,1593\nstrangers,1,tamingoftheshrew,1593\nknowing,1,tamingoftheshrew,1593\ndistilled,1,tamingoftheshrew,1593\nadversaries,1,tamingoftheshrew,1593\nwash'd,1,tamingoftheshrew,1593\nlanguages,1,tamingoftheshrew,1593\nCounsel,1,tamingoftheshrew,1593\ndesperate,1,tamingoftheshrew,1593\nHope,1,tamingoftheshrew,1593\ndoctors,1,tamingoftheshrew,1593\nitself,1,tamingoftheshrew,1593\nhen,1,tamingoftheshrew,1593\nHaving,1,tamingoftheshrew,1593\n'lord,1,tamingoftheshrew,1593\nhopes,1,tamingoftheshrew,1593\nMe,1,tamingoftheshrew,1593\nwrings,1,tamingoftheshrew,1593\nO',1,tamingoftheshrew,1593\nMi,1,tamingoftheshrew,1593\nbay,1,tamingoftheshrew,1593\ncockle,1,tamingoftheshrew,1593\nbar,1,tamingoftheshrew,1593\nSinging,1,tamingoftheshrew,1593\nStand,1,tamingoftheshrew,1593\nblots,1,tamingoftheshrew,1593\nLeda's,1,tamingoftheshrew,1593\ntreble,1,tamingoftheshrew,1593\ncruel,1,tamingoftheshrew,1593\nsubscribe,1,tamingoftheshrew,1593\nunless,1,tamingoftheshrew,1593\ndenier,1,tamingoftheshrew,1593\nin't,1,tamingoftheshrew,1593\nin's,1,tamingoftheshrew,1593\nscarfs,1,tamingoftheshrew,1593\nWalter,1,tamingoftheshrew,1593\ncreature,1,tamingoftheshrew,1593\nstar,1,tamingoftheshrew,1593\ngrumbling,1,tamingoftheshrew,1593\nbrings,1,tamingoftheshrew,1593\nfouler,1,tamingoftheshrew,1593\nstudying,1,tamingoftheshrew,1593\ncontending,1,tamingoftheshrew,1593\ndiligence,1,tamingoftheshrew,1593\nresteth,1,tamingoftheshrew,1593\nsings,1,tamingoftheshrew,1593\ngamesome,1,tamingoftheshrew,1593\nclosely,1,tamingoftheshrew,1593\nhie,1,tamingoftheshrew,1593\nconceives,1,tamingoftheshrew,1593\nhid,1,tamingoftheshrew,1593\nhic,1,tamingoftheshrew,1593\nAsses,1,tamingoftheshrew,1593\nwisdom,1,tamingoftheshrew,1593\nconceived,1,tamingoftheshrew,1593\nmiracles,1,tamingoftheshrew,1593\nbuzz,1,tamingoftheshrew,1593\n'Imprimis,1,tamingoftheshrew,1593\nhipped,1,tamingoftheshrew,1593\ncheerfully,1,tamingoftheshrew,1593\nnotorious,1,tamingoftheshrew,1593\nLucrece,1,tamingoftheshrew,1593\nflourisheth,1,tamingoftheshrew,1593\ndullest,1,tamingoftheshrew,1593\nbless,1,tamingoftheshrew,1593\nIo,1,tamingoftheshrew,1593\nquick,1,tamingoftheshrew,1593\nease,1,tamingoftheshrew,1593\ntribute,1,tamingoftheshrew,1593\npantaloon,1,tamingoftheshrew,1593\ndenial,1,tamingoftheshrew,1593\ndespair,1,tamingoftheshrew,1593\nHad,1,tamingoftheshrew,1593\nadder,1,tamingoftheshrew,1593\npie,1,tamingoftheshrew,1593\nHap,1,tamingoftheshrew,1593\npip,1,tamingoftheshrew,1593\ngambold,1,tamingoftheshrew,1593\nwedded,1,tamingoftheshrew,1593\nchanges,1,tamingoftheshrew,1593\nTroilus,1,tamingoftheshrew,1593\nfives,1,tamingoftheshrew,1593\ngrandfather,1,tamingoftheshrew,1593\nnice,1,tamingoftheshrew,1593\nnoddle,1,tamingoftheshrew,1593\nmatches,1,tamingoftheshrew,1593\nwitless,1,tamingoftheshrew,1593\nquantity,1,tamingoftheshrew,1593\nDine,1,tamingoftheshrew,1593\nsire,1,tamingoftheshrew,1593\nobey,1,tamingoftheshrew,1593\nCytherea,1,tamingoftheshrew,1593\ntitles,1,tamingoftheshrew,1593\n'only',1,tamingoftheshrew,1593\nAdieu,1,tamingoftheshrew,1593\ntrimm'd,1,tamingoftheshrew,1593\ncounterpoints,1,tamingoftheshrew,1593\ngod,1,tamingoftheshrew,1593\nglanders,1,tamingoftheshrew,1593\nNaps,1,tamingoftheshrew,1593\ndresser,1,tamingoftheshrew,1593\ndressed,1,tamingoftheshrew,1593\nThou'rt,1,tamingoftheshrew,1593\ndumps,1,tamingoftheshrew,1593\nliberality,1,tamingoftheshrew,1593\nsith,1,tamingoftheshrew,1593\nsits,1,tamingoftheshrew,1593\nabsent,1,tamingoftheshrew,1593\nwhereby,1,tamingoftheshrew,1593\n'the,1,tamingoftheshrew,1593\nAllot,1,tamingoftheshrew,1593\nbush,1,tamingoftheshrew,1593\nsooner,1,tamingoftheshrew,1593\nrebel,1,tamingoftheshrew,1593\nlongly,1,tamingoftheshrew,1593\nnarrowly,1,tamingoftheshrew,1593\nPrithee,1,tamingoftheshrew,1593\ncoffin,1,tamingoftheshrew,1593\nchattels,1,tamingoftheshrew,1593\nprisoners,1,tamingoftheshrew,1593\npry,1,tamingoftheshrew,1593\nsorted,1,tamingoftheshrew,1593\norchard,1,tamingoftheshrew,1593\ndefects,1,tamingoftheshrew,1593\nhungerly,1,tamingoftheshrew,1593\nfurnished,1,tamingoftheshrew,1593\ncouch,1,tamingoftheshrew,1593\nCock's,1,tamingoftheshrew,1593\nsomewhat,1,tamingoftheshrew,1593\nparle,1,tamingoftheshrew,1593\ngall'd,1,tamingoftheshrew,1593\nbeyond,1,tamingoftheshrew,1593\nbugs,1,tamingoftheshrew,1593\nHappier,1,tamingoftheshrew,1593\npithy,1,tamingoftheshrew,1593\nfifty,1,tamingoftheshrew,1593\nidleness,1,tamingoftheshrew,1593\nwelkin,1,tamingoftheshrew,1593\njealous,1,tamingoftheshrew,1593\nBorn,1,tamingoftheshrew,1593\nwaving,1,tamingoftheshrew,1593\nSly's,1,tamingoftheshrew,1593\nmeanest,1,tamingoftheshrew,1593\nsuddenly,1,tamingoftheshrew,1593\nprating,1,tamingoftheshrew,1593\nantic,1,tamingoftheshrew,1593\nbuds,1,tamingoftheshrew,1593\na',1,tamingoftheshrew,1593\nsheathing,1,tamingoftheshrew,1593\njewel,1,tamingoftheshrew,1593\npersuasion,1,tamingoftheshrew,1593\nDidst,1,tamingoftheshrew,1593\nkeep'st,1,tamingoftheshrew,1593\neaten,1,tamingoftheshrew,1593\ngamester,1,tamingoftheshrew,1593\nhereof,1,tamingoftheshrew,1593\n'Con,1,tamingoftheshrew,1593\nfifth,1,tamingoftheshrew,1593\ntestify,1,tamingoftheshrew,1593\ncurse,1,tamingoftheshrew,1593\n'knocking,1,tamingoftheshrew,1593\nbeget,1,tamingoftheshrew,1593\nlikest,1,tamingoftheshrew,1593\nbuy,1,tamingoftheshrew,1593\nNeighbour,1,tamingoftheshrew,1593\nAjax,1,tamingoftheshrew,1593\nYe,1,tamingoftheshrew,1593\nAbove,1,tamingoftheshrew,1593\nsakes,1,tamingoftheshrew,1593\ndisguise,1,tamingoftheshrew,1593\nAbout,1,tamingoftheshrew,1593\nWhate'er,1,tamingoftheshrew,1593\nswine,1,tamingoftheshrew,1593\npaint,1,tamingoftheshrew,1593\ngarters,1,tamingoftheshrew,1593\njump,1,tamingoftheshrew,1593\nWhither,1,tamingoftheshrew,1593\nsmack,1,tamingoftheshrew,1593\nsavours,1,tamingoftheshrew,1593\nvantage,1,tamingoftheshrew,1593\ngrandsire,1,tamingoftheshrew,1593\nimmortal,1,tamingoftheshrew,1593\nimportune,1,tamingoftheshrew,1593\nchafed,1,tamingoftheshrew,1593\nentertain'st,1,tamingoftheshrew,1593\nargosies,1,tamingoftheshrew,1593\nuniversity,1,tamingoftheshrew,1593\nincredible,1,tamingoftheshrew,1593\nholidame,1,tamingoftheshrew,1593\noxen,1,tamingoftheshrew,1593\nbargain'd,1,tamingoftheshrew,1593\ncaged,1,tamingoftheshrew,1593\noweth,1,tamingoftheshrew,1593\nwingdalls,1,tamingoftheshrew,1593\ncanopies,1,tamingoftheshrew,1593\ncustard,1,tamingoftheshrew,1593\nsolemn,1,tamingoftheshrew,1593\ndogs,1,tamingoftheshrew,1593\nstore,1,tamingoftheshrew,1593\nnoted,1,tamingoftheshrew,1593\nentertain,1,tamingoftheshrew,1593\ndeed,1,tamingoftheshrew,1593\nsolely,1,tamingoftheshrew,1593\npumps,1,tamingoftheshrew,1593\nvirgin,1,tamingoftheshrew,1593\nTheretake,1,tamingoftheshrew,1593\ndeer,1,tamingoftheshrew,1593\ntwangling,1,tamingoftheshrew,1593\nPrefer,1,tamingoftheshrew,1593\nconcealing,1,tamingoftheshrew,1593\nstay'd,1,tamingoftheshrew,1593\nmodesties,1,tamingoftheshrew,1593\nharness,1,tamingoftheshrew,1593\nwretch,1,tamingoftheshrew,1593\nplate,1,tamingoftheshrew,1593\nimage,1,tamingoftheshrew,1593\neloquence,1,tamingoftheshrew,1593\nBaccare,1,tamingoftheshrew,1593\nblowing,1,tamingoftheshrew,1593\nquarts,1,tamingoftheshrew,1593\nair,1,tamingoftheshrew,1593\nbeck,1,tamingoftheshrew,1593\ndoff,1,tamingoftheshrew,1593\nyea,1,tamingoftheshrew,1593\nraise,1,tamingoftheshrew,1593\nsatisfy,1,tamingoftheshrew,1593\nslish,1,tamingoftheshrew,1593\nDally,1,tamingoftheshrew,1593\nstops,1,tamingoftheshrew,1593\nrepute,1,tamingoftheshrew,1593\nwaspish,1,tamingoftheshrew,1593\nsheer,1,tamingoftheshrew,1593\nprevented,1,tamingoftheshrew,1593\nRheims,1,tamingoftheshrew,1593\n'Jack,1,tamingoftheshrew,1593\nmilch,1,tamingoftheshrew,1593\ndebt,1,tamingoftheshrew,1593\nneeds,1,tamingoftheshrew,1593\nKated,1,tamingoftheshrew,1593\nstoop,1,tamingoftheshrew,1593\ntrovato,1,tamingoftheshrew,1593\ngentlewomen,1,tamingoftheshrew,1593\nnapkin,1,tamingoftheshrew,1593\namendment,1,tamingoftheshrew,1593\nAchieve,1,tamingoftheshrew,1593\nswearing,1,tamingoftheshrew,1593\nrails,1,tamingoftheshrew,1593\nstone,1,tamingoftheshrew,1593\nplays,1,tamingoftheshrew,1593\nunworthy,1,tamingoftheshrew,1593\njugs,1,tamingoftheshrew,1593\ndeal,1,tamingoftheshrew,1593\ninstrument's,1,tamingoftheshrew,1593\nautumn,1,tamingoftheshrew,1593\nliberal,1,tamingoftheshrew,1593\neyeing,1,tamingoftheshrew,1593\naims,1,tamingoftheshrew,1593\nsubmissive,1,tamingoftheshrew,1593\nseeing,1,tamingoftheshrew,1593\nlikely,1,tamingoftheshrew,1593\nLast,1,tamingoftheshrew,1593\nbrooked,1,tamingoftheshrew,1593\nthrive,1,tamingoftheshrew,1593\nlend,1,tamingoftheshrew,1593\nenforce,1,tamingoftheshrew,1593\nlighted,1,tamingoftheshrew,1593\ngale,1,tamingoftheshrew,1593\ntouch'd,1,tamingoftheshrew,1593\ntreats,1,tamingoftheshrew,1593\nlaughing,1,tamingoftheshrew,1593\nwaits,1,tamingoftheshrew,1593\ngenerally,1,tamingoftheshrew,1593\nhouses,1,tamingoftheshrew,1593\nyields,1,tamingoftheshrew,1593\napes,1,tamingoftheshrew,1593\nmemory,1,tamingoftheshrew,1593\nad,1,tamingoftheshrew,1593\nheating,1,tamingoftheshrew,1593\naccompany,1,tamingoftheshrew,1593\nmanner,1,tamingoftheshrew,1593\nBlows,1,tamingoftheshrew,1593\nthyself,1,tamingoftheshrew,1593\nHearest,1,tamingoftheshrew,1593\ntemperate,1,tamingoftheshrew,1593\npiercing,1,tamingoftheshrew,1593\nbless'd,1,tamingoftheshrew,1593\nhalves,1,tamingoftheshrew,1593\ndried,1,tamingoftheshrew,1593\nboard,1,tamingoftheshrew,1593\nox,1,tamingoftheshrew,1593\nattending,1,tamingoftheshrew,1593\nI'faith,1,tamingoftheshrew,1593\ncrossed,1,tamingoftheshrew,1593\nbestraught,1,tamingoftheshrew,1593\nbodies,1,tamingoftheshrew,1593\nsufficeth,1,tamingoftheshrew,1593\ndemi,1,tamingoftheshrew,1593\nfastest,1,tamingoftheshrew,1593\nengenders,1,tamingoftheshrew,1593\nbanish,1,tamingoftheshrew,1593\ncrave,1,tamingoftheshrew,1593\nidly,1,tamingoftheshrew,1593\nnovices,1,tamingoftheshrew,1593\nquarters,1,tamingoftheshrew,1593\nItalian,1,tamingoftheshrew,1593\nwrinkled,1,tamingoftheshrew,1593\ndisquiet,1,tamingoftheshrew,1593\nwhereof,1,tamingoftheshrew,1593\nthankful,1,tamingoftheshrew,1593\nentitle,1,tamingoftheshrew,1593\ndelicious,1,tamingoftheshrew,1593\nearth,1,tamingoftheshrew,1593\nImprimis,1,tamingoftheshrew,1593\ncousin,1,tamingoftheshrew,1593\ncarved,1,tamingoftheshrew,1593\nmightiness,1,tamingoftheshrew,1593\naccomplished,1,tamingoftheshrew,1593\nmorn,1,tamingoftheshrew,1593\ncaptum,1,tamingoftheshrew,1593\ntrain,1,tamingoftheshrew,1593\nscornful,1,tamingoftheshrew,1593\nglance,1,tamingoftheshrew,1593\nhadst,1,tamingoftheshrew,1593\nSwinge,1,tamingoftheshrew,1593\nstudied,1,tamingoftheshrew,1593\nmose,1,tamingoftheshrew,1593\noffer'd,1,tamingoftheshrew,1593\nla,1,tamingoftheshrew,1593\ngrooms,1,tamingoftheshrew,1593\nado,1,tamingoftheshrew,1593\nparents,1,tamingoftheshrew,1593\nlost,1,tamingoftheshrew,1593\nloss,1,tamingoftheshrew,1593\nMinerva,1,tamingoftheshrew,1593\njoltheads,1,tamingoftheshrew,1593\nachieved,1,tamingoftheshrew,1593\nplash,1,tamingoftheshrew,1593\nwherein,1,tamingoftheshrew,1593\nspent,1,tamingoftheshrew,1593\nlest,1,tamingoftheshrew,1593\neffectual,1,tamingoftheshrew,1593\nNathaniel's,1,tamingoftheshrew,1593\ntames,1,tamingoftheshrew,1593\nil,1,tamingoftheshrew,1593\ndole,1,tamingoftheshrew,1593\nspend,1,tamingoftheshrew,1593\nSkipper,1,tamingoftheshrew,1593\nPreposterous,1,tamingoftheshrew,1593\nremoves,1,tamingoftheshrew,1593\nGenoa,1,tamingoftheshrew,1593\nstrand,1,tamingoftheshrew,1593\nwinner,1,tamingoftheshrew,1593\nshow'd,1,tamingoftheshrew,1593\nTravelling,1,tamingoftheshrew,1593\nspouse,1,tamingoftheshrew,1593\njerkin,1,tamingoftheshrew,1593\ncombed,1,tamingoftheshrew,1593\nslack,1,tamingoftheshrew,1593\nminstrels,1,tamingoftheshrew,1593\nKiss,1,tamingoftheshrew,1593\nmarr'd,1,tamingoftheshrew,1593\nkernels,1,tamingoftheshrew,1593\nharm,1,tamingoftheshrew,1593\nthrice,1,tamingoftheshrew,1593\nWhence,1,tamingoftheshrew,1593\nreasons,1,tamingoftheshrew,1593\nHaply,1,tamingoftheshrew,1593\nwarm'd,1,tamingoftheshrew,1593\nrunning,1,tamingoftheshrew,1593\nornaments,1,tamingoftheshrew,1593\nchestnut,1,tamingoftheshrew,1593\ncatched,1,tamingoftheshrew,1593\nlogger,1,tamingoftheshrew,1593\nkills,1,tamingoftheshrew,1593\ncatches,1,tamingoftheshrew,1593\npark,1,tamingoftheshrew,1593\nBrought,1,tamingoftheshrew,1593\ntripe,1,tamingoftheshrew,1593\nut,1,tamingoftheshrew,1593\nfrighted,1,tamingoftheshrew,1593\nweapon,1,tamingoftheshrew,1593\nsailmaker,1,tamingoftheshrew,1593\nremember'd,1,tamingoftheshrew,1593\nlewd,1,tamingoftheshrew,1593\npull,1,tamingoftheshrew,1593\nhue,1,tamingoftheshrew,1593\nfrost,1,tamingoftheshrew,1593\ncrow,1,tamingoftheshrew,1593\nte,1,tamingoftheshrew,1593\naskance,1,tamingoftheshrew,1593\noutright,1,tamingoftheshrew,1593\nChristian,1,tamingoftheshrew,1593\nknit,1,tamingoftheshrew,1593\nWincot,1,tamingoftheshrew,1593\nsenseless,1,tamingoftheshrew,1593\nneat's,1,tamingoftheshrew,1593\nshallow,1,tamingoftheshrew,1593\ncoldest,1,tamingoftheshrew,1593\nfashion'd,1,tamingoftheshrew,1593\nshortness,1,tamingoftheshrew,1593\nHercules,1,tamingoftheshrew,1593\nRead,1,tamingoftheshrew,1593\nplanteth,1,tamingoftheshrew,1593\ntrade,1,tamingoftheshrew,1593\nrushes,1,tamingoftheshrew,1593\nPluck,1,tamingoftheshrew,1593\nappears,1,tamingoftheshrew,1593\nconsume,1,tamingoftheshrew,1593\nforthcoming,1,tamingoftheshrew,1593\nreach,1,tamingoftheshrew,1593\nprince,1,tamingoftheshrew,1593\nFull,1,tamingoftheshrew,1593\nGrumio's,1,tamingoftheshrew,1593\nmew'd,1,tamingoftheshrew,1593\ndescried,1,tamingoftheshrew,1593\naccord,1,tamingoftheshrew,1593\nforty,1,tamingoftheshrew,1593\njoyful,1,tamingoftheshrew,1593\nrestrained,1,tamingoftheshrew,1593\nlegged,1,tamingoftheshrew,1593\nprovided,1,tamingoftheshrew,1593\nshell,1,tamingoftheshrew,1593\nacquaintance,1,tamingoftheshrew,1593\ngovernor,1,tamingoftheshrew,1593\nexpect,1,tamingoftheshrew,1593\ncommendable,1,tamingoftheshrew,1593\nopen,1,tamingoftheshrew,1593\npage,1,tamingoftheshrew,1593\nShe's,1,tamingoftheshrew,1593\nvengeance,1,tamingoftheshrew,1593\nweeps,1,tamingoftheshrew,1593\nbondmaid,1,tamingoftheshrew,1593\nknocks,1,tamingoftheshrew,1593\nhawk,1,tamingoftheshrew,1593\nBend,1,tamingoftheshrew,1593\nstraws,1,tamingoftheshrew,1593\nProvide,1,tamingoftheshrew,1593\ntomorrow,1,tamingoftheshrew,1593\npain,1,tamingoftheshrew,1593\nHush,1,tamingoftheshrew,1593\npail,1,tamingoftheshrew,1593\nhangs,1,tamingoftheshrew,1593\ndelight,1,tamingoftheshrew,1593\npaid,1,tamingoftheshrew,1593\nfiery,1,tamingoftheshrew,1593\nplotted,1,tamingoftheshrew,1593\nPuts,1,tamingoftheshrew,1593\nHusband,1,tamingoftheshrew,1593\nthis's,1,tamingoftheshrew,1593\nmay'st,1,tamingoftheshrew,1593\nSchoolmasters,1,tamingoftheshrew,1593\napt,1,tamingoftheshrew,1593\nwalked,1,tamingoftheshrew,1593\nhaven,1,tamingoftheshrew,1593\nowes,1,tamingoftheshrew,1593\ncoverlet,1,tamingoftheshrew,1593\ncopatain,1,tamingoftheshrew,1593\npoint,1,tamingoftheshrew,1593\nstrive,1,tamingoftheshrew,1593\ndeceitful,1,tamingoftheshrew,1593\nhowsoe'er,1,tamingoftheshrew,1593\ntwain,1,tamingoftheshrew,1593\nshop,1,tamingoftheshrew,1593\nkindest,1,tamingoftheshrew,1593\nbosom,1,tamingoftheshrew,1593\nalive,1,tamingoftheshrew,1593\nshot,1,tamingoftheshrew,1593\narmory,1,tamingoftheshrew,1593\nbespeak,1,tamingoftheshrew,1593\n'madam,1,tamingoftheshrew,1593\nproper,1,tamingoftheshrew,1593\nfrets,1,tamingoftheshrew,1593\nchastity,1,tamingoftheshrew,1593\nXanthippe,1,tamingoftheshrew,1593\nflatter'd,1,tamingoftheshrew,1593\nduke's,1,tamingoftheshrew,1593\nfood,1,tamingoftheshrew,1593\ncontain,1,tamingoftheshrew,1593\nprepared,1,tamingoftheshrew,1593\nrevenge,1,tamingoftheshrew,1593\nrenowned,1,tamingoftheshrew,1593\nbeetle,1,tamingoftheshrew,1593\ngreybeard,1,tamingoftheshrew,1593\nmonument,1,tamingoftheshrew,1593\ngird,1,tamingoftheshrew,1593\nmaiden,1,tamingoftheshrew,1593\nerror,1,tamingoftheshrew,1593\ndrank,1,tamingoftheshrew,1593\nsecret,1,tamingoftheshrew,1593\nstudded,1,tamingoftheshrew,1593\nHast,1,tamingoftheshrew,1593\nYoungling,1,tamingoftheshrew,1593\nfinely,1,tamingoftheshrew,1593\nBaptists,1,tamingoftheshrew,1593\ndisdainful,1,tamingoftheshrew,1593\ninquire,1,tamingoftheshrew,1593\nAmong,1,tamingoftheshrew,1593\ndeadly,1,tamingoftheshrew,1593\nfew,1,tamingoftheshrew,1593\ncolour'd,1,tamingoftheshrew,1593\nhits,1,tamingoftheshrew,1593\nfed,1,tamingoftheshrew,1593\narras,1,tamingoftheshrew,1593\nEcho,1,tamingoftheshrew,1593\npricked,1,tamingoftheshrew,1593\nleet,1,tamingoftheshrew,1593\nshotten,1,tamingoftheshrew,1593\nchides,1,tamingoftheshrew,1593\nsweetly,1,tamingoftheshrew,1593\nSometimes,1,tamingoftheshrew,1593\ndomineer,1,tamingoftheshrew,1593\nCarouse,1,tamingoftheshrew,1593\nmaim'd,1,tamingoftheshrew,1593\ntoken,1,tamingoftheshrew,1593\npoliticly,1,tamingoftheshrew,1593\nPeter's,1,tamingoftheshrew,1593\nruffling,1,tamingoftheshrew,1593\nrhetoric,1,tamingoftheshrew,1593\nbrain'd,1,tamingoftheshrew,1593\nAsk,1,tamingoftheshrew,1593\nenjoy,1,tamingoftheshrew,1593\nwillingly,1,tamingoftheshrew,1593\nlunacy,1,tamingoftheshrew,1593\nguess,1,tamingoftheshrew,1593\nguest,1,tamingoftheshrew,1593\nhaving,1,tamingoftheshrew,1593\nprays,1,tamingoftheshrew,1593\nmoves,1,tamingoftheshrew,1593\nspoken,1,tamingoftheshrew,1593\nscapes,1,tamingoftheshrew,1593\nrope,1,tamingoftheshrew,1593\nGeorge,1,tamingoftheshrew,1593\nfay,1,tamingoftheshrew,1593\nexecute,1,tamingoftheshrew,1593\nMates,1,tamingoftheshrew,1593\nValance,1,tamingoftheshrew,1593\nborrow,1,tamingoftheshrew,1593\nfrenzy,1,tamingoftheshrew,1593\nroof,1,tamingoftheshrew,1593\ntumbling,1,tamingoftheshrew,1593\n'honour',1,tamingoftheshrew,1593\nBurtonheath,1,tamingoftheshrew,1593\nhonorato,1,tamingoftheshrew,1593\nnap,1,tamingoftheshrew,1593\nfrozen,1,tamingoftheshrew,1593\ndeceiving,1,tamingoftheshrew,1593\nCarthage,1,tamingoftheshrew,1593\nsobriety,1,tamingoftheshrew,1593\nbreathes,1,tamingoftheshrew,1593\ngarments,1,tamingoftheshrew,1593\nkeeps,1,tamingoftheshrew,1593\nordnance,1,tamingoftheshrew,1593\nincomparable,1,tamingoftheshrew,1593\nVirtue,1,tamingoftheshrew,1593\nFiddler,1,tamingoftheshrew,1593\nfiddler,1,tamingoftheshrew,1593\nhelping,1,tamingoftheshrew,1593\nbedchamber,1,tamingoftheshrew,1593\njested,1,tamingoftheshrew,1593\nSorry,1,tamingoftheshrew,1593\nhoney,1,tamingoftheshrew,1593\nSpoke,1,tamingoftheshrew,1593\nempty,1,tamingoftheshrew,1593\ntokens,1,tamingoftheshrew,1593\nflouts,1,tamingoftheshrew,1593\ndress'd,1,tamingoftheshrew,1593\nunluckily,1,tamingoftheshrew,1593\nreported,1,tamingoftheshrew,1593\nMerriman,1,tamingoftheshrew,1593\nhilt,1,tamingoftheshrew,1593\nechoes,1,tamingoftheshrew,1593\nundeserved,1,tamingoftheshrew,1593\nbreathed,1,tamingoftheshrew,1593\nrascals,1,tamingoftheshrew,1593\ndiscreetly,1,tamingoftheshrew,1593\nbravery,1,tamingoftheshrew,1593\ntrimmed,1,tamingoftheshrew,1593\nbaby's,1,tamingoftheshrew,1593\nclamour,1,tamingoftheshrew,1593\nscape,1,tamingoftheshrew,1593\nclapp'd,1,tamingoftheshrew,1593\ntaketh,1,tamingoftheshrew,1593\nmountains,1,tamingoftheshrew,1593\nriding,1,tamingoftheshrew,1593\nbuilt,1,tamingoftheshrew,1593\nsmallest,1,tamingoftheshrew,1593\nBetter,1,tamingoftheshrew,1593\nbroil'd,1,tamingoftheshrew,1593\nrepose,1,tamingoftheshrew,1593\nfourth,1,tamingoftheshrew,1593\nHall,1,tamingoftheshrew,1593\nnose,1,tamingoftheshrew,1593\nmidst,1,tamingoftheshrew,1593\napply,1,tamingoftheshrew,1593\ncurstest,1,tamingoftheshrew,1593\nmarks,1,tamingoftheshrew,1593\nenvy,1,tamingoftheshrew,1593\nunmanner'd,1,tamingoftheshrew,1593\nfurniture,1,tamingoftheshrew,1593\nbedazzled,1,tamingoftheshrew,1593\nmutton,1,tamingoftheshrew,1593\nHenceforth,1,tamingoftheshrew,1593\nStrive,1,tamingoftheshrew,1593\npenny,1,tamingoftheshrew,1593\npinch'd,1,tamingoftheshrew,1593\nfretting,1,tamingoftheshrew,1593\nsignor,1,tamingoftheshrew,1593\nknack,1,tamingoftheshrew,1593\nFlourish,1,tamingoftheshrew,1593\nvolubility,1,tamingoftheshrew,1593\nrout,1,tamingoftheshrew,1593\nslipp'd,1,tamingoftheshrew,1593\nbeard,1,tamingoftheshrew,1593\nclothe,1,tamingoftheshrew,1593\nbravely,1,tamingoftheshrew,1593\nestate,1,tamingoftheshrew,1593\nTurph,1,tamingoftheshrew,1593\nknots,1,tamingoftheshrew,1593\ncompanions,1,tamingoftheshrew,1593\nhide,1,tamingoftheshrew,1593\nhawks,1,tamingoftheshrew,1593\novertake,1,tamingoftheshrew,1593\ntutto,1,tamingoftheshrew,1593\n'Ay,1,tamingoftheshrew,1593\nausterity,1,tamingoftheshrew,1593\nobserved,1,tamingoftheshrew,1593\nmisuse,1,tamingoftheshrew,1593\nbottom,1,tamingoftheshrew,1593\nadmire,1,tamingoftheshrew,1593\ngate',1,tamingoftheshrew,1593\nglasses,1,tamingoftheshrew,1593\nwandering,1,tamingoftheshrew,1593\nSoft,1,tamingoftheshrew,1593\nlikelihood,1,tamingoftheshrew,1593\nAffection's,1,tamingoftheshrew,1593\nRenown'd,1,tamingoftheshrew,1593\n'Be,1,tamingoftheshrew,1593\nperused,1,tamingoftheshrew,1593\nSit,1,tamingoftheshrew,1593\nnarrow,1,tamingoftheshrew,1593\nmount,1,tamingoftheshrew,1593\nthirsty,1,tamingoftheshrew,1593\naffections,1,tamingoftheshrew,1593\nskein,1,tamingoftheshrew,1593\nquickly,1,tamingoftheshrew,1593\nstirrups,1,tamingoftheshrew,1593\nBasins,1,tamingoftheshrew,1593\nstaggers,1,tamingoftheshrew,1593\nparsley,1,tamingoftheshrew,1593\nMarseilles',1,tamingoftheshrew,1593\nchine,1,tamingoftheshrew,1593\nwho's,1,tamingoftheshrew,1593\nignorant,1,tamingoftheshrew,1593\nSet,1,tamingoftheshrew,1593\nBalm,1,tamingoftheshrew,1593\nmisery,1,tamingoftheshrew,1593\nunhappy,1,tamingoftheshrew,1593\nBalk,1,tamingoftheshrew,1593\nTrain,1,tamingoftheshrew,1593\nVincetino,1,tamingoftheshrew,1593\nschoolmasters,1,tamingoftheshrew,1593\nCicely,1,tamingoftheshrew,1593\nfreely,1,tamingoftheshrew,1593\nquarter,1,tamingoftheshrew,1593\nfamous,1,tamingoftheshrew,1593\ntapestry,1,tamingoftheshrew,1593\nSemiramis,1,tamingoftheshrew,1593\nmaze,1,tamingoftheshrew,1593\nwithholds,1,tamingoftheshrew,1593\nLoud,1,tamingoftheshrew,1593\nprecious,1,tamingoftheshrew,1593\ngrateful,1,tamingoftheshrew,1593\nunusual,1,tamingoftheshrew,1593\nsoundly',1,tamingoftheshrew,1593\nunprovided,1,tamingoftheshrew,1593\nmourn,1,tamingoftheshrew,1593\nKnows,1,tamingoftheshrew,1593\ndiscontent,1,tamingoftheshrew,1593\nattire,1,tamingoftheshrew,1593\ngorged,1,tamingoftheshrew,1593\ncommune,1,tamingoftheshrew,1593\nEvermore,1,tamingoftheshrew,1593\nGraybeard,1,tamingoftheshrew,1593\n'He,1,tamingoftheshrew,1593\nmortal,1,tamingoftheshrew,1593\nother's,1,tamingoftheshrew,1593\nstare,1,tamingoftheshrew,1593\nRichard,1,tamingoftheshrew,1593\nelsewhere,1,tamingoftheshrew,1593\nsessa,1,tamingoftheshrew,1593\nLong,1,tamingoftheshrew,1593\nspruce,1,tamingoftheshrew,1593\nyellows,1,tamingoftheshrew,1593\nJoseph,1,tamingoftheshrew,1593\nteeth,1,tamingoftheshrew,1593\nbleeds,1,tamingoftheshrew,1593\nprotesting,1,tamingoftheshrew,1593\nrehearsed,1,tamingoftheshrew,1593\nqualities,1,tamingoftheshrew,1593\nprize,1,tamingoftheshrew,1593\nconclusion,1,tamingoftheshrew,1593\nkisses,1,tamingoftheshrew,1593\nhousekeeping,1,tamingoftheshrew,1593\nescape,1,tamingoftheshrew,1593\nPersuade,1,tamingoftheshrew,1593\nSufficeth,1,tamingoftheshrew,1593\nslash,1,tamingoftheshrew,1593\nBarthol'mew,1,tamingoftheshrew,1593\nvent,1,tamingoftheshrew,1593\nrests,1,tamingoftheshrew,1593\nbeads,1,tamingoftheshrew,1593\nCostly,1,tamingoftheshrew,1593\nwrought,1,tamingoftheshrew,1593\nkeeper,1,tamingoftheshrew,1593\nsuccessfully,1,tamingoftheshrew,1593\nmalt,1,tamingoftheshrew,1593\nSugarsop,1,tamingoftheshrew,1593\nbelong,1,tamingoftheshrew,1593\n'gainst,1,tamingoftheshrew,1593\nCould,1,tamingoftheshrew,1593\ncurtsy,1,tamingoftheshrew,1593\nskin,1,tamingoftheshrew,1593\ntents,1,tamingoftheshrew,1593\noverblown,1,tamingoftheshrew,1593\nannoy'd,1,tamingoftheshrew,1593\nvelure,1,tamingoftheshrew,1593\nthroughout,1,tamingoftheshrew,1593\nmart,1,tamingoftheshrew,1593\ncomet,1,tamingoftheshrew,1593\nthick,1,tamingoftheshrew,1593\nfountain,1,tamingoftheshrew,1593\nSon,1,tamingoftheshrew,1593\nlet't,1,tamingoftheshrew,1593\nwoe,1,tamingoftheshrew,1593\nMarian,1,tamingoftheshrew,1593\ndevils,1,tamingoftheshrew,1593\nhawking,1,tamingoftheshrew,1593\ncarpets,1,tamingoftheshrew,1593\nhabiliments,1,tamingoftheshrew,1593\nquench,1,tamingoftheshrew,1593\ncombless,1,tamingoftheshrew,1593\nFlies,1,tamingoftheshrew,1593\nFerdinand,1,tamingoftheshrew,1593\nstarved,1,tamingoftheshrew,1593\nmiry,1,tamingoftheshrew,1593\ncraves,1,tamingoftheshrew,1593\nchafe,1,tamingoftheshrew,1593\ngreatest,1,tamingoftheshrew,1593\npainful,1,tamingoftheshrew,1593\nSoto,1,tamingoftheshrew,1593\nbeside,1,tamingoftheshrew,1593\nAntonio,1,tamingoftheshrew,1593\nnit,1,tamingoftheshrew,1593\ncraven,1,tamingoftheshrew,1593\nheaven's,1,tamingoftheshrew,1593\nnip,1,tamingoftheshrew,1593\nmiss,1,tamingoftheshrew,1593\nassisting,1,tamingoftheshrew,1593\nfret,1,tamingoftheshrew,1593\nseal'd,1,tamingoftheshrew,1593\nthreatening,1,tamingoftheshrew,1593\nperemptory,1,tamingoftheshrew,1593\nAgenor,1,tamingoftheshrew,1593\nstags,1,tamingoftheshrew,1593\nrepaired,1,tamingoftheshrew,1593\nworthless,1,tamingoftheshrew,1593\nabandon'd,1,tamingoftheshrew,1593\nBeing,1,tamingoftheshrew,1593\nWhatever,1,tamingoftheshrew,1593\nletters,1,tamingoftheshrew,1593\nSacred,1,tamingoftheshrew,1593\nceremonies,1,tamingoftheshrew,1593\ningrate,1,tamingoftheshrew,1593\nmockery,1,tamingoftheshrew,1593\nHorns,1,tamingoftheshrew,1593\ntrouble,1,tamingoftheshrew,1593\nHuntsmen,1,tamingoftheshrew,1593\nsayest,1,tamingoftheshrew,1593\nRome,1,tamingoftheshrew,1593\nlouder,1,tamingoftheshrew,1593\ncelsa,1,tamingoftheshrew,1593\npossession,1,tamingoftheshrew,1593\nbolster,1,tamingoftheshrew,1593\nLombardy,1,tamingoftheshrew,1593\ndisfigure,1,tamingoftheshrew,1593\nwoodcock,1,tamingoftheshrew,1593\nfray,1,tamingoftheshrew,1593\nmilder,1,tamingoftheshrew,1593\nstall,1,tamingoftheshrew,1593\ncuriously,1,tamingoftheshrew,1593\nsame,1,tamingoftheshrew,1593\nBergamo,1,tamingoftheshrew,1593\ntaste,1,tamingoftheshrew,1593\npause,1,tamingoftheshrew,1593\nopinion,1,tamingoftheshrew,1593\n'Twixt,1,tamingoftheshrew,1593\nAEacides,1,tamingoftheshrew,1593\nneat,1,tamingoftheshrew,1593\nmerits,1,tamingoftheshrew,1593\nIntolerable,1,tamingoftheshrew,1593\ncarefully,1,tamingoftheshrew,1593\nabate,1,tamingoftheshrew,1593\nretire,1,tamingoftheshrew,1593\nnapping,1,tamingoftheshrew,1593\nknock'd,1,tamingoftheshrew,1593\nbanishment,1,tamingoftheshrew,1593\nwis,1,tamingoftheshrew,1593\nAdriatic,1,tamingoftheshrew,1593\nConfess,1,tamingoftheshrew,1593\nBraved,1,tamingoftheshrew,1593\nexperience,1,tamingoftheshrew,1593\ndiscipline,1,tamingoftheshrew,1593\nsides,1,tamingoftheshrew,1593\nstamp,1,tamingoftheshrew,1593\nfive,1,tamingoftheshrew,1593\nwhirlwinds,1,tamingoftheshrew,1593\noft,1,tamingoftheshrew,1593\nscatters,1,tamingoftheshrew,1593\nUnapt,1,tamingoftheshrew,1593\nWent,1,tamingoftheshrew,1593\nceremonial,1,tamingoftheshrew,1593\narrival,1,tamingoftheshrew,1593\n'Lo,1,tamingoftheshrew,1593\nthoroughly,1,tamingoftheshrew,1593\nsorrow,1,tamingoftheshrew,1593\n'Twill,1,tamingoftheshrew,1593\ncurb,1,tamingoftheshrew,1593\ncure,1,tamingoftheshrew,1593\nfootboy,1,tamingoftheshrew,1593\npublish'd,1,tamingoftheshrew,1593\nimport,1,tamingoftheshrew,1593\nheath,1,tamingoftheshrew,1593\nProcure,1,tamingoftheshrew,1593\nhappiness,1,tamingoftheshrew,1593\nSixscore,1,tamingoftheshrew,1593\ntraffic,1,tamingoftheshrew,1593\nbandy,1,tamingoftheshrew,1593\nbeastly,1,tamingoftheshrew,1593\nwaking,1,tamingoftheshrew,1593\nmeaner,1,tamingoftheshrew,1593\nsermon,1,tamingoftheshrew,1593\ncoxcomb,1,tamingoftheshrew,1593\nbestow'd,1,tamingoftheshrew,1593\nlightness,1,tamingoftheshrew,1593\ndetain'd,1,tamingoftheshrew,1593\nSaw,1,tamingoftheshrew,1593\nquicken,1,tamingoftheshrew,1593\nwalls,1,tamingoftheshrew,1593\nhearkening,1,tamingoftheshrew,1593\nfalcon,1,tamingoftheshrew,1593\nchoked,1,tamingoftheshrew,1593\nalarums,1,tamingoftheshrew,1593\nstanding,1,tamingoftheshrew,1593\nConstrue,1,tamingoftheshrew,1593\nThey're,1,tamingoftheshrew,1593\nyou're,1,tamingoftheshrew,1593\nremains,1,tamingoftheshrew,1593\nnursery,1,tamingoftheshrew,1593\nspeeding,1,tamingoftheshrew,1593\n'supposed,1,tamingoftheshrew,1593\n'Simois,1,tamingoftheshrew,1593\nmaidenhead,1,tamingoftheshrew,1593\ntrance,1,tamingoftheshrew,1593\nrenown'd,1,tamingoftheshrew,1593\nfling,1,tamingoftheshrew,1593\nSuitors,1,tamingoftheshrew,1593\nThink,1,tamingoftheshrew,1593\nstumbling,1,tamingoftheshrew,1593\n'The,1,tamingoftheshrew,1593\nstage,1,tamingoftheshrew,1593\nmould,1,tamingoftheshrew,1593\nable,1,tamingoftheshrew,1593\nrise,1,tamingoftheshrew,1593\ntuned,1,tamingoftheshrew,1593\nRemove,1,tamingoftheshrew,1593\nintent,1,tamingoftheshrew,1593\nfancies',1,tamingoftheshrew,1593\noats,1,tamingoftheshrew,1593\nthemselves,1,tamingoftheshrew,1593\narts,1,tamingoftheshrew,1593\nlure,1,tamingoftheshrew,1593\nHiding,1,tamingoftheshrew,1593\n'leges,1,tamingoftheshrew,1593\nConfounds,1,tamingoftheshrew,1593\nnightingales,1,tamingoftheshrew,1593\nbereft,1,tamingoftheshrew,1593\nSpit,1,tamingoftheshrew,1593\nCretan,1,tamingoftheshrew,1593\nmoonlight,1,tamingoftheshrew,1593\ncomplain,1,tamingoftheshrew,1593\npounds,1,tamingoftheshrew,1593\nSister,1,tamingoftheshrew,1593\ncushions,1,tamingoftheshrew,1593\nbelly,1,tamingoftheshrew,1593\nThrows,1,tamingoftheshrew,1593\npence,1,tamingoftheshrew,1593\nsurvive,1,tamingoftheshrew,1593\nstoop'd,1,tamingoftheshrew,1593\nfestival,1,tamingoftheshrew,1593\ncaught,1,tamingoftheshrew,1593\ngalliases,1,tamingoftheshrew,1593\nhair,1,tamingoftheshrew,1593\nsweets,1,tamingoftheshrew,1593\nmightily,1,tamingoftheshrew,1593\nsurprised,1,tamingoftheshrew,1593\nchiders,1,tamingoftheshrew,1593\nfaces,1,tamingoftheshrew,1593\nGreece,1,tamingoftheshrew,1593\noblivion,1,tamingoftheshrew,1593\nwatery,1,tamingoftheshrew,1593\nHeaven,1,tamingoftheshrew,1593\ntakes,1,tamingoftheshrew,1593\ndainties,1,tamingoftheshrew,1593\nfallen,1,tamingoftheshrew,1593\nconference,1,tamingoftheshrew,1593\nHORTENSIO'S,1,tamingoftheshrew,1593\nrotten,1,tamingoftheshrew,1593\nlistening,1,tamingoftheshrew,1593\nkeeper's,1,tamingoftheshrew,1593\nThinkest,1,tamingoftheshrew,1593\nangel,1,tamingoftheshrew,1593\nfondly,1,tamingoftheshrew,1593\nweeping,1,tamingoftheshrew,1593\nowe,1,tamingoftheshrew,1593\ndroop,1,tamingoftheshrew,1593\nrain,1,tamingoftheshrew,1593\nPlead,1,tamingoftheshrew,1593\ncups,1,tamingoftheshrew,1593\nwaters,1,tamingoftheshrew,1593\nMaid's,1,tamingoftheshrew,1593\nfry,1,tamingoftheshrew,1593\nserves,1,tamingoftheshrew,1593\nskills,1,tamingoftheshrew,1593\nfox,1,tamingoftheshrew,1593\nbeguiled,1,tamingoftheshrew,1593\nuttermost,1,tamingoftheshrew,1593\nstepp'd,1,tamingoftheshrew,1593\nSERVING,1,tamingoftheshrew,1593\nwent,1,tamingoftheshrew,1593\nasketh,1,tamingoftheshrew,1593\nconsolation,1,tamingoftheshrew,1593\nfail,1,tamingoftheshrew,1593\ngifts,1,tamingoftheshrew,1593\ncricket,1,tamingoftheshrew,1593\ncompare,1,tamingoftheshrew,1593\nfain,1,tamingoftheshrew,1593\nwholesome,1,tamingoftheshrew,1593\ndispatch'd,1,tamingoftheshrew,1593\nlustful,1,tamingoftheshrew,1593\nSwear,1,tamingoftheshrew,1593\npheeze,1,tamingoftheshrew,1593\n'if,1,tamingoftheshrew,1593\npedlar,1,tamingoftheshrew,1593\ndiseases,1,tamingoftheshrew,1593\nmolto,1,tamingoftheshrew,1593\nThither,1,tamingoftheshrew,1593\ndoublet,1,tamingoftheshrew,1593\nsportful,1,tamingoftheshrew,1593\nclef,1,tamingoftheshrew,1593\nBrother,1,tamingoftheshrew,1593\nVincetino's,1,tamingoftheshrew,1593\nsaint,1,tamingoftheshrew,1593\nbegnawn,1,tamingoftheshrew,1593\ndeluding,1,tamingoftheshrew,1593\namends,1,tamingoftheshrew,1593\nwander,1,tamingoftheshrew,1593\nmourns,1,tamingoftheshrew,1593\nCall'd,1,tamingoftheshrew,1593\nfame,1,tamingoftheshrew,1593\nsilly,1,tamingoftheshrew,1593\nkites,1,tamingoftheshrew,1593\nuttereth,1,tamingoftheshrew,1593\nthrew,1,tamingoftheshrew,1593\nfly,1,tamingoftheshrew,1593\nclerk,1,tamingoftheshrew,1593\nroses,1,tamingoftheshrew,1593\nhusbanded,1,tamingoftheshrew,1593\nlodged,1,tamingoftheshrew,1593\nride,1,tamingoftheshrew,1593\nRoundly,1,tamingoftheshrew,1593\nfans,1,tamingoftheshrew,1593\n'em,1,tamingoftheshrew,1593\nesteem'd,1,tamingoftheshrew,1593\nSorrow,1,tamingoftheshrew,1593\nperfect,1,tamingoftheshrew,1593\nSupposing,1,tamingoftheshrew,1593\nfill,1,tamingoftheshrew,1593\nglances,1,tamingoftheshrew,1593\naffied,1,tamingoftheshrew,1593\nbridegroom's,1,tamingoftheshrew,1593\nbarber's,1,tamingoftheshrew,1593\nfriar,1,tamingoftheshrew,1593\nbuckled,1,tamingoftheshrew,1593\nexternal,1,tamingoftheshrew,1593\nbrushed,1,tamingoftheshrew,1593\nbuckler,1,tamingoftheshrew,1593\nImagine,1,tamingoftheshrew,1593\ndotard,1,tamingoftheshrew,1593\nbarn,1,tamingoftheshrew,1593\nthereby,1,tamingoftheshrew,1593\nNear,1,tamingoftheshrew,1593\nunexperienced,1,tamingoftheshrew,1593\nminded,1,tamingoftheshrew,1593\nbare,1,tamingoftheshrew,1593\nmeddle,1,tamingoftheshrew,1593\narrogance,1,tamingoftheshrew,1593\nmasquing,1,tamingoftheshrew,1593\nvex,1,tamingoftheshrew,1593\nsmooth,1,tamingoftheshrew,1593\nqueen,1,tamingoftheshrew,1593\nMeasures,1,tamingoftheshrew,1593\nbeware,1,tamingoftheshrew,1593\nbetters,1,tamingoftheshrew,1593\nwives,1,tamingoftheshrew,1593\nbate,1,tamingoftheshrew,1593\nwhither,1,tamingoftheshrew,1593\nGlad,1,tamingoftheshrew,1593\nboss'd,1,tamingoftheshrew,1593\nwatch'd,1,tamingoftheshrew,1593\nbars,1,tamingoftheshrew,1593\nhour,1,tamingoftheshrew,1593\nincur,1,tamingoftheshrew,1593\nstrikes,1,tamingoftheshrew,1593\nthanked,1,tamingoftheshrew,1593\nmouth'd,1,tamingoftheshrew,1593\nKnocks,1,tamingoftheshrew,1593\nTrembled,1,tamingoftheshrew,1593\nslanderous,1,tamingoftheshrew,1593\npeereth,1,tamingoftheshrew,1593\nhelding,1,tamingoftheshrew,1593\ndevote,1,tamingoftheshrew,1593\nVery,1,tamingoftheshrew,1593\nOfficer,1,tamingoftheshrew,1593\nVisit,1,tamingoftheshrew,1593\nweakness,1,tamingoftheshrew,1593\nnames,1,tamingoftheshrew,1593\ntrapp'd,1,tamingoftheshrew,1593\nSibyl,1,tamingoftheshrew,1593\nnamed,1,tamingoftheshrew,1593\nEach,1,tamingoftheshrew,1593\nfare,1,tamingoftheshrew,1593\nsurly,1,tamingoftheshrew,1593\nwaded,1,tamingoftheshrew,1593\nfavourable,1,tamingoftheshrew,1593\nfarm,1,tamingoftheshrew,1593\ngallant,1,tamingoftheshrew,1593\ntall,1,tamingoftheshrew,1593\ncoat,1,tamingoftheshrew,1593\nListen,1,tamingoftheshrew,1593\naccoutrements,1,tamingoftheshrew,1593\nBeloved,1,tamingoftheshrew,1593\nreckon'd,1,tamingoftheshrew,1593\namiable,1,tamingoftheshrew,1593\nman's,1,tamingoftheshrew,1593\nwelcomed,1,tamingoftheshrew,1593\nChristmas,1,tamingoftheshrew,1593\nError,1,tamingoftheshrew,1593\n'Sigeia,1,tamingoftheshrew,1593\naloft,1,tamingoftheshrew,1593\ntart,1,tamingoftheshrew,1593\nfresher,1,tamingoftheshrew,1593\nwhatsoe'er,1,tamingoftheshrew,1593\notherwise,1,tamingoftheshrew,1593\ncompassed,1,tamingoftheshrew,1593\nHenry,1,tamingoftheshrew,1593\ngiven,1,tamingoftheshrew,1593\nTrust,1,tamingoftheshrew,1593\njests,1,tamingoftheshrew,1593\nWorse,1,tamingoftheshrew,1593\nSocrates',1,tamingoftheshrew,1593\nlampass,1,tamingoftheshrew,1593\nintolerable,1,tamingoftheshrew,1593\nAssist,1,tamingoftheshrew,1593\nrefresh,1,tamingoftheshrew,1593\ntutors,1,tamingoftheshrew,1593\nopenly,1,tamingoftheshrew,1593\ntrumpets',1,tamingoftheshrew,1593\n'lordship,1,tamingoftheshrew,1593\npledge,1,tamingoftheshrew,1593\nshook,1,tamingoftheshrew,1593\nTravel,1,tamingoftheshrew,1593\njogging,1,tamingoftheshrew,1593\nswears,1,tamingoftheshrew,1593\nkersey,1,tamingoftheshrew,1593\nquit,1,tamingoftheshrew,1593\nshort,1,tamingoftheshrew,1593\nclear,1,tamingoftheshrew,1593\nportion,1,tamingoftheshrew,1593\nhole,1,tamingoftheshrew,1593\nmothy,1,tamingoftheshrew,1593\ngreyhounds,1,tamingoftheshrew,1593\ndozen,1,tamingoftheshrew,1593\nsciences,1,tamingoftheshrew,1593\nCunning,1,tamingoftheshrew,1593\nMEN,1,tamingoftheshrew,1593\nunknit,1,tamingoftheshrew,1593\nhollow,1,tamingoftheshrew,1593\nLives,1,tamingoftheshrew,1593\ncur,1,tamingoftheshrew,1593\ncovenants,1,tamingoftheshrew,1593\nfollows,1,tamingoftheshrew,1593\nAlthough,1,tamingoftheshrew,1593\nAlcides',1,tamingoftheshrew,1593\n'cerns,1,tamingoftheshrew,1593\nfeasts,1,tamingoftheshrew,1593\nfires,1,tamingoftheshrew,1593\nHORTENSIA,1,tamingoftheshrew,1593\noyster,1,tamingoftheshrew,1593\nschools,1,tamingoftheshrew,1593\nwidowhood,1,tamingoftheshrew,1593\nasking,1,tamingoftheshrew,1593\ndecreased,1,tamingoftheshrew,1593\nassist,1,tamingoftheshrew,1593\ndepth,1,tamingoftheshrew,1593\ndiscomfited,1,tamingoftheshrew,1593\namounts,1,tamingoftheshrew,1593\nlives,1,tamingoftheshrew,1593\nstreets,1,tamingoftheshrew,1593\nrabbit,1,tamingoftheshrew,1593\nremnant,1,tamingoftheshrew,1593\nqueas,1,tamingoftheshrew,1593\nwriting,1,tamingoftheshrew,1593\nresolution,1,tamingoftheshrew,1593\nvirtues,1,tamingoftheshrew,1593\nseal,1,tamingoftheshrew,1593\nKindness,1,tamingoftheshrew,1593\nfavours,1,tamingoftheshrew,1593\ngives,1,tamingoftheshrew,1593\ncholer,1,tamingoftheshrew,1593\nthrall'd,1,tamingoftheshrew,1593\ngoodman,1,tamingoftheshrew,1593\nfitted,1,tamingoftheshrew,1593\nSeize,1,tamingoftheshrew,1593\nAnon,1,tamingoftheshrew,1593\npackthread,1,tamingoftheshrew,1593\nhearts,1,tamingoftheshrew,1593\nsatisfied,1,tamingoftheshrew,1593\nmanage,1,tamingoftheshrew,1593\nabject,1,tamingoftheshrew,1593\nhung,1,tamingoftheshrew,1593\nperils,1,tamingoftheshrew,1593\nperfumed,1,tamingoftheshrew,1593\nbeset,1,tamingoftheshrew,1593\nfourteen,1,tamingoftheshrew,1593\nTrow,1,tamingoftheshrew,1593\ncool,1,tamingoftheshrew,1593\nlying,1,tamingoftheshrew,1593\nbriefer,1,tamingoftheshrew,1593\nattendance,1,tamingoftheshrew,1593\nAnne,1,tamingoftheshrew,1593\nAnna,1,tamingoftheshrew,1593\nfavour'd,1,tamingoftheshrew,1593\nfairer,1,tamingoftheshrew,1593\npacket,1,tamingoftheshrew,1593\nsweat,1,tamingoftheshrew,1593\nwomankind,1,tamingoftheshrew,1593\nBinaca,1,tamingoftheshrew,1593\ndrunk,1,tamingoftheshrew,1593\ndaunt,1,tamingoftheshrew,1593\nserviceable,1,tamingoftheshrew,1593\nexpound,1,tamingoftheshrew,1593\naglet,1,tamingoftheshrew,1593\nsuits,1,tamingoftheshrew,1593\nquaff'd,1,tamingoftheshrew,1593\nbaby,1,tamingoftheshrew,1593\nreckoning,1,tamingoftheshrew,1593\ninsolence,1,tamingoftheshrew,1593\nquam,1,tamingoftheshrew,1593\naught,1,tamingoftheshrew,1593\nsexton's,1,tamingoftheshrew,1593\ncomb,1,tamingoftheshrew,1593\nknowest,1,tamingoftheshrew,1593\ntalking,1,tamingoftheshrew,1593\npresence,1,tamingoftheshrew,1593\nbracelets,1,tamingoftheshrew,1593\n'Priami,1,tamingoftheshrew,1593\ngold's,1,tamingoftheshrew,1593\near'd,1,tamingoftheshrew,1593\nunkindness,1,tamingoftheshrew,1593\nsupposed,1,tamingoftheshrew,1593\nfaded,1,tamingoftheshrew,1593\nmarvellous,1,tamingoftheshrew,1593\ncoy,1,tamingoftheshrew,1593\nsupposes,1,tamingoftheshrew,1593\nsees,1,tamingoftheshrew,1593\npick'd,1,tamingoftheshrew,1593\ndrunken,1,tamingoftheshrew,1593\nconclude,1,tamingoftheshrew,1593\npricks,1,tamingoftheshrew,1593\npresenters,1,tamingoftheshrew,1593\ncondition,1,tamingoftheshrew,1593\ncost,1,tamingoftheshrew,1593\nkennel,1,tamingoftheshrew,1593\nbattle,1,tamingoftheshrew,1593\nspangle,1,tamingoftheshrew,1593\nhound,1,tamingoftheshrew,1593\ncrest,1,tamingoftheshrew,1593\nsimile,1,tamingoftheshrew,1593\nBeggars,1,tamingoftheshrew,1593\nsetting,1,tamingoftheshrew,1593\nranging,1,tamingoftheshrew,1593\ntraitor,1,tamingoftheshrew,1593\nreplied,1,tamingoftheshrew,1593\ntransmutation,1,tamingoftheshrew,1593\nruffs,1,tamingoftheshrew,1593\nthrust,1,tamingoftheshrew,1593\npreferment,1,tamingoftheshrew,1593\nchanging,1,tamingoftheshrew,1593\nhearken,1,tamingoftheshrew,1593\nstoics,1,tamingoftheshrew,1593\ndiaper,1,tamingoftheshrew,1593\nObey,1,tamingoftheshrew,1593\ndeign,1,tamingoftheshrew,1593\nscrivener,1,tamingoftheshrew,1593\nHe'll,1,tamingoftheshrew,1593\n'twill,1,tamingoftheshrew,1593\nloveth,1,tamingoftheshrew,1593\neyne,1,tamingoftheshrew,1593\nnourisheth,1,tamingoftheshrew,1593\njointure,1,tamingoftheshrew,1593\ncontributors,1,tamingoftheshrew,1593\nchests,1,tamingoftheshrew,1593\nmillion,1,tamingoftheshrew,1593\nVoice,1,tamingoftheshrew,1593\nmotion's,1,tamingoftheshrew,1593\noutcast,1,tamingoftheshrew,1593\njolly,1,tamingoftheshrew,1593\ncountrymen,1,tamingoftheshrew,1593\nsuffice,1,tamingoftheshrew,1593\nawaken'd,1,tamingoftheshrew,1593\nSend,1,tamingoftheshrew,1593\nextremes,1,tamingoftheshrew,1593\nparentage,1,tamingoftheshrew,1593\nsecure,1,tamingoftheshrew,1593\ninfused,1,tamingoftheshrew,1593\nself,1,tamingoftheshrew,1593\ngusts,1,tamingoftheshrew,1593\nprying,1,tamingoftheshrew,1593\nConqueror,1,tamingoftheshrew,1593\nMoved,1,tamingoftheshrew,1593\nfloods,1,tamingoftheshrew,1593\ngroweth,1,tamingoftheshrew,1593\nJust,1,tamingoftheshrew,1593\nworkmanly,1,tamingoftheshrew,1593\ncases,1,tamingoftheshrew,1593\nRalph,1,tamingoftheshrew,1593\nsee'st,1,tamingoftheshrew,1593\nrudiments,1,tamingoftheshrew,1593\nleg,1,tamingoftheshrew,1593\nsheeps,1,tamingoftheshrew,1593\nled,1,tamingoftheshrew,1593\nBelman,1,tamingoftheshrew,1593\nmated,1,tamingoftheshrew,1593\nmother's,1,tamingoftheshrew,1593\nporringer,1,tamingoftheshrew,1593\nBasta,1,tamingoftheshrew,1593\nordain'd,1,tamingoftheshrew,1593\nhailed,1,tamingoftheshrew,1593\nbade,1,tamingoftheshrew,1593\ncenser,1,tamingoftheshrew,1593\nnurse,1,tamingoftheshrew,1593\nRoman,1,tamingoftheshrew,1593\ndeceive,1,tamingoftheshrew,1593\nFeast,1,tamingoftheshrew,1593\ngreeting,1,tamingoftheshrew,1593\nherald,1,tamingoftheshrew,1593\npaucas,1,tamingoftheshrew,1593\nwrangling,1,tamingoftheshrew,1593\nformat,1,tamingoftheshrew,1593\nplunge,1,tamingoftheshrew,1593\nRage,1,tamingoftheshrew,1593\nformal,1,tamingoftheshrew,1593\nfearing,1,tamingoftheshrew,1593\nsickness,1,tamingoftheshrew,1593\npurpose,1,tamingoftheshrew,1593\ncurrish,1,tamingoftheshrew,1593\nClowder,1,tamingoftheshrew,1593\ninvite,1,tamingoftheshrew,1593\nlip,1,tamingoftheshrew,1593\ngogs,1,tamingoftheshrew,1593\nMistrust,1,tamingoftheshrew,1593\nsheets,1,tamingoftheshrew,1593\nHearing,1,tamingoftheshrew,1593\nbags,1,tamingoftheshrew,1593\nbudding,1,tamingoftheshrew,1593\nuntie,1,tamingoftheshrew,1593\ntriumph,1,tamingoftheshrew,1593\nuntil,1,tamingoftheshrew,1593\nTwo,1,tamingoftheshrew,1593\ntrot,1,tamingoftheshrew,1593\ntrow,1,tamingoftheshrew,1593\nbrow,1,tamingoftheshrew,1593\ncredulous,1,tamingoftheshrew,1593\nstorms,1,tamingoftheshrew,1593\nfrantic,1,tamingoftheshrew,1593\nbeareth,1,tamingoftheshrew,1593\nNothing,1,tamingoftheshrew,1593\neffects,1,tamingoftheshrew,1593\namid,1,tamingoftheshrew,1593\nperpetually,1,tamingoftheshrew,1593\nfustian,1,tamingoftheshrew,1593\npersuade,1,tamingoftheshrew,1593\nSilver,1,tamingoftheshrew,1593\ncommits,1,tamingoftheshrew,1593\nmar,1,tamingoftheshrew,1593\nspirits,1,tamingoftheshrew,1593\nWalter's,1,tamingoftheshrew,1593\nneedlework,1,tamingoftheshrew,1593\noverjoy'd,1,tamingoftheshrew,1593\nvicar,1,tamingoftheshrew,1593\npeat,1,tamingoftheshrew,1593\nsounded,1,tamingoftheshrew,1593\ndulcet,1,tamingoftheshrew,1593\nsuccessful,1,tamingoftheshrew,1593\nconstrue,1,tamingoftheshrew,1593\nmaintained,1,tamingoftheshrew,1593\no'Sunday,1,tamingoftheshrew,1593\nGave,1,tamingoftheshrew,1593\ndarkest,1,tamingoftheshrew,1593\nspite,1,tamingoftheshrew,1593\nabroad,1,tamingoftheshrew,1593\nconduct,1,tamingoftheshrew,1593\nobeisance,1,tamingoftheshrew,1593\nhostess,1,tamingoftheshrew,1593\nunlike,1,tamingoftheshrew,1593\nforced,1,tamingoftheshrew,1593\neel,1,tamingoftheshrew,1593\nbegins,1,tamingoftheshrew,1593\nsteeds,1,tamingoftheshrew,1593\nParis,1,tamingoftheshrew,1593\ndoing,1,tamingoftheshrew,1593\nspavins,1,tamingoftheshrew,1593\npoesy,1,tamingoftheshrew,1593\ntails,1,tamingoftheshrew,1593\ninferior,1,tamingoftheshrew,1593\nchosen,1,tamingoftheshrew,1593\nmew,1,tamingoftheshrew,1593\nreadiness,1,tamingoftheshrew,1593\nAccording,1,tamingoftheshrew,1593\nRise,1,tamingoftheshrew,1593\nstirrup,1,tamingoftheshrew,1593\nfatherly,1,tamingoftheshrew,1593\nsovereign,1,tamingoftheshrew,1593\npallabris,1,tamingoftheshrew,1593\nstreet,1,tamingoftheshrew,1593\n'I'll,1,tamingoftheshrew,1593\nlectures,1,tamingoftheshrew,1593\ndigress,1,tamingoftheshrew,1593\nTurkey,1,tamingoftheshrew,1593\nheartily,1,tamingoftheshrew,1593\nflea,1,tamingoftheshrew,1593\nNeighbours,1,tamingoftheshrew,1593\nbethink,1,tamingoftheshrew,1593\nconcerneth,1,tamingoftheshrew,1593\ncrafty,1,tamingoftheshrew,1593\nsolum,1,tamingoftheshrew,1593\neleven,1,tamingoftheshrew,1593\nwound,1,tamingoftheshrew,1593\ncarouses,1,tamingoftheshrew,1593\nparlor,1,tamingoftheshrew,1593\n'Madam,1,tamingoftheshrew,1593\nMuddy,1,tamingoftheshrew,1593\nhomage,1,tamingoftheshrew,1593\nAdonis,1,tamingoftheshrew,1593\nE'en,1,tamingoftheshrew,1593\ntelling,1,tamingoftheshrew,1593\nwouns,1,tamingoftheshrew,1593\newers,1,tamingoftheshrew,1593\nflat,1,tamingoftheshrew,1593\ncaparisoned,1,tamingoftheshrew,1593\nflap,1,tamingoftheshrew,1593\nsaddles,1,tamingoftheshrew,1593\nbestrew'd,1,tamingoftheshrew,1593\nconferring,1,tamingoftheshrew,1593\nfardingales,1,tamingoftheshrew,1593\n'point,1,tamingoftheshrew,1593\nCHRISTOPHER,1,tamingoftheshrew,1593\nSings,1,tamingoftheshrew,1593\nbetter'd,1,tamingoftheshrew,1593\ncommonly,1,tamingoftheshrew,1593\nlodgers,1,tamingoftheshrew,1593\nfrivolous,1,tamingoftheshrew,1593\nEat,1,tamingoftheshrew,1593\nAristotle's,1,tamingoftheshrew,1593\nGabriel's,1,tamingoftheshrew,1593\ngets,1,tamingoftheshrew,1593\nsilver,1,tamingoftheshrew,1593\nknave's,1,tamingoftheshrew,1593\nharms,1,tamingoftheshrew,1593\nlave,1,tamingoftheshrew,1593\nbreeching,1,tamingoftheshrew,1593\nragged,1,tamingoftheshrew,1593\nnature,1,tamingoftheshrew,1593\nLend,1,tamingoftheshrew,1593\nCrowns,1,tamingoftheshrew,1593\nbias,1,tamingoftheshrew,1593\nentreaty,1,tamingoftheshrew,1593\ngoing,1,tamingoftheshrew,1593\ndespiteful,1,tamingoftheshrew,1593\nwitty,1,tamingoftheshrew,1593\nspring,1,tamingoftheshrew,1593\nentrance,1,tamingoftheshrew,1593\nrisen,1,tamingoftheshrew,1593\ngartered,1,tamingoftheshrew,1593\nlover's,1,tamingoftheshrew,1593\nYou'll,1,tamingoftheshrew,1593\npayment,1,tamingoftheshrew,1593\nnuts,1,tamingoftheshrew,1593\ninstitute,1,tamingoftheshrew,1593\ncareless,1,tamingoftheshrew,1593\nlaid,1,tamingoftheshrew,1593\ndiscovered,1,tamingoftheshrew,1593\nFace,1,tamingoftheshrew,1593\nasleep,1,tamingoftheshrew,1593\ninstructions,1,tamingoftheshrew,1593\ndart,1,tamingoftheshrew,1593\nprincely,1,tamingoftheshrew,1593\nnightingale,1,tamingoftheshrew,1593\nlosses,1,tamingoftheshrew,1593\nhonour's,1,tamingoftheshrew,1593\nfamish,1,tamingoftheshrew,1593\nFalls,1,tamingoftheshrew,1593\nmaintenance,1,tamingoftheshrew,1593\nLest,1,tamingoftheshrew,1593\nGentles,1,tamingoftheshrew,1593\nlogic,1,tamingoftheshrew,1593\nweight,1,tamingoftheshrew,1593\nHe's,1,tamingoftheshrew,1593\nGrissel,1,tamingoftheshrew,1593\nlane,1,tamingoftheshrew,1593\npillory,1,tamingoftheshrew,1593\nivory,1,tamingoftheshrew,1593\nroasted,1,tamingoftheshrew,1593\ndry,1,tamingoftheshrew,1593\nplucking,1,tamingoftheshrew,1593\nlamb,1,tamingoftheshrew,1593\nneeded,1,tamingoftheshrew,1593\nDRAMATIS,1,tamingoftheshrew,1593\ninches,1,tamingoftheshrew,1593\nUntil,1,tamingoftheshrew,1593\nguests,1,tamingoftheshrew,1593\nfilthy,1,tamingoftheshrew,1593\npropose,1,tamingoftheshrew,1593\nanswerable,1,tamingoftheshrew,1593\nprerogative,1,tamingoftheshrew,1593\narmed,1,tamingoftheshrew,1593\nsweeting,1,tamingoftheshrew,1593\ndame,1,tamingoftheshrew,1593\nlargess,1,tamingoftheshrew,1593\nLeft,1,tamingoftheshrew,1593\nquietly,1,tamingoftheshrew,1593\nentreated,1,tamingoftheshrew,1593\ncakes,1,tamingoftheshrew,1593\nKneeling,1,tamingoftheshrew,1593\nAffection,1,tamingoftheshrew,1593\nsmell,1,tamingoftheshrew,1593\ndew,1,tamingoftheshrew,1593\ngentler,1,tamingoftheshrew,1593\nking,1,tamingoftheshrew,1593\nstrewed,1,tamingoftheshrew,1593\nprivate,1,tamingoftheshrew,1593\nkine,1,tamingoftheshrew,1593\ndwelling,1,tamingoftheshrew,1593\npossessions,1,tamingoftheshrew,1593\nwenches,1,tamingoftheshrew,1593\nmio,1,tamingoftheshrew,1593\nrepaid,1,tamingoftheshrew,1593\nslip,1,tamingoftheshrew,1593\nemboss'd,1,tamingoftheshrew,1593\nslit,1,tamingoftheshrew,1593\n'Will't,1,tamingoftheshrew,1593\nbuttery,1,tamingoftheshrew,1593\nFall,1,tamingoftheshrew,1593\nkill,1,tamingoftheshrew,1593\ncannon,1,tamingoftheshrew,1593\nforbear,1,tamingoftheshrew,1593\nrepair,1,tamingoftheshrew,1593\n'mongst,1,tamingoftheshrew,1593\nFine,1,tamingoftheshrew,1593\nflattering,1,tamingoftheshrew,1593\noaths,1,tamingoftheshrew,1593\nbids,1,tamingoftheshrew,1593\nlack,1,tamingoftheshrew,1593\npetticoat,1,tamingoftheshrew,1593\nmarket,1,tamingoftheshrew,1593\nThrice,1,tamingoftheshrew,1593\nhunting,1,tamingoftheshrew,1593\ncardmaker,1,tamingoftheshrew,1593\nprivately,1,tamingoftheshrew,1593\ndirection,1,tamingoftheshrew,1593\nmerchant's,1,tamingoftheshrew,1593\nFlorentine,1,tamingoftheshrew,1593\noffer'st,1,tamingoftheshrew,1593\n'Frets,1,tamingoftheshrew,1593\nshare,1,tamingoftheshrew,1593\nships,1,tamingoftheshrew,1593\n'Redime,1,tamingoftheshrew,1593\npresumes,1,tamingoftheshrew,1593\nsharp,1,tamingoftheshrew,1593\nBrach,1,tamingoftheshrew,1593\ndegrees,1,tamingoftheshrew,1593\nhedge,1,tamingoftheshrew,1593\nsway,1,tamingoftheshrew,1593\nbusied,1,tamingoftheshrew,1593\nheed,2,tamingoftheshrew,1593\nheel,2,tamingoftheshrew,1593\nsleeve,2,tamingoftheshrew,1593\nregard,2,tamingoftheshrew,1593\nvillany,2,tamingoftheshrew,1593\nlusty,2,tamingoftheshrew,1593\ninstruments,2,tamingoftheshrew,1593\nmoral,2,tamingoftheshrew,1593\nsped,2,tamingoftheshrew,1593\nbonny,2,tamingoftheshrew,1593\nmistaking,2,tamingoftheshrew,1593\nred,2,tamingoftheshrew,1593\ndays,2,tamingoftheshrew,1593\nbasin,2,tamingoftheshrew,1593\nfathers,2,tamingoftheshrew,1593\ndouble,2,tamingoftheshrew,1593\ncountry,2,tamingoftheshrew,1593\nforswear,2,tamingoftheshrew,1593\ndream'd,2,tamingoftheshrew,1593\nspeech,2,tamingoftheshrew,1593\nweary,2,tamingoftheshrew,1593\nfollowing,2,tamingoftheshrew,1593\nAlas,2,tamingoftheshrew,1593\npeasant,2,tamingoftheshrew,1593\nFit,2,tamingoftheshrew,1593\nbrown,2,tamingoftheshrew,1593\nhasty,2,tamingoftheshrew,1593\nmend,2,tamingoftheshrew,1593\nproclaim'd,2,tamingoftheshrew,1593\nroad,2,tamingoftheshrew,1593\nNever,2,tamingoftheshrew,1593\nwealthily,2,tamingoftheshrew,1593\ndirt,2,tamingoftheshrew,1593\nMust,2,tamingoftheshrew,1593\nfinger,2,tamingoftheshrew,1593\nlowly,2,tamingoftheshrew,1593\nweighty,2,tamingoftheshrew,1593\nthirty,2,tamingoftheshrew,1593\nmete,2,tamingoftheshrew,1593\npatron,2,tamingoftheshrew,1593\nWhom,2,tamingoftheshrew,1593\nsops,2,tamingoftheshrew,1593\ncast,2,tamingoftheshrew,1593\nloathsome,2,tamingoftheshrew,1593\npleasing,2,tamingoftheshrew,1593\nmercy,2,tamingoftheshrew,1593\nsad,2,tamingoftheshrew,1593\n'What,2,tamingoftheshrew,1593\nWhose,2,tamingoftheshrew,1593\nbearing,2,tamingoftheshrew,1593\ndance,2,tamingoftheshrew,1593\ncape,2,tamingoftheshrew,1593\nGive,2,tamingoftheshrew,1593\nbroken,2,tamingoftheshrew,1593\ncaps,2,tamingoftheshrew,1593\ntrumpet,2,tamingoftheshrew,1593\nMuch,2,tamingoftheshrew,1593\nGramercies,2,tamingoftheshrew,1593\nHortensio's,2,tamingoftheshrew,1593\nmaking,2,tamingoftheshrew,1593\nSimois,2,tamingoftheshrew,1593\nvisit,2,tamingoftheshrew,1593\nvied,2,tamingoftheshrew,1593\nsomething,2,tamingoftheshrew,1593\nTwenty,2,tamingoftheshrew,1593\nMistake,2,tamingoftheshrew,1593\nOff,2,tamingoftheshrew,1593\nconceive,2,tamingoftheshrew,1593\nhaggard,2,tamingoftheshrew,1593\ndeceased,2,tamingoftheshrew,1593\nfingering,2,tamingoftheshrew,1593\n'A,2,tamingoftheshrew,1593\nmoveable,2,tamingoftheshrew,1593\nshe'll,2,tamingoftheshrew,1593\nsea,2,tamingoftheshrew,1593\nbridal,2,tamingoftheshrew,1593\nfell,2,tamingoftheshrew,1593\ndough,2,tamingoftheshrew,1593\ndeliver,2,tamingoftheshrew,1593\nembrace,2,tamingoftheshrew,1593\nworth,2,tamingoftheshrew,1593\nsol,2,tamingoftheshrew,1593\nbringing,2,tamingoftheshrew,1593\nwinds,2,tamingoftheshrew,1593\nFarewell,2,tamingoftheshrew,1593\npictures,2,tamingoftheshrew,1593\nfashions,2,tamingoftheshrew,1593\nwhere's,2,tamingoftheshrew,1593\nashore,2,tamingoftheshrew,1593\ncounsel,2,tamingoftheshrew,1593\ncozen,2,tamingoftheshrew,1593\nTheir,2,tamingoftheshrew,1593\nforthwith,2,tamingoftheshrew,1593\nacquainted,2,tamingoftheshrew,1593\ndeeply,2,tamingoftheshrew,1593\nthin,2,tamingoftheshrew,1593\nAttendants,2,tamingoftheshrew,1593\npieced,2,tamingoftheshrew,1593\naffect,2,tamingoftheshrew,1593\nindifferent,2,tamingoftheshrew,1593\ntaught,2,tamingoftheshrew,1593\nvile,2,tamingoftheshrew,1593\ncompound,2,tamingoftheshrew,1593\nconceit,2,tamingoftheshrew,1593\nmonster,2,tamingoftheshrew,1593\nprofess,2,tamingoftheshrew,1593\ncrupper,2,tamingoftheshrew,1593\nwive,2,tamingoftheshrew,1593\ntwelve,2,tamingoftheshrew,1593\nborn,2,tamingoftheshrew,1593\nTush,2,tamingoftheshrew,1593\n'celsa,2,tamingoftheshrew,1593\nPriami,2,tamingoftheshrew,1593\nruns,2,tamingoftheshrew,1593\nscold,2,tamingoftheshrew,1593\nterms,2,tamingoftheshrew,1593\nencounter,2,tamingoftheshrew,1593\nloose,2,tamingoftheshrew,1593\nmark'd,2,tamingoftheshrew,1593\nworthy,2,tamingoftheshrew,1593\nWherein,2,tamingoftheshrew,1593\nthaw,2,tamingoftheshrew,1593\nfeed,2,tamingoftheshrew,1593\ntaming,2,tamingoftheshrew,1593\nrush,2,tamingoftheshrew,1593\nfeet,2,tamingoftheshrew,1593\ngrow,2,tamingoftheshrew,1593\nOld,2,tamingoftheshrew,1593\nbauble,2,tamingoftheshrew,1593\nflesh,2,tamingoftheshrew,1593\nseems,2,tamingoftheshrew,1593\ntitle,2,tamingoftheshrew,1593\nexpressly,2,tamingoftheshrew,1593\nOne,2,tamingoftheshrew,1593\nwant,2,tamingoftheshrew,1593\nstead,2,tamingoftheshrew,1593\nwise,2,tamingoftheshrew,1593\nwitnesses,2,tamingoftheshrew,1593\nstocks,2,tamingoftheshrew,1593\nrule,2,tamingoftheshrew,1593\nwash,2,tamingoftheshrew,1593\nmistake,2,tamingoftheshrew,1593\nboot,2,tamingoftheshrew,1593\nwasp,2,tamingoftheshrew,1593\ncircumstances,2,tamingoftheshrew,1593\ndesire,2,tamingoftheshrew,1593\nrevel,2,tamingoftheshrew,1593\ncoats,2,tamingoftheshrew,1593\nparts,2,tamingoftheshrew,1593\nfairest,2,tamingoftheshrew,1593\nSoftly,2,tamingoftheshrew,1593\neach,2,tamingoftheshrew,1593\nbig,2,tamingoftheshrew,1593\nwherefore,2,tamingoftheshrew,1593\naim'd,2,tamingoftheshrew,1593\nha',2,tamingoftheshrew,1593\nmerriment,2,tamingoftheshrew,1593\nmanners,2,tamingoftheshrew,1593\nhap,2,tamingoftheshrew,1593\nA',2,tamingoftheshrew,1593\ncrack,2,tamingoftheshrew,1593\nBelike,2,tamingoftheshrew,1593\nsign,2,tamingoftheshrew,1593\nmeasure,2,tamingoftheshrew,1593\nAt,2,tamingoftheshrew,1593\npay,2,tamingoftheshrew,1593\nhang'd,2,tamingoftheshrew,1593\nNathaniel,2,tamingoftheshrew,1593\ninventions,2,tamingoftheshrew,1593\namong,2,tamingoftheshrew,1593\nsmile,2,tamingoftheshrew,1593\nsensible,2,tamingoftheshrew,1593\nperfume,2,tamingoftheshrew,1593\nproof,2,tamingoftheshrew,1593\nkept,2,tamingoftheshrew,1593\nbelike,2,tamingoftheshrew,1593\nto't,2,tamingoftheshrew,1593\nWithin,2,tamingoftheshrew,1593\nply,2,tamingoftheshrew,1593\nflowers,2,tamingoftheshrew,1593\nmeant,2,tamingoftheshrew,1593\n'With,2,tamingoftheshrew,1593\nhusbands,2,tamingoftheshrew,1593\npate,2,tamingoftheshrew,1593\nsport,2,tamingoftheshrew,1593\nyourselves,2,tamingoftheshrew,1593\nheads,2,tamingoftheshrew,1593\nkiss'd,2,tamingoftheshrew,1593\nbrawling,2,tamingoftheshrew,1593\nsirs,2,tamingoftheshrew,1593\ncourteous,2,tamingoftheshrew,1593\nweek,2,tamingoftheshrew,1593\ngrief,2,tamingoftheshrew,1593\nleather,2,tamingoftheshrew,1593\ndove,2,tamingoftheshrew,1593\nburn,2,tamingoftheshrew,1593\ngot,2,tamingoftheshrew,1593\ncat,2,tamingoftheshrew,1593\nstruck,2,tamingoftheshrew,1593\nmadman,2,tamingoftheshrew,1593\nsounds,2,tamingoftheshrew,1593\ntricks,2,tamingoftheshrew,1593\ndevilish,2,tamingoftheshrew,1593\nSirs,2,tamingoftheshrew,1593\ngaze,2,tamingoftheshrew,1593\nweak,2,tamingoftheshrew,1593\n'greed,2,tamingoftheshrew,1593\nPut,2,tamingoftheshrew,1593\ntwice,2,tamingoftheshrew,1593\nextreme,2,tamingoftheshrew,1593\nswift,2,tamingoftheshrew,1593\namongst,2,tamingoftheshrew,1593\npains,2,tamingoftheshrew,1593\nsister's,2,tamingoftheshrew,1593\nsing,2,tamingoftheshrew,1593\norderly,2,tamingoftheshrew,1593\nheadstrong,2,tamingoftheshrew,1593\nBoth,2,tamingoftheshrew,1593\nconvey'd,2,tamingoftheshrew,1593\nquite,2,tamingoftheshrew,1593\nstorm,2,tamingoftheshrew,1593\ndeep,2,tamingoftheshrew,1593\nbreath,2,tamingoftheshrew,1593\naffection,2,tamingoftheshrew,1593\nha,2,tamingoftheshrew,1593\nHolla,2,tamingoftheshrew,1593\ngift,2,tamingoftheshrew,1593\nfavour,2,tamingoftheshrew,1593\nKates,2,tamingoftheshrew,1593\ndeck,2,tamingoftheshrew,1593\nstood,2,tamingoftheshrew,1593\nsafe,2,tamingoftheshrew,1593\nstool,2,tamingoftheshrew,1593\nfa,2,tamingoftheshrew,1593\nPHILIP,2,tamingoftheshrew,1593\ngain,2,tamingoftheshrew,1593\nApollo,2,tamingoftheshrew,1593\nnotes,2,tamingoftheshrew,1593\nago,2,tamingoftheshrew,1593\nUnless,2,tamingoftheshrew,1593\ndead,2,tamingoftheshrew,1593\nBesides,2,tamingoftheshrew,1593\nseeming,2,tamingoftheshrew,1593\nsack,2,tamingoftheshrew,1593\nstockings,2,tamingoftheshrew,1593\nice,2,tamingoftheshrew,1593\nquaint,2,tamingoftheshrew,1593\ncrab,2,tamingoftheshrew,1593\nshed,2,tamingoftheshrew,1593\nforget,2,tamingoftheshrew,1593\nnewly,2,tamingoftheshrew,1593\nmove,2,tamingoftheshrew,1593\nwonderful,2,tamingoftheshrew,1593\ncommend,2,tamingoftheshrew,1593\nrayed,2,tamingoftheshrew,1593\nfears,2,tamingoftheshrew,1593\nbodied,2,tamingoftheshrew,1593\no',2,tamingoftheshrew,1593\nmi,2,tamingoftheshrew,1593\nidle,2,tamingoftheshrew,1593\nteaching,2,tamingoftheshrew,1593\nargosy,2,tamingoftheshrew,1593\nMyself,2,tamingoftheshrew,1593\nstudies,2,tamingoftheshrew,1593\nendure,2,tamingoftheshrew,1593\nbeholding,2,tamingoftheshrew,1593\nadd,2,tamingoftheshrew,1593\nill,2,tamingoftheshrew,1593\nafternoon,2,tamingoftheshrew,1593\nloved,2,tamingoftheshrew,1593\nblue,2,tamingoftheshrew,1593\ngreater,2,tamingoftheshrew,1593\nsupremacy,2,tamingoftheshrew,1593\njourney,2,tamingoftheshrew,1593\nhop,2,tamingoftheshrew,1593\npresume,2,tamingoftheshrew,1593\nhardly,2,tamingoftheshrew,1593\nSeeing,2,tamingoftheshrew,1593\nslide,2,tamingoftheshrew,1593\nJack,2,tamingoftheshrew,1593\n'pointed,2,tamingoftheshrew,1593\nHacket,2,tamingoftheshrew,1593\nMore,2,tamingoftheshrew,1593\nperform'd,2,tamingoftheshrew,1593\nhusband's,2,tamingoftheshrew,1593\nsee't,2,tamingoftheshrew,1593\nHappy,2,tamingoftheshrew,1593\nre,2,tamingoftheshrew,1593\nliberty,2,tamingoftheshrew,1593\n'regia,2,tamingoftheshrew,1593\nfour,2,tamingoftheshrew,1593\nhalt,2,tamingoftheshrew,1593\nexcuse,2,tamingoftheshrew,1593\ncourse,2,tamingoftheshrew,1593\nstranger,2,tamingoftheshrew,1593\nmended,2,tamingoftheshrew,1593\npack,2,tamingoftheshrew,1593\nfiend,2,tamingoftheshrew,1593\nfresh,2,tamingoftheshrew,1593\nmayst,2,tamingoftheshrew,1593\ntrick,2,tamingoftheshrew,1593\nLuke's,2,tamingoftheshrew,1593\narray,2,tamingoftheshrew,1593\nrivals,2,tamingoftheshrew,1593\nbroke,2,tamingoftheshrew,1593\nArt,2,tamingoftheshrew,1593\n'longeth,2,tamingoftheshrew,1593\nrestored,2,tamingoftheshrew,1593\noccasion,2,tamingoftheshrew,1593\neducation,2,tamingoftheshrew,1593\nfreeze,2,tamingoftheshrew,1593\nventure,2,tamingoftheshrew,1593\nhill,2,tamingoftheshrew,1593\nrose,2,tamingoftheshrew,1593\nneedle,2,tamingoftheshrew,1593\nunknown,2,tamingoftheshrew,1593\napparell'd,2,tamingoftheshrew,1593\nalmost,2,tamingoftheshrew,1593\nfarmer's,2,tamingoftheshrew,1593\napple,2,tamingoftheshrew,1593\ndress,2,tamingoftheshrew,1593\ngently,2,tamingoftheshrew,1593\nbelow,2,tamingoftheshrew,1593\nmildness,2,tamingoftheshrew,1593\nentertainment,2,tamingoftheshrew,1593\nremedy,2,tamingoftheshrew,1593\nbears,2,tamingoftheshrew,1593\ntender,2,tamingoftheshrew,1593\ndrunkard,2,tamingoftheshrew,1593\nvelvet,2,tamingoftheshrew,1593\nours,2,tamingoftheshrew,1593\ncandle,2,tamingoftheshrew,1593\newer,2,tamingoftheshrew,1593\npastime,2,tamingoftheshrew,1593\nstrike,2,tamingoftheshrew,1593\nFrom,2,tamingoftheshrew,1593\nborough,2,tamingoftheshrew,1593\ncharm,2,tamingoftheshrew,1593\nLUCENTIO'S,2,tamingoftheshrew,1593\nstays,2,tamingoftheshrew,1593\ngarden,2,tamingoftheshrew,1593\nparting,2,tamingoftheshrew,1593\nmouth,2,tamingoftheshrew,1593\nplaces,2,tamingoftheshrew,1593\nyouth,2,tamingoftheshrew,1593\nAntonio's,2,tamingoftheshrew,1593\ncloak,2,tamingoftheshrew,1593\nPeter,2,tamingoftheshrew,1593\nDost,2,tamingoftheshrew,1593\ndevice,2,tamingoftheshrew,1593\nhigh,2,tamingoftheshrew,1593\nstrife,2,tamingoftheshrew,1593\nspecially,2,tamingoftheshrew,1593\nleaves,2,tamingoftheshrew,1593\nstark,2,tamingoftheshrew,1593\nspoiled,2,tamingoftheshrew,1593\nmild,2,tamingoftheshrew,1593\nexchange,2,tamingoftheshrew,1593\nfares,2,tamingoftheshrew,1593\nnod,2,tamingoftheshrew,1593\nstars,2,tamingoftheshrew,1593\nplead,2,tamingoftheshrew,1593\nPETRUCHIO'S,2,tamingoftheshrew,1593\njars,2,tamingoftheshrew,1593\nbeggar,2,tamingoftheshrew,1593\npresently,2,tamingoftheshrew,1593\nmark,2,tamingoftheshrew,1593\nALL,2,tamingoftheshrew,1593\nveriest,2,tamingoftheshrew,1593\nproudest,2,tamingoftheshrew,1593\nstate,2,tamingoftheshrew,1593\nbecause,2,tamingoftheshrew,1593\nFlorence,2,tamingoftheshrew,1593\ninch,2,tamingoftheshrew,1593\nshoulder,2,tamingoftheshrew,1593\nchide,2,tamingoftheshrew,1593\nspecial,2,tamingoftheshrew,1593\nINDUCTION,2,tamingoftheshrew,1593\nMade,2,tamingoftheshrew,1593\nmarvel,2,tamingoftheshrew,1593\ndainty,2,tamingoftheshrew,1593\nPerhaps,2,tamingoftheshrew,1593\nsedges,2,tamingoftheshrew,1593\nfirm,2,tamingoftheshrew,1593\no'clock,2,tamingoftheshrew,1593\nones,2,tamingoftheshrew,1593\nwealthy,2,tamingoftheshrew,1593\nItaly,2,tamingoftheshrew,1593\nclose,2,tamingoftheshrew,1593\nsting,2,tamingoftheshrew,1593\nodd,2,tamingoftheshrew,1593\nstale,2,tamingoftheshrew,1593\nrogues,2,tamingoftheshrew,1593\npound,2,tamingoftheshrew,1593\nformer,2,tamingoftheshrew,1593\nthrow,2,tamingoftheshrew,1593\nswain,2,tamingoftheshrew,1593\nKATARINA,2,tamingoftheshrew,1593\nring,2,tamingoftheshrew,1593\nthird,2,tamingoftheshrew,1593\nducats,2,tamingoftheshrew,1593\nheavy,2,tamingoftheshrew,1593\ncalled,2,tamingoftheshrew,1593\narms,2,tamingoftheshrew,1593\nbetween,2,tamingoftheshrew,1593\ntrusty,2,tamingoftheshrew,1593\ncommanded,2,tamingoftheshrew,1593\nfound,2,tamingoftheshrew,1593\ngraceless,2,tamingoftheshrew,1593\nwanton,2,tamingoftheshrew,1593\napace,2,tamingoftheshrew,1593\nvillains,2,tamingoftheshrew,1593\nwitted,2,tamingoftheshrew,1593\nenforced,2,tamingoftheshrew,1593\nraging,2,tamingoftheshrew,1593\nagree,2,tamingoftheshrew,1593\nBid,2,tamingoftheshrew,1593\nduke,2,tamingoftheshrew,1593\ncharged,2,tamingoftheshrew,1593\nanger,2,tamingoftheshrew,1593\nspleen,2,tamingoftheshrew,1593\nwondrous,2,tamingoftheshrew,1593\nsupply,2,tamingoftheshrew,1593\nsober,2,tamingoftheshrew,1593\nwhence,2,tamingoftheshrew,1593\nPresenting,2,tamingoftheshrew,1593\nglad,2,tamingoftheshrew,1593\ntable,2,tamingoftheshrew,1593\ncried,2,tamingoftheshrew,1593\nMake,2,tamingoftheshrew,1593\ndurst,2,tamingoftheshrew,1593\nground,2,tamingoftheshrew,1593\nstolen,2,tamingoftheshrew,1593\ncares,2,tamingoftheshrew,1593\naffable,2,tamingoftheshrew,1593\nProceed,2,tamingoftheshrew,1593\nwert,2,tamingoftheshrew,1593\npleased,2,tamingoftheshrew,1593\nwork,2,tamingoftheshrew,1593\nSweet,2,tamingoftheshrew,1593\nvow,2,tamingoftheshrew,1593\nJOSEPH,2,tamingoftheshrew,1593\nprofit,2,tamingoftheshrew,1593\nbanns,2,tamingoftheshrew,1593\ncontinue,2,tamingoftheshrew,1593\nhorn,2,tamingoftheshrew,1593\nBeats,2,tamingoftheshrew,1593\nhose,2,tamingoftheshrew,1593\nthunder,2,tamingoftheshrew,1593\nbite,2,tamingoftheshrew,1593\nherself,2,tamingoftheshrew,1593\nlinen,2,tamingoftheshrew,1593\nperceive,2,tamingoftheshrew,1593\nmadly,2,tamingoftheshrew,1593\nbird,2,tamingoftheshrew,1593\ncomfort,2,tamingoftheshrew,1593\npublic,2,tamingoftheshrew,1593\nappointed,2,tamingoftheshrew,1593\ncock,2,tamingoftheshrew,1593\nthimble,2,tamingoftheshrew,1593\nplainness,2,tamingoftheshrew,1593\ndam,2,tamingoftheshrew,1593\nis't,2,tamingoftheshrew,1593\nlessons,2,tamingoftheshrew,1593\narm'd,2,tamingoftheshrew,1593\nfarthest,2,tamingoftheshrew,1593\nfruitful,2,tamingoftheshrew,1593\ncup,2,tamingoftheshrew,1593\npoetry,2,tamingoftheshrew,1593\nsufficient,2,tamingoftheshrew,1593\nperish,2,tamingoftheshrew,1593\nwild,2,tamingoftheshrew,1593\nhazel,2,tamingoftheshrew,1593\nbigger,2,tamingoftheshrew,1593\ngreen,2,tamingoftheshrew,1593\nlackey,2,tamingoftheshrew,1593\ncounterfeit,2,tamingoftheshrew,1593\nrequest,2,tamingoftheshrew,1593\nwinter,2,tamingoftheshrew,1593\nforsooth,2,tamingoftheshrew,1593\nNICHOLAS,2,tamingoftheshrew,1593\nwaning,2,tamingoftheshrew,1593\nWhere's,2,tamingoftheshrew,1593\nrobes,2,tamingoftheshrew,1593\napproved,2,tamingoftheshrew,1593\nseas,2,tamingoftheshrew,1593\nhunt,2,tamingoftheshrew,1593\ncook,2,tamingoftheshrew,1593\ncontents,2,tamingoftheshrew,1593\nbodes,2,tamingoftheshrew,1593\nadieu,2,tamingoftheshrew,1593\nlow,2,tamingoftheshrew,1593\nbabe,2,tamingoftheshrew,1593\ncony,2,tamingoftheshrew,1593\nServing,2,tamingoftheshrew,1593\ntells,2,tamingoftheshrew,1593\nliking,2,tamingoftheshrew,1593\nfellows,2,tamingoftheshrew,1593\nPatience,2,tamingoftheshrew,1593\nwhate'er,2,tamingoftheshrew,1593\nmodest,2,tamingoftheshrew,1593\nKnow,2,tamingoftheshrew,1593\nblame,2,tamingoftheshrew,1593\nkindred,2,tamingoftheshrew,1593\ntied,2,tamingoftheshrew,1593\nport,2,tamingoftheshrew,1593\nwhilst,2,tamingoftheshrew,1593\nreturn,2,tamingoftheshrew,1593\nprison,2,tamingoftheshrew,1593\nprayed,2,tamingoftheshrew,1593\ntalk'd,2,tamingoftheshrew,1593\ngrieved,2,tamingoftheshrew,1593\nsullen,2,tamingoftheshrew,1593\ncountryman,2,tamingoftheshrew,1593\ncouple,2,tamingoftheshrew,1593\nbestow,2,tamingoftheshrew,1593\nmerchant,2,tamingoftheshrew,1593\nendured,2,tamingoftheshrew,1593\near,2,tamingoftheshrew,1593\nclouds,2,tamingoftheshrew,1593\nafeard,2,tamingoftheshrew,1593\nremember,2,tamingoftheshrew,1593\nsadness,2,tamingoftheshrew,1593\nGregory,2,tamingoftheshrew,1593\nheaded,2,tamingoftheshrew,1593\nSince,2,tamingoftheshrew,1593\nvenuto,2,tamingoftheshrew,1593\nburnt,2,tamingoftheshrew,1593\nfully,2,tamingoftheshrew,1593\nladies,2,tamingoftheshrew,1593\nharmony,2,tamingoftheshrew,1593\nAmen,2,tamingoftheshrew,1593\nbeguile,2,tamingoftheshrew,1593\nlark,2,tamingoftheshrew,1593\nplayers,2,tamingoftheshrew,1593\nwhiles,2,tamingoftheshrew,1593\nsometimes,2,tamingoftheshrew,1593\ncredit,2,tamingoftheshrew,1593\ntut,2,tamingoftheshrew,1593\nthither,2,tamingoftheshrew,1593\nGreek,2,tamingoftheshrew,1593\nlate,2,tamingoftheshrew,1593\ncitizens,2,tamingoftheshrew,1593\nMay,2,tamingoftheshrew,1593\nseverally,2,tamingoftheshrew,1593\njade,2,tamingoftheshrew,1593\nrevenged,2,tamingoftheshrew,1593\nPhilip,2,tamingoftheshrew,1593\ntry,2,tamingoftheshrew,1593\nharsh,2,tamingoftheshrew,1593\n'hic,2,tamingoftheshrew,1593\nfollow,2,tamingoftheshrew,1593\nframe,2,tamingoftheshrew,1593\nsudden,2,tamingoftheshrew,1593\ncatch,2,tamingoftheshrew,1593\nha't,2,tamingoftheshrew,1593\nturtle,2,tamingoftheshrew,1593\ntoy,2,tamingoftheshrew,1593\nmum,2,tamingoftheshrew,1593\nshift,2,tamingoftheshrew,1593\nshake,2,tamingoftheshrew,1593\nburden,2,tamingoftheshrew,1593\nToo,2,tamingoftheshrew,1593\nChristendom,2,tamingoftheshrew,1593\nChristophero,2,tamingoftheshrew,1593\ntired,2,tamingoftheshrew,1593\nTalk,2,tamingoftheshrew,1593\nawake,2,tamingoftheshrew,1593\nstomachs,2,tamingoftheshrew,1593\ncharity,2,tamingoftheshrew,1593\nbreathe,2,tamingoftheshrew,1593\ndin,2,tamingoftheshrew,1593\ndissemble,2,tamingoftheshrew,1593\ne'er,2,tamingoftheshrew,1593\nTut,2,tamingoftheshrew,1593\nfortunes,2,tamingoftheshrew,1593\nSigeia,2,tamingoftheshrew,1593\nbrave,3,tamingoftheshrew,1593\naffords,3,tamingoftheshrew,1593\nsilken,3,tamingoftheshrew,1593\ntroubled,3,tamingoftheshrew,1593\nforbid,3,tamingoftheshrew,1593\nmathematics,3,tamingoftheshrew,1593\nV,3,tamingoftheshrew,1593\ntimes,3,tamingoftheshrew,1593\ngroom,3,tamingoftheshrew,1593\nheir,3,tamingoftheshrew,1593\nrap,3,tamingoftheshrew,1593\ntreasure,3,tamingoftheshrew,1593\npeace,3,tamingoftheshrew,1593\nVillain,3,tamingoftheshrew,1593\njoy,3,tamingoftheshrew,1593\nthought,3,tamingoftheshrew,1593\nhell,3,tamingoftheshrew,1593\ndish,3,tamingoftheshrew,1593\npainted,3,tamingoftheshrew,1593\nphilosophy,3,tamingoftheshrew,1593\nlodging,3,tamingoftheshrew,1593\nbraved,3,tamingoftheshrew,1593\nHelp,3,tamingoftheshrew,1593\nrid,3,tamingoftheshrew,1593\nsour,3,tamingoftheshrew,1593\ncalls,3,tamingoftheshrew,1593\nrun,3,tamingoftheshrew,1593\nbecome,3,tamingoftheshrew,1593\nwhoreson,3,tamingoftheshrew,1593\nCarry,3,tamingoftheshrew,1593\nseven,3,tamingoftheshrew,1593\nbirth,3,tamingoftheshrew,1593\namazed,3,tamingoftheshrew,1593\nslept,3,tamingoftheshrew,1593\nresolve,3,tamingoftheshrew,1593\ncholeric,3,tamingoftheshrew,1593\nKeep,3,tamingoftheshrew,1593\nwants,3,tamingoftheshrew,1593\nknaves,3,tamingoftheshrew,1593\nteach,3,tamingoftheshrew,1593\nblessed,3,tamingoftheshrew,1593\nbound,3,tamingoftheshrew,1593\nimpossible,3,tamingoftheshrew,1593\n'twere,3,tamingoftheshrew,1593\ndeceived,3,tamingoftheshrew,1593\nscore,3,tamingoftheshrew,1593\ntellus,3,tamingoftheshrew,1593\nibat,3,tamingoftheshrew,1593\nlooking,3,tamingoftheshrew,1593\nkindly,3,tamingoftheshrew,1593\nfirmly,3,tamingoftheshrew,1593\nstudy,3,tamingoftheshrew,1593\nbeloved,3,tamingoftheshrew,1593\nMusic,3,tamingoftheshrew,1593\nfaults,3,tamingoftheshrew,1593\nPETER,3,tamingoftheshrew,1593\nmother,3,tamingoftheshrew,1593\namiss,3,tamingoftheshrew,1593\nourselves,3,tamingoftheshrew,1593\nesteem,3,tamingoftheshrew,1593\nThese,3,tamingoftheshrew,1593\npiece,3,tamingoftheshrew,1593\nOut,3,tamingoftheshrew,1593\nOur,3,tamingoftheshrew,1593\nsenis,3,tamingoftheshrew,1593\nhousehold,3,tamingoftheshrew,1593\nwhite,3,tamingoftheshrew,1593\npearl,3,tamingoftheshrew,1593\nhumble,3,tamingoftheshrew,1593\nelder,3,tamingoftheshrew,1593\nabove,3,tamingoftheshrew,1593\nfeel,3,tamingoftheshrew,1593\nbeaten,3,tamingoftheshrew,1593\nbrief,3,tamingoftheshrew,1593\nwind,3,tamingoftheshrew,1593\nothers,3,tamingoftheshrew,1593\nLatin,3,tamingoftheshrew,1593\ntinker,3,tamingoftheshrew,1593\nroundly,3,tamingoftheshrew,1593\nsense,3,tamingoftheshrew,1593\ndevil's,3,tamingoftheshrew,1593\nwindow,3,tamingoftheshrew,1593\nlunatic,3,tamingoftheshrew,1593\nbright,3,tamingoftheshrew,1593\nhe's,3,tamingoftheshrew,1593\nbitter,3,tamingoftheshrew,1593\nsweeter,3,tamingoftheshrew,1593\nIII,3,tamingoftheshrew,1593\nBy,3,tamingoftheshrew,1593\nneither,3,tamingoftheshrew,1593\ndeeds,3,tamingoftheshrew,1593\nbutt,3,tamingoftheshrew,1593\nbeautiful,3,tamingoftheshrew,1593\nOn,3,tamingoftheshrew,1593\nshines,3,tamingoftheshrew,1593\nchanged,3,tamingoftheshrew,1593\nben,3,tamingoftheshrew,1593\nsurely,3,tamingoftheshrew,1593\ngoods,3,tamingoftheshrew,1593\nwither'd,3,tamingoftheshrew,1593\nagreement,3,tamingoftheshrew,1593\npast,3,tamingoftheshrew,1593\nproud,3,tamingoftheshrew,1593\npot,3,tamingoftheshrew,1593\nmonstrous,3,tamingoftheshrew,1593\nblood,3,tamingoftheshrew,1593\ngave,3,tamingoftheshrew,1593\nweep,3,tamingoftheshrew,1593\nbusy,3,tamingoftheshrew,1593\nLucentio's,3,tamingoftheshrew,1593\nwhose,3,tamingoftheshrew,1593\nchildren,3,tamingoftheshrew,1593\nfriendly,3,tamingoftheshrew,1593\ndespite,3,tamingoftheshrew,1593\nLike,3,tamingoftheshrew,1593\nashamed,3,tamingoftheshrew,1593\nturns,3,tamingoftheshrew,1593\nGod's,3,tamingoftheshrew,1593\nyes,3,tamingoftheshrew,1593\nlegs,3,tamingoftheshrew,1593\ngait,3,tamingoftheshrew,1593\naside,3,tamingoftheshrew,1593\nscholar,3,tamingoftheshrew,1593\nloves,3,tamingoftheshrew,1593\ntamed,3,tamingoftheshrew,1593\nloud,3,tamingoftheshrew,1593\nYes,3,tamingoftheshrew,1593\nresolved,3,tamingoftheshrew,1593\nless,3,tamingoftheshrew,1593\nlose,3,tamingoftheshrew,1593\nbeauteous,3,tamingoftheshrew,1593\nforgot,3,tamingoftheshrew,1593\ngrace,3,tamingoftheshrew,1593\nchoice,3,tamingoftheshrew,1593\nhark,3,tamingoftheshrew,1593\nhard,3,tamingoftheshrew,1593\nfield,3,tamingoftheshrew,1593\nround,3,tamingoftheshrew,1593\npale,3,tamingoftheshrew,1593\nhang,3,tamingoftheshrew,1593\ndeny,3,tamingoftheshrew,1593\ndrawn,3,tamingoftheshrew,1593\nmighty,3,tamingoftheshrew,1593\npluck,3,tamingoftheshrew,1593\nimpatient,3,tamingoftheshrew,1593\npair,3,tamingoftheshrew,1593\nmoney,3,tamingoftheshrew,1593\nforsworn,3,tamingoftheshrew,1593\nrings,3,tamingoftheshrew,1593\nContent,3,tamingoftheshrew,1593\nchange,3,tamingoftheshrew,1593\nlead,3,tamingoftheshrew,1593\nfat,3,tamingoftheshrew,1593\ncontented,3,tamingoftheshrew,1593\noften,3,tamingoftheshrew,1593\nroom,3,tamingoftheshrew,1593\nmoved,3,tamingoftheshrew,1593\nshouldst,3,tamingoftheshrew,1593\nsilence,3,tamingoftheshrew,1593\nKnock,3,tamingoftheshrew,1593\nlords,3,tamingoftheshrew,1593\nnote,3,tamingoftheshrew,1593\nthinks,3,tamingoftheshrew,1593\nbeast,3,tamingoftheshrew,1593\nwakes,3,tamingoftheshrew,1593\nwaked,3,tamingoftheshrew,1593\naction,3,tamingoftheshrew,1593\nPeace,3,tamingoftheshrew,1593\nconserves,3,tamingoftheshrew,1593\nblunt,3,tamingoftheshrew,1593\nest,3,tamingoftheshrew,1593\nyear,3,tamingoftheshrew,1593\nLove,3,tamingoftheshrew,1593\nlearning,3,tamingoftheshrew,1593\nyou'll,3,tamingoftheshrew,1593\nsay'st,3,tamingoftheshrew,1593\nDoth,3,tamingoftheshrew,1593\nWill't,3,tamingoftheshrew,1593\nchild,3,tamingoftheshrew,1593\nyours,3,tamingoftheshrew,1593\neffect,3,tamingoftheshrew,1593\ndidst,3,tamingoftheshrew,1593\nthere's,3,tamingoftheshrew,1593\nknows,3,tamingoftheshrew,1593\nraiment,3,tamingoftheshrew,1593\nslave,3,tamingoftheshrew,1593\nachieve,3,tamingoftheshrew,1593\nlabour,3,tamingoftheshrew,1593\ndisguised,3,tamingoftheshrew,1593\nmistress',3,tamingoftheshrew,1593\nlecture,3,tamingoftheshrew,1593\nsleeves,3,tamingoftheshrew,1593\ngrave,3,tamingoftheshrew,1593\nneck,3,tamingoftheshrew,1593\nwit,3,tamingoftheshrew,1593\nWe'll,3,tamingoftheshrew,1593\nstomach,3,tamingoftheshrew,1593\ncross'd,3,tamingoftheshrew,1593\nloving,3,tamingoftheshrew,1593\nbeseech,3,tamingoftheshrew,1593\nlikes,3,tamingoftheshrew,1593\nwar,3,tamingoftheshrew,1593\nintend,3,tamingoftheshrew,1593\nwood,3,tamingoftheshrew,1593\nnext,3,tamingoftheshrew,1593\ndreams,3,tamingoftheshrew,1593\nServingman,3,tamingoftheshrew,1593\nhaply,3,tamingoftheshrew,1593\nconsent,3,tamingoftheshrew,1593\nfarther,3,tamingoftheshrew,1593\nmodesty,3,tamingoftheshrew,1593\nThat's,3,tamingoftheshrew,1593\nfall,3,tamingoftheshrew,1593\nmethinks,3,tamingoftheshrew,1593\ncuff,3,tamingoftheshrew,1593\neven,3,tamingoftheshrew,1593\nscolding,3,tamingoftheshrew,1593\npassion,3,tamingoftheshrew,1593\ntail,3,tamingoftheshrew,1593\nbuzzard,3,tamingoftheshrew,1593\nwealth,3,tamingoftheshrew,1593\nmates,3,tamingoftheshrew,1593\npatient,3,tamingoftheshrew,1593\nbase,3,tamingoftheshrew,1593\nbill,3,tamingoftheshrew,1593\nfolks,3,tamingoftheshrew,1593\nLay,3,tamingoftheshrew,1593\ngiddy,3,tamingoftheshrew,1593\nalong,3,tamingoftheshrew,1593\nRight,3,tamingoftheshrew,1593\nseek,3,tamingoftheshrew,1593\nhounds,3,tamingoftheshrew,1593\nlook'd,3,tamingoftheshrew,1593\ncourtesy,3,tamingoftheshrew,1593\nDian,3,tamingoftheshrew,1593\nBelieve,3,tamingoftheshrew,1593\nheavenly,3,tamingoftheshrew,1593\nlovest,3,tamingoftheshrew,1593\nhours,3,tamingoftheshrew,1593\nslender,3,tamingoftheshrew,1593\nbeheld,3,tamingoftheshrew,1593\ngods,3,tamingoftheshrew,1593\nsteterat,3,tamingoftheshrew,1593\nslow,3,tamingoftheshrew,1593\nlearn,3,tamingoftheshrew,1593\nburst,3,tamingoftheshrew,1593\nMessenger,3,tamingoftheshrew,1593\nwhit,3,tamingoftheshrew,1593\nlips,3,tamingoftheshrew,1593\namorous,3,tamingoftheshrew,1593\nvirtue,3,tamingoftheshrew,1593\nbesides,3,tamingoftheshrew,1593\nwooers,3,tamingoftheshrew,1593\nsimple,3,tamingoftheshrew,1593\ndog,3,tamingoftheshrew,1593\nDid,3,tamingoftheshrew,1593\nfifteen,3,tamingoftheshrew,1593\nreverend,3,tamingoftheshrew,1593\ncross,3,tamingoftheshrew,1593\nFair,3,tamingoftheshrew,1593\nboots,3,tamingoftheshrew,1593\nten,3,tamingoftheshrew,1593\nshoes,3,tamingoftheshrew,1593\nperhaps,3,tamingoftheshrew,1593\nundertake,3,tamingoftheshrew,1593\nschoolmaster,3,tamingoftheshrew,1593\nanswer,4,tamingoftheshrew,1593\nfancy,4,tamingoftheshrew,1593\ntook,4,tamingoftheshrew,1593\nwoman's,4,tamingoftheshrew,1593\nrascal,4,tamingoftheshrew,1593\nclothes,4,tamingoftheshrew,1593\nsight,4,tamingoftheshrew,1593\ntears,4,tamingoftheshrew,1593\nlies,4,tamingoftheshrew,1593\nWould,4,tamingoftheshrew,1593\ncase,4,tamingoftheshrew,1593\nPlayers,4,tamingoftheshrew,1593\nAfter,4,tamingoftheshrew,1593\nPetruchio's,4,tamingoftheshrew,1593\nhearing,4,tamingoftheshrew,1593\ntown,4,tamingoftheshrew,1593\nwarrant,4,tamingoftheshrew,1593\nbody,4,tamingoftheshrew,1593\nagainst,4,tamingoftheshrew,1593\nvirtuous,4,tamingoftheshrew,1593\n'twas,4,tamingoftheshrew,1593\nPlayer,4,tamingoftheshrew,1593\nchat,4,tamingoftheshrew,1593\nbecomes,4,tamingoftheshrew,1593\nways,4,tamingoftheshrew,1593\nhabit,4,tamingoftheshrew,1593\nfault,4,tamingoftheshrew,1593\nBianca's,4,tamingoftheshrew,1593\neldest,4,tamingoftheshrew,1593\nservice,4,tamingoftheshrew,1593\nswore,4,tamingoftheshrew,1593\naccept,4,tamingoftheshrew,1593\nancient,4,tamingoftheshrew,1593\nchoose,4,tamingoftheshrew,1593\nsooth,4,tamingoftheshrew,1593\nbook,4,tamingoftheshrew,1593\nmorning,4,tamingoftheshrew,1593\n'Twere,4,tamingoftheshrew,1593\nquarrel,4,tamingoftheshrew,1593\npatience,4,tamingoftheshrew,1593\nlands,4,tamingoftheshrew,1593\nbegun,4,tamingoftheshrew,1593\nhit,4,tamingoftheshrew,1593\nIs't,4,tamingoftheshrew,1593\nbehind,4,tamingoftheshrew,1593\ndost,4,tamingoftheshrew,1593\ngaol,4,tamingoftheshrew,1593\ngate,4,tamingoftheshrew,1593\n'Twas,4,tamingoftheshrew,1593\npromised,4,tamingoftheshrew,1593\nFear,4,tamingoftheshrew,1593\nexcellent,4,tamingoftheshrew,1593\nHere's,4,tamingoftheshrew,1593\ndear,4,tamingoftheshrew,1593\ndower,4,tamingoftheshrew,1593\nspeed,4,tamingoftheshrew,1593\ngamut,4,tamingoftheshrew,1593\nage,4,tamingoftheshrew,1593\nYea,4,tamingoftheshrew,1593\nplain,4,tamingoftheshrew,1593\nschool,4,tamingoftheshrew,1593\ncity,4,tamingoftheshrew,1593\nMantua,4,tamingoftheshrew,1593\nrogue,4,tamingoftheshrew,1593\nrough,4,tamingoftheshrew,1593\nyard,4,tamingoftheshrew,1593\nass,4,tamingoftheshrew,1593\nye,4,tamingoftheshrew,1593\nStrikes,4,tamingoftheshrew,1593\nbanquet,4,tamingoftheshrew,1593\nundone,4,tamingoftheshrew,1593\nHath,4,tamingoftheshrew,1593\nShould,4,tamingoftheshrew,1593\ntarry,4,tamingoftheshrew,1593\nnay,4,tamingoftheshrew,1593\npedant,4,tamingoftheshrew,1593\nTherefore,4,tamingoftheshrew,1593\nLook,4,tamingoftheshrew,1593\narrived,4,tamingoftheshrew,1593\nfoolish,4,tamingoftheshrew,1593\nFather,4,tamingoftheshrew,1593\ndream,4,tamingoftheshrew,1593\nknown,4,tamingoftheshrew,1593\nwon,4,tamingoftheshrew,1593\nblow,4,tamingoftheshrew,1593\nSly,4,tamingoftheshrew,1593\nneed,4,tamingoftheshrew,1593\nWere,4,tamingoftheshrew,1593\nknavery,4,tamingoftheshrew,1593\nnear,4,tamingoftheshrew,1593\nonly,4,tamingoftheshrew,1593\nfaced,4,tamingoftheshrew,1593\nrail,4,tamingoftheshrew,1593\nTill,4,tamingoftheshrew,1593\nofficer,4,tamingoftheshrew,1593\nlordship,4,tamingoftheshrew,1593\nmeaning,4,tamingoftheshrew,1593\nWelcome,4,tamingoftheshrew,1593\nlad,4,tamingoftheshrew,1593\nlay,4,tamingoftheshrew,1593\npuppet,4,tamingoftheshrew,1593\nwe'll,4,tamingoftheshrew,1593\neither,4,tamingoftheshrew,1593\n'twixt,4,tamingoftheshrew,1593\nPray,4,tamingoftheshrew,1593\nfairly,4,tamingoftheshrew,1593\nsent,4,tamingoftheshrew,1593\ngoes,4,tamingoftheshrew,1593\nlie,4,tamingoftheshrew,1593\nthread,4,tamingoftheshrew,1593\nleast,4,tamingoftheshrew,1593\nAnother,4,tamingoftheshrew,1593\nthoughts,4,tamingoftheshrew,1593\nfashion,4,tamingoftheshrew,1593\nlast,4,tamingoftheshrew,1593\nattendants,4,tamingoftheshrew,1593\nshrewd,4,tamingoftheshrew,1593\nwitness,4,tamingoftheshrew,1593\nattend,4,tamingoftheshrew,1593\nland,4,tamingoftheshrew,1593\nobedient,4,tamingoftheshrew,1593\nhe'll,4,tamingoftheshrew,1593\nsoundly,4,tamingoftheshrew,1593\nneighbour,4,tamingoftheshrew,1593\nobedience,4,tamingoftheshrew,1593\nhimself,4,tamingoftheshrew,1593\nwoo'd,4,tamingoftheshrew,1593\ndaughters,4,tamingoftheshrew,1593\nFie,5,tamingoftheshrew,1593\nhaste,5,tamingoftheshrew,1593\nhealth,5,tamingoftheshrew,1593\nrather,5,tamingoftheshrew,1593\nyounger,5,tamingoftheshrew,1593\noffer,5,tamingoftheshrew,1593\ninstrument,5,tamingoftheshrew,1593\nunderstand,5,tamingoftheshrew,1593\ndrink,5,tamingoftheshrew,1593\nunder,5,tamingoftheshrew,1593\nadvise,5,tamingoftheshrew,1593\nUpon,5,tamingoftheshrew,1593\nbridegroom,5,tamingoftheshrew,1593\nsoon,5,tamingoftheshrew,1593\ngrows,5,tamingoftheshrew,1593\nNot,5,tamingoftheshrew,1593\nlight,5,tamingoftheshrew,1593\nwager,5,tamingoftheshrew,1593\nworst,5,tamingoftheshrew,1593\nturn,5,tamingoftheshrew,1593\nPardon,5,tamingoftheshrew,1593\naccess,5,tamingoftheshrew,1593\nbold,5,tamingoftheshrew,1593\ncunning,5,tamingoftheshrew,1593\noffice,5,tamingoftheshrew,1593\nhat,5,tamingoftheshrew,1593\ndinner,5,tamingoftheshrew,1593\nLet's,5,tamingoftheshrew,1593\nears,5,tamingoftheshrew,1593\nquiet,5,tamingoftheshrew,1593\nkindness,5,tamingoftheshrew,1593\nSaint,5,tamingoftheshrew,1593\nfarewell,5,tamingoftheshrew,1593\nbeef,5,tamingoftheshrew,1593\nleft,5,tamingoftheshrew,1593\nbeat,5,tamingoftheshrew,1593\nay,5,tamingoftheshrew,1593\nale,5,tamingoftheshrew,1593\ngentlewoman,5,tamingoftheshrew,1593\nfeast,5,tamingoftheshrew,1593\nsmall,5,tamingoftheshrew,1593\nReads,5,tamingoftheshrew,1593\nthose,5,tamingoftheshrew,1593\nHaberdasher,5,tamingoftheshrew,1593\nhot,5,tamingoftheshrew,1593\ncall'd,5,tamingoftheshrew,1593\nsuitors,5,tamingoftheshrew,1593\npresent,5,tamingoftheshrew,1593\ngirl,5,tamingoftheshrew,1593\nchance,5,tamingoftheshrew,1593\nthanks,5,tamingoftheshrew,1593\nHark,5,tamingoftheshrew,1593\nbehavior,5,tamingoftheshrew,1593\nreport,5,tamingoftheshrew,1593\nwater,5,tamingoftheshrew,1593\nSome,5,tamingoftheshrew,1593\nAll,5,tamingoftheshrew,1593\nquoth,5,tamingoftheshrew,1593\noff,5,tamingoftheshrew,1593\ncourt,5,tamingoftheshrew,1593\nbreak,5,tamingoftheshrew,1593\nyoungest,5,tamingoftheshrew,1593\nVenice,5,tamingoftheshrew,1593\nThus,5,tamingoftheshrew,1593\nBAPTISTA'S,5,tamingoftheshrew,1593\ntailor,5,tamingoftheshrew,1593\noath,5,tamingoftheshrew,1593\nserve,5,tamingoftheshrew,1593\nhappy,5,tamingoftheshrew,1593\nlute,5,tamingoftheshrew,1593\nangry,5,tamingoftheshrew,1593\nfortune,5,tamingoftheshrew,1593\ntune,5,tamingoftheshrew,1593\nfit,5,tamingoftheshrew,1593\nworship,5,tamingoftheshrew,1593\nUnto,5,tamingoftheshrew,1593\npractise,5,tamingoftheshrew,1593\ntame,5,tamingoftheshrew,1593\nfast,5,tamingoftheshrew,1593\nlaw,5,tamingoftheshrew,1593\npardon,5,tamingoftheshrew,1593\nmustard,5,tamingoftheshrew,1593\nprithee,5,tamingoftheshrew,1593\nlovely,5,tamingoftheshrew,1593\nseen,5,tamingoftheshrew,1593\nseem,5,tamingoftheshrew,1593\nmatch,5,tamingoftheshrew,1593\nmadam,5,tamingoftheshrew,1593\nNATHANIEL,5,tamingoftheshrew,1593\n'Hic,5,tamingoftheshrew,1593\nsuitor,5,tamingoftheshrew,1593\nmet,5,tamingoftheshrew,1593\nmakes,5,tamingoftheshrew,1593\nlive,5,tamingoftheshrew,1593\nSunday,5,tamingoftheshrew,1593\nlist,5,tamingoftheshrew,1593\nstrange,5,tamingoftheshrew,1593\nhappily,5,tamingoftheshrew,1593\ndare,5,tamingoftheshrew,1593\nliest,5,tamingoftheshrew,1593\nshalt,5,tamingoftheshrew,1593\nmight,5,tamingoftheshrew,1593\nspirit,5,tamingoftheshrew,1593\norder,5,tamingoftheshrew,1593\nwomen,5,tamingoftheshrew,1593\nAnd,261,tamingoftheshrew,1593\nleisure,6,tamingoftheshrew,1593\nbusiness,6,tamingoftheshrew,1593\npossible,6,tamingoftheshrew,1593\ntrust,6,tamingoftheshrew,1593\ncare,6,tamingoftheshrew,1593\ncharge,6,tamingoftheshrew,1593\nyears,6,tamingoftheshrew,1593\ntoward,6,tamingoftheshrew,1593\nsure,6,tamingoftheshrew,1593\ncheer,6,tamingoftheshrew,1593\nanother,6,tamingoftheshrew,1593\nsoft,6,tamingoftheshrew,1593\ndeath,6,tamingoftheshrew,1593\nstands,6,tamingoftheshrew,1593\nwalk,6,tamingoftheshrew,1593\nset,6,tamingoftheshrew,1593\nWas,6,tamingoftheshrew,1593\ninstruct,6,tamingoftheshrew,1593\ndoubt,6,tamingoftheshrew,1593\nstuff,6,tamingoftheshrew,1593\nworse,6,tamingoftheshrew,1593\npromise,6,tamingoftheshrew,1593\nmasters,6,tamingoftheshrew,1593\nHostess,6,tamingoftheshrew,1593\nwish,6,tamingoftheshrew,1593\nThough,6,tamingoftheshrew,1593\nwarm,6,tamingoftheshrew,1593\nWhile,6,tamingoftheshrew,1593\nWhat's,6,tamingoftheshrew,1593\nAn,6,tamingoftheshrew,1593\nHis,6,tamingoftheshrew,1593\nII,6,tamingoftheshrew,1593\npleasure,6,tamingoftheshrew,1593\nIV,6,tamingoftheshrew,1593\ngold,6,tamingoftheshrew,1593\ngoodly,6,tamingoftheshrew,1593\ncap,6,tamingoftheshrew,1593\ncrowns,6,tamingoftheshrew,1593\nservant,6,tamingoftheshrew,1593\ndoes,6,tamingoftheshrew,1593\nwench,6,tamingoftheshrew,1593\ndoor,6,tamingoftheshrew,1593\nthat's,6,tamingoftheshrew,1593\nho,6,tamingoftheshrew,1593\ndevil,6,tamingoftheshrew,1593\nBecause,6,tamingoftheshrew,1593\nCall,6,tamingoftheshrew,1593\nfrown,6,tamingoftheshrew,1593\nAre,6,tamingoftheshrew,1593\nThan,6,tamingoftheshrew,1593\nwooing,6,tamingoftheshrew,1593\nnew,6,tamingoftheshrew,1593\nhere's,6,tamingoftheshrew,1593\nMadam,6,tamingoftheshrew,1593\nfaith,6,tamingoftheshrew,1593\nwonder,6,tamingoftheshrew,1593\neye,6,tamingoftheshrew,1593\nVerona,6,tamingoftheshrew,1593\nSee,6,tamingoftheshrew,1593\nknave,6,tamingoftheshrew,1593\nend,6,tamingoftheshrew,1593\ndowry,6,tamingoftheshrew,1593\nfree,6,tamingoftheshrew,1593\nThird,6,tamingoftheshrew,1593\nstill,6,tamingoftheshrew,1593\nwin,6,tamingoftheshrew,1593\nbelieve,6,tamingoftheshrew,1593\nassure,6,tamingoftheshrew,1593\nsupper,6,tamingoftheshrew,1593\nShall,6,tamingoftheshrew,1593\nhundred,6,tamingoftheshrew,1593\nEven,6,tamingoftheshrew,1593\nfine,6,tamingoftheshrew,1593\nta'en,6,tamingoftheshrew,1593\nreason,6,tamingoftheshrew,1593\nhonest,6,tamingoftheshrew,1593\nhorses,6,tamingoftheshrew,1593\nswear,6,tamingoftheshrew,1593\nback,6,tamingoftheshrew,1593\nsound,6,tamingoftheshrew,1593\nGentlemen,6,tamingoftheshrew,1593\nmusician,6,tamingoftheshrew,1593\ntogether,6,tamingoftheshrew,1593\nMinola,6,tamingoftheshrew,1593\nCurtis,6,tamingoftheshrew,1593\nBaptista's,6,tamingoftheshrew,1593\nservants,6,tamingoftheshrew,1593\nmarriage,6,tamingoftheshrew,1593\nwithout,6,tamingoftheshrew,1593\nshame,6,tamingoftheshrew,1593\nwoman,6,tamingoftheshrew,1593\ndie,6,tamingoftheshrew,1593\ntold,7,tamingoftheshrew,1593\nhelp,7,tamingoftheshrew,1593\nyourself,7,tamingoftheshrew,1593\nfull,7,tamingoftheshrew,1593\nenough,7,tamingoftheshrew,1593\nwedding,7,tamingoftheshrew,1593\ncause,7,tamingoftheshrew,1593\nlooks,7,tamingoftheshrew,1593\nmatter,7,tamingoftheshrew,1593\nFaith,7,tamingoftheshrew,1593\nAm,7,tamingoftheshrew,1593\nBe,7,tamingoftheshrew,1593\ncanst,7,tamingoftheshrew,1593\npass,7,tamingoftheshrew,1593\nwear,7,tamingoftheshrew,1593\nput,7,tamingoftheshrew,1593\nbegin,7,tamingoftheshrew,1593\nconfess,7,tamingoftheshrew,1593\nmost,7,tamingoftheshrew,1593\napparel,7,tamingoftheshrew,1593\nbrought,7,tamingoftheshrew,1593\nfoul,7,tamingoftheshrew,1593\nask,7,tamingoftheshrew,1593\ntouch,7,tamingoftheshrew,1593\nfar,7,tamingoftheshrew,1593\nindeed,7,tamingoftheshrew,1593\nsirrah,7,tamingoftheshrew,1593\nmany,7,tamingoftheshrew,1593\nThey,7,tamingoftheshrew,1593\ncould,7,tamingoftheshrew,1593\nwed,7,tamingoftheshrew,1593\nsave,7,tamingoftheshrew,1593\nCambio,7,tamingoftheshrew,1593\nhumour,7,tamingoftheshrew,1593\nLicio,7,tamingoftheshrew,1593\npassing,7,tamingoftheshrew,1593\nrich,7,tamingoftheshrew,1593\nne'er,7,tamingoftheshrew,1593\ncut,7,tamingoftheshrew,1593\neyes,7,tamingoftheshrew,1593\nalone,7,tamingoftheshrew,1593\nsend,7,tamingoftheshrew,1593\nMistress,7,tamingoftheshrew,1593\nsleep,7,tamingoftheshrew,1593\nBefore,7,tamingoftheshrew,1593\npleasant,7,tamingoftheshrew,1593\nMarry,7,tamingoftheshrew,1593\nkind,7,tamingoftheshrew,1593\nmeet,8,tamingoftheshrew,1593\nTell,8,tamingoftheshrew,1593\nsaw,8,tamingoftheshrew,1593\nNor,8,tamingoftheshrew,1593\nchurch,8,tamingoftheshrew,1593\nSuch,8,tamingoftheshrew,1593\ncountenance,8,tamingoftheshrew,1593\nwithin,8,tamingoftheshrew,1593\nwrong,8,tamingoftheshrew,1593\nfellow,8,tamingoftheshrew,1593\nfear,8,tamingoftheshrew,1593\nafter,8,tamingoftheshrew,1593\nabout,8,tamingoftheshrew,1593\nfroward,8,tamingoftheshrew,1593\nchamber,8,tamingoftheshrew,1593\nhas,8,tamingoftheshrew,1593\ni',8,tamingoftheshrew,1593\nSecond,8,tamingoftheshrew,1593\nmoon,8,tamingoftheshrew,1593\nServants,8,tamingoftheshrew,1593\nplace,8,tamingoftheshrew,1593\nhalf,8,tamingoftheshrew,1593\nfoot,8,tamingoftheshrew,1593\nright,8,tamingoftheshrew,1593\nwatch,8,tamingoftheshrew,1593\nHave,8,tamingoftheshrew,1593\nthrough,8,tamingoftheshrew,1593\nere,8,tamingoftheshrew,1593\nlet's,8,tamingoftheshrew,1593\nover,8,tamingoftheshrew,1593\nwho,8,tamingoftheshrew,1593\nsake,8,tamingoftheshrew,1593\nfetch,8,tamingoftheshrew,1593\nwhat's,8,tamingoftheshrew,1593\nhope,8,tamingoftheshrew,1593\ntale,8,tamingoftheshrew,1593\nthousand,8,tamingoftheshrew,1593\nLet,8,tamingoftheshrew,1593\nuse,8,tamingoftheshrew,1593\ncold,8,tamingoftheshrew,1593\npoor,8,tamingoftheshrew,1593\nmaster's,8,tamingoftheshrew,1593\neat,8,tamingoftheshrew,1593\nstraight,8,tamingoftheshrew,1593\nAway,8,tamingoftheshrew,1593\nbeauty,8,tamingoftheshrew,1593\nbooks,8,tamingoftheshrew,1593\nwidow,8,tamingoftheshrew,1593\nThy,8,tamingoftheshrew,1593\nfriends,9,tamingoftheshrew,1593\nmerry,9,tamingoftheshrew,1593\nAside,9,tamingoftheshrew,1593\nThere,9,tamingoftheshrew,1593\nfriend,9,tamingoftheshrew,1593\nDo,9,tamingoftheshrew,1593\nmusic,9,tamingoftheshrew,1593\nmeans,9,tamingoftheshrew,1593\nWe,9,tamingoftheshrew,1593\ngone,9,tamingoftheshrew,1593\nsaid,9,tamingoftheshrew,1593\npriest,9,tamingoftheshrew,1593\nnoble,9,tamingoftheshrew,1593\ntwenty,9,tamingoftheshrew,1593\npart,9,tamingoftheshrew,1593\nforth,9,tamingoftheshrew,1593\nshow,9,tamingoftheshrew,1593\nthings,9,tamingoftheshrew,1593\nthine,9,tamingoftheshrew,1593\nthing,9,tamingoftheshrew,1593\nHuntsman,9,tamingoftheshrew,1593\nsays,9,tamingoftheshrew,1593\nSay,9,tamingoftheshrew,1593\nforward,9,tamingoftheshrew,1593\nfie,9,tamingoftheshrew,1593\ntalk,9,tamingoftheshrew,1593\nwilt,9,tamingoftheshrew,1593\nwhom,9,tamingoftheshrew,1593\nassurance,9,tamingoftheshrew,1593\ncommand,9,tamingoftheshrew,1593\nlady,9,tamingoftheshrew,1593\nvillain,10,tamingoftheshrew,1593\nevery,10,tamingoftheshrew,1593\nwithal,10,tamingoftheshrew,1593\njest,10,tamingoftheshrew,1593\nWho,10,tamingoftheshrew,1593\nread,10,tamingoftheshrew,1593\nsun,10,tamingoftheshrew,1593\nbride,10,tamingoftheshrew,1593\nhonour,10,tamingoftheshrew,1593\nboy,10,tamingoftheshrew,1593\nsince,10,tamingoftheshrew,1593\nprove,10,tamingoftheshrew,1593\nGood,10,tamingoftheshrew,1593\ncurst,10,tamingoftheshrew,1593\nMaster,10,tamingoftheshrew,1593\nYet,10,tamingoftheshrew,1593\nkeep,10,tamingoftheshrew,1593\nart,10,tamingoftheshrew,1593\nYour,10,tamingoftheshrew,1593\ngentle,10,tamingoftheshrew,1593\ninto,10,tamingoftheshrew,1593\nmind,10,tamingoftheshrew,1593\nshrew,10,tamingoftheshrew,1593\nmorrow,10,tamingoftheshrew,1593\nown,10,tamingoftheshrew,1593\nface,10,tamingoftheshrew,1593\nthree,10,tamingoftheshrew,1593\ngentlemen,10,tamingoftheshrew,1593\nthank,10,tamingoftheshrew,1593\ncontent,10,tamingoftheshrew,1593\nTake,10,tamingoftheshrew,1593\nWill,11,tamingoftheshrew,1593\nPage,11,tamingoftheshrew,1593\ncame,11,tamingoftheshrew,1593\nshe's,11,tamingoftheshrew,1593\nsit,11,tamingoftheshrew,1593\nhence,11,tamingoftheshrew,1593\nrest,11,tamingoftheshrew,1593\nmeat,11,tamingoftheshrew,1593\nOf,11,tamingoftheshrew,1593\nWhich,11,tamingoftheshrew,1593\ndown,11,tamingoftheshrew,1593\nhands,11,tamingoftheshrew,1593\nknew,11,tamingoftheshrew,1593\nnone,11,tamingoftheshrew,1593\nonce,11,tamingoftheshrew,1593\nstand,11,tamingoftheshrew,1593\ncoming,11,tamingoftheshrew,1593\nfind,11,tamingoftheshrew,1593\ntill,11,tamingoftheshrew,1593\nkiss,11,tamingoftheshrew,1593\nhold,11,tamingoftheshrew,1593\ntrue,11,tamingoftheshrew,1593\nwords,12,tamingoftheshrew,1593\nhead,12,tamingoftheshrew,1593\nnothing,12,tamingoftheshrew,1593\nWith,12,tamingoftheshrew,1593\nbring,12,tamingoftheshrew,1593\nplay,12,tamingoftheshrew,1593\nnight,12,tamingoftheshrew,1593\nSo,12,tamingoftheshrew,1593\ntongue,12,tamingoftheshrew,1593\nlittle,12,tamingoftheshrew,1593\nfool,12,tamingoftheshrew,1593\nSirrah,12,tamingoftheshrew,1593\nmade,12,tamingoftheshrew,1593\nACT,12,tamingoftheshrew,1593\nyoung,12,tamingoftheshrew,1593\nWidow,12,tamingoftheshrew,1593\nwoo,12,tamingoftheshrew,1593\nnews,12,tamingoftheshrew,1593\nmarried,12,tamingoftheshrew,1593\nentreat,12,tamingoftheshrew,1593\nhither,12,tamingoftheshrew,1593\nbeing,12,tamingoftheshrew,1593\nWhen,12,tamingoftheshrew,1593\ncannot,12,tamingoftheshrew,1593\nwhile,13,tamingoftheshrew,1593\naway,13,tamingoftheshrew,1593\nHer,13,tamingoftheshrew,1593\ndoth,13,tamingoftheshrew,1593\nBiondello,13,tamingoftheshrew,1593\nmaid,13,tamingoftheshrew,1593\nThou,13,tamingoftheshrew,1593\nagain,13,tamingoftheshrew,1593\nfather's,13,tamingoftheshrew,1593\nheart,13,tamingoftheshrew,1593\nheard,13,tamingoftheshrew,1593\nmarry,13,tamingoftheshrew,1593\ncompany,13,tamingoftheshrew,1593\nword,13,tamingoftheshrew,1593\nbetter,14,tamingoftheshrew,1593\nbed,14,tamingoftheshrew,1593\nIs,14,tamingoftheshrew,1593\ngown,14,tamingoftheshrew,1593\nbear,14,tamingoftheshrew,1593\nfire,14,tamingoftheshrew,1593\nhome,14,tamingoftheshrew,1593\nsister,14,tamingoftheshrew,1593\nmen,14,tamingoftheshrew,1593\nmuch,15,tamingoftheshrew,1593\nPisa,15,tamingoftheshrew,1593\nwhich,15,tamingoftheshrew,1593\nSHREW,15,tamingoftheshrew,1593\nelse,15,tamingoftheshrew,1593\nOF,15,tamingoftheshrew,1593\nhast,15,tamingoftheshrew,1593\nway,15,tamingoftheshrew,1593\ngreat,15,tamingoftheshrew,1593\nTAMING,15,tamingoftheshrew,1593\nSCENE,15,tamingoftheshrew,1593\nother,15,tamingoftheshrew,1593\nboth,16,tamingoftheshrew,1593\nbest,16,tamingoftheshrew,1593\nGod,16,tamingoftheshrew,1593\ndone,16,tamingoftheshrew,1593\nready,16,tamingoftheshrew,1593\nhand,16,tamingoftheshrew,1593\nknock,16,tamingoftheshrew,1593\nThis,16,tamingoftheshrew,1593\nwhy,16,tamingoftheshrew,1593\nduty,16,tamingoftheshrew,1593\never,16,tamingoftheshrew,1593\nhad,17,tamingoftheshrew,1593\nstay,17,tamingoftheshrew,1593\nNo,17,tamingoftheshrew,1593\nenter,17,tamingoftheshrew,1593\nIn,17,tamingoftheshrew,1593\nRe,17,tamingoftheshrew,1593\nbeen,17,tamingoftheshrew,1593\nlook,17,tamingoftheshrew,1593\nlong,17,tamingoftheshrew,1593\nspeak,17,tamingoftheshrew,1593\nthough,17,tamingoftheshrew,1593\nVincentio,17,tamingoftheshrew,1593\nTailor,17,tamingoftheshrew,1593\nthink,17,tamingoftheshrew,1593\nfirst,17,tamingoftheshrew,1593\nHere,18,tamingoftheshrew,1593\nHe,18,tamingoftheshrew,1593\nIt,18,tamingoftheshrew,1593\nbid,18,tamingoftheshrew,1593\nhusband,18,tamingoftheshrew,1593\nwelcome,18,tamingoftheshrew,1593\nFirst,18,tamingoftheshrew,1593\nnor,18,tamingoftheshrew,1593\nbefore,18,tamingoftheshrew,1593\nget,18,tamingoftheshrew,1593\nout,18,tamingoftheshrew,1593\nunto,18,tamingoftheshrew,1593\nWhere,18,tamingoftheshrew,1593\nhorse,19,tamingoftheshrew,1593\nthere,19,tamingoftheshrew,1593\nGo,19,tamingoftheshrew,1593\nOr,19,tamingoftheshrew,1593\nmyself,19,tamingoftheshrew,1593\nThen,19,tamingoftheshrew,1593\nWell,19,tamingoftheshrew,1593\nplease,19,tamingoftheshrew,1593\nmad,19,tamingoftheshrew,1593\ntwo,19,tamingoftheshrew,1593\nupon,20,tamingoftheshrew,1593\ncall,20,tamingoftheshrew,1593\nmean,20,tamingoftheshrew,1593\ncan,20,tamingoftheshrew,1593\ntheir,20,tamingoftheshrew,1593\nwhere,20,tamingoftheshrew,1593\nfair,20,tamingoftheshrew,1593\nlife,21,tamingoftheshrew,1593\nSir,21,tamingoftheshrew,1593\n'Tis,21,tamingoftheshrew,1593\ngentleman,21,tamingoftheshrew,1593\nthus,21,tamingoftheshrew,1593\ndid,21,tamingoftheshrew,1593\nmistress,22,tamingoftheshrew,1593\nGrumio,22,tamingoftheshrew,1593\nShe,22,tamingoftheshrew,1593\nvery,22,tamingoftheshrew,1593\nCome,23,tamingoftheshrew,1593\nCURTIS,23,tamingoftheshrew,1593\nthey,23,tamingoftheshrew,1593\nGremio,23,tamingoftheshrew,1593\nyet,23,tamingoftheshrew,1593\nany,23,tamingoftheshrew,1593\ngive,23,tamingoftheshrew,1593\nday,23,tamingoftheshrew,1593\nleave,23,tamingoftheshrew,1593\nhear,24,tamingoftheshrew,1593\nServant,24,tamingoftheshrew,1593\nAy,24,tamingoftheshrew,1593\ntherefore,24,tamingoftheshrew,1593\nHow,24,tamingoftheshrew,1593\ntime,24,tamingoftheshrew,1593\ntoo,24,tamingoftheshrew,1593\nNay,25,tamingoftheshrew,1593\nworld,25,tamingoftheshrew,1593\nname,25,tamingoftheshrew,1593\nus,25,tamingoftheshrew,1593\nBaptista,25,tamingoftheshrew,1593\nLord,25,tamingoftheshrew,1593\nExeunt,26,tamingoftheshrew,1593\nup,26,tamingoftheshrew,1593\nmine,26,tamingoftheshrew,1593\ncomes,26,tamingoftheshrew,1593\nsome,27,tamingoftheshrew,1593\nthese,27,tamingoftheshrew,1593\nlord,27,tamingoftheshrew,1593\nsweet,27,tamingoftheshrew,1593\nwhen,27,tamingoftheshrew,1593\nKatharina,28,tamingoftheshrew,1593\nmust,29,tamingoftheshrew,1593\nPedant,29,tamingoftheshrew,1593\nnever,29,tamingoftheshrew,1593\nHortensio,29,tamingoftheshrew,1593\nSLY,29,tamingoftheshrew,1593\nmy,285,tamingoftheshrew,1593\nIf,30,tamingoftheshrew,1593\nshould,30,tamingoftheshrew,1593\nTHE,30,tamingoftheshrew,1593\nVINCENTIO,30,tamingoftheshrew,1593\npray,31,tamingoftheshrew,1593\n'tis,31,tamingoftheshrew,1593\nhath,31,tamingoftheshrew,1593\nwould,31,tamingoftheshrew,1593\nNow,32,tamingoftheshrew,1593\nwas,32,tamingoftheshrew,1593\ntell,33,tamingoftheshrew,1593\nMy,33,tamingoftheshrew,1593\nfrom,33,tamingoftheshrew,1593\ntake,33,tamingoftheshrew,1593\nwife,33,tamingoftheshrew,1593\nExit,33,tamingoftheshrew,1593\nson,34,tamingoftheshrew,1593\ndaughter,34,tamingoftheshrew,1593\nPetruchio,34,tamingoftheshrew,1593\nPadua,34,tamingoftheshrew,1593\nsuch,35,tamingoftheshrew,1593\nthan,35,tamingoftheshrew,1593\nBianca,35,tamingoftheshrew,1593\nTranio,35,tamingoftheshrew,1593\nmake,36,tamingoftheshrew,1593\nold,36,tamingoftheshrew,1593\nwere,36,tamingoftheshrew,1593\nThe,36,tamingoftheshrew,1593\nlike,37,tamingoftheshrew,1593\nLucentio,37,tamingoftheshrew,1593\nthem,38,tamingoftheshrew,1593\nmaster,38,tamingoftheshrew,1593\nhouse,38,tamingoftheshrew,1593\nan,40,tamingoftheshrew,1593\nAs,41,tamingoftheshrew,1593\nour,41,tamingoftheshrew,1593\nlet,41,tamingoftheshrew,1593\nman,41,tamingoftheshrew,1593\nYou,42,tamingoftheshrew,1593\nSignior,42,tamingoftheshrew,1593\nthen,44,tamingoftheshrew,1593\nEnter,45,tamingoftheshrew,1593\n',46,tamingoftheshrew,1593\nsee,46,tamingoftheshrew,1593\none,47,tamingoftheshrew,1593\nhow,48,tamingoftheshrew,1593\nmay,48,tamingoftheshrew,1593\nBIANCA,49,tamingoftheshrew,1593\nFor,49,tamingoftheshrew,1593\ngo,49,tamingoftheshrew,1593\nO,50,tamingoftheshrew,1593\nnow,50,tamingoftheshrew,1593\nfather,50,tamingoftheshrew,1593\nmore,51,tamingoftheshrew,1593\nknow,51,tamingoftheshrew,1593\nhere,52,tamingoftheshrew,1593\nWhy,52,tamingoftheshrew,1593\nA,55,tamingoftheshrew,1593\nsay,55,tamingoftheshrew,1593\non,59,tamingoftheshrew,1593\nlove,60,tamingoftheshrew,1593\nwe,60,tamingoftheshrew,1593\nI'll,60,tamingoftheshrew,1593\nWhat,60,tamingoftheshrew,1593\nKate,62,tamingoftheshrew,1593\nBIONDELLO,62,tamingoftheshrew,1593\ndo,63,tamingoftheshrew,1593\nBut,63,tamingoftheshrew,1593\ncome,64,tamingoftheshrew,1593\nor,65,tamingoftheshrew,1593\nwhat,66,tamingoftheshrew,1593\nby,67,tamingoftheshrew,1593\nat,67,tamingoftheshrew,1593\nThat,67,tamingoftheshrew,1593\nGREMIO,69,tamingoftheshrew,1593\nwell,70,tamingoftheshrew,1593\nTo,71,tamingoftheshrew,1593\ngood,72,tamingoftheshrew,1593\nam,73,tamingoftheshrew,1593\nGRUMIO,74,tamingoftheshrew,1593\nif,75,tamingoftheshrew,1593\nno,77,tamingoftheshrew,1593\nthy,77,tamingoftheshrew,1593\nLUCENTIO,79,tamingoftheshrew,1593\nBAPTISTA,80,tamingoftheshrew,1593\nare,81,tamingoftheshrew,1593\nthee,83,tamingoftheshrew,1593\nbut,84,tamingoftheshrew,1593\nHORTENSIO,85,tamingoftheshrew,1593\nhis,93,tamingoftheshrew,1593\nshall,97,tamingoftheshrew,1593\nKATHARINA,98,tamingoftheshrew,1593\nthou,105,tamingoftheshrew,1593\nTRANIO,106,tamingoftheshrew,1593\nshe,111,tamingoftheshrew,1593\nall,112,tamingoftheshrew,1593\nhe,114,tamingoftheshrew,1593\nhim,115,tamingoftheshrew,1593\nI,629,tamingoftheshrew,1593\nthis,118,tamingoftheshrew,1593\nsir,119,tamingoftheshrew,1593\na,385,tamingoftheshrew,1593\nso,137,tamingoftheshrew,1593\nas,146,tamingoftheshrew,1593\nwill,146,tamingoftheshrew,1593\nhave,155,tamingoftheshrew,1593\nthat,165,tamingoftheshrew,1593\nPETRUCHIO,174,tamingoftheshrew,1593\nyour,175,tamingoftheshrew,1593\nwith,178,tamingoftheshrew,1593\nit,178,tamingoftheshrew,1593\nfor,179,tamingoftheshrew,1593\nher,180,tamingoftheshrew,1593\nto,452,tamingoftheshrew,1593\nbe,198,tamingoftheshrew,1593\nyou,467,tamingoftheshrew,1593\nthe,470,tamingoftheshrew,1593\nnot,225,tamingoftheshrew,1593\nin,234,tamingoftheshrew,1593\nof,238,tamingoftheshrew,1593\nme,241,tamingoftheshrew,1593\nis,248,tamingoftheshrew,1593\nand,505,tamingoftheshrew,1593\nattended,1,antonyandcleopatra,1606\nholding,1,antonyandcleopatra,1606\ntreason,1,antonyandcleopatra,1606\nlamentably,1,antonyandcleopatra,1606\nbefal,1,antonyandcleopatra,1606\ndischarged,1,antonyandcleopatra,1606\nsilken,1,antonyandcleopatra,1606\nreligion,1,antonyandcleopatra,1606\nYou're,1,antonyandcleopatra,1606\nO'erflows,1,antonyandcleopatra,1606\nheed,1,antonyandcleopatra,1606\ncorrigible,1,antonyandcleopatra,1606\nEuphrates,1,antonyandcleopatra,1606\nrushing,1,antonyandcleopatra,1606\nvillany,1,antonyandcleopatra,1606\narmies,1,antonyandcleopatra,1606\nuttering,1,antonyandcleopatra,1606\nchairs,1,antonyandcleopatra,1606\nconcern'd,1,antonyandcleopatra,1606\nFinish,1,antonyandcleopatra,1606\nM,1,antonyandcleopatra,1606\nignorance,1,antonyandcleopatra,1606\nH,1,antonyandcleopatra,1606\nwatchmen,1,antonyandcleopatra,1606\nQuick,1,antonyandcleopatra,1606\nT,1,antonyandcleopatra,1606\nmeek,1,antonyandcleopatra,1606\nvenomous,1,antonyandcleopatra,1606\nStands,1,antonyandcleopatra,1606\ngrew,1,antonyandcleopatra,1606\nriveted,1,antonyandcleopatra,1606\ngrey,1,antonyandcleopatra,1606\nProve,1,antonyandcleopatra,1606\nDowny,1,antonyandcleopatra,1606\nmyrtle,1,antonyandcleopatra,1606\nc,1,antonyandcleopatra,1606\ninvisible,1,antonyandcleopatra,1606\ndigested,1,antonyandcleopatra,1606\nports,1,antonyandcleopatra,1606\ndispraised,1,antonyandcleopatra,1606\nProud,1,antonyandcleopatra,1606\nadvice,1,antonyandcleopatra,1606\nvouchsafing,1,antonyandcleopatra,1606\ndrop,1,antonyandcleopatra,1606\ntook,1,antonyandcleopatra,1606\nreputation,1,antonyandcleopatra,1606\nFavours,1,antonyandcleopatra,1606\ncomposition,1,antonyandcleopatra,1606\ncheer'd,1,antonyandcleopatra,1606\nyielding,1,antonyandcleopatra,1606\ntransmigrates,1,antonyandcleopatra,1606\nInform'd,1,antonyandcleopatra,1606\nstation,1,antonyandcleopatra,1606\nleisure,1,antonyandcleopatra,1606\nPity,1,antonyandcleopatra,1606\ncountry,1,antonyandcleopatra,1606\nnecessities,1,antonyandcleopatra,1606\ndiminution,1,antonyandcleopatra,1606\nviands,1,antonyandcleopatra,1606\nwears,1,antonyandcleopatra,1606\npageants,1,antonyandcleopatra,1606\nwrit,1,antonyandcleopatra,1606\nYare,1,antonyandcleopatra,1606\nwish'd,1,antonyandcleopatra,1606\nbleed'st,1,antonyandcleopatra,1606\nplanted,1,antonyandcleopatra,1606\nBacchanals,1,antonyandcleopatra,1606\nAlas,1,antonyandcleopatra,1606\nespecially,1,antonyandcleopatra,1606\nGrew,1,antonyandcleopatra,1606\nabominations,1,antonyandcleopatra,1606\nhinder,1,antonyandcleopatra,1606\nTrouble,1,antonyandcleopatra,1606\ndiver,1,antonyandcleopatra,1606\nNew,1,antonyandcleopatra,1606\ndislimns,1,antonyandcleopatra,1606\nFie,1,antonyandcleopatra,1606\nshadows,1,antonyandcleopatra,1606\nhonours,1,antonyandcleopatra,1606\nflush,1,antonyandcleopatra,1606\nram,1,antonyandcleopatra,1606\nshelters,1,antonyandcleopatra,1606\nlawful,1,antonyandcleopatra,1606\nalack,1,antonyandcleopatra,1606\nEye,1,antonyandcleopatra,1606\ndagger,1,antonyandcleopatra,1606\nrock,1,antonyandcleopatra,1606\nMessengers,1,antonyandcleopatra,1606\nbones,1,antonyandcleopatra,1606\nAntoniad,1,antonyandcleopatra,1606\ndryness,1,antonyandcleopatra,1606\npurge,1,antonyandcleopatra,1606\nParthians,1,antonyandcleopatra,1606\ndolphin,1,antonyandcleopatra,1606\nelement,1,antonyandcleopatra,1606\nbreathless,1,antonyandcleopatra,1606\nruminated,1,antonyandcleopatra,1606\nshoulders,1,antonyandcleopatra,1606\nUplift,1,antonyandcleopatra,1606\nscene,1,antonyandcleopatra,1606\npublicly,1,antonyandcleopatra,1606\ntriumphing,1,antonyandcleopatra,1606\nspeeds,1,antonyandcleopatra,1606\nmandate,1,antonyandcleopatra,1606\ntrivial,1,antonyandcleopatra,1606\nproclaim'd,1,antonyandcleopatra,1606\neasily,1,antonyandcleopatra,1606\njot,1,antonyandcleopatra,1606\nPhilippan,1,antonyandcleopatra,1606\nsealing,1,antonyandcleopatra,1606\nNever,1,antonyandcleopatra,1606\nhell,1,antonyandcleopatra,1606\nBelong,1,antonyandcleopatra,1606\nswifter,1,antonyandcleopatra,1606\nmoiety,1,antonyandcleopatra,1606\nwager'd,1,antonyandcleopatra,1606\nStay,1,antonyandcleopatra,1606\ntrull,1,antonyandcleopatra,1606\nWoo't,1,antonyandcleopatra,1606\nKills,1,antonyandcleopatra,1606\nrevengers,1,antonyandcleopatra,1606\nfreer,1,antonyandcleopatra,1606\nstrumpets,1,antonyandcleopatra,1606\npoisonous,1,antonyandcleopatra,1606\nwhine,1,antonyandcleopatra,1606\nlieutenantry,1,antonyandcleopatra,1606\nNeptune,1,antonyandcleopatra,1606\nyounger,1,antonyandcleopatra,1606\ndarkness,1,antonyandcleopatra,1606\npainted,1,antonyandcleopatra,1606\ngroan,1,antonyandcleopatra,1606\nbounteous,1,antonyandcleopatra,1606\nHoists,1,antonyandcleopatra,1606\nherd,1,antonyandcleopatra,1606\nfetters,1,antonyandcleopatra,1606\nmere,1,antonyandcleopatra,1606\nmean'st,1,antonyandcleopatra,1606\nCried,1,antonyandcleopatra,1606\nruffian,1,antonyandcleopatra,1606\nsecurity,1,antonyandcleopatra,1606\nloathness,1,antonyandcleopatra,1606\nprosperous,1,antonyandcleopatra,1606\nerrand,1,antonyandcleopatra,1606\ntoil,1,antonyandcleopatra,1606\naprons,1,antonyandcleopatra,1606\ndrum,1,antonyandcleopatra,1606\ncomest,1,antonyandcleopatra,1606\nlearn'd,1,antonyandcleopatra,1606\npuzzle,1,antonyandcleopatra,1606\nanswering,1,antonyandcleopatra,1606\nrumour,1,antonyandcleopatra,1606\nrig,1,antonyandcleopatra,1606\ndodge,1,antonyandcleopatra,1606\ninstrument,1,antonyandcleopatra,1606\nrods,1,antonyandcleopatra,1606\nlooked,1,antonyandcleopatra,1606\nnaked,1,antonyandcleopatra,1606\nadvance,1,antonyandcleopatra,1606\nslander,1,antonyandcleopatra,1606\nunderstand,1,antonyandcleopatra,1606\nwritings,1,antonyandcleopatra,1606\nstrangler,1,antonyandcleopatra,1606\npraising,1,antonyandcleopatra,1606\nflow,1,antonyandcleopatra,1606\nits,1,antonyandcleopatra,1606\nrichly,1,antonyandcleopatra,1606\nexactly,1,antonyandcleopatra,1606\nalthough,1,antonyandcleopatra,1606\nFrighted,1,antonyandcleopatra,1606\nlordliness,1,antonyandcleopatra,1606\nappeal,1,antonyandcleopatra,1606\nnought,1,antonyandcleopatra,1606\nfoams,1,antonyandcleopatra,1606\njaded,1,antonyandcleopatra,1606\nprey,1,antonyandcleopatra,1606\nthirty,1,antonyandcleopatra,1606\nterrible,1,antonyandcleopatra,1606\ntaunts,1,antonyandcleopatra,1606\ndreaming,1,antonyandcleopatra,1606\nswerving,1,antonyandcleopatra,1606\nyarely,1,antonyandcleopatra,1606\nadvise,1,antonyandcleopatra,1606\nearns,1,antonyandcleopatra,1606\nnick'd,1,antonyandcleopatra,1606\niron,1,antonyandcleopatra,1606\nsore,1,antonyandcleopatra,1606\nworm's,1,antonyandcleopatra,1606\nAcquire,1,antonyandcleopatra,1606\nCondemning,1,antonyandcleopatra,1606\nworky,1,antonyandcleopatra,1606\nbuilds,1,antonyandcleopatra,1606\nUnpolicied,1,antonyandcleopatra,1606\nrates,1,antonyandcleopatra,1606\nPour,1,antonyandcleopatra,1606\nAEMILIUS,1,antonyandcleopatra,1606\nresolution's,1,antonyandcleopatra,1606\nlief,1,antonyandcleopatra,1606\nrated,1,antonyandcleopatra,1606\nwing'd,1,antonyandcleopatra,1606\nVanish,1,antonyandcleopatra,1606\nMarried,1,antonyandcleopatra,1606\ngoest,1,antonyandcleopatra,1606\nshoved,1,antonyandcleopatra,1606\nwhoreson,1,antonyandcleopatra,1606\nmuss,1,antonyandcleopatra,1606\ncurious,1,antonyandcleopatra,1606\nPERSONAE,1,antonyandcleopatra,1606\nwither,1,antonyandcleopatra,1606\nprovince,1,antonyandcleopatra,1606\nmoist,1,antonyandcleopatra,1606\ndemand,1,antonyandcleopatra,1606\nagreed,1,antonyandcleopatra,1606\nsaved,1,antonyandcleopatra,1606\nbattled,1,antonyandcleopatra,1606\nlightning,1,antonyandcleopatra,1606\nHorrible,1,antonyandcleopatra,1606\nmingled,1,antonyandcleopatra,1606\nIonian,1,antonyandcleopatra,1606\nbattles,1,antonyandcleopatra,1606\nBallad,1,antonyandcleopatra,1606\nPont,1,antonyandcleopatra,1606\nsoftly,1,antonyandcleopatra,1606\nchares,1,antonyandcleopatra,1606\nwalking,1,antonyandcleopatra,1606\nderogately,1,antonyandcleopatra,1606\nAlps,1,antonyandcleopatra,1606\nascended,1,antonyandcleopatra,1606\nbridegroom,1,antonyandcleopatra,1606\nspared,1,antonyandcleopatra,1606\nlustre,1,antonyandcleopatra,1606\nperformance,1,antonyandcleopatra,1606\nPeloponnesus,1,antonyandcleopatra,1606\nstirring,1,antonyandcleopatra,1606\npractised,1,antonyandcleopatra,1606\nPoor,1,antonyandcleopatra,1606\npassions,1,antonyandcleopatra,1606\nbending,1,antonyandcleopatra,1606\nchid,1,antonyandcleopatra,1606\nplied,1,antonyandcleopatra,1606\npalates,1,antonyandcleopatra,1606\ngraces,1,antonyandcleopatra,1606\nseven,1,antonyandcleopatra,1606\npreys,1,antonyandcleopatra,1606\nsons,1,antonyandcleopatra,1606\ngrasp'd,1,antonyandcleopatra,1606\nwhatsome'er,1,antonyandcleopatra,1606\nPatient,1,antonyandcleopatra,1606\nrepays,1,antonyandcleopatra,1606\ncommission's,1,antonyandcleopatra,1606\nbirth,1,antonyandcleopatra,1606\nRare,1,antonyandcleopatra,1606\ncrownets,1,antonyandcleopatra,1606\ninstructed,1,antonyandcleopatra,1606\nfeather,1,antonyandcleopatra,1606\nAfter,1,antonyandcleopatra,1606\ndrive,1,antonyandcleopatra,1606\nspies,1,antonyandcleopatra,1606\nslept,1,antonyandcleopatra,1606\npink,1,antonyandcleopatra,1606\nAsia,1,antonyandcleopatra,1606\nconfusion,1,antonyandcleopatra,1606\ncompelling,1,antonyandcleopatra,1606\n'Yes,1,antonyandcleopatra,1606\nthousands,1,antonyandcleopatra,1606\ncharms,1,antonyandcleopatra,1606\nreconciler,1,antonyandcleopatra,1606\nreconciles,1,antonyandcleopatra,1606\ngrieving,1,antonyandcleopatra,1606\npiteously,1,antonyandcleopatra,1606\nsap,1,antonyandcleopatra,1606\nbefits,1,antonyandcleopatra,1606\ndance,1,antonyandcleopatra,1606\nstream,1,antonyandcleopatra,1606\nvoiced,1,antonyandcleopatra,1606\nfortunate,1,antonyandcleopatra,1606\natone,1,antonyandcleopatra,1606\nbathe,1,antonyandcleopatra,1606\nsorrows,1,antonyandcleopatra,1606\nCold,1,antonyandcleopatra,1606\nopposed,1,antonyandcleopatra,1606\nsilver'd,1,antonyandcleopatra,1606\nProvoked,1,antonyandcleopatra,1606\ncorner,1,antonyandcleopatra,1606\noutstare,1,antonyandcleopatra,1606\ncrying,1,antonyandcleopatra,1606\nbroken,1,antonyandcleopatra,1606\nAboard,1,antonyandcleopatra,1606\ndiscandying,1,antonyandcleopatra,1606\nsennet,1,antonyandcleopatra,1606\ncaps,1,antonyandcleopatra,1606\nsought'st,1,antonyandcleopatra,1606\nafterwards,1,antonyandcleopatra,1606\nRank,1,antonyandcleopatra,1606\nprophesying,1,antonyandcleopatra,1606\nenthroned,1,antonyandcleopatra,1606\nplight,1,antonyandcleopatra,1606\nBliss,1,antonyandcleopatra,1606\nposts,1,antonyandcleopatra,1606\nRemember,1,antonyandcleopatra,1606\nconcerns,1,antonyandcleopatra,1606\nawry,1,antonyandcleopatra,1606\nanchor,1,antonyandcleopatra,1606\nrevels,1,antonyandcleopatra,1606\nWoe,1,antonyandcleopatra,1606\ndejected,1,antonyandcleopatra,1606\nenemy's,1,antonyandcleopatra,1606\nundoing,1,antonyandcleopatra,1606\nundid,1,antonyandcleopatra,1606\nOnly,1,antonyandcleopatra,1606\nwants,1,antonyandcleopatra,1606\nspurns,1,antonyandcleopatra,1606\nadjacent,1,antonyandcleopatra,1606\nhearing,1,antonyandcleopatra,1606\nsoften,1,antonyandcleopatra,1606\nlowering,1,antonyandcleopatra,1606\nmadness,1,antonyandcleopatra,1606\nbabes,1,antonyandcleopatra,1606\ngolden,1,antonyandcleopatra,1606\nknaves,1,antonyandcleopatra,1606\ncalm,1,antonyandcleopatra,1606\ndemands,1,antonyandcleopatra,1606\nsoonest,1,antonyandcleopatra,1606\ngross,1,antonyandcleopatra,1606\nnests,1,antonyandcleopatra,1606\nAmbassador,1,antonyandcleopatra,1606\nofficers,1,antonyandcleopatra,1606\nmaking,1,antonyandcleopatra,1606\ndeities,1,antonyandcleopatra,1606\nchains,1,antonyandcleopatra,1606\nteach,1,antonyandcleopatra,1606\ngests,1,antonyandcleopatra,1606\nveins,1,antonyandcleopatra,1606\nMethinks,1,antonyandcleopatra,1606\nLaugh,1,antonyandcleopatra,1606\ntoys,1,antonyandcleopatra,1606\ntarget,1,antonyandcleopatra,1606\nfurious,1,antonyandcleopatra,1606\ntarges,1,antonyandcleopatra,1606\nAvaunt,1,antonyandcleopatra,1606\nsquadrons,1,antonyandcleopatra,1606\npillar,1,antonyandcleopatra,1606\nabode,1,antonyandcleopatra,1606\nvisit,1,antonyandcleopatra,1606\nblossoming,1,antonyandcleopatra,1606\nXIV,1,antonyandcleopatra,1606\nlesser,1,antonyandcleopatra,1606\npurposeth,1,antonyandcleopatra,1606\nboar,1,antonyandcleopatra,1606\nintrinsicate,1,antonyandcleopatra,1606\npaltry,1,antonyandcleopatra,1606\nslippery,1,antonyandcleopatra,1606\npartner,1,antonyandcleopatra,1606\nadornings,1,antonyandcleopatra,1606\nunseminar'd,1,antonyandcleopatra,1606\nMet'st,1,antonyandcleopatra,1606\nstanch,1,antonyandcleopatra,1606\ngeneral's,1,antonyandcleopatra,1606\nmoving,1,antonyandcleopatra,1606\nbatter,1,antonyandcleopatra,1606\nprosecution,1,antonyandcleopatra,1606\ncities,1,antonyandcleopatra,1606\nimpress,1,antonyandcleopatra,1606\nPerchance,1,antonyandcleopatra,1606\nDemuring,1,antonyandcleopatra,1606\nbarks,1,antonyandcleopatra,1606\ndeserve,1,antonyandcleopatra,1606\npillow,1,antonyandcleopatra,1606\nshamed,1,antonyandcleopatra,1606\nweaker,1,antonyandcleopatra,1606\nhereafter,1,antonyandcleopatra,1606\nwage,1,antonyandcleopatra,1606\nacted,1,antonyandcleopatra,1606\njoining,1,antonyandcleopatra,1606\nshames,1,antonyandcleopatra,1606\nOff,1,antonyandcleopatra,1606\ncompliment,1,antonyandcleopatra,1606\nthroned,1,antonyandcleopatra,1606\nspheres,1,antonyandcleopatra,1606\nboat,1,antonyandcleopatra,1606\nproclaims,1,antonyandcleopatra,1606\naccumulation,1,antonyandcleopatra,1606\nafflict,1,antonyandcleopatra,1606\nsin,1,antonyandcleopatra,1606\ninnocents,1,antonyandcleopatra,1606\nconceive,1,antonyandcleopatra,1606\nprevail'd,1,antonyandcleopatra,1606\norbs,1,antonyandcleopatra,1606\npursed,1,antonyandcleopatra,1606\nHappily,1,antonyandcleopatra,1606\nSoundly,1,antonyandcleopatra,1606\nBeyond,1,antonyandcleopatra,1606\n'twere,1,antonyandcleopatra,1606\ndroven,1,antonyandcleopatra,1606\nwearer,1,antonyandcleopatra,1606\nscourge,1,antonyandcleopatra,1606\nnoises,1,antonyandcleopatra,1606\n'A,1,antonyandcleopatra,1606\nwalk,1,antonyandcleopatra,1606\ninvention,1,antonyandcleopatra,1606\nsworder,1,antonyandcleopatra,1606\nvice,1,antonyandcleopatra,1606\nObserve,1,antonyandcleopatra,1606\ndeceived,1,antonyandcleopatra,1606\nKneel,1,antonyandcleopatra,1606\nflying,1,antonyandcleopatra,1606\njustest,1,antonyandcleopatra,1606\ncatching,1,antonyandcleopatra,1606\ngipsy's,1,antonyandcleopatra,1606\nlanguish,1,antonyandcleopatra,1606\nlaying,1,antonyandcleopatra,1606\nlions,1,antonyandcleopatra,1606\nbeasts,1,antonyandcleopatra,1606\nscorn,1,antonyandcleopatra,1606\nWalk,1,antonyandcleopatra,1606\nCaelius,1,antonyandcleopatra,1606\nscore,1,antonyandcleopatra,1606\nlove's,1,antonyandcleopatra,1606\nbetrayed,1,antonyandcleopatra,1606\nactor,1,antonyandcleopatra,1606\nTempt,1,antonyandcleopatra,1606\ndeliver,1,antonyandcleopatra,1606\nembrace,1,antonyandcleopatra,1606\nearnestly,1,antonyandcleopatra,1606\nthunders,1,antonyandcleopatra,1606\nvanishest,1,antonyandcleopatra,1606\nequalness,1,antonyandcleopatra,1606\nvine,1,antonyandcleopatra,1606\ndarting,1,antonyandcleopatra,1606\nSuch,1,antonyandcleopatra,1606\nstripes,1,antonyandcleopatra,1606\nconsiderate,1,antonyandcleopatra,1606\nnourishes,1,antonyandcleopatra,1606\nbecomed,1,antonyandcleopatra,1606\nbringing,1,antonyandcleopatra,1606\naugurer,1,antonyandcleopatra,1606\nsubject,1,antonyandcleopatra,1606\nRememberest,1,antonyandcleopatra,1606\nway's,1,antonyandcleopatra,1606\nwhere's,1,antonyandcleopatra,1606\ncounsel,1,antonyandcleopatra,1606\nashore,1,antonyandcleopatra,1606\nkindle,1,antonyandcleopatra,1606\ndignities,1,antonyandcleopatra,1606\nhotter,1,antonyandcleopatra,1606\ncropp'd,1,antonyandcleopatra,1606\npersisted,1,antonyandcleopatra,1606\nit's,1,antonyandcleopatra,1606\nsued,1,antonyandcleopatra,1606\nlivery,1,antonyandcleopatra,1606\ndesign,1,antonyandcleopatra,1606\nsues,1,antonyandcleopatra,1606\nacquainted,1,antonyandcleopatra,1606\ndisgrace,1,antonyandcleopatra,1606\npermit,1,antonyandcleopatra,1606\nstudy,1,antonyandcleopatra,1606\nhunted,1,antonyandcleopatra,1606\ndeserts,1,antonyandcleopatra,1606\nlevel,1,antonyandcleopatra,1606\nsquares,1,antonyandcleopatra,1606\nsky,1,antonyandcleopatra,1606\nscythe,1,antonyandcleopatra,1606\nwings,1,antonyandcleopatra,1606\nunmatchable,1,antonyandcleopatra,1606\nSetting,1,antonyandcleopatra,1606\nItself,1,antonyandcleopatra,1606\nrarer,1,antonyandcleopatra,1606\ndoubt,1,antonyandcleopatra,1606\nThanks,1,antonyandcleopatra,1606\npieces,1,antonyandcleopatra,1606\nstuff,1,antonyandcleopatra,1606\nmother,1,antonyandcleopatra,1606\nSpake,1,antonyandcleopatra,1606\ndearth,1,antonyandcleopatra,1606\nmattress,1,antonyandcleopatra,1606\nbetwixt,1,antonyandcleopatra,1606\nSilvius,1,antonyandcleopatra,1606\nWalk'd,1,antonyandcleopatra,1606\namiss,1,antonyandcleopatra,1606\nExperience,1,antonyandcleopatra,1606\ndenounced,1,antonyandcleopatra,1606\nthroes,1,antonyandcleopatra,1606\nAuthority,1,antonyandcleopatra,1606\nstuck,1,antonyandcleopatra,1606\ncoward's,1,antonyandcleopatra,1606\nabstract,1,antonyandcleopatra,1606\ncivilly,1,antonyandcleopatra,1606\nswelling,1,antonyandcleopatra,1606\ndeclining,1,antonyandcleopatra,1606\ngoddesses,1,antonyandcleopatra,1606\nthieves,1,antonyandcleopatra,1606\nappetites,1,antonyandcleopatra,1606\nrear,1,antonyandcleopatra,1606\ngaoler,1,antonyandcleopatra,1606\ntaught,1,antonyandcleopatra,1606\nmerit,1,antonyandcleopatra,1606\nmocks,1,antonyandcleopatra,1606\nImmortal,1,antonyandcleopatra,1606\nrunner,1,antonyandcleopatra,1606\nharried,1,antonyandcleopatra,1606\nwaged,1,antonyandcleopatra,1606\nquail,1,antonyandcleopatra,1606\nlandmen,1,antonyandcleopatra,1606\nmerchants,1,antonyandcleopatra,1606\nlingering,1,antonyandcleopatra,1606\nhautboys,1,antonyandcleopatra,1606\nWast,1,antonyandcleopatra,1606\nsnow,1,antonyandcleopatra,1606\ncourtiers,1,antonyandcleopatra,1606\nante,1,antonyandcleopatra,1606\ndancer,1,antonyandcleopatra,1606\nmonster,1,antonyandcleopatra,1606\nmarring,1,antonyandcleopatra,1606\nafraid,1,antonyandcleopatra,1606\nCheer,1,antonyandcleopatra,1606\nbuilded,1,antonyandcleopatra,1606\ngive's,1,antonyandcleopatra,1606\nHigher,1,antonyandcleopatra,1606\nhead's,1,antonyandcleopatra,1606\ndaughter,1,antonyandcleopatra,1606\nmirror's,1,antonyandcleopatra,1606\nladen,1,antonyandcleopatra,1606\nDisgrace,1,antonyandcleopatra,1606\nproceeded,1,antonyandcleopatra,1606\nreed,1,antonyandcleopatra,1606\nWash,1,antonyandcleopatra,1606\nreel,1,antonyandcleopatra,1606\ncombined,1,antonyandcleopatra,1606\nWars,1,antonyandcleopatra,1606\nlucky,1,antonyandcleopatra,1606\nfalls,1,antonyandcleopatra,1606\nSplitted,1,antonyandcleopatra,1606\nsalad,1,antonyandcleopatra,1606\nraises,1,antonyandcleopatra,1606\nadulterous,1,antonyandcleopatra,1606\ncommit,1,antonyandcleopatra,1606\nSound,1,antonyandcleopatra,1606\nlated,1,antonyandcleopatra,1606\nmark'd,1,antonyandcleopatra,1606\nshowers,1,antonyandcleopatra,1606\nhousehold,1,antonyandcleopatra,1606\npearl,1,antonyandcleopatra,1606\nweep't,1,antonyandcleopatra,1606\nbestrid,1,antonyandcleopatra,1606\nsty,1,antonyandcleopatra,1606\nhumble,1,antonyandcleopatra,1606\ncoloured,1,antonyandcleopatra,1606\nLichas,1,antonyandcleopatra,1606\nEmbracing,1,antonyandcleopatra,1606\nReport,1,antonyandcleopatra,1606\nsup,1,antonyandcleopatra,1606\nparagon,1,antonyandcleopatra,1606\nelder,1,antonyandcleopatra,1606\nSeeming,1,antonyandcleopatra,1606\npalter,1,antonyandcleopatra,1606\nrigg'd,1,antonyandcleopatra,1606\nfearful,1,antonyandcleopatra,1606\nancestor,1,antonyandcleopatra,1606\nspeediest,1,antonyandcleopatra,1606\ncease,1,antonyandcleopatra,1606\nSardinia,1,antonyandcleopatra,1606\ndefeat'st,1,antonyandcleopatra,1606\nsauce,1,antonyandcleopatra,1606\nvariety,1,antonyandcleopatra,1606\nPtolemies',1,antonyandcleopatra,1606\nhumbly,1,antonyandcleopatra,1606\n'No',1,antonyandcleopatra,1606\ngalleys,1,antonyandcleopatra,1606\ntight,1,antonyandcleopatra,1606\nbrief,1,antonyandcleopatra,1606\nmalice,1,antonyandcleopatra,1606\nServitors,1,antonyandcleopatra,1606\nupon's,1,antonyandcleopatra,1606\ncuckoo,1,antonyandcleopatra,1606\nbrine,1,antonyandcleopatra,1606\nBetwixt,1,antonyandcleopatra,1606\nbaser,1,antonyandcleopatra,1606\nhales,1,antonyandcleopatra,1606\ncaptainship,1,antonyandcleopatra,1606\nspeaking,1,antonyandcleopatra,1606\nchoose,1,antonyandcleopatra,1606\nlion's,1,antonyandcleopatra,1606\nteller,1,antonyandcleopatra,1606\nattires,1,antonyandcleopatra,1606\nBestow,1,antonyandcleopatra,1606\nprized,1,antonyandcleopatra,1606\nceremony,1,antonyandcleopatra,1606\nbolts,1,antonyandcleopatra,1606\nfought'st,1,antonyandcleopatra,1606\nRetire,1,antonyandcleopatra,1606\nbrowsed'st,1,antonyandcleopatra,1606\nbourn,1,antonyandcleopatra,1606\nfrom's,1,antonyandcleopatra,1606\nPack'd,1,antonyandcleopatra,1606\noily,1,antonyandcleopatra,1606\ncaves,1,antonyandcleopatra,1606\nrend,1,antonyandcleopatra,1606\nLaden,1,antonyandcleopatra,1606\nBlow,1,antonyandcleopatra,1606\nnight's,1,antonyandcleopatra,1606\ntitle,1,antonyandcleopatra,1606\nlatter,1,antonyandcleopatra,1606\noutwork,1,antonyandcleopatra,1606\nPlease,1,antonyandcleopatra,1606\nentertained,1,antonyandcleopatra,1606\nsteal,1,antonyandcleopatra,1606\nrely,1,antonyandcleopatra,1606\nstrew'd,1,antonyandcleopatra,1606\nwipe,1,antonyandcleopatra,1606\nFriend,1,antonyandcleopatra,1606\nwholly,1,antonyandcleopatra,1606\nBroad,1,antonyandcleopatra,1606\nknow'st,1,antonyandcleopatra,1606\ndiet,1,antonyandcleopatra,1606\ntrifles,1,antonyandcleopatra,1606\ngo'st,1,antonyandcleopatra,1606\nrequests,1,antonyandcleopatra,1606\nturned,1,antonyandcleopatra,1606\nanon,1,antonyandcleopatra,1606\nfortress,1,antonyandcleopatra,1606\ncustom,1,antonyandcleopatra,1606\neagle,1,antonyandcleopatra,1606\nimperious,1,antonyandcleopatra,1606\nwire,1,antonyandcleopatra,1606\nproperty,1,antonyandcleopatra,1606\ndispleasure,1,antonyandcleopatra,1606\nvials,1,antonyandcleopatra,1606\nstaying,1,antonyandcleopatra,1606\nseem'd,1,antonyandcleopatra,1606\npierce,1,antonyandcleopatra,1606\nwindow,1,antonyandcleopatra,1606\nhatch,1,antonyandcleopatra,1606\nvoice,1,antonyandcleopatra,1606\nharbour,1,antonyandcleopatra,1606\ncrescent,1,antonyandcleopatra,1606\nDetain,1,antonyandcleopatra,1606\nbond,1,antonyandcleopatra,1606\ndice,1,antonyandcleopatra,1606\nbreeding,1,antonyandcleopatra,1606\nmeat,1,antonyandcleopatra,1606\ntriple,1,antonyandcleopatra,1606\nrule,1,antonyandcleopatra,1606\nBurn,1,antonyandcleopatra,1606\nmeal,1,antonyandcleopatra,1606\nmistake,1,antonyandcleopatra,1606\njoin'd,1,antonyandcleopatra,1606\nstirr'd,1,antonyandcleopatra,1606\nTurning,1,antonyandcleopatra,1606\nsteed,1,antonyandcleopatra,1606\nrevel,1,antonyandcleopatra,1606\nsteel,1,antonyandcleopatra,1606\ndomestic,1,antonyandcleopatra,1606\nrules,1,antonyandcleopatra,1606\nLadies,1,antonyandcleopatra,1606\ndistrust,1,antonyandcleopatra,1606\nsweating,1,antonyandcleopatra,1606\ndear'st,1,antonyandcleopatra,1606\nNereides,1,antonyandcleopatra,1606\nriggish,1,antonyandcleopatra,1606\nsteer,1,antonyandcleopatra,1606\nbook,1,antonyandcleopatra,1606\nchastised,1,antonyandcleopatra,1606\nmanhood,1,antonyandcleopatra,1606\nbright,1,antonyandcleopatra,1606\nfeeders,1,antonyandcleopatra,1606\nTraduced,1,antonyandcleopatra,1606\nparty,1,antonyandcleopatra,1606\npresageth,1,antonyandcleopatra,1606\nsceptre,1,antonyandcleopatra,1606\npraises,1,antonyandcleopatra,1606\ndistraction,1,antonyandcleopatra,1606\nhungry,1,antonyandcleopatra,1606\nhealthful,1,antonyandcleopatra,1606\nDescended,1,antonyandcleopatra,1606\nDrive,1,antonyandcleopatra,1606\ndeserver,1,antonyandcleopatra,1606\npatch'd,1,antonyandcleopatra,1606\nRaised,1,antonyandcleopatra,1606\nconditions,1,antonyandcleopatra,1606\nproject,1,antonyandcleopatra,1606\naspect,1,antonyandcleopatra,1606\nSentinels,1,antonyandcleopatra,1606\nshorter,1,antonyandcleopatra,1606\ngrind,1,antonyandcleopatra,1606\nreceive't,1,antonyandcleopatra,1606\nForborne,1,antonyandcleopatra,1606\nstir,1,antonyandcleopatra,1606\nemptiness,1,antonyandcleopatra,1606\ndaff't,1,antonyandcleopatra,1606\nslaves,1,antonyandcleopatra,1606\ndrown,1,antonyandcleopatra,1606\nmediation,1,antonyandcleopatra,1606\nLeaving,1,antonyandcleopatra,1606\nTaken,1,antonyandcleopatra,1606\nstrongly,1,antonyandcleopatra,1606\nmelancholy,1,antonyandcleopatra,1606\nhap,1,antonyandcleopatra,1606\nvisible,1,antonyandcleopatra,1606\nenchanting,1,antonyandcleopatra,1606\napproof,1,antonyandcleopatra,1606\nbacks,1,antonyandcleopatra,1606\nslackness,1,antonyandcleopatra,1606\nplanet,1,antonyandcleopatra,1606\nThemselves,1,antonyandcleopatra,1606\naboard,1,antonyandcleopatra,1606\nWhile,1,antonyandcleopatra,1606\nA',1,antonyandcleopatra,1606\nadjoining,1,antonyandcleopatra,1606\ntrimming,1,antonyandcleopatra,1606\ncrack,1,antonyandcleopatra,1606\nUnstate,1,antonyandcleopatra,1606\nDraws,1,antonyandcleopatra,1606\nneigh'd,1,antonyandcleopatra,1606\nBelike,1,antonyandcleopatra,1606\nserving,1,antonyandcleopatra,1606\ntalks,1,antonyandcleopatra,1606\nchronicle,1,antonyandcleopatra,1606\ndelights,1,antonyandcleopatra,1606\nPoison'd,1,antonyandcleopatra,1606\nexercise,1,antonyandcleopatra,1606\n'Twere,1,antonyandcleopatra,1606\nPossess,1,antonyandcleopatra,1606\ntwins,1,antonyandcleopatra,1606\nwheel'd,1,antonyandcleopatra,1606\nballs,1,antonyandcleopatra,1606\nperfection,1,antonyandcleopatra,1606\nflatters,1,antonyandcleopatra,1606\nAm,1,antonyandcleopatra,1606\nwomanly,1,antonyandcleopatra,1606\ntonight,1,antonyandcleopatra,1606\nquarrel,1,antonyandcleopatra,1606\nIonia,1,antonyandcleopatra,1606\nwronged,1,antonyandcleopatra,1606\nvariance,1,antonyandcleopatra,1606\nmutiny,1,antonyandcleopatra,1606\napproaching,1,antonyandcleopatra,1606\npendent,1,antonyandcleopatra,1606\nbow,1,antonyandcleopatra,1606\nloath,1,antonyandcleopatra,1606\nWhiles,1,antonyandcleopatra,1606\nwassails,1,antonyandcleopatra,1606\neternal,1,antonyandcleopatra,1606\nbereave,1,antonyandcleopatra,1606\ninclines,1,antonyandcleopatra,1606\nknowing,1,antonyandcleopatra,1606\ndungy,1,antonyandcleopatra,1606\nshortly,1,antonyandcleopatra,1606\nbeggar'd,1,antonyandcleopatra,1606\npyramises,1,antonyandcleopatra,1606\nlance,1,antonyandcleopatra,1606\ndesperate,1,antonyandcleopatra,1606\nbehold'st,1,antonyandcleopatra,1606\nSovereign,1,antonyandcleopatra,1606\nStill,1,antonyandcleopatra,1606\nspoil'd,1,antonyandcleopatra,1606\nspots,1,antonyandcleopatra,1606\nplough'd,1,antonyandcleopatra,1606\nDrink,1,antonyandcleopatra,1606\nMe,1,antonyandcleopatra,1606\nwarrior,1,antonyandcleopatra,1606\nO',1,antonyandcleopatra,1606\nperfume,1,antonyandcleopatra,1606\nStand,1,antonyandcleopatra,1606\nenmities,1,antonyandcleopatra,1606\nrouted,1,antonyandcleopatra,1606\nproof,1,antonyandcleopatra,1606\ntreble,1,antonyandcleopatra,1606\nloof'd,1,antonyandcleopatra,1606\ncruel,1,antonyandcleopatra,1606\nsubscribe,1,antonyandcleopatra,1606\nBocchus,1,antonyandcleopatra,1606\nSays,1,antonyandcleopatra,1606\ngreatly,1,antonyandcleopatra,1606\nbelike,1,antonyandcleopatra,1606\ncanst,1,antonyandcleopatra,1606\ncreature,1,antonyandcleopatra,1606\nAnswer,1,antonyandcleopatra,1606\nexceed,1,antonyandcleopatra,1606\nlottery,1,antonyandcleopatra,1606\ndreaded,1,antonyandcleopatra,1606\nfouler,1,antonyandcleopatra,1606\nCilicia,1,antonyandcleopatra,1606\nbegun,1,antonyandcleopatra,1606\nshines,1,antonyandcleopatra,1606\nstag,1,antonyandcleopatra,1606\nto's,1,antonyandcleopatra,1606\nhid,1,antonyandcleopatra,1606\ninnocent,1,antonyandcleopatra,1606\nWithin,1,antonyandcleopatra,1606\nwot'st,1,antonyandcleopatra,1606\nhelmet,1,antonyandcleopatra,1606\nashes,1,antonyandcleopatra,1606\ntear,1,antonyandcleopatra,1606\nSomething,1,antonyandcleopatra,1606\nflowers,1,antonyandcleopatra,1606\nmedicine,1,antonyandcleopatra,1606\nrequired,1,antonyandcleopatra,1606\napprove,1,antonyandcleopatra,1606\ndinner,1,antonyandcleopatra,1606\nblest,1,antonyandcleopatra,1606\nfanning,1,antonyandcleopatra,1606\ncarbuncled,1,antonyandcleopatra,1606\nfortune's,1,antonyandcleopatra,1606\nLethe'd,1,antonyandcleopatra,1606\ntriumvirs,1,antonyandcleopatra,1606\npinches,1,antonyandcleopatra,1606\nbruised,1,antonyandcleopatra,1606\nwither'd,1,antonyandcleopatra,1606\nunhair,1,antonyandcleopatra,1606\nrevenue,1,antonyandcleopatra,1606\ndespair,1,antonyandcleopatra,1606\nDoubt,1,antonyandcleopatra,1606\nmermaid,1,antonyandcleopatra,1606\nboggler,1,antonyandcleopatra,1606\ngreasy,1,antonyandcleopatra,1606\nSwallows,1,antonyandcleopatra,1606\nearn,1,antonyandcleopatra,1606\nnobility,1,antonyandcleopatra,1606\nUp,1,antonyandcleopatra,1606\nnice,1,antonyandcleopatra,1606\nadmiral,1,antonyandcleopatra,1606\nyourselves,1,antonyandcleopatra,1606\nformerly,1,antonyandcleopatra,1606\ndevotion,1,antonyandcleopatra,1606\noutlive,1,antonyandcleopatra,1606\ncurled,1,antonyandcleopatra,1606\nattentive,1,antonyandcleopatra,1606\nperceive't,1,antonyandcleopatra,1606\nabsurd,1,antonyandcleopatra,1606\nSeems,1,antonyandcleopatra,1606\nbecame,1,antonyandcleopatra,1606\ndemon,1,antonyandcleopatra,1606\nSubmits,1,antonyandcleopatra,1606\nlipp'd,1,antonyandcleopatra,1606\nsirs,1,antonyandcleopatra,1606\ncourteous,1,antonyandcleopatra,1606\npriests,1,antonyandcleopatra,1606\nXV,1,antonyandcleopatra,1606\nsought,1,antonyandcleopatra,1606\nplants,1,antonyandcleopatra,1606\nunequal,1,antonyandcleopatra,1606\nhaunt,1,antonyandcleopatra,1606\nContinues,1,antonyandcleopatra,1606\nDrop,1,antonyandcleopatra,1606\nmoons,1,antonyandcleopatra,1606\nMurder,1,antonyandcleopatra,1606\nroyalty,1,antonyandcleopatra,1606\nThou'rt,1,antonyandcleopatra,1606\nbulk,1,antonyandcleopatra,1606\nchallenge,1,antonyandcleopatra,1606\nweet,1,antonyandcleopatra,1606\nVentidius's,1,antonyandcleopatra,1606\nbluest,1,antonyandcleopatra,1606\nhills,1,antonyandcleopatra,1606\nbranded,1,antonyandcleopatra,1606\nbend,1,antonyandcleopatra,1606\nstray,1,antonyandcleopatra,1606\nabides,1,antonyandcleopatra,1606\nmankind,1,antonyandcleopatra,1606\nHeard,1,antonyandcleopatra,1606\nImporteth,1,antonyandcleopatra,1606\nmalefactor,1,antonyandcleopatra,1606\nJove's,1,antonyandcleopatra,1606\nengender,1,antonyandcleopatra,1606\nHeart,1,antonyandcleopatra,1606\nimagine,1,antonyandcleopatra,1606\nbelief,1,antonyandcleopatra,1606\nbury,1,antonyandcleopatra,1606\neclipsed,1,antonyandcleopatra,1606\ntumble,1,antonyandcleopatra,1606\nsuffer'd,1,antonyandcleopatra,1606\nMelt,1,antonyandcleopatra,1606\ndrench,1,antonyandcleopatra,1606\ndove,1,antonyandcleopatra,1606\nthunderbolt,1,antonyandcleopatra,1606\nbell,1,antonyandcleopatra,1606\naffect'st,1,antonyandcleopatra,1606\nEmperor,1,antonyandcleopatra,1606\ncherish'd,1,antonyandcleopatra,1606\nkindness,1,antonyandcleopatra,1606\nposture,1,antonyandcleopatra,1606\ncar,1,antonyandcleopatra,1606\nbreathing,1,antonyandcleopatra,1606\nIngross'd,1,antonyandcleopatra,1606\nharping,1,antonyandcleopatra,1606\nTransform,1,antonyandcleopatra,1606\nawaked,1,antonyandcleopatra,1606\ntell'st,1,antonyandcleopatra,1606\nsounds,1,antonyandcleopatra,1606\nPlant,1,antonyandcleopatra,1606\ntricks,1,antonyandcleopatra,1606\nthickens,1,antonyandcleopatra,1606\n'tween,1,antonyandcleopatra,1606\nSeest,1,antonyandcleopatra,1606\nstrives,1,antonyandcleopatra,1606\ndefects,1,antonyandcleopatra,1606\nreference,1,antonyandcleopatra,1606\ndarkling,1,antonyandcleopatra,1606\ncouch,1,antonyandcleopatra,1606\ndevised,1,antonyandcleopatra,1606\nmuleters,1,antonyandcleopatra,1606\nConfined,1,antonyandcleopatra,1606\nscuffles,1,antonyandcleopatra,1606\nbent,1,antonyandcleopatra,1606\ntreasons,1,antonyandcleopatra,1606\ninfectious,1,antonyandcleopatra,1606\nStrange,1,antonyandcleopatra,1606\nSalt,1,antonyandcleopatra,1606\nLife,1,antonyandcleopatra,1606\nbeyond,1,antonyandcleopatra,1606\nfrailties,1,antonyandcleopatra,1606\nlamps,1,antonyandcleopatra,1606\nshadow,1,antonyandcleopatra,1606\nWishes,1,antonyandcleopatra,1606\nlackeying,1,antonyandcleopatra,1606\nlank'd,1,antonyandcleopatra,1606\n'greed,1,antonyandcleopatra,1606\nreaping,1,antonyandcleopatra,1606\nEnthroned,1,antonyandcleopatra,1606\nplough,1,antonyandcleopatra,1606\ncourtesies,1,antonyandcleopatra,1606\nArabia,1,antonyandcleopatra,1606\nmeanest,1,antonyandcleopatra,1606\nDrawing,1,antonyandcleopatra,1606\nbended,1,antonyandcleopatra,1606\nbuds,1,antonyandcleopatra,1606\nmused,1,antonyandcleopatra,1606\nSossius,1,antonyandcleopatra,1606\njewel,1,antonyandcleopatra,1606\ndespise,1,antonyandcleopatra,1606\nprorogue,1,antonyandcleopatra,1606\nplanks,1,antonyandcleopatra,1606\nHolds,1,antonyandcleopatra,1606\ntheme,1,antonyandcleopatra,1606\nSink,1,antonyandcleopatra,1606\nfriendly,1,antonyandcleopatra,1606\ndissembling,1,antonyandcleopatra,1606\nquails,1,antonyandcleopatra,1606\ncantle,1,antonyandcleopatra,1606\ndiscomfort,1,antonyandcleopatra,1606\nvows,1,antonyandcleopatra,1606\nAjax,1,antonyandcleopatra,1606\nClaps,1,antonyandcleopatra,1606\ntailors,1,antonyandcleopatra,1606\ndisguise,1,antonyandcleopatra,1606\ndependency,1,antonyandcleopatra,1606\nhalter'd,1,antonyandcleopatra,1606\nAbout,1,antonyandcleopatra,1606\nDemurely,1,antonyandcleopatra,1606\nWhate'er,1,antonyandcleopatra,1606\ndivine,1,antonyandcleopatra,1606\nshifts,1,antonyandcleopatra,1606\nambassadors,1,antonyandcleopatra,1606\npaint,1,antonyandcleopatra,1606\nsink,1,antonyandcleopatra,1606\njump,1,antonyandcleopatra,1606\n'Twas,1,antonyandcleopatra,1606\nsnaffle,1,antonyandcleopatra,1606\nsister's,1,antonyandcleopatra,1606\nWhither,1,antonyandcleopatra,1606\nstretch,1,antonyandcleopatra,1606\nmoody,1,antonyandcleopatra,1606\nhourly,1,antonyandcleopatra,1606\nMede,1,antonyandcleopatra,1606\nassign'd,1,antonyandcleopatra,1606\nbegs,1,antonyandcleopatra,1606\nashamed,1,antonyandcleopatra,1606\nturns,1,antonyandcleopatra,1606\nTiber,1,antonyandcleopatra,1606\ncrownet,1,antonyandcleopatra,1606\nimmortal,1,antonyandcleopatra,1606\nhurts,1,antonyandcleopatra,1606\nChief,1,antonyandcleopatra,1606\nimportune,1,antonyandcleopatra,1606\ncrowned,1,antonyandcleopatra,1606\nThessaly,1,antonyandcleopatra,1606\ncrowns,1,antonyandcleopatra,1606\nbeck'd,1,antonyandcleopatra,1606\njealousies,1,antonyandcleopatra,1606\nNaught,1,antonyandcleopatra,1606\nEvils,1,antonyandcleopatra,1606\nName,1,antonyandcleopatra,1606\nabysm,1,antonyandcleopatra,1606\npearls,1,antonyandcleopatra,1606\nsleepers,1,antonyandcleopatra,1606\nsolemn,1,antonyandcleopatra,1606\ndogs,1,antonyandcleopatra,1606\nstore,1,antonyandcleopatra,1606\nunexecuted,1,antonyandcleopatra,1606\nentertain,1,antonyandcleopatra,1606\nAlcides,1,antonyandcleopatra,1606\n'Fool,1,antonyandcleopatra,1606\ntaints,1,antonyandcleopatra,1606\nraught,1,antonyandcleopatra,1606\nInk,1,antonyandcleopatra,1606\nThrives,1,antonyandcleopatra,1606\ndeep,1,antonyandcleopatra,1606\ninstant,1,antonyandcleopatra,1606\nwretch,1,antonyandcleopatra,1606\nplate,1,antonyandcleopatra,1606\nharness,1,antonyandcleopatra,1606\nmood,1,antonyandcleopatra,1606\neloquence,1,antonyandcleopatra,1606\nEdge,1,antonyandcleopatra,1606\nWherefore's,1,antonyandcleopatra,1606\nsupplying,1,antonyandcleopatra,1606\nbetray,1,antonyandcleopatra,1606\nmagic,1,antonyandcleopatra,1606\naim,1,antonyandcleopatra,1606\ncitadel,1,antonyandcleopatra,1606\nexpedience,1,antonyandcleopatra,1606\nbeck,1,antonyandcleopatra,1606\nkeeping,1,antonyandcleopatra,1606\npuddle,1,antonyandcleopatra,1606\nembraced,1,antonyandcleopatra,1606\nyea,1,antonyandcleopatra,1606\ngift,1,antonyandcleopatra,1606\nMock,1,antonyandcleopatra,1606\nraise,1,antonyandcleopatra,1606\nprincipalities,1,antonyandcleopatra,1606\nSONG,1,antonyandcleopatra,1606\nfaster,1,antonyandcleopatra,1606\nstrut,1,antonyandcleopatra,1606\nconsider,1,antonyandcleopatra,1606\novertopp'd,1,antonyandcleopatra,1606\njewels,1,antonyandcleopatra,1606\nDestroy'd,1,antonyandcleopatra,1606\nooze,1,antonyandcleopatra,1606\nviolence,1,antonyandcleopatra,1606\npromontory,1,antonyandcleopatra,1606\nblushest,1,antonyandcleopatra,1606\nstool,1,antonyandcleopatra,1606\nMaking,1,antonyandcleopatra,1606\ntawny,1,antonyandcleopatra,1606\nstoop,1,antonyandcleopatra,1606\nBless,1,antonyandcleopatra,1606\ngain,1,antonyandcleopatra,1606\nyes,1,antonyandcleopatra,1606\nlegs,1,antonyandcleopatra,1606\nhandsome,1,antonyandcleopatra,1606\ngentlewomen,1,antonyandcleopatra,1606\nleader's,1,antonyandcleopatra,1606\nwhereon,1,antonyandcleopatra,1606\nunworthy,1,antonyandcleopatra,1606\nstablishment,1,antonyandcleopatra,1606\nautumn,1,antonyandcleopatra,1606\nliberal,1,antonyandcleopatra,1606\ngait,1,antonyandcleopatra,1606\ndepends,1,antonyandcleopatra,1606\ndignity,1,antonyandcleopatra,1606\ndeaf,1,antonyandcleopatra,1606\nNoblest,1,antonyandcleopatra,1606\nFeed,1,antonyandcleopatra,1606\nworthily,1,antonyandcleopatra,1606\npluck'd,1,antonyandcleopatra,1606\nPays,1,antonyandcleopatra,1606\nitch,1,antonyandcleopatra,1606\ntower'd,1,antonyandcleopatra,1606\nWrinkles,1,antonyandcleopatra,1606\nseeming,1,antonyandcleopatra,1606\naccuses,1,antonyandcleopatra,1606\nstain'd,1,antonyandcleopatra,1606\nlighted,1,antonyandcleopatra,1606\nAlexander,1,antonyandcleopatra,1606\ndwarfish,1,antonyandcleopatra,1606\nboast,1,antonyandcleopatra,1606\ndestruction,1,antonyandcleopatra,1606\nheeded,1,antonyandcleopatra,1606\nmelts,1,antonyandcleopatra,1606\ntorches,1,antonyandcleopatra,1606\nlaughing,1,antonyandcleopatra,1606\nedges,1,antonyandcleopatra,1606\ntreaty,1,antonyandcleopatra,1606\nRest,1,antonyandcleopatra,1606\nDivide,1,antonyandcleopatra,1606\nList,1,antonyandcleopatra,1606\nmembers,1,antonyandcleopatra,1606\nappeared,1,antonyandcleopatra,1606\nay,1,antonyandcleopatra,1606\npall'd,1,antonyandcleopatra,1606\nYon,1,antonyandcleopatra,1606\nspeed,1,antonyandcleopatra,1606\nvoluptuousness,1,antonyandcleopatra,1606\ncocks,1,antonyandcleopatra,1606\ngame,1,antonyandcleopatra,1606\nPawn,1,antonyandcleopatra,1606\npossess'd,1,antonyandcleopatra,1606\nApplies,1,antonyandcleopatra,1606\nContemning,1,antonyandcleopatra,1606\ncruelty,1,antonyandcleopatra,1606\nstaged,1,antonyandcleopatra,1606\nthyself,1,antonyandcleopatra,1606\nslimy,1,antonyandcleopatra,1606\nNeptune's,1,antonyandcleopatra,1606\nwench,1,antonyandcleopatra,1606\nforgotten,1,antonyandcleopatra,1606\nrouse,1,antonyandcleopatra,1606\ncured,1,antonyandcleopatra,1606\ndried,1,antonyandcleopatra,1606\ntinct,1,antonyandcleopatra,1606\nPansa,1,antonyandcleopatra,1606\nwonderful,1,antonyandcleopatra,1606\nask'd,1,antonyandcleopatra,1606\ncowardly,1,antonyandcleopatra,1606\nboard,1,antonyandcleopatra,1606\ncommend,1,antonyandcleopatra,1606\nattending,1,antonyandcleopatra,1606\nBurn'd,1,antonyandcleopatra,1606\nthreaten,1,antonyandcleopatra,1606\nrain'd,1,antonyandcleopatra,1606\nfears,1,antonyandcleopatra,1606\nscribes,1,antonyandcleopatra,1606\nbodies,1,antonyandcleopatra,1606\ndelay,1,antonyandcleopatra,1606\n'Caesar,1,antonyandcleopatra,1606\ndemi,1,antonyandcleopatra,1606\nboars,1,antonyandcleopatra,1606\npreparedly,1,antonyandcleopatra,1606\nRelieved,1,antonyandcleopatra,1606\nGoes,1,antonyandcleopatra,1606\nwrangle,1,antonyandcleopatra,1606\nsceptres,1,antonyandcleopatra,1606\ndisquiet,1,antonyandcleopatra,1606\nEarly,1,antonyandcleopatra,1606\nthankful,1,antonyandcleopatra,1606\nFortune's,1,antonyandcleopatra,1606\ndelicious,1,antonyandcleopatra,1606\nidle,1,antonyandcleopatra,1606\nGods,1,antonyandcleopatra,1606\nplayfellow,1,antonyandcleopatra,1606\nsometime,1,antonyandcleopatra,1606\nmilks,1,antonyandcleopatra,1606\nscholar,1,antonyandcleopatra,1606\nblackness,1,antonyandcleopatra,1606\nvarletry,1,antonyandcleopatra,1606\nlook'st,1,antonyandcleopatra,1606\nTook,1,antonyandcleopatra,1606\ntippling,1,antonyandcleopatra,1606\nMalchus,1,antonyandcleopatra,1606\ndolorous,1,antonyandcleopatra,1606\ncaused,1,antonyandcleopatra,1606\ntemper,1,antonyandcleopatra,1606\ntrail,1,antonyandcleopatra,1606\nage,1,antonyandcleopatra,1606\nDiseases,1,antonyandcleopatra,1606\nquickens,1,antonyandcleopatra,1606\nspell,1,antonyandcleopatra,1606\nhadst,1,antonyandcleopatra,1606\nCelerity,1,antonyandcleopatra,1606\ngipsy,1,antonyandcleopatra,1606\nink,1,antonyandcleopatra,1606\nmiserable,1,antonyandcleopatra,1606\nimpediment,1,antonyandcleopatra,1606\noffer'd,1,antonyandcleopatra,1606\nlightly,1,antonyandcleopatra,1606\nla,1,antonyandcleopatra,1606\nYea,1,antonyandcleopatra,1606\nWouldst,1,antonyandcleopatra,1606\ninfects,1,antonyandcleopatra,1606\nadd,1,antonyandcleopatra,1606\ngibe,1,antonyandcleopatra,1606\nspeak'st,1,antonyandcleopatra,1606\nachieved,1,antonyandcleopatra,1606\nresolved,1,antonyandcleopatra,1606\nServants,1,antonyandcleopatra,1606\nwherein,1,antonyandcleopatra,1606\nfrustrate,1,antonyandcleopatra,1606\nspent,1,antonyandcleopatra,1606\ncelebrate,1,antonyandcleopatra,1606\nsoils,1,antonyandcleopatra,1606\npotent,1,antonyandcleopatra,1606\ndispose,1,antonyandcleopatra,1606\nbides,1,antonyandcleopatra,1606\nearing,1,antonyandcleopatra,1606\nblue,1,antonyandcleopatra,1606\ncontinent,1,antonyandcleopatra,1606\nGrace,1,antonyandcleopatra,1606\ndefy,1,antonyandcleopatra,1606\nnecessary,1,antonyandcleopatra,1606\nfeats,1,antonyandcleopatra,1606\nbeauteous,1,antonyandcleopatra,1606\nbetime,1,antonyandcleopatra,1606\nbench,1,antonyandcleopatra,1606\npoor'st,1,antonyandcleopatra,1606\nmeanings,1,antonyandcleopatra,1606\nsupremacy,1,antonyandcleopatra,1606\nspot,1,antonyandcleopatra,1606\nMessina,1,antonyandcleopatra,1606\nhaters,1,antonyandcleopatra,1606\nforgot,1,antonyandcleopatra,1606\ntreasure's,1,antonyandcleopatra,1606\nserious,1,antonyandcleopatra,1606\nknee,1,antonyandcleopatra,1606\nKiss,1,antonyandcleopatra,1606\nuprise,1,antonyandcleopatra,1606\nunpress'd,1,antonyandcleopatra,1606\npure,1,antonyandcleopatra,1606\nindulgent,1,antonyandcleopatra,1606\nBecause,1,antonyandcleopatra,1606\ntreaties,1,antonyandcleopatra,1606\nfallible,1,antonyandcleopatra,1606\nCame,1,antonyandcleopatra,1606\nharm,1,antonyandcleopatra,1606\nchoice,1,antonyandcleopatra,1606\ngraver,1,antonyandcleopatra,1606\nWhence,1,antonyandcleopatra,1606\nbasely,1,antonyandcleopatra,1606\nHaply,1,antonyandcleopatra,1606\neats,1,antonyandcleopatra,1606\nplot,1,antonyandcleopatra,1606\noppression,1,antonyandcleopatra,1606\npersonal,1,antonyandcleopatra,1606\nSplits,1,antonyandcleopatra,1606\nfierce,1,antonyandcleopatra,1606\nkills,1,antonyandcleopatra,1606\nscratch,1,antonyandcleopatra,1606\noutward,1,antonyandcleopatra,1606\nGorgon,1,antonyandcleopatra,1606\ninduce,1,antonyandcleopatra,1606\nBrought,1,antonyandcleopatra,1606\nPerform,1,antonyandcleopatra,1606\nbends,1,antonyandcleopatra,1606\nuncaught,1,antonyandcleopatra,1606\nsmite,1,antonyandcleopatra,1606\nfaints,1,antonyandcleopatra,1606\nRam,1,antonyandcleopatra,1606\nincline,1,antonyandcleopatra,1606\nfrighted,1,antonyandcleopatra,1606\nisle,1,antonyandcleopatra,1606\nscutcheons,1,antonyandcleopatra,1606\nsinks,1,antonyandcleopatra,1606\ncontestation,1,antonyandcleopatra,1606\nlabouring,1,antonyandcleopatra,1606\nbeggar's,1,antonyandcleopatra,1606\nkingly,1,antonyandcleopatra,1606\nLack,1,antonyandcleopatra,1606\nsignify,1,antonyandcleopatra,1606\nRestores,1,antonyandcleopatra,1606\nEnobarb,1,antonyandcleopatra,1606\nrhymers,1,antonyandcleopatra,1606\nemploy'd,1,antonyandcleopatra,1606\nfinish,1,antonyandcleopatra,1606\npalate,1,antonyandcleopatra,1606\nRead,1,antonyandcleopatra,1606\nweeds,1,antonyandcleopatra,1606\nspur,1,antonyandcleopatra,1606\nacknowledge,1,antonyandcleopatra,1606\nserpent's,1,antonyandcleopatra,1606\ntrade,1,antonyandcleopatra,1606\nstrings,1,antonyandcleopatra,1606\nFollow'd,1,antonyandcleopatra,1606\nLady,1,antonyandcleopatra,1606\nliberty,1,antonyandcleopatra,1606\nprince,1,antonyandcleopatra,1606\nFull,1,antonyandcleopatra,1606\nconsuls,1,antonyandcleopatra,1606\ndens,1,antonyandcleopatra,1606\nhardness,1,antonyandcleopatra,1606\nladder,1,antonyandcleopatra,1606\nMoon,1,antonyandcleopatra,1606\nfeasted,1,antonyandcleopatra,1606\ndescried,1,antonyandcleopatra,1606\nEnjoy,1,antonyandcleopatra,1606\npinion'd,1,antonyandcleopatra,1606\nsuitors,1,antonyandcleopatra,1606\nforty,1,antonyandcleopatra,1606\njoyful,1,antonyandcleopatra,1606\ngaunt,1,antonyandcleopatra,1606\ndrave,1,antonyandcleopatra,1606\nsweetest,1,antonyandcleopatra,1606\nmighty,1,antonyandcleopatra,1606\nprovided,1,antonyandcleopatra,1606\nrudest,1,antonyandcleopatra,1606\nparticulars,1,antonyandcleopatra,1606\nhalt,1,antonyandcleopatra,1606\ndaintily,1,antonyandcleopatra,1606\nperpetual,1,antonyandcleopatra,1606\ncombating,1,antonyandcleopatra,1606\napplies,1,antonyandcleopatra,1606\nPetition,1,antonyandcleopatra,1606\nunlawful,1,antonyandcleopatra,1606\nDistract,1,antonyandcleopatra,1606\nopen,1,antonyandcleopatra,1606\nFury,1,antonyandcleopatra,1606\nconstrain'd,1,antonyandcleopatra,1606\nmidnight,1,antonyandcleopatra,1606\ndeaths,1,antonyandcleopatra,1606\nCaius,1,antonyandcleopatra,1606\nweeps,1,antonyandcleopatra,1606\npurged,1,antonyandcleopatra,1606\nlaurel,1,antonyandcleopatra,1606\nCommend,1,antonyandcleopatra,1606\nplighter,1,antonyandcleopatra,1606\nEquality,1,antonyandcleopatra,1606\nProvide,1,antonyandcleopatra,1606\nauguring,1,antonyandcleopatra,1606\nwastes,1,antonyandcleopatra,1606\nExpected,1,antonyandcleopatra,1606\ndelight,1,antonyandcleopatra,1606\nheaviness,1,antonyandcleopatra,1606\nfiery,1,antonyandcleopatra,1606\nHusband,1,antonyandcleopatra,1606\nacquire,1,antonyandcleopatra,1606\ncarouse,1,antonyandcleopatra,1606\nSufficing,1,antonyandcleopatra,1606\nLuxuriously,1,antonyandcleopatra,1606\npyramid,1,antonyandcleopatra,1606\nhaven,1,antonyandcleopatra,1606\nDispatch,1,antonyandcleopatra,1606\nHipparchus,1,antonyandcleopatra,1606\nshakes,1,antonyandcleopatra,1606\ngrimly,1,antonyandcleopatra,1606\ntempests,1,antonyandcleopatra,1606\npace,1,antonyandcleopatra,1606\nPhotinus,1,antonyandcleopatra,1606\nO'ertake,1,antonyandcleopatra,1606\npack,1,antonyandcleopatra,1606\nalive,1,antonyandcleopatra,1606\nshot,1,antonyandcleopatra,1606\ntransform'd,1,antonyandcleopatra,1606\nmandragora,1,antonyandcleopatra,1606\nCast,1,antonyandcleopatra,1606\nCrassus',1,antonyandcleopatra,1606\ncombat,1,antonyandcleopatra,1606\nproper,1,antonyandcleopatra,1606\npyramides,1,antonyandcleopatra,1606\nAdallas,1,antonyandcleopatra,1606\nchastity,1,antonyandcleopatra,1606\nfrets,1,antonyandcleopatra,1606\nconsideration,1,antonyandcleopatra,1606\ndragonish,1,antonyandcleopatra,1606\nBe'st,1,antonyandcleopatra,1606\ngaudy,1,antonyandcleopatra,1606\noutstrike,1,antonyandcleopatra,1606\ninclips,1,antonyandcleopatra,1606\nHop,1,antonyandcleopatra,1606\nfainted,1,antonyandcleopatra,1606\nEpicurean,1,antonyandcleopatra,1606\ncreatures,1,antonyandcleopatra,1606\ntearing,1,antonyandcleopatra,1606\nobey'd,1,antonyandcleopatra,1606\nrenowned,1,antonyandcleopatra,1606\nbeetle,1,antonyandcleopatra,1606\nepicure,1,antonyandcleopatra,1606\ngirl,1,antonyandcleopatra,1606\nrear'd,1,antonyandcleopatra,1606\nsworest,1,antonyandcleopatra,1606\nAddition,1,antonyandcleopatra,1606\nforms,1,antonyandcleopatra,1606\nmayst,1,antonyandcleopatra,1606\nebbs,1,antonyandcleopatra,1606\nurgent,1,antonyandcleopatra,1606\nlock,1,antonyandcleopatra,1606\nnearly,1,antonyandcleopatra,1606\nconclusions,1,antonyandcleopatra,1606\nOrodes,1,antonyandcleopatra,1606\nBreed,1,antonyandcleopatra,1606\npoorer,1,antonyandcleopatra,1606\nsecret,1,antonyandcleopatra,1606\npresident,1,antonyandcleopatra,1606\ncompetitors,1,antonyandcleopatra,1606\nbeggars,1,antonyandcleopatra,1606\nolive,1,antonyandcleopatra,1606\nroll,1,antonyandcleopatra,1606\ndisdainful,1,antonyandcleopatra,1606\ntrick,1,antonyandcleopatra,1606\nborders,1,antonyandcleopatra,1606\ninquire,1,antonyandcleopatra,1606\ndistinction,1,antonyandcleopatra,1606\ndeadly,1,antonyandcleopatra,1606\nunloved,1,antonyandcleopatra,1606\nCourteous,1,antonyandcleopatra,1606\ntheirs,1,antonyandcleopatra,1606\npurchased,1,antonyandcleopatra,1606\ncolour'd,1,antonyandcleopatra,1606\nhits,1,antonyandcleopatra,1606\nbeggary,1,antonyandcleopatra,1606\ntouch,1,antonyandcleopatra,1606\ndisponge,1,antonyandcleopatra,1606\npartaker,1,antonyandcleopatra,1606\ncheque,1,antonyandcleopatra,1606\nchides,1,antonyandcleopatra,1606\nSometimes,1,antonyandcleopatra,1606\nbehavior,1,antonyandcleopatra,1606\ntimelier,1,antonyandcleopatra,1606\nkeels,1,antonyandcleopatra,1606\nVouchsafed,1,antonyandcleopatra,1606\npanted,1,antonyandcleopatra,1606\ntoken,1,antonyandcleopatra,1606\npleach'd,1,antonyandcleopatra,1606\nsicken,1,antonyandcleopatra,1606\nconversation,1,antonyandcleopatra,1606\nContent,1,antonyandcleopatra,1606\ntrial,1,antonyandcleopatra,1606\nhazard,1,antonyandcleopatra,1606\ngain'd,1,antonyandcleopatra,1606\nStood,1,antonyandcleopatra,1606\nwillingly,1,antonyandcleopatra,1606\nstrongest,1,antonyandcleopatra,1606\nguess,1,antonyandcleopatra,1606\nmagical,1,antonyandcleopatra,1606\nhere's,1,antonyandcleopatra,1606\nscolds,1,antonyandcleopatra,1606\nroot,1,antonyandcleopatra,1606\ntreasurer,1,antonyandcleopatra,1606\nTawny,1,antonyandcleopatra,1606\nprecedent,1,antonyandcleopatra,1606\nleaf,1,antonyandcleopatra,1606\njaws,1,antonyandcleopatra,1606\nsuperfluous,1,antonyandcleopatra,1606\nCyprus,1,antonyandcleopatra,1606\nLock'd,1,antonyandcleopatra,1606\ntriumph'd,1,antonyandcleopatra,1606\nwatch,1,antonyandcleopatra,1606\nfat,1,antonyandcleopatra,1606\nwheels,1,antonyandcleopatra,1606\nyesterday,1,antonyandcleopatra,1606\nregiment,1,antonyandcleopatra,1606\nfan,1,antonyandcleopatra,1606\nstrumpet's,1,antonyandcleopatra,1606\nrural,1,antonyandcleopatra,1606\nborrow,1,antonyandcleopatra,1606\nroof,1,antonyandcleopatra,1606\nLament,1,antonyandcleopatra,1606\nComes,1,antonyandcleopatra,1606\ndumb'd,1,antonyandcleopatra,1606\nPlumpy,1,antonyandcleopatra,1606\nCommand,1,antonyandcleopatra,1606\nforspoke,1,antonyandcleopatra,1606\ndistractions,1,antonyandcleopatra,1606\nScant,1,antonyandcleopatra,1606\nrender'd,1,antonyandcleopatra,1606\nCappadocia,1,antonyandcleopatra,1606\nspritely,1,antonyandcleopatra,1606\nnag,1,antonyandcleopatra,1606\nperceived,1,antonyandcleopatra,1606\ncondemn'd,1,antonyandcleopatra,1606\nunrestored,1,antonyandcleopatra,1606\neffected,1,antonyandcleopatra,1606\nPhoebus,1,antonyandcleopatra,1606\nstomaching,1,antonyandcleopatra,1606\nbreather,1,antonyandcleopatra,1606\nkeeps,1,antonyandcleopatra,1606\nShout,1,antonyandcleopatra,1606\nbecomings,1,antonyandcleopatra,1606\ngrizzled,1,antonyandcleopatra,1606\ndestiny,1,antonyandcleopatra,1606\nenow,1,antonyandcleopatra,1606\nmain,1,antonyandcleopatra,1606\nsprightly,1,antonyandcleopatra,1606\nexpected,1,antonyandcleopatra,1606\nsurfeiter,1,antonyandcleopatra,1606\nshave't,1,antonyandcleopatra,1606\nshameful,1,antonyandcleopatra,1606\nwoo't,1,antonyandcleopatra,1606\nconsider'd,1,antonyandcleopatra,1606\nDemand,1,antonyandcleopatra,1606\ncarried,1,antonyandcleopatra,1606\nglow,1,antonyandcleopatra,1606\nreporter,1,antonyandcleopatra,1606\nrank,1,antonyandcleopatra,1606\nerrors,1,antonyandcleopatra,1606\nSpoke,1,antonyandcleopatra,1606\nManage,1,antonyandcleopatra,1606\nNeglected,1,antonyandcleopatra,1606\nempty,1,antonyandcleopatra,1606\nTen,1,antonyandcleopatra,1606\ncarries,1,antonyandcleopatra,1606\nghosted,1,antonyandcleopatra,1606\ngriefs,1,antonyandcleopatra,1606\nAdmired,1,antonyandcleopatra,1606\nforehead,1,antonyandcleopatra,1606\nprisons,1,antonyandcleopatra,1606\nbreathed,1,antonyandcleopatra,1606\nfinest,1,antonyandcleopatra,1606\nbroad,1,antonyandcleopatra,1606\nclapp'd,1,antonyandcleopatra,1606\nfaction,1,antonyandcleopatra,1606\nbilliards,1,antonyandcleopatra,1606\nbuilt,1,antonyandcleopatra,1606\nwhelp,1,antonyandcleopatra,1606\nsickly,1,antonyandcleopatra,1606\nPleased,1,antonyandcleopatra,1606\nunknown,1,antonyandcleopatra,1606\nBetter,1,antonyandcleopatra,1606\ndarts,1,antonyandcleopatra,1606\nrepose,1,antonyandcleopatra,1606\nthinks,1,antonyandcleopatra,1606\nclub,1,antonyandcleopatra,1606\nprimal,1,antonyandcleopatra,1606\nrooted,1,antonyandcleopatra,1606\npatch,1,antonyandcleopatra,1606\nRarely,1,antonyandcleopatra,1606\ndeposed,1,antonyandcleopatra,1606\napply,1,antonyandcleopatra,1606\nenvy,1,antonyandcleopatra,1606\nPtolemies,1,antonyandcleopatra,1606\nbeast,1,antonyandcleopatra,1606\nCrack,1,antonyandcleopatra,1606\ntrencher,1,antonyandcleopatra,1606\nribaudred,1,antonyandcleopatra,1606\ninfamous,1,antonyandcleopatra,1606\nproceed,1,antonyandcleopatra,1606\nwonder,1,antonyandcleopatra,1606\ndisgraces,1,antonyandcleopatra,1606\nworkman,1,antonyandcleopatra,1606\nlevell'd,1,antonyandcleopatra,1606\nexcusable,1,antonyandcleopatra,1606\nestridge,1,antonyandcleopatra,1606\noccupation,1,antonyandcleopatra,1606\nscroll,1,antonyandcleopatra,1606\npresages,1,antonyandcleopatra,1606\naccusations,1,antonyandcleopatra,1606\nbeats,1,antonyandcleopatra,1606\nHang,1,antonyandcleopatra,1606\ndulness,1,antonyandcleopatra,1606\nBelieve't,1,antonyandcleopatra,1606\nscald,1,antonyandcleopatra,1606\nnoon,1,antonyandcleopatra,1606\ncircle,1,antonyandcleopatra,1606\nguides,1,antonyandcleopatra,1606\nPointing,1,antonyandcleopatra,1606\nrate,1,antonyandcleopatra,1606\npales,1,antonyandcleopatra,1606\ndeserving,1,antonyandcleopatra,1606\nmislike,1,antonyandcleopatra,1606\ncloy,1,antonyandcleopatra,1606\nhomager,1,antonyandcleopatra,1606\nsoberly,1,antonyandcleopatra,1606\nscottish,1,antonyandcleopatra,1606\ntended,1,antonyandcleopatra,1606\ndisgraced,1,antonyandcleopatra,1606\nbrazen,1,antonyandcleopatra,1606\nbeard,1,antonyandcleopatra,1606\nbravely,1,antonyandcleopatra,1606\nfaint,1,antonyandcleopatra,1606\npleaseth,1,antonyandcleopatra,1606\n'Take,1,antonyandcleopatra,1606\nAffairs,1,antonyandcleopatra,1606\nhasten,1,antonyandcleopatra,1606\narmourer,1,antonyandcleopatra,1606\nsolder,1,antonyandcleopatra,1606\nfeature,1,antonyandcleopatra,1606\nentirely,1,antonyandcleopatra,1606\npleasest,1,antonyandcleopatra,1606\nrioting,1,antonyandcleopatra,1606\ncastaway,1,antonyandcleopatra,1606\nbanners,1,antonyandcleopatra,1606\nslew'st,1,antonyandcleopatra,1606\nkneels,1,antonyandcleopatra,1606\ndescended,1,antonyandcleopatra,1606\npregnant,1,antonyandcleopatra,1606\n'Ah,1,antonyandcleopatra,1606\nchaps,1,antonyandcleopatra,1606\ndangers,1,antonyandcleopatra,1606\nbellows,1,antonyandcleopatra,1606\n'Agrippa,1,antonyandcleopatra,1606\nSoft,1,antonyandcleopatra,1606\ntissue,1,antonyandcleopatra,1606\nexcuses,1,antonyandcleopatra,1606\nLethe,1,antonyandcleopatra,1606\nDown,1,antonyandcleopatra,1606\nmaul,1,antonyandcleopatra,1606\nroughest,1,antonyandcleopatra,1606\nIntends,1,antonyandcleopatra,1606\ncringe,1,antonyandcleopatra,1606\nUnreconciliable,1,antonyandcleopatra,1606\nSubdue,1,antonyandcleopatra,1606\nBriefly,1,antonyandcleopatra,1606\nchare,1,antonyandcleopatra,1606\nvisage,1,antonyandcleopatra,1606\nlearning,1,antonyandcleopatra,1606\nnarrow,1,antonyandcleopatra,1606\nsticks,1,antonyandcleopatra,1606\nstays,1,antonyandcleopatra,1606\nequally,1,antonyandcleopatra,1606\nmate,1,antonyandcleopatra,1606\ngarden,1,antonyandcleopatra,1606\narise,1,antonyandcleopatra,1606\nAssuredly,1,antonyandcleopatra,1606\nmisdoubt,1,antonyandcleopatra,1606\nfairy,1,antonyandcleopatra,1606\nescaped,1,antonyandcleopatra,1606\nTHE,1,antonyandcleopatra,1606\nperform,1,antonyandcleopatra,1606\npaces,1,antonyandcleopatra,1606\nparting,1,antonyandcleopatra,1606\nloses,1,antonyandcleopatra,1606\nshards,1,antonyandcleopatra,1606\nwho's,1,antonyandcleopatra,1606\nhorned,1,antonyandcleopatra,1606\nSet,1,antonyandcleopatra,1606\nmisery,1,antonyandcleopatra,1606\nunhappy,1,antonyandcleopatra,1606\nmouth,1,antonyandcleopatra,1606\nhousewife,1,antonyandcleopatra,1606\nbe't,1,antonyandcleopatra,1606\nplaces,1,antonyandcleopatra,1606\ndoomsday,1,antonyandcleopatra,1606\nvales,1,antonyandcleopatra,1606\nMesopotamia,1,antonyandcleopatra,1606\nislands,1,antonyandcleopatra,1606\nanger'd,1,antonyandcleopatra,1606\ngallantly,1,antonyandcleopatra,1606\nquarter,1,antonyandcleopatra,1606\nLycaonia,1,antonyandcleopatra,1606\nAge,1,antonyandcleopatra,1606\nopulent,1,antonyandcleopatra,1606\nRiotous,1,antonyandcleopatra,1606\nWill't,1,antonyandcleopatra,1606\nvanquish'd,1,antonyandcleopatra,1606\nprecious,1,antonyandcleopatra,1606\ntrespasses,1,antonyandcleopatra,1606\nresisted,1,antonyandcleopatra,1606\nturpitude,1,antonyandcleopatra,1606\ngladness,1,antonyandcleopatra,1606\nappointment,1,antonyandcleopatra,1606\nbreese,1,antonyandcleopatra,1606\nattire,1,antonyandcleopatra,1606\nspurn,1,antonyandcleopatra,1606\nSole,1,antonyandcleopatra,1606\nstrife,1,antonyandcleopatra,1606\ngraceful,1,antonyandcleopatra,1606\nlodge,1,antonyandcleopatra,1606\ndoors,1,antonyandcleopatra,1606\ninhoop'd,1,antonyandcleopatra,1606\nrevolution,1,antonyandcleopatra,1606\n'Ho,1,antonyandcleopatra,1606\nleaver,1,antonyandcleopatra,1606\nstark,1,antonyandcleopatra,1606\nFree,1,antonyandcleopatra,1606\nsacrifice,1,antonyandcleopatra,1606\nchariots,1,antonyandcleopatra,1606\nrealms,1,antonyandcleopatra,1606\npicturing,1,antonyandcleopatra,1606\nnod,1,antonyandcleopatra,1606\nLong,1,antonyandcleopatra,1606\nShrewdness,1,antonyandcleopatra,1606\nWidow,1,antonyandcleopatra,1606\nnon,1,antonyandcleopatra,1606\nprobable,1,antonyandcleopatra,1606\nPaphlagonia,1,antonyandcleopatra,1606\nstart,1,antonyandcleopatra,1606\nqualities,1,antonyandcleopatra,1606\nprize,1,antonyandcleopatra,1606\nembattle,1,antonyandcleopatra,1606\nconclusion,1,antonyandcleopatra,1606\nfilth,1,antonyandcleopatra,1606\nplead,1,antonyandcleopatra,1606\ndared,1,antonyandcleopatra,1606\nescape,1,antonyandcleopatra,1606\nRemains,1,antonyandcleopatra,1606\nfoolish,1,antonyandcleopatra,1606\nfoul'st,1,antonyandcleopatra,1606\nAEneas,1,antonyandcleopatra,1606\nperforms,1,antonyandcleopatra,1606\nLonging,1,antonyandcleopatra,1606\nvent,1,antonyandcleopatra,1606\ntackle,1,antonyandcleopatra,1606\nprocess,1,antonyandcleopatra,1606\nGrates,1,antonyandcleopatra,1606\nhereditary,1,antonyandcleopatra,1606\nstraightway,1,antonyandcleopatra,1606\nsteers,1,antonyandcleopatra,1606\ncelerity,1,antonyandcleopatra,1606\nAdore,1,antonyandcleopatra,1606\nCould,1,antonyandcleopatra,1606\nannex'd,1,antonyandcleopatra,1606\nmantles,1,antonyandcleopatra,1606\ntribunal,1,antonyandcleopatra,1606\nparties,1,antonyandcleopatra,1606\norgans,1,antonyandcleopatra,1606\npartake,1,antonyandcleopatra,1606\n'Do,1,antonyandcleopatra,1606\nmaritime,1,antonyandcleopatra,1606\ndismission,1,antonyandcleopatra,1606\ncontradiction,1,antonyandcleopatra,1606\ndream,1,antonyandcleopatra,1606\ncoward,1,antonyandcleopatra,1606\nson's,1,antonyandcleopatra,1606\nninth,1,antonyandcleopatra,1606\nranks,1,antonyandcleopatra,1606\nmaliciously,1,antonyandcleopatra,1606\ninjuries,1,antonyandcleopatra,1606\npickle,1,antonyandcleopatra,1606\nbringer,1,antonyandcleopatra,1606\nfurnish'd,1,antonyandcleopatra,1606\nhabiliments,1,antonyandcleopatra,1606\nQuarter'd,1,antonyandcleopatra,1606\nlanding,1,antonyandcleopatra,1606\nquoth,1,antonyandcleopatra,1606\ndesigns,1,antonyandcleopatra,1606\nungentle,1,antonyandcleopatra,1606\nflatter,1,antonyandcleopatra,1606\ncraves,1,antonyandcleopatra,1606\nchafe,1,antonyandcleopatra,1606\nApace,1,antonyandcleopatra,1606\nbeside,1,antonyandcleopatra,1606\nenlarge,1,antonyandcleopatra,1606\nvictorious,1,antonyandcleopatra,1606\nchide,1,antonyandcleopatra,1606\npauses,1,antonyandcleopatra,1606\nthief,1,antonyandcleopatra,1606\nUnregister'd,1,antonyandcleopatra,1606\nmountain,1,antonyandcleopatra,1606\narch,1,antonyandcleopatra,1606\nbenefit,1,antonyandcleopatra,1606\nfish,1,antonyandcleopatra,1606\nseal'd,1,antonyandcleopatra,1606\nPhiladelphos,1,antonyandcleopatra,1606\nthreatening,1,antonyandcleopatra,1606\ncaptive,1,antonyandcleopatra,1606\nRoom,1,antonyandcleopatra,1606\nsnare,1,antonyandcleopatra,1606\nsorrowful,1,antonyandcleopatra,1606\npenetrative,1,antonyandcleopatra,1606\nordinary,1,antonyandcleopatra,1606\nheaviest,1,antonyandcleopatra,1606\nrive,1,antonyandcleopatra,1606\nfuming,1,antonyandcleopatra,1606\ngashes,1,antonyandcleopatra,1606\nchuck,1,antonyandcleopatra,1606\nChoose,1,antonyandcleopatra,1606\ndivision,1,antonyandcleopatra,1606\ninroads,1,antonyandcleopatra,1606\nCneius,1,antonyandcleopatra,1606\nwet,1,antonyandcleopatra,1606\ncookery,1,antonyandcleopatra,1606\nsucks,1,antonyandcleopatra,1606\nunfolded,1,antonyandcleopatra,1606\nwrath,1,antonyandcleopatra,1606\nconstrained,1,antonyandcleopatra,1606\nAvoid,1,antonyandcleopatra,1606\nstain,1,antonyandcleopatra,1606\npossession,1,antonyandcleopatra,1606\nforego,1,antonyandcleopatra,1606\nmusters,1,antonyandcleopatra,1606\nexigent,1,antonyandcleopatra,1606\nFeeds,1,antonyandcleopatra,1606\nbequeath,1,antonyandcleopatra,1606\nproves,1,antonyandcleopatra,1606\nstall,1,antonyandcleopatra,1606\nlosing,1,antonyandcleopatra,1606\nuncuckolded,1,antonyandcleopatra,1606\nShines,1,antonyandcleopatra,1606\npareil,1,antonyandcleopatra,1606\nsharpness,1,antonyandcleopatra,1606\nducking,1,antonyandcleopatra,1606\nslight,1,antonyandcleopatra,1606\npole,1,antonyandcleopatra,1606\naffairs,1,antonyandcleopatra,1606\ncensuring,1,antonyandcleopatra,1606\ndesolation,1,antonyandcleopatra,1606\nopinion,1,antonyandcleopatra,1606\nproved,1,antonyandcleopatra,1606\n'Twixt,1,antonyandcleopatra,1606\nrenown,1,antonyandcleopatra,1606\nsemblable,1,antonyandcleopatra,1606\nclaims,1,antonyandcleopatra,1606\nsting,1,antonyandcleopatra,1606\nChain,1,antonyandcleopatra,1606\nThey'll,1,antonyandcleopatra,1606\nThetis,1,antonyandcleopatra,1606\nprescience,1,antonyandcleopatra,1606\ncough,1,antonyandcleopatra,1606\nbriefest,1,antonyandcleopatra,1606\nmerits,1,antonyandcleopatra,1606\nexample,1,antonyandcleopatra,1606\ngem,1,antonyandcleopatra,1606\n'No,1,antonyandcleopatra,1606\nsalt,1,antonyandcleopatra,1606\nat's,1,antonyandcleopatra,1606\ntabourines,1,antonyandcleopatra,1606\nbranchless,1,antonyandcleopatra,1606\nsake,1,antonyandcleopatra,1606\npurchase,1,antonyandcleopatra,1606\npomp,1,antonyandcleopatra,1606\nfits,1,antonyandcleopatra,1606\nexperience,1,antonyandcleopatra,1606\nfragment,1,antonyandcleopatra,1606\nlessens,1,antonyandcleopatra,1606\nDiscredit,1,antonyandcleopatra,1606\npersons,1,antonyandcleopatra,1606\nmessage,1,antonyandcleopatra,1606\nscatters,1,antonyandcleopatra,1606\ndiadem,1,antonyandcleopatra,1606\nWe'ld,1,antonyandcleopatra,1606\nprivy,1,antonyandcleopatra,1606\nhateful,1,antonyandcleopatra,1606\nprovoke,1,antonyandcleopatra,1606\nAntonius',1,antonyandcleopatra,1606\nstomach,1,antonyandcleopatra,1606\n'Twill,1,antonyandcleopatra,1606\nbands,1,antonyandcleopatra,1606\nDesist,1,antonyandcleopatra,1606\nrelieved,1,antonyandcleopatra,1606\ncourser's,1,antonyandcleopatra,1606\nhears,1,antonyandcleopatra,1606\nUnarm,1,antonyandcleopatra,1606\nsoothsay,1,antonyandcleopatra,1606\nthrived,1,antonyandcleopatra,1606\nhappiness,1,antonyandcleopatra,1606\nloving,1,antonyandcleopatra,1606\nprovinces,1,antonyandcleopatra,1606\nsmock,1,antonyandcleopatra,1606\nhammers,1,antonyandcleopatra,1606\ngay,1,antonyandcleopatra,1606\nDream,1,antonyandcleopatra,1606\nmeasures,1,antonyandcleopatra,1606\nallay,1,antonyandcleopatra,1606\nGuess,1,antonyandcleopatra,1606\nunseen,1,antonyandcleopatra,1606\nhumanity,1,antonyandcleopatra,1606\nbeastly,1,antonyandcleopatra,1606\nmoment,1,antonyandcleopatra,1606\nallegiance,1,antonyandcleopatra,1606\nmeaner,1,antonyandcleopatra,1606\ncity's,1,antonyandcleopatra,1606\nmariners,1,antonyandcleopatra,1606\ndecays,1,antonyandcleopatra,1606\nlightness,1,antonyandcleopatra,1606\nconspire,1,antonyandcleopatra,1606\nwalks,1,antonyandcleopatra,1606\nhanded,1,antonyandcleopatra,1606\nstew'd,1,antonyandcleopatra,1606\n'Say,1,antonyandcleopatra,1606\nscantly,1,antonyandcleopatra,1606\nSaw,1,antonyandcleopatra,1606\nRogue,1,antonyandcleopatra,1606\ntributaries,1,antonyandcleopatra,1606\nflight,1,antonyandcleopatra,1606\nwalls,1,antonyandcleopatra,1606\nMithridates,1,antonyandcleopatra,1606\nchoked,1,antonyandcleopatra,1606\nAlarums,1,antonyandcleopatra,1606\nstanding,1,antonyandcleopatra,1606\nlictors,1,antonyandcleopatra,1606\nyou're,1,antonyandcleopatra,1606\ncrown's,1,antonyandcleopatra,1606\nbuffet,1,antonyandcleopatra,1606\nPhoenicians,1,antonyandcleopatra,1606\nflint,1,antonyandcleopatra,1606\ncertainly,1,antonyandcleopatra,1606\nfinn'd,1,antonyandcleopatra,1606\nrenown'd,1,antonyandcleopatra,1606\nburthen,1,antonyandcleopatra,1606\nLibya,1,antonyandcleopatra,1606\ndust,1,antonyandcleopatra,1606\nMercury,1,antonyandcleopatra,1606\nstiff,1,antonyandcleopatra,1606\noars,1,antonyandcleopatra,1606\nWeep,1,antonyandcleopatra,1606\nspacious,1,antonyandcleopatra,1606\nstaff,1,antonyandcleopatra,1606\ntuned,1,antonyandcleopatra,1606\nable,1,antonyandcleopatra,1606\nWorthy,1,antonyandcleopatra,1606\nprevail,1,antonyandcleopatra,1606\ndrives,1,antonyandcleopatra,1606\ncommanded,1,antonyandcleopatra,1606\nReprove,1,antonyandcleopatra,1606\nintent,1,antonyandcleopatra,1606\nambition,1,antonyandcleopatra,1606\nbleed,1,antonyandcleopatra,1606\nlibertine,1,antonyandcleopatra,1606\ngarland,1,antonyandcleopatra,1606\nenraged,1,antonyandcleopatra,1606\nalmanacs,1,antonyandcleopatra,1606\ndetermines,1,antonyandcleopatra,1606\nthey'll,1,antonyandcleopatra,1606\nCorrupted,1,antonyandcleopatra,1606\njuice,1,antonyandcleopatra,1606\ngreetings,1,antonyandcleopatra,1606\nmules,1,antonyandcleopatra,1606\nthereabouts,1,antonyandcleopatra,1606\nbedfellow,1,antonyandcleopatra,1606\nrids,1,antonyandcleopatra,1606\nKnowing,1,antonyandcleopatra,1606\nLucius,1,antonyandcleopatra,1606\nvessels,1,antonyandcleopatra,1606\ndeclare,1,antonyandcleopatra,1606\nProportion'd,1,antonyandcleopatra,1606\ndisarms,1,antonyandcleopatra,1606\nbearded,1,antonyandcleopatra,1606\nEndure,1,antonyandcleopatra,1606\nwarmth,1,antonyandcleopatra,1606\nBeg,1,antonyandcleopatra,1606\nDetest,1,antonyandcleopatra,1606\nwomen's,1,antonyandcleopatra,1606\nearn'd,1,antonyandcleopatra,1606\nwheel,1,antonyandcleopatra,1606\nleprosy,1,antonyandcleopatra,1606\nbreakfast,1,antonyandcleopatra,1606\nstayed,1,antonyandcleopatra,1606\nthreats,1,antonyandcleopatra,1606\npossess,1,antonyandcleopatra,1606\nPharsalia,1,antonyandcleopatra,1606\ncaught,1,antonyandcleopatra,1606\nnotice,1,antonyandcleopatra,1606\nswan's,1,antonyandcleopatra,1606\ninto't,1,antonyandcleopatra,1606\nterrene,1,antonyandcleopatra,1606\nflags,1,antonyandcleopatra,1606\nsweets,1,antonyandcleopatra,1606\ncurstness,1,antonyandcleopatra,1606\nrift,1,antonyandcleopatra,1606\nsalutes,1,antonyandcleopatra,1606\ngrossly,1,antonyandcleopatra,1606\nGives,1,antonyandcleopatra,1606\nmightily,1,antonyandcleopatra,1606\nsurprised,1,antonyandcleopatra,1606\nangle,1,antonyandcleopatra,1606\nvulgar,1,antonyandcleopatra,1606\nfamiliar,1,antonyandcleopatra,1606\nadores,1,antonyandcleopatra,1606\ngladly,1,antonyandcleopatra,1606\nRid,1,antonyandcleopatra,1606\nprompt,1,antonyandcleopatra,1606\nSEXTUS,1,antonyandcleopatra,1606\nbreadth,1,antonyandcleopatra,1606\nplebeians,1,antonyandcleopatra,1606\nfaces,1,antonyandcleopatra,1606\nImmoment,1,antonyandcleopatra,1606\nmettle,1,antonyandcleopatra,1606\nseize,1,antonyandcleopatra,1606\ndarken,1,antonyandcleopatra,1606\no'erthrown,1,antonyandcleopatra,1606\noblivion,1,antonyandcleopatra,1606\nStraight,1,antonyandcleopatra,1606\nransom,1,antonyandcleopatra,1606\npenitent,1,antonyandcleopatra,1606\nestates,1,antonyandcleopatra,1606\nbrooch'd,1,antonyandcleopatra,1606\nedict,1,antonyandcleopatra,1606\nconference,1,antonyandcleopatra,1606\nearthly,1,antonyandcleopatra,1606\nHail,1,antonyandcleopatra,1606\nrotten,1,antonyandcleopatra,1606\nJuno's,1,antonyandcleopatra,1606\ncharged,1,antonyandcleopatra,1606\nSwell,1,antonyandcleopatra,1606\nangel,1,antonyandcleopatra,1606\nanger,1,antonyandcleopatra,1606\nExtended,1,antonyandcleopatra,1606\nhack'd,1,antonyandcleopatra,1606\nopposite,1,antonyandcleopatra,1606\ninclination,1,antonyandcleopatra,1606\nrail,1,antonyandcleopatra,1606\nhaply,1,antonyandcleopatra,1606\ncups,1,antonyandcleopatra,1606\npinion,1,antonyandcleopatra,1606\nlongings,1,antonyandcleopatra,1606\nforbear't,1,antonyandcleopatra,1606\nwaters,1,antonyandcleopatra,1606\nfarther,1,antonyandcleopatra,1606\nmends,1,antonyandcleopatra,1606\nunity,1,antonyandcleopatra,1606\nenfranched,1,antonyandcleopatra,1606\ngrain,1,antonyandcleopatra,1606\ndrops,1,antonyandcleopatra,1606\ndetermined,1,antonyandcleopatra,1606\nNobler,1,antonyandcleopatra,1606\nharvest,1,antonyandcleopatra,1606\nserves,1,antonyandcleopatra,1606\nspaniel'd,1,antonyandcleopatra,1606\nunheard,1,antonyandcleopatra,1606\nwaste,1,antonyandcleopatra,1606\nmarble,1,antonyandcleopatra,1606\nbeguiled,1,antonyandcleopatra,1606\nsober,1,antonyandcleopatra,1606\nfalling,1,antonyandcleopatra,1606\nstirs,1,antonyandcleopatra,1606\ndiscontents,1,antonyandcleopatra,1606\nwrong'd,1,antonyandcleopatra,1606\nconsolation,1,antonyandcleopatra,1606\nEver,1,antonyandcleopatra,1606\ncomparisons,1,antonyandcleopatra,1606\nfill'd,1,antonyandcleopatra,1606\nWhispers,1,antonyandcleopatra,1606\nvie,1,antonyandcleopatra,1606\nmince,1,antonyandcleopatra,1606\nmissive,1,antonyandcleopatra,1606\nglad,1,antonyandcleopatra,1606\nBear'st,1,antonyandcleopatra,1606\ncontempt,1,antonyandcleopatra,1606\nneighs,1,antonyandcleopatra,1606\nheirs,1,antonyandcleopatra,1606\nprescript,1,antonyandcleopatra,1606\ndoubled,1,antonyandcleopatra,1606\nmeered,1,antonyandcleopatra,1606\nviolate,1,antonyandcleopatra,1606\nfretted,1,antonyandcleopatra,1606\ndispatch'd,1,antonyandcleopatra,1606\nebb'd,1,antonyandcleopatra,1606\nbeloving,1,antonyandcleopatra,1606\nwharfs,1,antonyandcleopatra,1606\nground,1,antonyandcleopatra,1606\nMany,1,antonyandcleopatra,1606\nwanted,1,antonyandcleopatra,1606\nminds,1,antonyandcleopatra,1606\nTime,1,antonyandcleopatra,1606\ncloth,1,antonyandcleopatra,1606\nThither,1,antonyandcleopatra,1606\naugmented,1,antonyandcleopatra,1606\nBrother,1,antonyandcleopatra,1606\nSwoons,1,antonyandcleopatra,1606\nutterly,1,antonyandcleopatra,1606\nExceeds,1,antonyandcleopatra,1606\norb,1,antonyandcleopatra,1606\nPraying,1,antonyandcleopatra,1606\nacknowledged,1,antonyandcleopatra,1606\nfoe,1,antonyandcleopatra,1606\ncreature's,1,antonyandcleopatra,1606\nwander,1,antonyandcleopatra,1606\nwert,1,antonyandcleopatra,1606\nShake,1,antonyandcleopatra,1606\ngraveless,1,antonyandcleopatra,1606\nanswers,1,antonyandcleopatra,1606\nswells,1,antonyandcleopatra,1606\nbarber'd,1,antonyandcleopatra,1606\nrack,1,antonyandcleopatra,1606\nHerculean,1,antonyandcleopatra,1606\ncards,1,antonyandcleopatra,1606\nRises,1,antonyandcleopatra,1606\nCapitol,1,antonyandcleopatra,1606\nviciousness,1,antonyandcleopatra,1606\nserve's,1,antonyandcleopatra,1606\nfighting,1,antonyandcleopatra,1606\nclay,1,antonyandcleopatra,1606\ndancing,1,antonyandcleopatra,1606\nenfranchise,1,antonyandcleopatra,1606\nfig,1,antonyandcleopatra,1606\nfans,1,antonyandcleopatra,1606\nprecedence,1,antonyandcleopatra,1606\nDeny,1,antonyandcleopatra,1606\nendeavour,1,antonyandcleopatra,1606\ngrape,1,antonyandcleopatra,1606\ngazing,1,antonyandcleopatra,1606\nSweep,1,antonyandcleopatra,1606\nperfect,1,antonyandcleopatra,1606\nDoing,1,antonyandcleopatra,1606\nwheat,1,antonyandcleopatra,1606\nSupposing,1,antonyandcleopatra,1606\nswallow'd,1,antonyandcleopatra,1606\ndiscandy,1,antonyandcleopatra,1606\nseparation,1,antonyandcleopatra,1606\nsavage,1,antonyandcleopatra,1606\nengaged,1,antonyandcleopatra,1606\nbuckled,1,antonyandcleopatra,1606\nlascivious,1,antonyandcleopatra,1606\nexternal,1,antonyandcleopatra,1606\npants,1,antonyandcleopatra,1606\nunshown,1,antonyandcleopatra,1606\nbuckles,1,antonyandcleopatra,1606\nPolemon,1,antonyandcleopatra,1606\nMenecrates,1,antonyandcleopatra,1606\nHirtius,1,antonyandcleopatra,1606\nWorthily,1,antonyandcleopatra,1606\nthunder,1,antonyandcleopatra,1606\nanswer'd,1,antonyandcleopatra,1606\nbiddings,1,antonyandcleopatra,1606\nwide,1,antonyandcleopatra,1606\nworship,1,antonyandcleopatra,1606\nostentation,1,antonyandcleopatra,1606\ndivers,1,antonyandcleopatra,1606\nbite,1,antonyandcleopatra,1606\nmermaids,1,antonyandcleopatra,1606\nkill'st,1,antonyandcleopatra,1606\nherself,1,antonyandcleopatra,1606\npoison'd,1,antonyandcleopatra,1606\nsmooth,1,antonyandcleopatra,1606\nwived,1,antonyandcleopatra,1606\nMeasures,1,antonyandcleopatra,1606\nWork,1,antonyandcleopatra,1606\nperceive,1,antonyandcleopatra,1606\nTriple,1,antonyandcleopatra,1606\nThank,1,antonyandcleopatra,1606\nwarr'd,1,antonyandcleopatra,1606\nemphasis,1,antonyandcleopatra,1606\nsenators,1,antonyandcleopatra,1606\nnoting,1,antonyandcleopatra,1606\n'Good,1,antonyandcleopatra,1606\nburgonet,1,antonyandcleopatra,1606\nsharers,1,antonyandcleopatra,1606\nnook'd,1,antonyandcleopatra,1606\nPOMPEIUS,1,antonyandcleopatra,1606\nmeetly,1,antonyandcleopatra,1606\nforenoon,1,antonyandcleopatra,1606\nincreasing,1,antonyandcleopatra,1606\nFour,1,antonyandcleopatra,1606\nregister,1,antonyandcleopatra,1606\nbird,1,antonyandcleopatra,1606\nLabienus,1,antonyandcleopatra,1606\nstrikes,1,antonyandcleopatra,1606\nundinted,1,antonyandcleopatra,1606\nprophesy,1,antonyandcleopatra,1606\nCut,1,antonyandcleopatra,1606\nextenuate,1,antonyandcleopatra,1606\nmarcheth,1,antonyandcleopatra,1606\nobservance,1,antonyandcleopatra,1606\ngrapes,1,antonyandcleopatra,1606\nfats,1,antonyandcleopatra,1606\nAmyntas,1,antonyandcleopatra,1606\nplainness,1,antonyandcleopatra,1606\ncontriving,1,antonyandcleopatra,1606\nbalm,1,antonyandcleopatra,1606\nmotive,1,antonyandcleopatra,1606\nhoop,1,antonyandcleopatra,1606\ntremblingly,1,antonyandcleopatra,1606\nweakness,1,antonyandcleopatra,1606\nprognostication,1,antonyandcleopatra,1606\nfactors,1,antonyandcleopatra,1606\nEternity,1,antonyandcleopatra,1606\nnames,1,antonyandcleopatra,1606\nlarge,1,antonyandcleopatra,1606\nvan,1,antonyandcleopatra,1606\ncooks,1,antonyandcleopatra,1606\nField,1,antonyandcleopatra,1606\nfarest,1,antonyandcleopatra,1606\nevidence,1,antonyandcleopatra,1606\npowder,1,antonyandcleopatra,1606\nboldly,1,antonyandcleopatra,1606\ndrinks,1,antonyandcleopatra,1606\nauthor,1,antonyandcleopatra,1606\ntale,1,antonyandcleopatra,1606\nLivia,1,antonyandcleopatra,1606\nlap,1,antonyandcleopatra,1606\ncloyless,1,antonyandcleopatra,1606\nindistinct,1,antonyandcleopatra,1606\nlaw,1,antonyandcleopatra,1606\nInvited,1,antonyandcleopatra,1606\nvented,1,antonyandcleopatra,1606\nconstant,1,antonyandcleopatra,1606\nreckon'd,1,antonyandcleopatra,1606\nkite,1,antonyandcleopatra,1606\nwitchcraft,1,antonyandcleopatra,1606\ncable,1,antonyandcleopatra,1606\ndeparture,1,antonyandcleopatra,1606\ncomedians,1,antonyandcleopatra,1606\nfarthest,1,antonyandcleopatra,1606\nModena,1,antonyandcleopatra,1606\norient,1,antonyandcleopatra,1606\nsource,1,antonyandcleopatra,1606\nExtemporally,1,antonyandcleopatra,1606\nunpeople,1,antonyandcleopatra,1606\ntart,1,antonyandcleopatra,1606\ndestroys,1,antonyandcleopatra,1606\njests,1,antonyandcleopatra,1606\nTrust,1,antonyandcleopatra,1606\nAssist,1,antonyandcleopatra,1606\nreproof,1,antonyandcleopatra,1606\nAlready,1,antonyandcleopatra,1606\ntriumvirate,1,antonyandcleopatra,1606\nalms,1,antonyandcleopatra,1606\nunslipping,1,antonyandcleopatra,1606\nEvery,1,antonyandcleopatra,1606\ndoughty,1,antonyandcleopatra,1606\nSharpen,1,antonyandcleopatra,1606\npledge,1,antonyandcleopatra,1606\nSpeaks,1,antonyandcleopatra,1606\ngetting,1,antonyandcleopatra,1606\nRequires,1,antonyandcleopatra,1606\nvisiting,1,antonyandcleopatra,1606\nQUEEN,1,antonyandcleopatra,1606\nLay,1,antonyandcleopatra,1606\nfertile,1,antonyandcleopatra,1606\naspic's,1,antonyandcleopatra,1606\nTruth,1,antonyandcleopatra,1606\npopulous,1,antonyandcleopatra,1606\nstand'st,1,antonyandcleopatra,1606\nLives,1,antonyandcleopatra,1606\nmethod,1,antonyandcleopatra,1606\nsettle,1,antonyandcleopatra,1606\nCrested,1,antonyandcleopatra,1606\nripens,1,antonyandcleopatra,1606\nArise,1,antonyandcleopatra,1606\nApplauding,1,antonyandcleopatra,1606\ndefect,1,antonyandcleopatra,1606\nranges,1,antonyandcleopatra,1606\nfires,1,antonyandcleopatra,1606\ndimpled,1,antonyandcleopatra,1606\noyster,1,antonyandcleopatra,1606\npeerless,1,antonyandcleopatra,1606\ncowards,1,antonyandcleopatra,1606\nranged,1,antonyandcleopatra,1606\nuseful,1,antonyandcleopatra,1606\nargument,1,antonyandcleopatra,1606\nconsist,1,antonyandcleopatra,1606\nChiefly,1,antonyandcleopatra,1606\nassist,1,antonyandcleopatra,1606\nHectors,1,antonyandcleopatra,1606\nwinter,1,antonyandcleopatra,1606\nforsooth,1,antonyandcleopatra,1606\nliver,1,antonyandcleopatra,1606\ndefeat,1,antonyandcleopatra,1606\nRepent,1,antonyandcleopatra,1606\nhorses,1,antonyandcleopatra,1606\nwrestle,1,antonyandcleopatra,1606\nBrown,1,antonyandcleopatra,1606\nAwake,1,antonyandcleopatra,1606\nfalsehood,1,antonyandcleopatra,1606\ntask,1,antonyandcleopatra,1606\nunnoble,1,antonyandcleopatra,1606\nVex,1,antonyandcleopatra,1606\nadieus,1,antonyandcleopatra,1606\nunpitied,1,antonyandcleopatra,1606\nshout,1,antonyandcleopatra,1606\nfumblest,1,antonyandcleopatra,1606\nrobes,1,antonyandcleopatra,1606\nsatisfied,1,antonyandcleopatra,1606\ninevitable,1,antonyandcleopatra,1606\nApplying,1,antonyandcleopatra,1606\ncountry's,1,antonyandcleopatra,1606\nArabian,1,antonyandcleopatra,1606\nhave't,1,antonyandcleopatra,1606\nperfumed,1,antonyandcleopatra,1606\nhearty,1,antonyandcleopatra,1606\ncheerful,1,antonyandcleopatra,1606\nBacchus,1,antonyandcleopatra,1606\nassembled,1,antonyandcleopatra,1606\nPACORUS,1,antonyandcleopatra,1606\nJune,1,antonyandcleopatra,1606\nNarcissus,1,antonyandcleopatra,1606\nJuno,1,antonyandcleopatra,1606\nServes,1,antonyandcleopatra,1606\n'Where's,1,antonyandcleopatra,1606\ninward,1,antonyandcleopatra,1606\ncomforting,1,antonyandcleopatra,1606\nsinew'd,1,antonyandcleopatra,1606\nlot,1,antonyandcleopatra,1606\neyed,1,antonyandcleopatra,1606\nsweat,1,antonyandcleopatra,1606\nugly,1,antonyandcleopatra,1606\nWaged,1,antonyandcleopatra,1606\nsinking,1,antonyandcleopatra,1606\npuppet,1,antonyandcleopatra,1606\nbaby,1,antonyandcleopatra,1606\nhealing,1,antonyandcleopatra,1606\nthereto,1,antonyandcleopatra,1606\ndeputation,1,antonyandcleopatra,1606\nlandlord,1,antonyandcleopatra,1606\ndiscredited,1,antonyandcleopatra,1606\nSeek,1,antonyandcleopatra,1606\ntook't,1,antonyandcleopatra,1606\nnineteen,1,antonyandcleopatra,1606\napproves,1,antonyandcleopatra,1606\ninsolence,1,antonyandcleopatra,1606\nburnish'd,1,antonyandcleopatra,1606\naught,1,antonyandcleopatra,1606\ngnats,1,antonyandcleopatra,1606\nseel,1,antonyandcleopatra,1606\nfitting,1,antonyandcleopatra,1606\nvesper's,1,antonyandcleopatra,1606\nsatisfies,1,antonyandcleopatra,1606\nTruly,1,antonyandcleopatra,1606\ndefend,1,antonyandcleopatra,1606\nParcel,1,antonyandcleopatra,1606\nunpurposed,1,antonyandcleopatra,1606\nnerves,1,antonyandcleopatra,1606\nunkindness,1,antonyandcleopatra,1606\nsports,1,antonyandcleopatra,1606\ncow,1,antonyandcleopatra,1606\nended,1,antonyandcleopatra,1606\nNews,1,antonyandcleopatra,1606\nlook'd,1,antonyandcleopatra,1606\nSeizes,1,antonyandcleopatra,1606\n'twixt,1,antonyandcleopatra,1606\ndiscretion,1,antonyandcleopatra,1606\nnavy's,1,antonyandcleopatra,1606\ncourtesy,1,antonyandcleopatra,1606\nscrupulous,1,antonyandcleopatra,1606\nEmpress,1,antonyandcleopatra,1606\nHerod's,1,antonyandcleopatra,1606\nothers',1,antonyandcleopatra,1606\npick'd,1,antonyandcleopatra,1606\ndrunken,1,antonyandcleopatra,1606\nvalued,1,antonyandcleopatra,1606\ndiffering,1,antonyandcleopatra,1606\nsteep'd,1,antonyandcleopatra,1606\nAtlas,1,antonyandcleopatra,1606\ncost,1,antonyandcleopatra,1606\nrender,1,antonyandcleopatra,1606\nPatience,1,antonyandcleopatra,1606\nBelieve,1,antonyandcleopatra,1606\nTrue,1,antonyandcleopatra,1606\nbowls,1,antonyandcleopatra,1606\nshaped,1,antonyandcleopatra,1606\nexpectation,1,antonyandcleopatra,1606\nSmarting,1,antonyandcleopatra,1606\nthereon,1,antonyandcleopatra,1606\nSpeaking,1,antonyandcleopatra,1606\nUnloading,1,antonyandcleopatra,1606\nForsake,1,antonyandcleopatra,1606\nDido,1,antonyandcleopatra,1606\nbards,1,antonyandcleopatra,1606\n'Stroy'd,1,antonyandcleopatra,1606\nreplied,1,antonyandcleopatra,1606\n'Your,1,antonyandcleopatra,1606\nthee't,1,antonyandcleopatra,1606\nsecrecy,1,antonyandcleopatra,1606\nwearied,1,antonyandcleopatra,1606\nincrease,1,antonyandcleopatra,1606\nPacorus,1,antonyandcleopatra,1606\nwhate'er,1,antonyandcleopatra,1606\npestilent,1,antonyandcleopatra,1606\nheavenly,1,antonyandcleopatra,1606\nentangled,1,antonyandcleopatra,1606\nObey,1,antonyandcleopatra,1606\nties,1,antonyandcleopatra,1606\nHaste,1,antonyandcleopatra,1606\ndivisions,1,antonyandcleopatra,1606\nmodest,1,antonyandcleopatra,1606\ndeign,1,antonyandcleopatra,1606\nhostages,1,antonyandcleopatra,1606\n'twill,1,antonyandcleopatra,1606\neyne,1,antonyandcleopatra,1606\nTrumpeters,1,antonyandcleopatra,1606\npour,1,antonyandcleopatra,1606\nnourisheth,1,antonyandcleopatra,1606\nloyalty,1,antonyandcleopatra,1606\nFrowns,1,antonyandcleopatra,1606\nThings,1,antonyandcleopatra,1606\nchests,1,antonyandcleopatra,1606\nmallard,1,antonyandcleopatra,1606\ndrugs,1,antonyandcleopatra,1606\ngenerals,1,antonyandcleopatra,1606\ncistern,1,antonyandcleopatra,1606\nsafed,1,antonyandcleopatra,1606\nrebukeable,1,antonyandcleopatra,1606\nToward,1,antonyandcleopatra,1606\nreneges,1,antonyandcleopatra,1606\nheartbreaking,1,antonyandcleopatra,1606\nwretched,1,antonyandcleopatra,1606\nstrikest,1,antonyandcleopatra,1606\nreplies,1,antonyandcleopatra,1606\nfuneral,1,antonyandcleopatra,1606\nentangles,1,antonyandcleopatra,1606\ntrembled,1,antonyandcleopatra,1606\nPurple,1,antonyandcleopatra,1606\ntied,1,antonyandcleopatra,1606\ndislike,1,antonyandcleopatra,1606\nUse,1,antonyandcleopatra,1606\nreapers,1,antonyandcleopatra,1606\nsouls,1,antonyandcleopatra,1606\nremove,1,antonyandcleopatra,1606\nPrays,1,antonyandcleopatra,1606\ngibbet,1,antonyandcleopatra,1606\nfairly,1,antonyandcleopatra,1606\nmodern,1,antonyandcleopatra,1606\nremarkable,1,antonyandcleopatra,1606\ncapacity,1,antonyandcleopatra,1606\n'God,1,antonyandcleopatra,1606\naloud,1,antonyandcleopatra,1606\nQuicken,1,antonyandcleopatra,1606\npavilion,1,antonyandcleopatra,1606\nsee'st,1,antonyandcleopatra,1606\noppose,1,antonyandcleopatra,1606\nPhoenicia,1,antonyandcleopatra,1606\nNext,1,antonyandcleopatra,1606\nglow'd,1,antonyandcleopatra,1606\nRail,1,antonyandcleopatra,1606\nroaring,1,antonyandcleopatra,1606\nmother's,1,antonyandcleopatra,1606\nghosts,1,antonyandcleopatra,1606\ndoits,1,antonyandcleopatra,1606\ntrusting,1,antonyandcleopatra,1606\no'erpower'd,1,antonyandcleopatra,1606\nsqueaking,1,antonyandcleopatra,1606\ntalk'd,1,antonyandcleopatra,1606\nswell,1,antonyandcleopatra,1606\nAdmit,1,antonyandcleopatra,1606\nrebound,1,antonyandcleopatra,1606\nshoots,1,antonyandcleopatra,1606\nBravest,1,antonyandcleopatra,1606\ngrieved,1,antonyandcleopatra,1606\ncarriage,1,antonyandcleopatra,1606\nwrangling,1,antonyandcleopatra,1606\nsullen,1,antonyandcleopatra,1606\nbarren,1,antonyandcleopatra,1606\nformal,1,antonyandcleopatra,1606\nstatue,1,antonyandcleopatra,1606\nseason,1,antonyandcleopatra,1606\nfearing,1,antonyandcleopatra,1606\nmatch,1,antonyandcleopatra,1606\nlastly,1,antonyandcleopatra,1606\nseizes,1,antonyandcleopatra,1606\nRemain,1,antonyandcleopatra,1606\nblast,1,antonyandcleopatra,1606\nmerchant,1,antonyandcleopatra,1606\nUndo,1,antonyandcleopatra,1606\ncoin,1,antonyandcleopatra,1606\nQuarrel,1,antonyandcleopatra,1606\npoop,1,antonyandcleopatra,1606\nHearing,1,antonyandcleopatra,1606\nmerchandise,1,antonyandcleopatra,1606\nJusteius,1,antonyandcleopatra,1606\nuntie,1,antonyandcleopatra,1606\nWisdom,1,antonyandcleopatra,1606\noutroar,1,antonyandcleopatra,1606\nparcel,1,antonyandcleopatra,1606\ndonn'd,1,antonyandcleopatra,1606\nsorely,1,antonyandcleopatra,1606\nbrow,1,antonyandcleopatra,1606\nslow,1,antonyandcleopatra,1606\nstorms,1,antonyandcleopatra,1606\nlicence,1,antonyandcleopatra,1606\ntorch,1,antonyandcleopatra,1606\nfoison,1,antonyandcleopatra,1606\neffects,1,antonyandcleopatra,1606\nservants,1,antonyandcleopatra,1606\nrequested,1,antonyandcleopatra,1606\npersuade,1,antonyandcleopatra,1606\nsubmerged,1,antonyandcleopatra,1606\nfeasting,1,antonyandcleopatra,1606\nunbuckles,1,antonyandcleopatra,1606\nperjure,1,antonyandcleopatra,1606\nenclouded,1,antonyandcleopatra,1606\nDercetas,1,antonyandcleopatra,1606\nmidway,1,antonyandcleopatra,1606\nqueen's,1,antonyandcleopatra,1606\nberry,1,antonyandcleopatra,1606\nabhorring,1,antonyandcleopatra,1606\ndebate,1,antonyandcleopatra,1606\nmar,1,antonyandcleopatra,1606\ncommits,1,antonyandcleopatra,1606\ntargets,1,antonyandcleopatra,1606\ntoken'd,1,antonyandcleopatra,1606\nEunuchs,1,antonyandcleopatra,1606\nsounded,1,antonyandcleopatra,1606\nstarts,1,antonyandcleopatra,1606\ncareful,1,antonyandcleopatra,1606\n'scape,1,antonyandcleopatra,1606\nAbsolute,1,antonyandcleopatra,1606\npasture,1,antonyandcleopatra,1606\nunlike,1,antonyandcleopatra,1606\nrheum,1,antonyandcleopatra,1606\nseldom,1,antonyandcleopatra,1606\nfootmen,1,antonyandcleopatra,1606\nwaned,1,antonyandcleopatra,1606\nfervency,1,antonyandcleopatra,1606\nreward,1,antonyandcleopatra,1606\nshackles,1,antonyandcleopatra,1606\nGrants,1,antonyandcleopatra,1606\nFalling,1,antonyandcleopatra,1606\nburst,1,antonyandcleopatra,1606\nunto't,1,antonyandcleopatra,1606\nrivality,1,antonyandcleopatra,1606\npoets,1,antonyandcleopatra,1606\nlook'dst,1,antonyandcleopatra,1606\nAmiss,1,antonyandcleopatra,1606\nstraight,1,antonyandcleopatra,1606\nforked,1,antonyandcleopatra,1606\ntrusted,1,antonyandcleopatra,1606\n'Make,1,antonyandcleopatra,1606\ndiminutives,1,antonyandcleopatra,1606\ncourageous,1,antonyandcleopatra,1606\nEunuch,1,antonyandcleopatra,1606\nAntick'd,1,antonyandcleopatra,1606\nSooth,1,antonyandcleopatra,1606\ntrim,1,antonyandcleopatra,1606\nrefusing,1,antonyandcleopatra,1606\nobeying,1,antonyandcleopatra,1606\nvilest,1,antonyandcleopatra,1606\nCaptain,1,antonyandcleopatra,1606\nlink'd,1,antonyandcleopatra,1606\nangling,1,antonyandcleopatra,1606\ntires,1,antonyandcleopatra,1606\nRise,1,antonyandcleopatra,1606\nValiantly,1,antonyandcleopatra,1606\npitifully,1,antonyandcleopatra,1606\nmurder'd,1,antonyandcleopatra,1606\ncongealment,1,antonyandcleopatra,1606\ndetermine,1,antonyandcleopatra,1606\ncomforted,1,antonyandcleopatra,1606\nGallus,1,antonyandcleopatra,1606\nabuse,1,antonyandcleopatra,1606\ncinders,1,antonyandcleopatra,1606\nburnt,1,antonyandcleopatra,1606\nhares,1,antonyandcleopatra,1606\nshrowd,1,antonyandcleopatra,1606\ndebtor,1,antonyandcleopatra,1606\nAssemble,1,antonyandcleopatra,1606\nwidower,1,antonyandcleopatra,1606\nenvied,1,antonyandcleopatra,1606\npowerful,1,antonyandcleopatra,1606\nthinking,1,antonyandcleopatra,1606\ncounts,1,antonyandcleopatra,1606\nfashion,1,antonyandcleopatra,1606\npunishment,1,antonyandcleopatra,1606\nsever'd,1,antonyandcleopatra,1606\nmurmuring,1,antonyandcleopatra,1606\nDealt,1,antonyandcleopatra,1606\nVarrius,1,antonyandcleopatra,1606\nEight,1,antonyandcleopatra,1606\nFaints,1,antonyandcleopatra,1606\nreels,1,antonyandcleopatra,1606\ncasts,1,antonyandcleopatra,1606\nunbar,1,antonyandcleopatra,1606\ncarouses,1,antonyandcleopatra,1606\nbanner,1,antonyandcleopatra,1606\nvagabond,1,antonyandcleopatra,1606\nfaultiness,1,antonyandcleopatra,1606\nlion,1,antonyandcleopatra,1606\nApollodorus,1,antonyandcleopatra,1606\npartisan,1,antonyandcleopatra,1606\nseedsman,1,antonyandcleopatra,1606\nhomage,1,antonyandcleopatra,1606\nSleep,1,antonyandcleopatra,1606\nportends,1,antonyandcleopatra,1606\nCupids,1,antonyandcleopatra,1606\nE'en,1,antonyandcleopatra,1606\ntelling,1,antonyandcleopatra,1606\nvolley,1,antonyandcleopatra,1606\nStomach,1,antonyandcleopatra,1606\nuncurbable,1,antonyandcleopatra,1606\nlass,1,antonyandcleopatra,1606\nfever,1,antonyandcleopatra,1606\nvestal,1,antonyandcleopatra,1606\nphrase,1,antonyandcleopatra,1606\npeck,1,antonyandcleopatra,1606\nrevenger,1,antonyandcleopatra,1606\nsynod,1,antonyandcleopatra,1606\nBasan,1,antonyandcleopatra,1606\nflaw,1,antonyandcleopatra,1606\nCrassus,1,antonyandcleopatra,1606\nspill,1,antonyandcleopatra,1606\nflag,1,antonyandcleopatra,1606\nthither,1,antonyandcleopatra,1606\nPublicola,1,antonyandcleopatra,1606\neastern,1,antonyandcleopatra,1606\ncitizens,1,antonyandcleopatra,1606\ncompel,1,antonyandcleopatra,1606\nchooses,1,antonyandcleopatra,1606\nLooking,1,antonyandcleopatra,1606\nbetimes,1,antonyandcleopatra,1606\nsuspect,1,antonyandcleopatra,1606\ndiscontented,1,antonyandcleopatra,1606\nbesides,1,antonyandcleopatra,1606\nunqualitied,1,antonyandcleopatra,1606\nextend,1,antonyandcleopatra,1606\ngets,1,antonyandcleopatra,1606\nsilver,1,antonyandcleopatra,1606\nunhack'd,1,antonyandcleopatra,1606\nunbewail'd,1,antonyandcleopatra,1606\nRound,1,antonyandcleopatra,1606\nsoulless,1,antonyandcleopatra,1606\nrevenged,1,antonyandcleopatra,1606\nhurt,1,antonyandcleopatra,1606\nApril,1,antonyandcleopatra,1606\nmisthought,1,antonyandcleopatra,1606\nhurl,1,antonyandcleopatra,1606\nsquire,1,antonyandcleopatra,1606\nComagene,1,antonyandcleopatra,1606\nlevying,1,antonyandcleopatra,1606\nappetite,1,antonyandcleopatra,1606\nfell'st,1,antonyandcleopatra,1606\ncompose,1,antonyandcleopatra,1606\nentreaty,1,antonyandcleopatra,1606\no'erflowing,1,antonyandcleopatra,1606\nwindows,1,antonyandcleopatra,1606\nentreats,1,antonyandcleopatra,1606\ndisaster,1,antonyandcleopatra,1606\nshrewd,1,antonyandcleopatra,1606\nsilent,1,antonyandcleopatra,1606\nDeath,1,antonyandcleopatra,1606\nassurance,1,antonyandcleopatra,1606\ndespiteful,1,antonyandcleopatra,1606\nspring,1,antonyandcleopatra,1606\nclouts,1,antonyandcleopatra,1606\nnumbers,1,antonyandcleopatra,1606\nreply,1,antonyandcleopatra,1606\nbrows',1,antonyandcleopatra,1606\nhazarded,1,antonyandcleopatra,1606\nTie,1,antonyandcleopatra,1606\nwounding,1,antonyandcleopatra,1606\nlaid,1,antonyandcleopatra,1606\nMount,1,antonyandcleopatra,1606\nasleep,1,antonyandcleopatra,1606\nmangled,1,antonyandcleopatra,1606\nconfine,1,antonyandcleopatra,1606\nwith's,1,antonyandcleopatra,1606\nprincely,1,antonyandcleopatra,1606\nsavages,1,antonyandcleopatra,1606\nnightingale,1,antonyandcleopatra,1606\ndark,1,antonyandcleopatra,1606\nGracious,1,antonyandcleopatra,1606\nnovice,1,antonyandcleopatra,1606\nwail'd,1,antonyandcleopatra,1606\nensued,1,antonyandcleopatra,1606\nweigh,1,antonyandcleopatra,1606\nembers,1,antonyandcleopatra,1606\ndug,1,antonyandcleopatra,1606\nThracian,1,antonyandcleopatra,1606\nTogether,1,antonyandcleopatra,1606\nweighs,1,antonyandcleopatra,1606\nBestow'd,1,antonyandcleopatra,1606\ntow,1,antonyandcleopatra,1606\nsoothsayer,1,antonyandcleopatra,1606\nroasted,1,antonyandcleopatra,1606\ntop,1,antonyandcleopatra,1606\ninjurious,1,antonyandcleopatra,1606\nTelamon,1,antonyandcleopatra,1606\nanother's,1,antonyandcleopatra,1606\nfellowship,1,antonyandcleopatra,1606\nunparallel'd,1,antonyandcleopatra,1606\nleaner,1,antonyandcleopatra,1606\nsnatch,1,antonyandcleopatra,1606\ninstantly,1,antonyandcleopatra,1606\nresting,1,antonyandcleopatra,1606\nemperor's,1,antonyandcleopatra,1606\nmature,1,antonyandcleopatra,1606\nDRAMATIS,1,antonyandcleopatra,1606\ninches,1,antonyandcleopatra,1606\nlamp,1,antonyandcleopatra,1606\nchariot,1,antonyandcleopatra,1606\nwhores,1,antonyandcleopatra,1606\nshift,1,antonyandcleopatra,1606\nchildishness,1,antonyandcleopatra,1606\nrescue,1,antonyandcleopatra,1606\nshine,1,antonyandcleopatra,1606\nArchelaus,1,antonyandcleopatra,1606\nphysician,1,antonyandcleopatra,1606\nobstruct,1,antonyandcleopatra,1606\ndamp,1,antonyandcleopatra,1606\nwindow'd,1,antonyandcleopatra,1606\narmed,1,antonyandcleopatra,1606\nflower,1,antonyandcleopatra,1606\nshiny,1,antonyandcleopatra,1606\ndame,1,antonyandcleopatra,1606\nrewards,1,antonyandcleopatra,1606\ndamn,1,antonyandcleopatra,1606\nbark'd,1,antonyandcleopatra,1606\nflows,1,antonyandcleopatra,1606\nNessus,1,antonyandcleopatra,1606\nhe'll,1,antonyandcleopatra,1606\nmeeter,1,antonyandcleopatra,1606\nascend,1,antonyandcleopatra,1606\nfrail,1,antonyandcleopatra,1606\nRide,1,antonyandcleopatra,1606\ncross,1,antonyandcleopatra,1606\nsmell,1,antonyandcleopatra,1606\nsurfeits,1,antonyandcleopatra,1606\ncabin,1,antonyandcleopatra,1606\ndew,1,antonyandcleopatra,1606\nTarentum,1,antonyandcleopatra,1606\ndear'd,1,antonyandcleopatra,1606\nscotches,1,antonyandcleopatra,1606\nsourest,1,antonyandcleopatra,1606\ndrown'd,1,antonyandcleopatra,1606\nwenches,1,antonyandcleopatra,1606\nscaled,1,antonyandcleopatra,1606\ndarkens,1,antonyandcleopatra,1606\nplated,1,antonyandcleopatra,1606\nbrim,1,antonyandcleopatra,1606\nscales,1,antonyandcleopatra,1606\nemboss'd,1,antonyandcleopatra,1606\nawake,1,antonyandcleopatra,1606\nfigures,1,antonyandcleopatra,1606\ntake't,1,antonyandcleopatra,1606\nfullest,1,antonyandcleopatra,1606\nMarcellus,1,antonyandcleopatra,1606\nprincess,1,antonyandcleopatra,1606\nplates,1,antonyandcleopatra,1606\nmutual,1,antonyandcleopatra,1606\nCarries,1,antonyandcleopatra,1606\ndepart'st,1,antonyandcleopatra,1606\ndefences,1,antonyandcleopatra,1606\namen,1,antonyandcleopatra,1606\nFall,1,antonyandcleopatra,1606\ndone't,1,antonyandcleopatra,1606\nusher,1,antonyandcleopatra,1606\nrepair,1,antonyandcleopatra,1606\nHumbly,1,antonyandcleopatra,1606\naugurers,1,antonyandcleopatra,1606\nshirt,1,antonyandcleopatra,1606\nsolemnity,1,antonyandcleopatra,1606\nlace,1,antonyandcleopatra,1606\nFind,1,antonyandcleopatra,1606\nobedience,1,antonyandcleopatra,1606\nhangman,1,antonyandcleopatra,1606\npetticoat,1,antonyandcleopatra,1606\nqueasy,1,antonyandcleopatra,1606\nBetray'd,1,antonyandcleopatra,1606\nleaky,1,antonyandcleopatra,1606\ntread,1,antonyandcleopatra,1606\nbreaths,1,antonyandcleopatra,1606\nThrice,1,antonyandcleopatra,1606\nWhistling,1,antonyandcleopatra,1606\npelleted,1,antonyandcleopatra,1606\nBrundusium,1,antonyandcleopatra,1606\ndoctrine,1,antonyandcleopatra,1606\npropertied,1,antonyandcleopatra,1606\nbondman,1,antonyandcleopatra,1606\nfavouring,1,antonyandcleopatra,1606\nsands,1,antonyandcleopatra,1606\ndin,1,antonyandcleopatra,1606\nesteemed,1,antonyandcleopatra,1606\nFill,1,antonyandcleopatra,1606\nenemy,1,antonyandcleopatra,1606\nfortuned,1,antonyandcleopatra,1606\ndegrees,1,antonyandcleopatra,1606\nhedge,1,antonyandcleopatra,1606\ncomposure,1,antonyandcleopatra,1606\nsway,1,antonyandcleopatra,1606\nlads,1,antonyandcleopatra,1606\nTug,1,antonyandcleopatra,1606\nheel,2,antonyandcleopatra,1606\nhorns,2,antonyandcleopatra,1606\naccordingly,2,antonyandcleopatra,1606\nparted,2,antonyandcleopatra,1606\nTaurus,2,antonyandcleopatra,1606\nX,2,antonyandcleopatra,1606\njoin,2,antonyandcleopatra,1606\nToryne,2,antonyandcleopatra,1606\npestilence,2,antonyandcleopatra,1606\nafar,2,antonyandcleopatra,1606\nYou've,2,antonyandcleopatra,1606\ndarest,2,antonyandcleopatra,1606\ndescription,2,antonyandcleopatra,1606\nRomans,2,antonyandcleopatra,1606\ndream'd,2,antonyandcleopatra,1606\nfollowing,2,antonyandcleopatra,1606\nquietness,2,antonyandcleopatra,1606\nlament,2,antonyandcleopatra,1606\nadvantage,2,antonyandcleopatra,1606\nbrown,2,antonyandcleopatra,1606\nlower,2,antonyandcleopatra,1606\nrot,2,antonyandcleopatra,1606\no'ertake,2,antonyandcleopatra,1606\nrobe,2,antonyandcleopatra,1606\nhighness',2,antonyandcleopatra,1606\nBeat,2,antonyandcleopatra,1606\nlowness,2,antonyandcleopatra,1606\nday's,2,antonyandcleopatra,1606\nsleeps,2,antonyandcleopatra,1606\nhelm,2,antonyandcleopatra,1606\ntruly,2,antonyandcleopatra,1606\ndish,2,antonyandcleopatra,1606\nhers,2,antonyandcleopatra,1606\ndropp'd,2,antonyandcleopatra,1606\nDomitius,2,antonyandcleopatra,1606\nBeguiled,2,antonyandcleopatra,1606\nsighs,2,antonyandcleopatra,1606\nsight,2,antonyandcleopatra,1606\nhearted,2,antonyandcleopatra,1606\nfury,2,antonyandcleopatra,1606\ndeclined,2,antonyandcleopatra,1606\nEre,2,antonyandcleopatra,1606\nthroat,2,antonyandcleopatra,1606\nsoul,2,antonyandcleopatra,1606\nteachest,2,antonyandcleopatra,1606\nyonder,2,antonyandcleopatra,1606\nAlexandrian,2,antonyandcleopatra,1606\npinch,2,antonyandcleopatra,1606\nWere't,2,antonyandcleopatra,1606\nwounded,2,antonyandcleopatra,1606\nproclaim,2,antonyandcleopatra,1606\nMedia,2,antonyandcleopatra,1606\nliar,2,antonyandcleopatra,1606\nworser,2,antonyandcleopatra,1606\npursue,2,antonyandcleopatra,1606\nOnce,2,antonyandcleopatra,1606\nmercy,2,antonyandcleopatra,1606\nVIII,2,antonyandcleopatra,1606\npine,2,antonyandcleopatra,1606\nmatters,2,antonyandcleopatra,1606\nsat,2,antonyandcleopatra,1606\nbearing,2,antonyandcleopatra,1606\nyears,2,antonyandcleopatra,1606\ngrows,2,antonyandcleopatra,1606\nhighness,2,antonyandcleopatra,1606\nhoist,2,antonyandcleopatra,1606\nKeep,2,antonyandcleopatra,1606\nhorror,2,antonyandcleopatra,1606\ntrumpet,2,antonyandcleopatra,1606\nheat,2,antonyandcleopatra,1606\ntoward,2,antonyandcleopatra,1606\ndrew,2,antonyandcleopatra,1606\ncheer,2,antonyandcleopatra,1606\nNilus',2,antonyandcleopatra,1606\npolicy,2,antonyandcleopatra,1606\npaper,2,antonyandcleopatra,1606\ngalley,2,antonyandcleopatra,1606\nfools,2,antonyandcleopatra,1606\nblessed,2,antonyandcleopatra,1606\nfreedom,2,antonyandcleopatra,1606\nwait,2,antonyandcleopatra,1606\nmann'd,2,antonyandcleopatra,1606\nblack,2,antonyandcleopatra,1606\nsnakes,2,antonyandcleopatra,1606\nsix,2,antonyandcleopatra,1606\nEgyptians,2,antonyandcleopatra,1606\nLydia,2,antonyandcleopatra,1606\nwarrant,2,antonyandcleopatra,1606\nPhoebus',2,antonyandcleopatra,1606\nimpossible,2,antonyandcleopatra,1606\nsmites,2,antonyandcleopatra,1606\nsubdued,2,antonyandcleopatra,1606\nworthiest,2,antonyandcleopatra,1606\nsex,2,antonyandcleopatra,1606\nbarge,2,antonyandcleopatra,1606\nmonarch,2,antonyandcleopatra,1606\nshrill,2,antonyandcleopatra,1606\nwake,2,antonyandcleopatra,1606\ntouches,2,antonyandcleopatra,1606\nkneel'd,2,antonyandcleopatra,1606\nXII,2,antonyandcleopatra,1606\ndisposed,2,antonyandcleopatra,1606\nfell,2,antonyandcleopatra,1606\nconcern,2,antonyandcleopatra,1606\ncouncil,2,antonyandcleopatra,1606\nsworn,2,antonyandcleopatra,1606\nwinds,2,antonyandcleopatra,1606\nlooking,2,antonyandcleopatra,1606\n'O,2,antonyandcleopatra,1606\n'I,2,antonyandcleopatra,1606\ncountenance,2,antonyandcleopatra,1606\nlarger,2,antonyandcleopatra,1606\nkindly,2,antonyandcleopatra,1606\ntaunt,2,antonyandcleopatra,1606\nsecond,2,antonyandcleopatra,1606\nshipping,2,antonyandcleopatra,1606\ncamps,2,antonyandcleopatra,1606\nappear'd,2,antonyandcleopatra,1606\nvile,2,antonyandcleopatra,1606\nfelt,2,antonyandcleopatra,1606\nwrote,2,antonyandcleopatra,1606\nreceived,2,antonyandcleopatra,1606\npoints,2,antonyandcleopatra,1606\nBe't,2,antonyandcleopatra,1606\nshower,2,antonyandcleopatra,1606\ntwelve,2,antonyandcleopatra,1606\nways,2,antonyandcleopatra,1606\nborn,2,antonyandcleopatra,1606\nOfficers,2,antonyandcleopatra,1606\ncivil,2,antonyandcleopatra,1606\nabsence,2,antonyandcleopatra,1606\nking's,2,antonyandcleopatra,1606\ndetain,2,antonyandcleopatra,1606\nterms,2,antonyandcleopatra,1606\nencounter,2,antonyandcleopatra,1606\nloose,2,antonyandcleopatra,1606\nPardon,2,antonyandcleopatra,1606\nwhite,2,antonyandcleopatra,1606\nWherein,2,antonyandcleopatra,1606\nLeave,2,antonyandcleopatra,1606\nthence,2,antonyandcleopatra,1606\nsue,2,antonyandcleopatra,1606\ncries,2,antonyandcleopatra,1606\nsum,2,antonyandcleopatra,1606\ncompanion,2,antonyandcleopatra,1606\nfeed,2,antonyandcleopatra,1606\nrush,2,antonyandcleopatra,1606\npromise,2,antonyandcleopatra,1606\nnoblest,2,antonyandcleopatra,1606\ncleave,2,antonyandcleopatra,1606\nmasters,2,antonyandcleopatra,1606\nupon't,2,antonyandcleopatra,1606\nwing,2,antonyandcleopatra,1606\nFly,2,antonyandcleopatra,1606\ncuckold,2,antonyandcleopatra,1606\nnails,2,antonyandcleopatra,1606\nnegligent,2,antonyandcleopatra,1606\nsphere,2,antonyandcleopatra,1606\nrarely,2,antonyandcleopatra,1606\nseems,2,antonyandcleopatra,1606\nlength,2,antonyandcleopatra,1606\nedge,2,antonyandcleopatra,1606\nhated,2,antonyandcleopatra,1606\nruin,2,antonyandcleopatra,1606\naccuse,2,antonyandcleopatra,1606\nambassador,2,antonyandcleopatra,1606\nworld's,2,antonyandcleopatra,1606\nbidding,2,antonyandcleopatra,1606\nstop,2,antonyandcleopatra,1606\nwarm,2,antonyandcleopatra,1606\npretty,2,antonyandcleopatra,1606\nwash,2,antonyandcleopatra,1606\nboot,2,antonyandcleopatra,1606\nwast,2,antonyandcleopatra,1606\npraised,2,antonyandcleopatra,1606\ntent,2,antonyandcleopatra,1606\ngoddess,2,antonyandcleopatra,1606\nurge,2,antonyandcleopatra,1606\nha',2,antonyandcleopatra,1606\nHold,2,antonyandcleopatra,1606\nutter,2,antonyandcleopatra,1606\noffend,2,antonyandcleopatra,1606\nmeasure,2,antonyandcleopatra,1606\ngranted,2,antonyandcleopatra,1606\ndecorum,2,antonyandcleopatra,1606\npay,2,antonyandcleopatra,1606\nonion,2,antonyandcleopatra,1606\nhang'd,2,antonyandcleopatra,1606\nempress,2,antonyandcleopatra,1606\nscarce,2,antonyandcleopatra,1606\nHie,2,antonyandcleopatra,1606\nBecomes,2,antonyandcleopatra,1606\ngovern,2,antonyandcleopatra,1606\nHaving,2,antonyandcleopatra,1606\nLo,2,antonyandcleopatra,1606\nOurselves,2,antonyandcleopatra,1606\npays,2,antonyandcleopatra,1606\nstar,2,antonyandcleopatra,1606\ntales,2,antonyandcleopatra,1606\npitied,2,antonyandcleopatra,1606\nwisdom,2,antonyandcleopatra,1606\nHa,2,antonyandcleopatra,1606\nbeg,2,antonyandcleopatra,1606\nrequires,2,antonyandcleopatra,1606\nills,2,antonyandcleopatra,1606\nIX,2,antonyandcleopatra,1606\ntroops,2,antonyandcleopatra,1606\nproud,2,antonyandcleopatra,1606\nIs't,2,antonyandcleopatra,1606\nnobly,2,antonyandcleopatra,1606\nheads,2,antonyandcleopatra,1606\nkiss'd,2,antonyandcleopatra,1606\nForgive,2,antonyandcleopatra,1606\nbroached,2,antonyandcleopatra,1606\nXI,2,antonyandcleopatra,1606\ndivide,2,antonyandcleopatra,1606\naspic,2,antonyandcleopatra,1606\nwas't,2,antonyandcleopatra,1606\nrebel,2,antonyandcleopatra,1606\nSits,2,antonyandcleopatra,1606\ndifference,2,antonyandcleopatra,1606\ngoodly,2,antonyandcleopatra,1606\nburn,2,antonyandcleopatra,1606\ngot,2,antonyandcleopatra,1606\ncap,2,antonyandcleopatra,1606\nYourself,2,antonyandcleopatra,1606\nimmediate,2,antonyandcleopatra,1606\ngaze,2,antonyandcleopatra,1606\nwear,2,antonyandcleopatra,1606\nBehold,2,antonyandcleopatra,1606\nsustain,2,antonyandcleopatra,1606\nfifty,2,antonyandcleopatra,1606\nnodded,2,antonyandcleopatra,1606\na',2,antonyandcleopatra,1606\ntwice,2,antonyandcleopatra,1606\nDidst,2,antonyandcleopatra,1606\njust,2,antonyandcleopatra,1606\nmechanic,2,antonyandcleopatra,1606\nconquest,2,antonyandcleopatra,1606\nswift,2,antonyandcleopatra,1606\nvassal,2,antonyandcleopatra,1606\ntravel,2,antonyandcleopatra,1606\nused,2,antonyandcleopatra,1606\npreserve,2,antonyandcleopatra,1606\nvacancy,2,antonyandcleopatra,1606\nO'er,2,antonyandcleopatra,1606\nEnough,2,antonyandcleopatra,1606\nadmired,2,antonyandcleopatra,1606\nstronger,2,antonyandcleopatra,1606\nbeds,2,antonyandcleopatra,1606\nlamented,2,antonyandcleopatra,1606\nvantage,2,antonyandcleopatra,1606\nriver,2,antonyandcleopatra,1606\nstorm,2,antonyandcleopatra,1606\noverplus,2,antonyandcleopatra,1606\nstory,2,antonyandcleopatra,1606\nforgive,2,antonyandcleopatra,1606\nconfess,2,antonyandcleopatra,1606\nCannot,2,antonyandcleopatra,1606\nsatisfy,2,antonyandcleopatra,1606\naid,2,antonyandcleopatra,1606\nbattery,2,antonyandcleopatra,1606\nprevented,2,antonyandcleopatra,1606\ntongued,2,antonyandcleopatra,1606\nswearing,2,antonyandcleopatra,1606\nstone,2,antonyandcleopatra,1606\nplays,2,antonyandcleopatra,1606\nvictory,2,antonyandcleopatra,1606\nlent,2,antonyandcleopatra,1606\nLast,2,antonyandcleopatra,1606\ntime's,2,antonyandcleopatra,1606\nthrive,2,antonyandcleopatra,1606\nlend,2,antonyandcleopatra,1606\ncomforts,2,antonyandcleopatra,1606\nmemory,2,antonyandcleopatra,1606\nforget,2,antonyandcleopatra,1606\nnewly,2,antonyandcleopatra,1606\ndoor,2,antonyandcleopatra,1606\ndoom,2,antonyandcleopatra,1606\nknow't,2,antonyandcleopatra,1606\nsmall,2,antonyandcleopatra,1606\nnecessity,2,antonyandcleopatra,1606\naside,2,antonyandcleopatra,1606\ncrave,2,antonyandcleopatra,1606\nwrinkled,2,antonyandcleopatra,1606\nabide,2,antonyandcleopatra,1606\nKingdoms,2,antonyandcleopatra,1606\nPOMPEY's,2,antonyandcleopatra,1606\n'twould,2,antonyandcleopatra,1606\nlots,2,antonyandcleopatra,1606\nbegg'd,2,antonyandcleopatra,1606\nstudied,2,antonyandcleopatra,1606\npursued,2,antonyandcleopatra,1606\nendure,2,antonyandcleopatra,1606\ncommands,2,antonyandcleopatra,1606\nplaying,2,antonyandcleopatra,1606\npartners,2,antonyandcleopatra,1606\ndevil,2,antonyandcleopatra,1606\nknot,2,antonyandcleopatra,1606\nCaesarion,2,antonyandcleopatra,1606\nIt's,2,antonyandcleopatra,1606\nshow'd,2,antonyandcleopatra,1606\njourney,2,antonyandcleopatra,1606\nhot,2,antonyandcleopatra,1606\nBeen,2,antonyandcleopatra,1606\nhark,2,antonyandcleopatra,1606\nevents,2,antonyandcleopatra,1606\nhardly,2,antonyandcleopatra,1606\nhard,2,antonyandcleopatra,1606\nsoldiership,2,antonyandcleopatra,1606\nJack,2,antonyandcleopatra,1606\npale,2,antonyandcleopatra,1606\nTend,2,antonyandcleopatra,1606\npalm,2,antonyandcleopatra,1606\nHercules,2,antonyandcleopatra,1606\nperform'd,2,antonyandcleopatra,1606\nhusband's,2,antonyandcleopatra,1606\nnatural,2,antonyandcleopatra,1606\nsee't,2,antonyandcleopatra,1606\nexcuse,2,antonyandcleopatra,1606\nexpect,2,antonyandcleopatra,1606\nShe's,2,antonyandcleopatra,1606\nrashness,2,antonyandcleopatra,1606\npain,2,antonyandcleopatra,1606\nHush,2,antonyandcleopatra,1606\nmoney,2,antonyandcleopatra,1606\nfronted,2,antonyandcleopatra,1606\nfear'd,2,antonyandcleopatra,1606\nfishes,2,antonyandcleopatra,1606\nflatter'd,2,antonyandcleopatra,1606\nfood,2,antonyandcleopatra,1606\nass,2,antonyandcleopatra,1606\naccidents,2,antonyandcleopatra,1606\nrightly,2,antonyandcleopatra,1606\ningratitude,2,antonyandcleopatra,1606\nKing,2,antonyandcleopatra,1606\nStrikes,2,antonyandcleopatra,1606\nbanquet,2,antonyandcleopatra,1606\nundone,2,antonyandcleopatra,1606\nyet',2,antonyandcleopatra,1606\nministers,2,antonyandcleopatra,1606\nmares,2,antonyandcleopatra,1606\nArt,2,antonyandcleopatra,1606\nguest,2,antonyandcleopatra,1606\nmoves,2,antonyandcleopatra,1606\nmarch,2,antonyandcleopatra,1606\nheight,2,antonyandcleopatra,1606\nnobler,2,antonyandcleopatra,1606\nluck,2,antonyandcleopatra,1606\nlean,2,antonyandcleopatra,1606\ndelicate,2,antonyandcleopatra,1606\nleap,2,antonyandcleopatra,1606\njustice,2,antonyandcleopatra,1606\nCaptains,2,antonyandcleopatra,1606\noccasion,2,antonyandcleopatra,1606\nuniversal,2,antonyandcleopatra,1606\nmoved,2,antonyandcleopatra,1606\nBecome,2,antonyandcleopatra,1606\nmaid,2,antonyandcleopatra,1606\ngarboils,2,antonyandcleopatra,1606\nhill,2,antonyandcleopatra,1606\nreported,2,antonyandcleopatra,1606\nrose,2,antonyandcleopatra,1606\nfugitive,2,antonyandcleopatra,1606\ntriumphant,2,antonyandcleopatra,1606\nfaith,2,antonyandcleopatra,1606\nHalf,2,antonyandcleopatra,1606\nnose,2,antonyandcleopatra,1606\nmidst,2,antonyandcleopatra,1606\nVenus,2,antonyandcleopatra,1606\nbegone,2,antonyandcleopatra,1606\nlack'd,2,antonyandcleopatra,1606\nrare,2,antonyandcleopatra,1606\ndress,2,antonyandcleopatra,1606\nrudder,2,antonyandcleopatra,1606\ngently,2,antonyandcleopatra,1606\ntemperance,2,antonyandcleopatra,1606\nhint,2,antonyandcleopatra,1606\nentertainment,2,antonyandcleopatra,1606\nbears,2,antonyandcleopatra,1606\nyear,2,antonyandcleopatra,1606\nLove,2,antonyandcleopatra,1606\nforesee,2,antonyandcleopatra,1606\ncharm,2,antonyandcleopatra,1606\nAll's,2,antonyandcleopatra,1606\nmount,2,antonyandcleopatra,1606\naffections,2,antonyandcleopatra,1606\nHigh,2,antonyandcleopatra,1606\nFurther,2,antonyandcleopatra,1606\nignorant,2,antonyandcleopatra,1606\ndares,2,antonyandcleopatra,1606\nfreely,2,antonyandcleopatra,1606\nfamous,2,antonyandcleopatra,1606\nplaced,2,antonyandcleopatra,1606\ntowards,2,antonyandcleopatra,1606\nDrums,2,antonyandcleopatra,1606\nshield,2,antonyandcleopatra,1606\nMakes,2,antonyandcleopatra,1606\nblush,2,antonyandcleopatra,1606\nbeggar,2,antonyandcleopatra,1606\nbloody,2,antonyandcleopatra,1606\nQueen,2,antonyandcleopatra,1606\nreading,2,antonyandcleopatra,1606\nchief,2,antonyandcleopatra,1606\nmark,2,antonyandcleopatra,1606\nissue,2,antonyandcleopatra,1606\nwon,2,antonyandcleopatra,1606\njudgments,2,antonyandcleopatra,1606\ninch,2,antonyandcleopatra,1606\ngates,2,antonyandcleopatra,1606\nDetermine,2,antonyandcleopatra,1606\nblasted,2,antonyandcleopatra,1606\nvapour,2,antonyandcleopatra,1606\nfirm,2,antonyandcleopatra,1606\ndesired,2,antonyandcleopatra,1606\nmaids,2,antonyandcleopatra,1606\nodd,2,antonyandcleopatra,1606\nstale,2,antonyandcleopatra,1606\nretire,2,antonyandcleopatra,1606\ndishonour,2,antonyandcleopatra,1606\nfive,2,antonyandcleopatra,1606\nthough't,2,antonyandcleopatra,1606\noperation,2,antonyandcleopatra,1606\nimport,2,antonyandcleopatra,1606\nservices,2,antonyandcleopatra,1606\ngap,2,antonyandcleopatra,1606\nrecover,2,antonyandcleopatra,1606\nDear,2,antonyandcleopatra,1606\nfiles,2,antonyandcleopatra,1606\ndeath's,2,antonyandcleopatra,1606\ncount,2,antonyandcleopatra,1606\ntorture,2,antonyandcleopatra,1606\ncrown'd,2,antonyandcleopatra,1606\ncalled,2,antonyandcleopatra,1606\nflourish,2,antonyandcleopatra,1606\nheave,2,antonyandcleopatra,1606\nperforce,2,antonyandcleopatra,1606\noath,2,antonyandcleopatra,1606\nintend,2,antonyandcleopatra,1606\nthey'ld,2,antonyandcleopatra,1606\nblemish,2,antonyandcleopatra,1606\ndanger,2,antonyandcleopatra,1606\nadmitted,2,antonyandcleopatra,1606\nsupper,2,antonyandcleopatra,1606\ncoming,2,antonyandcleopatra,1606\nSister,2,antonyandcleopatra,1606\nThree,2,antonyandcleopatra,1606\nthroats,2,antonyandcleopatra,1606\nrobb'd,2,antonyandcleopatra,1606\ncompetitor,2,antonyandcleopatra,1606\nbaseness,2,antonyandcleopatra,1606\ndreams,2,antonyandcleopatra,1606\ntakes,2,antonyandcleopatra,1606\nmorsel,2,antonyandcleopatra,1606\nvarying,2,antonyandcleopatra,1606\nreports,2,antonyandcleopatra,1606\nsize,2,antonyandcleopatra,1606\nblemishes,2,antonyandcleopatra,1606\ninform,2,antonyandcleopatra,1606\nrequire,2,antonyandcleopatra,1606\nwomb,2,antonyandcleopatra,1606\nowe,2,antonyandcleopatra,1606\ndisposition,2,antonyandcleopatra,1606\nrain,2,antonyandcleopatra,1606\nclip,2,antonyandcleopatra,1606\nmovest,2,antonyandcleopatra,1606\nfail,2,antonyandcleopatra,1606\nminister,2,antonyandcleopatra,1606\ngarlands,2,antonyandcleopatra,1606\ncried,2,antonyandcleopatra,1606\nwept,2,antonyandcleopatra,1606\nyond,2,antonyandcleopatra,1606\nmodesty,2,antonyandcleopatra,1606\ncares,2,antonyandcleopatra,1606\narticle,2,antonyandcleopatra,1606\nHadst,2,antonyandcleopatra,1606\ntruths,2,antonyandcleopatra,1606\nrace,2,antonyandcleopatra,1606\nmethinks,2,antonyandcleopatra,1606\ngrand,2,antonyandcleopatra,1606\nworn,2,antonyandcleopatra,1606\ndiscover,2,antonyandcleopatra,1606\ntune,2,antonyandcleopatra,1606\ncompany,2,antonyandcleopatra,1606\nwore,2,antonyandcleopatra,1606\nfit,2,antonyandcleopatra,1606\nExcellent,2,antonyandcleopatra,1606\nfine,2,antonyandcleopatra,1606\nprofit,2,antonyandcleopatra,1606\nsafety,2,antonyandcleopatra,1606\nrattling,2,antonyandcleopatra,1606\nNear,2,antonyandcleopatra,1606\nrebuke,2,antonyandcleopatra,1606\nFare,2,antonyandcleopatra,1606\nUnto,2,antonyandcleopatra,1606\npocket,2,antonyandcleopatra,1606\npractise,2,antonyandcleopatra,1606\nBeneath,2,antonyandcleopatra,1606\npartly,2,antonyandcleopatra,1606\nwives,2,antonyandcleopatra,1606\ngilded,2,antonyandcleopatra,1606\nbase,2,antonyandcleopatra,1606\nditch,2,antonyandcleopatra,1606\nband,2,antonyandcleopatra,1606\nfriendship,2,antonyandcleopatra,1606\nhook,2,antonyandcleopatra,1606\ncreeps,2,antonyandcleopatra,1606\nCup,2,antonyandcleopatra,1606\nfast,2,antonyandcleopatra,1606\ntrumpets,2,antonyandcleopatra,1606\ntalk,2,antonyandcleopatra,1606\nman's,2,antonyandcleopatra,1606\narm'd,2,antonyandcleopatra,1606\nfruitful,2,antonyandcleopatra,1606\nbind,2,antonyandcleopatra,1606\naloft,2,antonyandcleopatra,1606\nAppear,2,antonyandcleopatra,1606\nconvey,2,antonyandcleopatra,1606\nperish,2,antonyandcleopatra,1606\nholes,2,antonyandcleopatra,1606\nsixty,2,antonyandcleopatra,1606\nRather,2,antonyandcleopatra,1606\nshook,2,antonyandcleopatra,1606\nclear,2,antonyandcleopatra,1606\nshort,2,antonyandcleopatra,1606\ngreet,2,antonyandcleopatra,1606\nfamine,2,antonyandcleopatra,1606\nfeasts,2,antonyandcleopatra,1606\nrequest,2,antonyandcleopatra,1606\ncondemn,2,antonyandcleopatra,1606\nCassius,2,antonyandcleopatra,1606\nresolution,2,antonyandcleopatra,1606\nprayers,2,antonyandcleopatra,1606\nseat,2,antonyandcleopatra,1606\nThyreus,2,antonyandcleopatra,1606\nhairs,2,antonyandcleopatra,1606\nalong,2,antonyandcleopatra,1606\ncool,2,antonyandcleopatra,1606\nCydnus,2,antonyandcleopatra,1606\nadieu,2,antonyandcleopatra,1606\nfairer,2,antonyandcleopatra,1606\nfights,2,antonyandcleopatra,1606\neither,2,antonyandcleopatra,1606\nLie,2,antonyandcleopatra,1606\nmeantime,2,antonyandcleopatra,1606\nvessel,2,antonyandcleopatra,1606\nperiod,2,antonyandcleopatra,1606\nXIII,2,antonyandcleopatra,1606\nsacred,2,antonyandcleopatra,1606\ncry,2,antonyandcleopatra,1606\nheels,2,antonyandcleopatra,1606\nmillion,2,antonyandcleopatra,1606\ngoal,2,antonyandcleopatra,1606\nhuge,2,antonyandcleopatra,1606\njolly,2,antonyandcleopatra,1606\nextremes,2,antonyandcleopatra,1606\nbeheld,2,antonyandcleopatra,1606\nself,2,antonyandcleopatra,1606\ntide,2,antonyandcleopatra,1606\npost,2,antonyandcleopatra,1606\nlevity,2,antonyandcleopatra,1606\nbade,2,antonyandcleopatra,1606\nnurse,2,antonyandcleopatra,1606\nresiding,2,antonyandcleopatra,1606\ncountryman,2,antonyandcleopatra,1606\ninvite,2,antonyandcleopatra,1606\nlip,2,antonyandcleopatra,1606\nmaster's,2,antonyandcleopatra,1606\nsheets,2,antonyandcleopatra,1606\nnature's,2,antonyandcleopatra,1606\nuntil,2,antonyandcleopatra,1606\nabroad,2,antonyandcleopatra,1606\nafeard,2,antonyandcleopatra,1606\ncement,2,antonyandcleopatra,1606\nsmiling,2,antonyandcleopatra,1606\nforced,2,antonyandcleopatra,1606\nArmenia,2,antonyandcleopatra,1606\ndread,2,antonyandcleopatra,1606\nwarlike,2,antonyandcleopatra,1606\nmeeting,2,antonyandcleopatra,1606\nstreet,2,antonyandcleopatra,1606\nwhip,2,antonyandcleopatra,1606\nfully,2,antonyandcleopatra,1606\ncrocodile,2,antonyandcleopatra,1606\nbiting,2,antonyandcleopatra,1606\nAway,2,antonyandcleopatra,1606\nDissolve,2,antonyandcleopatra,1606\nhenceforth,2,antonyandcleopatra,1606\nstrokes,2,antonyandcleopatra,1606\nAmen,2,antonyandcleopatra,1606\nsometimes,2,antonyandcleopatra,1606\nfleeting,2,antonyandcleopatra,1606\nattendants,2,antonyandcleopatra,1606\nWithout,2,antonyandcleopatra,1606\npeep,2,antonyandcleopatra,1606\nharms,2,antonyandcleopatra,1606\nbreaking,2,antonyandcleopatra,1606\ncontend,2,antonyandcleopatra,1606\ncontent,2,antonyandcleopatra,1606\nsimple,2,antonyandcleopatra,1606\nwitness,2,antonyandcleopatra,1606\nhired,2,antonyandcleopatra,1606\nlover's,2,antonyandcleopatra,1606\nNote,2,antonyandcleopatra,1606\nemploy,2,antonyandcleopatra,1606\ndog,2,antonyandcleopatra,1606\nhonour'd,2,antonyandcleopatra,1606\nharsh,2,antonyandcleopatra,1606\nmud,2,antonyandcleopatra,1606\nperchance,2,antonyandcleopatra,1606\nWhip,2,antonyandcleopatra,1606\nframe,2,antonyandcleopatra,1606\nRich,2,antonyandcleopatra,1606\nha't,2,antonyandcleopatra,1606\nwithhold,2,antonyandcleopatra,1606\ninstruction,2,antonyandcleopatra,1606\nbred,2,antonyandcleopatra,1606\ntie,2,antonyandcleopatra,1606\nTouch,2,antonyandcleopatra,1606\ndotage,2,antonyandcleopatra,1606\nToo,2,antonyandcleopatra,1606\nentreated,2,antonyandcleopatra,1606\ndivided,2,antonyandcleopatra,1606\npirates,2,antonyandcleopatra,1606\nstol'n,2,antonyandcleopatra,1606\nprivate,2,antonyandcleopatra,1606\nshouting,2,antonyandcleopatra,1606\ndoting,2,antonyandcleopatra,1606\nforbear,2,antonyandcleopatra,1606\nremembrance,2,antonyandcleopatra,1606\nbreathe,2,antonyandcleopatra,1606\nbids,2,antonyandcleopatra,1606\nshape,2,antonyandcleopatra,1606\nflutes,2,antonyandcleopatra,1606\n'Antony,2,antonyandcleopatra,1606\norder,2,antonyandcleopatra,1606\ne'er,2,antonyandcleopatra,1606\nturn'd,2,antonyandcleopatra,1606\nsharp,2,antonyandcleopatra,1606\nschoolmaster,2,antonyandcleopatra,1606\ntroubled,3,antonyandcleopatra,1606\nmeet,3,antonyandcleopatra,1606\nquality,3,antonyandcleopatra,1606\nforbid,3,antonyandcleopatra,1606\nswords,3,antonyandcleopatra,1606\ntaking,3,antonyandcleopatra,1606\nSextus,3,antonyandcleopatra,1606\nfancy,3,antonyandcleopatra,1606\nPhilippi,3,antonyandcleopatra,1606\nmotion,3,antonyandcleopatra,1606\npreparation,3,antonyandcleopatra,1606\noffended,3,antonyandcleopatra,1606\nmend,3,antonyandcleopatra,1606\nWilt,3,antonyandcleopatra,1606\nspace,3,antonyandcleopatra,1606\nreserved,3,antonyandcleopatra,1606\nsingle,3,antonyandcleopatra,1606\nspake,3,antonyandcleopatra,1606\nwhile,3,antonyandcleopatra,1606\noffer,3,antonyandcleopatra,1606\nwithal,3,antonyandcleopatra,1606\nsigns,3,antonyandcleopatra,1606\nunder,3,antonyandcleopatra,1606\nodds,3,antonyandcleopatra,1606\ncheeks,3,antonyandcleopatra,1606\nsold,3,antonyandcleopatra,1606\nthou'rt,3,antonyandcleopatra,1606\ncheek,3,antonyandcleopatra,1606\namity,3,antonyandcleopatra,1606\nshe's,3,antonyandcleopatra,1606\nocean,3,antonyandcleopatra,1606\nsit,3,antonyandcleopatra,1606\nbound,3,antonyandcleopatra,1606\nlight,3,antonyandcleopatra,1606\nthink'st,3,antonyandcleopatra,1606\nfleet,3,antonyandcleopatra,1606\n'twas,3,antonyandcleopatra,1606\nthrone,3,antonyandcleopatra,1606\nabused,3,antonyandcleopatra,1606\nperil,3,antonyandcleopatra,1606\nbeloved,3,antonyandcleopatra,1606\nplay'd,3,antonyandcleopatra,1606\nsends,3,antonyandcleopatra,1606\nread,3,antonyandcleopatra,1606\nDiomed,3,antonyandcleopatra,1606\nworst,3,antonyandcleopatra,1606\noffence,3,antonyandcleopatra,1606\nwrong,3,antonyandcleopatra,1606\nheavens,3,antonyandcleopatra,1606\ncommon,3,antonyandcleopatra,1606\nTurn,3,antonyandcleopatra,1606\nseeks,3,antonyandcleopatra,1606\ndearly,3,antonyandcleopatra,1606\nWhilst,3,antonyandcleopatra,1606\nabove,3,antonyandcleopatra,1606\ngirls,3,antonyandcleopatra,1606\nfeet,3,antonyandcleopatra,1606\npunish,3,antonyandcleopatra,1606\nsaucy,3,antonyandcleopatra,1606\nflesh,3,antonyandcleopatra,1606\nHence,3,antonyandcleopatra,1606\nMight,3,antonyandcleopatra,1606\nmirth,3,antonyandcleopatra,1606\nwise,3,antonyandcleopatra,1606\nsense,3,antonyandcleopatra,1606\nmerely,3,antonyandcleopatra,1606\nauthority,3,antonyandcleopatra,1606\nchamber,3,antonyandcleopatra,1606\n'But,3,antonyandcleopatra,1606\ndrinking,3,antonyandcleopatra,1606\nneither,3,antonyandcleopatra,1606\nblows,3,antonyandcleopatra,1606\nblown,3,antonyandcleopatra,1606\nbrings,3,antonyandcleopatra,1606\nmeant,3,antonyandcleopatra,1606\nbless,3,antonyandcleopatra,1606\neast,3,antonyandcleopatra,1606\nconqueror,3,antonyandcleopatra,1606\npass,3,antonyandcleopatra,1606\nVI,3,antonyandcleopatra,1606\nmonstrous,3,antonyandcleopatra,1606\nJulius,3,antonyandcleopatra,1606\nprove,3,antonyandcleopatra,1606\nwhore,3,antonyandcleopatra,1606\nvaliant,3,antonyandcleopatra,1606\nsits,3,antonyandcleopatra,1606\ngrief,3,antonyandcleopatra,1606\nchildren,3,antonyandcleopatra,1606\nstruck,3,antonyandcleopatra,1606\nweak,3,antonyandcleopatra,1606\ncaptains,3,antonyandcleopatra,1606\nDies,3,antonyandcleopatra,1606\nserpent,3,antonyandcleopatra,1606\nMecaenas,3,antonyandcleopatra,1606\npains,3,antonyandcleopatra,1606\nBoth,3,antonyandcleopatra,1606\nquite,3,antonyandcleopatra,1606\nimpatience,3,antonyandcleopatra,1606\nconquering,3,antonyandcleopatra,1606\naffection,3,antonyandcleopatra,1606\nha,3,antonyandcleopatra,1606\npromises,3,antonyandcleopatra,1606\nservant,3,antonyandcleopatra,1606\nrepent,3,antonyandcleopatra,1606\nHere's,3,antonyandcleopatra,1606\nBest,3,antonyandcleopatra,1606\nfavour,3,antonyandcleopatra,1606\nsafe,3,antonyandcleopatra,1606\ntongues,3,antonyandcleopatra,1606\nenforce,3,antonyandcleopatra,1606\nEgypt's,3,antonyandcleopatra,1606\ntouch'd,3,antonyandcleopatra,1606\nburied,3,antonyandcleopatra,1606\napproach,3,antonyandcleopatra,1606\nslime,3,antonyandcleopatra,1606\nmove,3,antonyandcleopatra,1606\nspend,3,antonyandcleopatra,1606\nready,3,antonyandcleopatra,1606\nvalour,3,antonyandcleopatra,1606\nfront,3,antonyandcleopatra,1606\nPompey's,3,antonyandcleopatra,1606\nArmy,3,antonyandcleopatra,1606\nknit,3,antonyandcleopatra,1606\nappears,3,antonyandcleopatra,1606\nnobleness,3,antonyandcleopatra,1606\nfour,3,antonyandcleopatra,1606\nfoul,3,antonyandcleopatra,1606\nmarching,3,antonyandcleopatra,1606\ncity,3,antonyandcleopatra,1606\nbrothers,3,antonyandcleopatra,1606\nasp,3,antonyandcleopatra,1606\nship,3,antonyandcleopatra,1606\nmock,3,antonyandcleopatra,1606\npoint,3,antonyandcleopatra,1606\nbosom,3,antonyandcleopatra,1606\nyielded,3,antonyandcleopatra,1606\nserpents,3,antonyandcleopatra,1606\nyare,3,antonyandcleopatra,1606\nfold,3,antonyandcleopatra,1606\nInto,3,antonyandcleopatra,1606\nwitch,3,antonyandcleopatra,1606\nBetween,3,antonyandcleopatra,1606\nequal,3,antonyandcleopatra,1606\nActium,3,antonyandcleopatra,1606\ncouldst,3,antonyandcleopatra,1606\nOctavius,3,antonyandcleopatra,1606\nknew'st,3,antonyandcleopatra,1606\nbelow,3,antonyandcleopatra,1606\nMisenum,3,antonyandcleopatra,1606\nSilius,3,antonyandcleopatra,1606\nAlack,3,antonyandcleopatra,1606\nsirrah,3,antonyandcleopatra,1606\nslain,3,antonyandcleopatra,1606\nwritten,3,antonyandcleopatra,1606\nyoung,3,antonyandcleopatra,1606\nbasket,3,antonyandcleopatra,1606\nRoyal,3,antonyandcleopatra,1606\nApproach,3,antonyandcleopatra,1606\nTrain,3,antonyandcleopatra,1606\nscars,3,antonyandcleopatra,1606\npowers,3,antonyandcleopatra,1606\nchild,3,antonyandcleopatra,1606\nquestion,3,antonyandcleopatra,1606\napproaches,3,antonyandcleopatra,1606\nkisses,3,antonyandcleopatra,1606\ndidst,3,antonyandcleopatra,1606\ncourage,3,antonyandcleopatra,1606\ndearest,3,antonyandcleopatra,1606\nkissing,3,antonyandcleopatra,1606\nthick,3,antonyandcleopatra,1606\nwoe,3,antonyandcleopatra,1606\ndevils,3,antonyandcleopatra,1606\nblow,3,antonyandcleopatra,1606\nneed,3,antonyandcleopatra,1606\nhigher,3,antonyandcleopatra,1606\nover,3,antonyandcleopatra,1606\nnumber,3,antonyandcleopatra,1606\napart,3,antonyandcleopatra,1606\nParthian,3,antonyandcleopatra,1606\ndesires,3,antonyandcleopatra,1606\nclose,3,antonyandcleopatra,1606\nVARRIUS,3,antonyandcleopatra,1606\nget,3,antonyandcleopatra,1606\nFriends,3,antonyandcleopatra,1606\noft,3,antonyandcleopatra,1606\ncourt,3,antonyandcleopatra,1606\nknife,3,antonyandcleopatra,1606\nfetch,3,antonyandcleopatra,1606\nbelieve,3,antonyandcleopatra,1606\narms,3,antonyandcleopatra,1606\nends,3,antonyandcleopatra,1606\nFourth,3,antonyandcleopatra,1606\nhair,3,antonyandcleopatra,1606\ntaken,3,antonyandcleopatra,1606\nmarry,3,antonyandcleopatra,1606\nfigs,3,antonyandcleopatra,1606\nwhat's,3,antonyandcleopatra,1606\ndull,3,antonyandcleopatra,1606\nForbear,3,antonyandcleopatra,1606\nwent,3,antonyandcleopatra,1606\nfollowers,3,antonyandcleopatra,1606\nStrike,3,antonyandcleopatra,1606\nAntony's,3,antonyandcleopatra,1606\ncloud,3,antonyandcleopatra,1606\nJupiter,3,antonyandcleopatra,1606\nletter,3,antonyandcleopatra,1606\nPtolemy,3,antonyandcleopatra,1606\n'em,3,antonyandcleopatra,1606\nminute,3,antonyandcleopatra,1606\nofficer,3,antonyandcleopatra,1606\nfill,3,antonyandcleopatra,1606\nfolly,3,antonyandcleopatra,1606\nparticular,3,antonyandcleopatra,1606\nLead,3,antonyandcleopatra,1606\nhost,3,antonyandcleopatra,1606\nshows,3,antonyandcleopatra,1606\nwhither,3,antonyandcleopatra,1606\nfate,3,antonyandcleopatra,1606\nVery,3,antonyandcleopatra,1606\nOfficer,3,antonyandcleopatra,1606\nEach,3,antonyandcleopatra,1606\ntall,3,antonyandcleopatra,1606\ncup,3,antonyandcleopatra,1606\ncarry,3,antonyandcleopatra,1606\nwilt,3,antonyandcleopatra,1606\nshore,3,antonyandcleopatra,1606\nPompeius,3,antonyandcleopatra,1606\nholy,3,antonyandcleopatra,1606\nquit,3,antonyandcleopatra,1606\nNone,3,antonyandcleopatra,1606\ngreen,3,antonyandcleopatra,1606\ncut,3,antonyandcleopatra,1606\nWho's,3,antonyandcleopatra,1606\nrevolt,3,antonyandcleopatra,1606\nfeeding,3,antonyandcleopatra,1606\nWherefore,3,antonyandcleopatra,1606\nseal,3,antonyandcleopatra,1606\ngives,3,antonyandcleopatra,1606\nintents,3,antonyandcleopatra,1606\nelements,3,antonyandcleopatra,1606\nlow,3,antonyandcleopatra,1606\ncaptain's,3,antonyandcleopatra,1606\nacts,3,antonyandcleopatra,1606\ngoodness,3,antonyandcleopatra,1606\npresence,3,antonyandcleopatra,1606\nNilus,3,antonyandcleopatra,1606\ntells,3,antonyandcleopatra,1606\nHe'll,3,antonyandcleopatra,1606\nentreat,3,antonyandcleopatra,1606\nport,3,antonyandcleopatra,1606\ngreeting,3,antonyandcleopatra,1606\nsickness,3,antonyandcleopatra,1606\nNothing,3,antonyandcleopatra,1606\nhonesty,3,antonyandcleopatra,1606\nspirits,3,antonyandcleopatra,1606\nKisses,3,antonyandcleopatra,1606\nleast,3,antonyandcleopatra,1606\nrevolted,3,antonyandcleopatra,1606\nbegins,3,antonyandcleopatra,1606\nlearn,3,antonyandcleopatra,1606\nremember,3,antonyandcleopatra,1606\nglory,3,antonyandcleopatra,1606\nDoes,3,antonyandcleopatra,1606\nfled,3,antonyandcleopatra,1606\nIndeed,3,antonyandcleopatra,1606\nmarriage,3,antonyandcleopatra,1606\namorous,3,antonyandcleopatra,1606\nbeauty,3,antonyandcleopatra,1606\nVII,3,antonyandcleopatra,1606\nlist,3,antonyandcleopatra,1606\nwidow,3,antonyandcleopatra,1606\nYou'll,3,antonyandcleopatra,1606\nLest,3,antonyandcleopatra,1606\nsudden,3,antonyandcleopatra,1606\nrecord,3,antonyandcleopatra,1606\ntrees,3,antonyandcleopatra,1606\nkill,3,antonyandcleopatra,1606\nmarket,3,antonyandcleopatra,1606\nSicyon,3,antonyandcleopatra,1606\ne'en,3,antonyandcleopatra,1606\nBrutus,4,antonyandcleopatra,1606\nsuffer,4,antonyandcleopatra,1606\ndays,4,antonyandcleopatra,1606\nhaste,4,antonyandcleopatra,1606\njoy,4,antonyandcleopatra,1606\nvillain,4,antonyandcleopatra,1606\nmelt,4,antonyandcleopatra,1606\nheld,4,antonyandcleopatra,1606\nTell,4,antonyandcleopatra,1606\nlaugh,4,antonyandcleopatra,1606\nrun,4,antonyandcleopatra,1606\ntruth,4,antonyandcleopatra,1606\nremain,4,antonyandcleopatra,1606\nWhom,4,antonyandcleopatra,1606\ncare,4,antonyandcleopatra,1606\ncast,4,antonyandcleopatra,1606\nPHILO,4,antonyandcleopatra,1606\ngrown,4,antonyandcleopatra,1606\ngracious,4,antonyandcleopatra,1606\nDEMETRIUS,4,antonyandcleopatra,1606\ncame,4,antonyandcleopatra,1606\nGentle,4,antonyandcleopatra,1606\nview,4,antonyandcleopatra,1606\nstands,4,antonyandcleopatra,1606\nlaugh'd,4,antonyandcleopatra,1606\nworth,4,antonyandcleopatra,1606\nson,4,antonyandcleopatra,1606\nlooks,4,antonyandcleopatra,1606\nMusic,4,antonyandcleopatra,1606\nworse,4,antonyandcleopatra,1606\npiece,4,antonyandcleopatra,1606\nfault,4,antonyandcleopatra,1606\nAthens,4,antonyandcleopatra,1606\nfeel,4,antonyandcleopatra,1606\nAntonius,4,antonyandcleopatra,1606\ninfinite,4,antonyandcleopatra,1606\nbeaten,4,antonyandcleopatra,1606\ngrow,4,antonyandcleopatra,1606\nwind,4,antonyandcleopatra,1606\nwishes,4,antonyandcleopatra,1606\nkneel,4,antonyandcleopatra,1606\nOne,4,antonyandcleopatra,1606\nwant,4,antonyandcleopatra,1606\nrest,4,antonyandcleopatra,1606\ncunning,4,antonyandcleopatra,1606\nparts,4,antonyandcleopatra,1606\nFollow,4,antonyandcleopatra,1606\noffers,4,antonyandcleopatra,1606\nsick,4,antonyandcleopatra,1606\nknowledge,4,antonyandcleopatra,1606\nI',4,antonyandcleopatra,1606\nmorning,4,antonyandcleopatra,1606\nAt,4,antonyandcleopatra,1606\ndeeds,4,antonyandcleopatra,1606\nbad,4,antonyandcleopatra,1606\ndenied,4,antonyandcleopatra,1606\nto't,4,antonyandcleopatra,1606\nHo,4,antonyandcleopatra,1606\nmeans,4,antonyandcleopatra,1606\nsport,4,antonyandcleopatra,1606\nHad,4,antonyandcleopatra,1606\npast,4,antonyandcleopatra,1606\nears,4,antonyandcleopatra,1606\nnavy,4,antonyandcleopatra,1606\nobey,4,antonyandcleopatra,1606\ngod,4,antonyandcleopatra,1606\nsorry,4,antonyandcleopatra,1606\nPrithee,4,antonyandcleopatra,1606\ndost,4,antonyandcleopatra,1606\nPut,4,antonyandcleopatra,1606\nANTONY's,4,antonyandcleopatra,1606\nlonger,4,antonyandcleopatra,1606\nsing,4,antonyandcleopatra,1606\nbreath,4,antonyandcleopatra,1606\nbreast,4,antonyandcleopatra,1606\nexcellent,4,antonyandcleopatra,1606\nstood,4,antonyandcleopatra,1606\nJewry,4,antonyandcleopatra,1606\nhusband,4,antonyandcleopatra,1606\nbetray'd,4,antonyandcleopatra,1606\nmingle,4,antonyandcleopatra,1606\nmorn,4,antonyandcleopatra,1606\ntrain,4,antonyandcleopatra,1606\nloss,4,antonyandcleopatra,1606\nmen's,4,antonyandcleopatra,1606\neasy,4,antonyandcleopatra,1606\nsoldier's,4,antonyandcleopatra,1606\nround,4,antonyandcleopatra,1606\nTrumpets,4,antonyandcleopatra,1606\ndeny,4,antonyandcleopatra,1606\nplain,4,antonyandcleopatra,1606\ndrawn,4,antonyandcleopatra,1606\npluck,4,antonyandcleopatra,1606\nkingdoms,4,antonyandcleopatra,1606\npair,4,antonyandcleopatra,1606\npaid,4,antonyandcleopatra,1606\ntwain,4,antonyandcleopatra,1606\nhate,4,antonyandcleopatra,1606\nfall'n,4,antonyandcleopatra,1606\nAlarum,4,antonyandcleopatra,1606\nye,4,antonyandcleopatra,1606\narmour,4,antonyandcleopatra,1606\nright,4,antonyandcleopatra,1606\nnew,4,antonyandcleopatra,1606\nhaving,4,antonyandcleopatra,1606\nspoken,4,antonyandcleopatra,1606\nMENECRATES,4,antonyandcleopatra,1606\nnay,4,antonyandcleopatra,1606\nAgainst,4,antonyandcleopatra,1606\nlords,4,antonyandcleopatra,1606\nsquare,4,antonyandcleopatra,1606\nalmost,4,antonyandcleopatra,1606\nSicily,4,antonyandcleopatra,1606\nconquer'd,4,antonyandcleopatra,1606\nSit,4,antonyandcleopatra,1606\nyou'll,4,antonyandcleopatra,1606\nTherefore,4,antonyandcleopatra,1606\nawhile,4,antonyandcleopatra,1606\nLord,4,antonyandcleopatra,1606\nseveral,4,antonyandcleopatra,1606\nDost,4,antonyandcleopatra,1606\nmortal,4,antonyandcleopatra,1606\nleaves,4,antonyandcleopatra,1606\nteeth,4,antonyandcleopatra,1606\nstars,4,antonyandcleopatra,1606\npresently,4,antonyandcleopatra,1606\nslave,4,antonyandcleopatra,1606\nMardian,4,antonyandcleopatra,1606\nfather's,4,antonyandcleopatra,1606\nnaught,4,antonyandcleopatra,1606\nBeing,4,antonyandcleopatra,1606\nfire,4,antonyandcleopatra,1606\ngrave,4,antonyandcleopatra,1606\nneck,4,antonyandcleopatra,1606\nsides,4,antonyandcleopatra,1606\nGuardsman,4,antonyandcleopatra,1606\nthird,4,antonyandcleopatra,1606\nDead,4,antonyandcleopatra,1606\nheavy,4,antonyandcleopatra,1606\nThink,4,antonyandcleopatra,1606\nCan,4,antonyandcleopatra,1606\nduty,4,antonyandcleopatra,1606\nrise,4,antonyandcleopatra,1606\naudience,4,antonyandcleopatra,1606\nrage,4,antonyandcleopatra,1606\napace,4,antonyandcleopatra,1606\nbounty,4,antonyandcleopatra,1606\nhappy,4,antonyandcleopatra,1606\nhail,4,antonyandcleopatra,1606\nBid,4,antonyandcleopatra,1606\nHerod,4,antonyandcleopatra,1606\npoison,4,antonyandcleopatra,1606\nangry,4,antonyandcleopatra,1606\nmessengers,4,antonyandcleopatra,1606\ngrant,4,antonyandcleopatra,1606\nfame,4,antonyandcleopatra,1606\npleased,4,antonyandcleopatra,1606\nwounds,4,antonyandcleopatra,1606\neven,4,antonyandcleopatra,1606\nfie,4,antonyandcleopatra,1606\nFulvia's,4,antonyandcleopatra,1606\npublic,4,antonyandcleopatra,1606\nfare,4,antonyandcleopatra,1606\nthousand,4,antonyandcleopatra,1606\nreason,4,antonyandcleopatra,1606\nstroke,4,antonyandcleopatra,1606\nwild,4,antonyandcleopatra,1606\nhome,4,antonyandcleopatra,1606\nstreets,4,antonyandcleopatra,1606\nlegions,4,antonyandcleopatra,1606\nCleopatra's,4,antonyandcleopatra,1606\ndrunk,4,antonyandcleopatra,1606\nkingdom,4,antonyandcleopatra,1606\ndrums,4,antonyandcleopatra,1606\nSeleucus,4,antonyandcleopatra,1606\ntherein,4,antonyandcleopatra,1606\nThrough,4,antonyandcleopatra,1606\ngoes,4,antonyandcleopatra,1606\nconfound,4,antonyandcleopatra,1606\nmet,4,antonyandcleopatra,1606\nGreat,4,antonyandcleopatra,1606\nwound,4,antonyandcleopatra,1606\nvirtue,4,antonyandcleopatra,1606\nfollow'd,4,antonyandcleopatra,1606\ntry,4,antonyandcleopatra,1606\ncatch,4,antonyandcleopatra,1606\nsuccess,4,antonyandcleopatra,1606\nTAURUS,4,antonyandcleopatra,1606\nking,4,antonyandcleopatra,1606\nten,4,antonyandcleopatra,1606\nlack,4,antonyandcleopatra,1606\ntold,5,antonyandcleopatra,1606\nfor't,5,antonyandcleopatra,1606\nspeech,5,antonyandcleopatra,1606\ntreasure,5,antonyandcleopatra,1606\nalike,5,antonyandcleopatra,1606\nhelp,5,antonyandcleopatra,1606\nHelp,5,antonyandcleopatra,1606\nhonourable,5,antonyandcleopatra,1606\nabsolute,5,antonyandcleopatra,1606\nbecome,5,antonyandcleopatra,1606\ncase,5,antonyandcleopatra,1606\nsoon,5,antonyandcleopatra,1606\nJove,5,antonyandcleopatra,1606\nsomething,5,antonyandcleopatra,1606\nmerry,5,antonyandcleopatra,1606\n's,5,antonyandcleopatra,1606\nfaults,5,antonyandcleopatra,1606\nourselves,5,antonyandcleopatra,1606\nbrain,5,antonyandcleopatra,1606\nOut,5,antonyandcleopatra,1606\nsun,5,antonyandcleopatra,1606\ndies,5,antonyandcleopatra,1606\nProculeius,5,antonyandcleopatra,1606\noffice,5,antonyandcleopatra,1606\ndesire,5,antonyandcleopatra,1606\nDraw,5,antonyandcleopatra,1606\nconquer,5,antonyandcleopatra,1606\nmusic,5,antonyandcleopatra,1606\ndeserved,5,antonyandcleopatra,1606\nAdieu,5,antonyandcleopatra,1606\ngave,5,antonyandcleopatra,1606\nbehind,5,antonyandcleopatra,1606\ndoth,5,antonyandcleopatra,1606\nidleness,5,antonyandcleopatra,1606\nbegin,5,antonyandcleopatra,1606\ndeed,5,antonyandcleopatra,1606\nFortune,5,antonyandcleopatra,1606\nbeat,5,antonyandcleopatra,1606\nmanner,5,antonyandcleopatra,1606\nYes,5,antonyandcleopatra,1606\ntwenty,5,antonyandcleopatra,1606\nMarcus,5,antonyandcleopatra,1606\nbrought,5,antonyandcleopatra,1606\nspeaks,5,antonyandcleopatra,1606\nCall,5,antonyandcleopatra,1606\nMore,5,antonyandcleopatra,1606\ncourse,5,antonyandcleopatra,1606\nfoot,5,antonyandcleopatra,1606\nHast,5,antonyandcleopatra,1606\nHark,5,antonyandcleopatra,1606\njudgment,5,antonyandcleopatra,1606\naction,5,antonyandcleopatra,1606\neye,5,antonyandcleopatra,1606\nSILIUS,5,antonyandcleopatra,1606\nborne,5,antonyandcleopatra,1606\nquickly,5,antonyandcleopatra,1606\nyouth,5,antonyandcleopatra,1606\nknave,5,antonyandcleopatra,1606\npurposes,5,antonyandcleopatra,1606\nmind,5,antonyandcleopatra,1606\nthere's,5,antonyandcleopatra,1606\nlabour,5,antonyandcleopatra,1606\nfree,5,antonyandcleopatra,1606\nMade,5,antonyandcleopatra,1606\nNile,5,antonyandcleopatra,1606\nlieutenant,5,antonyandcleopatra,1606\nItaly,5,antonyandcleopatra,1606\nflies,5,antonyandcleopatra,1606\nformer,5,antonyandcleopatra,1606\nthrow,5,antonyandcleopatra,1606\nwin,5,antonyandcleopatra,1606\nbeseech,5,antonyandcleopatra,1606\nstage,5,antonyandcleopatra,1606\nlust,5,antonyandcleopatra,1606\nNoble,5,antonyandcleopatra,1606\nShow,5,antonyandcleopatra,1606\nThat's,5,antonyandcleopatra,1606\nwork,5,antonyandcleopatra,1606\nMars,5,antonyandcleopatra,1606\npassion,5,antonyandcleopatra,1606\nshown,5,antonyandcleopatra,1606\nthank,5,antonyandcleopatra,1606\nlives,5,antonyandcleopatra,1606\nVentidius,5,antonyandcleopatra,1606\nseek,5,antonyandcleopatra,1606\nfellows,5,antonyandcleopatra,1606\ntidings,5,antonyandcleopatra,1606\nbattle,5,antonyandcleopatra,1606\nsound,5,antonyandcleopatra,1606\nPray,5,antonyandcleopatra,1606\nperson,5,antonyandcleopatra,1606\nhours,5,antonyandcleopatra,1606\nprayer,5,antonyandcleopatra,1606\nCanidius,5,antonyandcleopatra,1606\nwhilst,5,antonyandcleopatra,1606\nreturn,5,antonyandcleopatra,1606\neat,5,antonyandcleopatra,1606\npetty,5,antonyandcleopatra,1606\nmad,5,antonyandcleopatra,1606\nwrite,5,antonyandcleopatra,1606\nsovereign,5,antonyandcleopatra,1606\neunuch,5,antonyandcleopatra,1606\nfather,5,antonyandcleopatra,1606\nattend,5,antonyandcleopatra,1606\nshake,5,antonyandcleopatra,1606\nwithout,5,antonyandcleopatra,1606\nkind,5,antonyandcleopatra,1606\nships,5,antonyandcleopatra,1606\nV,6,antonyandcleopatra,1606\ntimes,6,antonyandcleopatra,1606\npity,6,antonyandcleopatra,1606\nHear,6,antonyandcleopatra,1606\nroyal,6,antonyandcleopatra,1606\nhealth,6,antonyandcleopatra,1606\nBear,6,antonyandcleopatra,1606\nSyria,6,antonyandcleopatra,1606\nboys,6,antonyandcleopatra,1606\ntears,6,antonyandcleopatra,1606\nfought,6,antonyandcleopatra,1606\ncalls,6,antonyandcleopatra,1606\nlies,6,antonyandcleopatra,1606\ntrust,6,antonyandcleopatra,1606\nGALLUS,6,antonyandcleopatra,1606\ncharge,6,antonyandcleopatra,1606\nsoft,6,antonyandcleopatra,1606\nGet,6,antonyandcleopatra,1606\nenough,6,antonyandcleopatra,1606\nyield,6,antonyandcleopatra,1606\nTheir,6,antonyandcleopatra,1606\nbecomes,6,antonyandcleopatra,1606\nThese,6,antonyandcleopatra,1606\nabout,6,antonyandcleopatra,1606\ndied,6,antonyandcleopatra,1606\nParthia,6,antonyandcleopatra,1606\ncolour,6,antonyandcleopatra,1606\neach,6,antonyandcleopatra,1606\nAn,6,antonyandcleopatra,1606\npatience,6,antonyandcleopatra,1606\nboy,6,antonyandcleopatra,1606\nforce,6,antonyandcleopatra,1606\nwhipp'd,6,antonyandcleopatra,1606\nair,6,antonyandcleopatra,1606\nneeds,6,antonyandcleopatra,1606\nany,6,antonyandcleopatra,1606\nfeast,6,antonyandcleopatra,1606\nmoon,6,antonyandcleopatra,1606\nless,6,antonyandcleopatra,1606\nloved,6,antonyandcleopatra,1606\nlose,6,antonyandcleopatra,1606\ncall'd,6,antonyandcleopatra,1606\nhang,6,antonyandcleopatra,1606\npraise,6,antonyandcleopatra,1606\nUnder,6,antonyandcleopatra,1606\nask,6,antonyandcleopatra,1606\nprepared,6,antonyandcleopatra,1606\nthanks,6,antonyandcleopatra,1606\nlead,6,antonyandcleopatra,1606\noften,6,antonyandcleopatra,1606\nshouldst,6,antonyandcleopatra,1606\nPeace,6,antonyandcleopatra,1606\nours,6,antonyandcleopatra,1606\nsay'st,6,antonyandcleopatra,1606\nere,6,antonyandcleopatra,1606\nalready,6,antonyandcleopatra,1606\nknows,6,antonyandcleopatra,1606\ngreatest,6,antonyandcleopatra,1606\nsorrow,6,antonyandcleopatra,1606\nsays,6,antonyandcleopatra,1606\nThus,6,antonyandcleopatra,1606\nthemselves,6,antonyandcleopatra,1606\nfound,6,antonyandcleopatra,1606\nserve,6,antonyandcleopatra,1606\nnext,6,antonyandcleopatra,1606\nserved,6,antonyandcleopatra,1606\nEven,6,antonyandcleopatra,1606\nsails,6,antonyandcleopatra,1606\nlived,6,antonyandcleopatra,1606\nis't,6,antonyandcleopatra,1606\nempire,6,antonyandcleopatra,1606\nprithee,6,antonyandcleopatra,1606\nseem,6,antonyandcleopatra,1606\nMine,6,antonyandcleopatra,1606\nKnow,6,antonyandcleopatra,1606\nled,6,antonyandcleopatra,1606\ntriumph,6,antonyandcleopatra,1606\nSince,6,antonyandcleopatra,1606\nlate,6,antonyandcleopatra,1606\nweight,6,antonyandcleopatra,1606\nHe's,6,antonyandcleopatra,1606\nBring,6,antonyandcleopatra,1606\nshalt,6,antonyandcleopatra,1606\ngreatness,6,antonyandcleopatra,1606\ncrown,6,antonyandcleopatra,1606\nwouldst,6,antonyandcleopatra,1606\nanswer,7,antonyandcleopatra,1606\no'er,7,antonyandcleopatra,1606\nappear,7,antonyandcleopatra,1606\nstrength,7,antonyandcleopatra,1606\nsaw,7,antonyandcleopatra,1606\nwords,7,antonyandcleopatra,1606\nnoise,7,antonyandcleopatra,1606\nset,7,antonyandcleopatra,1606\nWas,7,antonyandcleopatra,1606\nturn,7,antonyandcleopatra,1606\nheaven,7,antonyandcleopatra,1606\nin't,7,antonyandcleopatra,1606\nkept,7,antonyandcleopatra,1606\nstay,7,antonyandcleopatra,1606\nbed,7,antonyandcleopatra,1606\nplay,7,antonyandcleopatra,1606\nweep,7,antonyandcleopatra,1606\nloud,7,antonyandcleopatra,1606\nact,7,antonyandcleopatra,1606\ngreater,7,antonyandcleopatra,1606\nknew,7,antonyandcleopatra,1606\ngrace,7,antonyandcleopatra,1606\nfield,7,antonyandcleopatra,1606\nhalf,7,antonyandcleopatra,1606\nmessenger,7,antonyandcleopatra,1606\nSELEUCUS,7,antonyandcleopatra,1606\narm,7,antonyandcleopatra,1606\nfool,7,antonyandcleopatra,1606\nchance,7,antonyandcleopatra,1606\nthrough,7,antonyandcleopatra,1606\nFlourish,7,antonyandcleopatra,1606\nmajesty,7,antonyandcleopatra,1606\nstrike,7,antonyandcleopatra,1606\nSee,7,antonyandcleopatra,1606\ngeneral,7,antonyandcleopatra,1606\nend,7,antonyandcleopatra,1606\nknown,7,antonyandcleopatra,1606\nstate,7,antonyandcleopatra,1606\nletters,7,antonyandcleopatra,1606\nWere,7,antonyandcleopatra,1606\nnear,7,antonyandcleopatra,1606\nWe'll,7,antonyandcleopatra,1606\nwhy,7,antonyandcleopatra,1606\nCLEOPATRA's,7,antonyandcleopatra,1606\ndying,7,antonyandcleopatra,1606\nold,7,antonyandcleopatra,1606\nhour,7,antonyandcleopatra,1606\ncomfort,7,antonyandcleopatra,1606\nWelcome,7,antonyandcleopatra,1606\nWhere's,7,antonyandcleopatra,1606\nuse,7,antonyandcleopatra,1606\nwe'll,7,antonyandcleopatra,1606\ncold,7,antonyandcleopatra,1606\npurpose,7,antonyandcleopatra,1606\non't,7,antonyandcleopatra,1606\nnature,7,antonyandcleopatra,1606\ndispatch,7,antonyandcleopatra,1606\nbehold,7,antonyandcleopatra,1606\nmy,263,antonyandcleopatra,1606\nVENTIDIUS,8,antonyandcleopatra,1606\nmistress,8,antonyandcleopatra,1606\nIsis,8,antonyandcleopatra,1606\nWhose,8,antonyandcleopatra,1606\nhead,8,antonyandcleopatra,1606\nsure,8,antonyandcleopatra,1606\n't,8,antonyandcleopatra,1606\nwithin,8,antonyandcleopatra,1606\nAttendants,8,antonyandcleopatra,1606\nfalse,8,antonyandcleopatra,1606\nwine,8,antonyandcleopatra,1606\nhe's,8,antonyandcleopatra,1606\nside,8,antonyandcleopatra,1606\ntherefore,8,antonyandcleopatra,1606\nbid,8,antonyandcleopatra,1606\npeople,8,antonyandcleopatra,1606\nSpeak,8,antonyandcleopatra,1606\ntongue,8,antonyandcleopatra,1606\nDolabella,8,antonyandcleopatra,1606\nYet,8,antonyandcleopatra,1606\nAre,8,antonyandcleopatra,1606\nHath,8,antonyandcleopatra,1606\nchange,8,antonyandcleopatra,1606\nfar,8,antonyandcleopatra,1606\nroom,8,antonyandcleopatra,1606\nnote,8,antonyandcleopatra,1606\nnone,8,antonyandcleopatra,1606\n'gainst,8,antonyandcleopatra,1606\ncomes,8,antonyandcleopatra,1606\nlet's,8,antonyandcleopatra,1606\nfair,8,antonyandcleopatra,1606\nthree,8,antonyandcleopatra,1606\nworm,8,antonyandcleopatra,1606\nfly,8,antonyandcleopatra,1606\ndo't,8,antonyandcleopatra,1606\nkiss,8,antonyandcleopatra,1606\nhope,8,antonyandcleopatra,1606\nemperor,8,antonyandcleopatra,1606\nhold,8,antonyandcleopatra,1606\nunto,8,antonyandcleopatra,1606\ncaptain,8,antonyandcleopatra,1606\nsweet,8,antonyandcleopatra,1606\nlie,8,antonyandcleopatra,1606\nAnother,8,antonyandcleopatra,1606\nsister,8,antonyandcleopatra,1606\ngoing,8,antonyandcleopatra,1606\ndare,8,antonyandcleopatra,1606\nsad,9,antonyandcleopatra,1606\ndraw,9,antonyandcleopatra,1606\nNor,9,antonyandcleopatra,1606\nbody,9,antonyandcleopatra,1606\nServant,9,antonyandcleopatra,1606\nworthy,9,antonyandcleopatra,1606\nservice,9,antonyandcleopatra,1606\nothers,9,antonyandcleopatra,1606\nwish,9,antonyandcleopatra,1606\nfriend,9,antonyandcleopatra,1606\nmean,9,antonyandcleopatra,1606\nspoke,9,antonyandcleopatra,1606\nAh,9,antonyandcleopatra,1606\nitself,9,antonyandcleopatra,1606\nsince,9,antonyandcleopatra,1606\nquick,9,antonyandcleopatra,1606\nLike,9,antonyandcleopatra,1606\nthat's,9,antonyandcleopatra,1606\nill,9,antonyandcleopatra,1606\nDERCETAS,9,antonyandcleopatra,1606\nIras,9,antonyandcleopatra,1606\nwelcome,9,antonyandcleopatra,1606\npresent,9,antonyandcleopatra,1606\nlittle,9,antonyandcleopatra,1606\nshow,9,antonyandcleopatra,1606\nAgrippa,9,antonyandcleopatra,1606\nwater,9,antonyandcleopatra,1606\ngentle,9,antonyandcleopatra,1606\nLook,9,antonyandcleopatra,1606\nMenas,9,antonyandcleopatra,1606\nonly,9,antonyandcleopatra,1606\narmy,9,antonyandcleopatra,1606\nTill,9,antonyandcleopatra,1606\nlay,9,antonyandcleopatra,1606\ngiven,9,antonyandcleopatra,1606\nseen,9,antonyandcleopatra,1606\nRoman,9,antonyandcleopatra,1606\nsleep,9,antonyandcleopatra,1606\nBefore,9,antonyandcleopatra,1606\nlive,9,antonyandcleopatra,1606\ncertain,9,antonyandcleopatra,1606\nshame,9,antonyandcleopatra,1606\ncommand,9,antonyandcleopatra,1606\nspirit,9,antonyandcleopatra,1606\nbusiness,10,antonyandcleopatra,1606\npeace,10,antonyandcleopatra,1606\ncamp,10,antonyandcleopatra,1606\nDIOMEDES,10,antonyandcleopatra,1606\nFarewell,10,antonyandcleopatra,1606\nEUPHRONIUS,10,antonyandcleopatra,1606\nOn,10,antonyandcleopatra,1606\nLet's,10,antonyandcleopatra,1606\nCAESAR's,10,antonyandcleopatra,1606\nSoldiers,10,antonyandcleopatra,1606\nlong,10,antonyandcleopatra,1606\nloves,10,antonyandcleopatra,1606\nthough,10,antonyandcleopatra,1606\nShould,10,antonyandcleopatra,1606\nreport,10,antonyandcleopatra,1606\nstand,10,antonyandcleopatra,1606\nbreak,10,antonyandcleopatra,1606\nne'er,10,antonyandcleopatra,1606\nhonest,10,antonyandcleopatra,1606\nstrong,10,antonyandcleopatra,1606\nalone,10,antonyandcleopatra,1606\nwhom,10,antonyandcleopatra,1606\nfirst,10,antonyandcleopatra,1606\near,10,antonyandcleopatra,1606\nlips,10,antonyandcleopatra,1606\nAlexas,10,antonyandcleopatra,1606\nMay,10,antonyandcleopatra,1606\ntwo,10,antonyandcleopatra,1606\nfurther,11,antonyandcleopatra,1606\nThere,11,antonyandcleopatra,1606\nfellow,11,antonyandcleopatra,1606\nafter,11,antonyandcleopatra,1606\nWhat's,11,antonyandcleopatra,1606\nwhole,11,antonyandcleopatra,1606\ngold,11,antonyandcleopatra,1606\nwhose,11,antonyandcleopatra,1606\nput,11,antonyandcleopatra,1606\nfarewell,11,antonyandcleopatra,1606\nsaid,11,antonyandcleopatra,1606\nleft,11,antonyandcleopatra,1606\nhands,11,antonyandcleopatra,1606\nlost,11,antonyandcleopatra,1606\nkeep,11,antonyandcleopatra,1606\nmonument,11,antonyandcleopatra,1606\nFrom,11,antonyandcleopatra,1606\nyours,11,antonyandcleopatra,1606\nSome,11,antonyandcleopatra,1606\nnor,11,antonyandcleopatra,1606\nThen,11,antonyandcleopatra,1606\nwho,11,antonyandcleopatra,1606\nthing,11,antonyandcleopatra,1606\nfall,11,antonyandcleopatra,1606\npalace,11,antonyandcleopatra,1606\nClown,11,antonyandcleopatra,1606\nhearts,11,antonyandcleopatra,1606\nhither,11,antonyandcleopatra,1606\nthoughts,11,antonyandcleopatra,1606\nTake,11,antonyandcleopatra,1606\nbrave,12,antonyandcleopatra,1606\nguard,12,antonyandcleopatra,1606\nthought,12,antonyandcleopatra,1606\ndrink,12,antonyandcleopatra,1606\nUpon,12,antonyandcleopatra,1606\ncall,12,antonyandcleopatra,1606\nanother,12,antonyandcleopatra,1606\nWho,12,antonyandcleopatra,1606\nagainst,12,antonyandcleopatra,1606\nfear,12,antonyandcleopatra,1606\nHere,12,antonyandcleopatra,1606\nThough,12,antonyandcleopatra,1606\nThere's,12,antonyandcleopatra,1606\nHer,12,antonyandcleopatra,1606\nII,12,antonyandcleopatra,1606\npleasure,12,antonyandcleopatra,1606\nblood,12,antonyandcleopatra,1606\nRe,12,antonyandcleopatra,1606\nho,12,antonyandcleopatra,1606\nplace,12,antonyandcleopatra,1606\nThird,12,antonyandcleopatra,1606\nmorrow,12,antonyandcleopatra,1606\nmarried,12,antonyandcleopatra,1606\npardon,12,antonyandcleopatra,1606\nhouse,12,antonyandcleopatra,1606\nsend,12,antonyandcleopatra,1606\nsent,12,antonyandcleopatra,1606\npoor,12,antonyandcleopatra,1606\nmakes,12,antonyandcleopatra,1606\na,268,antonyandcleopatra,1606\nWould,13,antonyandcleopatra,1606\nyourself,13,antonyandcleopatra,1606\nbrother,13,antonyandcleopatra,1606\nfull,13,antonyandcleopatra,1606\nEgyptian,13,antonyandcleopatra,1606\nAy,13,antonyandcleopatra,1606\nenter,13,antonyandcleopatra,1606\ndown,13,antonyandcleopatra,1606\nearth,13,antonyandcleopatra,1606\nAttendant,13,antonyandcleopatra,1606\nthings,13,antonyandcleopatra,1606\nhigh,13,antonyandcleopatra,1606\nface,13,antonyandcleopatra,1606\nnews,13,antonyandcleopatra,1606\nplease,13,antonyandcleopatra,1606\ntrue,13,antonyandcleopatra,1606\nlast,13,antonyandcleopatra,1606\nstrange,13,antonyandcleopatra,1606\nwoman,13,antonyandcleopatra,1606\nhorse,14,antonyandcleopatra,1606\nrather,14,antonyandcleopatra,1606\nevery,14,antonyandcleopatra,1606\npray,14,antonyandcleopatra,1606\nGive,14,antonyandcleopatra,1606\nbring,14,antonyandcleopatra,1606\nmatter,14,antonyandcleopatra,1606\nelse,14,antonyandcleopatra,1606\nkings,14,antonyandcleopatra,1606\nbeen,14,antonyandcleopatra,1606\nFulvia,14,antonyandcleopatra,1606\ninto,14,antonyandcleopatra,1606\nsame,14,antonyandcleopatra,1606\nCANIDIUS,14,antonyandcleopatra,1606\nMake,14,antonyandcleopatra,1606\nEnobarbus,14,antonyandcleopatra,1606\nback,14,antonyandcleopatra,1606\nDid,14,antonyandcleopatra,1606\nhimself,14,antonyandcleopatra,1606\nsoldier,15,antonyandcleopatra,1606\nhence,15,antonyandcleopatra,1606\nwars,15,antonyandcleopatra,1606\ndear,15,antonyandcleopatra,1606\nindeed,15,antonyandcleopatra,1606\nmany,15,antonyandcleopatra,1606\nThey,15,antonyandcleopatra,1606\nonce,15,antonyandcleopatra,1606\nstill,15,antonyandcleopatra,1606\nbetween,15,antonyandcleopatra,1606\nword,15,antonyandcleopatra,1606\nfind,15,antonyandcleopatra,1606\nwife,15,antonyandcleopatra,1606\nMARDIAN,15,antonyandcleopatra,1606\ntogether,15,antonyandcleopatra,1606\nThy,15,antonyandcleopatra,1606\nfollow,15,antonyandcleopatra,1606\ncause,16,antonyandcleopatra,1606\naway,16,antonyandcleopatra,1606\nthese,16,antonyandcleopatra,1606\nbear,16,antonyandcleopatra,1606\nlook,16,antonyandcleopatra,1606\nThan,16,antonyandcleopatra,1606\nthine,16,antonyandcleopatra,1606\nheard,16,antonyandcleopatra,1606\nSay,16,antonyandcleopatra,1606\never,16,antonyandcleopatra,1606\nmaster,16,antonyandcleopatra,1606\npower,16,antonyandcleopatra,1606\nsome,17,antonyandcleopatra,1606\nboth,17,antonyandcleopatra,1606\nDo,17,antonyandcleopatra,1606\nIII,17,antonyandcleopatra,1606\nname,17,antonyandcleopatra,1606\nforth,17,antonyandcleopatra,1606\nPROCULEIUS,17,antonyandcleopatra,1606\nart,17,antonyandcleopatra,1606\nMadam,17,antonyandcleopatra,1606\nwhere,17,antonyandcleopatra,1606\nSir,17,antonyandcleopatra,1606\nvery,17,antonyandcleopatra,1606\ncould,17,antonyandcleopatra,1606\nMark,17,antonyandcleopatra,1606\ntill,17,antonyandcleopatra,1606\nfortunes,17,antonyandcleopatra,1606\nWill,18,antonyandcleopatra,1606\nlife,18,antonyandcleopatra,1606\nnothing,18,antonyandcleopatra,1606\nGo,18,antonyandcleopatra,1606\nthose,18,antonyandcleopatra,1606\nMost,18,antonyandcleopatra,1606\nbefore,18,antonyandcleopatra,1606\nWell,18,antonyandcleopatra,1606\nthus,18,antonyandcleopatra,1606\nleave,18,antonyandcleopatra,1606\ndie,18,antonyandcleopatra,1606\nlady,18,antonyandcleopatra,1606\nCLEOPATRA,274,antonyandcleopatra,1606\nI,530,antonyandcleopatra,1606\nTHYREUS,19,antonyandcleopatra,1606\nbetter,19,antonyandcleopatra,1606\nAlexandria,19,antonyandcleopatra,1606\nIV,19,antonyandcleopatra,1606\nShe,19,antonyandcleopatra,1606\noff,19,antonyandcleopatra,1606\nLepidus,19,antonyandcleopatra,1606\nmight,19,antonyandcleopatra,1606\nSCARUS,20,antonyandcleopatra,1606\nSoothsayer,20,antonyandcleopatra,1606\nWhy,20,antonyandcleopatra,1606\nhonour,20,antonyandcleopatra,1606\ngone,20,antonyandcleopatra,1606\nOr,20,antonyandcleopatra,1606\nOCTAVIA,20,antonyandcleopatra,1606\nagain,20,antonyandcleopatra,1606\nmyself,20,antonyandcleopatra,1606\nfortune,20,antonyandcleopatra,1606\nBe,21,antonyandcleopatra,1606\nbest,21,antonyandcleopatra,1606\ni',21,antonyandcleopatra,1606\ndead,21,antonyandcleopatra,1606\nhast,21,antonyandcleopatra,1606\nown,21,antonyandcleopatra,1606\nShall,21,antonyandcleopatra,1606\nbeing,21,antonyandcleopatra,1606\nother,21,antonyandcleopatra,1606\nNay,22,antonyandcleopatra,1606\npart,22,antonyandcleopatra,1606\nwar,22,antonyandcleopatra,1606\nday,22,antonyandcleopatra,1606\neyes,22,antonyandcleopatra,1606\nmen,22,antonyandcleopatra,1606\nwomen,22,antonyandcleopatra,1606\n',23,antonyandcleopatra,1606\nCaesar's,23,antonyandcleopatra,1606\nNow,23,antonyandcleopatra,1606\nhas,23,antonyandcleopatra,1606\no',23,antonyandcleopatra,1606\nOctavia,23,antonyandcleopatra,1606\ncannot,23,antonyandcleopatra,1606\nland,23,antonyandcleopatra,1606\nAside,24,antonyandcleopatra,1606\nsword,24,antonyandcleopatra,1606\nHave,24,antonyandcleopatra,1606\nthink,24,antonyandcleopatra,1606\ntell,25,antonyandcleopatra,1606\nBy,25,antonyandcleopatra,1606\ndoes,25,antonyandcleopatra,1606\nAll,25,antonyandcleopatra,1606\nCharmian,25,antonyandcleopatra,1606\n'Tis,25,antonyandcleopatra,1606\nMECAENAS,25,antonyandcleopatra,1606\nALEXAS,25,antonyandcleopatra,1606\nfight,26,antonyandcleopatra,1606\nWhere,26,antonyandcleopatra,1606\nmuch,27,antonyandcleopatra,1606\nEros,27,antonyandcleopatra,1606\nOur,27,antonyandcleopatra,1606\nHis,27,antonyandcleopatra,1606\nIt,27,antonyandcleopatra,1606\nWe,27,antonyandcleopatra,1606\nSecond,27,antonyandcleopatra,1606\nhow,27,antonyandcleopatra,1606\nYour,27,antonyandcleopatra,1606\nNot,28,antonyandcleopatra,1606\nnight,28,antonyandcleopatra,1606\nGood,28,antonyandcleopatra,1606\nnoble,28,antonyandcleopatra,1606\nPompey,28,antonyandcleopatra,1606\nhand,28,antonyandcleopatra,1606\nmay,28,antonyandcleopatra,1606\nANTONY,284,antonyandcleopatra,1606\nfriends,29,antonyandcleopatra,1606\nmade,29,antonyandcleopatra,1606\nWhen,29,antonyandcleopatra,1606\nGuard,30,antonyandcleopatra,1606\ncan,30,antonyandcleopatra,1606\nSo,30,antonyandcleopatra,1606\nDOLABELLA,30,antonyandcleopatra,1606\nspeak,30,antonyandcleopatra,1606\nway,30,antonyandcleopatra,1606\ntime,30,antonyandcleopatra,1606\nCleopatra,30,antonyandcleopatra,1606\nCome,31,antonyandcleopatra,1606\ndeath,31,antonyandcleopatra,1606\nsea,31,antonyandcleopatra,1606\nhear,32,antonyandcleopatra,1606\nHow,32,antonyandcleopatra,1606\nout,32,antonyandcleopatra,1606\nwere,32,antonyandcleopatra,1606\nIRAS,33,antonyandcleopatra,1606\nnever,34,antonyandcleopatra,1606\n'tis,34,antonyandcleopatra,1606\nThis,34,antonyandcleopatra,1606\nRome,34,antonyandcleopatra,1606\ngods,34,antonyandcleopatra,1606\nsuch,35,antonyandcleopatra,1606\nWith,35,antonyandcleopatra,1606\nIn,35,antonyandcleopatra,1606\nIs,35,antonyandcleopatra,1606\nyet,35,antonyandcleopatra,1606\nmadam,35,antonyandcleopatra,1606\ntoo,35,antonyandcleopatra,1606\nhere,36,antonyandcleopatra,1606\nsay,36,antonyandcleopatra,1606\nthan,36,antonyandcleopatra,1606\nWhich,36,antonyandcleopatra,1606\ndone,36,antonyandcleopatra,1606\nhath,36,antonyandcleopatra,1606\nThou,36,antonyandcleopatra,1606\ntake,36,antonyandcleopatra,1606\nLet,36,antonyandcleopatra,1606\nFor,37,antonyandcleopatra,1606\nNo,37,antonyandcleopatra,1606\ngo,37,antonyandcleopatra,1606\nlove,37,antonyandcleopatra,1606\ngive,37,antonyandcleopatra,1606\nFirst,37,antonyandcleopatra,1606\nEROS,37,antonyandcleopatra,1606\nheart,37,antonyandcleopatra,1606\none,37,antonyandcleopatra,1606\nExit,37,antonyandcleopatra,1606\nup,38,antonyandcleopatra,1606\nsee,40,antonyandcleopatra,1606\nknow,40,antonyandcleopatra,1606\nAGRIPPA,42,antonyandcleopatra,1606\nAs,42,antonyandcleopatra,1606\nmost,42,antonyandcleopatra,1606\nif,42,antonyandcleopatra,1606\nACT,42,antonyandcleopatra,1606\nworld,43,antonyandcleopatra,1606\nthere,43,antonyandcleopatra,1606\nmine,43,antonyandcleopatra,1606\nLEPIDUS,43,antonyandcleopatra,1606\nAND,43,antonyandcleopatra,1606\nEgypt,43,antonyandcleopatra,1606\nman,43,antonyandcleopatra,1606\nSCENE,43,antonyandcleopatra,1606\nor,44,antonyandcleopatra,1606\nqueen,44,antonyandcleopatra,1606\ngreat,44,antonyandcleopatra,1606\nan,45,antonyandcleopatra,1606\nlet,45,antonyandcleopatra,1606\nwhen,45,antonyandcleopatra,1606\nMENAS,45,antonyandcleopatra,1606\nupon,46,antonyandcleopatra,1606\nhad,46,antonyandcleopatra,1606\nlike,47,antonyandcleopatra,1606\nOf,47,antonyandcleopatra,1606\nIf,48,antonyandcleopatra,1606\nPOMPEY,48,antonyandcleopatra,1606\nyou,304,antonyandcleopatra,1606\nthen,49,antonyandcleopatra,1606\nlord,50,antonyandcleopatra,1606\nam,51,antonyandcleopatra,1606\nwas,51,antonyandcleopatra,1606\nthey,52,antonyandcleopatra,1606\nwould,52,antonyandcleopatra,1606\nmust,53,antonyandcleopatra,1606\nMy,53,antonyandcleopatra,1606\nYou,53,antonyandcleopatra,1606\nshould,54,antonyandcleopatra,1606\nExeunt,55,antonyandcleopatra,1606\nI'll,55,antonyandcleopatra,1606\ndid,55,antonyandcleopatra,1606\nSoldier,56,antonyandcleopatra,1606\nWhat,57,antonyandcleopatra,1606\nthem,58,antonyandcleopatra,1606\nHe,58,antonyandcleopatra,1606\nMessenger,58,antonyandcleopatra,1606\nmake,59,antonyandcleopatra,1606\nsir,62,antonyandcleopatra,1606\ncome,62,antonyandcleopatra,1606\nmore,63,antonyandcleopatra,1606\nBut,63,antonyandcleopatra,1606\nshe,66,antonyandcleopatra,1606\ngood,66,antonyandcleopatra,1606\ntheir,66,antonyandcleopatra,1606\nus,66,antonyandcleopatra,1606\nnow,66,antonyandcleopatra,1606\nwell,66,antonyandcleopatra,1606\nA,67,antonyandcleopatra,1606\nno,70,antonyandcleopatra,1606\nfrom,72,antonyandcleopatra,1606\nwhich,73,antonyandcleopatra,1606\nat,75,antonyandcleopatra,1606\nare,76,antonyandcleopatra,1606\nby,80,antonyandcleopatra,1606\nCHARMIAN,80,antonyandcleopatra,1606\nwhat,80,antonyandcleopatra,1606\non,83,antonyandcleopatra,1606\nThat,89,antonyandcleopatra,1606\nall,92,antonyandcleopatra,1606\nO,95,antonyandcleopatra,1606\nthy,95,antonyandcleopatra,1606\ndo,96,antonyandcleopatra,1606\nas,98,antonyandcleopatra,1606\nEnter,99,antonyandcleopatra,1606\nshall,106,antonyandcleopatra,1606\nwill,107,antonyandcleopatra,1606\nthee,109,antonyandcleopatra,1606\nso,110,antonyandcleopatra,1606\nour,110,antonyandcleopatra,1606\nyour,112,antonyandcleopatra,1606\nbut,118,antonyandcleopatra,1606\nwe,118,antonyandcleopatra,1606\nher,119,antonyandcleopatra,1606\nCAESAR,122,antonyandcleopatra,1606\nOCTAVIUS,130,antonyandcleopatra,1606\nTo,131,antonyandcleopatra,1606\nthis,135,antonyandcleopatra,1606\nAntony,135,antonyandcleopatra,1606\nCaesar,136,antonyandcleopatra,1606\nDOMITIUS,138,antonyandcleopatra,1606\nENOBARBUS,139,antonyandcleopatra,1606\nthou,144,antonyandcleopatra,1606\nfor,150,antonyandcleopatra,1606\nof,406,antonyandcleopatra,1606\nhe,158,antonyandcleopatra,1606\nbe,166,antonyandcleopatra,1606\nthe,680,antonyandcleopatra,1606\nAnd,169,antonyandcleopatra,1606\nwith,174,antonyandcleopatra,1606\nit,186,antonyandcleopatra,1606\nhis,188,antonyandcleopatra,1606\nhim,189,antonyandcleopatra,1606\nThe,191,antonyandcleopatra,1606\nhave,199,antonyandcleopatra,1606\nthat,202,antonyandcleopatra,1606\nto,459,antonyandcleopatra,1606\nin,231,antonyandcleopatra,1606\nnot,233,antonyandcleopatra,1606\nMARK,244,antonyandcleopatra,1606\nis,245,antonyandcleopatra,1606\nme,246,antonyandcleopatra,1606\nand,506,antonyandcleopatra,1606\nbrave,1,measureforemeasure,1603\nholding,1,measureforemeasure,1603\nprofession,1,measureforemeasure,1603\nCondemn,1,measureforemeasure,1603\nfear'st,1,measureforemeasure,1603\nanswered,1,measureforemeasure,1603\nreligion,1,measureforemeasure,1603\nYou're,1,measureforemeasure,1603\nheed,1,measureforemeasure,1603\ngeneration,1,measureforemeasure,1603\nBoldly,1,measureforemeasure,1603\nregard,1,measureforemeasure,1603\nTouching,1,measureforemeasure,1603\ndawn,1,measureforemeasure,1603\nauthorities,1,measureforemeasure,1603\nMended,1,measureforemeasure,1603\nquality,1,measureforemeasure,1603\nlusty,1,measureforemeasure,1603\nforbid,1,measureforemeasure,1603\ninstruments,1,measureforemeasure,1603\ndreadfully,1,measureforemeasure,1603\naccordingly,1,measureforemeasure,1603\nQuick,1,measureforemeasure,1603\nCorrupt,1,measureforemeasure,1603\nguard,1,measureforemeasure,1603\nsmiled,1,measureforemeasure,1603\ndarkened,1,measureforemeasure,1603\nmisplaces,1,measureforemeasure,1603\nmuster,1,measureforemeasure,1603\nformally,1,measureforemeasure,1603\nmyrtle,1,measureforemeasure,1603\no,1,measureforemeasure,1603\nsuffer,1,measureforemeasure,1603\nmistaking,1,measureforemeasure,1603\ncontinency,1,measureforemeasure,1603\npith,1,measureforemeasure,1603\nred,1,measureforemeasure,1603\nLonger,1,measureforemeasure,1603\no'erweighs,1,measureforemeasure,1603\nsafeguard,1,measureforemeasure,1603\ntestimonied,1,measureforemeasure,1603\nfancy,1,measureforemeasure,1603\nProof,1,measureforemeasure,1603\nmilkmaid,1,measureforemeasure,1603\nreputation,1,measureforemeasure,1603\nFavours,1,measureforemeasure,1603\nderived,1,measureforemeasure,1603\nfathers,1,measureforemeasure,1603\nsteal',1,measureforemeasure,1603\nyielding,1,measureforemeasure,1603\nassay,1,measureforemeasure,1603\nheir,1,measureforemeasure,1603\ncountry,1,measureforemeasure,1603\nmislead,1,measureforemeasure,1603\ntruer,1,measureforemeasure,1603\ntestimonies,1,measureforemeasure,1603\nthrilling,1,measureforemeasure,1603\nweary,1,measureforemeasure,1603\norders,1,measureforemeasure,1603\nbrass,1,measureforemeasure,1603\nwears,1,measureforemeasure,1603\nprophet,1,measureforemeasure,1603\nhorse,1,measureforemeasure,1603\ncomplaints,1,measureforemeasure,1603\ngenerous,1,measureforemeasure,1603\npossible,1,measureforemeasure,1603\nruthless,1,measureforemeasure,1603\nespecially,1,measureforemeasure,1603\ngiglots,1,measureforemeasure,1603\nsquarest,1,measureforemeasure,1603\nalike,1,measureforemeasure,1603\ndepose,1,measureforemeasure,1603\ngenerative,1,measureforemeasure,1603\npeach,1,measureforemeasure,1603\nFie,1,measureforemeasure,1603\nfollies,1,measureforemeasure,1603\ndine,1,measureforemeasure,1603\nvillain's,1,measureforemeasure,1603\ncircummured,1,measureforemeasure,1603\nFit,1,measureforemeasure,1603\nnursing,1,measureforemeasure,1603\npeculiar,1,measureforemeasure,1603\nbroth,1,measureforemeasure,1603\nlower,1,measureforemeasure,1603\nimplore,1,measureforemeasure,1603\nriddle,1,measureforemeasure,1603\nrigour,1,measureforemeasure,1603\nlooker,1,measureforemeasure,1603\ndagger,1,measureforemeasure,1603\nThieves,1,measureforemeasure,1603\nPygmalion's,1,measureforemeasure,1603\nrot,1,measureforemeasure,1603\npreparation,1,measureforemeasure,1603\no'ertake,1,measureforemeasure,1603\nbonds,1,measureforemeasure,1603\nassured,1,measureforemeasure,1603\nhealth,1,measureforemeasure,1603\nrobe,1,measureforemeasure,1603\nshoulders,1,measureforemeasure,1603\nninescore,1,measureforemeasure,1603\nrod,1,measureforemeasure,1603\nsuppose,1,measureforemeasure,1603\noffender,1,measureforemeasure,1603\nwestern,1,measureforemeasure,1603\nWilt,1,measureforemeasure,1603\nBear,1,measureforemeasure,1603\nday's,1,measureforemeasure,1603\njoy,1,measureforemeasure,1603\nWomen,1,measureforemeasure,1603\neasily,1,measureforemeasure,1603\nwhips,1,measureforemeasure,1603\nere't,1,measureforemeasure,1603\nreside,1,measureforemeasure,1603\nNever,1,measureforemeasure,1603\nretort,1,measureforemeasure,1603\nLord's,1,measureforemeasure,1603\nreserved,1,measureforemeasure,1603\nmonachum,1,measureforemeasure,1603\ndrowsy,1,measureforemeasure,1603\ndespised,1,measureforemeasure,1603\nfreed,1,measureforemeasure,1603\nwarning,1,measureforemeasure,1603\nwhoremonger,1,measureforemeasure,1603\nKills,1,measureforemeasure,1603\neight,1,measureforemeasure,1603\nstarkly,1,measureforemeasure,1603\nTell,1,measureforemeasure,1603\nsleepy,1,measureforemeasure,1603\npenalty,1,measureforemeasure,1603\ndarkness,1,measureforemeasure,1603\njoint,1,measureforemeasure,1603\nclothes,1,measureforemeasure,1603\nfinger,1,measureforemeasure,1603\ninfringe,1,measureforemeasure,1603\nPudding,1,measureforemeasure,1603\nbounteous,1,measureforemeasure,1603\ntrunk,1,measureforemeasure,1603\nproceedings,1,measureforemeasure,1603\nviolent,1,measureforemeasure,1603\nsecurity,1,measureforemeasure,1603\nerrand,1,measureforemeasure,1603\nAdoptedly,1,measureforemeasure,1603\nhent,1,measureforemeasure,1603\nanswering,1,measureforemeasure,1603\nhonourable,1,measureforemeasure,1603\nsanctimonious,1,measureforemeasure,1603\n'Whatsoever,1,measureforemeasure,1603\nparadise,1,measureforemeasure,1603\ncommodity,1,measureforemeasure,1603\nrid,1,measureforemeasure,1603\nnaked,1,measureforemeasure,1603\nangels,1,measureforemeasure,1603\nprompture,1,measureforemeasure,1603\nmaintain,1,measureforemeasure,1603\nconducted,1,measureforemeasure,1603\nits,1,measureforemeasure,1603\ncave,1,measureforemeasure,1603\nsayings,1,measureforemeasure,1603\nthroat,1,measureforemeasure,1603\nrubies,1,measureforemeasure,1603\nyears',1,measureforemeasure,1603\nlaugh,1,measureforemeasure,1603\ninnocency,1,measureforemeasure,1603\nuntaught,1,measureforemeasure,1603\nDispose,1,measureforemeasure,1603\nyonder,1,measureforemeasure,1603\nbefall,1,measureforemeasure,1603\ncheap,1,measureforemeasure,1603\nemmew,1,measureforemeasure,1603\nstrumpet,1,measureforemeasure,1603\nPots,1,measureforemeasure,1603\nodds,1,measureforemeasure,1603\ndamned,1,measureforemeasure,1603\nconfixed,1,measureforemeasure,1603\nstamp'd,1,measureforemeasure,1603\nconcupiscible,1,measureforemeasure,1603\nrates,1,measureforemeasure,1603\ntilth,1,measureforemeasure,1603\nbowels,1,measureforemeasure,1603\nrequiring,1,measureforemeasure,1603\nPERSONAE,1,measureforemeasure,1603\ncare,1,measureforemeasure,1603\nprovince,1,measureforemeasure,1603\nmorality,1,measureforemeasure,1603\nunsisting,1,measureforemeasure,1603\ncloister,1,measureforemeasure,1603\nperished,1,measureforemeasure,1603\nJacob,1,measureforemeasure,1603\ncast,1,measureforemeasure,1603\nsaves,1,measureforemeasure,1603\nconvented,1,measureforemeasure,1603\nsong,1,measureforemeasure,1603\nworser,1,measureforemeasure,1603\nspared,1,measureforemeasure,1603\nbreach,1,measureforemeasure,1603\nadvantaged,1,measureforemeasure,1603\nValentinus,1,measureforemeasure,1603\ndeputed,1,measureforemeasure,1603\naccidental,1,measureforemeasure,1603\nhallond,1,measureforemeasure,1603\nsuccessive,1,measureforemeasure,1603\nPoor,1,measureforemeasure,1603\ndelivered,1,measureforemeasure,1603\nhelper,1,measureforemeasure,1603\nbending,1,measureforemeasure,1603\ngraces,1,measureforemeasure,1603\npersonally,1,measureforemeasure,1603\nsurfeit,1,measureforemeasure,1603\ngiant's,1,measureforemeasure,1603\nlacks,1,measureforemeasure,1603\nsad,1,measureforemeasure,1603\nfeels,1,measureforemeasure,1603\nconscience,1,measureforemeasure,1603\nfeather,1,measureforemeasure,1603\nFellow,1,measureforemeasure,1603\nrespites,1,measureforemeasure,1603\nstock,1,measureforemeasure,1603\nguards,1,measureforemeasure,1603\nslept,1,measureforemeasure,1603\nworking,1,measureforemeasure,1603\nRash,1,measureforemeasure,1603\nmatters,1,measureforemeasure,1603\nreceiving,1,measureforemeasure,1603\nsat,1,measureforemeasure,1603\ngnarled,1,measureforemeasure,1603\nbillets,1,measureforemeasure,1603\njudge's,1,measureforemeasure,1603\nstream,1,measureforemeasure,1603\nconstantly,1,measureforemeasure,1603\nbathe,1,measureforemeasure,1603\ncircumstance,1,measureforemeasure,1603\npile,1,measureforemeasure,1603\nTongue,1,measureforemeasure,1603\npilgrimage,1,measureforemeasure,1603\nlamentation,1,measureforemeasure,1603\ncholeric,1,measureforemeasure,1603\nconfounds,1,measureforemeasure,1603\npicklock,1,measureforemeasure,1603\nlimb,1,measureforemeasure,1603\nboldness,1,measureforemeasure,1603\nIniquity,1,measureforemeasure,1603\nKeep,1,measureforemeasure,1603\nafterwards,1,measureforemeasure,1603\nvillanously,1,measureforemeasure,1603\nBliss,1,measureforemeasure,1603\nhonestly,1,measureforemeasure,1603\ndelaying,1,measureforemeasure,1603\npossessed,1,measureforemeasure,1603\nThomas,1,measureforemeasure,1603\nheal,1,measureforemeasure,1603\nWoe,1,measureforemeasure,1603\ndejected,1,measureforemeasure,1603\nmeddling,1,measureforemeasure,1603\nmanacles,1,measureforemeasure,1603\nworthier,1,measureforemeasure,1603\ncheek,1,measureforemeasure,1603\nwants,1,measureforemeasure,1603\nsoften,1,measureforemeasure,1603\ntown,1,measureforemeasure,1603\ncharacters,1,measureforemeasure,1603\nsoil,1,measureforemeasure,1603\nknaves,1,measureforemeasure,1603\ndemands,1,measureforemeasure,1603\ntemporary,1,measureforemeasure,1603\nsisterly,1,measureforemeasure,1603\nremiss,1,measureforemeasure,1603\nglass,1,measureforemeasure,1603\nmaking,1,measureforemeasure,1603\nErr'd,1,measureforemeasure,1603\nseemers,1,measureforemeasure,1603\ncongealed,1,measureforemeasure,1603\nlikeness,1,measureforemeasure,1603\ndesperately,1,measureforemeasure,1603\nteach,1,measureforemeasure,1603\nungenitured,1,measureforemeasure,1603\nMethinks,1,measureforemeasure,1603\nricher,1,measureforemeasure,1603\nrefell'd,1,measureforemeasure,1603\nfacing,1,measureforemeasure,1603\nenshield,1,measureforemeasure,1603\nfreedom,1,measureforemeasure,1603\nconfesses,1,measureforemeasure,1603\nconfessed,1,measureforemeasure,1603\nwait,1,measureforemeasure,1603\nblossoming,1,measureforemeasure,1603\nwidow's,1,measureforemeasure,1603\nkin,1,measureforemeasure,1603\nshrift,1,measureforemeasure,1603\nblack,1,measureforemeasure,1603\ndefiance,1,measureforemeasure,1603\nvisitation,1,measureforemeasure,1603\nmoving,1,measureforemeasure,1603\ndiscovers,1,measureforemeasure,1603\nriotous,1,measureforemeasure,1603\nstealth,1,measureforemeasure,1603\n'Cucullus,1,measureforemeasure,1603\nmeddler,1,measureforemeasure,1603\nseeking,1,measureforemeasure,1603\nserpigo,1,measureforemeasure,1603\nshamed,1,measureforemeasure,1603\nfeodary,1,measureforemeasure,1603\nperch,1,measureforemeasure,1603\nDuke,1,measureforemeasure,1603\nglimpse,1,measureforemeasure,1603\nblocks,1,measureforemeasure,1603\nwhatsoever,1,measureforemeasure,1603\nunpregnant,1,measureforemeasure,1603\nafflict,1,measureforemeasure,1603\ntalked,1,measureforemeasure,1603\nshekels,1,measureforemeasure,1603\nhistory,1,measureforemeasure,1603\nwilderness,1,measureforemeasure,1603\nquickening,1,measureforemeasure,1603\nconfutes,1,measureforemeasure,1603\nGet,1,measureforemeasure,1603\nconceive,1,measureforemeasure,1603\nconception,1,measureforemeasure,1603\nmerriest,1,measureforemeasure,1603\nunscour'd,1,measureforemeasure,1603\nimprison'd,1,measureforemeasure,1603\nstriking,1,measureforemeasure,1603\nHappily,1,measureforemeasure,1603\naccompt,1,measureforemeasure,1603\nfriended,1,measureforemeasure,1603\nmaidens,1,measureforemeasure,1603\nages,1,measureforemeasure,1603\nthink'st,1,measureforemeasure,1603\nCrowd,1,measureforemeasure,1603\nagent,1,measureforemeasure,1603\nbastard,1,measureforemeasure,1603\ntooth,1,measureforemeasure,1603\nUnhappily,1,measureforemeasure,1603\nwall,1,measureforemeasure,1603\ninvention,1,measureforemeasure,1603\nsex,1,measureforemeasure,1603\nadvertise,1,measureforemeasure,1603\nthankings,1,measureforemeasure,1603\nmocking,1,measureforemeasure,1603\nKneel,1,measureforemeasure,1603\nwake,1,measureforemeasure,1603\ntouched,1,measureforemeasure,1603\nthrongs,1,measureforemeasure,1603\ntraveller,1,measureforemeasure,1603\nvaporous,1,measureforemeasure,1603\nprefers,1,measureforemeasure,1603\nquits,1,measureforemeasure,1603\ntouches,1,measureforemeasure,1603\nshe'll,1,measureforemeasure,1603\nkneel'd,1,measureforemeasure,1603\nthrone,1,measureforemeasure,1603\nbitterly,1,measureforemeasure,1603\ncohered,1,measureforemeasure,1603\nunloads,1,measureforemeasure,1603\nlions,1,measureforemeasure,1603\nbeasts,1,measureforemeasure,1603\ndoubtless,1,measureforemeasure,1603\nabused,1,measureforemeasure,1603\nsnatches,1,measureforemeasure,1603\npardons,1,measureforemeasure,1603\nunprepared,1,measureforemeasure,1603\nspy,1,measureforemeasure,1603\nscore,1,measureforemeasure,1603\nbirds,1,measureforemeasure,1603\nchew,1,measureforemeasure,1603\nconvenience,1,measureforemeasure,1603\nwheresoever,1,measureforemeasure,1603\nsow,1,measureforemeasure,1603\navail,1,measureforemeasure,1603\nskill,1,measureforemeasure,1603\nMerely,1,measureforemeasure,1603\nchildren's,1,measureforemeasure,1603\nwinds,1,measureforemeasure,1603\ncombinate,1,measureforemeasure,1603\nlooking,1,measureforemeasure,1603\napparent,1,measureforemeasure,1603\nwhere's,1,measureforemeasure,1603\ncounsel,1,measureforemeasure,1603\nSilence,1,measureforemeasure,1603\ncountenance,1,measureforemeasure,1603\nbirch,1,measureforemeasure,1603\nstern,1,measureforemeasure,1603\nawakens,1,measureforemeasure,1603\nkindly,1,measureforemeasure,1603\nfearless,1,measureforemeasure,1603\nsupporters,1,measureforemeasure,1603\ndesign,1,measureforemeasure,1603\nsecond,1,measureforemeasure,1603\npermit,1,measureforemeasure,1603\nwoodman,1,measureforemeasure,1603\nstudy,1,measureforemeasure,1603\nmiddle,1,measureforemeasure,1603\nbeloved,1,measureforemeasure,1603\nlooks,1,measureforemeasure,1603\nhatch'd,1,measureforemeasure,1603\nparish,1,measureforemeasure,1603\nsets,1,measureforemeasure,1603\nSetting,1,measureforemeasure,1603\nleague,1,measureforemeasure,1603\nstuff,1,measureforemeasure,1603\ndebatement,1,measureforemeasure,1603\nplay'd,1,measureforemeasure,1603\nAccountant,1,measureforemeasure,1603\nmeal'd,1,measureforemeasure,1603\nbecomes,1,measureforemeasure,1603\nunreverend,1,measureforemeasure,1603\nadverse,1,measureforemeasure,1603\nsends,1,measureforemeasure,1603\nAttorney'd,1,measureforemeasure,1603\nappear'd,1,measureforemeasure,1603\nmutually,1,measureforemeasure,1603\npoverty,1,measureforemeasure,1603\nAuthority,1,measureforemeasure,1603\ninduced,1,measureforemeasure,1603\nseats,1,measureforemeasure,1603\nstuck,1,measureforemeasure,1603\nourselves,1,measureforemeasure,1603\nswelling,1,measureforemeasure,1603\nmalefactors,1,measureforemeasure,1603\ngaoler,1,measureforemeasure,1603\nvile,1,measureforemeasure,1603\neverlasting,1,measureforemeasure,1603\nreap,1,measureforemeasure,1603\nmerit,1,measureforemeasure,1603\neating,1,measureforemeasure,1603\ntapsters,1,measureforemeasure,1603\nguide,1,measureforemeasure,1603\ncompound,1,measureforemeasure,1603\npassed,1,measureforemeasure,1603\nfight,1,measureforemeasure,1603\nrung,1,measureforemeasure,1603\npasses,1,measureforemeasure,1603\nshowed,1,measureforemeasure,1603\nlingering,1,measureforemeasure,1603\nsnow,1,measureforemeasure,1603\nreceives,1,measureforemeasure,1603\nstamps,1,measureforemeasure,1603\ngranting,1,measureforemeasure,1603\nweariest,1,measureforemeasure,1603\nRowland,1,measureforemeasure,1603\nprofess,1,measureforemeasure,1603\nunhallow'd,1,measureforemeasure,1603\ntwelve,1,measureforemeasure,1603\nguarded,1,measureforemeasure,1603\nfiguring,1,measureforemeasure,1603\ngive't,1,measureforemeasure,1603\nRelate,1,measureforemeasure,1603\nmoulded,1,measureforemeasure,1603\nOwe,1,measureforemeasure,1603\nlabour'st,1,measureforemeasure,1603\ndirect,1,measureforemeasure,1603\nTurn,1,measureforemeasure,1603\nking's,1,measureforemeasure,1603\ningots,1,measureforemeasure,1603\ncombined,1,measureforemeasure,1603\nfalls,1,measureforemeasure,1603\nquake,1,measureforemeasure,1603\nruns,1,measureforemeasure,1603\nWise,1,measureforemeasure,1603\nactions,1,measureforemeasure,1603\nloathed,1,measureforemeasure,1603\nFlavius,1,measureforemeasure,1603\nenvious,1,measureforemeasure,1603\nadulterous,1,measureforemeasure,1603\nabhorr'd,1,measureforemeasure,1603\ndamned'st,1,measureforemeasure,1603\ndearly,1,measureforemeasure,1603\ninstance,1,measureforemeasure,1603\nviolator,1,measureforemeasure,1603\nfruit,1,measureforemeasure,1603\nunable,1,measureforemeasure,1603\nAnchors,1,measureforemeasure,1603\nwhite,1,measureforemeasure,1603\nwilling,1,measureforemeasure,1603\nLeave,1,measureforemeasure,1603\nWhilst,1,measureforemeasure,1603\ncries,1,measureforemeasure,1603\ncoloured,1,measureforemeasure,1603\nbrick,1,measureforemeasure,1603\nspeechless,1,measureforemeasure,1603\ngovern'd,1,measureforemeasure,1603\nsup,1,measureforemeasure,1603\nSeeming,1,measureforemeasure,1603\nvanity,1,measureforemeasure,1603\ncomplete,1,measureforemeasure,1603\nreverence,1,measureforemeasure,1603\nfeed,1,measureforemeasure,1603\nbride,1,measureforemeasure,1603\nfeel,1,measureforemeasure,1603\nrein,1,measureforemeasure,1603\nbows,1,measureforemeasure,1603\nSpare,1,measureforemeasure,1603\nimpartial,1,measureforemeasure,1603\ninfinite,1,measureforemeasure,1603\ncleave,1,measureforemeasure,1603\n'Faith,1,measureforemeasure,1603\ndirected,1,measureforemeasure,1603\ntemporal,1,measureforemeasure,1603\nmalice,1,measureforemeasure,1603\ninfallible,1,measureforemeasure,1603\nlane's,1,measureforemeasure,1603\nupon't,1,measureforemeasure,1603\nBetwixt,1,measureforemeasure,1603\ndisvouched,1,measureforemeasure,1603\nKeepdown,1,measureforemeasure,1603\ncriminal,1,measureforemeasure,1603\nWhereto,1,measureforemeasure,1603\nchoose,1,measureforemeasure,1603\nwishes,1,measureforemeasure,1603\nFridays,1,measureforemeasure,1603\nFlavius',1,measureforemeasure,1603\napplause,1,measureforemeasure,1603\nceremony,1,measureforemeasure,1603\nboil,1,measureforemeasure,1603\nribbed,1,measureforemeasure,1603\nbolts,1,measureforemeasure,1603\nVouchsafe,1,measureforemeasure,1603\nflesh,1,measureforemeasure,1603\ncuckold,1,measureforemeasure,1603\nunsworn,1,measureforemeasure,1603\nHence,1,measureforemeasure,1603\ntap,1,measureforemeasure,1603\ndedicate,1,measureforemeasure,1603\nnight's,1,measureforemeasure,1603\nusurp,1,measureforemeasure,1603\ntitle,1,measureforemeasure,1603\nmirth,1,measureforemeasure,1603\nlength,1,measureforemeasure,1603\nagreeing,1,measureforemeasure,1603\nrent,1,measureforemeasure,1603\nstinkingly,1,measureforemeasure,1603\nwant,1,measureforemeasure,1603\nobsequious,1,measureforemeasure,1603\nedge,1,measureforemeasure,1603\nstrew'd,1,measureforemeasure,1603\nEnvelope,1,measureforemeasure,1603\nGrapes,1,measureforemeasure,1603\ndearer,1,measureforemeasure,1603\nFriend,1,measureforemeasure,1603\nvotarists,1,measureforemeasure,1603\nHungary,1,measureforemeasure,1603\nguiltier,1,measureforemeasure,1603\nbolt,1,measureforemeasure,1603\nUnfit,1,measureforemeasure,1603\ndiet,1,measureforemeasure,1603\nseest,1,measureforemeasure,1603\nsliding,1,measureforemeasure,1603\nmurder,1,measureforemeasure,1603\nsucceed,1,measureforemeasure,1603\nsooth,1,measureforemeasure,1603\nstaying,1,measureforemeasure,1603\npierce,1,measureforemeasure,1603\nambassador,1,measureforemeasure,1603\nworld's,1,measureforemeasure,1603\nrebellion,1,measureforemeasure,1603\ndependant,1,measureforemeasure,1603\nstop,1,measureforemeasure,1603\nloins,1,measureforemeasure,1603\nharbour,1,measureforemeasure,1603\nwarp,1,measureforemeasure,1603\ndoubts,1,measureforemeasure,1603\nthroughly,1,measureforemeasure,1603\nwary,1,measureforemeasure,1603\nmeat,1,measureforemeasure,1603\nProfess'd,1,measureforemeasure,1603\nmeal,1,measureforemeasure,1603\nboot,1,measureforemeasure,1603\nruled,1,measureforemeasure,1603\ngentleman's,1,measureforemeasure,1603\nwits,1,measureforemeasure,1603\nBlessed,1,measureforemeasure,1603\ndiscoveries,1,measureforemeasure,1603\nbook,1,measureforemeasure,1603\nGoverns,1,measureforemeasure,1603\nSupply,1,measureforemeasure,1603\nbright,1,measureforemeasure,1603\nframed,1,measureforemeasure,1603\nuneven,1,measureforemeasure,1603\nparts,1,measureforemeasure,1603\nWhipt,1,measureforemeasure,1603\ninfirmity,1,measureforemeasure,1603\nveiled,1,measureforemeasure,1603\ntent,1,measureforemeasure,1603\nsubstantial,1,measureforemeasure,1603\nfairest,1,measureforemeasure,1603\ngoddess,1,measureforemeasure,1603\nframes,1,measureforemeasure,1603\nSign,1,measureforemeasure,1603\nopening,1,measureforemeasure,1603\neach,1,measureforemeasure,1603\nshorter,1,measureforemeasure,1603\nscandal,1,measureforemeasure,1603\ngrievous,1,measureforemeasure,1603\nFaith,1,measureforemeasure,1603\nmerriment,1,measureforemeasure,1603\nbastards,1,measureforemeasure,1603\nkeys,1,measureforemeasure,1603\nAdvertising,1,measureforemeasure,1603\ninvest,1,measureforemeasure,1603\nrupture,1,measureforemeasure,1603\nTakes,1,measureforemeasure,1603\nremonstrance,1,measureforemeasure,1603\ninformal,1,measureforemeasure,1603\nstrongly,1,measureforemeasure,1603\napproof,1,measureforemeasure,1603\nvarlets,1,measureforemeasure,1603\nuprighteously,1,measureforemeasure,1603\nsweeter,1,measureforemeasure,1603\nPattern,1,measureforemeasure,1603\nsigh,1,measureforemeasure,1603\ntalks,1,measureforemeasure,1603\nmeasure,1,measureforemeasure,1603\nforesaid,1,measureforemeasure,1603\ngranted,1,measureforemeasure,1603\ntested,1,measureforemeasure,1603\nSlandering,1,measureforemeasure,1603\ndecorum,1,measureforemeasure,1603\nperfection,1,measureforemeasure,1603\ncontroversy,1,measureforemeasure,1603\nstubborn,1,measureforemeasure,1603\npay,1,measureforemeasure,1603\nmusic,1,measureforemeasure,1603\nWalks,1,measureforemeasure,1603\nplanched,1,measureforemeasure,1603\nhang'd,1,measureforemeasure,1603\nLooks,1,measureforemeasure,1603\nslander'd,1,measureforemeasure,1603\nchopped,1,measureforemeasure,1603\nunwonted,1,measureforemeasure,1603\napproaching,1,measureforemeasure,1603\nbox,1,measureforemeasure,1603\npendent,1,measureforemeasure,1603\nloath,1,measureforemeasure,1603\nsequent,1,measureforemeasure,1603\ncardinally,1,measureforemeasure,1603\nvigour,1,measureforemeasure,1603\nThose,1,measureforemeasure,1603\nshortly,1,measureforemeasure,1603\nretirement,1,measureforemeasure,1603\nAssay,1,measureforemeasure,1603\nassault,1,measureforemeasure,1603\nblown,1,measureforemeasure,1603\nStill,1,measureforemeasure,1603\nhopes,1,measureforemeasure,1603\nprone,1,measureforemeasure,1603\nimagined,1,measureforemeasure,1603\ncarman,1,measureforemeasure,1603\nsensible,1,measureforemeasure,1603\nsinew,1,measureforemeasure,1603\nspawned,1,measureforemeasure,1603\nbay,1,measureforemeasure,1603\nsiege,1,measureforemeasure,1603\nConsenting,1,measureforemeasure,1603\nperformed,1,measureforemeasure,1603\npays,1,measureforemeasure,1603\nrazed,1,measureforemeasure,1603\noffenceful,1,measureforemeasure,1603\nflaws,1,measureforemeasure,1603\nCarnally,1,measureforemeasure,1603\nBunch,1,measureforemeasure,1603\nproof,1,measureforemeasure,1603\nunless,1,measureforemeasure,1603\nsubscribe,1,measureforemeasure,1603\nin't,1,measureforemeasure,1603\nin's,1,measureforemeasure,1603\nPay,1,measureforemeasure,1603\ncreature,1,measureforemeasure,1603\nmerited,1,measureforemeasure,1603\nstar,1,measureforemeasure,1603\nvoid,1,measureforemeasure,1603\ndenied,1,measureforemeasure,1603\ndefied,1,measureforemeasure,1603\nbrings,1,measureforemeasure,1603\nfouler,1,measureforemeasure,1603\ntales,1,measureforemeasure,1603\nbegun,1,measureforemeasure,1603\ndiligence,1,measureforemeasure,1603\nforce,1,measureforemeasure,1603\nsings,1,measureforemeasure,1603\npardoner,1,measureforemeasure,1603\nfinds,1,measureforemeasure,1603\nconceived,1,measureforemeasure,1603\nmotions,1,measureforemeasure,1603\nhabitation,1,measureforemeasure,1603\nflowery,1,measureforemeasure,1603\nclack,1,measureforemeasure,1603\nDizy,1,measureforemeasure,1603\nsovereignty,1,measureforemeasure,1603\nunruly,1,measureforemeasure,1603\ndinner,1,measureforemeasure,1603\nblest,1,measureforemeasure,1603\nfined,1,measureforemeasure,1603\nwhole,1,measureforemeasure,1603\nPronounce,1,measureforemeasure,1603\nensky'd,1,measureforemeasure,1603\nfriars,1,measureforemeasure,1603\nhelmed,1,measureforemeasure,1603\ndiscredit,1,measureforemeasure,1603\nambush,1,measureforemeasure,1603\ndeserved,1,measureforemeasure,1603\nease,1,measureforemeasure,1603\nconsidered,1,measureforemeasure,1603\ncontracted,1,measureforemeasure,1603\npath,1,measureforemeasure,1603\ndenial,1,measureforemeasure,1603\nstew,1,measureforemeasure,1603\ndespair,1,measureforemeasure,1603\nMortality,1,measureforemeasure,1603\nadded,1,measureforemeasure,1603\nsport,1,measureforemeasure,1603\nseedness,1,measureforemeasure,1603\nprovokest,1,measureforemeasure,1603\nproud,1,measureforemeasure,1603\ndisplay'd,1,measureforemeasure,1603\nVI,1,measureforemeasure,1603\nwholesomest,1,measureforemeasure,1603\nnotedly,1,measureforemeasure,1603\nwitless,1,measureforemeasure,1603\nsparrows,1,measureforemeasure,1603\nLights,1,measureforemeasure,1603\nsire,1,measureforemeasure,1603\nquiet,1,measureforemeasure,1603\ngroaning,1,measureforemeasure,1603\nobey,1,measureforemeasure,1603\nbrawling,1,measureforemeasure,1603\nbeheaded,1,measureforemeasure,1603\nincest,1,measureforemeasure,1603\nenrolled,1,measureforemeasure,1603\ntitles,1,measureforemeasure,1603\ndevices,1,measureforemeasure,1603\nfetter,1,measureforemeasure,1603\nfoully,1,measureforemeasure,1603\nAdieu,1,measureforemeasure,1603\nForgive,1,measureforemeasure,1603\nClare,1,measureforemeasure,1603\nhaunt,1,measureforemeasure,1603\nstrifes,1,measureforemeasure,1603\nquenched,1,measureforemeasure,1603\nDrop,1,measureforemeasure,1603\ndepending,1,measureforemeasure,1603\nknowist,1,measureforemeasure,1603\ngold,1,measureforemeasure,1603\ndoers,1,measureforemeasure,1603\nweed,1,measureforemeasure,1603\noddest,1,measureforemeasure,1603\nredeliver,1,measureforemeasure,1603\nbulk,1,measureforemeasure,1603\nexhibit,1,measureforemeasure,1603\nsits,1,measureforemeasure,1603\nreckless,1,measureforemeasure,1603\npostern,1,measureforemeasure,1603\nproportion,1,measureforemeasure,1603\nstraw,1,measureforemeasure,1603\nremit,1,measureforemeasure,1603\nbend,1,measureforemeasure,1603\nurine,1,measureforemeasure,1603\nabides,1,measureforemeasure,1603\ngrief,1,measureforemeasure,1603\nwas't,1,measureforemeasure,1603\naudible,1,measureforemeasure,1603\npreserved,1,measureforemeasure,1603\ndays',1,measureforemeasure,1603\nburr,1,measureforemeasure,1603\nBridget,1,measureforemeasure,1603\n'Twould,1,measureforemeasure,1603\nbestowed,1,measureforemeasure,1603\nEmperor,1,measureforemeasure,1603\nsuffer's,1,measureforemeasure,1603\nkindness,1,measureforemeasure,1603\ntruncheon,1,measureforemeasure,1603\nShave,1,measureforemeasure,1603\nmadman,1,measureforemeasure,1603\nST,1,measureforemeasure,1603\npetition,1,measureforemeasure,1603\nawaked,1,measureforemeasure,1603\nfoolishly,1,measureforemeasure,1603\nChina,1,measureforemeasure,1603\naccommodations,1,measureforemeasure,1603\nUnveiling,1,measureforemeasure,1603\ntricks,1,measureforemeasure,1603\ndevilish,1,measureforemeasure,1603\nextended,1,measureforemeasure,1603\npeaches,1,measureforemeasure,1603\nwrecked,1,measureforemeasure,1603\nswoons,1,measureforemeasure,1603\nfurnished,1,measureforemeasure,1603\nanything,1,measureforemeasure,1603\nlearned,1,measureforemeasure,1603\npre,1,measureforemeasure,1603\ncraft,1,measureforemeasure,1603\nBehold,1,measureforemeasure,1603\nLabouring,1,measureforemeasure,1603\nFalsely,1,measureforemeasure,1603\nshadow,1,measureforemeasure,1603\nperilous,1,measureforemeasure,1603\nfifty,1,measureforemeasure,1603\n'greed,1,measureforemeasure,1603\nsatin,1,measureforemeasure,1603\ncausest,1,measureforemeasure,1603\nPlays,1,measureforemeasure,1603\ncourtesies,1,measureforemeasure,1603\nBore,1,measureforemeasure,1603\nforget'st,1,measureforemeasure,1603\njewel,1,measureforemeasure,1603\ntransport,1,measureforemeasure,1603\nkeep'st,1,measureforemeasure,1603\n'Remember,1,measureforemeasure,1603\nimprison,1,measureforemeasure,1603\ntraveller's,1,measureforemeasure,1603\njury,1,measureforemeasure,1603\nsurfeiting,1,measureforemeasure,1603\nnunnery,1,measureforemeasure,1603\nunsoil'd,1,measureforemeasure,1603\nverity,1,measureforemeasure,1603\nbum,1,measureforemeasure,1603\ncurse,1,measureforemeasure,1603\nShowing,1,measureforemeasure,1603\nMutually,1,measureforemeasure,1603\nherein,1,measureforemeasure,1603\nbeef,1,measureforemeasure,1603\nMerciful,1,measureforemeasure,1603\nvassal,1,measureforemeasure,1603\nused,1,measureforemeasure,1603\ndisguise,1,measureforemeasure,1603\ndependency,1,measureforemeasure,1603\nEnough,1,measureforemeasure,1603\ngout,1,measureforemeasure,1603\nshifts,1,measureforemeasure,1603\nextirp,1,measureforemeasure,1603\nstronger,1,measureforemeasure,1603\nenterprise,1,measureforemeasure,1603\npaint,1,measureforemeasure,1603\nstrip,1,measureforemeasure,1603\n'Twas,1,measureforemeasure,1603\nsister's,1,measureforemeasure,1603\nsmack,1,measureforemeasure,1603\nWrench,1,measureforemeasure,1603\nrejoice,1,measureforemeasure,1603\nstretch,1,measureforemeasure,1603\nVail,1,measureforemeasure,1603\npitch,1,measureforemeasure,1603\ngrace's,1,measureforemeasure,1603\ntwigs,1,measureforemeasure,1603\ncalling,1,measureforemeasure,1603\nashamed,1,measureforemeasure,1603\nattain'd,1,measureforemeasure,1603\nhopeful,1,measureforemeasure,1603\nresort,1,measureforemeasure,1603\nheadstrong,1,measureforemeasure,1603\nhurts,1,measureforemeasure,1603\nassemblies,1,measureforemeasure,1603\nbeginning,1,measureforemeasure,1603\nBoth,1,measureforemeasure,1603\ndolours,1,measureforemeasure,1603\nafoot,1,measureforemeasure,1603\no'ergrown,1,measureforemeasure,1603\nFully,1,measureforemeasure,1603\nGod,1,measureforemeasure,1603\nriver,1,measureforemeasure,1603\nclients,1,measureforemeasure,1603\nRely,1,measureforemeasure,1603\nentertain,1,measureforemeasure,1603\nghost,1,measureforemeasure,1603\ncontinued,1,measureforemeasure,1603\nundoubtful,1,measureforemeasure,1603\ndetected,1,measureforemeasure,1603\ninstant,1,measureforemeasure,1603\nPerpetual,1,measureforemeasure,1603\ncredent,1,measureforemeasure,1603\nCannot,1,measureforemeasure,1603\nbetray,1,measureforemeasure,1603\nresolute,1,measureforemeasure,1603\nkeeping,1,measureforemeasure,1603\nReprieve,1,measureforemeasure,1603\nconsecrated,1,measureforemeasure,1603\nembraced,1,measureforemeasure,1603\ngallows,1,measureforemeasure,1603\ngift,1,measureforemeasure,1603\nraise,1,measureforemeasure,1603\nFear,1,measureforemeasure,1603\nexcellent,1,measureforemeasure,1603\nHere's,1,measureforemeasure,1603\nbattery,1,measureforemeasure,1603\ncarrion,1,measureforemeasure,1603\ncurrent,1,measureforemeasure,1603\nsheep,1,measureforemeasure,1603\npainting,1,measureforemeasure,1603\nfasten,1,measureforemeasure,1603\nHourly,1,measureforemeasure,1603\nviolence,1,measureforemeasure,1603\nyes,1,measureforemeasure,1603\npervert,1,measureforemeasure,1603\ndrabs,1,measureforemeasure,1603\nUnless,1,measureforemeasure,1603\nweigh'd,1,measureforemeasure,1603\noftener,1,measureforemeasure,1603\nstone,1,measureforemeasure,1603\ndepends,1,measureforemeasure,1603\naims,1,measureforemeasure,1603\nlikely,1,measureforemeasure,1603\nlent,1,measureforemeasure,1603\nnobleman,1,measureforemeasure,1603\nI've,1,measureforemeasure,1603\nReturn,1,measureforemeasure,1603\naccuses,1,measureforemeasure,1603\nstain'd,1,measureforemeasure,1603\ndower,1,measureforemeasure,1603\npoise,1,measureforemeasure,1603\nwaist,1,measureforemeasure,1603\nsects,1,measureforemeasure,1603\ntorches,1,measureforemeasure,1603\nhands,1,measureforemeasure,1603\nRest,1,measureforemeasure,1603\nburied,1,measureforemeasure,1603\nprints,1,measureforemeasure,1603\nlends,1,measureforemeasure,1603\nmembers,1,measureforemeasure,1603\ncram,1,measureforemeasure,1603\ngame,1,measureforemeasure,1603\npossess'd,1,measureforemeasure,1603\nmetre,1,measureforemeasure,1603\nslipt,1,measureforemeasure,1603\nsciatica,1,measureforemeasure,1603\ndefends,1,measureforemeasure,1603\nforget,1,measureforemeasure,1603\nfourscore,1,measureforemeasure,1603\ndispleased,1,measureforemeasure,1603\ndoor,1,measureforemeasure,1603\ndoom,1,measureforemeasure,1603\nrenouncement,1,measureforemeasure,1603\ndried,1,measureforemeasure,1603\nmove,1,measureforemeasure,1603\nabominable,1,measureforemeasure,1603\naustereness,1,measureforemeasure,1603\nfears,1,measureforemeasure,1603\nYonder,1,measureforemeasure,1603\nwisely,1,measureforemeasure,1603\nregion,1,measureforemeasure,1603\nProcures,1,measureforemeasure,1603\nshears,1,measureforemeasure,1603\nstrait,1,measureforemeasure,1603\nutmost,1,measureforemeasure,1603\naside,1,measureforemeasure,1603\ncomplexions,1,measureforemeasure,1603\nGoes,1,measureforemeasure,1603\ncurbs,1,measureforemeasure,1603\nrebate,1,measureforemeasure,1603\nwrinkled,1,measureforemeasure,1603\nseventeen,1,measureforemeasure,1603\nwhereof,1,measureforemeasure,1603\nspiders',1,measureforemeasure,1603\nPoland,1,measureforemeasure,1603\nLive,1,measureforemeasure,1603\nearth,1,measureforemeasure,1603\nReads,1,measureforemeasure,1603\nscholar,1,measureforemeasure,1603\ntemper,1,measureforemeasure,1603\neminent,1,measureforemeasure,1603\nvalue,1,measureforemeasure,1603\nlover,1,measureforemeasure,1603\ngyves,1,measureforemeasure,1603\npursues,1,measureforemeasure,1603\nglance,1,measureforemeasure,1603\nstudied,1,measureforemeasure,1603\nmiserable,1,measureforemeasure,1603\nimpediment,1,measureforemeasure,1603\nsettled,1,measureforemeasure,1603\ntouse,1,measureforemeasure,1603\nYea,1,measureforemeasure,1603\nmoon,1,measureforemeasure,1603\nscandalous,1,measureforemeasure,1603\nlaboured,1,measureforemeasure,1603\ndrift,1,measureforemeasure,1603\nbeholding,1,measureforemeasure,1603\nadd,1,measureforemeasure,1603\nsweetness,1,measureforemeasure,1603\nspeak'st,1,measureforemeasure,1603\nAcquaint,1,measureforemeasure,1603\nresides,1,measureforemeasure,1603\nresolved,1,measureforemeasure,1603\nample,1,measureforemeasure,1603\nwherein,1,measureforemeasure,1603\nlest,1,measureforemeasure,1603\nstatute,1,measureforemeasure,1603\nconfiscation,1,measureforemeasure,1603\ngravest,1,measureforemeasure,1603\nill,1,measureforemeasure,1603\ncustomers,1,measureforemeasure,1603\nfilling,1,measureforemeasure,1603\nGuiltier,1,measureforemeasure,1603\nviolet,1,measureforemeasure,1603\nCompact,1,measureforemeasure,1603\nnecessary,1,measureforemeasure,1603\nlets,1,measureforemeasure,1603\nlock'd,1,measureforemeasure,1603\ntundish,1,measureforemeasure,1603\ncommandment,1,measureforemeasure,1603\nincertain,1,measureforemeasure,1603\npowdered,1,measureforemeasure,1603\npain'd,1,measureforemeasure,1603\nmisreport,1,measureforemeasure,1603\nforgot,1,measureforemeasure,1603\nknee,1,measureforemeasure,1603\ntempter,1,measureforemeasure,1603\nrespite,1,measureforemeasure,1603\nhooded,1,measureforemeasure,1603\nmarr'd,1,measureforemeasure,1603\nbeastliest,1,measureforemeasure,1603\nfallible,1,measureforemeasure,1603\nDouble,1,measureforemeasure,1603\nCame,1,measureforemeasure,1603\nkilled,1,measureforemeasure,1603\nchoice,1,measureforemeasure,1603\nevents,1,measureforemeasure,1603\nhardly,1,measureforemeasure,1603\ngravel,1,measureforemeasure,1603\nreasons,1,measureforemeasure,1603\nplot,1,measureforemeasure,1603\nconsummate,1,measureforemeasure,1603\ndenunciation,1,measureforemeasure,1603\ntransgression,1,measureforemeasure,1603\naccounted,1,measureforemeasure,1603\nhard,1,measureforemeasure,1603\nBreak,1,measureforemeasure,1603\nplume,1,measureforemeasure,1603\nperdurably,1,measureforemeasure,1603\nincline,1,measureforemeasure,1603\nun,1,measureforemeasure,1603\nwards,1,measureforemeasure,1603\nKate,1,measureforemeasure,1603\nspleens,1,measureforemeasure,1603\nlewd,1,measureforemeasure,1603\nhall,1,measureforemeasure,1603\nhug,1,measureforemeasure,1603\nmessenger,1,measureforemeasure,1603\nhandled,1,measureforemeasure,1603\nslanderers,1,measureforemeasure,1603\nPlainly,1,measureforemeasure,1603\nsignify,1,measureforemeasure,1603\nGladly,1,measureforemeasure,1603\nimpression,1,measureforemeasure,1603\npale,1,measureforemeasure,1603\nRelease,1,measureforemeasure,1603\nemploy'd,1,measureforemeasure,1603\nweeds,1,measureforemeasure,1603\nleaven'd,1,measureforemeasure,1603\nspur,1,measureforemeasure,1603\nacknowledge,1,measureforemeasure,1603\nCourage,1,measureforemeasure,1603\nreprobate,1,measureforemeasure,1603\nstrings,1,measureforemeasure,1603\nshun,1,measureforemeasure,1603\njournal,1,measureforemeasure,1603\ndrawn,1,measureforemeasure,1603\nprovides,1,measureforemeasure,1603\nseverity,1,measureforemeasure,1603\nthanksgiving,1,measureforemeasure,1603\naccurst,1,measureforemeasure,1603\npang,1,measureforemeasure,1603\nforty,1,measureforemeasure,1603\nschool,1,measureforemeasure,1603\nappliances,1,measureforemeasure,1603\nrestrained,1,measureforemeasure,1603\nprovided,1,measureforemeasure,1603\n'unjust',1,measureforemeasure,1603\nburgher,1,measureforemeasure,1603\nmomentary,1,measureforemeasure,1603\nmiscarried,1,measureforemeasure,1603\nstrivest,1,measureforemeasure,1603\ntest,1,measureforemeasure,1603\npotency,1,measureforemeasure,1603\nunlawful,1,measureforemeasure,1603\nponderous,1,measureforemeasure,1603\ndeaths,1,measureforemeasure,1603\nessay,1,measureforemeasure,1603\nconcludest,1,measureforemeasure,1603\nRemit,1,measureforemeasure,1603\nfork,1,measureforemeasure,1603\ngradation,1,measureforemeasure,1603\nwicked'st,1,measureforemeasure,1603\nconfederate,1,measureforemeasure,1603\ninstate,1,measureforemeasure,1603\npair,1,measureforemeasure,1603\ninstitutions,1,measureforemeasure,1603\nneglect,1,measureforemeasure,1603\npain,1,measureforemeasure,1603\ndelight,1,measureforemeasure,1603\nfiery,1,measureforemeasure,1603\nspit,1,measureforemeasure,1603\nsignet,1,measureforemeasure,1603\nape,1,measureforemeasure,1603\nextremest,1,measureforemeasure,1603\nresists,1,measureforemeasure,1603\nungot,1,measureforemeasure,1603\nprofound,1,measureforemeasure,1603\nDispatch,1,measureforemeasure,1603\nVarlet,1,measureforemeasure,1603\ntwain,1,measureforemeasure,1603\nshop,1,measureforemeasure,1603\npace,1,measureforemeasure,1603\ncontended,1,measureforemeasure,1603\nhate,1,measureforemeasure,1603\narrests,1,measureforemeasure,1603\nfoot,1,measureforemeasure,1603\ndetermination,1,measureforemeasure,1603\nworldly,1,measureforemeasure,1603\nBenedicite,1,measureforemeasure,1603\nzodiacs,1,measureforemeasure,1603\nconserve,1,measureforemeasure,1603\nfishes,1,measureforemeasure,1603\nquests,1,measureforemeasure,1603\nconcerning,1,measureforemeasure,1603\nawe,1,measureforemeasure,1603\ncounsellors,1,measureforemeasure,1603\nimmoderate,1,measureforemeasure,1603\nbelievest,1,measureforemeasure,1603\nimages,1,measureforemeasure,1603\nsignior,1,measureforemeasure,1603\nrevenge,1,measureforemeasure,1603\ncourses,1,measureforemeasure,1603\nathwart,1,measureforemeasure,1603\nyare,1,measureforemeasure,1603\nbrother',1,measureforemeasure,1603\nrenowned,1,measureforemeasure,1603\nobject,1,measureforemeasure,1603\nbeetle,1,measureforemeasure,1603\ngirl,1,measureforemeasure,1603\nfresh,1,measureforemeasure,1603\nmonument,1,measureforemeasure,1603\nsworest,1,measureforemeasure,1603\nmaiden,1,measureforemeasure,1603\nfancies,1,measureforemeasure,1603\nye,1,measureforemeasure,1603\nerror,1,measureforemeasure,1603\nnicety,1,measureforemeasure,1603\nfeverous,1,measureforemeasure,1603\nlock,1,measureforemeasure,1603\nBlood,1,measureforemeasure,1603\nsuperficial,1,measureforemeasure,1603\narmour,1,measureforemeasure,1603\nmercer,1,measureforemeasure,1603\nHast,1,measureforemeasure,1603\nShe'll,1,measureforemeasure,1603\nfoppery,1,measureforemeasure,1603\ndefended,1,measureforemeasure,1603\nfinely,1,measureforemeasure,1603\ndisproved,1,measureforemeasure,1603\nexacting,1,measureforemeasure,1603\nLuke's,1,measureforemeasure,1603\nstrangeness,1,measureforemeasure,1603\ndeadly,1,measureforemeasure,1603\nHarp,1,measureforemeasure,1603\npartial,1,measureforemeasure,1603\ntheirs,1,measureforemeasure,1603\nbeggary,1,measureforemeasure,1603\ncrabbed,1,measureforemeasure,1603\nwashed,1,measureforemeasure,1603\nministers,1,measureforemeasure,1603\narray,1,measureforemeasure,1603\nsweetly,1,measureforemeasure,1603\nreprieves,1,measureforemeasure,1603\nnaughty,1,measureforemeasure,1603\njustify,1,measureforemeasure,1603\nsecondary,1,measureforemeasure,1603\nsanctuary,1,measureforemeasure,1603\ninquiry,1,measureforemeasure,1603\ntoken,1,measureforemeasure,1603\nbefell,1,measureforemeasure,1603\nsicken,1,measureforemeasure,1603\nbrain'd,1,measureforemeasure,1603\nintemperate,1,measureforemeasure,1603\nhazard,1,measureforemeasure,1603\nLittle,1,measureforemeasure,1603\nQuit,1,measureforemeasure,1603\nguess,1,measureforemeasure,1603\nhowling,1,measureforemeasure,1603\ncipher,1,measureforemeasure,1603\ntreasures,1,measureforemeasure,1603\nprays,1,measureforemeasure,1603\nspoken,1,measureforemeasure,1603\nsuperfluous,1,measureforemeasure,1603\nfooling,1,measureforemeasure,1603\nheight,1,measureforemeasure,1603\ndelighted,1,measureforemeasure,1603\nBetween,1,measureforemeasure,1603\nexecute,1,measureforemeasure,1603\nnotable,1,measureforemeasure,1603\nwheels,1,measureforemeasure,1603\nGroping,1,measureforemeasure,1603\nborrow,1,measureforemeasure,1603\nlean,1,measureforemeasure,1603\nroof,1,measureforemeasure,1603\ncodpiece,1,measureforemeasure,1603\ncraftily,1,measureforemeasure,1603\ndribbling,1,measureforemeasure,1603\nraze,1,measureforemeasure,1603\nCommand,1,measureforemeasure,1603\ndistant,1,measureforemeasure,1603\noccasion,1,measureforemeasure,1603\npermissive,1,measureforemeasure,1603\nthrough,1,measureforemeasure,1603\nlavish,1,measureforemeasure,1603\nproofs,1,measureforemeasure,1603\npretending,1,measureforemeasure,1603\ndeceiving,1,measureforemeasure,1603\nperceives,1,measureforemeasure,1603\nbreather,1,measureforemeasure,1603\nkitchens,1,measureforemeasure,1603\nvulgarly,1,measureforemeasure,1603\nEleven,1,measureforemeasure,1603\nbreeds,1,measureforemeasure,1603\nequal,1,measureforemeasure,1603\nheavier,1,measureforemeasure,1603\nsyllable,1,measureforemeasure,1603\nsensual,1,measureforemeasure,1603\nVirtue,1,measureforemeasure,1603\nmoved,1,measureforemeasure,1603\nexpected,1,measureforemeasure,1603\nBecome,1,measureforemeasure,1603\ntarry,1,measureforemeasure,1603\nnay,1,measureforemeasure,1603\nunloose,1,measureforemeasure,1603\ninfluences,1,measureforemeasure,1603\nrank,1,measureforemeasure,1603\nTen,1,measureforemeasure,1603\nempty,1,measureforemeasure,1603\ntokens,1,measureforemeasure,1603\nshrunk,1,measureforemeasure,1603\ndress'd,1,measureforemeasure,1603\nshouldst,1,measureforemeasure,1603\napprehension,1,measureforemeasure,1603\nguiltless,1,measureforemeasure,1603\nsession,1,measureforemeasure,1603\nbravery,1,measureforemeasure,1603\nweighing,1,measureforemeasure,1603\ntakest,1,measureforemeasure,1603\nwhitest,1,measureforemeasure,1603\nKnock,1,measureforemeasure,1603\nbuild,1,measureforemeasure,1603\ntrouts,1,measureforemeasure,1603\ncouldst,1,measureforemeasure,1603\ndistance,1,measureforemeasure,1603\nexpress'd,1,measureforemeasure,1603\nPleased,1,measureforemeasure,1603\n'longs,1,measureforemeasure,1603\npollution,1,measureforemeasure,1603\nunknown,1,measureforemeasure,1603\nBetter,1,measureforemeasure,1603\nprosperity,1,measureforemeasure,1603\nomit,1,measureforemeasure,1603\nmercy's,1,measureforemeasure,1603\nHalf,1,measureforemeasure,1603\nElse,1,measureforemeasure,1603\napply,1,measureforemeasure,1603\nmarks,1,measureforemeasure,1603\nSeven,1,measureforemeasure,1603\nvastidity,1,measureforemeasure,1603\npenury,1,measureforemeasure,1603\nwonder,1,measureforemeasure,1603\nUnmuffles,1,measureforemeasure,1603\nJulietta's,1,measureforemeasure,1603\nmutton,1,measureforemeasure,1603\nexist'st,1,measureforemeasure,1603\nhips,1,measureforemeasure,1603\nrestore,1,measureforemeasure,1603\npated,1,measureforemeasure,1603\nrestless,1,measureforemeasure,1603\nacting,1,measureforemeasure,1603\nsocieties,1,measureforemeasure,1603\nscale,1,measureforemeasure,1603\ndemigod,1,measureforemeasure,1603\nnoon,1,measureforemeasure,1603\nInjurious,1,measureforemeasure,1603\nguides,1,measureforemeasure,1603\nfretting,1,measureforemeasure,1603\nability's,1,measureforemeasure,1603\ndeserving,1,measureforemeasure,1603\nbelow,1,measureforemeasure,1603\nrats,1,measureforemeasure,1603\n'Thou,1,measureforemeasure,1603\nconveyed,1,measureforemeasure,1603\nducat,1,measureforemeasure,1603\ntemperance,1,measureforemeasure,1603\nbottle,1,measureforemeasure,1603\nluxury,1,measureforemeasure,1603\nbalanced,1,measureforemeasure,1603\nclothe,1,measureforemeasure,1603\ninequality,1,measureforemeasure,1603\nlimited,1,measureforemeasure,1603\neffusion,1,measureforemeasure,1603\nours,1,measureforemeasure,1603\nblunt,1,measureforemeasure,1603\ntraitors,1,measureforemeasure,1603\ntenor,1,measureforemeasure,1603\nentirely,1,measureforemeasure,1603\n'An,1,measureforemeasure,1603\nobserver,1,measureforemeasure,1603\nChristians,1,measureforemeasure,1603\nCraft,1,measureforemeasure,1603\nbottom,1,measureforemeasure,1603\neve,1,measureforemeasure,1603\nglasses,1,measureforemeasure,1603\nSlander,1,measureforemeasure,1603\nlikelihood,1,measureforemeasure,1603\nDreaming,1,measureforemeasure,1603\nslower,1,measureforemeasure,1603\nprioress,1,measureforemeasure,1603\nIntends,1,measureforemeasure,1603\nwritten,1,measureforemeasure,1603\nborne,1,measureforemeasure,1603\nSit,1,measureforemeasure,1603\nadmit,1,measureforemeasure,1603\ncharm,1,measureforemeasure,1603\nnun,1,measureforemeasure,1603\nthirsty,1,measureforemeasure,1603\nsticks,1,measureforemeasure,1603\nstays,1,measureforemeasure,1603\nequally,1,measureforemeasure,1603\nConstable,1,measureforemeasure,1603\nprogress,1,measureforemeasure,1603\nWhensoever,1,measureforemeasure,1603\nyou'ld,1,measureforemeasure,1603\ndesiring,1,measureforemeasure,1603\nunshunned,1,measureforemeasure,1603\nextracting,1,measureforemeasure,1603\nperform,1,measureforemeasure,1603\nbawd's,1,measureforemeasure,1603\nwho's,1,measureforemeasure,1603\nadultery,1,measureforemeasure,1603\nescapes,1,measureforemeasure,1603\nDarest,1,measureforemeasure,1603\nevermore,1,measureforemeasure,1603\ndares,1,measureforemeasure,1603\nFewness,1,measureforemeasure,1603\nrejoicing,1,measureforemeasure,1603\nstraitness,1,measureforemeasure,1603\nsteeled,1,measureforemeasure,1603\nfreely,1,measureforemeasure,1603\navouch,1,measureforemeasure,1603\nquarter,1,measureforemeasure,1603\nwonder'd,1,measureforemeasure,1603\nrevive,1,measureforemeasure,1603\nTurns,1,measureforemeasure,1603\nConvenient,1,measureforemeasure,1603\nunusual,1,measureforemeasure,1603\nunbelieved,1,measureforemeasure,1603\nKnows,1,measureforemeasure,1603\ndiscontent,1,measureforemeasure,1603\ncommune,1,measureforemeasure,1603\nerr,1,measureforemeasure,1603\nspurs,1,measureforemeasure,1603\ndissolution,1,measureforemeasure,1603\ndoors,1,measureforemeasure,1603\nlikewise,1,measureforemeasure,1603\ntowards,1,measureforemeasure,1603\nleaves,1,measureforemeasure,1603\nmile,1,measureforemeasure,1603\neld,1,measureforemeasure,1603\neaves,1,measureforemeasure,1603\ncharitable,1,measureforemeasure,1603\nusuries,1,measureforemeasure,1603\nteeth,1,measureforemeasure,1603\nnon,1,measureforemeasure,1603\nbubble,1,measureforemeasure,1603\nblench,1,measureforemeasure,1603\ncovert,1,measureforemeasure,1603\nsaving,1,measureforemeasure,1603\nconclusion,1,measureforemeasure,1603\nmightst,1,measureforemeasure,1603\ncreditor,1,measureforemeasure,1603\napproaches,1,measureforemeasure,1603\nknave,1,measureforemeasure,1603\nkisses,1,measureforemeasure,1603\nfilth,1,measureforemeasure,1603\npurposes,1,measureforemeasure,1603\ndared,1,measureforemeasure,1603\nPersuade,1,measureforemeasure,1603\nrelents,1,measureforemeasure,1603\nescape,1,measureforemeasure,1603\nenriched,1,measureforemeasure,1603\nrobbery,1,measureforemeasure,1603\nprocess,1,measureforemeasure,1603\nchair,1,measureforemeasure,1603\nbloody,1,measureforemeasure,1603\nadvisings,1,measureforemeasure,1603\narraign,1,measureforemeasure,1603\nprocure,1,measureforemeasure,1603\nobscured,1,measureforemeasure,1603\nstabbed,1,measureforemeasure,1603\ncourage,1,measureforemeasure,1603\nvillanous,1,measureforemeasure,1603\norgans,1,measureforemeasure,1603\nchief,1,measureforemeasure,1603\nunshapes,1,measureforemeasure,1603\npersuaded,1,measureforemeasure,1603\ninjuries,1,measureforemeasure,1603\nthick,1,measureforemeasure,1603\nSon,1,measureforemeasure,1603\npenitence,1,measureforemeasure,1603\nafflicted,1,measureforemeasure,1603\nobstruction,1,measureforemeasure,1603\nissue,1,measureforemeasure,1603\nBohemian,1,measureforemeasure,1603\nveil,1,measureforemeasure,1603\nvein,1,measureforemeasure,1603\nwot,1,measureforemeasure,1603\nJoy,1,measureforemeasure,1603\nblow,1,measureforemeasure,1603\nbrains,1,measureforemeasure,1603\ngreatest,1,measureforemeasure,1603\npainful,1,measureforemeasure,1603\nbeside,1,measureforemeasure,1603\nlapwing,1,measureforemeasure,1603\nheaven's,1,measureforemeasure,1603\nusing,1,measureforemeasure,1603\narch,1,measureforemeasure,1603\nseal'd,1,measureforemeasure,1603\namazement,1,measureforemeasure,1603\nthreatening,1,measureforemeasure,1603\nprivileges,1,measureforemeasure,1603\nfather's,1,measureforemeasure,1603\nplenteous,1,measureforemeasure,1603\nhypocrite,1,measureforemeasure,1603\nover,1,measureforemeasure,1603\nfeelingly,1,measureforemeasure,1603\nRemaining,1,measureforemeasure,1603\nmedlar,1,measureforemeasure,1603\npropagation,1,measureforemeasure,1603\ndischarge,1,measureforemeasure,1603\nBum,1,measureforemeasure,1603\nwhispering,1,measureforemeasure,1603\nnumber,1,measureforemeasure,1603\napart,1,measureforemeasure,1603\nMade,1,measureforemeasure,1603\nmarvel,1,measureforemeasure,1603\nprolixious,1,measureforemeasure,1603\nimpiety,1,measureforemeasure,1603\nsubdue,1,measureforemeasure,1603\nhorrible,1,measureforemeasure,1603\nIntents,1,measureforemeasure,1603\nmistress',1,measureforemeasure,1603\nfills,1,measureforemeasure,1603\ndisguiser,1,measureforemeasure,1603\nRome,1,measureforemeasure,1603\ndesires,1,measureforemeasure,1603\nForerunning,1,measureforemeasure,1603\nones,1,measureforemeasure,1603\nliving,1,measureforemeasure,1603\nstain,1,measureforemeasure,1603\nlouder,1,measureforemeasure,1603\nbear'st,1,measureforemeasure,1603\nprovincial,1,measureforemeasure,1603\naltered,1,measureforemeasure,1603\npossession,1,measureforemeasure,1603\nFound,1,measureforemeasure,1603\ndissolute,1,measureforemeasure,1603\nRespect,1,measureforemeasure,1603\nstricture,1,measureforemeasure,1603\n'for,1,measureforemeasure,1603\n'Twixt,1,measureforemeasure,1603\nproved,1,measureforemeasure,1603\nstink,1,measureforemeasure,1603\nget,1,measureforemeasure,1603\nCopperspur,1,measureforemeasure,1603\nwrongs,1,measureforemeasure,1603\nAwakes,1,measureforemeasure,1603\nCaper,1,measureforemeasure,1603\nsalt,1,measureforemeasure,1603\npound,1,measureforemeasure,1603\nneck,1,measureforemeasure,1603\nunderstanding,1,measureforemeasure,1603\nformer,1,measureforemeasure,1603\nblushes,1,measureforemeasure,1603\nConfess,1,measureforemeasure,1603\nstatesman,1,measureforemeasure,1603\nRun,1,measureforemeasure,1603\nwrapt,1,measureforemeasure,1603\npond,1,measureforemeasure,1603\nDeep,1,measureforemeasure,1603\nWend,1,measureforemeasure,1603\npersons,1,measureforemeasure,1603\nmessage,1,measureforemeasure,1603\nprovoke,1,measureforemeasure,1603\nevasion,1,measureforemeasure,1603\nbawdy,1,measureforemeasure,1603\nbawds,1,measureforemeasure,1603\nuntrussing,1,measureforemeasure,1603\ncommonweal,1,measureforemeasure,1603\nhappiness,1,measureforemeasure,1603\nloving,1,measureforemeasure,1603\nnovelty,1,measureforemeasure,1603\nsitting,1,measureforemeasure,1603\nTuesday,1,measureforemeasure,1603\nfacit,1,measureforemeasure,1603\nbondage,1,measureforemeasure,1603\nmarshal's,1,measureforemeasure,1603\ncharacts,1,measureforemeasure,1603\nbeastly,1,measureforemeasure,1603\nDead,1,measureforemeasure,1603\ndinner's,1,measureforemeasure,1603\ncity's,1,measureforemeasure,1603\nlightness,1,measureforemeasure,1603\ndawning,1,measureforemeasure,1603\noak,1,measureforemeasure,1603\ncheaper,1,measureforemeasure,1603\nclock,1,measureforemeasure,1603\nfallow,1,measureforemeasure,1603\nSure,1,measureforemeasure,1603\nflight,1,measureforemeasure,1603\nback'd,1,measureforemeasure,1603\nresidence,1,measureforemeasure,1603\nhealthy,1,measureforemeasure,1603\nSubdues,1,measureforemeasure,1603\nfalcon,1,measureforemeasure,1603\nvouches,1,measureforemeasure,1603\nresemblance,1,measureforemeasure,1603\nremains,1,measureforemeasure,1603\nmasks,1,measureforemeasure,1603\nunmask,1,measureforemeasure,1603\nskyey,1,measureforemeasure,1603\nmice,1,measureforemeasure,1603\ndecrees,1,measureforemeasure,1603\nmusical,1,measureforemeasure,1603\nNips,1,measureforemeasure,1603\nglassy,1,measureforemeasure,1603\nissued,1,measureforemeasure,1603\nchastisement,1,measureforemeasure,1603\nissues,1,measureforemeasure,1603\ndust,1,measureforemeasure,1603\ncalled,1,measureforemeasure,1603\nThink,1,measureforemeasure,1603\nundiscernible,1,measureforemeasure,1603\nstage,1,measureforemeasure,1603\nflourish,1,measureforemeasure,1603\nable,1,measureforemeasure,1603\ncontracting,1,measureforemeasure,1603\ncommanded,1,measureforemeasure,1603\ntrusty,1,measureforemeasure,1603\nswinged,1,measureforemeasure,1603\nfount,1,measureforemeasure,1603\nsuit's,1,measureforemeasure,1603\nhidden,1,measureforemeasure,1603\nfleshmonger,1,measureforemeasure,1603\nfellow's,1,measureforemeasure,1603\nhandle,1,measureforemeasure,1603\nLucio's,1,measureforemeasure,1603\ndetermines,1,measureforemeasure,1603\nthey'll,1,measureforemeasure,1603\nblemish,1,measureforemeasure,1603\npride,1,measureforemeasure,1603\nImmediate,1,measureforemeasure,1603\nwanton,1,measureforemeasure,1603\nimposition,1,measureforemeasure,1603\ndying,1,measureforemeasure,1603\nends,1,measureforemeasure,1603\napace,1,measureforemeasure,1603\nBarnardine's,1,measureforemeasure,1603\nproceeding,1,measureforemeasure,1603\nprice,1,measureforemeasure,1603\nvillains,1,measureforemeasure,1603\nclod,1,measureforemeasure,1603\nThree,1,measureforemeasure,1603\npenalties,1,measureforemeasure,1603\nbelly,1,measureforemeasure,1603\nstoop'd,1,measureforemeasure,1603\nhappy,1,measureforemeasure,1603\nenforced,1,measureforemeasure,1603\ndrowned,1,measureforemeasure,1603\nShame,1,measureforemeasure,1603\nthroats,1,measureforemeasure,1603\nGives,1,measureforemeasure,1603\nplausible,1,measureforemeasure,1603\ntreasonable,1,measureforemeasure,1603\nfamiliar,1,measureforemeasure,1603\ngladly,1,measureforemeasure,1603\nhusbandry,1,measureforemeasure,1603\ndivines,1,measureforemeasure,1603\nagree,1,measureforemeasure,1603\nbaseness,1,measureforemeasure,1603\nHoping,1,measureforemeasure,1603\ndreams,1,measureforemeasure,1603\nmettle,1,measureforemeasure,1603\noblivion,1,measureforemeasure,1603\nSneak,1,measureforemeasure,1603\nmorsel,1,measureforemeasure,1603\nfaithless,1,measureforemeasure,1603\nedict,1,measureforemeasure,1603\nfallen,1,measureforemeasure,1603\ntaken,1,measureforemeasure,1603\nreports,1,measureforemeasure,1603\ncharges,1,measureforemeasure,1603\nrotten,1,measureforemeasure,1603\ncertainty,1,measureforemeasure,1603\nprisoner's,1,measureforemeasure,1603\ninform,1,measureforemeasure,1603\ncoffer,1,measureforemeasure,1603\nrequire,1,measureforemeasure,1603\nopposite,1,measureforemeasure,1603\nwomb,1,measureforemeasure,1603\nlust,1,measureforemeasure,1603\nwife's,1,measureforemeasure,1603\nStarve,1,measureforemeasure,1603\nimputation,1,measureforemeasure,1603\nrain,1,measureforemeasure,1603\ndoings,1,measureforemeasure,1603\nfunctions,1,measureforemeasure,1603\ndull,1,measureforemeasure,1603\nbeguiles,1,measureforemeasure,1603\nduly,1,measureforemeasure,1603\nwaters,1,measureforemeasure,1603\nserves,1,measureforemeasure,1603\nForbear,1,measureforemeasure,1603\nNoble,1,measureforemeasure,1603\ncover,1,measureforemeasure,1603\nmadest,1,measureforemeasure,1603\nsplay,1,measureforemeasure,1603\nfile,1,measureforemeasure,1603\ntilter,1,measureforemeasure,1603\ngifts,1,measureforemeasure,1603\ncrotchets,1,measureforemeasure,1603\nmightier,1,measureforemeasure,1603\ninformation,1,measureforemeasure,1603\nhideous,1,measureforemeasure,1603\nconcealed,1,measureforemeasure,1603\nguilty,1,measureforemeasure,1603\ntable,1,measureforemeasure,1603\ngrieve,1,measureforemeasure,1603\nPrefix'd,1,measureforemeasure,1603\nspirit's,1,measureforemeasure,1603\nlocked,1,measureforemeasure,1603\nUnhappy,1,measureforemeasure,1603\nbruise,1,measureforemeasure,1603\nprofiting,1,measureforemeasure,1603\nminds,1,measureforemeasure,1603\n'fore,1,measureforemeasure,1603\nblister'd,1,measureforemeasure,1603\ndesert,1,measureforemeasure,1603\nprattle,1,measureforemeasure,1603\nExceeds,1,measureforemeasure,1603\nproportions,1,measureforemeasure,1603\nfoh,1,measureforemeasure,1603\narticle,1,measureforemeasure,1603\nsin's,1,measureforemeasure,1603\ncorrects,1,measureforemeasure,1603\nconstancy,1,measureforemeasure,1603\nProceed,1,measureforemeasure,1603\nwert,1,measureforemeasure,1603\nspeeded,1,measureforemeasure,1603\nanswers,1,measureforemeasure,1603\ngratulate,1,measureforemeasure,1603\nrace,1,measureforemeasure,1603\nkinsman,1,measureforemeasure,1603\nmethinks,1,measureforemeasure,1603\nwoeful,1,measureforemeasure,1603\nworm,1,measureforemeasure,1603\nwounds,1,measureforemeasure,1603\ndialect,1,measureforemeasure,1603\ncontrarious,1,measureforemeasure,1603\ntune,1,measureforemeasure,1603\nheavily,1,measureforemeasure,1603\nroses,1,measureforemeasure,1603\npassing,1,measureforemeasure,1603\nride,1,measureforemeasure,1603\nbear's,1,measureforemeasure,1603\nunweighing,1,measureforemeasure,1603\nMark,1,measureforemeasure,1603\npulled,1,measureforemeasure,1603\nrunn'st,1,measureforemeasure,1603\nprofit,1,measureforemeasure,1603\nfill,1,measureforemeasure,1603\nhowsoever,1,measureforemeasure,1603\nclap,1,measureforemeasure,1603\nbarber's,1,measureforemeasure,1603\nDrest,1,measureforemeasure,1603\nexternal,1,measureforemeasure,1603\nfolly,1,measureforemeasure,1603\nhorn,1,measureforemeasure,1603\nunwedgeable,1,measureforemeasure,1603\nLead,1,measureforemeasure,1603\nImagine,1,measureforemeasure,1603\nrefer,1,measureforemeasure,1603\nbark,1,measureforemeasure,1603\nthereby,1,measureforemeasure,1603\nbare,1,measureforemeasure,1603\nanswer'd,1,measureforemeasure,1603\nbelongings,1,measureforemeasure,1603\npocket,1,measureforemeasure,1603\nbite,1,measureforemeasure,1603\nholiness,1,measureforemeasure,1603\nfondness,1,measureforemeasure,1603\ndependent,1,measureforemeasure,1603\nThank,1,measureforemeasure,1603\npatient,1,measureforemeasure,1603\nwarped,1,measureforemeasure,1603\nbringings,1,measureforemeasure,1603\nReveal,1,measureforemeasure,1603\nwrongfully,1,measureforemeasure,1603\nmadly,1,measureforemeasure,1603\nmember,1,measureforemeasure,1603\nBenefactors,1,measureforemeasure,1603\nreproach,1,measureforemeasure,1603\nbase,1,measureforemeasure,1603\nstrikes,1,measureforemeasure,1603\nparallel'd,1,measureforemeasure,1603\nCut,1,measureforemeasure,1603\nextenuate,1,measureforemeasure,1603\ncountenanced,1,measureforemeasure,1603\ndeliver'd,1,measureforemeasure,1603\nfate,1,measureforemeasure,1603\nbane,1,measureforemeasure,1603\nappointed,1,measureforemeasure,1603\nslanderous,1,measureforemeasure,1603\nobservance,1,measureforemeasure,1603\nhood,1,measureforemeasure,1603\nhook,1,measureforemeasure,1603\ndefinitive,1,measureforemeasure,1603\nVisit,1,measureforemeasure,1603\ntame,1,measureforemeasure,1603\nweakness,1,measureforemeasure,1603\nunlawfully,1,measureforemeasure,1603\nlenity,1,measureforemeasure,1603\nlarge,1,measureforemeasure,1603\nJoint,1,measureforemeasure,1603\nvolumes,1,measureforemeasure,1603\ndrinks,1,measureforemeasure,1603\nreleased,1,measureforemeasure,1603\nshepherd,1,measureforemeasure,1603\nsoul's,1,measureforemeasure,1603\nache,1,measureforemeasure,1603\nPartly,1,measureforemeasure,1603\ncoat,1,measureforemeasure,1603\nconstant,1,measureforemeasure,1603\nunpeople,1,measureforemeasure,1603\nfruitful,1,measureforemeasure,1603\ndeliberate,1,measureforemeasure,1603\nstroke,1,measureforemeasure,1603\nperish,1,measureforemeasure,1603\nwild,1,measureforemeasure,1603\nreproof,1,measureforemeasure,1603\nAlready,1,measureforemeasure,1603\nrapier,1,measureforemeasure,1603\nRather,1,measureforemeasure,1603\nalms,1,measureforemeasure,1603\ngreets,1,measureforemeasure,1603\nwilt,1,measureforemeasure,1603\nWorth,1,measureforemeasure,1603\nrecorded,1,measureforemeasure,1603\nought,1,measureforemeasure,1603\nforbearance,1,measureforemeasure,1603\nholds,1,measureforemeasure,1603\nheading,1,measureforemeasure,1603\nshore,1,measureforemeasure,1603\naccident,1,measureforemeasure,1603\nbethought,1,measureforemeasure,1603\nbigger,1,measureforemeasure,1603\nlecherous,1,measureforemeasure,1603\nkersey,1,measureforemeasure,1603\nGive't,1,measureforemeasure,1603\ncondemnation,1,measureforemeasure,1603\nprofessed,1,measureforemeasure,1603\nshort,1,measureforemeasure,1603\nvirgins,1,measureforemeasure,1603\nblasting,1,measureforemeasure,1603\nportion,1,measureforemeasure,1603\ndozen,1,measureforemeasure,1603\nvirginity,1,measureforemeasure,1603\ntemper'd,1,measureforemeasure,1603\ngreet,1,measureforemeasure,1603\nproclaimed,1,measureforemeasure,1603\nlackey,1,measureforemeasure,1603\nkneaded,1,measureforemeasure,1603\nLives,1,measureforemeasure,1603\nmethod,1,measureforemeasure,1603\nArise,1,measureforemeasure,1603\nAlthough,1,measureforemeasure,1603\nredeeming,1,measureforemeasure,1603\ndifficulties,1,measureforemeasure,1603\n'Save,1,measureforemeasure,1603\npaved,1,measureforemeasure,1603\nassist,1,measureforemeasure,1603\nleiger,1,measureforemeasure,1603\nspirts,1,measureforemeasure,1603\npresents,1,measureforemeasure,1603\nAves,1,measureforemeasure,1603\nwinter,1,measureforemeasure,1603\ncommonwealth,1,measureforemeasure,1603\nencouragement,1,measureforemeasure,1603\nRepent,1,measureforemeasure,1603\nslanders,1,measureforemeasure,1603\nseal,1,measureforemeasure,1603\nbits,1,measureforemeasure,1603\nCharges,1,measureforemeasure,1603\nconjure,1,measureforemeasure,1603\nbuilding,1,measureforemeasure,1603\nfalsehood,1,measureforemeasure,1603\nForthlight,1,measureforemeasure,1603\nscraped,1,measureforemeasure,1603\nfornicatress,1,measureforemeasure,1603\ngoodman,1,measureforemeasure,1603\nPulls,1,measureforemeasure,1603\nIntended,1,measureforemeasure,1603\nDUKE'S,1,measureforemeasure,1603\nalso,1,measureforemeasure,1603\nunpitied,1,measureforemeasure,1603\nHungary's,1,measureforemeasure,1603\nsatisfied,1,measureforemeasure,1603\nunmeet,1,measureforemeasure,1603\nhung,1,measureforemeasure,1603\nseat,1,measureforemeasure,1603\nlovely,1,measureforemeasure,1603\nLUKE's,1,measureforemeasure,1603\nhearty,1,measureforemeasure,1603\nalone,1,measureforemeasure,1603\nTrot,1,measureforemeasure,1603\nServile,1,measureforemeasure,1603\nneglected,1,measureforemeasure,1603\ninward,1,measureforemeasure,1603\nbachelor,1,measureforemeasure,1603\nfairer,1,measureforemeasure,1603\nadieu,1,measureforemeasure,1603\nexamples,1,measureforemeasure,1603\nlow,1,measureforemeasure,1603\npenitently,1,measureforemeasure,1603\nsweat,1,measureforemeasure,1603\ncaptain's,1,measureforemeasure,1603\nremission,1,measureforemeasure,1603\ncaptain,1,measureforemeasure,1603\npalsied,1,measureforemeasure,1603\nsuits,1,measureforemeasure,1603\nExpresseth,1,measureforemeasure,1603\nbaby,1,measureforemeasure,1603\ndispossessing,1,measureforemeasure,1603\nreckoning,1,measureforemeasure,1603\ncorn's,1,measureforemeasure,1603\nRight,1,measureforemeasure,1603\ndeputation,1,measureforemeasure,1603\ndiscredited,1,measureforemeasure,1603\nstagger,1,measureforemeasure,1603\nseed,1,measureforemeasure,1603\nnerves,1,measureforemeasure,1603\nLie,1,measureforemeasure,1603\nmarvellous,1,measureforemeasure,1603\nNe'er,1,measureforemeasure,1603\nscience,1,measureforemeasure,1603\n'twixt,1,measureforemeasure,1603\ndiscretion,1,measureforemeasure,1603\ncamest,1,measureforemeasure,1603\nvalues,1,measureforemeasure,1603\ncourtesy,1,measureforemeasure,1603\nsupposes,1,measureforemeasure,1603\npick'd,1,measureforemeasure,1603\navised,1,measureforemeasure,1603\ndrunken,1,measureforemeasure,1603\nvessel,1,measureforemeasure,1603\ntells,1,measureforemeasure,1603\ncondition,1,measureforemeasure,1603\nvehement,1,measureforemeasure,1603\nliking,1,measureforemeasure,1603\ncost,1,measureforemeasure,1603\ntithe's,1,measureforemeasure,1603\nrender,1,measureforemeasure,1603\nMine,1,measureforemeasure,1603\nfellows,1,measureforemeasure,1603\nprophecy,1,measureforemeasure,1603\nkennel,1,measureforemeasure,1603\nTrue,1,measureforemeasure,1603\ncrest,1,measureforemeasure,1603\nperish'd,1,measureforemeasure,1603\nMatters,1,measureforemeasure,1603\nbared,1,measureforemeasure,1603\nestimation,1,measureforemeasure,1603\nTapster,1,measureforemeasure,1603\nvehemency,1,measureforemeasure,1603\nreplied,1,measureforemeasure,1603\nImplore,1,measureforemeasure,1603\nneedless,1,measureforemeasure,1603\nsecrecy,1,measureforemeasure,1603\nEnglish,1,measureforemeasure,1603\nchanging,1,measureforemeasure,1603\nincrease,1,measureforemeasure,1603\ncord,1,measureforemeasure,1603\nheavenly,1,measureforemeasure,1603\ndispense,1,measureforemeasure,1603\nviewless,1,measureforemeasure,1603\nSplit'st,1,measureforemeasure,1603\navoid,1,measureforemeasure,1603\nnights,1,measureforemeasure,1603\ndownright,1,measureforemeasure,1603\ntherein,1,measureforemeasure,1603\nThrough,1,measureforemeasure,1603\nJulietta,1,measureforemeasure,1603\nbait,1,measureforemeasure,1603\nbadness,1,measureforemeasure,1603\ngoad,1,measureforemeasure,1603\nkindred,1,measureforemeasure,1603\nCondemn'd,1,measureforemeasure,1603\ntied,1,measureforemeasure,1603\ndislike,1,measureforemeasure,1603\nSend,1,measureforemeasure,1603\nconvent,1,measureforemeasure,1603\nremove,1,measureforemeasure,1603\nFreshly,1,measureforemeasure,1603\nsecure,1,measureforemeasure,1603\napartment,1,measureforemeasure,1603\ngods,1,measureforemeasure,1603\nfairly,1,measureforemeasure,1603\npose,1,measureforemeasure,1603\nindirectly,1,measureforemeasure,1603\nexcellence,1,measureforemeasure,1603\noverweigh,1,measureforemeasure,1603\nsell,1,measureforemeasure,1603\nunfolding,1,measureforemeasure,1603\nfloods,1,measureforemeasure,1603\ndispenses,1,measureforemeasure,1603\nJust,1,measureforemeasure,1603\nmillions,1,measureforemeasure,1603\naloud,1,measureforemeasure,1603\noverheard,1,measureforemeasure,1603\nFields,1,measureforemeasure,1603\ndistracted,1,measureforemeasure,1603\nwhilst,1,measureforemeasure,1603\nlevity,1,measureforemeasure,1603\nbald,1,measureforemeasure,1603\nNext,1,measureforemeasure,1603\ntick,1,measureforemeasure,1603\nhollowly,1,measureforemeasure,1603\nNeither,1,measureforemeasure,1603\ngrieves,1,measureforemeasure,1603\ntalk'd,1,measureforemeasure,1603\nAdmit,1,measureforemeasure,1603\nunhurtful,1,measureforemeasure,1603\ngreeting,1,measureforemeasure,1603\nwinters,1,measureforemeasure,1603\nIgnomy,1,measureforemeasure,1603\ninsensible,1,measureforemeasure,1603\nmatch,1,measureforemeasure,1603\nseizes,1,measureforemeasure,1603\nravin,1,measureforemeasure,1603\nprotest,1,measureforemeasure,1603\nElected,1,measureforemeasure,1603\nafterward,1,measureforemeasure,1603\naffair,1,measureforemeasure,1603\ncoin,1,measureforemeasure,1603\nSeals,1,measureforemeasure,1603\nconstable's,1,measureforemeasure,1603\nJudge,1,measureforemeasure,1603\nuncleanliness,1,measureforemeasure,1603\nchances,1,measureforemeasure,1603\nAccuse,1,measureforemeasure,1603\ntriumph,1,measureforemeasure,1603\nuntil,1,measureforemeasure,1603\nTwo,1,measureforemeasure,1603\nparcel,1,measureforemeasure,1603\nHooking,1,measureforemeasure,1603\ncredulous,1,measureforemeasure,1603\nbrow,1,measureforemeasure,1603\nlordship's,1,measureforemeasure,1603\ngivings,1,measureforemeasure,1603\nunquestion'd,1,measureforemeasure,1603\nchoke,1,measureforemeasure,1603\nfoison,1,measureforemeasure,1603\neffects,1,measureforemeasure,1603\nHerself,1,measureforemeasure,1603\nimagination,1,measureforemeasure,1603\nProceeded,1,measureforemeasure,1603\nRepented,1,measureforemeasure,1603\npetty,1,measureforemeasure,1603\nmar,1,measureforemeasure,1603\nstewed,1,measureforemeasure,1603\nconcernings,1,measureforemeasure,1603\nsounder,1,measureforemeasure,1603\nmaw,1,measureforemeasure,1603\nIsabel's,1,measureforemeasure,1603\nsounded,1,measureforemeasure,1603\nallied,1,measureforemeasure,1603\nstill'd,1,measureforemeasure,1603\npray'd,1,measureforemeasure,1603\nthrifty,1,measureforemeasure,1603\n'scape,1,measureforemeasure,1603\nunlike,1,measureforemeasure,1603\nfuture,1,measureforemeasure,1603\nsufficiency,1,measureforemeasure,1603\nrheum,1,measureforemeasure,1603\nseldom,1,measureforemeasure,1603\nconsequence,1,measureforemeasure,1603\nvices,1,measureforemeasure,1603\nforced,1,measureforemeasure,1603\nMarrying,1,measureforemeasure,1603\nforted,1,measureforemeasure,1603\nwring,1,measureforemeasure,1603\ndread,1,measureforemeasure,1603\nFinding,1,measureforemeasure,1603\ndismiss'd,1,measureforemeasure,1603\nMitigation,1,measureforemeasure,1603\ncorrection,1,measureforemeasure,1603\nchosen,1,measureforemeasure,1603\nSpirits,1,measureforemeasure,1603\ncensured,1,measureforemeasure,1603\ntravell'd,1,measureforemeasure,1603\nglory,1,measureforemeasure,1603\nAlways,1,measureforemeasure,1603\nreadiness,1,measureforemeasure,1603\npull'd,1,measureforemeasure,1603\nelbow,1,measureforemeasure,1603\nextol,1,measureforemeasure,1603\ngeld,1,measureforemeasure,1603\nantiquity,1,measureforemeasure,1603\ndetermine,1,measureforemeasure,1603\nswerve,1,measureforemeasure,1603\nrested,1,measureforemeasure,1603\nnuns,1,measureforemeasure,1603\ngraciously,1,measureforemeasure,1603\nmerciful,1,measureforemeasure,1603\nlimit,1,measureforemeasure,1603\nMen,1,measureforemeasure,1603\nPainting,1,measureforemeasure,1603\npressing,1,measureforemeasure,1603\nthinking,1,measureforemeasure,1603\nrazure,1,measureforemeasure,1603\nFaults,1,measureforemeasure,1603\nbaldpate,1,measureforemeasure,1603\nuncleanness,1,measureforemeasure,1603\nhastily,1,measureforemeasure,1603\neleven,1,measureforemeasure,1603\nconfess'd,1,measureforemeasure,1603\nbellied,1,measureforemeasure,1603\nbelock'd,1,measureforemeasure,1603\ndisvalued,1,measureforemeasure,1603\nliege,1,measureforemeasure,1603\nstrokes,1,measureforemeasure,1603\nlion,1,measureforemeasure,1603\nenjoying,1,measureforemeasure,1603\nphysic,1,measureforemeasure,1603\nabsolutely,1,measureforemeasure,1603\nIndeed,1,measureforemeasure,1603\ngrains,1,measureforemeasure,1603\nsubstitutes,1,measureforemeasure,1603\nwhiles,1,measureforemeasure,1603\ntelling,1,measureforemeasure,1603\ndismiss,1,measureforemeasure,1603\nsometimes,1,measureforemeasure,1603\ndoubleness,1,measureforemeasure,1603\nuntainted,1,measureforemeasure,1603\nphrase,1,measureforemeasure,1603\nrevenges,1,measureforemeasure,1603\nCrassus,1,measureforemeasure,1603\nplucks,1,measureforemeasure,1603\nflat,1,measureforemeasure,1603\ninfliction,1,measureforemeasure,1603\nemmence,1,measureforemeasure,1603\nfasting,1,measureforemeasure,1603\npious,1,measureforemeasure,1603\nthither,1,measureforemeasure,1603\ntenderness,1,measureforemeasure,1603\ntub,1,measureforemeasure,1603\ncitizens,1,measureforemeasure,1603\nbrakes,1,measureforemeasure,1603\ngravity,1,measureforemeasure,1603\ntickle,1,measureforemeasure,1603\nfitness,1,measureforemeasure,1603\nwarrant's,1,measureforemeasure,1603\ncompel,1,measureforemeasure,1603\nthrowing,1,measureforemeasure,1603\ndishonour'd,1,measureforemeasure,1603\nReason,1,measureforemeasure,1603\nbesides,1,measureforemeasure,1603\nviolation,1,measureforemeasure,1603\njade,1,measureforemeasure,1603\nknave's,1,measureforemeasure,1603\ncurfew,1,measureforemeasure,1603\nShooty,1,measureforemeasure,1603\nLent,1,measureforemeasure,1603\ncorners,1,measureforemeasure,1603\npelting,1,measureforemeasure,1603\nLend,1,measureforemeasure,1603\nCommandments,1,measureforemeasure,1603\nPhilip,1,measureforemeasure,1603\nentreaty,1,measureforemeasure,1603\nripen'd,1,measureforemeasure,1603\ncompell'd,1,measureforemeasure,1603\nmoe,1,measureforemeasure,1603\noutstretch'd,1,measureforemeasure,1603\nundertaking,1,measureforemeasure,1603\nnewness,1,measureforemeasure,1603\nshrewd,1,measureforemeasure,1603\nDeath,1,measureforemeasure,1603\nsimple,1,measureforemeasure,1603\nmouths,1,measureforemeasure,1603\nforgiveness,1,measureforemeasure,1603\nleads,1,measureforemeasure,1603\nreply,1,measureforemeasure,1603\nyesternight,1,measureforemeasure,1603\njudges,1,measureforemeasure,1603\nimposed,1,measureforemeasure,1603\nemploy,1,measureforemeasure,1603\ntherewithal,1,measureforemeasure,1603\nwounding,1,measureforemeasure,1603\ncareless,1,measureforemeasure,1603\npattern,1,measureforemeasure,1603\nstifle,1,measureforemeasure,1603\nbran,1,measureforemeasure,1603\nunprofitable,1,measureforemeasure,1603\nessence,1,measureforemeasure,1603\ninstructions,1,measureforemeasure,1603\nhonour'd,1,measureforemeasure,1603\ndestined,1,measureforemeasure,1603\ndart,1,measureforemeasure,1603\ncourt'sy,1,measureforemeasure,1603\ndare,1,measureforemeasure,1603\nFalls,1,measureforemeasure,1603\nnovice,1,measureforemeasure,1603\nWhip,1,measureforemeasure,1603\nsulphurous,1,measureforemeasure,1603\nimpudence,1,measureforemeasure,1603\nDie,1,measureforemeasure,1603\ncracking,1,measureforemeasure,1603\nweight,1,measureforemeasure,1603\nsudden,1,measureforemeasure,1603\ncatch,1,measureforemeasure,1603\nlawless,1,measureforemeasure,1603\nlongest,1,measureforemeasure,1603\nprivily,1,measureforemeasure,1603\ncommissions,1,measureforemeasure,1603\nunskilfully,1,measureforemeasure,1603\nhumbles,1,measureforemeasure,1603\nprecept,1,measureforemeasure,1603\ninjurious,1,measureforemeasure,1603\ndry,1,measureforemeasure,1603\nbred,1,measureforemeasure,1603\nwithdrawing,1,measureforemeasure,1603\n'her,1,measureforemeasure,1603\nswallowed,1,measureforemeasure,1603\nclutch'd,1,measureforemeasure,1603\nadmonition,1,measureforemeasure,1603\nDRAMATIS,1,measureforemeasure,1603\nwhores,1,measureforemeasure,1603\nUntil,1,measureforemeasure,1603\nsuccess,1,measureforemeasure,1603\nsinister,1,measureforemeasure,1603\ngarlic,1,measureforemeasure,1603\nshake,1,measureforemeasure,1603\nTeach,1,measureforemeasure,1603\nMum,1,measureforemeasure,1603\nfinish'd,1,measureforemeasure,1603\nundergo,1,measureforemeasure,1603\nThereon,1,measureforemeasure,1603\nflower,1,measureforemeasure,1603\nDesires,1,measureforemeasure,1603\nToo,1,measureforemeasure,1603\nfrankly,1,measureforemeasure,1603\nLeft,1,measureforemeasure,1603\nfellowships,1,measureforemeasure,1603\nflows,1,measureforemeasure,1603\ntempt,1,measureforemeasure,1603\nobedient,1,measureforemeasure,1603\nrecord,1,measureforemeasure,1603\nhe'ld,1,measureforemeasure,1603\ncreditors,1,measureforemeasure,1603\nsmell,1,measureforemeasure,1603\nconsenting,1,measureforemeasure,1603\nstings,1,measureforemeasure,1603\nshill,1,measureforemeasure,1603\ndwelling,1,measureforemeasure,1603\npossessions,1,measureforemeasure,1603\nscaled,1,measureforemeasure,1603\nsmelt,1,measureforemeasure,1603\nrustle,1,measureforemeasure,1603\ncorporal,1,measureforemeasure,1603\nblaspheme,1,measureforemeasure,1603\nteeming,1,measureforemeasure,1603\ntake't,1,measureforemeasure,1603\nblasphemy,1,measureforemeasure,1603\nmutual,1,measureforemeasure,1603\nsoundly,1,measureforemeasure,1603\ndeflower'd,1,measureforemeasure,1603\nwhoremaster,1,measureforemeasure,1603\ninjunctions,1,measureforemeasure,1603\nkill,1,measureforemeasure,1603\njustly,1,measureforemeasure,1603\nadjudged,1,measureforemeasure,1603\nscarecrow,1,measureforemeasure,1603\ntack,1,measureforemeasure,1603\nrepair,1,measureforemeasure,1603\nsolemnity,1,measureforemeasure,1603\nbreathe,1,measureforemeasure,1603\nobedience,1,measureforemeasure,1603\noaths,1,measureforemeasure,1603\nbids,1,measureforemeasure,1603\nDeputy,1,measureforemeasure,1603\nshape,1,measureforemeasure,1603\nproperties,1,measureforemeasure,1603\nBound,1,measureforemeasure,1603\nLechery,1,measureforemeasure,1603\ndressings,1,measureforemeasure,1603\nWords,1,measureforemeasure,1603\nperhaps,1,measureforemeasure,1603\nprivately,1,measureforemeasure,1603\nGrown,1,measureforemeasure,1603\nselves,1,measureforemeasure,1603\nUnfold,1,measureforemeasure,1603\nshare,1,measureforemeasure,1603\nCorrection,1,measureforemeasure,1603\nforenamed,1,measureforemeasure,1603\nenemy,1,measureforemeasure,1603\nremissness,1,measureforemeasure,1603\ndegrees,1,measureforemeasure,1603\nending,1,measureforemeasure,1603\nsway,1,measureforemeasure,1603\nBidding,1,measureforemeasure,1603\nMaiden,1,measureforemeasure,1603\nforfeits,2,measureforemeasure,1603\nV,2,measureforemeasure,1603\nadvised,2,measureforemeasure,1603\nStands,2,measureforemeasure,1603\nProve,2,measureforemeasure,1603\nprofanation,2,measureforemeasure,1603\ncomposition,2,measureforemeasure,1603\nHear,2,measureforemeasure,1603\ndouble,2,measureforemeasure,1603\nforswear,2,measureforemeasure,1603\nwish'd,2,measureforemeasure,1603\nhonours,2,measureforemeasure,1603\nhelp,2,measureforemeasure,1603\nbones,2,measureforemeasure,1603\nmend,2,measureforemeasure,1603\npublicly,2,measureforemeasure,1603\nsainted,2,measureforemeasure,1603\nexpress,2,measureforemeasure,1603\njot,2,measureforemeasure,1603\nheld,2,measureforemeasure,1603\nhell,2,measureforemeasure,1603\nStay,2,measureforemeasure,1603\npardon'd,2,measureforemeasure,1603\nmere,2,measureforemeasure,1603\nCitizens,2,measureforemeasure,1603\nwhile,2,measureforemeasure,1603\nHelp,2,measureforemeasure,1603\ntears,2,measureforemeasure,1603\ncountermand,2,measureforemeasure,1603\nappeal,2,measureforemeasure,1603\nprey,2,measureforemeasure,1603\nsort,2,measureforemeasure,1603\nlies,2,measureforemeasure,1603\ncontrary,2,measureforemeasure,1603\nlief,2,measureforemeasure,1603\nscruple,2,measureforemeasure,1603\ntyrannous,2,measureforemeasure,1603\ndemand,2,measureforemeasure,1603\nagreed,2,measureforemeasure,1603\nspare,2,measureforemeasure,1603\nsaved,2,measureforemeasure,1603\ncase,2,measureforemeasure,1603\npursue,2,measureforemeasure,1603\naffianced,2,measureforemeasure,1603\nsoon,2,measureforemeasure,1603\ncharge,2,measureforemeasure,1603\ngiant,2,measureforemeasure,1603\ninstructed,2,measureforemeasure,1603\namazed,2,measureforemeasure,1603\nAfter,2,measureforemeasure,1603\nline,2,measureforemeasure,1603\nJove,2,measureforemeasure,1603\nhighness,2,measureforemeasure,1603\nresolve,2,measureforemeasure,1603\nthou'rt,2,measureforemeasure,1603\nhorror,2,measureforemeasure,1603\nMercy,2,measureforemeasure,1603\nsubjects,2,measureforemeasure,1603\nconcerns,2,measureforemeasure,1603\nheat,2,measureforemeasure,1603\nfunction,2,measureforemeasure,1603\ntoward,2,measureforemeasure,1603\napprehends,2,measureforemeasure,1603\npaper,2,measureforemeasure,1603\ncomplexion,2,measureforemeasure,1603\nriches,2,measureforemeasure,1603\nblessed,2,measureforemeasure,1603\npartner,2,measureforemeasure,1603\nview,2,measureforemeasure,1603\nmoated,2,measureforemeasure,1603\nplucked,2,measureforemeasure,1603\nsix,2,measureforemeasure,1603\nhereafter,2,measureforemeasure,1603\nshy,2,measureforemeasure,1603\nsit,2,measureforemeasure,1603\nspeeches,2,measureforemeasure,1603\nreturned,2,measureforemeasure,1603\naged,2,measureforemeasure,1603\npaying,2,measureforemeasure,1603\nkey,2,measureforemeasure,1603\nourself,2,measureforemeasure,1603\nwhipping,2,measureforemeasure,1603\ndeceit,2,measureforemeasure,1603\nnine,2,measureforemeasure,1603\nactor,2,measureforemeasure,1603\nson,2,measureforemeasure,1603\nabuses,2,measureforemeasure,1603\nmurderer,2,measureforemeasure,1603\nsworn,2,measureforemeasure,1603\nlivery,2,measureforemeasure,1603\nMariana's,2,measureforemeasure,1603\ninstruct,2,measureforemeasure,1603\ndoubt,2,measureforemeasure,1603\nmother,2,measureforemeasure,1603\nAttendants,2,measureforemeasure,1603\naffect,2,measureforemeasure,1603\namiss,2,measureforemeasure,1603\nthieves,2,measureforemeasure,1603\n'Bless,2,measureforemeasure,1603\nskins,2,measureforemeasure,1603\nThese,2,measureforemeasure,1603\npiece,2,measureforemeasure,1603\nways,2,measureforemeasure,1603\ncalumny,2,measureforemeasure,1603\nfigure,2,measureforemeasure,1603\nterms,2,measureforemeasure,1603\nencounter,2,measureforemeasure,1603\nHannibal,2,measureforemeasure,1603\nbribe,2,measureforemeasure,1603\nWherein,2,measureforemeasure,1603\nthence,2,measureforemeasure,1603\ncompanion,2,measureforemeasure,1603\nabove,2,measureforemeasure,1603\npunish,2,measureforemeasure,1603\nrelish,2,measureforemeasure,1603\nsaucy,2,measureforemeasure,1603\nsword,2,measureforemeasure,1603\ncorrupt,2,measureforemeasure,1603\nancient,2,measureforemeasure,1603\nrude,2,measureforemeasure,1603\nward,2,measureforemeasure,1603\ntax,2,measureforemeasure,1603\nlanguage,2,measureforemeasure,1603\nStreet,2,measureforemeasure,1603\nDare,2,measureforemeasure,1603\nstead,2,measureforemeasure,1603\naccess,2,measureforemeasure,1603\nTroth,2,measureforemeasure,1603\nbold,2,measureforemeasure,1603\ncustom,2,measureforemeasure,1603\ndevil's,2,measureforemeasure,1603\nseem'd,2,measureforemeasure,1603\nwarm,2,measureforemeasure,1603\nmerely,2,measureforemeasure,1603\nwast,2,measureforemeasure,1603\nsuborn'd,2,measureforemeasure,1603\nFrench,2,measureforemeasure,1603\ncolour,2,measureforemeasure,1603\nbitter,2,measureforemeasure,1603\nsick,2,measureforemeasure,1603\nbig,2,measureforemeasure,1603\nElbow's,2,measureforemeasure,1603\nstir,2,measureforemeasure,1603\nburning,2,measureforemeasure,1603\nstatutes,2,measureforemeasure,1603\nmortality,2,measureforemeasure,1603\nutter,2,measureforemeasure,1603\nwronged,2,measureforemeasure,1603\nscarce,2,measureforemeasure,1603\nchaste,2,measureforemeasure,1603\nguiltiness,2,measureforemeasure,1603\nBecomes,2,measureforemeasure,1603\nsmile,2,measureforemeasure,1603\nHaving,2,measureforemeasure,1603\nNature,2,measureforemeasure,1603\ninclined,2,measureforemeasure,1603\nscurvy,2,measureforemeasure,1603\nStand,2,measureforemeasure,1603\ntreble,2,measureforemeasure,1603\ndenies,2,measureforemeasure,1603\nkept,2,measureforemeasure,1603\nAnswer,2,measureforemeasure,1603\nfantastic,2,measureforemeasure,1603\nhid,2,measureforemeasure,1603\nmedicine,2,measureforemeasure,1603\nHo,2,measureforemeasure,1603\nmeant,2,measureforemeasure,1603\nstrangely,2,measureforemeasure,1603\narrest,2,measureforemeasure,1603\nLet's,2,measureforemeasure,1603\ncondemned,2,measureforemeasure,1603\nHas,2,measureforemeasure,1603\npox,2,measureforemeasure,1603\nheads,2,measureforemeasure,1603\nbegot,2,measureforemeasure,1603\nwhore,2,measureforemeasure,1603\nvaliant,2,measureforemeasure,1603\nweep,2,measureforemeasure,1603\nmetal,2,measureforemeasure,1603\nsooner,2,measureforemeasure,1603\nimagine,2,measureforemeasure,1603\nSith,2,measureforemeasure,1603\nsincerity,2,measureforemeasure,1603\nsomewhat,2,measureforemeasure,1603\nSave,2,measureforemeasure,1603\nwear,2,measureforemeasure,1603\nSaint,2,measureforemeasure,1603\nPut,2,measureforemeasure,1603\nprobation,2,measureforemeasure,1603\ntwice,2,measureforemeasure,1603\nfarewell,2,measureforemeasure,1603\neaten,2,measureforemeasure,1603\ntedious,2,measureforemeasure,1603\ndespite,2,measureforemeasure,1603\nvows,2,measureforemeasure,1603\nworship's,2,measureforemeasure,1603\nbuy,2,measureforemeasure,1603\ngown,2,measureforemeasure,1603\ndivine,2,measureforemeasure,1603\nsins,2,measureforemeasure,1603\npains,2,measureforemeasure,1603\nimmortal,2,measureforemeasure,1603\nimportune,2,measureforemeasure,1603\nbegin,2,measureforemeasure,1603\ndeliverance,2,measureforemeasure,1603\nstory,2,measureforemeasure,1603\nvirgin,2,measureforemeasure,1603\ndeep,2,measureforemeasure,1603\nimage,2,measureforemeasure,1603\npromises,2,measureforemeasure,1603\nair,2,measureforemeasure,1603\nyea,2,measureforemeasure,1603\nsatisfy,2,measureforemeasure,1603\nservant,2,measureforemeasure,1603\nstood,2,measureforemeasure,1603\nbeat,2,measureforemeasure,1603\ndebt,2,measureforemeasure,1603\nMaking,2,measureforemeasure,1603\nstoop,2,measureforemeasure,1603\nwhereon,2,measureforemeasure,1603\nenforce,2,measureforemeasure,1603\ncomforts,2,measureforemeasure,1603\nnewly,2,measureforemeasure,1603\nwench,2,measureforemeasure,1603\nfeast,2,measureforemeasure,1603\napprobation,2,measureforemeasure,1603\nbanish,2,measureforemeasure,1603\nsometime,2,measureforemeasure,1603\nOverdone's,2,measureforemeasure,1603\nage,2,measureforemeasure,1603\ncrimes,2,measureforemeasure,1603\nhadst,2,measureforemeasure,1603\noffences,2,measureforemeasure,1603\nloved,2,measureforemeasure,1603\napparel,2,measureforemeasure,1603\ntwenty,2,measureforemeasure,1603\nremoved,2,measureforemeasure,1603\njourney,2,measureforemeasure,1603\nbenefactors,2,measureforemeasure,1603\nnatures,2,measureforemeasure,1603\nBecause,2,measureforemeasure,1603\nhot,2,measureforemeasure,1603\nhark,2,measureforemeasure,1603\nbrought,2,measureforemeasure,1603\npunk,2,measureforemeasure,1603\ntempted,2,measureforemeasure,1603\ndiscourse,2,measureforemeasure,1603\naxe,2,measureforemeasure,1603\nkeen,2,measureforemeasure,1603\nRussia,2,measureforemeasure,1603\nfowl,2,measureforemeasure,1603\nHappy,2,measureforemeasure,1603\ncall'd,2,measureforemeasure,1603\nappears,2,measureforemeasure,1603\ndeny,2,measureforemeasure,1603\nplain,2,measureforemeasure,1603\nconfession,2,measureforemeasure,1603\nperpetual,2,measureforemeasure,1603\nexcuse,2,measureforemeasure,1603\ngovernor,2,measureforemeasure,1603\nwhether,2,measureforemeasure,1603\nmidnight,2,measureforemeasure,1603\nShe's,2,measureforemeasure,1603\nform,2,measureforemeasure,1603\nabhor,2,measureforemeasure,1603\nCommend,2,measureforemeasure,1603\npaid,2,measureforemeasure,1603\ndiest,2,measureforemeasure,1603\nmoney,2,measureforemeasure,1603\nmock,2,measureforemeasure,1603\napt,2,measureforemeasure,1603\nforsworn,2,measureforemeasure,1603\nstones,2,measureforemeasure,1603\nfear'd,2,measureforemeasure,1603\ndreadful,2,measureforemeasure,1603\nrogue,2,measureforemeasure,1603\nputs,2,measureforemeasure,1603\npetitions,2,measureforemeasure,1603\nchastity,2,measureforemeasure,1603\nfaithful,2,measureforemeasure,1603\ntyranny,2,measureforemeasure,1603\nsaints,2,measureforemeasure,1603\ntestimony,2,measureforemeasure,1603\nass,2,measureforemeasure,1603\ndishonest,2,measureforemeasure,1603\nforms,2,measureforemeasure,1603\nghostly,2,measureforemeasure,1603\nKing,2,measureforemeasure,1603\nHark,2,measureforemeasure,1603\npurchased,2,measureforemeasure,1603\nbroke,2,measureforemeasure,1603\nfar,2,measureforemeasure,1603\nkeeps,2,measureforemeasure,1603\nrequital,2,measureforemeasure,1603\nreported,2,measureforemeasure,1603\nCanst,2,measureforemeasure,1603\nsilence,2,measureforemeasure,1603\nwater,2,measureforemeasure,1603\nfaith,2,measureforemeasure,1603\nenvy,2,measureforemeasure,1603\nbeast,2,measureforemeasure,1603\neye,2,measureforemeasure,1603\ngrange,2,measureforemeasure,1603\nbeats,2,measureforemeasure,1603\nentertainment,2,measureforemeasure,1603\nrash,2,measureforemeasure,1603\nbears,2,measureforemeasure,1603\nbeard,2,measureforemeasure,1603\npregnant,2,measureforemeasure,1603\nmock'd,2,measureforemeasure,1603\nstrike,2,measureforemeasure,1603\naffections,2,measureforemeasure,1603\nunhappy,2,measureforemeasure,1603\nseveral,2,measureforemeasure,1603\nPeter,2,measureforemeasure,1603\nThyself,2,measureforemeasure,1603\nWill't,2,measureforemeasure,1603\ninjustice,2,measureforemeasure,1603\nappointment,2,measureforemeasure,1603\nhigh,2,measureforemeasure,1603\nmortal,2,measureforemeasure,1603\nfantastical,2,measureforemeasure,1603\nwiser,2,measureforemeasure,1603\nshield,2,measureforemeasure,1603\nwrought,2,measureforemeasure,1603\nnursed,2,measureforemeasure,1603\ndowry,2,measureforemeasure,1603\ncelerity,2,measureforemeasure,1603\n'gainst,2,measureforemeasure,1603\nfriar's,2,measureforemeasure,1603\ndream,2,measureforemeasure,1603\ntemptation,2,measureforemeasure,1603\nlabour,2,measureforemeasure,1603\nwarranted,2,measureforemeasure,1603\naccusation,2,measureforemeasure,1603\nsayest,2,measureforemeasure,1603\nGiving,2,measureforemeasure,1603\nfirm,2,measureforemeasure,1603\no'clock,2,measureforemeasure,1603\ndesired,2,measureforemeasure,1603\narrested,2,measureforemeasure,1603\nNine,2,measureforemeasure,1603\naffairs,2,measureforemeasure,1603\nopinion,2,measureforemeasure,1603\nFrederick,2,measureforemeasure,1603\nfits,2,measureforemeasure,1603\nthrow,2,measureforemeasure,1603\nTwice,2,measureforemeasure,1603\nwin,2,measureforemeasure,1603\nWe'll,2,measureforemeasure,1603\nhateful,2,measureforemeasure,1603\nredemption,2,measureforemeasure,1603\nsorrow,2,measureforemeasure,1603\nbreak,2,measureforemeasure,1603\nbread,2,measureforemeasure,1603\ncreation,2,measureforemeasure,1603\nmanifest,2,measureforemeasure,1603\nabstinence,2,measureforemeasure,1603\nfrailty,2,measureforemeasure,1603\nDear,2,measureforemeasure,1603\nrelent,2,measureforemeasure,1603\nvouch,2,measureforemeasure,1603\ndeath's,2,measureforemeasure,1603\nyou're,2,measureforemeasure,1603\nintegrity,2,measureforemeasure,1603\ncontinuance,2,measureforemeasure,1603\npatiently,2,measureforemeasure,1603\nspeedily,2,measureforemeasure,1603\nvow'd,2,measureforemeasure,1603\nstick,2,measureforemeasure,1603\nwar,2,measureforemeasure,1603\narms,2,measureforemeasure,1603\nnuptial,2,measureforemeasure,1603\nsufferance,2,measureforemeasure,1603\ndanger,2,measureforemeasure,1603\nadmitted,2,measureforemeasure,1603\nperadventure,2,measureforemeasure,1603\npounds,2,measureforemeasure,1603\nnotice,2,measureforemeasure,1603\nginger,2,measureforemeasure,1603\ngrossly,2,measureforemeasure,1603\nfact,2,measureforemeasure,1603\nransom,2,measureforemeasure,1603\nearthly,2,measureforemeasure,1603\nHail,2,measureforemeasure,1603\nangel,2,measureforemeasure,1603\nlechery,2,measureforemeasure,1603\nowe,2,measureforemeasure,1603\nsupply,2,measureforemeasure,1603\nfarther,2,measureforemeasure,1603\ndetermined,2,measureforemeasure,1603\nmarble,2,measureforemeasure,1603\nfox,2,measureforemeasure,1603\nhundred,2,measureforemeasure,1603\nangry,2,measureforemeasure,1603\nfalling,2,measureforemeasure,1603\nfail,2,measureforemeasure,1603\nShow,2,measureforemeasure,1603\nNotice,2,measureforemeasure,1603\nMany,2,measureforemeasure,1603\ndiseases,2,measureforemeasure,1603\nmodesty,2,measureforemeasure,1603\nstolen,2,measureforemeasure,1603\ngrant,2,measureforemeasure,1603\ndarkly,2,measureforemeasure,1603\ntruths,2,measureforemeasure,1603\npleased,2,measureforemeasure,1603\nworn,2,measureforemeasure,1603\npalace,2,measureforemeasure,1603\nallow,2,measureforemeasure,1603\nunjust,2,measureforemeasure,1603\nperfect,2,measureforemeasure,1603\nlists,2,measureforemeasure,1603\nwishing,2,measureforemeasure,1603\nparticular,2,measureforemeasure,1603\nlordship,2,measureforemeasure,1603\nta'en,2,measureforemeasure,1603\nshows,2,measureforemeasure,1603\nunfold,2,measureforemeasure,1603\nan't,2,measureforemeasure,1603\ndepart,2,measureforemeasure,1603\npartly,2,measureforemeasure,1603\nPOMPHEY,2,measureforemeasure,1603\nqualify,2,measureforemeasure,1603\nnames,2,measureforemeasure,1603\ntrumpets,2,measureforemeasure,1603\nWelcome,2,measureforemeasure,1603\ntale,2,measureforemeasure,1603\nCaesar,2,measureforemeasure,1603\ngentlemen,2,measureforemeasure,1603\nsufficient,2,measureforemeasure,1603\nEvery,2,measureforemeasure,1603\nquit,2,measureforemeasure,1603\nLay,2,measureforemeasure,1603\nprofesses,2,measureforemeasure,1603\nhollow,2,measureforemeasure,1603\nfollows,2,measureforemeasure,1603\ncondemn,2,measureforemeasure,1603\nmonastery,2,measureforemeasure,1603\nlives,2,measureforemeasure,1603\nWhere's,2,measureforemeasure,1603\nresolution,2,measureforemeasure,1603\nvirtues,2,measureforemeasure,1603\nfitter,2,measureforemeasure,1603\ngives,2,measureforemeasure,1603\nprofits,2,measureforemeasure,1603\nfitted,2,measureforemeasure,1603\nalong,2,measureforemeasure,1603\nfurred,2,measureforemeasure,1603\nlying,2,measureforemeasure,1603\ncontents,2,measureforemeasure,1603\nnineteen,2,measureforemeasure,1603\nknowest,2,measureforemeasure,1603\ntroth,2,measureforemeasure,1603\npresence,2,measureforemeasure,1603\nfeeling,2,measureforemeasure,1603\nHallowmas,2,measureforemeasure,1603\nsupposed,2,measureforemeasure,1603\nunkindness,2,measureforemeasure,1603\nlook'd,2,measureforemeasure,1603\nsweet,2,measureforemeasure,1603\npirate,2,measureforemeasure,1603\nsacred,2,measureforemeasure,1603\ncry,2,measureforemeasure,1603\nHaste,2,measureforemeasure,1603\nKnow,2,measureforemeasure,1603\nhours,2,measureforemeasure,1603\nwarrants,2,measureforemeasure,1603\nbelieved,2,measureforemeasure,1603\nled,2,measureforemeasure,1603\nallowed,2,measureforemeasure,1603\nalas,2,measureforemeasure,1603\nnurse,2,measureforemeasure,1603\nbetrothed,2,measureforemeasure,1603\nfearing,2,measureforemeasure,1603\nseason,2,measureforemeasure,1603\nlie,2,measureforemeasure,1603\nsealed,2,measureforemeasure,1603\nlicence,2,measureforemeasure,1603\nNothing,2,measureforemeasure,1603\npersuade,2,measureforemeasure,1603\nsuitor,2,measureforemeasure,1603\neat,2,measureforemeasure,1603\nreprieve,2,measureforemeasure,1603\nhonesty,2,measureforemeasure,1603\nspirits,2,measureforemeasure,1603\nimports,2,measureforemeasure,1603\nabroad,2,measureforemeasure,1603\ndoing,2,measureforemeasure,1603\nprenzie,2,measureforemeasure,1603\ndealing,2,measureforemeasure,1603\nDoes,2,measureforemeasure,1603\nevils,2,measureforemeasure,1603\nstreet,2,measureforemeasure,1603\nSince,2,measureforemeasure,1603\npleasant,2,measureforemeasure,1603\nwhip,2,measureforemeasure,1603\nthoughts,2,measureforemeasure,1603\nGreat,2,measureforemeasure,1603\nbiting,2,measureforemeasure,1603\nbethink,2,measureforemeasure,1603\npunishment,2,measureforemeasure,1603\nVarrius,2,measureforemeasure,1603\nwithdraw,2,measureforemeasure,1603\nAmen,2,measureforemeasure,1603\ncredit,2,measureforemeasure,1603\nmuffled,2,measureforemeasure,1603\nseverally,2,measureforemeasure,1603\nrecompense,2,measureforemeasure,1603\nlist,2,measureforemeasure,1603\ncorruption,2,measureforemeasure,1603\nprovide,2,measureforemeasure,1603\nLest,2,measureforemeasure,1603\nweigh,2,measureforemeasure,1603\nframe,2,measureforemeasure,1603\ninquired,2,measureforemeasure,1603\ntop,2,measureforemeasure,1603\nliest,2,measureforemeasure,1603\nlamb,2,measureforemeasure,1603\ninstantly,2,measureforemeasure,1603\nBring,2,measureforemeasure,1603\nfilthy,2,measureforemeasure,1603\nbehold,2,measureforemeasure,1603\nwithout,2,measureforemeasure,1603\ngreatness,2,measureforemeasure,1603\nKneeling,2,measureforemeasure,1603\ncross,2,measureforemeasure,1603\nprivate,2,measureforemeasure,1603\ntainted,2,measureforemeasure,1603\nremorse,2,measureforemeasure,1603\ntread,2,measureforemeasure,1603\ncrown,2,measureforemeasure,1603\nwouldst,2,measureforemeasure,1603\ndurance,2,measureforemeasure,1603\nsharp,2,measureforemeasure,1603\nremembered,2,measureforemeasure,1603\ndays,3,measureforemeasure,1603\nmotion,3,measureforemeasure,1603\nfor't,3,measureforemeasure,1603\nwrit,3,measureforemeasure,1603\nwoman's,3,measureforemeasure,1603\nadvantage,3,measureforemeasure,1603\nlawful,3,measureforemeasure,1603\nbrown,3,measureforemeasure,1603\nWhether,3,measureforemeasure,1603\noffended,3,measureforemeasure,1603\nrascal,3,measureforemeasure,1603\nWill,3,measureforemeasure,1603\nspake,3,measureforemeasure,1603\nEither,3,measureforemeasure,1603\nsight,3,measureforemeasure,1603\nprosperous,3,measureforemeasure,1603\nslander,3,measureforemeasure,1603\nunderstand,3,measureforemeasure,1603\nwithal,3,measureforemeasure,1603\nrun,3,measureforemeasure,1603\nabsolute,3,measureforemeasure,1603\ntrust,3,measureforemeasure,1603\nattempt,3,measureforemeasure,1603\nOnce,3,measureforemeasure,1603\nstrength,3,measureforemeasure,1603\njest,3,measureforemeasure,1603\ndraw,3,measureforemeasure,1603\nsuburbs,3,measureforemeasure,1603\nOnly,3,measureforemeasure,1603\ngross,3,measureforemeasure,1603\nfools,3,measureforemeasure,1603\nnoise,3,measureforemeasure,1603\nvisit,3,measureforemeasure,1603\nfurther,3,measureforemeasure,1603\nimpossible,3,measureforemeasure,1603\nwalk,3,measureforemeasure,1603\nmerry,3,measureforemeasure,1603\ndeceived,3,measureforemeasure,1603\n'twas,3,measureforemeasure,1603\nperil,3,measureforemeasure,1603\nWas,3,measureforemeasure,1603\nTheir,3,measureforemeasure,1603\nacquainted,3,measureforemeasure,1603\nThanks,3,measureforemeasure,1603\nconfessor,3,measureforemeasure,1603\nread,3,measureforemeasure,1603\nworst,3,measureforemeasure,1603\nvineyard,3,measureforemeasure,1603\nreceived,3,measureforemeasure,1603\nabsence,3,measureforemeasure,1603\nAngelo's,3,measureforemeasure,1603\nsun,3,measureforemeasure,1603\nfearful,3,measureforemeasure,1603\nhumbly,3,measureforemeasure,1603\ngrow,3,measureforemeasure,1603\nputting,3,measureforemeasure,1603\nprunes,3,measureforemeasure,1603\nexecutioner,3,measureforemeasure,1603\nknees,3,measureforemeasure,1603\ndamnable,3,measureforemeasure,1603\nPlease,3,measureforemeasure,1603\nsteal,3,measureforemeasure,1603\ndies,3,measureforemeasure,1603\npretty,3,measureforemeasure,1603\ncunning,3,measureforemeasure,1603\ndeserves,3,measureforemeasure,1603\nprecise,3,measureforemeasure,1603\nHold,3,measureforemeasure,1603\ndrinking,3,measureforemeasure,1603\nAn,3,measureforemeasure,1603\npatience,3,measureforemeasure,1603\ndeeds,3,measureforemeasure,1603\nbelike,3,measureforemeasure,1603\nOn,3,measureforemeasure,1603\nProclaim,3,measureforemeasure,1603\nHa,3,measureforemeasure,1603\nbeg,3,measureforemeasure,1603\nnotorious,3,measureforemeasure,1603\nsurely,3,measureforemeasure,1603\nquick,3,measureforemeasure,1603\npin,3,measureforemeasure,1603\nIs't,3,measureforemeasure,1603\nThou'rt,3,measureforemeasure,1603\nsorry,3,measureforemeasure,1603\nbehind,3,measureforemeasure,1603\ngot,3,measureforemeasure,1603\npiled,3,measureforemeasure,1603\npersuasion,3,measureforemeasure,1603\nswift,3,measureforemeasure,1603\nlonger,3,measureforemeasure,1603\nvantage,3,measureforemeasure,1603\nOverdone,3,measureforemeasure,1603\ngovernment,3,measureforemeasure,1603\nbreath,3,measureforemeasure,1603\nforgive,3,measureforemeasure,1603\ntyrant,3,measureforemeasure,1603\nfavour,3,measureforemeasure,1603\nsafe,3,measureforemeasure,1603\nBesides,3,measureforemeasure,1603\nlend,3,measureforemeasure,1603\nredress,3,measureforemeasure,1603\ngall,3,measureforemeasure,1603\naccused,3,measureforemeasure,1603\nice,3,measureforemeasure,1603\nspeed,3,measureforemeasure,1603\ngentlewoman,3,measureforemeasure,1603\nmanner,3,measureforemeasure,1603\nthyself,3,measureforemeasure,1603\ncommitted,3,measureforemeasure,1603\nabide,3,measureforemeasure,1603\nloud,3,measureforemeasure,1603\nloss,3,measureforemeasure,1603\nafternoon,3,measureforemeasure,1603\ngreater,3,measureforemeasure,1603\neasy,3,measureforemeasure,1603\nhalf,3,measureforemeasure,1603\nround,3,measureforemeasure,1603\nwelcome,3,measureforemeasure,1603\nKnocking,3,measureforemeasure,1603\nnatural,3,measureforemeasure,1603\ndraws,3,measureforemeasure,1603\nopen,3,measureforemeasure,1603\nUnder,3,measureforemeasure,1603\nalive,3,measureforemeasure,1603\nAttendant,3,measureforemeasure,1603\nsecret,3,measureforemeasure,1603\nchance,3,measureforemeasure,1603\nfew,3,measureforemeasure,1603\nRagozine,3,measureforemeasure,1603\nlonging,3,measureforemeasure,1603\ntrial,3,measureforemeasure,1603\nwillingly,3,measureforemeasure,1603\nArt,3,measureforemeasure,1603\noften,3,measureforemeasure,1603\nMadam,3,measureforemeasure,1603\nLords,3,measureforemeasure,1603\nsmallest,3,measureforemeasure,1603\nnose,3,measureforemeasure,1603\nproceed,3,measureforemeasure,1603\noccupation,3,measureforemeasure,1603\ntender,3,measureforemeasure,1603\nhide,3,measureforemeasure,1603\ndukes,3,measureforemeasure,1603\nLove,3,measureforemeasure,1603\nvisage,3,measureforemeasure,1603\nfornication,3,measureforemeasure,1603\nDost,3,measureforemeasure,1603\nSee,3,measureforemeasure,1603\ngeneral,3,measureforemeasure,1603\neffect,3,measureforemeasure,1603\nstrict,3,measureforemeasure,1603\nfoolish,3,measureforemeasure,1603\nbeggar,3,measureforemeasure,1603\npresently,3,measureforemeasure,1603\ncoward,3,measureforemeasure,1603\nI'ld,3,measureforemeasure,1603\nwoe,3,measureforemeasure,1603\nbecause,3,measureforemeasure,1603\ngates,3,measureforemeasure,1603\nBeing,3,measureforemeasure,1603\nclose,3,measureforemeasure,1603\nmaids,3,measureforemeasure,1603\nVARRIUS,3,measureforemeasure,1603\ngrave,3,measureforemeasure,1603\nexample,3,measureforemeasure,1603\nsays,3,measureforemeasure,1603\ndetest,3,measureforemeasure,1603\nheavy,3,measureforemeasure,1603\nintent,3,measureforemeasure,1603\noath,3,measureforemeasure,1603\ncomplain,3,measureforemeasure,1603\nnext,3,measureforemeasure,1603\npence,3,measureforemeasure,1603\npenitent,3,measureforemeasure,1603\ndisposition,3,measureforemeasure,1603\nconsent,3,measureforemeasure,1603\nwaste,3,measureforemeasure,1603\nwhence,3,measureforemeasure,1603\nminister,3,measureforemeasure,1603\nground,3,measureforemeasure,1603\ncharacter,3,measureforemeasure,1603\nANGELO's,3,measureforemeasure,1603\nrack,3,measureforemeasure,1603\nwork,3,measureforemeasure,1603\nletter,3,measureforemeasure,1603\ndiscover,3,measureforemeasure,1603\nSweet,3,measureforemeasure,1603\nfine,3,measureforemeasure,1603\nvow,3,measureforemeasure,1603\nrich,3,measureforemeasure,1603\nsafety,3,measureforemeasure,1603\nne'er,3,measureforemeasure,1603\nthunder,3,measureforemeasure,1603\nherself,3,measureforemeasure,1603\nperceive,3,measureforemeasure,1603\ncensure,3,measureforemeasure,1603\npublic,3,measureforemeasure,1603\nVery,3,measureforemeasure,1603\nfare,3,measureforemeasure,1603\ntalk,3,measureforemeasure,1603\nentering,3,measureforemeasure,1603\ngetting,3,measureforemeasure,1603\nclear,3,measureforemeasure,1603\ndishes,3,measureforemeasure,1603\nstrong,3,measureforemeasure,1603\ncommission,3,measureforemeasure,1603\nalways,3,measureforemeasure,1603\nfault's,3,measureforemeasure,1603\nwe'll,3,measureforemeasure,1603\nBelieve,3,measureforemeasure,1603\nGentlemen,3,measureforemeasure,1603\nwretched,3,measureforemeasure,1603\nprayer,3,measureforemeasure,1603\naccording,3,measureforemeasure,1603\nmad,3,measureforemeasure,1603\nwrite,3,measureforemeasure,1603\nAnother,3,measureforemeasure,1603\nstraight,3,measureforemeasure,1603\nremember,3,measureforemeasure,1603\nmet,3,measureforemeasure,1603\nmanifested,3,measureforemeasure,1603\nBefore,3,measureforemeasure,1603\nabuse,3,measureforemeasure,1603\npernicious,3,measureforemeasure,1603\nterror,3,measureforemeasure,1603\nfever,3,measureforemeasure,1603\nbetimes,3,measureforemeasure,1603\nappetite,3,measureforemeasure,1603\ntry,3,measureforemeasure,1603\nrespect,3,measureforemeasure,1603\nattend,3,measureforemeasure,1603\nsubstitute,3,measureforemeasure,1603\ndark,3,measureforemeasure,1603\nhonour's,3,measureforemeasure,1603\nfollow,3,measureforemeasure,1603\nperchance,3,measureforemeasure,1603\ndue,3,measureforemeasure,1603\ndispatch,3,measureforemeasure,1603\ntie,3,measureforemeasure,1603\nshalt,3,measureforemeasure,1603\nfrail,3,measureforemeasure,1603\nAbhorson,3,measureforemeasure,1603\nking,3,measureforemeasure,1603\nslip,3,measureforemeasure,1603\nawake,3,measureforemeasure,1603\nsisterhood,3,measureforemeasure,1603\nhangman,3,measureforemeasure,1603\ne'er,3,measureforemeasure,1603\nlady,3,measureforemeasure,1603\nto,515,measureforemeasure,1603\no'er,4,measureforemeasure,1603\ntook,4,measureforemeasure,1603\nmistress,4,measureforemeasure,1603\nwhipt,4,measureforemeasure,1603\nvillain,4,measureforemeasure,1603\ntruly,4,measureforemeasure,1603\ncontract,4,measureforemeasure,1603\ndrink,4,measureforemeasure,1603\nEre,4,measureforemeasure,1603\ncalls,4,measureforemeasure,1603\nWhom,4,measureforemeasure,1603\nproclaim,4,measureforemeasure,1603\nseven,4,measureforemeasure,1603\nWhose,4,measureforemeasure,1603\nsaw,4,measureforemeasure,1603\nsure,4,measureforemeasure,1603\nmadness,4,measureforemeasure,1603\nsoft,4,measureforemeasure,1603\nGentle,4,measureforemeasure,1603\nbound,4,measureforemeasure,1603\n'twere,4,measureforemeasure,1603\nvirtuous,4,measureforemeasure,1603\nsea,4,measureforemeasure,1603\nsuit,4,measureforemeasure,1603\ndeliver,4,measureforemeasure,1603\nFarewell,4,measureforemeasure,1603\nsubject,4,measureforemeasure,1603\nworse,4,measureforemeasure,1603\nredeem,4,measureforemeasure,1603\ndaughter,4,measureforemeasure,1603\nsue,4,measureforemeasure,1603\nsevere,4,measureforemeasure,1603\npromise,4,measureforemeasure,1603\nothers,4,measureforemeasure,1603\nkneel,4,measureforemeasure,1603\nMight,4,measureforemeasure,1603\naccuse,4,measureforemeasure,1603\nmean,4,measureforemeasure,1603\nside,4,measureforemeasure,1603\nbad,4,measureforemeasure,1603\ncruel,4,measureforemeasure,1603\nto't,4,measureforemeasure,1603\nHer,4,measureforemeasure,1603\nbed,4,measureforemeasure,1603\nplay,4,measureforemeasure,1603\nHad,4,measureforemeasure,1603\npast,4,measureforemeasure,1603\npass,4,measureforemeasure,1603\nblock,4,measureforemeasure,1603\nLike,4,measureforemeasure,1603\ngate,4,measureforemeasure,1603\nquite,4,measureforemeasure,1603\ndeed,4,measureforemeasure,1603\naffection,4,measureforemeasure,1603\npromised,4,measureforemeasure,1603\nwretch,4,measureforemeasure,1603\nha,4,measureforemeasure,1603\nrepent,4,measureforemeasure,1603\nneeds,4,measureforemeasure,1603\ndear,4,measureforemeasure,1603\ncaitiff,4,measureforemeasure,1603\ndead,4,measureforemeasure,1603\ntouch'd,4,measureforemeasure,1603\nrestraint,4,measureforemeasure,1603\nhouses,4,measureforemeasure,1603\no',4,measureforemeasure,1603\nidle,4,measureforemeasure,1603\nmorn,4,measureforemeasure,1603\nlost,4,measureforemeasure,1603\ndevil,4,measureforemeasure,1603\nGrace,4,measureforemeasure,1603\nimprisonment,4,measureforemeasure,1603\noutward,4,measureforemeasure,1603\nspeaks,4,measureforemeasure,1603\nhang,4,measureforemeasure,1603\npluck,4,measureforemeasure,1603\nprepare,4,measureforemeasure,1603\nbosom,4,measureforemeasure,1603\nfool,4,measureforemeasure,1603\nfond,4,measureforemeasure,1603\nthanks,4,measureforemeasure,1603\ntrick,4,measureforemeasure,1603\nSirrah,4,measureforemeasure,1603\ntouch,4,measureforemeasure,1603\nShould,4,measureforemeasure,1603\nFRANCISCA,4,measureforemeasure,1603\nHave,4,measureforemeasure,1603\nAgainst,4,measureforemeasure,1603\nnote,4,measureforemeasure,1603\nthinks,4,measureforemeasure,1603\nalmost,4,measureforemeasure,1603\nvelvet,4,measureforemeasure,1603\nquickly,4,measureforemeasure,1603\ngarden,4,measureforemeasure,1603\nTherefore,4,measureforemeasure,1603\nDoth,4,measureforemeasure,1603\nquestion,4,measureforemeasure,1603\nvarlet,4,measureforemeasure,1603\nsatisfaction,4,measureforemeasure,1603\nplead,4,measureforemeasure,1603\nend,4,measureforemeasure,1603\nCould,4,measureforemeasure,1603\nlet's,4,measureforemeasure,1603\nbenefit,4,measureforemeasure,1603\nletters,4,measureforemeasure,1603\ndishonour,4,measureforemeasure,1603\nwit,4,measureforemeasure,1603\ncure,4,measureforemeasure,1603\nrise,4,measureforemeasure,1603\nreceive,4,measureforemeasure,1603\nforward,4,measureforemeasure,1603\nserve,4,measureforemeasure,1603\nLodowick,4,measureforemeasure,1603\ncoming,4,measureforemeasure,1603\nwent,4,measureforemeasure,1603\nsaint,4,measureforemeasure,1603\ncompany,4,measureforemeasure,1603\nBoy,4,measureforemeasure,1603\ncontinue,4,measureforemeasure,1603\nlived,4,measureforemeasure,1603\nis't,4,measureforemeasure,1603\nsentenced,4,measureforemeasure,1603\ncomplaint,4,measureforemeasure,1603\ncarry,4,measureforemeasure,1603\nNone,4,measureforemeasure,1603\ndangerous,4,measureforemeasure,1603\ncut,4,measureforemeasure,1603\nhonest,4,measureforemeasure,1603\nWho's,4,measureforemeasure,1603\nrequest,4,measureforemeasure,1603\nprithee,4,measureforemeasure,1603\nswear,4,measureforemeasure,1603\ndrunk,4,measureforemeasure,1603\nseen,4,measureforemeasure,1603\nseek,4,measureforemeasure,1603\nTruly,4,measureforemeasure,1603\nbail,4,measureforemeasure,1603\nsouls,4,measureforemeasure,1603\nself,4,measureforemeasure,1603\nsend,4,measureforemeasure,1603\ntogether,4,measureforemeasure,1603\ncold,4,measureforemeasure,1603\ngoes,4,measureforemeasure,1603\nlaws,4,measureforemeasure,1603\nSignior,4,measureforemeasure,1603\nMessenger,4,measureforemeasure,1603\nlips,4,measureforemeasure,1603\nmarriage,4,measureforemeasure,1603\nlast,4,measureforemeasure,1603\nMay,4,measureforemeasure,1603\nwitness,4,measureforemeasure,1603\nwidow,4,measureforemeasure,1603\nThy,4,measureforemeasure,1603\nproclamation,4,measureforemeasure,1603\nspirit,4,measureforemeasure,1603\n',5,measureforemeasure,1603\nadvice,5,measureforemeasure,1603\nroyal,5,measureforemeasure,1603\npeace,5,measureforemeasure,1603\ndish,5,measureforemeasure,1603\nMust,5,measureforemeasure,1603\nvain,5,measureforemeasure,1603\nbecome,5,measureforemeasure,1603\nfriends,5,measureforemeasure,1603\nhearing,5,measureforemeasure,1603\nhanging,5,measureforemeasure,1603\nNor,5,measureforemeasure,1603\nsomething,5,measureforemeasure,1603\nexecution,5,measureforemeasure,1603\nstands,5,measureforemeasure,1603\nElbow,5,measureforemeasure,1603\nlight,5,measureforemeasure,1603\nSuch,5,measureforemeasure,1603\nscope,5,measureforemeasure,1603\nheavens,5,measureforemeasure,1603\nPardon,5,measureforemeasure,1603\nworthy,5,measureforemeasure,1603\nservice,5,measureforemeasure,1603\nbrief,5,measureforemeasure,1603\nsoldier,5,measureforemeasure,1603\nwish,5,measureforemeasure,1603\nwise,5,measureforemeasure,1603\nanon,5,measureforemeasure,1603\nrest,5,measureforemeasure,1603\nvoice,5,measureforemeasure,1603\nThere's,5,measureforemeasure,1603\nknowledge,5,measureforemeasure,1603\noffend,5,measureforemeasure,1603\nIII,5,measureforemeasure,1603\nabsent,5,measureforemeasure,1603\npeople,5,measureforemeasure,1603\nJuliet,5,measureforemeasure,1603\nseeming,5,measureforemeasure,1603\nho,5,measureforemeasure,1603\nlose,5,measureforemeasure,1603\nready,5,measureforemeasure,1603\nharm,5,measureforemeasure,1603\npart,5,measureforemeasure,1603\nCall,5,measureforemeasure,1603\nfour,5,measureforemeasure,1603\nfoul,5,measureforemeasure,1603\npresent,5,measureforemeasure,1603\ntomorrow,5,measureforemeasure,1603\nprepared,5,measureforemeasure,1603\njudgment,5,measureforemeasure,1603\ncarried,5,measureforemeasure,1603\naction,5,measureforemeasure,1603\nPeace,5,measureforemeasure,1603\nthings,5,measureforemeasure,1603\nsirrah,5,measureforemeasure,1603\nignorant,5,measureforemeasure,1603\nmouth,5,measureforemeasure,1603\nawhile,5,measureforemeasure,1603\nyours,5,measureforemeasure,1603\nalready,5,measureforemeasure,1603\nmark,5,measureforemeasure,1603\nThey,5,measureforemeasure,1603\nknown,5,measureforemeasure,1603\nspecial,5,measureforemeasure,1603\nneed,5,measureforemeasure,1603\nconstable,5,measureforemeasure,1603\nIsabella,5,measureforemeasure,1603\nsake,5,measureforemeasure,1603\nfive,5,measureforemeasure,1603\nfetch,5,measureforemeasure,1603\nSay,5,measureforemeasure,1603\nbetween,5,measureforemeasure,1603\nShall,5,measureforemeasure,1603\nforfeit,5,measureforemeasure,1603\nEven,5,measureforemeasure,1603\nglad,5,measureforemeasure,1603\nfain,5,measureforemeasure,1603\nMake,5,measureforemeasure,1603\nTill,5,measureforemeasure,1603\nfortune,5,measureforemeasure,1603\ndo't,5,measureforemeasure,1603\nfast,5,measureforemeasure,1603\nlay,5,measureforemeasure,1603\nneedful,5,measureforemeasure,1603\nseem,5,measureforemeasure,1603\nsound,5,measureforemeasure,1603\nentreat,5,measureforemeasure,1603\nleast,5,measureforemeasure,1603\nlate,5,measureforemeasure,1603\nbeauty,5,measureforemeasure,1603\ngoing,5,measureforemeasure,1603\ncontent,5,measureforemeasure,1603\nsentence,5,measureforemeasure,1603\ninstruction,5,measureforemeasure,1603\ncommand,5,measureforemeasure,1603\ncharity,5,measureforemeasure,1603\ntold,6,measureforemeasure,1603\nevery,6,measureforemeasure,1603\nappear,6,measureforemeasure,1603\nunder,6,measureforemeasure,1603\nadvise,6,measureforemeasure,1603\nyears,6,measureforemeasure,1603\nGive,6,measureforemeasure,1603\nyield,6,measureforemeasure,1603\nworth,6,measureforemeasure,1603\nturn,6,measureforemeasure,1603\nOur,6,measureforemeasure,1603\ncommon,6,measureforemeasure,1603\nhabit,6,measureforemeasure,1603\nThough,6,measureforemeasure,1603\nauthority,6,measureforemeasure,1603\nhas,6,measureforemeasure,1603\nneither,6,measureforemeasure,1603\nwisdom,6,measureforemeasure,1603\nWithin,6,measureforemeasure,1603\nmeans,6,measureforemeasure,1603\nMariana,6,measureforemeasure,1603\ncousin,6,measureforemeasure,1603\nact,6,measureforemeasure,1603\nMore,6,measureforemeasure,1603\nliberty,6,measureforemeasure,1603\ncity,6,measureforemeasure,1603\ncourse,6,measureforemeasure,1603\npoint,6,measureforemeasure,1603\nproper,6,measureforemeasure,1603\nnew,6,measureforemeasure,1603\nhaving,6,measureforemeasure,1603\ncondemn'd,6,measureforemeasure,1603\ngentle,6,measureforemeasure,1603\nyou'll,6,measureforemeasure,1603\nere,6,measureforemeasure,1603\nSome,6,measureforemeasure,1603\nmind,6,measureforemeasure,1603\nAll,6,measureforemeasure,1603\nthere's,6,measureforemeasure,1603\nWere,6,measureforemeasure,1603\nsame,6,measureforemeasure,1603\nthine,6,measureforemeasure,1603\nTHOMAS,6,measureforemeasure,1603\nThus,6,measureforemeasure,1603\nthemselves,6,measureforemeasure,1603\nfall,6,measureforemeasure,1603\nfit,6,measureforemeasure,1603\npractise,6,measureforemeasure,1603\nman's,6,measureforemeasure,1603\nprayers,6,measureforemeasure,1603\neither,6,measureforemeasure,1603\nperson,6,measureforemeasure,1603\nMistress,6,measureforemeasure,1603\nsleep,6,measureforemeasure,1603\nClaudio's,6,measureforemeasure,1603\nlearn,6,measureforemeasure,1603\nHe's,6,measureforemeasure,1603\ncertain,6,measureforemeasure,1603\nten,6,measureforemeasure,1603\nlack,6,measureforemeasure,1603\npity,7,measureforemeasure,1603\nleisure,7,measureforemeasure,1603\nspeech,7,measureforemeasure,1603\nAlas,7,measureforemeasure,1603\nwicked,7,measureforemeasure,1603\nprisoner,7,measureforemeasure,1603\nhanged,7,measureforemeasure,1603\ngracious,7,measureforemeasure,1603\nanother,7,measureforemeasure,1603\ntapster,7,measureforemeasure,1603\nOne,7,measureforemeasure,1603\ndied,7,measureforemeasure,1603\nspoke,7,measureforemeasure,1603\nmorning,7,measureforemeasure,1603\nAt,7,measureforemeasure,1603\nstay,7,measureforemeasure,1603\njust,7,measureforemeasure,1603\nmystery,7,measureforemeasure,1603\nconfess,7,measureforemeasure,1603\nlong,7,measureforemeasure,1603\ndoes,7,measureforemeasure,1603\ncrave,7,measureforemeasure,1603\nless,7,measureforemeasure,1603\nexecuted,7,measureforemeasure,1603\nask,7,measureforemeasure,1603\nduke's,7,measureforemeasure,1603\nchange,7,measureforemeasure,1603\nreport,7,measureforemeasure,1603\ninto,7,measureforemeasure,1603\nyoung,7,measureforemeasure,1603\nstate,7,measureforemeasure,1603\ndisguised,7,measureforemeasure,1603\nnear,7,measureforemeasure,1603\noft,7,measureforemeasure,1603\nfound,7,measureforemeasure,1603\nmarry,7,measureforemeasure,1603\nwrong'd,7,measureforemeasure,1603\njudge,7,measureforemeasure,1603\nthree,7,measureforemeasure,1603\nEscalus,7,measureforemeasure,1603\nFare,7,measureforemeasure,1603\nhour,7,measureforemeasure,1603\nthousand,7,measureforemeasure,1603\ngiven,7,measureforemeasure,1603\nhold,7,measureforemeasure,1603\ngoodness,7,measureforemeasure,1603\nback,7,measureforemeasure,1603\nmakes,7,measureforemeasure,1603\nMarry,7,measureforemeasure,1603\nDid,7,measureforemeasure,1603\nTake,7,measureforemeasure,1603\nhaste,8,measureforemeasure,1603\nthought,8,measureforemeasure,1603\nWould,8,measureforemeasure,1603\nfull,8,measureforemeasure,1603\ncame,8,measureforemeasure,1603\n't,8,measureforemeasure,1603\nwrong,8,measureforemeasure,1603\nabout,8,measureforemeasure,1603\nseems,8,measureforemeasure,1603\nfriend,8,measureforemeasure,1603\ntherefore,8,measureforemeasure,1603\nsince,8,measureforemeasure,1603\nII,8,measureforemeasure,1603\npleasure,8,measureforemeasure,1603\nbid,8,measureforemeasure,1603\nblood,8,measureforemeasure,1603\nbest,8,measureforemeasure,1603\ni',8,measureforemeasure,1603\nbear,8,measureforemeasure,1603\nnoble,8,measureforemeasure,1603\nprince,8,measureforemeasure,1603\nforth,8,measureforemeasure,1603\nhere's,8,measureforemeasure,1603\nremedy,8,measureforemeasure,1603\nyear,8,measureforemeasure,1603\nShe,8,measureforemeasure,1603\nknows,8,measureforemeasure,1603\nthief,8,measureforemeasure,1603\nfree,8,measureforemeasure,1603\ncould,8,measureforemeasure,1603\nstand,8,measureforemeasure,1603\nThat's,8,measureforemeasure,1603\nfie,8,measureforemeasure,1603\nofficer,8,measureforemeasure,1603\nmarried,8,measureforemeasure,1603\nworship,8,measureforemeasure,1603\nreason,8,measureforemeasure,1603\nhome,8,measureforemeasure,1603\nreturn,8,measureforemeasure,1603\nrespected,8,measureforemeasure,1603\nnature,8,measureforemeasure,1603\nJustice,8,measureforemeasure,1603\ntimes,9,measureforemeasure,1603\nbusiness,9,measureforemeasure,1603\nUpon,9,measureforemeasure,1603\nset,9,measureforemeasure,1603\nborn,9,measureforemeasure,1603\nfault,9,measureforemeasure,1603\nhence,9,measureforemeasure,1603\noffice,9,measureforemeasure,1603\nitself,9,measureforemeasure,1603\nIV,9,measureforemeasure,1603\nprove,9,measureforemeasure,1603\nthat's,9,measureforemeasure,1603\nknew,9,measureforemeasure,1603\ntrade,9,measureforemeasure,1603\nhast,9,measureforemeasure,1603\nHath,9,measureforemeasure,1603\nroom,9,measureforemeasure,1603\nyouth,9,measureforemeasure,1603\nFriar,9,measureforemeasure,1603\nonce,9,measureforemeasure,1603\nevil,9,measureforemeasure,1603\ngentleman,9,measureforemeasure,1603\nholy,9,measureforemeasure,1603\nLucio,9,measureforemeasure,1603\nwhom,9,measureforemeasure,1603\nPray,9,measureforemeasure,1603\nfirst,9,measureforemeasure,1603\near,9,measureforemeasure,1603\nwomen,9,measureforemeasure,1603\nanswer,10,measureforemeasure,1603\nenough,10,measureforemeasure,1603\nVienna,10,measureforemeasure,1603\nServant,10,measureforemeasure,1603\nHere,10,measureforemeasure,1603\nfalse,10,measureforemeasure,1603\ndost,10,measureforemeasure,1603\ntongue,10,measureforemeasure,1603\nFroth,10,measureforemeasure,1603\nBARNARDINE,10,measureforemeasure,1603\nSecond,10,measureforemeasure,1603\nYet,10,measureforemeasure,1603\nMost,10,measureforemeasure,1603\nthough,10,measureforemeasure,1603\nAre,10,measureforemeasure,1603\nright,10,measureforemeasure,1603\nonly,10,measureforemeasure,1603\nbeseech,10,measureforemeasure,1603\nCan,10,measureforemeasure,1603\nnews,10,measureforemeasure,1603\nfair,10,measureforemeasure,1603\neyes,10,measureforemeasure,1603\nsent,10,measureforemeasure,1603\nWhere,10,measureforemeasure,1603\ncannot,10,measureforemeasure,1603\nI,522,measureforemeasure,1603\nmeet,11,measureforemeasure,1603\nrather,11,measureforemeasure,1603\nsoul,11,measureforemeasure,1603\nyourself,11,measureforemeasure,1603\nwords,11,measureforemeasure,1603\nwarrant,11,measureforemeasure,1603\nvice,11,measureforemeasure,1603\nfaults,11,measureforemeasure,1603\nOfficers,11,measureforemeasure,1603\nmatter,11,measureforemeasure,1603\nelse,11,measureforemeasure,1603\nlook,11,measureforemeasure,1603\nFROTH,11,measureforemeasure,1603\nthose,11,measureforemeasure,1603\nkeep,11,measureforemeasure,1603\nFrom,11,measureforemeasure,1603\nThen,11,measureforemeasure,1603\nwho,11,measureforemeasure,1603\nsave,11,measureforemeasure,1603\nwhat's,11,measureforemeasure,1603\nplease,11,measureforemeasure,1603\neven,11,measureforemeasure,1603\ncomfort,11,measureforemeasure,1603\nuse,11,measureforemeasure,1603\nmen,11,measureforemeasure,1603\nAway,11,measureforemeasure,1603\nvirtue,11,measureforemeasure,1603\nshame,11,measureforemeasure,1603\nkind,11,measureforemeasure,1603\npower,11,measureforemeasure,1603\norder,11,measureforemeasure,1603\nnothing,12,measureforemeasure,1603\nwithin,12,measureforemeasure,1603\ncause,12,measureforemeasure,1603\nboth,12,measureforemeasure,1603\nHis,12,measureforemeasure,1603\nJULIET,12,measureforemeasure,1603\ngone,12,measureforemeasure,1603\nput,12,measureforemeasure,1603\nsaid,12,measureforemeasure,1603\nYes,12,measureforemeasure,1603\nhand,12,measureforemeasure,1603\nnone,12,measureforemeasure,1603\nmany,12,measureforemeasure,1603\nwhy,12,measureforemeasure,1603\nold,12,measureforemeasure,1603\nday,12,measureforemeasure,1603\nit,268,measureforemeasure,1603\ndeputy,13,measureforemeasure,1603\ntruth,13,measureforemeasure,1603\ncall,13,measureforemeasure,1603\nWith,13,measureforemeasure,1603\nsense,13,measureforemeasure,1603\nhe's,13,measureforemeasure,1603\nWhat's,13,measureforemeasure,1603\nRe,13,measureforemeasure,1603\nchild,13,measureforemeasure,1603\nLook,13,measureforemeasure,1603\nheard,13,measureforemeasure,1603\nface,13,measureforemeasure,1603\ntill,13,measureforemeasure,1603\nthank,13,measureforemeasure,1603\nwhen,13,measureforemeasure,1603\nmercy,14,measureforemeasure,1603\nbody,14,measureforemeasure,1603\noffence,14,measureforemeasure,1603\nfellow,14,measureforemeasure,1603\nfear,14,measureforemeasure,1603\nDo,14,measureforemeasure,1603\nBe,14,measureforemeasure,1603\nnight,14,measureforemeasure,1603\nGood,14,measureforemeasure,1603\nwhose,14,measureforemeasure,1603\nlittle,14,measureforemeasure,1603\nshow,14,measureforemeasure,1603\noff,14,measureforemeasure,1603\nbrother's,14,measureforemeasure,1603\nHeaven,14,measureforemeasure,1603\nhope,14,measureforemeasure,1603\nwife,14,measureforemeasure,1603\npurpose,14,measureforemeasure,1603\ntwo,14,measureforemeasure,1603\nNay,15,measureforemeasure,1603\nworld,15,measureforemeasure,1603\nNot,15,measureforemeasure,1603\nagainst,15,measureforemeasure,1603\nPETER,15,measureforemeasure,1603\nafter,15,measureforemeasure,1603\ndesire,15,measureforemeasure,1603\nOr,15,measureforemeasure,1603\nhusband,15,measureforemeasure,1603\nThan,15,measureforemeasure,1603\nindeed,15,measureforemeasure,1603\nmyself,15,measureforemeasure,1603\never,15,measureforemeasure,1603\nBarnardine,15,measureforemeasure,1603\nthus,15,measureforemeasure,1603\nhither,15,measureforemeasure,1603\nstrange,15,measureforemeasure,1603\nmight,15,measureforemeasure,1603\nNow,16,measureforemeasure,1603\nsin,16,measureforemeasure,1603\nAside,16,measureforemeasure,1603\nbring,16,measureforemeasure,1603\nenter,16,measureforemeasure,1603\nWe,16,measureforemeasure,1603\nheart,16,measureforemeasure,1603\nway,16,measureforemeasure,1603\n'Tis,16,measureforemeasure,1603\naway,17,measureforemeasure,1603\nthese,17,measureforemeasure,1603\ntell,17,measureforemeasure,1603\nAy,17,measureforemeasure,1603\nname,17,measureforemeasure,1603\nnever,17,measureforemeasure,1603\nOf,17,measureforemeasure,1603\ndown,17,measureforemeasure,1603\nSo,17,measureforemeasure,1603\ndone,17,measureforemeasure,1603\nACT,17,measureforemeasure,1603\nstill,17,measureforemeasure,1603\nword,17,measureforemeasure,1603\nfind,17,measureforemeasure,1603\nleave,17,measureforemeasure,1603\nhimself,17,measureforemeasure,1603\npray,18,measureforemeasure,1603\nWho,18,measureforemeasure,1603\nsee,18,measureforemeasure,1603\nGo,18,measureforemeasure,1603\nSir,18,measureforemeasure,1603\nagain,18,measureforemeasure,1603\nbelieve,18,measureforemeasure,1603\nprovost,18,measureforemeasure,1603\ngreat,18,measureforemeasure,1603\nABHORSON,18,measureforemeasure,1603\nlive,18,measureforemeasure,1603\nSCENE,18,measureforemeasure,1603\nyour,274,measureforemeasure,1603\nFOR,19,measureforemeasure,1603\nFRIAR,19,measureforemeasure,1603\nThere,19,measureforemeasure,1603\nOVERDONE,19,measureforemeasure,1603\nbeen,19,measureforemeasure,1603\ngrace,19,measureforemeasure,1603\nYour,19,measureforemeasure,1603\nwhere,19,measureforemeasure,1603\nThou,19,measureforemeasure,1603\ncomes,19,measureforemeasure,1603\npardon,19,measureforemeasure,1603\nMISTRESS,19,measureforemeasure,1603\nsister,19,measureforemeasure,1603\nbeing,19,measureforemeasure,1603\nwoman,19,measureforemeasure,1603\nbetter,20,measureforemeasure,1603\nWhich,20,measureforemeasure,1603\ndoth,20,measureforemeasure,1603\nFirst,20,measureforemeasure,1603\nbawd,20,measureforemeasure,1603\nin,276,measureforemeasure,1603\ntheir,21,measureforemeasure,1603\nmaid,21,measureforemeasure,1603\nthing,21,measureforemeasure,1603\nWell,21,measureforemeasure,1603\nfather,21,measureforemeasure,1603\nWhen,21,measureforemeasure,1603\nBy,22,measureforemeasure,1603\nmorrow,22,measureforemeasure,1603\nLet,22,measureforemeasure,1603\nhead,23,measureforemeasure,1603\nIs,23,measureforemeasure,1603\nnor,23,measureforemeasure,1603\ntake,23,measureforemeasure,1603\nGentleman,23,measureforemeasure,1603\nIsabel,23,measureforemeasure,1603\npoor,23,measureforemeasure,1603\ndid,23,measureforemeasure,1603\nheaven,24,measureforemeasure,1603\nIt,24,measureforemeasure,1603\nExeunt,24,measureforemeasure,1603\ngo,24,measureforemeasure,1603\njustice,24,measureforemeasure,1603\nLord,24,measureforemeasure,1603\nother,24,measureforemeasure,1603\nmuch,25,measureforemeasure,1603\nhear,25,measureforemeasure,1603\nMaster,25,measureforemeasure,1603\nplace,25,measureforemeasure,1603\nup,25,measureforemeasure,1603\nlaw,25,measureforemeasure,1603\nhouse,25,measureforemeasure,1603\ntrue,25,measureforemeasure,1603\nsome,26,measureforemeasure,1603\nlove,26,measureforemeasure,1603\nhow,26,measureforemeasure,1603\nPompey,26,measureforemeasure,1603\nmine,26,measureforemeasure,1603\nbefore,26,measureforemeasure,1603\nWhy,27,measureforemeasure,1603\nNo,27,measureforemeasure,1603\n'tis,28,measureforemeasure,1603\nprison,28,measureforemeasure,1603\ncan,29,measureforemeasure,1603\nus,29,measureforemeasure,1603\nart,29,measureforemeasure,1603\nHow,29,measureforemeasure,1603\nown,29,measureforemeasure,1603\nCome,30,measureforemeasure,1603\nsuch,30,measureforemeasure,1603\nIn,30,measureforemeasure,1603\nout,30,measureforemeasure,1603\nfriar,30,measureforemeasure,1603\ntoo,30,measureforemeasure,1603\nany,31,measureforemeasure,1603\ngive,31,measureforemeasure,1603\nMy,32,measureforemeasure,1603\nmade,32,measureforemeasure,1603\nThis,32,measureforemeasure,1603\ntime,32,measureforemeasure,1603\nlike,33,measureforemeasure,1603\nvery,33,measureforemeasure,1603\nELBOW,33,measureforemeasure,1603\nthan,34,measureforemeasure,1603\nMARIANA,34,measureforemeasure,1603\nthey,35,measureforemeasure,1603\nthen,35,measureforemeasure,1603\nshould,35,measureforemeasure,1603\nwere,36,measureforemeasure,1603\nthere,37,measureforemeasure,1603\nYou,37,measureforemeasure,1603\nthink,37,measureforemeasure,1603\nExit,37,measureforemeasure,1603\nwhich,38,measureforemeasure,1603\nsay,38,measureforemeasure,1603\nHe,38,measureforemeasure,1603\nMEASURE,38,measureforemeasure,1603\nI'll,38,measureforemeasure,1603\nspeak,39,measureforemeasure,1603\nmake,39,measureforemeasure,1603\ndie,39,measureforemeasure,1603\nhonour,40,measureforemeasure,1603\ndeath,41,measureforemeasure,1603\nthem,41,measureforemeasure,1603\nhad,41,measureforemeasure,1603\nupon,42,measureforemeasure,1603\nyet,42,measureforemeasure,1603\nan,42,measureforemeasure,1603\nClaudio,42,measureforemeasure,1603\nIf,43,measureforemeasure,1603\nCLAUDIO,43,measureforemeasure,1603\nshe,44,measureforemeasure,1603\nthee,44,measureforemeasure,1603\nmost,44,measureforemeasure,1603\nEnter,44,measureforemeasure,1603\none,44,measureforemeasure,1603\nA,47,measureforemeasure,1603\nour,47,measureforemeasure,1603\nman,47,measureforemeasure,1603\nlife,48,measureforemeasure,1603\nat,48,measureforemeasure,1603\nnow,48,measureforemeasure,1603\nFor,49,measureforemeasure,1603\nAs,49,measureforemeasure,1603\nor,49,measureforemeasure,1603\nduke,49,measureforemeasure,1603\nam,50,measureforemeasure,1603\nlet,50,measureforemeasure,1603\nthy,51,measureforemeasure,1603\nfrom,52,measureforemeasure,1603\nwas,52,measureforemeasure,1603\ncome,52,measureforemeasure,1603\nhere,53,measureforemeasure,1603\nmust,53,measureforemeasure,1603\nmay,53,measureforemeasure,1603\nwell,55,measureforemeasure,1603\nWhat,57,measureforemeasure,1603\nbrother,58,measureforemeasure,1603\nlord,58,measureforemeasure,1603\nhath,62,measureforemeasure,1603\nO,63,measureforemeasure,1603\nmore,63,measureforemeasure,1603\nknow,63,measureforemeasure,1603\nThe,63,measureforemeasure,1603\nwe,65,measureforemeasure,1603\nwhat,66,measureforemeasure,1603\nPOMPEY,67,measureforemeasure,1603\nno,68,measureforemeasure,1603\nif,68,measureforemeasure,1603\nBut,68,measureforemeasure,1603\nThat,73,measureforemeasure,1603\nAngelo,73,measureforemeasure,1603\non,74,measureforemeasure,1603\nshall,77,measureforemeasure,1603\nare,78,measureforemeasure,1603\nall,81,measureforemeasure,1603\nwould,81,measureforemeasure,1603\ngood,86,measureforemeasure,1603\nESCALUS,88,measureforemeasure,1603\nthou,91,measureforemeasure,1603\nby,93,measureforemeasure,1603\nANGELO,94,measureforemeasure,1603\nTo,99,measureforemeasure,1603\nProvost,99,measureforemeasure,1603\nso,101,measureforemeasure,1603\nwill,104,measureforemeasure,1603\nher,108,measureforemeasure,1603\nsir,117,measureforemeasure,1603\nof,373,measureforemeasure,1603\na,374,measureforemeasure,1603\ndo,119,measureforemeasure,1603\nLUCIO,125,measureforemeasure,1603\nthe,637,measureforemeasure,1603\nbut,129,measureforemeasure,1603\nas,136,measureforemeasure,1603\nAnd,137,measureforemeasure,1603\nhis,147,measureforemeasure,1603\nISABELLA,157,measureforemeasure,1603\nhave,162,measureforemeasure,1603\nthis,163,measureforemeasure,1603\nhe,167,measureforemeasure,1603\nfor,178,measureforemeasure,1603\nand,439,measureforemeasure,1603\nme,184,measureforemeasure,1603\nwith,195,measureforemeasure,1603\nbe,198,measureforemeasure,1603\nhim,207,measureforemeasure,1603\nVINCENTIO,209,measureforemeasure,1603\nDUKE,210,measureforemeasure,1603\nmy,214,measureforemeasure,1603\nnot,222,measureforemeasure,1603\nthat,229,measureforemeasure,1603\nyou,486,measureforemeasure,1603\nis,245,measureforemeasure,1603\nforfeits,1,troilusandcressida,1602\ndisarm,1,troilusandcressida,1602\nattended,1,troilusandcressida,1602\nholding,1,troilusandcressida,1602\nPolyxenes,1,troilusandcressida,1602\ntreason,1,troilusandcressida,1602\nYou're,1,troilusandcressida,1602\nevent,1,troilusandcressida,1602\ndegenerate,1,troilusandcressida,1602\nadvanced,1,troilusandcressida,1602\ngrandam,1,troilusandcressida,1602\ntroubled,1,troilusandcressida,1602\nunsquared,1,troilusandcressida,1602\nTyphon,1,troilusandcressida,1602\nEpistrophus,1,troilusandcressida,1602\nbrawn,1,troilusandcressida,1602\ngalled,1,troilusandcressida,1602\nBriareus,1,troilusandcressida,1602\narmies,1,troilusandcressida,1602\nunwelcome,1,troilusandcressida,1602\ntroubles,1,troilusandcressida,1602\nsomebody,1,troilusandcressida,1602\nlusty,1,troilusandcressida,1602\neffeminate,1,troilusandcressida,1602\nhandsomeness,1,troilusandcressida,1602\ntrue',1,troilusandcressida,1602\nfinger's,1,troilusandcressida,1602\nsped,1,troilusandcressida,1602\ngauntlet,1,troilusandcressida,1602\nimaginary,1,troilusandcressida,1602\nwomanish,1,troilusandcressida,1602\nvenomous,1,troilusandcressida,1602\ndebts,1,troilusandcressida,1602\nadvantageous,1,troilusandcressida,1602\nX,1,troilusandcressida,1602\n'and,1,troilusandcressida,1602\nWanting,1,troilusandcressida,1602\nputrefied,1,troilusandcressida,1602\nshrouded,1,troilusandcressida,1602\ninvisible,1,troilusandcressida,1602\nmaculation,1,troilusandcressida,1602\ndigested,1,troilusandcressida,1602\nsuffer,1,troilusandcressida,1602\ncutting,1,troilusandcressida,1602\nports,1,troilusandcressida,1602\nmasterly,1,troilusandcressida,1602\nFew,1,troilusandcressida,1602\npestilence,1,troilusandcressida,1602\nProud,1,troilusandcressida,1602\nadvice,1,troilusandcressida,1602\nbasis,1,troilusandcressida,1602\ndames,1,troilusandcressida,1602\ninterchange,1,troilusandcressida,1602\nGrecians',1,troilusandcressida,1602\njar,1,troilusandcressida,1602\npriority,1,troilusandcressida,1602\n'Here's,1,troilusandcressida,1602\ndoubly,1,troilusandcressida,1602\nmotion,1,troilusandcressida,1602\ncanonize,1,troilusandcressida,1602\napprehend,1,troilusandcressida,1602\ntops,1,troilusandcressida,1602\nyielding,1,troilusandcressida,1602\nFools,1,troilusandcressida,1602\nchurlish,1,troilusandcressida,1602\nresist,1,troilusandcressida,1602\ndouble,1,troilusandcressida,1602\nassinego,1,troilusandcressida,1602\nrelics,1,troilusandcressida,1602\nviands,1,troilusandcressida,1602\naxle,1,troilusandcressida,1602\nHeat,1,troilusandcressida,1602\norders,1,troilusandcressida,1602\npageants,1,troilusandcressida,1602\nraw,1,troilusandcressida,1602\nlargeness,1,troilusandcressida,1602\nwish'd,1,troilusandcressida,1602\nray,1,troilusandcressida,1602\nhacked,1,troilusandcressida,1602\ndexter,1,troilusandcressida,1602\nconveniences,1,troilusandcressida,1602\ndiscord,1,troilusandcressida,1602\nignomy,1,troilusandcressida,1602\ngenerous,1,troilusandcressida,1602\nbrightness,1,troilusandcressida,1602\nfathomless,1,troilusandcressida,1602\nespecially,1,troilusandcressida,1602\nquietness,1,troilusandcressida,1602\nhinder,1,troilusandcressida,1602\ntraitor's,1,troilusandcressida,1602\nTear,1,troilusandcressida,1602\nalike,1,troilusandcressida,1602\nFriday,1,troilusandcressida,1602\ndisunite,1,troilusandcressida,1602\nTrouble,1,troilusandcressida,1602\nbiscuit,1,troilusandcressida,1602\ntorn,1,troilusandcressida,1602\nconvoy,1,troilusandcressida,1602\nwooden,1,troilusandcressida,1602\nran,1,troilusandcressida,1602\nram,1,troilusandcressida,1602\nplagued,1,troilusandcressida,1602\nDaphne's,1,troilusandcressida,1602\nlawful,1,troilusandcressida,1602\npeculiar,1,troilusandcressida,1602\ncountrywoman,1,troilusandcressida,1602\nshouldest,1,troilusandcressida,1602\nVulcan's,1,troilusandcressida,1602\nsewer,1,troilusandcressida,1602\ndistill'd,1,troilusandcressida,1602\nattributive,1,troilusandcressida,1602\nrot,1,troilusandcressida,1602\nsearching,1,troilusandcressida,1602\noffended,1,troilusandcressida,1602\nesteems,1,troilusandcressida,1602\nunbolt,1,troilusandcressida,1602\nDespising,1,troilusandcressida,1602\ninfectiously,1,troilusandcressida,1602\nsuppose,1,troilusandcressida,1602\nruminates,1,troilusandcressida,1602\nOutliving,1,troilusandcressida,1602\nheart's,1,troilusandcressida,1602\nroe,1,troilusandcressida,1602\napprehended,1,troilusandcressida,1602\ndotes,1,troilusandcressida,1602\nBeat,1,troilusandcressida,1602\nchiding,1,troilusandcressida,1602\nday's,1,troilusandcressida,1602\nmaturity,1,troilusandcressida,1602\nBear,1,troilusandcressida,1602\njoy,1,troilusandcressida,1602\nWomen,1,troilusandcressida,1602\nproclaim'd,1,troilusandcressida,1602\nimpressure,1,troilusandcressida,1602\neasily,1,troilusandcressida,1602\nspace,1,troilusandcressida,1602\nexpress,1,troilusandcressida,1602\ndecision,1,troilusandcressida,1602\nsimpler,1,troilusandcressida,1602\nboys,1,troilusandcressida,1602\nendless,1,troilusandcressida,1602\nobstinately,1,troilusandcressida,1602\ncommotion,1,troilusandcressida,1602\nretort,1,troilusandcressida,1602\nsleeps,1,troilusandcressida,1602\nIris,1,troilusandcressida,1602\ntoes,1,troilusandcressida,1602\ndire,1,troilusandcressida,1602\nswifter,1,troilusandcressida,1602\nwhereupon,1,troilusandcressida,1602\nmoiety,1,troilusandcressida,1602\nAddress,1,troilusandcressida,1602\ndespised,1,troilusandcressida,1602\nStay,1,troilusandcressida,1602\nwhale,1,troilusandcressida,1602\ntruly,1,troilusandcressida,1602\ndebonair,1,troilusandcressida,1602\nseethes,1,troilusandcressida,1602\nrepured,1,troilusandcressida,1602\nproposition,1,troilusandcressida,1602\nsisters,1,troilusandcressida,1602\nmule,1,troilusandcressida,1602\nsingly,1,troilusandcressida,1602\nNeptune,1,troilusandcressida,1602\ntrump,1,troilusandcressida,1602\nvail,1,troilusandcressida,1602\nhers,1,troilusandcressida,1602\nphilosophy,1,troilusandcressida,1602\ncursing,1,troilusandcressida,1602\nherd,1,troilusandcressida,1602\nproceedings,1,troilusandcressida,1602\ncapocchia,1,troilusandcressida,1602\nvain,1,troilusandcressida,1602\ndropp'd,1,troilusandcressida,1602\nviolent,1,troilusandcressida,1602\nPROLOGUE,1,troilusandcressida,1602\nmean'st,1,troilusandcressida,1602\nEither,1,troilusandcressida,1602\nunwholesome,1,troilusandcressida,1602\nruffian,1,troilusandcressida,1602\nvale,1,troilusandcressida,1602\nsecurity,1,troilusandcressida,1602\nrecourse,1,troilusandcressida,1602\nerrand,1,troilusandcressida,1602\ntoil,1,troilusandcressida,1602\nhulks,1,troilusandcressida,1602\nhonourable,1,troilusandcressida,1602\nravish'd,1,troilusandcressida,1602\nerrant,1,troilusandcressida,1602\nsunburnt,1,troilusandcressida,1602\nBeshrew,1,troilusandcressida,1602\nhearted,1,troilusandcressida,1602\noffer,1,troilusandcressida,1602\ninstrument,1,troilusandcressida,1602\nrid,1,troilusandcressida,1602\nlooked,1,troilusandcressida,1602\nPause,1,troilusandcressida,1602\nhanged,1,troilusandcressida,1602\nfeeds,1,troilusandcressida,1602\nstrangles,1,troilusandcressida,1602\nmaintain,1,troilusandcressida,1602\npraising,1,troilusandcressida,1602\nflow,1,troilusandcressida,1602\nalthough,1,troilusandcressida,1602\nfury,1,troilusandcressida,1602\nspans,1,troilusandcressida,1602\nthroat,1,troilusandcressida,1602\nyears',1,troilusandcressida,1602\ncowardice,1,troilusandcressida,1602\nsour,1,troilusandcressida,1602\nfoams,1,troilusandcressida,1602\nprey,1,troilusandcressida,1602\nmiscall,1,troilusandcressida,1602\nhairs',1,troilusandcressida,1602\nthou'lt,1,troilusandcressida,1602\nscurrilous,1,troilusandcressida,1602\nbeauty's,1,troilusandcressida,1602\nadmonishment,1,troilusandcressida,1602\npress,1,troilusandcressida,1602\nodds,1,troilusandcressida,1602\niron,1,troilusandcressida,1602\nworshipp'd,1,troilusandcressida,1602\ndamned,1,troilusandcressida,1602\nfraughtage,1,troilusandcressida,1602\nretract,1,troilusandcressida,1602\nounces,1,troilusandcressida,1602\ngoers,1,troilusandcressida,1602\nEmpale,1,troilusandcressida,1602\nworks,1,troilusandcressida,1602\nlief,1,troilusandcressida,1602\nWhom,1,troilusandcressida,1602\nwing'd,1,troilusandcressida,1602\nwrest,1,troilusandcressida,1602\ncheques,1,troilusandcressida,1602\nthicket,1,troilusandcressida,1602\nthicker,1,troilusandcressida,1602\nplaguy,1,troilusandcressida,1602\ncurious,1,troilusandcressida,1602\nPERSONAE,1,troilusandcressida,1602\nInflamed,1,troilusandcressida,1602\nproclaim,1,troilusandcressida,1602\nmoist,1,troilusandcressida,1602\nLight,1,troilusandcressida,1602\nGalathe,1,troilusandcressida,1602\nRoaring,1,troilusandcressida,1602\nRenew,1,troilusandcressida,1602\n'Thanks,1,troilusandcressida,1602\nsaved,1,troilusandcressida,1602\nindexes,1,troilusandcressida,1602\nspark,1,troilusandcressida,1602\ncast,1,troilusandcressida,1602\ncrutch,1,troilusandcressida,1602\nrub,1,troilusandcressida,1602\nheifer's,1,troilusandcressida,1602\nPretty,1,troilusandcressida,1602\nimpure,1,troilusandcressida,1602\nbreach,1,troilusandcressida,1602\npursue,1,troilusandcressida,1602\ninheritors,1,troilusandcressida,1602\nbeneath,1,troilusandcressida,1602\nwrestling,1,troilusandcressida,1602\nraving,1,troilusandcressida,1602\nVIII,1,troilusandcressida,1602\norder'd,1,troilusandcressida,1602\nchid,1,troilusandcressida,1602\nbending,1,troilusandcressida,1602\nCedius,1,troilusandcressida,1602\nalarm,1,troilusandcressida,1602\nshipmen,1,troilusandcressida,1602\nbrainless,1,troilusandcressida,1602\nthievery,1,troilusandcressida,1602\nApollo's,1,troilusandcressida,1602\ndivination,1,troilusandcressida,1602\nlacks,1,troilusandcressida,1602\ncrownets,1,troilusandcressida,1602\ninstructed,1,troilusandcressida,1602\namazed,1,troilusandcressida,1602\nsad,1,troilusandcressida,1602\nbladders,1,troilusandcressida,1602\nspied,1,troilusandcressida,1602\neverything,1,troilusandcressida,1602\nfeels,1,troilusandcressida,1602\nwheezing,1,troilusandcressida,1602\nconscience,1,troilusandcressida,1602\ntarrying,1,troilusandcressida,1602\nFellow,1,troilusandcressida,1602\nruder,1,troilusandcressida,1602\nFurnish,1,troilusandcressida,1602\nWiped,1,troilusandcressida,1602\nenemies',1,troilusandcressida,1602\npine,1,troilusandcressida,1602\nworking,1,troilusandcressida,1602\nseconded,1,troilusandcressida,1602\nsole,1,troilusandcressida,1602\nsold,1,troilusandcressida,1602\nleaning,1,troilusandcressida,1602\nHelias,1,troilusandcressida,1602\nillegitimate,1,troilusandcressida,1602\nblabb'd,1,troilusandcressida,1602\nlifts,1,troilusandcressida,1602\nsap,1,troilusandcressida,1602\nPerseus',1,troilusandcressida,1602\nExcuse,1,troilusandcressida,1602\nCourtiers,1,troilusandcressida,1602\nbearing,1,troilusandcressida,1602\nbeholds,1,troilusandcressida,1602\nstream,1,troilusandcressida,1602\nspice,1,troilusandcressida,1602\nconstantly,1,troilusandcressida,1602\ntaciturnity,1,troilusandcressida,1602\nline,1,troilusandcressida,1602\nArgus,1,troilusandcressida,1602\ncircumstance,1,troilusandcressida,1602\nBlind,1,troilusandcressida,1602\nPlains,1,troilusandcressida,1602\nconfounds,1,troilusandcressida,1602\nAn't,1,troilusandcressida,1602\ngracious,1,troilusandcressida,1602\nOutswell,1,troilusandcressida,1602\nlily,1,troilusandcressida,1602\n'Yea,1,troilusandcressida,1602\ninjury,1,troilusandcressida,1602\nConsent,1,troilusandcressida,1602\nbeacon,1,troilusandcressida,1602\nbroker,1,troilusandcressida,1602\nKeep,1,troilusandcressida,1602\n'which,1,troilusandcressida,1602\nmaidenheads,1,troilusandcressida,1602\nenthroned,1,troilusandcressida,1602\nsubjects,1,troilusandcressida,1602\nplight,1,troilusandcressida,1602\nposts,1,troilusandcressida,1602\ncorse,1,troilusandcressida,1602\nMuch,1,troilusandcressida,1602\nRemember,1,troilusandcressida,1602\nforehand,1,troilusandcressida,1602\nadditions,1,troilusandcressida,1602\nheal,1,troilusandcressida,1602\nshivers,1,troilusandcressida,1602\nOurself,1,troilusandcressida,1602\nworthier,1,troilusandcressida,1602\ncheer,1,troilusandcressida,1602\ncontrive,1,troilusandcressida,1602\nexclaim,1,troilusandcressida,1602\noppress,1,troilusandcressida,1602\nAnchises',1,troilusandcressida,1602\ndwarf,1,troilusandcressida,1602\nprotractive,1,troilusandcressida,1602\nsofter,1,troilusandcressida,1602\nbatch,1,troilusandcressida,1602\nvoices,1,troilusandcressida,1602\ndiminutive,1,troilusandcressida,1602\nseemest,1,troilusandcressida,1602\ngolden,1,troilusandcressida,1602\ndemands,1,troilusandcressida,1602\nbreaks,1,troilusandcressida,1602\ncalf,1,troilusandcressida,1602\npipe,1,troilusandcressida,1602\nremiss,1,troilusandcressida,1602\nunplausive,1,troilusandcressida,1602\nhanging,1,troilusandcressida,1602\nrides,1,troilusandcressida,1602\ndependance,1,troilusandcressida,1602\nkneading,1,troilusandcressida,1602\ndeities,1,troilusandcressida,1602\nlazars,1,troilusandcressida,1602\nshrewdly,1,troilusandcressida,1602\ndreg,1,troilusandcressida,1602\nteach,1,troilusandcressida,1602\nsearches,1,troilusandcressida,1602\n'Sfoot,1,troilusandcressida,1602\nstalks,1,troilusandcressida,1602\nhardiment,1,troilusandcressida,1602\nricher,1,troilusandcressida,1602\ntaxing,1,troilusandcressida,1602\nriches,1,troilusandcressida,1602\npillar,1,troilusandcressida,1602\nvisions,1,troilusandcressida,1602\nserpentine,1,troilusandcressida,1602\nsharpens,1,troilusandcressida,1602\nvisit,1,troilusandcressida,1602\namity,1,troilusandcressida,1602\nthrones,1,troilusandcressida,1602\npaltry,1,troilusandcressida,1602\nTymbria,1,troilusandcressida,1602\ndefiance,1,troilusandcressida,1602\nsobs,1,troilusandcressida,1602\nribald,1,troilusandcressida,1602\ngeneral's,1,troilusandcressida,1602\nvisitation,1,troilusandcressida,1602\nMargarelon,1,troilusandcressida,1602\nsigh'st,1,troilusandcressida,1602\nNever's,1,troilusandcressida,1602\nimpress,1,troilusandcressida,1602\nCharon,1,troilusandcressida,1602\nPerchance,1,troilusandcressida,1602\nowners,1,troilusandcressida,1602\nderision,1,troilusandcressida,1602\nbarks,1,troilusandcressida,1602\npillow,1,troilusandcressida,1602\nsleep'st,1,troilusandcressida,1602\npersistive,1,troilusandcressida,1602\nseeking,1,troilusandcressida,1602\nWit,1,troilusandcressida,1602\nserpigo,1,troilusandcressida,1602\nantics,1,troilusandcressida,1602\nweaker,1,troilusandcressida,1602\nslightly,1,troilusandcressida,1602\nperspicuous,1,troilusandcressida,1602\nweaken,1,troilusandcressida,1602\nshames,1,troilusandcressida,1602\nsunk,1,troilusandcressida,1602\nembassy,1,troilusandcressida,1602\nI'd,1,troilusandcressida,1602\nglimpse,1,troilusandcressida,1602\nboat,1,troilusandcressida,1602\ncrusty,1,troilusandcressida,1602\nOft,1,troilusandcressida,1602\nforever,1,troilusandcressida,1602\nKingdom'd,1,troilusandcressida,1602\nreturned,1,troilusandcressida,1602\nconception,1,troilusandcressida,1602\nconcupy,1,troilusandcressida,1602\ncharacterless,1,troilusandcressida,1602\nmaidens,1,troilusandcressida,1602\nken,1,troilusandcressida,1602\nvizarded,1,troilusandcressida,1602\nbenumbed,1,troilusandcressida,1602\nkey,1,troilusandcressida,1602\ngerman,1,troilusandcressida,1602\nsubdued,1,troilusandcressida,1602\nagent,1,troilusandcressida,1602\nworthiest,1,troilusandcressida,1602\nwolf's,1,troilusandcressida,1602\nourself,1,troilusandcressida,1602\ntooth,1,troilusandcressida,1602\nrailest,1,troilusandcressida,1602\nenkindled,1,troilusandcressida,1602\nwall,1,troilusandcressida,1602\nPerseus,1,troilusandcressida,1602\nillustrious,1,troilusandcressida,1602\ntercel,1,troilusandcressida,1602\nObserve,1,troilusandcressida,1602\nrubs,1,troilusandcressida,1602\ndeceived,1,troilusandcressida,1602\ncoals,1,troilusandcressida,1602\nflying,1,troilusandcressida,1602\nartist,1,troilusandcressida,1602\nBrabbler,1,troilusandcressida,1602\ngrasps,1,troilusandcressida,1602\nslaughter,1,troilusandcressida,1602\n'When,1,troilusandcressida,1602\nmending,1,troilusandcressida,1602\ntouches,1,troilusandcressida,1602\nfamish'd,1,troilusandcressida,1602\ntithe,1,troilusandcressida,1602\nFool's,1,troilusandcressida,1602\nchiefest,1,troilusandcressida,1602\nfeud,1,troilusandcressida,1602\ncaduceus,1,troilusandcressida,1602\nwhorish,1,troilusandcressida,1602\nProserpine's,1,troilusandcressida,1602\nsuit,1,troilusandcressida,1602\npeevish,1,troilusandcressida,1602\nlaying,1,troilusandcressida,1602\nlions,1,troilusandcressida,1602\nbeasts,1,troilusandcressida,1602\nprettiest,1,troilusandcressida,1602\nTortive,1,troilusandcressida,1602\nperil,1,troilusandcressida,1602\npersist,1,troilusandcressida,1602\nPolyxena,1,troilusandcressida,1602\naltars,1,troilusandcressida,1602\ncouncil,1,troilusandcressida,1602\nPleads,1,troilusandcressida,1602\nthunders,1,troilusandcressida,1602\nrequest's,1,troilusandcressida,1602\nsteps,1,troilusandcressida,1602\nsop,1,troilusandcressida,1602\nconfident,1,troilusandcressida,1602\nexperienced,1,troilusandcressida,1602\ndelivery,1,troilusandcressida,1602\n'a,1,troilusandcressida,1602\nknotted,1,troilusandcressida,1602\nunsecret,1,troilusandcressida,1602\nchipp'd,1,troilusandcressida,1602\ndarter,1,troilusandcressida,1602\ndignities,1,troilusandcressida,1602\ncropp'd,1,troilusandcressida,1602\nrefractory,1,troilusandcressida,1602\nhunter,1,troilusandcressida,1602\ninterview,1,troilusandcressida,1602\nHeavens,1,troilusandcressida,1602\ndesign,1,troilusandcressida,1602\nsurmised,1,troilusandcressida,1602\nhusks,1,troilusandcressida,1602\nacquainted,1,troilusandcressida,1602\ndisgrace,1,troilusandcressida,1602\nadversity,1,troilusandcressida,1602\nfirebrand,1,troilusandcressida,1602\nmiddle,1,troilusandcressida,1602\nreck,1,troilusandcressida,1602\npitiful,1,troilusandcressida,1602\nsky,1,troilusandcressida,1602\nhatch'd,1,troilusandcressida,1602\nMusic,1,troilusandcressida,1602\nlambs,1,troilusandcressida,1602\ntrials,1,troilusandcressida,1602\nquondam,1,troilusandcressida,1602\nbarefoot,1,troilusandcressida,1602\novershines,1,troilusandcressida,1602\nThanks,1,troilusandcressida,1602\nfellest,1,troilusandcressida,1602\noffering,1,troilusandcressida,1602\nforthright,1,troilusandcressida,1602\nWithdrew,1,troilusandcressida,1602\noffends,1,troilusandcressida,1602\nbecomes,1,troilusandcressida,1602\nincludes,1,troilusandcressida,1602\naffect,1,troilusandcressida,1602\nsends,1,troilusandcressida,1602\nvassalage,1,troilusandcressida,1602\nsuck'd,1,troilusandcressida,1602\nConstringed,1,troilusandcressida,1602\nindifferent,1,troilusandcressida,1602\nloosed,1,troilusandcressida,1602\nswelling,1,troilusandcressida,1602\ncolder,1,troilusandcressida,1602\nperseverance,1,troilusandcressida,1602\nthieves,1,troilusandcressida,1602\nappetites,1,troilusandcressida,1602\nrear,1,troilusandcressida,1602\nshriek,1,troilusandcressida,1602\noffence,1,troilusandcressida,1602\neverlasting,1,troilusandcressida,1602\nwedged,1,troilusandcressida,1602\nwedges,1,troilusandcressida,1602\nLeaps,1,troilusandcressida,1602\nThese,1,troilusandcressida,1602\npassed,1,troilusandcressida,1602\n'Great,1,troilusandcressida,1602\nHandlest,1,troilusandcressida,1602\ncalumniate,1,troilusandcressida,1602\nrump,1,troilusandcressida,1602\nadmission,1,troilusandcressida,1602\nStyx,1,troilusandcressida,1602\nbaking,1,troilusandcressida,1602\ncourtiers,1,troilusandcressida,1602\nconceit,1,troilusandcressida,1602\nportly,1,troilusandcressida,1602\ncousin's,1,troilusandcressida,1602\ndividable,1,troilusandcressida,1602\nGrow,1,troilusandcressida,1602\nSwooning,1,troilusandcressida,1602\nrhyme,1,troilusandcressida,1602\nswoln,1,troilusandcressida,1602\nexcellently,1,troilusandcressida,1602\nestimate,1,troilusandcressida,1602\nmoulded,1,troilusandcressida,1602\nreversion,1,troilusandcressida,1602\nWhereof,1,troilusandcressida,1602\nkinswoman,1,troilusandcressida,1602\nDisgrace,1,troilusandcressida,1602\nrounded,1,troilusandcressida,1602\ndirect,1,troilusandcressida,1602\nTurn,1,troilusandcressida,1602\nluxurious,1,troilusandcressida,1602\nabsence,1,troilusandcressida,1602\nerect,1,troilusandcressida,1602\nparrot,1,troilusandcressida,1602\nFry,1,troilusandcressida,1602\nplots,1,troilusandcressida,1602\norts,1,troilusandcressida,1602\ntoucheth,1,troilusandcressida,1602\nmixture,1,troilusandcressida,1602\nmirror'd,1,troilusandcressida,1602\nactions,1,troilusandcressida,1602\npublishing,1,troilusandcressida,1602\nunread,1,troilusandcressida,1602\nabhorr'd,1,troilusandcressida,1602\nruminate,1,troilusandcressida,1602\nloose,1,troilusandcressida,1602\nseeks,1,troilusandcressida,1602\nFronting,1,troilusandcressida,1602\ncommit,1,troilusandcressida,1602\nPardon,1,troilusandcressida,1602\ncomplimental,1,troilusandcressida,1602\nworths,1,troilusandcressida,1602\ngrated,1,troilusandcressida,1602\nfruit,1,troilusandcressida,1602\nunarms,1,troilusandcressida,1602\nrelation,1,troilusandcressida,1602\nindulgence,1,troilusandcressida,1602\nLeave,1,troilusandcressida,1602\nscaffoldage,1,troilusandcressida,1602\nsue,1,troilusandcressida,1602\nslides,1,troilusandcressida,1602\nAthens,1,troilusandcressida,1602\nEmbracing,1,troilusandcressida,1602\nshining,1,troilusandcressida,1602\nBuried,1,troilusandcressida,1602\nruth,1,troilusandcressida,1602\nelder,1,troilusandcressida,1602\nbrach,1,troilusandcressida,1602\nabundant,1,troilusandcressida,1602\npalter,1,troilusandcressida,1602\nbrace,1,troilusandcressida,1602\nKings,1,troilusandcressida,1602\nreverence,1,troilusandcressida,1602\naccent,1,troilusandcressida,1602\nembrasures,1,troilusandcressida,1602\nimbecility,1,troilusandcressida,1602\ngirls,1,troilusandcressida,1602\nWant,1,troilusandcressida,1602\nrush,1,troilusandcressida,1602\nunbridled,1,troilusandcressida,1602\ncease,1,troilusandcressida,1602\nfeet,1,troilusandcressida,1602\ndescent,1,troilusandcressida,1602\nfees,1,troilusandcressida,1602\nvaliantly,1,troilusandcressida,1602\nbows,1,troilusandcressida,1602\nrecovery,1,troilusandcressida,1602\nnoblest,1,troilusandcressida,1602\nflaming,1,troilusandcressida,1602\nbeaten,1,troilusandcressida,1602\n'Faith,1,troilusandcressida,1602\nclaim,1,troilusandcressida,1602\nsaucy,1,troilusandcressida,1602\nmasters,1,troilusandcressida,1602\nswore,1,troilusandcressida,1602\ncostly,1,troilusandcressida,1602\nupon't,1,troilusandcressida,1602\nBull,1,troilusandcressida,1602\ncorrupt,1,troilusandcressida,1602\nvenerable,1,troilusandcressida,1602\nsailor,1,troilusandcressida,1602\nDoreus,1,troilusandcressida,1602\nbrotherhoods,1,troilusandcressida,1602\nwhisper,1,troilusandcressida,1602\nweather,1,troilusandcressida,1602\nOld,1,troilusandcressida,1602\nprizer,1,troilusandcressida,1602\nprotestation,1,troilusandcressida,1602\nchoose,1,troilusandcressida,1602\nwine,1,troilusandcressida,1602\nwing,1,troilusandcressida,1602\nlion's,1,troilusandcressida,1602\nTroiluses,1,troilusandcressida,1602\nporter,1,troilusandcressida,1602\nboil,1,troilusandcressida,1602\nFly,1,troilusandcressida,1602\nbolts,1,troilusandcressida,1602\nbauble,1,troilusandcressida,1602\ncoins,1,troilusandcressida,1602\ntax,1,troilusandcressida,1602\nbourn,1,troilusandcressida,1602\nflesh,1,troilusandcressida,1602\nwished,1,troilusandcressida,1602\nHence,1,troilusandcressida,1602\nnails,1,troilusandcressida,1602\nsoever,1,troilusandcressida,1602\nStreet,1,troilusandcressida,1602\nBoreas,1,troilusandcressida,1602\ntiger,1,troilusandcressida,1602\nwaterflies,1,troilusandcressida,1602\nnegligent,1,troilusandcressida,1602\nAlong,1,troilusandcressida,1602\nrend,1,troilusandcressida,1602\nCrying,1,troilusandcressida,1602\nuntasted,1,troilusandcressida,1602\nMight,1,troilusandcressida,1602\ndedicate,1,troilusandcressida,1602\nBlow,1,troilusandcressida,1602\nCerberus,1,troilusandcressida,1602\nseems,1,troilusandcressida,1602\nNiobes,1,troilusandcressida,1602\nsailing,1,troilusandcressida,1602\nseparates,1,troilusandcressida,1602\nlength,1,troilusandcressida,1602\noverbulk,1,troilusandcressida,1602\nsarcenet,1,troilusandcressida,1602\nexpressly,1,troilusandcressida,1602\ndamnable,1,troilusandcressida,1602\nrely,1,troilusandcressida,1602\nstrew'd,1,troilusandcressida,1602\nwholly,1,troilusandcressida,1602\nborrow'dst,1,troilusandcressida,1602\ncommixtion,1,troilusandcressida,1602\nroundly,1,troilusandcressida,1602\nhates,1,troilusandcressida,1602\ndolts,1,troilusandcressida,1602\ngoose,1,troilusandcressida,1602\ndies,1,troilusandcressida,1602\nUnfit,1,troilusandcressida,1602\npuff'd,1,troilusandcressida,1602\nCousin,1,troilusandcressida,1602\nrivets,1,troilusandcressida,1602\no'ertop,1,troilusandcressida,1602\nrequests,1,troilusandcressida,1602\nunacquainted,1,troilusandcressida,1602\nbold,1,troilusandcressida,1602\n'she,1,troilusandcressida,1602\nfrush,1,troilusandcressida,1602\ndrain'd,1,troilusandcressida,1602\nAccept,1,troilusandcressida,1602\nmannish,1,troilusandcressida,1602\nthrown,1,troilusandcressida,1602\nclasp,1,troilusandcressida,1602\nimperious,1,troilusandcressida,1602\ncormorant,1,troilusandcressida,1602\ndispleasure,1,troilusandcressida,1602\nexecrations,1,troilusandcressida,1602\ngawds,1,troilusandcressida,1602\npierce,1,troilusandcressida,1602\nPyrrhus,1,troilusandcressida,1602\nsculls,1,troilusandcressida,1602\nambassador,1,troilusandcressida,1602\nwindow,1,troilusandcressida,1602\nhorrors,1,troilusandcressida,1602\nscratching,1,troilusandcressida,1602\nanswer'st,1,troilusandcressida,1602\nungracious,1,troilusandcressida,1602\nknead,1,troilusandcressida,1602\nloins,1,troilusandcressida,1602\nharbour,1,troilusandcressida,1602\nwart,1,troilusandcressida,1602\nprefix'd,1,troilusandcressida,1602\nbaked,1,troilusandcressida,1602\nmerely,1,troilusandcressida,1602\nbond,1,troilusandcressida,1602\nVulcan,1,troilusandcressida,1602\nmeat,1,troilusandcressida,1602\ncircumvention,1,troilusandcressida,1602\nstirr'd,1,troilusandcressida,1602\navow,1,troilusandcressida,1602\nconsecrate,1,troilusandcressida,1602\nwast,1,troilusandcressida,1602\nruled,1,troilusandcressida,1602\ndear'st,1,troilusandcressida,1602\ndiscoveries,1,troilusandcressida,1602\nshedding,1,troilusandcressida,1602\nsally,1,troilusandcressida,1602\nchastised,1,troilusandcressida,1602\nparty,1,troilusandcressida,1602\nCo,1,troilusandcressida,1602\nLove's,1,troilusandcressida,1602\npavilions,1,troilusandcressida,1602\nfumbling,1,troilusandcressida,1602\nobjects,1,troilusandcressida,1602\nintelligence,1,troilusandcressida,1602\ndeserver,1,troilusandcressida,1602\nproject,1,troilusandcressida,1602\nmasculine,1,troilusandcressida,1602\nconvive,1,troilusandcressida,1602\nnephew,1,troilusandcressida,1602\nopening,1,troilusandcressida,1602\nbig,1,troilusandcressida,1602\ncalumniating,1,troilusandcressida,1602\nsenses,1,troilusandcressida,1602\nnail,1,troilusandcressida,1602\nknowledge,1,troilusandcressida,1602\nyouths,1,troilusandcressida,1602\nnineth,1,troilusandcressida,1602\nsplinter,1,troilusandcressida,1602\nConsort,1,troilusandcressida,1602\ninvert,1,troilusandcressida,1602\nauthority,1,troilusandcressida,1602\nbastards,1,troilusandcressida,1602\nburning,1,troilusandcressida,1602\nlarded,1,troilusandcressida,1602\nTakes,1,troilusandcressida,1602\nunkind,1,troilusandcressida,1602\nparadoxes,1,troilusandcressida,1602\ncommended,1,troilusandcressida,1602\nbob,1,troilusandcressida,1602\nPresuming,1,troilusandcressida,1602\nscurril,1,troilusandcressida,1602\nenchanting,1,troilusandcressida,1602\nmaxim,1,troilusandcressida,1602\nTitan,1,troilusandcressida,1602\nplanet,1,troilusandcressida,1602\nbestowing,1,troilusandcressida,1602\nsweeten,1,troilusandcressida,1602\nfoes,1,troilusandcressida,1602\nNeoptolemus,1,troilusandcressida,1602\ndelights,1,troilusandcressida,1602\nexercise,1,troilusandcressida,1602\ngranted,1,troilusandcressida,1602\n'Twere,1,troilusandcressida,1602\npulse,1,troilusandcressida,1602\nnegation,1,troilusandcressida,1602\nuntraded,1,troilusandcressida,1602\ndeformed,1,troilusandcressida,1602\nAm,1,troilusandcressida,1602\naltogether,1,troilusandcressida,1602\nreverberates,1,troilusandcressida,1602\nmorrow's,1,troilusandcressida,1602\nactivity,1,troilusandcressida,1602\nfool's,1,troilusandcressida,1602\nforge,1,troilusandcressida,1602\ntransformation,1,troilusandcressida,1602\nmutiny,1,troilusandcressida,1602\nBi,1,troilusandcressida,1602\n'sweet',1,troilusandcressida,1602\nbow,1,troilusandcressida,1602\nloath,1,troilusandcressida,1602\neternal,1,troilusandcressida,1602\ndragg'd,1,troilusandcressida,1602\nbereave,1,troilusandcressida,1602\nsuffers,1,troilusandcressida,1602\nsequent,1,troilusandcressida,1602\nalarum,1,troilusandcressida,1602\nlance,1,troilusandcressida,1602\nHope,1,troilusandcressida,1602\nassault,1,troilusandcressida,1602\nStill,1,troilusandcressida,1602\nhem,1,troilusandcressida,1602\nHaving,1,troilusandcressida,1602\nborrows,1,troilusandcressida,1602\nLo,1,troilusandcressida,1602\nprodigious,1,troilusandcressida,1602\nsecretly,1,troilusandcressida,1602\nO',1,troilusandcressida,1602\nwarrior,1,troilusandcressida,1602\nsinew,1,troilusandcressida,1602\nimagined,1,troilusandcressida,1602\nSeverals,1,troilusandcressida,1602\nsiege,1,troilusandcressida,1602\neternity,1,troilusandcressida,1602\nFails,1,troilusandcressida,1602\nsubscribe,1,troilusandcressida,1602\ndoves,1,troilusandcressida,1602\nin't,1,troilusandcressida,1602\nbutt,1,troilusandcressida,1602\nin's,1,troilusandcressida,1602\ndenies,1,troilusandcressida,1602\nkept,1,troilusandcressida,1602\n'would,1,troilusandcressida,1602\ncreature,1,troilusandcressida,1602\nstar,1,troilusandcressida,1602\ndenied,1,troilusandcressida,1602\nfantastic,1,troilusandcressida,1602\nexploit's,1,troilusandcressida,1602\nper,1,troilusandcressida,1602\nbegun,1,troilusandcressida,1602\nHey,1,troilusandcressida,1602\npitied,1,troilusandcressida,1602\ntranslate,1,troilusandcressida,1602\nHem,1,troilusandcressida,1602\nDerive,1,troilusandcressida,1602\nAsses,1,troilusandcressida,1602\nfinds,1,troilusandcressida,1602\ndifficulty,1,troilusandcressida,1602\nworest,1,troilusandcressida,1602\nfitchew,1,troilusandcressida,1602\nchanged,1,troilusandcressida,1602\niteration,1,troilusandcressida,1602\nenter'd,1,troilusandcressida,1602\nremainder,1,troilusandcressida,1602\ntear,1,troilusandcressida,1602\nSomething,1,troilusandcressida,1602\nmedicine,1,troilusandcressida,1602\nflowers,1,troilusandcressida,1602\nharness'd,1,troilusandcressida,1602\nbee,1,troilusandcressida,1602\nHo,1,troilusandcressida,1602\npopp'd,1,troilusandcressida,1602\nmeant,1,troilusandcressida,1602\nIX,1,troilusandcressida,1602\nblest,1,troilusandcressida,1602\nwinnow'd,1,troilusandcressida,1602\nulcer,1,troilusandcressida,1602\nsurely,1,troilusandcressida,1602\nquick,1,troilusandcressida,1602\ncuckolds,1,troilusandcressida,1602\nbruised,1,troilusandcressida,1602\npath,1,troilusandcressida,1602\neast,1,troilusandcressida,1602\nadded,1,troilusandcressida,1602\npia,1,troilusandcressida,1602\npie,1,troilusandcressida,1602\ngreasy,1,troilusandcressida,1602\nmeals,1,troilusandcressida,1602\npin,1,troilusandcressida,1602\nmealy,1,troilusandcressida,1602\nenrage,1,troilusandcressida,1602\nHas,1,troilusandcressida,1602\npash,1,troilusandcressida,1602\nsleeveless,1,troilusandcressida,1602\nchanges,1,troilusandcressida,1602\nCondition,1,troilusandcressida,1602\nFrown,1,troilusandcressida,1602\nDivides,1,troilusandcressida,1602\nIs't,1,troilusandcressida,1602\nUp,1,troilusandcressida,1602\nague,1,troilusandcressida,1602\nprompts,1,troilusandcressida,1602\nnice,1,troilusandcressida,1602\nparch,1,troilusandcressida,1602\nVI,1,troilusandcressida,1602\nyourselves,1,troilusandcressida,1602\npot,1,troilusandcressida,1602\nwitless,1,troilusandcressida,1602\nsparrows,1,troilusandcressida,1602\nmonstrous,1,troilusandcressida,1602\nRoguery,1,troilusandcressida,1602\npolluted,1,troilusandcressida,1602\ndevotion,1,troilusandcressida,1602\nnobly,1,troilusandcressida,1602\nneglection,1,troilusandcressida,1602\nattentive,1,troilusandcressida,1602\nwallow,1,troilusandcressida,1602\npropension,1,troilusandcressida,1602\ntitled,1,troilusandcressida,1602\nbegot,1,troilusandcressida,1602\njaundice,1,troilusandcressida,1602\ncorrupted,1,troilusandcressida,1602\nkiss'd,1,troilusandcressida,1602\nfashionable,1,troilusandcressida,1602\nsirs,1,troilusandcressida,1602\ntitles,1,troilusandcressida,1602\ncourteous,1,troilusandcressida,1602\nAdieu,1,troilusandcressida,1602\ntheft,1,troilusandcressida,1602\nstrain'd,1,troilusandcressida,1602\nannoyance,1,troilusandcressida,1602\nmadmen,1,troilusandcressida,1602\nespies,1,troilusandcressida,1602\nwhatever,1,troilusandcressida,1602\nliberality,1,troilusandcressida,1602\nForce,1,troilusandcressida,1602\nwrinkle,1,troilusandcressida,1602\nsorry,1,troilusandcressida,1602\nunworthiest,1,troilusandcressida,1602\ncognition,1,troilusandcressida,1602\nweek,1,troilusandcressida,1602\nbuss,1,troilusandcressida,1602\nbusy,1,troilusandcressida,1602\nlavolt,1,troilusandcressida,1602\npreventions,1,troilusandcressida,1602\nmankind,1,troilusandcressida,1602\nwas't,1,troilusandcressida,1602\nmetal,1,troilusandcressida,1602\nhumane,1,troilusandcressida,1602\nleather,1,troilusandcressida,1602\nJove's,1,troilusandcressida,1602\nRemuneration,1,troilusandcressida,1602\nHeart,1,troilusandcressida,1602\nloads,1,troilusandcressida,1602\nPresent,1,troilusandcressida,1602\nburs,1,troilusandcressida,1602\nsuffer'd,1,troilusandcressida,1602\n'Twould,1,troilusandcressida,1602\nincursions,1,troilusandcressida,1602\nperdition,1,troilusandcressida,1602\nWriting,1,troilusandcressida,1602\nburn,1,troilusandcressida,1602\nsorts,1,troilusandcressida,1602\nkindness,1,troilusandcressida,1602\ntruncheon,1,troilusandcressida,1602\nimmediately,1,troilusandcressida,1602\ncat,1,troilusandcressida,1602\ncrush,1,troilusandcressida,1602\nbreathing,1,troilusandcressida,1602\nchildren,1,troilusandcressida,1602\nDistasted,1,troilusandcressida,1602\nnaming,1,troilusandcressida,1602\naltar,1,troilusandcressida,1602\nextended,1,troilusandcressida,1602\ndefects,1,troilusandcressida,1602\ninterrupt,1,troilusandcressida,1602\ntables,1,troilusandcressida,1602\nBold,1,troilusandcressida,1602\ngaze,1,troilusandcressida,1602\nwoful,1,troilusandcressida,1602\nlatest,1,troilusandcressida,1602\nsomewhat,1,troilusandcressida,1602\nSave,1,troilusandcressida,1602\nSurety,1,troilusandcressida,1602\ngory,1,troilusandcressida,1602\nEntreat,1,troilusandcressida,1602\nWished,1,troilusandcressida,1602\nThoas,1,troilusandcressida,1602\npeople,1,troilusandcressida,1602\nLabouring,1,troilusandcressida,1602\nbeyond,1,troilusandcressida,1602\nmodestly,1,troilusandcressida,1602\nperilous,1,troilusandcressida,1602\ngames,1,troilusandcressida,1602\nunlock,1,troilusandcressida,1602\nexpecters,1,troilusandcressida,1602\nmainly,1,troilusandcressida,1602\ndisdainfully,1,troilusandcressida,1602\njealous,1,troilusandcressida,1602\nmultipotent,1,troilusandcressida,1602\nwaving,1,troilusandcressida,1602\nsumptuous,1,troilusandcressida,1602\nplough,1,troilusandcressida,1602\ncauseth,1,troilusandcressida,1602\nfoulest,1,troilusandcressida,1602\nDrawing,1,troilusandcressida,1602\ntickled,1,troilusandcressida,1602\nsieve,1,troilusandcressida,1602\npun,1,troilusandcressida,1602\nBoldness,1,troilusandcressida,1602\nserpent,1,troilusandcressida,1602\npersuasion,1,troilusandcressida,1602\ncarpenter,1,troilusandcressida,1602\nInsisture,1,troilusandcressida,1602\n'no,1,troilusandcressida,1602\nsilk,1,troilusandcressida,1602\nfifth,1,troilusandcressida,1602\nmurrain,1,troilusandcressida,1602\nkernel,1,troilusandcressida,1602\nquails,1,troilusandcressida,1602\ncorresponsive,1,troilusandcressida,1602\nbeget,1,troilusandcressida,1602\ndiscomfort,1,troilusandcressida,1602\nmystery,1,troilusandcressida,1602\nbeef,1,troilusandcressida,1602\nfathoms,1,troilusandcressida,1602\nUpbraid,1,troilusandcressida,1602\nlonger,1,troilusandcressida,1602\nO'er,1,troilusandcressida,1602\nswing,1,troilusandcressida,1602\nlurks,1,troilusandcressida,1602\ncouch'd,1,troilusandcressida,1602\nCressids,1,troilusandcressida,1602\nstronger,1,troilusandcressida,1602\npains,1,troilusandcressida,1602\npaint,1,troilusandcressida,1602\nensue,1,troilusandcressida,1602\nhisses,1,troilusandcressida,1602\ngate,1,troilusandcressida,1602\nFraught,1,troilusandcressida,1602\nbeds,1,troilusandcressida,1602\nconflux,1,troilusandcressida,1602\nsister's,1,troilusandcressida,1602\nstretch,1,troilusandcressida,1602\npitch,1,troilusandcressida,1602\nwells,1,troilusandcressida,1602\nexposure,1,troilusandcressida,1602\nappalled,1,troilusandcressida,1602\nchangeful,1,troilusandcressida,1602\nSans,1,troilusandcressida,1602\ncetera,1,troilusandcressida,1602\nvantage,1,troilusandcressida,1602\nashamed,1,troilusandcressida,1602\ngash,1,troilusandcressida,1602\nextenuates,1,troilusandcressida,1602\nmower's,1,troilusandcressida,1602\nowest,1,troilusandcressida,1602\ntraded,1,troilusandcressida,1602\nimmortal,1,troilusandcressida,1602\nconsanguinity,1,troilusandcressida,1602\nuplifted,1,troilusandcressida,1602\nhamstring,1,troilusandcressida,1602\nheadstrong,1,troilusandcressida,1602\nloud'st,1,troilusandcressida,1602\ndolours,1,troilusandcressida,1602\nafoot,1,troilusandcressida,1602\nfumbles,1,troilusandcressida,1602\noxen,1,troilusandcressida,1602\ntower,1,troilusandcressida,1602\nSame,1,troilusandcressida,1602\ncombatant,1,troilusandcressida,1602\nuses,1,troilusandcressida,1602\nrivet,1,troilusandcressida,1602\nindistinguishable,1,troilusandcressida,1602\nnoted,1,troilusandcressida,1602\noverhold,1,troilusandcressida,1602\neagles,1,troilusandcressida,1602\nstorm,1,troilusandcressida,1602\ncontinued,1,troilusandcressida,1602\ntaints,1,troilusandcressida,1602\nGod's,1,troilusandcressida,1602\nbanqueting,1,troilusandcressida,1602\nApprove,1,troilusandcressida,1602\ndeem,1,troilusandcressida,1602\nvirgin,1,troilusandcressida,1602\nconquering,1,troilusandcressida,1602\nprophetic,1,troilusandcressida,1602\nenchants,1,troilusandcressida,1602\ninstant,1,troilusandcressida,1602\nFollows,1,troilusandcressida,1602\nharness,1,troilusandcressida,1602\nwretch,1,troilusandcressida,1602\nimage,1,troilusandcressida,1602\nWaked,1,troilusandcressida,1602\nunpractised,1,troilusandcressida,1602\nFortune,1,troilusandcressida,1602\naim,1,troilusandcressida,1602\nDurst,1,troilusandcressida,1602\nSoldiers,1,troilusandcressida,1602\ntorments,1,troilusandcressida,1602\ndoff,1,troilusandcressida,1602\ngift,1,troilusandcressida,1602\ntyrant,1,troilusandcressida,1602\nMock,1,troilusandcressida,1602\nsuperior,1,troilusandcressida,1602\nraise,1,troilusandcressida,1602\ndisorb'd,1,troilusandcressida,1602\nexcellent,1,troilusandcressida,1602\nembraces,1,troilusandcressida,1602\ninstances,1,troilusandcressida,1602\nPard,1,troilusandcressida,1602\nrepent,1,troilusandcressida,1602\nforbids,1,troilusandcressida,1602\noddly,1,troilusandcressida,1602\nrepute,1,troilusandcressida,1602\ncarrion,1,troilusandcressida,1602\nsheep,1,troilusandcressida,1602\ntruest,1,troilusandcressida,1602\nallege,1,troilusandcressida,1602\ndebt,1,troilusandcressida,1602\nstool,1,troilusandcressida,1602\nmisprizing,1,troilusandcressida,1602\nbeam,1,troilusandcressida,1602\net,1,troilusandcressida,1602\nUnless,1,troilusandcressida,1602\nswearing,1,troilusandcressida,1602\nBreaks,1,troilusandcressida,1602\nencounterers,1,troilusandcressida,1602\nplayer,1,troilusandcressida,1602\nqualifying,1,troilusandcressida,1602\nBeggar,1,troilusandcressida,1602\nfrenzy's,1,troilusandcressida,1602\nAdmits,1,troilusandcressida,1602\nwallet,1,troilusandcressida,1602\nobligation,1,troilusandcressida,1602\ndescribes,1,troilusandcressida,1602\nautumn,1,troilusandcressida,1602\nvouchsafe,1,troilusandcressida,1602\naims,1,troilusandcressida,1602\nvictory,1,troilusandcressida,1602\ncommanders,1,troilusandcressida,1602\nFeed,1,troilusandcressida,1602\nseeing,1,troilusandcressida,1602\nenginer,1,troilusandcressida,1602\n'Fore,1,troilusandcressida,1602\nWrinkles,1,troilusandcressida,1602\nco,1,troilusandcressida,1602\nBesides,1,troilusandcressida,1602\nliars,1,troilusandcressida,1602\nruthful,1,troilusandcressida,1602\ntrash,1,troilusandcressida,1602\nLuxury,1,troilusandcressida,1602\nrhymes,1,troilusandcressida,1602\nOffice,1,troilusandcressida,1602\nlend,1,troilusandcressida,1602\nAlexander,1,troilusandcressida,1602\npoise,1,troilusandcressida,1602\nboast,1,troilusandcressida,1602\noutwardly,1,troilusandcressida,1602\ndestruction,1,troilusandcressida,1602\nnettle,1,troilusandcressida,1602\nthefts,1,troilusandcressida,1602\nwaist,1,troilusandcressida,1602\nexpects,1,troilusandcressida,1602\ntorches,1,troilusandcressida,1602\nbounties,1,troilusandcressida,1602\ndefence,1,troilusandcressida,1602\nice,1,troilusandcressida,1602\ngenerally,1,troilusandcressida,1602\nRest,1,troilusandcressida,1602\ndirects,1,troilusandcressida,1602\nhell's,1,troilusandcressida,1602\nDivide,1,troilusandcressida,1602\nFeel,1,troilusandcressida,1602\nList,1,troilusandcressida,1602\nb',1,troilusandcressida,1602\nrestrains,1,troilusandcressida,1602\nSwords,1,troilusandcressida,1602\nspongy,1,troilusandcressida,1602\nvaunt,1,troilusandcressida,1602\nmemory,1,troilusandcressida,1602\nedifies,1,troilusandcressida,1602\nprivilege,1,troilusandcressida,1602\napproach,1,troilusandcressida,1602\nheating,1,troilusandcressida,1602\nobservant,1,troilusandcressida,1602\nforget,1,troilusandcressida,1602\ngrowth,1,troilusandcressida,1602\ntemperate,1,troilusandcressida,1602\nNeptune's,1,troilusandcressida,1602\nbless'd,1,troilusandcressida,1602\ncolic,1,troilusandcressida,1602\ncorrect,1,troilusandcressida,1602\ncures,1,troilusandcressida,1602\ncurer,1,troilusandcressida,1602\nfrights,1,troilusandcressida,1602\ncliff,1,troilusandcressida,1602\nmissions,1,troilusandcressida,1602\nattending,1,troilusandcressida,1602\nsoaring,1,troilusandcressida,1602\ndarking,1,troilusandcressida,1602\nbarbarism,1,troilusandcressida,1602\napprobation,1,troilusandcressida,1602\nrailed,1,troilusandcressida,1602\nbites,1,troilusandcressida,1602\nThough't,1,troilusandcressida,1602\nnecessity,1,troilusandcressida,1602\nboasting,1,troilusandcressida,1602\nstrait,1,troilusandcressida,1602\no'ergalled,1,troilusandcressida,1602\nsuffices,1,troilusandcressida,1602\nDeliver'd,1,troilusandcressida,1602\nidly,1,troilusandcressida,1602\nsceptres,1,troilusandcressida,1602\nwrinkled,1,troilusandcressida,1602\nabide,1,troilusandcressida,1602\nbitch,1,troilusandcressida,1602\nMyself,1,troilusandcressida,1602\nblackness,1,troilusandcressida,1602\ntrail,1,troilusandcressida,1602\nmorn,1,troilusandcressida,1602\nperfectly,1,troilusandcressida,1602\ntrain,1,troilusandcressida,1602\nenmity,1,troilusandcressida,1602\nstickler,1,troilusandcressida,1602\ntamed,1,troilusandcressida,1602\nglance,1,troilusandcressida,1602\noutfly,1,troilusandcressida,1602\nhadst,1,troilusandcressida,1602\noffences,1,troilusandcressida,1602\nSuccess,1,troilusandcressida,1602\nink,1,troilusandcressida,1602\nchallenged,1,troilusandcressida,1602\nsoilure,1,troilusandcressida,1602\n'may,1,troilusandcressida,1602\nshrills,1,troilusandcressida,1602\namply,1,troilusandcressida,1602\nsuperstitious,1,troilusandcressida,1602\nmoor,1,troilusandcressida,1602\ninseparate,1,troilusandcressida,1602\nAppals,1,troilusandcressida,1602\ndrift,1,troilusandcressida,1602\nbeholding,1,troilusandcressida,1602\ndrayman,1,troilusandcressida,1602\nsweetness,1,troilusandcressida,1602\nProposed,1,troilusandcressida,1602\nshrieking,1,troilusandcressida,1602\ndumbness,1,troilusandcressida,1602\nlest,1,troilusandcressida,1602\nSennet,1,troilusandcressida,1602\ndispose,1,troilusandcressida,1602\nswains,1,troilusandcressida,1602\nquoted,1,troilusandcressida,1602\nweakest,1,troilusandcressida,1602\nknot,1,troilusandcressida,1602\nspend,1,troilusandcressida,1602\ntwenty,1,troilusandcressida,1602\n'Troilus',1,troilusandcressida,1602\nblue,1,troilusandcressida,1602\nstrains,1,troilusandcressida,1602\nGrace,1,troilusandcressida,1602\nnecessary,1,troilusandcressida,1602\nlocal,1,troilusandcressida,1602\nwails,1,troilusandcressida,1602\nforceless,1,troilusandcressida,1602\nsmart,1,troilusandcressida,1602\nstatues,1,troilusandcressida,1602\ncommandment,1,troilusandcressida,1602\njerkin,1,troilusandcressida,1602\nslack,1,troilusandcressida,1602\njourney,1,troilusandcressida,1602\ndisposer's,1,troilusandcressida,1602\npure,1,troilusandcressida,1602\nnatures,1,troilusandcressida,1602\nAriachne's,1,troilusandcressida,1602\nsanctimonies,1,troilusandcressida,1602\nincontinent,1,troilusandcressida,1602\ntoad,1,troilusandcressida,1602\nFresh,1,troilusandcressida,1602\nwisest,1,troilusandcressida,1602\nclimb,1,troilusandcressida,1602\ntucket,1,troilusandcressida,1602\nrivelled,1,troilusandcressida,1602\nrobbed,1,troilusandcressida,1602\ngravel,1,troilusandcressida,1602\nhart,1,troilusandcressida,1602\nhindmost,1,troilusandcressida,1602\nmight',1,troilusandcressida,1602\nattach'd,1,troilusandcressida,1602\ntempted,1,troilusandcressida,1602\nfierce,1,troilusandcressida,1602\nhare,1,troilusandcressida,1602\nability,1,troilusandcressida,1602\nscratch,1,troilusandcressida,1602\nenrapt,1,troilusandcressida,1602\noutward,1,troilusandcressida,1602\nvoluntarily,1,troilusandcressida,1602\nbends,1,troilusandcressida,1602\nfront,1,troilusandcressida,1602\ncherubims,1,troilusandcressida,1602\nwards,1,troilusandcressida,1602\nstrutting,1,troilusandcressida,1602\nstring,1,troilusandcressida,1602\nspleens,1,troilusandcressida,1602\nbrokers,1,troilusandcressida,1602\nflinch,1,troilusandcressida,1602\naffects,1,troilusandcressida,1602\nhale,1,troilusandcressida,1602\nunarmed,1,troilusandcressida,1602\ntranscends,1,troilusandcressida,1602\npoorly,1,troilusandcressida,1602\nlabouring,1,troilusandcressida,1602\nadders,1,troilusandcressida,1602\nDiana's,1,troilusandcressida,1602\nkingly,1,troilusandcressida,1602\nexasperate,1,troilusandcressida,1602\nknit,1,troilusandcressida,1602\nsignify,1,troilusandcressida,1602\nnearer,1,troilusandcressida,1602\nwares,1,troilusandcressida,1602\nManly,1,troilusandcressida,1602\nbloodied,1,troilusandcressida,1602\nshallow,1,troilusandcressida,1602\nse,1,troilusandcressida,1602\nnation,1,troilusandcressida,1602\njustles,1,troilusandcressida,1602\nleers,1,troilusandcressida,1602\nweeds,1,troilusandcressida,1602\ntrade,1,troilusandcressida,1602\nTrumpets,1,troilusandcressida,1602\nshun,1,troilusandcressida,1602\ndistains,1,troilusandcressida,1602\nreach,1,troilusandcressida,1602\nskilless,1,troilusandcressida,1602\ndeny,1,troilusandcressida,1602\ncited,1,troilusandcressida,1602\nfour,1,troilusandcressida,1602\nfirstlings,1,troilusandcressida,1602\nladder,1,troilusandcressida,1602\nsighing,1,troilusandcressida,1602\nporridge,1,troilusandcressida,1602\naccord,1,troilusandcressida,1602\nrejoindure,1,troilusandcressida,1602\nwranglers,1,troilusandcressida,1602\nknocking,1,troilusandcressida,1602\ndrave,1,troilusandcressida,1602\nSalutes,1,troilusandcressida,1602\nPrizes,1,troilusandcressida,1602\nforagers,1,troilusandcressida,1602\nparticulars,1,troilusandcressida,1602\nOyes,1,troilusandcressida,1602\nmomentary,1,troilusandcressida,1602\nDuring,1,troilusandcressida,1602\nbarkest,1,troilusandcressida,1602\npeacock,1,troilusandcressida,1602\ndismes,1,troilusandcressida,1602\nshell,1,troilusandcressida,1602\nspotted,1,troilusandcressida,1602\nwisdoms,1,troilusandcressida,1602\npotency,1,troilusandcressida,1602\nacquaintance,1,troilusandcressida,1602\nguardian,1,troilusandcressida,1602\n'Loo,1,troilusandcressida,1602\nFirst,1,troilusandcressida,1602\ncasque,1,troilusandcressida,1602\nexpect,1,troilusandcressida,1602\nrudely,1,troilusandcressida,1602\nfrightening,1,troilusandcressida,1602\nopes,1,troilusandcressida,1602\nPalamedes,1,troilusandcressida,1602\npander's,1,troilusandcressida,1602\ncatarrhs,1,troilusandcressida,1602\nrefused,1,troilusandcressida,1602\nbrothers,1,troilusandcressida,1602\nstrawy,1,troilusandcressida,1602\nclotpoles,1,troilusandcressida,1602\nprepare,1,troilusandcressida,1602\nnightly,1,troilusandcressida,1602\nCommend,1,troilusandcressida,1602\nFlowing,1,troilusandcressida,1602\nriddance,1,troilusandcressida,1602\nharder,1,troilusandcressida,1602\nshaked,1,troilusandcressida,1602\nshent,1,troilusandcressida,1602\npair,1,troilusandcressida,1602\nstranger,1,troilusandcressida,1602\nglozed,1,troilusandcressida,1602\ndelight,1,troilusandcressida,1602\neases,1,troilusandcressida,1602\nreturn'd,1,troilusandcressida,1602\nfiery,1,troilusandcressida,1602\nspit,1,troilusandcressida,1602\ndiest,1,troilusandcressida,1602\nNight,1,troilusandcressida,1602\nextremest,1,troilusandcressida,1602\nmended,1,troilusandcressida,1602\ntemporize,1,troilusandcressida,1602\nAjax',1,troilusandcressida,1602\nDispraise,1,troilusandcressida,1602\napt,1,troilusandcressida,1602\nallayment,1,troilusandcressida,1602\nforsworn,1,troilusandcressida,1602\nfrown,1,troilusandcressida,1602\nowes,1,troilusandcressida,1602\nshakes,1,troilusandcressida,1602\nentertain'd,1,troilusandcressida,1602\ndevise,1,troilusandcressida,1602\nsanctify,1,troilusandcressida,1602\nbosom,1,troilusandcressida,1602\ndetermination,1,troilusandcressida,1602\nmortals,1,troilusandcressida,1602\nMinds,1,troilusandcressida,1602\nexcept,1,troilusandcressida,1602\npalating,1,troilusandcressida,1602\nnectar,1,troilusandcressida,1602\nmoan,1,troilusandcressida,1602\nfood,1,troilusandcressida,1602\ncontain,1,troilusandcressida,1602\nbearer,1,troilusandcressida,1602\ncourses,1,troilusandcressida,1602\npush,1,troilusandcressida,1602\nrear'd,1,troilusandcressida,1602\nlouse,1,troilusandcressida,1602\nmaiden,1,troilusandcressida,1602\nforms,1,troilusandcressida,1602\nbesotted,1,troilusandcressida,1602\nmayst,1,troilusandcressida,1602\nebbs,1,troilusandcressida,1602\nfeverous,1,troilusandcressida,1602\nbegets,1,troilusandcressida,1602\nterm,1,troilusandcressida,1602\nforcibly,1,troilusandcressida,1602\nhive,1,troilusandcressida,1602\nDexterity,1,troilusandcressida,1602\nsoundest,1,troilusandcressida,1602\ndefended,1,troilusandcressida,1602\nAmphimachus,1,troilusandcressida,1602\nunbruised,1,troilusandcressida,1602\ntrick,1,troilusandcressida,1602\nbought,1,troilusandcressida,1602\ndistinction,1,troilusandcressida,1602\nprophetically,1,troilusandcressida,1602\nclearer,1,troilusandcressida,1602\nundone,1,troilusandcressida,1602\npartial,1,troilusandcressida,1602\ntheirs,1,troilusandcressida,1602\nThink'st,1,troilusandcressida,1602\nglib,1,troilusandcressida,1602\nalacrity,1,troilusandcressida,1602\nransack,1,troilusandcressida,1602\nSirrah,1,troilusandcressida,1602\nnative,1,troilusandcressida,1602\ndilated,1,troilusandcressida,1602\nlees,1,troilusandcressida,1602\nministers,1,troilusandcressida,1602\nwights,1,troilusandcressida,1602\ncheque,1,troilusandcressida,1602\nreinforcement,1,troilusandcressida,1602\nchides,1,troilusandcressida,1602\ndate's,1,troilusandcressida,1602\nspiteful,1,troilusandcressida,1602\nRicher,1,troilusandcressida,1602\nporpentine,1,troilusandcressida,1602\nhiss,1,troilusandcressida,1602\nwooing,1,troilusandcressida,1602\nScare,1,troilusandcressida,1602\nlonging,1,troilusandcressida,1602\nridiculous,1,troilusandcressida,1602\nprevents,1,troilusandcressida,1602\nhazard,1,troilusandcressida,1602\nAsk,1,troilusandcressida,1602\nexcel,1,troilusandcressida,1602\nenjoy,1,troilusandcressida,1602\ntasted,1,troilusandcressida,1602\nsleave,1,troilusandcressida,1602\nDegree,1,troilusandcressida,1602\nguest,1,troilusandcressida,1602\ntastes,1,troilusandcressida,1602\nroot,1,troilusandcressida,1602\nfair'st,1,troilusandcressida,1602\nmoves,1,troilusandcressida,1602\njaws,1,troilusandcressida,1602\nBids,1,troilusandcressida,1602\nfooling,1,troilusandcressida,1602\nconsumed,1,troilusandcressida,1602\nnobles,1,troilusandcressida,1602\nnobler,1,troilusandcressida,1602\nrequited,1,troilusandcressida,1602\nDisguise,1,troilusandcressida,1602\nluck,1,troilusandcressida,1602\nunderstand'st,1,troilusandcressida,1602\nfrenzy,1,troilusandcressida,1602\nComes,1,troilusandcressida,1602\nelected,1,troilusandcressida,1602\nactive,1,troilusandcressida,1602\nroom,1,troilusandcressida,1602\nCommand,1,troilusandcressida,1602\nrender'd,1,troilusandcressida,1602\ntarre,1,troilusandcressida,1602\nspritely,1,troilusandcressida,1602\nesperance,1,troilusandcressida,1602\ncondemn'd,1,troilusandcressida,1602\nDiomedes',1,troilusandcressida,1602\nmurderer's,1,troilusandcressida,1602\nPhoebus,1,troilusandcressida,1602\nbefriends,1,troilusandcressida,1602\nMadam,1,troilusandcressida,1602\nvinewedst,1,troilusandcressida,1602\ncradles,1,troilusandcressida,1602\nTearing,1,troilusandcressida,1602\nmail,1,troilusandcressida,1602\nbreeds,1,troilusandcressida,1602\nincurable,1,troilusandcressida,1602\nheavier,1,troilusandcressida,1602\nsecurely,1,troilusandcressida,1602\nsyllable,1,troilusandcressida,1602\nWounds,1,troilusandcressida,1602\nfiddler,1,troilusandcressida,1602\nshameful,1,troilusandcressida,1602\npeers,1,troilusandcressida,1602\ncastle,1,troilusandcressida,1602\nattributes,1,troilusandcressida,1602\nalbeit,1,troilusandcressida,1602\nbarbarian,1,troilusandcressida,1602\nunloose,1,troilusandcressida,1602\nConcur,1,troilusandcressida,1602\nmastiffs,1,troilusandcressida,1602\nembracement,1,troilusandcressida,1602\nerrors,1,troilusandcressida,1602\nhind,1,troilusandcressida,1602\nreport,1,troilusandcressida,1602\ntokens,1,troilusandcressida,1602\nnations,1,troilusandcressida,1602\nInfect,1,troilusandcressida,1602\nidiots,1,troilusandcressida,1602\nramp,1,troilusandcressida,1602\nrose,1,troilusandcressida,1602\nrascals,1,troilusandcressida,1602\nneedle,1,troilusandcressida,1602\ncalm'd,1,troilusandcressida,1602\nclamour,1,troilusandcressida,1602\nfinest,1,troilusandcressida,1602\nclapp'd,1,troilusandcressida,1602\nTamer,1,troilusandcressida,1602\nbuild,1,troilusandcressida,1602\nGenius,1,troilusandcressida,1602\ncouldst,1,troilusandcressida,1602\ntapster's,1,troilusandcressida,1602\ndistance,1,troilusandcressida,1602\nmountains,1,troilusandcressida,1602\nticklish,1,troilusandcressida,1602\ncudgelling,1,troilusandcressida,1602\nretires,1,troilusandcressida,1602\nGuardian,1,troilusandcressida,1602\nbuilt,1,troilusandcressida,1602\nrape,1,troilusandcressida,1602\ncrowded,1,troilusandcressida,1602\ndisgorge,1,troilusandcressida,1602\nPleased,1,troilusandcressida,1602\nunknown,1,troilusandcressida,1602\nBetter,1,troilusandcressida,1602\nseizure,1,troilusandcressida,1602\npilots,1,troilusandcressida,1602\nElse,1,troilusandcressida,1602\nsquare,1,troilusandcressida,1602\nBias,1,troilusandcressida,1602\napply,1,troilusandcressida,1602\ncolossus,1,troilusandcressida,1602\nlack'd,1,troilusandcressida,1602\nChetas,1,troilusandcressida,1602\ncroak,1,troilusandcressida,1602\nbeast,1,troilusandcressida,1602\nwaken,1,troilusandcressida,1602\nCrack,1,troilusandcressida,1602\nown's,1,troilusandcressida,1602\nrare,1,troilusandcressida,1602\nOpposed,1,troilusandcressida,1602\nCressida's,1,troilusandcressida,1602\nimminent,1,troilusandcressida,1602\ndamage,1,troilusandcressida,1602\nBade,1,troilusandcressida,1602\nHenceforth,1,troilusandcressida,1602\nblackberry,1,troilusandcressida,1602\nGrasps,1,troilusandcressida,1602\ncrushed,1,troilusandcressida,1602\ndress,1,troilusandcressida,1602\naspiration,1,troilusandcressida,1602\ndrest,1,troilusandcressida,1602\npenny,1,troilusandcressida,1602\nformless,1,troilusandcressida,1602\nfulfilling,1,troilusandcressida,1602\nscale,1,troilusandcressida,1602\ndestructions,1,troilusandcressida,1602\nInjurious,1,troilusandcressida,1602\nshaking,1,troilusandcressida,1602\nPointing,1,troilusandcressida,1602\nrate,1,troilusandcressida,1602\nForestall,1,troilusandcressida,1602\nforesaw,1,troilusandcressida,1602\nmajor,1,troilusandcressida,1602\ntickling,1,troilusandcressida,1602\nmajesty,1,troilusandcressida,1602\ncloths,1,troilusandcressida,1602\nmatchless,1,troilusandcressida,1602\ndaily,1,troilusandcressida,1602\nslipp'd,1,troilusandcressida,1602\nbrazen,1,troilusandcressida,1602\nrash,1,troilusandcressida,1602\ndepravation,1,troilusandcressida,1602\nbears,1,troilusandcressida,1602\ntender,1,troilusandcressida,1602\ntigers,1,troilusandcressida,1602\nspread,1,troilusandcressida,1602\nalmond,1,troilusandcressida,1602\ngated,1,troilusandcressida,1602\nwenching,1,troilusandcressida,1602\nscar,1,troilusandcressida,1602\ntraitors,1,troilusandcressida,1602\ngorget,1,troilusandcressida,1602\ntenths,1,troilusandcressida,1602\ncommunicate,1,troilusandcressida,1602\narmourer,1,troilusandcressida,1602\ntenor,1,troilusandcressida,1602\nBeginning,1,troilusandcressida,1602\nyear,1,troilusandcressida,1602\nenlard,1,troilusandcressida,1602\nchaos,1,troilusandcressida,1602\nbelching,1,troilusandcressida,1602\ntravels,1,troilusandcressida,1602\nextant,1,troilusandcressida,1602\npregnant,1,troilusandcressida,1602\nascribe,1,troilusandcressida,1602\nWear,1,troilusandcressida,1602\nwandering,1,troilusandcressida,1602\npashed,1,troilusandcressida,1602\nTrojans',1,troilusandcressida,1602\nsubstance,1,troilusandcressida,1602\nchickens,1,troilusandcressida,1602\nforesee,1,troilusandcressida,1602\nCourt,1,troilusandcressida,1602\nidolatry,1,troilusandcressida,1602\nuntune,1,troilusandcressida,1602\nSit,1,troilusandcressida,1602\nperused,1,troilusandcressida,1602\nvisage,1,troilusandcressida,1602\nlearning,1,troilusandcressida,1602\nnarrow,1,troilusandcressida,1602\nAll's,1,troilusandcressida,1602\nnut,1,troilusandcressida,1602\ngallantry,1,troilusandcressida,1602\nskein,1,troilusandcressida,1602\nHigh,1,troilusandcressida,1602\nbefriended,1,troilusandcressida,1602\nmisers,1,troilusandcressida,1602\nperform,1,troilusandcressida,1602\nAdd,1,troilusandcressida,1602\npresented,1,troilusandcressida,1602\nevermore,1,troilusandcressida,1602\nAquilon,1,troilusandcressida,1602\ndares,1,troilusandcressida,1602\nscars,1,troilusandcressida,1602\nbe't,1,troilusandcressida,1602\noblique,1,troilusandcressida,1602\ngouty,1,troilusandcressida,1602\npelter,1,troilusandcressida,1602\nislands,1,troilusandcressida,1602\nSparta's,1,troilusandcressida,1602\navouch,1,troilusandcressida,1602\nfamous,1,troilusandcressida,1602\nDegrees,1,troilusandcressida,1602\nmouse,1,troilusandcressida,1602\nerudition,1,troilusandcressida,1602\nHealth,1,troilusandcressida,1602\nturbulence,1,troilusandcressida,1602\nutters,1,troilusandcressida,1602\nsociable,1,troilusandcressida,1602\nturpitude,1,troilusandcressida,1602\nCrams,1,troilusandcressida,1602\nKnows,1,troilusandcressida,1602\ngladness,1,troilusandcressida,1602\nappointment,1,troilusandcressida,1602\nAmidst,1,troilusandcressida,1602\nquarrel's,1,troilusandcressida,1602\nchime,1,troilusandcressida,1602\nfragments,1,troilusandcressida,1602\nscab,1,troilusandcressida,1602\nerr,1,troilusandcressida,1602\nairy,1,troilusandcressida,1602\ndevice,1,troilusandcressida,1602\npaced,1,troilusandcressida,1602\nstrife,1,troilusandcressida,1602\nadmits,1,troilusandcressida,1602\ngoblins,1,troilusandcressida,1602\ndaylight,1,troilusandcressida,1602\ndoors,1,troilusandcressida,1602\nleaven,1,troilusandcressida,1602\nleaves,1,troilusandcressida,1602\nRode,1,troilusandcressida,1602\nmill,1,troilusandcressida,1602\naccepted,1,troilusandcressida,1602\neld,1,troilusandcressida,1602\nexchange,1,troilusandcressida,1602\nwiser,1,troilusandcressida,1602\nmane,1,troilusandcressida,1602\ndisdain'd,1,troilusandcressida,1602\n'In,1,troilusandcressida,1602\nungently,1,troilusandcressida,1602\nprodigal's,1,troilusandcressida,1602\nstride,1,troilusandcressida,1602\ndusty,1,troilusandcressida,1602\nsolid,1,troilusandcressida,1602\nstars,1,troilusandcressida,1602\nqualities,1,troilusandcressida,1602\nsatisfaction,1,troilusandcressida,1602\nshield,1,troilusandcressida,1602\nInstructed,1,troilusandcressida,1602\ntempest,1,troilusandcressida,1602\nCobloaf,1,troilusandcressida,1602\nwatched,1,troilusandcressida,1602\nGreeks',1,troilusandcressida,1602\ntowers,1,troilusandcressida,1602\nPolydamas,1,troilusandcressida,1602\n'Deliver,1,troilusandcressida,1602\nperforms,1,troilusandcressida,1602\nimminence,1,troilusandcressida,1602\nmale,1,troilusandcressida,1602\ntempers,1,troilusandcressida,1602\nmint,1,troilusandcressida,1602\nmerrily,1,troilusandcressida,1602\nhumorous,1,troilusandcressida,1602\nconfidence,1,troilusandcressida,1602\ndeedless,1,troilusandcressida,1602\nexpressure,1,troilusandcressida,1602\nprocess,1,troilusandcressida,1602\ndidst,1,troilusandcressida,1602\nchain,1,troilusandcressida,1602\nshame's,1,troilusandcressida,1602\nbloods,1,troilusandcressida,1602\nAchievements,1,troilusandcressida,1602\ncelerity,1,troilusandcressida,1602\nhenned,1,troilusandcressida,1602\nPraise,1,troilusandcressida,1602\nparties,1,troilusandcressida,1602\nSheathes,1,troilusandcressida,1602\norgans,1,troilusandcressida,1602\ntenth,1,troilusandcressida,1602\nShouts,1,troilusandcressida,1602\ntransportance,1,troilusandcressida,1602\ncomer,1,troilusandcressida,1602\nranks,1,troilusandcressida,1602\nSore,1,troilusandcressida,1602\npersuaded,1,troilusandcressida,1602\nfoil'd,1,troilusandcressida,1602\nSol,1,troilusandcressida,1602\nconsign'd,1,troilusandcressida,1602\nbequeathe,1,troilusandcressida,1602\nI'ld,1,troilusandcressida,1602\nknits,1,troilusandcressida,1602\nCorrects,1,troilusandcressida,1602\nCount,1,troilusandcressida,1602\n'Two,1,troilusandcressida,1602\nthrash,1,troilusandcressida,1602\nattribute,1,troilusandcressida,1602\nBrethren,1,troilusandcressida,1602\nlet's,1,troilusandcressida,1602\nbecause,1,troilusandcressida,1602\ndiscoursive,1,troilusandcressida,1602\njudgments,1,troilusandcressida,1602\nimportless,1,troilusandcressida,1602\nstarved,1,troilusandcressida,1602\n'Go,1,troilusandcressida,1602\nchafe,1,troilusandcressida,1602\nmirable,1,troilusandcressida,1602\ncraves,1,troilusandcressida,1602\nlubber,1,troilusandcressida,1602\ndutiful,1,troilusandcressida,1602\nenlarge,1,troilusandcressida,1602\naddress,1,troilusandcressida,1602\ninfect,1,troilusandcressida,1602\nCommotion,1,troilusandcressida,1602\nspecialty,1,troilusandcressida,1602\nmiss,1,troilusandcressida,1602\nregister'd,1,troilusandcressida,1602\ntotal,1,troilusandcressida,1602\narch,1,troilusandcressida,1602\nbenefit,1,troilusandcressida,1602\ndeeps,1,troilusandcressida,1602\nbrethren,1,troilusandcressida,1602\nSpent,1,troilusandcressida,1602\nunfamed,1,troilusandcressida,1602\noven,1,troilusandcressida,1602\ndischarge,1,troilusandcressida,1602\nnaught,1,troilusandcressida,1602\nForces,1,troilusandcressida,1602\nlaughs,1,troilusandcressida,1602\nbodements,1,troilusandcressida,1602\nwantonness,1,troilusandcressida,1602\nshoeing,1,troilusandcressida,1602\nabandon'd,1,troilusandcressida,1602\nconsisting,1,troilusandcressida,1602\nstepdame,1,troilusandcressida,1602\nadamant,1,troilusandcressida,1602\nmockery,1,troilusandcressida,1602\noil,1,troilusandcressida,1602\nsluttish,1,troilusandcressida,1602\nstake,1,troilusandcressida,1602\ndivision,1,troilusandcressida,1602\ntarries,1,troilusandcressida,1602\nfills,1,troilusandcressida,1602\nexpectance,1,troilusandcressida,1602\nfixure,1,troilusandcressida,1602\nploughman,1,troilusandcressida,1602\nBounding,1,troilusandcressida,1602\no'clock,1,troilusandcressida,1602\nweb,1,troilusandcressida,1602\ndesired,1,troilusandcressida,1602\nhermit,1,troilusandcressida,1602\nnegotiations,1,troilusandcressida,1602\nstain,1,troilusandcressida,1602\nscimitar,1,troilusandcressida,1602\nforego,1,troilusandcressida,1602\ntassel,1,troilusandcressida,1602\nhorribly,1,troilusandcressida,1602\nrailing,1,troilusandcressida,1602\nproves,1,troilusandcressida,1602\nSperr,1,troilusandcressida,1602\nprover,1,troilusandcressida,1602\nPuffing,1,troilusandcressida,1602\noaks,1,troilusandcressida,1602\nrobber's,1,troilusandcressida,1602\nknavery,1,troilusandcressida,1602\nbobbed,1,troilusandcressida,1602\nalmighty,1,troilusandcressida,1602\nstained,1,troilusandcressida,1602\nimpudent,1,troilusandcressida,1602\nlaunch'd,1,troilusandcressida,1602\npassage,1,troilusandcressida,1602\nproved,1,troilusandcressida,1602\nrenown,1,troilusandcressida,1602\ndignifies,1,troilusandcressida,1602\nwi',1,troilusandcressida,1602\nsting,1,troilusandcressida,1602\nThetis,1,troilusandcressida,1602\nprescience,1,troilusandcressida,1602\ncough,1,troilusandcressida,1602\nindrench'd,1,troilusandcressida,1602\ncontemplation,1,troilusandcressida,1602\nstalk,1,troilusandcressida,1602\n'No,1,troilusandcressida,1602\nrogues,1,troilusandcressida,1602\npound,1,troilusandcressida,1602\ntabourines,1,troilusandcressida,1602\nreflection,1,troilusandcressida,1602\nroars,1,troilusandcressida,1602\nbragless,1,troilusandcressida,1602\ndishonour,1,troilusandcressida,1602\nknock'd,1,troilusandcressida,1602\nworshippers,1,troilusandcressida,1602\nentreaties,1,troilusandcressida,1602\nblockish,1,troilusandcressida,1602\ndiscipline,1,troilusandcressida,1602\nfragment,1,troilusandcressida,1602\nwrapt,1,troilusandcressida,1602\nfraction,1,troilusandcressida,1602\nfive,1,troilusandcressida,1602\nWitness,1,troilusandcressida,1602\ncapable,1,troilusandcressida,1602\nappertainments,1,troilusandcressida,1602\nuncomprehensive,1,troilusandcressida,1602\nblushed,1,troilusandcressida,1602\nassumption,1,troilusandcressida,1602\n'Lo,1,troilusandcressida,1602\nslanderer,1,troilusandcressida,1602\nsorrow,1,troilusandcressida,1602\n'Twill,1,troilusandcressida,1602\ntraders,1,troilusandcressida,1602\nconfines,1,troilusandcressida,1602\ncurb,1,troilusandcressida,1602\nroughly,1,troilusandcressida,1602\nbawdy,1,troilusandcressida,1602\noperation,1,troilusandcressida,1602\nswath,1,troilusandcressida,1602\ncurs,1,troilusandcressida,1602\nconfined,1,troilusandcressida,1602\nbawds,1,troilusandcressida,1602\nimport,1,troilusandcressida,1602\nknife,1,troilusandcressida,1602\nhears,1,troilusandcressida,1602\nring,1,troilusandcressida,1602\nbuckle,1,troilusandcressida,1602\nflexible,1,troilusandcressida,1602\nnovelty,1,troilusandcressida,1602\ndevour'd,1,troilusandcressida,1602\nbounded,1,troilusandcressida,1602\nthwart,1,troilusandcressida,1602\ntractable,1,troilusandcressida,1602\nbeastly,1,troilusandcressida,1602\nhumanity,1,troilusandcressida,1602\nmoment,1,troilusandcressida,1602\nbloodless,1,troilusandcressida,1602\nwaking,1,troilusandcressida,1602\ncloset,1,troilusandcressida,1602\nselfsame,1,troilusandcressida,1602\ndinner's,1,troilusandcressida,1602\no'erspreads,1,troilusandcressida,1602\ndizzy,1,troilusandcressida,1602\nbestow'd,1,troilusandcressida,1602\ndecays,1,troilusandcressida,1602\nconspire,1,troilusandcressida,1602\nfrailty,1,troilusandcressida,1602\nbuck,1,troilusandcressida,1602\nhandless,1,troilusandcressida,1602\nheaps,1,troilusandcressida,1602\nhearers,1,troilusandcressida,1602\nPeaceful,1,troilusandcressida,1602\nflight,1,troilusandcressida,1602\nDesire,1,troilusandcressida,1602\nmusicians,1,troilusandcressida,1602\nmerit's,1,troilusandcressida,1602\nripe,1,troilusandcressida,1602\nfalcon,1,troilusandcressida,1602\nnegligence,1,troilusandcressida,1602\ngrandsires,1,troilusandcressida,1602\nyou're,1,troilusandcressida,1602\ncount,1,troilusandcressida,1602\nnursery,1,troilusandcressida,1602\nBlunt,1,troilusandcressida,1602\nflint,1,troilusandcressida,1602\nvenom'd,1,troilusandcressida,1602\ncertainly,1,troilusandcressida,1602\npatiently,1,troilusandcressida,1602\nrenown'd,1,troilusandcressida,1602\nisles,1,troilusandcressida,1602\ncrown'd,1,troilusandcressida,1602\nrevolve,1,troilusandcressida,1602\nfonder,1,troilusandcressida,1602\nLibya,1,troilusandcressida,1602\ndecreed,1,troilusandcressida,1602\noperate,1,troilusandcressida,1602\nlikes,1,troilusandcressida,1602\ndust,1,troilusandcressida,1602\ncalled,1,troilusandcressida,1602\nsinewy,1,troilusandcressida,1602\nstumbling,1,troilusandcressida,1602\n'The,1,troilusandcressida,1602\nlinger,1,troilusandcressida,1602\nduty,1,troilusandcressida,1602\nable,1,troilusandcressida,1602\nDirective,1,troilusandcressida,1602\nWorthy,1,troilusandcressida,1602\ncommanded,1,troilusandcressida,1602\nperforce,1,troilusandcressida,1602\nsubtly,1,troilusandcressida,1602\nambition,1,troilusandcressida,1602\nintend,1,troilusandcressida,1602\nprovidence,1,troilusandcressida,1602\nwaftage,1,troilusandcressida,1602\nWholly,1,troilusandcressida,1602\narts,1,troilusandcressida,1602\nwoof,1,troilusandcressida,1602\nslipped,1,troilusandcressida,1602\njoy's,1,troilusandcressida,1602\nlifter,1,troilusandcressida,1602\nLists,1,troilusandcressida,1602\nassure,1,troilusandcressida,1602\nherring,1,troilusandcressida,1602\nwhirls,1,troilusandcressida,1602\nplacket,1,troilusandcressida,1602\nimposition,1,troilusandcressida,1602\nwhereout,1,troilusandcressida,1602\nuncle's,1,troilusandcressida,1602\ndying,1,troilusandcressida,1602\nbereft,1,troilusandcressida,1602\nproject's,1,troilusandcressida,1602\nends,1,troilusandcressida,1602\ncovetous,1,troilusandcressida,1602\nundermine,1,troilusandcressida,1602\nswagger,1,troilusandcressida,1602\ngaging,1,troilusandcressida,1602\nsupper,1,troilusandcressida,1602\nspectacles,1,troilusandcressida,1602\ncoming,1,troilusandcressida,1602\nscants,1,troilusandcressida,1602\nBed,1,troilusandcressida,1602\nmultitude,1,troilusandcressida,1602\nrepining,1,troilusandcressida,1602\nwheel,1,troilusandcressida,1602\n'as,1,troilusandcressida,1602\nviolenteth,1,troilusandcressida,1602\nthreats,1,troilusandcressida,1602\nProphet,1,troilusandcressida,1602\ncursed,1,troilusandcressida,1602\nwalk'd,1,troilusandcressida,1602\nbounty,1,troilusandcressida,1602\nhappy,1,troilusandcressida,1602\ndross,1,troilusandcressida,1602\nfur,1,troilusandcressida,1602\nirons,1,troilusandcressida,1602\nGives,1,troilusandcressida,1602\njustness,1,troilusandcressida,1602\ngrossness,1,troilusandcressida,1602\ndiscover'd,1,troilusandcressida,1602\ncull,1,troilusandcressida,1602\nangle,1,troilusandcressida,1602\nArming,1,troilusandcressida,1602\nbilling,1,troilusandcressida,1602\nmouldeth,1,troilusandcressida,1602\nnaughtily,1,troilusandcressida,1602\nhusbandry,1,troilusandcressida,1602\nfreshness,1,troilusandcressida,1602\nprompt,1,troilusandcressida,1602\nafield,1,troilusandcressida,1602\nbruit,1,troilusandcressida,1602\nbreadth,1,troilusandcressida,1602\nlivelong,1,troilusandcressida,1602\nmettle,1,troilusandcressida,1602\nwatery,1,troilusandcressida,1602\nserved,1,troilusandcressida,1602\nrages,1,troilusandcressida,1602\ndissolved,1,troilusandcressida,1602\nbutterflies,1,troilusandcressida,1602\nhonoured,1,troilusandcressida,1602\nHail,1,troilusandcressida,1602\nprologue,1,troilusandcressida,1602\nsize,1,troilusandcressida,1602\nSagittary,1,troilusandcressida,1602\nweeping,1,troilusandcressida,1602\ncourteously,1,troilusandcressida,1602\ndarker,1,troilusandcressida,1602\nsurgeon's,1,troilusandcressida,1602\nRude,1,troilusandcressida,1602\nhack'd,1,troilusandcressida,1602\nclapper,1,troilusandcressida,1602\nVirgins,1,troilusandcressida,1602\ncompulsion,1,troilusandcressida,1602\ncompass,1,troilusandcressida,1602\nlust,1,troilusandcressida,1602\nroisting,1,troilusandcressida,1602\nMidway,1,troilusandcressida,1602\nbastes,1,troilusandcressida,1602\nimputation,1,troilusandcressida,1602\nrain,1,troilusandcressida,1602\ndisposition,1,troilusandcressida,1602\nfunctions,1,troilusandcressida,1602\nsimiles,1,troilusandcressida,1602\nbeguiles,1,troilusandcressida,1602\nCancer,1,troilusandcressida,1602\nvirtuously,1,troilusandcressida,1602\nwaters,1,troilusandcressida,1602\nyoke,1,troilusandcressida,1602\ngodlike,1,troilusandcressida,1602\nmends,1,troilusandcressida,1602\ncommodious,1,troilusandcressida,1602\ndrops,1,troilusandcressida,1602\nrapture,1,troilusandcressida,1602\nfry,1,troilusandcressida,1602\nserves,1,troilusandcressida,1602\nplumes,1,troilusandcressida,1602\nuttermost,1,troilusandcressida,1602\nfalling,1,troilusandcressida,1602\nstirs,1,troilusandcressida,1602\nwhence,1,troilusandcressida,1602\nfollowers,1,troilusandcressida,1602\nwatching,1,troilusandcressida,1602\nWhispers,1,troilusandcressida,1602\nMale,1,troilusandcressida,1602\nglad,1,troilusandcressida,1602\nShow,1,troilusandcressida,1602\ncompare,1,troilusandcressida,1602\nuntruths,1,troilusandcressida,1602\nsails,1,troilusandcressida,1602\nclawing,1,troilusandcressida,1602\nsnail,1,troilusandcressida,1602\nposition,1,troilusandcressida,1602\nunmingled,1,troilusandcressida,1602\npheeze,1,troilusandcressida,1602\nchapmen,1,troilusandcressida,1602\npleasantly,1,troilusandcressida,1602\nadvertised,1,troilusandcressida,1602\nUntent,1,troilusandcressida,1602\nthey've,1,troilusandcressida,1602\nMenon,1,troilusandcressida,1602\n'hereafter',1,troilusandcressida,1602\n'Inestimable,1,troilusandcressida,1602\n'fore,1,troilusandcressida,1602\nmessengers,1,troilusandcressida,1602\nweapons,1,troilusandcressida,1602\nWithal,1,troilusandcressida,1602\nsportful,1,troilusandcressida,1602\npurely,1,troilusandcressida,1602\nmiracle,1,troilusandcressida,1602\nabash'd,1,troilusandcressida,1602\nBeckoning,1,troilusandcressida,1602\nExceeds,1,troilusandcressida,1602\nvictor,1,troilusandcressida,1602\nfoe,1,troilusandcressida,1602\ncloud,1,troilusandcressida,1602\npalsy,1,troilusandcressida,1602\nProceed,1,troilusandcressida,1602\nwander,1,troilusandcressida,1602\nShake,1,troilusandcressida,1602\nblow'st,1,troilusandcressida,1602\nheaving,1,troilusandcressida,1602\ntruths,1,troilusandcressida,1602\nSpur,1,troilusandcressida,1602\nrack,1,troilusandcressida,1602\nmonstruosity,1,troilusandcressida,1602\nYond,1,troilusandcressida,1602\nMYRMIDONS,1,troilusandcressida,1602\nRuns,1,troilusandcressida,1602\npleased,1,troilusandcressida,1602\npositive,1,troilusandcressida,1602\ndivulged,1,troilusandcressida,1602\nworn,1,troilusandcressida,1602\nparallels,1,troilusandcressida,1602\ndiscover,1,troilusandcressida,1602\nWhereupon,1,troilusandcressida,1602\nlodges,1,troilusandcressida,1602\nworthiness,1,troilusandcressida,1602\nwore,1,troilusandcressida,1602\napprehensions,1,troilusandcressida,1602\nHeigh,1,troilusandcressida,1602\nskilful,1,troilusandcressida,1602\nwest,1,troilusandcressida,1602\nYesterday,1,troilusandcressida,1602\nstaples,1,troilusandcressida,1602\nvantbrace,1,troilusandcressida,1602\nallow,1,troilusandcressida,1602\npropend,1,troilusandcressida,1602\npredominance,1,troilusandcressida,1602\nsilks,1,troilusandcressida,1602\nunjust,1,troilusandcressida,1602\nflame,1,troilusandcressida,1602\nfit,1,troilusandcressida,1602\ngalls,1,troilusandcressida,1602\nprophetess,1,troilusandcressida,1602\ndues,1,troilusandcressida,1602\nthey're,1,troilusandcressida,1602\nperfect,1,troilusandcressida,1602\nlists,1,troilusandcressida,1602\nwheat,1,troilusandcressida,1602\nprofit,1,troilusandcressida,1602\nswallow'd,1,troilusandcressida,1602\nAttend,1,troilusandcressida,1602\nhowsoever,1,troilusandcressida,1602\npublication,1,troilusandcressida,1602\nsafety,1,troilusandcressida,1602\nlean'd,1,troilusandcressida,1602\nribs,1,troilusandcressida,1602\nbridegroom's,1,troilusandcressida,1602\nclap,1,troilusandcressida,1602\nassume,1,troilusandcressida,1602\nwooed,1,troilusandcressida,1602\nunawares,1,troilusandcressida,1602\nbuckled,1,troilusandcressida,1602\nPrerogative,1,troilusandcressida,1602\ncogging,1,troilusandcressida,1602\nbuckles,1,troilusandcressida,1602\nmarried,1,troilusandcressida,1602\nspeculation,1,troilusandcressida,1602\nHollow,1,troilusandcressida,1602\nlordship,1,troilusandcressida,1602\nanswer'd,1,troilusandcressida,1602\nabreast,1,troilusandcressida,1602\naccosting,1,troilusandcressida,1602\nworship,1,troilusandcressida,1602\nGrecian's,1,troilusandcressida,1602\nholiness,1,troilusandcressida,1602\ndivert,1,troilusandcressida,1602\nbrushes,1,troilusandcressida,1602\nwealth,1,troilusandcressida,1602\nsmooth,1,troilusandcressida,1602\npractise,1,troilusandcressida,1602\ngrumblest,1,troilusandcressida,1602\ndepart,1,troilusandcressida,1602\ndependent,1,troilusandcressida,1602\nflexure,1,troilusandcressida,1602\nmater,1,troilusandcressida,1602\nbeware,1,troilusandcressida,1602\naffectionately,1,troilusandcressida,1602\nThank,1,troilusandcressida,1602\npartly,1,troilusandcressida,1602\nwives,1,troilusandcressida,1602\nmadly,1,troilusandcressida,1602\nwhither,1,troilusandcressida,1602\n'Good,1,troilusandcressida,1602\nPluto's,1,troilusandcressida,1602\nlizard,1,troilusandcressida,1602\ndisasters,1,troilusandcressida,1602\nmeaning,1,troilusandcressida,1602\nnerve,1,troilusandcressida,1602\nreproach,1,troilusandcressida,1602\nsequestering,1,troilusandcressida,1602\ninterchangeably',1,troilusandcressida,1602\ncomfort,1,troilusandcressida,1602\ndispraise,1,troilusandcressida,1602\nStygian,1,troilusandcressida,1602\nraptures,1,troilusandcressida,1602\ndialogue,1,troilusandcressida,1602\nqualify,1,troilusandcressida,1602\nbane,1,troilusandcressida,1602\njade's,1,troilusandcressida,1602\nrecordation,1,troilusandcressida,1602\nplainness,1,troilusandcressida,1602\nflames,1,troilusandcressida,1602\ncatlings,1,troilusandcressida,1602\nbalm,1,troilusandcressida,1602\nmotive,1,troilusandcressida,1602\ndisorder,1,troilusandcressida,1602\nsecrets,1,troilusandcressida,1602\nwill'd,1,troilusandcressida,1602\nEach,1,troilusandcressida,1602\nblaze,1,troilusandcressida,1602\nvolumes,1,troilusandcressida,1602\nsurly,1,troilusandcressida,1602\ndrinks,1,troilusandcressida,1602\nfarm,1,troilusandcressida,1602\nauthor,1,troilusandcressida,1602\nmappery,1,troilusandcressida,1602\ninveigled,1,troilusandcressida,1602\ngriping,1,troilusandcressida,1602\npurblind,1,troilusandcressida,1602\nwider,1,troilusandcressida,1602\nwrested,1,troilusandcressida,1602\nfresher,1,troilusandcressida,1602\nAppear,1,troilusandcressida,1602\nexcursions,1,troilusandcressida,1602\ncompassed,1,troilusandcressida,1602\nperish,1,troilusandcressida,1602\njests,1,troilusandcressida,1602\ndeceptious,1,troilusandcressida,1602\nwatchful,1,troilusandcressida,1602\nAntenorides,1,troilusandcressida,1602\nne'ertheless,1,troilusandcressida,1602\nthwarted,1,troilusandcressida,1602\nactor's,1,troilusandcressida,1602\nreproof,1,troilusandcressida,1602\nsixty,1,troilusandcressida,1602\nalms,1,troilusandcressida,1602\nBounds,1,troilusandcressida,1602\nEvery,1,troilusandcressida,1602\nbeshrew,1,troilusandcressida,1602\nshook,1,troilusandcressida,1602\nModest,1,troilusandcressida,1602\nshore,1,troilusandcressida,1602\nswears,1,troilusandcressida,1602\naspects,1,troilusandcressida,1602\nGive't,1,troilusandcressida,1602\nachievements,1,troilusandcressida,1602\nguiding,1,troilusandcressida,1602\nvisiting,1,troilusandcressida,1602\nmelody,1,troilusandcressida,1602\nprimitive,1,troilusandcressida,1602\nprofesses,1,troilusandcressida,1602\nimposthume,1,troilusandcressida,1602\ntopless,1,troilusandcressida,1602\nCunning,1,troilusandcressida,1602\ngainsay,1,troilusandcressida,1602\nproclaimed,1,troilusandcressida,1602\ndevout,1,troilusandcressida,1602\nconcluded,1,troilusandcressida,1602\nlackey,1,troilusandcressida,1602\ngiddy,1,troilusandcressida,1602\ndragon,1,troilusandcressida,1602\naforesaid,1,troilusandcressida,1602\nredeeming,1,troilusandcressida,1602\norgulous,1,troilusandcressida,1602\nfeasts,1,troilusandcressida,1602\ncounterfeit,1,troilusandcressida,1602\nfires,1,troilusandcressida,1602\nqueller,1,troilusandcressida,1602\ndimpled,1,troilusandcressida,1602\nunto,1,troilusandcressida,1602\nAfric,1,troilusandcressida,1602\nschools,1,troilusandcressida,1602\ndifficulties,1,troilusandcressida,1602\nsunder,1,troilusandcressida,1602\nmonumental,1,troilusandcressida,1602\nasking,1,troilusandcressida,1602\nOmission,1,troilusandcressida,1602\nlabyrinth,1,troilusandcressida,1602\ntetchy,1,troilusandcressida,1602\nHectors,1,troilusandcressida,1602\nwinter,1,troilusandcressida,1602\nseeded,1,troilusandcressida,1602\nforsooth,1,troilusandcressida,1602\nmastic,1,troilusandcressida,1602\n'Who,1,troilusandcressida,1602\nsodden,1,troilusandcressida,1602\nresolution,1,troilusandcressida,1602\nWherefore,1,troilusandcressida,1602\nslanders,1,troilusandcressida,1602\nAwake,1,troilusandcressida,1602\ncounsels,1,troilusandcressida,1602\nseam,1,troilusandcressida,1602\nbits,1,troilusandcressida,1602\nWinchester,1,troilusandcressida,1602\nstints,1,troilusandcressida,1602\nbuilding,1,troilusandcressida,1602\ngiver,1,troilusandcressida,1602\npuling,1,troilusandcressida,1602\nPlutus',1,troilusandcressida,1602\nabilities,1,troilusandcressida,1602\nBrave,1,troilusandcressida,1602\nprayers,1,troilusandcressida,1602\nReply,1,troilusandcressida,1602\nsubscribes,1,troilusandcressida,1602\nEnvy,1,troilusandcressida,1602\nshout,1,troilusandcressida,1602\nbawd,1,troilusandcressida,1602\nsatisfied,1,troilusandcressida,1602\n'Bring,1,troilusandcressida,1602\nprenominate,1,troilusandcressida,1602\ncope,1,troilusandcressida,1602\nmanage,1,troilusandcressida,1602\nhung,1,troilusandcressida,1602\nhave't,1,troilusandcressida,1602\nseat,1,troilusandcressida,1602\ncombatants,1,troilusandcressida,1602\ncommission,1,troilusandcressida,1602\nelements,1,troilusandcressida,1602\nofferings,1,troilusandcressida,1602\ncool,1,troilusandcressida,1602\nmouldy,1,troilusandcressida,1602\nwaiting,1,troilusandcressida,1602\nsoil'd,1,troilusandcressida,1602\nJuno,1,troilusandcressida,1602\nPour'st,1,troilusandcressida,1602\nneglected,1,troilusandcressida,1602\ninward,1,troilusandcressida,1602\nsweat,1,troilusandcressida,1602\nassubjugate,1,troilusandcressida,1602\nugly,1,troilusandcressida,1602\nacts,1,troilusandcressida,1602\ndrunk,1,troilusandcressida,1602\nletting,1,troilusandcressida,1602\nvindicative,1,troilusandcressida,1602\nfractions,1,troilusandcressida,1602\nStrain'd,1,troilusandcressida,1602\nneedful,1,troilusandcressida,1602\npublish,1,troilusandcressida,1602\npalsies,1,troilusandcressida,1602\nreckoning,1,troilusandcressida,1602\nsubduements,1,troilusandcressida,1602\ndusted,1,troilusandcressida,1602\ncrept,1,troilusandcressida,1602\noffspring,1,troilusandcressida,1602\ndeputation,1,troilusandcressida,1602\nmoderation,1,troilusandcressida,1602\ngoodness,1,troilusandcressida,1602\ninsolence,1,troilusandcressida,1602\nseed,1,troilusandcressida,1602\npettish,1,troilusandcressida,1602\norifex,1,troilusandcressida,1602\ndrums,1,troilusandcressida,1602\nknowest,1,troilusandcressida,1602\nfights,1,troilusandcressida,1602\nsouth,1,troilusandcressida,1602\nTruly,1,troilusandcressida,1602\nscreech,1,troilusandcressida,1602\ncon,1,troilusandcressida,1602\nsupposed,1,troilusandcressida,1602\nmarvellous,1,troilusandcressida,1602\nended,1,troilusandcressida,1602\nlook'd,1,troilusandcressida,1602\nNe'er,1,troilusandcressida,1602\nPropugnation,1,troilusandcressida,1602\nmiscarrying,1,troilusandcressida,1602\nothers',1,troilusandcressida,1602\nmodicums,1,troilusandcressida,1602\nrivall'd,1,troilusandcressida,1602\nconclude,1,troilusandcressida,1602\npricks,1,troilusandcressida,1602\nvalued,1,troilusandcressida,1602\ncondition,1,troilusandcressida,1602\nMine,1,troilusandcressida,1602\nprophecy,1,troilusandcressida,1602\nPatience,1,troilusandcressida,1602\ncramm'd,1,troilusandcressida,1602\nhound,1,troilusandcressida,1602\ncorses,1,troilusandcressida,1602\nhurricano,1,troilusandcressida,1602\nestimation,1,troilusandcressida,1602\nlunes,1,troilusandcressida,1602\nSpeaking,1,troilusandcressida,1602\ntroop,1,troilusandcressida,1602\nneedless,1,troilusandcressida,1602\nOlympian,1,troilusandcressida,1602\nMilo,1,troilusandcressida,1602\nsecrecy,1,troilusandcressida,1602\nsacred,1,troilusandcressida,1602\nrascally,1,troilusandcressida,1602\nusage,1,troilusandcressida,1602\npotato,1,troilusandcressida,1602\nwhate'er,1,troilusandcressida,1602\nheavenly,1,troilusandcressida,1602\nputtock,1,troilusandcressida,1602\n'be't,1,troilusandcressida,1602\nloathsomest,1,troilusandcressida,1602\nHaste,1,troilusandcressida,1602\nportents,1,troilusandcressida,1602\nHe'll,1,troilusandcressida,1602\nmodest,1,troilusandcressida,1602\nhostages,1,troilusandcressida,1602\navoid,1,troilusandcressida,1602\ntree,1,troilusandcressida,1602\nlethargies,1,troilusandcressida,1602\nThrough,1,troilusandcressida,1602\ntherein,1,troilusandcressida,1602\nregal,1,troilusandcressida,1602\ngenerals,1,troilusandcressida,1602\nhours,1,troilusandcressida,1602\nbugbear,1,troilusandcressida,1602\nribb'd,1,troilusandcressida,1602\nAthenian,1,troilusandcressida,1602\ncurtain,1,troilusandcressida,1602\nbait,1,troilusandcressida,1602\nreplies,1,troilusandcressida,1602\nkindred,1,troilusandcressida,1602\ndislike,1,troilusandcressida,1602\ntrampled,1,troilusandcressida,1602\nextremes,1,troilusandcressida,1602\nSend,1,troilusandcressida,1602\n'There,1,troilusandcressida,1602\nbeheld,1,troilusandcressida,1602\nblushing,1,troilusandcressida,1602\nsecure,1,troilusandcressida,1602\nseld,1,troilusandcressida,1602\nbelieved,1,troilusandcressida,1602\nraves,1,troilusandcressida,1602\ncapacity,1,troilusandcressida,1602\nforetold,1,troilusandcressida,1602\nhemm'd,1,troilusandcressida,1602\ndistracted,1,troilusandcressida,1602\nwhilst,1,troilusandcressida,1602\npavilion,1,troilusandcressida,1602\nlevity,1,troilusandcressida,1602\noppose,1,troilusandcressida,1602\ngloss,1,troilusandcressida,1602\ntick,1,troilusandcressida,1602\nroaring,1,troilusandcressida,1602\nentomb,1,troilusandcressida,1602\nmother's,1,troilusandcressida,1602\nundo,1,troilusandcressida,1602\nMyrmidon,1,troilusandcressida,1602\nswell,1,troilusandcressida,1602\ndogg'd,1,troilusandcressida,1602\ndeceive,1,troilusandcressida,1602\ncarriage,1,troilusandcressida,1602\nPower,1,troilusandcressida,1602\nherald,1,troilusandcressida,1602\nexpostulation,1,troilusandcressida,1602\nIthaca,1,troilusandcressida,1602\nchose,1,troilusandcressida,1602\ndisobedient,1,troilusandcressida,1602\nstatue,1,troilusandcressida,1602\nbarren,1,troilusandcressida,1602\nfearing,1,troilusandcressida,1602\nhiding,1,troilusandcressida,1602\nsickness,1,troilusandcressida,1602\nFears,1,troilusandcressida,1602\nhighest,1,troilusandcressida,1602\nMarch,1,troilusandcressida,1602\nrenders,1,troilusandcressida,1602\naffair,1,troilusandcressida,1602\nsafer,1,troilusandcressida,1602\nMistress,1,troilusandcressida,1602\nslumbers,1,troilusandcressida,1602\nattaint,1,troilusandcressida,1602\nceremonious,1,troilusandcressida,1602\nchoking,1,troilusandcressida,1602\nbestow,1,troilusandcressida,1602\nAchievement,1,troilusandcressida,1602\npatchery,1,troilusandcressida,1602\nderacinate,1,troilusandcressida,1602\nSeals,1,troilusandcressida,1602\nwaterdrops,1,troilusandcressida,1602\nlid,1,troilusandcressida,1602\ninstead,1,troilusandcressida,1602\ncommunities,1,troilusandcressida,1602\nuntie,1,troilusandcressida,1602\n'come',1,troilusandcressida,1602\nlaws,1,troilusandcressida,1602\nspider,1,troilusandcressida,1602\nstorms,1,troilusandcressida,1602\nbotchy,1,troilusandcressida,1602\nentertaining,1,troilusandcressida,1602\npersuade,1,troilusandcressida,1602\nlays,1,troilusandcressida,1602\nlolling,1,troilusandcressida,1602\nDivert,1,troilusandcressida,1602\nhonesty,1,troilusandcressida,1602\nunveil,1,troilusandcressida,1602\nimmaterial,1,troilusandcressida,1602\nstewed,1,troilusandcressida,1602\nclouds,1,troilusandcressida,1602\nconfound,1,troilusandcressida,1602\nStrength,1,troilusandcressida,1602\nstarts,1,troilusandcressida,1602\nencounters,1,troilusandcressida,1602\ntaint,1,troilusandcressida,1602\nGave,1,troilusandcressida,1602\n'pluck't,1,troilusandcressida,1602\nHowever,1,troilusandcressida,1602\nspite,1,troilusandcressida,1602\nabroad,1,troilusandcressida,1602\nsplitting,1,troilusandcressida,1602\nthrifty,1,troilusandcressida,1602\nafeard,1,troilusandcressida,1602\n'scape,1,troilusandcressida,1602\nrevolted,1,troilusandcressida,1602\nhostess,1,troilusandcressida,1602\nQuoth,1,troilusandcressida,1602\nExampled,1,troilusandcressida,1602\nrheum,1,troilusandcressida,1602\nunclasp,1,troilusandcressida,1602\ncritics,1,troilusandcressida,1602\nsmiling,1,troilusandcressida,1602\nforced,1,troilusandcressida,1602\nminced,1,troilusandcressida,1602\nimpossibility,1,troilusandcressida,1602\nstarve,1,troilusandcressida,1602\npatient's,1,troilusandcressida,1602\nform'd,1,troilusandcressida,1602\nforked,1,troilusandcressida,1602\nsadness,1,troilusandcressida,1602\ncorrection,1,troilusandcressida,1602\ndealing,1,troilusandcressida,1602\ndiminutives,1,troilusandcressida,1602\nSometime,1,troilusandcressida,1602\nunbodied,1,troilusandcressida,1602\nisland,1,troilusandcressida,1602\nmet,1,troilusandcressida,1602\nchidden,1,troilusandcressida,1602\nknocked,1,troilusandcressida,1602\nswim,1,troilusandcressida,1602\nfierceness,1,troilusandcressida,1602\nvents,1,troilusandcressida,1602\narmours,1,troilusandcressida,1602\ndisciplined,1,troilusandcressida,1602\nobeying,1,troilusandcressida,1602\ntravell'd,1,troilusandcressida,1602\nparallel,1,troilusandcressida,1602\ndevours,1,troilusandcressida,1602\nwinnows,1,troilusandcressida,1602\nunrespective,1,troilusandcressida,1602\nmaker,1,troilusandcressida,1602\ncygnet's,1,troilusandcressida,1602\nSets,1,troilusandcressida,1602\nforetell,1,troilusandcressida,1602\nWrites,1,troilusandcressida,1602\narbitrator,1,troilusandcressida,1602\nruinous,1,troilusandcressida,1602\nunderwrite,1,troilusandcressida,1602\nlaurels,1,troilusandcressida,1602\nswerve,1,troilusandcressida,1602\ndischarging,1,troilusandcressida,1602\nbeholders,1,troilusandcressida,1602\nwhites,1,troilusandcressida,1602\nwhit,1,troilusandcressida,1602\nhares,1,troilusandcressida,1602\npleasant,1,troilusandcressida,1602\nlimit,1,troilusandcressida,1602\ndebtor,1,troilusandcressida,1602\nMen,1,troilusandcressida,1602\nrecreant,1,troilusandcressida,1602\nantiquary,1,troilusandcressida,1602\ntoast,1,troilusandcressida,1602\npowerful,1,troilusandcressida,1602\nflew,1,troilusandcressida,1602\nblended,1,troilusandcressida,1602\nlay'st,1,troilusandcressida,1602\nsolus,1,troilusandcressida,1602\nbreeze,1,troilusandcressida,1602\ncrafty,1,troilusandcressida,1602\neleven,1,troilusandcressida,1602\nsauced,1,troilusandcressida,1602\nquarrels,1,troilusandcressida,1602\nransack'd,1,troilusandcressida,1602\nbellied,1,troilusandcressida,1602\nwarriors,1,troilusandcressida,1602\nharmony,1,troilusandcressida,1602\nliege,1,troilusandcressida,1602\non's,1,troilusandcressida,1602\nRetorts,1,troilusandcressida,1602\namain,1,troilusandcressida,1602\nphysic,1,troilusandcressida,1602\nsubsequent,1,troilusandcressida,1602\nlustihood,1,troilusandcressida,1602\nIndeed,1,troilusandcressida,1602\nvalorous,1,troilusandcressida,1602\nlark,1,troilusandcressida,1602\nE'en,1,troilusandcressida,1602\ntelling,1,troilusandcressida,1602\nwomanhood,1,troilusandcressida,1602\nsometimes,1,troilusandcressida,1602\n'Because,1,troilusandcressida,1602\njesting,1,troilusandcressida,1602\ntetter,1,troilusandcressida,1602\npolitic,1,troilusandcressida,1602\nphrase,1,troilusandcressida,1602\naffined,1,troilusandcressida,1602\npavement,1,troilusandcressida,1602\nplucks,1,troilusandcressida,1602\nflat,1,troilusandcressida,1602\nMad,1,troilusandcressida,1602\nflap,1,troilusandcressida,1602\nearwax,1,troilusandcressida,1602\npreposterous,1,troilusandcressida,1602\nliquid,1,troilusandcressida,1602\nMaintain,1,troilusandcressida,1602\nFamed,1,troilusandcressida,1602\nSings,1,troilusandcressida,1602\neastern,1,troilusandcressida,1602\nSunday,1,troilusandcressida,1602\ntickle,1,troilusandcressida,1602\nfitness,1,troilusandcressida,1602\nIncurr'd,1,troilusandcressida,1602\ntruant,1,troilusandcressida,1602\nVII,1,troilusandcressida,1602\noppugnancy,1,troilusandcressida,1602\nlaud,1,troilusandcressida,1602\nbetimes,1,troilusandcressida,1602\nprofoundly,1,troilusandcressida,1602\nrecompense,1,troilusandcressida,1602\nbesides,1,troilusandcressida,1602\nlazar,1,troilusandcressida,1602\nOlympus,1,troilusandcressida,1602\nknave's,1,troilusandcressida,1602\nShoots,1,troilusandcressida,1602\nopportunity,1,troilusandcressida,1602\nApril,1,troilusandcressida,1602\nsuited,1,troilusandcressida,1602\nbreaking,1,troilusandcressida,1602\nfrayed,1,troilusandcressida,1602\ncounters,1,troilusandcressida,1602\npelting,1,troilusandcressida,1602\nTh',1,troilusandcressida,1602\ncontend,1,troilusandcressida,1602\nsway'd,1,troilusandcressida,1602\noutstretch'd,1,troilusandcressida,1602\ntediously,1,troilusandcressida,1602\nforestall,1,troilusandcressida,1602\nsimply,1,troilusandcressida,1602\nshade,1,troilusandcressida,1602\ntry,1,troilusandcressida,1602\nshrewd,1,troilusandcressida,1602\nDeath,1,troilusandcressida,1602\nsentinels,1,troilusandcressida,1602\ndespiteful,1,troilusandcressida,1602\nsimple,1,troilusandcressida,1602\nassumes,1,troilusandcressida,1602\npight,1,troilusandcressida,1602\nlimekilns,1,troilusandcressida,1602\nwitty,1,troilusandcressida,1602\nHyperion,1,troilusandcressida,1602\ndate,1,troilusandcressida,1602\npestered,1,troilusandcressida,1602\nspring,1,troilusandcressida,1602\nentrance,1,troilusandcressida,1602\ntardy,1,troilusandcressida,1602\nearned,1,troilusandcressida,1602\nTroien,1,troilusandcressida,1602\nrises,1,troilusandcressida,1602\nuntimber'd,1,troilusandcressida,1602\nyesternight,1,troilusandcressida,1602\nYou'll,1,troilusandcressida,1602\nimposed,1,troilusandcressida,1602\ninfants',1,troilusandcressida,1602\nshaft,1,troilusandcressida,1602\nevasions,1,troilusandcressida,1602\ncareless,1,troilusandcressida,1602\nexpense,1,troilusandcressida,1602\nbrag,1,troilusandcressida,1602\ncredence,1,troilusandcressida,1602\nstithied,1,troilusandcressida,1602\nprimogenitive,1,troilusandcressida,1602\ndoe,1,troilusandcressida,1602\ndistemper'd,1,troilusandcressida,1602\nplantage,1,troilusandcressida,1602\nconfirm,1,troilusandcressida,1602\nwrathful,1,troilusandcressida,1602\nportable,1,troilusandcressida,1602\nprovide,1,troilusandcressida,1602\naffronted,1,troilusandcressida,1602\nTenedos,1,troilusandcressida,1602\nsprite,1,troilusandcressida,1602\nmangled,1,troilusandcressida,1602\nToadstool,1,troilusandcressida,1602\nharsh,1,troilusandcressida,1602\nExcitements,1,troilusandcressida,1602\nnoseless,1,troilusandcressida,1602\ndark,1,troilusandcressida,1602\nLess,1,troilusandcressida,1602\nwhetstone,1,troilusandcressida,1602\ndun,1,troilusandcressida,1602\nreader,1,troilusandcressida,1602\nsounding,1,troilusandcressida,1602\nRouse,1,troilusandcressida,1602\npertly,1,troilusandcressida,1602\ntoe,1,troilusandcressida,1602\nTogether,1,troilusandcressida,1602\nsudden,1,troilusandcressida,1602\nweighs,1,troilusandcressida,1602\nwithhold,1,troilusandcressida,1602\nturtle,1,troilusandcressida,1602\ncunningly,1,troilusandcressida,1602\ndestroy,1,troilusandcressida,1602\nsupp'd,1,troilusandcressida,1602\nrocks,1,troilusandcressida,1602\nglobe,1,troilusandcressida,1602\nfellowship,1,troilusandcressida,1602\nswallowed,1,troilusandcressida,1602\nscarcity,1,troilusandcressida,1602\nattachment,1,troilusandcressida,1602\nlamb,1,troilusandcressida,1602\nsnatch,1,troilusandcressida,1602\nastronomers,1,troilusandcressida,1602\nmature,1,troilusandcressida,1602\nDRAMATIS,1,troilusandcressida,1602\ncoupled,1,troilusandcressida,1602\nRelates,1,troilusandcressida,1602\nflout,1,troilusandcressida,1602\nsinister,1,troilusandcressida,1602\nhyperboles,1,troilusandcressida,1602\ntie,1,troilusandcressida,1602\nexcite,1,troilusandcressida,1602\nphysician,1,troilusandcressida,1602\nabruption,1,troilusandcressida,1602\ntip,1,troilusandcressida,1602\nfilthy,1,troilusandcressida,1602\nbrew,1,troilusandcressida,1602\nencountering,1,troilusandcressida,1602\npropose,1,troilusandcressida,1602\nundergo,1,troilusandcressida,1602\n'Jupiter,1,troilusandcressida,1602\nruptures,1,troilusandcressida,1602\ntripping,1,troilusandcressida,1602\npass'd,1,troilusandcressida,1602\nawkward,1,troilusandcressida,1602\nbargain,1,troilusandcressida,1602\nflows,1,troilusandcressida,1602\nrecord,1,troilusandcressida,1602\nbrevity,1,troilusandcressida,1602\ntired,1,troilusandcressida,1602\nreserve,1,troilusandcressida,1602\ndivided,1,troilusandcressida,1602\nwills,1,troilusandcressida,1602\ndew,1,troilusandcressida,1602\n'That,1,troilusandcressida,1602\ndrown'd,1,troilusandcressida,1602\nscaled,1,troilusandcressida,1602\nFinch,1,troilusandcressida,1602\nacquired,1,troilusandcressida,1602\nStaying,1,troilusandcressida,1602\npress'd,1,troilusandcressida,1602\nboundless,1,troilusandcressida,1602\njealousy,1,troilusandcressida,1602\nspeaker,1,troilusandcressida,1602\ngloves,1,troilusandcressida,1602\nlecher,1,troilusandcressida,1602\ntake't,1,troilusandcressida,1602\nFinds,1,troilusandcressida,1602\nmutual,1,troilusandcressida,1602\nimmures,1,troilusandcressida,1602\nUnlike,1,troilusandcressida,1602\ntoads,1,troilusandcressida,1602\nmid,1,troilusandcressida,1602\ngods',1,troilusandcressida,1602\namen,1,troilusandcressida,1602\ningratitudes,1,troilusandcressida,1602\nremorse,1,troilusandcressida,1602\nfillip,1,troilusandcressida,1602\nDistinction,1,troilusandcressida,1602\nEngaging,1,troilusandcressida,1602\nAnticipating,1,troilusandcressida,1602\ndoting,1,troilusandcressida,1602\ncooling,1,troilusandcressida,1602\nrepair,1,troilusandcressida,1602\nsneaking,1,troilusandcressida,1602\nspaces,1,troilusandcressida,1602\nsciaticas,1,troilusandcressida,1602\nobedience,1,troilusandcressida,1602\noaths,1,troilusandcressida,1602\nlack,1,troilusandcressida,1602\nFame,1,troilusandcressida,1602\nintends,1,troilusandcressida,1602\ncontaminated,1,troilusandcressida,1602\ngave't,1,troilusandcressida,1602\n'plain,1,troilusandcressida,1602\nspoils,1,troilusandcressida,1602\ncoped,1,troilusandcressida,1602\nThrice,1,troilusandcressida,1602\nLechery,1,troilusandcressida,1602\nfarewells,1,troilusandcressida,1602\nperhaps,1,troilusandcressida,1602\nscantling,1,troilusandcressida,1602\nsuffocate,1,troilusandcressida,1602\nenfreed,1,troilusandcressida,1602\nprivately,1,troilusandcressida,1602\nDog,1,troilusandcressida,1602\ndirection,1,troilusandcressida,1602\nselves,1,troilusandcressida,1602\nundertake,1,troilusandcressida,1602\nprompted,1,troilusandcressida,1602\nsandy,1,troilusandcressida,1602\nengendering,1,troilusandcressida,1602\nSodden,1,troilusandcressida,1602\nCreated,1,troilusandcressida,1602\nesteemed,1,troilusandcressida,1602\nelbows,1,troilusandcressida,1602\nobserving,1,troilusandcressida,1602\nwiles,1,troilusandcressida,1602\nDesired,1,troilusandcressida,1602\nconjecture,1,troilusandcressida,1602\nAristotle,1,troilusandcressida,1602\nFierce,1,troilusandcressida,1602\nmonsters,1,troilusandcressida,1602\ndegrees,1,troilusandcressida,1602\nmarvels,1,troilusandcressida,1602\nfortunes,1,troilusandcressida,1602\nbeaver,1,troilusandcressida,1602\nremembered,1,troilusandcressida,1602\nsummer,1,troilusandcressida,1602\nsanctimony,1,troilusandcressida,1602\nGrows,1,troilusandcressida,1602\nplagues,2,troilusandcressida,1602\nundertakings,2,troilusandcressida,1602\nheed,2,troilusandcressida,1602\ngeneration,2,troilusandcressida,1602\nheel,2,troilusandcressida,1602\nquality,2,troilusandcressida,1602\ndaws,2,troilusandcressida,1602\ninstruments,2,troilusandcressida,1602\nhorns,2,troilusandcressida,1602\nscraps,2,troilusandcressida,1602\nparted,2,troilusandcressida,1602\npity,2,troilusandcressida,1602\ntaking,2,troilusandcressida,1602\nred,2,troilusandcressida,1602\nextremity,2,troilusandcressida,1602\nfancy,2,troilusandcressida,1602\nsized,2,troilusandcressida,1602\nreputation,2,troilusandcressida,1602\nleisure,2,troilusandcressida,1602\ncountry,2,troilusandcressida,1602\ndream'd,2,troilusandcressida,1602\nweary,2,troilusandcressida,1602\nbrass,2,troilusandcressida,1602\nwears,2,troilusandcressida,1602\nprophet,2,troilusandcressida,1602\nfollowing,2,troilusandcressida,1602\npossible,2,troilusandcressida,1602\nfactions,2,troilusandcressida,1602\ntravail,2,troilusandcressida,1602\nwicked,2,troilusandcressida,1602\nhonours,2,troilusandcressida,1602\nroyal,2,troilusandcressida,1602\nzeal,2,troilusandcressida,1602\nrascal,2,troilusandcressida,1602\nbonds,2,troilusandcressida,1602\nhealth,2,troilusandcressida,1602\nrob,2,troilusandcressida,1602\ndoubtful,2,troilusandcressida,1602\nscene,2,troilusandcressida,1602\nheld,2,troilusandcressida,1602\nNever,2,troilusandcressida,1602\ndrowsy,2,troilusandcressida,1602\ndish,2,troilusandcressida,1602\nleavening,2,troilusandcressida,1602\npainted,2,troilusandcressida,1602\nauthentic,2,troilusandcressida,1602\nchest,2,troilusandcressida,1602\nprisoner,2,troilusandcressida,1602\nsighs,2,troilusandcressida,1602\nanswering,2,troilusandcressida,1602\nValour,2,troilusandcressida,1602\nfought,2,troilusandcressida,1602\nangels,2,troilusandcressida,1602\nappear,2,troilusandcressida,1602\nallowance,2,troilusandcressida,1602\ndeclined,2,troilusandcressida,1602\ndrink,2,troilusandcressida,1602\nEre,2,troilusandcressida,1602\nhacks,2,troilusandcressida,1602\nwithal,2,troilusandcressida,1602\nnought,2,troilusandcressida,1602\nlaugh,2,troilusandcressida,1602\nadmirable,2,troilusandcressida,1602\ndreaming,2,troilusandcressida,1602\npleasures,2,troilusandcressida,1602\nQuite,2,troilusandcressida,1602\njuggling,2,troilusandcressida,1602\njoys,2,troilusandcressida,1602\nscruple,2,troilusandcressida,1602\nbowels,2,troilusandcressida,1602\ndemand,2,troilusandcressida,1602\ncase,2,troilusandcressida,1602\nsong,2,troilusandcressida,1602\nlustre,2,troilusandcressida,1602\nseven,2,troilusandcressida,1602\ndisdain,2,troilusandcressida,1602\n'Achilles,2,troilusandcressida,1602\ngiant,2,troilusandcressida,1602\nslept,2,troilusandcressida,1602\ngrows,2,troilusandcressida,1602\nCold,2,troilusandcressida,1602\nlimb,2,troilusandcressida,1602\nPhrygia,2,troilusandcressida,1602\nfactious,2,troilusandcressida,1602\nafterwards,2,troilusandcressida,1602\npurse,2,troilusandcressida,1602\ntoward,2,troilusandcressida,1602\ncake,2,troilusandcressida,1602\nPriamus,2,troilusandcressida,1602\nfingers,2,troilusandcressida,1602\nlift,2,troilusandcressida,1602\ncharacters,2,troilusandcressida,1602\nsoil,2,troilusandcressida,1602\ncalm,2,troilusandcressida,1602\ndeject,2,troilusandcressida,1602\nveins,2,troilusandcressida,1602\nnoise,2,troilusandcressida,1602\npurity,2,troilusandcressida,1602\nlesser,2,troilusandcressida,1602\narithmetic,2,troilusandcressida,1602\ncoldly,2,troilusandcressida,1602\nslippery,2,troilusandcressida,1602\nsphered,2,troilusandcressida,1602\nblack,2,troilusandcressida,1602\nsups,2,troilusandcressida,1602\nfurther,2,troilusandcressida,1602\ncities,2,troilusandcressida,1602\nsuperficially,2,troilusandcressida,1602\nsix,2,troilusandcressida,1602\nsit,2,troilusandcressida,1602\nspeeches,2,troilusandcressida,1602\nsin,2,troilusandcressida,1602\ncourtly,2,troilusandcressida,1602\nbode,2,troilusandcressida,1602\nimitation,2,troilusandcressida,1602\nsex,2,troilusandcressida,1602\nvirtuous,2,troilusandcressida,1602\nwake,2,troilusandcressida,1602\ndisposer,2,troilusandcressida,1602\ndisposed,2,troilusandcressida,1602\nfell,2,troilusandcressida,1602\nWalk,2,troilusandcressida,1602\nyield,2,troilusandcressida,1602\nnine,2,troilusandcressida,1602\nearnestly,2,troilusandcressida,1602\nwhosoever,2,troilusandcressida,1602\nHimself,2,troilusandcressida,1602\nfamed,2,troilusandcressida,1602\nskill,2,troilusandcressida,1602\nwinds,2,troilusandcressida,1602\n'O,2,troilusandcressida,1602\ncounsel,2,troilusandcressida,1602\ncountenance,2,troilusandcressida,1602\nit's,2,troilusandcressida,1602\nkindly,2,troilusandcressida,1602\n's,2,troilusandcressida,1602\n't,2,troilusandcressida,1602\nforthwith,2,troilusandcressida,1602\nbeloved,2,troilusandcressida,1602\ngroans,2,troilusandcressida,1602\nsets,2,troilusandcressida,1602\nsuck,2,troilusandcressida,1602\nstuff,2,troilusandcressida,1602\nbolting,2,troilusandcressida,1602\nAttendants,2,troilusandcressida,1602\ncheese,2,troilusandcressida,1602\nstanders,2,troilusandcressida,1602\nvile,2,troilusandcressida,1602\nworse,2,troilusandcressida,1602\nbroils,2,troilusandcressida,1602\nmerchants,2,troilusandcressida,1602\nreceives,2,troilusandcressida,1602\nways,2,troilusandcressida,1602\nfalls,2,troilusandcressida,1602\nloathed,2,troilusandcressida,1602\nenvious,2,troilusandcressida,1602\ndearly,2,troilusandcressida,1602\nWherein,2,troilusandcressida,1602\npearl,2,troilusandcressida,1602\npageant,2,troilusandcressida,1602\nWhilst,2,troilusandcressida,1602\nhumble,2,troilusandcressida,1602\nsum,2,troilusandcressida,1602\ndraught,2,troilusandcressida,1602\ncomplete,2,troilusandcressida,1602\nfeed,2,troilusandcressida,1602\nfeel,2,troilusandcressida,1602\nrein,2,troilusandcressida,1602\nrelish,2,troilusandcressida,1602\nblind,2,troilusandcressida,1602\nmalice,2,troilusandcressida,1602\ncamel,2,troilusandcressida,1602\nmemorial,2,troilusandcressida,1602\nprized,2,troilusandcressida,1602\nward,2,troilusandcressida,1602\nware,2,troilusandcressida,1602\nlanguage,2,troilusandcressida,1602\nmirth,2,troilusandcressida,1602\nruin,2,troilusandcressida,1602\nrenew,2,troilusandcressida,1602\ncustom,2,troilusandcressida,1602\nwarm,2,troilusandcressida,1602\noffice,2,troilusandcressida,1602\nboot,2,troilusandcressida,1602\nsteed,2,troilusandcressida,1602\nt'other,2,troilusandcressida,1602\nFoh,2,troilusandcressida,1602\nbook,2,troilusandcressida,1602\nmanhood,2,troilusandcressida,1602\nspoke,2,troilusandcressida,1602\ncolour,2,troilusandcressida,1602\nFollow,2,troilusandcressida,1602\ndistraction,2,troilusandcressida,1602\noffers,2,troilusandcressida,1602\ngoddess,2,troilusandcressida,1602\nconditions,2,troilusandcressida,1602\nFaith,2,troilusandcressida,1602\nrusty,2,troilusandcressida,1602\nWhile,2,troilusandcressida,1602\nA',2,troilusandcressida,1602\neminence,2,troilusandcressida,1602\nvarlets,2,troilusandcressida,1602\nchronicle,2,troilusandcressida,1602\nmeasure,2,troilusandcressida,1602\nperfection,2,troilusandcressida,1602\nchaste,2,troilusandcressida,1602\nbox,2,troilusandcressida,1602\nyouthful,2,troilusandcressida,1602\nblows,2,troilusandcressida,1602\nWhiles,2,troilusandcressida,1602\nvigour,2,troilusandcressida,1602\nThose,2,troilusandcressida,1602\nblown,2,troilusandcressida,1602\nhopes,2,troilusandcressida,1602\nNature,2,troilusandcressida,1602\naddle,2,troilusandcressida,1602\nbay,2,troilusandcressida,1602\nspout,2,troilusandcressida,1602\ngentleness,2,troilusandcressida,1602\nbrings,2,troilusandcressida,1602\nlottery,2,troilusandcressida,1602\npen,2,troilusandcressida,1602\nHer,2,troilusandcressida,1602\nhelmet,2,troilusandcressida,1602\nexact,2,troilusandcressida,1602\nbless,2,troilusandcressida,1602\nstrangely,2,troilusandcressida,1602\ndiscredit,2,troilusandcressida,1602\nease,2,troilusandcressida,1602\nwither'd,2,troilusandcressida,1602\nrevenue,2,troilusandcressida,1602\nelection,2,troilusandcressida,1602\nstep,2,troilusandcressida,1602\nheads,2,troilusandcressida,1602\nvalour's,2,troilusandcressida,1602\nhaunt,2,troilusandcressida,1602\ngold,2,troilusandcressida,1602\ndivide,2,troilusandcressida,1602\nbulk,2,troilusandcressida,1602\ngave,2,troilusandcressida,1602\nproportion,2,troilusandcressida,1602\nbend,2,troilusandcressida,1602\nfields,2,troilusandcressida,1602\nSith,2,troilusandcressida,1602\nsalute,2,troilusandcressida,1602\nYourself,2,troilusandcressida,1602\npetition,2,troilusandcressida,1602\ntell'st,2,troilusandcressida,1602\ntricks,2,troilusandcressida,1602\norchard,2,troilusandcressida,1602\nimperial,2,troilusandcressida,1602\nfifty,2,troilusandcressida,1602\nPut,2,troilusandcressida,1602\nmeanest,2,troilusandcressida,1602\ntempts,2,troilusandcressida,1602\nsuddenly,2,troilusandcressida,1602\ntickles,2,troilusandcressida,1602\neaten,2,troilusandcressida,1602\nHolds,2,troilusandcressida,1602\ndissembling,2,troilusandcressida,1602\namongst,2,troilusandcressida,1602\nused,2,troilusandcressida,1602\nenterprise,2,troilusandcressida,1602\nsink,2,troilusandcressida,1602\n'Twas,2,troilusandcressida,1602\npicture,2,troilusandcressida,1602\nDiomed's,2,troilusandcressida,1602\ngrandsire,2,troilusandcressida,1602\nchafed,2,troilusandcressida,1602\nName,2,troilusandcressida,1602\nquite,2,troilusandcressida,1602\nmagnanimous,2,troilusandcressida,1602\nGod,2,troilusandcressida,1602\nriver,2,troilusandcressida,1602\nsail,2,troilusandcressida,1602\naffection,2,troilusandcressida,1602\nengine,2,troilusandcressida,1602\npromised,2,troilusandcressida,1602\nbreast,2,troilusandcressida,1602\nkeeping,2,troilusandcressida,1602\nFear,2,troilusandcressida,1602\nleft,2,troilusandcressida,1602\nbatters,2,troilusandcressida,1602\nyes,2,troilusandcressida,1602\nnotes,2,troilusandcressida,1602\nrails,2,troilusandcressida,1602\nstone,2,troilusandcressida,1602\nunworthy,2,troilusandcressida,1602\ndeal,2,troilusandcressida,1602\ngait,2,troilusandcressida,1602\ndignity,2,troilusandcressida,1602\ndeaf,2,troilusandcressida,1602\ngild,2,troilusandcressida,1602\nitch,2,troilusandcressida,1602\nseeming,2,troilusandcressida,1602\nhusband,2,troilusandcressida,1602\nspeed,2,troilusandcressida,1602\nboats,2,troilusandcressida,1602\ngame,2,troilusandcressida,1602\npossess'd,2,troilusandcressida,1602\ntisick,2,troilusandcressida,1602\nmanner,2,troilusandcressida,1602\nah,2,troilusandcressida,1602\nPluto,2,troilusandcressida,1602\nwench,2,troilusandcressida,1602\nhumours,2,troilusandcressida,1602\nrouse,2,troilusandcressida,1602\nidiot,2,troilusandcressida,1602\nabominable,2,troilusandcressida,1602\npursuit,2,troilusandcressida,1602\nYonder,2,troilusandcressida,1602\nwisely,2,troilusandcressida,1602\naside,2,troilusandcressida,1602\nidle,2,troilusandcressida,1602\nIndia,2,troilusandcressida,1602\nvalue,2,troilusandcressida,1602\n'twould,2,troilusandcressida,1602\nlover,2,troilusandcressida,1602\nla,2,troilusandcressida,1602\nmoon,2,troilusandcressida,1602\nadd,2,troilusandcressida,1602\nwherein,2,troilusandcressida,1602\npotent,2,troilusandcressida,1602\nlock'd,2,troilusandcressida,1602\ncomposed,2,troilusandcressida,1602\nclamours,2,troilusandcressida,1602\nmen's,2,troilusandcressida,1602\nthrice,2,troilusandcressida,1602\nround,2,troilusandcressida,1602\nCall,2,troilusandcressida,1602\nKnocking,2,troilusandcressida,1602\nemploy'd,2,troilusandcressida,1602\nspur,2,troilusandcressida,1602\nhang,2,troilusandcressida,1602\nshut,2,troilusandcressida,1602\nFull,2,troilusandcressida,1602\nplain,2,troilusandcressida,1602\ndrawn,2,troilusandcressida,1602\nconfession,2,troilusandcressida,1602\nmarching,2,troilusandcressida,1602\nHum,2,troilusandcressida,1602\npluck,2,troilusandcressida,1602\nwhether,2,troilusandcressida,1602\ncity,2,troilusandcressida,1602\nvipers,2,troilusandcressida,1602\nask,2,troilusandcressida,1602\npain,2,troilusandcressida,1602\nTroilus's,2,troilusandcressida,1602\nPuts,2,troilusandcressida,1602\npoint,2,troilusandcressida,1602\nstones,2,troilusandcressida,1602\npace,2,troilusandcressida,1602\nalive,2,troilusandcressida,1602\nproper,2,troilusandcressida,1602\nfall'n,2,troilusandcressida,1602\nrevenge,2,troilusandcressida,1602\nobject,2,troilusandcressida,1602\nerror,2,troilusandcressida,1602\nmental,2,troilusandcressida,1602\nbeggars,2,troilusandcressida,1602\nknock,2,troilusandcressida,1602\nfee,2,troilusandcressida,1602\nfed,2,troilusandcressida,1602\nHard,2,troilusandcressida,1602\nnaughty,2,troilusandcressida,1602\ncommerce,2,troilusandcressida,1602\ntrial,2,troilusandcressida,1602\nbroke,2,troilusandcressida,1602\nArt,2,troilusandcressida,1602\nhaving,2,troilusandcressida,1602\nlead,2,troilusandcressida,1602\nmarch,2,troilusandcressida,1602\nheight,2,troilusandcressida,1602\nwitch,2,troilusandcressida,1602\nBetween,2,troilusandcressida,1602\nfan,2,troilusandcressida,1602\njustice,2,troilusandcressida,1602\noccasion,2,troilusandcressida,1602\nuniversal,2,troilusandcressida,1602\ndestiny,2,troilusandcressida,1602\nmain,2,troilusandcressida,1602\nexpected,2,troilusandcressida,1602\nmaid,2,troilusandcressida,1602\nnay,2,troilusandcressida,1602\ncarries,2,troilusandcressida,1602\nempty,2,troilusandcressida,1602\nforehead,2,troilusandcressida,1602\nbroad,2,troilusandcressida,1602\nPandar's,2,troilusandcressida,1602\nHalf,2,troilusandcressida,1602\nnose,2,troilusandcressida,1602\nVenus,2,troilusandcressida,1602\nbeats,2,troilusandcressida,1602\nskittish,2,troilusandcressida,1602\nproudly,2,troilusandcressida,1602\nbelow,2,troilusandcressida,1602\ncontention,2,troilusandcressida,1602\nremedy,2,troilusandcressida,1602\nbravely,2,troilusandcressida,1602\nfaint,2,troilusandcressida,1602\n'As,2,troilusandcressida,1602\ndangers,2,troilusandcressida,1602\noration,2,troilusandcressida,1602\nSoft,2,troilusandcressida,1602\nexposed,2,troilusandcressida,1602\nboils,2,troilusandcressida,1602\nmate,2,troilusandcressida,1602\nyou'ld,2,troilusandcressida,1602\nparting,2,troilusandcressida,1602\nwho's,2,troilusandcressida,1602\nducks,2,troilusandcressida,1602\nshares,2,troilusandcressida,1602\nseveral,2,troilusandcressida,1602\nDost,2,troilusandcressida,1602\nDiomedes,2,troilusandcressida,1602\nmortal,2,troilusandcressida,1602\nnod,2,troilusandcressida,1602\nblench,2,troilusandcressida,1602\nsoldiers,2,troilusandcressida,1602\nknave,2,troilusandcressida,1602\nbosoms,2,troilusandcressida,1602\nstarting,2,troilusandcressida,1602\nwatches,2,troilusandcressida,1602\ndregs,2,troilusandcressida,1602\ninsolent,2,troilusandcressida,1602\nprocure,2,troilusandcressida,1602\nreading,2,troilusandcressida,1602\n'gainst,2,troilusandcressida,1602\ndecline,2,troilusandcressida,1602\nmask,2,troilusandcressida,1602\npresently,2,troilusandcressida,1602\nALL,2,troilusandcressida,1602\nwoe,2,troilusandcressida,1602\nWeigh,2,troilusandcressida,1602\nmedicinable,2,troilusandcressida,1602\nvein,2,troilusandcressida,1602\nwoo,2,troilusandcressida,1602\nbrains,2,troilusandcressida,1602\nchaff,2,troilusandcressida,1602\nshoulder,2,troilusandcressida,1602\nchide,2,troilusandcressida,1602\nfish,2,troilusandcressida,1602\namazement,2,troilusandcressida,1602\ncaptive,2,troilusandcressida,1602\nfather's,2,troilusandcressida,1602\nover,2,troilusandcressida,1602\nrive,2,troilusandcressida,1602\nMade,2,troilusandcressida,1602\nfist,2,troilusandcressida,1602\nprivileged,2,troilusandcressida,1602\npoised,2,troilusandcressida,1602\none's,2,troilusandcressida,1602\ntrouble,2,troilusandcressida,1602\nwrath,2,troilusandcressida,1602\npossession,2,troilusandcressida,1602\nWert,2,troilusandcressida,1602\nbanks,2,troilusandcressida,1602\nbehalf,2,troilusandcressida,1602\nThetis',2,troilusandcressida,1602\nbreed,2,troilusandcressida,1602\nclose,2,troilusandcressida,1602\npause,2,troilusandcressida,1602\naffairs,2,troilusandcressida,1602\nmaids,2,troilusandcressida,1602\n'Twixt,2,troilusandcressida,1602\nfits,2,troilusandcressida,1602\nmessage,2,troilusandcressida,1602\nhateful,2,troilusandcressida,1602\nevasion,2,troilusandcressida,1602\nyoungest,2,troilusandcressida,1602\nloving,2,troilusandcressida,1602\nSay,2,troilusandcressida,1602\nAlarums,2,troilusandcressida,1602\nThey're,2,troilusandcressida,1602\nsave,2,troilusandcressida,1602\nintegrity,2,troilusandcressida,1602\nidol,2,troilusandcressida,1602\nissues,2,troilusandcressida,1602\nMercury,2,troilusandcressida,1602\nThink,2,troilusandcressida,1602\nstick,2,troilusandcressida,1602\narmy,2,troilusandcressida,1602\nspacious,2,troilusandcressida,1602\nrise,2,troilusandcressida,1602\ntuned,2,troilusandcressida,1602\nimportant,2,troilusandcressida,1602\nintent,2,troilusandcressida,1602\ncommander,2,troilusandcressida,1602\nsufferance,2,troilusandcressida,1602\nPrinces,2,troilusandcressida,1602\nprice,2,troilusandcressida,1602\nsplit,2,troilusandcressida,1602\nwitted,2,troilusandcressida,1602\nmongrel,2,troilusandcressida,1602\nbelly,2,troilusandcressida,1602\npossess,2,troilusandcressida,1602\nknower,2,troilusandcressida,1602\nfix'd,2,troilusandcressida,1602\nraging,2,troilusandcressida,1602\ndreams,2,troilusandcressida,1602\nBid,2,troilusandcressida,1602\nCupid's,2,troilusandcressida,1602\ntaken,2,troilusandcressida,1602\nmarry,2,troilusandcressida,1602\nrotten,2,troilusandcressida,1602\nspleen,2,troilusandcressida,1602\ndumb,2,troilusandcressida,1602\nrudeness,2,troilusandcressida,1602\ndull,2,troilusandcressida,1602\nsupple,2,troilusandcressida,1602\nwolf,2,troilusandcressida,1602\nunity,2,troilusandcressida,1602\ngrain,2,troilusandcressida,1602\nfox,2,troilusandcressida,1602\ndistinct,2,troilusandcressida,1602\ncomparisons,2,troilusandcressida,1602\nfain,2,troilusandcressida,1602\ntable,2,troilusandcressida,1602\ncried,2,troilusandcressida,1602\nfineness,2,troilusandcressida,1602\ndiseases,2,troilusandcressida,1602\ndesert,2,troilusandcressida,1602\ncares,2,troilusandcressida,1602\nfoh,2,troilusandcressida,1602\nconstancy,2,troilusandcressida,1602\nmethinks,2,troilusandcressida,1602\nscorns,2,troilusandcressida,1602\ntune,2,troilusandcressida,1602\nride,2,troilusandcressida,1602\nendeavour,2,troilusandcressida,1602\nMark,2,troilusandcressida,1602\npleases,2,troilusandcressida,1602\nsavage,2,troilusandcressida,1602\nengaged,2,troilusandcressida,1602\nbark,2,troilusandcressida,1602\nDardan,2,troilusandcressida,1602\nbare,2,troilusandcressida,1602\nthunder,2,troilusandcressida,1602\nshows,2,troilusandcressida,1602\narrogance,2,troilusandcressida,1602\ncloven,2,troilusandcressida,1602\nperceive,2,troilusandcressida,1602\nmember,2,troilusandcressida,1602\ntruth's,2,troilusandcressida,1602\ndistaste,2,troilusandcressida,1602\nobservance,2,troilusandcressida,1602\n'Well,2,troilusandcressida,1602\nfriendship,2,troilusandcressida,1602\ngentleman,2,troilusandcressida,1602\nweakness,2,troilusandcressida,1602\nnames,2,troilusandcressida,1602\nauthor's,2,troilusandcressida,1602\ntrumpets,2,troilusandcressida,1602\nlights,2,troilusandcressida,1602\ntale,2,troilusandcressida,1602\nlaw,2,troilusandcressida,1602\nconstant,2,troilusandcressida,1602\notherwise,2,troilusandcressida,1602\nstroke,2,troilusandcressida,1602\nprovoked,2,troilusandcressida,1602\nwild,2,troilusandcressida,1602\nprivacy,2,troilusandcressida,1602\ncreep,2,troilusandcressida,1602\npledge,2,troilusandcressida,1602\naccident,2,troilusandcressida,1602\nLay,2,troilusandcressida,1602\ntemper'd,2,troilusandcressida,1602\nCassandra's,2,troilusandcressida,1602\nhollow,2,troilusandcressida,1602\nAlthough,2,troilusandcressida,1602\nhonest,2,troilusandcressida,1602\nhorse's,2,troilusandcressida,1602\nrevolt,2,troilusandcressida,1602\nflood,2,troilusandcressida,1602\nlives,2,troilusandcressida,1602\nWhere's,2,troilusandcressida,1602\nseal,2,troilusandcressida,1602\nNell,2,troilusandcressida,1602\nconjure,2,troilusandcressida,1602\nhearts,2,troilusandcressida,1602\nlungs,2,troilusandcressida,1602\nabject,2,troilusandcressida,1602\nseas,2,troilusandcressida,1602\nhunt,2,troilusandcressida,1602\nalong,2,troilusandcressida,1602\nconvince,2,troilusandcressida,1602\nstates,2,troilusandcressida,1602\ncaptain,2,troilusandcressida,1602\nbaby,2,troilusandcressida,1602\nmassy,2,troilusandcressida,1602\npresence,2,troilusandcressida,1602\nLie,2,troilusandcressida,1602\ndiscretion,2,troilusandcressida,1602\ntells,2,troilusandcressida,1602\nrender,2,troilusandcressida,1602\nshapes,2,troilusandcressida,1602\nfellows,2,troilusandcressida,1602\nTrue,2,troilusandcressida,1602\ncrest,2,troilusandcressida,1602\nexpectation,2,troilusandcressida,1602\n'twill,2,troilusandcressida,1602\npour,2,troilusandcressida,1602\nThings,2,troilusandcressida,1602\n'Excellent,2,troilusandcressida,1602\nstrikest,2,troilusandcressida,1602\nprayer,2,troilusandcressida,1602\nraven,2,troilusandcressida,1602\nblank,2,troilusandcressida,1602\nleg,2,troilusandcressida,1602\nled,2,troilusandcressida,1602\ngreeting,2,troilusandcressida,1602\nseason,2,troilusandcressida,1602\nInstance,2,troilusandcressida,1602\nprotest,2,troilusandcressida,1602\nmerchant,2,troilusandcressida,1602\naching,2,troilusandcressida,1602\nTwo,2,troilusandcressida,1602\nslow,2,troilusandcressida,1602\nfetches,2,troilusandcressida,1602\nsympathize,2,troilusandcressida,1602\nlimbs,2,troilusandcressida,1602\nlazy,2,troilusandcressida,1602\nguts,2,troilusandcressida,1602\nbegins,2,troilusandcressida,1602\nFalling,2,troilusandcressida,1602\ndoing,2,troilusandcressida,1602\ndread,2,troilusandcressida,1602\nwarlike,2,troilusandcressida,1602\ntrim,2,troilusandcressida,1602\nconduce,2,troilusandcressida,1602\nDoes,2,troilusandcressida,1602\nnobody,2,troilusandcressida,1602\nstreet,2,troilusandcressida,1602\nungain'd,2,troilusandcressida,1602\nfled,2,troilusandcressida,1602\nsimplicity,2,troilusandcressida,1602\nthinking,2,troilusandcressida,1602\nAway,2,troilusandcressida,1602\nstrokes,2,troilusandcressida,1602\non't,2,troilusandcressida,1602\nMarry,2,troilusandcressida,1602\nfasting,2,troilusandcressida,1602\nPandars,2,troilusandcressida,1602\ncopper,2,troilusandcressida,1602\nsleeping,2,troilusandcressida,1602\nstretch'd,2,troilusandcressida,1602\nsilver,2,troilusandcressida,1602\ngrinding,2,troilusandcressida,1602\nprouder,2,troilusandcressida,1602\nvowing,2,troilusandcressida,1602\nbias,2,troilusandcressida,1602\ncontent,2,troilusandcressida,1602\nsilent,2,troilusandcressida,1602\n'This,2,troilusandcressida,1602\nwitness,2,troilusandcressida,1602\nleads,2,troilusandcressida,1602\nbran,2,troilusandcressida,1602\nprincely,2,troilusandcressida,1602\nfollow,2,troilusandcressida,1602\nperchance,2,troilusandcressida,1602\nLest,2,troilusandcressida,1602\nDie,2,troilusandcressida,1602\nland,2,troilusandcressida,1602\nreverend,2,troilusandcressida,1602\ninstantly,2,troilusandcressida,1602\nmonths,2,troilusandcressida,1602\ngored,2,troilusandcressida,1602\nshake,2,troilusandcressida,1602\nburden,2,troilusandcressida,1602\narming,2,troilusandcressida,1602\nflower,2,troilusandcressida,1602\nToo,2,troilusandcressida,1602\nfrankly,2,troilusandcressida,1602\nstol'n,2,troilusandcressida,1602\nattest,2,troilusandcressida,1602\nprivate,2,troilusandcressida,1602\nfusty,2,troilusandcressida,1602\nawake,2,troilusandcressida,1602\ncharity,2,troilusandcressida,1602\ngear,2,troilusandcressida,1602\nshare,2,troilusandcressida,1602\nturn'd,2,troilusandcressida,1602\nships,2,troilusandcressida,1602\nwoo'd,2,troilusandcressida,1602\ngodly,2,troilusandcressida,1602\nhedge,2,troilusandcressida,1602\nsway,2,troilusandcressida,1602\ncomposure,2,troilusandcressida,1602\ndaughters,2,troilusandcressida,1602\nheroical,2,troilusandcressida,1602\nmoral,3,troilusandcressida,1602\ndrawing,3,troilusandcressida,1602\ntimes,3,troilusandcressida,1602\ntook,3,troilusandcressida,1602\nHear,3,troilusandcressida,1602\ntruer,3,troilusandcressida,1602\nwoman's,3,troilusandcressida,1602\nFie,3,troilusandcressida,1602\nadvantage,3,troilusandcressida,1602\nhell,3,troilusandcressida,1602\nVenus',3,troilusandcressida,1602\nsingle,3,troilusandcressida,1602\ndirt,3,troilusandcressida,1602\nfinger,3,troilusandcressida,1602\nsight,3,troilusandcressida,1602\nCries,3,troilusandcressida,1602\nunderstand,3,troilusandcressida,1602\ncalls,3,troilusandcressida,1602\nsore,3,troilusandcressida,1602\ntrust,3,troilusandcressida,1602\nbecome,3,troilusandcressida,1602\ncheeks,3,troilusandcressida,1602\nstirring,3,troilusandcressida,1602\nbackward,3,troilusandcressida,1602\nopposed,3,troilusandcressida,1602\nbroken,3,troilusandcressida,1602\ndrab,3,troilusandcressida,1602\nmadness,3,troilusandcressida,1602\ntown,3,troilusandcressida,1602\nglass,3,troilusandcressida,1602\ncomplexion,3,troilusandcressida,1602\naddition,3,troilusandcressida,1602\nexecution,3,troilusandcressida,1602\nbound,3,troilusandcressida,1602\nwarrant,3,troilusandcressida,1602\nlight,3,troilusandcressida,1602\nsaying,3,troilusandcressida,1602\nmerry,3,troilusandcressida,1602\nmocking,3,troilusandcressida,1602\nshe'll,3,troilusandcressida,1602\nsea,3,troilusandcressida,1602\n'twas,3,troilusandcressida,1602\nlove's,3,troilusandcressida,1602\nSuch,3,troilusandcressida,1602\nlivers,3,troilusandcressida,1602\nsecond,3,troilusandcressida,1602\ncommends,3,troilusandcressida,1602\ndoubt,3,troilusandcressida,1602\nmother,3,troilusandcressida,1602\nread,3,troilusandcressida,1602\nworst,3,troilusandcressida,1602\nesteem,3,troilusandcressida,1602\ndigestion,3,troilusandcressida,1602\npiece,3,troilusandcressida,1602\nOut,3,troilusandcressida,1602\nmonster,3,troilusandcressida,1602\ncommon,3,troilusandcressida,1602\nfigure,3,troilusandcressida,1602\nterms,3,troilusandcressida,1602\naffected,3,troilusandcressida,1602\ninstance,3,troilusandcressida,1602\ncries,3,troilusandcressida,1602\nominous,3,troilusandcressida,1602\npromise,3,troilusandcressida,1602\nhumbly,3,troilusandcressida,1602\ngrow,3,troilusandcressida,1602\nbrief,3,troilusandcressida,1602\nspeaking,3,troilusandcressida,1602\nsoldier,3,troilusandcressida,1602\nknights,3,troilusandcressida,1602\nOne,3,troilusandcressida,1602\nPlease,3,troilusandcressida,1602\nedge,3,troilusandcressida,1602\nFriend,3,troilusandcressida,1602\nwish,3,troilusandcressida,1602\nDeiphobus,3,troilusandcressida,1602\nsooth,3,troilusandcressida,1602\nworld's,3,troilusandcressida,1602\ncunning,3,troilusandcressida,1602\nrule,3,troilusandcressida,1602\ntend,3,troilusandcressida,1602\nbitter,3,troilusandcressida,1602\nchamber,3,troilusandcressida,1602\nmelancholy,3,troilusandcressida,1602\nHold,3,troilusandcressida,1602\ncrack,3,troilusandcressida,1602\nsigh,3,troilusandcressida,1602\nstubborn,3,troilusandcressida,1602\ndepend,3,troilusandcressida,1602\nsurety,3,troilusandcressida,1602\nscarce,3,troilusandcressida,1602\nvoluntary,3,troilusandcressida,1602\ncruel,3,troilusandcressida,1602\nOh,3,troilusandcressida,1602\nhit,3,troilusandcressida,1602\nbeg,3,troilusandcressida,1602\nfortune's,3,troilusandcressida,1602\nLet's,3,troilusandcressida,1602\nobey,3,troilusandcressida,1602\ngod,3,troilusandcressida,1602\nbull,3,troilusandcressida,1602\nbehind,3,troilusandcressida,1602\nPrithee,3,troilusandcressida,1602\nBeating,3,troilusandcressida,1602\nstruck,3,troilusandcressida,1602\nsounds,3,troilusandcressida,1602\nweak,3,troilusandcressida,1602\nbent,3,troilusandcressida,1602\ncraft,3,troilusandcressida,1602\nBehold,3,troilusandcressida,1602\ndivine,3,troilusandcressida,1602\nfooting,3,troilusandcressida,1602\nturns,3,troilusandcressida,1602\ndeed,3,troilusandcressida,1602\nCannot,3,troilusandcressida,1602\nyea,3,troilusandcressida,1602\nHere's,3,troilusandcressida,1602\nApollo,3,troilusandcressida,1602\nlegs,3,troilusandcressida,1602\ngilt,3,troilusandcressida,1602\nlaughing,3,troilusandcressida,1602\nmove,3,troilusandcressida,1602\nox,3,troilusandcressida,1602\ncommend,3,troilusandcressida,1602\nsmall,3,troilusandcressida,1602\nlo,3,troilusandcressida,1602\nstrain,3,troilusandcressida,1602\nroused,3,troilusandcressida,1602\nage,3,troilusandcressida,1602\nresides,3,troilusandcressida,1602\nample,3,troilusandcressida,1602\nspent,3,troilusandcressida,1602\ngreater,3,troilusandcressida,1602\npresume,3,troilusandcressida,1602\nharm,3,troilusandcressida,1602\nhark,3,troilusandcressida,1602\nchoice,3,troilusandcressida,1602\nbrought,3,troilusandcressida,1602\nAndromache,3,troilusandcressida,1602\nhard,3,troilusandcressida,1602\naye,3,troilusandcressida,1602\nhall,3,troilusandcressida,1602\nverse,3,troilusandcressida,1602\npalate,3,troilusandcressida,1602\ndraws,3,troilusandcressida,1602\ncourse,3,troilusandcressida,1602\nhangs,3,troilusandcressida,1602\nhate,3,troilusandcressida,1602\n'loo,3,troilusandcressida,1602\ncombat,3,troilusandcressida,1602\nAlarum,3,troilusandcressida,1602\ngirl,3,troilusandcressida,1602\nfresh,3,troilusandcressida,1602\nfold,3,troilusandcressida,1602\narmour,3,troilusandcressida,1602\nstrangeness,3,troilusandcressida,1602\ntouch,3,troilusandcressida,1602\nPursue,3,troilusandcressida,1602\nexecute,3,troilusandcressida,1602\nwatch,3,troilusandcressida,1602\nfat,3,troilusandcressida,1602\nyesterday,3,troilusandcressida,1602\noften,3,troilusandcressida,1602\nKeeps,3,troilusandcressida,1602\nshouldst,3,troilusandcressida,1602\nsilence,3,troilusandcressida,1602\nfaction,3,troilusandcressida,1602\nwater,3,troilusandcressida,1602\nthinks,3,troilusandcressida,1602\nPatroclus',3,troilusandcressida,1602\nretreat,3,troilusandcressida,1602\nwonder,3,troilusandcressida,1602\ninfancy,3,troilusandcressida,1602\nbeard,3,troilusandcressida,1602\nknots,3,troilusandcressida,1602\nbottom,3,troilusandcressida,1602\nshores,3,troilusandcressida,1602\nmouth,3,troilusandcressida,1602\npowers,3,troilusandcressida,1602\ntutor,3,troilusandcressida,1602\nprecious,3,troilusandcressida,1602\nSee,3,troilusandcressida,1602\nSome,3,troilusandcressida,1602\nother's,3,troilusandcressida,1602\nsacrifice,3,troilusandcressida,1602\nvarlet,3,troilusandcressida,1602\nprize,3,troilusandcressida,1602\nkisses,3,troilusandcressida,1602\nblush,3,troilusandcressida,1602\nbloody,3,troilusandcressida,1602\nQueen,3,troilusandcressida,1602\negg,3,troilusandcressida,1602\nkissing,3,troilusandcressida,1602\nmark,3,troilusandcressida,1602\nfountain,3,troilusandcressida,1602\ndevils,3,troilusandcressida,1602\nissue,3,troilusandcressida,1602\noracle,3,troilusandcressida,1602\ndesigns,3,troilusandcressida,1602\nlabour,3,troilusandcressida,1602\ndainty,3,troilusandcressida,1602\ndesires,3,troilusandcressida,1602\nnear,3,troilusandcressida,1602\nmerits,3,troilusandcressida,1602\nthine,3,troilusandcressida,1602\nflies,3,troilusandcressida,1602\nstale,3,troilusandcressida,1602\nsalt,3,troilusandcressida,1602\nsake,3,troilusandcressida,1602\nretire,3,troilusandcressida,1602\nstomach,3,troilusandcressida,1602\nfetch,3,troilusandcressida,1602\nUnarm,3,troilusandcressida,1602\nheard,3,troilusandcressida,1602\nDear,3,troilusandcressida,1602\nsparrow,3,troilusandcressida,1602\nsubtle,3,troilusandcressida,1602\nThus,3,troilusandcressida,1602\nheavy,3,troilusandcressida,1602\ncomparison,3,troilusandcressida,1602\nreceive,3,troilusandcressida,1602\nbleed,3,troilusandcressida,1602\nthey'll,3,troilusandcressida,1602\nrage,3,troilusandcressida,1602\nbrother's,3,troilusandcressida,1602\nowl,3,troilusandcressida,1602\nnews,3,troilusandcressida,1602\nfamiliar,3,troilusandcressida,1602\n'be,3,troilusandcressida,1602\noblivion,3,troilusandcressida,1602\njoints,3,troilusandcressida,1602\nanger,3,troilusandcressida,1602\nrail,3,troilusandcressida,1602\nfail,3,troilusandcressida,1602\ngifts,3,troilusandcressida,1602\nStrike,3,troilusandcressida,1602\ngrieve,3,troilusandcressida,1602\nevil,3,troilusandcressida,1602\nminds,3,troilusandcressida,1602\nyond,3,troilusandcressida,1602\nTime,3,troilusandcressida,1602\nPhrygian,3,troilusandcressida,1602\nBrother,3,troilusandcressida,1602\ngrant,3,troilusandcressida,1602\nanswers,3,troilusandcressida,1602\nfighting,3,troilusandcressida,1602\nfine,3,troilusandcressida,1602\nfill,3,troilusandcressida,1602\nmoderate,3,troilusandcressida,1602\nFare,3,troilusandcressida,1602\nwide,3,troilusandcressida,1602\ntail,3,troilusandcressida,1602\nbite,3,troilusandcressida,1602\nherself,3,troilusandcressida,1602\naunt,3,troilusandcressida,1602\nache,3,troilusandcressida,1602\ngiven,3,troilusandcressida,1602\nmothers,3,troilusandcressida,1602\nholy,3,troilusandcressida,1602\nclear,3,troilusandcressida,1602\nthank,3,troilusandcressida,1602\ngreen,3,troilusandcressida,1602\ngreet,3,troilusandcressida,1602\ndangerous,3,troilusandcressida,1602\nfollows,3,troilusandcressida,1602\nfalsehood,3,troilusandcressida,1602\nhairs,3,troilusandcressida,1602\nadieu,3,troilusandcressida,1602\ntalking,3,troilusandcressida,1602\neither,3,troilusandcressida,1602\ncost,3,troilusandcressida,1602\nplanets,3,troilusandcressida,1602\nPray,3,troilusandcressida,1602\ncore,3,troilusandcressida,1602\nheels,3,troilusandcressida,1602\nentreat,3,troilusandcressida,1602\ntied,3,troilusandcressida,1602\nport,3,troilusandcressida,1602\nlovers,3,troilusandcressida,1602\nsouls,3,troilusandcressida,1602\nsell,3,troilusandcressida,1602\ntide,3,troilusandcressida,1602\naloud,3,troilusandcressida,1602\nsend,3,troilusandcressida,1602\ncold,3,troilusandcressida,1602\ninvite,3,troilusandcressida,1602\nlip,3,troilusandcressida,1602\ntorch,3,troilusandcressida,1602\nsounded,3,troilusandcressida,1602\nremember,3,troilusandcressida,1602\nmeeting,3,troilusandcressida,1602\nSince,3,troilusandcressida,1602\nburns,3,troilusandcressida,1602\namorous,3,troilusandcressida,1602\nlast,3,troilusandcressida,1602\nfever,3,troilusandcressida,1602\nthither,3,troilusandcressida,1602\nlate,3,troilusandcressida,1602\nelephant,3,troilusandcressida,1602\nseverally,3,troilusandcressida,1602\ndwells,3,troilusandcressida,1602\nnumbers,3,troilusandcressida,1602\nrespect,3,troilusandcressida,1602\ncentre,3,troilusandcressida,1602\nunarm,3,troilusandcressida,1602\nHe's,3,troilusandcressida,1602\nanother's,3,troilusandcressida,1602\ninches,3,troilusandcressida,1602\ncertain,3,troilusandcressida,1602\nsuccess,3,troilusandcressida,1602\nTake,3,troilusandcressida,1602\ntempt,3,troilusandcressida,1602\nFall,3,troilusandcressida,1602\n'mongst,3,troilusandcressida,1602\nCressid's,3,troilusandcressida,1602\nbids,3,troilusandcressida,1602\nth',3,troilusandcressida,1602\nWords,3,troilusandcressida,1602\nchivalry,3,troilusandcressida,1602\ncrown,3,troilusandcressida,1602\ncrows,3,troilusandcressida,1602\norder,3,troilusandcressida,1602\ne'er,3,troilusandcressida,1602\nsharp,3,troilusandcressida,1602\nregard,4,troilusandcressida,1602\ntruce,4,troilusandcressida,1602\nignorance,4,troilusandcressida,1602\nsmiles,4,troilusandcressida,1602\ndays,4,troilusandcressida,1602\nmistress,4,troilusandcressida,1602\nspeech,4,troilusandcressida,1602\nCalchas,4,troilusandcressida,1602\nhaste,4,troilusandcressida,1602\nhelp,4,troilusandcressida,1602\nbones,4,troilusandcressida,1602\nvillain,4,troilusandcressida,1602\nmere,4,troilusandcressida,1602\nwhile,4,troilusandcressida,1602\nHelen's,4,troilusandcressida,1602\nsort,4,troilusandcressida,1602\nfriends,4,troilusandcressida,1602\nperformance,4,troilusandcressida,1602\nstrength,4,troilusandcressida,1602\nAfter,4,troilusandcressida,1602\nheat,4,troilusandcressida,1602\nmaking,4,troilusandcressida,1602\nfools,4,troilusandcressida,1602\nsoft,4,troilusandcressida,1602\nsomething,4,troilusandcressida,1602\nvice,4,troilusandcressida,1602\nAside,4,troilusandcressida,1602\nscorn,4,troilusandcressida,1602\nspy,4,troilusandcressida,1602\ndeliver,4,troilusandcressida,1602\nPandarus',4,troilusandcressida,1602\nsubject,4,troilusandcressida,1602\nWas,4,troilusandcressida,1602\nTheir,4,troilusandcressida,1602\nourselves,4,troilusandcressida,1602\nborn,4,troilusandcressida,1602\nfault,4,troilusandcressida,1602\nunarm'd,4,troilusandcressida,1602\nthence,4,troilusandcressida,1602\ninfinite,4,troilusandcressida,1602\nrude,4,troilusandcressida,1602\nhence,4,troilusandcressida,1602\nrest,4,troilusandcressida,1602\nstop,4,troilusandcressida,1602\nbright,4,troilusandcressida,1602\npraises,4,troilusandcressida,1602\nwherefore,4,troilusandcressida,1602\nside,4,troilusandcressida,1602\noffend,4,troilusandcressida,1602\npay,4,troilusandcressida,1602\nneither,4,troilusandcressida,1602\ntherefore,4,troilusandcressida,1602\nsmile,4,troilusandcressida,1602\nscurvy,4,troilusandcressida,1602\nkings,4,troilusandcressida,1602\nwisdom,4,troilusandcressida,1602\nsince,4,troilusandcressida,1602\nmeans,4,troilusandcressida,1602\nglorious,4,troilusandcressida,1602\ngrief,4,troilusandcressida,1602\ngot,4,troilusandcressida,1602\nwear,4,troilusandcressida,1602\nLies,4,troilusandcressida,1602\nSpeak,4,troilusandcressida,1602\njust,4,troilusandcressida,1602\ntheme,4,troilusandcressida,1602\nBoth,4,troilusandcressida,1602\nconfess,4,troilusandcressida,1602\nservant,4,troilusandcressida,1602\nfavour,4,troilusandcressida,1602\nsafe,4,troilusandcressida,1602\npriest,4,troilusandcressida,1602\ngall,4,troilusandcressida,1602\ntouch'd,4,troilusandcressida,1602\nhands,4,troilusandcressida,1602\ndoor,4,troilusandcressida,1602\nfeast,4,troilusandcressida,1602\ncommands,4,troilusandcressida,1602\nYes,4,troilusandcressida,1602\ngrace,4,troilusandcressida,1602\neats,4,troilusandcressida,1602\nspeaks,4,troilusandcressida,1602\npale,4,troilusandcressida,1602\npalm,4,troilusandcressida,1602\nmighty,4,troilusandcressida,1602\nexcuse,4,troilusandcressida,1602\nopen,4,troilusandcressida,1602\nShe's,4,troilusandcressida,1602\nvengeance,4,troilusandcressida,1602\narm,4,troilusandcressida,1602\nfoot,4,troilusandcressida,1602\ndreadful,4,troilusandcressida,1602\nrogue,4,troilusandcressida,1602\nputs,4,troilusandcressida,1602\nye,4,troilusandcressida,1602\ndeadly,4,troilusandcressida,1602\ntoken,4,troilusandcressida,1602\nnew,4,troilusandcressida,1602\nchange,4,troilusandcressida,1602\nmoved,4,troilusandcressida,1602\nlords,4,troilusandcressida,1602\nnote,4,troilusandcressida,1602\nalmost,4,troilusandcressida,1602\nLove,4,troilusandcressida,1602\nborne,4,troilusandcressida,1602\nstays,4,troilusandcressida,1602\nyours,4,troilusandcressida,1602\neffect,4,troilusandcressida,1602\nfoolish,4,troilusandcressida,1602\nemulous,4,troilusandcressida,1602\nmass,4,troilusandcressida,1602\nslave,4,troilusandcressida,1602\nquoth,4,troilusandcressida,1602\nwon,4,troilusandcressida,1602\nblow,4,troilusandcressida,1602\ngates,4,troilusandcressida,1602\nneed,4,troilusandcressida,1602\nhigher,4,troilusandcressida,1602\ntarried,4,troilusandcressida,1602\nmarvel,4,troilusandcressida,1602\nfirm,4,troilusandcressida,1602\nneck,4,troilusandcressida,1602\nthrow,4,troilusandcressida,1602\nsides,4,troilusandcressida,1602\nwin,4,troilusandcressida,1602\noft,4,troilusandcressida,1602\nonly,4,troilusandcressida,1602\noath,4,troilusandcressida,1602\nfound,4,troilusandcressida,1602\ndanger,4,troilusandcressida,1602\nwanton,4,troilusandcressida,1602\nserve,4,troilusandcressida,1602\nemulation,4,troilusandcressida,1602\nMake,4,troilusandcressida,1602\nPandar,4,troilusandcressida,1602\nJupiter,4,troilusandcressida,1602\nplease,4,troilusandcressida,1602\nwounds,4,troilusandcressida,1602\npalace,4,troilusandcressida,1602\nfie,4,troilusandcressida,1602\npassion,4,troilusandcressida,1602\nvow,4,troilusandcressida,1602\nhorn,4,troilusandcressida,1602\nTroilus',4,troilusandcressida,1602\nmeddle,4,troilusandcressida,1602\nta'en,4,troilusandcressida,1602\npatient,4,troilusandcressida,1602\nbase,4,troilusandcressida,1602\nHELENUS,4,troilusandcressida,1602\ntame,4,troilusandcressida,1602\nhope,4,troilusandcressida,1602\nWelcome,4,troilusandcressida,1602\nmeets,4,troilusandcressida,1602\narm'd,4,troilusandcressida,1602\ncarry,4,troilusandcressida,1602\nshort,4,troilusandcressida,1602\ncut,4,troilusandcressida,1602\nrequest,4,troilusandcressida,1602\ngives,4,troilusandcressida,1602\nfairer,4,troilusandcressida,1602\naught,4,troilusandcressida,1602\ntroth,4,troilusandcressida,1602\n'twixt,4,troilusandcressida,1602\ncourtesy,4,troilusandcressida,1602\ntraitor,4,troilusandcressida,1602\nglove,4,troilusandcressida,1602\nalas,4,troilusandcressida,1602\nbade,4,troilusandcressida,1602\nIlium,4,troilusandcressida,1602\near,4,troilusandcressida,1602\nspirits,4,troilusandcressida,1602\nCassandra,4,troilusandcressida,1602\nlion,4,troilusandcressida,1602\nappetite,4,troilusandcressida,1602\ngoing,4,troilusandcressida,1602\nMenelaus',4,troilusandcressida,1602\ndue,4,troilusandcressida,1602\nweight,4,troilusandcressida,1602\ndry,4,troilusandcressida,1602\nproclamation,4,troilusandcressida,1602\nten,4,troilusandcressida,1602\nshape,4,troilusandcressida,1602\nenemy,4,troilusandcressida,1602\nwomen,4,troilusandcressida,1602\ntold,5,troilusandcressida,1602\nforbid,5,troilusandcressida,1602\nswords,5,troilusandcressida,1602\ndrop,5,troilusandcressida,1602\nAlas,5,troilusandcressida,1602\nbrown,5,troilusandcressida,1602\nhelm,5,troilusandcressida,1602\nrun,5,troilusandcressida,1602\nwhoreson,5,troilusandcressida,1602\nearly,5,troilusandcressida,1602\nmercy,5,troilusandcressida,1602\nsoon,5,troilusandcressida,1602\nbirth,5,troilusandcressida,1602\ngrown,5,troilusandcressida,1602\npolicy,5,troilusandcressida,1602\nCupid,5,troilusandcressida,1602\nview,5,troilusandcressida,1602\nshe's,5,troilusandcressida,1602\nstands,5,troilusandcressida,1602\nembrace,5,troilusandcressida,1602\nwings,5,troilusandcressida,1602\nguide,5,troilusandcressida,1602\nCalchas',5,troilusandcressida,1602\napplause,5,troilusandcressida,1602\ncuckold,5,troilusandcressida,1602\nknees,5,troilusandcressida,1602\nmean,5,troilusandcressida,1602\nThere's,5,troilusandcressida,1602\npraised,5,troilusandcressida,1602\nANTENOR,5,troilusandcressida,1602\nAh,5,troilusandcressida,1602\nproof,5,troilusandcressida,1602\nunless,5,troilusandcressida,1602\ncanst,5,troilusandcressida,1602\nto't,5,troilusandcressida,1602\nforce,5,troilusandcressida,1602\nHad,5,troilusandcressida,1602\nsport,5,troilusandcressida,1602\nbest,5,troilusandcressida,1602\nchallenge,5,troilusandcressida,1602\nsooner,5,troilusandcressida,1602\nput,5,troilusandcressida,1602\na',5,troilusandcressida,1602\ncurse,5,troilusandcressida,1602\nbuy,5,troilusandcressida,1602\ncrowns,5,troilusandcressida,1602\ndeep,5,troilusandcressida,1602\noh,5,troilusandcressida,1602\nfears,5,troilusandcressida,1602\nwhereof,5,troilusandcressida,1602\nloss,5,troilusandcressida,1602\nforgot,5,troilusandcressida,1602\nBecause,5,troilusandcressida,1602\nvalour,5,troilusandcressida,1602\ndiscourse,5,troilusandcressida,1602\nMore,5,troilusandcressida,1602\nMARGARELON,5,troilusandcressida,1602\nform,5,troilusandcressida,1602\npresent,5,troilusandcressida,1602\nmock,5,troilusandcressida,1602\ntwain,5,troilusandcressida,1602\nthanks,5,troilusandcressida,1602\nHath,5,troilusandcressida,1602\nhere's,5,troilusandcressida,1602\nGrecians,5,troilusandcressida,1602\nfar,5,troilusandcressida,1602\nrank,5,troilusandcressida,1602\nenvy,5,troilusandcressida,1602\nours,5,troilusandcressida,1602\nhide,5,troilusandcressida,1602\nDoth,5,troilusandcressida,1602\nalready,5,troilusandcressida,1602\ncoward,5,troilusandcressida,1602\nknown,5,troilusandcressida,1602\nfire,5,troilusandcressida,1602\nodd,5,troilusandcressida,1602\nwalls,5,troilusandcressida,1602\nCan,5,troilusandcressida,1602\ntakes,5,troilusandcressida,1602\nconsent,5,troilusandcressida,1602\nwent,5,troilusandcressida,1602\nletter,5,troilusandcressida,1602\nparticular,5,troilusandcressida,1602\nhost,5,troilusandcressida,1602\nMyrmidons,5,troilusandcressida,1602\nfate,5,troilusandcressida,1602\nfast,5,troilusandcressida,1602\ngallant,5,troilusandcressida,1602\nis't,5,troilusandcressida,1602\nlay,5,troilusandcressida,1602\nwilt,5,troilusandcressida,1602\nvirtues,5,troilusandcressida,1602\nprithee,5,troilusandcressida,1602\nalone,5,troilusandcressida,1602\nPrince,5,troilusandcressida,1602\nwe'll,5,troilusandcressida,1602\nKnow,5,troilusandcressida,1602\nfairly,5,troilusandcressida,1602\nTrumpet,5,troilusandcressida,1602\nsent,5,troilusandcressida,1602\nsleep,5,troilusandcressida,1602\neat,5,troilusandcressida,1602\nconduct,5,troilusandcressida,1602\nIlion,5,troilusandcressida,1602\nlearn,5,troilusandcressida,1602\nGreat,5,troilusandcressida,1602\nfashion,5,troilusandcressida,1602\nwound,5,troilusandcressida,1602\nMay,5,troilusandcressida,1602\ncatch,5,troilusandcressida,1602\nkind,5,troilusandcressida,1602\nwoman,5,troilusandcressida,1602\npower,5,troilusandcressida,1602\nwouldst,5,troilusandcressida,1602\nguard,6,troilusandcressida,1602\nbusiness,6,troilusandcressida,1602\njoint,6,troilusandcressida,1602\nMust,6,troilusandcressida,1602\nAgamemnon's,6,troilusandcressida,1602\nUpon,6,troilusandcressida,1602\ncharge,6,troilusandcressida,1602\nsons,6,troilusandcressida,1602\nyourself,6,troilusandcressida,1602\nkin,6,troilusandcressida,1602\nbody,6,troilusandcressida,1602\n'twere,6,troilusandcressida,1602\nwalk,6,troilusandcressida,1602\nwhere's,6,troilusandcressida,1602\nmerit,6,troilusandcressida,1602\npasses,6,troilusandcressida,1602\nfellow,6,troilusandcressida,1602\nThough,6,troilusandcressida,1602\npretty,6,troilusandcressida,1602\nwars,6,troilusandcressida,1602\nbone,6,troilusandcressida,1602\nsteel,6,troilusandcressida,1602\nWhat's,6,troilusandcressida,1602\nquarrel,6,troilusandcressida,1602\nboy,6,troilusandcressida,1602\namong,6,troilusandcressida,1602\nbad,6,troilusandcressida,1602\nStand,6,troilusandcressida,1602\npleasure,6,troilusandcressida,1602\nbid,6,troilusandcressida,1602\nweep,6,troilusandcressida,1602\ngoodly,6,troilusandcressida,1602\ndost,6,troilusandcressida,1602\nfarewell,6,troilusandcressida,1602\ndegree,6,troilusandcressida,1602\nswift,6,troilusandcressida,1602\nneeds,6,troilusandcressida,1602\nay,6,troilusandcressida,1602\nthyself,6,troilusandcressida,1602\nYea,6,troilusandcressida,1602\nlost,6,troilusandcressida,1602\nho,6,troilusandcressida,1602\nloved,6,troilusandcressida,1602\nknew,6,troilusandcressida,1602\nass,6,troilusandcressida,1602\nAre,6,troilusandcressida,1602\njudgment,6,troilusandcressida,1602\nkeeps,6,troilusandcressida,1602\ntarry,6,troilusandcressida,1602\nTherefore,6,troilusandcressida,1602\nmyself,6,troilusandcressida,1602\nMakes,6,troilusandcressida,1602\nfree,6,troilusandcressida,1602\nWere,6,troilusandcressida,1602\ntaste,6,troilusandcressida,1602\nget,6,troilusandcressida,1602\nWe'll,6,troilusandcressida,1602\nbelieve,6,troilusandcressida,1602\nthemselves,6,troilusandcressida,1602\nface,6,troilusandcressida,1602\nnext,6,troilusandcressida,1602\nlechery,6,troilusandcressida,1602\nknight,6,troilusandcressida,1602\nangry,6,troilusandcressida,1602\nDEIPHOBUS,6,troilusandcressida,1602\nfortune,6,troilusandcressida,1602\nthree,6,troilusandcressida,1602\nwork,6,troilusandcressida,1602\ncompany,6,troilusandcressida,1602\neven,6,troilusandcressida,1602\nrich,6,troilusandcressida,1602\nne'er,6,troilusandcressida,1602\nlarge,6,troilusandcressida,1602\nman's,6,troilusandcressida,1602\nholds,6,troilusandcressida,1602\nmaster,6,troilusandcressida,1602\nseem,6,troilusandcressida,1602\ndefend,6,troilusandcressida,1602\nbattle,6,troilusandcressida,1602\nsound,6,troilusandcressida,1602\nperson,6,troilusandcressida,1602\nhouse,6,troilusandcressida,1602\nNothing,6,troilusandcressida,1602\nmad,6,troilusandcressida,1602\nlaughed,6,troilusandcressida,1602\nAnother,6,troilusandcressida,1602\nstraight,6,troilusandcressida,1602\nglory,6,troilusandcressida,1602\nAmen,6,troilusandcressida,1602\nvirtue,6,troilusandcressida,1602\nWithout,6,troilusandcressida,1602\nHecuba,6,troilusandcressida,1602\nDid,6,troilusandcressida,1602\nbehold,6,troilusandcressida,1602\nshalt,6,troilusandcressida,1602\ngreatness,6,troilusandcressida,1602\nFair,6,troilusandcressida,1602\ncommand,6,troilusandcressida,1602\nkill,6,troilusandcressida,1602\ndie,6,troilusandcressida,1602\nTell,7,troilusandcressida,1602\ntears,7,troilusandcressida,1602\nunder,7,troilusandcressida,1602\nplague,7,troilusandcressida,1602\nchin,7,troilusandcressida,1602\nsaw,7,troilusandcressida,1602\nGive,7,troilusandcressida,1602\ncheek,7,troilusandcressida,1602\naway,7,troilusandcressida,1602\nwrong,7,troilusandcressida,1602\nturn,7,troilusandcressida,1602\ndaughter,7,troilusandcressida,1602\nworthy,7,troilusandcressida,1602\nanon,7,troilusandcressida,1602\nfriend,7,troilusandcressida,1602\nparts,7,troilusandcressida,1602\nmusic,7,troilusandcressida,1602\nIV,7,troilusandcressida,1602\npass,7,troilusandcressida,1602\nvows,7,troilusandcressida,1602\nsing,7,troilusandcressida,1602\nbegin,7,troilusandcressida,1602\nair,7,troilusandcressida,1602\ndead,7,troilusandcressida,1602\nloud,7,troilusandcressida,1602\nact,7,troilusandcressida,1602\nready,7,troilusandcressida,1602\nreasons,7,troilusandcressida,1602\nLady,7,troilusandcressida,1602\nforth,7,troilusandcressida,1602\nthough,7,troilusandcressida,1602\nhoney,7,troilusandcressida,1602\nindeed,7,troilusandcressida,1602\nPeace,7,troilusandcressida,1602\nslain,7,troilusandcressida,1602\nstrike,7,troilusandcressida,1602\nyou'll,7,troilusandcressida,1602\nhigh,7,troilusandcressida,1602\nend,7,troilusandcressida,1602\ncourage,7,troilusandcressida,1602\nAll,7,troilusandcressida,1602\nsinews,7,troilusandcressida,1602\nTill,7,troilusandcressida,1602\nfame,7,troilusandcressida,1602\nBoy,7,troilusandcressida,1602\nfolly,7,troilusandcressida,1602\ntalk,7,troilusandcressida,1602\ncur,7,troilusandcressida,1602\nWho's,7,troilusandcressida,1602\nswear,7,troilusandcressida,1602\nseek,7,troilusandcressida,1602\nself,7,troilusandcressida,1602\nCry,7,troilusandcressida,1602\nsister,7,troilusandcressida,1602\nhurt,7,troilusandcressida,1602\ndog,7,troilusandcressida,1602\ndare,7,troilusandcressida,1602\nking,7,troilusandcressida,1602\nCALCHAS,7,troilusandcressida,1602\nrather,8,troilusandcressida,1602\nWould,8,troilusandcressida,1602\ncare,8,troilusandcressida,1602\ndraw,8,troilusandcressida,1602\nsure,8,troilusandcressida,1602\ncame,8,troilusandcressida,1602\nplains,8,troilusandcressida,1602\nagainst,8,troilusandcressida,1602\nsworn,8,troilusandcressida,1602\nFarewell,8,troilusandcressida,1602\nlooks,8,troilusandcressida,1602\nabout,8,troilusandcressida,1602\nabove,8,troilusandcressida,1602\nservice,8,troilusandcressida,1602\nwise,8,troilusandcressida,1602\nhe's,8,troilusandcressida,1602\nmorning,8,troilusandcressida,1602\nIII,8,troilusandcressida,1602\nHis,8,troilusandcressida,1602\npatience,8,troilusandcressida,1602\nOn,8,troilusandcressida,1602\nHa,8,troilusandcressida,1602\nII,8,troilusandcressida,1602\nprove,8,troilusandcressida,1602\nLike,8,troilusandcressida,1602\ndoes,8,troilusandcressida,1602\no',8,troilusandcressida,1602\nloves,8,troilusandcressida,1602\nill,8,troilusandcressida,1602\ndevil,8,troilusandcressida,1602\nMost,8,troilusandcressida,1602\ncall'd,8,troilusandcressida,1602\nchance,8,troilusandcressida,1602\nAchilles',8,troilusandcressida,1602\nthings,8,troilusandcressida,1602\nLook,8,troilusandcressida,1602\ntents,8,troilusandcressida,1602\nMenelaus,8,troilusandcressida,1602\nbreak,8,troilusandcressida,1602\nHelenus,8,troilusandcressida,1602\nfly,8,troilusandcressida,1602\nMars,8,troilusandcressida,1602\nhour,8,troilusandcressida,1602\npardon,8,troilusandcressida,1602\nmatch,8,troilusandcressida,1602\nlips,8,troilusandcressida,1602\narmed,8,troilusandcressida,1602\nhe'll,8,troilusandcressida,1602\nspirit,8,troilusandcressida,1602\nhorse,9,troilusandcressida,1602\nlies,9,troilusandcressida,1602\ncamp,9,troilusandcressida,1602\nWhose,9,troilusandcressida,1602\ncause,9,troilusandcressida,1602\nOur,9,troilusandcressida,1602\nwhite,9,troilusandcressida,1602\nwind,9,troilusandcressida,1602\nsense,9,troilusandcressida,1602\ndesire,9,troilusandcressida,1602\nstay,9,troilusandcressida,1602\nwhole,9,troilusandcressida,1602\npast,9,troilusandcressida,1602\nears,9,troilusandcressida,1602\ntongue,9,troilusandcressida,1602\nlong,9,troilusandcressida,1602\nthat's,9,troilusandcressida,1602\nless,9,troilusandcressida,1602\nhast,9,troilusandcressida,1602\nthrough,9,troilusandcressida,1602\nYour,9,troilusandcressida,1602\ngentle,9,troilusandcressida,1602\naction,9,troilusandcressida,1602\nere,9,troilusandcressida,1602\nstate,9,troilusandcressida,1602\nbeseech,9,troilusandcressida,1602\nANDROMACHE,9,troilusandcressida,1602\nthousand,9,troilusandcressida,1602\nargument,9,troilusandcressida,1602\nwife,9,troilusandcressida,1602\nuse,9,troilusandcressida,1602\nseen,9,troilusandcressida,1602\nGreekish,9,troilusandcressida,1602\nlie,9,troilusandcressida,1602\nmakes,9,troilusandcressida,1602\nlive,9,troilusandcressida,1602\nstrange,9,troilusandcressida,1602\nsleeve,10,troilusandcressida,1602\npeace,10,troilusandcressida,1602\nALEXANDER,10,troilusandcressida,1602\nenough,10,troilusandcressida,1602\nbastard,10,troilusandcressida,1602\nwithin,10,troilusandcressida,1602\nbrain,10,troilusandcressida,1602\nafter,10,troilusandcressida,1602\nprinces,10,troilusandcressida,1602\nothers,10,troilusandcressida,1602\nheaven,10,troilusandcressida,1602\nAn,10,troilusandcressida,1602\nBe,10,troilusandcressida,1602\nbeat,10,troilusandcressida,1602\nlose,10,troilusandcressida,1602\nright,10,troilusandcressida,1602\nShould,10,troilusandcressida,1602\nHave,10,troilusandcressida,1602\nFrom,10,troilusandcressida,1602\nSir,10,troilusandcressida,1602\nyouth,10,troilusandcressida,1602\nPRIAM,10,troilusandcressida,1602\nopinion,10,troilusandcressida,1602\nsays,10,troilusandcressida,1602\nThat's,10,troilusandcressida,1602\nhome,10,troilusandcressida,1602\nback,10,troilusandcressida,1602\nhither,10,troilusandcressida,1602\ntogether,10,troilusandcressida,1602\ngoes,10,troilusandcressida,1602\nBefore,10,troilusandcressida,1602\nshame,10,troilusandcressida,1602\nmight,10,troilusandcressida,1602\npray,11,troilusandcressida,1602\nyonder,11,troilusandcressida,1602\nJove,11,troilusandcressida,1602\nson,11,troilusandcressida,1602\nsick,11,troilusandcressida,1602\nPriam's,11,troilusandcressida,1602\nWithin,11,troilusandcressida,1602\nwhore,11,troilusandcressida,1602\nbeen,11,troilusandcressida,1602\nsaid,11,troilusandcressida,1602\nearth,11,troilusandcressida,1602\nYet,11,troilusandcressida,1602\nmade,11,troilusandcressida,1602\nniece,11,troilusandcressida,1602\nbetween,11,troilusandcressida,1602\nhair,11,troilusandcressida,1602\nfall,11,troilusandcressida,1602\never,11,troilusandcressida,1602\nSweet,11,troilusandcressida,1602\nfind,11,troilusandcressida,1602\ntill,11,troilusandcressida,1602\nAntenor,11,troilusandcressida,1602\nwhom,11,troilusandcressida,1602\nfirst,11,troilusandcressida,1602\nThy,11,troilusandcressida,1602\nV,12,troilusandcressida,1602\ntrumpet,12,troilusandcressida,1602\nset,12,troilusandcressida,1602\nheavens,12,troilusandcressida,1602\nsun,12,troilusandcressida,1602\nbed,12,troilusandcressida,1602\nplay,12,troilusandcressida,1602\nRe,12,troilusandcressida,1602\nha,12,troilusandcressida,1602\nnoble,12,troilusandcressida,1602\nHark,12,troilusandcressida,1602\nyoung,12,troilusandcressida,1602\nquestion,12,troilusandcressida,1602\nmind,12,troilusandcressida,1602\nThen,12,troilusandcressida,1602\nonce,12,troilusandcressida,1602\nwho,12,troilusandcressida,1602\narms,12,troilusandcressida,1602\nGreece,12,troilusandcressida,1602\nold,12,troilusandcressida,1602\nTrojans,12,troilusandcressida,1602\ncry,12,troilusandcressida,1602\nbeing,12,troilusandcressida,1602\nnature,12,troilusandcressida,1602\no'er,13,troilusandcressida,1602\nWill,13,troilusandcressida,1602\nworld,13,troilusandcressida,1602\nwords,13,troilusandcressida,1602\nvoice,13,troilusandcressida,1602\nAt,13,troilusandcressida,1602\nname,13,troilusandcressida,1602\ndeeds,13,troilusandcressida,1602\nCressida,13,troilusandcressida,1602\nplace,13,troilusandcressida,1602\nhalf,13,troilusandcressida,1602\nlittle,13,troilusandcressida,1602\nshow,13,troilusandcressida,1602\nShe,13,troilusandcressida,1602\nsame,13,troilusandcressida,1602\noff,13,troilusandcressida,1602\nPriam,13,troilusandcressida,1602\npoor,13,troilusandcressida,1602\nthoughts,13,troilusandcressida,1602\nbeauty,13,troilusandcressida,1602\ntwo,13,troilusandcressida,1602\nwithout,13,troilusandcressida,1602\nbrave,14,troilusandcressida,1602\nboth,14,troilusandcressida,1602\nelse,14,troilusandcressida,1602\nnever,14,troilusandcressida,1602\ngone,14,troilusandcressida,1602\nbreath,14,troilusandcressida,1602\ncousin,14,troilusandcressida,1602\nkeep,14,troilusandcressida,1602\nnone,14,troilusandcressida,1602\nknows,14,troilusandcressida,1602\nEven,14,troilusandcressida,1602\nreason,14,troilusandcressida,1602\nhold,14,troilusandcressida,1602\npurpose,14,troilusandcressida,1602\nfather,14,troilusandcressida,1602\nWhere,14,troilusandcressida,1602\nmeet,15,troilusandcressida,1602\nthought,15,troilusandcressida,1602\nhead,15,troilusandcressida,1602\ndeath,15,troilusandcressida,1602\neach,15,troilusandcressida,1602\nhas,15,troilusandcressida,1602\nGo,15,troilusandcressida,1602\nbear,15,troilusandcressida,1602\ndear,15,troilusandcressida,1602\nhot,15,troilusandcressida,1602\nprince,15,troilusandcressida,1602\nThan,15,troilusandcressida,1602\ninto,15,troilusandcressida,1602\nthere's,15,troilusandcressida,1602\nwar,15,troilusandcressida,1602\nShall,15,troilusandcressida,1602\nuncle,15,troilusandcressida,1602\nNestor,15,troilusandcressida,1602\nanswer,16,troilusandcressida,1602\nsoul,16,troilusandcressida,1602\nanother,16,troilusandcressida,1602\nThere,16,troilusandcressida,1602\nfear,16,troilusandcressida,1602\nwelcome,16,troilusandcressida,1602\npraise,16,troilusandcressida,1602\nbefore,16,troilusandcressida,1602\nway,16,troilusandcressida,1602\nkiss,16,troilusandcressida,1602\nstrong,16,troilusandcressida,1602\nPandarus,16,troilusandcressida,1602\ncannot,16,troilusandcressida,1602\nNor,17,troilusandcressida,1602\nNot,17,troilusandcressida,1602\nnothing,17,troilusandcressida,1602\nworth,17,troilusandcressida,1602\nfalse,17,troilusandcressida,1602\nenter,17,troilusandcressida,1602\nproud,17,troilusandcressida,1602\nvaliant,17,troilusandcressida,1602\nwhose,17,troilusandcressida,1602\ni',17,troilusandcressida,1602\nUlysses,17,troilusandcressida,1602\nLord,17,troilusandcressida,1602\nmine,17,troilusandcressida,1602\nwhy,17,troilusandcressida,1602\nWell,17,troilusandcressida,1602\n'Tis,17,troilusandcressida,1602\nwhat's,17,troilusandcressida,1602\nmy,273,troilusandcressida,1602\nhear,18,troilusandcressida,1602\nfull,18,troilusandcressida,1602\nBy,18,troilusandcressida,1602\nthose,18,troilusandcressida,1602\nwhere,18,troilusandcressida,1602\neye,18,troilusandcressida,1602\nCASSANDRA,18,troilusandcressida,1602\ncould,18,troilusandcressida,1602\npride,18,troilusandcressida,1602\nleave,18,troilusandcressida,1602\nmen,18,troilusandcressida,1602\ndid,18,troilusandcressida,1602\nlife,19,troilusandcressida,1602\ntruth,19,troilusandcressida,1602\nsome,19,troilusandcressida,1602\nHELEN,19,troilusandcressida,1602\nsword,19,troilusandcressida,1602\nDo,19,troilusandcressida,1602\ndown,19,troilusandcressida,1602\nlook,19,troilusandcressida,1602\nAEneas,19,troilusandcressida,1602\nThey,19,troilusandcressida,1602\nqueen,19,troilusandcressida,1602\nbrother,20,troilusandcressida,1602\nbring,20,troilusandcressida,1602\nWhich,20,troilusandcressida,1602\nMENELAUS,20,troilusandcressida,1602\nfield,20,troilusandcressida,1602\nvery,20,troilusandcressida,1602\nHector's,20,troilusandcressida,1602\nnor,20,troilusandcressida,1602\nstill,20,troilusandcressida,1602\nword,20,troilusandcressida,1602\nlady,20,troilusandcressida,1602\nitself,21,troilusandcressida,1602\nOr,21,troilusandcressida,1602\nfaith,21,troilusandcressida,1602\nwit,21,troilusandcressida,1602\nstand,21,troilusandcressida,1602\nGreeks,21,troilusandcressida,1602\ntime,21,troilusandcressida,1602\nwhich,22,troilusandcressida,1602\nWe,22,troilusandcressida,1602\ncan,22,troilusandcressida,1602\ngeneral,22,troilusandcressida,1602\nGreek,22,troilusandcressida,1602\nNay,23,troilusandcressida,1602\nevery,23,troilusandcressida,1602\nbetter,23,troilusandcressida,1602\nServant,23,troilusandcressida,1602\nHere,23,troilusandcressida,1602\nany,23,troilusandcressida,1602\ndone,23,troilusandcressida,1602\nthing,23,troilusandcressida,1602\nown,23,troilusandcressida,1602\nPatroclus,23,troilusandcressida,1602\nthus,23,troilusandcressida,1602\nother,23,troilusandcressida,1602\nThersites,24,troilusandcressida,1602\ncall,24,troilusandcressida,1602\npart,24,troilusandcressida,1602\nACT,24,troilusandcressida,1602\nagain,24,troilusandcressida,1602\nCome,25,troilusandcressida,1602\nNow,25,troilusandcressida,1602\nWho,25,troilusandcressida,1602\nsir,25,troilusandcressida,1602\nmatter,25,troilusandcressida,1602\nhad,25,troilusandcressida,1602\nIt,25,troilusandcressida,1602\nmany,25,troilusandcressida,1602\ncomes,25,troilusandcressida,1602\ngods,25,troilusandcressida,1602\nSCENE,25,troilusandcressida,1602\nhimself,25,troilusandcressida,1602\nAgamemnon,25,troilusandcressida,1602\nfight,26,troilusandcressida,1602\nhonour,26,troilusandcressida,1602\nIs,26,troilusandcressida,1602\nmost,26,troilusandcressida,1602\nart,26,troilusandcressida,1602\nfool,26,troilusandcressida,1602\nThou,26,troilusandcressida,1602\nThis,26,troilusandcressida,1602\nAND,26,troilusandcressida,1602\nmorrow,26,troilusandcressida,1602\nSo,27,troilusandcressida,1602\nHelen,27,troilusandcressida,1602\nthink,27,troilusandcressida,1602\nOf,28,troilusandcressida,1602\nblood,28,troilusandcressida,1602\nhand,28,troilusandcressida,1602\ntake,28,troilusandcressida,1602\nWhen,28,troilusandcressida,1602\nWith,29,troilusandcressida,1602\nthese,29,troilusandcressida,1602\nAy,29,troilusandcressida,1602\nnight,29,troilusandcressida,1602\nDiomed,30,troilusandcressida,1602\ntent,30,troilusandcressida,1602\nGood,30,troilusandcressida,1602\ndoth,30,troilusandcressida,1602\ntrue,30,troilusandcressida,1602\nCressid,30,troilusandcressida,1602\nup,31,troilusandcressida,1602\nGrecian,31,troilusandcressida,1602\nTrojan,31,troilusandcressida,1602\neyes,32,troilusandcressida,1602\nParis,33,troilusandcressida,1602\nFor,35,troilusandcressida,1602\n'tis,35,troilusandcressida,1602\nspeak,35,troilusandcressida,1602\nmake,35,troilusandcressida,1602\nLet,35,troilusandcressida,1602\nPARIS,36,troilusandcressida,1602\nExeunt,36,troilusandcressida,1602\nyet,36,troilusandcressida,1602\nam,36,troilusandcressida,1602\nmuch,37,troilusandcressida,1602\nday,37,troilusandcressida,1602\nmay,37,troilusandcressida,1602\nMy,38,troilusandcressida,1602\nheart,38,troilusandcressida,1602\nNo,39,troilusandcressida,1602\nshould,39,troilusandcressida,1602\nwhen,39,troilusandcressida,1602\nlet,40,troilusandcressida,1602\n',41,troilusandcressida,1602\ngive,41,troilusandcressida,1602\nwell,41,troilusandcressida,1602\nnot,297,troilusandcressida,1602\nupon,42,troilusandcressida,1602\nIf,42,troilusandcressida,1602\nHow,42,troilusandcressida,1602\nfair,42,troilusandcressida,1602\nExit,42,troilusandcressida,1602\nknow,43,troilusandcressida,1602\nhow,43,troilusandcressida,1602\nWhy,44,troilusandcressida,1602\nthem,44,troilusandcressida,1602\nHe,44,troilusandcressida,1602\nwas,44,troilusandcressida,1602\nout,44,troilusandcressida,1602\nsweet,44,troilusandcressida,1602\ntoo,45,troilusandcressida,1602\nPATROCLUS,46,troilusandcressida,1602\nis,302,troilusandcressida,1602\nmust,47,troilusandcressida,1602\nsee,47,troilusandcressida,1602\nsuch,47,troilusandcressida,1602\nwere,48,troilusandcressida,1602\nsay,49,troilusandcressida,1602\ntell,49,troilusandcressida,1602\nIn,49,troilusandcressida,1602\ngood,49,troilusandcressida,1602\nNESTOR,51,troilusandcressida,1602\nthen,53,troilusandcressida,1602\ntheir,53,troilusandcressida,1602\nif,53,troilusandcressida,1602\nlike,54,troilusandcressida,1602\nAjax,54,troilusandcressida,1602\nus,54,troilusandcressida,1602\nA,55,troilusandcressida,1602\nhere,55,troilusandcressida,1602\nhath,55,troilusandcressida,1602\nthey,56,troilusandcressida,1602\none,56,troilusandcressida,1602\ngreat,57,troilusandcressida,1602\nAENEAS,58,troilusandcressida,1602\nan,60,troilusandcressida,1602\ngo,61,troilusandcressida,1602\nshe,63,troilusandcressida,1602\nlove,63,troilusandcressida,1602\nYou,64,troilusandcressida,1602\nin,320,troilusandcressida,1602\nAGAMEMNON,66,troilusandcressida,1602\nTroy,66,troilusandcressida,1602\nAJAX,66,troilusandcressida,1602\nwould,66,troilusandcressida,1602\nor,67,troilusandcressida,1602\nat,68,troilusandcressida,1602\nEnter,68,troilusandcressida,1602\ncome,68,troilusandcressida,1602\nAchilles,70,troilusandcressida,1602\nHECTOR,70,troilusandcressida,1602\nAs,71,troilusandcressida,1602\nfrom,71,troilusandcressida,1602\nman,72,troilusandcressida,1602\nmore,73,troilusandcressida,1602\nDIOMEDES,74,troilusandcressida,1602\nThat,74,troilusandcressida,1602\nthere,75,troilusandcressida,1602\nthan,77,troilusandcressida,1602\nwe,78,troilusandcressida,1602\nWhat,79,troilusandcressida,1602\nTroilus,80,troilusandcressida,1602\nBut,80,troilusandcressida,1602\nO,81,troilusandcressida,1602\nnow,83,troilusandcressida,1602\nI'll,84,troilusandcressida,1602\nby,86,troilusandcressida,1602\non,87,troilusandcressida,1602\nACHILLES,88,troilusandcressida,1602\nthee,90,troilusandcressida,1602\nno,90,troilusandcressida,1602\nthy,90,troilusandcressida,1602\nand,602,troilusandcressida,1602\nULYSSES,94,troilusandcressida,1602\nlord,96,troilusandcressida,1602\nare,97,troilusandcressida,1602\nTHERSITES,98,troilusandcressida,1602\nTo,101,troilusandcressida,1602\nwhat,103,troilusandcressida,1602\nour,104,troilusandcressida,1602\nHector,104,troilusandcressida,1602\nshall,111,troilusandcressida,1602\nher,113,troilusandcressida,1602\nyou,371,troilusandcressida,1602\nyour,116,troilusandcressida,1602\nso,116,troilusandcressida,1602\nbut,120,troilusandcressida,1602\nthou,121,troilusandcressida,1602\ndo,126,troilusandcressida,1602\nThe,128,troilusandcressida,1602\nall,134,troilusandcressida,1602\nwill,135,troilusandcressida,1602\nthis,140,troilusandcressida,1602\nhave,142,troilusandcressida,1602\nfor,145,troilusandcressida,1602\na,410,troilusandcressida,1602\nit,163,troilusandcressida,1602\nas,167,troilusandcressida,1602\nPANDARUS,167,troilusandcressida,1602\nbe,179,troilusandcressida,1602\nAnd,181,troilusandcressida,1602\nhe,183,troilusandcressida,1602\nTROILUS,184,troilusandcressida,1602\nwith,184,troilusandcressida,1602\nhim,187,troilusandcressida,1602\nme,187,troilusandcressida,1602\nCRESSIDA,190,troilusandcressida,1602\nthe,715,troilusandcressida,1602\nhis,223,troilusandcressida,1602\nof,479,troilusandcressida,1602\nthat,231,troilusandcressida,1602\nto,492,troilusandcressida,1602\nI,505,troilusandcressida,1602\nprofession,1,merrywivesofwindsor,1600\njer,1,merrywivesofwindsor,1600\nencompassed,1,merrywivesofwindsor,1600\nmalecontents,1,merrywivesofwindsor,1600\nGarter's,1,merrywivesofwindsor,1600\ntroubles,1,merrywivesofwindsor,1600\nscrape,1,merrywivesofwindsor,1600\nforbid,1,merrywivesofwindsor,1600\n'larum,1,merrywivesofwindsor,1600\nchairs,1,merrywivesofwindsor,1600\npiss,1,merrywivesofwindsor,1600\nC,1,merrywivesofwindsor,1600\nsped,1,merrywivesofwindsor,1600\nparted,1,merrywivesofwindsor,1600\nverba,1,merrywivesofwindsor,1600\nQuick,1,merrywivesofwindsor,1600\nCorrupt,1,merrywivesofwindsor,1600\ntransform,1,merrywivesofwindsor,1600\npuddings,1,merrywivesofwindsor,1600\nswords,1,merrywivesofwindsor,1600\npinse,1,merrywivesofwindsor,1600\nverbs,1,merrywivesofwindsor,1600\ngrey,1,merrywivesofwindsor,1600\nmeed,1,merrywivesofwindsor,1600\nYouth,1,merrywivesofwindsor,1600\nenjoyed,1,merrywivesofwindsor,1600\npity,1,merrywivesofwindsor,1600\nhappier,1,merrywivesofwindsor,1600\nFed,1,merrywivesofwindsor,1600\nprovocation,1,merrywivesofwindsor,1600\nBully,1,merrywivesofwindsor,1600\nmistaking,1,merrywivesofwindsor,1600\ntaking,1,merrywivesofwindsor,1600\nrebukes,1,merrywivesofwindsor,1600\ndays,1,merrywivesofwindsor,1600\nfornications,1,merrywivesofwindsor,1600\ny,1,merrywivesofwindsor,1600\neasing,1,merrywivesofwindsor,1600\nafar,1,merrywivesofwindsor,1600\nmussel,1,merrywivesofwindsor,1600\ndescription,1,merrywivesofwindsor,1600\nstoccadoes,1,merrywivesofwindsor,1600\nVillany,1,merrywivesofwindsor,1600\nassay,1,merrywivesofwindsor,1600\nrammed,1,merrywivesofwindsor,1600\nHear,1,merrywivesofwindsor,1600\nleisure,1,merrywivesofwindsor,1600\ndouble,1,merrywivesofwindsor,1600\nDevise,1,merrywivesofwindsor,1600\nwears,1,merrywivesofwindsor,1600\nFrenchman,1,merrywivesofwindsor,1600\nraw,1,merrywivesofwindsor,1600\nworships',1,merrywivesofwindsor,1600\nhorse,1,merrywivesofwindsor,1600\nbusiness,1,merrywivesofwindsor,1600\ntwin,1,merrywivesofwindsor,1600\nfollowing,1,merrywivesofwindsor,1600\nvizards,1,merrywivesofwindsor,1600\nneighbours,1,merrywivesofwindsor,1600\npeasant,1,merrywivesofwindsor,1600\ndismayed,1,merrywivesofwindsor,1600\nfollies,1,merrywivesofwindsor,1600\no'erlook'd,1,merrywivesofwindsor,1600\ndine,1,merrywivesofwindsor,1600\nmusket,1,merrywivesofwindsor,1600\nbrows,1,merrywivesofwindsor,1600\nlawful,1,merrywivesofwindsor,1600\n'horum,1,merrywivesofwindsor,1600\nbrown,1,merrywivesofwindsor,1600\nWhether,1,merrywivesofwindsor,1600\nregress,1,merrywivesofwindsor,1600\ndagger,1,merrywivesofwindsor,1600\nwhitsters,1,merrywivesofwindsor,1600\nhelp,1,merrywivesofwindsor,1600\nVillain,1,merrywivesofwindsor,1600\n'Nay,1,merrywivesofwindsor,1600\nfoolery,1,merrywivesofwindsor,1600\nelement,1,merrywivesofwindsor,1600\noutrun,1,merrywivesofwindsor,1600\ndissolutely,1,merrywivesofwindsor,1600\noffended,1,merrywivesofwindsor,1600\nrobe,1,merrywivesofwindsor,1600\nruminates,1,merrywivesofwindsor,1600\noffender,1,merrywivesofwindsor,1600\ndoubtful,1,merrywivesofwindsor,1600\nscene,1,merrywivesofwindsor,1600\nperadventures,1,merrywivesofwindsor,1600\napprehended,1,merrywivesofwindsor,1600\nchiding,1,merrywivesofwindsor,1600\n'Convey,1,merrywivesofwindsor,1600\nmuse,1,merrywivesofwindsor,1600\njoy,1,merrywivesofwindsor,1600\neasily,1,merrywivesofwindsor,1600\nspace,1,merrywivesofwindsor,1600\nambling,1,merrywivesofwindsor,1600\nwaxen,1,merrywivesofwindsor,1600\nsimples,1,merrywivesofwindsor,1600\nhearths,1,merrywivesofwindsor,1600\ndiscourses,1,merrywivesofwindsor,1600\nconstruction,1,merrywivesofwindsor,1600\nmelt,1,merrywivesofwindsor,1600\nStar,1,merrywivesofwindsor,1600\nwhale,1,merrywivesofwindsor,1600\nchimneys,1,merrywivesofwindsor,1600\nexteriors,1,merrywivesofwindsor,1600\nemulate,1,merrywivesofwindsor,1600\nfreer,1,merrywivesofwindsor,1600\nmess,1,merrywivesofwindsor,1600\nsingly,1,merrywivesofwindsor,1600\nprat,1,merrywivesofwindsor,1600\npainted,1,merrywivesofwindsor,1600\nauthentic,1,merrywivesofwindsor,1600\neasier,1,merrywivesofwindsor,1600\ngiantess,1,merrywivesofwindsor,1600\nMust,1,merrywivesofwindsor,1600\nunreasonable,1,merrywivesofwindsor,1600\ntrunk,1,merrywivesofwindsor,1600\nproceedings,1,merrywivesofwindsor,1600\nmere,1,merrywivesofwindsor,1600\nviolent,1,merrywivesofwindsor,1600\nTester,1,merrywivesofwindsor,1600\nvais,1,merrywivesofwindsor,1600\ndecay,1,merrywivesofwindsor,1600\ncelestial,1,merrywivesofwindsor,1600\nCried,1,merrywivesofwindsor,1600\nchest,1,merrywivesofwindsor,1600\nunwholesome,1,merrywivesofwindsor,1600\ndisease,1,merrywivesofwindsor,1600\nurchins,1,merrywivesofwindsor,1600\nrecourse,1,merrywivesofwindsor,1600\nskirts,1,merrywivesofwindsor,1600\nStep,1,merrywivesofwindsor,1600\nhonourable,1,merrywivesofwindsor,1600\nalligant,1,merrywivesofwindsor,1600\nirreligious,1,merrywivesofwindsor,1600\noffer,1,merrywivesofwindsor,1600\nwhipped,1,merrywivesofwindsor,1600\nadversary,1,merrywivesofwindsor,1600\nPickt,1,merrywivesofwindsor,1600\nWoman,1,merrywivesofwindsor,1600\nragg'd,1,merrywivesofwindsor,1600\nWife,1,merrywivesofwindsor,1600\nCrier,1,merrywivesofwindsor,1600\nadvance,1,merrywivesofwindsor,1600\nsugar,1,merrywivesofwindsor,1600\nwield,1,merrywivesofwindsor,1600\nmaintain,1,merrywivesofwindsor,1600\nfury,1,merrywivesofwindsor,1600\ndeclined,1,merrywivesofwindsor,1600\nknighthood's,1,merrywivesofwindsor,1600\nnowhere,1,merrywivesofwindsor,1600\nworms,1,merrywivesofwindsor,1600\nPolecats,1,merrywivesofwindsor,1600\nlies,1,merrywivesofwindsor,1600\nlaundry,1,merrywivesofwindsor,1600\nodds,1,merrywivesofwindsor,1600\nabsolute,1,merrywivesofwindsor,1600\noffal,1,merrywivesofwindsor,1600\nrut,1,merrywivesofwindsor,1600\nancestors,1,merrywivesofwindsor,1600\npleasures,1,merrywivesofwindsor,1600\ndisobedience,1,merrywivesofwindsor,1600\nWhoa,1,merrywivesofwindsor,1600\nLocking,1,merrywivesofwindsor,1600\n'marry,1,merrywivesofwindsor,1600\nbaggage,1,merrywivesofwindsor,1600\nscruple,1,merrywivesofwindsor,1600\nearls,1,merrywivesofwindsor,1600\ncheques,1,merrywivesofwindsor,1600\nUpon,1,merrywivesofwindsor,1600\nmusk,1,merrywivesofwindsor,1600\nPERSONAE,1,merrywivesofwindsor,1600\nAnthropophaginian,1,merrywivesofwindsor,1600\nproclaim,1,merrywivesofwindsor,1600\ngreyhound,1,merrywivesofwindsor,1600\nGloucester,1,merrywivesofwindsor,1600\nBuckled,1,merrywivesofwindsor,1600\ncouched,1,merrywivesofwindsor,1600\nbaited,1,merrywivesofwindsor,1600\ndeservest,1,merrywivesofwindsor,1600\ncast,1,merrywivesofwindsor,1600\nshovel,1,merrywivesofwindsor,1600\nPrevent,1,merrywivesofwindsor,1600\nteaches,1,merrywivesofwindsor,1600\nearly,1,merrywivesofwindsor,1600\nsoftly,1,merrywivesofwindsor,1600\nattempt,1,merrywivesofwindsor,1600\nwalking,1,merrywivesofwindsor,1600\nCarry,1,merrywivesofwindsor,1600\nliar,1,merrywivesofwindsor,1600\nterrestrial,1,merrywivesofwindsor,1600\nagrees,1,merrywivesofwindsor,1600\npractised,1,merrywivesofwindsor,1600\ndelivered,1,merrywivesofwindsor,1600\nwalnut,1,merrywivesofwindsor,1600\nheartlings,1,merrywivesofwindsor,1600\nbending,1,merrywivesofwindsor,1600\nsons,1,merrywivesofwindsor,1600\ndraw,1,merrywivesofwindsor,1600\nstock,1,merrywivesofwindsor,1600\ntasking,1,merrywivesofwindsor,1600\nfriend's,1,merrywivesofwindsor,1600\ndrive,1,merrywivesofwindsor,1600\nspies,1,merrywivesofwindsor,1600\nsold,1,merrywivesofwindsor,1600\nCataian,1,merrywivesofwindsor,1600\nrevellers,1,merrywivesofwindsor,1600\nYoung,1,merrywivesofwindsor,1600\nskirted,1,merrywivesofwindsor,1600\ncabbage,1,merrywivesofwindsor,1600\nsat,1,merrywivesofwindsor,1600\nentrails,1,merrywivesofwindsor,1600\nyearn,1,merrywivesofwindsor,1600\nbuffets,1,merrywivesofwindsor,1600\nsoit,1,merrywivesofwindsor,1600\nbilberry,1,merrywivesofwindsor,1600\nfighter,1,merrywivesofwindsor,1600\nunswept,1,merrywivesofwindsor,1600\nVherefore,1,merrywivesofwindsor,1600\ncrying,1,merrywivesofwindsor,1600\nboards,1,merrywivesofwindsor,1600\nPerforce,1,merrywivesofwindsor,1600\nbrother,1,merrywivesofwindsor,1600\nthou'rt,1,merrywivesofwindsor,1600\ngelding,1,merrywivesofwindsor,1600\nMercy,1,merrywivesofwindsor,1600\nplight,1,merrywivesofwindsor,1600\nheat,1,merrywivesofwindsor,1600\nrestitution,1,merrywivesofwindsor,1600\nanchor,1,merrywivesofwindsor,1600\nadditions,1,merrywivesofwindsor,1600\ndiffers,1,merrywivesofwindsor,1600\nThomas,1,merrywivesofwindsor,1600\ntoward,1,merrywivesofwindsor,1600\nheal,1,merrywivesofwindsor,1600\ndejected,1,merrywivesofwindsor,1600\ndrew,1,merrywivesofwindsor,1600\nworthier,1,merrywivesofwindsor,1600\ncharactery,1,merrywivesofwindsor,1600\npronoun,1,merrywivesofwindsor,1600\nwants,1,merrywivesofwindsor,1600\ndwarf,1,merrywivesofwindsor,1600\nmadness,1,merrywivesofwindsor,1600\ngolden,1,merrywivesofwindsor,1600\ndissolve,1,merrywivesofwindsor,1600\ndemands,1,merrywivesofwindsor,1600\npaper,1,merrywivesofwindsor,1600\npipe,1,merrywivesofwindsor,1600\nTarry,1,merrywivesofwindsor,1600\nofficers,1,merrywivesofwindsor,1600\nglass,1,merrywivesofwindsor,1600\nchimney,1,merrywivesofwindsor,1600\nphilosophers,1,merrywivesofwindsor,1600\nJamany,1,merrywivesofwindsor,1600\neringoes,1,merrywivesofwindsor,1600\nsoft,1,merrywivesofwindsor,1600\nMethinks,1,merrywivesofwindsor,1600\nriches,1,merrywivesofwindsor,1600\nblessed,1,merrywivesofwindsor,1600\npurity,1,merrywivesofwindsor,1600\nconfessed,1,merrywivesofwindsor,1600\nvisit,1,merrywivesofwindsor,1600\nElves,1,merrywivesofwindsor,1600\npaltry,1,merrywivesofwindsor,1600\nCupid,1,merrywivesofwindsor,1600\nfartuous,1,merrywivesofwindsor,1600\nGentle,1,merrywivesofwindsor,1600\ngroats,1,merrywivesofwindsor,1600\nsinful,1,merrywivesofwindsor,1600\nview,1,merrywivesofwindsor,1600\nocean,1,merrywivesofwindsor,1600\nadhere,1,merrywivesofwindsor,1600\nplucked,1,merrywivesofwindsor,1600\nsix,1,merrywivesofwindsor,1600\nhereafter,1,merrywivesofwindsor,1600\n'omans,1,merrywivesofwindsor,1600\nforeigner,1,merrywivesofwindsor,1600\nembassy,1,merrywivesofwindsor,1600\nwhatsoever,1,merrywivesofwindsor,1600\ntalked,1,merrywivesofwindsor,1600\nsip,1,merrywivesofwindsor,1600\nsums,1,merrywivesofwindsor,1600\nstands,1,merrywivesofwindsor,1600\nsin,1,merrywivesofwindsor,1600\nbound,1,merrywivesofwindsor,1600\nedition,1,merrywivesofwindsor,1600\nken,1,merrywivesofwindsor,1600\nvizarded,1,merrywivesofwindsor,1600\nhosts,1,merrywivesofwindsor,1600\n'twere,1,merrywivesofwindsor,1600\nkey,1,merrywivesofwindsor,1600\nthink'st,1,merrywivesofwindsor,1600\nhailstones,1,merrywivesofwindsor,1600\ncour,1,merrywivesofwindsor,1600\nmeetings,1,merrywivesofwindsor,1600\ninvention,1,merrywivesofwindsor,1600\nplural,1,merrywivesofwindsor,1600\nflying,1,merrywivesofwindsor,1600\nexchequers,1,merrywivesofwindsor,1600\ncareires,1,merrywivesofwindsor,1600\ncatching,1,merrywivesofwindsor,1600\ncowl,1,merrywivesofwindsor,1600\ndeceit,1,merrywivesofwindsor,1600\nlanded,1,merrywivesofwindsor,1600\nthrong,1,merrywivesofwindsor,1600\nrushling,1,merrywivesofwindsor,1600\npeevish,1,merrywivesofwindsor,1600\ndisposed,1,merrywivesofwindsor,1600\nWalk,1,merrywivesofwindsor,1600\nabused,1,merrywivesofwindsor,1600\nyield,1,merrywivesofwindsor,1600\nscore,1,merrywivesofwindsor,1600\nperil,1,merrywivesofwindsor,1600\nunduteous,1,merrywivesofwindsor,1600\nsot,1,merrywivesofwindsor,1600\nshades,1,merrywivesofwindsor,1600\nChat,1,merrywivesofwindsor,1600\nPelion,1,merrywivesofwindsor,1600\nSuch,1,merrywivesofwindsor,1600\njustices,1,merrywivesofwindsor,1600\nskill,1,merrywivesofwindsor,1600\nSongs,1,merrywivesofwindsor,1600\nconfident,1,merrywivesofwindsor,1600\nembolden'd,1,merrywivesofwindsor,1600\n'a,1,merrywivesofwindsor,1600\nfollower,1,merrywivesofwindsor,1600\nPible,1,merrywivesofwindsor,1600\nFlemish,1,merrywivesofwindsor,1600\nfollowed,1,merrywivesofwindsor,1600\nlooking,1,merrywivesofwindsor,1600\n'I,1,merrywivesofwindsor,1600\nashore,1,merrywivesofwindsor,1600\ncountenance,1,merrywivesofwindsor,1600\ncozen,1,merrywivesofwindsor,1600\n't,1,merrywivesofwindsor,1600\nslighted,1,merrywivesofwindsor,1600\ntaunt,1,merrywivesofwindsor,1600\nHeavens,1,merrywivesofwindsor,1600\ndisgrace,1,merrywivesofwindsor,1600\nwoodman,1,merrywivesofwindsor,1600\nfirmly,1,merrywivesofwindsor,1600\nstudy,1,merrywivesofwindsor,1600\nhallowmas,1,merrywivesofwindsor,1600\nmiddle,1,merrywivesofwindsor,1600\npitiful,1,merrywivesofwindsor,1600\nsky,1,merrywivesofwindsor,1600\nunweighed,1,merrywivesofwindsor,1600\nfaults,1,merrywivesofwindsor,1600\n'Boarding,1,merrywivesofwindsor,1600\nleague,1,merrywivesofwindsor,1600\nbecomes,1,merrywivesofwindsor,1600\nquittance,1,merrywivesofwindsor,1600\nunconfinable,1,merrywivesofwindsor,1600\nprospered,1,merrywivesofwindsor,1600\nabstract,1,merrywivesofwindsor,1600\nthieves,1,merrywivesofwindsor,1600\nworst,1,merrywivesofwindsor,1600\nFleming,1,merrywivesofwindsor,1600\nsharpers,1,merrywivesofwindsor,1600\neverlasting,1,merrywivesofwindsor,1600\nmerit,1,merrywivesofwindsor,1600\nskins,1,merrywivesofwindsor,1600\nheavens,1,merrywivesofwindsor,1600\nWittol,1,merrywivesofwindsor,1600\nThese,1,merrywivesofwindsor,1600\ncompound,1,merrywivesofwindsor,1600\nmusing,1,merrywivesofwindsor,1600\nj'oublie,1,merrywivesofwindsor,1600\nvanish,1,merrywivesofwindsor,1600\nshowed,1,merrywivesofwindsor,1600\nMachiavel,1,merrywivesofwindsor,1600\nsnow,1,merrywivesofwindsor,1600\nstamps,1,merrywivesofwindsor,1600\ninvitation,1,merrywivesofwindsor,1600\nportly,1,merrywivesofwindsor,1600\nblooded,1,merrywivesofwindsor,1600\ndances,1,merrywivesofwindsor,1600\nmarring,1,merrywivesofwindsor,1600\nOui,1,merrywivesofwindsor,1600\nridden,1,merrywivesofwindsor,1600\nturd,1,merrywivesofwindsor,1600\nchased,1,merrywivesofwindsor,1600\nprofess,1,merrywivesofwindsor,1600\nVenetian,1,merrywivesofwindsor,1600\nshower,1,merrywivesofwindsor,1600\ncommon,1,merrywivesofwindsor,1600\nAmaimon,1,merrywivesofwindsor,1600\ncavaleiro,1,merrywivesofwindsor,1600\nhabit,1,merrywivesofwindsor,1600\nfigure,1,merrywivesofwindsor,1600\nEvans,1,merrywivesofwindsor,1600\nsluttery,1,merrywivesofwindsor,1600\nshilling,1,merrywivesofwindsor,1600\ntuns,1,merrywivesofwindsor,1600\ndirect,1,merrywivesofwindsor,1600\nTurk,1,merrywivesofwindsor,1600\nking's,1,merrywivesofwindsor,1600\nreek,1,merrywivesofwindsor,1600\ncavaleire,1,merrywivesofwindsor,1600\nAloud,1,merrywivesofwindsor,1600\ndecrease,1,merrywivesofwindsor,1600\nscold,1,merrywivesofwindsor,1600\ncashiered,1,merrywivesofwindsor,1600\nstarings,1,merrywivesofwindsor,1600\nencounter,1,merrywivesofwindsor,1600\naffected,1,merrywivesofwindsor,1600\ninstance,1,merrywivesofwindsor,1600\nbribe,1,merrywivesofwindsor,1600\ngrated,1,merrywivesofwindsor,1600\ncivility,1,merrywivesofwindsor,1600\nconsented,1,merrywivesofwindsor,1600\nwilling,1,merrywivesofwindsor,1600\nlubberly,1,merrywivesofwindsor,1600\npearl,1,merrywivesofwindsor,1600\nLeave,1,merrywivesofwindsor,1600\nthrummed,1,merrywivesofwindsor,1600\nunkennel,1,merrywivesofwindsor,1600\nthaw,1,merrywivesofwindsor,1600\nluces,1,merrywivesofwindsor,1600\nsue,1,merrywivesofwindsor,1600\ncries,1,merrywivesofwindsor,1600\ncoloured,1,merrywivesofwindsor,1600\noverthrown,1,merrywivesofwindsor,1600\nturnips,1,merrywivesofwindsor,1600\ndraught,1,merrywivesofwindsor,1600\nsinger,1,merrywivesofwindsor,1600\nelder,1,merrywivesofwindsor,1600\ncompanion,1,merrywivesofwindsor,1600\nrush,1,merrywivesofwindsor,1600\nbuttered,1,merrywivesofwindsor,1600\ncircled,1,merrywivesofwindsor,1600\nrecovery,1,merrywivesofwindsor,1600\ninfinite,1,merrywivesofwindsor,1600\ndirected,1,merrywivesofwindsor,1600\nblind,1,merrywivesofwindsor,1600\nneighbourhood,1,merrywivesofwindsor,1600\nSearch,1,merrywivesofwindsor,1600\nupon't,1,merrywivesofwindsor,1600\nquart,1,merrywivesofwindsor,1600\ncuckoo,1,merrywivesofwindsor,1600\ncorrupt,1,merrywivesofwindsor,1600\nconceal,1,merrywivesofwindsor,1600\npinnace,1,merrywivesofwindsor,1600\nbehaviors,1,merrywivesofwindsor,1600\nweather,1,merrywivesofwindsor,1600\npumpion,1,merrywivesofwindsor,1600\nwing,1,merrywivesofwindsor,1600\nlanterns,1,merrywivesofwindsor,1600\nputting,1,merrywivesofwindsor,1600\nporter,1,merrywivesofwindsor,1600\nFly,1,merrywivesofwindsor,1600\nprofessions,1,merrywivesofwindsor,1600\nprunes,1,merrywivesofwindsor,1600\nmanor,1,merrywivesofwindsor,1600\nparliament,1,merrywivesofwindsor,1600\nhumidity,1,merrywivesofwindsor,1600\nTrudge,1,merrywivesofwindsor,1600\nbenevolence,1,merrywivesofwindsor,1600\nwished,1,merrywivesofwindsor,1600\nattired,1,merrywivesofwindsor,1600\ntap,1,merrywivesofwindsor,1600\nMiller,1,merrywivesofwindsor,1600\ntam,1,merrywivesofwindsor,1600\nsoever,1,merrywivesofwindsor,1600\nmoneys,1,merrywivesofwindsor,1600\ncomedy,1,merrywivesofwindsor,1600\ndreamed,1,merrywivesofwindsor,1600\ntitle,1,merrywivesofwindsor,1600\nseems,1,merrywivesofwindsor,1600\nlatter,1,merrywivesofwindsor,1600\nwether,1,merrywivesofwindsor,1600\nOne,1,merrywivesofwindsor,1600\norld,1,merrywivesofwindsor,1600\nhence,1,merrywivesofwindsor,1600\nobsequious,1,merrywivesofwindsor,1600\nlatten,1,merrywivesofwindsor,1600\nwholly,1,merrywivesofwindsor,1600\nbarrow,1,merrywivesofwindsor,1600\nEnglishman,1,merrywivesofwindsor,1600\noyes,1,merrywivesofwindsor,1600\nhates,1,merrywivesofwindsor,1600\ngoose,1,merrywivesofwindsor,1600\nhujus,1,merrywivesofwindsor,1600\nbolt,1,merrywivesofwindsor,1600\ntrifles,1,merrywivesofwindsor,1600\nunseasoned,1,merrywivesofwindsor,1600\ntransformed,1,merrywivesofwindsor,1600\nCousin,1,merrywivesofwindsor,1600\ntranslated,1,merrywivesofwindsor,1600\nimportuned,1,merrywivesofwindsor,1600\nrequests,1,merrywivesofwindsor,1600\nseest,1,merrywivesofwindsor,1600\nImmediately,1,merrywivesofwindsor,1600\ncustom,1,merrywivesofwindsor,1600\naccuse,1,merrywivesofwindsor,1600\nPauca,1,merrywivesofwindsor,1600\nmurder,1,merrywivesofwindsor,1600\n'Green,1,merrywivesofwindsor,1600\nbragged,1,merrywivesofwindsor,1600\nsooth,1,merrywivesofwindsor,1600\nbitch's,1,merrywivesofwindsor,1600\nproperty,1,merrywivesofwindsor,1600\nsense,1,merrywivesofwindsor,1600\ndevil's,1,merrywivesofwindsor,1600\nworld's,1,merrywivesofwindsor,1600\nbeating,1,merrywivesofwindsor,1600\nhatch,1,merrywivesofwindsor,1600\ntrudge,1,merrywivesofwindsor,1600\nstop,1,merrywivesofwindsor,1600\nincense,1,merrywivesofwindsor,1600\ndice,1,merrywivesofwindsor,1600\nbreeding,1,merrywivesofwindsor,1600\nrule,1,merrywivesofwindsor,1600\no'erflow,1,merrywivesofwindsor,1600\nmelted,1,merrywivesofwindsor,1600\ndistress,1,merrywivesofwindsor,1600\nboor,1,merrywivesofwindsor,1600\nconveyance,1,merrywivesofwindsor,1600\nfamiliarity,1,merrywivesofwindsor,1600\nlunatic,1,merrywivesofwindsor,1600\nrevel,1,merrywivesofwindsor,1600\nUrinal,1,merrywivesofwindsor,1600\npanderly,1,merrywivesofwindsor,1600\nruled,1,merrywivesofwindsor,1600\nsweating,1,merrywivesofwindsor,1600\nPoins,1,merrywivesofwindsor,1600\ntufts,1,merrywivesofwindsor,1600\nbright,1,merrywivesofwindsor,1600\nnuthook's,1,merrywivesofwindsor,1600\nbacon,1,merrywivesofwindsor,1600\ncolour,1,merrywivesofwindsor,1600\ngripe,1,merrywivesofwindsor,1600\n'Custalourum,1,merrywivesofwindsor,1600\ndisparagements,1,merrywivesofwindsor,1600\nFairy,1,merrywivesofwindsor,1600\njudgement,1,merrywivesofwindsor,1600\ndistraction,1,merrywivesofwindsor,1600\nhungry,1,merrywivesofwindsor,1600\ndeserves,1,merrywivesofwindsor,1600\nfairest,1,merrywivesofwindsor,1600\ndivulge,1,merrywivesofwindsor,1600\nfoin,1,merrywivesofwindsor,1600\nsick,1,merrywivesofwindsor,1600\npills,1,merrywivesofwindsor,1600\nFe,1,merrywivesofwindsor,1600\nknowledge,1,merrywivesofwindsor,1600\ndrove,1,merrywivesofwindsor,1600\neschew'd,1,merrywivesofwindsor,1600\nappointments,1,merrywivesofwindsor,1600\nPheezar,1,merrywivesofwindsor,1600\nI',1,merrywivesofwindsor,1600\nstir,1,merrywivesofwindsor,1600\nkeys,1,merrywivesofwindsor,1600\nsolicit,1,merrywivesofwindsor,1600\nslaves,1,merrywivesofwindsor,1600\nforbade,1,merrywivesofwindsor,1600\nmanners,1,merrywivesofwindsor,1600\nlarded,1,merrywivesofwindsor,1600\nprecise,1,merrywivesofwindsor,1600\nstrongly,1,merrywivesofwindsor,1600\ncommended,1,merrywivesofwindsor,1600\nprecisely,1,merrywivesofwindsor,1600\nColebrook,1,merrywivesofwindsor,1600\nHungarian,1,merrywivesofwindsor,1600\ndrumble,1,merrywivesofwindsor,1600\ncrack,1,merrywivesofwindsor,1600\npotions,1,merrywivesofwindsor,1600\nscared,1,merrywivesofwindsor,1600\ndefile,1,merrywivesofwindsor,1600\nleman,1,merrywivesofwindsor,1600\nnape,1,merrywivesofwindsor,1600\ngotten,1,merrywivesofwindsor,1600\ntalks,1,merrywivesofwindsor,1600\nAt,1,merrywivesofwindsor,1600\n'Twere,1,merrywivesofwindsor,1600\ninfection,1,merrywivesofwindsor,1600\nstog,1,merrywivesofwindsor,1600\ntellest,1,merrywivesofwindsor,1600\ntonight,1,merrywivesofwindsor,1600\nwillers,1,merrywivesofwindsor,1600\nmistrust,1,merrywivesofwindsor,1600\nquarrel,1,merrywivesofwindsor,1600\npad,1,merrywivesofwindsor,1600\nHis,1,merrywivesofwindsor,1600\nfool's,1,merrywivesofwindsor,1600\nLooks,1,merrywivesofwindsor,1600\nforge,1,merrywivesofwindsor,1600\ntransformation,1,merrywivesofwindsor,1600\nscarce,1,merrywivesofwindsor,1600\nmisgives,1,merrywivesofwindsor,1600\npendent,1,merrywivesofwindsor,1600\nyouthful,1,merrywivesofwindsor,1600\nloath,1,merrywivesofwindsor,1600\nguiltiness,1,merrywivesofwindsor,1600\nThose,1,merrywivesofwindsor,1600\ndesperate,1,merrywivesofwindsor,1600\nHope,1,merrywivesofwindsor,1600\ndoctors,1,merrywivesofwindsor,1600\nStill,1,merrywivesofwindsor,1600\nAppoint,1,merrywivesofwindsor,1600\nwhiting,1,merrywivesofwindsor,1600\nhopes,1,merrywivesofwindsor,1600\nvetch,1,merrywivesofwindsor,1600\npander,1,merrywivesofwindsor,1600\nNature,1,merrywivesofwindsor,1600\nsecretly,1,merrywivesofwindsor,1600\nMe,1,merrywivesofwindsor,1600\nsensible,1,merrywivesofwindsor,1600\nsiege,1,merrywivesofwindsor,1600\nSinging,1,merrywivesofwindsor,1600\ngratis,1,merrywivesofwindsor,1600\nsmocks,1,merrywivesofwindsor,1600\nlands,1,merrywivesofwindsor,1600\nStand,1,merrywivesofwindsor,1600\nfarthingale,1,merrywivesofwindsor,1600\nproof,1,merrywivesofwindsor,1600\ngossip,1,merrywivesofwindsor,1600\nin't,1,merrywivesofwindsor,1600\nAlbeit,1,merrywivesofwindsor,1600\ngainer,1,merrywivesofwindsor,1600\nbelike,1,merrywivesofwindsor,1600\ncanst,1,merrywivesofwindsor,1600\nfishermen's,1,merrywivesofwindsor,1600\ndiffused,1,merrywivesofwindsor,1600\nmerited,1,merrywivesofwindsor,1600\nstar,1,merrywivesofwindsor,1600\ndenied,1,merrywivesofwindsor,1600\nSlice,1,merrywivesofwindsor,1600\npen,1,merrywivesofwindsor,1600\nOn,1,merrywivesofwindsor,1600\nsings,1,merrywivesofwindsor,1600\nstag,1,merrywivesofwindsor,1600\nhig,1,merrywivesofwindsor,1600\nhic,1,merrywivesofwindsor,1600\npulls,1,merrywivesofwindsor,1600\ncooled,1,merrywivesofwindsor,1600\nhit,1,merrywivesofwindsor,1600\nmedicine,1,merrywivesofwindsor,1600\nRaise,1,merrywivesofwindsor,1600\npleasure,1,merrywivesofwindsor,1600\nmeant,1,merrywivesofwindsor,1600\near',1,merrywivesofwindsor,1600\nbless,1,merrywivesofwindsor,1600\npense',1,merrywivesofwindsor,1600\ntallow,1,merrywivesofwindsor,1600\nsurely,1,merrywivesofwindsor,1600\nlorum',1,merrywivesofwindsor,1600\ncontracted,1,merrywivesofwindsor,1600\nproverbs,1,merrywivesofwindsor,1600\nbruised,1,merrywivesofwindsor,1600\nshillings,1,merrywivesofwindsor,1600\nJe,1,merrywivesofwindsor,1600\nunchaste,1,merrywivesofwindsor,1600\npate,1,merrywivesofwindsor,1600\npid,1,merrywivesofwindsor,1600\npie,1,merrywivesofwindsor,1600\nbuys,1,merrywivesofwindsor,1600\nDutch,1,merrywivesofwindsor,1600\nhides,1,merrywivesofwindsor,1600\nearl,1,merrywivesofwindsor,1600\npin,1,merrywivesofwindsor,1600\ntreachery,1,merrywivesofwindsor,1600\nHas,1,merrywivesofwindsor,1600\nsufferd,1,merrywivesofwindsor,1600\naccoutrement,1,merrywivesofwindsor,1600\nvultures,1,merrywivesofwindsor,1600\npaysan,1,merrywivesofwindsor,1600\nUp,1,merrywivesofwindsor,1600\nVI,1,merrywivesofwindsor,1600\nyourselves,1,merrywivesofwindsor,1600\n'resolutely,1,merrywivesofwindsor,1600\npon,1,merrywivesofwindsor,1600\nmeritorious,1,merrywivesofwindsor,1600\npassant,1,merrywivesofwindsor,1600\nheads,1,merrywivesofwindsor,1600\nquiet,1,merrywivesofwindsor,1600\nblood,1,merrywivesofwindsor,1600\ncorrupted,1,merrywivesofwindsor,1600\nsurprise,1,merrywivesofwindsor,1600\ngenitive,1,merrywivesofwindsor,1600\ngod,1,merrywivesofwindsor,1600\nwhore,1,merrywivesofwindsor,1600\nhaunt,1,merrywivesofwindsor,1600\n'ords,1,merrywivesofwindsor,1600\nvaliant,1,merrywivesofwindsor,1600\nbowl'd,1,merrywivesofwindsor,1600\nbull,1,merrywivesofwindsor,1600\nsith,1,merrywivesofwindsor,1600\ncostard,1,merrywivesofwindsor,1600\nexhibit,1,merrywivesofwindsor,1600\nchallenge,1,merrywivesofwindsor,1600\nmorning's,1,merrywivesofwindsor,1600\nCricket,1,merrywivesofwindsor,1600\nsorry,1,merrywivesofwindsor,1600\nbehaved,1,merrywivesofwindsor,1600\nintrusion,1,merrywivesofwindsor,1600\nproportion,1,merrywivesofwindsor,1600\nnigh,1,merrywivesofwindsor,1600\ncoaches,1,merrywivesofwindsor,1600\nmankind,1,merrywivesofwindsor,1600\nwas't,1,merrywivesofwindsor,1600\nHeard,1,merrywivesofwindsor,1600\nbush,1,merrywivesofwindsor,1600\nshallenge,1,merrywivesofwindsor,1600\nBridget,1,merrywivesofwindsor,1600\nbelief,1,merrywivesofwindsor,1600\nlurch,1,merrywivesofwindsor,1600\ndove,1,merrywivesofwindsor,1600\nspigot,1,merrywivesofwindsor,1600\n'od's,1,merrywivesofwindsor,1600\ndifference,1,merrywivesofwindsor,1600\nOr,1,merrywivesofwindsor,1600\ngoodly,1,merrywivesofwindsor,1600\nsorts,1,merrywivesofwindsor,1600\ngot,1,merrywivesofwindsor,1600\ncat,1,merrywivesofwindsor,1600\ndevises,1,merrywivesofwindsor,1600\nBeating,1,merrywivesofwindsor,1600\nlikings,1,merrywivesofwindsor,1600\ngenitivo,1,merrywivesofwindsor,1600\nerection,1,merrywivesofwindsor,1600\nsounds,1,merrywivesofwindsor,1600\naltar,1,merrywivesofwindsor,1600\ntricks,1,merrywivesofwindsor,1600\nmoreover,1,merrywivesofwindsor,1600\nparing,1,merrywivesofwindsor,1600\ndote,1,merrywivesofwindsor,1600\nSeese,1,merrywivesofwindsor,1600\npolecat,1,merrywivesofwindsor,1600\nsomewhat,1,merrywivesofwindsor,1600\ndost,1,merrywivesofwindsor,1600\npistols,1,merrywivesofwindsor,1600\nDiscard,1,merrywivesofwindsor,1600\nSave,1,merrywivesofwindsor,1600\ncraft,1,merrywivesofwindsor,1600\nStrange,1,merrywivesofwindsor,1600\ngall'd,1,merrywivesofwindsor,1600\nbaskets,1,merrywivesofwindsor,1600\nBehold,1,merrywivesofwindsor,1600\ndisperse,1,merrywivesofwindsor,1600\nStrew,1,merrywivesofwindsor,1600\nshadow,1,merrywivesofwindsor,1600\nfrugal,1,merrywivesofwindsor,1600\nfifty,1,merrywivesofwindsor,1600\nLies,1,merrywivesofwindsor,1600\nwelkin,1,merrywivesofwindsor,1600\nafore,1,merrywivesofwindsor,1600\naqua,1,merrywivesofwindsor,1600\njack'nape,1,merrywivesofwindsor,1600\nDrawing,1,merrywivesofwindsor,1600\nfee'd,1,merrywivesofwindsor,1600\nbuds,1,merrywivesofwindsor,1600\na',1,merrywivesofwindsor,1600\nunderstandings,1,merrywivesofwindsor,1600\ntwice,1,merrywivesofwindsor,1600\nDidst,1,merrywivesofwindsor,1600\neaten,1,merrywivesofwindsor,1600\ngamester,1,merrywivesofwindsor,1600\nhair's,1,merrywivesofwindsor,1600\nextreme,1,merrywivesofwindsor,1600\ntheme,1,merrywivesofwindsor,1600\nSail,1,merrywivesofwindsor,1600\ndissembling,1,merrywivesofwindsor,1600\ndoctor's,1,merrywivesofwindsor,1600\nSaid,1,merrywivesofwindsor,1600\ndegree,1,merrywivesofwindsor,1600\nMaidenhead,1,merrywivesofwindsor,1600\ndespite,1,merrywivesofwindsor,1600\nstaggering,1,merrywivesofwindsor,1600\nworship's,1,merrywivesofwindsor,1600\nnoddles,1,merrywivesofwindsor,1600\nmystery,1,merrywivesofwindsor,1600\nAbove,1,merrywivesofwindsor,1600\nsubmission,1,merrywivesofwindsor,1600\nsakes,1,merrywivesofwindsor,1600\nquips,1,merrywivesofwindsor,1600\nlonger,1,merrywivesofwindsor,1600\ncasement,1,merrywivesofwindsor,1600\nswine,1,merrywivesofwindsor,1600\nplessing,1,merrywivesofwindsor,1600\nyear's,1,merrywivesofwindsor,1600\npains,1,merrywivesofwindsor,1600\ncudgelled,1,merrywivesofwindsor,1600\nensue,1,merrywivesofwindsor,1600\ngate,1,merrywivesofwindsor,1600\n'Twas,1,merrywivesofwindsor,1600\npicture,1,merrywivesofwindsor,1600\nbeds,1,merrywivesofwindsor,1600\nDoctors,1,merrywivesofwindsor,1600\nrejoice,1,merrywivesofwindsor,1600\nWelshman,1,merrywivesofwindsor,1600\n'Honi,1,merrywivesofwindsor,1600\nvantage,1,merrywivesofwindsor,1600\ngenders,1,merrywivesofwindsor,1600\ncomplement,1,merrywivesofwindsor,1600\norderly,1,merrywivesofwindsor,1600\nlately,1,merrywivesofwindsor,1600\nAEsculapius,1,merrywivesofwindsor,1600\ncrowned,1,merrywivesofwindsor,1600\naltogether's,1,merrywivesofwindsor,1600\nbeginning,1,merrywivesofwindsor,1600\nbegin,1,merrywivesofwindsor,1600\nkidney,1,merrywivesofwindsor,1600\nriver,1,merrywivesofwindsor,1600\npasty,1,merrywivesofwindsor,1600\nlord,1,merrywivesofwindsor,1600\nlisping,1,merrywivesofwindsor,1600\nGod's,1,merrywivesofwindsor,1600\nstory,1,merrywivesofwindsor,1600\ndetected,1,merrywivesofwindsor,1600\nunvirtuous,1,merrywivesofwindsor,1600\nimage,1,merrywivesofwindsor,1600\nCannot,1,merrywivesofwindsor,1600\nblowing,1,merrywivesofwindsor,1600\nFortune,1,merrywivesofwindsor,1600\nvoyage,1,merrywivesofwindsor,1600\nraise,1,merrywivesofwindsor,1600\nFear,1,merrywivesofwindsor,1600\naid,1,merrywivesofwindsor,1600\nvarletto,1,merrywivesofwindsor,1600\ndispositions,1,merrywivesofwindsor,1600\nSONG,1,merrywivesofwindsor,1600\nrepent,1,merrywivesofwindsor,1600\nstrut,1,merrywivesofwindsor,1600\nconsider,1,merrywivesofwindsor,1600\ncarrion,1,merrywivesofwindsor,1600\nleft,1,merrywivesofwindsor,1600\naffecting,1,merrywivesofwindsor,1600\ndeck,1,merrywivesofwindsor,1600\nmilch,1,merrywivesofwindsor,1600\ntaverns,1,merrywivesofwindsor,1600\nyes,1,merrywivesofwindsor,1600\nlaments,1,merrywivesofwindsor,1600\nlegs,1,merrywivesofwindsor,1600\nhandsome,1,merrywivesofwindsor,1600\nEve's,1,merrywivesofwindsor,1600\nJewry,1,merrywivesofwindsor,1600\nUnless,1,merrywivesofwindsor,1600\nswearing,1,merrywivesofwindsor,1600\ndwell,1,merrywivesofwindsor,1600\nrails,1,merrywivesofwindsor,1600\nobligation,1,merrywivesofwindsor,1600\nyokes,1,merrywivesofwindsor,1600\nCastalion,1,merrywivesofwindsor,1600\nvagram,1,merrywivesofwindsor,1600\nradiant,1,merrywivesofwindsor,1600\nseeing,1,merrywivesofwindsor,1600\nvault,1,merrywivesofwindsor,1600\nplayed,1,merrywivesofwindsor,1600\nmette,1,merrywivesofwindsor,1600\nseeming,1,merrywivesofwindsor,1600\nedifice,1,merrywivesofwindsor,1600\nShuts,1,merrywivesofwindsor,1600\ndraff,1,merrywivesofwindsor,1600\nwaist,1,merrywivesofwindsor,1600\nthefts,1,merrywivesofwindsor,1600\nhaunch,1,merrywivesofwindsor,1600\nstole,1,merrywivesofwindsor,1600\nstockings,1,merrywivesofwindsor,1600\nlaughing,1,merrywivesofwindsor,1600\nfidelity,1,merrywivesofwindsor,1600\nwaits,1,merrywivesofwindsor,1600\ngenerally,1,merrywivesofwindsor,1600\nDivide,1,merrywivesofwindsor,1600\nquaint,1,merrywivesofwindsor,1600\nay,1,merrywivesofwindsor,1600\nuncape,1,merrywivesofwindsor,1600\napes,1,merrywivesofwindsor,1600\nmemory,1,merrywivesofwindsor,1600\nau,1,merrywivesofwindsor,1600\ngrowth,1,merrywivesofwindsor,1600\nfourscore,1,merrywivesofwindsor,1600\nnewly,1,merrywivesofwindsor,1600\ntrap',1,merrywivesofwindsor,1600\ndoom,1,merrywivesofwindsor,1600\nrealm,1,merrywivesofwindsor,1600\nidiot,1,merrywivesofwindsor,1600\nabominable,1,merrywivesofwindsor,1600\nreins,1,merrywivesofwindsor,1600\nfrights,1,merrywivesofwindsor,1600\ncowardly,1,merrywivesofwindsor,1600\nquestions,1,merrywivesofwindsor,1600\nox,1,merrywivesofwindsor,1600\nattending,1,merrywivesofwindsor,1600\ncrossed,1,merrywivesofwindsor,1600\ndelay,1,merrywivesofwindsor,1600\nsmall,1,merrywivesofwindsor,1600\nwisely,1,merrywivesofwindsor,1600\ncommendations,1,merrywivesofwindsor,1600\nmeteor,1,merrywivesofwindsor,1600\ncrave,1,merrywivesofwindsor,1600\nhalfpenny,1,merrywivesofwindsor,1600\npatients,1,merrywivesofwindsor,1600\n'will,1,merrywivesofwindsor,1600\nma,1,merrywivesofwindsor,1600\nsperm,1,merrywivesofwindsor,1600\nwrangle,1,merrywivesofwindsor,1600\nporch,1,merrywivesofwindsor,1600\nseventeen,1,merrywivesofwindsor,1600\nwhereof,1,merrywivesofwindsor,1600\nperpend,1,merrywivesofwindsor,1600\nReads,1,merrywivesofwindsor,1600\ncarves,1,merrywivesofwindsor,1600\n'quods,1,merrywivesofwindsor,1600\ntrail,1,merrywivesofwindsor,1600\nvalue,1,merrywivesofwindsor,1600\nentertainments,1,merrywivesofwindsor,1600\nscornful,1,merrywivesofwindsor,1600\nstature,1,merrywivesofwindsor,1600\nfind'st,1,merrywivesofwindsor,1600\nstudied,1,merrywivesofwindsor,1600\nloud,1,merrywivesofwindsor,1600\nle,1,merrywivesofwindsor,1600\ncauses,1,merrywivesofwindsor,1600\nrunyon,1,merrywivesofwindsor,1600\nsuperstitious,1,merrywivesofwindsor,1600\nado,1,merrywivesofwindsor,1600\nloss,1,merrywivesofwindsor,1600\nhumblest,1,merrywivesofwindsor,1600\ndrift,1,merrywivesofwindsor,1600\nbeholding,1,merrywivesofwindsor,1600\ntricking,1,merrywivesofwindsor,1600\ndiamond,1,merrywivesofwindsor,1600\nwherein,1,merrywivesofwindsor,1600\nspent,1,merrywivesofwindsor,1600\ngoverned,1,merrywivesofwindsor,1600\nil,1,merrywivesofwindsor,1600\nloved,1,merrywivesofwindsor,1600\ndole,1,merrywivesofwindsor,1600\n'bout,1,merrywivesofwindsor,1600\nabusing,1,merrywivesofwindsor,1600\nmeadow,1,merrywivesofwindsor,1600\ndefy,1,merrywivesofwindsor,1600\nCotsall,1,merrywivesofwindsor,1600\nEphesian,1,merrywivesofwindsor,1600\nKeisar,1,merrywivesofwindsor,1600\ngreater,1,merrywivesofwindsor,1600\nspot,1,merrywivesofwindsor,1600\nCreep,1,merrywivesofwindsor,1600\njerkin,1,merrywivesofwindsor,1600\nknee,1,merrywivesofwindsor,1600\nslack,1,merrywivesofwindsor,1600\nattain,1,merrywivesofwindsor,1600\n'Coram,1,merrywivesofwindsor,1600\nhark,1,merrywivesofwindsor,1600\nchoice,1,merrywivesofwindsor,1600\nprings,1,merrywivesofwindsor,1600\nhoa,1,merrywivesofwindsor,1600\nvalour,1,merrywivesofwindsor,1600\nrobbed,1,merrywivesofwindsor,1600\npunk,1,merrywivesofwindsor,1600\nreasons,1,merrywivesofwindsor,1600\nhoc,1,merrywivesofwindsor,1600\nshrieked,1,merrywivesofwindsor,1600\nBede,1,merrywivesofwindsor,1600\ndenote,1,merrywivesofwindsor,1600\ndiscourse,1,merrywivesofwindsor,1600\n'putter',1,merrywivesofwindsor,1600\nbrewage,1,merrywivesofwindsor,1600\nunmannerly,1,merrywivesofwindsor,1600\nBreak,1,merrywivesofwindsor,1600\nattractions,1,merrywivesofwindsor,1600\nlingered,1,merrywivesofwindsor,1600\nsmite,1,merrywivesofwindsor,1600\ncozening,1,merrywivesofwindsor,1600\norphan,1,merrywivesofwindsor,1600\nm'en,1,merrywivesofwindsor,1600\nslice,1,merrywivesofwindsor,1600\nplod,1,merrywivesofwindsor,1600\nconspiracy,1,merrywivesofwindsor,1600\nhue,1,merrywivesofwindsor,1600\nBucklersbury,1,merrywivesofwindsor,1600\nspells,1,merrywivesofwindsor,1600\npuffed,1,merrywivesofwindsor,1600\nChristian,1,merrywivesofwindsor,1600\nknit,1,merrywivesofwindsor,1600\ntoasted,1,merrywivesofwindsor,1600\nsuggests,1,merrywivesofwindsor,1600\nembattled,1,merrywivesofwindsor,1600\nfowl,1,merrywivesofwindsor,1600\npossitable,1,merrywivesofwindsor,1600\n'Rato,1,merrywivesofwindsor,1600\nCounter,1,merrywivesofwindsor,1600\nintended,1,merrywivesofwindsor,1600\nverses,1,merrywivesofwindsor,1600\nMore,1,merrywivesofwindsor,1600\nHercules,1,merrywivesofwindsor,1600\nwittolly,1,merrywivesofwindsor,1600\nshun,1,merrywivesofwindsor,1600\nappears,1,merrywivesofwindsor,1600\nPluck,1,merrywivesofwindsor,1600\nliberty,1,merrywivesofwindsor,1600\nprince,1,merrywivesofwindsor,1600\nplain,1,merrywivesofwindsor,1600\nconsult,1,merrywivesofwindsor,1600\ndrawn,1,merrywivesofwindsor,1600\nporridge,1,merrywivesofwindsor,1600\nSatisfy,1,merrywivesofwindsor,1600\nforty,1,merrywivesofwindsor,1600\njoyful,1,merrywivesofwindsor,1600\ndilemma,1,merrywivesofwindsor,1600\nDuring,1,merrywivesofwindsor,1600\nCain,1,merrywivesofwindsor,1600\nshell,1,merrywivesofwindsor,1600\nIndies,1,merrywivesofwindsor,1600\nsully,1,merrywivesofwindsor,1600\nperpetual,1,merrywivesofwindsor,1600\nMockwater,1,merrywivesofwindsor,1600\nHum,1,merrywivesofwindsor,1600\npluck,1,merrywivesofwindsor,1600\nwhether,1,merrywivesofwindsor,1600\ncourse,1,merrywivesofwindsor,1600\nEmpty,1,merrywivesofwindsor,1600\nresurrections,1,merrywivesofwindsor,1600\ndeaths,1,merrywivesofwindsor,1600\nShe's,1,merrywivesofwindsor,1600\noccasions,1,merrywivesofwindsor,1600\nbrothers,1,merrywivesofwindsor,1600\nform,1,merrywivesofwindsor,1600\nevitate,1,merrywivesofwindsor,1600\nEtna,1,merrywivesofwindsor,1600\nlouses,1,merrywivesofwindsor,1600\nfort,1,merrywivesofwindsor,1600\nabhor,1,merrywivesofwindsor,1600\nnightly,1,merrywivesofwindsor,1600\nhawk,1,merrywivesofwindsor,1600\nBrooks,1,merrywivesofwindsor,1600\nunpitifully,1,merrywivesofwindsor,1600\nimpatient,1,merrywivesofwindsor,1600\nHue,1,merrywivesofwindsor,1600\nHundredth,1,merrywivesofwindsor,1600\nshin,1,merrywivesofwindsor,1600\nshent,1,merrywivesofwindsor,1600\ntomorrow,1,merrywivesofwindsor,1600\npair,1,merrywivesofwindsor,1600\nship,1,merrywivesofwindsor,1600\npain,1,merrywivesofwindsor,1600\nsixpences,1,merrywivesofwindsor,1600\nfinally,1,merrywivesofwindsor,1600\nhangs,1,merrywivesofwindsor,1600\ndelight,1,merrywivesofwindsor,1600\ndiest,1,merrywivesofwindsor,1600\nuncomeliness,1,merrywivesofwindsor,1600\nlitter,1,merrywivesofwindsor,1600\nging,1,merrywivesofwindsor,1600\nforswore,1,merrywivesofwindsor,1600\napiece,1,merrywivesofwindsor,1600\nminute's,1,merrywivesofwindsor,1600\nprains,1,merrywivesofwindsor,1600\nshakes,1,merrywivesofwindsor,1600\nheretic,1,merrywivesofwindsor,1600\nstones,1,merrywivesofwindsor,1600\nMichaelmas,1,merrywivesofwindsor,1600\ndetermination,1,merrywivesofwindsor,1600\ndreadful,1,merrywivesofwindsor,1600\ndismay,1,merrywivesofwindsor,1600\nputs,1,merrywivesofwindsor,1600\ncombat,1,merrywivesofwindsor,1600\nconcerning,1,merrywivesofwindsor,1600\nshoe,1,merrywivesofwindsor,1600\nexcept,1,merrywivesofwindsor,1600\nSayest,1,merrywivesofwindsor,1600\nawe,1,merrywivesofwindsor,1600\ngentry,1,merrywivesofwindsor,1600\n''Od's,1,merrywivesofwindsor,1600\nrough,1,merrywivesofwindsor,1600\nnapkins,1,merrywivesofwindsor,1600\nEpicurean,1,merrywivesofwindsor,1600\ncreatures,1,merrywivesofwindsor,1600\nrenowned,1,merrywivesofwindsor,1600\nobject,1,merrywivesofwindsor,1600\n'dissolutely,1,merrywivesofwindsor,1600\nrightly,1,merrywivesofwindsor,1600\nye,1,merrywivesofwindsor,1600\nlock,1,merrywivesofwindsor,1600\nconclusions,1,merrywivesofwindsor,1600\nHast,1,merrywivesofwindsor,1600\nScarlet,1,merrywivesofwindsor,1600\njester,1,merrywivesofwindsor,1600\nfoppery,1,merrywivesofwindsor,1600\nKing,1,merrywivesofwindsor,1600\nthanks,1,merrywivesofwindsor,1600\nhavior,1,merrywivesofwindsor,1600\nbought,1,merrywivesofwindsor,1600\ninquire,1,merrywivesofwindsor,1600\npreparations,1,merrywivesofwindsor,1600\nsequel,1,merrywivesofwindsor,1600\npurchased,1,merrywivesofwindsor,1600\nalacrity,1,merrywivesofwindsor,1600\nfee,1,merrywivesofwindsor,1600\nitches,1,merrywivesofwindsor,1600\ntouch,1,merrywivesofwindsor,1600\nwashed,1,merrywivesofwindsor,1600\narras,1,merrywivesofwindsor,1600\nsmells,1,merrywivesofwindsor,1600\nHard,1,merrywivesofwindsor,1600\nleer,1,merrywivesofwindsor,1600\ntrempling,1,merrywivesofwindsor,1600\nministers,1,merrywivesofwindsor,1600\nsweetly,1,merrywivesofwindsor,1600\njudgment,1,merrywivesofwindsor,1600\nreprieves,1,merrywivesofwindsor,1600\njays,1,merrywivesofwindsor,1600\nbutcher's,1,merrywivesofwindsor,1600\ngrande,1,merrywivesofwindsor,1600\ntoken,1,merrywivesofwindsor,1600\nhiss,1,merrywivesofwindsor,1600\ndecipher,1,merrywivesofwindsor,1600\nconversation,1,merrywivesofwindsor,1600\npurple,1,merrywivesofwindsor,1600\nSatan,1,merrywivesofwindsor,1600\naccidence,1,merrywivesofwindsor,1600\nTartar,1,merrywivesofwindsor,1600\nHath,1,merrywivesofwindsor,1600\ndickens,1,merrywivesofwindsor,1600\nvizaments,1,merrywivesofwindsor,1600\nroot,1,merrywivesofwindsor,1600\nchange,1,merrywivesofwindsor,1600\npippins,1,merrywivesofwindsor,1600\nheight,1,merrywivesofwindsor,1600\naggravate,1,merrywivesofwindsor,1600\nBetween,1,merrywivesofwindsor,1600\natonements,1,merrywivesofwindsor,1600\nShortcake,1,merrywivesofwindsor,1600\ndisplay,1,merrywivesofwindsor,1600\nfap,1,merrywivesofwindsor,1600\nfan,1,merrywivesofwindsor,1600\nfrenzy,1,merrywivesofwindsor,1600\ncontented,1,merrywivesofwindsor,1600\noften,1,merrywivesofwindsor,1600\nopinions,1,merrywivesofwindsor,1600\nluce,1,merrywivesofwindsor,1600\nleap,1,merrywivesofwindsor,1600\nmelancholies,1,merrywivesofwindsor,1600\nscaped,1,merrywivesofwindsor,1600\nhallowed,1,merrywivesofwindsor,1600\n'Marry,1,merrywivesofwindsor,1600\npolecats,1,merrywivesofwindsor,1600\nwasher,1,merrywivesofwindsor,1600\nhawthorn,1,merrywivesofwindsor,1600\ncomfits,1,merrywivesofwindsor,1600\n'fair,1,merrywivesofwindsor,1600\nGoliath,1,merrywivesofwindsor,1600\nproofs,1,merrywivesofwindsor,1600\ngeminy,1,merrywivesofwindsor,1600\ngarments,1,merrywivesofwindsor,1600\nEnglished,1,merrywivesofwindsor,1600\nmask'd,1,merrywivesofwindsor,1600\nEleven,1,merrywivesofwindsor,1600\ndestiny,1,merrywivesofwindsor,1600\nsecurely,1,merrywivesofwindsor,1600\nEuropa,1,merrywivesofwindsor,1600\nmoved,1,merrywivesofwindsor,1600\nBecome,1,merrywivesofwindsor,1600\ncounterfeiting,1,merrywivesofwindsor,1600\nprescribe,1,merrywivesofwindsor,1600\nglow,1,merrywivesofwindsor,1600\nrequital,1,merrywivesofwindsor,1600\nrank,1,merrywivesofwindsor,1600\nAgainst,1,merrywivesofwindsor,1600\nhinc,1,merrywivesofwindsor,1600\npinioned,1,merrywivesofwindsor,1600\nreport,1,merrywivesofwindsor,1600\nempty,1,merrywivesofwindsor,1600\nmechanical,1,merrywivesofwindsor,1600\nscorch,1,merrywivesofwindsor,1600\nforehead,1,merrywivesofwindsor,1600\nshouldst,1,merrywivesofwindsor,1600\nhilt,1,merrywivesofwindsor,1600\nmischief,1,merrywivesofwindsor,1600\nsilence,1,merrywivesofwindsor,1600\ndiscreetly,1,merrywivesofwindsor,1600\nFinely,1,merrywivesofwindsor,1600\nlender,1,merrywivesofwindsor,1600\npebble,1,merrywivesofwindsor,1600\nfinest,1,merrywivesofwindsor,1600\nscape,1,merrywivesofwindsor,1600\nbuild,1,merrywivesofwindsor,1600\nwhelm,1,merrywivesofwindsor,1600\nprotests,1,merrywivesofwindsor,1600\nbuilt,1,merrywivesofwindsor,1600\nsickly,1,merrywivesofwindsor,1600\ncurtal,1,merrywivesofwindsor,1600\nunclean,1,merrywivesofwindsor,1600\nerrands,1,merrywivesofwindsor,1600\napply,1,merrywivesofwindsor,1600\nproverb,1,merrywivesofwindsor,1600\nSeven,1,merrywivesofwindsor,1600\nendanger,1,merrywivesofwindsor,1600\nhinds,1,merrywivesofwindsor,1600\nexperiment,1,merrywivesofwindsor,1600\nwonder,1,merrywivesofwindsor,1600\nproceed,1,merrywivesofwindsor,1600\nVengeance,1,merrywivesofwindsor,1600\nHenceforth,1,merrywivesofwindsor,1600\ndrinkings,1,merrywivesofwindsor,1600\nsignifies,1,merrywivesofwindsor,1600\nrainbow,1,merrywivesofwindsor,1600\nsocieties,1,merrywivesofwindsor,1600\nfehemently,1,merrywivesofwindsor,1600\nguides,1,merrywivesofwindsor,1600\npaths,1,merrywivesofwindsor,1600\nrate,1,merrywivesofwindsor,1600\nconceited,1,merrywivesofwindsor,1600\nscall,1,merrywivesofwindsor,1600\nrats,1,merrywivesofwindsor,1600\ndevils',1,merrywivesofwindsor,1600\nlewdsters,1,merrywivesofwindsor,1600\nriots,1,merrywivesofwindsor,1600\nbottle,1,merrywivesofwindsor,1600\nentertainment,1,merrywivesofwindsor,1600\numpires,1,merrywivesofwindsor,1600\nluxury,1,merrywivesofwindsor,1600\nPursuing,1,merrywivesofwindsor,1600\ninfancy,1,merrywivesofwindsor,1600\nsprighted,1,merrywivesofwindsor,1600\nbrazen,1,merrywivesofwindsor,1600\ndrunkard,1,merrywivesofwindsor,1600\nwarrener,1,merrywivesofwindsor,1600\nchurchman,1,merrywivesofwindsor,1600\ncompanions,1,merrywivesofwindsor,1600\ngourd,1,merrywivesofwindsor,1600\nMounseur,1,merrywivesofwindsor,1600\nEthiopian,1,merrywivesofwindsor,1600\nyear,1,merrywivesofwindsor,1600\novertake,1,merrywivesofwindsor,1600\n'As,1,merrywivesofwindsor,1600\nmisuse,1,merrywivesofwindsor,1600\nBanbury,1,merrywivesofwindsor,1600\nextant,1,merrywivesofwindsor,1600\nbottom,1,merrywivesofwindsor,1600\nBase,1,merrywivesofwindsor,1600\ncapers,1,merrywivesofwindsor,1600\nborne,1,merrywivesofwindsor,1600\nBriefly,1,merrywivesofwindsor,1600\nalter,1,merrywivesofwindsor,1600\npicked,1,merrywivesofwindsor,1600\npittie,1,merrywivesofwindsor,1600\nhick,1,merrywivesofwindsor,1600\nshores,1,merrywivesofwindsor,1600\nmisdoubt,1,merrywivesofwindsor,1600\ngermans,1,merrywivesofwindsor,1600\nloses,1,merrywivesofwindsor,1600\ncounsellor,1,merrywivesofwindsor,1600\nodious,1,merrywivesofwindsor,1600\nSet,1,merrywivesofwindsor,1600\nchurchmen,1,merrywivesofwindsor,1600\nGets,1,merrywivesofwindsor,1600\nPotent,1,merrywivesofwindsor,1600\ncrammed,1,merrywivesofwindsor,1600\neggs,1,merrywivesofwindsor,1600\nfreely,1,merrywivesofwindsor,1600\navouch,1,merrywivesofwindsor,1600\npowers,1,merrywivesofwindsor,1600\nYead,1,merrywivesofwindsor,1600\nlattice,1,merrywivesofwindsor,1600\nDoth,1,merrywivesofwindsor,1600\nsocks,1,merrywivesofwindsor,1600\nPeter,1,merrywivesofwindsor,1600\ncloak,1,merrywivesofwindsor,1600\nWill't,1,merrywivesofwindsor,1600\nleaving,1,merrywivesofwindsor,1600\nmistresses,1,merrywivesofwindsor,1600\nprecious,1,merrywivesofwindsor,1600\npensioners,1,merrywivesofwindsor,1600\nyours,1,merrywivesofwindsor,1600\nengrossed,1,merrywivesofwindsor,1600\nravens,1,merrywivesofwindsor,1600\nairy,1,merrywivesofwindsor,1600\nspurs,1,merrywivesofwindsor,1600\nvert,1,merrywivesofwindsor,1600\ndissolution,1,merrywivesofwindsor,1600\nadmits,1,merrywivesofwindsor,1600\ndaylight,1,merrywivesofwindsor,1600\ncashier,1,merrywivesofwindsor,1600\nlodge,1,merrywivesofwindsor,1600\nSome,1,merrywivesofwindsor,1600\n'He,1,merrywivesofwindsor,1600\nstare,1,merrywivesofwindsor,1600\nmill,1,merrywivesofwindsor,1600\nfantastical,1,merrywivesofwindsor,1600\nmile,1,merrywivesofwindsor,1600\neld,1,merrywivesofwindsor,1600\nexchange,1,merrywivesofwindsor,1600\nwiser,1,merrywivesofwindsor,1600\nteeth,1,merrywivesofwindsor,1600\nsoldiers,1,merrywivesofwindsor,1600\nsatisfaction,1,merrywivesofwindsor,1600\nprize,1,merrywivesofwindsor,1600\nconclusion,1,merrywivesofwindsor,1600\nmightst,1,merrywivesofwindsor,1600\nventuring,1,merrywivesofwindsor,1600\nescape,1,merrywivesofwindsor,1600\n'Ask,1,merrywivesofwindsor,1600\nscholarly,1,merrywivesofwindsor,1600\nmale,1,merrywivesofwindsor,1600\nfortnight,1,merrywivesofwindsor,1600\nmerrily,1,merrywivesofwindsor,1600\nconfidence,1,merrywivesofwindsor,1600\nexpressure,1,merrywivesofwindsor,1600\nhissing,1,merrywivesofwindsor,1600\nkeeper,1,merrywivesofwindsor,1600\nGallia,1,merrywivesofwindsor,1600\ndowry,1,merrywivesofwindsor,1600\nbloody,1,merrywivesofwindsor,1600\nFrancisco,1,merrywivesofwindsor,1600\nquaked,1,merrywivesofwindsor,1600\nQueen,1,merrywivesofwindsor,1600\nobscured,1,merrywivesofwindsor,1600\narched,1,merrywivesofwindsor,1600\nskip,1,merrywivesofwindsor,1600\nskin,1,merrywivesofwindsor,1600\nmass,1,merrywivesofwindsor,1600\ntruckle,1,merrywivesofwindsor,1600\nparties,1,merrywivesofwindsor,1600\norgans,1,merrywivesofwindsor,1600\nacquit,1,merrywivesofwindsor,1600\nkissing,1,merrywivesofwindsor,1600\nrattles,1,merrywivesofwindsor,1600\nproudest,1,merrywivesofwindsor,1600\nvell,1,merrywivesofwindsor,1600\naffectations,1,merrywivesofwindsor,1600\nthick,1,merrywivesofwindsor,1600\nSon,1,merrywivesofwindsor,1600\nafflicted,1,merrywivesofwindsor,1600\nAny,1,merrywivesofwindsor,1600\nBohemian,1,merrywivesofwindsor,1600\nveil,1,merrywivesofwindsor,1600\nmire,1,merrywivesofwindsor,1600\nwot,1,merrywivesofwindsor,1600\nquoth,1,merrywivesofwindsor,1600\nleader,1,merrywivesofwindsor,1600\nwon,1,merrywivesofwindsor,1600\nblow,1,merrywivesofwindsor,1600\nvision,1,merrywivesofwindsor,1600\nchafe,1,merrywivesofwindsor,1600\nANN,1,merrywivesofwindsor,1600\npunto,1,merrywivesofwindsor,1600\nhumoured,1,merrywivesofwindsor,1600\nJob,1,merrywivesofwindsor,1600\naddress,1,merrywivesofwindsor,1600\nthief,1,merrywivesofwindsor,1600\nbenefit,1,merrywivesofwindsor,1600\nWest,1,merrywivesofwindsor,1600\nmissing,1,merrywivesofwindsor,1600\nconstable,1,merrywivesofwindsor,1600\nflannel,1,merrywivesofwindsor,1600\ndischarge,1,merrywivesofwindsor,1600\ntrifle,1,merrywivesofwindsor,1600\ncircumference,1,merrywivesofwindsor,1600\nlaughs,1,merrywivesofwindsor,1600\nfavor'd,1,merrywivesofwindsor,1600\nnumber,1,merrywivesofwindsor,1600\ndoubted,1,merrywivesofwindsor,1600\nMade,1,merrywivesofwindsor,1600\nmarvel,1,merrywivesofwindsor,1600\nBeing,1,merrywivesofwindsor,1600\nyellowness,1,merrywivesofwindsor,1600\npreposterously,1,merrywivesofwindsor,1600\nbleaching,1,merrywivesofwindsor,1600\nnominativo,1,merrywivesofwindsor,1600\ndiscarded,1,merrywivesofwindsor,1600\ntrouble,1,merrywivesofwindsor,1600\ntarries,1,merrywivesofwindsor,1600\nexamined,1,merrywivesofwindsor,1600\nmockeries,1,merrywivesofwindsor,1600\ni'faith,1,merrywivesofwindsor,1600\nbelly's,1,merrywivesofwindsor,1600\nwee,1,merrywivesofwindsor,1600\ndesired,1,merrywivesofwindsor,1600\nIrishman,1,merrywivesofwindsor,1600\nWere,1,merrywivesofwindsor,1600\ntattlings,1,merrywivesofwindsor,1600\nlouder,1,merrywivesofwindsor,1600\narrested,1,merrywivesofwindsor,1600\nhardest,1,merrywivesofwindsor,1600\nfray,1,merrywivesofwindsor,1600\nbequeath,1,merrywivesofwindsor,1600\nbehalf,1,merrywivesofwindsor,1600\nbreed,1,merrywivesofwindsor,1600\ndissolute,1,merrywivesofwindsor,1600\nPabylon,1,merrywivesofwindsor,1600\nclose,1,merrywivesofwindsor,1600\nComing,1,merrywivesofwindsor,1600\npause,1,merrywivesofwindsor,1600\nslight,1,merrywivesofwindsor,1600\naffairs,1,merrywivesofwindsor,1600\nmaids,1,merrywivesofwindsor,1600\ntroublesome,1,merrywivesofwindsor,1600\nopinion,1,merrywivesofwindsor,1600\npold,1,merrywivesofwindsor,1600\nwrongs,1,merrywivesofwindsor,1600\nrogue's,1,merrywivesofwindsor,1600\nstale,1,merrywivesofwindsor,1600\nboarded,1,merrywivesofwindsor,1600\nsapphire,1,merrywivesofwindsor,1600\nexperience,1,merrywivesofwindsor,1600\nallicholy,1,merrywivesofwindsor,1600\nstile,1,merrywivesofwindsor,1600\naffaire,1,merrywivesofwindsor,1600\nWent,1,merrywivesofwindsor,1600\nprovoke,1,merrywivesofwindsor,1600\nhateful,1,merrywivesofwindsor,1600\nthoroughly,1,merrywivesofwindsor,1600\nsorrow,1,merrywivesofwindsor,1600\nimaginations,1,merrywivesofwindsor,1600\nClap,1,merrywivesofwindsor,1600\nemerald,1,merrywivesofwindsor,1600\nrankest,1,merrywivesofwindsor,1600\nthird,1,merrywivesofwindsor,1600\ndetest,1,merrywivesofwindsor,1600\nJenny's,1,merrywivesofwindsor,1600\ndifferent,1,merrywivesofwindsor,1600\nbeastly,1,merrywivesofwindsor,1600\nmoment,1,merrywivesofwindsor,1600\nRogues,1,merrywivesofwindsor,1600\ncoxcomb,1,merrywivesofwindsor,1600\nransacked,1,merrywivesofwindsor,1600\ndishonesty,1,merrywivesofwindsor,1600\nknaveries,1,merrywivesofwindsor,1600\ndunghill,1,merrywivesofwindsor,1600\nrelent,1,merrywivesofwindsor,1600\nconjectures,1,merrywivesofwindsor,1600\nfavoredly,1,merrywivesofwindsor,1600\nfallow,1,merrywivesofwindsor,1600\nripe,1,merrywivesofwindsor,1600\nchoked,1,merrywivesofwindsor,1600\nLetter,1,merrywivesofwindsor,1600\nmasses,1,merrywivesofwindsor,1600\nstanding,1,merrywivesofwindsor,1600\ndeath's,1,merrywivesofwindsor,1600\ncount,1,merrywivesofwindsor,1600\nenrobed,1,merrywivesofwindsor,1600\nshamefully,1,merrywivesofwindsor,1600\nsubtle,1,merrywivesofwindsor,1600\ncertainly,1,merrywivesofwindsor,1600\ntorture,1,merrywivesofwindsor,1600\nThine,1,merrywivesofwindsor,1600\npy'r,1,merrywivesofwindsor,1600\nheavy,1,merrywivesofwindsor,1600\ncanaries,1,merrywivesofwindsor,1600\nMercury,1,merrywivesofwindsor,1600\nblasts,1,merrywivesofwindsor,1600\nplummet,1,merrywivesofwindsor,1600\n'The,1,merrywivesofwindsor,1600\nfixture,1,merrywivesofwindsor,1600\nBoys,1,merrywivesofwindsor,1600\nwar,1,merrywivesofwindsor,1600\nstaff,1,merrywivesofwindsor,1600\nrise,1,merrywivesofwindsor,1600\nWorthy,1,merrywivesofwindsor,1600\ntailor,1,merrywivesofwindsor,1600\nreceive,1,merrywivesofwindsor,1600\ncommanded,1,merrywivesofwindsor,1600\n'To,1,merrywivesofwindsor,1600\nWives,1,merrywivesofwindsor,1600\npody,1,merrywivesofwindsor,1600\nintent,1,merrywivesofwindsor,1600\nprint,1,merrywivesofwindsor,1600\nambition,1,merrywivesofwindsor,1600\nsufferance,1,merrywivesofwindsor,1600\nhandle,1,merrywivesofwindsor,1600\nwood,1,merrywivesofwindsor,1600\npronouns,1,merrywivesofwindsor,1600\narrow,1,merrywivesofwindsor,1600\nEast,1,merrywivesofwindsor,1600\nassure,1,merrywivesofwindsor,1600\nherring,1,merrywivesofwindsor,1600\nfico,1,merrywivesofwindsor,1600\njuice,1,merrywivesofwindsor,1600\nsaith,1,merrywivesofwindsor,1600\nwanton,1,merrywivesofwindsor,1600\nrags,1,merrywivesofwindsor,1600\nlegion,1,merrywivesofwindsor,1600\nKnowing,1,merrywivesofwindsor,1600\nperadventure,1,merrywivesofwindsor,1600\ntevil,1,merrywivesofwindsor,1600\nwont,1,merrywivesofwindsor,1600\ncomplain,1,merrywivesofwindsor,1600\nwomen's,1,merrywivesofwindsor,1600\nbreakfast,1,merrywivesofwindsor,1600\ncursed,1,merrywivesofwindsor,1600\ndepeche,1,merrywivesofwindsor,1600\nbounty,1,merrywivesofwindsor,1600\nhappy,1,merrywivesofwindsor,1600\npossess,1,merrywivesofwindsor,1600\ncaught,1,merrywivesofwindsor,1600\nhail,1,merrywivesofwindsor,1600\ninto't,1,merrywivesofwindsor,1600\ncurses,1,merrywivesofwindsor,1600\ngrossly,1,merrywivesofwindsor,1600\ngrossness,1,merrywivesofwindsor,1600\nveneys,1,merrywivesofwindsor,1600\nbaseness,1,merrywivesofwindsor,1600\nbreadth,1,merrywivesofwindsor,1600\ndrawling,1,merrywivesofwindsor,1600\nGreece,1,merrywivesofwindsor,1600\nStraight,1,merrywivesofwindsor,1600\nHerod,1,merrywivesofwindsor,1600\nwatery,1,merrywivesofwindsor,1600\nworships,1,merrywivesofwindsor,1600\nVile,1,merrywivesofwindsor,1600\nCupid's,1,merrywivesofwindsor,1600\nmuddy,1,merrywivesofwindsor,1600\ndissolved,1,merrywivesofwindsor,1600\nfallen,1,merrywivesofwindsor,1600\ntaken,1,merrywivesofwindsor,1600\nrotten,1,merrywivesofwindsor,1600\nPulcher,1,merrywivesofwindsor,1600\nprologue,1,merrywivesofwindsor,1600\nudge,1,merrywivesofwindsor,1600\n'quies,1,merrywivesofwindsor,1600\npoison,1,merrywivesofwindsor,1600\nkeeper's,1,merrywivesofwindsor,1600\nQu'ai,1,merrywivesofwindsor,1600\nsize,1,merrywivesofwindsor,1600\nrequire,1,merrywivesofwindsor,1600\nsmelling,1,merrywivesofwindsor,1600\ninclination,1,merrywivesofwindsor,1600\nbucking,1,merrywivesofwindsor,1600\nboitier,1,merrywivesofwindsor,1600\nlechery,1,merrywivesofwindsor,1600\nrain,1,merrywivesofwindsor,1600\nhaec,1,merrywivesofwindsor,1600\nribands,1,merrywivesofwindsor,1600\nbeguiles,1,merrywivesofwindsor,1600\ncockscomb,1,merrywivesofwindsor,1600\nyoke,1,merrywivesofwindsor,1600\noperations,1,merrywivesofwindsor,1600\nharvest,1,merrywivesofwindsor,1600\nprief,1,merrywivesofwindsor,1600\npeaten,1,merrywivesofwindsor,1600\nwooes,1,merrywivesofwindsor,1600\nvia,1,merrywivesofwindsor,1600\nfox,1,merrywivesofwindsor,1600\nForbear,1,merrywivesofwindsor,1600\nLapis,1,merrywivesofwindsor,1600\nswelled,1,merrywivesofwindsor,1600\nfoi,1,merrywivesofwindsor,1600\nwhence,1,merrywivesofwindsor,1600\nfollowers,1,merrywivesofwindsor,1600\nfail,1,merrywivesofwindsor,1600\nEven,1,merrywivesofwindsor,1600\ncrotchets,1,merrywivesofwindsor,1600\nmince,1,merrywivesofwindsor,1600\nkibes,1,merrywivesofwindsor,1600\ncontempt,1,merrywivesofwindsor,1600\nhideous,1,merrywivesofwindsor,1600\nShow,1,merrywivesofwindsor,1600\nheirs,1,merrywivesofwindsor,1600\nsails,1,merrywivesofwindsor,1600\nfait,1,merrywivesofwindsor,1600\nwholesome,1,merrywivesofwindsor,1600\ncarriers,1,merrywivesofwindsor,1600\npouch,1,merrywivesofwindsor,1600\nfretted,1,merrywivesofwindsor,1600\nprofane,1,merrywivesofwindsor,1600\nmontant,1,merrywivesofwindsor,1600\nground,1,merrywivesofwindsor,1600\nglover's,1,merrywivesofwindsor,1600\nminds,1,merrywivesofwindsor,1600\nSonnets,1,merrywivesofwindsor,1600\nyond,1,merrywivesofwindsor,1600\ngrate,1,merrywivesofwindsor,1600\njudge,1,merrywivesofwindsor,1600\npresses,1,merrywivesofwindsor,1600\ngiving,1,merrywivesofwindsor,1600\nPhrygian,1,merrywivesofwindsor,1600\nunited,1,merrywivesofwindsor,1600\nmiracle,1,merrywivesofwindsor,1600\nswearings,1,merrywivesofwindsor,1600\nutterly,1,merrywivesofwindsor,1600\ncares,1,merrywivesofwindsor,1600\ncaret,1,merrywivesofwindsor,1600\narticle,1,merrywivesofwindsor,1600\nfoh,1,merrywivesofwindsor,1600\nfall,1,merrywivesofwindsor,1600\nfoe,1,merrywivesofwindsor,1600\nphrases,1,merrywivesofwindsor,1600\nwilful,1,merrywivesofwindsor,1600\nwert,1,merrywivesofwindsor,1600\nJupiter,1,merrywivesofwindsor,1600\nswells,1,merrywivesofwindsor,1600\nkinsman,1,merrywivesofwindsor,1600\ngrand,1,merrywivesofwindsor,1600\npositive,1,merrywivesofwindsor,1600\nworm,1,merrywivesofwindsor,1600\nworn,1,merrywivesofwindsor,1600\ndiscover,1,merrywivesofwindsor,1600\ncattle,1,merrywivesofwindsor,1600\ngarcon,1,merrywivesofwindsor,1600\nwickedness,1,merrywivesofwindsor,1600\nrighteous,1,merrywivesofwindsor,1600\nroses,1,merrywivesofwindsor,1600\ndo't,1,merrywivesofwindsor,1600\nintention,1,merrywivesofwindsor,1600\nprattling,1,merrywivesofwindsor,1600\nMars,1,merrywivesofwindsor,1600\npepper,1,merrywivesofwindsor,1600\npullet,1,merrywivesofwindsor,1600\nflame,1,merrywivesofwindsor,1600\nframpold,1,merrywivesofwindsor,1600\nfilching,1,merrywivesofwindsor,1600\nnotify,1,merrywivesofwindsor,1600\npassion,1,merrywivesofwindsor,1600\nvow,1,merrywivesofwindsor,1600\nglanced,1,merrywivesofwindsor,1600\nAttend,1,merrywivesofwindsor,1600\ntaber,1,merrywivesofwindsor,1600\nBoy,1,merrywivesofwindsor,1600\nhowsoever,1,merrywivesofwindsor,1600\nbaboons,1,merrywivesofwindsor,1600\nranting,1,merrywivesofwindsor,1600\ndamnation,1,merrywivesofwindsor,1600\nlascivious,1,merrywivesofwindsor,1600\ncogging,1,merrywivesofwindsor,1600\nsnowballs,1,merrywivesofwindsor,1600\ntroat,1,merrywivesofwindsor,1600\nfrize,1,merrywivesofwindsor,1600\nbark,1,merrywivesofwindsor,1600\nthereby,1,merrywivesofwindsor,1600\nthunder,1,merrywivesofwindsor,1600\n'Love,1,merrywivesofwindsor,1600\nanswer'd,1,merrywivesofwindsor,1600\nshown,1,merrywivesofwindsor,1600\nwide,1,merrywivesofwindsor,1600\nBarbason,1,merrywivesofwindsor,1600\ntail,1,merrywivesofwindsor,1600\nsurge,1,merrywivesofwindsor,1600\npocket,1,merrywivesofwindsor,1600\nbite,1,merrywivesofwindsor,1600\ndivers,1,merrywivesofwindsor,1600\nunfold,1,merrywivesofwindsor,1600\nplessed,1,merrywivesofwindsor,1600\nReceived,1,merrywivesofwindsor,1600\nMother,1,merrywivesofwindsor,1600\nprotested,1,merrywivesofwindsor,1600\nan't,1,merrywivesofwindsor,1600\nver,1,merrywivesofwindsor,1600\nSomebody,1,merrywivesofwindsor,1600\nunfool,1,merrywivesofwindsor,1600\nReadins,1,merrywivesofwindsor,1600\nbath,1,merrywivesofwindsor,1600\nbate,1,merrywivesofwindsor,1600\nwatch'd,1,merrywivesofwindsor,1600\nbars,1,merrywivesofwindsor,1600\nbuttons,1,merrywivesofwindsor,1600\ngilded,1,merrywivesofwindsor,1600\nregister,1,merrywivesofwindsor,1600\n'Steal,1,merrywivesofwindsor,1600\ncuckold's,1,merrywivesofwindsor,1600\nstinking,1,merrywivesofwindsor,1600\npublic,1,merrywivesofwindsor,1600\npredominate,1,merrywivesofwindsor,1600\nKnocks,1,merrywivesofwindsor,1600\nslanderous,1,merrywivesofwindsor,1600\nband,1,merrywivesofwindsor,1600\nobservance,1,merrywivesofwindsor,1600\nfriendship,1,merrywivesofwindsor,1600\ntank,1,merrywivesofwindsor,1600\nhoof,1,merrywivesofwindsor,1600\nseemingly,1,merrywivesofwindsor,1600\nflames,1,merrywivesofwindsor,1600\nbalm,1,merrywivesofwindsor,1600\nmotive,1,merrywivesofwindsor,1600\nvitae,1,merrywivesofwindsor,1600\nvocativo,1,merrywivesofwindsor,1600\nLeda,1,merrywivesofwindsor,1600\ntame,1,merrywivesofwindsor,1600\ndam,1,merrywivesofwindsor,1600\nNoise,1,merrywivesofwindsor,1600\nfast,1,merrywivesofwindsor,1600\nlarge,1,merrywivesofwindsor,1600\nEach,1,merrywivesofwindsor,1600\nemperor,1,merrywivesofwindsor,1600\nsentences,1,merrywivesofwindsor,1600\nfare,1,merrywivesofwindsor,1600\nbaille,1,merrywivesofwindsor,1600\nlights,1,merrywivesofwindsor,1600\nfarm,1,merrywivesofwindsor,1600\ncoal,1,merrywivesofwindsor,1600\nCaesar,1,merrywivesofwindsor,1600\nAccusativo,1,merrywivesofwindsor,1600\nKindled,1,merrywivesofwindsor,1600\nswearer,1,merrywivesofwindsor,1600\namiable,1,merrywivesofwindsor,1600\naffliction,1,merrywivesofwindsor,1600\ncup,1,merrywivesofwindsor,1600\nchalices,1,merrywivesofwindsor,1600\nshuttle,1,merrywivesofwindsor,1600\ncompassed,1,merrywivesofwindsor,1600\npuppies,1,merrywivesofwindsor,1600\nshirts,1,merrywivesofwindsor,1600\nprovoked,1,merrywivesofwindsor,1600\nMephostophilus,1,merrywivesofwindsor,1600\nvarld,1,merrywivesofwindsor,1600\nasunder,1,merrywivesofwindsor,1600\nprivacy,1,merrywivesofwindsor,1600\nFALSTAFF',1,merrywivesofwindsor,1600\nchollors,1,merrywivesofwindsor,1600\nshoot,1,merrywivesofwindsor,1600\nought,1,merrywivesofwindsor,1600\nholds,1,merrywivesofwindsor,1600\nshore,1,merrywivesofwindsor,1600\nstarlight,1,merrywivesofwindsor,1600\nheires,1,merrywivesofwindsor,1600\nEngland,1,merrywivesofwindsor,1600\nholy,1,merrywivesofwindsor,1600\ndexterity,1,merrywivesofwindsor,1600\nclear,1,merrywivesofwindsor,1600\nNone,1,merrywivesofwindsor,1600\nflea's,1,merrywivesofwindsor,1600\nfertile,1,merrywivesofwindsor,1600\nunmeasurable,1,merrywivesofwindsor,1600\nVell,1,merrywivesofwindsor,1600\narticles,1,merrywivesofwindsor,1600\nvirginity,1,merrywivesofwindsor,1600\nenlargeth,1,merrywivesofwindsor,1600\ndangerous,1,merrywivesofwindsor,1600\nextraordinary,1,merrywivesofwindsor,1600\nfattest,1,merrywivesofwindsor,1600\npawned,1,merrywivesofwindsor,1600\nhollow,1,merrywivesofwindsor,1600\nsawpit,1,merrywivesofwindsor,1600\ncur,1,merrywivesofwindsor,1600\nsnap,1,merrywivesofwindsor,1600\npangs,1,merrywivesofwindsor,1600\nfires,1,merrywivesofwindsor,1600\noyster,1,merrywivesofwindsor,1600\n'Save,1,merrywivesofwindsor,1600\nloyal,1,merrywivesofwindsor,1600\nargument,1,merrywivesofwindsor,1600\nrevolt,1,merrywivesofwindsor,1600\ndistracts,1,merrywivesofwindsor,1600\nFrank,1,merrywivesofwindsor,1600\nGuiana,1,merrywivesofwindsor,1600\nassist,1,merrywivesofwindsor,1600\nperplexity,1,merrywivesofwindsor,1600\nlarron,1,merrywivesofwindsor,1600\npresents,1,merrywivesofwindsor,1600\nwinter,1,merrywivesofwindsor,1600\nrabble,1,merrywivesofwindsor,1600\nliver,1,merrywivesofwindsor,1600\nstreets,1,merrywivesofwindsor,1600\nmoney'd,1,merrywivesofwindsor,1600\nDat,1,merrywivesofwindsor,1600\nCornuto,1,merrywivesofwindsor,1600\nWherefore,1,merrywivesofwindsor,1600\nconjure,1,merrywivesofwindsor,1600\ncholer,1,merrywivesofwindsor,1600\nblazon,1,merrywivesofwindsor,1600\nprofits,1,merrywivesofwindsor,1600\nquod,1,merrywivesofwindsor,1600\naspire,1,merrywivesofwindsor,1600\nsatisfied,1,merrywivesofwindsor,1600\nterrors,1,merrywivesofwindsor,1600\nlungs,1,merrywivesofwindsor,1600\nyellow,1,merrywivesofwindsor,1600\nTroy,1,merrywivesofwindsor,1600\ncheerful,1,merrywivesofwindsor,1600\nhearty,1,merrywivesofwindsor,1600\n'quaes,1,merrywivesofwindsor,1600\ncook,1,merrywivesofwindsor,1600\nlying,1,merrywivesofwindsor,1600\ncontents,1,merrywivesofwindsor,1600\npudding,1,merrywivesofwindsor,1600\nswear,1,merrywivesofwindsor,1600\nfairer,1,merrywivesofwindsor,1600\ntraverse,1,merrywivesofwindsor,1600\nPandarus,1,merrywivesofwindsor,1600\nsinking,1,merrywivesofwindsor,1600\nprimero,1,merrywivesofwindsor,1600\ntook't,1,merrywivesofwindsor,1600\nseem,1,merrywivesofwindsor,1600\nfights,1,merrywivesofwindsor,1600\nquae,1,merrywivesofwindsor,1600\nCAIUS',1,merrywivesofwindsor,1600\nsports,1,merrywivesofwindsor,1600\nsupposed,1,merrywivesofwindsor,1600\nunkindness,1,merrywivesofwindsor,1600\ngnawn,1,merrywivesofwindsor,1600\nmarvellous,1,merrywivesofwindsor,1600\nlabras,1,merrywivesofwindsor,1600\nelves,1,merrywivesofwindsor,1600\nsees,1,merrywivesofwindsor,1600\ndrunken,1,merrywivesofwindsor,1600\nTerms,1,merrywivesofwindsor,1600\nliking,1,merrywivesofwindsor,1600\ncost,1,merrywivesofwindsor,1600\nMine,1,merrywivesofwindsor,1600\ntidings,1,merrywivesofwindsor,1600\nTrue,1,merrywivesofwindsor,1600\nlunes,1,merrywivesofwindsor,1600\nRingwood,1,merrywivesofwindsor,1600\nvehemency,1,merrywivesofwindsor,1600\nsetting,1,merrywivesofwindsor,1600\ntraitor,1,merrywivesofwindsor,1600\nPrat,1,merrywivesofwindsor,1600\noeillades,1,merrywivesofwindsor,1600\nsluts,1,merrywivesofwindsor,1600\nsecrecy,1,merrywivesofwindsor,1600\nrascally,1,merrywivesofwindsor,1600\nGentlemen,1,merrywivesofwindsor,1600\ndispense,1,merrywivesofwindsor,1600\nheavenly,1,merrywivesofwindsor,1600\no'erreaching,1,merrywivesofwindsor,1600\nHe'll,1,merrywivesofwindsor,1600\nbriefly,1,merrywivesofwindsor,1600\npour,1,merrywivesofwindsor,1600\njointure,1,merrywivesofwindsor,1600\ntherein,1,merrywivesofwindsor,1600\nblame,1,merrywivesofwindsor,1600\ncompremises,1,merrywivesofwindsor,1600\ngoat,1,merrywivesofwindsor,1600\ngreedy,1,merrywivesofwindsor,1600\nSackerson,1,merrywivesofwindsor,1600\nstopped,1,merrywivesofwindsor,1600\nTrib,1,merrywivesofwindsor,1600\njudicious,1,merrywivesofwindsor,1600\nsouls,1,merrywivesofwindsor,1600\nbake,1,merrywivesofwindsor,1600\nbeheld,1,merrywivesofwindsor,1600\naccording,1,merrywivesofwindsor,1600\ngibbet,1,merrywivesofwindsor,1600\nfairly,1,merrywivesofwindsor,1600\ncapacity,1,merrywivesofwindsor,1600\nembroidery,1,merrywivesofwindsor,1600\ncases,1,merrywivesofwindsor,1600\nwhilst,1,merrywivesofwindsor,1600\nsemi,1,merrywivesofwindsor,1600\nEdward,1,merrywivesofwindsor,1600\nScurvy,1,merrywivesofwindsor,1600\nordaining,1,merrywivesofwindsor,1600\nglowing,1,merrywivesofwindsor,1600\n'slid,1,merrywivesofwindsor,1600\nNeither,1,merrywivesofwindsor,1600\nallowed,1,merrywivesofwindsor,1600\nmother's,1,merrywivesofwindsor,1600\ndrawer,1,merrywivesofwindsor,1600\nbade,1,merrywivesofwindsor,1600\nslough,1,merrywivesofwindsor,1600\ncarriage,1,merrywivesofwindsor,1600\nnursh,1,merrywivesofwindsor,1600\nseason,1,merrywivesofwindsor,1600\ntinderbox,1,merrywivesofwindsor,1600\nNominativo,1,merrywivesofwindsor,1600\nlastly,1,merrywivesofwindsor,1600\ndeclensions,1,merrywivesofwindsor,1600\nfullam,1,merrywivesofwindsor,1600\nSingulariter,1,merrywivesofwindsor,1600\negress,1,merrywivesofwindsor,1600\nmethought,1,merrywivesofwindsor,1600\ncouple,1,merrywivesofwindsor,1600\nbestow,1,merrywivesofwindsor,1600\ninvite,1,merrywivesofwindsor,1600\ndetect,1,merrywivesofwindsor,1600\nrather',1,merrywivesofwindsor,1600\nbags,1,merrywivesofwindsor,1600\nDiable,1,merrywivesofwindsor,1600\nparcel,1,merrywivesofwindsor,1600\nsealed,1,merrywivesofwindsor,1600\nbrow,1,merrywivesofwindsor,1600\nfritters,1,merrywivesofwindsor,1600\nArticles,1,merrywivesofwindsor,1600\nservants,1,merrywivesofwindsor,1600\nfeasting,1,merrywivesofwindsor,1600\nlays,1,merrywivesofwindsor,1600\nassence,1,merrywivesofwindsor,1600\nimagination,1,merrywivesofwindsor,1600\nsuccessors,1,merrywivesofwindsor,1600\nmeasuring,1,merrywivesofwindsor,1600\nrheumatic,1,merrywivesofwindsor,1600\nwrite,1,merrywivesofwindsor,1600\nmal,1,merrywivesofwindsor,1600\nevening,1,merrywivesofwindsor,1600\nspirits,1,merrywivesofwindsor,1600\nadoption,1,merrywivesofwindsor,1600\nfiends,1,merrywivesofwindsor,1600\nlimbs,1,merrywivesofwindsor,1600\n'Hang,1,merrywivesofwindsor,1600\npeat,1,merrywivesofwindsor,1600\nKisses,1,merrywivesofwindsor,1600\nconstrue,1,merrywivesofwindsor,1600\npear,1,merrywivesofwindsor,1600\n'Seese',1,merrywivesofwindsor,1600\nafeard,1,merrywivesofwindsor,1600\n'scape,1,merrywivesofwindsor,1600\nrevolted,1,merrywivesofwindsor,1600\nscum,1,merrywivesofwindsor,1600\nseldom,1,merrywivesofwindsor,1600\nscut,1,merrywivesofwindsor,1600\nforced,1,merrywivesofwindsor,1600\ndistillation,1,merrywivesofwindsor,1600\nlearn,1,merrywivesofwindsor,1600\nwring,1,merrywivesofwindsor,1600\ndetection,1,merrywivesofwindsor,1600\nlaughed,1,merrywivesofwindsor,1600\nGaul,1,merrywivesofwindsor,1600\nSometime,1,merrywivesofwindsor,1600\ncourageous,1,merrywivesofwindsor,1600\nheaded,1,merrywivesofwindsor,1600\ntrip,1,merrywivesofwindsor,1600\nFaustuses,1,merrywivesofwindsor,1600\nunskilful,1,merrywivesofwindsor,1600\nmanifested,1,merrywivesofwindsor,1600\nupward,1,merrywivesofwindsor,1600\ncheater,1,merrywivesofwindsor,1600\nerected,1,merrywivesofwindsor,1600\nWrites,1,merrywivesofwindsor,1600\nFalstaffs,1,merrywivesofwindsor,1600\npitifully,1,merrywivesofwindsor,1600\nemployment,1,merrywivesofwindsor,1600\ndaubery,1,merrywivesofwindsor,1600\nClock,1,merrywivesofwindsor,1600\nsuffocation,1,merrywivesofwindsor,1600\nrepay,1,merrywivesofwindsor,1600\nwhit,1,merrywivesofwindsor,1600\ninstigated,1,merrywivesofwindsor,1600\nwhip,1,merrywivesofwindsor,1600\nladies,1,merrywivesofwindsor,1600\ndebtor,1,merrywivesofwindsor,1600\nencircle,1,merrywivesofwindsor,1600\nbody's,1,merrywivesofwindsor,1600\ntoast,1,merrywivesofwindsor,1600\npowerful,1,merrywivesofwindsor,1600\nbiting,1,merrywivesofwindsor,1600\nfled,1,merrywivesofwindsor,1600\nsimplicity,1,merrywivesofwindsor,1600\ncounty,1,merrywivesofwindsor,1600\nthinking,1,merrywivesofwindsor,1600\nbethink,1,merrywivesofwindsor,1600\nMeg,1,merrywivesofwindsor,1600\nBodykins,1,merrywivesofwindsor,1600\npunishment,1,merrywivesofwindsor,1600\nEight,1,merrywivesofwindsor,1600\nForsooth,1,merrywivesofwindsor,1600\nadown,1,merrywivesofwindsor,1600\nhodge,1,merrywivesofwindsor,1600\nimprovident,1,merrywivesofwindsor,1600\non's,1,merrywivesofwindsor,1600\nbuck's,1,merrywivesofwindsor,1600\nenjoying,1,merrywivesofwindsor,1600\nphysic,1,merrywivesofwindsor,1600\nAmen,1,merrywivesofwindsor,1600\nchaud,1,merrywivesofwindsor,1600\nSleep,1,merrywivesofwindsor,1600\ntelling,1,merrywivesofwindsor,1600\nGerman,1,merrywivesofwindsor,1600\nwomanhood,1,merrywivesofwindsor,1600\n'mum',1,merrywivesofwindsor,1600\ntattling,1,merrywivesofwindsor,1600\nrespects,1,merrywivesofwindsor,1600\nnativity,1,merrywivesofwindsor,1600\nmilitary,1,merrywivesofwindsor,1600\npolitic,1,merrywivesofwindsor,1600\npeck,1,merrywivesofwindsor,1600\nniggardly,1,merrywivesofwindsor,1600\ncredit,1,merrywivesofwindsor,1600\nflax,1,merrywivesofwindsor,1600\nClapper,1,merrywivesofwindsor,1600\ninherit,1,merrywivesofwindsor,1600\nunraked,1,merrywivesofwindsor,1600\ntameness,1,merrywivesofwindsor,1600\nGreen,1,merrywivesofwindsor,1600\nsheathe,1,merrywivesofwindsor,1600\nknight's,1,merrywivesofwindsor,1600\nvirtue,1,merrywivesofwindsor,1600\npeds,1,merrywivesofwindsor,1600\npotatoes,1,merrywivesofwindsor,1600\ntruant,1,merrywivesofwindsor,1600\nchooser,1,merrywivesofwindsor,1600\nseemed,1,merrywivesofwindsor,1600\nProdigal,1,merrywivesofwindsor,1600\nfright,1,merrywivesofwindsor,1600\nrecompense,1,merrywivesofwindsor,1600\npeer,1,merrywivesofwindsor,1600\nWithout,1,merrywivesofwindsor,1600\nsilver,1,merrywivesofwindsor,1600\ngets,1,merrywivesofwindsor,1600\n'Peer,1,merrywivesofwindsor,1600\nApril,1,merrywivesofwindsor,1600\nopportunity,1,merrywivesofwindsor,1600\ndivinity,1,merrywivesofwindsor,1600\nimperfection,1,merrywivesofwindsor,1600\ninstalment,1,merrywivesofwindsor,1600\nmummy,1,merrywivesofwindsor,1600\neyas,1,merrywivesofwindsor,1600\nsquire,1,merrywivesofwindsor,1600\nflaring,1,merrywivesofwindsor,1600\nhog',1,merrywivesofwindsor,1600\nappetite,1,merrywivesofwindsor,1600\nLust,1,merrywivesofwindsor,1600\nassistant,1,merrywivesofwindsor,1600\nmetheglins,1,merrywivesofwindsor,1600\nwooers,1,merrywivesofwindsor,1600\nmon,1,merrywivesofwindsor,1600\nJustice,1,merrywivesofwindsor,1600\ndispatched,1,merrywivesofwindsor,1600\nleading,1,merrywivesofwindsor,1600\nsimply,1,merrywivesofwindsor,1600\namazedness,1,merrywivesofwindsor,1600\nshrewd,1,merrywivesofwindsor,1600\nwildly,1,merrywivesofwindsor,1600\nassurance,1,merrywivesofwindsor,1600\npless,1,merrywivesofwindsor,1600\nshelvy,1,merrywivesofwindsor,1600\ninconstancy,1,merrywivesofwindsor,1600\nwringer,1,merrywivesofwindsor,1600\nreverse,1,merrywivesofwindsor,1600\nConceal,1,merrywivesofwindsor,1600\nshaft,1,merrywivesofwindsor,1600\ncareless,1,merrywivesofwindsor,1600\njudged,1,merrywivesofwindsor,1600\nMount,1,merrywivesofwindsor,1600\nHibocrates,1,merrywivesofwindsor,1600\nprovide,1,merrywivesofwindsor,1600\nstudent,1,merrywivesofwindsor,1600\ndark,1,merrywivesofwindsor,1600\nwhoe'er,1,merrywivesofwindsor,1600\nPsalm,1,merrywivesofwindsor,1600\nchariness,1,merrywivesofwindsor,1600\ncatch,1,merrywivesofwindsor,1600\nphlegmatic,1,merrywivesofwindsor,1600\nlane,1,merrywivesofwindsor,1600\nharum,1,merrywivesofwindsor,1600\ntop,1,merrywivesofwindsor,1600\nanother's,1,merrywivesofwindsor,1600\ndry,1,merrywivesofwindsor,1600\nswallowed,1,merrywivesofwindsor,1600\nreverend,1,merrywivesofwindsor,1600\nwonders,1,merrywivesofwindsor,1600\nBring,1,merrywivesofwindsor,1600\nDRAMATIS,1,merrywivesofwindsor,1600\nomnipotent,1,merrywivesofwindsor,1600\ncertain,1,merrywivesofwindsor,1600\nshift,1,merrywivesofwindsor,1600\nDisarm,1,merrywivesofwindsor,1600\nPAGE's,1,merrywivesofwindsor,1600\ngallimaufry,1,merrywivesofwindsor,1600\nguests,1,merrywivesofwindsor,1600\nshine,1,merrywivesofwindsor,1600\ndank,1,merrywivesofwindsor,1600\nbehold,1,merrywivesofwindsor,1600\nKnight,1,merrywivesofwindsor,1600\nDispatched,1,merrywivesofwindsor,1600\nshins,1,merrywivesofwindsor,1600\nflower,1,merrywivesofwindsor,1600\nobedient,1,merrywivesofwindsor,1600\nascend,1,merrywivesofwindsor,1600\ncross,1,merrywivesofwindsor,1600\ndes,1,merrywivesofwindsor,1600\ngentles,1,merrywivesofwindsor,1600\nking,1,merrywivesofwindsor,1600\npossibilities,1,merrywivesofwindsor,1600\nkine,1,merrywivesofwindsor,1600\ndee,1,merrywivesofwindsor,1600\nsprag,1,merrywivesofwindsor,1600\nden,1,merrywivesofwindsor,1600\nboots,1,merrywivesofwindsor,1600\nvorld,1,merrywivesofwindsor,1600\nlecher,1,merrywivesofwindsor,1600\nfigures,1,merrywivesofwindsor,1600\ntainted,1,merrywivesofwindsor,1600\ndefences,1,merrywivesofwindsor,1600\nremorse,1,merrywivesofwindsor,1600\nrounds,1,merrywivesofwindsor,1600\ndone't,1,merrywivesofwindsor,1600\ntrifling,1,merrywivesofwindsor,1600\ncannon,1,merrywivesofwindsor,1600\nfragrant,1,merrywivesofwindsor,1600\ncandles,1,merrywivesofwindsor,1600\ndoting,1,merrywivesofwindsor,1600\nforbear,1,merrywivesofwindsor,1600\nbreathe,1,merrywivesofwindsor,1600\ncozeners,1,merrywivesofwindsor,1600\noaths,1,merrywivesofwindsor,1600\nflattering,1,merrywivesofwindsor,1600\navaunt,1,merrywivesofwindsor,1600\nbids,1,merrywivesofwindsor,1600\nproperties,1,merrywivesofwindsor,1600\nth',1,merrywivesofwindsor,1600\ntread,1,merrywivesofwindsor,1600\nhunting,1,merrywivesofwindsor,1600\ndirection,1,merrywivesofwindsor,1600\nvitness,1,merrywivesofwindsor,1600\nundertake,1,merrywivesofwindsor,1600\nhatches,1,merrywivesofwindsor,1600\npreeches,1,merrywivesofwindsor,1600\ndis,1,merrywivesofwindsor,1600\nenemy,1,merrywivesofwindsor,1600\nnostril,1,merrywivesofwindsor,1600\nsharp,1,merrywivesofwindsor,1600\npeaking,1,merrywivesofwindsor,1600\nwoo'd,1,merrywivesofwindsor,1600\npunished,1,merrywivesofwindsor,1600\ngodly,1,merrywivesofwindsor,1600\nweaver's,1,merrywivesofwindsor,1600\nhedge,1,merrywivesofwindsor,1600\nfortunes,1,merrywivesofwindsor,1600\nlargely,1,merrywivesofwindsor,1600\nswan,1,merrywivesofwindsor,1600\nsummer,1,merrywivesofwindsor,1600\ndaughters,1,merrywivesofwindsor,1600\nredress'd,1,merrywivesofwindsor,1600\nanswered,2,merrywivesofwindsor,1600\nYou're,2,merrywivesofwindsor,1600\nheed,2,merrywivesofwindsor,1600\nheel,2,merrywivesofwindsor,1600\nwashing,2,merrywivesofwindsor,1600\nvillany,2,merrywivesofwindsor,1600\nquality,2,merrywivesofwindsor,1600\nsweetheart,2,merrywivesofwindsor,1600\nignorance,2,merrywivesofwindsor,1600\nsuffer,2,merrywivesofwindsor,1600\nred,2,merrywivesofwindsor,1600\nextremity,2,merrywivesofwindsor,1600\ndrop,2,merrywivesofwindsor,1600\nfor't,2,merrywivesofwindsor,1600\nwrit,2,merrywivesofwindsor,1600\nadvantage,2,merrywivesofwindsor,1600\nclerkly,2,merrywivesofwindsor,1600\npreparation,2,merrywivesofwindsor,1600\nrascal,2,merrywivesofwindsor,1600\nsteals,2,merrywivesofwindsor,1600\nWilt,2,merrywivesofwindsor,1600\npublicly,2,merrywivesofwindsor,1600\nmush,2,merrywivesofwindsor,1600\nboys,2,merrywivesofwindsor,1600\nheld,2,merrywivesofwindsor,1600\ndish,2,merrywivesofwindsor,1600\nTell,2,merrywivesofwindsor,1600\nwrites,2,merrywivesofwindsor,1600\n'Oman,2,merrywivesofwindsor,1600\nspake,2,merrywivesofwindsor,1600\nsight,2,merrywivesofwindsor,1600\nerrand,2,merrywivesofwindsor,1600\nfought,2,merrywivesofwindsor,1600\npottle,2,merrywivesofwindsor,1600\nhanged,2,merrywivesofwindsor,1600\nappear,2,merrywivesofwindsor,1600\nsort,2,merrywivesofwindsor,1600\n'Armigero,2,merrywivesofwindsor,1600\npick,2,merrywivesofwindsor,1600\nMoney,2,merrywivesofwindsor,1600\nworks,2,merrywivesofwindsor,1600\nlief,2,merrywivesofwindsor,1600\ncare,2,merrywivesofwindsor,1600\nsong,2,merrywivesofwindsor,1600\ncoffers,2,merrywivesofwindsor,1600\nmistook,2,merrywivesofwindsor,1600\npursue,2,merrywivesofwindsor,1600\nmercy,2,merrywivesofwindsor,1600\nbirth,2,merrywivesofwindsor,1600\nActaeon,2,merrywivesofwindsor,1600\nmatters,2,merrywivesofwindsor,1600\nlunatics,2,merrywivesofwindsor,1600\ndance,2,merrywivesofwindsor,1600\nhour's,2,merrywivesofwindsor,1600\nlime,2,merrywivesofwindsor,1600\nPulling,2,merrywivesofwindsor,1600\nafterwards,2,merrywivesofwindsor,1600\ncheer,2,merrywivesofwindsor,1600\nhearing,2,merrywivesofwindsor,1600\nknaves,2,merrywivesofwindsor,1600\ncomplexion,2,merrywivesofwindsor,1600\nnoise,2,merrywivesofwindsor,1600\ntoys,2,merrywivesofwindsor,1600\nmoonshine,2,merrywivesofwindsor,1600\nasked,2,merrywivesofwindsor,1600\nyards,2,merrywivesofwindsor,1600\nsit,2,merrywivesofwindsor,1600\nGet,2,merrywivesofwindsor,1600\nconceive,2,merrywivesofwindsor,1600\ntapster,2,merrywivesofwindsor,1600\nvirtuous,2,merrywivesofwindsor,1600\nshe'll,2,merrywivesofwindsor,1600\nsea,2,merrywivesofwindsor,1600\n'twas,2,merrywivesofwindsor,1600\ngeese,2,merrywivesofwindsor,1600\nspy,2,merrywivesofwindsor,1600\nworts,2,merrywivesofwindsor,1600\nsubject,2,merrywivesofwindsor,1600\nwight,2,merrywivesofwindsor,1600\nWas,2,merrywivesofwindsor,1600\nurinals,2,merrywivesofwindsor,1600\nscour,2,merrywivesofwindsor,1600\nattends,2,merrywivesofwindsor,1600\nadmittance,2,merrywivesofwindsor,1600\nsecond,2,merrywivesofwindsor,1600\nlooks,2,merrywivesofwindsor,1600\nmutually,2,merrywivesofwindsor,1600\nread,2,merrywivesofwindsor,1600\nourselves,2,merrywivesofwindsor,1600\noffence,2,merrywivesofwindsor,1600\ntaught,2,merrywivesofwindsor,1600\nvile,2,merrywivesofwindsor,1600\nworse,2,merrywivesofwindsor,1600\nopportunities,2,merrywivesofwindsor,1600\nbrain,2,merrywivesofwindsor,1600\npiece,2,merrywivesofwindsor,1600\nOur,2,merrywivesofwindsor,1600\nmonster,2,merrywivesofwindsor,1600\nBuck,2,merrywivesofwindsor,1600\nrhyme,2,merrywivesofwindsor,1600\ncivil,2,merrywivesofwindsor,1600\npribbles,2,merrywivesofwindsor,1600\nabsence,2,merrywivesofwindsor,1600\nplots,2,merrywivesofwindsor,1600\nfalls,2,merrywivesofwindsor,1600\nlaundress,2,merrywivesofwindsor,1600\npeard,2,merrywivesofwindsor,1600\nWant,2,merrywivesofwindsor,1600\nsauce,2,merrywivesofwindsor,1600\ngrow,2,merrywivesofwindsor,1600\nservice,2,merrywivesofwindsor,1600\ngibes,2,merrywivesofwindsor,1600\nputter,2,merrywivesofwindsor,1600\nOld,2,merrywivesofwindsor,1600\nchoose,2,merrywivesofwindsor,1600\nwind,2,merrywivesofwindsor,1600\nothers,2,merrywivesofwindsor,1600\nwink,2,merrywivesofwindsor,1600\nprevent,2,merrywivesofwindsor,1600\nceremony,2,merrywivesofwindsor,1600\nLatin,2,merrywivesofwindsor,1600\nflesh,2,merrywivesofwindsor,1600\nknights,2,merrywivesofwindsor,1600\nhorum,2,merrywivesofwindsor,1600\nsteal,2,merrywivesofwindsor,1600\nTroth,2,merrywivesofwindsor,1600\nesquire,2,merrywivesofwindsor,1600\nturned,2,merrywivesofwindsor,1600\nmead,2,merrywivesofwindsor,1600\nensconce,2,merrywivesofwindsor,1600\nrest,2,merrywivesofwindsor,1600\nvoice,2,merrywivesofwindsor,1600\nwash,2,merrywivesofwindsor,1600\nsteel,2,merrywivesofwindsor,1600\nThere's,2,merrywivesofwindsor,1600\nwast,2,merrywivesofwindsor,1600\ncanary,2,merrywivesofwindsor,1600\nparty,2,merrywivesofwindsor,1600\ndiscuss,2,merrywivesofwindsor,1600\neach,2,merrywivesofwindsor,1600\nsenses,2,merrywivesofwindsor,1600\nFaith,2,merrywivesofwindsor,1600\nside,2,merrywivesofwindsor,1600\nburning,2,merrywivesofwindsor,1600\nHold,2,merrywivesofwindsor,1600\nbacks,2,merrywivesofwindsor,1600\nserving,2,merrywivesofwindsor,1600\nmeasure,2,merrywivesofwindsor,1600\nGloucestershire,2,merrywivesofwindsor,1600\nmadrigals,2,merrywivesofwindsor,1600\naltogether,2,merrywivesofwindsor,1600\npay,2,merrywivesofwindsor,1600\nchaste,2,merrywivesofwindsor,1600\neternal,2,merrywivesofwindsor,1600\namong,2,merrywivesofwindsor,1600\nbag,2,merrywivesofwindsor,1600\nscurvy,2,merrywivesofwindsor,1600\nunless,2,merrywivesofwindsor,1600\nkept,2,merrywivesofwindsor,1600\nto't,2,merrywivesofwindsor,1600\nbilbo,2,merrywivesofwindsor,1600\npawn,2,merrywivesofwindsor,1600\nflowers,2,merrywivesofwindsor,1600\n'lapis,2,merrywivesofwindsor,1600\nblest,2,merrywivesofwindsor,1600\nwhole,2,merrywivesofwindsor,1600\nowner,2,merrywivesofwindsor,1600\nfocative,2,merrywivesofwindsor,1600\ndenial,2,merrywivesofwindsor,1600\nplay,2,merrywivesofwindsor,1600\ngreasy,2,merrywivesofwindsor,1600\nears,2,merrywivesofwindsor,1600\npit,2,merrywivesofwindsor,1600\nprove,2,merrywivesofwindsor,1600\nsirs,2,merrywivesofwindsor,1600\nCorporal,2,merrywivesofwindsor,1600\nThou'rt,2,merrywivesofwindsor,1600\ngave,2,merrywivesofwindsor,1600\nSleeves,2,merrywivesofwindsor,1600\nweek,2,merrywivesofwindsor,1600\nfields,2,merrywivesofwindsor,1600\nbell,2,merrywivesofwindsor,1600\nPrithee,2,merrywivesofwindsor,1600\nstruck,2,merrywivesofwindsor,1600\nlearned,2,merrywivesofwindsor,1600\nwear,2,merrywivesofwindsor,1600\nbeyond,2,merrywivesofwindsor,1600\nsuddenly,2,merrywivesofwindsor,1600\njewel,2,merrywivesofwindsor,1600\njust,2,merrywivesofwindsor,1600\nsilk,2,merrywivesofwindsor,1600\ndiscretions,2,merrywivesofwindsor,1600\nbuy,2,merrywivesofwindsor,1600\nAbout,2,merrywivesofwindsor,1600\nMelodious,2,merrywivesofwindsor,1600\ntongue,2,merrywivesofwindsor,1600\nWhither,2,merrywivesofwindsor,1600\ngrandsire,2,merrywivesofwindsor,1600\nBoth,2,merrywivesofwindsor,1600\ndogs,2,merrywivesofwindsor,1600\nimpatience,2,merrywivesofwindsor,1600\nembraced,2,merrywivesofwindsor,1600\nMock,2,merrywivesofwindsor,1600\nbeam,2,merrywivesofwindsor,1600\ntightly,2,merrywivesofwindsor,1600\npostmaster's,2,merrywivesofwindsor,1600\ndear,2,merrywivesofwindsor,1600\ndeal,2,merrywivesofwindsor,1600\ngait,2,merrywivesofwindsor,1600\nvouchsafe,2,merrywivesofwindsor,1600\nholiday,2,merrywivesofwindsor,1600\nBesides,2,merrywivesofwindsor,1600\ncontinual,2,merrywivesofwindsor,1600\napproach,2,merrywivesofwindsor,1600\nforget,2,merrywivesofwindsor,1600\nthyself,2,merrywivesofwindsor,1600\nCuckold,2,merrywivesofwindsor,1600\nfixed,2,merrywivesofwindsor,1600\ndried,2,merrywivesofwindsor,1600\nfavored,2,merrywivesofwindsor,1600\nprosper,2,merrywivesofwindsor,1600\nwonderful,2,merrywivesofwindsor,1600\ncommitted,2,merrywivesofwindsor,1600\nYonder,2,merrywivesofwindsor,1600\nbodies,2,merrywivesofwindsor,1600\nregion,2,merrywivesofwindsor,1600\nSecond,2,merrywivesofwindsor,1600\nstrain,2,merrywivesofwindsor,1600\nnecessity,2,merrywivesofwindsor,1600\naside,2,merrywivesofwindsor,1600\nidle,2,merrywivesofwindsor,1600\nscholar,2,merrywivesofwindsor,1600\npursues,2,merrywivesofwindsor,1600\npursued,2,merrywivesofwindsor,1600\nlost,2,merrywivesofwindsor,1600\nplaying,2,merrywivesofwindsor,1600\nsemblance,2,merrywivesofwindsor,1600\nthose,2,merrywivesofwindsor,1600\napparel,2,merrywivesofwindsor,1600\nforgot,2,merrywivesofwindsor,1600\nwithered,2,merrywivesofwindsor,1600\ngrace,2,merrywivesofwindsor,1600\nhog,2,merrywivesofwindsor,1600\nBlessing,2,merrywivesofwindsor,1600\nthrice,2,merrywivesofwindsor,1600\nFery,2,merrywivesofwindsor,1600\neasy,2,merrywivesofwindsor,1600\nweapon,2,merrywivesofwindsor,1600\naffects,2,merrywivesofwindsor,1600\nmessenger,2,merrywivesofwindsor,1600\nfroth,2,merrywivesofwindsor,1600\nnearer,2,merrywivesofwindsor,1600\nthrift,2,merrywivesofwindsor,1600\ntrade,2,merrywivesofwindsor,1600\ndraws,2,merrywivesofwindsor,1600\nthinkest,2,merrywivesofwindsor,1600\nqui,2,merrywivesofwindsor,1600\nschool,2,merrywivesofwindsor,1600\nmighty,2,merrywivesofwindsor,1600\npraise,2,merrywivesofwindsor,1600\nexcuse,2,merrywivesofwindsor,1600\ncozenage,2,merrywivesofwindsor,1600\nape,2,merrywivesofwindsor,1600\ndevise,2,merrywivesofwindsor,1600\npack,2,merrywivesofwindsor,1600\nfood,2,merrywivesofwindsor,1600\nlousy,2,merrywivesofwindsor,1600\nAbraham,2,merrywivesofwindsor,1600\ndishonest,2,merrywivesofwindsor,1600\ngirl,2,merrywivesofwindsor,1600\nGenitive,2,merrywivesofwindsor,1600\nRobin,2,merrywivesofwindsor,1600\nThan,2,merrywivesofwindsor,1600\nchance,2,merrywivesofwindsor,1600\nfinely,2,merrywivesofwindsor,1600\nknock,2,merrywivesofwindsor,1600\nprate,2,merrywivesofwindsor,1600\n'you,2,merrywivesofwindsor,1600\nbehavior,2,merrywivesofwindsor,1600\nfantasy,2,merrywivesofwindsor,1600\ntrial,2,merrywivesofwindsor,1600\nenjoy,2,merrywivesofwindsor,1600\nspoken,2,merrywivesofwindsor,1600\nLucifer,2,merrywivesofwindsor,1600\nyesterday,2,merrywivesofwindsor,1600\noccasion,2,merrywivesofwindsor,1600\nnouns,2,merrywivesofwindsor,1600\ncastle,2,merrywivesofwindsor,1600\ntarry,2,merrywivesofwindsor,1600\ncarried,2,merrywivesofwindsor,1600\nTen,2,merrywivesofwindsor,1600\nrascals,2,merrywivesofwindsor,1600\nprain,2,merrywivesofwindsor,1600\nalmost,2,merrywivesofwindsor,1600\naction,2,merrywivesofwindsor,1600\nposset,2,merrywivesofwindsor,1600\nbelow,2,merrywivesofwindsor,1600\nconveyed,2,merrywivesofwindsor,1600\nCaius',2,merrywivesofwindsor,1600\ntender,2,merrywivesofwindsor,1600\nChristians,2,merrywivesofwindsor,1600\nstrike,2,merrywivesofwindsor,1600\nFrom,2,merrywivesofwindsor,1600\nlearning,2,merrywivesofwindsor,1600\nwho's,2,merrywivesofwindsor,1600\nevermore,2,merrywivesofwindsor,1600\nTherefore,2,merrywivesofwindsor,1600\nmouth,2,merrywivesofwindsor,1600\nyouth,2,merrywivesofwindsor,1600\nvater,2,merrywivesofwindsor,1600\nknighted,2,merrywivesofwindsor,1600\nappointment,2,merrywivesofwindsor,1600\neffect,2,merrywivesofwindsor,1600\nkissed,2,merrywivesofwindsor,1600\nvarlet,2,merrywivesofwindsor,1600\nstart,2,merrywivesofwindsor,1600\ntempest,2,merrywivesofwindsor,1600\nrests,2,merrywivesofwindsor,1600\nshuffle,2,merrywivesofwindsor,1600\naccusative,2,merrywivesofwindsor,1600\nprocure,2,merrywivesofwindsor,1600\ndream,2,merrywivesofwindsor,1600\ncoward,2,merrywivesofwindsor,1600\nmark,2,merrywivesofwindsor,1600\ndevils,2,merrywivesofwindsor,1600\nThen,2,merrywivesofwindsor,1600\nlet's,2,merrywivesofwindsor,1600\nbecause,2,merrywivesofwindsor,1600\nlabour,2,merrywivesofwindsor,1600\neke,2,merrywivesofwindsor,1600\nspecial,2,merrywivesofwindsor,1600\nmiss,2,merrywivesofwindsor,1600\n'mum,2,merrywivesofwindsor,1600\nfish,2,merrywivesofwindsor,1600\napart,2,merrywivesofwindsor,1600\nwantonness,2,merrywivesofwindsor,1600\noil,2,merrywivesofwindsor,1600\nsayest,2,merrywivesofwindsor,1600\nunfolded,2,merrywivesofwindsor,1600\nodd,2,merrywivesofwindsor,1600\nflies,2,merrywivesofwindsor,1600\nretire,2,merrywivesofwindsor,1600\nstyle,2,merrywivesofwindsor,1600\nsides,2,merrywivesofwindsor,1600\nwin,2,merrywivesofwindsor,1600\nGalen,2,merrywivesofwindsor,1600\nbread,2,merrywivesofwindsor,1600\nknife,2,merrywivesofwindsor,1600\nring,2,merrywivesofwindsor,1600\nfrailty,2,merrywivesofwindsor,1600\nGermans,2,merrywivesofwindsor,1600\nclock,2,merrywivesofwindsor,1600\npauca,2,merrywivesofwindsor,1600\nyou're,2,merrywivesofwindsor,1600\nsave,2,merrywivesofwindsor,1600\ncalled,2,merrywivesofwindsor,1600\nCan,2,merrywivesofwindsor,1600\narms,2,merrywivesofwindsor,1600\nswinged,2,merrywivesofwindsor,1600\nintend,2,merrywivesofwindsor,1600\nHobgoblin,2,merrywivesofwindsor,1600\npence,2,merrywivesofwindsor,1600\nhair,2,merrywivesofwindsor,1600\ndrowned,2,merrywivesofwindsor,1600\nfamiliar,2,merrywivesofwindsor,1600\nserved,2,merrywivesofwindsor,1600\nwhat's,2,merrywivesofwindsor,1600\ncoffer,2,merrywivesofwindsor,1600\nclapper,2,merrywivesofwindsor,1600\ncompass,2,merrywivesofwindsor,1600\ndisposition,2,merrywivesofwindsor,1600\nthreatened,2,merrywivesofwindsor,1600\nwaste,2,merrywivesofwindsor,1600\nbeguiled,2,merrywivesofwindsor,1600\nangry,2,merrywivesofwindsor,1600\ncover,2,merrywivesofwindsor,1600\ngifts,2,merrywivesofwindsor,1600\nfain,2,merrywivesofwindsor,1600\ntable,2,merrywivesofwindsor,1600\nevil,2,merrywivesofwindsor,1600\nork,2,merrywivesofwindsor,1600\nort,2,merrywivesofwindsor,1600\ndoublet,2,merrywivesofwindsor,1600\nmodesty,2,merrywivesofwindsor,1600\nTill,2,merrywivesofwindsor,1600\nspeciously,2,merrywivesofwindsor,1600\nplease,2,merrywivesofwindsor,1600\ntune,2,merrywivesofwindsor,1600\ncolours,2,merrywivesofwindsor,1600\nthrew,2,merrywivesofwindsor,1600\nfly,2,merrywivesofwindsor,1600\n'em,2,merrywivesofwindsor,1600\nminute,2,merrywivesofwindsor,1600\nfit,2,merrywivesofwindsor,1600\npleases,2,merrywivesofwindsor,1600\nvlouting,2,merrywivesofwindsor,1600\nhose,2,merrywivesofwindsor,1600\nmeddle,2,merrywivesofwindsor,1600\nta'en,2,merrywivesofwindsor,1600\nqueen,2,merrywivesofwindsor,1600\nCastle,2,merrywivesofwindsor,1600\npatient,2,merrywivesofwindsor,1600\nWord,2,merrywivesofwindsor,1600\nwhither,2,merrywivesofwindsor,1600\nmeaning,2,merrywivesofwindsor,1600\nbase,2,merrywivesofwindsor,1600\naunt,2,merrywivesofwindsor,1600\nditch,2,merrywivesofwindsor,1600\nfate,2,merrywivesofwindsor,1600\ncock,2,merrywivesofwindsor,1600\nVery,2,merrywivesofwindsor,1600\nbill,2,merrywivesofwindsor,1600\ngallant,2,merrywivesofwindsor,1600\nman's,2,merrywivesofwindsor,1600\nfolks,2,merrywivesofwindsor,1600\ncue,2,merrywivesofwindsor,1600\nconvey,2,merrywivesofwindsor,1600\njests,2,merrywivesofwindsor,1600\nintolerable,2,merrywivesofwindsor,1600\nAssist,2,merrywivesofwindsor,1600\nwild,2,merrywivesofwindsor,1600\nreproof,2,merrywivesofwindsor,1600\nfidelicet,2,merrywivesofwindsor,1600\nwilt,2,merrywivesofwindsor,1600\nhole,2,merrywivesofwindsor,1600\ndozen,2,merrywivesofwindsor,1600\nunto,2,merrywivesofwindsor,1600\nrequest,2,merrywivesofwindsor,1600\nstrong,2,merrywivesofwindsor,1600\nquean,2,merrywivesofwindsor,1600\nconvenient,2,merrywivesofwindsor,1600\nprayers,2,merrywivesofwindsor,1600\nhung,2,merrywivesofwindsor,1600\nalone,2,merrywivesofwindsor,1600\nadieu,2,merrywivesofwindsor,1600\nlow,2,merrywivesofwindsor,1600\nconverse,2,merrywivesofwindsor,1600\ncony,2,merrywivesofwindsor,1600\nback,2,merrywivesofwindsor,1600\nseen,2,merrywivesofwindsor,1600\ntroth,2,merrywivesofwindsor,1600\ncog,2,merrywivesofwindsor,1600\ndefend,2,merrywivesofwindsor,1600\ndiscretion,2,merrywivesofwindsor,1600\navised,2,merrywivesofwindsor,1600\nperiod,2,merrywivesofwindsor,1600\nfellows,2,merrywivesofwindsor,1600\nwhom,2,merrywivesofwindsor,1600\ncrest,2,merrywivesofwindsor,1600\ntroop,2,merrywivesofwindsor,1600\nsacred,2,merrywivesofwindsor,1600\nOd's,2,merrywivesofwindsor,1600\nmodest,2,merrywivesofwindsor,1600\navoid,2,merrywivesofwindsor,1600\nsuffice,2,merrywivesofwindsor,1600\nSend,2,merrywivesofwindsor,1600\nprayer,2,merrywivesofwindsor,1600\nexcellency,2,merrywivesofwindsor,1600\ngods,2,merrywivesofwindsor,1600\nouphes,2,merrywivesofwindsor,1600\nblank,2,merrywivesofwindsor,1600\nnurse,2,merrywivesofwindsor,1600\ndeceive,2,merrywivesofwindsor,1600\nkerchief,2,merrywivesofwindsor,1600\nhiding,2,merrywivesofwindsor,1600\nRiddles,2,merrywivesofwindsor,1600\ntrow,2,merrywivesofwindsor,1600\nborrowed,2,merrywivesofwindsor,1600\npersuade,2,merrywivesofwindsor,1600\nstewed,2,merrywivesofwindsor,1600\nturtles,2,merrywivesofwindsor,1600\nvicar,2,merrywivesofwindsor,1600\nguts,2,merrywivesofwindsor,1600\nleast,2,merrywivesofwindsor,1600\ndoing,2,merrywivesofwindsor,1600\nAnother,2,merrywivesofwindsor,1600\nCavaleiro,2,merrywivesofwindsor,1600\nsadness,2,merrywivesofwindsor,1600\nDoes,2,merrywivesofwindsor,1600\nBefore,2,merrywivesofwindsor,1600\nSince,2,merrywivesofwindsor,1600\nabuse,2,merrywivesofwindsor,1600\ngrievously,2,merrywivesofwindsor,1600\nburnt,2,merrywivesofwindsor,1600\nthoughts,2,merrywivesofwindsor,1600\nlips,2,merrywivesofwindsor,1600\ndiable,2,merrywivesofwindsor,1600\nfashion,2,merrywivesofwindsor,1600\non't,2,merrywivesofwindsor,1600\nlive,2,merrywivesofwindsor,1600\ngravity,2,merrywivesofwindsor,1600\nbeauty,2,merrywivesofwindsor,1600\nReason,2,merrywivesofwindsor,1600\nknave's,2,merrywivesofwindsor,1600\nLent,2,merrywivesofwindsor,1600\nstrange,2,merrywivesofwindsor,1600\ndwells,2,merrywivesofwindsor,1600\ntry,2,merrywivesofwindsor,1600\nwitness,2,merrywivesofwindsor,1600\nrises,2,merrywivesofwindsor,1600\nexpense,2,merrywivesofwindsor,1600\nlaid,2,merrywivesofwindsor,1600\ndoe,2,merrywivesofwindsor,1600\nrespect,2,merrywivesofwindsor,1600\nAlice,2,merrywivesofwindsor,1600\nposies,2,merrywivesofwindsor,1600\nsudden,2,merrywivesofwindsor,1600\nfifteen,2,merrywivesofwindsor,1600\ndispatch,2,merrywivesofwindsor,1600\nliest,2,merrywivesofwindsor,1600\nPAGE'S,2,merrywivesofwindsor,1600\nfence,2,merrywivesofwindsor,1600\ndwelling,2,merrywivesofwindsor,1600\ncommand,2,merrywivesofwindsor,1600\nslip,2,merrywivesofwindsor,1600\nawake,2,merrywivesofwindsor,1600\namaze,2,merrywivesofwindsor,1600\nHector,2,merrywivesofwindsor,1600\nkiln,2,merrywivesofwindsor,1600\nshare,2,merrywivesofwindsor,1600\nwouldst,2,merrywivesofwindsor,1600\norder,2,merrywivesofwindsor,1600\nTut,2,merrywivesofwindsor,1600\nJOHN,2,merrywivesofwindsor,1600\nc,3,merrywivesofwindsor,1600\ntook,3,merrywivesofwindsor,1600\nmarrying,3,merrywivesofwindsor,1600\nmotion,3,merrywivesofwindsor,1600\ncountry,3,merrywivesofwindsor,1600\nwicked,3,merrywivesofwindsor,1600\nhaste,3,merrywivesofwindsor,1600\nJarteer,3,merrywivesofwindsor,1600\nNever,3,merrywivesofwindsor,1600\ncuckoldly,3,merrywivesofwindsor,1600\ntruly,3,merrywivesofwindsor,1600\nwhile,3,merrywivesofwindsor,1600\nHelp,3,merrywivesofwindsor,1600\n'Pless,3,merrywivesofwindsor,1600\nlooked,3,merrywivesofwindsor,1600\nshelter,3,merrywivesofwindsor,1600\nwithal,3,merrywivesofwindsor,1600\nadmirable,3,merrywivesofwindsor,1600\ncalls,3,merrywivesofwindsor,1600\nyonder,3,merrywivesofwindsor,1600\npress,3,merrywivesofwindsor,1600\ndamned,3,merrywivesofwindsor,1600\ncontrary,3,merrywivesofwindsor,1600\nFORD'S,3,merrywivesofwindsor,1600\nconscience,3,merrywivesofwindsor,1600\ncharms,3,merrywivesofwindsor,1600\ncarry't,3,merrywivesofwindsor,1600\nyears,3,merrywivesofwindsor,1600\nKeep,3,merrywivesofwindsor,1600\nRemember,3,merrywivesofwindsor,1600\ngross,3,merrywivesofwindsor,1600\nsearched,3,merrywivesofwindsor,1600\nwait,3,merrywivesofwindsor,1600\ndeserve,3,merrywivesofwindsor,1600\nimpossible,3,merrywivesofwindsor,1600\nlight,3,merrywivesofwindsor,1600\nbirds,3,merrywivesofwindsor,1600\ndeliver,3,merrywivesofwindsor,1600\nchurch,3,merrywivesofwindsor,1600\nprabbles,3,merrywivesofwindsor,1600\ndoubt,3,merrywivesofwindsor,1600\npieces,3,merrywivesofwindsor,1600\nGot's,3,merrywivesofwindsor,1600\ncoach,3,merrywivesofwindsor,1600\npassed,3,merrywivesofwindsor,1600\npasses,3,merrywivesofwindsor,1600\nFrance,3,merrywivesofwindsor,1600\nafraid,3,merrywivesofwindsor,1600\ncourtier,3,merrywivesofwindsor,1600\nborn,3,merrywivesofwindsor,1600\nterms,3,merrywivesofwindsor,1600\nPardon,3,merrywivesofwindsor,1600\nsun,3,merrywivesofwindsor,1600\ndescend,3,merrywivesofwindsor,1600\nfalse,3,merrywivesofwindsor,1600\nsoldier,3,merrywivesofwindsor,1600\nward,3,merrywivesofwindsor,1600\nmirth,3,merrywivesofwindsor,1600\nwish,3,merrywivesofwindsor,1600\nwart,3,merrywivesofwindsor,1600\nmean,3,merrywivesofwindsor,1600\nwits,3,merrywivesofwindsor,1600\npraised,3,merrywivesofwindsor,1600\nparts,3,merrywivesofwindsor,1600\nsympathy,3,merrywivesofwindsor,1600\nintelligence,3,merrywivesofwindsor,1600\nbig,3,merrywivesofwindsor,1600\nha',3,merrywivesofwindsor,1600\nhat,3,merrywivesofwindsor,1600\nWhile,3,merrywivesofwindsor,1600\nhag,3,merrywivesofwindsor,1600\nrivers,3,merrywivesofwindsor,1600\nAh,3,merrywivesofwindsor,1600\nAm,3,merrywivesofwindsor,1600\nAn,3,merrywivesofwindsor,1600\nitself,3,merrywivesofwindsor,1600\ncreature,3,merrywivesofwindsor,1600\nOh,3,merrywivesofwindsor,1600\nsince,3,merrywivesofwindsor,1600\nmotions,3,merrywivesofwindsor,1600\nappoint,3,merrywivesofwindsor,1600\ngrease,3,merrywivesofwindsor,1600\npast,3,merrywivesofwindsor,1600\nobey,3,merrywivesofwindsor,1600\nwhose,3,merrywivesofwindsor,1600\nbehind,3,merrywivesofwindsor,1600\nbestowed,3,merrywivesofwindsor,1600\nchildren,3,merrywivesofwindsor,1600\ncouch,3,merrywivesofwindsor,1600\npeople,3,merrywivesofwindsor,1600\nBook,3,merrywivesofwindsor,1600\ndespise,3,merrywivesofwindsor,1600\ndisguise,3,merrywivesofwindsor,1600\nsins,3,merrywivesofwindsor,1600\nashamed,3,merrywivesofwindsor,1600\njealousies,3,merrywivesofwindsor,1600\ndeep,3,merrywivesofwindsor,1600\ninstant,3,merrywivesofwindsor,1600\naffection,3,merrywivesofwindsor,1600\npromised,3,merrywivesofwindsor,1600\naim,3,merrywivesofwindsor,1600\nbutter,3,merrywivesofwindsor,1600\nyea,3,merrywivesofwindsor,1600\ngift,3,merrywivesofwindsor,1600\nneeds,3,merrywivesofwindsor,1600\nBless,3,merrywivesofwindsor,1600\nfe,3,merrywivesofwindsor,1600\nstone,3,merrywivesofwindsor,1600\nthrive,3,merrywivesofwindsor,1600\nlend,3,merrywivesofwindsor,1600\nspeed,3,merrywivesofwindsor,1600\nmanner,3,merrywivesofwindsor,1600\nknog,3,merrywivesofwindsor,1600\nabide,3,merrywivesofwindsor,1600\nearth,3,merrywivesofwindsor,1600\nage,3,merrywivesofwindsor,1600\nhadst,3,merrywivesofwindsor,1600\nknot,3,merrywivesofwindsor,1600\nact,3,merrywivesofwindsor,1600\nmen's,3,merrywivesofwindsor,1600\nkilled,3,merrywivesofwindsor,1600\nhard,3,merrywivesofwindsor,1600\npark,3,merrywivesofwindsor,1600\nun,3,merrywivesofwindsor,1600\nfield,3,merrywivesofwindsor,1600\npart,3,merrywivesofwindsor,1600\nCall,3,merrywivesofwindsor,1600\nsee't,3,merrywivesofwindsor,1600\nFirst,3,merrywivesofwindsor,1600\nmidnight,3,merrywivesofwindsor,1600\npaid,3,merrywivesofwindsor,1600\nford,3,merrywivesofwindsor,1600\nmock,3,merrywivesofwindsor,1600\nhast,3,merrywivesofwindsor,1600\ntrick,3,merrywivesofwindsor,1600\nright,3,merrywivesofwindsor,1600\nwooing,3,merrywivesofwindsor,1600\nbroke,3,merrywivesofwindsor,1600\nGeorge,3,merrywivesofwindsor,1600\nwatch,3,merrywivesofwindsor,1600\nfar,3,merrywivesofwindsor,1600\ndeanery,3,merrywivesofwindsor,1600\nYour,3,merrywivesofwindsor,1600\nnay,3,merrywivesofwindsor,1600\nlords,3,merrywivesofwindsor,1600\ndistance,3,merrywivesofwindsor,1600\nnote,3,merrywivesofwindsor,1600\nvenison,3,merrywivesofwindsor,1600\ngentle,3,merrywivesofwindsor,1600\npenny,3,merrywivesofwindsor,1600\nbears,3,merrywivesofwindsor,1600\nbeard,3,merrywivesofwindsor,1600\nhide,3,merrywivesofwindsor,1600\nLove,3,merrywivesofwindsor,1600\nsubstance,3,merrywivesofwindsor,1600\ndares,3,merrywivesofwindsor,1600\nforest,3,merrywivesofwindsor,1600\nseveral,3,merrywivesofwindsor,1600\nSee,3,merrywivesofwindsor,1600\ndevice,3,merrywivesofwindsor,1600\nhigh,3,merrywivesofwindsor,1600\nlikewise,3,merrywivesofwindsor,1600\ntowards,3,merrywivesofwindsor,1600\nfoolish,3,merrywivesofwindsor,1600\nalready,3,merrywivesofwindsor,1600\nvillanous,3,merrywivesofwindsor,1600\npresently,3,merrywivesofwindsor,1600\nwoo,3,merrywivesofwindsor,1600\nbrains,3,merrywivesofwindsor,1600\nmountain,3,merrywivesofwindsor,1600\nhigher,3,merrywivesofwindsor,1600\nSlender's,3,merrywivesofwindsor,1600\nrogues,3,merrywivesofwindsor,1600\npound,3,merrywivesofwindsor,1600\nsalt,3,merrywivesofwindsor,1600\nsake,3,merrywivesofwindsor,1600\nthrow,3,merrywivesofwindsor,1600\nRun,3,merrywivesofwindsor,1600\nbreak,3,merrywivesofwindsor,1600\nhears,3,merrywivesofwindsor,1600\nfetch,3,merrywivesofwindsor,1600\nSure,3,merrywivesofwindsor,1600\nmaid's,3,merrywivesofwindsor,1600\nthemselves,3,merrywivesofwindsor,1600\nfound,3,merrywivesofwindsor,1600\nforward,3,merrywivesofwindsor,1600\nnext,3,merrywivesofwindsor,1600\nnews,3,merrywivesofwindsor,1600\ntakes,3,merrywivesofwindsor,1600\nhack,3,merrywivesofwindsor,1600\nlust,3,merrywivesofwindsor,1600\ncried,3,merrywivesofwindsor,1600\nThat's,3,merrywivesofwindsor,1600\nmethinks,3,merrywivesofwindsor,1600\nrich,3,merrywivesofwindsor,1600\nclaw,3,merrywivesofwindsor,1600\nfolly,3,merrywivesofwindsor,1600\ndistemper,3,merrywivesofwindsor,1600\nFare,3,merrywivesofwindsor,1600\nherself,3,merrywivesofwindsor,1600\nperceive,3,merrywivesofwindsor,1600\ncomfort,3,merrywivesofwindsor,1600\nVere,3,merrywivesofwindsor,1600\ntall,3,merrywivesofwindsor,1600\n'budget,3,merrywivesofwindsor,1600\notherwise,3,merrywivesofwindsor,1600\nswears,3,merrywivesofwindsor,1600\npetter,3,merrywivesofwindsor,1600\nVat,3,merrywivesofwindsor,1600\nWho's,3,merrywivesofwindsor,1600\ntire,3,merrywivesofwindsor,1600\nWhere's,3,merrywivesofwindsor,1600\nalong,3,merrywivesofwindsor,1600\nalways,3,merrywivesofwindsor,1600\n'twixt,3,merrywivesofwindsor,1600\ntells,3,merrywivesofwindsor,1600\nsound,3,merrywivesofwindsor,1600\nBelieve,3,merrywivesofwindsor,1600\nperson,3,merrywivesofwindsor,1600\nhours,3,merrywivesofwindsor,1600\nsecure,3,merrywivesofwindsor,1600\nprotest,3,merrywivesofwindsor,1600\nmaster's,3,merrywivesofwindsor,1600\nTwo,3,merrywivesofwindsor,1600\ntrib,3,merrywivesofwindsor,1600\nnobody,3,merrywivesofwindsor,1600\nmocked,3,merrywivesofwindsor,1600\nheartily,3,merrywivesofwindsor,1600\nphrase,3,merrywivesofwindsor,1600\nthither,3,merrywivesofwindsor,1600\nSings,3,merrywivesofwindsor,1600\nmuffler,3,merrywivesofwindsor,1600\nthrowing,3,merrywivesofwindsor,1600\nbesides,3,merrywivesofwindsor,1600\nlist,3,merrywivesofwindsor,1600\nleads,3,merrywivesofwindsor,1600\nYou'll,3,merrywivesofwindsor,1600\nliquor,3,merrywivesofwindsor,1600\nHe's,3,merrywivesofwindsor,1600\nbrew,3,merrywivesofwindsor,1600\ngloves,3,merrywivesofwindsor,1600\nremembrance,3,merrywivesofwindsor,1600\nlack,3,merrywivesofwindsor,1600\nchambers,3,merrywivesofwindsor,1600\nlads,3,merrywivesofwindsor,1600\nPage's,4,merrywivesofwindsor,1600\ntimes,4,merrywivesofwindsor,1600\nreputation,4,merrywivesofwindsor,1600\nFrogmore,4,merrywivesofwindsor,1600\nHerne's,4,merrywivesofwindsor,1600\nvillain,4,merrywivesofwindsor,1600\neight,4,merrywivesofwindsor,1600\nfinger,4,merrywivesofwindsor,1600\nangels,4,merrywivesofwindsor,1600\nWould,4,merrywivesofwindsor,1600\ncharge,4,merrywivesofwindsor,1600\nseven,4,merrywivesofwindsor,1600\namazed,4,merrywivesofwindsor,1600\nsaw,4,merrywivesofwindsor,1600\nJove,4,merrywivesofwindsor,1600\nfull,4,merrywivesofwindsor,1600\nteach,4,merrywivesofwindsor,1600\nAnne's,4,merrywivesofwindsor,1600\nWho,4,merrywivesofwindsor,1600\nblack,4,merrywivesofwindsor,1600\ndeath,4,merrywivesofwindsor,1600\nfery,4,merrywivesofwindsor,1600\nbody,4,merrywivesofwindsor,1600\ndeceived,4,merrywivesofwindsor,1600\nnine,4,merrywivesofwindsor,1600\ncouncil,4,merrywivesofwindsor,1600\ncounsel,4,merrywivesofwindsor,1600\nguide,4,merrywivesofwindsor,1600\ntwelve,4,merrywivesofwindsor,1600\nbrief,4,merrywivesofwindsor,1600\nwant,4,merrywivesofwindsor,1600\nThough,4,merrywivesofwindsor,1600\nanon,4,merrywivesofwindsor,1600\nstocks,4,merrywivesofwindsor,1600\nmeat,4,merrywivesofwindsor,1600\noffice,4,merrywivesofwindsor,1600\nbook,4,merrywivesofwindsor,1600\ntapers,4,merrywivesofwindsor,1600\nmelancholy,4,merrywivesofwindsor,1600\nWhat's,4,merrywivesofwindsor,1600\nwronged,4,merrywivesofwindsor,1600\nneither,4,merrywivesofwindsor,1600\nBardolph,4,merrywivesofwindsor,1600\npatience,4,merrywivesofwindsor,1600\nbox,4,merrywivesofwindsor,1600\nHa,4,merrywivesofwindsor,1600\nhusbands,4,merrywivesofwindsor,1600\nquick,4,merrywivesofwindsor,1600\nfarewell,4,merrywivesofwindsor,1600\ngown,4,merrywivesofwindsor,1600\nLike,4,merrywivesofwindsor,1600\nPinch,4,merrywivesofwindsor,1600\nGod,4,merrywivesofwindsor,1600\nentertain,4,merrywivesofwindsor,1600\nforgive,4,merrywivesofwindsor,1600\nconfess,4,merrywivesofwindsor,1600\nbetray,4,merrywivesofwindsor,1600\nexcellent,4,merrywivesofwindsor,1600\nHere's,4,merrywivesofwindsor,1600\nbeat,4,merrywivesofwindsor,1600\nhands,4,merrywivesofwindsor,1600\ngentlewoman,4,merrywivesofwindsor,1600\ncurer,4,merrywivesofwindsor,1600\ncommend,4,merrywivesofwindsor,1600\nlest,4,merrywivesofwindsor,1600\nspend,4,merrywivesofwindsor,1600\nlose,4,merrywivesofwindsor,1600\nblue,4,merrywivesofwindsor,1600\nready,4,merrywivesofwindsor,1600\nplot,4,merrywivesofwindsor,1600\nreasonable,4,merrywivesofwindsor,1600\nhalf,4,merrywivesofwindsor,1600\nround,4,merrywivesofwindsor,1600\ndere,4,merrywivesofwindsor,1600\nhang,4,merrywivesofwindsor,1600\nfour,4,merrywivesofwindsor,1600\nacquaintance,4,merrywivesofwindsor,1600\nEton,4,merrywivesofwindsor,1600\npresent,4,merrywivesofwindsor,1600\npoint,4,merrywivesofwindsor,1600\nfoot,4,merrywivesofwindsor,1600\nfool,4,merrywivesofwindsor,1600\nrevenge,4,merrywivesofwindsor,1600\nass,4,merrywivesofwindsor,1600\nfresh,4,merrywivesofwindsor,1600\nHark,4,merrywivesofwindsor,1600\nnew,4,merrywivesofwindsor,1600\nguest,4,merrywivesofwindsor,1600\nhaving,4,merrywivesofwindsor,1600\nlead,4,merrywivesofwindsor,1600\nrook,4,merrywivesofwindsor,1600\ndress,4,merrywivesofwindsor,1600\nremedy,4,merrywivesofwindsor,1600\nLord,4,merrywivesofwindsor,1600\nquarter,4,merrywivesofwindsor,1600\nquestion,4,merrywivesofwindsor,1600\nAll,4,merrywivesofwindsor,1600\nknows,4,merrywivesofwindsor,1600\nDatchet,4,merrywivesofwindsor,1600\nissue,4,merrywivesofwindsor,1600\nstate,4,merrywivesofwindsor,1600\nneed,4,merrywivesofwindsor,1600\nfather's,4,merrywivesofwindsor,1600\nfirm,4,merrywivesofwindsor,1600\no'clock,4,merrywivesofwindsor,1600\nwit,4,merrywivesofwindsor,1600\nfive,4,merrywivesofwindsor,1600\nWe'll,4,merrywivesofwindsor,1600\nbeseech,4,merrywivesofwindsor,1600\nriot,4,merrywivesofwindsor,1600\nable,4,merrywivesofwindsor,1600\nwag,4,merrywivesofwindsor,1600\nthey'll,4,merrywivesofwindsor,1600\nserve,4,merrywivesofwindsor,1600\nbelly,4,merrywivesofwindsor,1600\nweapons,4,merrywivesofwindsor,1600\namends,4,merrywivesofwindsor,1600\nfine,4,merrywivesofwindsor,1600\nhorn,4,merrywivesofwindsor,1600\nwealth,4,merrywivesofwindsor,1600\nuncle,4,merrywivesofwindsor,1600\nlived,4,merrywivesofwindsor,1600\nnames,4,merrywivesofwindsor,1600\nTrust,4,merrywivesofwindsor,1600\ncreep,4,merrywivesofwindsor,1600\nshort,4,merrywivesofwindsor,1600\ncut,4,merrywivesofwindsor,1600\nnotwithstanding,4,merrywivesofwindsor,1600\neyes,4,merrywivesofwindsor,1600\ncool,4,merrywivesofwindsor,1600\neither,4,merrywivesofwindsor,1600\ntree,4,merrywivesofwindsor,1600\nalas,4,merrywivesofwindsor,1600\ncold,4,merrywivesofwindsor,1600\nmatch,4,merrywivesofwindsor,1600\ntrot,4,merrywivesofwindsor,1600\nsleep,4,merrywivesofwindsor,1600\neat,4,merrywivesofwindsor,1600\nstraight,4,merrywivesofwindsor,1600\nmeeting,4,merrywivesofwindsor,1600\nstreet,4,merrywivesofwindsor,1600\nParson,4,merrywivesofwindsor,1600\neleven,4,merrywivesofwindsor,1600\nIndeed,4,merrywivesofwindsor,1600\nlast,4,merrywivesofwindsor,1600\nsometimes,4,merrywivesofwindsor,1600\nlate,4,merrywivesofwindsor,1600\njack,4,merrywivesofwindsor,1600\nMay,4,merrywivesofwindsor,1600\nsuspect,4,merrywivesofwindsor,1600\ngoing,4,merrywivesofwindsor,1600\nWhen,4,merrywivesofwindsor,1600\ncontent,4,merrywivesofwindsor,1600\nnumbers,4,merrywivesofwindsor,1600\nDid,4,merrywivesofwindsor,1600\nTake,4,merrywivesofwindsor,1600\nsmell,4,merrywivesofwindsor,1600\nshame,4,merrywivesofwindsor,1600\nwomen,4,merrywivesofwindsor,1600\nlady,4,merrywivesofwindsor,1600\nanswer,5,merrywivesofwindsor,1600\no'er,5,merrywivesofwindsor,1600\nmistress,5,merrywivesofwindsor,1600\nFie,5,merrywivesofwindsor,1600\nlaugh,5,merrywivesofwindsor,1600\nworld,5,merrywivesofwindsor,1600\nbecome,5,merrywivesofwindsor,1600\nfriends,5,merrywivesofwindsor,1600\nwords,5,merrywivesofwindsor,1600\nbirding,5,merrywivesofwindsor,1600\nsomething,5,merrywivesofwindsor,1600\nfurther,5,merrywivesofwindsor,1600\nshamed,5,merrywivesofwindsor,1600\nmerry,5,merrywivesofwindsor,1600\nsuit,5,merrywivesofwindsor,1600\nsworn,5,merrywivesofwindsor,1600\nFarewell,5,merrywivesofwindsor,1600\nhunter,5,merrywivesofwindsor,1600\nsuffered,5,merrywivesofwindsor,1600\nfight,5,merrywivesofwindsor,1600\nOut,5,merrywivesofwindsor,1600\nloose,5,merrywivesofwindsor,1600\nabove,5,merrywivesofwindsor,1600\npromise,5,merrywivesofwindsor,1600\nbeaten,5,merrywivesofwindsor,1600\nwine,5,merrywivesofwindsor,1600\nthrown,5,merrywivesofwindsor,1600\nSimple,5,merrywivesofwindsor,1600\npretty,5,merrywivesofwindsor,1600\nspoke,5,merrywivesofwindsor,1600\ncudgel,5,merrywivesofwindsor,1600\nmorning,5,merrywivesofwindsor,1600\nWithin,5,merrywivesofwindsor,1600\nbed,5,merrywivesofwindsor,1600\nbid,5,merrywivesofwindsor,1600\nLet's,5,merrywivesofwindsor,1600\nWhich,5,merrywivesofwindsor,1600\nburn,5,merrywivesofwindsor,1600\ngoot,5,merrywivesofwindsor,1600\nSpeak,5,merrywivesofwindsor,1600\ndeer,5,merrywivesofwindsor,1600\nservant,5,merrywivesofwindsor,1600\nthat's,5,merrywivesofwindsor,1600\no',5,merrywivesofwindsor,1600\nFairies,5,merrywivesofwindsor,1600\nknew,5,merrywivesofwindsor,1600\nbrought,5,merrywivesofwindsor,1600\nspeaks,5,merrywivesofwindsor,1600\nwelcome,5,merrywivesofwindsor,1600\nshallow,5,merrywivesofwindsor,1600\npage,5,merrywivesofwindsor,1600\nask,5,merrywivesofwindsor,1600\nrogue,5,merrywivesofwindsor,1600\nundone,5,merrywivesofwindsor,1600\nhere's,5,merrywivesofwindsor,1600\nluck,5,merrywivesofwindsor,1600\nfaith,5,merrywivesofwindsor,1600\nbeast,5,merrywivesofwindsor,1600\nsirrah,5,merrywivesofwindsor,1600\nfairy,5,merrywivesofwindsor,1600\nThou,5,merrywivesofwindsor,1600\nplaces,5,merrywivesofwindsor,1600\nLook,5,merrywivesofwindsor,1600\nknown,5,merrywivesofwindsor,1600\nletters,5,merrywivesofwindsor,1600\ndisguised,5,merrywivesofwindsor,1600\nsuspicion,5,merrywivesofwindsor,1600\nget,5,merrywivesofwindsor,1600\nthine,5,merrywivesofwindsor,1600\nPistol,5,merrywivesofwindsor,1600\nbelieve,5,merrywivesofwindsor,1600\nface,5,merrywivesofwindsor,1600\nduke,5,merrywivesofwindsor,1600\nRobert,5,merrywivesofwindsor,1600\neven,5,merrywivesofwindsor,1600\nne'er,5,merrywivesofwindsor,1600\nwives,5,merrywivesofwindsor,1600\ntalk,5,merrywivesofwindsor,1600\nrapier,5,merrywivesofwindsor,1600\npardon,5,merrywivesofwindsor,1600\nalso,5,merrywivesofwindsor,1600\ndrunk,5,merrywivesofwindsor,1600\nThames,5,merrywivesofwindsor,1600\nhither,5,merrywivesofwindsor,1600\nsent,5,merrywivesofwindsor,1600\ngoes,5,merrywivesofwindsor,1600\near,5,merrywivesofwindsor,1600\nhonesty,5,merrywivesofwindsor,1600\nremember,5,merrywivesofwindsor,1600\nmet,5,merrywivesofwindsor,1600\nmarriage,5,merrywivesofwindsor,1600\nbeing,5,merrywivesofwindsor,1600\nphysician,5,merrywivesofwindsor,1600\nwithout,5,merrywivesofwindsor,1600\nspirit,5,merrywivesofwindsor,1600\nten,5,merrywivesofwindsor,1600\ndie,5,merrywivesofwindsor,1600\nPAGE,261,merrywivesofwindsor,1600\nwoman's,6,merrywivesofwindsor,1600\nshoulders,6,merrywivesofwindsor,1600\nthought,6,merrywivesofwindsor,1600\npinch,6,merrywivesofwindsor,1600\ntrust,6,merrywivesofwindsor,1600\nNym,6,merrywivesofwindsor,1600\ncase,6,merrywivesofwindsor,1600\nNot,6,merrywivesofwindsor,1600\nacquainted,6,merrywivesofwindsor,1600\ncheese,6,merrywivesofwindsor,1600\nreceived,6,merrywivesofwindsor,1600\nfellow,6,merrywivesofwindsor,1600\nways,6,merrywivesofwindsor,1600\nbold,6,merrywivesofwindsor,1600\nFrench,6,merrywivesofwindsor,1600\nOf,6,merrywivesofwindsor,1600\nHer,6,merrywivesofwindsor,1600\nmeans,6,merrywivesofwindsor,1600\nFalstaff's,6,merrywivesofwindsor,1600\npass,6,merrywivesofwindsor,1600\nAdieu,6,merrywivesofwindsor,1600\ngold,6,merrywivesofwindsor,1600\ndoth,6,merrywivesofwindsor,1600\nsing,6,merrywivesofwindsor,1600\nGot,6,merrywivesofwindsor,1600\nhumours,6,merrywivesofwindsor,1600\nYes,6,merrywivesofwindsor,1600\nho,6,merrywivesofwindsor,1600\nServants,6,merrywivesofwindsor,1600\nplace,6,merrywivesofwindsor,1600\nAre,6,merrywivesofwindsor,1600\nthrough,6,merrywivesofwindsor,1600\nere,6,merrywivesofwindsor,1600\nchild,6,merrywivesofwindsor,1600\nchain,6,merrywivesofwindsor,1600\nover,6,merrywivesofwindsor,1600\nnear,6,merrywivesofwindsor,1600\nstill,6,merrywivesofwindsor,1600\nonly,6,merrywivesofwindsor,1600\npounds,6,merrywivesofwindsor,1600\nHerne,6,merrywivesofwindsor,1600\nwife's,6,merrywivesofwindsor,1600\nfortune,6,merrywivesofwindsor,1600\nlinen,6,merrywivesofwindsor,1600\nvat,6,merrywivesofwindsor,1600\ntale,6,merrywivesofwindsor,1600\nreason,6,merrywivesofwindsor,1600\nhorses,6,merrywivesofwindsor,1600\nTruly,6,merrywivesofwindsor,1600\nQuickly,6,merrywivesofwindsor,1600\nmakes,6,merrywivesofwindsor,1600\nBrentford,6,merrywivesofwindsor,1600\nrevenged,6,merrywivesofwindsor,1600\nsimple,6,merrywivesofwindsor,1600\nhe'll,6,merrywivesofwindsor,1600\nkill,6,merrywivesofwindsor,1600\nshape,6,merrywivesofwindsor,1600\nhell,7,merrywivesofwindsor,1600\nevery,7,merrywivesofwindsor,1600\nunderstand,7,merrywivesofwindsor,1600\ndrink,7,merrywivesofwindsor,1600\nsoul,7,merrywivesofwindsor,1600\nrun,7,merrywivesofwindsor,1600\nparson,7,merrywivesofwindsor,1600\nsoon,7,merrywivesofwindsor,1600\npurse,7,merrywivesofwindsor,1600\ncame,7,merrywivesofwindsor,1600\nwalk,7,merrywivesofwindsor,1600\nson,7,merrywivesofwindsor,1600\nwithin,7,merrywivesofwindsor,1600\ncause,7,merrywivesofwindsor,1600\nServant,7,merrywivesofwindsor,1600\nmother,7,merrywivesofwindsor,1600\ncuckold,7,merrywivesofwindsor,1600\nwise,7,merrywivesofwindsor,1600\nFor,7,merrywivesofwindsor,1600\nFollow,7,merrywivesofwindsor,1600\nDo,7,merrywivesofwindsor,1600\nhe's,7,merrywivesofwindsor,1600\ndinner,7,merrywivesofwindsor,1600\nWelsh,7,merrywivesofwindsor,1600\nPark,7,merrywivesofwindsor,1600\nYet,7,merrywivesofwindsor,1600\nhot,7,merrywivesofwindsor,1600\nhusband's,7,merrywivesofwindsor,1600\nfoul,7,merrywivesofwindsor,1600\nopen,7,merrywivesofwindsor,1600\njustice,7,merrywivesofwindsor,1600\nHang,7,merrywivesofwindsor,1600\nyou'll,7,merrywivesofwindsor,1600\nend,7,merrywivesofwindsor,1600\nsame,7,merrywivesofwindsor,1600\nthing,7,merrywivesofwindsor,1600\noff,7,merrywivesofwindsor,1600\ncloset,7,merrywivesofwindsor,1600\nconsent,7,merrywivesofwindsor,1600\nwent,7,merrywivesofwindsor,1600\ncoat,7,merrywivesofwindsor,1600\nlay,7,merrywivesofwindsor,1600\ngives,7,merrywivesofwindsor,1600\ncry,7,merrywivesofwindsor,1600\nheels,7,merrywivesofwindsor,1600\npurpose,7,merrywivesofwindsor,1600\nhorns,8,merrywivesofwindsor,1600\nV,8,merrywivesofwindsor,1600\nunder,8,merrywivesofwindsor,1600\ntown,8,merrywivesofwindsor,1600\nshe's,8,merrywivesofwindsor,1600\nenough,8,merrywivesofwindsor,1600\nset,8,merrywivesofwindsor,1600\nsword,8,merrywivesofwindsor,1600\nchamber,8,merrywivesofwindsor,1600\nBe,8,merrywivesofwindsor,1600\nII,8,merrywivesofwindsor,1600\njealous,8,merrywivesofwindsor,1600\nput,8,merrywivesofwindsor,1600\nInn,8,merrywivesofwindsor,1600\nla,8,merrywivesofwindsor,1600\nforth,8,merrywivesofwindsor,1600\nwater,8,merrywivesofwindsor,1600\nPeace,8,merrywivesofwindsor,1600\nthings,8,merrywivesofwindsor,1600\nquickly,8,merrywivesofwindsor,1600\nonce,8,merrywivesofwindsor,1600\nwho,8,merrywivesofwindsor,1600\nmorrow,8,merrywivesofwindsor,1600\ncoming,8,merrywivesofwindsor,1600\nHeaven,8,merrywivesofwindsor,1600\nhundred,8,merrywivesofwindsor,1600\nmarried,8,merrywivesofwindsor,1600\nappointed,8,merrywivesofwindsor,1600\ngiven,8,merrywivesofwindsor,1600\ncarry,8,merrywivesofwindsor,1600\nEnglish,8,merrywivesofwindsor,1600\nAway,8,merrywivesofwindsor,1600\nWhere,8,merrywivesofwindsor,1600\ncozened,8,merrywivesofwindsor,1600\nshalt,8,merrywivesofwindsor,1600\nkind,8,merrywivesofwindsor,1600\nAlas,9,merrywivesofwindsor,1600\npeace,9,merrywivesofwindsor,1600\n'oman,9,merrywivesofwindsor,1600\nclothes,9,merrywivesofwindsor,1600\nlife,9,merrywivesofwindsor,1600\njest,9,merrywivesofwindsor,1600\nfear,9,merrywivesofwindsor,1600\nafter,9,merrywivesofwindsor,1600\nhonour,9,merrywivesofwindsor,1600\nbring,9,merrywivesofwindsor,1600\nelse,9,merrywivesofwindsor,1600\nAs,9,merrywivesofwindsor,1600\nbest,9,merrywivesofwindsor,1600\nsaid,9,merrywivesofwindsor,1600\nha,9,merrywivesofwindsor,1600\nsack,9,merrywivesofwindsor,1600\nmost,9,merrywivesofwindsor,1600\ncousin,9,merrywivesofwindsor,1600\nloves,9,merrywivesofwindsor,1600\ntwenty,9,merrywivesofwindsor,1600\nwitch,9,merrywivesofwindsor,1600\neye,9,merrywivesofwindsor,1600\nShe,9,merrywivesofwindsor,1600\nnor,9,merrywivesofwindsor,1600\noak,9,merrywivesofwindsor,1600\nfie,9,merrywivesofwindsor,1600\nhearts,9,merrywivesofwindsor,1600\ncoz,9,merrywivesofwindsor,1600\nthus,9,merrywivesofwindsor,1600\ntogether,9,merrywivesofwindsor,1600\nlie,9,merrywivesofwindsor,1600\nmad,9,merrywivesofwindsor,1600\ndog,9,merrywivesofwindsor,1600\ntold,10,merrywivesofwindsor,1600\nWill,10,merrywivesofwindsor,1600\nNan,10,merrywivesofwindsor,1600\ntruth,10,merrywivesofwindsor,1600\nGive,10,merrywivesofwindsor,1600\nvill,10,merrywivesofwindsor,1600\nturn,10,merrywivesofwindsor,1600\nfriend,10,merrywivesofwindsor,1600\nIII,10,merrywivesofwindsor,1600\nstay,10,merrywivesofwindsor,1600\nIV,10,merrywivesofwindsor,1600\ngone,10,merrywivesofwindsor,1600\nSo,10,merrywivesofwindsor,1600\ni',10,merrywivesofwindsor,1600\ndead,10,merrywivesofwindsor,1600\npriest,10,merrywivesofwindsor,1600\ndoor,10,merrywivesofwindsor,1600\nshow,10,merrywivesofwindsor,1600\nwhere,10,merrywivesofwindsor,1600\nnone,10,merrywivesofwindsor,1600\nmany,10,merrywivesofwindsor,1600\nfire,10,merrywivesofwindsor,1600\nstand,10,merrywivesofwindsor,1600\ncourt,10,merrywivesofwindsor,1600\nfair,10,merrywivesofwindsor,1600\nhour,10,merrywivesofwindsor,1600\nthousand,10,merrywivesofwindsor,1600\ngreen,10,merrywivesofwindsor,1600\nseek,10,merrywivesofwindsor,1600\njealousy,10,merrywivesofwindsor,1600\nmeet,11,merrywivesofwindsor,1600\nnothing,11,merrywivesofwindsor,1600\nWilliam,11,merrywivesofwindsor,1600\nwrong,11,merrywivesofwindsor,1600\nfault,11,merrywivesofwindsor,1600\nHere,11,merrywivesofwindsor,1600\nIs,11,merrywivesofwindsor,1600\nsport,11,merrywivesofwindsor,1600\nWe,11,merrywivesofwindsor,1600\ndone,11,merrywivesofwindsor,1600\nill,11,merrywivesofwindsor,1600\nCaius,11,merrywivesofwindsor,1600\nfat,11,merrywivesofwindsor,1600\nmaid,11,merrywivesofwindsor,1600\nThey,11,merrywivesofwindsor,1600\nsearch,11,merrywivesofwindsor,1600\nbefore,11,merrywivesofwindsor,1600\ndesires,11,merrywivesofwindsor,1600\nsays,11,merrywivesofwindsor,1600\nheard,11,merrywivesofwindsor,1600\nShall,11,merrywivesofwindsor,1600\ncompany,11,merrywivesofwindsor,1600\nhold,11,merrywivesofwindsor,1600\nuse,11,merrywivesofwindsor,1600\nwe'll,11,merrywivesofwindsor,1600\nsend,11,merrywivesofwindsor,1600\npoor,11,merrywivesofwindsor,1600\nfirst,11,merrywivesofwindsor,1600\nmight,11,merrywivesofwindsor,1600\nyourself,12,merrywivesofwindsor,1600\nsure,12,merrywivesofwindsor,1600\ncall,12,merrywivesofwindsor,1600\nDoctor,12,merrywivesofwindsor,1600\nWith,12,merrywivesofwindsor,1600\nwhite,12,merrywivesofwindsor,1600\ndevil,12,merrywivesofwindsor,1600\nFord's,12,merrywivesofwindsor,1600\nHave,12,merrywivesofwindsor,1600\nwhy,12,merrywivesofwindsor,1600\nday,12,merrywivesofwindsor,1600\nhope,12,merrywivesofwindsor,1600\nagainst,13,merrywivesofwindsor,1600\nWILLIAM,13,merrywivesofwindsor,1600\nboth,13,merrywivesofwindsor,1600\nShallow,13,merrywivesofwindsor,1600\nenter,13,merrywivesofwindsor,1600\nRe,13,merrywivesofwindsor,1600\nbear,13,merrywivesofwindsor,1600\nJack,13,merrywivesofwindsor,1600\nkeep,13,merrywivesofwindsor,1600\nthough,13,merrywivesofwindsor,1600\nroom,13,merrywivesofwindsor,1600\nThis,13,merrywivesofwindsor,1600\nbuck,13,merrywivesofwindsor,1600\nsweet,13,merrywivesofwindsor,1600\nMarry,13,merrywivesofwindsor,1600\nrather,14,merrywivesofwindsor,1600\nIn,14,merrywivesofwindsor,1600\nlong,14,merrywivesofwindsor,1600\nart,14,merrywivesofwindsor,1600\nyoung,14,merrywivesofwindsor,1600\nbetween,14,merrywivesofwindsor,1600\never,14,merrywivesofwindsor,1600\ntill,14,merrywivesofwindsor,1600\nforsooth,14,merrywivesofwindsor,1600\nPray,14,merrywivesofwindsor,1600\nleave,14,merrywivesofwindsor,1600\nfather,14,merrywivesofwindsor,1600\nhimself,14,merrywivesofwindsor,1600\nI,782,merrywivesofwindsor,1600\nmuch,15,merrywivesofwindsor,1600\nbully,15,merrywivesofwindsor,1600\ndown,15,merrywivesofwindsor,1600\nmoney,15,merrywivesofwindsor,1600\nmade,15,merrywivesofwindsor,1600\nmind,15,merrywivesofwindsor,1600\nthere's,15,merrywivesofwindsor,1600\n'Tis,15,merrywivesofwindsor,1600\nmarry,15,merrywivesofwindsor,1600\nglad,15,merrywivesofwindsor,1600\ngentleman,15,merrywivesofwindsor,1600\nhome,15,merrywivesofwindsor,1600\nRugby,15,merrywivesofwindsor,1600\nfairies,15,merrywivesofwindsor,1600\nmen,15,merrywivesofwindsor,1600\nThere,16,merrywivesofwindsor,1600\nheaven,16,merrywivesofwindsor,1600\nlook,16,merrywivesofwindsor,1600\ndoes,16,merrywivesofwindsor,1600\ndat,16,merrywivesofwindsor,1600\ngentlemen,16,merrywivesofwindsor,1600\ntrue,16,merrywivesofwindsor,1600\nhead,17,merrywivesofwindsor,1600\ndaughter,17,merrywivesofwindsor,1600\ndesire,17,merrywivesofwindsor,1600\nNo,17,merrywivesofwindsor,1600\nIt,17,merrywivesofwindsor,1600\nnight,17,merrywivesofwindsor,1600\nlittle,17,merrywivesofwindsor,1600\nindeed,17,merrywivesofwindsor,1600\nGarter,17,merrywivesofwindsor,1600\nagain,17,merrywivesofwindsor,1600\nthank,17,merrywivesofwindsor,1600\nNYM,17,merrywivesofwindsor,1600\nROBIN,18,merrywivesofwindsor,1600\nFenton,18,merrywivesofwindsor,1600\nup,18,merrywivesofwindsor,1600\nhand,18,merrywivesofwindsor,1600\nBut,18,merrywivesofwindsor,1600\nRUGBY,18,merrywivesofwindsor,1600\nworship,18,merrywivesofwindsor,1600\nfollow,18,merrywivesofwindsor,1600\nother,18,merrywivesofwindsor,1600\nAside,19,merrywivesofwindsor,1600\nmatter,19,merrywivesofwindsor,1600\nMy,19,merrywivesofwindsor,1600\nknave,19,merrywivesofwindsor,1600\nthree,19,merrywivesofwindsor,1600\nletter,19,merrywivesofwindsor,1600\nfind,19,merrywivesofwindsor,1600\ngreat,19,merrywivesofwindsor,1600\ndid,19,merrywivesofwindsor,1600\nNow,20,merrywivesofwindsor,1600\nbetter,20,merrywivesofwindsor,1600\nhas,20,merrywivesofwindsor,1600\nThat,20,merrywivesofwindsor,1600\nmyself,20,merrywivesofwindsor,1600\ncould,20,merrywivesofwindsor,1600\nown,20,merrywivesofwindsor,1600\nhumour,20,merrywivesofwindsor,1600\nHugh,20,merrywivesofwindsor,1600\nwhich,21,merrywivesofwindsor,1600\nsome,21,merrywivesofwindsor,1600\naway,21,merrywivesofwindsor,1600\nword,21,merrywivesofwindsor,1600\nhear,22,merrywivesofwindsor,1600\nwarrant,22,merrywivesofwindsor,1600\nname,22,merrywivesofwindsor,1600\nboy,22,merrywivesofwindsor,1600\nIf,22,merrywivesofwindsor,1600\nGood,22,merrywivesofwindsor,1600\nknight,22,merrywivesofwindsor,1600\nLet,22,merrywivesofwindsor,1600\nin,278,merrywivesofwindsor,1600\nanother,23,merrywivesofwindsor,1600\nthese,23,merrywivesofwindsor,1600\nHe,23,merrywivesofwindsor,1600\nTo,23,merrywivesofwindsor,1600\nACT,23,merrywivesofwindsor,1600\nvery,23,merrywivesofwindsor,1600\ncomes,23,merrywivesofwindsor,1600\ndoctor,23,merrywivesofwindsor,1600\nhonest,23,merrywivesofwindsor,1600\ntwo,23,merrywivesofwindsor,1600\ncannot,23,merrywivesofwindsor,1600\nNay,24,merrywivesofwindsor,1600\nWIVES,24,merrywivesofwindsor,1600\nOF,24,merrywivesofwindsor,1600\ncan,24,merrywivesofwindsor,1600\nde,24,merrywivesofwindsor,1600\nyet,24,merrywivesofwindsor,1600\nMERRY,24,merrywivesofwindsor,1600\nTHE,24,merrywivesofwindsor,1600\nheart,24,merrywivesofwindsor,1600\nWINDSOR,24,merrywivesofwindsor,1600\nSCENE,24,merrywivesofwindsor,1600\nabout,25,merrywivesofwindsor,1600\nWindsor,25,merrywivesofwindsor,1600\nmy,281,merrywivesofwindsor,1600\nGo,26,merrywivesofwindsor,1600\nbeen,26,merrywivesofwindsor,1600\nbasket,26,merrywivesofwindsor,1600\nFalstaff,26,merrywivesofwindsor,1600\nway,26,merrywivesofwindsor,1600\nfrom,26,merrywivesofwindsor,1600\ntime,26,merrywivesofwindsor,1600\nhost,26,merrywivesofwindsor,1600\ntake,26,merrywivesofwindsor,1600\nupon,27,merrywivesofwindsor,1600\nANNE,27,merrywivesofwindsor,1600\nus,27,merrywivesofwindsor,1600\nspeak,27,merrywivesofwindsor,1600\nwhen,27,merrywivesofwindsor,1600\nFENTON,28,merrywivesofwindsor,1600\nSlender,28,merrywivesofwindsor,1600\nold,28,merrywivesofwindsor,1600\ngive,29,merrywivesofwindsor,1600\nHow,29,merrywivesofwindsor,1600\nnever,30,merrywivesofwindsor,1600\nBARDOLPH,30,merrywivesofwindsor,1600\nO,31,merrywivesofwindsor,1600\nsuch,31,merrywivesofwindsor,1600\nthan,31,merrywivesofwindsor,1600\nBy,31,merrywivesofwindsor,1600\ninto,31,merrywivesofwindsor,1600\ngar,31,merrywivesofwindsor,1600\nhusband,32,merrywivesofwindsor,1600\nshould,32,merrywivesofwindsor,1600\nour,32,merrywivesofwindsor,1600\n',33,merrywivesofwindsor,1600\nmust,33,merrywivesofwindsor,1600\ntheir,33,merrywivesofwindsor,1600\npray,34,merrywivesofwindsor,1600\n'tis,34,merrywivesofwindsor,1600\nthink,34,merrywivesofwindsor,1600\nwere,34,merrywivesofwindsor,1600\nany,35,merrywivesofwindsor,1600\nPISTOL,35,merrywivesofwindsor,1600\nmay,35,merrywivesofwindsor,1600\nCome,36,merrywivesofwindsor,1600\nWhy,36,merrywivesofwindsor,1600\nthen,36,merrywivesofwindsor,1600\nExeunt,36,merrywivesofwindsor,1600\nmine,36,merrywivesofwindsor,1600\nwas,36,merrywivesofwindsor,1600\ntoo,36,merrywivesofwindsor,1600\nhouse,37,merrywivesofwindsor,1600\nThe,37,merrywivesofwindsor,1600\nA,38,merrywivesofwindsor,1600\nYou,38,merrywivesofwindsor,1600\nSIMPLE,38,merrywivesofwindsor,1600\nhow,39,merrywivesofwindsor,1600\nWell,39,merrywivesofwindsor,1600\nwife,39,merrywivesofwindsor,1600\nmore,40,merrywivesofwindsor,1600\nout,40,merrywivesofwindsor,1600\nBrook,41,merrywivesofwindsor,1600\nthy,41,merrywivesofwindsor,1600\nAy,42,merrywivesofwindsor,1600\nmake,42,merrywivesofwindsor,1600\nsee,43,merrywivesofwindsor,1600\nmaster,43,merrywivesofwindsor,1600\nwoman,43,merrywivesofwindsor,1600\nlike,44,merrywivesofwindsor,1600\nlove,44,merrywivesofwindsor,1600\nExit,45,merrywivesofwindsor,1600\ntell,46,merrywivesofwindsor,1600\nand,558,merrywivesofwindsor,1600\nhad,47,merrywivesofwindsor,1600\nAnne,47,merrywivesofwindsor,1600\nlet,47,merrywivesofwindsor,1600\nthem,49,merrywivesofwindsor,1600\nknow,49,merrywivesofwindsor,1600\nwe,49,merrywivesofwindsor,1600\none,49,merrywivesofwindsor,1600\nan,51,merrywivesofwindsor,1600\nthee,52,merrywivesofwindsor,1600\nsay,53,merrywivesofwindsor,1600\nMISTRESS,310,merrywivesofwindsor,1600\nor,55,merrywivesofwindsor,1600\nwell,55,merrywivesofwindsor,1600\nthou,56,merrywivesofwindsor,1600\nJohn,57,merrywivesofwindsor,1600\nman,57,merrywivesofwindsor,1600\nFord,58,merrywivesofwindsor,1600\nthe,570,merrywivesofwindsor,1600\nthey,59,merrywivesofwindsor,1600\nHost,59,merrywivesofwindsor,1600\nare,61,merrywivesofwindsor,1600\nhath,61,merrywivesofwindsor,1600\nis,317,merrywivesofwindsor,1600\nthere,63,merrywivesofwindsor,1600\non,63,merrywivesofwindsor,1600\nnow,63,merrywivesofwindsor,1600\nWhat,63,merrywivesofwindsor,1600\nhere,64,merrywivesofwindsor,1600\nEnter,65,merrywivesofwindsor,1600\nif,66,merrywivesofwindsor,1600\nCAIUS,67,merrywivesofwindsor,1600\ngo,68,merrywivesofwindsor,1600\nby,68,merrywivesofwindsor,1600\nDOCTOR,68,merrywivesofwindsor,1600\nshe,70,merrywivesofwindsor,1600\nAnd,70,merrywivesofwindsor,1600\nSLENDER,71,merrywivesofwindsor,1600\nwould,72,merrywivesofwindsor,1600\nno,73,merrywivesofwindsor,1600\nam,74,merrywivesofwindsor,1600\nI'll,74,merrywivesofwindsor,1600\nall,75,merrywivesofwindsor,1600\nwhat,76,merrywivesofwindsor,1600\nSHALLOW,77,merrywivesofwindsor,1600\nSir,77,merrywivesofwindsor,1600\nMistress,81,merrywivesofwindsor,1600\nat,83,merrywivesofwindsor,1600\nQUICKLY,88,merrywivesofwindsor,1600\nso,89,merrywivesofwindsor,1600\ncome,89,merrywivesofwindsor,1600\nsir,91,merrywivesofwindsor,1600\nPage,92,merrywivesofwindsor,1600\ndo,97,merrywivesofwindsor,1600\nbut,105,merrywivesofwindsor,1600\nHUGH,106,merrywivesofwindsor,1600\nEVANS,106,merrywivesofwindsor,1600\nSIR,107,merrywivesofwindsor,1600\ngood,109,merrywivesofwindsor,1600\nthis,118,merrywivesofwindsor,1600\nshall,119,merrywivesofwindsor,1600\nMaster,131,merrywivesofwindsor,1600\nas,132,merrywivesofwindsor,1600\nof,394,merrywivesofwindsor,1600\nhis,139,merrywivesofwindsor,1600\nFALSTAFF,156,merrywivesofwindsor,1600\nhim,160,merrywivesofwindsor,1600\nto,416,merrywivesofwindsor,1600\nfor,164,merrywivesofwindsor,1600\nher,172,merrywivesofwindsor,1600\nwith,180,merrywivesofwindsor,1600\nit,183,merrywivesofwindsor,1600\nthat,184,merrywivesofwindsor,1600\nhave,194,merrywivesofwindsor,1600\nnot,197,merrywivesofwindsor,1600\na,454,merrywivesofwindsor,1600\nhe,201,merrywivesofwindsor,1600\nyour,204,merrywivesofwindsor,1600\nbe,204,merrywivesofwindsor,1600\nwill,206,merrywivesofwindsor,1600\nFORD,213,merrywivesofwindsor,1600\nme,233,merrywivesofwindsor,1600\nyou,495,merrywivesofwindsor,1600\nbrave,1,muchadoaboutnothing,1599\npeopled,1,muchadoaboutnothing,1599\nslops,1,muchadoaboutnothing,1599\ntreason,1,muchadoaboutnothing,1599\nsilken,1,muchadoaboutnothing,1599\ncage,1,muchadoaboutnothing,1599\nmangers,1,muchadoaboutnothing,1599\ntroubled,1,muchadoaboutnothing,1599\no'er,1,muchadoaboutnothing,1599\nsomebody,1,muchadoaboutnothing,1599\nlusty,1,muchadoaboutnothing,1599\nangers,1,muchadoaboutnothing,1599\naccordingly,1,muchadoaboutnothing,1599\ndaffed,1,muchadoaboutnothing,1599\nH,1,muchadoaboutnothing,1599\ndrawing,1,muchadoaboutnothing,1599\ntransform,1,muchadoaboutnothing,1599\npennyworth,1,muchadoaboutnothing,1599\nswords,1,muchadoaboutnothing,1599\ngrew,1,muchadoaboutnothing,1599\nProve,1,muchadoaboutnothing,1599\nbonny,1,muchadoaboutnothing,1599\ninvisible,1,muchadoaboutnothing,1599\njoin,1,muchadoaboutnothing,1599\nmistaking,1,muchadoaboutnothing,1599\nYours,1,muchadoaboutnothing,1599\nLEONATO's,1,muchadoaboutnothing,1599\ngallants,1,muchadoaboutnothing,1599\npestilence,1,muchadoaboutnothing,1599\nconsumption,1,muchadoaboutnothing,1599\ndrop,1,muchadoaboutnothing,1599\nProof,1,muchadoaboutnothing,1599\nafar,1,muchadoaboutnothing,1599\nmarrying,1,muchadoaboutnothing,1599\nDuchess,1,muchadoaboutnothing,1599\nfathers,1,muchadoaboutnothing,1599\nreckonings,1,muchadoaboutnothing,1599\napprehend,1,muchadoaboutnothing,1599\nderives,1,muchadoaboutnothing,1599\nbelongs,1,muchadoaboutnothing,1599\nWonder,1,muchadoaboutnothing,1599\ntruer,1,muchadoaboutnothing,1599\nScrambling,1,muchadoaboutnothing,1599\nFrenchman,1,muchadoaboutnothing,1599\nwish'd,1,muchadoaboutnothing,1599\nfencer's,1,muchadoaboutnothing,1599\nwatchman,1,muchadoaboutnothing,1599\nplanted,1,muchadoaboutnothing,1599\nImpose,1,muchadoaboutnothing,1599\nalike,1,muchadoaboutnothing,1599\nwhiteness,1,muchadoaboutnothing,1599\n'baby,1,muchadoaboutnothing,1599\nwoman's,1,muchadoaboutnothing,1599\nexcepting,1,muchadoaboutnothing,1599\ntravail,1,muchadoaboutnothing,1599\nSilent,1,muchadoaboutnothing,1599\nfollies,1,muchadoaboutnothing,1599\ntore,1,muchadoaboutnothing,1599\nbrows,1,muchadoaboutnothing,1599\nbrown,1,muchadoaboutnothing,1599\nWrit,1,muchadoaboutnothing,1599\nhonourably,1,muchadoaboutnothing,1599\ndagger,1,muchadoaboutnothing,1599\nrock,1,muchadoaboutnothing,1599\nMessengers,1,muchadoaboutnothing,1599\nzeal,1,muchadoaboutnothing,1599\nlabours,1,muchadoaboutnothing,1599\nelement,1,muchadoaboutnothing,1599\nfoolery,1,muchadoaboutnothing,1599\nobstinate,1,muchadoaboutnothing,1599\noffended,1,muchadoaboutnothing,1599\nhealth,1,muchadoaboutnothing,1599\nshoulders,1,muchadoaboutnothing,1599\nrob,1,muchadoaboutnothing,1599\noffender,1,muchadoaboutnothing,1599\nmend,1,muchadoaboutnothing,1599\nscene,1,muchadoaboutnothing,1599\nheart's,1,muchadoaboutnothing,1599\nbranch,1,muchadoaboutnothing,1599\nsteals,1,muchadoaboutnothing,1599\nBeat,1,muchadoaboutnothing,1599\nBear,1,muchadoaboutnothing,1599\nuncovered,1,muchadoaboutnothing,1599\nassistance,1,muchadoaboutnothing,1599\ncounties,1,muchadoaboutnothing,1599\nroad,1,muchadoaboutnothing,1599\nwhipt,1,muchadoaboutnothing,1599\nhush'd,1,muchadoaboutnothing,1599\nepitaph,1,muchadoaboutnothing,1599\npunishments,1,muchadoaboutnothing,1599\nboys,1,muchadoaboutnothing,1599\nconstruction,1,muchadoaboutnothing,1599\nmelt,1,muchadoaboutnothing,1599\nheld,1,muchadoaboutnothing,1599\nsleeps,1,muchadoaboutnothing,1599\nhelps,1,muchadoaboutnothing,1599\nfurthest,1,muchadoaboutnothing,1599\ndish,1,muchadoaboutnothing,1599\nentered,1,muchadoaboutnothing,1599\nMeasure,1,muchadoaboutnothing,1599\neight,1,muchadoaboutnothing,1599\nconjoined,1,muchadoaboutnothing,1599\npiety,1,muchadoaboutnothing,1599\nwriter,1,muchadoaboutnothing,1599\nyounger,1,muchadoaboutnothing,1599\npainted,1,muchadoaboutnothing,1599\neasier,1,muchadoaboutnothing,1599\nhers,1,muchadoaboutnothing,1599\ninterjections,1,muchadoaboutnothing,1599\nDespite,1,muchadoaboutnothing,1599\ncursing,1,muchadoaboutnothing,1599\nruffian,1,muchadoaboutnothing,1599\ndisease,1,muchadoaboutnothing,1599\nsighs,1,muchadoaboutnothing,1599\nskirts,1,muchadoaboutnothing,1599\nerrand,1,muchadoaboutnothing,1599\ntoil,1,muchadoaboutnothing,1599\ndrum,1,muchadoaboutnothing,1599\n'saving,1,muchadoaboutnothing,1599\nsunburnt,1,muchadoaboutnothing,1599\nhearted,1,muchadoaboutnothing,1599\nshifted,1,muchadoaboutnothing,1599\nrid,1,muchadoaboutnothing,1599\nfought,1,muchadoaboutnothing,1599\nPause,1,muchadoaboutnothing,1599\nhanged,1,muchadoaboutnothing,1599\nadvance,1,muchadoaboutnothing,1599\nvillanies,1,muchadoaboutnothing,1599\nmaintain,1,muchadoaboutnothing,1599\npraising,1,muchadoaboutnothing,1599\nflow,1,muchadoaboutnothing,1599\nrichly,1,muchadoaboutnothing,1599\nunhappiness,1,muchadoaboutnothing,1599\nfury,1,muchadoaboutnothing,1599\nalthough,1,muchadoaboutnothing,1599\nfashioning,1,muchadoaboutnothing,1599\nmilksops,1,muchadoaboutnothing,1599\nunderneath,1,muchadoaboutnothing,1599\ncowardice,1,muchadoaboutnothing,1599\nsigns,1,muchadoaboutnothing,1599\nSuffer,1,muchadoaboutnothing,1599\nContempt,1,muchadoaboutnothing,1599\nwarren,1,muchadoaboutnothing,1599\nreasoned,1,muchadoaboutnothing,1599\ncommence,1,muchadoaboutnothing,1599\nthirty,1,muchadoaboutnothing,1599\nterrible,1,muchadoaboutnothing,1599\nyonder,1,muchadoaboutnothing,1599\nreformed,1,muchadoaboutnothing,1599\npress,1,muchadoaboutnothing,1599\nadvise,1,muchadoaboutnothing,1599\nJacks,1,muchadoaboutnothing,1599\nbaldrick,1,muchadoaboutnothing,1599\nancestors,1,muchadoaboutnothing,1599\npick,1,muchadoaboutnothing,1599\nValuing,1,muchadoaboutnothing,1599\nenfranchised,1,muchadoaboutnothing,1599\nlief,1,muchadoaboutnothing,1599\nremain,1,muchadoaboutnothing,1599\nprinted,1,muchadoaboutnothing,1599\nhuddling,1,muchadoaboutnothing,1599\nscruple,1,muchadoaboutnothing,1599\nwrest,1,muchadoaboutnothing,1599\nwounded,1,muchadoaboutnothing,1599\ngoest,1,muchadoaboutnothing,1599\nnecessarily,1,muchadoaboutnothing,1599\nPERSONAE,1,muchadoaboutnothing,1599\nagreed,1,muchadoaboutnothing,1599\nsaved,1,muchadoaboutnothing,1599\nditties,1,muchadoaboutnothing,1599\nScratching,1,muchadoaboutnothing,1599\ncouched,1,muchadoaboutnothing,1599\ndeservest,1,muchadoaboutnothing,1599\nMountanto,1,muchadoaboutnothing,1599\nteacher,1,muchadoaboutnothing,1599\nquirks,1,muchadoaboutnothing,1599\nutter'd,1,muchadoaboutnothing,1599\nsoftly,1,muchadoaboutnothing,1599\ngallop,1,muchadoaboutnothing,1599\nlaced,1,muchadoaboutnothing,1599\nwalking,1,muchadoaboutnothing,1599\nCourtesy,1,muchadoaboutnothing,1599\nassaults,1,muchadoaboutnothing,1599\ndelivered,1,muchadoaboutnothing,1599\nstrength,1,muchadoaboutnothing,1599\nsoon,1,muchadoaboutnothing,1599\nsons,1,muchadoaboutnothing,1599\nhonester,1,muchadoaboutnothing,1599\ngiant,1,muchadoaboutnothing,1599\nbrothel,1,muchadoaboutnothing,1599\nguards,1,muchadoaboutnothing,1599\nfriend's,1,muchadoaboutnothing,1599\nsadly,1,muchadoaboutnothing,1599\nreconciled,1,muchadoaboutnothing,1599\nslept,1,muchadoaboutnothing,1599\nenigmatical,1,muchadoaboutnothing,1599\nAsia,1,muchadoaboutnothing,1599\nsole,1,muchadoaboutnothing,1599\nrevellers,1,muchadoaboutnothing,1599\ncharms,1,muchadoaboutnothing,1599\nillegitimate,1,muchadoaboutnothing,1599\ngrieving,1,muchadoaboutnothing,1599\nbefits,1,muchadoaboutnothing,1599\nyears,1,muchadoaboutnothing,1599\nstream,1,muchadoaboutnothing,1599\nbackward,1,muchadoaboutnothing,1599\nlink,1,muchadoaboutnothing,1599\nfortunate,1,muchadoaboutnothing,1599\nhighness,1,muchadoaboutnothing,1599\nDapples,1,muchadoaboutnothing,1599\nTongue,1,muchadoaboutnothing,1599\ndeceivers,1,muchadoaboutnothing,1599\nlime,1,muchadoaboutnothing,1599\ncrying,1,muchadoaboutnothing,1599\nincensed,1,muchadoaboutnothing,1599\nlimb,1,muchadoaboutnothing,1599\ngracious,1,muchadoaboutnothing,1599\ndevising,1,muchadoaboutnothing,1599\nbroken,1,muchadoaboutnothing,1599\nhorror,1,muchadoaboutnothing,1599\npurse,1,muchadoaboutnothing,1599\ntrumpet,1,muchadoaboutnothing,1599\nconcerns,1,muchadoaboutnothing,1599\nheat,1,muchadoaboutnothing,1599\ntoward,1,muchadoaboutnothing,1599\nsparks,1,muchadoaboutnothing,1599\nprickest,1,muchadoaboutnothing,1599\noffenders,1,muchadoaboutnothing,1599\nwants,1,muchadoaboutnothing,1599\ncheek,1,muchadoaboutnothing,1599\nhearing,1,muchadoaboutnothing,1599\npolicy,1,muchadoaboutnothing,1599\ntown,1,muchadoaboutnothing,1599\nmadness,1,muchadoaboutnothing,1599\ngolden,1,muchadoaboutnothing,1599\nsoil,1,muchadoaboutnothing,1599\ngross,1,muchadoaboutnothing,1599\npipe,1,muchadoaboutnothing,1599\nhanging,1,muchadoaboutnothing,1599\nofficers,1,muchadoaboutnothing,1599\nsuffigance,1,muchadoaboutnothing,1599\nfinding,1,muchadoaboutnothing,1599\nEthiope,1,muchadoaboutnothing,1599\nlikeness,1,muchadoaboutnothing,1599\nshrewdly,1,muchadoaboutnothing,1599\nfaiths,1,muchadoaboutnothing,1599\naddition,1,muchadoaboutnothing,1599\nnoise,1,muchadoaboutnothing,1599\nfacing,1,muchadoaboutnothing,1599\nblessed,1,muchadoaboutnothing,1599\nbachelors,1,muchadoaboutnothing,1599\npurity,1,muchadoaboutnothing,1599\nvisit,1,muchadoaboutnothing,1599\nlessen,1,muchadoaboutnothing,1599\nsingest,1,muchadoaboutnothing,1599\nfeatured,1,muchadoaboutnothing,1599\nFetter,1,muchadoaboutnothing,1599\nkid,1,muchadoaboutnothing,1599\nbegan,1,muchadoaboutnothing,1599\ncoldly,1,muchadoaboutnothing,1599\nsomething,1,muchadoaboutnothing,1599\nsobs,1,muchadoaboutnothing,1599\nasked,1,muchadoaboutnothing,1599\nmoving,1,muchadoaboutnothing,1599\ndiscovers,1,muchadoaboutnothing,1599\ncounterpoise,1,muchadoaboutnothing,1599\ncloudiness,1,muchadoaboutnothing,1599\nWin,1,muchadoaboutnothing,1599\nsmirched,1,muchadoaboutnothing,1599\nhereafter,1,muchadoaboutnothing,1599\nPatch,1,muchadoaboutnothing,1599\nslightly,1,muchadoaboutnothing,1599\nsmoking,1,muchadoaboutnothing,1599\nOff,1,muchadoaboutnothing,1599\nepitaphs,1,muchadoaboutnothing,1599\ncompliment,1,muchadoaboutnothing,1599\nunderborne,1,muchadoaboutnothing,1599\nwhatsoever,1,muchadoaboutnothing,1599\nlibertines,1,muchadoaboutnothing,1599\nFlat,1,muchadoaboutnothing,1599\nGet,1,muchadoaboutnothing,1599\nbabble,1,muchadoaboutnothing,1599\npipers,1,muchadoaboutnothing,1599\npenance,1,muchadoaboutnothing,1599\nChange,1,muchadoaboutnothing,1599\nsubdued,1,muchadoaboutnothing,1599\nagent,1,muchadoaboutnothing,1599\nluckier,1,muchadoaboutnothing,1599\nfleet,1,muchadoaboutnothing,1599\nfleer,1,muchadoaboutnothing,1599\ntooth,1,muchadoaboutnothing,1599\npredestinate,1,muchadoaboutnothing,1599\nsex,1,muchadoaboutnothing,1599\nvice,1,muchadoaboutnothing,1599\nfavoured,1,muchadoaboutnothing,1599\nrubs,1,muchadoaboutnothing,1599\ntouched,1,muchadoaboutnothing,1599\ncatching,1,muchadoaboutnothing,1599\nDutchman,1,muchadoaboutnothing,1599\nmending,1,muchadoaboutnothing,1599\nPraising,1,muchadoaboutnothing,1599\nshe'll,1,muchadoaboutnothing,1599\nshaven,1,muchadoaboutnothing,1599\nthatched,1,muchadoaboutnothing,1599\nWalk,1,muchadoaboutnothing,1599\nabused,1,muchadoaboutnothing,1599\nspy,1,muchadoaboutnothing,1599\nnine,1,muchadoaboutnothing,1599\nscore,1,muchadoaboutnothing,1599\nlove's,1,muchadoaboutnothing,1599\nfavourites,1,muchadoaboutnothing,1599\nconfirmed,1,muchadoaboutnothing,1599\ndeliver,1,muchadoaboutnothing,1599\nlesson,1,muchadoaboutnothing,1599\nwindy,1,muchadoaboutnothing,1599\nWithdraw,1,muchadoaboutnothing,1599\nskill,1,muchadoaboutnothing,1599\nunconstrained,1,muchadoaboutnothing,1599\n'Just,1,muchadoaboutnothing,1599\nwinds,1,muchadoaboutnothing,1599\nsubject,1,muchadoaboutnothing,1599\nfashions,1,muchadoaboutnothing,1599\nfollowed,1,muchadoaboutnothing,1599\nmired,1,muchadoaboutnothing,1599\n'O,1,muchadoaboutnothing,1599\ncountenance,1,muchadoaboutnothing,1599\nSilence,1,muchadoaboutnothing,1599\nbluish,1,muchadoaboutnothing,1599\nTheir,1,muchadoaboutnothing,1599\nkindly,1,muchadoaboutnothing,1599\n't,1,muchadoaboutnothing,1599\nsecond,1,muchadoaboutnothing,1599\nopinioned,1,muchadoaboutnothing,1599\nsquarer,1,muchadoaboutnothing,1599\npitiful,1,muchadoaboutnothing,1599\ngather,1,muchadoaboutnothing,1599\nsadder,1,muchadoaboutnothing,1599\nquondam,1,muchadoaboutnothing,1599\nThanks,1,muchadoaboutnothing,1599\noffends,1,muchadoaboutnothing,1599\nhearsay,1,muchadoaboutnothing,1599\nstuff,1,muchadoaboutnothing,1599\nConfirm'd,1,muchadoaboutnothing,1599\nbridge,1,muchadoaboutnothing,1599\nbecomes,1,muchadoaboutnothing,1599\naffect,1,muchadoaboutnothing,1599\nadverse,1,muchadoaboutnothing,1599\nfoulness,1,muchadoaboutnothing,1599\namiss,1,muchadoaboutnothing,1599\nappear'd,1,muchadoaboutnothing,1599\nMerry,1,muchadoaboutnothing,1599\nexhibition,1,muchadoaboutnothing,1599\nmalefactors,1,muchadoaboutnothing,1599\neverlasting,1,muchadoaboutnothing,1599\nbarns,1,muchadoaboutnothing,1599\nsecondarily,1,muchadoaboutnothing,1599\nheavens,1,muchadoaboutnothing,1599\npassed,1,muchadoaboutnothing,1599\nreceived,1,muchadoaboutnothing,1599\nturning,1,muchadoaboutnothing,1599\nfoils,1,muchadoaboutnothing,1599\nstamps,1,muchadoaboutnothing,1599\nconceit,1,muchadoaboutnothing,1599\nhappen,1,muchadoaboutnothing,1599\ndancer,1,muchadoaboutnothing,1599\nOur,1,muchadoaboutnothing,1599\nGrow,1,muchadoaboutnothing,1599\nreft,1,muchadoaboutnothing,1599\ntwelve,1,muchadoaboutnothing,1599\nguarded,1,muchadoaboutnothing,1599\nOfficers,1,muchadoaboutnothing,1599\ncommon,1,muchadoaboutnothing,1599\nwoollen,1,muchadoaboutnothing,1599\nexcellently,1,muchadoaboutnothing,1599\nrepentance,1,muchadoaboutnothing,1599\nConfess'd,1,muchadoaboutnothing,1599\nqualm,1,muchadoaboutnothing,1599\nfigure,1,muchadoaboutnothing,1599\nhabit,1,muchadoaboutnothing,1599\nkinswoman,1,muchadoaboutnothing,1599\ngown's,1,muchadoaboutnothing,1599\nluxurious,1,muchadoaboutnothing,1599\nTurk,1,muchadoaboutnothing,1599\nerect,1,muchadoaboutnothing,1599\nparrot,1,muchadoaboutnothing,1599\nquake,1,muchadoaboutnothing,1599\nfeat,1,muchadoaboutnothing,1599\nscold,1,muchadoaboutnothing,1599\ndetain,1,muchadoaboutnothing,1599\nterms,1,muchadoaboutnothing,1599\ndearly,1,muchadoaboutnothing,1599\ncherish,1,muchadoaboutnothing,1599\ncommit,1,muchadoaboutnothing,1599\neldest,1,muchadoaboutnothing,1599\nPardon,1,muchadoaboutnothing,1599\ninstance,1,muchadoaboutnothing,1599\ntennis,1,muchadoaboutnothing,1599\nmark'd,1,muchadoaboutnothing,1599\ninkhorn,1,muchadoaboutnothing,1599\nconsented,1,muchadoaboutnothing,1599\nwilling,1,muchadoaboutnothing,1599\nYearly,1,muchadoaboutnothing,1599\nthaw,1,muchadoaboutnothing,1599\nmodel,1,muchadoaboutnothing,1599\nhumble,1,muchadoaboutnothing,1599\ntush,1,muchadoaboutnothing,1599\noverthrown,1,muchadoaboutnothing,1599\nsum,1,muchadoaboutnothing,1599\nsinger,1,muchadoaboutnothing,1599\nSeeming,1,muchadoaboutnothing,1599\nvanity,1,muchadoaboutnothing,1599\nabove,1,muchadoaboutnothing,1599\nfeed,1,muchadoaboutnothing,1599\ncivet,1,muchadoaboutnothing,1599\nominous,1,muchadoaboutnothing,1599\nnegotiate,1,muchadoaboutnothing,1599\ncease,1,muchadoaboutnothing,1599\nsauce,1,muchadoaboutnothing,1599\nplainly,1,muchadoaboutnothing,1599\ninfinite,1,muchadoaboutnothing,1599\nhumbly,1,muchadoaboutnothing,1599\nwinded,1,muchadoaboutnothing,1599\ngrow,1,muchadoaboutnothing,1599\ndissuade,1,muchadoaboutnothing,1599\nrecheat,1,muchadoaboutnothing,1599\ncostly,1,muchadoaboutnothing,1599\nodorous,1,muchadoaboutnothing,1599\nupon't,1,muchadoaboutnothing,1599\nClap's,1,muchadoaboutnothing,1599\nBull,1,muchadoaboutnothing,1599\nconceal,1,muchadoaboutnothing,1599\nancient,1,muchadoaboutnothing,1599\nweather,1,muchadoaboutnothing,1599\nOld,1,muchadoaboutnothing,1599\nchoose,1,muchadoaboutnothing,1599\nrooms,1,muchadoaboutnothing,1599\nwine,1,muchadoaboutnothing,1599\nwing,1,muchadoaboutnothing,1599\nattires,1,muchadoaboutnothing,1599\nGifts,1,muchadoaboutnothing,1599\nyouth's,1,muchadoaboutnothing,1599\nprized,1,muchadoaboutnothing,1599\nward,1,muchadoaboutnothing,1599\nwished,1,muchadoaboutnothing,1599\ncuckold,1,muchadoaboutnothing,1599\nattired,1,muchadoaboutnothing,1599\nHence,1,muchadoaboutnothing,1599\nlanguage,1,muchadoaboutnothing,1599\ndreamed,1,muchadoaboutnothing,1599\nsailing,1,muchadoaboutnothing,1599\nPlease,1,muchadoaboutnothing,1599\npartridge,1,muchadoaboutnothing,1599\n'Hundred,1,muchadoaboutnothing,1599\nwasters,1,muchadoaboutnothing,1599\nhates,1,muchadoaboutnothing,1599\nbolt,1,muchadoaboutnothing,1599\nponiards,1,muchadoaboutnothing,1599\ncrossness,1,muchadoaboutnothing,1599\nCousin,1,muchadoaboutnothing,1599\nwitnesses,1,muchadoaboutnothing,1599\nbold,1,muchadoaboutnothing,1599\nMidnight,1,muchadoaboutnothing,1599\ncustom,1,muchadoaboutnothing,1599\nsense,1,muchadoaboutnothing,1599\nseem'd,1,muchadoaboutnothing,1599\npierce,1,muchadoaboutnothing,1599\nblades,1,muchadoaboutnothing,1599\nsheeps',1,muchadoaboutnothing,1599\nworld's,1,muchadoaboutnothing,1599\nrest,1,muchadoaboutnothing,1599\nwarm,1,muchadoaboutnothing,1599\nmerely,1,muchadoaboutnothing,1599\ndice,1,muchadoaboutnothing,1599\nVulcan,1,muchadoaboutnothing,1599\nthroughly,1,muchadoaboutnothing,1599\nmelted,1,muchadoaboutnothing,1599\nconveyance,1,muchadoaboutnothing,1599\nmistake,1,muchadoaboutnothing,1599\ncircumstances,1,muchadoaboutnothing,1599\nambles,1,muchadoaboutnothing,1599\nruled,1,muchadoaboutnothing,1599\nmanly,1,muchadoaboutnothing,1599\nbleats,1,muchadoaboutnothing,1599\nalliance,1,muchadoaboutnothing,1599\nmanhood,1,muchadoaboutnothing,1599\ninwardness,1,muchadoaboutnothing,1599\ntend,1,muchadoaboutnothing,1599\ncolour,1,muchadoaboutnothing,1599\nwayward,1,muchadoaboutnothing,1599\nproperest,1,muchadoaboutnothing,1599\nDraw,1,muchadoaboutnothing,1599\nintelligence,1,muchadoaboutnothing,1599\ngoddess,1,muchadoaboutnothing,1599\nconditions,1,muchadoaboutnothing,1599\nproject,1,muchadoaboutnothing,1599\nhe's,1,muchadoaboutnothing,1599\ntwine,1,muchadoaboutnothing,1599\nnephew,1,muchadoaboutnothing,1599\nbitter,1,muchadoaboutnothing,1599\nDaughter,1,muchadoaboutnothing,1599\neach,1,muchadoaboutnothing,1599\nSigh,1,muchadoaboutnothing,1599\nmuzzle,1,muchadoaboutnothing,1599\nscandal,1,muchadoaboutnothing,1599\nauthority,1,muchadoaboutnothing,1599\nha',1,muchadoaboutnothing,1599\nstir,1,muchadoaboutnothing,1599\nsolicit,1,muchadoaboutnothing,1599\ntapers,1,muchadoaboutnothing,1599\nupwards,1,muchadoaboutnothing,1599\nstatutes,1,muchadoaboutnothing,1599\nshooting,1,muchadoaboutnothing,1599\nHold,1,muchadoaboutnothing,1599\ndrinking,1,muchadoaboutnothing,1599\nplanet,1,muchadoaboutnothing,1599\noverthrow,1,muchadoaboutnothing,1599\n'scorn,1,muchadoaboutnothing,1599\nrefuse,1,muchadoaboutnothing,1599\noverflow,1,muchadoaboutnothing,1599\nreligious,1,muchadoaboutnothing,1599\nPossess,1,muchadoaboutnothing,1599\nsores,1,muchadoaboutnothing,1599\n'horn,1,muchadoaboutnothing,1599\nnights',1,muchadoaboutnothing,1599\nHERO's,1,muchadoaboutnothing,1599\nballs,1,muchadoaboutnothing,1599\nperfection,1,muchadoaboutnothing,1599\nAh,1,muchadoaboutnothing,1599\ntasting,1,muchadoaboutnothing,1599\ninfection,1,muchadoaboutnothing,1599\nmistrust,1,muchadoaboutnothing,1599\nfool's,1,muchadoaboutnothing,1599\nslander'd,1,muchadoaboutnothing,1599\nscarce,1,muchadoaboutnothing,1599\nchaste,1,muchadoaboutnothing,1599\nMeans,1,muchadoaboutnothing,1599\nbow,1,muchadoaboutnothing,1599\nwronger,1,muchadoaboutnothing,1599\nguiltiness,1,muchadoaboutnothing,1599\ndeeds,1,muchadoaboutnothing,1599\nThose,1,muchadoaboutnothing,1599\ndistilled,1,muchadoaboutnothing,1599\nmisused,1,muchadoaboutnothing,1599\nlance,1,muchadoaboutnothing,1599\ndesperate,1,muchadoaboutnothing,1599\nHaving,1,muchadoaboutnothing,1599\nspots,1,muchadoaboutnothing,1599\nborrows,1,muchadoaboutnothing,1599\nDrink,1,muchadoaboutnothing,1599\nBy'r,1,muchadoaboutnothing,1599\nhouseholder,1,muchadoaboutnothing,1599\nhoped,1,muchadoaboutnothing,1599\nperfume,1,muchadoaboutnothing,1599\nbar,1,muchadoaboutnothing,1599\nladyship,1,muchadoaboutnothing,1599\nturncoat,1,muchadoaboutnothing,1599\ngossip,1,muchadoaboutnothing,1599\nsubscribe,1,muchadoaboutnothing,1599\ndenies,1,muchadoaboutnothing,1599\nlisten,1,muchadoaboutnothing,1599\nkept,1,muchadoaboutnothing,1599\ncanst,1,muchadoaboutnothing,1599\nAnswer,1,muchadoaboutnothing,1599\nhusband',1,muchadoaboutnothing,1599\nHey,1,muchadoaboutnothing,1599\nsalved,1,muchadoaboutnothing,1599\npitied,1,muchadoaboutnothing,1599\ntwist,1,muchadoaboutnothing,1599\nSpaniard,1,muchadoaboutnothing,1599\nhip,1,muchadoaboutnothing,1599\nconceived,1,muchadoaboutnothing,1599\nconjoin'd,1,muchadoaboutnothing,1599\nhit,1,muchadoaboutnothing,1599\ntear,1,muchadoaboutnothing,1599\nRefuse,1,muchadoaboutnothing,1599\nfiner,1,muchadoaboutnothing,1599\nHo,1,muchadoaboutnothing,1599\nowner,1,muchadoaboutnothing,1599\nComfect,1,muchadoaboutnothing,1599\nhusbands,1,muchadoaboutnothing,1599\ngreedily,1,muchadoaboutnothing,1599\ndeserved,1,muchadoaboutnothing,1599\npalabras,1,muchadoaboutnothing,1599\nappoint,1,muchadoaboutnothing,1599\nproverbs,1,muchadoaboutnothing,1599\nshillings,1,muchadoaboutnothing,1599\neast,1,muchadoaboutnothing,1599\nHad,1,muchadoaboutnothing,1599\nbloom,1,muchadoaboutnothing,1599\nnoses,1,muchadoaboutnothing,1599\ncondemned,1,muchadoaboutnothing,1599\npraiseworthy,1,muchadoaboutnothing,1599\ntreachery,1,muchadoaboutnothing,1599\npit,1,muchadoaboutnothing,1599\nAlmost,1,muchadoaboutnothing,1599\nearn,1,muchadoaboutnothing,1599\nTroilus,1,muchadoaboutnothing,1599\nexterior,1,muchadoaboutnothing,1599\nglorious,1,muchadoaboutnothing,1599\nnice,1,muchadoaboutnothing,1599\nsnapped,1,muchadoaboutnothing,1599\ncountries,1,muchadoaboutnothing,1599\nhaggerds,1,muchadoaboutnothing,1599\ntemple,1,muchadoaboutnothing,1599\nsmoothly,1,muchadoaboutnothing,1599\nAdieu,1,muchadoaboutnothing,1599\noffered,1,muchadoaboutnothing,1599\npriests,1,muchadoaboutnothing,1599\ncomprehended,1,muchadoaboutnothing,1599\nepigram,1,muchadoaboutnothing,1599\nvagrom,1,muchadoaboutnothing,1599\nJanuary,1,muchadoaboutnothing,1599\nworshipped,1,muchadoaboutnothing,1599\nreproaches,1,muchadoaboutnothing,1599\ndumps,1,muchadoaboutnothing,1599\ngave,1,muchadoaboutnothing,1599\nweek,1,muchadoaboutnothing,1599\nnigh,1,muchadoaboutnothing,1599\ntinsel,1,muchadoaboutnothing,1599\nabsent,1,muchadoaboutnothing,1599\nabides,1,muchadoaboutnothing,1599\ncanker,1,muchadoaboutnothing,1599\nmetal,1,muchadoaboutnothing,1599\nsooner,1,muchadoaboutnothing,1599\nConsume,1,muchadoaboutnothing,1599\ndiscontinue,1,muchadoaboutnothing,1599\nnarrowly,1,muchadoaboutnothing,1599\nleaders,1,muchadoaboutnothing,1599\ndifference,1,muchadoaboutnothing,1599\nSits,1,muchadoaboutnothing,1599\nOr,1,muchadoaboutnothing,1599\nbabbling,1,muchadoaboutnothing,1599\nhymn,1,muchadoaboutnothing,1599\nbreathing,1,muchadoaboutnothing,1599\nchildren,1,muchadoaboutnothing,1599\nsincerity,1,muchadoaboutnothing,1599\nChid,1,muchadoaboutnothing,1599\nornament,1,muchadoaboutnothing,1599\nawaked,1,muchadoaboutnothing,1599\nsounds,1,muchadoaboutnothing,1599\nvigitant,1,muchadoaboutnothing,1599\nSeest,1,muchadoaboutnothing,1599\nswoons,1,muchadoaboutnothing,1599\nunquietness,1,muchadoaboutnothing,1599\ncouch,1,muchadoaboutnothing,1599\ndevised,1,muchadoaboutnothing,1599\nstealer,1,muchadoaboutnothing,1599\nweak,1,muchadoaboutnothing,1599\nBehold,1,muchadoaboutnothing,1599\nbeyond,1,muchadoaboutnothing,1599\nmodestly,1,muchadoaboutnothing,1599\nfrugal,1,muchadoaboutnothing,1599\nmelteth,1,muchadoaboutnothing,1599\nbullocks,1,muchadoaboutnothing,1599\nSaint,1,muchadoaboutnothing,1599\nSundays,1,muchadoaboutnothing,1599\njealous,1,muchadoaboutnothing,1599\nhobby,1,muchadoaboutnothing,1599\nheadborough,1,muchadoaboutnothing,1599\ncrackers,1,muchadoaboutnothing,1599\nDrawing,1,muchadoaboutnothing,1599\nsuddenly,1,muchadoaboutnothing,1599\nsieve,1,muchadoaboutnothing,1599\nserpent,1,muchadoaboutnothing,1599\njewel,1,muchadoaboutnothing,1599\npersuasion,1,muchadoaboutnothing,1599\ncarpenter,1,muchadoaboutnothing,1599\nDidst,1,muchadoaboutnothing,1599\n'Shall,1,muchadoaboutnothing,1599\nfriendly,1,muchadoaboutnothing,1599\nroyally,1,muchadoaboutnothing,1599\nSing,1,muchadoaboutnothing,1599\nbadge,1,muchadoaboutnothing,1599\nbud,1,muchadoaboutnothing,1599\nswift,1,muchadoaboutnothing,1599\nlikest,1,muchadoaboutnothing,1599\nworship's,1,muchadoaboutnothing,1599\nYe,1,muchadoaboutnothing,1599\nused,1,muchadoaboutnothing,1599\ndisguise,1,muchadoaboutnothing,1599\nhalfpence,1,muchadoaboutnothing,1599\nquips,1,muchadoaboutnothing,1599\nEnough,1,muchadoaboutnothing,1599\nAbout,1,muchadoaboutnothing,1599\ndivine,1,muchadoaboutnothing,1599\nsins,1,muchadoaboutnothing,1599\nLike,1,muchadoaboutnothing,1599\ncudgelled,1,muchadoaboutnothing,1599\ngate,1,muchadoaboutnothing,1599\naspicious,1,muchadoaboutnothing,1599\n'Twas,1,muchadoaboutnothing,1599\npicture,1,muchadoaboutnothing,1599\nWhither,1,muchadoaboutnothing,1599\nrejoice,1,muchadoaboutnothing,1599\nhourly,1,muchadoaboutnothing,1599\npitch,1,muchadoaboutnothing,1599\nremnants,1,muchadoaboutnothing,1599\nlamented,1,muchadoaboutnothing,1599\ncalling,1,muchadoaboutnothing,1599\nnorth,1,muchadoaboutnothing,1599\nashamed,1,muchadoaboutnothing,1599\ncomprehend,1,muchadoaboutnothing,1599\nhurts,1,muchadoaboutnothing,1599\nbeginning,1,muchadoaboutnothing,1599\nforemost,1,muchadoaboutnothing,1599\nbegin,1,muchadoaboutnothing,1599\nRecord,1,muchadoaboutnothing,1599\norgan,1,muchadoaboutnothing,1599\nunhopefullest,1,muchadoaboutnothing,1599\npearls,1,muchadoaboutnothing,1599\nsolemn,1,muchadoaboutnothing,1599\ncollege,1,muchadoaboutnothing,1599\nnoted,1,muchadoaboutnothing,1599\nstorm,1,muchadoaboutnothing,1599\nfailing,1,muchadoaboutnothing,1599\nloins',1,muchadoaboutnothing,1599\nvirgin,1,muchadoaboutnothing,1599\nforgive,1,muchadoaboutnothing,1599\n'that,1,muchadoaboutnothing,1599\nvoyage,1,muchadoaboutnothing,1599\ncontinuer,1,muchadoaboutnothing,1599\nblithe,1,muchadoaboutnothing,1599\ntyrant,1,muchadoaboutnothing,1599\nidea,1,muchadoaboutnothing,1599\nsatisfy,1,muchadoaboutnothing,1599\ntreatise,1,muchadoaboutnothing,1599\nFear,1,muchadoaboutnothing,1599\nsixpence,1,muchadoaboutnothing,1599\ninstances,1,muchadoaboutnothing,1599\nburial,1,muchadoaboutnothing,1599\nspirited,1,muchadoaboutnothing,1599\nSONG,1,muchadoaboutnothing,1599\nstops,1,muchadoaboutnothing,1599\nHere's,1,muchadoaboutnothing,1599\npainting,1,muchadoaboutnothing,1599\ncarping,1,muchadoaboutnothing,1599\nprevented,1,muchadoaboutnothing,1599\nneeds,1,muchadoaboutnothing,1599\nstool,1,muchadoaboutnothing,1599\nrecovered,1,muchadoaboutnothing,1599\nUnless,1,muchadoaboutnothing,1599\nswearing,1,muchadoaboutnothing,1599\nquiver,1,muchadoaboutnothing,1599\nunworthy,1,muchadoaboutnothing,1599\nendurance,1,muchadoaboutnothing,1599\nliberal,1,muchadoaboutnothing,1599\nbetroths,1,muchadoaboutnothing,1599\nvouchsafe,1,muchadoaboutnothing,1599\nseeing,1,muchadoaboutnothing,1599\n'Fore,1,muchadoaboutnothing,1599\ninterim,1,muchadoaboutnothing,1599\nlighten,1,muchadoaboutnothing,1599\nseeming,1,muchadoaboutnothing,1599\nlend,1,muchadoaboutnothing,1599\ndoes,1,muchadoaboutnothing,1599\nboast,1,muchadoaboutnothing,1599\nBashful,1,muchadoaboutnothing,1599\nwaist,1,muchadoaboutnothing,1599\nstole,1,muchadoaboutnothing,1599\ntorches,1,muchadoaboutnothing,1599\nappeared,1,muchadoaboutnothing,1599\nquaint,1,muchadoaboutnothing,1599\nhouses,1,muchadoaboutnothing,1599\nay,1,muchadoaboutnothing,1599\nspeed,1,muchadoaboutnothing,1599\nale,1,muchadoaboutnothing,1599\nprivilege,1,muchadoaboutnothing,1599\nnewly,1,muchadoaboutnothing,1599\ncured,1,muchadoaboutnothing,1599\ncorrect,1,muchadoaboutnothing,1599\ndried,1,muchadoaboutnothing,1599\ntuition,1,muchadoaboutnothing,1599\nmove,1,muchadoaboutnothing,1599\nwonderful,1,muchadoaboutnothing,1599\nattending,1,muchadoaboutnothing,1599\ncommend,1,muchadoaboutnothing,1599\nbodies,1,muchadoaboutnothing,1599\nMoral,1,muchadoaboutnothing,1599\nwisely,1,muchadoaboutnothing,1599\nnecessity,1,muchadoaboutnothing,1599\nutmost,1,muchadoaboutnothing,1599\nGoes,1,muchadoaboutnothing,1599\n'school,1,muchadoaboutnothing,1599\ndisquiet,1,muchadoaboutnothing,1599\nwhereof,1,muchadoaboutnothing,1599\nthankful,1,muchadoaboutnothing,1599\nunhandsome,1,muchadoaboutnothing,1599\ntraps,1,muchadoaboutnothing,1599\ninfernal,1,muchadoaboutnothing,1599\nearth,1,muchadoaboutnothing,1599\nscholar,1,muchadoaboutnothing,1599\nattendant,1,muchadoaboutnothing,1599\nTook,1,muchadoaboutnothing,1599\ntemper,1,muchadoaboutnothing,1599\naccusing,1,muchadoaboutnothing,1599\nvalue,1,muchadoaboutnothing,1599\nguerdon,1,muchadoaboutnothing,1599\nlover,1,muchadoaboutnothing,1599\nspell,1,muchadoaboutnothing,1599\nachiever,1,muchadoaboutnothing,1599\nreportingly,1,muchadoaboutnothing,1599\nink,1,muchadoaboutnothing,1599\nstudied,1,muchadoaboutnothing,1599\nloss,1,muchadoaboutnothing,1599\ndrift,1,muchadoaboutnothing,1599\nadd,1,muchadoaboutnothing,1599\nspeak'st,1,muchadoaboutnothing,1599\nagony,1,muchadoaboutnothing,1599\ndispose,1,muchadoaboutnothing,1599\nall's,1,muchadoaboutnothing,1599\nwords',1,muchadoaboutnothing,1599\nfeats,1,muchadoaboutnothing,1599\nsmart,1,muchadoaboutnothing,1599\nbench,1,muchadoaboutnothing,1599\nconfessing,1,muchadoaboutnothing,1599\nhaps,1,muchadoaboutnothing,1599\nshow'd,1,muchadoaboutnothing,1599\ndully,1,muchadoaboutnothing,1599\ncomposed,1,muchadoaboutnothing,1599\nminstrels,1,muchadoaboutnothing,1599\ndisparage,1,muchadoaboutnothing,1599\nload,1,muchadoaboutnothing,1599\nthrice,1,muchadoaboutnothing,1599\nchoice,1,muchadoaboutnothing,1599\neats,1,muchadoaboutnothing,1599\nreasons,1,muchadoaboutnothing,1599\nhavoc,1,muchadoaboutnothing,1599\ntempted,1,muchadoaboutnothing,1599\nconsummate,1,muchadoaboutnothing,1599\ngiddily,1,muchadoaboutnothing,1599\neasy,1,muchadoaboutnothing,1599\nhare,1,muchadoaboutnothing,1599\nkills,1,muchadoaboutnothing,1599\nThought,1,muchadoaboutnothing,1599\ncatches,1,muchadoaboutnothing,1599\nJack,1,muchadoaboutnothing,1599\nreasonable,1,muchadoaboutnothing,1599\nMost,1,muchadoaboutnothing,1599\nfrighted,1,muchadoaboutnothing,1599\ncontrolment,1,muchadoaboutnothing,1599\nsoldier's,1,muchadoaboutnothing,1599\nDecember,1,muchadoaboutnothing,1599\nlewd,1,muchadoaboutnothing,1599\nafford,1,muchadoaboutnothing,1599\nhall,1,muchadoaboutnothing,1599\nwatchings,1,muchadoaboutnothing,1599\nfrost,1,muchadoaboutnothing,1599\nhale,1,muchadoaboutnothing,1599\ncrow,1,muchadoaboutnothing,1599\npeaceable,1,muchadoaboutnothing,1599\nChristian,1,muchadoaboutnothing,1599\nbeggar's,1,muchadoaboutnothing,1599\npeaceably,1,muchadoaboutnothing,1599\nknit,1,muchadoaboutnothing,1599\nwelcome,1,muchadoaboutnothing,1599\nsignify,1,muchadoaboutnothing,1599\nsenseless,1,muchadoaboutnothing,1599\ncrutches,1,muchadoaboutnothing,1599\ntext,1,muchadoaboutnothing,1599\nverse,1,muchadoaboutnothing,1599\nhideousness,1,muchadoaboutnothing,1599\nspeed's,1,muchadoaboutnothing,1599\nbugle,1,muchadoaboutnothing,1599\nMore,1,muchadoaboutnothing,1599\nnoisome,1,muchadoaboutnothing,1599\nweeds,1,muchadoaboutnothing,1599\nacknowledge,1,muchadoaboutnothing,1599\nrepeat,1,muchadoaboutnothing,1599\nliberty,1,muchadoaboutnothing,1599\nFriendship,1,muchadoaboutnothing,1599\nflouting,1,muchadoaboutnothing,1599\nconfession,1,muchadoaboutnothing,1599\ntrace,1,muchadoaboutnothing,1599\nsweetest,1,muchadoaboutnothing,1599\nprovided,1,muchadoaboutnothing,1599\ncombating,1,muchadoaboutnothing,1599\nexcuse,1,muchadoaboutnothing,1599\nacquaintance,1,muchadoaboutnothing,1599\nguardian,1,muchadoaboutnothing,1599\ngovernor,1,muchadoaboutnothing,1599\ncity,1,muchadoaboutnothing,1599\ndealer,1,muchadoaboutnothing,1599\napparitions,1,muchadoaboutnothing,1599\nmidnight,1,muchadoaboutnothing,1599\nUnder,1,muchadoaboutnothing,1599\ngrudging,1,muchadoaboutnothing,1599\narm,1,muchadoaboutnothing,1599\nrefused,1,muchadoaboutnothing,1599\nabhor,1,muchadoaboutnothing,1599\nyawn,1,muchadoaboutnothing,1599\nhawk,1,muchadoaboutnothing,1599\nskirmish,1,muchadoaboutnothing,1599\ntrothed,1,muchadoaboutnothing,1599\n'Light,1,muchadoaboutnothing,1599\nDeserve,1,muchadoaboutnothing,1599\npair,1,muchadoaboutnothing,1599\nreturn'd,1,muchadoaboutnothing,1599\nspit,1,muchadoaboutnothing,1599\nfellows',1,muchadoaboutnothing,1599\noutrage,1,muchadoaboutnothing,1599\ntemporize,1,muchadoaboutnothing,1599\nforswore,1,muchadoaboutnothing,1599\nwalked,1,muchadoaboutnothing,1599\nprofound,1,muchadoaboutnothing,1599\nevenly,1,muchadoaboutnothing,1599\nforsworn,1,muchadoaboutnothing,1599\nexquisite,1,muchadoaboutnothing,1599\nheretic,1,muchadoaboutnothing,1599\ndrizzles,1,muchadoaboutnothing,1599\ngreyhound's,1,muchadoaboutnothing,1599\nCham's,1,muchadoaboutnothing,1599\nbosom,1,muchadoaboutnothing,1599\nalive,1,muchadoaboutnothing,1599\nenjoin,1,muchadoaboutnothing,1599\nputs,1,muchadoaboutnothing,1599\nsupposition,1,muchadoaboutnothing,1599\nrings,1,muchadoaboutnothing,1599\nyielded,1,muchadoaboutnothing,1599\nawe,1,muchadoaboutnothing,1599\nchastity,1,muchadoaboutnothing,1599\nHymen,1,muchadoaboutnothing,1599\nmoan,1,muchadoaboutnothing,1599\nduke's,1,muchadoaboutnothing,1599\nprepared,1,muchadoaboutnothing,1599\nathwart,1,muchadoaboutnothing,1599\ntestimony,1,muchadoaboutnothing,1599\nrenowned,1,muchadoaboutnothing,1599\npush,1,muchadoaboutnothing,1599\nforcible,1,muchadoaboutnothing,1599\nscarcely,1,muchadoaboutnothing,1599\npikes,1,muchadoaboutnothing,1599\nnearly,1,muchadoaboutnothing,1599\ncovertly,1,muchadoaboutnothing,1599\nApproaching,1,muchadoaboutnothing,1599\narmour,1,muchadoaboutnothing,1599\nterm,1,muchadoaboutnothing,1599\noverborne,1,muchadoaboutnothing,1599\nfurnish,1,muchadoaboutnothing,1599\nunbruised,1,muchadoaboutnothing,1599\ninquire,1,muchadoaboutnothing,1599\nitched,1,muchadoaboutnothing,1599\nundone,1,muchadoaboutnothing,1599\ndeadly,1,muchadoaboutnothing,1599\nsequel,1,muchadoaboutnothing,1599\nfee,1,muchadoaboutnothing,1599\nhits,1,muchadoaboutnothing,1599\nfed,1,muchadoaboutnothing,1599\nslightest,1,muchadoaboutnothing,1599\ntouch,1,muchadoaboutnothing,1599\narras,1,muchadoaboutnothing,1599\nwashed,1,muchadoaboutnothing,1599\nAte,1,muchadoaboutnothing,1599\nenemies,1,muchadoaboutnothing,1599\nsanctuary,1,muchadoaboutnothing,1599\nnet,1,muchadoaboutnothing,1599\npleasant'st,1,muchadoaboutnothing,1599\nfoundation,1,muchadoaboutnothing,1599\nContent,1,muchadoaboutnothing,1599\nhoneysuckles,1,muchadoaboutnothing,1599\nintemperate,1,muchadoaboutnothing,1599\nenjoy,1,muchadoaboutnothing,1599\nwillingly,1,muchadoaboutnothing,1599\nguess,1,muchadoaboutnothing,1599\nmonging,1,muchadoaboutnothing,1599\nhaving,1,muchadoaboutnothing,1599\nroot,1,muchadoaboutnothing,1599\nleaf,1,muchadoaboutnothing,1599\nheight,1,muchadoaboutnothing,1599\nwitch,1,muchadoaboutnothing,1599\nShould,1,muchadoaboutnothing,1599\nrequited,1,muchadoaboutnothing,1599\nGeorge,1,muchadoaboutnothing,1599\nwheels,1,muchadoaboutnothing,1599\nnotable,1,muchadoaboutnothing,1599\nfar,1,muchadoaboutnothing,1599\nroof,1,muchadoaboutnothing,1599\nComes,1,muchadoaboutnothing,1599\ncodpiece,1,muchadoaboutnothing,1599\noften,1,muchadoaboutnothing,1599\nactive,1,muchadoaboutnothing,1599\ntediousness,1,muchadoaboutnothing,1599\njustice,1,muchadoaboutnothing,1599\nrender'd,1,muchadoaboutnothing,1599\nKill,1,muchadoaboutnothing,1599\ntried,1,muchadoaboutnothing,1599\nproofs,1,muchadoaboutnothing,1599\ncondemn'd,1,muchadoaboutnothing,1599\nPhoebus,1,muchadoaboutnothing,1599\nintermingle,1,muchadoaboutnothing,1599\ngarments,1,muchadoaboutnothing,1599\nForbid,1,muchadoaboutnothing,1599\nDogberry,1,muchadoaboutnothing,1599\nmask'd,1,muchadoaboutnothing,1599\nequal,1,muchadoaboutnothing,1599\nbreeds,1,muchadoaboutnothing,1599\nmoved,1,muchadoaboutnothing,1599\nhelping,1,muchadoaboutnothing,1599\nballad,1,muchadoaboutnothing,1599\ncarried,1,muchadoaboutnothing,1599\nerrors,1,muchadoaboutnothing,1599\nCanst,1,muchadoaboutnothing,1599\ngriefs,1,muchadoaboutnothing,1599\nshouldst,1,muchadoaboutnothing,1599\napprehension,1,muchadoaboutnothing,1599\nrose,1,muchadoaboutnothing,1599\nguiltless,1,muchadoaboutnothing,1599\nburglary,1,muchadoaboutnothing,1599\nsilence,1,muchadoaboutnothing,1599\nantique,1,muchadoaboutnothing,1599\nclamour,1,muchadoaboutnothing,1599\nbrowner,1,muchadoaboutnothing,1599\nbuild,1,muchadoaboutnothing,1599\nBait,1,muchadoaboutnothing,1599\nwater,1,muchadoaboutnothing,1599\n'Certain,1,muchadoaboutnothing,1599\nsmallest,1,muchadoaboutnothing,1599\nunknown,1,muchadoaboutnothing,1599\nsending,1,muchadoaboutnothing,1599\ntrencherman,1,muchadoaboutnothing,1599\napply,1,muchadoaboutnothing,1599\nTaming,1,muchadoaboutnothing,1599\nVenus,1,muchadoaboutnothing,1599\nComparisons,1,muchadoaboutnothing,1599\napparell'd,1,muchadoaboutnothing,1599\nlack'd,1,muchadoaboutnothing,1599\nwaked,1,muchadoaboutnothing,1599\nproceed,1,muchadoaboutnothing,1599\nlevell'd,1,muchadoaboutnothing,1599\nhire,1,muchadoaboutnothing,1599\nscroll,1,muchadoaboutnothing,1599\ncapon,1,muchadoaboutnothing,1599\nperturbation,1,muchadoaboutnothing,1599\nbeats,1,muchadoaboutnothing,1599\nclog,1,muchadoaboutnothing,1599\nproudly,1,muchadoaboutnothing,1599\nHearken,1,muchadoaboutnothing,1599\nforsaken,1,muchadoaboutnothing,1599\nbelow,1,muchadoaboutnothing,1599\nWas't,1,muchadoaboutnothing,1599\nexceedingly,1,muchadoaboutnothing,1599\ntickling,1,muchadoaboutnothing,1599\nbottle,1,muchadoaboutnothing,1599\ndisgraced,1,muchadoaboutnothing,1599\ndaily,1,muchadoaboutnothing,1599\nbears,1,muchadoaboutnothing,1599\nspread,1,muchadoaboutnothing,1599\ndrunkard,1,muchadoaboutnothing,1599\nbravely,1,muchadoaboutnothing,1599\nJew,1,muchadoaboutnothing,1599\ndissembler,1,muchadoaboutnothing,1599\ncandle,1,muchadoaboutnothing,1599\ntenor,1,muchadoaboutnothing,1599\nentirely,1,muchadoaboutnothing,1599\nValues,1,muchadoaboutnothing,1599\nmisuse,1,muchadoaboutnothing,1599\nspecify,1,muchadoaboutnothing,1599\nbroader,1,muchadoaboutnothing,1599\nplaintiffs,1,muchadoaboutnothing,1599\ndisloyal,1,muchadoaboutnothing,1599\nSoft,1,muchadoaboutnothing,1599\nstrike,1,muchadoaboutnothing,1599\nrougher,1,muchadoaboutnothing,1599\nexcused,1,muchadoaboutnothing,1599\nphilosopher,1,muchadoaboutnothing,1599\newe,1,muchadoaboutnothing,1599\nwolves,1,muchadoaboutnothing,1599\nadmit,1,muchadoaboutnothing,1599\ncharm,1,muchadoaboutnothing,1599\nPigmies,1,muchadoaboutnothing,1599\naffections,1,muchadoaboutnothing,1599\npicker,1,muchadoaboutnothing,1599\nequally,1,muchadoaboutnothing,1599\nquickly,1,muchadoaboutnothing,1599\nwithdrawn,1,muchadoaboutnothing,1599\novermastered,1,muchadoaboutnothing,1599\nlantern,1,muchadoaboutnothing,1599\noverheard'st,1,muchadoaboutnothing,1599\nexcommunication,1,muchadoaboutnothing,1599\nevermore,1,muchadoaboutnothing,1599\nKissing,1,muchadoaboutnothing,1599\npreceptial,1,muchadoaboutnothing,1599\nplaces,1,muchadoaboutnothing,1599\nseveral,1,muchadoaboutnothing,1599\nscarf,1,muchadoaboutnothing,1599\nquarter,1,muchadoaboutnothing,1599\ntapestry,1,muchadoaboutnothing,1599\ncloak,1,muchadoaboutnothing,1599\nPhilemon's,1,muchadoaboutnothing,1599\nvanquish'd,1,muchadoaboutnothing,1599\npack'd,1,muchadoaboutnothing,1599\nensuing,1,muchadoaboutnothing,1599\nrecount,1,muchadoaboutnothing,1599\ndiscontent,1,muchadoaboutnothing,1599\neffect,1,muchadoaboutnothing,1599\nfragments,1,muchadoaboutnothing,1599\nscab,1,muchadoaboutnothing,1599\nsinn'd,1,muchadoaboutnothing,1599\ngraceful,1,muchadoaboutnothing,1599\nlodge,1,muchadoaboutnothing,1599\ndaylight,1,muchadoaboutnothing,1599\nmortal,1,muchadoaboutnothing,1599\nlikewise,1,muchadoaboutnothing,1599\nleaves,1,muchadoaboutnothing,1599\nmile,1,muchadoaboutnothing,1599\nmild,1,muchadoaboutnothing,1599\nexchange,1,muchadoaboutnothing,1599\ncharitable,1,muchadoaboutnothing,1599\nSong,1,muchadoaboutnothing,1599\n'In,1,muchadoaboutnothing,1599\nvarlet,1,muchadoaboutnothing,1599\nAir,1,muchadoaboutnothing,1599\napproached,1,muchadoaboutnothing,1599\nteeth,1,muchadoaboutnothing,1599\nnon,1,muchadoaboutnothing,1599\nsoldiers,1,muchadoaboutnothing,1599\nqualities,1,muchadoaboutnothing,1599\nprize,1,muchadoaboutnothing,1599\n'Right,1,muchadoaboutnothing,1599\npanders,1,muchadoaboutnothing,1599\nFebruary,1,muchadoaboutnothing,1599\nman',1,muchadoaboutnothing,1599\nconfidence,1,muchadoaboutnothing,1599\nblush,1,muchadoaboutnothing,1599\narcher,1,muchadoaboutnothing,1599\nbeggar,1,muchadoaboutnothing,1599\nchain,1,muchadoaboutnothing,1599\nbloods,1,muchadoaboutnothing,1599\nUncle,1,muchadoaboutnothing,1599\nCould,1,muchadoaboutnothing,1599\ncourage,1,muchadoaboutnothing,1599\nFather,1,muchadoaboutnothing,1599\nskin,1,muchadoaboutnothing,1599\nmass,1,muchadoaboutnothing,1599\nbidden,1,muchadoaboutnothing,1599\nprofitless,1,muchadoaboutnothing,1599\nonward,1,muchadoaboutnothing,1599\nmarl,1,muchadoaboutnothing,1599\ncoward,1,muchadoaboutnothing,1599\nincite,1,muchadoaboutnothing,1599\nproudest,1,muchadoaboutnothing,1599\npersuaded,1,muchadoaboutnothing,1599\ninjuries,1,muchadoaboutnothing,1599\nthick,1,muchadoaboutnothing,1599\nslave,1,muchadoaboutnothing,1599\ncoverture,1,muchadoaboutnothing,1599\nConverting,1,muchadoaboutnothing,1599\nmisled,1,muchadoaboutnothing,1599\nsensuality,1,muchadoaboutnothing,1599\nquench,1,muchadoaboutnothing,1599\nmedicinable,1,muchadoaboutnothing,1599\nlet's,1,muchadoaboutnothing,1599\nFlorence,1,muchadoaboutnothing,1599\nchick,1,muchadoaboutnothing,1599\nbelieving,1,muchadoaboutnothing,1599\nbrains,1,muchadoaboutnothing,1599\ninch,1,muchadoaboutnothing,1599\ngreatest,1,muchadoaboutnothing,1599\npainful,1,muchadoaboutnothing,1599\nmournful,1,muchadoaboutnothing,1599\nempoison,1,muchadoaboutnothing,1599\ntransshape,1,muchadoaboutnothing,1599\nwives',1,muchadoaboutnothing,1599\nbeside,1,muchadoaboutnothing,1599\nCounty,1,muchadoaboutnothing,1599\nAntonio,1,muchadoaboutnothing,1599\ninfect,1,muchadoaboutnothing,1599\nlapwing,1,muchadoaboutnothing,1599\nshoulder,1,muchadoaboutnothing,1599\nmountain,1,muchadoaboutnothing,1599\namazement,1,muchadoaboutnothing,1599\nbrethren,1,muchadoaboutnothing,1599\nfree,1,muchadoaboutnothing,1599\ndischarge,1,muchadoaboutnothing,1599\nnaught,1,muchadoaboutnothing,1599\nbleat,1,muchadoaboutnothing,1599\ncarving,1,muchadoaboutnothing,1599\nimpiety,1,muchadoaboutnothing,1599\nChoose,1,muchadoaboutnothing,1599\nstake,1,muchadoaboutnothing,1599\nstairs,1,muchadoaboutnothing,1599\ndivision,1,muchadoaboutnothing,1599\nmistress',1,muchadoaboutnothing,1599\nPerhaps,1,muchadoaboutnothing,1599\nsayest,1,muchadoaboutnothing,1599\nQuestion,1,muchadoaboutnothing,1599\ndesires,1,muchadoaboutnothing,1599\nsedges,1,muchadoaboutnothing,1599\ndisguises,1,muchadoaboutnothing,1599\nancientry,1,muchadoaboutnothing,1599\nmaintain'd,1,muchadoaboutnothing,1599\no'clock,1,muchadoaboutnothing,1599\nstain,1,muchadoaboutnothing,1599\nlouder,1,muchadoaboutnothing,1599\noverjoyed,1,muchadoaboutnothing,1599\npossession,1,muchadoaboutnothing,1599\nwoodcock,1,muchadoaboutnothing,1599\nexpedient,1,muchadoaboutnothing,1599\nhorribly,1,muchadoaboutnothing,1599\nfray,1,muchadoaboutnothing,1599\nproves,1,muchadoaboutnothing,1599\nbehalf,1,muchadoaboutnothing,1599\nhowled,1,muchadoaboutnothing,1599\ncuriously,1,muchadoaboutnothing,1599\nknavery,1,muchadoaboutnothing,1599\ntrembling,1,muchadoaboutnothing,1599\ndoctor,1,muchadoaboutnothing,1599\naffairs,1,muchadoaboutnothing,1599\nagate,1,muchadoaboutnothing,1599\nwoodbine,1,muchadoaboutnothing,1599\n'for,1,muchadoaboutnothing,1599\nfinder,1,muchadoaboutnothing,1599\ngrave,1,muchadoaboutnothing,1599\nbettered,1,muchadoaboutnothing,1599\nrabato,1,muchadoaboutnothing,1599\nexample,1,muchadoaboutnothing,1599\nrepenting,1,muchadoaboutnothing,1599\nsalt,1,muchadoaboutnothing,1599\nemployer,1,muchadoaboutnothing,1599\ntoday,1,muchadoaboutnothing,1599\nformer,1,muchadoaboutnothing,1599\ntwelvemonth,1,muchadoaboutnothing,1599\ndishonour,1,muchadoaboutnothing,1599\ndisloyalty,1,muchadoaboutnothing,1599\nfits,1,muchadoaboutnothing,1599\npurchaseth,1,muchadoaboutnothing,1599\nboarded,1,muchadoaboutnothing,1599\nWhisper,1,muchadoaboutnothing,1599\nwin,1,muchadoaboutnothing,1599\noft,1,muchadoaboutnothing,1599\npersons,1,muchadoaboutnothing,1599\ncertainer,1,muchadoaboutnothing,1599\nmessage,1,muchadoaboutnothing,1599\nredemption,1,muchadoaboutnothing,1599\n'Twill,1,muchadoaboutnothing,1599\ncourt,1,muchadoaboutnothing,1599\ncure,1,muchadoaboutnothing,1599\nbread,1,muchadoaboutnothing,1599\nMoreover,1,muchadoaboutnothing,1599\nbegan'st,1,muchadoaboutnothing,1599\nthird,1,muchadoaboutnothing,1599\nsmock,1,muchadoaboutnothing,1599\nwaggling,1,muchadoaboutnothing,1599\nTuesday,1,muchadoaboutnothing,1599\nTales,1,muchadoaboutnothing,1599\nmanifest,1,muchadoaboutnothing,1599\nstabs,1,muchadoaboutnothing,1599\nDead,1,muchadoaboutnothing,1599\ndishonesty,1,muchadoaboutnothing,1599\noak,1,muchadoaboutnothing,1599\nGrieved,1,muchadoaboutnothing,1599\nDear,1,muchadoaboutnothing,1599\nAntipodes,1,muchadoaboutnothing,1599\ncheapen,1,muchadoaboutnothing,1599\ncuts,1,muchadoaboutnothing,1599\nVenice,1,muchadoaboutnothing,1599\nhearers,1,muchadoaboutnothing,1599\ndiffer,1,muchadoaboutnothing,1599\nremains,1,muchadoaboutnothing,1599\nmasks,1,muchadoaboutnothing,1599\narbour,1,muchadoaboutnothing,1599\nunconfirmed,1,muchadoaboutnothing,1599\nbeliest,1,muchadoaboutnothing,1599\ntorture,1,muchadoaboutnothing,1599\npatiently,1,muchadoaboutnothing,1599\nthwarting,1,muchadoaboutnothing,1599\nThine,1,muchadoaboutnothing,1599\ninvincible,1,muchadoaboutnothing,1599\nCharm,1,muchadoaboutnothing,1599\ncomparison,1,muchadoaboutnothing,1599\ndecreed,1,muchadoaboutnothing,1599\ndust,1,muchadoaboutnothing,1599\n'True,1,muchadoaboutnothing,1599\noars,1,muchadoaboutnothing,1599\nBoys,1,muchadoaboutnothing,1599\nrise,1,muchadoaboutnothing,1599\nmisprision,1,muchadoaboutnothing,1599\nnuptial,1,muchadoaboutnothing,1599\nimportant,1,muchadoaboutnothing,1599\nintent,1,muchadoaboutnothing,1599\noath,1,muchadoaboutnothing,1599\nprint,1,muchadoaboutnothing,1599\nrite,1,muchadoaboutnothing,1599\nwag,1,muchadoaboutnothing,1599\nintend,1,muchadoaboutnothing,1599\nprompting,1,muchadoaboutnothing,1599\ngirdle,1,muchadoaboutnothing,1599\narrow,1,muchadoaboutnothing,1599\nwanton,1,muchadoaboutnothing,1599\nresistance,1,muchadoaboutnothing,1599\ndying,1,muchadoaboutnothing,1599\nbullets,1,muchadoaboutnothing,1599\nends,1,muchadoaboutnothing,1599\ntolerable,1,muchadoaboutnothing,1599\nbasted,1,muchadoaboutnothing,1599\nPrinces,1,muchadoaboutnothing,1599\nprice,1,muchadoaboutnothing,1599\nMass,1,muchadoaboutnothing,1599\nspectacles,1,muchadoaboutnothing,1599\nbearded,1,muchadoaboutnothing,1599\ncoming,1,muchadoaboutnothing,1599\nclod,1,muchadoaboutnothing,1599\nstayed,1,muchadoaboutnothing,1599\nprohibit,1,muchadoaboutnothing,1599\nMonsieur,1,muchadoaboutnothing,1599\nfestival,1,muchadoaboutnothing,1599\nenforced,1,muchadoaboutnothing,1599\n'by,1,muchadoaboutnothing,1599\ncurses,1,muchadoaboutnothing,1599\nGives,1,muchadoaboutnothing,1599\nangle,1,muchadoaboutnothing,1599\nfamiliar,1,muchadoaboutnothing,1599\nHercules',1,muchadoaboutnothing,1599\nunmitigated,1,muchadoaboutnothing,1599\nbreadth,1,muchadoaboutnothing,1599\nfaces,1,muchadoaboutnothing,1599\ndreamt,1,muchadoaboutnothing,1599\nmettle,1,muchadoaboutnothing,1599\nseize,1,muchadoaboutnothing,1599\nthankfulness,1,muchadoaboutnothing,1599\nearthquake,1,muchadoaboutnothing,1599\nBid,1,muchadoaboutnothing,1599\ntakes,1,muchadoaboutnothing,1599\nfaced,1,muchadoaboutnothing,1599\ntaker,1,muchadoaboutnothing,1599\nfallen,1,muchadoaboutnothing,1599\ntaken,1,muchadoaboutnothing,1599\nuntowardly,1,muchadoaboutnothing,1599\nanticly,1,muchadoaboutnothing,1599\nexclamation,1,muchadoaboutnothing,1599\nearthly,1,muchadoaboutnothing,1599\nrotten,1,muchadoaboutnothing,1599\ndesertless,1,muchadoaboutnothing,1599\ncharged,1,muchadoaboutnothing,1599\nfife,1,muchadoaboutnothing,1599\nclapped,1,muchadoaboutnothing,1599\nMisprising,1,muchadoaboutnothing,1599\nanger,1,muchadoaboutnothing,1599\nweeping,1,muchadoaboutnothing,1599\nkilling,1,muchadoaboutnothing,1599\ndrovier,1,muchadoaboutnothing,1599\nclapper,1,muchadoaboutnothing,1599\nlechery,1,muchadoaboutnothing,1599\nknight,1,muchadoaboutnothing,1599\nbitterness,1,muchadoaboutnothing,1599\nNiece,1,muchadoaboutnothing,1599\nrain,1,muchadoaboutnothing,1599\n'lady',1,muchadoaboutnothing,1599\nMaintain'd,1,muchadoaboutnothing,1599\ndetermined,1,muchadoaboutnothing,1599\nstuffing,1,muchadoaboutnothing,1599\ndrops,1,muchadoaboutnothing,1599\nharvest,1,muchadoaboutnothing,1599\nwooer,1,muchadoaboutnothing,1599\nwaste,1,muchadoaboutnothing,1599\nfox,1,muchadoaboutnothing,1599\nope,1,muchadoaboutnothing,1599\nwrong'd,1,muchadoaboutnothing,1599\nfollowers,1,muchadoaboutnothing,1599\ncrotchets,1,muchadoaboutnothing,1599\nsatire,1,muchadoaboutnothing,1599\nShow,1,muchadoaboutnothing,1599\nuntruths,1,muchadoaboutnothing,1599\ngrieve,1,muchadoaboutnothing,1599\nhunger,1,muchadoaboutnothing,1599\ncried,1,muchadoaboutnothing,1599\nevil,1,muchadoaboutnothing,1599\n'fool,1,muchadoaboutnothing,1599\ninwardly,1,muchadoaboutnothing,1599\nMake,1,muchadoaboutnothing,1599\ndurst,1,muchadoaboutnothing,1599\nbruise,1,muchadoaboutnothing,1599\nground,1,muchadoaboutnothing,1599\nminds,1,muchadoaboutnothing,1599\nTime,1,muchadoaboutnothing,1599\ncloth,1,muchadoaboutnothing,1599\nhighly,1,muchadoaboutnothing,1599\nweapons,1,muchadoaboutnothing,1599\nmiracle,1,muchadoaboutnothing,1599\nTill,1,muchadoaboutnothing,1599\nThat's,1,muchadoaboutnothing,1599\norb,1,muchadoaboutnothing,1599\ngrant,1,muchadoaboutnothing,1599\nrack,1,muchadoaboutnothing,1599\nappertain,1,muchadoaboutnothing,1599\nProposing,1,muchadoaboutnothing,1599\nkinsman,1,muchadoaboutnothing,1599\ncared,1,muchadoaboutnothing,1599\nmisfortune,1,muchadoaboutnothing,1599\nRuns,1,muchadoaboutnothing,1599\nwounds,1,muchadoaboutnothing,1599\ndearness,1,muchadoaboutnothing,1599\nendeared,1,muchadoaboutnothing,1599\nworn,1,muchadoaboutnothing,1599\n'he,1,muchadoaboutnothing,1599\nwickedness,1,muchadoaboutnothing,1599\nprolong'd,1,muchadoaboutnothing,1599\npassing,1,muchadoaboutnothing,1599\ndancing,1,muchadoaboutnothing,1599\nfie,1,muchadoaboutnothing,1599\nBel's,1,muchadoaboutnothing,1599\nunjust,1,muchadoaboutnothing,1599\nendeavour,1,muchadoaboutnothing,1599\nMark,1,muchadoaboutnothing,1599\nscabbard,1,muchadoaboutnothing,1599\nwishing,1,muchadoaboutnothing,1599\nhowsoever,1,muchadoaboutnothing,1599\nribs,1,muchadoaboutnothing,1599\nengaged,1,muchadoaboutnothing,1599\nBenedict,1,muchadoaboutnothing,1599\nclaw,1,muchadoaboutnothing,1599\ndamnation,1,muchadoaboutnothing,1599\nfolly,1,muchadoaboutnothing,1599\nreprove,1,muchadoaboutnothing,1599\nmanaging,1,muchadoaboutnothing,1599\nhose,1,muchadoaboutnothing,1599\ndotard,1,muchadoaboutnothing,1599\nbark,1,muchadoaboutnothing,1599\nduties,1,muchadoaboutnothing,1599\nFare,1,muchadoaboutnothing,1599\n'Get,1,muchadoaboutnothing,1599\nPrester,1,muchadoaboutnothing,1599\npocket,1,muchadoaboutnothing,1599\nostentation,1,muchadoaboutnothing,1599\nimmodest,1,muchadoaboutnothing,1599\nkill'st,1,muchadoaboutnothing,1599\nwealth,1,muchadoaboutnothing,1599\nbrushes,1,muchadoaboutnothing,1599\nvex,1,muchadoaboutnothing,1599\nReading,1,muchadoaboutnothing,1599\nprospect,1,muchadoaboutnothing,1599\nperceive,1,muchadoaboutnothing,1599\nWorm,1,muchadoaboutnothing,1599\nchiefly,1,muchadoaboutnothing,1599\nwrongfully,1,muchadoaboutnothing,1599\nbate,1,muchadoaboutnothing,1599\nsalvation,1,muchadoaboutnothing,1599\nFoul,1,muchadoaboutnothing,1599\nreproach,1,muchadoaboutnothing,1599\nbase,1,muchadoaboutnothing,1599\nstrikes,1,muchadoaboutnothing,1599\npublic,1,muchadoaboutnothing,1599\nmaker's,1,muchadoaboutnothing,1599\nthanked,1,muchadoaboutnothing,1599\nCut,1,muchadoaboutnothing,1599\nqualify,1,muchadoaboutnothing,1599\ndialogue,1,muchadoaboutnothing,1599\nextenuate,1,muchadoaboutnothing,1599\nslanderous,1,muchadoaboutnothing,1599\njade's,1,muchadoaboutnothing,1599\nappointed,1,muchadoaboutnothing,1599\nband,1,muchadoaboutnothing,1599\nafeared,1,muchadoaboutnothing,1599\nfriendship,1,muchadoaboutnothing,1599\nhook,1,muchadoaboutnothing,1599\nContaining,1,muchadoaboutnothing,1599\ntame,1,muchadoaboutnothing,1599\ntabour,1,muchadoaboutnothing,1599\nnames,1,muchadoaboutnothing,1599\nLeander,1,muchadoaboutnothing,1599\naccustomed,1,muchadoaboutnothing,1599\ndaw,1,muchadoaboutnothing,1599\n'Then',1,muchadoaboutnothing,1599\nnamed,1,muchadoaboutnothing,1599\nsongs,1,muchadoaboutnothing,1599\nevidence,1,muchadoaboutnothing,1599\nsentences,1,muchadoaboutnothing,1599\nWelcome,1,muchadoaboutnothing,1599\nauthor,1,muchadoaboutnothing,1599\ngallant,1,muchadoaboutnothing,1599\necstasy,1,muchadoaboutnothing,1599\nache,1,muchadoaboutnothing,1599\nlap,1,muchadoaboutnothing,1599\naccusers,1,muchadoaboutnothing,1599\ntall,1,muchadoaboutnothing,1599\ncoat,1,muchadoaboutnothing,1599\n'Against,1,muchadoaboutnothing,1599\nFate,1,muchadoaboutnothing,1599\nfalsely,1,muchadoaboutnothing,1599\nconversed,1,muchadoaboutnothing,1599\ngentlemen,1,muchadoaboutnothing,1599\nCarduus,1,muchadoaboutnothing,1599\nappearance,1,muchadoaboutnothing,1599\ncue,1,muchadoaboutnothing,1599\nstroke,1,muchadoaboutnothing,1599\nTrust,1,muchadoaboutnothing,1599\ncarry,1,muchadoaboutnothing,1599\nentering,1,muchadoaboutnothing,1599\nalms,1,muchadoaboutnothing,1599\nbeshrew,1,muchadoaboutnothing,1599\nholds,1,muchadoaboutnothing,1599\nshore,1,muchadoaboutnothing,1599\ngetting,1,muchadoaboutnothing,1599\naccident,1,muchadoaboutnothing,1599\nchapel,1,muchadoaboutnothing,1599\nlieutenant's,1,muchadoaboutnothing,1599\nquit,1,muchadoaboutnothing,1599\nsparkling,1,muchadoaboutnothing,1599\nclean,1,muchadoaboutnothing,1599\nHired,1,muchadoaboutnothing,1599\nWash'd,1,muchadoaboutnothing,1599\ndozen,1,muchadoaboutnothing,1599\ngreen,1,muchadoaboutnothing,1599\nadvertisement,1,muchadoaboutnothing,1599\nvirginity,1,muchadoaboutnothing,1599\nMilan's,1,muchadoaboutnothing,1599\nconcluded,1,muchadoaboutnothing,1599\ndishes,1,muchadoaboutnothing,1599\nLives,1,muchadoaboutnothing,1599\ndevour,1,muchadoaboutnothing,1599\nfollows,1,muchadoaboutnothing,1599\nconstrain,1,muchadoaboutnothing,1599\nAlthough,1,muchadoaboutnothing,1599\nranges,1,muchadoaboutnothing,1599\ncarve,1,muchadoaboutnothing,1599\nvictual,1,muchadoaboutnothing,1599\nforsooth,1,muchadoaboutnothing,1599\nflood,1,muchadoaboutnothing,1599\nliver,1,muchadoaboutnothing,1599\nstreets,1,muchadoaboutnothing,1599\ncommonwealth,1,muchadoaboutnothing,1599\ndefeat,1,muchadoaboutnothing,1599\nhorses,1,muchadoaboutnothing,1599\nwriting,1,muchadoaboutnothing,1599\nWherefore,1,muchadoaboutnothing,1599\nsubscribed,1,muchadoaboutnothing,1599\nwrestle,1,muchadoaboutnothing,1599\nbookful,1,muchadoaboutnothing,1599\nconjure,1,muchadoaboutnothing,1599\ntask,1,muchadoaboutnothing,1599\nblazon,1,muchadoaboutnothing,1599\nfitted,1,muchadoaboutnothing,1599\ncalf's,1,muchadoaboutnothing,1599\nprayers,1,muchadoaboutnothing,1599\ncleft,1,muchadoaboutnothing,1599\nunmeet,1,muchadoaboutnothing,1599\nthronging,1,muchadoaboutnothing,1599\nusurer's,1,muchadoaboutnothing,1599\nbeset,1,muchadoaboutnothing,1599\ninterest,1,muchadoaboutnothing,1599\nhairs,1,muchadoaboutnothing,1599\nperfumer,1,muchadoaboutnothing,1599\nfourteen,1,muchadoaboutnothing,1599\ncopy,1,muchadoaboutnothing,1599\ncool,1,muchadoaboutnothing,1599\ncook,1,muchadoaboutnothing,1599\ndisdained,1,muchadoaboutnothing,1599\nlying,1,muchadoaboutnothing,1599\ndishonoured,1,muchadoaboutnothing,1599\nundergoes,1,muchadoaboutnothing,1599\ninward,1,muchadoaboutnothing,1599\nrearward,1,muchadoaboutnothing,1599\nadieu,1,muchadoaboutnothing,1599\nneedful,1,muchadoaboutnothing,1599\npublish,1,muchadoaboutnothing,1599\nreckoning,1,muchadoaboutnothing,1599\ncrept,1,muchadoaboutnothing,1599\nmassy,1,muchadoaboutnothing,1599\nplaintiff,1,muchadoaboutnothing,1599\nknowest,1,muchadoaboutnothing,1599\ncog,1,muchadoaboutnothing,1599\nJuly,1,muchadoaboutnothing,1599\nmarvellous,1,muchadoaboutnothing,1599\nlook'd,1,muchadoaboutnothing,1599\ncoy,1,muchadoaboutnothing,1599\ndiscretion,1,muchadoaboutnothing,1599\narrows,1,muchadoaboutnothing,1599\ncourtesy,1,muchadoaboutnothing,1599\nunderstood,1,muchadoaboutnothing,1599\nundertakes,1,muchadoaboutnothing,1599\nburned,1,muchadoaboutnothing,1599\nMine,1,muchadoaboutnothing,1599\nfellows,1,muchadoaboutnothing,1599\nDian,1,muchadoaboutnothing,1599\ndebated,1,muchadoaboutnothing,1599\nBelieve,1,muchadoaboutnothing,1599\nestimation,1,muchadoaboutnothing,1599\nSpeaking,1,muchadoaboutnothing,1599\nLackbeard,1,muchadoaboutnothing,1599\nfoining,1,muchadoaboutnothing,1599\nthrust,1,muchadoaboutnothing,1599\nGentlemen,1,muchadoaboutnothing,1599\ndeprave,1,muchadoaboutnothing,1599\nmistrusted,1,muchadoaboutnothing,1599\ntree,1,muchadoaboutnothing,1599\ndownward,1,muchadoaboutnothing,1599\nnights,1,muchadoaboutnothing,1599\nmusician,1,muchadoaboutnothing,1599\ncushion,1,muchadoaboutnothing,1599\nrhyming,1,muchadoaboutnothing,1599\nrevelling,1,muchadoaboutnothing,1599\nkindred,1,muchadoaboutnothing,1599\nUse,1,muchadoaboutnothing,1599\nexcellency,1,muchadoaboutnothing,1599\nblushing,1,muchadoaboutnothing,1599\napartment,1,muchadoaboutnothing,1599\nraven,1,muchadoaboutnothing,1599\nexcellence,1,muchadoaboutnothing,1599\nClose,1,muchadoaboutnothing,1599\nCry,1,muchadoaboutnothing,1599\nsell,1,muchadoaboutnothing,1599\nJust,1,muchadoaboutnothing,1599\naloud,1,muchadoaboutnothing,1599\n'God,1,muchadoaboutnothing,1599\nMeantime,1,muchadoaboutnothing,1599\nblank,1,muchadoaboutnothing,1599\npost,1,muchadoaboutnothing,1599\navoids,1,muchadoaboutnothing,1599\nGraves,1,muchadoaboutnothing,1599\ngloss,1,muchadoaboutnothing,1599\nleg,1,muchadoaboutnothing,1599\nprison,1,muchadoaboutnothing,1599\nNeither,1,muchadoaboutnothing,1599\nnakedness,1,muchadoaboutnothing,1599\nreputed,1,muchadoaboutnothing,1599\nsimpleness,1,muchadoaboutnothing,1599\ngrieved,1,muchadoaboutnothing,1599\ndeceive,1,muchadoaboutnothing,1599\ncarriage,1,muchadoaboutnothing,1599\nherald,1,muchadoaboutnothing,1599\nregards,1,muchadoaboutnothing,1599\nsickness,1,muchadoaboutnothing,1599\nFashion'd,1,muchadoaboutnothing,1599\nbaes,1,muchadoaboutnothing,1599\nleagues,1,muchadoaboutnothing,1599\nsmirch'd,1,muchadoaboutnothing,1599\nconvert,1,muchadoaboutnothing,1599\nMarch,1,muchadoaboutnothing,1599\nafterward,1,muchadoaboutnothing,1599\ndetractions,1,muchadoaboutnothing,1599\nMistress,1,muchadoaboutnothing,1599\ncouple,1,muchadoaboutnothing,1599\nbestow,1,muchadoaboutnothing,1599\nsincerely,1,muchadoaboutnothing,1599\nmaster's,1,muchadoaboutnothing,1599\nchances,1,muchadoaboutnothing,1599\nSmother,1,muchadoaboutnothing,1599\nunkissed,1,muchadoaboutnothing,1599\nnature's,1,muchadoaboutnothing,1599\nscorned,1,muchadoaboutnothing,1599\ntrow,1,muchadoaboutnothing,1599\nthread,1,muchadoaboutnothing,1599\nbrow,1,muchadoaboutnothing,1599\nchoke,1,muchadoaboutnothing,1599\nendured,1,muchadoaboutnothing,1599\nAdam's,1,muchadoaboutnothing,1599\nRightly,1,muchadoaboutnothing,1599\ntipped,1,muchadoaboutnothing,1599\nrancour,1,muchadoaboutnothing,1599\nsuitor,1,muchadoaboutnothing,1599\ndaff,1,muchadoaboutnothing,1599\nServe,1,muchadoaboutnothing,1599\nimagination,1,muchadoaboutnothing,1599\nmidway,1,muchadoaboutnothing,1599\nbarr'd,1,muchadoaboutnothing,1599\nencounters,1,muchadoaboutnothing,1599\nmaintained,1,muchadoaboutnothing,1599\nguts,1,muchadoaboutnothing,1599\nHowever,1,muchadoaboutnothing,1599\n'scape,1,muchadoaboutnothing,1599\nSaturn,1,muchadoaboutnothing,1599\nbalance,1,muchadoaboutnothing,1599\nrheum,1,muchadoaboutnothing,1599\nsufficiency,1,muchadoaboutnothing,1599\nunclasp,1,muchadoaboutnothing,1599\nFive,1,muchadoaboutnothing,1599\nforced,1,muchadoaboutnothing,1599\nreward,1,muchadoaboutnothing,1599\nenamoured,1,muchadoaboutnothing,1599\nbegins,1,muchadoaboutnothing,1599\ncontemptible,1,muchadoaboutnothing,1599\nreclusive,1,muchadoaboutnothing,1599\ndoing,1,muchadoaboutnothing,1599\ntrusted,1,muchadoaboutnothing,1599\nsadness,1,muchadoaboutnothing,1599\ndealing,1,muchadoaboutnothing,1599\nimpious,1,muchadoaboutnothing,1599\nchosen,1,muchadoaboutnothing,1599\nswimmer,1,muchadoaboutnothing,1599\nheaded,1,muchadoaboutnothing,1599\ntrim,1,muchadoaboutnothing,1599\ncensured,1,muchadoaboutnothing,1599\ntreacherous,1,muchadoaboutnothing,1599\nAlways,1,muchadoaboutnothing,1599\nupward,1,muchadoaboutnothing,1599\nangling,1,muchadoaboutnothing,1599\nmortifying,1,muchadoaboutnothing,1599\nfatherly,1,muchadoaboutnothing,1599\nemployment,1,muchadoaboutnothing,1599\nstreet,1,muchadoaboutnothing,1599\nverified,1,muchadoaboutnothing,1599\nOtecake,1,muchadoaboutnothing,1599\ncomforter,1,muchadoaboutnothing,1599\nwhip,1,muchadoaboutnothing,1599\nmerciful,1,muchadoaboutnothing,1599\nlimit,1,muchadoaboutnothing,1599\nanimals,1,muchadoaboutnothing,1599\nMen,1,muchadoaboutnothing,1599\nravished,1,muchadoaboutnothing,1599\nbiting,1,muchadoaboutnothing,1599\ncounty,1,muchadoaboutnothing,1599\nNeighbours,1,muchadoaboutnothing,1599\nbethink,1,muchadoaboutnothing,1599\ncrafty,1,muchadoaboutnothing,1599\nhastily,1,muchadoaboutnothing,1599\npernicious,1,muchadoaboutnothing,1599\nquarrels,1,muchadoaboutnothing,1599\nreeky,1,muchadoaboutnothing,1599\nwithdraw,1,muchadoaboutnothing,1599\nharmony,1,muchadoaboutnothing,1599\nliege,1,muchadoaboutnothing,1599\nhenceforth,1,muchadoaboutnothing,1599\nlion,1,muchadoaboutnothing,1599\nparlor,1,muchadoaboutnothing,1599\non't,1,muchadoaboutnothing,1599\nlustihood,1,muchadoaboutnothing,1599\nWithdraws,1,muchadoaboutnothing,1599\nmourning,1,muchadoaboutnothing,1599\nmannerly,1,muchadoaboutnothing,1599\ntelling,1,muchadoaboutnothing,1599\nGerman,1,muchadoaboutnothing,1599\nthereupon,1,muchadoaboutnothing,1599\nsometimes,1,muchadoaboutnothing,1599\ntattling,1,muchadoaboutnothing,1599\njesting,1,muchadoaboutnothing,1599\nrespects,1,muchadoaboutnothing,1599\ncarpet,1,muchadoaboutnothing,1599\nfraud,1,muchadoaboutnothing,1599\nunseasonable,1,muchadoaboutnothing,1599\ngull,1,muchadoaboutnothing,1599\npolitic,1,muchadoaboutnothing,1599\nYonder's,1,muchadoaboutnothing,1599\nperfectest,1,muchadoaboutnothing,1599\n'forehand,1,muchadoaboutnothing,1599\nMaintain,1,muchadoaboutnothing,1599\nlate,1,muchadoaboutnothing,1599\nSings,1,muchadoaboutnothing,1599\nlimed,1,muchadoaboutnothing,1599\ntruant,1,muchadoaboutnothing,1599\nsleeping,1,muchadoaboutnothing,1599\ndishonour'd,1,muchadoaboutnothing,1599\ntartly,1,muchadoaboutnothing,1599\northography,1,muchadoaboutnothing,1599\nseemed,1,muchadoaboutnothing,1599\nDone,1,muchadoaboutnothing,1599\nseverally,1,muchadoaboutnothing,1599\nrecompense,1,muchadoaboutnothing,1599\nWithout,1,muchadoaboutnothing,1599\ngets,1,muchadoaboutnothing,1599\nRound,1,muchadoaboutnothing,1599\nrevenged,1,muchadoaboutnothing,1599\ndivinity,1,muchadoaboutnothing,1599\nsuited,1,muchadoaboutnothing,1599\nsquire,1,muchadoaboutnothing,1599\nprouder,1,muchadoaboutnothing,1599\nappetite,1,muchadoaboutnothing,1599\nmisgovernment,1,muchadoaboutnothing,1599\nnature,1,muchadoaboutnothing,1599\nleafy,1,muchadoaboutnothing,1599\nbooks,1,muchadoaboutnothing,1599\nripen'd,1,muchadoaboutnothing,1599\nwooers,1,muchadoaboutnothing,1599\nmoe,1,muchadoaboutnothing,1599\ncontent,1,muchadoaboutnothing,1599\ndecerns,1,muchadoaboutnothing,1599\neftest,1,muchadoaboutnothing,1599\nconflict,1,muchadoaboutnothing,1599\ndwells,1,muchadoaboutnothing,1599\ntry,1,muchadoaboutnothing,1599\nshrewd,1,muchadoaboutnothing,1599\nsilent,1,muchadoaboutnothing,1599\nassurance,1,muchadoaboutnothing,1599\nTherein,1,muchadoaboutnothing,1599\nwitty,1,muchadoaboutnothing,1599\nharpy,1,muchadoaboutnothing,1599\nwidow,1,muchadoaboutnothing,1599\nnumbers,1,muchadoaboutnothing,1599\ncover'd,1,muchadoaboutnothing,1599\nearned,1,muchadoaboutnothing,1599\nGallants,1,muchadoaboutnothing,1599\nYou'll,1,muchadoaboutnothing,1599\nbrag,1,muchadoaboutnothing,1599\nGoodman,1,muchadoaboutnothing,1599\ninvited,1,muchadoaboutnothing,1599\nconfirm,1,muchadoaboutnothing,1599\nrespect,1,muchadoaboutnothing,1599\nasleep,1,muchadoaboutnothing,1599\nattend,1,muchadoaboutnothing,1599\nprincely,1,muchadoaboutnothing,1599\ndark,1,muchadoaboutnothing,1599\nAbility,1,muchadoaboutnothing,1599\nlosses,1,muchadoaboutnothing,1599\nperchance,1,muchadoaboutnothing,1599\noverwhelm'd,1,muchadoaboutnothing,1599\nsudden,1,muchadoaboutnothing,1599\nRich,1,muchadoaboutnothing,1599\npent,1,muchadoaboutnothing,1599\nobservations,1,muchadoaboutnothing,1599\ntop,1,muchadoaboutnothing,1599\nanother's,1,muchadoaboutnothing,1599\ndry,1,muchadoaboutnothing,1599\ntransgressed,1,muchadoaboutnothing,1599\nbred,1,muchadoaboutnothing,1599\ntroths,1,muchadoaboutnothing,1599\nmum,1,muchadoaboutnothing,1599\n'hem,1,muchadoaboutnothing,1599\ninstantly,1,muchadoaboutnothing,1599\nDRAMATIS,1,muchadoaboutnothing,1599\nslew,1,muchadoaboutnothing,1599\nUntil,1,muchadoaboutnothing,1599\nsuccess,1,muchadoaboutnothing,1599\nleap'd,1,muchadoaboutnothing,1599\nshift,1,muchadoaboutnothing,1599\nshake,1,muchadoaboutnothing,1599\ntis,1,muchadoaboutnothing,1599\ntip,1,muchadoaboutnothing,1599\nvacant,1,muchadoaboutnothing,1599\nlineament,1,muchadoaboutnothing,1599\nburden,1,muchadoaboutnothing,1599\narmed,1,muchadoaboutnothing,1599\nleans,1,muchadoaboutnothing,1599\nToo,1,muchadoaboutnothing,1599\nduller,1,muchadoaboutnothing,1599\npamper'd,1,muchadoaboutnothing,1599\nTake,1,muchadoaboutnothing,1599\nexperimental,1,muchadoaboutnothing,1599\nrecord,1,muchadoaboutnothing,1599\nobtain,1,muchadoaboutnothing,1599\ncozened,1,muchadoaboutnothing,1599\nencountered,1,muchadoaboutnothing,1599\nschoolboy,1,muchadoaboutnothing,1599\nking,1,muchadoaboutnothing,1599\nquarreling,1,muchadoaboutnothing,1599\nprivate,1,muchadoaboutnothing,1599\n'That,1,muchadoaboutnothing,1599\nFair,1,muchadoaboutnothing,1599\ncommand,1,muchadoaboutnothing,1599\nterminations,1,muchadoaboutnothing,1599\njealousy,1,muchadoaboutnothing,1599\nendowed,1,muchadoaboutnothing,1599\ngloves,1,muchadoaboutnothing,1599\nawake,1,muchadoaboutnothing,1599\ntainted,1,muchadoaboutnothing,1599\nSaying,1,muchadoaboutnothing,1599\neyelids,1,muchadoaboutnothing,1599\namaze,1,muchadoaboutnothing,1599\ndedicates,1,muchadoaboutnothing,1599\ncatechising,1,muchadoaboutnothing,1599\nremorse,1,muchadoaboutnothing,1599\njustly,1,muchadoaboutnothing,1599\nrepair,1,muchadoaboutnothing,1599\nstables,1,muchadoaboutnothing,1599\nmarked,1,muchadoaboutnothing,1599\nflattering,1,muchadoaboutnothing,1599\naccordant,1,muchadoaboutnothing,1599\noaths,1,muchadoaboutnothing,1599\nbids,1,muchadoaboutnothing,1599\nhangman,1,muchadoaboutnothing,1599\nFame,1,muchadoaboutnothing,1599\nHector,1,muchadoaboutnothing,1599\nqueasy,1,muchadoaboutnothing,1599\ncontaminated,1,muchadoaboutnothing,1599\nPharaoh's,1,muchadoaboutnothing,1599\nshortened,1,muchadoaboutnothing,1599\nmarket,1,muchadoaboutnothing,1599\ndissembly,1,muchadoaboutnothing,1599\nprey'd,1,muchadoaboutnothing,1599\nfamily's,1,muchadoaboutnothing,1599\ndirection,1,muchadoaboutnothing,1599\ncrown,1,muchadoaboutnothing,1599\nundertake,1,muchadoaboutnothing,1599\nBrief,1,muchadoaboutnothing,1599\nFlorentine,1,muchadoaboutnothing,1599\nmornings,1,muchadoaboutnothing,1599\nepithet,1,muchadoaboutnothing,1599\nHugh,1,muchadoaboutnothing,1599\nconjecture,1,muchadoaboutnothing,1599\nendings,1,muchadoaboutnothing,1599\nsharp,1,muchadoaboutnothing,1599\nseek'st,1,muchadoaboutnothing,1599\nDisloyal,1,muchadoaboutnothing,1599\nscratched,1,muchadoaboutnothing,1599\nfortunes,1,muchadoaboutnothing,1599\nhedge,1,muchadoaboutnothing,1599\nsway,1,muchadoaboutnothing,1599\nexeunt,1,muchadoaboutnothing,1599\nlargely,1,muchadoaboutnothing,1599\nsummer,1,muchadoaboutnothing,1599\nanswered,2,muchadoaboutnothing,1599\nevent,2,muchadoaboutnothing,1599\nFrancis,2,muchadoaboutnothing,1599\nwillow,2,muchadoaboutnothing,1599\ngrey,2,muchadoaboutnothing,1599\nc,2,muchadoaboutnothing,1599\ndays,2,muchadoaboutnothing,1599\nreputation,2,muchadoaboutnothing,1599\nAdam,2,muchadoaboutnothing,1599\nleisure,2,muchadoaboutnothing,1599\ninfamy,2,muchadoaboutnothing,1599\nspeech,2,muchadoaboutnothing,1599\nbusiness,2,muchadoaboutnothing,1599\nAlas,2,muchadoaboutnothing,1599\nespecially,2,muchadoaboutnothing,1599\nneighbours,2,muchadoaboutnothing,1599\nFie,2,muchadoaboutnothing,1599\nvane,2,muchadoaboutnothing,1599\nhasty,2,muchadoaboutnothing,1599\nbones,2,muchadoaboutnothing,1599\npreparation,2,muchadoaboutnothing,1599\nWilt,2,muchadoaboutnothing,1599\neasily,2,muchadoaboutnothing,1599\nbucklers,2,muchadoaboutnothing,1599\ndrowsy,2,muchadoaboutnothing,1599\nsingle,2,muchadoaboutnothing,1599\nexceeds,2,muchadoaboutnothing,1599\njig,2,muchadoaboutnothing,1599\ngroan,2,muchadoaboutnothing,1599\nprisoner,2,muchadoaboutnothing,1599\nsight,2,muchadoaboutnothing,1599\noffer,2,muchadoaboutnothing,1599\nwhipped,2,muchadoaboutnothing,1599\ncommodity,2,muchadoaboutnothing,1599\niron,2,muchadoaboutnothing,1599\ncontrary,2,muchadoaboutnothing,1599\nUpon,2,muchadoaboutnothing,1599\nbower,2,muchadoaboutnothing,1599\nspare,2,muchadoaboutnothing,1599\nplague,2,muchadoaboutnothing,1599\nseven,2,muchadoaboutnothing,1599\ndisdain,2,muchadoaboutnothing,1599\nbirth,2,muchadoaboutnothing,1599\nconscience,2,muchadoaboutnothing,1599\ndrive,2,muchadoaboutnothing,1599\nworking,2,muchadoaboutnothing,1599\nWhose,2,muchadoaboutnothing,1599\nbearing,2,muchadoaboutnothing,1599\nassembly,2,muchadoaboutnothing,1599\ncorner,2,muchadoaboutnothing,1599\nafterwards,2,muchadoaboutnothing,1599\nsubjects,2,muchadoaboutnothing,1599\nMuch,2,muchadoaboutnothing,1599\nhonestly,2,muchadoaboutnothing,1599\ncheer,2,muchadoaboutnothing,1599\nOnly,2,muchadoaboutnothing,1599\ncalf,2,muchadoaboutnothing,1599\nTarry,2,muchadoaboutnothing,1599\nfools,2,muchadoaboutnothing,1599\ncomplexion,2,muchadoaboutnothing,1599\nsoft,2,muchadoaboutnothing,1599\nblack,2,muchadoaboutnothing,1599\nshames,2,muchadoaboutnothing,1599\n'twere,2,muchadoaboutnothing,1599\nkey,2,muchadoaboutnothing,1599\nbode,2,muchadoaboutnothing,1599\nsaying,2,muchadoaboutnothing,1599\nsea,2,muchadoaboutnothing,1599\nyield,2,muchadoaboutnothing,1599\nWas,2,muchadoaboutnothing,1599\nwhere's,2,muchadoaboutnothing,1599\n'I,2,muchadoaboutnothing,1599\n's,2,muchadoaboutnothing,1599\nwithin,2,muchadoaboutnothing,1599\ndisgrace,2,muchadoaboutnothing,1599\nstudy,2,muchadoaboutnothing,1599\nMusic,2,muchadoaboutnothing,1599\nbetwixt,2,muchadoaboutnothing,1599\nsends,2,muchadoaboutnothing,1599\ndaughter's,2,muchadoaboutnothing,1599\nread,2,muchadoaboutnothing,1599\nvile,2,muchadoaboutnothing,1599\nmerit,2,muchadoaboutnothing,1599\nmocks,2,muchadoaboutnothing,1599\nfight,2,muchadoaboutnothing,1599\ndanced,2,muchadoaboutnothing,1599\nbrain,2,muchadoaboutnothing,1599\npiece,2,muchadoaboutnothing,1599\ncivil,2,muchadoaboutnothing,1599\nkill'd,2,muchadoaboutnothing,1599\ncomely,2,muchadoaboutnothing,1599\nruns,2,muchadoaboutnothing,1599\nwhite,2,muchadoaboutnothing,1599\nsun,2,muchadoaboutnothing,1599\npromise,2,muchadoaboutnothing,1599\nservice,2,muchadoaboutnothing,1599\nblind,2,muchadoaboutnothing,1599\nbehaviors,2,muchadoaboutnothing,1599\ntax,2,muchadoaboutnothing,1599\nrarely,2,muchadoaboutnothing,1599\ntitle,2,muchadoaboutnothing,1599\nmirth,2,muchadoaboutnothing,1599\nlength,2,muchadoaboutnothing,1599\nknees,2,muchadoaboutnothing,1599\nentertained,2,muchadoaboutnothing,1599\nsteal,2,muchadoaboutnothing,1599\nheaven,2,muchadoaboutnothing,1599\nseest,2,muchadoaboutnothing,1599\naccuse,2,muchadoaboutnothing,1599\ndispleasure,2,muchadoaboutnothing,1599\nstop,2,muchadoaboutnothing,1599\nvoice,2,muchadoaboutnothing,1599\nwash,2,muchadoaboutnothing,1599\nLadies,2,muchadoaboutnothing,1599\nwits,2,muchadoaboutnothing,1599\npraised,2,muchadoaboutnothing,1599\nfairest,2,muchadoaboutnothing,1599\nFaith,2,muchadoaboutnothing,1599\nI',2,muchadoaboutnothing,1599\nobtained,2,muchadoaboutnothing,1599\ndeformed,2,muchadoaboutnothing,1599\nHis,2,muchadoaboutnothing,1599\nWhiles,2,muchadoaboutnothing,1599\nknowing,2,muchadoaboutnothing,1599\namong,2,muchadoaboutnothing,1599\nblown,2,muchadoaboutnothing,1599\nsmile,2,muchadoaboutnothing,1599\ncareer,2,muchadoaboutnothing,1599\nNature,2,muchadoaboutnothing,1599\nsensible,2,muchadoaboutnothing,1599\nmusty,2,muchadoaboutnothing,1599\ncreature,2,muchadoaboutnothing,1599\npleached,2,muchadoaboutnothing,1599\ndenied,2,muchadoaboutnothing,1599\nbrings,2,muchadoaboutnothing,1599\npen,2,muchadoaboutnothing,1599\nforce,2,muchadoaboutnothing,1599\nHer,2,muchadoaboutnothing,1599\nhid,2,muchadoaboutnothing,1599\nwisdom,2,muchadoaboutnothing,1599\nmedicine,2,muchadoaboutnothing,1599\npleasure,2,muchadoaboutnothing,1599\nbless,2,muchadoaboutnothing,1599\nstrangely,2,muchadoaboutnothing,1599\nquick,2,muchadoaboutnothing,1599\npast,2,muchadoaboutnothing,1599\ncommendation,2,muchadoaboutnothing,1599\nchanges,2,muchadoaboutnothing,1599\nyourselves,2,muchadoaboutnothing,1599\nquiet,2,muchadoaboutnothing,1599\nobey,2,muchadoaboutnothing,1599\nAntony,2,muchadoaboutnothing,1599\ngowns,2,muchadoaboutnothing,1599\ngold,2,muchadoaboutnothing,1599\nweep,2,muchadoaboutnothing,1599\nsits,2,muchadoaboutnothing,1599\nDance,2,muchadoaboutnothing,1599\nbend,2,muchadoaboutnothing,1599\n'the,2,muchadoaboutnothing,1599\nbell,2,muchadoaboutnothing,1599\nburn,2,muchadoaboutnothing,1599\ncat,2,muchadoaboutnothing,1599\ncap,2,muchadoaboutnothing,1599\nSurely,2,muchadoaboutnothing,1599\nlearned,2,muchadoaboutnothing,1599\nSave,2,muchadoaboutnothing,1599\nbent,2,muchadoaboutnothing,1599\npeople,2,muchadoaboutnothing,1599\ncourtesies,2,muchadoaboutnothing,1599\nembassage,2,muchadoaboutnothing,1599\ntwice,2,muchadoaboutnothing,1599\neaten,2,muchadoaboutnothing,1599\ngaol,2,muchadoaboutnothing,1599\ntedious,2,muchadoaboutnothing,1599\nbuy,2,muchadoaboutnothing,1599\ngown,2,muchadoaboutnothing,1599\nstronger,2,muchadoaboutnothing,1599\nsink,2,muchadoaboutnothing,1599\npaint,2,muchadoaboutnothing,1599\ngrace's,2,muchadoaboutnothing,1599\nthirdly,2,muchadoaboutnothing,1599\nBoth,2,muchadoaboutnothing,1599\nbull's,2,muchadoaboutnothing,1599\nstory,2,muchadoaboutnothing,1599\ninstant,2,muchadoaboutnothing,1599\npromised,2,muchadoaboutnothing,1599\nimage,2,muchadoaboutnothing,1599\nconfess,2,muchadoaboutnothing,1599\naim,2,muchadoaboutnothing,1599\nfaster,2,muchadoaboutnothing,1599\nstood,2,muchadoaboutnothing,1599\nlegs,2,muchadoaboutnothing,1599\ngentlewomen,2,muchadoaboutnothing,1599\ndeal,2,muchadoaboutnothing,1599\nCousins,2,muchadoaboutnothing,1599\nvictory,2,muchadoaboutnothing,1599\nlent,2,muchadoaboutnothing,1599\nplayed,2,muchadoaboutnothing,1599\nlaughing,2,muchadoaboutnothing,1599\nby'r,2,muchadoaboutnothing,1599\nmanner,2,muchadoaboutnothing,1599\nah,2,muchadoaboutnothing,1599\nforget,2,muchadoaboutnothing,1599\nthyself,2,muchadoaboutnothing,1599\ndoor,2,muchadoaboutnothing,1599\nfeast,2,muchadoaboutnothing,1599\nrailed,2,muchadoaboutnothing,1599\nmonth,2,muchadoaboutnothing,1599\naccount,2,muchadoaboutnothing,1599\nMyself,2,muchadoaboutnothing,1599\nhadst,2,muchadoaboutnothing,1599\nho,2,muchadoaboutnothing,1599\nspent,2,muchadoaboutnothing,1599\ngoverned,2,muchadoaboutnothing,1599\nlose,2,muchadoaboutnothing,1599\ntwenty,2,muchadoaboutnothing,1599\ngreater,2,muchadoaboutnothing,1599\nacquaint,2,muchadoaboutnothing,1599\npure,2,muchadoaboutnothing,1599\nBecause,2,muchadoaboutnothing,1599\nstring,2,muchadoaboutnothing,1599\nround,2,muchadoaboutnothing,1599\nfowl,2,muchadoaboutnothing,1599\nshallow,2,muchadoaboutnothing,1599\npale,2,muchadoaboutnothing,1599\nintended,2,muchadoaboutnothing,1599\nfour,2,muchadoaboutnothing,1599\nthinkest,2,muchadoaboutnothing,1599\nwisdoms,2,muchadoaboutnothing,1599\npluck,2,muchadoaboutnothing,1599\nexpect,2,muchadoaboutnothing,1599\ncommendable,2,muchadoaboutnothing,1599\nweeps,2,muchadoaboutnothing,1599\nform,2,muchadoaboutnothing,1599\ndelight,2,muchadoaboutnothing,1599\npaid,2,muchadoaboutnothing,1599\nape,2,muchadoaboutnothing,1599\napt,2,muchadoaboutnothing,1599\nhate,2,muchadoaboutnothing,1599\nexcept,2,muchadoaboutnothing,1599\nbraggarts,2,muchadoaboutnothing,1599\nfood,2,muchadoaboutnothing,1599\nrevenge,2,muchadoaboutnothing,1599\nerror,2,muchadoaboutnothing,1599\njester,2,muchadoaboutnothing,1599\nchance,2,muchadoaboutnothing,1599\nScotch,2,muchadoaboutnothing,1599\nbanquet,2,muchadoaboutnothing,1599\ndisdainful,2,muchadoaboutnothing,1599\ntrick,2,muchadoaboutnothing,1599\nthistle,2,muchadoaboutnothing,1599\nfew,2,muchadoaboutnothing,1599\nnaughty,2,muchadoaboutnothing,1599\nwooing,2,muchadoaboutnothing,1599\ntrial,2,muchadoaboutnothing,1599\nArt,2,muchadoaboutnothing,1599\ndelicate,2,muchadoaboutnothing,1599\noccasion,2,muchadoaboutnothing,1599\nMadam,2,muchadoaboutnothing,1599\nkeeps,2,muchadoaboutnothing,1599\nheavier,2,muchadoaboutnothing,1599\nEuropa,2,muchadoaboutnothing,1599\nreport,2,muchadoaboutnothing,1599\nforehead,2,muchadoaboutnothing,1599\nclub,2,muchadoaboutnothing,1599\nmarks,2,muchadoaboutnothing,1599\nbeast,2,muchadoaboutnothing,1599\naction,2,muchadoaboutnothing,1599\nrestore,2,muchadoaboutnothing,1599\ndress,2,muchadoaboutnothing,1599\nPeace,2,muchadoaboutnothing,1599\nremedy,2,muchadoaboutnothing,1599\ntender,2,muchadoaboutnothing,1599\nblunt,2,muchadoaboutnothing,1599\nsirrah,2,muchadoaboutnothing,1599\nLove,2,muchadoaboutnothing,1599\nlikelihood,2,muchadoaboutnothing,1599\nwritten,2,muchadoaboutnothing,1599\nFrom,2,muchadoaboutnothing,1599\nborne,2,muchadoaboutnothing,1599\nalter,2,muchadoaboutnothing,1599\nMonday,2,muchadoaboutnothing,1599\norange,2,muchadoaboutnothing,1599\nfreely,2,muchadoaboutnothing,1599\nDoth,2,muchadoaboutnothing,1599\nprecious,2,muchadoaboutnothing,1599\nplaced,2,muchadoaboutnothing,1599\nmourn,2,muchadoaboutnothing,1599\nSee,2,muchadoaboutnothing,1599\nfantastical,2,muchadoaboutnothing,1599\nsinging,2,muchadoaboutnothing,1599\nstart,2,muchadoaboutnothing,1599\nconclusion,2,muchadoaboutnothing,1599\nknave,2,muchadoaboutnothing,1599\nhalting,2,muchadoaboutnothing,1599\ndidst,2,muchadoaboutnothing,1599\nHeavily,2,muchadoaboutnothing,1599\ncurtsy,2,muchadoaboutnothing,1599\nmark,2,muchadoaboutnothing,1599\nwon,2,muchadoaboutnothing,1599\ngates,2,muchadoaboutnothing,1599\nlabour,2,muchadoaboutnothing,1599\nfish,2,muchadoaboutnothing,1599\nfather's,2,muchadoaboutnothing,1599\nhypocrite,2,muchadoaboutnothing,1599\nuttered,2,muchadoaboutnothing,1599\nMade,2,muchadoaboutnothing,1599\nBeing,2,muchadoaboutnothing,1599\nletters,2,muchadoaboutnothing,1599\nexamined,2,muchadoaboutnothing,1599\nconverted,2,muchadoaboutnothing,1599\nwed,2,muchadoaboutnothing,1599\nsleeves,2,muchadoaboutnothing,1599\nComing,2,muchadoaboutnothing,1599\nclose,2,muchadoaboutnothing,1599\nsuspicion,2,muchadoaboutnothing,1599\nmaids,2,muchadoaboutnothing,1599\nopinion,2,muchadoaboutnothing,1599\nstalk,2,muchadoaboutnothing,1599\nknife's,2,muchadoaboutnothing,1599\nodd,2,muchadoaboutnothing,1599\n'No,2,muchadoaboutnothing,1599\nstale,2,muchadoaboutnothing,1599\npound,2,muchadoaboutnothing,1599\nneck,2,muchadoaboutnothing,1599\nblushes,2,muchadoaboutnothing,1599\nstyle,2,muchadoaboutnothing,1599\nslandered,2,muchadoaboutnothing,1599\nhearer,2,muchadoaboutnothing,1599\nUnmasking,2,muchadoaboutnothing,1599\nsonnet,2,muchadoaboutnothing,1599\ncoxcomb,2,muchadoaboutnothing,1599\nflight,2,muchadoaboutnothing,1599\ncertainly,2,muchadoaboutnothing,1599\nheigh,2,muchadoaboutnothing,1599\nliked,2,muchadoaboutnothing,1599\nThink,2,muchadoaboutnothing,1599\nwar,2,muchadoaboutnothing,1599\narmy,2,muchadoaboutnothing,1599\nstaff,2,muchadoaboutnothing,1599\nduty,2,muchadoaboutnothing,1599\nthemselves,2,muchadoaboutnothing,1599\nsufferance,2,muchadoaboutnothing,1599\nenraged,2,muchadoaboutnothing,1599\nrage,2,muchadoaboutnothing,1599\nassure,2,muchadoaboutnothing,1599\nuncle's,2,muchadoaboutnothing,1599\nbedfellow,2,muchadoaboutnothing,1599\nperadventure,2,muchadoaboutnothing,1599\nwont,2,muchadoaboutnothing,1599\nmightily,2,muchadoaboutnothing,1599\nrequite,2,muchadoaboutnothing,1599\nserved,2,muchadoaboutnothing,1599\nalley,2,muchadoaboutnothing,1599\nCupid's,2,muchadoaboutnothing,1599\nBalthasar,2,muchadoaboutnothing,1599\npoison,2,muchadoaboutnothing,1599\nangel,2,muchadoaboutnothing,1599\nlute,2,muchadoaboutnothing,1599\ndisposition,2,muchadoaboutnothing,1599\ndull,2,muchadoaboutnothing,1599\nnest,2,muchadoaboutnothing,1599\nyoke,2,muchadoaboutnothing,1599\nfarther,2,muchadoaboutnothing,1599\nwooes,2,muchadoaboutnothing,1599\nsober,2,muchadoaboutnothing,1599\nfail,2,muchadoaboutnothing,1599\nStrike,2,muchadoaboutnothing,1599\nminister,2,muchadoaboutnothing,1599\nwept,2,muchadoaboutnothing,1599\n'it,2,muchadoaboutnothing,1599\nmodesty,2,muchadoaboutnothing,1599\nBrother,2,muchadoaboutnothing,1599\nfame,2,muchadoaboutnothing,1599\nworm,2,muchadoaboutnothing,1599\ntune,2,muchadoaboutnothing,1599\nheavily,2,muchadoaboutnothing,1599\nclerk,2,muchadoaboutnothing,1599\nofficer,2,muchadoaboutnothing,1599\npleases,2,muchadoaboutnothing,1599\nne'er,2,muchadoaboutnothing,1599\nassume,2,muchadoaboutnothing,1599\nbarber's,2,muchadoaboutnothing,1599\nparticular,2,muchadoaboutnothing,1599\nbirds',2,muchadoaboutnothing,1599\npatient,2,muchadoaboutnothing,1599\nnoting,2,muchadoaboutnothing,1599\nbird,2,muchadoaboutnothing,1599\nlarge,2,muchadoaboutnothing,1599\nlaw,2,muchadoaboutnothing,1599\namiable,2,muchadoaboutnothing,1599\nexcepted,2,muchadoaboutnothing,1599\ngiven,2,muchadoaboutnothing,1599\ntorment,2,muchadoaboutnothing,1599\nwild,2,muchadoaboutnothing,1599\nshoot,2,muchadoaboutnothing,1599\ncreep,2,muchadoaboutnothing,1599\nswears,2,muchadoaboutnothing,1599\nprofessed,2,muchadoaboutnothing,1599\nholp,2,muchadoaboutnothing,1599\ngiddy,2,muchadoaboutnothing,1599\ncut,2,muchadoaboutnothing,1599\noyster,2,muchadoaboutnothing,1599\nassist,2,muchadoaboutnothing,1599\ntire,2,muchadoaboutnothing,1599\nstrong,2,muchadoaboutnothing,1599\nlives,2,muchadoaboutnothing,1599\ncounsels,2,muchadoaboutnothing,1599\nseal,2,muchadoaboutnothing,1599\nmasked,2,muchadoaboutnothing,1599\nalso,2,muchadoaboutnothing,1599\nlovely,2,muchadoaboutnothing,1599\nwaiting,2,muchadoaboutnothing,1599\npresence,2,muchadoaboutnothing,1599\ncoz,2,muchadoaboutnothing,1599\nrender,2,muchadoaboutnothing,1599\nsound,2,muchadoaboutnothing,1599\nTrue,2,muchadoaboutnothing,1599\nexpectation,2,muchadoaboutnothing,1599\narrant,2,muchadoaboutnothing,1599\nconfirm'd,2,muchadoaboutnothing,1599\nperson,2,muchadoaboutnothing,1599\ncongregation,2,muchadoaboutnothing,1599\navoid,2,muchadoaboutnothing,1599\nbriefly,2,muchadoaboutnothing,1599\nlovest,2,muchadoaboutnothing,1599\nhours,2,muchadoaboutnothing,1599\nentreat,2,muchadoaboutnothing,1599\nbait,2,muchadoaboutnothing,1599\nsouls,2,muchadoaboutnothing,1599\nself,2,muchadoaboutnothing,1599\ngods,2,muchadoaboutnothing,1599\noverheard,2,muchadoaboutnothing,1599\ncinque,2,muchadoaboutnothing,1599\nundo,2,muchadoaboutnothing,1599\nalas,2,muchadoaboutnothing,1599\ntalk'd,2,muchadoaboutnothing,1599\ncold,2,muchadoaboutnothing,1599\nnurse,2,muchadoaboutnothing,1599\nseason,2,muchadoaboutnothing,1599\nlastly,2,muchadoaboutnothing,1599\ncoil,2,muchadoaboutnothing,1599\nuntil,2,muchadoaboutnothing,1599\nTwo,2,muchadoaboutnothing,1599\neffects,2,muchadoaboutnothing,1599\nsleep,2,muchadoaboutnothing,1599\nevening,2,muchadoaboutnothing,1599\nnonny,2,muchadoaboutnothing,1599\nperjury,2,muchadoaboutnothing,1599\nleast,2,muchadoaboutnothing,1599\nwring,2,muchadoaboutnothing,1599\nlaughed,2,muchadoaboutnothing,1599\nAnother,2,muchadoaboutnothing,1599\nsister,2,muchadoaboutnothing,1599\nelbow,2,muchadoaboutnothing,1599\nSince,2,muchadoaboutnothing,1599\npleasant,2,muchadoaboutnothing,1599\nheartily,2,muchadoaboutnothing,1599\nAway,2,muchadoaboutnothing,1599\nMeg,2,muchadoaboutnothing,1599\npunishment,2,muchadoaboutnothing,1599\namorous,2,muchadoaboutnothing,1599\nwhiles,2,muchadoaboutnothing,1599\nflat,2,muchadoaboutnothing,1599\nPadua,2,muchadoaboutnothing,1599\nsilver,2,muchadoaboutnothing,1599\nlist,2,muchadoaboutnothing,1599\n'Father,2,muchadoaboutnothing,1599\nDisdain,2,muchadoaboutnothing,1599\ndefiled,2,muchadoaboutnothing,1599\nDeath,2,muchadoaboutnothing,1599\nsimple,2,muchadoaboutnothing,1599\nyesternight,2,muchadoaboutnothing,1599\nThy,2,muchadoaboutnothing,1599\nNote,2,muchadoaboutnothing,1599\ndiscovered,2,muchadoaboutnothing,1599\nweigh,2,muchadoaboutnothing,1599\nblessing,2,muchadoaboutnothing,1599\nlamb,2,muchadoaboutnothing,1599\nreverend,2,muchadoaboutnothing,1599\ndotage,2,muchadoaboutnothing,1599\nfence,2,muchadoaboutnothing,1599\nsmell,2,muchadoaboutnothing,1599\nTalk,2,muchadoaboutnothing,1599\npower,2,muchadoaboutnothing,1599\nlack,2,muchadoaboutnothing,1599\nenemy,2,muchadoaboutnothing,1599\nremembered,2,muchadoaboutnothing,1599\nthat,258,muchadoaboutnothing,1599\nforbid,3,muchadoaboutnothing,1599\nHear,3,muchadoaboutnothing,1599\nheir,3,muchadoaboutnothing,1599\n'Nay,3,muchadoaboutnothing,1599\nrod,3,muchadoaboutnothing,1599\nBenedick's,3,muchadoaboutnothing,1599\nhell,3,muchadoaboutnothing,1599\nHelp,3,muchadoaboutnothing,1599\nlooked,3,muchadoaboutnothing,1599\nwithal,3,muchadoaboutnothing,1599\nrun,3,muchadoaboutnothing,1599\ncase,3,muchadoaboutnothing,1599\nsong,3,muchadoaboutnothing,1599\nmercy,3,muchadoaboutnothing,1599\ngraces,3,muchadoaboutnothing,1599\nJove,3,muchadoaboutnothing,1599\npossessed,3,muchadoaboutnothing,1599\nrites,3,muchadoaboutnothing,1599\nwait,3,muchadoaboutnothing,1599\npartner,3,muchadoaboutnothing,1599\nfurther,3,muchadoaboutnothing,1599\nreturned,3,muchadoaboutnothing,1599\nbound,3,muchadoaboutnothing,1599\nbastard,3,muchadoaboutnothing,1599\ninvention,3,muchadoaboutnothing,1599\ndeceived,3,muchadoaboutnothing,1599\nwake,3,muchadoaboutnothing,1599\nWrite,3,muchadoaboutnothing,1599\n'twas,3,muchadoaboutnothing,1599\nembrace,3,muchadoaboutnothing,1599\nFarewell,3,muchadoaboutnothing,1599\ncause,3,muchadoaboutnothing,1599\nmother,3,muchadoaboutnothing,1599\nAttendants,3,muchadoaboutnothing,1599\nThese,3,muchadoaboutnothing,1599\nturn,3,muchadoaboutnothing,1599\ncousin's,3,muchadoaboutnothing,1599\nTush,3,muchadoaboutnothing,1599\nfault,3,muchadoaboutnothing,1599\nexceeding,3,muchadoaboutnothing,1599\nencounter,3,muchadoaboutnothing,1599\ncompanion,3,muchadoaboutnothing,1599\nfeel,3,muchadoaboutnothing,1599\nbeaten,3,muchadoaboutnothing,1599\nbrief,3,muchadoaboutnothing,1599\nsword,3,muchadoaboutnothing,1599\nwind,3,muchadoaboutnothing,1599\nsoldier,3,muchadoaboutnothing,1599\nflesh,3,muchadoaboutnothing,1599\nhence,3,muchadoaboutnothing,1599\nTroth,3,muchadoaboutnothing,1599\nmeat,3,muchadoaboutnothing,1599\nThere's,3,muchadoaboutnothing,1599\nwast,3,muchadoaboutnothing,1599\nbook,3,muchadoaboutnothing,1599\nframed,3,muchadoaboutnothing,1599\nparts,3,muchadoaboutnothing,1599\nbills,3,muchadoaboutnothing,1599\nwherefore,3,muchadoaboutnothing,1599\nhas,3,muchadoaboutnothing,1599\nhat,3,muchadoaboutnothing,1599\nWhat's,3,muchadoaboutnothing,1599\nutter,3,muchadoaboutnothing,1599\nAt,3,muchadoaboutnothing,1599\nsecretly,3,muchadoaboutnothing,1599\nStand,3,muchadoaboutnothing,1599\nstar,3,muchadoaboutnothing,1599\nSeacole,3,muchadoaboutnothing,1599\nplay,3,muchadoaboutnothing,1599\nears,3,muchadoaboutnothing,1599\nproud,3,muchadoaboutnothing,1599\nIs't,3,muchadoaboutnothing,1599\ngod,3,muchadoaboutnothing,1599\nbusy,3,muchadoaboutnothing,1599\ngoodly,3,muchadoaboutnothing,1599\nkindness,3,muchadoaboutnothing,1599\nmoreover,3,muchadoaboutnothing,1599\ndote,3,muchadoaboutnothing,1599\nSpeak,3,muchadoaboutnothing,1599\nblock,3,muchadoaboutnothing,1599\nturns,3,muchadoaboutnothing,1599\nha,3,muchadoaboutnothing,1599\nair,3,muchadoaboutnothing,1599\nyea,3,muchadoaboutnothing,1599\ngift,3,muchadoaboutnothing,1599\nsheet,3,muchadoaboutnothing,1599\nbeat,3,muchadoaboutnothing,1599\nhandsome,3,muchadoaboutnothing,1599\nnotes,3,muchadoaboutnothing,1599\nlady's,3,muchadoaboutnothing,1599\n'Here,3,muchadoaboutnothing,1599\nburied,3,muchadoaboutnothing,1599\napes,3,muchadoaboutnothing,1599\ngentlewoman,3,muchadoaboutnothing,1599\nMaster,3,muchadoaboutnothing,1599\ncommitted,3,muchadoaboutnothing,1599\naside,3,muchadoaboutnothing,1599\nchallenged,3,muchadoaboutnothing,1599\nsemblance,3,muchadoaboutnothing,1599\nlest,3,muchadoaboutnothing,1599\ndevil,3,muchadoaboutnothing,1599\nmen's,3,muchadoaboutnothing,1599\nhot,3,muchadoaboutnothing,1599\nharm,3,muchadoaboutnothing,1599\ntransgression,3,muchadoaboutnothing,1599\ndiscourse,3,muchadoaboutnothing,1599\nCall,3,muchadoaboutnothing,1599\nHercules,3,muchadoaboutnothing,1599\ncourse,3,muchadoaboutnothing,1599\nShe's,3,muchadoaboutnothing,1599\npresent,3,muchadoaboutnothing,1599\nmock,3,muchadoaboutnothing,1599\npoint,3,muchadoaboutnothing,1599\ndevise,3,muchadoaboutnothing,1599\npace,3,muchadoaboutnothing,1599\nmonument,3,muchadoaboutnothing,1599\nlock,3,muchadoaboutnothing,1599\nsecret,3,muchadoaboutnothing,1599\nsweetly,3,muchadoaboutnothing,1599\njudgment,3,muchadoaboutnothing,1599\nbroke,3,muchadoaboutnothing,1599\nprays,3,muchadoaboutnothing,1599\nchange,3,muchadoaboutnothing,1599\nlords,3,muchadoaboutnothing,1599\ngentle,3,muchadoaboutnothing,1599\nours,3,muchadoaboutnothing,1599\nyear,3,muchadoaboutnothing,1599\ngarden,3,muchadoaboutnothing,1599\nyou'll,3,muchadoaboutnothing,1599\nawhile,3,muchadoaboutnothing,1599\nPeter,3,muchadoaboutnothing,1599\ndream,3,muchadoaboutnothing,1599\nblot,3,muchadoaboutnothing,1599\nAny,3,muchadoaboutnothing,1599\nstate,3,muchadoaboutnothing,1599\nbecause,3,muchadoaboutnothing,1599\nneed,3,muchadoaboutnothing,1599\ntrouble,3,muchadoaboutnothing,1599\nones,3,muchadoaboutnothing,1599\nWere,3,muchadoaboutnothing,1599\nItaly,3,muchadoaboutnothing,1599\nproved,3,muchadoaboutnothing,1599\nwrongs,3,muchadoaboutnothing,1599\nfive,3,muchadoaboutnothing,1599\nsorrow,3,muchadoaboutnothing,1599\nhappiness,3,muchadoaboutnothing,1599\nducats,3,muchadoaboutnothing,1599\nSure,3,muchadoaboutnothing,1599\nsave,3,muchadoaboutnothing,1599\nearnest,3,muchadoaboutnothing,1599\nfound,3,muchadoaboutnothing,1599\npride,3,muchadoaboutnothing,1599\nvillains,3,muchadoaboutnothing,1599\ncaught,3,muchadoaboutnothing,1599\nowe,3,muchadoaboutnothing,1599\ndumb,3,muchadoaboutnothing,1599\nangry,3,muchadoaboutnothing,1599\nglad,3,muchadoaboutnothing,1599\nfain,3,muchadoaboutnothing,1599\nexamination,3,muchadoaboutnothing,1599\nfortune,3,muchadoaboutnothing,1599\nletter,3,muchadoaboutnothing,1599\ndiscover,3,muchadoaboutnothing,1599\nride,3,muchadoaboutnothing,1599\nhorn,3,muchadoaboutnothing,1599\nlordship,3,muchadoaboutnothing,1599\nmeddle,3,muchadoaboutnothing,1599\nwide,3,muchadoaboutnothing,1599\nbite,3,muchadoaboutnothing,1599\npartly,3,muchadoaboutnothing,1599\nmeaning,3,muchadoaboutnothing,1599\nkiss,3,muchadoaboutnothing,1599\nVery,3,muchadoaboutnothing,1599\nconstant,3,muchadoaboutnothing,1599\notherwise,3,muchadoaboutnothing,1599\njests,3,muchadoaboutnothing,1599\nsixth,3,muchadoaboutnothing,1599\nought,3,muchadoaboutnothing,1599\nhome,3,muchadoaboutnothing,1599\nNone,3,muchadoaboutnothing,1599\ndangerous,3,muchadoaboutnothing,1599\nvirtues,3,muchadoaboutnothing,1599\nslanders,3,muchadoaboutnothing,1599\ngives,3,muchadoaboutnothing,1599\nhearts,3,muchadoaboutnothing,1599\napproved,3,muchadoaboutnothing,1599\nVerges,3,muchadoaboutnothing,1599\nbachelor,3,muchadoaboutnothing,1599\ndrunk,3,muchadoaboutnothing,1599\nPrince,3,muchadoaboutnothing,1599\nwe'll,3,muchadoaboutnothing,1599\ntalking,3,muchadoaboutnothing,1599\nTruly,3,muchadoaboutnothing,1599\ndefend,3,muchadoaboutnothing,1599\ncow,3,muchadoaboutnothing,1599\nended,3,muchadoaboutnothing,1599\nmeantime,3,muchadoaboutnothing,1599\ncost,3,muchadoaboutnothing,1599\nwhom,3,muchadoaboutnothing,1599\nPray,3,muchadoaboutnothing,1599\nheels,3,muchadoaboutnothing,1599\nKnow,3,muchadoaboutnothing,1599\nsexton,3,muchadoaboutnothing,1599\nNothing,3,muchadoaboutnothing,1599\nhonesty,3,muchadoaboutnothing,1599\nspite,3,muchadoaboutnothing,1599\nglory,3,muchadoaboutnothing,1599\nmeeting,3,muchadoaboutnothing,1599\nnobody,3,muchadoaboutnothing,1599\nthoughts,3,muchadoaboutnothing,1599\nladies,3,muchadoaboutnothing,1599\nthinking,3,muchadoaboutnothing,1599\nthither,3,muchadoaboutnothing,1599\nsuspect,3,muchadoaboutnothing,1599\nWhere,3,muchadoaboutnothing,1599\nJohn's,3,muchadoaboutnothing,1599\ndog,3,muchadoaboutnothing,1599\nframe,3,muchadoaboutnothing,1599\nweight,3,muchadoaboutnothing,1599\nArragon,3,muchadoaboutnothing,1599\nBring,3,muchadoaboutnothing,1599\nden,3,muchadoaboutnothing,1599\nvilely,3,muchadoaboutnothing,1599\nmoral,4,muchadoaboutnothing,1599\ntimes,4,muchadoaboutnothing,1599\npity,4,muchadoaboutnothing,1599\nsuffer,4,muchadoaboutnothing,1599\ntook,4,muchadoaboutnothing,1599\ndouble,4,muchadoaboutnothing,1599\nwears,4,muchadoaboutnothing,1599\nhaste,4,muchadoaboutnothing,1599\nNever,4,muchadoaboutnothing,1599\ntears,4,muchadoaboutnothing,1599\nlaugh,4,muchadoaboutnothing,1599\nsort,4,muchadoaboutnothing,1599\nlies,4,muchadoaboutnothing,1599\nbecome,4,muchadoaboutnothing,1599\nknaves,4,muchadoaboutnothing,1599\npaper,4,muchadoaboutnothing,1599\nteach,4,muchadoaboutnothing,1599\nAside,4,muchadoaboutnothing,1599\nworth,4,muchadoaboutnothing,1599\nworse,4,muchadoaboutnothing,1599\nOut,4,muchadoaboutnothing,1599\nDeformed,4,muchadoaboutnothing,1599\nfalls,4,muchadoaboutnothing,1599\nreverence,4,muchadoaboutnothing,1599\nspeaking,4,muchadoaboutnothing,1599\nseems,4,muchadoaboutnothing,1599\nvisor,4,muchadoaboutnothing,1599\ndies,4,muchadoaboutnothing,1599\nwars,4,muchadoaboutnothing,1599\npretty,4,muchadoaboutnothing,1599\ncunning,4,muchadoaboutnothing,1599\nspoke,4,muchadoaboutnothing,1599\nside,4,muchadoaboutnothing,1599\nsign,4,muchadoaboutnothing,1599\noffend,4,muchadoaboutnothing,1599\nAn,4,muchadoaboutnothing,1599\nquarrel,4,muchadoaboutnothing,1599\nBe,4,muchadoaboutnothing,1599\nshortly,4,muchadoaboutnothing,1599\nunless,4,muchadoaboutnothing,1599\nsince,4,muchadoaboutnothing,1599\nbed,4,muchadoaboutnothing,1599\nmeant,4,muchadoaboutnothing,1599\nIV,4,muchadoaboutnothing,1599\ndinner,4,muchadoaboutnothing,1599\nsurely,4,muchadoaboutnothing,1599\nsport,4,muchadoaboutnothing,1599\nbest,4,muchadoaboutnothing,1599\nvaliant,4,muchadoaboutnothing,1599\nbull,4,muchadoaboutnothing,1599\nbelied,4,muchadoaboutnothing,1599\nbehind,4,muchadoaboutnothing,1599\nbestowed,4,muchadoaboutnothing,1599\ngot,4,muchadoaboutnothing,1599\nfavour,4,muchadoaboutnothing,1599\nstrain,4,muchadoaboutnothing,1599\no',4,muchadoaboutnothing,1599\nsometime,4,muchadoaboutnothing,1599\nimpediment,4,muchadoaboutnothing,1599\nlost,4,muchadoaboutnothing,1599\napparel,4,muchadoaboutnothing,1599\nready,4,muchadoaboutnothing,1599\nplace,4,muchadoaboutnothing,1599\nvalour,4,muchadoaboutnothing,1599\nhard,4,muchadoaboutnothing,1599\nplain,4,muchadoaboutnothing,1599\nforth,4,muchadoaboutnothing,1599\nmoney,4,muchadoaboutnothing,1599\nproper,4,muchadoaboutnothing,1599\nmaiden,4,muchadoaboutnothing,1599\nlead,4,muchadoaboutnothing,1599\nInto,4,muchadoaboutnothing,1599\nthrough,4,muchadoaboutnothing,1599\nnay,4,muchadoaboutnothing,1599\nmischief,4,muchadoaboutnothing,1599\nthinks,4,muchadoaboutnothing,1599\nBorachio,4,muchadoaboutnothing,1599\nTherefore,4,muchadoaboutnothing,1599\nhigh,4,muchadoaboutnothing,1599\nLook,4,muchadoaboutnothing,1599\nSome,4,muchadoaboutnothing,1599\nFriar,4,muchadoaboutnothing,1599\nalready,4,muchadoaboutnothing,1599\nreading,4,muchadoaboutnothing,1599\nwoe,4,muchadoaboutnothing,1599\naccusation,4,muchadoaboutnothing,1599\nliving,4,muchadoaboutnothing,1599\nstomach,4,muchadoaboutnothing,1599\nfetch,4,muchadoaboutnothing,1599\nbeseech,4,muchadoaboutnothing,1599\nallegiance,4,muchadoaboutnothing,1599\ngarland,4,muchadoaboutnothing,1599\nforward,4,muchadoaboutnothing,1599\nnext,4,muchadoaboutnothing,1599\nhappy,4,muchadoaboutnothing,1599\nhair,4,muchadoaboutnothing,1599\nconference,4,muchadoaboutnothing,1599\ntoothache,4,muchadoaboutnothing,1599\ncover,4,muchadoaboutnothing,1599\nEven,4,muchadoaboutnothing,1599\ndoublet,4,muchadoaboutnothing,1599\nstolen,4,muchadoaboutnothing,1599\nmethinks,4,muchadoaboutnothing,1599\nrich,4,muchadoaboutnothing,1599\nwooed,4,muchadoaboutnothing,1599\nBenedictus,4,muchadoaboutnothing,1599\nta'en,4,muchadoaboutnothing,1599\nherself,4,muchadoaboutnothing,1599\nlived,4,muchadoaboutnothing,1599\ncomfort,4,muchadoaboutnothing,1599\nbind,4,muchadoaboutnothing,1599\npardon,4,muchadoaboutnothing,1599\nholy,4,muchadoaboutnothing,1599\nshort,4,muchadoaboutnothing,1599\ncounterfeit,4,muchadoaboutnothing,1599\nalways,4,muchadoaboutnothing,1599\nback,4,muchadoaboutnothing,1599\neither,4,muchadoaboutnothing,1599\nconclude,4,muchadoaboutnothing,1599\ntells,4,muchadoaboutnothing,1599\ntogether,4,muchadoaboutnothing,1599\nsent,4,muchadoaboutnothing,1599\nmadam,4,muchadoaboutnothing,1599\nprotest,4,muchadoaboutnothing,1599\nmad,4,muchadoaboutnothing,1599\nspirits,4,muchadoaboutnothing,1599\nConrade,4,muchadoaboutnothing,1599\nlearn,4,muchadoaboutnothing,1599\nfled,4,muchadoaboutnothing,1599\nAmen,4,muchadoaboutnothing,1599\ncertain,4,muchadoaboutnothing,1599\nhe'll,4,muchadoaboutnothing,1599\nshalt,4,muchadoaboutnothing,1599\nspirit,4,muchadoaboutnothing,1599\nwouldst,4,muchadoaboutnothing,1599\nwomen,4,muchadoaboutnothing,1599\nmy,260,muchadoaboutnothing,1599\ntomb,5,muchadoaboutnothing,1599\nV,5,muchadoaboutnothing,1599\nfancy,5,muchadoaboutnothing,1599\nhorse,5,muchadoaboutnothing,1599\nwhile,5,muchadoaboutnothing,1599\njest,5,muchadoaboutnothing,1599\ndraw,5,muchadoaboutnothing,1599\ndance,5,muchadoaboutnothing,1599\nGive,5,muchadoaboutnothing,1599\ndeserve,5,muchadoaboutnothing,1599\nshe's,5,muchadoaboutnothing,1599\nsit,5,muchadoaboutnothing,1599\nbody,5,muchadoaboutnothing,1599\nimpossible,5,muchadoaboutnothing,1599\nvirtuous,5,muchadoaboutnothing,1599\nsuit,5,muchadoaboutnothing,1599\n'a,5,muchadoaboutnothing,1599\nlooks,5,muchadoaboutnothing,1599\ndoubt,5,muchadoaboutnothing,1599\nborn,5,muchadoaboutnothing,1599\nrhyme,5,muchadoaboutnothing,1599\nOne,5,muchadoaboutnothing,1599\nwish,5,muchadoaboutnothing,1599\nmean,5,muchadoaboutnothing,1599\nwronged,5,muchadoaboutnothing,1599\nproof,5,muchadoaboutnothing,1599\nmeans,5,muchadoaboutnothing,1599\nchallenge,5,muchadoaboutnothing,1599\nwhose,5,muchadoaboutnothing,1599\ngone,5,muchadoaboutnothing,1599\nfarewell,5,muchadoaboutnothing,1599\ndespite,5,muchadoaboutnothing,1599\nPedro,5,muchadoaboutnothing,1599\nMasters,5,muchadoaboutnothing,1599\nstuffed,5,muchadoaboutnothing,1599\nbreath,5,muchadoaboutnothing,1599\ntongues,5,muchadoaboutnothing,1599\nWatch,5,muchadoaboutnothing,1599\nless,5,muchadoaboutnothing,1599\nkilled,5,muchadoaboutnothing,1599\noutward,5,muchadoaboutnothing,1599\nhalf,5,muchadoaboutnothing,1599\nappears,5,muchadoaboutnothing,1599\ndeny,5,muchadoaboutnothing,1599\nexamine,5,muchadoaboutnothing,1599\nask,5,muchadoaboutnothing,1599\nfoot,5,muchadoaboutnothing,1599\nthanks,5,muchadoaboutnothing,1599\nspoken,5,muchadoaboutnothing,1599\nHave,5,muchadoaboutnothing,1599\nAgainst,5,muchadoaboutnothing,1599\nnote,5,muchadoaboutnothing,1599\nalmost,5,muchadoaboutnothing,1599\nrare,5,muchadoaboutnothing,1599\nHang,5,muchadoaboutnothing,1599\nhide,5,muchadoaboutnothing,1599\nmouth,5,muchadoaboutnothing,1599\nDost,5,muchadoaboutnothing,1599\nissue,5,muchadoaboutnothing,1599\nwoo,5,muchadoaboutnothing,1599\nfire,5,muchadoaboutnothing,1599\nthine,5,muchadoaboutnothing,1599\nsake,5,muchadoaboutnothing,1599\nstill,5,muchadoaboutnothing,1599\nWe'll,5,muchadoaboutnothing,1599\nThus,5,muchadoaboutnothing,1599\ncalled,5,muchadoaboutnothing,1599\nbrother's,5,muchadoaboutnothing,1599\nserve,5,muchadoaboutnothing,1599\nsupper,5,muchadoaboutnothing,1599\nnews,5,muchadoaboutnothing,1599\nwent,5,muchadoaboutnothing,1599\nfall,5,muchadoaboutnothing,1599\nfine,5,muchadoaboutnothing,1599\nsavage,5,muchadoaboutnothing,1599\nshows,5,muchadoaboutnothing,1599\ndepart,5,muchadoaboutnothing,1599\nhope,5,muchadoaboutnothing,1599\nreason,5,muchadoaboutnothing,1599\nargument,5,muchadoaboutnothing,1599\nalone,5,muchadoaboutnothing,1599\nlow,5,muchadoaboutnothing,1599\nseen,5,muchadoaboutnothing,1599\nseem,5,muchadoaboutnothing,1599\nliking,5,muchadoaboutnothing,1599\nmodest,5,muchadoaboutnothing,1599\nmatch,5,muchadoaboutnothing,1599\nremember,5,muchadoaboutnothing,1599\nBefore,5,muchadoaboutnothing,1599\nIndeed,5,muchadoaboutnothing,1599\nbeauty,5,muchadoaboutnothing,1599\nhurt,5,muchadoaboutnothing,1599\nwitness,5,muchadoaboutnothing,1599\nDid,5,muchadoaboutnothing,1599\ncross,5,muchadoaboutnothing,1599\nten,5,muchadoaboutnothing,1599\nshape,5,muchadoaboutnothing,1599\nhorns,6,muchadoaboutnothing,1599\nwrit,6,muchadoaboutnothing,1599\npeace,6,muchadoaboutnothing,1599\nhonourable,6,muchadoaboutnothing,1599\nWould,6,muchadoaboutnothing,1599\nsin,6,muchadoaboutnothing,1599\nwalk,6,muchadoaboutnothing,1599\nset,6,muchadoaboutnothing,1599\nwedding,6,muchadoaboutnothing,1599\nscorn,6,muchadoaboutnothing,1599\nson,6,muchadoaboutnothing,1599\nsworn,6,muchadoaboutnothing,1599\nworthy,6,muchadoaboutnothing,1599\nprinces,6,muchadoaboutnothing,1599\nothers,6,muchadoaboutnothing,1599\nturned,6,muchadoaboutnothing,1599\ndied,6,muchadoaboutnothing,1599\nneither,6,muchadoaboutnothing,1599\nboy,6,muchadoaboutnothing,1599\nOf,6,muchadoaboutnothing,1599\nHa,6,muchadoaboutnothing,1599\nsorry,6,muchadoaboutnothing,1599\nRe,6,muchadoaboutnothing,1599\norchard,6,muchadoaboutnothing,1599\ncurst,6,muchadoaboutnothing,1599\nlonger,6,muchadoaboutnothing,1599\ni',6,muchadoaboutnothing,1599\nGod's,6,muchadoaboutnothing,1599\naccused,6,muchadoaboutnothing,1599\nhands,6,muchadoaboutnothing,1599\nSecond,6,muchadoaboutnothing,1599\nUrsula,6,muchadoaboutnothing,1599\nYes,6,muchadoaboutnothing,1599\nknew,6,muchadoaboutnothing,1599\nspeaks,6,muchadoaboutnothing,1599\nThan,6,muchadoaboutnothing,1599\nnew,6,muchadoaboutnothing,1599\nroom,6,muchadoaboutnothing,1599\nSir,6,muchadoaboutnothing,1599\nyouth,6,muchadoaboutnothing,1599\nend,6,muchadoaboutnothing,1599\nthief,6,muchadoaboutnothing,1599\nonce,6,muchadoaboutnothing,1599\nsame,6,muchadoaboutnothing,1599\nloving,6,muchadoaboutnothing,1599\nbelieve,6,muchadoaboutnothing,1599\nwhat's,6,muchadoaboutnothing,1599\nplease,6,muchadoaboutnothing,1599\nthree,6,muchadoaboutnothing,1599\nfit,6,muchadoaboutnothing,1599\npassion,6,muchadoaboutnothing,1599\nBoy,6,muchadoaboutnothing,1599\npractise,6,muchadoaboutnothing,1599\nunto,6,muchadoaboutnothing,1599\nwife,6,muchadoaboutnothing,1599\npurpose,6,muchadoaboutnothing,1599\nfollow,6,muchadoaboutnothing,1599\nflout,6,muchadoaboutnothing,1599\nand,518,muchadoaboutnothing,1599\nHero's,7,muchadoaboutnothing,1599\nfriends,7,muchadoaboutnothing,1599\ncare,7,muchadoaboutnothing,1599\nsaw,7,muchadoaboutnothing,1599\ncame,7,muchadoaboutnothing,1599\nNor,7,muchadoaboutnothing,1599\nCupid,7,muchadoaboutnothing,1599\nlight,7,muchadoaboutnothing,1599\nchurch,7,muchadoaboutnothing,1599\noffence,7,muchadoaboutnothing,1599\nwrong,7,muchadoaboutnothing,1599\nfear,7,muchadoaboutnothing,1599\nHere,7,muchadoaboutnothing,1599\nswore,7,muchadoaboutnothing,1599\ndesire,7,muchadoaboutnothing,1599\nmorning,7,muchadoaboutnothing,1599\nmelancholy,7,muchadoaboutnothing,1599\nsigh,7,muchadoaboutnothing,1599\nmeasure,7,muchadoaboutnothing,1599\npatience,7,muchadoaboutnothing,1599\nstay,7,muchadoaboutnothing,1599\nwhole,7,muchadoaboutnothing,1599\nLeonato's,7,muchadoaboutnothing,1599\nprove,7,muchadoaboutnothing,1599\nendure,7,muchadoaboutnothing,1599\nbrought,7,muchadoaboutnothing,1599\nhast,7,muchadoaboutnothing,1599\nAre,7,muchadoaboutnothing,1599\nHath,7,muchadoaboutnothing,1599\nhere's,7,muchadoaboutnothing,1599\nwhere,7,muchadoaboutnothing,1599\nwonder,7,muchadoaboutnothing,1599\nbeard,7,muchadoaboutnothing,1599\nLord,7,muchadoaboutnothing,1599\nquestion,7,muchadoaboutnothing,1599\nknown,7,muchadoaboutnothing,1599\nover,7,muchadoaboutnothing,1599\nnear,7,muchadoaboutnothing,1599\nheavy,7,muchadoaboutnothing,1599\nCan,7,muchadoaboutnothing,1599\nbetween,7,muchadoaboutnothing,1599\n'Tis,7,muchadoaboutnothing,1599\nhumour,7,muchadoaboutnothing,1599\ncompany,7,muchadoaboutnothing,1599\nSweet,7,muchadoaboutnothing,1599\nfare,7,muchadoaboutnothing,1599\ntale,7,muchadoaboutnothing,1599\nseek,7,muchadoaboutnothing,1599\ncry,7,muchadoaboutnothing,1599\ngoes,7,muchadoaboutnothing,1599\near,7,muchadoaboutnothing,1599\nlast,7,muchadoaboutnothing,1599\nvirtue,7,muchadoaboutnothing,1599\nkind,7,muchadoaboutnothing,1599\nvillany,8,muchadoaboutnothing,1599\npossible,8,muchadoaboutnothing,1599\nhelp,8,muchadoaboutnothing,1599\nslander,8,muchadoaboutnothing,1599\ntrust,8,muchadoaboutnothing,1599\nhead,8,muchadoaboutnothing,1599\nWith,8,muchadoaboutnothing,1599\nafter,8,muchadoaboutnothing,1599\noffice,8,muchadoaboutnothing,1599\nsick,8,muchadoaboutnothing,1599\nchamber,8,muchadoaboutnothing,1599\nbad,8,muchadoaboutnothing,1599\ninnocent,8,muchadoaboutnothing,1599\nII,8,muchadoaboutnothing,1599\nenter,8,muchadoaboutnothing,1599\ngrief,8,muchadoaboutnothing,1599\ndost,8,muchadoaboutnothing,1599\njust,8,muchadoaboutnothing,1599\nleft,8,muchadoaboutnothing,1599\ndear,8,muchadoaboutnothing,1599\nlong,8,muchadoaboutnothing,1599\nage,8,muchadoaboutnothing,1599\nkeep,8,muchadoaboutnothing,1599\nhang,8,muchadoaboutnothing,1599\nfoul,8,muchadoaboutnothing,1599\nass,8,muchadoaboutnothing,1599\nmaid,8,muchadoaboutnothing,1599\nthings,8,muchadoaboutnothing,1599\nagain,8,muchadoaboutnothing,1599\nmind,8,muchadoaboutnothing,1599\nThey,8,muchadoaboutnothing,1599\nfriar,8,muchadoaboutnothing,1599\nlay,8,muchadoaboutnothing,1599\nman's,8,muchadoaboutnothing,1599\nwilt,8,muchadoaboutnothing,1599\nuse,8,muchadoaboutnothing,1599\nsend,8,muchadoaboutnothing,1599\nMay,8,muchadoaboutnothing,1599\nmight,8,muchadoaboutnothing,1599\nshame,8,muchadoaboutnothing,1599\nkill,8,muchadoaboutnothing,1599\nLEONATO'S,9,muchadoaboutnothing,1599\nappear,9,muchadoaboutnothing,1599\nyourself,9,muchadoaboutnothing,1599\nsure,9,muchadoaboutnothing,1599\nmerry,9,muchadoaboutnothing,1599\ncounsel,9,muchadoaboutnothing,1599\nboth,9,muchadoaboutnothing,1599\nelse,9,muchadoaboutnothing,1599\nIII,9,muchadoaboutnothing,1599\nmusic,9,muchadoaboutnothing,1599\npains,9,muchadoaboutnothing,1599\nsing,9,muchadoaboutnothing,1599\ndead,9,muchadoaboutnothing,1599\ndone,9,muchadoaboutnothing,1599\nnoble,9,muchadoaboutnothing,1599\nYet,9,muchadoaboutnothing,1599\nthose,9,muchadoaboutnothing,1599\npraise,9,muchadoaboutnothing,1599\nart,9,muchadoaboutnothing,1599\nsignior,9,muchadoaboutnothing,1599\nYour,9,muchadoaboutnothing,1599\neye,9,muchadoaboutnothing,1599\nyours,9,muchadoaboutnothing,1599\nAll,9,muchadoaboutnothing,1599\npresently,9,muchadoaboutnothing,1599\nknows,9,muchadoaboutnothing,1599\nThen,9,muchadoaboutnothing,1599\noff,9,muchadoaboutnothing,1599\nbreak,9,muchadoaboutnothing,1599\nShall,9,muchadoaboutnothing,1599\nworship,9,muchadoaboutnothing,1599\nuncle,9,muchadoaboutnothing,1599\nhour,9,muchadoaboutnothing,1599\nmaster,9,muchadoaboutnothing,1599\nhither,9,muchadoaboutnothing,1599\nlie,9,muchadoaboutnothing,1599\neat,9,muchadoaboutnothing,1599\nWhen,9,muchadoaboutnothing,1599\nwoman,9,muchadoaboutnothing,1599\nneighbour,9,muchadoaboutnothing,1599\njoy,10,muchadoaboutnothing,1599\nNow,10,muchadoaboutnothing,1599\nhonour,10,muchadoaboutnothing,1599\nmasters,10,muchadoaboutnothing,1599\nbring,10,muchadoaboutnothing,1599\nfalse,10,muchadoaboutnothing,1599\nwindow,10,muchadoaboutnothing,1599\nGo,10,muchadoaboutnothing,1599\ntongue,10,muchadoaboutnothing,1599\naffection,10,muchadoaboutnothing,1599\nloves,10,muchadoaboutnothing,1599\nFirst,10,muchadoaboutnothing,1599\nlittle,10,muchadoaboutnothing,1599\nstand,10,muchadoaboutnothing,1599\nsays,10,muchadoaboutnothing,1599\neven,10,muchadoaboutnothing,1599\ntalk,10,muchadoaboutnothing,1599\nthousand,10,muchadoaboutnothing,1599\nhold,10,muchadoaboutnothing,1599\npoor,10,muchadoaboutnothing,1599\nWill,11,muchadoaboutnothing,1599\nthought,11,muchadoaboutnothing,1599\nunder,11,muchadoaboutnothing,1599\ntruth,11,muchadoaboutnothing,1599\nworld,11,muchadoaboutnothing,1599\nfull,11,muchadoaboutnothing,1599\nNot,11,muchadoaboutnothing,1599\nWho,11,muchadoaboutnothing,1599\nThere,11,muchadoaboutnothing,1599\nfellow,11,muchadoaboutnothing,1599\nfriend,11,muchadoaboutnothing,1599\nitself,11,muchadoaboutnothing,1599\nWe,11,muchadoaboutnothing,1599\nput,11,muchadoaboutnothing,1599\n'tis,11,muchadoaboutnothing,1599\nbear,11,muchadoaboutnothing,1599\nthat's,11,muchadoaboutnothing,1599\nMessina,11,muchadoaboutnothing,1599\nere,11,muchadoaboutnothing,1599\nmany,11,muchadoaboutnothing,1599\nconstable,11,muchadoaboutnothing,1599\nheard,11,muchadoaboutnothing,1599\nfind,11,muchadoaboutnothing,1599\nmarried,11,muchadoaboutnothing,1599\neyes,11,muchadoaboutnothing,1599\nswear,11,muchadoaboutnothing,1599\nfather,11,muchadoaboutnothing,1599\nSexton,11,muchadoaboutnothing,1599\nstrange,11,muchadoaboutnothing,1599\nrather,12,muchadoaboutnothing,1599\ntruly,12,muchadoaboutnothing,1599\nwords,12,muchadoaboutnothing,1599\nanother,12,muchadoaboutnothing,1599\nwarrant,12,muchadoaboutnothing,1599\nDo,12,muchadoaboutnothing,1599\nexcellent,12,muchadoaboutnothing,1599\nwatch,12,muchadoaboutnothing,1599\nThou,12,muchadoaboutnothing,1599\nchild,12,muchadoaboutnothing,1599\nthere's,12,muchadoaboutnothing,1599\nget,12,muchadoaboutnothing,1599\ncount,12,muchadoaboutnothing,1599\ntime,12,muchadoaboutnothing,1599\nLet,12,muchadoaboutnothing,1599\nsweet,12,muchadoaboutnothing,1599\nwrite,12,muchadoaboutnothing,1599\nlive,12,muchadoaboutnothing,1599\nwithout,12,muchadoaboutnothing,1599\nvillain,13,muchadoaboutnothing,1599\nsoul,13,muchadoaboutnothing,1599\ncharge,13,muchadoaboutnothing,1599\nsad,13,muchadoaboutnothing,1599\ncall,13,muchadoaboutnothing,1599\nagainst,13,muchadoaboutnothing,1599\ntherefore,13,muchadoaboutnothing,1599\nblood,13,muchadoaboutnothing,1599\na',13,muchadoaboutnothing,1599\nill,13,muchadoaboutnothing,1599\nloved,13,muchadoaboutnothing,1599\nright,13,muchadoaboutnothing,1599\nyoung,13,muchadoaboutnothing,1599\nThis,13,muchadoaboutnothing,1599\nniece,13,muchadoaboutnothing,1599\nface,13,muchadoaboutnothing,1599\nword,13,muchadoaboutnothing,1599\nhonest,13,muchadoaboutnothing,1599\ntroth,13,muchadoaboutnothing,1599\nmarriage,13,muchadoaboutnothing,1599\ndare,13,muchadoaboutnothing,1599\ntold,14,muchadoaboutnothing,1599\nmeet,14,muchadoaboutnothing,1599\nJohn,14,muchadoaboutnothing,1599\nbetter,14,muchadoaboutnothing,1599\naway,14,muchadoaboutnothing,1599\nwise,14,muchadoaboutnothing,1599\nprince's,14,muchadoaboutnothing,1599\nIt,14,muchadoaboutnothing,1599\nWhich,14,muchadoaboutnothing,1599\npart,14,muchadoaboutnothing,1599\nthough,14,muchadoaboutnothing,1599\nmyself,14,muchadoaboutnothing,1599\nway,14,muchadoaboutnothing,1599\nthus,14,muchadoaboutnothing,1599\nhouse,14,muchadoaboutnothing,1599\nfirst,14,muchadoaboutnothing,1599\nMarry,14,muchadoaboutnothing,1599\nlife,15,muchadoaboutnothing,1599\ndeath,15,muchadoaboutnothing,1599\nenough,15,muchadoaboutnothing,1599\nSo,15,muchadoaboutnothing,1599\nwear,15,muchadoaboutnothing,1599\nfool,15,muchadoaboutnothing,1599\nCount,15,muchadoaboutnothing,1599\nbefore,15,muchadoaboutnothing,1599\nthing,15,muchadoaboutnothing,1599\ngentleman,15,muchadoaboutnothing,1599\nthank,15,muchadoaboutnothing,1599\nleave,15,muchadoaboutnothing,1599\nExit,15,muchadoaboutnothing,1599\nNay,16,muchadoaboutnothing,1599\nBALTHASAR,16,muchadoaboutnothing,1599\nabout,16,muchadoaboutnothing,1599\nmatter,16,muchadoaboutnothing,1599\nGood,16,muchadoaboutnothing,1599\nlook,16,muchadoaboutnothing,1599\ngrace,16,muchadoaboutnothing,1599\nshow,16,muchadoaboutnothing,1599\nmade,16,muchadoaboutnothing,1599\ncomes,16,muchadoaboutnothing,1599\nfair,16,muchadoaboutnothing,1599\ngreat,16,muchadoaboutnothing,1599\ntwo,16,muchadoaboutnothing,1599\nhimself,16,muchadoaboutnothing,1599\ndie,16,muchadoaboutnothing,1599\nMargaret,17,muchadoaboutnothing,1599\nnothing,17,muchadoaboutnothing,1599\nACT,17,muchadoaboutnothing,1599\nnor,17,muchadoaboutnothing,1599\ncould,17,muchadoaboutnothing,1599\nwhy,17,muchadoaboutnothing,1599\nonly,17,muchadoaboutnothing,1599\nbeing,17,muchadoaboutnothing,1599\nDon,17,muchadoaboutnothing,1599\nMUCH,18,muchadoaboutnothing,1599\nABOUT,18,muchadoaboutnothing,1599\nBy,18,muchadoaboutnothing,1599\nbid,18,muchadoaboutnothing,1599\nsaid,18,muchadoaboutnothing,1599\nShe,18,muchadoaboutnothing,1599\nADO,18,muchadoaboutnothing,1599\nNOTHING,18,muchadoaboutnothing,1599\nmarry,18,muchadoaboutnothing,1599\nday,18,muchadoaboutnothing,1599\nSCENE,18,muchadoaboutnothing,1599\nFRIAR,19,muchadoaboutnothing,1599\nhusband,19,muchadoaboutnothing,1599\nLady,19,muchadoaboutnothing,1599\nFRANCIS,19,muchadoaboutnothing,1599\nown,19,muchadoaboutnothing,1599\nother,19,muchadoaboutnothing,1599\nthese,20,muchadoaboutnothing,1599\ndown,20,muchadoaboutnothing,1599\nnone,20,muchadoaboutnothing,1599\nwho,20,muchadoaboutnothing,1599\nold,20,muchadoaboutnothing,1599\never,20,muchadoaboutnothing,1599\nfashion,20,muchadoaboutnothing,1599\nevery,21,muchadoaboutnothing,1599\nFor,21,muchadoaboutnothing,1599\nAs,21,muchadoaboutnothing,1599\nname,21,muchadoaboutnothing,1599\nMy,21,muchadoaboutnothing,1599\nhand,21,muchadoaboutnothing,1599\nfaith,21,muchadoaboutnothing,1599\nour,21,muchadoaboutnothing,1599\ntill,21,muchadoaboutnothing,1599\nHe,22,muchadoaboutnothing,1599\nIs,22,muchadoaboutnothing,1599\ndoth,22,muchadoaboutnothing,1599\nindeed,22,muchadoaboutnothing,1599\nmorrow,22,muchadoaboutnothing,1599\nMessenger,22,muchadoaboutnothing,1599\ntrue,22,muchadoaboutnothing,1599\nanswer,23,muchadoaboutnothing,1599\nbeen,23,muchadoaboutnothing,1599\nmost,23,muchadoaboutnothing,1599\nWatchman,24,muchadoaboutnothing,1599\nYea,24,muchadoaboutnothing,1599\ntake,24,muchadoaboutnothing,1599\nVERGES,25,muchadoaboutnothing,1599\nLeonato,25,muchadoaboutnothing,1599\ntheir,25,muchadoaboutnothing,1599\nyet,25,muchadoaboutnothing,1599\ngive,25,muchadoaboutnothing,1599\nmen,25,muchadoaboutnothing,1599\ncannot,25,muchadoaboutnothing,1599\nis,281,muchadoaboutnothing,1599\nup,26,muchadoaboutnothing,1599\nHow,26,muchadoaboutnothing,1599\nfrom,26,muchadoaboutnothing,1599\nURSULA,27,muchadoaboutnothing,1599\nIn,27,muchadoaboutnothing,1599\nExeunt,27,muchadoaboutnothing,1599\nWell,27,muchadoaboutnothing,1599\npray,28,muchadoaboutnothing,1599\nCONRADE,28,muchadoaboutnothing,1599\nspeak,28,muchadoaboutnothing,1599\ndaughter,29,muchadoaboutnothing,1599\ninto,29,muchadoaboutnothing,1599\nvery,29,muchadoaboutnothing,1599\nin,285,muchadoaboutnothing,1599\nthe,541,muchadoaboutnothing,1599\nsome,30,muchadoaboutnothing,1599\nsir,30,muchadoaboutnothing,1599\ncousin,30,muchadoaboutnothing,1599\nI'll,30,muchadoaboutnothing,1599\nwit,30,muchadoaboutnothing,1599\nA,31,muchadoaboutnothing,1599\nhere,32,muchadoaboutnothing,1599\nWhy,32,muchadoaboutnothing,1599\nsee,32,muchadoaboutnothing,1599\nus,32,muchadoaboutnothing,1599\nANTONIO,32,muchadoaboutnothing,1599\nThat,32,muchadoaboutnothing,1599\nmine,32,muchadoaboutnothing,1599\nheart,32,muchadoaboutnothing,1599\nmuch,33,muchadoaboutnothing,1599\nCome,33,muchadoaboutnothing,1599\nNo,33,muchadoaboutnothing,1599\ncan,33,muchadoaboutnothing,1599\nMARGARET,33,muchadoaboutnothing,1599\nSignior,33,muchadoaboutnothing,1599\nupon,34,muchadoaboutnothing,1599\nbrother,34,muchadoaboutnothing,1599\nthere,34,muchadoaboutnothing,1599\ndid,34,muchadoaboutnothing,1599\nmust,35,muchadoaboutnothing,1599\nnever,35,muchadoaboutnothing,1599\nnight,35,muchadoaboutnothing,1599\nmore,35,muchadoaboutnothing,1599\nmake,35,muchadoaboutnothing,1599\nout,37,muchadoaboutnothing,1599\nhear,38,muchadoaboutnothing,1599\nprince,38,muchadoaboutnothing,1599\nEnter,38,muchadoaboutnothing,1599\nThe,38,muchadoaboutnothing,1599\nsuch,39,muchadoaboutnothing,1599\ntell,39,muchadoaboutnothing,1599\nWhat,39,muchadoaboutnothing,1599\nTo,40,muchadoaboutnothing,1599\nYou,40,muchadoaboutnothing,1599\nnow,41,muchadoaboutnothing,1599\n',42,muchadoaboutnothing,1599\nwhich,42,muchadoaboutnothing,1599\nthen,42,muchadoaboutnothing,1599\ncome,42,muchadoaboutnothing,1599\ntoo,42,muchadoaboutnothing,1599\nBeatrice,43,muchadoaboutnothing,1599\nhow,43,muchadoaboutnothing,1599\nlady,43,muchadoaboutnothing,1599\ngo,44,muchadoaboutnothing,1599\nO,45,muchadoaboutnothing,1599\nhad,45,muchadoaboutnothing,1599\nor,45,muchadoaboutnothing,1599\nthink,45,muchadoaboutnothing,1599\nthan,46,muchadoaboutnothing,1599\nmay,47,muchadoaboutnothing,1599\nBORACHIO,48,muchadoaboutnothing,1599\nIf,48,muchadoaboutnothing,1599\nshould,48,muchadoaboutnothing,1599\nwell,48,muchadoaboutnothing,1599\nwas,49,muchadoaboutnothing,1599\nlike,50,muchadoaboutnothing,1599\nBut,50,muchadoaboutnothing,1599\nwhen,50,muchadoaboutnothing,1599\nthy,50,muchadoaboutnothing,1599\nwere,51,muchadoaboutnothing,1599\nlet,51,muchadoaboutnothing,1599\nJOHN,51,muchadoaboutnothing,1599\nBenedick,52,muchadoaboutnothing,1599\nthem,53,muchadoaboutnothing,1599\nany,53,muchadoaboutnothing,1599\nat,53,muchadoaboutnothing,1599\nwe,53,muchadoaboutnothing,1599\none,53,muchadoaboutnothing,1599\nsay,54,muchadoaboutnothing,1599\nHERO,55,muchadoaboutnothing,1599\nGod,56,muchadoaboutnothing,1599\nknow,56,muchadoaboutnothing,1599\nHero,57,muchadoaboutnothing,1599\nClaudio,57,muchadoaboutnothing,1599\nDOGBERRY,59,muchadoaboutnothing,1599\nwhat,62,muchadoaboutnothing,1599\nhath,67,muchadoaboutnothing,1599\nlord,68,muchadoaboutnothing,1599\non,71,muchadoaboutnothing,1599\nshall,72,muchadoaboutnothing,1599\nthey,73,muchadoaboutnothing,1599\nthou,74,muchadoaboutnothing,1599\nthee,74,muchadoaboutnothing,1599\nby,76,muchadoaboutnothing,1599\nif,76,muchadoaboutnothing,1599\nall,77,muchadoaboutnothing,1599\nam,77,muchadoaboutnothing,1599\nan,77,muchadoaboutnothing,1599\ngood,78,muchadoaboutnothing,1599\nwould,82,muchadoaboutnothing,1599\nare,84,muchadoaboutnothing,1599\nlove,89,muchadoaboutnothing,1599\ndo,90,muchadoaboutnothing,1599\nno,95,muchadoaboutnothing,1599\nman,102,muchadoaboutnothing,1599\nof,359,muchadoaboutnothing,1599\nAnd,112,muchadoaboutnothing,1599\nBEATRICE,117,muchadoaboutnothing,1599\nas,122,muchadoaboutnothing,1599\nshe,123,muchadoaboutnothing,1599\nhis,123,muchadoaboutnothing,1599\nbut,123,muchadoaboutnothing,1599\nso,123,muchadoaboutnothing,1599\nhim,132,muchadoaboutnothing,1599\nLEONATO,136,muchadoaboutnothing,1599\nthis,137,muchadoaboutnothing,1599\nCLAUDIO,141,muchadoaboutnothing,1599\nBENEDICK,147,muchadoaboutnothing,1599\nPEDRO,148,muchadoaboutnothing,1599\nhave,160,muchadoaboutnothing,1599\nto,417,muchadoaboutnothing,1599\nyour,173,muchadoaboutnothing,1599\nI,688,muchadoaboutnothing,1599\nhe,177,muchadoaboutnothing,1599\nbe,178,muchadoaboutnothing,1599\na,443,muchadoaboutnothing,1599\nwill,189,muchadoaboutnothing,1599\nwith,192,muchadoaboutnothing,1599\nyou,452,muchadoaboutnothing,1599\nfor,199,muchadoaboutnothing,1599\nDON,199,muchadoaboutnothing,1599\nme,219,muchadoaboutnothing,1599\nher,222,muchadoaboutnothing,1599\nnot,239,muchadoaboutnothing,1599\nit,240,muchadoaboutnothing,1599\nis,256,allswellthatendswell,1603\nbrave,1,allswellthatendswell,1603\ncheque'd,1,allswellthatendswell,1603\nholding,1,allswellthatendswell,1603\nplagues,1,allswellthatendswell,1603\nincurred,1,allswellthatendswell,1603\nindignation,1,allswellthatendswell,1603\ndischarged,1,allswellthatendswell,1603\nanswered,1,allswellthatendswell,1603\nreligion,1,allswellthatendswell,1603\n'You,1,allswellthatendswell,1603\nfinisher,1,allswellthatendswell,1603\nevent,1,allswellthatendswell,1603\nadvanced,1,allswellthatendswell,1603\nneighbouring,1,allswellthatendswell,1603\nsteads,1,allswellthatendswell,1603\nFrancis,1,allswellthatendswell,1603\nnaturalize,1,allswellthatendswell,1603\nheel,1,allswellthatendswell,1603\nWritten,1,allswellthatendswell,1603\nbrawn,1,allswellthatendswell,1603\no'er,1,allswellthatendswell,1603\ntoll,1,allswellthatendswell,1603\nvillany,1,allswellthatendswell,1603\nadoptious,1,allswellthatendswell,1603\nretrograde,1,allswellthatendswell,1603\nhorns,1,allswellthatendswell,1603\nmoral,1,allswellthatendswell,1603\naccordingly,1,allswellthatendswell,1603\nname's,1,allswellthatendswell,1603\nparted,1,allswellthatendswell,1603\nCorrupt,1,allswellthatendswell,1603\nguard,1,allswellthatendswell,1603\ndebts,1,allswellthatendswell,1603\nropes,1,allswellthatendswell,1603\nmeed,1,allswellthatendswell,1603\nProve,1,allswellthatendswell,1603\ndigested,1,allswellthatendswell,1603\nnothings,1,allswellthatendswell,1603\njoin,1,allswellthatendswell,1603\ncutting,1,allswellthatendswell,1603\ninfirm,1,allswellthatendswell,1603\nred,1,allswellthatendswell,1603\nProud,1,allswellthatendswell,1603\ncalumnious,1,allswellthatendswell,1603\ndrop,1,allswellthatendswell,1603\nJohn,1,allswellthatendswell,1603\ndarest,1,allswellthatendswell,1603\nunroot,1,allswellthatendswell,1603\ndescription,1,allswellthatendswell,1603\nderived,1,allswellthatendswell,1603\ndoubly,1,allswellthatendswell,1603\nfathers,1,allswellthatendswell,1603\nprotestations,1,allswellthatendswell,1603\nDamnable,1,allswellthatendswell,1603\nmightiest,1,allswellthatendswell,1603\nassay,1,allswellthatendswell,1603\nderives,1,allswellthatendswell,1603\nbelongs,1,allswellthatendswell,1603\nheir,1,allswellthatendswell,1603\ntruer,1,allswellthatendswell,1603\nrelics,1,allswellthatendswell,1603\naraise,1,allswellthatendswell,1603\nprophet,1,allswellthatendswell,1603\nwish'd,1,allswellthatendswell,1603\ncomplaints,1,allswellthatendswell,1603\ndiscord,1,allswellthatendswell,1603\nfollowing,1,allswellthatendswell,1603\nespecially,1,allswellthatendswell,1603\ntreasure,1,allswellthatendswell,1603\nhinder,1,allswellthatendswell,1603\nknell,1,allswellthatendswell,1603\nbonto,1,allswellthatendswell,1603\nobtain'd,1,allswellthatendswell,1603\nneighbours,1,allswellthatendswell,1603\nbrows,1,allswellthatendswell,1603\nTib's,1,allswellthatendswell,1603\nlower,1,allswellthatendswell,1603\ndagger,1,allswellthatendswell,1603\nrock,1,allswellthatendswell,1603\nvinaigre,1,allswellthatendswell,1603\nlabours,1,allswellthatendswell,1603\nnoiseless,1,allswellthatendswell,1603\ndolphin,1,allswellthatendswell,1603\nfoolery,1,allswellthatendswell,1603\npreparation,1,allswellthatendswell,1603\nrascal,1,allswellthatendswell,1603\nassured,1,allswellthatendswell,1603\nmatron,1,allswellthatendswell,1603\noffender,1,allswellthatendswell,1603\nheart's,1,allswellthatendswell,1603\nbranch,1,allswellthatendswell,1603\nscattered,1,allswellthatendswell,1603\nmuse,1,allswellthatendswell,1603\nsainted,1,allswellthatendswell,1603\ntrivial,1,allswellthatendswell,1603\neasily,1,allswellthatendswell,1603\ndecision,1,allswellthatendswell,1603\nundoubted,1,allswellthatendswell,1603\nepitaph,1,allswellthatendswell,1603\nendless,1,allswellthatendswell,1603\nhandkercher,1,allswellthatendswell,1603\nministration,1,allswellthatendswell,1603\nspeedy,1,allswellthatendswell,1603\nmurk,1,allswellthatendswell,1603\nNebuchadnezzar,1,allswellthatendswell,1603\nmell,1,allswellthatendswell,1603\nhell,1,allswellthatendswell,1603\nsleeps,1,allswellthatendswell,1603\nIris,1,allswellthatendswell,1603\nhelm,1,allswellthatendswell,1603\nsuggestions,1,allswellthatendswell,1603\nreserved,1,allswellthatendswell,1603\nmoiety,1,allswellthatendswell,1603\nwhale,1,allswellthatendswell,1603\nBoblibindo,1,allswellthatendswell,1603\nsuppliant,1,allswellthatendswell,1603\nmule,1,allswellthatendswell,1603\nsingly,1,allswellthatendswell,1603\nsleepy,1,allswellthatendswell,1603\ndarkness,1,allswellthatendswell,1603\nPlutus,1,allswellthatendswell,1603\nmovousus,1,allswellthatendswell,1603\npilot's,1,allswellthatendswell,1603\nauthentic,1,allswellthatendswell,1603\ncontract,1,allswellthatendswell,1603\ncorbo,1,allswellthatendswell,1603\nrichest,1,allswellthatendswell,1603\nDiscover,1,allswellthatendswell,1603\ninaudible,1,allswellthatendswell,1603\nherd,1,allswellthatendswell,1603\nspake,1,allswellthatendswell,1603\nviolent,1,allswellthatendswell,1603\nCitizens,1,allswellthatendswell,1603\nEspecially,1,allswellthatendswell,1603\nEither,1,allswellthatendswell,1603\nParacelsus,1,allswellthatendswell,1603\nsighs,1,allswellthatendswell,1603\nsight,1,allswellthatendswell,1603\nchristendoms,1,allswellthatendswell,1603\nprosperous,1,allswellthatendswell,1603\nsurplice,1,allswellthatendswell,1603\nrumour,1,allswellthatendswell,1603\nlowly,1,allswellthatendswell,1603\nparadise,1,allswellthatendswell,1603\ndamns,1,allswellthatendswell,1603\ncommodity,1,allswellthatendswell,1603\nlooked,1,allswellthatendswell,1603\nfought,1,allswellthatendswell,1603\nbrightest,1,allswellthatendswell,1603\nBeguiles,1,allswellthatendswell,1603\nangels,1,allswellthatendswell,1603\nappear,1,allswellthatendswell,1603\nResolved,1,allswellthatendswell,1603\nflow,1,allswellthatendswell,1603\nrichly,1,allswellthatendswell,1603\nalthough,1,allswellthatendswell,1603\nwidower's,1,allswellthatendswell,1603\ndrink,1,allswellthatendswell,1603\nstretched,1,allswellthatendswell,1603\nO'erbears,1,allswellthatendswell,1603\nnought,1,allswellthatendswell,1603\nsour,1,allswellthatendswell,1603\ncharter,1,allswellthatendswell,1603\nlaugh,1,allswellthatendswell,1603\nContempt,1,allswellthatendswell,1603\nadmirable,1,allswellthatendswell,1603\nprey,1,allswellthatendswell,1603\nJaques',1,allswellthatendswell,1603\nsuggest,1,allswellthatendswell,1603\nLavache,1,allswellthatendswell,1603\njades,1,allswellthatendswell,1603\nthirty,1,allswellthatendswell,1603\nyonder,1,allswellthatendswell,1603\ninclining,1,allswellthatendswell,1603\nWrapp'd,1,allswellthatendswell,1603\nstrumpet,1,allswellthatendswell,1603\npinch,1,allswellthatendswell,1603\nErr,1,allswellthatendswell,1603\ngoers,1,allswellthatendswell,1603\ncorrupts,1,allswellthatendswell,1603\nworks,1,allswellthatendswell,1603\ndisobedience,1,allswellthatendswell,1603\nscruple,1,allswellthatendswell,1603\nmusk,1,allswellthatendswell,1603\nbecome,1,allswellthatendswell,1603\ncurious,1,allswellthatendswell,1603\nPERSONAE,1,allswellthatendswell,1603\nOpening,1,allswellthatendswell,1603\ncarp,1,allswellthatendswell,1603\nproclaim,1,allswellthatendswell,1603\nradiance,1,allswellthatendswell,1603\nmute,1,allswellthatendswell,1603\ncherished,1,allswellthatendswell,1603\ncloister,1,allswellthatendswell,1603\nsaved,1,allswellthatendswell,1603\nconstancies,1,allswellthatendswell,1603\nspark,1,allswellthatendswell,1603\ncherishes,1,allswellthatendswell,1603\ncherisher,1,allswellthatendswell,1603\nmingled,1,allswellthatendswell,1603\nsaves,1,allswellthatendswell,1603\nquirks,1,allswellthatendswell,1603\nearly,1,allswellthatendswell,1603\nspares,1,allswellthatendswell,1603\nbuttocks,1,allswellthatendswell,1603\nquench'd,1,allswellthatendswell,1603\nregions,1,allswellthatendswell,1603\nbreach,1,allswellthatendswell,1603\npursue,1,allswellthatendswell,1603\nperformance,1,allswellthatendswell,1603\nbeneath,1,allswellthatendswell,1603\npractiser,1,allswellthatendswell,1603\nhelper,1,allswellthatendswell,1603\npassions,1,allswellthatendswell,1603\nparson,1,allswellthatendswell,1603\ndrily,1,allswellthatendswell,1603\nhelped,1,allswellthatendswell,1603\npractises,1,allswellthatendswell,1603\nshrinks,1,allswellthatendswell,1603\nhonester,1,allswellthatendswell,1603\nsurfeit,1,allswellthatendswell,1603\nbirth,1,allswellthatendswell,1603\nlacks,1,allswellthatendswell,1603\nsad,1,allswellthatendswell,1603\namazed,1,allswellthatendswell,1603\nspied,1,allswellthatendswell,1603\nthank'd,1,allswellthatendswell,1603\nfeels,1,allswellthatendswell,1603\nfeather,1,allswellthatendswell,1603\njest,1,allswellthatendswell,1603\nsadly,1,allswellthatendswell,1603\ndrive,1,allswellthatendswell,1603\nreconciled,1,allswellthatendswell,1603\nsole,1,allswellthatendswell,1603\nsold,1,allswellthatendswell,1603\nYoung,1,allswellthatendswell,1603\nopposer,1,allswellthatendswell,1603\nunjustly,1,allswellthatendswell,1603\nrelieve,1,allswellthatendswell,1603\nhappened,1,allswellthatendswell,1603\nyears,1,allswellthatendswell,1603\nbetake,1,allswellthatendswell,1603\nJove,1,allswellthatendswell,1603\nfortunate,1,allswellthatendswell,1603\nlinsey,1,allswellthatendswell,1603\nsorrows,1,allswellthatendswell,1603\nCold,1,allswellthatendswell,1603\npile,1,allswellthatendswell,1603\nTongue,1,allswellthatendswell,1603\nlustier,1,allswellthatendswell,1603\npilgrimage,1,allswellthatendswell,1603\nlamentation,1,allswellthatendswell,1603\nyear',1,allswellthatendswell,1603\ncorner,1,allswellthatendswell,1603\nPapist,1,allswellthatendswell,1603\ndram,1,allswellthatendswell,1603\nAustria,1,allswellthatendswell,1603\nverbal,1,allswellthatendswell,1603\nbroken,1,allswellthatendswell,1603\namended,1,allswellthatendswell,1603\nbrokes,1,allswellthatendswell,1603\nproceeds,1,allswellthatendswell,1603\nEnd,1,allswellthatendswell,1603\nsucceeding,1,allswellthatendswell,1603\npatent,1,allswellthatendswell,1603\nhonestly,1,allswellthatendswell,1603\nconcerns,1,allswellthatendswell,1603\nheat,1,allswellthatendswell,1603\nsources,1,allswellthatendswell,1603\nadditions,1,allswellthatendswell,1603\nKnow'st,1,allswellthatendswell,1603\nroar'd,1,allswellthatendswell,1603\nsparks,1,allswellthatendswell,1603\njowl,1,allswellthatendswell,1603\ncheer,1,allswellthatendswell,1603\nundoing,1,allswellthatendswell,1603\nexclaim,1,allswellthatendswell,1603\nwants,1,allswellthatendswell,1603\nhearing,1,allswellthatendswell,1603\npolicy,1,allswellthatendswell,1603\nrepetition,1,allswellthatendswell,1603\ndemands,1,allswellthatendswell,1603\ngross,1,allswellthatendswell,1603\ncollateral,1,allswellthatendswell,1603\nglass,1,allswellthatendswell,1603\nforswear't,1,allswellthatendswell,1603\nsixteen,1,allswellthatendswell,1603\nbuttering,1,allswellthatendswell,1603\nwrong'st,1,allswellthatendswell,1603\naddition,1,allswellthatendswell,1603\nsoft,1,allswellthatendswell,1603\nnoise,1,allswellthatendswell,1603\nricher,1,allswellthatendswell,1603\nbated,1,allswellthatendswell,1603\nblessed,1,allswellthatendswell,1603\nreliques,1,allswellthatendswell,1603\nbachelors,1,allswellthatendswell,1603\ninhuman,1,allswellthatendswell,1603\namity,1,allswellthatendswell,1603\nMadding,1,allswellthatendswell,1603\ningenious,1,allswellthatendswell,1603\nkin,1,allswellthatendswell,1603\nbegan,1,allswellthatendswell,1603\nCupid,1,allswellthatendswell,1603\ngeneral's,1,allswellthatendswell,1603\nbelieve't,1,allswellthatendswell,1603\nGentle,1,allswellthatendswell,1603\ncounterpoise,1,allswellthatendswell,1603\nanatomized,1,allswellthatendswell,1603\ngroats,1,allswellthatendswell,1603\nmounts,1,allswellthatendswell,1603\nsinful,1,allswellthatendswell,1603\ndiscovery,1,allswellthatendswell,1603\nPerchance,1,allswellthatendswell,1603\nbareness,1,allswellthatendswell,1603\nimpostor,1,allswellthatendswell,1603\npancake,1,allswellthatendswell,1603\nrarest,1,allswellthatendswell,1603\nwarnings,1,allswellthatendswell,1603\nI'm,1,allswellthatendswell,1603\nI'd,1,allswellthatendswell,1603\ntalked,1,allswellthatendswell,1603\nsums,1,allswellthatendswell,1603\ndeeper,1,allswellthatendswell,1603\nindignity,1,allswellthatendswell,1603\negregious,1,allswellthatendswell,1603\ncaptious,1,allswellthatendswell,1603\n'then',1,allswellthatendswell,1603\ncourtly,1,allswellthatendswell,1603\naged,1,allswellthatendswell,1603\nsender,1,allswellthatendswell,1603\nkey,1,allswellthatendswell,1603\nthou't,1,allswellthatendswell,1603\nlaugh'd,1,allswellthatendswell,1603\nChange,1,allswellthatendswell,1603\nwagon,1,allswellthatendswell,1603\njeweller,1,allswellthatendswell,1603\nworthiest,1,allswellthatendswell,1603\nacutely,1,allswellthatendswell,1603\nassails,1,allswellthatendswell,1603\nsex,1,allswellthatendswell,1603\nmerry,1,allswellthatendswell,1603\nmonarch,1,allswellthatendswell,1603\nidolatrous,1,allswellthatendswell,1603\nboskos,1,allswellthatendswell,1603\ntouched,1,allswellthatendswell,1603\nDutchman,1,allswellthatendswell,1603\nrecantation,1,allswellthatendswell,1603\nPraising,1,allswellthatendswell,1603\ntithe,1,allswellthatendswell,1603\nkneel'd,1,allswellthatendswell,1603\ndeceit,1,allswellthatendswell,1603\nthrone,1,allswellthatendswell,1603\nanew,1,allswellthatendswell,1603\npeevish,1,allswellthatendswell,1603\npassport,1,allswellthatendswell,1603\nhowsome'er,1,allswellthatendswell,1603\nshackle,1,allswellthatendswell,1603\nfell,1,allswellthatendswell,1603\nabused,1,allswellthatendswell,1603\nyield,1,allswellthatendswell,1603\nconcern,1,allswellthatendswell,1603\nscore,1,allswellthatendswell,1603\nperil,1,allswellthatendswell,1603\nactor,1,allswellthatendswell,1603\neunuchs,1,allswellthatendswell,1603\nconfirmed,1,allswellthatendswell,1603\npremises,1,allswellthatendswell,1603\nembrace,1,allswellthatendswell,1603\n'longing,1,allswellthatendswell,1603\nbraving,1,allswellthatendswell,1603\nExcellently,1,allswellthatendswell,1603\navails,1,allswellthatendswell,1603\nentail,1,allswellthatendswell,1603\navail,1,allswellthatendswell,1603\nscorn'd,1,allswellthatendswell,1603\ndiurnal,1,allswellthatendswell,1603\nfamed,1,allswellthatendswell,1603\njustices,1,allswellthatendswell,1603\nconfident,1,allswellthatendswell,1603\n'not',1,allswellthatendswell,1603\nMerely,1,allswellthatendswell,1603\n'a,1,allswellthatendswell,1603\nfollower,1,allswellthatendswell,1603\nraised,1,allswellthatendswell,1603\nfashions,1,allswellthatendswell,1603\nfollowed,1,allswellthatendswell,1603\nlawfully,1,allswellthatendswell,1603\nwhere's,1,allswellthatendswell,1603\nhotter,1,allswellthatendswell,1603\nattends,1,allswellthatendswell,1603\nheadsman,1,allswellthatendswell,1603\nprocured,1,allswellthatendswell,1603\nbow'd,1,allswellthatendswell,1603\nlivery,1,allswellthatendswell,1603\ndesign,1,allswellthatendswell,1603\nDistracted,1,allswellthatendswell,1603\ntestament,1,allswellthatendswell,1603\ndisgrace,1,allswellthatendswell,1603\nexorcist,1,allswellthatendswell,1603\npitiful,1,allswellthatendswell,1603\nsky,1,allswellthatendswell,1603\ninstruct,1,allswellthatendswell,1603\ngroans,1,allswellthatendswell,1603\ngather,1,allswellthatendswell,1603\nDoctor,1,allswellthatendswell,1603\nbarefoot,1,allswellthatendswell,1603\ndoubt,1,allswellthatendswell,1603\nThanks,1,allswellthatendswell,1603\nyonder's,1,allswellthatendswell,1603\nServant,1,allswellthatendswell,1603\npurifying,1,allswellthatendswell,1603\npieces,1,allswellthatendswell,1603\nscope,1,allswellthatendswell,1603\nbecomes,1,allswellthatendswell,1603\ncheese,1,allswellthatendswell,1603\nadverse,1,allswellthatendswell,1603\nSteals,1,allswellthatendswell,1603\namiss,1,allswellthatendswell,1603\ndaughter's,1,allswellthatendswell,1603\nreal,1,allswellthatendswell,1603\nstuck,1,allswellthatendswell,1603\nabstract,1,allswellthatendswell,1603\nordinaries,1,allswellthatendswell,1603\nloneliness,1,allswellthatendswell,1603\nergo,1,allswellthatendswell,1603\neverlasting,1,allswellthatendswell,1603\nreap,1,allswellthatendswell,1603\nPeruse,1,allswellthatendswell,1603\nperverted,1,allswellthatendswell,1603\nheavens,1,allswellthatendswell,1603\nguide,1,allswellthatendswell,1603\ncassocks,1,allswellthatendswell,1603\npassed,1,allswellthatendswell,1603\nfight,1,allswellthatendswell,1603\nbraid,1,allswellthatendswell,1603\ndebosh'd,1,allswellthatendswell,1603\nWast,1,allswellthatendswell,1603\nsnow,1,allswellthatendswell,1603\nhappen,1,allswellthatendswell,1603\npiece,1,allswellthatendswell,1603\nCommit,1,allswellthatendswell,1603\nchicurmurco,1,allswellthatendswell,1603\nrevives,1,allswellthatendswell,1603\nonions,1,allswellthatendswell,1603\nOfficers,1,allswellthatendswell,1603\nrhyme,1,allswellthatendswell,1603\nloathes,1,allswellthatendswell,1603\npestiferous,1,allswellthatendswell,1603\nestimate,1,allswellthatendswell,1603\ndifferences,1,allswellthatendswell,1603\nWhereof,1,allswellthatendswell,1603\nfigure,1,allswellthatendswell,1603\nseeds,1,allswellthatendswell,1603\ndieted,1,allswellthatendswell,1603\nTurk,1,allswellthatendswell,1603\nunserviceable,1,allswellthatendswell,1603\nMayst,1,allswellthatendswell,1603\nruns,1,allswellthatendswell,1603\nWish,1,allswellthatendswell,1603\nword's,1,allswellthatendswell,1603\nsalad,1,allswellthatendswell,1603\nterms,1,allswellthatendswell,1603\nloose,1,allswellthatendswell,1603\nseeks,1,allswellthatendswell,1603\ncommit,1,allswellthatendswell,1603\neldest,1,allswellthatendswell,1603\ninstance,1,allswellthatendswell,1603\ndispleasures,1,allswellthatendswell,1603\nunable,1,allswellthatendswell,1603\naustere,1,allswellthatendswell,1603\nuntrue,1,allswellthatendswell,1603\nwhite,1,allswellthatendswell,1603\nencourage,1,allswellthatendswell,1603\njacet,1,allswellthatendswell,1603\npears,1,allswellthatendswell,1603\nWhilst,1,allswellthatendswell,1603\nmouthed,1,allswellthatendswell,1603\ncries,1,allswellthatendswell,1603\nminority,1,allswellthatendswell,1603\nscarre,1,allswellthatendswell,1603\nvanity,1,allswellthatendswell,1603\nHers,1,allswellthatendswell,1603\nfeed,1,allswellthatendswell,1603\nfearful,1,allswellthatendswell,1603\nbride,1,allswellthatendswell,1603\nforefinger,1,allswellthatendswell,1603\ngirls,1,allswellthatendswell,1603\nfeel,1,allswellthatendswell,1603\nrush,1,allswellthatendswell,1603\nunbridled,1,allswellthatendswell,1603\ncease,1,allswellthatendswell,1603\nhoodwink'd,1,allswellthatendswell,1603\nswore,1,allswellthatendswell,1603\ncoragio,1,allswellthatendswell,1603\nmalice,1,allswellthatendswell,1603\ninfallible,1,allswellthatendswell,1603\noutruns,1,allswellthatendswell,1603\ncuckoo,1,allswellthatendswell,1603\nbrine,1,allswellthatendswell,1603\ndial,1,allswellthatendswell,1603\nbaser,1,allswellthatendswell,1603\nancient,1,allswellthatendswell,1603\nbehaviors,1,allswellthatendswell,1603\nintimate,1,allswellthatendswell,1603\ntortures,1,allswellthatendswell,1603\nspeaking,1,allswellthatendswell,1603\nwine,1,allswellthatendswell,1603\nrude,1,allswellthatendswell,1603\nputting,1,allswellthatendswell,1603\nFly,1,allswellthatendswell,1603\nmanor,1,allswellthatendswell,1603\nbauble,1,allswellthatendswell,1603\nrejoices,1,allswellthatendswell,1603\ntax,1,allswellthatendswell,1603\nward,1,allswellthatendswell,1603\nwished,1,allswellthatendswell,1603\nHence,1,allswellthatendswell,1603\nnails,1,allswellthatendswell,1603\ntragedians,1,allswellthatendswell,1603\nwins,1,allswellthatendswell,1603\nkneel,1,allswellthatendswell,1603\noily,1,allswellthatendswell,1603\nfailed,1,allswellthatendswell,1603\nmonarchy,1,allswellthatendswell,1603\nrend,1,allswellthatendswell,1603\nCrying,1,allswellthatendswell,1603\nsphere,1,allswellthatendswell,1603\nvendible,1,allswellthatendswell,1603\nobstinacy,1,allswellthatendswell,1603\nSafer,1,allswellthatendswell,1603\nlength,1,allswellthatendswell,1603\ncatch'd,1,allswellthatendswell,1603\ndamnable,1,allswellthatendswell,1603\nAdvancing,1,allswellthatendswell,1603\nFontibell,1,allswellthatendswell,1603\nentertained,1,allswellthatendswell,1603\nruff,1,allswellthatendswell,1603\nrely,1,allswellthatendswell,1603\nedge,1,allswellthatendswell,1603\nstrew'd,1,allswellthatendswell,1603\nstead,1,allswellthatendswell,1603\ndearer,1,allswellthatendswell,1603\nastonish,1,allswellthatendswell,1603\ndebile,1,allswellthatendswell,1603\nhater,1,allswellthatendswell,1603\ndiet,1,allswellthatendswell,1603\nladyship's,1,allswellthatendswell,1603\ntrifles,1,allswellthatendswell,1603\nponiards,1,allswellthatendswell,1603\ndied,1,allswellthatendswell,1603\nthrown,1,allswellthatendswell,1603\nunbaked,1,allswellthatendswell,1603\nlinta,1,allswellthatendswell,1603\naccuse,1,allswellthatendswell,1603\nsucceed,1,allswellthatendswell,1603\nsooth,1,allswellthatendswell,1603\nheraldry,1,allswellthatendswell,1603\nworld's,1,allswellthatendswell,1603\nDane,1,allswellthatendswell,1603\nbond,1,allswellthatendswell,1603\ncunning,1,allswellthatendswell,1603\nrule,1,allswellthatendswell,1603\ntriple,1,allswellthatendswell,1603\nmeat,1,allswellthatendswell,1603\no'erflow,1,allswellthatendswell,1603\nwash,1,allswellthatendswell,1603\nmelted,1,allswellthatendswell,1603\ndistress,1,allswellthatendswell,1603\nboot,1,allswellthatendswell,1603\nsteed,1,allswellthatendswell,1603\nfamiliarity,1,allswellthatendswell,1603\ntortured,1,allswellthatendswell,1603\nFoh,1,allswellthatendswell,1603\nwast,1,allswellthatendswell,1603\ndiscoveries,1,allswellthatendswell,1603\nmanly,1,allswellthatendswell,1603\nsally,1,allswellthatendswell,1603\nmarrow,1,allswellthatendswell,1603\nblazing,1,allswellthatendswell,1603\nSkill,1,allswellthatendswell,1603\ntend,1,allswellthatendswell,1603\ncanary,1,allswellthatendswell,1603\nTraduced,1,allswellthatendswell,1603\nMuskos',1,allswellthatendswell,1603\nsmoked,1,allswellthatendswell,1603\ninfirmity,1,allswellthatendswell,1603\ncreated,1,allswellthatendswell,1603\npraises,1,allswellthatendswell,1603\nsceptre,1,allswellthatendswell,1603\ntent,1,allswellthatendswell,1603\nmusics,1,allswellthatendswell,1603\nfoolhardy,1,allswellthatendswell,1603\nhealthful,1,allswellthatendswell,1603\ndeserves,1,allswellthatendswell,1603\nchimurcho,1,allswellthatendswell,1603\nproject,1,allswellthatendswell,1603\njarring,1,allswellthatendswell,1603\nurge,1,allswellthatendswell,1603\nframes,1,allswellthatendswell,1603\nbig,1,allswellthatendswell,1603\nsenses,1,allswellthatendswell,1603\nwherefore,1,allswellthatendswell,1603\nnail,1,allswellthatendswell,1603\nmistaken,1,allswellthatendswell,1603\ncontrives,1,allswellthatendswell,1603\nappointments,1,allswellthatendswell,1603\nside,1,allswellthatendswell,1603\nbastards,1,allswellthatendswell,1603\nsauciness,1,allswellthatendswell,1603\nProffers,1,allswellthatendswell,1603\nstir,1,allswellthatendswell,1603\n'But,1,allswellthatendswell,1603\nThroca,1,allswellthatendswell,1603\nmortality,1,allswellthatendswell,1603\nadmiringly,1,allswellthatendswell,1603\nstrongly,1,allswellthatendswell,1603\nHold,1,allswellthatendswell,1603\nprecisely,1,allswellthatendswell,1603\nPriam's,1,allswellthatendswell,1603\ninducement,1,allswellthatendswell,1603\nVaumond,1,allswellthatendswell,1603\nsnuff,1,allswellthatendswell,1603\nA',1,allswellthatendswell,1603\ndrudge,1,allswellthatendswell,1603\nperspective,1,allswellthatendswell,1603\nsift,1,allswellthatendswell,1603\nHoly,1,allswellthatendswell,1603\nutter,1,allswellthatendswell,1603\noffend,1,allswellthatendswell,1603\nluckiest,1,allswellthatendswell,1603\ndelivering,1,allswellthatendswell,1603\norator,1,allswellthatendswell,1603\nreligious,1,allswellthatendswell,1603\ndelights,1,allswellthatendswell,1603\ngranted,1,allswellthatendswell,1603\nCharbon,1,allswellthatendswell,1603\n'Twere,1,allswellthatendswell,1603\npulse,1,allswellthatendswell,1603\npar,1,allswellthatendswell,1603\nunsettled,1,allswellthatendswell,1603\ninter'gatories,1,allswellthatendswell,1603\nballs,1,allswellthatendswell,1603\nperfection,1,allswellthatendswell,1603\nAh,1,allswellthatendswell,1603\nAm,1,allswellthatendswell,1603\nspoil,1,allswellthatendswell,1603\nquarrel,1,allswellthatendswell,1603\npersists,1,allswellthatendswell,1603\ninformed,1,allswellthatendswell,1603\nchaste,1,allswellthatendswell,1603\nreplete,1,allswellthatendswell,1603\nMeans,1,allswellthatendswell,1603\nhilding,1,allswellthatendswell,1603\nmotives,1,allswellthatendswell,1603\nfool'd,1,allswellthatendswell,1603\nyouthful,1,allswellthatendswell,1603\nbox,1,allswellthatendswell,1603\nbow,1,allswellthatendswell,1603\nHim,1,allswellthatendswell,1603\nloath,1,allswellthatendswell,1603\nstrangers,1,allswellthatendswell,1603\nalarum,1,allswellthatendswell,1603\ndiverted,1,allswellthatendswell,1603\nadversaries,1,allswellthatendswell,1603\nlanguages,1,allswellthatendswell,1603\nreason's,1,allswellthatendswell,1603\namong,1,allswellthatendswell,1603\ndoctors,1,allswellthatendswell,1603\nhen,1,allswellthatendswell,1603\nHaving,1,allswellthatendswell,1603\n'After,1,allswellthatendswell,1603\nspots,1,allswellthatendswell,1603\nbannerets,1,allswellthatendswell,1603\nmourningly,1,allswellthatendswell,1603\nMe,1,allswellthatendswell,1603\nbay,1,allswellthatendswell,1603\nsiege,1,allswellthatendswell,1603\nperformer,1,allswellthatendswell,1603\nImpossible,1,allswellthatendswell,1603\nStand,1,allswellthatendswell,1603\nladyship,1,allswellthatendswell,1603\nspeakest,1,allswellthatendswell,1603\ncruel,1,allswellthatendswell,1603\nThirty,1,allswellthatendswell,1603\ngreatly,1,allswellthatendswell,1603\nbelike,1,allswellthatendswell,1603\nlottery,1,allswellthatendswell,1603\nhouse's,1,allswellthatendswell,1603\npitied,1,allswellthatendswell,1603\ninnocent,1,allswellthatendswell,1603\n'her',1,allswellthatendswell,1603\ndifficulty,1,allswellthatendswell,1603\nconceived,1,allswellthatendswell,1603\ngoaded,1,allswellthatendswell,1603\nCosmo,1,allswellthatendswell,1603\nchanged,1,allswellthatendswell,1603\nmotions,1,allswellthatendswell,1603\nremainder,1,allswellthatendswell,1603\nenter'd,1,allswellthatendswell,1603\ninherits,1,allswellthatendswell,1603\nexact,1,allswellthatendswell,1603\nflowery,1,allswellthatendswell,1603\nrequired,1,allswellthatendswell,1603\nbunting,1,allswellthatendswell,1603\nbee,1,allswellthatendswell,1603\nmeant,1,allswellthatendswell,1603\nsovereignty,1,allswellthatendswell,1603\nteam,1,allswellthatendswell,1603\ndinner,1,allswellthatendswell,1603\nowner,1,allswellthatendswell,1603\nReligious,1,allswellthatendswell,1603\nsurely,1,allswellthatendswell,1603\nfettering,1,allswellthatendswell,1603\nthitherward,1,allswellthatendswell,1603\nApproved,1,allswellthatendswell,1603\nsoundness,1,allswellthatendswell,1603\nease,1,allswellthatendswell,1603\neagerness,1,allswellthatendswell,1603\nmuskets,1,allswellthatendswell,1603\ncontracted,1,allswellthatendswell,1603\nsalads,1,allswellthatendswell,1603\nunchaste,1,allswellthatendswell,1603\ndenial,1,allswellthatendswell,1603\npate,1,allswellthatendswell,1603\nLet's,1,allswellthatendswell,1603\ncommendation,1,allswellthatendswell,1603\npie,1,allswellthatendswell,1603\nabhorred,1,allswellthatendswell,1603\nDutch,1,allswellthatendswell,1603\nelection,1,allswellthatendswell,1603\noff's,1,allswellthatendswell,1603\npin,1,allswellthatendswell,1603\nstem,1,allswellthatendswell,1603\nwedded,1,allswellthatendswell,1603\nthreateningly,1,allswellthatendswell,1603\nstep,1,allswellthatendswell,1603\nheroes,1,allswellthatendswell,1603\nIs't,1,allswellthatendswell,1603\nGuiltian,1,allswellthatendswell,1603\nnice,1,allswellthatendswell,1603\ncustomer,1,allswellthatendswell,1603\nMere,1,allswellthatendswell,1603\nVI,1,allswellthatendswell,1603\nformerly,1,allswellthatendswell,1603\nprostitute,1,allswellthatendswell,1603\nHoodman,1,allswellthatendswell,1603\nheads,1,allswellthatendswell,1603\nsire,1,allswellthatendswell,1603\nbecame,1,allswellthatendswell,1603\nobey,1,allswellthatendswell,1603\nsurprise,1,allswellthatendswell,1603\nfoully,1,allswellthatendswell,1603\ncourteous,1,allswellthatendswell,1603\nAdieu,1,allswellthatendswell,1603\ntheft,1,allswellthatendswell,1603\noffered,1,allswellthatendswell,1603\nvilliando,1,allswellthatendswell,1603\nruttish,1,allswellthatendswell,1603\ndoers,1,allswellthatendswell,1603\ncatalogue,1,allswellthatendswell,1603\ninaidible,1,allswellthatendswell,1603\nDeadly,1,allswellthatendswell,1603\nthorn,1,allswellthatendswell,1603\nsith,1,allswellthatendswell,1603\nrepeated,1,allswellthatendswell,1603\nweek,1,allswellthatendswell,1603\nstraw,1,allswellthatendswell,1603\nbend,1,allswellthatendswell,1603\nReceive,1,allswellthatendswell,1603\n'the,1,allswellthatendswell,1603\nsooner,1,allswellthatendswell,1603\nfields,1,allswellthatendswell,1603\nquick'st,1,allswellthatendswell,1603\ndrunkenness,1,allswellthatendswell,1603\npreserver,1,allswellthatendswell,1603\nbehind,1,allswellthatendswell,1603\nworshipper,1,allswellthatendswell,1603\npossibility,1,allswellthatendswell,1603\ndifference,1,allswellthatendswell,1603\nunfit,1,allswellthatendswell,1603\nsorts,1,allswellthatendswell,1603\nlanguishes,1,allswellthatendswell,1603\ncanon,1,allswellthatendswell,1603\nsucceeded,1,allswellthatendswell,1603\nException,1,allswellthatendswell,1603\nbreathing,1,allswellthatendswell,1603\nchildren,1,allswellthatendswell,1603\ngoodlier,1,allswellthatendswell,1603\nawaked,1,allswellthatendswell,1603\ntell'st,1,allswellthatendswell,1603\ncongregated,1,allswellthatendswell,1603\nnaming,1,allswellthatendswell,1603\naltar,1,allswellthatendswell,1603\nextended,1,allswellthatendswell,1603\nstrives,1,allswellthatendswell,1603\ndote,1,allswellthatendswell,1603\nparing,1,allswellthatendswell,1603\nreference,1,allswellthatendswell,1603\nimmediate,1,allswellthatendswell,1603\nanything,1,allswellthatendswell,1603\ncouch,1,allswellthatendswell,1603\nsacrament,1,allswellthatendswell,1603\nsomewhat,1,allswellthatendswell,1603\nbent,1,allswellthatendswell,1603\nempirics,1,allswellthatendswell,1603\ncraft,1,allswellthatendswell,1603\ntreasons,1,allswellthatendswell,1603\nimperial,1,allswellthatendswell,1603\nStrange,1,allswellthatendswell,1603\nCheque,1,allswellthatendswell,1603\ntravails,1,allswellthatendswell,1603\nsustain,1,allswellthatendswell,1603\nshadow,1,allswellthatendswell,1603\nLies,1,allswellthatendswell,1603\ndisclose,1,allswellthatendswell,1603\nyond's,1,allswellthatendswell,1603\nTucket,1,allswellthatendswell,1603\nsuddenly,1,allswellthatendswell,1603\nsieve,1,allswellthatendswell,1603\nserpent,1,allswellthatendswell,1603\nkeep'st,1,allswellthatendswell,1603\ngamester,1,allswellthatendswell,1603\nextreme,1,allswellthatendswell,1603\nSpanish,1,allswellthatendswell,1603\ntedious,1,allswellthatendswell,1603\nfriendly,1,allswellthatendswell,1603\ndescents,1,allswellthatendswell,1603\nverity,1,allswellthatendswell,1603\nworship's,1,allswellthatendswell,1603\namongst,1,allswellthatendswell,1603\nraising,1,allswellthatendswell,1603\ncruelly,1,allswellthatendswell,1603\npreserve,1,allswellthatendswell,1603\nAs't,1,allswellthatendswell,1603\nsurvey,1,allswellthatendswell,1603\nlonger,1,allswellthatendswell,1603\nO'er,1,allswellthatendswell,1603\nwheresoe'er,1,allswellthatendswell,1603\ngown,1,allswellthatendswell,1603\nswine,1,allswellthatendswell,1603\ndivine,1,allswellthatendswell,1603\nenterprise,1,allswellthatendswell,1603\nsink,1,allswellthatendswell,1603\nLike,1,allswellthatendswell,1603\nStrengthen'd,1,allswellthatendswell,1603\nWhither,1,allswellthatendswell,1603\nstretch,1,allswellthatendswell,1603\ndeservings,1,allswellthatendswell,1603\nashamed,1,allswellthatendswell,1603\nturns,1,allswellthatendswell,1603\nimmortal,1,allswellthatendswell,1603\nmonth's,1,allswellthatendswell,1603\ncramp,1,allswellthatendswell,1603\nring's,1,allswellthatendswell,1603\ncrowns,1,allswellthatendswell,1603\ninheritance,1,allswellthatendswell,1603\ntraitress,1,allswellthatendswell,1603\norgan,1,allswellthatendswell,1603\nquite,1,allswellthatendswell,1603\nmagnanimous,1,allswellthatendswell,1603\nshrieve's,1,allswellthatendswell,1603\npasty,1,allswellthatendswell,1603\ncustard,1,allswellthatendswell,1603\ndogs,1,allswellthatendswell,1603\ncollege,1,allswellthatendswell,1603\nflourishes,1,allswellthatendswell,1603\nsolely,1,allswellthatendswell,1603\ncurls,1,allswellthatendswell,1603\ndeem,1,allswellthatendswell,1603\ndeep,1,allswellthatendswell,1603\ndeer,1,allswellthatendswell,1603\nsaffron,1,allswellthatendswell,1603\naffection,1,allswellthatendswell,1603\nforgive,1,allswellthatendswell,1603\n'but,1,allswellthatendswell,1603\nmood,1,allswellthatendswell,1603\nimage,1,allswellthatendswell,1603\nbreast,1,allswellthatendswell,1603\nblowing,1,allswellthatendswell,1603\nFortune,1,allswellthatendswell,1603\nail,1,allswellthatendswell,1603\nreave,1,allswellthatendswell,1603\nbutter,1,allswellthatendswell,1603\nDurst,1,allswellthatendswell,1603\ncitadel,1,allswellthatendswell,1603\nsnatch'd,1,allswellthatendswell,1603\nyea,1,allswellthatendswell,1603\ndu,1,allswellthatendswell,1603\nbarely,1,allswellthatendswell,1603\nunfeignedly,1,allswellthatendswell,1603\nsatisfy,1,allswellthatendswell,1603\ndispositions,1,allswellthatendswell,1603\nconsider,1,allswellthatendswell,1603\ntook'st,1,allswellthatendswell,1603\nAdvise,1,allswellthatendswell,1603\nwreck,1,allswellthatendswell,1603\nstool,1,allswellthatendswell,1603\nMaking,1,allswellthatendswell,1603\nyes,1,allswellthatendswell,1603\nlegs,1,allswellthatendswell,1603\nbeam,1,allswellthatendswell,1603\nnotes,1,allswellthatendswell,1603\nhandsome,1,allswellthatendswell,1603\namendment,1,allswellthatendswell,1603\nstone,1,allswellthatendswell,1603\ncaitiff,1,allswellthatendswell,1603\nfishpond,1,allswellthatendswell,1603\n''tis,1,allswellthatendswell,1603\nexpose,1,allswellthatendswell,1603\ngait,1,allswellthatendswell,1603\ndignity,1,allswellthatendswell,1603\ncommanders,1,allswellthatendswell,1603\npriest,1,allswellthatendswell,1603\nengines,1,allswellthatendswell,1603\n'Fore,1,allswellthatendswell,1603\nrector,1,allswellthatendswell,1603\nnobleman,1,allswellthatendswell,1603\nBesides,1,allswellthatendswell,1603\nplayed,1,allswellthatendswell,1603\nseeming,1,allswellthatendswell,1603\nenforce,1,allswellthatendswell,1603\nSebastian,1,allswellthatendswell,1603\nthirds,1,allswellthatendswell,1603\nmilitarist,1,allswellthatendswell,1603\ntouch'd,1,allswellthatendswell,1603\naccused,1,allswellthatendswell,1603\nforged,1,allswellthatendswell,1603\ntorcher,1,allswellthatendswell,1603\nlady's,1,allswellthatendswell,1603\nice,1,allswellthatendswell,1603\nby't,1,allswellthatendswell,1603\nmakest,1,allswellthatendswell,1603\ntrophy,1,allswellthatendswell,1603\noffendress,1,allswellthatendswell,1603\napes,1,allswellthatendswell,1603\n'prentice,1,allswellthatendswell,1603\nforges,1,allswellthatendswell,1603\nforget,1,allswellthatendswell,1603\nwench,1,allswellthatendswell,1603\npiercing,1,allswellthatendswell,1603\ndoor,1,allswellthatendswell,1603\nforgotten,1,allswellthatendswell,1603\nfixed,1,allswellthatendswell,1603\ninclusive,1,allswellthatendswell,1603\ncured,1,allswellthatendswell,1603\ndried,1,allswellthatendswell,1603\nfeast,1,allswellthatendswell,1603\ntinct,1,allswellthatendswell,1603\nunseal'd,1,allswellthatendswell,1603\nask'd,1,allswellthatendswell,1603\nknow't,1,allswellthatendswell,1603\nattending,1,allswellthatendswell,1603\ncommend,1,allswellthatendswell,1603\nthreaten,1,allswellthatendswell,1603\ndamn'd,1,allswellthatendswell,1603\nplant,1,allswellthatendswell,1603\narmipotent,1,allswellthatendswell,1603\nnecessity,1,allswellthatendswell,1603\nutmost,1,allswellthatendswell,1603\naside,1,allswellthatendswell,1603\nCargo,1,allswellthatendswell,1603\nwrinkles,1,allswellthatendswell,1603\nnovices,1,allswellthatendswell,1603\nremainders,1,allswellthatendswell,1603\nseventeen,1,allswellthatendswell,1603\nwhereof,1,allswellthatendswell,1603\ncollected,1,allswellthatendswell,1603\ncatastrophe,1,allswellthatendswell,1603\nmalignant,1,allswellthatendswell,1603\nLays,1,allswellthatendswell,1603\nauspicious,1,allswellthatendswell,1603\nreveal,1,allswellthatendswell,1603\ninhibited,1,allswellthatendswell,1603\naccomplished,1,allswellthatendswell,1603\neminent,1,allswellthatendswell,1603\ncrimes,1,allswellthatendswell,1603\n'twould,1,allswellthatendswell,1603\nrapes,1,allswellthatendswell,1603\nlover,1,allswellthatendswell,1603\nchallenges,1,allswellthatendswell,1603\nachieves,1,allswellthatendswell,1603\npuritan,1,allswellthatendswell,1603\nhadst,1,allswellthatendswell,1603\noffences,1,allswellthatendswell,1603\nmites,1,allswellthatendswell,1603\ndoer's,1,allswellthatendswell,1603\nsharply,1,allswellthatendswell,1603\nloud,1,allswellthatendswell,1603\nendure,1,allswellthatendswell,1603\ncurbed,1,allswellthatendswell,1603\nparents,1,allswellthatendswell,1603\ncommands,1,allswellthatendswell,1603\nadd,1,allswellthatendswell,1603\nspeak'st,1,allswellthatendswell,1603\nAcquaint,1,allswellthatendswell,1603\nresolved,1,allswellthatendswell,1603\nGrief,1,allswellthatendswell,1603\ntalkest,1,allswellthatendswell,1603\nafternoon,1,allswellthatendswell,1603\nravishments,1,allswellthatendswell,1603\nquoted,1,allswellthatendswell,1603\nweakest,1,allswellthatendswell,1603\nace,1,allswellthatendswell,1603\ndole,1,allswellthatendswell,1603\napparel,1,allswellthatendswell,1603\nremoves,1,allswellthatendswell,1603\nlock'd,1,allswellthatendswell,1603\ngreater,1,allswellthatendswell,1603\nyoung',1,allswellthatendswell,1603\nincertain,1,allswellthatendswell,1603\nshow'd,1,allswellthatendswell,1603\nforgot,1,allswellthatendswell,1603\nknee,1,allswellthatendswell,1603\nhoodwink,1,allswellthatendswell,1603\nattain,1,allswellthatendswell,1603\nscatter'd,1,allswellthatendswell,1603\nthought'st,1,allswellthatendswell,1603\nnatures,1,allswellthatendswell,1603\npure,1,allswellthatendswell,1603\nmarr'd,1,allswellthatendswell,1603\nBecause,1,allswellthatendswell,1603\nprescriptions,1,allswellthatendswell,1603\nGuards,1,allswellthatendswell,1603\nbriers,1,allswellthatendswell,1603\nexcels,1,allswellthatendswell,1603\nBlessing,1,allswellthatendswell,1603\nabandoned,1,allswellthatendswell,1603\nswell's,1,allswellthatendswell,1603\nzealous,1,allswellthatendswell,1603\nharm'd,1,allswellthatendswell,1603\npomegranate,1,allswellthatendswell,1603\nthrice,1,allswellthatendswell,1603\ntucket,1,allswellthatendswell,1603\nhark,1,allswellthatendswell,1603\nWhence,1,allswellthatendswell,1603\nMort,1,allswellthatendswell,1603\nHaply,1,allswellthatendswell,1603\neats,1,allswellthatendswell,1603\npunk,1,allswellthatendswell,1603\nrunning,1,allswellthatendswell,1603\nbotcher's,1,allswellthatendswell,1603\no'erta'en,1,allswellthatendswell,1603\nensconcing,1,allswellthatendswell,1603\nblamed,1,allswellthatendswell,1603\nability,1,allswellthatendswell,1603\nscratch,1,allswellthatendswell,1603\noutward,1,allswellthatendswell,1603\nBrought,1,allswellthatendswell,1603\nblames,1,allswellthatendswell,1603\nplume,1,allswellthatendswell,1603\npare,1,allswellthatendswell,1603\nfield,1,allswellthatendswell,1603\nartists,1,allswellthatendswell,1603\ndistil,1,allswellthatendswell,1603\npeering,1,allswellthatendswell,1603\nfasten'd,1,allswellthatendswell,1603\npour'd,1,allswellthatendswell,1603\nCamp,1,allswellthatendswell,1603\nstripped,1,allswellthatendswell,1603\nplod,1,allswellthatendswell,1603\nafford,1,allswellthatendswell,1603\nflinch,1,allswellthatendswell,1603\nmanifold,1,allswellthatendswell,1603\ncrow,1,allswellthatendswell,1603\nlabouring,1,allswellthatendswell,1603\nChristian,1,allswellthatendswell,1603\ncrop,1,allswellthatendswell,1603\nstaining,1,allswellthatendswell,1603\nkingly,1,allswellthatendswell,1603\nsenseless,1,allswellthatendswell,1603\nunworthiness,1,allswellthatendswell,1603\nshallow,1,allswellthatendswell,1603\nimpression,1,allswellthatendswell,1603\npale,1,allswellthatendswell,1603\ncoldest,1,allswellthatendswell,1603\nHercules,1,allswellthatendswell,1603\nperform'd,1,allswellthatendswell,1603\nRead,1,allswellthatendswell,1603\nUnblinding,1,allswellthatendswell,1603\nrepeal'd,1,allswellthatendswell,1603\ncites,1,allswellthatendswell,1603\nrepeat,1,allswellthatendswell,1603\nBeware,1,allswellthatendswell,1603\nUnquestion'd,1,allswellthatendswell,1603\nre,1,allswellthatendswell,1603\nLady,1,allswellthatendswell,1603\nreach,1,allswellthatendswell,1603\nimpositions,1,allswellthatendswell,1603\nswiftest,1,allswellthatendswell,1603\nconfession,1,allswellthatendswell,1603\njades',1,allswellthatendswell,1603\nporridge,1,allswellthatendswell,1603\nShrove,1,allswellthatendswell,1603\nsuitors,1,allswellthatendswell,1603\nManka,1,allswellthatendswell,1603\nintenible,1,allswellthatendswell,1603\nremembrances,1,allswellthatendswell,1603\nrestrained,1,allswellthatendswell,1603\nBrings,1,allswellthatendswell,1603\nperpetual,1,allswellthatendswell,1603\nacquaintance,1,allswellthatendswell,1603\nROUSILLON,1,allswellthatendswell,1603\nopen,1,allswellthatendswell,1603\narm,1,allswellthatendswell,1603\nrefused,1,allswellthatendswell,1603\nSmile,1,allswellthatendswell,1603\noccasions,1,allswellthatendswell,1603\nweeps,1,allswellthatendswell,1603\nnun's,1,allswellthatendswell,1603\npain,1,allswellthatendswell,1603\nincensing,1,allswellthatendswell,1603\nhangs,1,allswellthatendswell,1603\nfore,1,allswellthatendswell,1603\nmock,1,allswellthatendswell,1603\nentertain't,1,allswellthatendswell,1603\nDispatch,1,allswellthatendswell,1603\nshakes,1,allswellthatendswell,1603\npace,1,allswellthatendswell,1603\nIndian,1,allswellthatendswell,1603\nfear'd,1,allswellthatendswell,1603\ndismal,1,allswellthatendswell,1603\ndreadful,1,allswellthatendswell,1603\nrogue,1,allswellthatendswell,1603\nhats,1,allswellthatendswell,1603\nputs,1,allswellthatendswell,1603\nsupposition,1,allswellthatendswell,1603\nyielded,1,allswellthatendswell,1603\ncesse,1,allswellthatendswell,1603\nexcept,1,allswellthatendswell,1603\ngentry,1,allswellthatendswell,1603\ndetested,1,allswellthatendswell,1603\nrough,1,allswellthatendswell,1603\nvowed,1,allswellthatendswell,1603\nsaints,1,allswellthatendswell,1603\ntyranny,1,allswellthatendswell,1603\nprepared,1,allswellthatendswell,1603\nyarn,1,allswellthatendswell,1603\nenwombed,1,allswellthatendswell,1603\nrevenge,1,allswellthatendswell,1603\nlousy,1,allswellthatendswell,1603\nphilosophical,1,allswellthatendswell,1603\ntestimony,1,allswellthatendswell,1603\nexcess,1,allswellthatendswell,1603\nobey'd,1,allswellthatendswell,1603\nobject,1,allswellthatendswell,1603\npurr,1,allswellthatendswell,1603\nAlarum,1,allswellthatendswell,1603\nprotected,1,allswellthatendswell,1603\nfresh,1,allswellthatendswell,1603\nAttendant,1,allswellthatendswell,1603\nattempts,1,allswellthatendswell,1603\nmonument,1,allswellthatendswell,1603\nrightly,1,allswellthatendswell,1603\nMoist,1,allswellthatendswell,1603\nerror,1,allswellthatendswell,1603\nnearest,1,allswellthatendswell,1603\nsupernatural,1,allswellthatendswell,1603\nembodied,1,allswellthatendswell,1603\nforegone,1,allswellthatendswell,1603\nhive,1,allswellthatendswell,1603\nExpire,1,allswellthatendswell,1603\napprehensive,1,allswellthatendswell,1603\nceased,1,allswellthatendswell,1603\ncarbonadoed,1,allswellthatendswell,1603\nknock,1,allswellthatendswell,1603\nLoosing,1,allswellthatendswell,1603\ninquire,1,allswellthatendswell,1603\nAcordo,1,allswellthatendswell,1603\ndeadly,1,allswellthatendswell,1603\nHark,1,allswellthatendswell,1603\nfew,1,allswellthatendswell,1603\ncolour'd,1,allswellthatendswell,1603\nhits,1,allswellthatendswell,1603\ncourt's,1,allswellthatendswell,1603\npartaken,1,allswellthatendswell,1603\ndilated,1,allswellthatendswell,1603\nministers,1,allswellthatendswell,1603\nsweetly,1,allswellthatendswell,1603\nenemies,1,allswellthatendswell,1603\nnaughty,1,allswellthatendswell,1603\nwarp'd,1,allswellthatendswell,1603\nCapilet,1,allswellthatendswell,1603\nContend,1,allswellthatendswell,1603\ndaring,1,allswellthatendswell,1603\nwooing,1,allswellthatendswell,1603\nconversation,1,allswellthatendswell,1603\ntrial,1,allswellthatendswell,1603\nbountiful,1,allswellthatendswell,1603\nSatan,1,allswellthatendswell,1603\nLittle,1,allswellthatendswell,1603\nbroke,1,allswellthatendswell,1603\nArt,1,allswellthatendswell,1603\nbeams,1,allswellthatendswell,1603\nhaving,1,allswellthatendswell,1603\nRust,1,allswellthatendswell,1603\nconsumes,1,allswellthatendswell,1603\nsuperfluous,1,allswellthatendswell,1603\nmarch,1,allswellthatendswell,1603\nconsumed,1,allswellthatendswell,1603\nheight,1,allswellthatendswell,1603\nnobler,1,allswellthatendswell,1603\nhumbleness,1,allswellthatendswell,1603\nGrecians,1,allswellthatendswell,1603\nluck,1,allswellthatendswell,1603\nnotable,1,allswellthatendswell,1603\nrarity,1,allswellthatendswell,1603\nstrumpet's,1,allswellthatendswell,1603\nfan,1,allswellthatendswell,1603\nborrow,1,allswellthatendswell,1603\ncontented,1,allswellthatendswell,1603\nquatch,1,allswellthatendswell,1603\ndelicate,1,allswellthatendswell,1603\nroom,1,allswellthatendswell,1603\nrender'd,1,allswellthatendswell,1603\nappoints,1,allswellthatendswell,1603\ntried,1,allswellthatendswell,1603\nspritely,1,allswellthatendswell,1603\neducation,1,allswellthatendswell,1603\nlanguishings,1,allswellthatendswell,1603\nrational,1,allswellthatendswell,1603\nattributed,1,allswellthatendswell,1603\ndestiny,1,allswellthatendswell,1603\nincurable,1,allswellthatendswell,1603\nsyllable,1,allswellthatendswell,1603\nmoved,1,allswellthatendswell,1603\nhelping,1,allswellthatendswell,1603\nballad,1,allswellthatendswell,1603\nattributes,1,allswellthatendswell,1603\ntarry,1,allswellthatendswell,1603\n'Demand,1,allswellthatendswell,1603\nDemand,1,allswellthatendswell,1603\nallurement,1,allswellthatendswell,1603\nrequital,1,allswellthatendswell,1603\nhoney,1,allswellthatendswell,1603\nSpoke,1,allswellthatendswell,1603\nhind,1,allswellthatendswell,1603\nTen,1,allswellthatendswell,1603\ntokens,1,allswellthatendswell,1603\ncarrier,1,allswellthatendswell,1603\ngriefs,1,allswellthatendswell,1603\nforehead,1,allswellthatendswell,1603\ncompt,1,allswellthatendswell,1603\nundeserved,1,allswellthatendswell,1603\nrose,1,allswellthatendswell,1603\nsilence,1,allswellthatendswell,1603\nweighing,1,allswellthatendswell,1603\nbroad,1,allswellthatendswell,1603\nbuild,1,allswellthatendswell,1603\nexpress'd,1,allswellthatendswell,1603\nwater,1,allswellthatendswell,1603\nsickly,1,allswellthatendswell,1603\nTax,1,allswellthatendswell,1603\nsending,1,allswellthatendswell,1603\nrooted,1,allswellthatendswell,1603\nHalf,1,allswellthatendswell,1603\nElse,1,allswellthatendswell,1603\no'erflows,1,allswellthatendswell,1603\nsquare,1,allswellthatendswell,1603\nlack'd,1,allswellthatendswell,1603\nfurniture,1,allswellthatendswell,1603\nretreat,1,allswellthatendswell,1603\nsparing,1,allswellthatendswell,1603\nrare,1,allswellthatendswell,1603\nexperiment,1,allswellthatendswell,1603\ndisgraces,1,allswellthatendswell,1603\nworkman,1,allswellthatendswell,1603\nfaculties,1,allswellthatendswell,1603\nFuries,1,allswellthatendswell,1603\noverlooking,1,allswellthatendswell,1603\ntrumpeters,1,allswellthatendswell,1603\nUndone,1,allswellthatendswell,1603\ncrushed,1,allswellthatendswell,1603\nconquer'd,1,allswellthatendswell,1603\nDerived,1,allswellthatendswell,1603\npenny,1,allswellthatendswell,1603\npenitents,1,allswellthatendswell,1603\nscale,1,allswellthatendswell,1603\nclog,1,allswellthatendswell,1603\nshaking,1,allswellthatendswell,1603\nguess'd,1,allswellthatendswell,1603\ndeserving,1,allswellthatendswell,1603\nvolubility,1,allswellthatendswell,1603\ntended,1,allswellthatendswell,1603\nours,1,allswellthatendswell,1603\nhasten,1,allswellthatendswell,1603\nBentii,1,allswellthatendswell,1603\ncommunicate,1,allswellthatendswell,1603\nthinkings,1,allswellthatendswell,1603\nSafest,1,allswellthatendswell,1603\nentirely,1,allswellthatendswell,1603\nboys',1,allswellthatendswell,1603\nExempted,1,allswellthatendswell,1603\nobserved,1,allswellthatendswell,1603\nchape,1,allswellthatendswell,1603\ncommoner,1,allswellthatendswell,1603\npastime,1,allswellthatendswell,1603\ndetesting,1,allswellthatendswell,1603\nVileness,1,allswellthatendswell,1603\nhies,1,allswellthatendswell,1603\nascribe,1,allswellthatendswell,1603\nMars's,1,allswellthatendswell,1603\nfails,1,allswellthatendswell,1603\ntraitorously,1,allswellthatendswell,1603\nchase,1,allswellthatendswell,1603\npersonages,1,allswellthatendswell,1603\n'That's,1,allswellthatendswell,1603\nstrike,1,allswellthatendswell,1603\nenticements,1,allswellthatendswell,1603\nmeditating,1,allswellthatendswell,1603\nexcused,1,allswellthatendswell,1603\nThick,1,allswellthatendswell,1603\nvisage,1,allswellthatendswell,1603\nSit,1,allswellthatendswell,1603\nlearning,1,allswellthatendswell,1603\npicking,1,allswellthatendswell,1603\nnarrow,1,allswellthatendswell,1603\nsticks,1,allswellthatendswell,1603\nnut,1,allswellthatendswell,1603\nthirsts,1,allswellthatendswell,1603\n'spare,1,allswellthatendswell,1603\nprogress,1,allswellthatendswell,1603\n'Till,1,allswellthatendswell,1603\nstaggers,1,allswellthatendswell,1603\nLose,1,allswellthatendswell,1603\ncounsellor,1,allswellthatendswell,1603\nwho's,1,allswellthatendswell,1603\nodious,1,allswellthatendswell,1603\nslowness,1,allswellthatendswell,1603\nignorant,1,allswellthatendswell,1603\nmisery,1,allswellthatendswell,1603\nunhappy,1,allswellthatendswell,1603\nevermore,1,allswellthatendswell,1603\ndares,1,allswellthatendswell,1603\nhousewife,1,allswellthatendswell,1603\ndefective,1,allswellthatendswell,1603\nawhile,1,allswellthatendswell,1603\naccessary,1,allswellthatendswell,1603\nseveral,1,allswellthatendswell,1603\nquarter,1,allswellthatendswell,1603\nsay'st,1,allswellthatendswell,1603\nfamous,1,allswellthatendswell,1603\nlattice,1,allswellthatendswell,1603\nDoth,1,allswellthatendswell,1603\nDost,1,allswellthatendswell,1603\ngrateful,1,allswellthatendswell,1603\nLoss,1,allswellthatendswell,1603\nlending,1,allswellthatendswell,1603\nColours,1,allswellthatendswell,1603\nchill,1,allswellthatendswell,1603\nSee,1,allswellthatendswell,1603\nHelena,1,allswellthatendswell,1603\nforegoers,1,allswellthatendswell,1603\nerr,1,allswellthatendswell,1603\nlodge,1,allswellthatendswell,1603\ntowards,1,allswellthatendswell,1603\nleaves,1,allswellthatendswell,1603\nblessings,1,allswellthatendswell,1603\nCreaking,1,allswellthatendswell,1603\nmilk,1,allswellthatendswell,1603\nfistula,1,allswellthatendswell,1603\narrived,1,allswellthatendswell,1603\neaves,1,allswellthatendswell,1603\nnod,1,allswellthatendswell,1603\ncharitable,1,allswellthatendswell,1603\naiding,1,allswellthatendswell,1603\nteeth,1,allswellthatendswell,1603\nbubble,1,allswellthatendswell,1603\nsatisfaction,1,allswellthatendswell,1603\nsaving,1,allswellthatendswell,1603\nshield,1,allswellthatendswell,1603\nMakes,1,allswellthatendswell,1603\nflinty,1,allswellthatendswell,1603\nkisses,1,allswellthatendswell,1603\nsteely,1,allswellthatendswell,1603\npurposes,1,allswellthatendswell,1603\nescape,1,allswellthatendswell,1603\n'word,1,allswellthatendswell,1603\nslowly,1,allswellthatendswell,1603\nvent,1,allswellthatendswell,1603\nmerrily,1,allswellthatendswell,1603\nconfidence,1,allswellthatendswell,1603\nremorseful,1,allswellthatendswell,1603\nprocess,1,allswellthatendswell,1603\nchair,1,allswellthatendswell,1603\nrelinquish'd,1,allswellthatendswell,1603\nbloods,1,allswellthatendswell,1603\nlowest,1,allswellthatendswell,1603\nbelong,1,allswellthatendswell,1603\n'gainst,1,allswellthatendswell,1603\narched,1,allswellthatendswell,1603\ncourage,1,allswellthatendswell,1603\nPursuit,1,allswellthatendswell,1603\negg,1,allswellthatendswell,1603\nskin,1,allswellthatendswell,1603\nvillanous,1,allswellthatendswell,1603\nfriar's,1,allswellthatendswell,1603\ntents,1,allswellthatendswell,1603\nthere't,1,allswellthatendswell,1603\nconcord,1,allswellthatendswell,1603\nchief,1,allswellthatendswell,1603\ndream,1,allswellthatendswell,1603\ntartness,1,allswellthatendswell,1603\nmark,1,allswellthatendswell,1603\nson's,1,allswellthatendswell,1603\nranks,1,allswellthatendswell,1603\nthick,1,allswellthatendswell,1603\nSon,1,allswellthatendswell,1603\nNecessitied,1,allswellthatendswell,1603\nHonour,1,allswellthatendswell,1603\nmisled,1,allswellthatendswell,1603\nhawking,1,allswellthatendswell,1603\ncredible,1,allswellthatendswell,1603\nbecause,1,allswellthatendswell,1603\nFlies,1,allswellthatendswell,1603\nStrangers,1,allswellthatendswell,1603\ndesigns,1,allswellthatendswell,1603\nbelieving,1,allswellthatendswell,1603\nhaggish,1,allswellthatendswell,1603\nleaden,1,allswellthatendswell,1603\nkicky,1,allswellthatendswell,1603\nminutes,1,allswellthatendswell,1603\nballads,1,allswellthatendswell,1603\nRecantation,1,allswellthatendswell,1603\neke,1,allswellthatendswell,1603\nbeside,1,allswellthatendswell,1603\nAntonio,1,allswellthatendswell,1603\naddress,1,allswellthatendswell,1603\nchide,1,allswellthatendswell,1603\nheaven's,1,allswellthatendswell,1603\nforehorse,1,allswellthatendswell,1603\nwealthiest,1,allswellthatendswell,1603\nsolicits,1,allswellthatendswell,1603\nfundamental,1,allswellthatendswell,1603\ncaptive,1,allswellthatendswell,1603\nabed,1,allswellthatendswell,1603\nbleak,1,allswellthatendswell,1603\ncamping,1,allswellthatendswell,1603\nthievish,1,allswellthatendswell,1603\nconstable,1,allswellthatendswell,1603\ncozen'd,1,allswellthatendswell,1603\ntrifle,1,allswellthatendswell,1603\nWhatsome'er,1,allswellthatendswell,1603\nOscorbidulchos,1,allswellthatendswell,1603\nthromuldo,1,allswellthatendswell,1603\nsmoke,1,allswellthatendswell,1603\nwarranted,1,allswellthatendswell,1603\nChoose,1,allswellthatendswell,1603\ndisguised,1,allswellthatendswell,1603\nFRANCE,1,allswellthatendswell,1603\nsluttish,1,allswellthatendswell,1603\nstake,1,allswellthatendswell,1603\nexamined,1,allswellthatendswell,1603\nwet,1,allswellthatendswell,1603\nGiving,1,allswellthatendswell,1603\nbarnes,1,allswellthatendswell,1603\nwrath,1,allswellthatendswell,1603\nforgiven,1,allswellthatendswell,1603\nweb,1,allswellthatendswell,1603\no'clock,1,allswellthatendswell,1603\ndesired,1,allswellthatendswell,1603\nbear'st,1,allswellthatendswell,1603\npossession,1,allswellthatendswell,1603\nwoodcock,1,allswellthatendswell,1603\nunder't,1,allswellthatendswell,1603\nexpedient,1,allswellthatendswell,1603\nDrum's,1,allswellthatendswell,1603\nbreed,1,allswellthatendswell,1603\nstall,1,allswellthatendswell,1603\nlosing,1,allswellthatendswell,1603\ncuriously,1,allswellthatendswell,1603\nsleeves,1,allswellthatendswell,1603\nsharpness,1,allswellthatendswell,1603\nMaudlin,1,allswellthatendswell,1603\npoll,1,allswellthatendswell,1603\nslight,1,allswellthatendswell,1603\nEmbowell'd,1,allswellthatendswell,1603\ndignified,1,allswellthatendswell,1603\npassage,1,allswellthatendswell,1603\nopinion,1,allswellthatendswell,1603\nproved,1,allswellthatendswell,1603\nstink,1,allswellthatendswell,1603\nCharlemain,1,allswellthatendswell,1603\napology,1,allswellthatendswell,1603\nwrongs,1,allswellthatendswell,1603\ngabble,1,allswellthatendswell,1603\n'Too,1,allswellthatendswell,1603\nGratii,1,allswellthatendswell,1603\nmerits,1,allswellthatendswell,1603\nmurders,1,allswellthatendswell,1603\nexample,1,allswellthatendswell,1603\ngem,1,allswellthatendswell,1603\nHesperus,1,allswellthatendswell,1603\nsalt,1,allswellthatendswell,1603\nAmbitious,1,allswellthatendswell,1603\npomp,1,allswellthatendswell,1603\nbarricado,1,allswellthatendswell,1603\ndishonour,1,allswellthatendswell,1603\nsmoky,1,allswellthatendswell,1603\nstyle,1,allswellthatendswell,1603\nboarded,1,allswellthatendswell,1603\nwit,1,allswellthatendswell,1603\nsides,1,allswellthatendswell,1603\nprologues,1,allswellthatendswell,1603\nMorgan,1,allswellthatendswell,1603\namplest,1,allswellthatendswell,1603\nproposes,1,allswellthatendswell,1603\npersons,1,allswellthatendswell,1603\nthink't,1,allswellthatendswell,1603\nmildest,1,allswellthatendswell,1603\nGalen,1,allswellthatendswell,1603\nPilgrim,1,allswellthatendswell,1603\nprophesier,1,allswellthatendswell,1603\n'Twill,1,allswellthatendswell,1603\nemblem,1,allswellthatendswell,1603\nreceipt,1,allswellthatendswell,1603\nmisprising,1,allswellthatendswell,1603\ncurd,1,allswellthatendswell,1603\npretence,1,allswellthatendswell,1603\nimport,1,allswellthatendswell,1603\nhears,1,allswellthatendswell,1603\ncreating,1,allswellthatendswell,1603\nPrejudicates,1,allswellthatendswell,1603\nTitled,1,allswellthatendswell,1603\nusurping,1,allswellthatendswell,1603\nsmock,1,allswellthatendswell,1603\nnovelty,1,allswellthatendswell,1603\nprime,1,allswellthatendswell,1603\nsitting,1,allswellthatendswell,1603\nTuesday,1,allswellthatendswell,1603\nbanish'd,1,allswellthatendswell,1603\nabundance,1,allswellthatendswell,1603\nunseen,1,allswellthatendswell,1603\ncreation,1,allswellthatendswell,1603\nsevered,1,allswellthatendswell,1603\nsonnet,1,allswellthatendswell,1603\nvolivorco,1,allswellthatendswell,1603\nmanifest,1,allswellthatendswell,1603\nwaking,1,allswellthatendswell,1603\ninfluence,1,allswellthatendswell,1603\nDead,1,allswellthatendswell,1603\nrecover,1,allswellthatendswell,1603\ncoxcomb,1,allswellthatendswell,1603\nHardly,1,allswellthatendswell,1603\nknaveries,1,allswellthatendswell,1603\nfiles,1,allswellthatendswell,1603\nSay,1,allswellthatendswell,1603\nwalls,1,allswellthatendswell,1603\nresidence,1,allswellthatendswell,1603\nSubdued,1,allswellthatendswell,1603\nstanding,1,allswellthatendswell,1603\nimpediments,1,allswellthatendswell,1603\ndeath's,1,allswellthatendswell,1603\nvouch,1,allswellthatendswell,1603\nremains,1,allswellthatendswell,1603\nintegrity,1,allswellthatendswell,1603\nnursery,1,allswellthatendswell,1603\noccidental,1,allswellthatendswell,1603\ndilemmas,1,allswellthatendswell,1603\npoising,1,allswellthatendswell,1603\ndecrees,1,allswellthatendswell,1603\nbirthright,1,allswellthatendswell,1603\ntorture,1,allswellthatendswell,1603\nchampion,1,allswellthatendswell,1603\nreturning,1,allswellthatendswell,1603\nThine,1,allswellthatendswell,1603\nSenoys,1,allswellthatendswell,1603\nThus,1,allswellthatendswell,1603\nburthen,1,allswellthatendswell,1603\nliked,1,allswellthatendswell,1603\n'We,1,allswellthatendswell,1603\nvow'd,1,allswellthatendswell,1603\nsinewy,1,allswellthatendswell,1603\nwax,1,allswellthatendswell,1603\nspacious,1,allswellthatendswell,1603\nCan,1,allswellthatendswell,1603\ntuned,1,allswellthatendswell,1603\ndriven,1,allswellthatendswell,1603\nentreating,1,allswellthatendswell,1603\nfacinerious,1,allswellthatendswell,1603\nmisprision,1,allswellthatendswell,1603\nFlorence's,1,allswellthatendswell,1603\ntrusty,1,allswellthatendswell,1603\nfancy's,1,allswellthatendswell,1603\nmorris,1,allswellthatendswell,1603\nimportant,1,allswellthatendswell,1603\nprofitable,1,allswellthatendswell,1603\nCorambus,1,allswellthatendswell,1603\nintent,1,allswellthatendswell,1603\ncommander,1,allswellthatendswell,1603\nBajazet's,1,allswellthatendswell,1603\nrite,1,allswellthatendswell,1603\nfervor,1,allswellthatendswell,1603\nConferr'd,1,allswellthatendswell,1603\nknowingly,1,allswellthatendswell,1603\nExpecting,1,allswellthatendswell,1603\npride,1,allswellthatendswell,1603\nkinsmen,1,allswellthatendswell,1603\nmaiden's,1,allswellthatendswell,1603\ngreetings,1,allswellthatendswell,1603\nresistance,1,allswellthatendswell,1603\nthereabouts,1,allswellthatendswell,1603\ndisdain'st,1,allswellthatendswell,1603\ntolerable,1,allswellthatendswell,1603\npresumptuous,1,allswellthatendswell,1603\nKnowing,1,allswellthatendswell,1603\nundermine,1,allswellthatendswell,1603\nadmitted,1,allswellthatendswell,1603\napace,1,allswellthatendswell,1603\nLodowick,1,allswellthatendswell,1603\nhonestest,1,allswellthatendswell,1603\nprick,1,allswellthatendswell,1603\ntears',1,allswellthatendswell,1603\nwoodland,1,allswellthatendswell,1603\nPoison,1,allswellthatendswell,1603\nThree,1,allswellthatendswell,1603\nbounty,1,allswellthatendswell,1603\nlapse,1,allswellthatendswell,1603\nequivocal,1,allswellthatendswell,1603\nGiven,1,allswellthatendswell,1603\nhair,1,allswellthatendswell,1603\nappliance,1,allswellthatendswell,1603\nhail,1,allswellthatendswell,1603\nsweets,1,allswellthatendswell,1603\ngrossly,1,allswellthatendswell,1603\nVanquish'd,1,allswellthatendswell,1603\nsurprised,1,allswellthatendswell,1603\nangle,1,allswellthatendswell,1603\nfamiliar,1,allswellthatendswell,1603\nfix'd,1,allswellthatendswell,1603\nrequite,1,allswellthatendswell,1603\nfact,1,allswellthatendswell,1603\ngladly,1,allswellthatendswell,1603\n'Came,1,allswellthatendswell,1603\nreposing,1,allswellthatendswell,1603\nbreadth,1,allswellthatendswell,1603\nearthquake,1,allswellthatendswell,1603\nfruitfully,1,allswellthatendswell,1603\nserved,1,allswellthatendswell,1603\nlivelihood,1,allswellthatendswell,1603\nCupid's,1,allswellthatendswell,1603\ndissolved,1,allswellthatendswell,1603\nestates,1,allswellthatendswell,1603\nvalidity,1,allswellthatendswell,1603\ndemonstrate,1,allswellthatendswell,1603\nearthly,1,allswellthatendswell,1603\ncharges,1,allswellthatendswell,1603\nrotten,1,allswellthatendswell,1603\nvirtue's,1,allswellthatendswell,1603\nlinguist,1,allswellthatendswell,1603\nsize,1,allswellthatendswell,1603\nangel,1,allswellthatendswell,1603\nanger,1,allswellthatendswell,1603\nExtended,1,allswellthatendswell,1603\nforeign,1,allswellthatendswell,1603\nfisnomy,1,allswellthatendswell,1603\ndevoted,1,allswellthatendswell,1603\nBertram's,1,allswellthatendswell,1603\ncompulsion,1,allswellthatendswell,1603\nknight,1,allswellthatendswell,1603\nbitterness,1,allswellthatendswell,1603\nneatly,1,allswellthatendswell,1603\nquestant,1,allswellthatendswell,1603\npitchy,1,allswellthatendswell,1603\ndisposition,1,allswellthatendswell,1603\nsimiles,1,allswellthatendswell,1603\ndull,1,allswellthatendswell,1603\nnest,1,allswellthatendswell,1603\nperfidious,1,allswellthatendswell,1603\nduly,1,allswellthatendswell,1603\nwaters,1,allswellthatendswell,1603\nbelie,1,allswellthatendswell,1603\nfry,1,allswellthatendswell,1603\nwooes,1,allswellthatendswell,1603\ndoubling,1,allswellthatendswell,1603\nvexed,1,allswellthatendswell,1603\nwrong'd,1,allswellthatendswell,1603\nunfortunate,1,allswellthatendswell,1603\nEver,1,allswellthatendswell,1603\nNoble,1,allswellthatendswell,1603\ngifts,1,allswellthatendswell,1603\ngrass,1,allswellthatendswell,1603\nhideous,1,allswellthatendswell,1603\nconcealed,1,allswellthatendswell,1603\nOffence,1,allswellthatendswell,1603\ntable,1,allswellthatendswell,1603\ncreate,1,allswellthatendswell,1603\ntailed,1,allswellthatendswell,1603\nhunger,1,allswellthatendswell,1603\ndurst,1,allswellthatendswell,1603\nexamination,1,allswellthatendswell,1603\nground,1,allswellthatendswell,1603\nMany,1,allswellthatendswell,1603\nore,1,allswellthatendswell,1603\nwanted,1,allswellthatendswell,1603\nmessengers,1,allswellthatendswell,1603\nhighly,1,allswellthatendswell,1603\nThither,1,allswellthatendswell,1603\nstolen,1,allswellthatendswell,1603\nheedfull'st,1,allswellthatendswell,1603\nclew,1,allswellthatendswell,1603\nunderminers,1,allswellthatendswell,1603\ncares,1,allswellthatendswell,1603\nprattle,1,allswellthatendswell,1603\nAdmiringly,1,allswellthatendswell,1603\nproportions,1,allswellthatendswell,1603\nembossed,1,allswellthatendswell,1603\nclearly,1,allswellthatendswell,1603\nconstancy,1,allswellthatendswell,1603\nHadst,1,allswellthatendswell,1603\nlump,1,allswellthatendswell,1603\nwert,1,allswellthatendswell,1603\ndarkly,1,allswellthatendswell,1603\nbedded,1,allswellthatendswell,1603\nkinsman,1,allswellthatendswell,1603\nmethinks,1,allswellthatendswell,1603\nKerely,1,allswellthatendswell,1603\npleased,1,allswellthatendswell,1603\ndivulged,1,allswellthatendswell,1603\nEscalus,1,allswellthatendswell,1603\nparcels,1,allswellthatendswell,1603\nparallels,1,allswellthatendswell,1603\nmultiplying,1,allswellthatendswell,1603\nReports,1,allswellthatendswell,1603\nroses,1,allswellthatendswell,1603\nscolding,1,allswellthatendswell,1603\nhusbanded,1,allswellthatendswell,1603\nskilful,1,allswellthatendswell,1603\nlodged,1,allswellthatendswell,1603\nride,1,allswellthatendswell,1603\nallow,1,allswellthatendswell,1603\ncaution,1,allswellthatendswell,1603\nunjust,1,allswellthatendswell,1603\nofficed,1,allswellthatendswell,1603\nminute,1,allswellthatendswell,1603\ngrape,1,allswellthatendswell,1603\nsolicited,1,allswellthatendswell,1603\nBosko,1,allswellthatendswell,1603\npleases,1,allswellthatendswell,1603\nwishing,1,allswellthatendswell,1603\nAttend,1,allswellthatendswell,1603\nadmiration,1,allswellthatendswell,1603\nsafety,1,allswellthatendswell,1603\nengaged,1,allswellthatendswell,1603\nclap,1,allswellthatendswell,1603\nbarber's,1,allswellthatendswell,1603\nfriar,1,allswellthatendswell,1603\nhorn,1,allswellthatendswell,1603\nhose,1,allswellthatendswell,1603\nbare,1,allswellthatendswell,1603\nmeddle,1,allswellthatendswell,1603\nhost,1,allswellthatendswell,1603\npocket,1,allswellthatendswell,1603\nfine's,1,allswellthatendswell,1603\nunfold,1,allswellthatendswell,1603\narrogance,1,allswellthatendswell,1603\nuncle,1,allswellthatendswell,1603\nfondness,1,allswellthatendswell,1603\nDefiles,1,allswellthatendswell,1603\nbeware,1,allswellthatendswell,1603\nchiefly,1,allswellthatendswell,1603\nThank,1,allswellthatendswell,1603\nwives,1,allswellthatendswell,1603\nmarjoram,1,allswellthatendswell,1603\nlived,1,allswellthatendswell,1603\nbate,1,allswellthatendswell,1603\ncoherent,1,allswellthatendswell,1603\nwatch'd,1,allswellthatendswell,1603\ntruth's,1,allswellthatendswell,1603\nsalvation,1,allswellthatendswell,1603\ncicatrice,1,allswellthatendswell,1603\ntile,1,allswellthatendswell,1603\nstrikes,1,allswellthatendswell,1603\ngratitude,1,allswellthatendswell,1603\nBravely,1,allswellthatendswell,1603\nSpending,1,allswellthatendswell,1603\ndialogue,1,allswellthatendswell,1603\ndeliver'd,1,allswellthatendswell,1603\nTartar's,1,allswellthatendswell,1603\nquicklier,1,allswellthatendswell,1603\nfriendship,1,allswellthatendswell,1603\ndissever,1,allswellthatendswell,1603\nlasted,1,allswellthatendswell,1603\ndropsied,1,allswellthatendswell,1603\nflames,1,allswellthatendswell,1603\nVery,1,allswellthatendswell,1603\nweakness,1,allswellthatendswell,1603\ntame,1,allswellthatendswell,1603\nsubjection,1,allswellthatendswell,1603\nwill'd,1,allswellthatendswell,1603\nstrove,1,allswellthatendswell,1603\nmanifoldly,1,allswellthatendswell,1603\nredeems,1,allswellthatendswell,1603\nCurtal,1,allswellthatendswell,1603\nevidence,1,allswellthatendswell,1603\nimplies,1,allswellthatendswell,1603\nsongs,1,allswellthatendswell,1603\nblaze,1,allswellthatendswell,1603\npredominant,1,allswellthatendswell,1603\nTokens,1,allswellthatendswell,1603\nCaesar,1,allswellthatendswell,1603\ntimorous,1,allswellthatendswell,1603\ncomplaint,1,allswellthatendswell,1603\nDestroy,1,allswellthatendswell,1603\ncalendar,1,allswellthatendswell,1603\nwrapp'd,1,allswellthatendswell,1603\nreckon'd,1,allswellthatendswell,1603\ndeparture,1,allswellthatendswell,1603\nmarries,1,allswellthatendswell,1603\nfalsely,1,allswellthatendswell,1603\ncasketed,1,allswellthatendswell,1603\nbind,1,allswellthatendswell,1603\ndrumming,1,allswellthatendswell,1603\nfresher,1,allswellthatendswell,1603\nconvey,1,allswellthatendswell,1603\nTrust,1,allswellthatendswell,1603\nimpress'd,1,allswellthatendswell,1603\nAlready,1,allswellthatendswell,1603\ninsupportable,1,allswellthatendswell,1603\ngreets,1,allswellthatendswell,1603\nEvery,1,allswellthatendswell,1603\nunthankfulness,1,allswellthatendswell,1603\nshoot,1,allswellthatendswell,1603\nLed,1,allswellthatendswell,1603\nWorth,1,allswellthatendswell,1603\nInspired,1,allswellthatendswell,1603\nwoolsey,1,allswellthatendswell,1603\nswears,1,allswellthatendswell,1603\ndungeon,1,allswellthatendswell,1603\npreceding,1,allswellthatendswell,1603\nAdoption,1,allswellthatendswell,1603\nquit,1,allswellthatendswell,1603\nclean,1,allswellthatendswell,1603\nguiding,1,allswellthatendswell,1603\nLay,1,allswellthatendswell,1603\nprofesses,1,allswellthatendswell,1603\ndozen,1,allswellthatendswell,1603\nFond,1,allswellthatendswell,1603\nreceipts,1,allswellthatendswell,1603\nadvertisement,1,allswellthatendswell,1603\nunsuitable,1,allswellthatendswell,1603\ninfixing,1,allswellthatendswell,1603\nmetals,1,allswellthatendswell,1603\nlackey,1,allswellthatendswell,1603\ncut,1,allswellthatendswell,1603\nsettle,1,allswellthatendswell,1603\nfollows,1,allswellthatendswell,1603\nrobb'st,1,allswellthatendswell,1603\nAlthough,1,allswellthatendswell,1603\nWho's,1,allswellthatendswell,1603\nResolvedly,1,allswellthatendswell,1603\nschools,1,allswellthatendswell,1603\nrequest,1,allswellthatendswell,1603\napplications,1,allswellthatendswell,1603\nsunder,1,allswellthatendswell,1603\nmonumental,1,allswellthatendswell,1603\npresumption,1,allswellthatendswell,1603\nFrank,1,allswellthatendswell,1603\ncongied,1,allswellthatendswell,1603\ncondemn,1,allswellthatendswell,1603\namounts,1,allswellthatendswell,1603\nforsooth,1,allswellthatendswell,1603\nbesiege,1,allswellthatendswell,1603\ncommonwealth,1,allswellthatendswell,1603\ndefeat,1,allswellthatendswell,1603\nHopest,1,allswellthatendswell,1603\ncoarsely,1,allswellthatendswell,1603\nfeeding,1,allswellthatendswell,1603\nwondering,1,allswellthatendswell,1603\nsparkle,1,allswellthatendswell,1603\nsubscribed,1,allswellthatendswell,1603\nlustrous,1,allswellthatendswell,1603\ncurvet,1,allswellthatendswell,1603\nundertook,1,allswellthatendswell,1603\nsinned,1,allswellthatendswell,1603\nseal,1,allswellthatendswell,1603\nfavours,1,allswellthatendswell,1603\nfitter,1,allswellthatendswell,1603\nborrowing,1,allswellthatendswell,1603\nvainly,1,allswellthatendswell,1603\nDiscipled,1,allswellthatendswell,1603\nunpitied,1,allswellthatendswell,1603\nterrors,1,allswellthatendswell,1603\nconjectural,1,allswellthatendswell,1603\nhung,1,allswellthatendswell,1603\napproved,1,allswellthatendswell,1603\nFLORENCE,1,allswellthatendswell,1603\nseas,1,allswellthatendswell,1603\nperils,1,allswellthatendswell,1603\nTroy,1,allswellthatendswell,1603\nsunshine,1,allswellthatendswell,1603\nfourteen,1,allswellthatendswell,1603\ncommission,1,allswellthatendswell,1603\ncool,1,allswellthatendswell,1603\nvexation,1,allswellthatendswell,1603\nwaiting,1,allswellthatendswell,1603\npudding,1,allswellthatendswell,1603\nJuno,1,allswellthatendswell,1603\nchastity's,1,allswellthatendswell,1603\ngossips,1,allswellthatendswell,1603\nnicer,1,allswellthatendswell,1603\nacts,1,allswellthatendswell,1603\nletting,1,allswellthatendswell,1603\n'never,1,allswellthatendswell,1603\npublish,1,allswellthatendswell,1603\nthereto,1,allswellthatendswell,1603\nSeek,1,allswellthatendswell,1603\noppress'd,1,allswellthatendswell,1603\nPuritan,1,allswellthatendswell,1603\napproves,1,allswellthatendswell,1603\naught,1,allswellthatendswell,1603\nknowest,1,allswellthatendswell,1603\nfeathers,1,allswellthatendswell,1603\ndrums,1,allswellthatendswell,1603\nwe'ld,1,allswellthatendswell,1603\nadore,1,allswellthatendswell,1603\ncon,1,allswellthatendswell,1603\nunkindness,1,allswellthatendswell,1603\nmarvellous,1,allswellthatendswell,1603\nscience,1,allswellthatendswell,1603\ncamest,1,allswellthatendswell,1603\ncourtesy,1,allswellthatendswell,1603\nsupposes,1,allswellthatendswell,1603\ndivorce,1,allswellthatendswell,1603\nsees,1,allswellthatendswell,1603\nvessel,1,allswellthatendswell,1603\ncondition,1,allswellthatendswell,1603\nnumbered,1,allswellthatendswell,1603\ncost,1,allswellthatendswell,1603\nrender,1,allswellthatendswell,1603\nOn's,1,allswellthatendswell,1603\ntidings,1,allswellthatendswell,1603\nbattle,1,allswellthatendswell,1603\nDebate,1,allswellthatendswell,1603\ncourtier's,1,allswellthatendswell,1603\nestimation,1,allswellthatendswell,1603\nexpectation,1,allswellthatendswell,1603\n'mother,1,allswellthatendswell,1603\nthanking,1,allswellthatendswell,1603\nsetting,1,allswellthatendswell,1603\ntraitor,1,allswellthatendswell,1603\nuncropped,1,allswellthatendswell,1603\nthrust,1,allswellthatendswell,1603\nPortotartarosa,1,allswellthatendswell,1603\nMile,1,allswellthatendswell,1603\nowing,1,allswellthatendswell,1603\nrascally,1,allswellthatendswell,1603\nso's,1,allswellthatendswell,1603\nsportive,1,allswellthatendswell,1603\nService,1,allswellthatendswell,1603\nheavenly,1,allswellthatendswell,1603\nObey,1,allswellthatendswell,1603\nHaste,1,allswellthatendswell,1603\nexcessive,1,allswellthatendswell,1603\nmodest,1,allswellthatendswell,1603\npalmers,1,allswellthatendswell,1603\npour,1,allswellthatendswell,1603\ndownward,1,allswellthatendswell,1603\nnights,1,allswellthatendswell,1603\nentrenched,1,allswellthatendswell,1603\nKnow,1,allswellthatendswell,1603\nThrough,1,allswellthatendswell,1603\ntherein,1,allswellthatendswell,1603\nhugs,1,allswellthatendswell,1603\nlovest,1,allswellthatendswell,1603\nwretched,1,allswellthatendswell,1603\nScorn'd,1,allswellthatendswell,1603\nreplies,1,allswellthatendswell,1603\nblinking,1,allswellthatendswell,1603\nglove,1,allswellthatendswell,1603\nsuffice,1,allswellthatendswell,1603\nUse,1,allswellthatendswell,1603\nport,1,allswellthatendswell,1603\nNatural,1,allswellthatendswell,1603\ngods,1,allswellthatendswell,1603\nbelieved,1,allswellthatendswell,1603\nsell,1,allswellthatendswell,1603\nCan't,1,allswellthatendswell,1603\nfloods,1,allswellthatendswell,1603\nJust,1,allswellthatendswell,1603\nmodule,1,allswellthatendswell,1603\npost,1,allswellthatendswell,1603\nQuicken,1,allswellthatendswell,1603\nlevity,1,allswellthatendswell,1603\ngloss,1,allswellthatendswell,1603\nled,1,allswellthatendswell,1603\nsnipt,1,allswellthatendswell,1603\nmated,1,allswellthatendswell,1603\nreputed,1,allswellthatendswell,1603\nconfirmations,1,allswellthatendswell,1603\nundo,1,allswellthatendswell,1603\nchoughs',1,allswellthatendswell,1603\ntrusting,1,allswellthatendswell,1603\nsimpleness,1,allswellthatendswell,1603\nremedies,1,allswellthatendswell,1603\nshoots,1,allswellthatendswell,1603\ndeceive,1,allswellthatendswell,1603\nSpinii,1,allswellthatendswell,1603\ngreeting,1,allswellthatendswell,1603\nherald,1,allswellthatendswell,1603\nwrangling,1,allswellthatendswell,1603\nresiding,1,allswellthatendswell,1603\nplunge,1,allswellthatendswell,1603\nstable,1,allswellthatendswell,1603\ncountryman,1,allswellthatendswell,1603\nRemain,1,allswellthatendswell,1603\ngarter,1,allswellthatendswell,1603\nleaguer,1,allswellthatendswell,1603\nravin,1,allswellthatendswell,1603\nhighest,1,allswellthatendswell,1603\nwicky,1,allswellthatendswell,1603\nafterward,1,allswellthatendswell,1603\nsickens,1,allswellthatendswell,1603\nappeach'd,1,allswellthatendswell,1603\ndoughy,1,allswellthatendswell,1603\nTom's,1,allswellthatendswell,1603\nblowers,1,allswellthatendswell,1603\nrevania,1,allswellthatendswell,1603\nCox,1,allswellthatendswell,1603\ncoil,1,allswellthatendswell,1603\nHearing,1,allswellthatendswell,1603\nWisdom,1,allswellthatendswell,1603\nparcel,1,allswellthatendswell,1603\nprincipal,1,allswellthatendswell,1603\nsorely,1,allswellthatendswell,1603\ncredulous,1,allswellthatendswell,1603\nslow,1,allswellthatendswell,1603\nbaring,1,allswellthatendswell,1603\nInform,1,allswellthatendswell,1603\nperpetually,1,allswellthatendswell,1603\nclearness,1,allswellthatendswell,1603\nslumber,1,allswellthatendswell,1603\nCAPILET,1,allswellthatendswell,1603\nmasonry,1,allswellthatendswell,1603\nvouch'd,1,allswellthatendswell,1603\nHerself,1,allswellthatendswell,1603\nimagination,1,allswellthatendswell,1603\nreprieve,1,allswellthatendswell,1603\nevening,1,allswellthatendswell,1603\nclouds,1,allswellthatendswell,1603\nconfound,1,allswellthatendswell,1603\nwearing,1,allswellthatendswell,1603\nbarr'd,1,allswellthatendswell,1603\nmaidenhood,1,allswellthatendswell,1603\ndulcet,1,allswellthatendswell,1603\nGreater,1,allswellthatendswell,1603\nChitopher,1,allswellthatendswell,1603\nvauvado,1,allswellthatendswell,1603\ncomfortable,1,allswellthatendswell,1603\nafeard,1,allswellthatendswell,1603\nTowards,1,allswellthatendswell,1603\nconduct,1,allswellthatendswell,1603\nblindfold,1,allswellthatendswell,1603\npropagate,1,allswellthatendswell,1603\nhostess,1,allswellthatendswell,1603\nfuture,1,allswellthatendswell,1603\nPepin,1,allswellthatendswell,1603\nconsequence,1,allswellthatendswell,1603\nreward,1,allswellthatendswell,1603\nbegins,1,allswellthatendswell,1603\nlearn,1,allswellthatendswell,1603\nburst,1,allswellthatendswell,1603\nunto't,1,allswellthatendswell,1603\nposting,1,allswellthatendswell,1603\nIsbel's,1,allswellthatendswell,1603\npatient's,1,allswellthatendswell,1603\nhighways,1,allswellthatendswell,1603\nAnother,1,allswellthatendswell,1603\nMessenger,1,allswellthatendswell,1603\nenforcement,1,allswellthatendswell,1603\ndulche,1,allswellthatendswell,1603\nsadness,1,allswellthatendswell,1603\ninferior,1,allswellthatendswell,1603\nbrooch,1,allswellthatendswell,1603\nsister,1,allswellthatendswell,1603\npersecuted,1,allswellthatendswell,1603\nbreaker,1,allswellthatendswell,1603\ndecayed,1,allswellthatendswell,1603\nphoenix,1,allswellthatendswell,1603\nparallel,1,allswellthatendswell,1603\ndevours,1,allswellthatendswell,1603\nvilest,1,allswellthatendswell,1603\ncoranto,1,allswellthatendswell,1603\nEPILOGUE,1,allswellthatendswell,1603\nlikelihoods,1,allswellthatendswell,1603\nHigh'st,1,allswellthatendswell,1603\ngrafted,1,allswellthatendswell,1603\nseducer,1,allswellthatendswell,1603\nantiquity,1,allswellthatendswell,1603\nemployment,1,allswellthatendswell,1603\nlabourers,1,allswellthatendswell,1603\nevils,1,allswellthatendswell,1603\nLimbo,1,allswellthatendswell,1603\nrights,1,allswellthatendswell,1603\ncomforted,1,allswellthatendswell,1603\nClock,1,allswellthatendswell,1603\nboggle,1,allswellthatendswell,1603\nheritage,1,allswellthatendswell,1603\nOurs,1,allswellthatendswell,1603\nabuse,1,allswellthatendswell,1603\nseduced,1,allswellthatendswell,1603\nburns,1,allswellthatendswell,1603\nconfirmation,1,allswellthatendswell,1603\nwhip,1,allswellthatendswell,1603\nfully,1,allswellthatendswell,1603\nmerciful,1,allswellthatendswell,1603\nlimit,1,allswellthatendswell,1603\ncauseless,1,allswellthatendswell,1603\nMen,1,allswellthatendswell,1603\nwidower,1,allswellthatendswell,1603\nheartily,1,allswellthatendswell,1603\nthinking,1,allswellthatendswell,1603\ncounty,1,allswellthatendswell,1603\nattorney,1,allswellthatendswell,1603\ncounts,1,allswellthatendswell,1603\nacross,1,allswellthatendswell,1603\ncrafts,1,allswellthatendswell,1603\nPoysam,1,allswellthatendswell,1603\nhenceforth,1,allswellthatendswell,1603\n'had',1,allswellthatendswell,1603\nvagabond,1,allswellthatendswell,1603\non's,1,allswellthatendswell,1603\ncaptives,1,allswellthatendswell,1603\nexpressive,1,allswellthatendswell,1603\nlark,1,allswellthatendswell,1603\nGerman,1,allswellthatendswell,1603\nlass,1,allswellthatendswell,1603\nrespects,1,allswellthatendswell,1603\nmilitary,1,allswellthatendswell,1603\nInstruct,1,allswellthatendswell,1603\nengrossest,1,allswellthatendswell,1603\nfleshes,1,allswellthatendswell,1603\nphrase,1,allswellthatendswell,1603\nrevenges,1,allswellthatendswell,1603\nconsolate,1,allswellthatendswell,1603\nMan,1,allswellthatendswell,1603\ncapriccio,1,allswellthatendswell,1603\ntenderness,1,allswellthatendswell,1603\nattendants,1,allswellthatendswell,1603\ntranscendence,1,allswellthatendswell,1603\nlimed,1,allswellthatendswell,1603\njack,1,allswellthatendswell,1603\nfitness,1,allswellthatendswell,1603\nSear'd,1,allswellthatendswell,1603\nVII,1,allswellthatendswell,1603\ncompel,1,allswellthatendswell,1603\nseverally,1,allswellthatendswell,1603\nDebosh'd,1,allswellthatendswell,1603\nimporting,1,allswellthatendswell,1603\nrecompense,1,allswellthatendswell,1603\npeep,1,allswellthatendswell,1603\nlist,1,allswellthatendswell,1603\nsuited,1,allswellthatendswell,1603\nDisdain,1,allswellthatendswell,1603\njustified,1,allswellthatendswell,1603\nsacked,1,allswellthatendswell,1603\nvillained,1,allswellthatendswell,1603\nLend,1,allswellthatendswell,1603\nfathom,1,allswellthatendswell,1603\nfollow'd,1,allswellthatendswell,1603\ndispatched,1,allswellthatendswell,1603\ndefiled,1,allswellthatendswell,1603\nundertaking,1,allswellthatendswell,1603\nrepairs,1,allswellthatendswell,1603\nfrank,1,allswellthatendswell,1603\ndespiteful,1,allswellthatendswell,1603\nwitty,1,allswellthatendswell,1603\ndate,1,allswellthatendswell,1603\nYou'll,1,allswellthatendswell,1603\nenjoin'd,1,allswellthatendswell,1603\njudges,1,allswellthatendswell,1603\nslay,1,allswellthatendswell,1603\ncareless,1,allswellthatendswell,1603\nlaid,1,allswellthatendswell,1603\nfail'd,1,allswellthatendswell,1603\ndistemper'd,1,allswellthatendswell,1603\ndog,1,allswellthatendswell,1603\ndiscovered,1,allswellthatendswell,1603\nkick,1,allswellthatendswell,1603\ninstructions,1,allswellthatendswell,1603\nModerate,1,allswellthatendswell,1603\ntheoric,1,allswellthatendswell,1603\nhappily,1,allswellthatendswell,1603\nharsh,1,allswellthatendswell,1603\nlosses,1,allswellthatendswell,1603\nGracious,1,allswellthatendswell,1603\n'hic,1,allswellthatendswell,1603\nimpudence,1,allswellthatendswell,1603\nprecepts,1,allswellthatendswell,1603\ntottering,1,allswellthatendswell,1603\nframe,1,allswellthatendswell,1603\ndue,1,allswellthatendswell,1603\nunseason'd,1,allswellthatendswell,1603\n'First,1,allswellthatendswell,1603\nweight,1,allswellthatendswell,1603\nmiseries,1,allswellthatendswell,1603\nland,1,allswellthatendswell,1603\nha't,1,allswellthatendswell,1603\nlord's,1,allswellthatendswell,1603\nhumbled,1,allswellthatendswell,1603\nweighs,1,allswellthatendswell,1603\nadversary's,1,allswellthatendswell,1603\ncontents',1,allswellthatendswell,1603\nhoping,1,allswellthatendswell,1603\nfifteen,1,allswellthatendswell,1603\ninstruction,1,allswellthatendswell,1603\ntransgressed,1,allswellthatendswell,1603\ngreat'st,1,allswellthatendswell,1603\nbegotten,1,allswellthatendswell,1603\nprinciples,1,allswellthatendswell,1603\nproclamation,1,allswellthatendswell,1603\nDRAMATIS,1,allswellthatendswell,1603\nlamp,1,allswellthatendswell,1603\nslew,1,allswellthatendswell,1603\nshift,1,allswellthatendswell,1603\nsinister,1,allswellthatendswell,1603\ntie,1,allswellthatendswell,1603\nrescue,1,allswellthatendswell,1603\nphysician,1,allswellthatendswell,1603\ndamp,1,allswellthatendswell,1603\npropose,1,allswellthatendswell,1603\nprerogative,1,allswellthatendswell,1603\n'Dian,1,allswellthatendswell,1603\narming,1,allswellthatendswell,1603\nflower,1,allswellthatendswell,1603\nDesires,1,allswellthatendswell,1603\nTom,1,allswellthatendswell,1603\ndamn,1,allswellthatendswell,1603\nflown,1,allswellthatendswell,1603\nNessus,1,allswellthatendswell,1603\nBOTH,1,allswellthatendswell,1603\nLustig,1,allswellthatendswell,1603\ngreatness,1,allswellthatendswell,1603\nKneeling,1,allswellthatendswell,1603\nconsenting,1,allswellthatendswell,1603\nencountered,1,allswellthatendswell,1603\nprivate,1,allswellthatendswell,1603\nacquired,1,allswellthatendswell,1603\nUncertain,1,allswellthatendswell,1603\nboots,1,allswellthatendswell,1603\nsithence,1,allswellthatendswell,1603\ncorporal,1,allswellthatendswell,1603\nbrim,1,allswellthatendswell,1603\nsprat,1,allswellthatendswell,1603\nslip,1,allswellthatendswell,1603\nennobled,1,allswellthatendswell,1603\ndarling,1,allswellthatendswell,1603\ntainted,1,allswellthatendswell,1603\nunlearned,1,allswellthatendswell,1603\nCarries,1,allswellthatendswell,1603\nhellish,1,allswellthatendswell,1603\nmourned,1,allswellthatendswell,1603\njustly,1,allswellthatendswell,1603\nrounds,1,allswellthatendswell,1603\names,1,allswellthatendswell,1603\nneighbour,1,allswellthatendswell,1603\nshoes,1,allswellthatendswell,1603\nCressid's,1,allswellthatendswell,1603\nshape,1,allswellthatendswell,1603\ntread,1,allswellthatendswell,1603\nmarket,1,allswellthatendswell,1603\ndefault,1,allswellthatendswell,1603\ndoctrine,1,allswellthatendswell,1603\nPrepared,1,allswellthatendswell,1603\ncontain'd,1,allswellthatendswell,1603\nturn'd,1,allswellthatendswell,1603\nmonsters,1,allswellthatendswell,1603\nconsents,1,allswellthatendswell,1603\nscratched,1,allswellthatendswell,1603\nhedge,1,allswellthatendswell,1603\nsummer,1,allswellthatendswell,1603\nunnoted,1,allswellthatendswell,1603\nsanctimony,1,allswellthatendswell,1603\nquality,2,allswellthatendswell,1603\nforbid,2,allswellthatendswell,1603\ntax'd,2,allswellthatendswell,1603\nignorance,2,allswellthatendswell,1603\nYouth,2,allswellthatendswell,1603\nmuster,2,allswellthatendswell,1603\nc,2,allswellthatendswell,1603\nafar,2,allswellthatendswell,1603\ncomposition,2,allswellthatendswell,1603\nAlas,2,allswellthatendswell,1603\npossible,2,allswellthatendswell,1603\nwicked,2,allswellthatendswell,1603\nconvoy,2,allswellthatendswell,1603\nhonours,2,allswellthatendswell,1603\nriddle,2,allswellthatendswell,1603\nbones,2,allswellthatendswell,1603\noffended,2,allswellthatendswell,1603\nsuppose,2,allswellthatendswell,1603\nmend,2,allswellthatendswell,1603\nWilt,2,allswellthatendswell,1603\nStay,2,allswellthatendswell,1603\nthorns,2,allswellthatendswell,1603\nwrites,2,allswellthatendswell,1603\ngroan,2,allswellthatendswell,1603\nherb,2,allswellthatendswell,1603\nmere,2,allswellthatendswell,1603\ndisease,2,allswellthatendswell,1603\nwhile,2,allswellthatendswell,1603\nalias,2,allswellthatendswell,1603\noffer,2,allswellthatendswell,1603\ninstrument,2,allswellthatendswell,1603\nsuccession,2,allswellthatendswell,1603\nHelen's,2,allswellthatendswell,1603\nderive,2,allswellthatendswell,1603\nIsbel,2,allswellthatendswell,1603\nterrible,2,allswellthatendswell,1603\nadvise,2,allswellthatendswell,1603\ndamned,2,allswellthatendswell,1603\ncontrary,2,allswellthatendswell,1603\nremain,2,allswellthatendswell,1603\nWhom,2,allswellthatendswell,1603\ncheeks,2,allswellthatendswell,1603\nliar,2,allswellthatendswell,1603\nobloquy,2,allswellthatendswell,1603\nsanctified,2,allswellthatendswell,1603\nPoor,2,allswellthatendswell,1603\ndelivered,2,allswellthatendswell,1603\nstrength,2,allswellthatendswell,1603\ndisdain,2,allswellthatendswell,1603\nsons,2,allswellthatendswell,1603\nAfter,2,allswellthatendswell,1603\nsat,2,allswellthatendswell,1603\ndance,2,allswellthatendswell,1603\nstream,2,allswellthatendswell,1603\nling,2,allswellthatendswell,1603\nboldness,2,allswellthatendswell,1603\nKeep,2,allswellthatendswell,1603\npurse,2,allswellthatendswell,1603\ntoward,2,allswellthatendswell,1603\nenemy's,2,allswellthatendswell,1603\nOnly,2,allswellthatendswell,1603\nd'ecu,2,allswellthatendswell,1603\nbabes,2,allswellthatendswell,1603\nknaves,2,allswellthatendswell,1603\nshrewdly,2,allswellthatendswell,1603\nMethinks,2,allswellthatendswell,1603\nconfessed,2,allswellthatendswell,1603\nwait,2,allswellthatendswell,1603\noverture,2,allswellthatendswell,1603\nview,2,allswellthatendswell,1603\nhereafter,2,allswellthatendswell,1603\nGet,2,allswellthatendswell,1603\nfaithfully,2,allswellthatendswell,1603\ntooth,2,allswellthatendswell,1603\nWrite,2,allswellthatendswell,1603\ntraveller,2,allswellthatendswell,1603\n'When,2,allswellthatendswell,1603\nshe'll,2,allswellthatendswell,1603\nscorn,2,allswellthatendswell,1603\nnine,2,allswellthatendswell,1603\nforsake,2,allswellthatendswell,1603\ncouncil,2,allswellthatendswell,1603\nconvenience,2,allswellthatendswell,1603\ndeliver,2,allswellthatendswell,1603\ndelivers,2,allswellthatendswell,1603\ncounsel,2,allswellthatendswell,1603\ncozen,2,allswellthatendswell,1603\nTheir,2,allswellthatendswell,1603\nkindly,2,allswellthatendswell,1603\nlevel,2,allswellthatendswell,1603\nwings,2,allswellthatendswell,1603\nbetwixt,2,allswellthatendswell,1603\nFlorentines,2,allswellthatendswell,1603\naffect,2,allswellthatendswell,1603\nesteem,2,allswellthatendswell,1603\ntaught,2,allswellthatendswell,1603\nvile,2,allswellthatendswell,1603\nfelt,2,allswellthatendswell,1603\nThese,2,allswellthatendswell,1603\nOut,2,allswellthatendswell,1603\nprofess,2,allswellthatendswell,1603\nafraid,2,allswellthatendswell,1603\nphysician's,2,allswellthatendswell,1603\ndirect,2,allswellthatendswell,1603\nfalls,2,allswellthatendswell,1603\nshuns,2,allswellthatendswell,1603\nexceeding,2,allswellthatendswell,1603\nendeavours,2,allswellthatendswell,1603\nencounter,2,allswellthatendswell,1603\nWherein,2,allswellthatendswell,1603\nthence,2,allswellthatendswell,1603\nphysicians,2,allswellthatendswell,1603\nsun,2,allswellthatendswell,1603\nrecovery,2,allswellthatendswell,1603\nhumbly,2,allswellthatendswell,1603\ndissuade,2,allswellthatendswell,1603\nsaucy,2,allswellthatendswell,1603\nquart,2,allswellthatendswell,1603\nwhisper,2,allswellthatendswell,1603\nfalse,2,allswellthatendswell,1603\nwing,2,allswellthatendswell,1603\nceremony,2,allswellthatendswell,1603\ncuckold,2,allswellthatendswell,1603\nlatter,2,allswellthatendswell,1603\nPlease,2,allswellthatendswell,1603\nknow'st,2,allswellthatendswell,1603\ndies,2,allswellthatendswell,1603\nwise,2,allswellthatendswell,1603\nproperty,2,allswellthatendswell,1603\nmuddied,2,allswellthatendswell,1603\nrebellion,2,allswellthatendswell,1603\nmalady,2,allswellthatendswell,1603\nvoice,2,allswellthatendswell,1603\nleaped,2,allswellthatendswell,1603\nbreeding,2,allswellthatendswell,1603\nbright,2,allswellthatendswell,1603\npraised,2,allswellthatendswell,1603\nconditions,2,allswellthatendswell,1603\nauthority,2,allswellthatendswell,1603\nlife's,2,allswellthatendswell,1603\nchamber,2,allswellthatendswell,1603\nmorning,2,allswellthatendswell,1603\napproof,2,allswellthatendswell,1603\nbestowing,2,allswellthatendswell,1603\nWhile,2,allswellthatendswell,1603\nfoes,2,allswellthatendswell,1603\nrepented,2,allswellthatendswell,1603\naltogether,2,allswellthatendswell,1603\nshowing,2,allswellthatendswell,1603\neternal,2,allswellthatendswell,1603\ndeeds,2,allswellthatendswell,1603\nsequent,2,allswellthatendswell,1603\nassault,2,allswellthatendswell,1603\nblown,2,allswellthatendswell,1603\nhopes,2,allswellthatendswell,1603\nsubscribe,2,allswellthatendswell,1603\nunless,2,allswellthatendswell,1603\nscarfs,2,allswellthatendswell,1603\ndenied,2,allswellthatendswell,1603\npen,2,allswellthatendswell,1603\nforce,2,allswellthatendswell,1603\nhie,2,allswellthatendswell,1603\nmiracles,2,allswellthatendswell,1603\nrequires,2,allswellthatendswell,1603\nblest,2,allswellthatendswell,1603\nnotorious,2,allswellthatendswell,1603\nambush,2,allswellthatendswell,1603\nquick,2,allswellthatendswell,1603\nbraggart,2,allswellthatendswell,1603\nfated,2,allswellthatendswell,1603\ndespair,2,allswellthatendswell,1603\ntroops,2,allswellthatendswell,1603\nearl,2,allswellthatendswell,1603\nnobility,2,allswellthatendswell,1603\nyourselves,2,allswellthatendswell,1603\nmonstrous,2,allswellthatendswell,1603\ngod,2,allswellthatendswell,1603\nsorry,2,allswellthatendswell,1603\nmetal,2,allswellthatendswell,1603\nbury,2,allswellthatendswell,1603\n'Twould,2,allswellthatendswell,1603\nPrithee,2,allswellthatendswell,1603\npetition,2,allswellthatendswell,1603\nhomely,2,allswellthatendswell,1603\nconfidently,2,allswellthatendswell,1603\nSave,2,allswellthatendswell,1603\nSpeak,2,allswellthatendswell,1603\ncourtesies,2,allswellthatendswell,1603\nlegacy,2,allswellthatendswell,1603\njewel,2,allswellthatendswell,1603\ntwice,2,allswellthatendswell,1603\nTuscan,2,allswellthatendswell,1603\nkernel,2,allswellthatendswell,1603\nvassal,2,allswellthatendswell,1603\ntravel,2,allswellthatendswell,1603\nused,2,allswellthatendswell,1603\ndisguise,2,allswellthatendswell,1603\nWhate'er,2,allswellthatendswell,1603\nstronger,2,allswellthatendswell,1603\ngate,2,allswellthatendswell,1603\n'Twas,2,allswellthatendswell,1603\nsmack,2,allswellthatendswell,1603\nhourly,2,allswellthatendswell,1603\ngrace's,2,allswellthatendswell,1603\ntwigs,2,allswellthatendswell,1603\nhurts,2,allswellthatendswell,1603\nuses,2,allswellthatendswell,1603\nstore,2,allswellthatendswell,1603\ndeliverance,2,allswellthatendswell,1603\nbreath,2,allswellthatendswell,1603\naim,2,allswellthatendswell,1603\nreservation,2,allswellthatendswell,1603\nMethought,2,allswellthatendswell,1603\nair,2,allswellthatendswell,1603\nkeeping,2,allswellthatendswell,1603\nexcellent,2,allswellthatendswell,1603\nHere's,2,allswellthatendswell,1603\nprevented,2,allswellthatendswell,1603\ndwell,2,allswellthatendswell,1603\nReturn,2,allswellthatendswell,1603\nstole,2,allswellthatendswell,1603\ndefence,2,allswellthatendswell,1603\ngenerally,2,allswellthatendswell,1603\nrestraint,2,allswellthatendswell,1603\ncomforts,2,allswellthatendswell,1603\npromising,2,allswellthatendswell,1603\nshed,2,allswellthatendswell,1603\nprivilege,2,allswellthatendswell,1603\napproach,2,allswellthatendswell,1603\ndelay,2,allswellthatendswell,1603\nItalian,2,allswellthatendswell,1603\nsometime,2,allswellthatendswell,1603\nearth,2,allswellthatendswell,1603\nMyself,2,allswellthatendswell,1603\nIsbels,2,allswellthatendswell,1603\ncousin,2,allswellthatendswell,1603\nscornful,2,allswellthatendswell,1603\nCountess,2,allswellthatendswell,1603\nle,2,allswellthatendswell,1603\nho,2,allswellthatendswell,1603\nample,2,allswellthatendswell,1603\nknot,2,allswellthatendswell,1603\nspend,2,allswellthatendswell,1603\nremoved,2,allswellthatendswell,1603\nsuspected,2,allswellthatendswell,1603\nserious,2,allswellthatendswell,1603\ncomposed,2,allswellthatendswell,1603\nacquaint,2,allswellthatendswell,1603\npresume,2,allswellthatendswell,1603\nharm,2,allswellthatendswell,1603\nkilled,2,allswellthatendswell,1603\nbrought,2,allswellthatendswell,1603\nplot,2,allswellthatendswell,1603\neasy,2,allswellthatendswell,1603\nhowe'er,2,allswellthatendswell,1603\nMost,2,allswellthatendswell,1603\npull,2,allswellthatendswell,1603\nhalf,2,allswellthatendswell,1603\nsubmit,2,allswellthatendswell,1603\nnation,2,allswellthatendswell,1603\nacknowledge,2,allswellthatendswell,1603\n'Let,2,allswellthatendswell,1603\nTrumpets,2,allswellthatendswell,1603\nfoul,2,allswellthatendswell,1603\nmighty,2,allswellthatendswell,1603\nunlawful,2,allswellthatendswell,1603\ncity,2,allswellthatendswell,1603\nCommend,2,allswellthatendswell,1603\nstranger,2,allswellthatendswell,1603\nfiery,2,allswellthatendswell,1603\ndiest,2,allswellthatendswell,1603\nmoney,2,allswellthatendswell,1603\nowed,2,allswellthatendswell,1603\nsanctify,2,allswellthatendswell,1603\nalive,2,allswellthatendswell,1603\nshot,2,allswellthatendswell,1603\ncreatures,2,allswellthatendswell,1603\nass,2,allswellthatendswell,1603\nmayst,2,allswellthatendswell,1603\npoorer,2,allswellthatendswell,1603\nKing,2,allswellthatendswell,1603\nfurnish,2,allswellthatendswell,1603\naweary,2,allswellthatendswell,1603\ntrick,2,allswellthatendswell,1603\nAmong,2,allswellthatendswell,1603\nfed,2,allswellthatendswell,1603\nhazard,2,allswellthatendswell,1603\nAsk,2,allswellthatendswell,1603\nnew,2,allswellthatendswell,1603\nguess,2,allswellthatendswell,1603\nchange,2,allswellthatendswell,1603\npausing,2,allswellthatendswell,1603\nregiment,2,allswellthatendswell,1603\nrestored,2,allswellthatendswell,1603\nproofs,2,allswellthatendswell,1603\ngarments,2,allswellthatendswell,1603\nkeeps,2,allswellthatendswell,1603\nbreeds,2,allswellthatendswell,1603\nventure,2,allswellthatendswell,1603\ncarried,2,allswellthatendswell,1603\ncarries,2,allswellthatendswell,1603\nbravest,2,allswellthatendswell,1603\nshouldst,2,allswellthatendswell,1603\ndistance,2,allswellthatendswell,1603\nunknown,2,allswellthatendswell,1603\nVIOLENTA,2,allswellthatendswell,1603\nunclean,2,allswellthatendswell,1603\npatch,2,allswellthatendswell,1603\nproceed,2,allswellthatendswell,1603\naction,2,allswellthatendswell,1603\nseriously,2,allswellthatendswell,1603\nforfeited,2,allswellthatendswell,1603\nbelow,2,allswellthatendswell,1603\nrash,2,allswellthatendswell,1603\nhide,2,allswellthatendswell,1603\nyear,2,allswellthatendswell,1603\nbottom,2,allswellthatendswell,1603\nAll's,2,allswellthatendswell,1603\nmisdoubt,2,allswellthatendswell,1603\nyou'll,2,allswellthatendswell,1603\nparting,2,allswellthatendswell,1603\nloses,2,allswellthatendswell,1603\nplaces,2,allswellthatendswell,1603\nHealth,2,allswellthatendswell,1603\ninform'd,2,allswellthatendswell,1603\neffect,2,allswellthatendswell,1603\nspurs,2,allswellthatendswell,1603\nstrife,2,allswellthatendswell,1603\nSome,2,allswellthatendswell,1603\nmortal,2,allswellthatendswell,1603\nprobable,2,allswellthatendswell,1603\nstart,2,allswellthatendswell,1603\napproaches,2,allswellthatendswell,1603\nplead,2,allswellthatendswell,1603\nGrand,2,allswellthatendswell,1603\nfoolish,2,allswellthatendswell,1603\nblush,2,allswellthatendswell,1603\nbeggar,2,allswellthatendswell,1603\nbloody,2,allswellthatendswell,1603\nreading,2,allswellthatendswell,1603\nlet's,2,allswellthatendswell,1603\nwoo,2,allswellthatendswell,1603\njudgments,2,allswellthatendswell,1603\nblow,2,allswellthatendswell,1603\nbrains,2,allswellthatendswell,1603\nSpurio,2,allswellthatendswell,1603\nlabour,2,allswellthatendswell,1603\nspecial,2,allswellthatendswell,1603\nthief,2,allswellthatendswell,1603\nmiss,2,allswellthatendswell,1603\nfish,2,allswellthatendswell,1603\nhigher,2,allswellthatendswell,1603\nmarvel,2,allswellthatendswell,1603\noil,2,allswellthatendswell,1603\ndesires,2,allswellthatendswell,1603\nRinaldo,2,allswellthatendswell,1603\nstain,2,allswellthatendswell,1603\nWere,2,allswellthatendswell,1603\nHowe'er,2,allswellthatendswell,1603\nclose,2,allswellthatendswell,1603\nimpudent,2,allswellthatendswell,1603\naffairs,2,allswellthatendswell,1603\nrenown,2,allswellthatendswell,1603\nretire,2,allswellthatendswell,1603\nsafely,2,allswellthatendswell,1603\nConfess,2,allswellthatendswell,1603\ncapable,2,allswellthatendswell,1603\nherbs,2,allswellthatendswell,1603\nbreak,2,allswellthatendswell,1603\nhappiness,2,allswellthatendswell,1603\nloving,2,allswellthatendswell,1603\nbondage,2,allswellthatendswell,1603\nflight,2,allswellthatendswell,1603\nspeedily,2,allswellthatendswell,1603\nlikes,2,allswellthatendswell,1603\ncalled,2,allswellthatendswell,1603\nThink,2,allswellthatendswell,1603\ndislikest,2,allswellthatendswell,1603\nWorthy,2,allswellthatendswell,1603\narms,2,allswellthatendswell,1603\ntailor,2,allswellthatendswell,1603\ndrives,2,allswellthatendswell,1603\ncommanded,2,allswellthatendswell,1603\noath,2,allswellthatendswell,1603\nambition,2,allswellthatendswell,1603\nthey'll,2,allswellthatendswell,1603\nforward,2,allswellthatendswell,1603\nwanton,2,allswellthatendswell,1603\nends,2,allswellthatendswell,1603\nproceeding,2,allswellthatendswell,1603\nFourth,2,allswellthatendswell,1603\ncaught,2,allswellthatendswell,1603\nGives,2,allswellthatendswell,1603\nmightily,2,allswellthatendswell,1603\nseize,2,allswellthatendswell,1603\noblivion,2,allswellthatendswell,1603\nHeaven,2,allswellthatendswell,1603\ntakes,2,allswellthatendswell,1603\nscores,2,allswellthatendswell,1603\ninform,2,allswellthatendswell,1603\nforfeit,2,allswellthatendswell,1603\nShare,2,allswellthatendswell,1603\ndumb,2,allswellthatendswell,1603\nlust,2,allswellthatendswell,1603\nwondrous,2,allswellthatendswell,1603\nwife's,2,allswellthatendswell,1603\nconsent,2,allswellthatendswell,1603\nDUKE's,2,allswellthatendswell,1603\nserves,2,allswellthatendswell,1603\nEven,2,allswellthatendswell,1603\nglad,2,allswellthatendswell,1603\nminister,2,allswellthatendswell,1603\npersever,2,allswellthatendswell,1603\nevil,2,allswellthatendswell,1603\nTime,2,allswellthatendswell,1603\n'fore,2,allswellthatendswell,1603\nmodesty,2,allswellthatendswell,1603\ndesert,2,allswellthatendswell,1603\nfame,2,allswellthatendswell,1603\nwickedness,2,allswellthatendswell,1603\nthrew,2,allswellthatendswell,1603\nworthiness,2,allswellthatendswell,1603\nwore,2,allswellthatendswell,1603\nSweet,2,allswellthatendswell,1603\nflame,2,allswellthatendswell,1603\nperfect,2,allswellthatendswell,1603\nfill,2,allswellthatendswell,1603\ncontinue,2,allswellthatendswell,1603\nlascivious,2,allswellthatendswell,1603\nFare,2,allswellthatendswell,1603\nshown,2,allswellthatendswell,1603\ndivers,2,allswellthatendswell,1603\nwealth,2,allswellthatendswell,1603\npractise,2,allswellthatendswell,1603\nbase,2,allswellthatendswell,1603\nobservance,2,allswellthatendswell,1603\ngrapes,2,allswellthatendswell,1603\nmotive,2,allswellthatendswell,1603\nsecrets,2,allswellthatendswell,1603\ntrumpets,2,allswellthatendswell,1603\narm'd,2,allswellthatendswell,1603\nreason,2,allswellthatendswell,1603\notherwise,2,allswellthatendswell,1603\nmothers,2,allswellthatendswell,1603\nRather,2,allswellthatendswell,1603\ngetting,2,allswellthatendswell,1603\nempire,2,allswellthatendswell,1603\nNone,2,allswellthatendswell,1603\nhole,2,allswellthatendswell,1603\ndangerous,2,allswellthatendswell,1603\nconcluded,2,allswellthatendswell,1603\nargument,2,allswellthatendswell,1603\nrevolt,2,allswellthatendswell,1603\nlives,2,allswellthatendswell,1603\nconvenient,2,allswellthatendswell,1603\ncopy,2,allswellthatendswell,1603\nlying,2,allswellthatendswell,1603\nalways,2,allswellthatendswell,1603\nadieu,2,allswellthatendswell,1603\ndrunk,2,allswellthatendswell,1603\nneedful,2,allswellthatendswell,1603\nRight,2,allswellthatendswell,1603\nseek,2,allswellthatendswell,1603\ntroth,2,allswellthatendswell,1603\npresence,2,allswellthatendswell,1603\nsupposed,2,allswellthatendswell,1603\nunderstood,2,allswellthatendswell,1603\nbequeathed,2,allswellthatendswell,1603\ndrum',2,allswellthatendswell,1603\nBelieve,2,allswellthatendswell,1603\ncry,2,allswellthatendswell,1603\ntaffeta,2,allswellthatendswell,1603\n'twill,2,allswellthatendswell,1603\nheels,2,allswellthatendswell,1603\nbail,2,allswellthatendswell,1603\nSend,2,allswellthatendswell,1603\nBequeathed,2,allswellthatendswell,1603\nmodern,2,allswellthatendswell,1603\nleg,2,allswellthatendswell,1603\nprison,2,allswellthatendswell,1603\nbade,2,allswellthatendswell,1603\nfearing,2,allswellthatendswell,1603\nseason,2,allswellthatendswell,1603\nsickness,2,allswellthatendswell,1603\nlip,2,allswellthatendswell,1603\nmaster's,2,allswellthatendswell,1603\nsighed,2,allswellthatendswell,1603\nlordship's,2,allswellthatendswell,1603\neffects,2,allswellthatendswell,1603\nmad,2,allswellthatendswell,1603\nlimbs,2,allswellthatendswell,1603\npear,2,allswellthatendswell,1603\nleast,2,allswellthatendswell,1603\nbalance,2,allswellthatendswell,1603\nplausive,2,allswellthatendswell,1603\nFive,2,allswellthatendswell,1603\nimpossibility,2,allswellthatendswell,1603\ndoing,2,allswellthatendswell,1603\nstraight,2,allswellthatendswell,1603\nchastely,2,allswellthatendswell,1603\nwarlike,2,allswellthatendswell,1603\nknocked,2,allswellthatendswell,1603\nBoskos,2,allswellthatendswell,1603\nstreet,2,allswellthatendswell,1603\npowerful,2,allswellthatendswell,1603\nfled,2,allswellthatendswell,1603\nfashion,2,allswellthatendswell,1603\nwound,2,allswellthatendswell,1603\nlion,2,allswellthatendswell,1603\nphysic,2,allswellthatendswell,1603\nbeguile,2,allswellthatendswell,1603\namorous,2,allswellthatendswell,1603\nsometimes,2,allswellthatendswell,1603\npolitic,2,allswellthatendswell,1603\ngrounds,2,allswellthatendswell,1603\ninherit,2,allswellthatendswell,1603\nmuffled,2,allswellthatendswell,1603\nextend,2,allswellthatendswell,1603\ncompell'd,2,allswellthatendswell,1603\nsimply,2,allswellthatendswell,1603\nshrewd,2,allswellthatendswell,1603\nsentence,2,allswellthatendswell,1603\nwitness,2,allswellthatendswell,1603\ncornets,2,allswellthatendswell,1603\nleads,2,allswellthatendswell,1603\ncredence,2,allswellthatendswell,1603\nprovide,2,allswellthatendswell,1603\nblessing,2,allswellthatendswell,1603\ndispatch,2,allswellthatendswell,1603\ntop,2,allswellthatendswell,1603\nmonths,2,allswellthatendswell,1603\nBring,2,allswellthatendswell,1603\nfilthy,2,allswellthatendswell,1603\nbehold,2,allswellthatendswell,1603\nobedient,2,allswellthatendswell,1603\nstings,2,allswellthatendswell,1603\nFair,2,allswellthatendswell,1603\nspirit,2,allswellthatendswell,1603\nFall,2,allswellthatendswell,1603\nkill,2,allswellthatendswell,1603\nHumbly,2,allswellthatendswell,1603\nbreathe,2,allswellthatendswell,1603\nbids,2,allswellthatendswell,1603\nth',2,allswellthatendswell,1603\ncrown,2,allswellthatendswell,1603\norder,2,allswellthatendswell,1603\nexpertness,2,allswellthatendswell,1603\nwomen,2,allswellthatendswell,1603\nattended,3,allswellthatendswell,1603\nprofession,3,allswellthatendswell,1603\nFrenchmen,3,allswellthatendswell,1603\nheed,3,allswellthatendswell,1603\ntomb,3,allswellthatendswell,1603\ntaking,3,allswellthatendswell,1603\ndays,3,allswellthatendswell,1603\nadvice,3,allswellthatendswell,1603\nmotion,3,allswellthatendswell,1603\nfor't,3,allswellthatendswell,1603\ndouble,3,allswellthatendswell,1603\nwears,3,allswellthatendswell,1603\nFrenchman,3,allswellthatendswell,1603\nadvantage,3,allswellthatendswell,1603\npeace,3,allswellthatendswell,1603\nWhether,3,allswellthatendswell,1603\nhealth,3,allswellthatendswell,1603\njoy,3,allswellthatendswell,1603\nexpress,3,allswellthatendswell,1603\nheld,3,allswellthatendswell,1603\nlaughter,3,allswellthatendswell,1603\nTell,3,allswellthatendswell,1603\nvain,3,allswellthatendswell,1603\nwithal,3,allswellthatendswell,1603\nsoul,3,allswellthatendswell,1603\ncalls,3,allswellthatendswell,1603\nancestors,3,allswellthatendswell,1603\npick,3,allswellthatendswell,1603\nattempt,3,allswellthatendswell,1603\nsong,3,allswellthatendswell,1603\nplague,3,allswellthatendswell,1603\nsoon,3,allswellthatendswell,1603\ndraw,3,allswellthatendswell,1603\nbackward,3,allswellthatendswell,1603\nline,3,allswellthatendswell,1603\ncame,3,allswellthatendswell,1603\ndeserve,3,allswellthatendswell,1603\nsit,3,allswellthatendswell,1603\nOft,3,allswellthatendswell,1603\nstands,3,allswellthatendswell,1603\nwarrant,3,allswellthatendswell,1603\ninvention,3,allswellthatendswell,1603\nwhipping,3,allswellthatendswell,1603\nlove's,3,allswellthatendswell,1603\nconstraint,3,allswellthatendswell,1603\n'O,3,allswellthatendswell,1603\n's,3,allswellthatendswell,1603\ncause,3,allswellthatendswell,1603\nacquainted,3,allswellthatendswell,1603\nsecond,3,allswellthatendswell,1603\noffence,3,allswellthatendswell,1603\nmerit,3,allswellthatendswell,1603\nturn,3,allswellthatendswell,1603\nfault,3,allswellthatendswell,1603\nabove,3,allswellthatendswell,1603\ninfinite,3,allswellthatendswell,1603\nbeaten,3,allswellthatendswell,1603\nbrief,3,allswellthatendswell,1603\nwind,3,allswellthatendswell,1603\nMight,3,allswellthatendswell,1603\nwant,3,allswellthatendswell,1603\nhence,3,allswellthatendswell,1603\nwindow,3,allswellthatendswell,1603\nbidding,3,allswellthatendswell,1603\nstop,3,allswellthatendswell,1603\ndesire,3,allswellthatendswell,1603\nobserve,3,allswellthatendswell,1603\nparts,3,allswellthatendswell,1603\nintelligence,3,allswellthatendswell,1603\ngoddess,3,allswellthatendswell,1603\nbitter,3,allswellthatendswell,1603\nsick,3,allswellthatendswell,1603\ndrown,3,allswellthatendswell,1603\nmeasure,3,allswellthatendswell,1603\nsurety,3,allswellthatendswell,1603\nscarce,3,allswellthatendswell,1603\npatience,3,allswellthatendswell,1603\nknowing,3,allswellthatendswell,1603\nThose,3,allswellthatendswell,1603\nbad,3,allswellthatendswell,1603\nscurvy,3,allswellthatendswell,1603\npays,3,allswellthatendswell,1603\nOF,3,allswellthatendswell,1603\nin's,3,allswellthatendswell,1603\nbrings,3,allswellthatendswell,1603\nsings,3,allswellthatendswell,1603\nfinds,3,allswellthatendswell,1603\nSomething,3,allswellthatendswell,1603\nmedicine,3,allswellthatendswell,1603\nbless,3,allswellthatendswell,1603\nwhole,3,allswellthatendswell,1603\nHad,3,allswellthatendswell,1603\nsport,3,allswellthatendswell,1603\npox,3,allswellthatendswell,1603\nnobly,3,allswellthatendswell,1603\nbe'st,3,allswellthatendswell,1603\nweep,3,allswellthatendswell,1603\nabsent,3,allswellthatendswell,1603\nDrum,3,allswellthatendswell,1603\nlearned,3,allswellthatendswell,1603\nfifty,3,allswellthatendswell,1603\nmystery,3,allswellthatendswell,1603\ncasement,3,allswellthatendswell,1603\nlately,3,allswellthatendswell,1603\nsolemn,3,allswellthatendswell,1603\nGod's,3,allswellthatendswell,1603\nstory,3,allswellthatendswell,1603\ninstant,3,allswellthatendswell,1603\npromised,3,allswellthatendswell,1603\nbetray,3,allswellthatendswell,1603\npromises,3,allswellthatendswell,1603\nrepent,3,allswellthatendswell,1603\nde,3,allswellthatendswell,1603\nleft,3,allswellthatendswell,1603\ngain,3,allswellthatendswell,1603\nUnless,3,allswellthatendswell,1603\nunworthy,3,allswellthatendswell,1603\nlent,3,allswellthatendswell,1603\ndower,3,allswellthatendswell,1603\nhands,3,allswellthatendswell,1603\nburied,3,allswellthatendswell,1603\nfears,3,allswellthatendswell,1603\ncommendations,3,allswellthatendswell,1603\nthankful,3,allswellthatendswell,1603\nproduce,3,allswellthatendswell,1603\nloss,3,allswellthatendswell,1603\nwherein,3,allswellthatendswell,1603\nless,3,allswellthatendswell,1603\nGerard,3,allswellthatendswell,1603\ntwenty,3,allswellthatendswell,1603\nWhoever,3,allswellthatendswell,1603\nwithered,3,allswellthatendswell,1603\nNarbon,3,allswellthatendswell,1603\nhard,3,allswellthatendswell,1603\nsoldiership,3,allswellthatendswell,1603\nmessenger,3,allswellthatendswell,1603\ncall'd,3,allswellthatendswell,1603\nhang,3,allswellthatendswell,1603\nshut,3,allswellthatendswell,1603\nplain,3,allswellthatendswell,1603\npluck,3,allswellthatendswell,1603\nwhether,3,allswellthatendswell,1603\nUnder,3,allswellthatendswell,1603\nShe's,3,allswellthatendswell,1603\nproper,3,allswellthatendswell,1603\nfond,3,allswellthatendswell,1603\nye,3,allswellthatendswell,1603\nbought,3,allswellthatendswell,1603\ndistinction,3,allswellthatendswell,1603\nfee,3,allswellthatendswell,1603\nSirrah,3,allswellthatendswell,1603\ntouch,3,allswellthatendswell,1603\nnative,3,allswellthatendswell,1603\njudgment,3,allswellthatendswell,1603\nInto,3,allswellthatendswell,1603\noften,3,allswellthatendswell,1603\nthrough,3,allswellthatendswell,1603\neffected,3,allswellthatendswell,1603\nequal,3,allswellthatendswell,1603\nmain,3,allswellthatendswell,1603\nreported,3,allswellthatendswell,1603\ngentle,3,allswellthatendswell,1603\nrate,3,allswellthatendswell,1603\nentertainment,3,allswellthatendswell,1603\nbeard,3,allswellthatendswell,1603\nvelvet,3,allswellthatendswell,1603\nbravely,3,allswellthatendswell,1603\nestate,3,allswellthatendswell,1603\ntraitors,3,allswellthatendswell,1603\nTherefore,3,allswellthatendswell,1603\nmouth,3,allswellthatendswell,1603\nfreely,3,allswellthatendswell,1603\nscarf,3,allswellthatendswell,1603\nwiser,3,allswellthatendswell,1603\nqualities,3,allswellthatendswell,1603\ndidst,3,allswellthatendswell,1603\nslave,3,allswellthatendswell,1603\nissue,3,allswellthatendswell,1603\nquoth,3,allswellthatendswell,1603\nover,3,allswellthatendswell,1603\nsearch,3,allswellthatendswell,1603\nwed,3,allswellthatendswell,1603\nones,3,allswellthatendswell,1603\nItaly,3,allswellthatendswell,1603\nclaims,3,allswellthatendswell,1603\ngrave,3,allswellthatendswell,1603\nrogues,3,allswellthatendswell,1603\nblushes,3,allswellthatendswell,1603\nfits,3,allswellthatendswell,1603\nthrow,3,allswellthatendswell,1603\nexperience,3,allswellthatendswell,1603\nwin,3,allswellthatendswell,1603\nstomach,3,allswellthatendswell,1603\nDear,3,allswellthatendswell,1603\nhumility,3,allswellthatendswell,1603\ndust,3,allswellthatendswell,1603\nassure,3,allswellthatendswell,1603\nhappy,3,allswellthatendswell,1603\nnews,3,allswellthatendswell,1603\nfallen,3,allswellthatendswell,1603\nwhat's,3,allswellthatendswell,1603\nreports,3,allswellthatendswell,1603\ncertainty,3,allswellthatendswell,1603\nowe,3,allswellthatendswell,1603\nhaply,3,allswellthatendswell,1603\nfox,3,allswellthatendswell,1603\nwhence,3,allswellthatendswell,1603\nfail,3,allswellthatendswell,1603\nfile,3,allswellthatendswell,1603\nfain,3,allswellthatendswell,1603\nguilty,3,allswellthatendswell,1603\ncompany,3,allswellthatendswell,1603\ndo't,3,allswellthatendswell,1603\nofficer,3,allswellthatendswell,1603\npassion,3,allswellthatendswell,1603\nfolly,3,allswellthatendswell,1603\nshows,3,allswellthatendswell,1603\nqueen,3,allswellthatendswell,1603\nperceive,3,allswellthatendswell,1603\npatient,3,allswellthatendswell,1603\nwhither,3,allswellthatendswell,1603\ncomfort,3,allswellthatendswell,1603\nband,3,allswellthatendswell,1603\nWelcome,3,allswellthatendswell,1603\ngallant,3,allswellthatendswell,1603\nshort,3,allswellthatendswell,1603\nvirgins,3,allswellthatendswell,1603\ncounterfeit,3,allswellthatendswell,1603\nhorses,3,allswellthatendswell,1603\nWherefore,3,allswellthatendswell,1603\ngives,3,allswellthatendswell,1603\nWidow's,3,allswellthatendswell,1603\nprithee,3,allswellthatendswell,1603\nalong,3,allswellthatendswell,1603\nfairer,3,allswellthatendswell,1603\nback,3,allswellthatendswell,1603\neither,3,allswellthatendswell,1603\nTruly,3,allswellthatendswell,1603\nliking,3,allswellthatendswell,1603\nMine,3,allswellthatendswell,1603\nfellows,3,allswellthatendswell,1603\ntroop,3,allswellthatendswell,1603\nexploit,3,allswellthatendswell,1603\nEnglish,3,allswellthatendswell,1603\nGentlemen,3,allswellthatendswell,1603\nincrease,3,allswellthatendswell,1603\nhours,3,allswellthatendswell,1603\nwhilst,3,allswellthatendswell,1603\nmother's,3,allswellthatendswell,1603\nprotest,3,allswellthatendswell,1603\nbestow,3,allswellthatendswell,1603\nmetaphor,3,allswellthatendswell,1603\nnature's,3,allswellthatendswell,1603\nuntil,3,allswellthatendswell,1603\nsleep,3,allswellthatendswell,1603\nservants,3,allswellthatendswell,1603\nspirits,3,allswellthatendswell,1603\nseldom,3,allswellthatendswell,1603\nremember,3,allswellthatendswell,1603\nmet,3,allswellthatendswell,1603\nGreat,3,allswellthatendswell,1603\nAway,3,allswellthatendswell,1603\nE'en,3,allswellthatendswell,1603\nthither,3,allswellthatendswell,1603\nbeauty,3,allswellthatendswell,1603\nhush,3,allswellthatendswell,1603\nWithout,3,allswellthatendswell,1603\nbreaking,3,allswellthatendswell,1603\nattend,3,allswellthatendswell,1603\nhonour'd,3,allswellthatendswell,1603\ndark,3,allswellthatendswell,1603\nstratagem,3,allswellthatendswell,1603\nbusinesses,3,allswellthatendswell,1603\ncertain,3,allswellthatendswell,1603\nshake,3,allswellthatendswell,1603\nhe'll,3,allswellthatendswell,1603\nsmell,3,allswellthatendswell,1603\nFind,3,allswellthatendswell,1603\ne'er,3,allswellthatendswell,1603\nand,515,allswellthatendswell,1603\nYou're,4,allswellthatendswell,1603\nfancy,4,allswellthatendswell,1603\nleisure,4,allswellthatendswell,1603\ninterpreter,4,allswellthatendswell,1603\nspace,4,allswellthatendswell,1603\nboys,4,allswellthatendswell,1603\nsingle,4,allswellthatendswell,1603\nMarseilles,4,allswellthatendswell,1603\nyounger,4,allswellthatendswell,1603\nclothes,4,allswellthatendswell,1603\ntears,4,allswellthatendswell,1603\nPage,4,allswellthatendswell,1603\nEre,4,allswellthatendswell,1603\nWould,4,allswellthatendswell,1603\nspare,4,allswellthatendswell,1603\nmercy,4,allswellthatendswell,1603\nGive,4,allswellthatendswell,1603\ngracious,4,allswellthatendswell,1603\nthou'rt,4,allswellthatendswell,1603\nblack,4,allswellthatendswell,1603\nsin,4,allswellthatendswell,1603\n'twere,4,allswellthatendswell,1603\nAside,4,allswellthatendswell,1603\nSuch,4,allswellthatendswell,1603\nskill,4,allswellthatendswell,1603\nfaults,4,allswellthatendswell,1603\nAttendants,4,allswellthatendswell,1603\nread,4,allswellthatendswell,1603\nworse,4,allswellthatendswell,1603\nreceived,4,allswellthatendswell,1603\nguarded,4,allswellthatendswell,1603\ndearly,4,allswellthatendswell,1603\nPardon,4,allswellthatendswell,1603\ncompanion,4,allswellthatendswell,1603\npromise,4,allswellthatendswell,1603\ngrow,4,allswellthatendswell,1603\nwishes,4,allswellthatendswell,1603\nseems,4,allswellthatendswell,1603\nbold,4,allswellthatendswell,1603\nstocks,4,allswellthatendswell,1603\npretty,4,allswellthatendswell,1603\ncolour,4,allswellthatendswell,1603\neach,4,allswellthatendswell,1603\nmanners,4,allswellthatendswell,1603\nmelancholy,4,allswellthatendswell,1603\ndesperate,4,allswellthatendswell,1603\nstar,4,allswellthatendswell,1603\nOn,4,allswellthatendswell,1603\nbeg,4,allswellthatendswell,1603\ndeserved,4,allswellthatendswell,1603\nvaliant,4,allswellthatendswell,1603\ngoodly,4,allswellthatendswell,1603\ncap,4,allswellthatendswell,1603\ntricks,4,allswellthatendswell,1603\njust,4,allswellthatendswell,1603\nvows,4,allswellthatendswell,1603\nBoth,4,allswellthatendswell,1603\ndeed,4,allswellthatendswell,1603\nservant,4,allswellthatendswell,1603\nstood,4,allswellthatendswell,1603\nbeat,4,allswellthatendswell,1603\nBless,4,allswellthatendswell,1603\ndeal,4,allswellthatendswell,1603\nthrive,4,allswellthatendswell,1603\nmove,4,allswellthatendswell,1603\nquestions,4,allswellthatendswell,1603\nidle,4,allswellthatendswell,1603\nlest,4,allswellthatendswell,1603\nreasons,4,allswellthatendswell,1603\nJaques,4,allswellthatendswell,1603\ndeny,4,allswellthatendswell,1603\nmidnight,4,allswellthatendswell,1603\npaid,4,allswellthatendswell,1603\nowes,4,allswellthatendswell,1603\nfoot,4,allswellthatendswell,1603\nbosom,4,allswellthatendswell,1603\nduke's,4,allswellthatendswell,1603\nVirginity,4,allswellthatendswell,1603\nundone,4,allswellthatendswell,1603\ntoken,4,allswellthatendswell,1603\nhere's,4,allswellthatendswell,1603\nspoken,4,allswellthatendswell,1603\nHave,4,allswellthatendswell,1603\njustice,4,allswellthatendswell,1603\nAgainst,4,allswellthatendswell,1603\nthinks,4,allswellthatendswell,1603\nnose,4,allswellthatendswell,1603\nalmost,4,allswellthatendswell,1603\nwonder,4,allswellthatendswell,1603\nremedy,4,allswellthatendswell,1603\nscar,4,allswellthatendswell,1603\nquickly,4,allswellthatendswell,1603\nLook,4,allswellthatendswell,1603\nsoldiers,4,allswellthatendswell,1603\nstars,4,allswellthatendswell,1603\npresently,4,allswellthatendswell,1603\ncoward,4,allswellthatendswell,1603\nfree,4,allswellthatendswell,1603\nbehalf,4,allswellthatendswell,1603\nnear,4,allswellthatendswell,1603\nfive,4,allswellthatendswell,1603\nfetch,4,allswellthatendswell,1603\nable,4,allswellthatendswell,1603\nreceive,4,allswellthatendswell,1603\nprice,4,allswellthatendswell,1603\ncoming,4,allswellthatendswell,1603\nransom,4,allswellthatendswell,1603\nhundred,4,allswellthatendswell,1603\ncontempt,4,allswellthatendswell,1603\nMake,4,allswellthatendswell,1603\nThat's,4,allswellthatendswell,1603\ngrant,4,allswellthatendswell,1603\nwork,4,allswellthatendswell,1603\nworn,4,allswellthatendswell,1603\nrich,4,allswellthatendswell,1603\nkiss,4,allswellthatendswell,1603\nfare,4,allswellthatendswell,1603\ntalk,4,allswellthatendswell,1603\ncount's,4,allswellthatendswell,1603\ncarry,4,allswellthatendswell,1603\nunto,4,allswellthatendswell,1603\nvirtues,4,allswellthatendswell,1603\nbuttock,4,allswellthatendswell,1603\nintents,4,allswellthatendswell,1603\nhearts,4,allswellthatendswell,1603\nlow,4,allswellthatendswell,1603\ngoodness,4,allswellthatendswell,1603\nwe'll,4,allswellthatendswell,1603\nended,4,allswellthatendswell,1603\nDian,4,allswellthatendswell,1603\nsound,4,allswellthatendswell,1603\nblame,4,allswellthatendswell,1603\nentreat,4,allswellthatendswell,1603\nDumain,4,allswellthatendswell,1603\nmatch,4,allswellthatendswell,1603\nlie,4,allswellthatendswell,1603\near,4,allswellthatendswell,1603\nBefore,4,allswellthatendswell,1603\nhurt,4,allswellthatendswell,1603\ngoing,4,allswellthatendswell,1603\ncontent,4,allswellthatendswell,1603\ndisaster,4,allswellthatendswell,1603\nrespect,4,allswellthatendswell,1603\nDid,4,allswellthatendswell,1603\nweigh,4,allswellthatendswell,1603\nkind,4,allswellthatendswell,1603\nsharp,4,allswellthatendswell,1603\nfortunes,4,allswellthatendswell,1603\nmeet,5,allswellthatendswell,1603\nsuffer,5,allswellthatendswell,1603\ntook,5,allswellthatendswell,1603\ncountry,5,allswellthatendswell,1603\nspeech,5,allswellthatendswell,1603\nwoman's,5,allswellthatendswell,1603\nlawful,5,allswellthatendswell,1603\ntruly,5,allswellthatendswell,1603\nhers,5,allswellthatendswell,1603\nhonourable,5,allswellthatendswell,1603\nwhipped,5,allswellthatendswell,1603\ncase,5,allswellthatendswell,1603\npaper,5,allswellthatendswell,1603\nNor,5,allswellthatendswell,1603\nsomething,5,allswellthatendswell,1603\nsix,5,allswellthatendswell,1603\ndeceived,5,allswellthatendswell,1603\n'twas,5,allswellthatendswell,1603\nsuit,5,allswellthatendswell,1603\nsworn,5,allswellthatendswell,1603\nwrong,5,allswellthatendswell,1603\nways,5,allswellthatendswell,1603\ncorrupt,5,allswellthatendswell,1603\nlanguage,5,allswellthatendswell,1603\ntitle,5,allswellthatendswell,1603\nanon,5,allswellthatendswell,1603\nAt,5,allswellthatendswell,1603\npay,5,allswellthatendswell,1603\nkept,5,allswellthatendswell,1603\ncanst,5,allswellthatendswell,1603\nwisdom,5,allswellthatendswell,1603\nmeans,5,allswellthatendswell,1603\nplay,5,allswellthatendswell,1603\nproud,5,allswellthatendswell,1603\ngold,5,allswellthatendswell,1603\ngrief,5,allswellthatendswell,1603\nOr,5,allswellthatendswell,1603\ndoth,5,allswellthatendswell,1603\nweak,5,allswellthatendswell,1603\nSaint,5,allswellthatendswell,1603\na',5,allswellthatendswell,1603\nsing,5,allswellthatendswell,1603\nconfess,5,allswellthatendswell,1603\nSoldiers,5,allswellthatendswell,1603\ngift,5,allswellthatendswell,1603\naid,5,allswellthatendswell,1603\nLafeu,5,allswellthatendswell,1603\nbear,5,allswellthatendswell,1603\nneeds,5,allswellthatendswell,1603\nrecovered,5,allswellthatendswell,1603\nact,5,allswellthatendswell,1603\nvalour,5,allswellthatendswell,1603\nwelcome,5,allswellthatendswell,1603\nMore,5,allswellthatendswell,1603\nprince,5,allswellthatendswell,1603\nfour,5,allswellthatendswell,1603\npraise,5,allswellthatendswell,1603\nmajesty's,5,allswellthatendswell,1603\npresent,5,allswellthatendswell,1603\nhate,5,allswellthatendswell,1603\nmaiden,5,allswellthatendswell,1603\nright,5,allswellthatendswell,1603\nlead,5,allswellthatendswell,1603\nnay,5,allswellthatendswell,1603\nreport,5,allswellthatendswell,1603\nsirrah,5,allswellthatendswell,1603\nKING's,5,allswellthatendswell,1603\nalready,5,allswellthatendswell,1603\nI'ld,5,allswellthatendswell,1603\nstate,5,allswellthatendswell,1603\nsame,5,allswellthatendswell,1603\nget,5,allswellthatendswell,1603\nsorrow,5,allswellthatendswell,1603\nmorrow,5,allswellthatendswell,1603\narmy,5,allswellthatendswell,1603\nthemselves,5,allswellthatendswell,1603\nnext,5,allswellthatendswell,1603\nfall,5,allswellthatendswell,1603\nfly,5,allswellthatendswell,1603\n'em,5,allswellthatendswell,1603\nvow,5,allswellthatendswell,1603\nparticular,5,allswellthatendswell,1603\nmarried,5,allswellthatendswell,1603\nmeaning,5,allswellthatendswell,1603\nlay,5,allswellthatendswell,1603\ngentlemen,5,allswellthatendswell,1603\ngiven,5,allswellthatendswell,1603\nwilt,5,allswellthatendswell,1603\nholds,5,allswellthatendswell,1603\nalone,5,allswellthatendswell,1603\nseen,5,allswellthatendswell,1603\nPray,5,allswellthatendswell,1603\nself,5,allswellthatendswell,1603\ntogether,5,allswellthatendswell,1603\ngoes,5,allswellthatendswell,1603\nNothing,5,allswellthatendswell,1603\nsovereign,5,allswellthatendswell,1603\nIndeed,5,allswellthatendswell,1603\ntry,5,allswellthatendswell,1603\nsimple,5,allswellthatendswell,1603\nhonour's,5,allswellthatendswell,1603\nfollow,5,allswellthatendswell,1603\nHe's,5,allswellthatendswell,1603\nsuccess,5,allswellthatendswell,1603\nTake,5,allswellthatendswell,1603\nshalt,5,allswellthatendswell,1603\nshame,5,allswellthatendswell,1603\nundertake,5,allswellthatendswell,1603\nV,6,allswellthatendswell,1603\nreputation,6,allswellthatendswell,1603\nwrit,6,allswellthatendswell,1603\nroyal,6,allswellthatendswell,1603\nMust,6,allswellthatendswell,1603\nfinger,6,allswellthatendswell,1603\nlies,6,allswellthatendswell,1603\ntrust,6,allswellthatendswell,1603\ncare,6,allswellthatendswell,1603\nhighness,6,allswellthatendswell,1603\nwords,6,allswellthatendswell,1603\nhead,6,allswellthatendswell,1603\nbody,6,allswellthatendswell,1603\nlight,6,allswellthatendswell,1603\nlooks,6,allswellthatendswell,1603\ncourtier,6,allswellthatendswell,1603\nhumble,6,allswellthatendswell,1603\nchoose,6,allswellthatendswell,1603\nOne,6,allswellthatendswell,1603\nDiana,6,allswellthatendswell,1603\noffice,6,allswellthatendswell,1603\nelse,6,allswellthatendswell,1603\nknowledge,6,allswellthatendswell,1603\ncreature,6,allswellthatendswell,1603\nfortune's,6,allswellthatendswell,1603\nbid,6,allswellthatendswell,1603\npass,6,allswellthatendswell,1603\nears,6,allswellthatendswell,1603\ncat,6,allswellthatendswell,1603\ndost,6,allswellthatendswell,1603\nbuy,6,allswellthatendswell,1603\npains,6,allswellthatendswell,1603\nbegin,6,allswellthatendswell,1603\nvirgin,6,allswellthatendswell,1603\nlend,6,allswellthatendswell,1603\nspeed,6,allswellthatendswell,1603\nthyself,6,allswellthatendswell,1603\nage,6,allswellthatendswell,1603\nill,6,allswellthatendswell,1603\ndevil,6,allswellthatendswell,1603\nchoice,6,allswellthatendswell,1603\ncourse,6,allswellthatendswell,1603\nstrive,6,allswellthatendswell,1603\nAre,6,allswellthatendswell,1603\nHath,6,allswellthatendswell,1603\nnote,6,allswellthatendswell,1603\ntender,6,allswellthatendswell,1603\nchild,6,allswellthatendswell,1603\nquestion,6,allswellthatendswell,1603\npilgrim,6,allswellthatendswell,1603\nmind,6,allswellthatendswell,1603\nthere's,6,allswellthatendswell,1603\ndearest,6,allswellthatendswell,1603\nmonsieur,6,allswellthatendswell,1603\nliving,6,allswellthatendswell,1603\ncure,6,allswellthatendswell,1603\nheavy,6,allswellthatendswell,1603\nduty,6,allswellthatendswell,1603\nbetween,6,allswellthatendswell,1603\nMonsieur,6,allswellthatendswell,1603\ntaken,6,allswellthatendswell,1603\ncargo,6,allswellthatendswell,1603\nthree,6,allswellthatendswell,1603\ngentleman,6,allswellthatendswell,1603\nlaw,6,allswellthatendswell,1603\nman's,6,allswellthatendswell,1603\nstrong,6,allswellthatendswell,1603\nprayers,6,allswellthatendswell,1603\nhither,6,allswellthatendswell,1603\nsent,6,allswellthatendswell,1603\ncold,6,allswellthatendswell,1603\npurpose,6,allswellthatendswell,1603\nwrite,6,allswellthatendswell,1603\nliege,6,allswellthatendswell,1603\nmarriage,6,allswellthatendswell,1603\nlast,6,allswellthatendswell,1603\nMarry,6,allswellthatendswell,1603\ncredit,6,allswellthatendswell,1603\nstrange,6,allswellthatendswell,1603\nremembrance,6,allswellthatendswell,1603\nenemy,6,allswellthatendswell,1603\ntold,7,allswellthatendswell,1603\ntimes,7,allswellthatendswell,1603\nhorse,7,allswellthatendswell,1603\nhaste,7,allswellthatendswell,1603\nrun,7,allswellthatendswell,1603\nUpon,7,allswellthatendswell,1603\ncamp,7,allswellthatendswell,1603\nsaw,7,allswellthatendswell,1603\ncheek,7,allswellthatendswell,1603\ncall,7,allswellthatendswell,1603\nbound,7,allswellthatendswell,1603\nvirtuous,7,allswellthatendswell,1603\nworth,7,allswellthatendswell,1603\nThere,7,allswellthatendswell,1603\ncommon,7,allswellthatendswell,1603\nking's,7,allswellthatendswell,1603\nflesh,7,allswellthatendswell,1603\nsteal,7,allswellthatendswell,1603\nwish,7,allswellthatendswell,1603\ndispleasure,7,allswellthatendswell,1603\nrest,7,allswellthatendswell,1603\nmean,7,allswellthatendswell,1603\nAn,7,allswellthatendswell,1603\nneither,7,allswellthatendswell,1603\nboy,7,allswellthatendswell,1603\nstay,7,allswellthatendswell,1603\nHer,7,allswellthatendswell,1603\nfavour,7,allswellthatendswell,1603\nYes,7,allswellthatendswell,1603\nkeep,7,allswellthatendswell,1603\npoint,7,allswellthatendswell,1603\nshow,7,allswellthatendswell,1603\nThan,7,allswellthatendswell,1603\nlords,7,allswellthatendswell,1603\nMARIANA,7,allswellthatendswell,1603\nLove,7,allswellthatendswell,1603\nend,7,allswellthatendswell,1603\nwon,7,allswellthatendswell,1603\nonce,7,allswellthatendswell,1603\nsake,7,allswellthatendswell,1603\nWe'll,7,allswellthatendswell,1603\nwhy,7,allswellthatendswell,1603\nsays,7,allswellthatendswell,1603\nheard,7,allswellthatendswell,1603\ndanger,7,allswellthatendswell,1603\nface,7,allswellthatendswell,1603\nTill,7,allswellthatendswell,1603\neven,7,allswellthatendswell,1603\nMars,7,allswellthatendswell,1603\nfit,7,allswellthatendswell,1603\nfine,7,allswellthatendswell,1603\nne'er,7,allswellthatendswell,1603\nherself,7,allswellthatendswell,1603\nis't,7,allswellthatendswell,1603\nthus,7,allswellthatendswell,1603\neat,7,allswellthatendswell,1603\nmakes,7,allswellthatendswell,1603\non't,7,allswellthatendswell,1603\nlate,7,allswellthatendswell,1603\nThy,7,allswellthatendswell,1603\npity,8,allswellthatendswell,1603\nthought,8,allswellthatendswell,1603\nCOUNT's,8,allswellthatendswell,1603\nunderstand,8,allswellthatendswell,1603\nWhose,8,allswellthatendswell,1603\nenough,8,allswellthatendswell,1603\n't,8,allswellthatendswell,1603\nabout,8,allswellthatendswell,1603\nsoldier,8,allswellthatendswell,1603\nThough,8,allswellthatendswell,1603\nspoke,8,allswellthatendswell,1603\nFaith,8,allswellthatendswell,1603\nsince,8,allswellthatendswell,1603\nIV,8,allswellthatendswell,1603\nprove,8,allswellthatendswell,1603\ngot,8,allswellthatendswell,1603\nRe,8,allswellthatendswell,1603\nwear,8,allswellthatendswell,1603\nBertram,8,allswellthatendswell,1603\nfarewell,8,allswellthatendswell,1603\ntongue,8,allswellthatendswell,1603\nlong,8,allswellthatendswell,1603\ngentlewoman,8,allswellthatendswell,1603\nloves,8,allswellthatendswell,1603\nthanks,8,allswellthatendswell,1603\nMadam,8,allswellthatendswell,1603\nLords,8,allswellthatendswell,1603\nfaith,8,allswellthatendswell,1603\ngeneral,8,allswellthatendswell,1603\nknown,8,allswellthatendswell,1603\nThen,8,allswellthatendswell,1603\nneed,8,allswellthatendswell,1603\nfather's,8,allswellthatendswell,1603\nfire,8,allswellthatendswell,1603\noft,8,allswellthatendswell,1603\nthousand,8,allswellthatendswell,1603\nhold,8,allswellthatendswell,1603\nholy,8,allswellthatendswell,1603\nSince,8,allswellthatendswell,1603\ncommand,8,allswellthatendswell,1603\nten,8,allswellthatendswell,1603\nwoman,8,allswellthatendswell,1603\noaths,8,allswellthatendswell,1603\nWill,9,allswellthatendswell,1603\ndemand,9,allswellthatendswell,1603\ncharge,9,allswellthatendswell,1603\nyourself,9,allswellthatendswell,1603\nfull,9,allswellthatendswell,1603\nshe's,9,allswellthatendswell,1603\nWas,9,allswellthatendswell,1603\nfellow,9,allswellthatendswell,1603\nborn,9,allswellthatendswell,1603\nfear,9,allswellthatendswell,1603\nworthy,9,allswellthatendswell,1603\nsword,9,allswellthatendswell,1603\nsense,9,allswellthatendswell,1603\nfriend,9,allswellthatendswell,1603\nWhat's,9,allswellthatendswell,1603\nin't,9,allswellthatendswell,1603\npleasure,9,allswellthatendswell,1603\nenter,9,allswellthatendswell,1603\nbest,9,allswellthatendswell,1603\nYet,9,allswellthatendswell,1603\nknew,9,allswellthatendswell,1603\npart,9,allswellthatendswell,1603\nask,9,allswellthatendswell,1603\nfar,9,allswellthatendswell,1603\neye,9,allswellthatendswell,1603\nFlourish,9,allswellthatendswell,1603\nFrom,9,allswellthatendswell,1603\nAll,9,allswellthatendswell,1603\nletters,9,allswellthatendswell,1603\nthing,9,allswellthatendswell,1603\nonly,9,allswellthatendswell,1603\nbeseech,9,allswellthatendswell,1603\nsave,9,allswellthatendswell,1603\nhour,9,allswellthatendswell,1603\ntill,9,allswellthatendswell,1603\npardon,9,allswellthatendswell,1603\nseem,9,allswellthatendswell,1603\nsend,9,allswellthatendswell,1603\nCaptain,9,allswellthatendswell,1603\nwithout,9,allswellthatendswell,1603\nlack,9,allswellthatendswell,1603\nFlorentine,9,allswellthatendswell,1603\nmistress,10,allswellthatendswell,1603\nunder,10,allswellthatendswell,1603\nbrother,10,allswellthatendswell,1603\nanother,10,allswellthatendswell,1603\nFarewell,10,allswellthatendswell,1603\nwithin,10,allswellthatendswell,1603\nwars,10,allswellthatendswell,1603\nmatter,10,allswellthatendswell,1603\nBe,10,allswellthatendswell,1603\nto't,10,allswellthatendswell,1603\nII,10,allswellthatendswell,1603\ndead,10,allswellthatendswell,1603\nReads,10,allswellthatendswell,1603\nloved,10,allswellthatendswell,1603\nhast,10,allswellthatendswell,1603\nSteward,10,allswellthatendswell,1603\nDUKE,10,allswellthatendswell,1603\nSir,10,allswellthatendswell,1603\nyouth,10,allswellthatendswell,1603\nThey,10,allswellthatendswell,1603\nwho,10,allswellthatendswell,1603\nstill,10,allswellthatendswell,1603\nstand,10,allswellthatendswell,1603\nplease,10,allswellthatendswell,1603\nthank,10,allswellthatendswell,1603\nhonest,10,allswellthatendswell,1603\neyes,10,allswellthatendswell,1603\nswear,10,allswellthatendswell,1603\nuse,10,allswellthatendswell,1603\nreturn,10,allswellthatendswell,1603\nhonesty,10,allswellthatendswell,1603\nthoughts,10,allswellthatendswell,1603\nbeing,10,allswellthatendswell,1603\nvirtue,10,allswellthatendswell,1603\nMay,10,allswellthatendswell,1603\ndare,10,allswellthatendswell,1603\nsure,11,allswellthatendswell,1603\nWho,11,allswellthatendswell,1603\nourselves,11,allswellthatendswell,1603\nOur,11,allswellthatendswell,1603\nThere's,11,allswellthatendswell,1603\nhe's,11,allswellthatendswell,1603\nbed,11,allswellthatendswell,1603\ngave,11,allswellthatendswell,1603\nsaid,11,allswellthatendswell,1603\nthose,11,allswellthatendswell,1603\nforth,11,allswellthatendswell,1603\nlittle,11,allswellthatendswell,1603\nShe,11,allswellthatendswell,1603\nere,11,allswellthatendswell,1603\nhigh,11,allswellthatendswell,1603\nCount,11,allswellthatendswell,1603\ngreatest,11,allswellthatendswell,1603\nbelieve,11,allswellthatendswell,1603\nwar,11,allswellthatendswell,1603\nletter,11,allswellthatendswell,1603\nword,11,allswellthatendswell,1603\nParis,11,allswellthatendswell,1603\nParolles,12,allswellthatendswell,1603\nHere,12,allswellthatendswell,1603\nFrench,12,allswellthatendswell,1603\nIII,12,allswellthatendswell,1603\nitself,12,allswellthatendswell,1603\nGo,12,allswellthatendswell,1603\nlook,12,allswellthatendswell,1603\ndear,12,allswellthatendswell,1603\nplace,12,allswellthatendswell,1603\nmajesty,12,allswellthatendswell,1603\nyours,12,allswellthatendswell,1603\nnor,12,allswellthatendswell,1603\nmyself,12,allswellthatendswell,1603\nShall,12,allswellthatendswell,1603\nfortune,12,allswellthatendswell,1603\ncaptain,12,allswellthatendswell,1603\ndie,12,allswellthatendswell,1603\nrather,13,allswellthatendswell,1603\nNow,13,allswellthatendswell,1603\nfurther,13,allswellthatendswell,1603\nservice,13,allswellthatendswell,1603\ntherefore,13,allswellthatendswell,1603\npast,13,allswellthatendswell,1603\nhusband,13,allswellthatendswell,1603\nthat's,13,allswellthatendswell,1603\no',13,allswellthatendswell,1603\nlost,13,allswellthatendswell,1603\nlose,13,allswellthatendswell,1603\nthings,13,allswellthatendswell,1603\nThou,13,allswellthatendswell,1603\nknows,13,allswellthatendswell,1603\nfound,13,allswellthatendswell,1603\nhelp,14,allswellthatendswell,1603\nfriends,14,allswellthatendswell,1603\nCome,14,allswellthatendswell,1603\nNot,14,allswellthatendswell,1603\nset,14,allswellthatendswell,1603\nblood,14,allswellthatendswell,1603\nGood,14,allswellthatendswell,1603\ngrace,14,allswellthatendswell,1603\nHelen,14,allswellthatendswell,1603\nfool,14,allswellthatendswell,1603\nthough,14,allswellthatendswell,1603\nWell,14,allswellthatendswell,1603\nway,14,allswellthatendswell,1603\nduke,14,allswellthatendswell,1603\nNay,15,allswellthatendswell,1603\nworld,15,allswellthatendswell,1603\nbetter,15,allswellthatendswell,1603\nagainst,15,allswellthatendswell,1603\nafter,15,allswellthatendswell,1603\nbring,15,allswellthatendswell,1603\nYour,15,allswellthatendswell,1603\npalace,15,allswellthatendswell,1603\nlordship,15,allswellthatendswell,1603\nday,15,allswellthatendswell,1603\nLet,15,allswellthatendswell,1603\nvirginity,15,allswellthatendswell,1603\nmaster,15,allswellthatendswell,1603\nwhom,15,allswellthatendswell,1603\nhouse,15,allswellthatendswell,1603\nmen,15,allswellthatendswell,1603\ntrue,15,allswellthatendswell,1603\nfather,15,allswellthatendswell,1603\npower,15,allswellthatendswell,1603\nin,271,allswellthatendswell,1603\ndown,16,allswellthatendswell,1603\ni',16,allswellthatendswell,1603\nindeed,16,allswellthatendswell,1603\nnone,16,allswellthatendswell,1603\ncourt,16,allswellthatendswell,1603\nmarry,16,allswellthatendswell,1603\nfair,16,allswellthatendswell,1603\nhome,16,allswellthatendswell,1603\nsweet,16,allswellthatendswell,1603\nWhere,16,allswellthatendswell,1603\nbusiness,17,allswellthatendswell,1603\ndrum,17,allswellthatendswell,1603\ndeath,17,allswellthatendswell,1603\nDo,17,allswellthatendswell,1603\nNo,17,allswellthatendswell,1603\nWe,17,allswellthatendswell,1603\nbeen,17,allswellthatendswell,1603\nnoble,17,allswellthatendswell,1603\nart,17,allswellthatendswell,1603\nmade,17,allswellthatendswell,1603\nheart,17,allswellthatendswell,1603\ncount,17,allswellthatendswell,1603\n'Tis,17,allswellthatendswell,1603\nhimself,17,allswellthatendswell,1603\nevery,18,allswellthatendswell,1603\ntruth,18,allswellthatendswell,1603\nFrance,18,allswellthatendswell,1603\ndaughter,18,allswellthatendswell,1603\nwhose,18,allswellthatendswell,1603\ngone,18,allswellthatendswell,1603\nGod,18,allswellthatendswell,1603\nHow,18,allswellthatendswell,1603\nmany,18,allswellthatendswell,1603\ncomes,18,allswellthatendswell,1603\nold,18,allswellthatendswell,1603\nlady,18,allswellthatendswell,1603\nanswer,19,allswellthatendswell,1603\nthese,19,allswellthatendswell,1603\ntell,19,allswellthatendswell,1603\nname,19,allswellthatendswell,1603\nput,19,allswellthatendswell,1603\ninto,19,allswellthatendswell,1603\ncould,19,allswellthatendswell,1603\nfirst,19,allswellthatendswell,1603\nboth,20,allswellthatendswell,1603\nBy,20,allswellthatendswell,1603\nup,20,allswellthatendswell,1603\nFlorence,20,allswellthatendswell,1603\nhope,20,allswellthatendswell,1603\nlive,20,allswellthatendswell,1603\nmight,20,allswellthatendswell,1603\npray,21,allswellthatendswell,1603\nnothing,21,allswellthatendswell,1603\nWith,21,allswellthatendswell,1603\nheaven,21,allswellthatendswell,1603\nFor,21,allswellthatendswell,1603\nAy,21,allswellthatendswell,1603\nHis,21,allswellthatendswell,1603\nIs,21,allswellthatendswell,1603\nnight,21,allswellthatendswell,1603\nhow,21,allswellthatendswell,1603\nmaid,21,allswellthatendswell,1603\nwhere,21,allswellthatendswell,1603\nthine,21,allswellthatendswell,1603\noff,21,allswellthatendswell,1603\nserve,21,allswellthatendswell,1603\nfind,21,allswellthatendswell,1603\nhear,22,allswellthatendswell,1603\ndone,22,allswellthatendswell,1603\nhand,22,allswellthatendswell,1603\nyoung,22,allswellthatendswell,1603\ntwo,22,allswellthatendswell,1603\nnature,22,allswellthatendswell,1603\n',23,allswellthatendswell,1603\nWhy,23,allswellthatendswell,1603\ngo,23,allswellthatendswell,1603\nACT,23,allswellthatendswell,1603\nbefore,23,allswellthatendswell,1603\ndoes,24,allswellthatendswell,1603\nSCENE,24,allswellthatendswell,1603\nother,24,allswellthatendswell,1603\nlife,25,allswellthatendswell,1603\nsome,25,allswellthatendswell,1603\nleave,25,allswellthatendswell,1603\nRousillon,25,allswellthatendswell,1603\nENDS,26,allswellthatendswell,1603\naway,26,allswellthatendswell,1603\nIt,26,allswellthatendswell,1603\nExeunt,26,allswellthatendswell,1603\nALL'S,26,allswellthatendswell,1603\nany,26,allswellthatendswell,1603\nGentleman,26,allswellthatendswell,1603\npoor,26,allswellthatendswell,1603\nTHAT,26,allswellthatendswell,1603\ncannot,26,allswellthatendswell,1603\nmuch,27,allswellthatendswell,1603\nthen,27,allswellthatendswell,1603\ntheir,27,allswellthatendswell,1603\nagain,27,allswellthatendswell,1603\nknave,27,allswellthatendswell,1603\nThis,27,allswellthatendswell,1603\nWhen,27,allswellthatendswell,1603\nmother,28,allswellthatendswell,1603\nhas,28,allswellthatendswell,1603\nnever,28,allswellthatendswell,1603\nOf,28,allswellthatendswell,1603\nWhich,28,allswellthatendswell,1603\nSo,28,allswellthatendswell,1603\never,28,allswellthatendswell,1603\ntime,28,allswellthatendswell,1603\nking,28,allswellthatendswell,1603\nAs,29,allswellthatendswell,1603\nwife,30,allswellthatendswell,1603\nlet,30,allswellthatendswell,1603\nExit,30,allswellthatendswell,1603\ndid,31,allswellthatendswell,1603\nson,32,allswellthatendswell,1603\nWidow,32,allswellthatendswell,1603\nout,32,allswellthatendswell,1603\ntake,32,allswellthatendswell,1603\nsuch,33,allswellthatendswell,1603\ncome,33,allswellthatendswell,1603\nO,34,allswellthatendswell,1603\nIn,34,allswellthatendswell,1603\nring,34,allswellthatendswell,1603\nwhen,34,allswellthatendswell,1603\n'tis,35,allswellthatendswell,1603\ngive,35,allswellthatendswell,1603\nshould,35,allswellthatendswell,1603\nhere,36,allswellthatendswell,1603\nhonour,36,allswellthatendswell,1603\nvery,36,allswellthatendswell,1603\nlike,37,allswellthatendswell,1603\nsee,37,allswellthatendswell,1603\nthink,37,allswellthatendswell,1603\nmadam,37,allswellthatendswell,1603\nmay,37,allswellthatendswell,1603\nthan,38,allswellthatendswell,1603\nus,38,allswellthatendswell,1603\nown,38,allswellthatendswell,1603\nmost,39,allswellthatendswell,1603\nman,39,allswellthatendswell,1603\nyet,40,allswellthatendswell,1603\nspeak,40,allswellthatendswell,1603\nnow,40,allswellthatendswell,1603\nmine,40,allswellthatendswell,1603\nmust,41,allswellthatendswell,1603\nSoldier,41,allswellthatendswell,1603\nthere,41,allswellthatendswell,1603\ncan,41,allswellthatendswell,1603\ntoo,41,allswellthatendswell,1603\nIf,42,allswellthatendswell,1603\ngreat,43,allswellthatendswell,1603\nupon,44,allswellthatendswell,1603\nhath,45,allswellthatendswell,1603\nmake,45,allswellthatendswell,1603\nI'll,46,allswellthatendswell,1603\nEnter,47,allswellthatendswell,1603\nWhat,47,allswellthatendswell,1603\nA,48,allswellthatendswell,1603\nhad,48,allswellthatendswell,1603\nHe,48,allswellthatendswell,1603\nYou,48,allswellthatendswell,1603\nMy,49,allswellthatendswell,1603\nthem,50,allswellthatendswell,1603\none,50,allswellthatendswell,1603\nWELL,52,allswellthatendswell,1603\nDIANA,52,allswellthatendswell,1603\nwere,52,allswellthatendswell,1603\nan,53,allswellthatendswell,1603\nthey,54,allswellthatendswell,1603\non,54,allswellthatendswell,1603\nlove,55,allswellthatendswell,1603\nor,58,allswellthatendswell,1603\nwhich,59,allswellthatendswell,1603\nsay,60,allswellthatendswell,1603\nat,62,allswellthatendswell,1603\nfrom,62,allswellthatendswell,1603\nif,63,allswellthatendswell,1603\nBut,64,allswellthatendswell,1603\nmore,65,allswellthatendswell,1603\nSecond,67,allswellthatendswell,1603\nwell,67,allswellthatendswell,1603\nClown,67,allswellthatendswell,1603\nwe,69,allswellthatendswell,1603\nTo,72,allswellthatendswell,1603\nwhat,73,allswellthatendswell,1603\nmy,330,allswellthatendswell,1603\nby,75,allswellthatendswell,1603\nam,75,allswellthatendswell,1603\ngood,76,allswellthatendswell,1603\nthy,77,allswellthatendswell,1603\nshe,78,allswellthatendswell,1603\nthee,79,allswellthatendswell,1603\nThat,80,allswellthatendswell,1603\nwould,80,allswellthatendswell,1603\nthou,82,allswellthatendswell,1603\nknow,82,allswellthatendswell,1603\nsir,87,allswellthatendswell,1603\ndo,87,allswellthatendswell,1603\nno,87,allswellthatendswell,1603\nare,87,allswellthatendswell,1603\nwas,87,allswellthatendswell,1603\nall,88,allswellthatendswell,1603\nlord,89,allswellthatendswell,1603\nour,89,allswellthatendswell,1603\nKING,94,allswellthatendswell,1603\nas,94,allswellthatendswell,1603\nThe,95,allswellthatendswell,1603\nCOUNTESS,97,allswellthatendswell,1603\nFirst,98,allswellthatendswell,1603\nshall,103,allswellthatendswell,1603\nAnd,107,allswellthatendswell,1603\nLAFEU,112,allswellthatendswell,1603\nbut,122,allswellthatendswell,1603\nLord,123,allswellthatendswell,1603\nHELENA,124,allswellthatendswell,1603\nso,127,allswellthatendswell,1603\nthe,639,allswellthatendswell,1603\nBERTRAM,128,allswellthatendswell,1603\nwith,142,allswellthatendswell,1603\nthis,146,allswellthatendswell,1603\nwill,148,allswellthatendswell,1603\na,405,allswellthatendswell,1603\nPAROLLES,165,allswellthatendswell,1603\nher,169,allswellthatendswell,1603\nhim,178,allswellthatendswell,1603\nfor,179,allswellthatendswell,1603\nyou,435,allswellthatendswell,1603\nof,436,allswellthatendswell,1603\nI,694,allswellthatendswell,1603\nbe,184,allswellthatendswell,1603\nhe,185,allswellthatendswell,1603\nhave,192,allswellthatendswell,1603\nme,201,allswellthatendswell,1603\nyour,204,allswellthatendswell,1603\nto,467,allswellthatendswell,1603\nhis,212,allswellthatendswell,1603\nnot,236,allswellthatendswell,1603\nthat,245,allswellthatendswell,1603\nit,254,allswellthatendswell,1603\nseaman,1,periclesprinceoftyre,1608\nsilken,1,periclesprinceoftyre,1608\nevent,1,periclesprinceoftyre,1608\npossibly,1,periclesprinceoftyre,1608\npistol's,1,periclesprinceoftyre,1608\nTime's,1,periclesprinceoftyre,1608\nrushing,1,periclesprinceoftyre,1608\nvillany,1,periclesprinceoftyre,1608\ntroubler,1,periclesprinceoftyre,1608\ndigs,1,periclesprinceoftyre,1608\nauthorities,1,periclesprinceoftyre,1608\ntroubles,1,periclesprinceoftyre,1608\nFlesh,1,periclesprinceoftyre,1608\nname't,1,periclesprinceoftyre,1608\nproffer,1,periclesprinceoftyre,1608\nbiggest,1,periclesprinceoftyre,1608\nparted,1,periclesprinceoftyre,1608\ndrawing,1,periclesprinceoftyre,1608\nwhales,1,periclesprinceoftyre,1608\npuddings,1,periclesprinceoftyre,1608\ntimes,1,periclesprinceoftyre,1608\nfinger'd,1,periclesprinceoftyre,1608\nguard,1,periclesprinceoftyre,1608\ndebts,1,periclesprinceoftyre,1608\nropes,1,periclesprinceoftyre,1608\nY,1,periclesprinceoftyre,1608\nProve,1,periclesprinceoftyre,1608\nc,1,periclesprinceoftyre,1608\nsuffer,1,periclesprinceoftyre,1608\naddress'd,1,periclesprinceoftyre,1608\nYours,1,periclesprinceoftyre,1608\nred,1,periclesprinceoftyre,1608\ngallants,1,periclesprinceoftyre,1608\nLonger,1,periclesprinceoftyre,1608\nFew,1,periclesprinceoftyre,1608\ngroom,1,periclesprinceoftyre,1608\ny,1,periclesprinceoftyre,1608\ninfected,1,periclesprinceoftyre,1608\ndames,1,periclesprinceoftyre,1608\ndescription,1,periclesprinceoftyre,1608\nreputation,1,periclesprinceoftyre,1608\nbeadle,1,periclesprinceoftyre,1608\ntops,1,periclesprinceoftyre,1608\nHear,1,periclesprinceoftyre,1608\ninfamy,1,periclesprinceoftyre,1608\neche,1,periclesprinceoftyre,1608\nfitment,1,periclesprinceoftyre,1608\nrestoratives,1,periclesprinceoftyre,1608\ntremble,1,periclesprinceoftyre,1608\nviands,1,periclesprinceoftyre,1608\nweary,1,periclesprinceoftyre,1608\nwears,1,periclesprinceoftyre,1608\nbrass,1,periclesprinceoftyre,1608\nraw,1,periclesprinceoftyre,1608\ndisturb,1,periclesprinceoftyre,1608\ntwin,1,periclesprinceoftyre,1608\nfollowing,1,periclesprinceoftyre,1608\nreign'd,1,periclesprinceoftyre,1608\nespecially,1,periclesprinceoftyre,1608\nlament,1,periclesprinceoftyre,1608\nneighbours,1,periclesprinceoftyre,1608\ndives,1,periclesprinceoftyre,1608\ntravail,1,periclesprinceoftyre,1608\nNew,1,periclesprinceoftyre,1608\nFie,1,periclesprinceoftyre,1608\nshadows,1,periclesprinceoftyre,1608\nperuse,1,periclesprinceoftyre,1608\nwooden,1,periclesprinceoftyre,1608\nadvantage,1,periclesprinceoftyre,1608\nfemale,1,periclesprinceoftyre,1608\nbrows,1,periclesprinceoftyre,1608\nFit,1,periclesprinceoftyre,1608\nlawful,1,periclesprinceoftyre,1608\nalack,1,periclesprinceoftyre,1608\nnursing,1,periclesprinceoftyre,1608\nunborn,1,periclesprinceoftyre,1608\nlower,1,periclesprinceoftyre,1608\njacks,1,periclesprinceoftyre,1608\nlongs,1,periclesprinceoftyre,1608\nMessengers,1,periclesprinceoftyre,1608\nfestivals,1,periclesprinceoftyre,1608\nthankfully,1,periclesprinceoftyre,1608\nbones,1,periclesprinceoftyre,1608\npurge,1,periclesprinceoftyre,1608\nlabours,1,periclesprinceoftyre,1608\nrobs,1,periclesprinceoftyre,1608\nglads,1,periclesprinceoftyre,1608\nassured,1,periclesprinceoftyre,1608\nsuppose,1,periclesprinceoftyre,1608\nweave,1,periclesprinceoftyre,1608\nstopp'd,1,periclesprinceoftyre,1608\npupils,1,periclesprinceoftyre,1608\nchiding,1,periclesprinceoftyre,1608\nBear,1,periclesprinceoftyre,1608\nroar,1,periclesprinceoftyre,1608\nSyria,1,periclesprinceoftyre,1608\nroad,1,periclesprinceoftyre,1608\nspace,1,periclesprinceoftyre,1608\nepitaph,1,periclesprinceoftyre,1608\ntesty,1,periclesprinceoftyre,1608\nmelt,1,periclesprinceoftyre,1608\nfoster,1,periclesprinceoftyre,1608\nblustering,1,periclesprinceoftyre,1608\nviolets,1,periclesprinceoftyre,1608\nstrengthen,1,periclesprinceoftyre,1608\ndish,1,periclesprinceoftyre,1608\nsingle,1,periclesprinceoftyre,1608\nsisters,1,periclesprinceoftyre,1608\nNeptune,1,periclesprinceoftyre,1608\njoint,1,periclesprinceoftyre,1608\njoins,1,periclesprinceoftyre,1608\nWhereby,1,periclesprinceoftyre,1608\nclothes,1,periclesprinceoftyre,1608\nvail,1,periclesprinceoftyre,1608\nhers,1,periclesprinceoftyre,1608\npardon'd,1,periclesprinceoftyre,1608\naptly,1,periclesprinceoftyre,1608\nenvironed,1,periclesprinceoftyre,1608\ngroan,1,periclesprinceoftyre,1608\nbounteous,1,periclesprinceoftyre,1608\nherb,1,periclesprinceoftyre,1608\nvain,1,periclesprinceoftyre,1608\nviolent,1,periclesprinceoftyre,1608\nmere,1,periclesprinceoftyre,1608\nenticeth,1,periclesprinceoftyre,1608\ndecay,1,periclesprinceoftyre,1608\neffectless,1,periclesprinceoftyre,1608\npurer,1,periclesprinceoftyre,1608\ncelestial,1,periclesprinceoftyre,1608\nunwholesome,1,periclesprinceoftyre,1608\ndisease,1,periclesprinceoftyre,1608\nsighs,1,periclesprinceoftyre,1608\ngrim,1,periclesprinceoftyre,1608\nHelp,1,periclesprinceoftyre,1608\ntoil,1,periclesprinceoftyre,1608\nupside,1,periclesprinceoftyre,1608\nanswering,1,periclesprinceoftyre,1608\nrelish'd,1,periclesprinceoftyre,1608\nravish'd,1,periclesprinceoftyre,1608\ninstrument,1,periclesprinceoftyre,1608\nHell,1,periclesprinceoftyre,1608\nConveniently,1,periclesprinceoftyre,1608\nfought,1,periclesprinceoftyre,1608\nWife,1,periclesprinceoftyre,1608\nhanged,1,periclesprinceoftyre,1608\nadvance,1,periclesprinceoftyre,1608\nfeeds,1,periclesprinceoftyre,1608\nflow,1,periclesprinceoftyre,1608\nomitted,1,periclesprinceoftyre,1608\nrichly,1,periclesprinceoftyre,1608\nrubied,1,periclesprinceoftyre,1608\nshelter,1,periclesprinceoftyre,1608\nScorn,1,periclesprinceoftyre,1608\nbring'st,1,periclesprinceoftyre,1608\ndanceth,1,periclesprinceoftyre,1608\nthroat,1,periclesprinceoftyre,1608\nnought,1,periclesprinceoftyre,1608\nlaugh,1,periclesprinceoftyre,1608\nunder,1,periclesprinceoftyre,1608\nworms,1,periclesprinceoftyre,1608\nProvided,1,periclesprinceoftyre,1608\ncommence,1,periclesprinceoftyre,1608\nbeauty's,1,periclesprinceoftyre,1608\nyonder,1,periclesprinceoftyre,1608\nterrible,1,periclesprinceoftyre,1608\ninnocence,1,periclesprinceoftyre,1608\ncrickets,1,periclesprinceoftyre,1608\ncheap,1,periclesprinceoftyre,1608\nplenty's,1,periclesprinceoftyre,1608\nravish,1,periclesprinceoftyre,1608\nsort,1,periclesprinceoftyre,1608\nlien,1,periclesprinceoftyre,1608\nroguing,1,periclesprinceoftyre,1608\nrun,1,periclesprinceoftyre,1608\nPost,1,periclesprinceoftyre,1608\nancestors,1,periclesprinceoftyre,1608\npick,1,periclesprinceoftyre,1608\nvivo,1,periclesprinceoftyre,1608\nwrens,1,periclesprinceoftyre,1608\nentice,1,periclesprinceoftyre,1608\ntyrannous,1,periclesprinceoftyre,1608\ngoest,1,periclesprinceoftyre,1608\nbowed,1,periclesprinceoftyre,1608\nthousandth,1,periclesprinceoftyre,1608\nPERSONAE,1,periclesprinceoftyre,1608\nprovince,1,periclesprinceoftyre,1608\nrescued,1,periclesprinceoftyre,1608\nvita,1,periclesprinceoftyre,1608\nmute,1,periclesprinceoftyre,1608\ndemand,1,periclesprinceoftyre,1608\nperishen,1,periclesprinceoftyre,1608\nagreed,1,periclesprinceoftyre,1608\nspare,1,periclesprinceoftyre,1608\nsaved,1,periclesprinceoftyre,1608\nspark,1,periclesprinceoftyre,1608\nfosters,1,periclesprinceoftyre,1608\nquirks,1,periclesprinceoftyre,1608\nteaches,1,periclesprinceoftyre,1608\nattempt,1,periclesprinceoftyre,1608\nspares,1,periclesprinceoftyre,1608\nsoftly,1,periclesprinceoftyre,1608\nsong,1,periclesprinceoftyre,1608\ncheapest,1,periclesprinceoftyre,1608\ngarment,1,periclesprinceoftyre,1608\npleasing,1,periclesprinceoftyre,1608\nregions,1,periclesprinceoftyre,1608\nagrees,1,periclesprinceoftyre,1608\nshrieks,1,periclesprinceoftyre,1608\nmercy,1,periclesprinceoftyre,1608\nunfriendly,1,periclesprinceoftyre,1608\nplague,1,periclesprinceoftyre,1608\nlaw's,1,periclesprinceoftyre,1608\npassions,1,periclesprinceoftyre,1608\nPilch,1,periclesprinceoftyre,1608\npalates,1,periclesprinceoftyre,1608\nire,1,periclesprinceoftyre,1608\ndisdain,1,periclesprinceoftyre,1608\nhunger's,1,periclesprinceoftyre,1608\npatroness,1,periclesprinceoftyre,1608\nRare,1,periclesprinceoftyre,1608\nlacks,1,periclesprinceoftyre,1608\nimply,1,periclesprinceoftyre,1608\no'erpress'd,1,periclesprinceoftyre,1608\nstock,1,periclesprinceoftyre,1608\npine,1,periclesprinceoftyre,1608\nsole,1,periclesprinceoftyre,1608\nsold,1,periclesprinceoftyre,1608\nconfusion,1,periclesprinceoftyre,1608\ntopple,1,periclesprinceoftyre,1608\nbefits,1,periclesprinceoftyre,1608\ngrown,1,periclesprinceoftyre,1608\ntoss,1,periclesprinceoftyre,1608\noutside,1,periclesprinceoftyre,1608\nbetake,1,periclesprinceoftyre,1608\nmundane,1,periclesprinceoftyre,1608\nline,1,periclesprinceoftyre,1608\nvoiced,1,periclesprinceoftyre,1608\nOLD,1,periclesprinceoftyre,1608\nlamentation,1,periclesprinceoftyre,1608\ncholeric,1,periclesprinceoftyre,1608\nprop,1,periclesprinceoftyre,1608\nincensed,1,periclesprinceoftyre,1608\ncondolements,1,periclesprinceoftyre,1608\ngracious,1,periclesprinceoftyre,1608\nbroken,1,periclesprinceoftyre,1608\nAboard,1,periclesprinceoftyre,1608\ninjury,1,periclesprinceoftyre,1608\nbeacon,1,periclesprinceoftyre,1608\nsucceeding,1,periclesprinceoftyre,1608\npurse,1,periclesprinceoftyre,1608\novercome,1,periclesprinceoftyre,1608\ntrumpet,1,periclesprinceoftyre,1608\ncorse,1,periclesprinceoftyre,1608\nMuch,1,periclesprinceoftyre,1608\nRemember,1,periclesprinceoftyre,1608\nsources,1,periclesprinceoftyre,1608\nanchor,1,periclesprinceoftyre,1608\nheap,1,periclesprinceoftyre,1608\ntoward,1,periclesprinceoftyre,1608\nrevels,1,periclesprinceoftyre,1608\ndejected,1,periclesprinceoftyre,1608\nrosemary,1,periclesprinceoftyre,1608\no'erjoy'd,1,periclesprinceoftyre,1608\noppress,1,periclesprinceoftyre,1608\nQuiet,1,periclesprinceoftyre,1608\ncheek,1,periclesprinceoftyre,1608\nPersons,1,periclesprinceoftyre,1608\nhearing,1,periclesprinceoftyre,1608\nfingers,1,periclesprinceoftyre,1608\nForgot,1,periclesprinceoftyre,1608\nlift,1,periclesprinceoftyre,1608\nbabes,1,periclesprinceoftyre,1608\nrepetition,1,periclesprinceoftyre,1608\npaper,1,periclesprinceoftyre,1608\nYield,1,periclesprinceoftyre,1608\nrides,1,periclesprinceoftyre,1608\nfinding,1,periclesprinceoftyre,1608\nmaking,1,periclesprinceoftyre,1608\nCoistrel,1,periclesprinceoftyre,1608\nPhilemon,1,periclesprinceoftyre,1608\nEthiope,1,periclesprinceoftyre,1608\nLoath,1,periclesprinceoftyre,1608\ngelded,1,periclesprinceoftyre,1608\nfools,1,periclesprinceoftyre,1608\nsoft,1,periclesprinceoftyre,1608\nassail'd,1,periclesprinceoftyre,1608\ntarget,1,periclesprinceoftyre,1608\nAvaunt,1,periclesprinceoftyre,1608\nbated,1,periclesprinceoftyre,1608\nblessed,1,periclesprinceoftyre,1608\nvisit,1,periclesprinceoftyre,1608\nsharpens,1,periclesprinceoftyre,1608\nlesser,1,periclesprinceoftyre,1608\ndrones,1,periclesprinceoftyre,1608\nbegan,1,periclesprinceoftyre,1608\nTransylvanian,1,periclesprinceoftyre,1608\nunholy,1,periclesprinceoftyre,1608\ncities,1,periclesprinceoftyre,1608\nexplain,1,periclesprinceoftyre,1608\nladies',1,periclesprinceoftyre,1608\nchequins,1,periclesprinceoftyre,1608\ndeserve,1,periclesprinceoftyre,1608\nimpostor,1,periclesprinceoftyre,1608\nplucked,1,periclesprinceoftyre,1608\nWhirring,1,periclesprinceoftyre,1608\nsix,1,periclesprinceoftyre,1608\nInfant,1,periclesprinceoftyre,1608\nrarest,1,periclesprinceoftyre,1608\nPatch,1,periclesprinceoftyre,1608\nhereafter,1,periclesprinceoftyre,1608\nweaker,1,periclesprinceoftyre,1608\nshe'd,1,periclesprinceoftyre,1608\nfere,1,periclesprinceoftyre,1608\nflashes,1,periclesprinceoftyre,1608\nperch,1,periclesprinceoftyre,1608\ndeparts,1,periclesprinceoftyre,1608\nepitaphs,1,periclesprinceoftyre,1608\nangel's,1,periclesprinceoftyre,1608\nerst,1,periclesprinceoftyre,1608\nspheres,1,periclesprinceoftyre,1608\nboat,1,periclesprinceoftyre,1608\nafflict,1,periclesprinceoftyre,1608\nproclaims,1,periclesprinceoftyre,1608\nhistory,1,periclesprinceoftyre,1608\nUntied,1,periclesprinceoftyre,1608\nforever,1,periclesprinceoftyre,1608\n'Prince,1,periclesprinceoftyre,1608\nreturned,1,periclesprinceoftyre,1608\ntrebles,1,periclesprinceoftyre,1608\norbs,1,periclesprinceoftyre,1608\naged,1,periclesprinceoftyre,1608\nreaching,1,periclesprinceoftyre,1608\nclerks,1,periclesprinceoftyre,1608\nsweet'st,1,periclesprinceoftyre,1608\nfuerza,1,periclesprinceoftyre,1608\nPersever,1,periclesprinceoftyre,1608\nourself,1,periclesprinceoftyre,1608\ndeity,1,periclesprinceoftyre,1608\nEgyptian,1,periclesprinceoftyre,1608\nsew,1,periclesprinceoftyre,1608\nmerry,1,periclesprinceoftyre,1608\nwhipping,1,periclesprinceoftyre,1608\ncarrying,1,periclesprinceoftyre,1608\ntraveller,1,periclesprinceoftyre,1608\nartist,1,periclesprinceoftyre,1608\nKING,1,periclesprinceoftyre,1608\nBoult's,1,periclesprinceoftyre,1608\ndeceit,1,periclesprinceoftyre,1608\nlanguish,1,periclesprinceoftyre,1608\nchiefest,1,periclesprinceoftyre,1608\nseams,1,periclesprinceoftyre,1608\nshe'ld,1,periclesprinceoftyre,1608\nthrone,1,periclesprinceoftyre,1608\nsuit,1,periclesprinceoftyre,1608\nrecollect,1,periclesprinceoftyre,1608\npassport,1,periclesprinceoftyre,1608\nscorn,1,periclesprinceoftyre,1608\nnine,1,periclesprinceoftyre,1608\ncouncil,1,periclesprinceoftyre,1608\nspe,1,periclesprinceoftyre,1608\nSeem'd,1,periclesprinceoftyre,1608\nthunders,1,periclesprinceoftyre,1608\nknives,1,periclesprinceoftyre,1608\nscorn'd,1,periclesprinceoftyre,1608\nsteps,1,periclesprinceoftyre,1608\nexperienced,1,periclesprinceoftyre,1608\nrecords,1,periclesprinceoftyre,1608\nlewdly,1,periclesprinceoftyre,1608\n'e,1,periclesprinceoftyre,1608\nsubject,1,periclesprinceoftyre,1608\nplenty,1,periclesprinceoftyre,1608\nconstraint,1,periclesprinceoftyre,1608\nfashions,1,periclesprinceoftyre,1608\nshipp'd,1,periclesprinceoftyre,1608\nnips,1,periclesprinceoftyre,1608\nlawfully,1,periclesprinceoftyre,1608\nlooking,1,periclesprinceoftyre,1608\napparent,1,periclesprinceoftyre,1608\nwight,1,periclesprinceoftyre,1608\n'T,1,periclesprinceoftyre,1608\nkindle,1,periclesprinceoftyre,1608\nscour,1,periclesprinceoftyre,1608\ncropp'd,1,periclesprinceoftyre,1608\nbelonging,1,periclesprinceoftyre,1608\nstern,1,periclesprinceoftyre,1608\nit's,1,periclesprinceoftyre,1608\nfringes,1,periclesprinceoftyre,1608\nkindly,1,periclesprinceoftyre,1608\nmoreo'er,1,periclesprinceoftyre,1608\ncaulked,1,periclesprinceoftyre,1608\nacquainted,1,periclesprinceoftyre,1608\ntestament,1,periclesprinceoftyre,1608\nDisgorges,1,periclesprinceoftyre,1608\nhim's,1,periclesprinceoftyre,1608\nsharpest,1,periclesprinceoftyre,1608\nbeloved,1,periclesprinceoftyre,1608\nwages,1,periclesprinceoftyre,1608\nwager,1,periclesprinceoftyre,1608\nshipping,1,periclesprinceoftyre,1608\npitiful,1,periclesprinceoftyre,1608\ncommends,1,periclesprinceoftyre,1608\ninstruct,1,periclesprinceoftyre,1608\nsets,1,periclesprinceoftyre,1608\nwar's,1,periclesprinceoftyre,1608\nstuff,1,periclesprinceoftyre,1608\nsupposing,1,periclesprinceoftyre,1608\nplay'd,1,periclesprinceoftyre,1608\nequivalent,1,periclesprinceoftyre,1608\nnill,1,periclesprinceoftyre,1608\nawful,1,periclesprinceoftyre,1608\namiss,1,periclesprinceoftyre,1608\nsavour,1,periclesprinceoftyre,1608\npoverty,1,periclesprinceoftyre,1608\nvarious,1,periclesprinceoftyre,1608\nthieves,1,periclesprinceoftyre,1608\ntaught,1,periclesprinceoftyre,1608\nreception,1,periclesprinceoftyre,1608\nmerit,1,periclesprinceoftyre,1608\nImmortal,1,periclesprinceoftyre,1608\nLeaps,1,periclesprinceoftyre,1608\nO'erbear,1,periclesprinceoftyre,1608\nembracements,1,periclesprinceoftyre,1608\nbraid,1,periclesprinceoftyre,1608\nreceived,1,periclesprinceoftyre,1608\nturning,1,periclesprinceoftyre,1608\nbriefness,1,periclesprinceoftyre,1608\npoints,1,periclesprinceoftyre,1608\nante,1,periclesprinceoftyre,1608\nconceit,1,periclesprinceoftyre,1608\nportly,1,periclesprinceoftyre,1608\ndances,1,periclesprinceoftyre,1608\nmonster,1,periclesprinceoftyre,1608\nsnowball,1,periclesprinceoftyre,1608\nreft,1,periclesprinceoftyre,1608\ncrime,1,periclesprinceoftyre,1608\ncambric,1,periclesprinceoftyre,1608\nBe't,1,periclesprinceoftyre,1608\nunhallow'd,1,periclesprinceoftyre,1608\nrhyme,1,periclesprinceoftyre,1608\ngive's,1,periclesprinceoftyre,1608\nbore,1,periclesprinceoftyre,1608\nmoulded,1,periclesprinceoftyre,1608\nfigure,1,periclesprinceoftyre,1608\nhabit,1,periclesprinceoftyre,1608\nseeds,1,periclesprinceoftyre,1608\ndirect,1,periclesprinceoftyre,1608\nTurn,1,periclesprinceoftyre,1608\nDestinies,1,periclesprinceoftyre,1608\nfault,1,periclesprinceoftyre,1608\nseaman's,1,periclesprinceoftyre,1608\nbelch'd,1,periclesprinceoftyre,1608\nquake,1,periclesprinceoftyre,1608\nshuns,1,periclesprinceoftyre,1608\nruns,1,periclesprinceoftyre,1608\nfeat,1,periclesprinceoftyre,1608\nloathed,1,periclesprinceoftyre,1608\nCause,1,periclesprinceoftyre,1608\nrelating,1,periclesprinceoftyre,1608\nrelate,1,periclesprinceoftyre,1608\nstunk,1,periclesprinceoftyre,1608\nterms,1,periclesprinceoftyre,1608\nbots,1,periclesprinceoftyre,1608\nseeks,1,periclesprinceoftyre,1608\ntennis,1,periclesprinceoftyre,1608\ntaper,1,periclesprinceoftyre,1608\nWind,1,periclesprinceoftyre,1608\nManner'd,1,periclesprinceoftyre,1608\nunable,1,periclesprinceoftyre,1608\nhousehold,1,periclesprinceoftyre,1608\ncavaliers,1,periclesprinceoftyre,1608\nrelation,1,periclesprinceoftyre,1608\nflatterer,1,periclesprinceoftyre,1608\ndrouth,1,periclesprinceoftyre,1608\npriestess,1,periclesprinceoftyre,1608\nthornier,1,periclesprinceoftyre,1608\nsty,1,periclesprinceoftyre,1608\nWhilst,1,periclesprinceoftyre,1608\ncries,1,periclesprinceoftyre,1608\nmodel,1,periclesprinceoftyre,1608\nspeechless,1,periclesprinceoftyre,1608\nReport,1,periclesprinceoftyre,1608\nsum,1,periclesprinceoftyre,1608\nelder,1,periclesprinceoftyre,1608\nbrace,1,periclesprinceoftyre,1608\nKings,1,periclesprinceoftyre,1608\nfearful,1,periclesprinceoftyre,1608\nrust,1,periclesprinceoftyre,1608\nfeel,1,periclesprinceoftyre,1608\nbowl,1,periclesprinceoftyre,1608\nspaniel,1,periclesprinceoftyre,1608\nfeet,1,periclesprinceoftyre,1608\ndescent,1,periclesprinceoftyre,1608\n'scapes,1,periclesprinceoftyre,1608\nrecovery,1,periclesprinceoftyre,1608\ndescend,1,periclesprinceoftyre,1608\nswore,1,periclesprinceoftyre,1608\n'scaped,1,periclesprinceoftyre,1608\nblind,1,periclesprinceoftyre,1608\nsword,1,periclesprinceoftyre,1608\nSearch,1,periclesprinceoftyre,1608\nbases,1,periclesprinceoftyre,1608\nbrine,1,periclesprinceoftyre,1608\nconceal,1,periclesprinceoftyre,1608\nwhisper,1,periclesprinceoftyre,1608\nfalse,1,periclesprinceoftyre,1608\nspeaking,1,periclesprinceoftyre,1608\nwine,1,periclesprinceoftyre,1608\nprevent,1,periclesprinceoftyre,1608\nBestow,1,periclesprinceoftyre,1608\nsoldier,1,periclesprinceoftyre,1608\nrejoices,1,periclesprinceoftyre,1608\nlanguage,1,periclesprinceoftyre,1608\nmonarchs,1,periclesprinceoftyre,1608\nrend,1,periclesprinceoftyre,1608\nrarely,1,periclesprinceoftyre,1608\nwand,1,periclesprinceoftyre,1608\nBlow,1,periclesprinceoftyre,1608\nusurp,1,periclesprinceoftyre,1608\nsailing,1,periclesprinceoftyre,1608\nPlease,1,periclesprinceoftyre,1608\nsteal,1,periclesprinceoftyre,1608\nruff,1,periclesprinceoftyre,1608\nedge,1,periclesprinceoftyre,1608\ninflame,1,periclesprinceoftyre,1608\nstrew'd,1,periclesprinceoftyre,1608\ndearer,1,periclesprinceoftyre,1608\naccess,1,periclesprinceoftyre,1608\nvisor,1,periclesprinceoftyre,1608\n'For,1,periclesprinceoftyre,1608\nbefit,1,periclesprinceoftyre,1608\nEarlier,1,periclesprinceoftyre,1608\ndies,1,periclesprinceoftyre,1608\nmalign,1,periclesprinceoftyre,1608\ntrifles,1,periclesprinceoftyre,1608\nruin,1,periclesprinceoftyre,1608\nRecount,1,periclesprinceoftyre,1608\njetted,1,periclesprinceoftyre,1608\nseest,1,periclesprinceoftyre,1608\naccuse,1,periclesprinceoftyre,1608\nclasp,1,periclesprinceoftyre,1608\nFetch,1,periclesprinceoftyre,1608\nseem'd,1,periclesprinceoftyre,1608\nbidding,1,periclesprinceoftyre,1608\nwarm,1,periclesprinceoftyre,1608\nNurses,1,periclesprinceoftyre,1608\ndistemperature,1,periclesprinceoftyre,1608\nclaps,1,periclesprinceoftyre,1608\nSouth,1,periclesprinceoftyre,1608\nLying,1,periclesprinceoftyre,1608\ncunning,1,periclesprinceoftyre,1608\noffice,1,periclesprinceoftyre,1608\ndealt,1,periclesprinceoftyre,1608\njoin'd,1,periclesprinceoftyre,1608\nsteel,1,periclesprinceoftyre,1608\nshrivell'd,1,periclesprinceoftyre,1608\nLadies,1,periclesprinceoftyre,1608\nwast,1,periclesprinceoftyre,1608\nextinguit,1,periclesprinceoftyre,1608\nruled,1,periclesprinceoftyre,1608\nmanly,1,periclesprinceoftyre,1608\nboon,1,periclesprinceoftyre,1608\nmalleable,1,periclesprinceoftyre,1608\nFrench,1,periclesprinceoftyre,1608\npraised,1,periclesprinceoftyre,1608\ncoffin'd,1,periclesprinceoftyre,1608\ncolour,1,periclesprinceoftyre,1608\nFollow,1,periclesprinceoftyre,1608\nsojourner,1,periclesprinceoftyre,1608\nDraw,1,periclesprinceoftyre,1608\nhungry,1,periclesprinceoftyre,1608\nobjects,1,periclesprinceoftyre,1608\nviper,1,periclesprinceoftyre,1608\neftsoons,1,periclesprinceoftyre,1608\ndeserves,1,periclesprinceoftyre,1608\nconditions,1,periclesprinceoftyre,1608\nunquiet,1,periclesprinceoftyre,1608\nfeather'd,1,periclesprinceoftyre,1608\nsick,1,periclesprinceoftyre,1608\noven's,1,periclesprinceoftyre,1608\nsenses,1,periclesprinceoftyre,1608\nwherefore,1,periclesprinceoftyre,1608\nprince's,1,periclesprinceoftyre,1608\nyouths,1,periclesprinceoftyre,1608\nFaith,1,periclesprinceoftyre,1608\nbolins,1,periclesprinceoftyre,1608\nthoughten,1,periclesprinceoftyre,1608\nauthority,1,periclesprinceoftyre,1608\nminister'st,1,periclesprinceoftyre,1608\nEt,1,periclesprinceoftyre,1608\naim'd,1,periclesprinceoftyre,1608\nsnores,1,periclesprinceoftyre,1608\nbastards,1,periclesprinceoftyre,1608\nI',1,periclesprinceoftyre,1608\nsolicit,1,periclesprinceoftyre,1608\nrazor,1,periclesprinceoftyre,1608\ngratify,1,periclesprinceoftyre,1608\ndrown,1,periclesprinceoftyre,1608\nTakes,1,periclesprinceoftyre,1608\nDrew,1,periclesprinceoftyre,1608\nwanting,1,periclesprinceoftyre,1608\nWhile,1,periclesprinceoftyre,1608\noverthrow,1,periclesprinceoftyre,1608\nhac,1,periclesprinceoftyre,1608\nUnheard,1,periclesprinceoftyre,1608\nfoes,1,periclesprinceoftyre,1608\nDrawn,1,periclesprinceoftyre,1608\nsign,1,periclesprinceoftyre,1608\nrefuse,1,periclesprinceoftyre,1608\ndiscern,1,periclesprinceoftyre,1608\nSends,1,periclesprinceoftyre,1608\noverflow,1,periclesprinceoftyre,1608\nvotaress,1,periclesprinceoftyre,1608\nwondered,1,periclesprinceoftyre,1608\nCelestial,1,periclesprinceoftyre,1608\nexercise,1,periclesprinceoftyre,1608\npulse,1,periclesprinceoftyre,1608\nflatters,1,periclesprinceoftyre,1608\npilot,1,periclesprinceoftyre,1608\nAm,1,periclesprinceoftyre,1608\nargentine,1,periclesprinceoftyre,1608\ntonight,1,periclesprinceoftyre,1608\ndepend,1,periclesprinceoftyre,1608\nhang'd,1,periclesprinceoftyre,1608\nmutiny,1,periclesprinceoftyre,1608\nchaste,1,periclesprinceoftyre,1608\nprotector,1,periclesprinceoftyre,1608\nloathing,1,periclesprinceoftyre,1608\nbow,1,periclesprinceoftyre,1608\nbereave,1,periclesprinceoftyre,1608\nstrangers,1,periclesprinceoftyre,1608\ndeeds,1,periclesprinceoftyre,1608\nunnatural,1,periclesprinceoftyre,1608\ninventions,1,periclesprinceoftyre,1608\nlance,1,periclesprinceoftyre,1608\nStill,1,periclesprinceoftyre,1608\nblown,1,periclesprinceoftyre,1608\nsmile,1,periclesprinceoftyre,1608\nHaving,1,periclesprinceoftyre,1608\npointed,1,periclesprinceoftyre,1608\ninclined,1,periclesprinceoftyre,1608\nfurthermore,1,periclesprinceoftyre,1608\nrazed,1,periclesprinceoftyre,1608\nbar,1,periclesprinceoftyre,1608\nholidays,1,periclesprinceoftyre,1608\ncruel,1,periclesprinceoftyre,1608\nsubscribe,1,periclesprinceoftyre,1608\nSays,1,periclesprinceoftyre,1608\nNe,1,periclesprinceoftyre,1608\nin's,1,periclesprinceoftyre,1608\ngallery,1,periclesprinceoftyre,1608\nstar,1,periclesprinceoftyre,1608\nexceed,1,periclesprinceoftyre,1608\ndenied,1,periclesprinceoftyre,1608\nquaintly,1,periclesprinceoftyre,1608\nbrings,1,periclesprinceoftyre,1608\ntales,1,periclesprinceoftyre,1608\npen,1,periclesprinceoftyre,1608\nto't,1,periclesprinceoftyre,1608\nreceptacles,1,periclesprinceoftyre,1608\ndiligence,1,periclesprinceoftyre,1608\nProclaim,1,periclesprinceoftyre,1608\nforce,1,periclesprinceoftyre,1608\nhid,1,periclesprinceoftyre,1608\nfinds,1,periclesprinceoftyre,1608\ninnocent,1,periclesprinceoftyre,1608\nashes,1,periclesprinceoftyre,1608\napprove,1,periclesprinceoftyre,1608\nbee,1,periclesprinceoftyre,1608\nHa',1,periclesprinceoftyre,1608\nblest,1,periclesprinceoftyre,1608\nstrangely,1,periclesprinceoftyre,1608\npreached,1,periclesprinceoftyre,1608\nwhistles,1,periclesprinceoftyre,1608\nannual,1,periclesprinceoftyre,1608\nthan's,1,periclesprinceoftyre,1608\napplaud,1,periclesprinceoftyre,1608\nadded,1,periclesprinceoftyre,1608\nprince',1,periclesprinceoftyre,1608\npass,1,periclesprinceoftyre,1608\nelection,1,periclesprinceoftyre,1608\ncracks,1,periclesprinceoftyre,1608\nproud,1,periclesprinceoftyre,1608\nstem,1,periclesprinceoftyre,1608\nwedded,1,periclesprinceoftyre,1608\nIs't,1,periclesprinceoftyre,1608\ndisplay'd,1,periclesprinceoftyre,1608\nstrew,1,periclesprinceoftyre,1608\ncountries,1,periclesprinceoftyre,1608\nVI,1,periclesprinceoftyre,1608\nprostitute,1,periclesprinceoftyre,1608\nmonstrous,1,periclesprinceoftyre,1608\ntumbled,1,periclesprinceoftyre,1608\nnobly,1,periclesprinceoftyre,1608\noutlive,1,periclesprinceoftyre,1608\nneglection,1,periclesprinceoftyre,1608\nawakes,1,periclesprinceoftyre,1608\nallure,1,periclesprinceoftyre,1608\ncorrupted,1,periclesprinceoftyre,1608\nkiss'd,1,periclesprinceoftyre,1608\ndoubting,1,periclesprinceoftyre,1608\nsurprise,1,periclesprinceoftyre,1608\ncourteous,1,periclesprinceoftyre,1608\noffered,1,periclesprinceoftyre,1608\ntrimm'd,1,periclesprinceoftyre,1608\nplants,1,periclesprinceoftyre,1608\nquenched,1,periclesprinceoftyre,1608\nThunder,1,periclesprinceoftyre,1608\nminstrelsy,1,periclesprinceoftyre,1608\nespies,1,periclesprinceoftyre,1608\nweed,1,periclesprinceoftyre,1608\nrepeated,1,periclesprinceoftyre,1608\nrelapse,1,periclesprinceoftyre,1608\nmelius,1,periclesprinceoftyre,1608\nproportion,1,periclesprinceoftyre,1608\nstray,1,periclesprinceoftyre,1608\nstirr'st,1,periclesprinceoftyre,1608\nEmbolden'd,1,periclesprinceoftyre,1608\nuntold,1,periclesprinceoftyre,1608\nsooner,1,periclesprinceoftyre,1608\nConsume,1,periclesprinceoftyre,1608\nrebel,1,periclesprinceoftyre,1608\nTellus,1,periclesprinceoftyre,1608\nstrived,1,periclesprinceoftyre,1608\nnarrowly,1,periclesprinceoftyre,1608\nMelt,1,periclesprinceoftyre,1608\nwhoso,1,periclesprinceoftyre,1608\ndove,1,periclesprinceoftyre,1608\nSits,1,periclesprinceoftyre,1608\nsalute,1,periclesprinceoftyre,1608\ndifference,1,periclesprinceoftyre,1608\nwhereat,1,periclesprinceoftyre,1608\nmischief's,1,periclesprinceoftyre,1608\nburn,1,periclesprinceoftyre,1608\nclimber,1,periclesprinceoftyre,1608\nsorts,1,periclesprinceoftyre,1608\ncat,1,periclesprinceoftyre,1608\nchildren,1,periclesprinceoftyre,1608\nbreathing,1,periclesprinceoftyre,1608\ncorpse,1,periclesprinceoftyre,1608\nstruck,1,periclesprinceoftyre,1608\nornament,1,periclesprinceoftyre,1608\nfisting,1,periclesprinceoftyre,1608\nsounds,1,periclesprinceoftyre,1608\naccounts,1,periclesprinceoftyre,1608\ntumbles,1,periclesprinceoftyre,1608\ninterrupt,1,periclesprinceoftyre,1608\ntables,1,periclesprinceoftyre,1608\nfurnished,1,periclesprinceoftyre,1608\ncouch,1,periclesprinceoftyre,1608\nlearned,1,periclesprinceoftyre,1608\nordered,1,periclesprinceoftyre,1608\nsomewhat,1,periclesprinceoftyre,1608\nwear,1,periclesprinceoftyre,1608\nBehold,1,periclesprinceoftyre,1608\nbeyond,1,periclesprinceoftyre,1608\nlamps,1,periclesprinceoftyre,1608\nrudeliest,1,periclesprinceoftyre,1608\ntravails,1,periclesprinceoftyre,1608\nshadow,1,periclesprinceoftyre,1608\nbuildings,1,periclesprinceoftyre,1608\nSpeak,1,periclesprinceoftyre,1608\nsatin,1,periclesprinceoftyre,1608\nBorn,1,periclesprinceoftyre,1608\nrutting,1,periclesprinceoftyre,1608\nWaste,1,periclesprinceoftyre,1608\ngaps,1,periclesprinceoftyre,1608\nmeanest,1,periclesprinceoftyre,1608\nblock,1,periclesprinceoftyre,1608\na',1,periclesprinceoftyre,1608\nDidst,1,periclesprinceoftyre,1608\ngamester,1,periclesprinceoftyre,1608\neater,1,periclesprinceoftyre,1608\ndelay'd,1,periclesprinceoftyre,1608\nconversant,1,periclesprinceoftyre,1608\nprorogue,1,periclesprinceoftyre,1608\nSpanish,1,periclesprinceoftyre,1608\nfinny,1,periclesprinceoftyre,1608\nfifth,1,periclesprinceoftyre,1608\nfriendly,1,periclesprinceoftyre,1608\nSail,1,periclesprinceoftyre,1608\nspectanda,1,periclesprinceoftyre,1608\nconquest,1,periclesprinceoftyre,1608\npompae,1,periclesprinceoftyre,1608\ntestify,1,periclesprinceoftyre,1608\nbud,1,periclesprinceoftyre,1608\nbeget,1,periclesprinceoftyre,1608\nswift,1,periclesprinceoftyre,1608\nvows,1,periclesprinceoftyre,1608\nbuy,1,periclesprinceoftyre,1608\nhurting,1,periclesprinceoftyre,1608\nPrest,1,periclesprinceoftyre,1608\nAbove,1,periclesprinceoftyre,1608\nfrowns,1,periclesprinceoftyre,1608\nDisappears,1,periclesprinceoftyre,1608\nstaleness,1,periclesprinceoftyre,1608\nO'er,1,periclesprinceoftyre,1608\nsteerage,1,periclesprinceoftyre,1608\nEnough,1,periclesprinceoftyre,1608\nadmired,1,periclesprinceoftyre,1608\nWhate'er,1,periclesprinceoftyre,1608\npeople's,1,periclesprinceoftyre,1608\npriestly,1,periclesprinceoftyre,1608\ndoest,1,periclesprinceoftyre,1608\nCynthia,1,periclesprinceoftyre,1608\nsins,1,periclesprinceoftyre,1608\nstronger,1,periclesprinceoftyre,1608\npains,1,periclesprinceoftyre,1608\nbeseeching,1,periclesprinceoftyre,1608\ngate,1,periclesprinceoftyre,1608\nVail,1,periclesprinceoftyre,1608\nhourly,1,periclesprinceoftyre,1608\nimmortality,1,periclesprinceoftyre,1608\nclasping,1,periclesprinceoftyre,1608\ncalling,1,periclesprinceoftyre,1608\ngash,1,periclesprinceoftyre,1608\nfulfil,1,periclesprinceoftyre,1608\nimmortal,1,periclesprinceoftyre,1608\nAEsculapius,1,periclesprinceoftyre,1608\nlately,1,periclesprinceoftyre,1608\nresort,1,periclesprinceoftyre,1608\nbuxom,1,periclesprinceoftyre,1608\ndestitute,1,periclesprinceoftyre,1608\nSeeks,1,periclesprinceoftyre,1608\nclients,1,periclesprinceoftyre,1608\nstore,1,periclesprinceoftyre,1608\nentertain,1,periclesprinceoftyre,1608\nsanctity,1,periclesprinceoftyre,1608\ncoigns,1,periclesprinceoftyre,1608\npleasure's,1,periclesprinceoftyre,1608\nstay'd,1,periclesprinceoftyre,1608\nforgive,1,periclesprinceoftyre,1608\npromised,1,periclesprinceoftyre,1608\nlead's,1,periclesprinceoftyre,1608\nwhereto,1,periclesprinceoftyre,1608\nmood,1,periclesprinceoftyre,1608\nNature's,1,periclesprinceoftyre,1608\nconfess,1,periclesprinceoftyre,1608\nha,1,periclesprinceoftyre,1608\nbetray,1,periclesprinceoftyre,1608\nCannot,1,periclesprinceoftyre,1608\nFortune,1,periclesprinceoftyre,1608\naim,1,periclesprinceoftyre,1608\nForty,1,periclesprinceoftyre,1608\nartificial,1,periclesprinceoftyre,1608\nblithe,1,periclesprinceoftyre,1608\nsage,1,periclesprinceoftyre,1608\ntyrant,1,periclesprinceoftyre,1608\nmole,1,periclesprinceoftyre,1608\nsatisfy,1,periclesprinceoftyre,1608\nFear,1,periclesprinceoftyre,1608\ndoit,1,periclesprinceoftyre,1608\nrepent,1,periclesprinceoftyre,1608\nfencing,1,periclesprinceoftyre,1608\nfaster,1,periclesprinceoftyre,1608\nshouts,1,periclesprinceoftyre,1608\nfavour,1,periclesprinceoftyre,1608\nneedy,1,periclesprinceoftyre,1608\nprevented,1,periclesprinceoftyre,1608\nsable,1,periclesprinceoftyre,1608\nbeat,1,periclesprinceoftyre,1608\nooze,1,periclesprinceoftyre,1608\ninhospitable,1,periclesprinceoftyre,1608\nviolence,1,periclesprinceoftyre,1608\nwreck,1,periclesprinceoftyre,1608\nneeds,1,periclesprinceoftyre,1608\nBlest,1,periclesprinceoftyre,1608\nAdvanced,1,periclesprinceoftyre,1608\nsuccor,1,periclesprinceoftyre,1608\neo,1,periclesprinceoftyre,1608\nApollo,1,periclesprinceoftyre,1608\nlegs,1,periclesprinceoftyre,1608\nhandsome,1,periclesprinceoftyre,1608\nweigh'd,1,periclesprinceoftyre,1608\ndriving,1,periclesprinceoftyre,1608\nplays,1,periclesprinceoftyre,1608\nunworthy,1,periclesprinceoftyre,1608\nendurance,1,periclesprinceoftyre,1608\nrenowns,1,periclesprinceoftyre,1608\nvictory,1,periclesprinceoftyre,1608\nworthily,1,periclesprinceoftyre,1608\nstrictly,1,periclesprinceoftyre,1608\nlent,1,periclesprinceoftyre,1608\ninterim,1,periclesprinceoftyre,1608\ntime's,1,periclesprinceoftyre,1608\ncontinual,1,periclesprinceoftyre,1608\nReturn,1,periclesprinceoftyre,1608\nthrive,1,periclesprinceoftyre,1608\nrhymes,1,periclesprinceoftyre,1608\npierces,1,periclesprinceoftyre,1608\nboast,1,periclesprinceoftyre,1608\nbounties,1,periclesprinceoftyre,1608\napex,1,periclesprinceoftyre,1608\n'Here,1,periclesprinceoftyre,1608\nnicely,1,periclesprinceoftyre,1608\nList,1,periclesprinceoftyre,1608\nmakest,1,periclesprinceoftyre,1608\nay,1,periclesprinceoftyre,1608\nstages,1,periclesprinceoftyre,1608\nshed,1,periclesprinceoftyre,1608\npierced,1,periclesprinceoftyre,1608\ncaper,1,periclesprinceoftyre,1608\nforget,1,periclesprinceoftyre,1608\n'Lux,1,periclesprinceoftyre,1608\nBlows,1,periclesprinceoftyre,1608\nwench,1,periclesprinceoftyre,1608\nbless'd,1,periclesprinceoftyre,1608\ndoom,1,periclesprinceoftyre,1608\ncorrect,1,periclesprinceoftyre,1608\nprosper,1,periclesprinceoftyre,1608\npageantry,1,periclesprinceoftyre,1608\nabominable,1,periclesprinceoftyre,1608\ncures,1,periclesprinceoftyre,1608\no'erflow'd,1,periclesprinceoftyre,1608\napprobation,1,periclesprinceoftyre,1608\nappearer,1,periclesprinceoftyre,1608\nfears,1,periclesprinceoftyre,1608\nbodies,1,periclesprinceoftyre,1608\nbeget'st,1,periclesprinceoftyre,1608\ncommendations,1,periclesprinceoftyre,1608\nstrain,1,periclesprinceoftyre,1608\ncrew,1,periclesprinceoftyre,1608\nunspotted,1,periclesprinceoftyre,1608\nutmost,1,periclesprinceoftyre,1608\ncomplexions,1,periclesprinceoftyre,1608\nEarly,1,periclesprinceoftyre,1608\nthankful,1,periclesprinceoftyre,1608\nabide,1,periclesprinceoftyre,1608\nlown,1,periclesprinceoftyre,1608\ncowers,1,periclesprinceoftyre,1608\naccount,1,periclesprinceoftyre,1608\nsometime,1,periclesprinceoftyre,1608\nCommended,1,periclesprinceoftyre,1608\nmingle,1,periclesprinceoftyre,1608\nblackness,1,periclesprinceoftyre,1608\nSlack,1,periclesprinceoftyre,1608\nmorn,1,periclesprinceoftyre,1608\nDiseases,1,periclesprinceoftyre,1608\nBegin,1,periclesprinceoftyre,1608\nstature,1,periclesprinceoftyre,1608\nlots,1,periclesprinceoftyre,1608\n'wilt,1,periclesprinceoftyre,1608\npuritan,1,periclesprinceoftyre,1608\nglance,1,periclesprinceoftyre,1608\ndumbs,1,periclesprinceoftyre,1608\nink,1,periclesprinceoftyre,1608\nstudied,1,periclesprinceoftyre,1608\nsettled,1,periclesprinceoftyre,1608\nla,1,periclesprinceoftyre,1608\nlevy,1,periclesprinceoftyre,1608\nYea,1,periclesprinceoftyre,1608\nlistened,1,periclesprinceoftyre,1608\nsweetness,1,periclesprinceoftyre,1608\nachieved,1,periclesprinceoftyre,1608\ndragons,1,periclesprinceoftyre,1608\ndiamond,1,periclesprinceoftyre,1608\nServants,1,periclesprinceoftyre,1608\nwherein,1,periclesprinceoftyre,1608\nspent,1,periclesprinceoftyre,1608\ncelebrate,1,periclesprinceoftyre,1608\npotent,1,periclesprinceoftyre,1608\ndispose,1,periclesprinceoftyre,1608\nforeshow,1,periclesprinceoftyre,1608\nall's,1,periclesprinceoftyre,1608\ncustomers,1,periclesprinceoftyre,1608\ndole,1,periclesprinceoftyre,1608\ndevil,1,periclesprinceoftyre,1608\nknot,1,periclesprinceoftyre,1608\nhostile,1,periclesprinceoftyre,1608\ndefy,1,periclesprinceoftyre,1608\nfeats,1,periclesprinceoftyre,1608\ngreater,1,periclesprinceoftyre,1608\nbootless,1,periclesprinceoftyre,1608\nnimble,1,periclesprinceoftyre,1608\nknew,1,periclesprinceoftyre,1608\nIt's,1,periclesprinceoftyre,1608\nsupremacy,1,periclesprinceoftyre,1608\nvegetives,1,periclesprinceoftyre,1608\nHesperides,1,periclesprinceoftyre,1608\nhaps,1,periclesprinceoftyre,1608\nkings',1,periclesprinceoftyre,1608\ncomposes,1,periclesprinceoftyre,1608\nshow'd,1,periclesprinceoftyre,1608\nserious,1,periclesprinceoftyre,1608\ntyrants,1,periclesprinceoftyre,1608\nslack,1,periclesprinceoftyre,1608\nProtest,1,periclesprinceoftyre,1608\nthought'st,1,periclesprinceoftyre,1608\nprovexit,1,periclesprinceoftyre,1608\nrespite,1,periclesprinceoftyre,1608\nuntimely,1,periclesprinceoftyre,1608\njourney,1,periclesprinceoftyre,1608\nreads,1,periclesprinceoftyre,1608\nsummers,1,periclesprinceoftyre,1608\npure,1,periclesprinceoftyre,1608\nmen's,1,periclesprinceoftyre,1608\nhot,1,periclesprinceoftyre,1608\nload,1,periclesprinceoftyre,1608\nwesterly,1,periclesprinceoftyre,1608\nCame,1,periclesprinceoftyre,1608\ngraves,1,periclesprinceoftyre,1608\nWhence,1,periclesprinceoftyre,1608\nhardly,1,periclesprinceoftyre,1608\nSeeing,1,periclesprinceoftyre,1608\nclime,1,periclesprinceoftyre,1608\noppression,1,periclesprinceoftyre,1608\npersonal,1,periclesprinceoftyre,1608\nAmazement,1,periclesprinceoftyre,1608\ndescry,1,periclesprinceoftyre,1608\nfierce,1,periclesprinceoftyre,1608\nkills,1,periclesprinceoftyre,1608\nThought,1,periclesprinceoftyre,1608\nhard,1,periclesprinceoftyre,1608\ndiscourse,1,periclesprinceoftyre,1608\naxe,1,periclesprinceoftyre,1608\nattractions,1,periclesprinceoftyre,1608\nFreely,1,periclesprinceoftyre,1608\nhumming,1,periclesprinceoftyre,1608\nDispersedly,1,periclesprinceoftyre,1608\nfield,1,periclesprinceoftyre,1608\nfrighted,1,periclesprinceoftyre,1608\npour'd,1,periclesprinceoftyre,1608\nkeen,1,periclesprinceoftyre,1608\nremember'd,1,periclesprinceoftyre,1608\nkeel,1,periclesprinceoftyre,1608\nsoldier's,1,periclesprinceoftyre,1608\naye,1,periclesprinceoftyre,1608\nreclined,1,periclesprinceoftyre,1608\nhall,1,periclesprinceoftyre,1608\ncrow,1,periclesprinceoftyre,1608\ncancel,1,periclesprinceoftyre,1608\npeaceable,1,periclesprinceoftyre,1608\nCleon's,1,periclesprinceoftyre,1608\ndern,1,periclesprinceoftyre,1608\ninflaming,1,periclesprinceoftyre,1608\ntext,1,periclesprinceoftyre,1608\nbasest,1,periclesprinceoftyre,1608\nsubmit,1,periclesprinceoftyre,1608\nparent's,1,periclesprinceoftyre,1608\nburying,1,periclesprinceoftyre,1608\nsenate,1,periclesprinceoftyre,1608\nkillen,1,periclesprinceoftyre,1608\nperform'd,1,periclesprinceoftyre,1608\nnatural,1,periclesprinceoftyre,1608\nspur,1,periclesprinceoftyre,1608\nHappy,1,periclesprinceoftyre,1608\nCourage,1,periclesprinceoftyre,1608\ninterpret,1,periclesprinceoftyre,1608\nexpend,1,periclesprinceoftyre,1608\nstrings,1,periclesprinceoftyre,1608\nRiding,1,periclesprinceoftyre,1608\nre,1,periclesprinceoftyre,1608\nt',1,periclesprinceoftyre,1608\nquo,1,periclesprinceoftyre,1608\nnobleness,1,periclesprinceoftyre,1608\nshut,1,periclesprinceoftyre,1608\nLosing,1,periclesprinceoftyre,1608\nque,1,periclesprinceoftyre,1608\nlengthen,1,periclesprinceoftyre,1608\nplain,1,periclesprinceoftyre,1608\nsurges,1,periclesprinceoftyre,1608\nladder,1,periclesprinceoftyre,1608\nMARINA's,1,periclesprinceoftyre,1608\nhams,1,periclesprinceoftyre,1608\ndescried,1,periclesprinceoftyre,1608\nsweetest,1,periclesprinceoftyre,1608\ncountervail,1,periclesprinceoftyre,1608\nexcuse,1,periclesprinceoftyre,1608\nHum,1,periclesprinceoftyre,1608\nacquaintance,1,periclesprinceoftyre,1608\nEmpty,1,periclesprinceoftyre,1608\nvirginal,1,periclesprinceoftyre,1608\nUnder,1,periclesprinceoftyre,1608\npage,1,periclesprinceoftyre,1608\ndisfurnish,1,periclesprinceoftyre,1608\nvengeance,1,periclesprinceoftyre,1608\noped,1,periclesprinceoftyre,1608\nGripe,1,periclesprinceoftyre,1608\nrefused,1,periclesprinceoftyre,1608\nform,1,periclesprinceoftyre,1608\nPure,1,periclesprinceoftyre,1608\nkingdoms,1,periclesprinceoftyre,1608\nsubject's,1,periclesprinceoftyre,1608\nhangs,1,periclesprinceoftyre,1608\npained'st,1,periclesprinceoftyre,1608\npaid,1,periclesprinceoftyre,1608\nfore,1,periclesprinceoftyre,1608\ngins,1,periclesprinceoftyre,1608\nmock,1,periclesprinceoftyre,1608\nhaven,1,periclesprinceoftyre,1608\nfrown,1,periclesprinceoftyre,1608\nPrepare,1,periclesprinceoftyre,1608\nminute's,1,periclesprinceoftyre,1608\nscatter,1,periclesprinceoftyre,1608\nstrive,1,periclesprinceoftyre,1608\nshakes,1,periclesprinceoftyre,1608\nPaphos,1,periclesprinceoftyre,1608\nstones,1,periclesprinceoftyre,1608\npace,1,periclesprinceoftyre,1608\nhate,1,periclesprinceoftyre,1608\nMusings,1,periclesprinceoftyre,1608\nfear'd,1,periclesprinceoftyre,1608\ndismal,1,periclesprinceoftyre,1608\ndreadful,1,periclesprinceoftyre,1608\nrogue,1,periclesprinceoftyre,1608\nyielded,1,periclesprinceoftyre,1608\nawe,1,periclesprinceoftyre,1608\nfaithful,1,periclesprinceoftyre,1608\nHymen,1,periclesprinceoftyre,1608\nmoan,1,periclesprinceoftyre,1608\nfiend,1,periclesprinceoftyre,1608\nflatter'd,1,periclesprinceoftyre,1608\nBereft,1,periclesprinceoftyre,1608\nnapkins,1,periclesprinceoftyre,1608\nprepared,1,periclesprinceoftyre,1608\nserpents,1,periclesprinceoftyre,1608\nrevenge,1,periclesprinceoftyre,1608\nWears,1,periclesprinceoftyre,1608\nrenowned,1,periclesprinceoftyre,1608\ncourser,1,periclesprinceoftyre,1608\npush,1,periclesprinceoftyre,1608\nscarcely,1,periclesprinceoftyre,1608\nmaiden,1,periclesprinceoftyre,1608\nmalkin,1,periclesprinceoftyre,1608\nfancies,1,periclesprinceoftyre,1608\nrightly,1,periclesprinceoftyre,1608\nerror,1,periclesprinceoftyre,1608\nbegets,1,periclesprinceoftyre,1608\nCare,1,periclesprinceoftyre,1608\nHast,1,periclesprinceoftyre,1608\ncasualties,1,periclesprinceoftyre,1608\nopen'd,1,periclesprinceoftyre,1608\nchance,1,periclesprinceoftyre,1608\nSparta,1,periclesprinceoftyre,1608\nbanquet,1,periclesprinceoftyre,1608\nploughed,1,periclesprinceoftyre,1608\ninquire,1,periclesprinceoftyre,1608\ntheirs,1,periclesprinceoftyre,1608\nBreathes,1,periclesprinceoftyre,1608\ncleared,1,periclesprinceoftyre,1608\nfee,1,periclesprinceoftyre,1608\nhits,1,periclesprinceoftyre,1608\nwashed,1,periclesprinceoftyre,1608\nsmells,1,periclesprinceoftyre,1608\npartakes,1,periclesprinceoftyre,1608\nsweetly,1,periclesprinceoftyre,1608\nContend,1,periclesprinceoftyre,1608\nshow'dst,1,periclesprinceoftyre,1608\nwooing,1,periclesprinceoftyre,1608\nconversation,1,periclesprinceoftyre,1608\nlonging,1,periclesprinceoftyre,1608\ndemanded,1,periclesprinceoftyre,1608\ndooms,1,periclesprinceoftyre,1608\nbaboon,1,periclesprinceoftyre,1608\npurple,1,periclesprinceoftyre,1608\nhazard,1,periclesprinceoftyre,1608\ngain'd,1,periclesprinceoftyre,1608\nwillingly,1,periclesprinceoftyre,1608\nnew,1,periclesprinceoftyre,1608\nstrongest,1,periclesprinceoftyre,1608\nmoves,1,periclesprinceoftyre,1608\ncapital,1,periclesprinceoftyre,1608\nnobles,1,periclesprinceoftyre,1608\nwreck'd,1,periclesprinceoftyre,1608\nexecute,1,periclesprinceoftyre,1608\nLeaves,1,periclesprinceoftyre,1608\ncanvas,1,periclesprinceoftyre,1608\nShows,1,periclesprinceoftyre,1608\nroof,1,periclesprinceoftyre,1608\nexposition,1,periclesprinceoftyre,1608\ndelicate,1,periclesprinceoftyre,1608\nfitly,1,periclesprinceoftyre,1608\nrestored,1,periclesprinceoftyre,1608\nleap,1,periclesprinceoftyre,1608\nbreech,1,periclesprinceoftyre,1608\nwhispers,1,periclesprinceoftyre,1608\nwashes,1,periclesprinceoftyre,1608\ntried,1,periclesprinceoftyre,1608\nperceived,1,periclesprinceoftyre,1608\nFISHERMEN,1,periclesprinceoftyre,1608\nmask'd,1,periclesprinceoftyre,1608\nbelfry,1,periclesprinceoftyre,1608\nmain,1,periclesprinceoftyre,1608\nsurgeon,1,periclesprinceoftyre,1608\nmoved,1,periclesprinceoftyre,1608\nfreeze,1,periclesprinceoftyre,1608\nconsider'd,1,periclesprinceoftyre,1608\nnay,1,periclesprinceoftyre,1608\nsuffrages,1,periclesprinceoftyre,1608\nglow,1,periclesprinceoftyre,1608\nsleided,1,periclesprinceoftyre,1608\nasks,1,periclesprinceoftyre,1608\nsaid'st,1,periclesprinceoftyre,1608\nCanst,1,periclesprinceoftyre,1608\nbounced,1,periclesprinceoftyre,1608\nsilence,1,periclesprinceoftyre,1608\ncalm'd,1,periclesprinceoftyre,1608\nscape,1,periclesprinceoftyre,1608\nbenign,1,periclesprinceoftyre,1608\ndistance,1,periclesprinceoftyre,1608\nfides,1,periclesprinceoftyre,1608\nbuilt,1,periclesprinceoftyre,1608\n'Gainst,1,periclesprinceoftyre,1608\nunknown,1,periclesprinceoftyre,1608\nrepose,1,periclesprinceoftyre,1608\nfourth,1,periclesprinceoftyre,1608\nomit,1,periclesprinceoftyre,1608\nrooted,1,periclesprinceoftyre,1608\nHalf,1,periclesprinceoftyre,1608\nsquare,1,periclesprinceoftyre,1608\nAlter,1,periclesprinceoftyre,1608\napparell'd,1,periclesprinceoftyre,1608\nproceed,1,periclesprinceoftyre,1608\nindeed's,1,periclesprinceoftyre,1608\nscroll,1,periclesprinceoftyre,1608\nBethought,1,periclesprinceoftyre,1608\nconquer'd,1,periclesprinceoftyre,1608\nstirrest,1,periclesprinceoftyre,1608\ngently,1,periclesprinceoftyre,1608\nfavourers,1,periclesprinceoftyre,1608\nnow's,1,periclesprinceoftyre,1608\ngosling,1,periclesprinceoftyre,1608\ngivest,1,periclesprinceoftyre,1608\nHight,1,periclesprinceoftyre,1608\nBad,1,periclesprinceoftyre,1608\nprofessest,1,periclesprinceoftyre,1608\nWas't,1,periclesprinceoftyre,1608\nmajesty,1,periclesprinceoftyre,1608\ncloths,1,periclesprinceoftyre,1608\nriots,1,periclesprinceoftyre,1608\nrout,1,periclesprinceoftyre,1608\nsuperstition,1,periclesprinceoftyre,1608\ntender,1,periclesprinceoftyre,1608\nthings,1,periclesprinceoftyre,1608\nlading's,1,periclesprinceoftyre,1608\nCopp'd,1,periclesprinceoftyre,1608\nblurted,1,periclesprinceoftyre,1608\ndarks,1,periclesprinceoftyre,1608\nmite,1,periclesprinceoftyre,1608\nframing,1,periclesprinceoftyre,1608\nScorning,1,periclesprinceoftyre,1608\nhastes,1,periclesprinceoftyre,1608\nyear,1,periclesprinceoftyre,1608\nSleeps,1,periclesprinceoftyre,1608\nglory's,1,periclesprinceoftyre,1608\nbanners,1,periclesprinceoftyre,1608\nAlack,1,periclesprinceoftyre,1608\nbelching,1,periclesprinceoftyre,1608\nobserved,1,periclesprinceoftyre,1608\nbottom,1,periclesprinceoftyre,1608\npregnant,1,periclesprinceoftyre,1608\nhies,1,periclesprinceoftyre,1608\ntreason's,1,periclesprinceoftyre,1608\nbellows,1,periclesprinceoftyre,1608\nmock'd,1,periclesprinceoftyre,1608\nwandering,1,periclesprinceoftyre,1608\nPerform'd,1,periclesprinceoftyre,1608\nDown,1,periclesprinceoftyre,1608\nsubstance,1,periclesprinceoftyre,1608\nadventure,1,periclesprinceoftyre,1608\nliable,1,periclesprinceoftyre,1608\nborne,1,periclesprinceoftyre,1608\nsustenance,1,periclesprinceoftyre,1608\nEmbrace,1,periclesprinceoftyre,1608\nnun,1,periclesprinceoftyre,1608\nmount,1,periclesprinceoftyre,1608\naffections,1,periclesprinceoftyre,1608\nthirsty,1,periclesprinceoftyre,1608\nbasket,1,periclesprinceoftyre,1608\nquickly,1,periclesprinceoftyre,1608\nyou'ld,1,periclesprinceoftyre,1608\nInflame,1,periclesprinceoftyre,1608\nmisers,1,periclesprinceoftyre,1608\no'erlook,1,periclesprinceoftyre,1608\nbegging,1,periclesprinceoftyre,1608\nRoyal,1,periclesprinceoftyre,1608\nFurther,1,periclesprinceoftyre,1608\nescapen,1,periclesprinceoftyre,1608\nfairy,1,periclesprinceoftyre,1608\nparting,1,periclesprinceoftyre,1608\nodious,1,periclesprinceoftyre,1608\nsprings,1,periclesprinceoftyre,1608\nSet,1,periclesprinceoftyre,1608\nunhappy,1,periclesprinceoftyre,1608\nevermore,1,periclesprinceoftyre,1608\ndares,1,periclesprinceoftyre,1608\nshall's,1,periclesprinceoftyre,1608\nfamous,1,periclesprinceoftyre,1608\nmouse,1,periclesprinceoftyre,1608\nwonder'd,1,periclesprinceoftyre,1608\nbargained,1,periclesprinceoftyre,1608\nleaving,1,periclesprinceoftyre,1608\nvanquish'd,1,periclesprinceoftyre,1608\nLoud,1,periclesprinceoftyre,1608\ngroves,1,periclesprinceoftyre,1608\nquestion,1,periclesprinceoftyre,1608\nPerformance,1,periclesprinceoftyre,1608\nRarest,1,periclesprinceoftyre,1608\nensuing,1,periclesprinceoftyre,1608\nunprovided,1,periclesprinceoftyre,1608\nrecount,1,periclesprinceoftyre,1608\nchill,1,periclesprinceoftyre,1608\nclaspings,1,periclesprinceoftyre,1608\nchime,1,periclesprinceoftyre,1608\nerr,1,periclesprinceoftyre,1608\nsinn'd,1,periclesprinceoftyre,1608\nscan,1,periclesprinceoftyre,1608\npaced,1,periclesprinceoftyre,1608\nlodge,1,periclesprinceoftyre,1608\n'He,1,periclesprinceoftyre,1608\n'Ha,1,periclesprinceoftyre,1608\nleaves,1,periclesprinceoftyre,1608\nentreasured,1,periclesprinceoftyre,1608\nbenison,1,periclesprinceoftyre,1608\nmilk,1,periclesprinceoftyre,1608\nindustry,1,periclesprinceoftyre,1608\nfarer,1,periclesprinceoftyre,1608\nyellows,1,periclesprinceoftyre,1608\ndisdain'd,1,periclesprinceoftyre,1608\n'In,1,periclesprinceoftyre,1608\nteeth,1,periclesprinceoftyre,1608\nvestals,1,periclesprinceoftyre,1608\nprosperities,1,periclesprinceoftyre,1608\nconclusion,1,periclesprinceoftyre,1608\nknave,1,periclesprinceoftyre,1608\nfilth,1,periclesprinceoftyre,1608\nbeautify,1,periclesprinceoftyre,1608\nSoon,1,periclesprinceoftyre,1608\nPresumes,1,periclesprinceoftyre,1608\ntowers,1,periclesprinceoftyre,1608\nMark'd,1,periclesprinceoftyre,1608\nsmother,1,periclesprinceoftyre,1608\nalready,1,periclesprinceoftyre,1608\ntackle,1,periclesprinceoftyre,1608\nblush,1,periclesprinceoftyre,1608\nkeeper,1,periclesprinceoftyre,1608\ndidst,1,periclesprinceoftyre,1608\narcher,1,periclesprinceoftyre,1608\nnursed,1,periclesprinceoftyre,1608\ndowry,1,periclesprinceoftyre,1608\nshipwrecked,1,periclesprinceoftyre,1608\nbloody,1,periclesprinceoftyre,1608\nlowest,1,periclesprinceoftyre,1608\nreading,1,periclesprinceoftyre,1608\n'gainst,1,periclesprinceoftyre,1608\nmidwife,1,periclesprinceoftyre,1608\nsovereign's,1,periclesprinceoftyre,1608\nskip,1,periclesprinceoftyre,1608\nuntutor'd,1,periclesprinceoftyre,1608\nmast,1,periclesprinceoftyre,1608\nresorters,1,periclesprinceoftyre,1608\nchief,1,periclesprinceoftyre,1608\ncoward,1,periclesprinceoftyre,1608\nson's,1,periclesprinceoftyre,1608\nknows,1,periclesprinceoftyre,1608\nmart,1,periclesprinceoftyre,1608\nderivation,1,periclesprinceoftyre,1608\ncomet,1,periclesprinceoftyre,1608\nthick,1,periclesprinceoftyre,1608\nAny,1,periclesprinceoftyre,1608\nissue,1,periclesprinceoftyre,1608\nattribute,1,periclesprinceoftyre,1608\nBecoming,1,periclesprinceoftyre,1608\nMacedon,1,periclesprinceoftyre,1608\nlanding,1,periclesprinceoftyre,1608\nTrojan,1,periclesprinceoftyre,1608\nquoth,1,periclesprinceoftyre,1608\n'Keep,1,periclesprinceoftyre,1608\nungentle,1,periclesprinceoftyre,1608\nwoo,1,periclesprinceoftyre,1608\nJoy,1,periclesprinceoftyre,1608\nflatter,1,periclesprinceoftyre,1608\ninch,1,periclesprinceoftyre,1608\ncraver,1,periclesprinceoftyre,1608\n'Go,1,periclesprinceoftyre,1608\npainful,1,periclesprinceoftyre,1608\nmartyrs,1,periclesprinceoftyre,1608\nstarves,1,periclesprinceoftyre,1608\nbeside,1,periclesprinceoftyre,1608\ndropping,1,periclesprinceoftyre,1608\nthief,1,periclesprinceoftyre,1608\nheaven's,1,periclesprinceoftyre,1608\nseal'd,1,periclesprinceoftyre,1608\ndeeps,1,periclesprinceoftyre,1608\nperemptory,1,periclesprinceoftyre,1608\nhypocrite,1,periclesprinceoftyre,1608\n'Sic,1,periclesprinceoftyre,1608\nbleak,1,periclesprinceoftyre,1608\nMurder's,1,periclesprinceoftyre,1608\nblacker,1,periclesprinceoftyre,1608\nparent,1,periclesprinceoftyre,1608\nborrow'd,1,periclesprinceoftyre,1608\nsmoke,1,periclesprinceoftyre,1608\nblither,1,periclesprinceoftyre,1608\ninfusions,1,periclesprinceoftyre,1608\nhonouring,1,periclesprinceoftyre,1608\n'She,1,periclesprinceoftyre,1608\nadventures,1,periclesprinceoftyre,1608\nPriapus,1,periclesprinceoftyre,1608\nprincipals,1,periclesprinceoftyre,1608\ndisguised,1,periclesprinceoftyre,1608\nPerhaps,1,periclesprinceoftyre,1608\nblasted,1,periclesprinceoftyre,1608\nreprovest,1,periclesprinceoftyre,1608\nwet,1,periclesprinceoftyre,1608\ndesired,1,periclesprinceoftyre,1608\ntouchstone,1,periclesprinceoftyre,1608\nFound,1,periclesprinceoftyre,1608\nbanks,1,periclesprinceoftyre,1608\nThetis',1,periclesprinceoftyre,1608\nBuilt,1,periclesprinceoftyre,1608\npause,1,periclesprinceoftyre,1608\nBuild,1,periclesprinceoftyre,1608\nnousle,1,periclesprinceoftyre,1608\nmaids,1,periclesprinceoftyre,1608\ndesolation,1,periclesprinceoftyre,1608\nstink,1,periclesprinceoftyre,1608\nPages,1,periclesprinceoftyre,1608\ndignifies,1,periclesprinceoftyre,1608\nservitude,1,periclesprinceoftyre,1608\nstint,1,periclesprinceoftyre,1608\nThetis,1,periclesprinceoftyre,1608\nsale,1,periclesprinceoftyre,1608\nstalk,1,periclesprinceoftyre,1608\nformer,1,periclesprinceoftyre,1608\nblushes,1,periclesprinceoftyre,1608\ndishonour,1,periclesprinceoftyre,1608\nsafely,1,periclesprinceoftyre,1608\nwis,1,periclesprinceoftyre,1608\nwit,1,periclesprinceoftyre,1608\nexperience,1,periclesprinceoftyre,1608\nDeep,1,periclesprinceoftyre,1608\nliberties,1,periclesprinceoftyre,1608\nmihi,1,periclesprinceoftyre,1608\nroast,1,periclesprinceoftyre,1608\n'Me,1,periclesprinceoftyre,1608\npooped,1,periclesprinceoftyre,1608\nodour,1,periclesprinceoftyre,1608\nTaking,1,periclesprinceoftyre,1608\ncurb,1,periclesprinceoftyre,1608\nrelieved,1,periclesprinceoftyre,1608\nbawdy,1,periclesprinceoftyre,1608\npretence,1,periclesprinceoftyre,1608\nknife,1,periclesprinceoftyre,1608\nMoreover,1,periclesprinceoftyre,1608\nthrived,1,periclesprinceoftyre,1608\nBlush,1,periclesprinceoftyre,1608\nloving,1,periclesprinceoftyre,1608\nerr'd,1,periclesprinceoftyre,1608\nprime,1,periclesprinceoftyre,1608\ndevour'd,1,periclesprinceoftyre,1608\ngat,1,periclesprinceoftyre,1608\ntractable,1,periclesprinceoftyre,1608\nmeasures,1,periclesprinceoftyre,1608\ngalling,1,periclesprinceoftyre,1608\nabundance,1,periclesprinceoftyre,1608\nrecover'd,1,periclesprinceoftyre,1608\ncloset,1,periclesprinceoftyre,1608\nrecover,1,periclesprinceoftyre,1608\nbestow'd,1,periclesprinceoftyre,1608\nblues,1,periclesprinceoftyre,1608\ncheapen,1,periclesprinceoftyre,1608\nSay,1,periclesprinceoftyre,1608\nPeaceful,1,periclesprinceoftyre,1608\nquestionless,1,periclesprinceoftyre,1608\nflight,1,periclesprinceoftyre,1608\ntalons,1,periclesprinceoftyre,1608\nmerit's,1,periclesprinceoftyre,1608\nostent,1,periclesprinceoftyre,1608\ndeath's,1,periclesprinceoftyre,1608\nniece,1,periclesprinceoftyre,1608\nspeeding,1,periclesprinceoftyre,1608\nflint,1,periclesprinceoftyre,1608\nlicentious,1,periclesprinceoftyre,1608\ncertainly,1,periclesprinceoftyre,1608\nthwarting,1,periclesprinceoftyre,1608\nchampion,1,periclesprinceoftyre,1608\nvow'd,1,periclesprinceoftyre,1608\nThink,1,periclesprinceoftyre,1608\nMotion,1,periclesprinceoftyre,1608\nearnest,1,periclesprinceoftyre,1608\nstage,1,periclesprinceoftyre,1608\nflourish,1,periclesprinceoftyre,1608\nThrow,1,periclesprinceoftyre,1608\nstaff,1,periclesprinceoftyre,1608\nspacious,1,periclesprinceoftyre,1608\nduty,1,periclesprinceoftyre,1608\nable,1,periclesprinceoftyre,1608\nprevail,1,periclesprinceoftyre,1608\ndrives,1,periclesprinceoftyre,1608\nbalm'd,1,periclesprinceoftyre,1608\nbarbarous,1,periclesprinceoftyre,1608\nHangs,1,periclesprinceoftyre,1608\nfancy's,1,periclesprinceoftyre,1608\ngrowing,1,periclesprinceoftyre,1608\nrite,1,periclesprinceoftyre,1608\nbleed,1,periclesprinceoftyre,1608\nopposing,1,periclesprinceoftyre,1608\nfervor,1,periclesprinceoftyre,1608\narts,1,periclesprinceoftyre,1608\narrow,1,periclesprinceoftyre,1608\nassure,1,periclesprinceoftyre,1608\nExtremity,1,periclesprinceoftyre,1608\nbereft,1,periclesprinceoftyre,1608\nVeroles,1,periclesprinceoftyre,1608\nvessels,1,periclesprinceoftyre,1608\nproceeding,1,periclesprinceoftyre,1608\nprice,1,periclesprinceoftyre,1608\nwarmth,1,periclesprinceoftyre,1608\nwomen's,1,periclesprinceoftyre,1608\nPoison,1,periclesprinceoftyre,1608\nFourth,1,periclesprinceoftyre,1608\nbreakfast,1,periclesprinceoftyre,1608\nThree,1,periclesprinceoftyre,1608\nbelly,1,periclesprinceoftyre,1608\nThrows,1,periclesprinceoftyre,1608\nThrown,1,periclesprinceoftyre,1608\nMonsieur,1,periclesprinceoftyre,1608\nUnclasp,1,periclesprinceoftyre,1608\ncaught,1,periclesprinceoftyre,1608\nappliance,1,periclesprinceoftyre,1608\nhail,1,periclesprinceoftyre,1608\nflags,1,periclesprinceoftyre,1608\nTwixt,1,periclesprinceoftyre,1608\nadored,1,periclesprinceoftyre,1608\nbetook,1,periclesprinceoftyre,1608\nSixth,1,periclesprinceoftyre,1608\ndiscover'd,1,periclesprinceoftyre,1608\nfamiliar,1,periclesprinceoftyre,1608\nrequite,1,periclesprinceoftyre,1608\nfact,1,periclesprinceoftyre,1608\nraging,1,periclesprinceoftyre,1608\nhusbandry,1,periclesprinceoftyre,1608\nbreadth,1,periclesprinceoftyre,1608\ndrone,1,periclesprinceoftyre,1608\ndarken,1,periclesprinceoftyre,1608\nthankfulness,1,periclesprinceoftyre,1608\nBid,1,periclesprinceoftyre,1608\nHeaven,1,periclesprinceoftyre,1608\nCupid's,1,periclesprinceoftyre,1608\nmorsel,1,periclesprinceoftyre,1608\nedict,1,periclesprinceoftyre,1608\ngraff,1,periclesprinceoftyre,1608\nconference,1,periclesprinceoftyre,1608\nmarry,1,periclesprinceoftyre,1608\nreports,1,periclesprinceoftyre,1608\nrotten,1,periclesprinceoftyre,1608\nspeken,1,periclesprinceoftyre,1608\nThrew,1,periclesprinceoftyre,1608\ntilting,1,periclesprinceoftyre,1608\nrequire,1,periclesprinceoftyre,1608\nforeign,1,periclesprinceoftyre,1608\nSpaniard's,1,periclesprinceoftyre,1608\nSharp,1,periclesprinceoftyre,1608\nlabour'd,1,periclesprinceoftyre,1608\nlute,1,periclesprinceoftyre,1608\nVirgins,1,periclesprinceoftyre,1608\nnets,1,periclesprinceoftyre,1608\ninclination,1,periclesprinceoftyre,1608\ncompass,1,periclesprinceoftyre,1608\nowe,1,periclesprinceoftyre,1608\nwife's,1,periclesprinceoftyre,1608\nrain,1,periclesprinceoftyre,1608\nclip,1,periclesprinceoftyre,1608\nwhistle,1,periclesprinceoftyre,1608\nminister'd,1,periclesprinceoftyre,1608\nyoke,1,periclesprinceoftyre,1608\ngodlike,1,periclesprinceoftyre,1608\ntouching,1,periclesprinceoftyre,1608\nrapture,1,periclesprinceoftyre,1608\nharvest,1,periclesprinceoftyre,1608\nfry,1,periclesprinceoftyre,1608\nserves,1,periclesprinceoftyre,1608\nForbear,1,periclesprinceoftyre,1608\nope,1,periclesprinceoftyre,1608\nauthors,1,periclesprinceoftyre,1608\nNoble,1,periclesprinceoftyre,1608\nfollowers,1,periclesprinceoftyre,1608\ncover,1,periclesprinceoftyre,1608\nfill'd,1,periclesprinceoftyre,1608\nWhispers,1,periclesprinceoftyre,1608\nheirs,1,periclesprinceoftyre,1608\nwholesome,1,periclesprinceoftyre,1608\nenjoineth,1,periclesprinceoftyre,1608\ndispatch'd,1,periclesprinceoftyre,1608\nevil,1,periclesprinceoftyre,1608\nthey've,1,periclesprinceoftyre,1608\ncharacter,1,periclesprinceoftyre,1608\ncloth,1,periclesprinceoftyre,1608\nThither,1,periclesprinceoftyre,1608\nmiracle,1,periclesprinceoftyre,1608\nquest,1,periclesprinceoftyre,1608\nutterly,1,periclesprinceoftyre,1608\narticle,1,periclesprinceoftyre,1608\nhitherward,1,periclesprinceoftyre,1608\ncloud,1,periclesprinceoftyre,1608\ncaterpillar,1,periclesprinceoftyre,1608\nShake,1,periclesprinceoftyre,1608\ngrant,1,periclesprinceoftyre,1608\nGraces,1,periclesprinceoftyre,1608\nlasting,1,periclesprinceoftyre,1608\nCall'd,1,periclesprinceoftyre,1608\nDecrease,1,periclesprinceoftyre,1608\nrace,1,periclesprinceoftyre,1608\nember,1,periclesprinceoftyre,1608\nduck,1,periclesprinceoftyre,1608\nwit's,1,periclesprinceoftyre,1608\ndarlings,1,periclesprinceoftyre,1608\ntune,1,periclesprinceoftyre,1608\ndeafening,1,periclesprinceoftyre,1608\ncompany,1,periclesprinceoftyre,1608\nroses,1,periclesprinceoftyre,1608\ndisturbances,1,periclesprinceoftyre,1608\nwest,1,periclesprinceoftyre,1608\neves,1,periclesprinceoftyre,1608\nride,1,periclesprinceoftyre,1608\ndancing,1,periclesprinceoftyre,1608\nfie,1,periclesprinceoftyre,1608\n'em,1,periclesprinceoftyre,1608\n'Quod,1,periclesprinceoftyre,1608\nendeavour,1,periclesprinceoftyre,1608\nflame,1,periclesprinceoftyre,1608\nSorrow,1,periclesprinceoftyre,1608\nMark,1,periclesprinceoftyre,1608\nofficer,1,periclesprinceoftyre,1608\noffices,1,periclesprinceoftyre,1608\nShook,1,periclesprinceoftyre,1608\ngazing,1,periclesprinceoftyre,1608\nfine,1,periclesprinceoftyre,1608\nswallow'd,1,periclesprinceoftyre,1608\nOpinion's,1,periclesprinceoftyre,1608\nWelcomed,1,periclesprinceoftyre,1608\nAttend,1,periclesprinceoftyre,1608\ncherry,1,periclesprinceoftyre,1608\nRecall,1,periclesprinceoftyre,1608\nsavage,1,periclesprinceoftyre,1608\npunish'd,1,periclesprinceoftyre,1608\nassume,1,periclesprinceoftyre,1608\nImagine,1,periclesprinceoftyre,1608\n'Piu,1,periclesprinceoftyre,1608\nbark,1,periclesprinceoftyre,1608\nrebuke,1,periclesprinceoftyre,1608\nFare,1,periclesprinceoftyre,1608\ncontends,1,periclesprinceoftyre,1608\npoison'd,1,periclesprinceoftyre,1608\nales,1,periclesprinceoftyre,1608\ndefiling,1,periclesprinceoftyre,1608\nlinen,1,periclesprinceoftyre,1608\nsmooth,1,periclesprinceoftyre,1608\nwived,1,periclesprinceoftyre,1608\nexpounded,1,periclesprinceoftyre,1608\nmates,1,periclesprinceoftyre,1608\nReveal,1,periclesprinceoftyre,1608\nscenes,1,periclesprinceoftyre,1608\ntyrants',1,periclesprinceoftyre,1608\nwives,1,periclesprinceoftyre,1608\nsubtlety,1,periclesprinceoftyre,1608\nturbulent,1,periclesprinceoftyre,1608\nlived,1,periclesprinceoftyre,1608\n'Good,1,periclesprinceoftyre,1608\nhearkened,1,periclesprinceoftyre,1608\ncensure,1,periclesprinceoftyre,1608\nbase,1,periclesprinceoftyre,1608\ngrisly,1,periclesprinceoftyre,1608\nunlicensed,1,periclesprinceoftyre,1608\ndeliver'd,1,periclesprinceoftyre,1608\nfate,1,periclesprinceoftyre,1608\nflamed,1,periclesprinceoftyre,1608\nboatswain,1,periclesprinceoftyre,1608\nvails,1,periclesprinceoftyre,1608\nunlaid,1,periclesprinceoftyre,1608\nhallow'd,1,periclesprinceoftyre,1608\ntame,1,periclesprinceoftyre,1608\nsubjection,1,periclesprinceoftyre,1608\nsecrets,1,periclesprinceoftyre,1608\nnames,1,periclesprinceoftyre,1608\nwill'd,1,periclesprinceoftyre,1608\nalit,1,periclesprinceoftyre,1608\nprefer,1,periclesprinceoftyre,1608\nfast,1,periclesprinceoftyre,1608\nfare,1,periclesprinceoftyre,1608\nmeets,1,periclesprinceoftyre,1608\no'erwhelm,1,periclesprinceoftyre,1608\ncoal,1,periclesprinceoftyre,1608\ncoat,1,periclesprinceoftyre,1608\ncalendar,1,periclesprinceoftyre,1608\ntalk,1,periclesprinceoftyre,1608\nconstant,1,periclesprinceoftyre,1608\ndeparture,1,periclesprinceoftyre,1608\ninflamed,1,periclesprinceoftyre,1608\nMariner,1,periclesprinceoftyre,1608\narm'd,1,periclesprinceoftyre,1608\nhaling,1,periclesprinceoftyre,1608\nbind,1,periclesprinceoftyre,1608\nwanion,1,periclesprinceoftyre,1608\nperish,1,periclesprinceoftyre,1608\nsixth,1,periclesprinceoftyre,1608\nWorse,1,periclesprinceoftyre,1608\nconsists,1,periclesprinceoftyre,1608\nrefresh,1,periclesprinceoftyre,1608\nwild,1,periclesprinceoftyre,1608\nmothers,1,periclesprinceoftyre,1608\nbays,1,periclesprinceoftyre,1608\ngreets,1,periclesprinceoftyre,1608\nunthankfulness,1,periclesprinceoftyre,1608\nsights,1,periclesprinceoftyre,1608\nLed,1,periclesprinceoftyre,1608\npledge,1,periclesprinceoftyre,1608\nSpeaks,1,periclesprinceoftyre,1608\nModest,1,periclesprinceoftyre,1608\neels,1,periclesprinceoftyre,1608\napron,1,periclesprinceoftyre,1608\npardon,1,periclesprinceoftyre,1608\nbethought,1,periclesprinceoftyre,1608\nempire,1,periclesprinceoftyre,1608\nembarks,1,periclesprinceoftyre,1608\ninscription,1,periclesprinceoftyre,1608\nLay,1,periclesprinceoftyre,1608\nhole,1,periclesprinceoftyre,1608\nTruth,1,periclesprinceoftyre,1608\nWash'd,1,periclesprinceoftyre,1608\npeaceful,1,periclesprinceoftyre,1608\nrecovery's,1,periclesprinceoftyre,1608\ndozen,1,periclesprinceoftyre,1608\npopulous,1,periclesprinceoftyre,1608\nfrequent,1,periclesprinceoftyre,1608\nhow's,1,periclesprinceoftyre,1608\nmetals,1,periclesprinceoftyre,1608\nArise,1,periclesprinceoftyre,1608\nfollows,1,periclesprinceoftyre,1608\nfired,1,periclesprinceoftyre,1608\ngaping,1,periclesprinceoftyre,1608\nVie,1,periclesprinceoftyre,1608\npangs,1,periclesprinceoftyre,1608\nmotes,1,periclesprinceoftyre,1608\nfires,1,periclesprinceoftyre,1608\npeerless,1,periclesprinceoftyre,1608\nrevolt,1,periclesprinceoftyre,1608\nconsist,1,periclesprinceoftyre,1608\nassist,1,periclesprinceoftyre,1608\nAssuming,1,periclesprinceoftyre,1608\ntire,1,periclesprinceoftyre,1608\nwinter,1,periclesprinceoftyre,1608\nflood,1,periclesprinceoftyre,1608\nentrap,1,periclesprinceoftyre,1608\neagle's,1,periclesprinceoftyre,1608\nwriting,1,periclesprinceoftyre,1608\nWherefore,1,periclesprinceoftyre,1608\nsodden,1,periclesprinceoftyre,1608\nvirtues,1,periclesprinceoftyre,1608\nDay,1,periclesprinceoftyre,1608\nmouthful,1,periclesprinceoftyre,1608\nAwake,1,periclesprinceoftyre,1608\nseal,1,periclesprinceoftyre,1608\ntrain'd,1,periclesprinceoftyre,1608\npotion,1,periclesprinceoftyre,1608\nbuilding,1,periclesprinceoftyre,1608\nfitter,1,periclesprinceoftyre,1608\ntask,1,periclesprinceoftyre,1608\nintents,1,periclesprinceoftyre,1608\nSquire,1,periclesprinceoftyre,1608\nSeize,1,periclesprinceoftyre,1608\nEnvy,1,periclesprinceoftyre,1608\nrobes,1,periclesprinceoftyre,1608\naspire,1,periclesprinceoftyre,1608\nhearts,1,periclesprinceoftyre,1608\nsatisfied,1,periclesprinceoftyre,1608\nlungs,1,periclesprinceoftyre,1608\ncope,1,periclesprinceoftyre,1608\nmanage,1,periclesprinceoftyre,1608\nseat,1,periclesprinceoftyre,1608\nglittering,1,periclesprinceoftyre,1608\nelements,1,periclesprinceoftyre,1608\ncheerful,1,periclesprinceoftyre,1608\ncool,1,periclesprinceoftyre,1608\nlying,1,periclesprinceoftyre,1608\nlop,1,periclesprinceoftyre,1608\nAttended,1,periclesprinceoftyre,1608\nfavour's,1,periclesprinceoftyre,1608\nwenchless,1,periclesprinceoftyre,1608\nCalls,1,periclesprinceoftyre,1608\nhearse,1,periclesprinceoftyre,1608\nconvince,1,periclesprinceoftyre,1608\nwinged,1,periclesprinceoftyre,1608\nneglected,1,periclesprinceoftyre,1608\ninward,1,periclesprinceoftyre,1608\nfavour'd,1,periclesprinceoftyre,1608\nadieu,1,periclesprinceoftyre,1608\neyed,1,periclesprinceoftyre,1608\nstartle,1,periclesprinceoftyre,1608\naloof,1,periclesprinceoftyre,1608\nacts,1,periclesprinceoftyre,1608\nsorrowing,1,periclesprinceoftyre,1608\nexpound,1,periclesprinceoftyre,1608\nneedful,1,periclesprinceoftyre,1608\nunsavoury,1,periclesprinceoftyre,1608\nthereto,1,periclesprinceoftyre,1608\n'Our,1,periclesprinceoftyre,1608\nwhipstock,1,periclesprinceoftyre,1608\nNestor,1,periclesprinceoftyre,1608\nbelches,1,periclesprinceoftyre,1608\nback,1,periclesprinceoftyre,1608\nlitigious,1,periclesprinceoftyre,1608\nfeathers,1,periclesprinceoftyre,1608\ngnats,1,periclesprinceoftyre,1608\ntalking,1,periclesprinceoftyre,1608\ntroth,1,periclesprinceoftyre,1608\nweaved,1,periclesprinceoftyre,1608\nfeeling,1,periclesprinceoftyre,1608\nshipman's,1,periclesprinceoftyre,1608\nsports,1,periclesprinceoftyre,1608\nsupposed,1,periclesprinceoftyre,1608\nwrack,1,periclesprinceoftyre,1608\ndiscretion,1,periclesprinceoftyre,1608\ncamest,1,periclesprinceoftyre,1608\ndestruction's,1,periclesprinceoftyre,1608\nunderstood,1,periclesprinceoftyre,1608\nsees,1,periclesprinceoftyre,1608\ndrunken,1,periclesprinceoftyre,1608\nhundreds,1,periclesprinceoftyre,1608\nliking,1,periclesprinceoftyre,1608\ncost,1,periclesprinceoftyre,1608\nMine,1,periclesprinceoftyre,1608\ntidings,1,periclesprinceoftyre,1608\nplanets,1,periclesprinceoftyre,1608\njangling,1,periclesprinceoftyre,1608\nBelieve,1,periclesprinceoftyre,1608\nporpus,1,periclesprinceoftyre,1608\nwisdom's,1,periclesprinceoftyre,1608\npirate,1,periclesprinceoftyre,1608\nadorn'd,1,periclesprinceoftyre,1608\nsecrecy,1,periclesprinceoftyre,1608\ninquiring,1,periclesprinceoftyre,1608\nconfirm'd,1,periclesprinceoftyre,1608\nexpecting,1,periclesprinceoftyre,1608\nfishermen,1,periclesprinceoftyre,1608\noblations,1,periclesprinceoftyre,1608\ntopp'd,1,periclesprinceoftyre,1608\nincrease,1,periclesprinceoftyre,1608\nwhate'er,1,periclesprinceoftyre,1608\nhearken,1,periclesprinceoftyre,1608\nperson,1,periclesprinceoftyre,1608\nmodest,1,periclesprinceoftyre,1608\nHe'll,1,periclesprinceoftyre,1608\naffright,1,periclesprinceoftyre,1608\ncased,1,periclesprinceoftyre,1608\neyne,1,periclesprinceoftyre,1608\npour,1,periclesprinceoftyre,1608\nloyalty,1,periclesprinceoftyre,1608\nplatform,1,periclesprinceoftyre,1608\nVoice,1,periclesprinceoftyre,1608\ngoal,1,periclesprinceoftyre,1608\ncurtain,1,periclesprinceoftyre,1608\nwretched,1,periclesprinceoftyre,1608\nfuneral,1,periclesprinceoftyre,1608\ntied,1,periclesprinceoftyre,1608\ndislike,1,periclesprinceoftyre,1608\nUse,1,periclesprinceoftyre,1608\nprayer,1,periclesprinceoftyre,1608\nlovers,1,periclesprinceoftyre,1608\nsouls,1,periclesprinceoftyre,1608\nsecure,1,periclesprinceoftyre,1608\nfairly,1,periclesprinceoftyre,1608\nmirror,1,periclesprinceoftyre,1608\nChorus,1,periclesprinceoftyre,1608\nball,1,periclesprinceoftyre,1608\ncases,1,periclesprinceoftyre,1608\nharbourage,1,periclesprinceoftyre,1608\nleg,1,periclesprinceoftyre,1608\nNext,1,periclesprinceoftyre,1608\nfearfully,1,periclesprinceoftyre,1608\nglowing,1,periclesprinceoftyre,1608\nsend,1,periclesprinceoftyre,1608\ngentlest,1,periclesprinceoftyre,1608\nIntend,1,periclesprinceoftyre,1608\nbade,1,periclesprinceoftyre,1608\nbetrothed,1,periclesprinceoftyre,1608\ngrieved,1,periclesprinceoftyre,1608\nsexton,1,periclesprinceoftyre,1608\nVaries,1,periclesprinceoftyre,1608\nherald,1,periclesprinceoftyre,1608\nThinks,1,periclesprinceoftyre,1608\nseized,1,periclesprinceoftyre,1608\nshipboard,1,periclesprinceoftyre,1608\nstatue,1,periclesprinceoftyre,1608\nfearing,1,periclesprinceoftyre,1608\nsickness,1,periclesprinceoftyre,1608\ngloze,1,periclesprinceoftyre,1608\nseizes,1,periclesprinceoftyre,1608\nleagues,1,periclesprinceoftyre,1608\nprotest,1,periclesprinceoftyre,1608\ndescending,1,periclesprinceoftyre,1608\ninkle,1,periclesprinceoftyre,1608\ninvite,1,periclesprinceoftyre,1608\ndetect,1,periclesprinceoftyre,1608\nglows,1,periclesprinceoftyre,1608\nseem'st,1,periclesprinceoftyre,1608\nchances,1,periclesprinceoftyre,1608\nchanced,1,periclesprinceoftyre,1608\nstormy,1,periclesprinceoftyre,1608\nuntil,1,periclesprinceoftyre,1608\nthread,1,periclesprinceoftyre,1608\nbrow,1,periclesprinceoftyre,1608\nslow,1,periclesprinceoftyre,1608\ntorch,1,periclesprinceoftyre,1608\ntrod,1,periclesprinceoftyre,1608\nPERICLES',1,periclesprinceoftyre,1608\noverwhelm,1,periclesprinceoftyre,1608\nperpetually,1,periclesprinceoftyre,1608\nswearers,1,periclesprinceoftyre,1608\nServe,1,periclesprinceoftyre,1608\nlays,1,periclesprinceoftyre,1608\nseated,1,periclesprinceoftyre,1608\nmidway,1,periclesprinceoftyre,1608\nberry,1,periclesprinceoftyre,1608\npetty,1,periclesprinceoftyre,1608\nsufficiently,1,periclesprinceoftyre,1608\no'erspread,1,periclesprinceoftyre,1608\nportage,1,periclesprinceoftyre,1608\ncloudy,1,periclesprinceoftyre,1608\nmar,1,periclesprinceoftyre,1608\ntargets,1,periclesprinceoftyre,1608\nconfound,1,periclesprinceoftyre,1608\nalter'd,1,periclesprinceoftyre,1608\nslaked,1,periclesprinceoftyre,1608\nFalseness,1,periclesprinceoftyre,1608\ngains,1,periclesprinceoftyre,1608\nvolume,1,periclesprinceoftyre,1608\nheinous,1,periclesprinceoftyre,1608\nShrouded,1,periclesprinceoftyre,1608\nDivinest,1,periclesprinceoftyre,1608\nBlame,1,periclesprinceoftyre,1608\nSignior,1,periclesprinceoftyre,1608\ncomfortable,1,periclesprinceoftyre,1608\n'scape,1,periclesprinceoftyre,1608\nconduct,1,periclesprinceoftyre,1608\npropagate,1,periclesprinceoftyre,1608\ndeafen'd,1,periclesprinceoftyre,1608\nvirginities,1,periclesprinceoftyre,1608\nunclasp,1,periclesprinceoftyre,1608\nwatered,1,periclesprinceoftyre,1608\nsmiling,1,periclesprinceoftyre,1608\nbegins,1,periclesprinceoftyre,1608\nlearn,1,periclesprinceoftyre,1608\nburst,1,periclesprinceoftyre,1608\nforces,1,periclesprinceoftyre,1608\nstarve,1,periclesprinceoftyre,1608\nbonum,1,periclesprinceoftyre,1608\nchosen,1,periclesprinceoftyre,1608\nmet,1,periclesprinceoftyre,1608\nSooth,1,periclesprinceoftyre,1608\ntrip,1,periclesprinceoftyre,1608\ntrim,1,periclesprinceoftyre,1608\nUnscissor'd,1,periclesprinceoftyre,1608\narmours,1,periclesprinceoftyre,1608\ndevours,1,periclesprinceoftyre,1608\nmisinterpreting,1,periclesprinceoftyre,1608\nFits,1,periclesprinceoftyre,1608\nDoes,1,periclesprinceoftyre,1608\nRise,1,periclesprinceoftyre,1608\nfishers,1,periclesprinceoftyre,1608\npitifully,1,periclesprinceoftyre,1608\nsovereign,1,periclesprinceoftyre,1608\nnobody,1,periclesprinceoftyre,1608\nstreet,1,periclesprinceoftyre,1608\nevils,1,periclesprinceoftyre,1608\nheritage,1,periclesprinceoftyre,1608\ngraciously,1,periclesprinceoftyre,1608\nfurtherance,1,periclesprinceoftyre,1608\nconfirmation,1,periclesprinceoftyre,1608\nconjures,1,periclesprinceoftyre,1608\nwhip,1,periclesprinceoftyre,1608\ndebtor,1,periclesprinceoftyre,1608\nabuts,1,periclesprinceoftyre,1608\npompous,1,periclesprinceoftyre,1608\nvenomously,1,periclesprinceoftyre,1608\nthinking,1,periclesprinceoftyre,1608\nAway,1,periclesprinceoftyre,1608\nreporting,1,periclesprinceoftyre,1608\nsuperstitiously,1,periclesprinceoftyre,1608\nwound,1,periclesprinceoftyre,1608\nrespected,1,periclesprinceoftyre,1608\ncaulk'd,1,periclesprinceoftyre,1608\nremaining,1,periclesprinceoftyre,1608\nmarigolds,1,periclesprinceoftyre,1608\nFaints,1,periclesprinceoftyre,1608\nwithdraw,1,periclesprinceoftyre,1608\ncasts,1,periclesprinceoftyre,1608\nliege,1,periclesprinceoftyre,1608\nenvies,1,periclesprinceoftyre,1608\no'ershower'd,1,periclesprinceoftyre,1608\nshafts,1,periclesprinceoftyre,1608\nwhiles,1,periclesprinceoftyre,1608\ntelling,1,periclesprinceoftyre,1608\nsometimes,1,periclesprinceoftyre,1608\ncarpet,1,periclesprinceoftyre,1608\nnativity,1,periclesprinceoftyre,1608\neaning,1,periclesprinceoftyre,1608\nBeseech,1,periclesprinceoftyre,1608\nvestal,1,periclesprinceoftyre,1608\nKneels,1,periclesprinceoftyre,1608\nMan,1,periclesprinceoftyre,1608\nflaw,1,periclesprinceoftyre,1608\nfasting,1,periclesprinceoftyre,1608\nflap,1,periclesprinceoftyre,1608\nInhabitants,1,periclesprinceoftyre,1608\npious,1,periclesprinceoftyre,1608\ntua,1,periclesprinceoftyre,1608\ncockles,1,periclesprinceoftyre,1608\nFifth,1,periclesprinceoftyre,1608\nseemed,1,periclesprinceoftyre,1608\nsuspect,1,periclesprinceoftyre,1608\nsailors,1,periclesprinceoftyre,1608\nrecompense,1,periclesprinceoftyre,1608\nWithout,1,periclesprinceoftyre,1608\nstretch'd,1,periclesprinceoftyre,1608\nwanderingly,1,periclesprinceoftyre,1608\ndivinity,1,periclesprinceoftyre,1608\nLend,1,periclesprinceoftyre,1608\nleafy,1,periclesprinceoftyre,1608\ncontend,1,periclesprinceoftyre,1608\ncompell'd,1,periclesprinceoftyre,1608\nwindows,1,periclesprinceoftyre,1608\nJustice,1,periclesprinceoftyre,1608\nentreats,1,periclesprinceoftyre,1608\ndisaster,1,periclesprinceoftyre,1608\no'ercharged,1,periclesprinceoftyre,1608\ndefiled,1,periclesprinceoftyre,1608\nleading,1,periclesprinceoftyre,1608\nOmit,1,periclesprinceoftyre,1608\ndwells,1,periclesprinceoftyre,1608\ninestimable,1,periclesprinceoftyre,1608\nDeath,1,periclesprinceoftyre,1608\nsimple,1,periclesprinceoftyre,1608\nsentence,1,periclesprinceoftyre,1608\nmouths,1,periclesprinceoftyre,1608\ndate,1,periclesprinceoftyre,1608\nharpy,1,periclesprinceoftyre,1608\nentrance,1,periclesprinceoftyre,1608\nrisen,1,periclesprinceoftyre,1608\nearned,1,periclesprinceoftyre,1608\nYou'll,1,periclesprinceoftyre,1608\nNote,1,periclesprinceoftyre,1608\nTib,1,periclesprinceoftyre,1608\nshaft,1,periclesprinceoftyre,1608\ncareless,1,periclesprinceoftyre,1608\njudged,1,periclesprinceoftyre,1608\nisland's,1,periclesprinceoftyre,1608\ninvited,1,periclesprinceoftyre,1608\ndiscovered,1,periclesprinceoftyre,1608\nNicander,1,periclesprinceoftyre,1608\nunprofitable,1,periclesprinceoftyre,1608\nprovide,1,periclesprinceoftyre,1608\nsubstitute,1,periclesprinceoftyre,1608\nhappily,1,periclesprinceoftyre,1608\ndart,1,periclesprinceoftyre,1608\nmusic's,1,periclesprinceoftyre,1608\ndare,1,periclesprinceoftyre,1608\npelf,1,periclesprinceoftyre,1608\nfamish,1,periclesprinceoftyre,1608\nsulphurous,1,periclesprinceoftyre,1608\nLest,1,periclesprinceoftyre,1608\nimpudence,1,periclesprinceoftyre,1608\nDie,1,periclesprinceoftyre,1608\ntottering,1,periclesprinceoftyre,1608\nattent,1,periclesprinceoftyre,1608\nTogether,1,periclesprinceoftyre,1608\nRich,1,periclesprinceoftyre,1608\ncatch,1,periclesprinceoftyre,1608\nlord's,1,periclesprinceoftyre,1608\nlongest,1,periclesprinceoftyre,1608\nwithhold,1,periclesprinceoftyre,1608\nantiquius,1,periclesprinceoftyre,1608\ndestroy,1,periclesprinceoftyre,1608\nblessing,1,periclesprinceoftyre,1608\ndispatch,1,periclesprinceoftyre,1608\nrocks,1,periclesprinceoftyre,1608\nanother's,1,periclesprinceoftyre,1608\nliest,1,periclesprinceoftyre,1608\nlame,1,periclesprinceoftyre,1608\nproclamation,1,periclesprinceoftyre,1608\nsnatch,1,periclesprinceoftyre,1608\ninstantly,1,periclesprinceoftyre,1608\nsea's,1,periclesprinceoftyre,1608\nDRAMATIS,1,periclesprinceoftyre,1608\nchariot,1,periclesprinceoftyre,1608\nDue,1,periclesprinceoftyre,1608\ntie,1,periclesprinceoftyre,1608\no'erboard,1,periclesprinceoftyre,1608\nguests,1,periclesprinceoftyre,1608\nnuptials,1,periclesprinceoftyre,1608\nshine,1,periclesprinceoftyre,1608\nphysician,1,periclesprinceoftyre,1608\nburden,1,periclesprinceoftyre,1608\nfinish'd,1,periclesprinceoftyre,1608\nflower,1,periclesprinceoftyre,1608\ngazed,1,periclesprinceoftyre,1608\ndame,1,periclesprinceoftyre,1608\npass'd,1,periclesprinceoftyre,1608\nawkward,1,periclesprinceoftyre,1608\ndulzura,1,periclesprinceoftyre,1608\nquietly,1,periclesprinceoftyre,1608\nBOTH,1,periclesprinceoftyre,1608\nfence,1,periclesprinceoftyre,1608\nobtain,1,periclesprinceoftyre,1608\ntired,1,periclesprinceoftyre,1608\ntrees,1,periclesprinceoftyre,1608\nreserve,1,periclesprinceoftyre,1608\nhe'ld,1,periclesprinceoftyre,1608\nfrail,1,periclesprinceoftyre,1608\nKneeling,1,periclesprinceoftyre,1608\ninheritor,1,periclesprinceoftyre,1608\nboots,1,periclesprinceoftyre,1608\nexpire,1,periclesprinceoftyre,1608\nshells,1,periclesprinceoftyre,1608\nboundless,1,periclesprinceoftyre,1608\nreconcile,1,periclesprinceoftyre,1608\nbrim,1,periclesprinceoftyre,1608\nmis,1,periclesprinceoftyre,1608\ncates,1,periclesprinceoftyre,1608\nWrong,1,periclesprinceoftyre,1608\ncrouches,1,periclesprinceoftyre,1608\neyelids,1,periclesprinceoftyre,1608\nspirit,1,periclesprinceoftyre,1608\namaze,1,periclesprinceoftyre,1608\nearth's,1,periclesprinceoftyre,1608\nHonest,1,periclesprinceoftyre,1608\ngiven't,1,periclesprinceoftyre,1608\nremembrance,1,periclesprinceoftyre,1608\nValdes,1,periclesprinceoftyre,1608\nwanteth,1,periclesprinceoftyre,1608\nshape,1,periclesprinceoftyre,1608\nFame,1,periclesprinceoftyre,1608\ntread,1,periclesprinceoftyre,1608\nBound,1,periclesprinceoftyre,1608\nbewitch'd,1,periclesprinceoftyre,1608\nsubjects',1,periclesprinceoftyre,1608\nSuppose,1,periclesprinceoftyre,1608\nchivalry,1,periclesprinceoftyre,1608\n'pothecary,1,periclesprinceoftyre,1608\nBrief,1,periclesprinceoftyre,1608\nmouse's,1,periclesprinceoftyre,1608\nhatches,1,periclesprinceoftyre,1608\nsands,1,periclesprinceoftyre,1608\ne'en,1,periclesprinceoftyre,1608\ndissemble,1,periclesprinceoftyre,1608\nhold'st,1,periclesprinceoftyre,1608\nHolding,1,periclesprinceoftyre,1608\ngazes,1,periclesprinceoftyre,1608\ngazer,1,periclesprinceoftyre,1608\nnostril,1,periclesprinceoftyre,1608\nentranced,1,periclesprinceoftyre,1608\nvilely,1,periclesprinceoftyre,1608\nwoo'd,1,periclesprinceoftyre,1608\nsapling,1,periclesprinceoftyre,1608\nending,1,periclesprinceoftyre,1608\nsway,1,periclesprinceoftyre,1608\nblustrous,1,periclesprinceoftyre,1608\ndoorkeeper,1,periclesprinceoftyre,1608\nlargely,1,periclesprinceoftyre,1608\nDrove,1,periclesprinceoftyre,1608\nstormest,1,periclesprinceoftyre,1608\nschoolmaster,1,periclesprinceoftyre,1608\nhatched,1,periclesprinceoftyre,1608\nGrows,1,periclesprinceoftyre,1608\ntreason,2,periclesprinceoftyre,1608\nneighbouring,2,periclesprinceoftyre,1608\ngeneration,2,periclesprinceoftyre,1608\nanswer,2,periclesprinceoftyre,1608\nmeet,2,periclesprinceoftyre,1608\nforbid,2,periclesprinceoftyre,1608\ntomb,2,periclesprinceoftyre,1608\nmoral,2,periclesprinceoftyre,1608\ngrew,2,periclesprinceoftyre,1608\nadvice,2,periclesprinceoftyre,1608\ninfant,2,periclesprinceoftyre,1608\ntook,2,periclesprinceoftyre,1608\ndream'd,2,periclesprinceoftyre,1608\nwrit,2,periclesprinceoftyre,1608\nhorse,2,periclesprinceoftyre,1608\ntreasure,2,periclesprinceoftyre,1608\nriddle,2,periclesprinceoftyre,1608\noffended,2,periclesprinceoftyre,1608\nhealth,2,periclesprinceoftyre,1608\nrob,2,periclesprinceoftyre,1608\nbranch,2,periclesprinceoftyre,1608\nscene,2,periclesprinceoftyre,1608\nWilt,2,periclesprinceoftyre,1608\nexpress,2,periclesprinceoftyre,1608\nrather,2,periclesprinceoftyre,1608\nheld,2,periclesprinceoftyre,1608\nhell,2,periclesprinceoftyre,1608\nhelps,2,periclesprinceoftyre,1608\nwhale,2,periclesprinceoftyre,1608\nyounger,2,periclesprinceoftyre,1608\ndarkness,2,periclesprinceoftyre,1608\nspake,2,periclesprinceoftyre,1608\nEither,2,periclesprinceoftyre,1608\nWhereas,2,periclesprinceoftyre,1608\nclothed,2,periclesprinceoftyre,1608\noffer,2,periclesprinceoftyre,1608\nwhipped,2,periclesprinceoftyre,1608\nsteeple,2,periclesprinceoftyre,1608\ncommodity,2,periclesprinceoftyre,1608\nrid,2,periclesprinceoftyre,1608\nunderstand,2,periclesprinceoftyre,1608\nalthough,2,periclesprinceoftyre,1608\ndrink,2,periclesprinceoftyre,1608\nExpect,2,periclesprinceoftyre,1608\nadvise,2,periclesprinceoftyre,1608\nabsolute,2,periclesprinceoftyre,1608\ndamned,2,periclesprinceoftyre,1608\nsore,2,periclesprinceoftyre,1608\ntrust,2,periclesprinceoftyre,1608\ncontrary,2,periclesprinceoftyre,1608\nCLEON's,2,periclesprinceoftyre,1608\nremain,2,periclesprinceoftyre,1608\nbaggage,2,periclesprinceoftyre,1608\nbecome,2,periclesprinceoftyre,1608\ncurious,2,periclesprinceoftyre,1608\nproclaim,2,periclesprinceoftyre,1608\nvast,2,periclesprinceoftyre,1608\npractised,2,periclesprinceoftyre,1608\nbeneath,2,periclesprinceoftyre,1608\nstrength,2,periclesprinceoftyre,1608\nsoon,2,periclesprinceoftyre,1608\nseven,2,periclesprinceoftyre,1608\nsad,2,periclesprinceoftyre,1608\ndrive,2,periclesprinceoftyre,1608\nworking,2,periclesprinceoftyre,1608\nYoung,2,periclesprinceoftyre,1608\ntost,2,periclesprinceoftyre,1608\ngrows,2,periclesprinceoftyre,1608\nhighness,2,periclesprinceoftyre,1608\nsorrows,2,periclesprinceoftyre,1608\nwords,2,periclesprinceoftyre,1608\nsackcloth,2,periclesprinceoftyre,1608\nOnly,2,periclesprinceoftyre,1608\nwants,2,periclesprinceoftyre,1608\ntown,2,periclesprinceoftyre,1608\ncharacters,2,periclesprinceoftyre,1608\ncomplexion,2,periclesprinceoftyre,1608\nveins,2,periclesprinceoftyre,1608\ncovering,2,periclesprinceoftyre,1608\ntoss'd,2,periclesprinceoftyre,1608\nsinful,2,periclesprinceoftyre,1608\npillow,2,periclesprinceoftyre,1608\nconception,2,periclesprinceoftyre,1608\nground's,2,periclesprinceoftyre,1608\nimpossible,2,periclesprinceoftyre,1608\n'twere,2,periclesprinceoftyre,1608\nsaying,2,periclesprinceoftyre,1608\nvice,2,periclesprinceoftyre,1608\n'twas,2,periclesprinceoftyre,1608\npeevish,2,periclesprinceoftyre,1608\nfell,2,periclesprinceoftyre,1608\nmariner,2,periclesprinceoftyre,1608\nlivest,2,periclesprinceoftyre,1608\nembrace,2,periclesprinceoftyre,1608\nchurch,2,periclesprinceoftyre,1608\nskill,2,periclesprinceoftyre,1608\nbringing,2,periclesprinceoftyre,1608\nmurderer,2,periclesprinceoftyre,1608\nviol,2,periclesprinceoftyre,1608\nashore,2,periclesprinceoftyre,1608\nattends,2,periclesprinceoftyre,1608\nHeavens,2,periclesprinceoftyre,1608\nlevel,2,periclesprinceoftyre,1608\nparish,2,periclesprinceoftyre,1608\nMusic,2,periclesprinceoftyre,1608\nfaults,2,periclesprinceoftyre,1608\nThanks,2,periclesprinceoftyre,1608\npieces,2,periclesprinceoftyre,1608\nbecomes,2,periclesprinceoftyre,1608\nvile,2,periclesprinceoftyre,1608\nfelt,2,periclesprinceoftyre,1608\nguide,2,periclesprinceoftyre,1608\nGovernor's,2,periclesprinceoftyre,1608\nPrincess,2,periclesprinceoftyre,1608\nroots,2,periclesprinceoftyre,1608\ntwelve,2,periclesprinceoftyre,1608\nabsence,2,periclesprinceoftyre,1608\ndearly,2,periclesprinceoftyre,1608\ncommit,2,periclesprinceoftyre,1608\nPardon,2,periclesprinceoftyre,1608\nfruit,2,periclesprinceoftyre,1608\nworthy,2,periclesprinceoftyre,1608\nWherein,2,periclesprinceoftyre,1608\nthence,2,periclesprinceoftyre,1608\nparagon,2,periclesprinceoftyre,1608\nreverence,2,periclesprinceoftyre,1608\nservice,2,periclesprinceoftyre,1608\nmasters,2,periclesprinceoftyre,1608\nupon't,2,periclesprinceoftyre,1608\naccept,2,periclesprinceoftyre,1608\nancient,2,periclesprinceoftyre,1608\nOld,2,periclesprinceoftyre,1608\nothers,2,periclesprinceoftyre,1608\nwishes,2,periclesprinceoftyre,1608\nstuff'd,2,periclesprinceoftyre,1608\nbourn,2,periclesprinceoftyre,1608\nkneel,2,periclesprinceoftyre,1608\nMight,2,periclesprinceoftyre,1608\ntitle,2,periclesprinceoftyre,1608\nlatter,2,periclesprinceoftyre,1608\nlength,2,periclesprinceoftyre,1608\nhence,2,periclesprinceoftyre,1608\nstead,2,periclesprinceoftyre,1608\nhates,2,periclesprinceoftyre,1608\nbold,2,periclesprinceoftyre,1608\nturned,2,periclesprinceoftyre,1608\nsooth,2,periclesprinceoftyre,1608\ndispleasure,2,periclesprinceoftyre,1608\nminding,2,periclesprinceoftyre,1608\nvoice,2,periclesprinceoftyre,1608\ndoubts,2,periclesprinceoftyre,1608\ndesist,2,periclesprinceoftyre,1608\nrule,2,periclesprinceoftyre,1608\nwash,2,periclesprinceoftyre,1608\nmatter,2,periclesprinceoftyre,1608\nThere's,2,periclesprinceoftyre,1608\nbook,2,periclesprinceoftyre,1608\nbright,2,periclesprinceoftyre,1608\nspoke,2,periclesprinceoftyre,1608\nwayward,2,periclesprinceoftyre,1608\npraises,2,periclesprinceoftyre,1608\ntraining,2,periclesprinceoftyre,1608\nburning,2,periclesprinceoftyre,1608\nmortality,2,periclesprinceoftyre,1608\nrusty,2,periclesprinceoftyre,1608\ncrack,2,periclesprinceoftyre,1608\nflattery,2,periclesprinceoftyre,1608\nscarce,2,periclesprinceoftyre,1608\nneither,2,periclesprinceoftyre,1608\nblows,2,periclesprinceoftyre,1608\nCERIMON's,2,periclesprinceoftyre,1608\nknowing,2,periclesprinceoftyre,1608\nThose,2,periclesprinceoftyre,1608\nhopes,2,periclesprinceoftyre,1608\nfates,2,periclesprinceoftyre,1608\nNature,2,periclesprinceoftyre,1608\nunless,2,periclesprinceoftyre,1608\nin't,2,periclesprinceoftyre,1608\nsings,2,periclesprinceoftyre,1608\nhie,2,periclesprinceoftyre,1608\nchanged,2,periclesprinceoftyre,1608\nhit,2,periclesprinceoftyre,1608\nHa,2,periclesprinceoftyre,1608\nHo,2,periclesprinceoftyre,1608\nmeant,2,periclesprinceoftyre,1608\nfortune's,2,periclesprinceoftyre,1608\nquick,2,periclesprinceoftyre,1608\nease,2,periclesprinceoftyre,1608\nindenture,2,periclesprinceoftyre,1608\nshipwreck,2,periclesprinceoftyre,1608\nwither'd,2,periclesprinceoftyre,1608\nnourishment,2,periclesprinceoftyre,1608\npast,2,periclesprinceoftyre,1608\nHas,2,periclesprinceoftyre,1608\nmortally,2,periclesprinceoftyre,1608\npox,2,periclesprinceoftyre,1608\npor,2,periclesprinceoftyre,1608\nheads,2,periclesprinceoftyre,1608\npriests,2,periclesprinceoftyre,1608\niniquity,2,periclesprinceoftyre,1608\nmoons,2,periclesprinceoftyre,1608\nhills,2,periclesprinceoftyre,1608\nbend,2,periclesprinceoftyre,1608\npreserved,2,periclesprinceoftyre,1608\nbelief,2,periclesprinceoftyre,1608\nbehind,2,periclesprinceoftyre,1608\nsuffer'd,2,periclesprinceoftyre,1608\n'Twould,2,periclesprinceoftyre,1608\nPrithee,2,periclesprinceoftyre,1608\ngot,2,periclesprinceoftyre,1608\nbent,2,periclesprinceoftyre,1608\npeople,2,periclesprinceoftyre,1608\nafore,2,periclesprinceoftyre,1608\nsuddenly,2,periclesprinceoftyre,1608\ndespise,2,periclesprinceoftyre,1608\nsilk,2,periclesprinceoftyre,1608\ntedious,2,periclesprinceoftyre,1608\ncurse,2,periclesprinceoftyre,1608\namongst,2,periclesprinceoftyre,1608\ngown,2,periclesprinceoftyre,1608\nenterprise,2,periclesprinceoftyre,1608\nsink,2,periclesprinceoftyre,1608\npicture,2,periclesprinceoftyre,1608\n'Twas,2,periclesprinceoftyre,1608\nbeds,2,periclesprinceoftyre,1608\nWrench,2,periclesprinceoftyre,1608\ngrace's,2,periclesprinceoftyre,1608\nnorth,2,periclesprinceoftyre,1608\ncrowns,2,periclesprinceoftyre,1608\nHow's,2,periclesprinceoftyre,1608\nbegin,2,periclesprinceoftyre,1608\nsail,2,periclesprinceoftyre,1608\nvoyage,2,periclesprinceoftyre,1608\nTraitor,2,periclesprinceoftyre,1608\ngift,2,periclesprinceoftyre,1608\naid,2,periclesprinceoftyre,1608\nburial,2,periclesprinceoftyre,1608\nHere's,2,periclesprinceoftyre,1608\nbattery,2,periclesprinceoftyre,1608\nstood,2,periclesprinceoftyre,1608\nsafe,2,periclesprinceoftyre,1608\nMaking,2,periclesprinceoftyre,1608\nrecovered,2,periclesprinceoftyre,1608\ndeal,2,periclesprinceoftyre,1608\nseeing,2,periclesprinceoftyre,1608\nlikely,2,periclesprinceoftyre,1608\nnobleman,2,periclesprinceoftyre,1608\ntouch'd,2,periclesprinceoftyre,1608\nhouses,2,periclesprinceoftyre,1608\nFishermen,2,periclesprinceoftyre,1608\nmanner,2,periclesprinceoftyre,1608\ncrosses,2,periclesprinceoftyre,1608\nMaster,2,periclesprinceoftyre,1608\nask'd,2,periclesprinceoftyre,1608\nboard,2,periclesprinceoftyre,1608\nattending,2,periclesprinceoftyre,1608\nsmall,2,periclesprinceoftyre,1608\nregion,2,periclesprinceoftyre,1608\nDeliver'd,2,periclesprinceoftyre,1608\nLive,2,periclesprinceoftyre,1608\nReads,2,periclesprinceoftyre,1608\nscholar,2,periclesprinceoftyre,1608\nlook'st,2,periclesprinceoftyre,1608\nTook,2,periclesprinceoftyre,1608\nage,2,periclesprinceoftyre,1608\nvalue,2,periclesprinceoftyre,1608\nhadst,2,periclesprinceoftyre,1608\nloud,2,periclesprinceoftyre,1608\nmoon,2,periclesprinceoftyre,1608\nadd,2,periclesprinceoftyre,1608\nbeholding,2,periclesprinceoftyre,1608\nho,2,periclesprinceoftyre,1608\nspeak'st,2,periclesprinceoftyre,1608\nsemblance,2,periclesprinceoftyre,1608\nlest,2,periclesprinceoftyre,1608\nadventurous,2,periclesprinceoftyre,1608\nforgot,2,periclesprinceoftyre,1608\nBecause,2,periclesprinceoftyre,1608\nreasons,2,periclesprinceoftyre,1608\nspeaks,2,periclesprinceoftyre,1608\nround,2,periclesprinceoftyre,1608\nkingly,2,periclesprinceoftyre,1608\nknit,2,periclesprinceoftyre,1608\ninfirmities,2,periclesprinceoftyre,1608\nCall,2,periclesprinceoftyre,1608\npale,2,periclesprinceoftyre,1608\nnation,2,periclesprinceoftyre,1608\nMore,2,periclesprinceoftyre,1608\nEscanes,2,periclesprinceoftyre,1608\nreach,2,periclesprinceoftyre,1608\ndeny,2,periclesprinceoftyre,1608\nfour,2,periclesprinceoftyre,1608\ndrawn,2,periclesprinceoftyre,1608\nwhether,2,periclesprinceoftyre,1608\nexpect,2,periclesprinceoftyre,1608\nprepare,2,periclesprinceoftyre,1608\npair,2,periclesprinceoftyre,1608\nHush,2,periclesprinceoftyre,1608\nspit,2,periclesprinceoftyre,1608\npoint,2,periclesprinceoftyre,1608\nbosom,2,periclesprinceoftyre,1608\nalive,2,periclesprinceoftyre,1608\nshot,2,periclesprinceoftyre,1608\nfishes,2,periclesprinceoftyre,1608\nchastity,2,periclesprinceoftyre,1608\nfood,2,periclesprinceoftyre,1608\ncourses,2,periclesprinceoftyre,1608\ngirl,2,periclesprinceoftyre,1608\nmayst,2,periclesprinceoftyre,1608\nsecret,2,periclesprinceoftyre,1608\nbeggars,2,periclesprinceoftyre,1608\nbought,2,periclesprinceoftyre,1608\nright,2,periclesprinceoftyre,1608\nundone,2,periclesprinceoftyre,1608\ntouch,2,periclesprinceoftyre,1608\njudgment,2,periclesprinceoftyre,1608\njustify,2,periclesprinceoftyre,1608\nguest,2,periclesprinceoftyre,1608\nspoken,2,periclesprinceoftyre,1608\nsuperfluous,2,periclesprinceoftyre,1608\nheight,2,periclesprinceoftyre,1608\nShould,2,periclesprinceoftyre,1608\njustice,2,periclesprinceoftyre,1608\ndistant,2,periclesprinceoftyre,1608\neducation,2,periclesprinceoftyre,1608\ngarments,2,periclesprinceoftyre,1608\nsyllable,2,periclesprinceoftyre,1608\nVirtue,2,periclesprinceoftyre,1608\npeers,2,periclesprinceoftyre,1608\ntourney,2,periclesprinceoftyre,1608\nhoney,2,periclesprinceoftyre,1608\nrose,2,periclesprinceoftyre,1608\nneedle,2,periclesprinceoftyre,1608\ncouldst,2,periclesprinceoftyre,1608\nnote,2,periclesprinceoftyre,1608\nthinks,2,periclesprinceoftyre,1608\nlodgings,2,periclesprinceoftyre,1608\nenvy,2,periclesprinceoftyre,1608\nmarks,2,periclesprinceoftyre,1608\nrare,2,periclesprinceoftyre,1608\ncountless,2,periclesprinceoftyre,1608\nbelow,2,periclesprinceoftyre,1608\nReverend,2,periclesprinceoftyre,1608\nchildbed,2,periclesprinceoftyre,1608\nentertainment,2,periclesprinceoftyre,1608\nspread,2,periclesprinceoftyre,1608\nestate,2,periclesprinceoftyre,1608\npleaseth,2,periclesprinceoftyre,1608\nours,2,periclesprinceoftyre,1608\ntenor,2,periclesprinceoftyre,1608\nkneels,2,periclesprinceoftyre,1608\ntravels,2,periclesprinceoftyre,1608\nslain,2,periclesprinceoftyre,1608\nSoft,2,periclesprinceoftyre,1608\ncounsellor,2,periclesprinceoftyre,1608\nmisery,2,periclesprinceoftyre,1608\nmouth,2,periclesprinceoftyre,1608\nfreely,2,periclesprinceoftyre,1608\ngraceful,2,periclesprinceoftyre,1608\ndoors,2,periclesprinceoftyre,1608\nother's,2,periclesprinceoftyre,1608\ntowards,2,periclesprinceoftyre,1608\nsacrifice,2,periclesprinceoftyre,1608\narrived,2,periclesprinceoftyre,1608\nqualities,2,periclesprinceoftyre,1608\nprize,2,periclesprinceoftyre,1608\nfoolish,2,periclesprinceoftyre,1608\nbloods,2,periclesprinceoftyre,1608\nCould,2,periclesprinceoftyre,1608\ndearest,2,periclesprinceoftyre,1608\nI'ld,2,periclesprinceoftyre,1608\nquench,2,periclesprinceoftyre,1608\nbecause,2,periclesprinceoftyre,1608\nstarved,2,periclesprinceoftyre,1608\nvision,2,periclesprinceoftyre,1608\ncraves,2,periclesprinceoftyre,1608\nmountain,2,periclesprinceoftyre,1608\nhigher,2,periclesprinceoftyre,1608\nmarvel,2,periclesprinceoftyre,1608\ncasket,2,periclesprinceoftyre,1608\ntrouble,2,periclesprinceoftyre,1608\nmistress',2,periclesprinceoftyre,1608\nwrath,2,periclesprinceoftyre,1608\nliving,2,periclesprinceoftyre,1608\nlouder,2,periclesprinceoftyre,1608\nbequeath,2,periclesprinceoftyre,1608\nclose,2,periclesprinceoftyre,1608\nopinion,2,periclesprinceoftyre,1608\nflies,2,periclesprinceoftyre,1608\nsake,2,periclesprinceoftyre,1608\npurchase,2,periclesprinceoftyre,1608\ntwelvemonth,2,periclesprinceoftyre,1608\nfive,2,periclesprinceoftyre,1608\nmessage,2,periclesprinceoftyre,1608\nprovoke,2,periclesprinceoftyre,1608\nstomach,2,periclesprinceoftyre,1608\nbread,2,periclesprinceoftyre,1608\nsays,2,periclesprinceoftyre,1608\nwoes,2,periclesprinceoftyre,1608\nring,2,periclesprinceoftyre,1608\nthird,2,periclesprinceoftyre,1608\nprotect,2,periclesprinceoftyre,1608\nSure,2,periclesprinceoftyre,1608\nLucina,2,periclesprinceoftyre,1608\nripe,2,periclesprinceoftyre,1608\nGower,2,periclesprinceoftyre,1608\ncrown'd,2,periclesprinceoftyre,1608\nThus,2,periclesprinceoftyre,1608\ndecreed,2,periclesprinceoftyre,1608\ndust,2,periclesprinceoftyre,1608\ncalled,2,periclesprinceoftyre,1608\n'The,2,periclesprinceoftyre,1608\nbetween,2,periclesprinceoftyre,1608\nintent,2,periclesprinceoftyre,1608\nthreatens,2,periclesprinceoftyre,1608\npride,2,periclesprinceoftyre,1608\nPrinces,2,periclesprinceoftyre,1608\nsplit,2,periclesprinceoftyre,1608\nbounty,2,periclesprinceoftyre,1608\nhair,2,periclesprinceoftyre,1608\nGreece,2,periclesprinceoftyre,1608\nwatery,2,periclesprinceoftyre,1608\nearthly,2,periclesprinceoftyre,1608\npoison,2,periclesprinceoftyre,1608\nwreath,2,periclesprinceoftyre,1608\nlistening,2,periclesprinceoftyre,1608\ncoffer,2,periclesprinceoftyre,1608\nanger,2,periclesprinceoftyre,1608\nbitumed,2,periclesprinceoftyre,1608\nwomb,2,periclesprinceoftyre,1608\ndumb,2,periclesprinceoftyre,1608\nlust,2,periclesprinceoftyre,1608\nwondrous,2,periclesprinceoftyre,1608\ndull,2,periclesprinceoftyre,1608\nwaste,2,periclesprinceoftyre,1608\ngifts,2,periclesprinceoftyre,1608\ncompare,2,periclesprinceoftyre,1608\nsails,2,periclesprinceoftyre,1608\ngrieve,2,periclesprinceoftyre,1608\nhunger,2,periclesprinceoftyre,1608\ndurst,2,periclesprinceoftyre,1608\nperfections,2,periclesprinceoftyre,1608\nwept,2,periclesprinceoftyre,1608\ngiving,2,periclesprinceoftyre,1608\ndiamonds,2,periclesprinceoftyre,1608\nThat's,2,periclesprinceoftyre,1608\ncares,2,periclesprinceoftyre,1608\nfame,2,periclesprinceoftyre,1608\nmisfortune,2,periclesprinceoftyre,1608\nwoeful,2,periclesprinceoftyre,1608\npleased,2,periclesprinceoftyre,1608\nwork,2,periclesprinceoftyre,1608\nthrew,2,periclesprinceoftyre,1608\nperfect,2,periclesprinceoftyre,1608\npassion,2,periclesprinceoftyre,1608\nlists,2,periclesprinceoftyre,1608\nfill,2,periclesprinceoftyre,1608\nmarried,2,periclesprinceoftyre,1608\nperceive,2,periclesprinceoftyre,1608\npatient,2,periclesprinceoftyre,1608\nscholars,2,periclesprinceoftyre,1608\nwaves,2,periclesprinceoftyre,1608\nhour,2,periclesprinceoftyre,1608\nmeaning,2,periclesprinceoftyre,1608\npublic,2,periclesprinceoftyre,1608\nlarge,2,periclesprinceoftyre,1608\nnamed,2,periclesprinceoftyre,1608\nWelcome,2,periclesprinceoftyre,1608\nlights,2,periclesprinceoftyre,1608\ngallant,2,periclesprinceoftyre,1608\ncup,2,periclesprinceoftyre,1608\notherwise,2,periclesprinceoftyre,1608\ncarry,2,periclesprinceoftyre,1608\nreproof,2,periclesprinceoftyre,1608\nholds,2,periclesprinceoftyre,1608\nswears,2,periclesprinceoftyre,1608\nquit,2,periclesprinceoftyre,1608\nshort,2,periclesprinceoftyre,1608\nNone,2,periclesprinceoftyre,1608\nvirginity,2,periclesprinceoftyre,1608\ngreet,2,periclesprinceoftyre,1608\nhollow,2,periclesprinceoftyre,1608\nAlthough,2,periclesprinceoftyre,1608\nspices,2,periclesprinceoftyre,1608\npresents,2,periclesprinceoftyre,1608\nstreets,2,periclesprinceoftyre,1608\nboxes,2,periclesprinceoftyre,1608\nprovision,2,periclesprinceoftyre,1608\nbawd,2,periclesprinceoftyre,1608\nhairs,2,periclesprinceoftyre,1608\nfourteen,2,periclesprinceoftyre,1608\nalong,2,periclesprinceoftyre,1608\ncommission,2,periclesprinceoftyre,1608\nalone,2,periclesprinceoftyre,1608\nMarina's,2,periclesprinceoftyre,1608\nJuno,2,periclesprinceoftyre,1608\nendowments,2,periclesprinceoftyre,1608\nlow,2,periclesprinceoftyre,1608\ndelightful,2,periclesprinceoftyre,1608\ndrunk,2,periclesprinceoftyre,1608\nfaithfulness,2,periclesprinceoftyre,1608\nothers',2,periclesprinceoftyre,1608\nResolve,2,periclesprinceoftyre,1608\ncorn,2,periclesprinceoftyre,1608\ntraitor,2,periclesprinceoftyre,1608\nsacred,2,periclesprinceoftyre,1608\nheavenly,2,periclesprinceoftyre,1608\n'twill,2,periclesprinceoftyre,1608\ntree,2,periclesprinceoftyre,1608\nbriefly,2,periclesprinceoftyre,1608\nKnow,2,periclesprinceoftyre,1608\ntherein,2,periclesprinceoftyre,1608\nThrough,2,periclesprinceoftyre,1608\nentreat,2,periclesprinceoftyre,1608\nhuge,2,periclesprinceoftyre,1608\nsuffice,2,periclesprinceoftyre,1608\nbeheld,2,periclesprinceoftyre,1608\nself,2,periclesprinceoftyre,1608\npavilion,2,periclesprinceoftyre,1608\nNeither,2,periclesprinceoftyre,1608\nblast,2,periclesprinceoftyre,1608\ntriumphs,2,periclesprinceoftyre,1608\nbags,2,periclesprinceoftyre,1608\ntriumph,2,periclesprinceoftyre,1608\nprincipal,2,periclesprinceoftyre,1608\nNothing,2,periclesprinceoftyre,1608\nimagination,2,periclesprinceoftyre,1608\nclouds,2,periclesprinceoftyre,1608\nspirits,2,periclesprinceoftyre,1608\ndistressed,2,periclesprinceoftyre,1608\nspite,2,periclesprinceoftyre,1608\nseldom,2,periclesprinceoftyre,1608\ndread,2,periclesprinceoftyre,1608\nabuse,2,periclesprinceoftyre,1608\nladies,2,periclesprinceoftyre,1608\nravished,2,periclesprinceoftyre,1608\nfled,2,periclesprinceoftyre,1608\neleven,2,periclesprinceoftyre,1608\nharmony,2,periclesprinceoftyre,1608\nKNIGHTS,2,periclesprinceoftyre,1608\nE'er,2,periclesprinceoftyre,1608\nthither,2,periclesprinceoftyre,1608\ngets,2,periclesprinceoftyre,1608\ngoing,2,periclesprinceoftyre,1608\nspring,2,periclesprinceoftyre,1608\nwitness,2,periclesprinceoftyre,1608\nrespect,2,periclesprinceoftyre,1608\nharsh,2,periclesprinceoftyre,1608\nframe,2,periclesprinceoftyre,1608\ndue,2,periclesprinceoftyre,1608\nensues,2,periclesprinceoftyre,1608\nmiseries,2,periclesprinceoftyre,1608\ntop,2,periclesprinceoftyre,1608\nWishing,2,periclesprinceoftyre,1608\nswallowed,2,periclesprinceoftyre,1608\nreverend,2,periclesprinceoftyre,1608\nmonths,2,periclesprinceoftyre,1608\nBring,2,periclesprinceoftyre,1608\nUntil,2,periclesprinceoftyre,1608\nprinces',2,periclesprinceoftyre,1608\nregent,2,periclesprinceoftyre,1608\nbehold,2,periclesprinceoftyre,1608\nTake,2,periclesprinceoftyre,1608\nobedient,2,periclesprinceoftyre,1608\ngreatness,2,periclesprinceoftyre,1608\npirates,2,periclesprinceoftyre,1608\ndrown'd,2,periclesprinceoftyre,1608\nFair,2,periclesprinceoftyre,1608\njustly,2,periclesprinceoftyre,1608\nsay'd,2,periclesprinceoftyre,1608\nforbear,2,periclesprinceoftyre,1608\nrepair,2,periclesprinceoftyre,1608\nhangman,2,periclesprinceoftyre,1608\nthrong'd,2,periclesprinceoftyre,1608\ndin,2,periclesprinceoftyre,1608\norder,2,periclesprinceoftyre,1608\nenemy,2,periclesprinceoftyre,1608\nexeunt,2,periclesprinceoftyre,1608\nsummer,2,periclesprinceoftyre,1608\ntold,3,periclesprinceoftyre,1608\nspeech,3,periclesprinceoftyre,1608\nwicked,3,periclesprinceoftyre,1608\nday's,3,periclesprinceoftyre,1608\nNever,3,periclesprinceoftyre,1608\nTell,3,periclesprinceoftyre,1608\nchest,3,periclesprinceoftyre,1608\nprosperous,3,periclesprinceoftyre,1608\nwithal,3,periclesprinceoftyre,1608\ncalls,3,periclesprinceoftyre,1608\ntruth,3,periclesprinceoftyre,1608\npleasures,3,periclesprinceoftyre,1608\nworks,3,periclesprinceoftyre,1608\njoys,3,periclesprinceoftyre,1608\ncheeks,3,periclesprinceoftyre,1608\nearly,3,periclesprinceoftyre,1608\ncharge,3,periclesprinceoftyre,1608\nconscience,3,periclesprinceoftyre,1608\ndraw,3,periclesprinceoftyre,1608\nrelieve,3,periclesprinceoftyre,1608\nsaw,3,periclesprinceoftyre,1608\nresolve,3,periclesprinceoftyre,1608\nheat,3,periclesprinceoftyre,1608\ngolden,3,periclesprinceoftyre,1608\nriches,3,periclesprinceoftyre,1608\nwait,3,periclesprinceoftyre,1608\nblack,3,periclesprinceoftyre,1608\nview,3,periclesprinceoftyre,1608\nsung,3,periclesprinceoftyre,1608\nGet,3,periclesprinceoftyre,1608\nagainst,3,periclesprinceoftyre,1608\nwalk,3,periclesprinceoftyre,1608\nvirtuous,3,periclesprinceoftyre,1608\nslaughter,3,periclesprinceoftyre,1608\nWalk,3,periclesprinceoftyre,1608\nsworn,3,periclesprinceoftyre,1608\nTheir,3,periclesprinceoftyre,1608\nlivery,3,periclesprinceoftyre,1608\nsecond,3,periclesprinceoftyre,1608\nourselves,3,periclesprinceoftyre,1608\nworst,3,periclesprinceoftyre,1608\nThere,3,periclesprinceoftyre,1608\nkill'd,3,periclesprinceoftyre,1608\nbride,3,periclesprinceoftyre,1608\ncease,3,periclesprinceoftyre,1608\npunish,3,periclesprinceoftyre,1608\ngrow,3,periclesprinceoftyre,1608\nmirth,3,periclesprinceoftyre,1608\nknees,3,periclesprinceoftyre,1608\nwise,3,periclesprinceoftyre,1608\ncustom,3,periclesprinceoftyre,1608\nthrown,3,periclesprinceoftyre,1608\nsucceed,3,periclesprinceoftyre,1608\nsense,3,periclesprinceoftyre,1608\nwars,3,periclesprinceoftyre,1608\nmeat,3,periclesprinceoftyre,1608\ngoddess,3,periclesprinceoftyre,1608\nknowledge,3,periclesprinceoftyre,1608\nlife's,3,periclesprinceoftyre,1608\nstir,3,periclesprinceoftyre,1608\nHold,3,periclesprinceoftyre,1608\nWhat's,3,periclesprinceoftyre,1608\noffend,3,periclesprinceoftyre,1608\npatience,3,periclesprinceoftyre,1608\ngovern,3,periclesprinceoftyre,1608\nkings,3,periclesprinceoftyre,1608\nkept,3,periclesprinceoftyre,1608\nstay,3,periclesprinceoftyre,1608\nwisdom,3,periclesprinceoftyre,1608\nbless,3,periclesprinceoftyre,1608\nquiet,3,periclesprinceoftyre,1608\nobey,3,periclesprinceoftyre,1608\nsought,3,periclesprinceoftyre,1608\ngave,3,periclesprinceoftyre,1608\ncoffin,3,periclesprinceoftyre,1608\naltar,3,periclesprinceoftyre,1608\nyon,3,periclesprinceoftyre,1608\njewel,3,periclesprinceoftyre,1608\ntwice,3,periclesprinceoftyre,1608\ntravel,3,periclesprinceoftyre,1608\nused,3,periclesprinceoftyre,1608\nGod,3,periclesprinceoftyre,1608\nstorm,3,periclesprinceoftyre,1608\ngovernment,3,periclesprinceoftyre,1608\ndeep,3,periclesprinceoftyre,1608\nbreast,3,periclesprinceoftyre,1608\ntongues,3,periclesprinceoftyre,1608\nUnless,3,periclesprinceoftyre,1608\ndwell,3,periclesprinceoftyre,1608\nBesides,3,periclesprinceoftyre,1608\nhusband,3,periclesprinceoftyre,1608\nYon,3,periclesprinceoftyre,1608\nNeptune's,3,periclesprinceoftyre,1608\nmove,3,periclesprinceoftyre,1608\nnecessity,3,periclesprinceoftyre,1608\ntrain,3,periclesprinceoftyre,1608\nloves,3,periclesprinceoftyre,1608\nYes,3,periclesprinceoftyre,1608\nresolved,3,periclesprinceoftyre,1608\nless,3,periclesprinceoftyre,1608\nspend,3,periclesprinceoftyre,1608\nlose,3,periclesprinceoftyre,1608\nact,3,periclesprinceoftyre,1608\nchoice,3,periclesprinceoftyre,1608\noutward,3,periclesprinceoftyre,1608\nBrought,3,periclesprinceoftyre,1608\nrepeat,3,periclesprinceoftyre,1608\nhang,3,periclesprinceoftyre,1608\nshun,3,periclesprinceoftyre,1608\nLady,3,periclesprinceoftyre,1608\nmighty,3,periclesprinceoftyre,1608\npraise,3,periclesprinceoftyre,1608\nShe's,3,periclesprinceoftyre,1608\narm,3,periclesprinceoftyre,1608\npain,3,periclesprinceoftyre,1608\nmoney,3,periclesprinceoftyre,1608\nfool,3,periclesprinceoftyre,1608\nputs,3,periclesprinceoftyre,1608\narmour,3,periclesprinceoftyre,1608\nThan,3,periclesprinceoftyre,1608\nHark,3,periclesprinceoftyre,1608\nfed,3,periclesprinceoftyre,1608\nSHOW,3,periclesprinceoftyre,1608\nHath,3,periclesprinceoftyre,1608\nInto,3,periclesprinceoftyre,1608\nDUMB,3,periclesprinceoftyre,1608\nMadam,3,periclesprinceoftyre,1608\nwater,3,periclesprinceoftyre,1608\naction,3,periclesprinceoftyre,1608\nPeace,3,periclesprinceoftyre,1608\nSit,3,periclesprinceoftyre,1608\nseveral,3,periclesprinceoftyre,1608\npowers,3,periclesprinceoftyre,1608\nplaced,3,periclesprinceoftyre,1608\nyours,3,periclesprinceoftyre,1608\nmourn,3,periclesprinceoftyre,1608\nSome,3,periclesprinceoftyre,1608\nexpired,3,periclesprinceoftyre,1608\nmild,3,periclesprinceoftyre,1608\nstrict,3,periclesprinceoftyre,1608\nMakes,3,periclesprinceoftyre,1608\nPhiloten,3,periclesprinceoftyre,1608\npresently,3,periclesprinceoftyre,1608\ndream,3,periclesprinceoftyre,1608\nmark,3,periclesprinceoftyre,1608\nlet's,3,periclesprinceoftyre,1608\nbillow,3,periclesprinceoftyre,1608\nfree,3,periclesprinceoftyre,1608\nBeing,3,periclesprinceoftyre,1608\nsayest,3,periclesprinceoftyre,1608\ndesires,3,periclesprinceoftyre,1608\nones,3,periclesprinceoftyre,1608\nbreed,3,periclesprinceoftyre,1608\nsame,3,periclesprinceoftyre,1608\nrenown,3,periclesprinceoftyre,1608\nwin,3,periclesprinceoftyre,1608\noft,3,periclesprinceoftyre,1608\nwhy,3,periclesprinceoftyre,1608\nbreak,3,periclesprinceoftyre,1608\nfetch,3,periclesprinceoftyre,1608\nhappiness,3,periclesprinceoftyre,1608\nstanding,3,periclesprinceoftyre,1608\nyou're,3,periclesprinceoftyre,1608\nsave,3,periclesprinceoftyre,1608\nmaidenhead,3,periclesprinceoftyre,1608\nwar,3,periclesprinceoftyre,1608\ndriven,3,periclesprinceoftyre,1608\noath,3,periclesprinceoftyre,1608\nthemselves,3,periclesprinceoftyre,1608\nserve,3,periclesprinceoftyre,1608\ncoming,3,periclesprinceoftyre,1608\nnext,3,periclesprinceoftyre,1608\nbells,3,periclesprinceoftyre,1608\ntakes,3,periclesprinceoftyre,1608\ntaken,3,periclesprinceoftyre,1608\nconsent,3,periclesprinceoftyre,1608\nwaters,3,periclesprinceoftyre,1608\nangry,3,periclesprinceoftyre,1608\nwent,3,periclesprinceoftyre,1608\nmotto,3,periclesprinceoftyre,1608\ncried,3,periclesprinceoftyre,1608\nground,3,periclesprinceoftyre,1608\ndesert,3,periclesprinceoftyre,1608\nworm,3,periclesprinceoftyre,1608\noverboard,3,periclesprinceoftyre,1608\nminute,3,periclesprinceoftyre,1608\nlordship,3,periclesprinceoftyre,1608\nthunder,3,periclesprinceoftyre,1608\nshown,3,periclesprinceoftyre,1608\nUnto,3,periclesprinceoftyre,1608\nherself,3,periclesprinceoftyre,1608\npractise,3,periclesprinceoftyre,1608\nbird,3,periclesprinceoftyre,1608\nkiss,3,periclesprinceoftyre,1608\nlaw,3,periclesprinceoftyre,1608\nman's,3,periclesprinceoftyre,1608\nthousand,3,periclesprinceoftyre,1608\nconvey,3,periclesprinceoftyre,1608\ngreen,3,periclesprinceoftyre,1608\ndangerous,3,periclesprinceoftyre,1608\nlives,3,periclesprinceoftyre,1608\nWhere's,3,periclesprinceoftyre,1608\nprithee,3,periclesprinceoftyre,1608\nswear,3,periclesprinceoftyre,1608\nkingdom,3,periclesprinceoftyre,1608\ngoodness,3,periclesprinceoftyre,1608\neither,3,periclesprinceoftyre,1608\nlook'd,3,periclesprinceoftyre,1608\ntells,3,periclesprinceoftyre,1608\nsent,3,periclesprinceoftyre,1608\ncold,3,periclesprinceoftyre,1608\ngoes,3,periclesprinceoftyre,1608\nendured,3,periclesprinceoftyre,1608\nslumber,3,periclesprinceoftyre,1608\nqueen's,3,periclesprinceoftyre,1608\nleast,3,periclesprinceoftyre,1608\ncareful,3,periclesprinceoftyre,1608\nreward,3,periclesprinceoftyre,1608\ndoing,3,periclesprinceoftyre,1608\nBefore,3,periclesprinceoftyre,1608\nlips,3,periclesprinceoftyre,1608\ncredit,3,periclesprinceoftyre,1608\nlate,3,periclesprinceoftyre,1608\nsilver,3,periclesprinceoftyre,1608\nexpense,3,periclesprinceoftyre,1608\nattend,3,periclesprinceoftyre,1608\nprincely,3,periclesprinceoftyre,1608\nhonour's,3,periclesprinceoftyre,1608\nfollow,3,periclesprinceoftyre,1608\nhe'll,3,periclesprinceoftyre,1608\ncross,3,periclesprinceoftyre,1608\nawake,3,periclesprinceoftyre,1608\nprincess,3,periclesprinceoftyre,1608\nundertake,3,periclesprinceoftyre,1608\nwouldst,3,periclesprinceoftyre,1608\ne'er,3,periclesprinceoftyre,1608\nsharp,3,periclesprinceoftyre,1608\nwomen,3,periclesprinceoftyre,1608\nprofession,4,periclesprinceoftyre,1608\no'er,4,periclesprinceoftyre,1608\nresist,4,periclesprinceoftyre,1608\nheir,4,periclesprinceoftyre,1608\nAlas,4,periclesprinceoftyre,1608\nhaste,4,periclesprinceoftyre,1608\nwhile,4,periclesprinceoftyre,1608\nsight,4,periclesprinceoftyre,1608\nhonourable,4,periclesprinceoftyre,1608\nappear,4,periclesprinceoftyre,1608\nsoul,4,periclesprinceoftyre,1608\nWhom,4,periclesprinceoftyre,1608\nreign,4,periclesprinceoftyre,1608\nWhose,4,periclesprinceoftyre,1608\ndance,4,periclesprinceoftyre,1608\nGive,4,periclesprinceoftyre,1608\nJove,4,periclesprinceoftyre,1608\nglass,4,periclesprinceoftyre,1608\nsomething,4,periclesprinceoftyre,1608\nbound,4,periclesprinceoftyre,1608\nbody,4,periclesprinceoftyre,1608\nset,4,periclesprinceoftyre,1608\nshe'll,4,periclesprinceoftyre,1608\ndeliver,4,periclesprinceoftyre,1608\nSuch,4,periclesprinceoftyre,1608\nwinds,4,periclesprinceoftyre,1608\nLysimachus,4,periclesprinceoftyre,1608\nWas,4,periclesprinceoftyre,1608\nworse,4,periclesprinceoftyre,1608\nwrong,4,periclesprinceoftyre,1608\nheavens,4,periclesprinceoftyre,1608\ncommon,4,periclesprinceoftyre,1608\nactions,4,periclesprinceoftyre,1608\nwhite,4,periclesprinceoftyre,1608\nabout,4,periclesprinceoftyre,1608\nsun,4,periclesprinceoftyre,1608\ncompanion,4,periclesprinceoftyre,1608\nabove,4,periclesprinceoftyre,1608\nfeed,4,periclesprinceoftyre,1608\nPHILEMON,4,periclesprinceoftyre,1608\nOne,4,periclesprinceoftyre,1608\nknow'st,4,periclesprinceoftyre,1608\nmurder,4,periclesprinceoftyre,1608\nparts,4,periclesprinceoftyre,1608\nfairest,4,periclesprinceoftyre,1608\nside,4,periclesprinceoftyre,1608\nchamber,4,periclesprinceoftyre,1608\nmelancholy,4,periclesprinceoftyre,1608\npay,4,periclesprinceoftyre,1608\nflowers,4,periclesprinceoftyre,1608\nmeans,4,periclesprinceoftyre,1608\nwhole,4,periclesprinceoftyre,1608\nHad,4,periclesprinceoftyre,1608\nprove,4,periclesprinceoftyre,1608\nMarshal,4,periclesprinceoftyre,1608\nfarewell,4,periclesprinceoftyre,1608\nWhither,4,periclesprinceoftyre,1608\nexcellent,4,periclesprinceoftyre,1608\ndeck,4,periclesprinceoftyre,1608\nlend,4,periclesprinceoftyre,1608\nburied,4,periclesprinceoftyre,1608\ncommend,4,periclesprinceoftyre,1608\ncrave,4,periclesprinceoftyre,1608\nloss,4,periclesprinceoftyre,1608\nDiana's,4,periclesprinceoftyre,1608\nappears,4,periclesprinceoftyre,1608\nfoul,4,periclesprinceoftyre,1608\ndelight,4,periclesprinceoftyre,1608\ncreatures,4,periclesprinceoftyre,1608\nfresh,4,periclesprinceoftyre,1608\nmonument,4,periclesprinceoftyre,1608\nthanks,4,periclesprinceoftyre,1608\nnet,4,periclesprinceoftyre,1608\nchange,4,periclesprinceoftyre,1608\nDIANA,4,periclesprinceoftyre,1608\nreport,4,periclesprinceoftyre,1608\nalmost,4,periclesprinceoftyre,1608\nbears,4,periclesprinceoftyre,1608\nyou'll,4,periclesprinceoftyre,1608\nperform,4,periclesprinceoftyre,1608\nawhile,4,periclesprinceoftyre,1608\ngeneral,4,periclesprinceoftyre,1608\ndevice,4,periclesprinceoftyre,1608\nmortal,4,periclesprinceoftyre,1608\nshield,4,periclesprinceoftyre,1608\ncourage,4,periclesprinceoftyre,1608\nlabour,4,periclesprinceoftyre,1608\nfish,4,periclesprinceoftyre,1608\nfather's,4,periclesprinceoftyre,1608\nnumber,4,periclesprinceoftyre,1608\nMade,4,periclesprinceoftyre,1608\nletters,4,periclesprinceoftyre,1608\nwed,4,periclesprinceoftyre,1608\ntaste,4,periclesprinceoftyre,1608\nfits,4,periclesprinceoftyre,1608\nheavy,4,periclesprinceoftyre,1608\nreceive,4,periclesprinceoftyre,1608\nrage,4,periclesprinceoftyre,1608\ncursed,4,periclesprinceoftyre,1608\nweeping,4,periclesprinceoftyre,1608\nMake,4,periclesprinceoftyre,1608\nfly,4,periclesprinceoftyre,1608\ndo't,4,periclesprinceoftyre,1608\nfit,4,periclesprinceoftyre,1608\nthey're,4,periclesprinceoftyre,1608\nprofit,4,periclesprinceoftyre,1608\ndepart,4,periclesprinceoftyre,1608\nlay,4,periclesprinceoftyre,1608\ngiven,4,periclesprinceoftyre,1608\nholy,4,periclesprinceoftyre,1608\nclear,4,periclesprinceoftyre,1608\nstrong,4,periclesprinceoftyre,1608\naught,4,periclesprinceoftyre,1608\npresence,4,periclesprinceoftyre,1608\ndefend,4,periclesprinceoftyre,1608\ncourtesy,4,periclesprinceoftyre,1608\ncry,4,periclesprinceoftyre,1608\nhours,4,periclesprinceoftyre,1608\nstored,4,periclesprinceoftyre,1608\nundo,4,periclesprinceoftyre,1608\ntogether,4,periclesprinceoftyre,1608\nlie,4,periclesprinceoftyre,1608\neat,4,periclesprinceoftyre,1608\nGreat,4,periclesprinceoftyre,1608\nphysic,4,periclesprinceoftyre,1608\non't,4,periclesprinceoftyre,1608\nvirtue,4,periclesprinceoftyre,1608\nbeauty,4,periclesprinceoftyre,1608\ncontent,4,periclesprinceoftyre,1608\nHe's,4,periclesprinceoftyre,1608\nbred,4,periclesprinceoftyre,1608\nprivate,4,periclesprinceoftyre,1608\nkill,4,periclesprinceoftyre,1608\nmarket,4,periclesprinceoftyre,1608\nNay,5,periclesprinceoftyre,1608\nfor't,5,periclesprinceoftyre,1608\nroyal,5,periclesprinceoftyre,1608\nvillain,5,periclesprinceoftyre,1608\nMust,5,periclesprinceoftyre,1608\nlies,5,periclesprinceoftyre,1608\nSailors,5,periclesprinceoftyre,1608\nbrothel,5,periclesprinceoftyre,1608\nyears,5,periclesprinceoftyre,1608\nsubjects,5,periclesprinceoftyre,1608\nteach,5,periclesprinceoftyre,1608\nfurther,5,periclesprinceoftyre,1608\nPirates,5,periclesprinceoftyre,1608\nyield,5,periclesprinceoftyre,1608\n't,5,periclesprinceoftyre,1608\nlooks,5,periclesprinceoftyre,1608\nAttendants,5,periclesprinceoftyre,1608\ndaughter's,5,periclesprinceoftyre,1608\nread,5,periclesprinceoftyre,1608\nThese,5,periclesprinceoftyre,1608\nseems,5,periclesprinceoftyre,1608\nwant,5,periclesprinceoftyre,1608\nfriend,5,periclesprinceoftyre,1608\nstop,5,periclesprinceoftyre,1608\nmean,5,periclesprinceoftyre,1608\nESCANES,5,periclesprinceoftyre,1608\naboard,5,periclesprinceoftyre,1608\ntherefore,5,periclesprinceoftyre,1608\nbad,5,periclesprinceoftyre,1608\ncreature,5,periclesprinceoftyre,1608\nGo,5,periclesprinceoftyre,1608\nbeg,5,periclesprinceoftyre,1608\nglorious,5,periclesprinceoftyre,1608\nincest,5,periclesprinceoftyre,1608\nHelicane,5,periclesprinceoftyre,1608\ngod,5,periclesprinceoftyre,1608\ngrief,5,periclesprinceoftyre,1608\ndost,5,periclesprinceoftyre,1608\npreserve,5,periclesprinceoftyre,1608\nlonger,5,periclesprinceoftyre,1608\ntongue,5,periclesprinceoftyre,1608\nsing,5,periclesprinceoftyre,1608\ni',5,periclesprinceoftyre,1608\nstory,5,periclesprinceoftyre,1608\nvirgin,5,periclesprinceoftyre,1608\njewels,5,periclesprinceoftyre,1608\nbear,5,periclesprinceoftyre,1608\nThaliard,5,periclesprinceoftyre,1608\nloved,5,periclesprinceoftyre,1608\nready,5,periclesprinceoftyre,1608\nhark,5,periclesprinceoftyre,1608\ntrade,5,periclesprinceoftyre,1608\nhand,5,periclesprinceoftyre,1608\ncity,5,periclesprinceoftyre,1608\nrough,5,periclesprinceoftyre,1608\nTyrus,5,periclesprinceoftyre,1608\nye,5,periclesprinceoftyre,1608\nequal,5,periclesprinceoftyre,1608\nindeed,5,periclesprinceoftyre,1608\nlords,5,periclesprinceoftyre,1608\nwonder,5,periclesprinceoftyre,1608\neye,5,periclesprinceoftyre,1608\nstrike,5,periclesprinceoftyre,1608\nshores,5,periclesprinceoftyre,1608\nDoth,5,periclesprinceoftyre,1608\nSee,5,periclesprinceoftyre,1608\nLook,5,periclesprinceoftyre,1608\nstars,5,periclesprinceoftyre,1608\ntempest,5,periclesprinceoftyre,1608\nWe'll,5,periclesprinceoftyre,1608\nsorrow,5,periclesprinceoftyre,1608\nonly,5,periclesprinceoftyre,1608\nCan,5,periclesprinceoftyre,1608\nrise,5,periclesprinceoftyre,1608\ndanger,5,periclesprinceoftyre,1608\nwhat's,5,periclesprinceoftyre,1608\nHail,5,periclesprinceoftyre,1608\nreason,5,periclesprinceoftyre,1608\nhold,5,periclesprinceoftyre,1608\nwilt,5,periclesprinceoftyre,1608\ncut,5,periclesprinceoftyre,1608\nprayers,5,periclesprinceoftyre,1608\nPrince,5,periclesprinceoftyre,1608\nbabe,5,periclesprinceoftyre,1608\nseek,5,periclesprinceoftyre,1608\nPatience,5,periclesprinceoftyre,1608\nPray,5,periclesprinceoftyre,1608\nmother's,5,periclesprinceoftyre,1608\nsleep,5,periclesprinceoftyre,1608\nstraight,5,periclesprinceoftyre,1608\nMessenger,5,periclesprinceoftyre,1608\nglory,5,periclesprinceoftyre,1608\nmarriage,5,periclesprinceoftyre,1608\nMarry,5,periclesprinceoftyre,1608\nhurt,5,periclesprinceoftyre,1608\nstrange,5,periclesprinceoftyre,1608\nhonour'd,5,periclesprinceoftyre,1608\nshalt,5,periclesprinceoftyre,1608\nshame,5,periclesprinceoftyre,1608\nkind,5,periclesprinceoftyre,1608\ncommand,5,periclesprinceoftyre,1608\ncharity,5,periclesprinceoftyre,1608\ncrown,5,periclesprinceoftyre,1608\nV,6,periclesprinceoftyre,1608\npity,6,periclesprinceoftyre,1608\nUpon,6,periclesprinceoftyre,1608\nyourself,6,periclesprinceoftyre,1608\nsure,6,periclesprinceoftyre,1608\nTyrian,6,periclesprinceoftyre,1608\nshe's,6,periclesprinceoftyre,1608\nstands,6,periclesprinceoftyre,1608\nnothing,6,periclesprinceoftyre,1608\nwarrant,6,periclesprinceoftyre,1608\nson,6,periclesprinceoftyre,1608\nmother,6,periclesprinceoftyre,1608\noffence,6,periclesprinceoftyre,1608\npasses,6,periclesprinceoftyre,1608\nDiana,6,periclesprinceoftyre,1608\nThough,6,periclesprinceoftyre,1608\ndied,6,periclesprinceoftyre,1608\ncoast,6,periclesprinceoftyre,1608\nelse,6,periclesprinceoftyre,1608\nDaughter,6,periclesprinceoftyre,1608\neach,6,periclesprinceoftyre,1608\nitself,6,periclesprinceoftyre,1608\nbed,6,periclesprinceoftyre,1608\npleasure,6,periclesprinceoftyre,1608\nbid,6,periclesprinceoftyre,1608\nplay,6,periclesprinceoftyre,1608\nears,6,periclesprinceoftyre,1608\nweep,6,periclesprinceoftyre,1608\ngoodly,6,periclesprinceoftyre,1608\njust,6,periclesprinceoftyre,1608\ndeed,6,periclesprinceoftyre,1608\ngain,6,periclesprinceoftyre,1608\nfeast,6,periclesprinceoftyre,1608\no',6,periclesprinceoftyre,1608\ncourse,6,periclesprinceoftyre,1608\nask,6,periclesprinceoftyre,1608\nship,6,periclesprinceoftyre,1608\nfar,6,periclesprinceoftyre,1608\ngriefs,6,periclesprinceoftyre,1608\nfaith,6,periclesprinceoftyre,1608\nyoung,6,periclesprinceoftyre,1608\nend,6,periclesprinceoftyre,1608\nneed,6,periclesprinceoftyre,1608\nsearch,6,periclesprinceoftyre,1608\nonce,6,periclesprinceoftyre,1608\ngrave,6,periclesprinceoftyre,1608\nstand,6,periclesprinceoftyre,1608\nhappy,6,periclesprinceoftyre,1608\nold,6,periclesprinceoftyre,1608\nthree,6,periclesprinceoftyre,1608\nrich,6,periclesprinceoftyre,1608\ngentleman,6,periclesprinceoftyre,1608\nhonest,6,periclesprinceoftyre,1608\nCerimon,6,periclesprinceoftyre,1608\nuse,6,periclesprinceoftyre,1608\nseen,6,periclesprinceoftyre,1608\nvessel,6,periclesprinceoftyre,1608\nsweet,6,periclesprinceoftyre,1608\nDian,6,periclesprinceoftyre,1608\nsound,6,periclesprinceoftyre,1608\nmadam,6,periclesprinceoftyre,1608\npurpose,6,periclesprinceoftyre,1608\nSince,6,periclesprinceoftyre,1608\ncertain,6,periclesprinceoftyre,1608\npower,6,periclesprinceoftyre,1608\ndays,7,periclesprinceoftyre,1608\nhelp,7,periclesprinceoftyre,1608\njoy,7,periclesprinceoftyre,1608\nfriends,7,periclesprinceoftyre,1608\nLeonine,7,periclesprinceoftyre,1608\nbirth,7,periclesprinceoftyre,1608\nhead,7,periclesprinceoftyre,1608\nanother,7,periclesprinceoftyre,1608\nNor,7,periclesprinceoftyre,1608\nNot,7,periclesprinceoftyre,1608\nbarge,7,periclesprinceoftyre,1608\ncause,7,periclesprinceoftyre,1608\nServant,7,periclesprinceoftyre,1608\nDionyza,7,periclesprinceoftyre,1608\npiece,7,periclesprinceoftyre,1608\nturn,7,periclesprinceoftyre,1608\nfellow,7,periclesprinceoftyre,1608\nking's,7,periclesprinceoftyre,1608\n'Faith,7,periclesprinceoftyre,1608\nflesh,7,periclesprinceoftyre,1608\nAn,7,periclesprinceoftyre,1608\ncanst,7,periclesprinceoftyre,1608\nOn,7,periclesprinceoftyre,1608\ntemple,7,periclesprinceoftyre,1608\nGood,7,periclesprinceoftyre,1608\nkindness,7,periclesprinceoftyre,1608\nput,7,periclesprinceoftyre,1608\nbreath,7,periclesprinceoftyre,1608\nservant,7,periclesprinceoftyre,1608\ndear,7,periclesprinceoftyre,1608\nlong,7,periclesprinceoftyre,1608\nhands,7,periclesprinceoftyre,1608\nthyself,7,periclesprinceoftyre,1608\nMost,7,periclesprinceoftyre,1608\npart,7,periclesprinceoftyre,1608\nwelcome,7,periclesprinceoftyre,1608\ncall'd,7,periclesprinceoftyre,1608\nopen,7,periclesprinceoftyre,1608\npresent,7,periclesprinceoftyre,1608\nstranger,7,periclesprinceoftyre,1608\nhaving,7,periclesprinceoftyre,1608\nhere's,7,periclesprinceoftyre,1608\nHave,7,periclesprinceoftyre,1608\ngentle,7,periclesprinceoftyre,1608\ninto,7,periclesprinceoftyre,1608\nTherefore,7,periclesprinceoftyre,1608\nere,7,periclesprinceoftyre,1608\nthere's,7,periclesprinceoftyre,1608\nThey,7,periclesprinceoftyre,1608\nstate,7,periclesprinceoftyre,1608\nWere,7,periclesprinceoftyre,1608\nget,7,periclesprinceoftyre,1608\nnear,7,periclesprinceoftyre,1608\nmorrow,7,periclesprinceoftyre,1608\nbeseech,7,periclesprinceoftyre,1608\nheard,7,periclesprinceoftyre,1608\nbelieve,7,periclesprinceoftyre,1608\nfound,7,periclesprinceoftyre,1608\nPirate,7,periclesprinceoftyre,1608\nShall,7,periclesprinceoftyre,1608\nfall,7,periclesprinceoftyre,1608\npalace,7,periclesprinceoftyre,1608\nshows,7,periclesprinceoftyre,1608\ncomfort,7,periclesprinceoftyre,1608\nhope,7,periclesprinceoftyre,1608\nnurse,7,periclesprinceoftyre,1608\near,7,periclesprinceoftyre,1608\nMay,7,periclesprinceoftyre,1608\nland,7,periclesprinceoftyre,1608\nwithout,7,periclesprinceoftyre,1608\nwoman,7,periclesprinceoftyre,1608\nBoult,7,periclesprinceoftyre,1608\nships,7,periclesprinceoftyre,1608\nfortunes,7,periclesprinceoftyre,1608\ncountry,8,periclesprinceoftyre,1608\ntears,8,periclesprinceoftyre,1608\nfull,8,periclesprinceoftyre,1608\nenough,8,periclesprinceoftyre,1608\nPentapolis,8,periclesprinceoftyre,1608\nafter,8,periclesprinceoftyre,1608\nair,8,periclesprinceoftyre,1608\ndoor,8,periclesprinceoftyre,1608\nlost,8,periclesprinceoftyre,1608\nill,8,periclesprinceoftyre,1608\nhalf,8,periclesprinceoftyre,1608\nforth,8,periclesprinceoftyre,1608\nthrough,8,periclesprinceoftyre,1608\nhigh,8,periclesprinceoftyre,1608\nmind,8,periclesprinceoftyre,1608\nknown,8,periclesprinceoftyre,1608\nwoe,8,periclesprinceoftyre,1608\nthine,8,periclesprinceoftyre,1608\nEven,8,periclesprinceoftyre,1608\nglad,8,periclesprinceoftyre,1608\nletter,8,periclesprinceoftyre,1608\ngentlemen,8,periclesprinceoftyre,1608\ngives,8,periclesprinceoftyre,1608\nseas,8,periclesprinceoftyre,1608\nparentage,8,periclesprinceoftyre,1608\nnature,8,periclesprinceoftyre,1608\npeace,9,periclesprinceoftyre,1608\nWould,9,periclesprinceoftyre,1608\nKnights,9,periclesprinceoftyre,1608\nsit,9,periclesprinceoftyre,1608\nsin,9,periclesprinceoftyre,1608\nlight,9,periclesprinceoftyre,1608\nwithin,9,periclesprinceoftyre,1608\ndoubt,9,periclesprinceoftyre,1608\nOur,9,periclesprinceoftyre,1608\nprinces,9,periclesprinceoftyre,1608\nwind,9,periclesprinceoftyre,1608\nknights,9,periclesprinceoftyre,1608\npretty,9,periclesprinceoftyre,1608\nDo,9,periclesprinceoftyre,1608\nhe's,9,periclesprinceoftyre,1608\nHis,9,periclesprinceoftyre,1608\nBe,9,periclesprinceoftyre,1608\nblood,9,periclesprinceoftyre,1608\ndown,9,periclesprinceoftyre,1608\nLike,9,periclesprinceoftyre,1608\ndoes,9,periclesprinceoftyre,1608\nthat's,9,periclesprinceoftyre,1608\nearth,9,periclesprinceoftyre,1608\nAre,9,periclesprinceoftyre,1608\nvery,9,periclesprinceoftyre,1608\nmany,9,periclesprinceoftyre,1608\nblow,9,periclesprinceoftyre,1608\nover,9,periclesprinceoftyre,1608\ncould,9,periclesprinceoftyre,1608\ncourt,9,periclesprinceoftyre,1608\nfortune,9,periclesprinceoftyre,1608\nword,9,periclesprinceoftyre,1608\nfind,9,periclesprinceoftyre,1608\nSimonides,9,periclesprinceoftyre,1608\nLet,9,periclesprinceoftyre,1608\nLychorida,9,periclesprinceoftyre,1608\nwe'll,9,periclesprinceoftyre,1608\nseem,9,periclesprinceoftyre,1608\nGentlemen,9,periclesprinceoftyre,1608\nreturn,9,periclesprinceoftyre,1608\nremember,9,periclesprinceoftyre,1608\nThy,9,periclesprinceoftyre,1608\nhimself,9,periclesprinceoftyre,1608\ncare,10,periclesprinceoftyre,1608\nways,10,periclesprinceoftyre,1608\ndesire,10,periclesprinceoftyre,1608\nIII,10,periclesprinceoftyre,1608\nAt,10,periclesprinceoftyre,1608\nsince,10,periclesprinceoftyre,1608\nLYCHORIDA,10,periclesprinceoftyre,1608\ngold,10,periclesprinceoftyre,1608\nwhose,10,periclesprinceoftyre,1608\ngone,10,periclesprinceoftyre,1608\ngrace,10,periclesprinceoftyre,1608\ngovernor,10,periclesprinceoftyre,1608\nthough,10,periclesprinceoftyre,1608\nhast,10,periclesprinceoftyre,1608\nKing,10,periclesprinceoftyre,1608\nmaid,10,periclesprinceoftyre,1608\nmyself,10,periclesprinceoftyre,1608\nAll,10,periclesprinceoftyre,1608\nCleon,10,periclesprinceoftyre,1608\noff,10,periclesprinceoftyre,1608\nheart,10,periclesprinceoftyre,1608\narms,10,periclesprinceoftyre,1608\ntill,10,periclesprinceoftyre,1608\nhome,10,periclesprinceoftyre,1608\nthank,10,periclesprinceoftyre,1608\nhither,10,periclesprinceoftyre,1608\nthoughts,10,periclesprinceoftyre,1608\nlast,10,periclesprinceoftyre,1608\nDid,10,periclesprinceoftyre,1608\ndie,10,periclesprinceoftyre,1608\nWill,11,periclesprinceoftyre,1608\nthought,11,periclesprinceoftyre,1608\nevery,11,periclesprinceoftyre,1608\ncast,11,periclesprinceoftyre,1608\ncall,11,periclesprinceoftyre,1608\naway,11,periclesprinceoftyre,1608\nborn,11,periclesprinceoftyre,1608\nAy,11,periclesprinceoftyre,1608\nmusic,11,periclesprinceoftyre,1608\nII,11,periclesprinceoftyre,1608\nIV,11,periclesprinceoftyre,1608\nRe,11,periclesprinceoftyre,1608\nleft,11,periclesprinceoftyre,1608\nthose,11,periclesprinceoftyre,1608\nshow,11,periclesprinceoftyre,1608\nEphesus,11,periclesprinceoftyre,1608\nLords,11,periclesprinceoftyre,1608\nfire,11,periclesprinceoftyre,1608\nstill,11,periclesprinceoftyre,1608\nThaisa,11,periclesprinceoftyre,1608\nown,11,periclesprinceoftyre,1608\nface,11,periclesprinceoftyre,1608\nwhence,11,periclesprinceoftyre,1608\nmakes,11,periclesprinceoftyre,1608\nmuch,12,periclesprinceoftyre,1608\npray,12,periclesprinceoftyre,1608\nworth,12,periclesprinceoftyre,1608\nfear,12,periclesprinceoftyre,1608\nHer,12,periclesprinceoftyre,1608\nenter,12,periclesprinceoftyre,1608\nsaid,12,periclesprinceoftyre,1608\nnoble,12,periclesprinceoftyre,1608\nAntioch,12,periclesprinceoftyre,1608\nroom,12,periclesprinceoftyre,1608\nFrom,12,periclesprinceoftyre,1608\nTHALIARD,12,periclesprinceoftyre,1608\nThen,12,periclesprinceoftyre,1608\nknight,12,periclesprinceoftyre,1608\nTill,12,periclesprinceoftyre,1608\nplease,12,periclesprinceoftyre,1608\nwife,12,periclesprinceoftyre,1608\nfirst,12,periclesprinceoftyre,1608\ntrue,12,periclesprinceoftyre,1608\ncannot,12,periclesprinceoftyre,1608\nmistress,13,periclesprinceoftyre,1608\ncame,13,periclesprinceoftyre,1608\nbetter,13,periclesprinceoftyre,1608\nbring,13,periclesprinceoftyre,1608\nwish,13,periclesprinceoftyre,1608\nbest,13,periclesprinceoftyre,1608\nOr,13,periclesprinceoftyre,1608\nbrought,13,periclesprinceoftyre,1608\nlittle,13,periclesprinceoftyre,1608\nbefore,13,periclesprinceoftyre,1608\nthing,13,periclesprinceoftyre,1608\neven,13,periclesprinceoftyre,1608\nne'er,13,periclesprinceoftyre,1608\nthus,13,periclesprinceoftyre,1608\npoor,13,periclesprinceoftyre,1608\nKnight,13,periclesprinceoftyre,1608\nthe,525,periclesprinceoftyre,1608\nSailor,14,periclesprinceoftyre,1608\nHelicanus,14,periclesprinceoftyre,1608\ndoth,14,periclesprinceoftyre,1608\n'tis,14,periclesprinceoftyre,1608\nlook,14,periclesprinceoftyre,1608\nYet,14,periclesprinceoftyre,1608\nAntiochus,14,periclesprinceoftyre,1608\nnone,14,periclesprinceoftyre,1608\nagain,14,periclesprinceoftyre,1608\nway,14,periclesprinceoftyre,1608\nshore,14,periclesprinceoftyre,1608\nunto,14,periclesprinceoftyre,1608\ntwo,14,periclesprinceoftyre,1608\nworld,15,periclesprinceoftyre,1608\nAside,15,periclesprinceoftyre,1608\nrest,15,periclesprinceoftyre,1608\nhas,15,periclesprinceoftyre,1608\nkeep,15,periclesprinceoftyre,1608\nMytilene,15,periclesprinceoftyre,1608\ncomes,15,periclesprinceoftyre,1608\never,15,periclesprinceoftyre,1608\nday,15,periclesprinceoftyre,1608\nmaster,15,periclesprinceoftyre,1608\nlive,15,periclesprinceoftyre,1608\nother,15,periclesprinceoftyre,1608\nlady,15,periclesprinceoftyre,1608\ndeath,16,periclesprinceoftyre,1608\nname,16,periclesprinceoftyre,1608\nNo,16,periclesprinceoftyre,1608\nIs,16,periclesprinceoftyre,1608\nIt,16,periclesprinceoftyre,1608\nnight,16,periclesprinceoftyre,1608\nmost,16,periclesprinceoftyre,1608\nart,16,periclesprinceoftyre,1608\nwhere,16,periclesprinceoftyre,1608\nfair,16,periclesprinceoftyre,1608\nPandar,16,periclesprinceoftyre,1608\ntime,16,periclesprinceoftyre,1608\nqueen,16,periclesprinceoftyre,1608\nGOWER,16,periclesprinceoftyre,1608\nlet,16,periclesprinceoftyre,1608\nLEONINE,16,periclesprinceoftyre,1608\nbeing,16,periclesprinceoftyre,1608\nWhen,16,periclesprinceoftyre,1608\nmight,16,periclesprinceoftyre,1608\nboth,17,periclesprinceoftyre,1608\nprince,17,periclesprinceoftyre,1608\nspeak,17,periclesprinceoftyre,1608\nchild,17,periclesprinceoftyre,1608\nnor,17,periclesprinceoftyre,1608\nThird,17,periclesprinceoftyre,1608\ngreat,17,periclesprinceoftyre,1608\nhouse,17,periclesprinceoftyre,1608\nleave,17,periclesprinceoftyre,1608\nheaven,18,periclesprinceoftyre,1608\ngo,18,periclesprinceoftyre,1608\nmade,18,periclesprinceoftyre,1608\nSir,18,periclesprinceoftyre,1608\nWell,18,periclesprinceoftyre,1608\n'Tis,18,periclesprinceoftyre,1608\nout,18,periclesprinceoftyre,1608\nwhom,18,periclesprinceoftyre,1608\nANTIOCHUS,18,periclesprinceoftyre,1608\n',19,periclesprinceoftyre,1608\nhear,19,periclesprinceoftyre,1608\nSo,19,periclesprinceoftyre,1608\nany,19,periclesprinceoftyre,1608\ndone,19,periclesprinceoftyre,1608\nplace,19,periclesprinceoftyre,1608\nWhere,19,periclesprinceoftyre,1608\nIn,20,periclesprinceoftyre,1608\nNow,21,periclesprinceoftyre,1608\nthese,21,periclesprinceoftyre,1608\nBy,21,periclesprinceoftyre,1608\nwhen,21,periclesprinceoftyre,1608\nsome,22,periclesprinceoftyre,1608\nthen,22,periclesprinceoftyre,1608\ntell,22,periclesprinceoftyre,1608\nYour,22,periclesprinceoftyre,1608\nShe,22,periclesprinceoftyre,1608\nmine,22,periclesprinceoftyre,1608\nthink,22,periclesprinceoftyre,1608\neyes,22,periclesprinceoftyre,1608\nWhy,23,periclesprinceoftyre,1608\nWith,23,periclesprinceoftyre,1608\ndead,23,periclesprinceoftyre,1608\nhow,23,periclesprinceoftyre,1608\nTarsus,23,periclesprinceoftyre,1608\nGentleman,23,periclesprinceoftyre,1608\nfather,23,periclesprinceoftyre,1608\nSCENE,23,periclesprinceoftyre,1608\nhonour,24,periclesprinceoftyre,1608\nMarina,24,periclesprinceoftyre,1608\nthan,25,periclesprinceoftyre,1608\nHere,25,periclesprinceoftyre,1608\ntake,25,periclesprinceoftyre,1608\nExit,25,periclesprinceoftyre,1608\nHe,26,periclesprinceoftyre,1608\nExeunt,26,periclesprinceoftyre,1608\nlove,26,periclesprinceoftyre,1608\nlife,27,periclesprinceoftyre,1608\nsuch,27,periclesprinceoftyre,1608\nOf,27,periclesprinceoftyre,1608\nbeen,27,periclesprinceoftyre,1608\nACT,27,periclesprinceoftyre,1608\nThis,27,periclesprinceoftyre,1608\nDIONYZA,27,periclesprinceoftyre,1608\nsee,28,periclesprinceoftyre,1608\nCERIMON,28,periclesprinceoftyre,1608\nthere,28,periclesprinceoftyre,1608\nOF,28,periclesprinceoftyre,1608\nWhich,28,periclesprinceoftyre,1608\nan,28,periclesprinceoftyre,1608\nup,28,periclesprinceoftyre,1608\nshould,28,periclesprinceoftyre,1608\nTYRE,28,periclesprinceoftyre,1608\nThou,28,periclesprinceoftyre,1608\nPRINCE,28,periclesprinceoftyre,1608\nman,28,periclesprinceoftyre,1608\nsay,29,periclesprinceoftyre,1608\nWe,29,periclesprinceoftyre,1608\nwho,29,periclesprinceoftyre,1608\nCLEON,29,periclesprinceoftyre,1608\nnever,30,periclesprinceoftyre,1608\nYou,30,periclesprinceoftyre,1608\nHow,30,periclesprinceoftyre,1608\nTyre,30,periclesprinceoftyre,1608\ntoo,30,periclesprinceoftyre,1608\nCome,31,periclesprinceoftyre,1608\nhad,31,periclesprinceoftyre,1608\nAs,32,periclesprinceoftyre,1608\nknow,32,periclesprinceoftyre,1608\nhath,32,periclesprinceoftyre,1608\nmen,32,periclesprinceoftyre,1608\nwere,33,periclesprinceoftyre,1608\ndid,33,periclesprinceoftyre,1608\nking,33,periclesprinceoftyre,1608\nyet,34,periclesprinceoftyre,1608\nPericles,35,periclesprinceoftyre,1608\ngive,36,periclesprinceoftyre,1608\nhere,37,periclesprinceoftyre,1608\nsea,37,periclesprinceoftyre,1608\nFisherman,37,periclesprinceoftyre,1608\nLord,38,periclesprinceoftyre,1608\ncome,38,periclesprinceoftyre,1608\na,294,periclesprinceoftyre,1608\nmust,39,periclesprinceoftyre,1608\ndaughter,39,periclesprinceoftyre,1608\nMy,39,periclesprinceoftyre,1608\nIf,39,periclesprinceoftyre,1608\nam,39,periclesprinceoftyre,1608\nor,39,periclesprinceoftyre,1608\nWho,40,periclesprinceoftyre,1608\nSecond,40,periclesprinceoftyre,1608\nTHAISA,40,periclesprinceoftyre,1608\nmake,41,periclesprinceoftyre,1608\nnow,41,periclesprinceoftyre,1608\none,41,periclesprinceoftyre,1608\nmay,41,periclesprinceoftyre,1608\nupon,42,periclesprinceoftyre,1608\nlord,42,periclesprinceoftyre,1608\nmore,43,periclesprinceoftyre,1608\nwhich,44,periclesprinceoftyre,1608\nFor,44,periclesprinceoftyre,1608\nHELICANUS,44,periclesprinceoftyre,1608\nWhat,44,periclesprinceoftyre,1608\nwell,45,periclesprinceoftyre,1608\nI'll,46,periclesprinceoftyre,1608\ngods,46,periclesprinceoftyre,1608\nof,302,periclesprinceoftyre,1608\nBOULT,47,periclesprinceoftyre,1608\nus,47,periclesprinceoftyre,1608\nLYSIMACHUS,47,periclesprinceoftyre,1608\nO,48,periclesprinceoftyre,1608\nthem,48,periclesprinceoftyre,1608\ngood,48,periclesprinceoftyre,1608\ncan,48,periclesprinceoftyre,1608\nwas,48,periclesprinceoftyre,1608\nwould,48,periclesprinceoftyre,1608\nif,49,periclesprinceoftyre,1608\nBawd,49,periclesprinceoftyre,1608\nSIMONIDES,49,periclesprinceoftyre,1608\nno,50,periclesprinceoftyre,1608\nsir,51,periclesprinceoftyre,1608\nthey,51,periclesprinceoftyre,1608\ntheir,52,periclesprinceoftyre,1608\nthy,53,periclesprinceoftyre,1608\nFirst,54,periclesprinceoftyre,1608\nEnter,54,periclesprinceoftyre,1608\nfrom,54,periclesprinceoftyre,1608\non,55,periclesprinceoftyre,1608\nshall,57,periclesprinceoftyre,1608\nwhat,58,periclesprinceoftyre,1608\nlike,61,periclesprinceoftyre,1608\nthee,61,periclesprinceoftyre,1608\nThat,62,periclesprinceoftyre,1608\nyou,318,periclesprinceoftyre,1608\nBut,63,periclesprinceoftyre,1608\nwe,64,periclesprinceoftyre,1608\nA,65,periclesprinceoftyre,1608\nthou,69,periclesprinceoftyre,1608\nat,71,periclesprinceoftyre,1608\nshe,74,periclesprinceoftyre,1608\nby,76,periclesprinceoftyre,1608\nMARINA,77,periclesprinceoftyre,1608\nso,77,periclesprinceoftyre,1608\nour,78,periclesprinceoftyre,1608\nhim,80,periclesprinceoftyre,1608\nall,80,periclesprinceoftyre,1608\nare,81,periclesprinceoftyre,1608\ndo,83,periclesprinceoftyre,1608\nwill,86,periclesprinceoftyre,1608\nbut,89,periclesprinceoftyre,1608\nTo,90,periclesprinceoftyre,1608\nhe,93,periclesprinceoftyre,1608\nand,357,periclesprinceoftyre,1608\nas,102,periclesprinceoftyre,1608\nI,363,periclesprinceoftyre,1608\nThe,108,periclesprinceoftyre,1608\nhis,109,periclesprinceoftyre,1608\nthis,123,periclesprinceoftyre,1608\nbe,127,periclesprinceoftyre,1608\nis,130,periclesprinceoftyre,1608\nhave,131,periclesprinceoftyre,1608\nfor,133,periclesprinceoftyre,1608\nwith,136,periclesprinceoftyre,1608\nit,140,periclesprinceoftyre,1608\nher,143,periclesprinceoftyre,1608\nthat,144,periclesprinceoftyre,1608\nnot,146,periclesprinceoftyre,1608\nme,163,periclesprinceoftyre,1608\nAnd,166,periclesprinceoftyre,1608\nyour,174,periclesprinceoftyre,1608\nPERICLES,177,periclesprinceoftyre,1608\nto,434,periclesprinceoftyre,1608\nin,200,periclesprinceoftyre,1608\nmy,205,periclesprinceoftyre,1608\nfealty,1,twogentlemenofverona,1594\npeopled,1,twogentlemenofverona,1594\nplagues,1,twogentlemenofverona,1594\naugury,1,twogentlemenofverona,1594\ninterpeter,1,twogentlemenofverona,1594\nsilken,1,twogentlemenofverona,1594\n'You,1,twogentlemenofverona,1594\ndegenerate,1,twogentlemenofverona,1594\npossibly,1,twogentlemenofverona,1594\nregard,1,twogentlemenofverona,1594\no'er,1,twogentlemenofverona,1594\nunwelcome,1,twogentlemenofverona,1594\nquality,1,twogentlemenofverona,1594\nforbid,1,twogentlemenofverona,1594\ninstruments,1,twogentlemenofverona,1594\nB,1,twogentlemenofverona,1594\nC,1,twogentlemenofverona,1594\nadvised,1,twogentlemenofverona,1594\npuddings,1,twogentlemenofverona,1594\ngrey,1,twogentlemenofverona,1594\nSilvia',1,twogentlemenofverona,1594\nlamentable,1,twogentlemenofverona,1594\ninvisible,1,twogentlemenofverona,1594\nsmiles,1,twogentlemenofverona,1594\ndispraised,1,twogentlemenofverona,1594\npestilence,1,twogentlemenofverona,1594\nProud,1,twogentlemenofverona,1594\nfancy,1,twogentlemenofverona,1594\nValiant,1,twogentlemenofverona,1594\nthou'dst,1,twogentlemenofverona,1594\npretended,1,twogentlemenofverona,1594\nmilkmaid,1,twogentlemenofverona,1594\ndined,1,twogentlemenofverona,1594\ndarest,1,twogentlemenofverona,1594\nanthem,1,twogentlemenofverona,1594\nlamely,1,twogentlemenofverona,1594\nmotion,1,twogentlemenofverona,1594\nguilt,1,twogentlemenofverona,1594\nprotestations,1,twogentlemenofverona,1594\nAgent,1,twogentlemenofverona,1594\nHear,1,twogentlemenofverona,1594\nPity,1,twogentlemenofverona,1594\nchurlish,1,twogentlemenofverona,1594\ndouble,1,twogentlemenofverona,1594\nheir,1,twogentlemenofverona,1594\nOUTLAWS,1,twogentlemenofverona,1594\ninfamy,1,twogentlemenofverona,1594\ntruer,1,twogentlemenofverona,1594\nforswear,1,twogentlemenofverona,1594\npageants,1,twogentlemenofverona,1594\njolt,1,twogentlemenofverona,1594\nbusiness,1,twogentlemenofverona,1594\npossible,1,twogentlemenofverona,1594\nlament,1,twogentlemenofverona,1594\nhinder,1,twogentlemenofverona,1594\nwhiteness,1,twogentlemenofverona,1594\nspends,1,twogentlemenofverona,1594\nshapeless,1,twogentlemenofverona,1594\nshadowy,1,twogentlemenofverona,1594\nshadows,1,twogentlemenofverona,1594\nperuse,1,twogentlemenofverona,1594\ndine,1,twogentlemenofverona,1594\nrock,1,twogentlemenofverona,1594\n'away,1,twogentlemenofverona,1594\nHero's,1,twogentlemenofverona,1594\nclerkly,1,twogentlemenofverona,1594\nVillain,1,twogentlemenofverona,1594\nlongs,1,twogentlemenofverona,1594\nreasonless,1,twogentlemenofverona,1594\nzeal,1,twogentlemenofverona,1594\noutrun,1,twogentlemenofverona,1594\nbonds,1,twogentlemenofverona,1594\nrod,1,twogentlemenofverona,1594\nsuppose,1,twogentlemenofverona,1594\ncounterfeits,1,twogentlemenofverona,1594\nsteals,1,twogentlemenofverona,1594\nwestern,1,twogentlemenofverona,1594\nstopp'd,1,twogentlemenofverona,1594\nturmoil,1,twogentlemenofverona,1594\nBear,1,twogentlemenofverona,1594\nembark,1,twogentlemenofverona,1594\nmuse,1,twogentlemenofverona,1594\nWomen,1,twogentlemenofverona,1594\nwaxed,1,twogentlemenofverona,1594\neasily,1,twogentlemenofverona,1594\ntesty,1,twogentlemenofverona,1594\nwaxen,1,twogentlemenofverona,1594\nboys,1,twogentlemenofverona,1594\nendless,1,twogentlemenofverona,1594\npainter,1,twogentlemenofverona,1594\naimed,1,twogentlemenofverona,1594\nmelt,1,twogentlemenofverona,1594\ndire,1,twogentlemenofverona,1594\nwailing,1,twogentlemenofverona,1594\nWarrant,1,twogentlemenofverona,1594\ndespised,1,twogentlemenofverona,1594\ntruly,1,twogentlemenofverona,1594\nNan,1,twogentlemenofverona,1594\nsuppliant,1,twogentlemenofverona,1594\nMeaning,1,twogentlemenofverona,1594\nsisters,1,twogentlemenofverona,1594\nMuse,1,twogentlemenofverona,1594\nwrites,1,twogentlemenofverona,1594\nclothes,1,twogentlemenofverona,1594\nfinger,1,twogentlemenofverona,1594\nwreathe,1,twogentlemenofverona,1594\nvain,1,twogentlemenofverona,1594\nproceedings,1,twogentlemenofverona,1594\nspake,1,twogentlemenofverona,1594\nEspecially,1,twogentlemenofverona,1594\nBlack,1,twogentlemenofverona,1594\nrecourse,1,twogentlemenofverona,1594\nlearn'd,1,twogentlemenofverona,1594\nhearted,1,twogentlemenofverona,1594\nsteeple,1,twogentlemenofverona,1594\nlooked,1,twogentlemenofverona,1594\nnaked,1,twogentlemenofverona,1594\nunderstand,1,twogentlemenofverona,1594\narms',1,twogentlemenofverona,1594\nappear,1,twogentlemenofverona,1594\npraising,1,twogentlemenofverona,1594\ncave,1,twogentlemenofverona,1594\nmelodious,1,twogentlemenofverona,1594\nalthough,1,twogentlemenofverona,1594\nfury,1,twogentlemenofverona,1594\nsour,1,twogentlemenofverona,1594\npined,1,twogentlemenofverona,1594\nProvided,1,twogentlemenofverona,1594\nthou'lt,1,twogentlemenofverona,1594\nDispose,1,twogentlemenofverona,1594\nreformed,1,twogentlemenofverona,1594\npress,1,twogentlemenofverona,1594\nlieu,1,twogentlemenofverona,1594\nsort,1,twogentlemenofverona,1594\nlively,1,twogentlemenofverona,1594\nAssure,1,twogentlemenofverona,1594\nrail'd,1,twogentlemenofverona,1594\nworshipp'd,1,twogentlemenofverona,1594\n'noddy',1,twogentlemenofverona,1594\n'baa,1,twogentlemenofverona,1594\ntilts,1,twogentlemenofverona,1594\nGarden,1,twogentlemenofverona,1594\nlustily,1,twogentlemenofverona,1594\nenfranchised,1,twogentlemenofverona,1594\nnymph,1,twogentlemenofverona,1594\nWhom,1,twogentlemenofverona,1594\nWere't,1,twogentlemenofverona,1594\nJULlA,1,twogentlemenofverona,1594\nthicket,1,twogentlemenofverona,1594\ncheeks,1,twogentlemenofverona,1594\nunwilling,1,twogentlemenofverona,1594\nPERSONAE,1,twogentlemenofverona,1594\nweathercock,1,twogentlemenofverona,1594\nAlphonso,1,twogentlemenofverona,1594\ncloister,1,twogentlemenofverona,1594\nsaved,1,twogentlemenofverona,1594\nearly,1,twogentlemenofverona,1594\nrepulse,1,twogentlemenofverona,1594\ncate,1,twogentlemenofverona,1594\nconfirming,1,twogentlemenofverona,1594\ngarment,1,twogentlemenofverona,1594\nweepest,1,twogentlemenofverona,1594\nworser,1,twogentlemenofverona,1594\nValentinus,1,twogentlemenofverona,1594\nmercy,1,twogentlemenofverona,1594\nOver,1,twogentlemenofverona,1594\nstrength,1,twogentlemenofverona,1594\nperversely,1,twogentlemenofverona,1594\ngraces,1,twogentlemenofverona,1594\npractises,1,twogentlemenofverona,1594\nseven,1,twogentlemenofverona,1594\ndisdain,1,twogentlemenofverona,1594\nsons,1,twogentlemenofverona,1594\ngraced,1,twogentlemenofverona,1594\nsurfeit,1,twogentlemenofverona,1594\nthievery,1,twogentlemenofverona,1594\nSurvives,1,twogentlemenofverona,1594\nuniversities,1,twogentlemenofverona,1594\nprincipality,1,twogentlemenofverona,1594\nmischances,1,twogentlemenofverona,1594\nAfter,1,twogentlemenofverona,1594\nwander'd,1,twogentlemenofverona,1594\ndraw,1,twogentlemenofverona,1594\npins,1,twogentlemenofverona,1594\nsadly,1,twogentlemenofverona,1594\nfriend's,1,twogentlemenofverona,1594\ndrive,1,twogentlemenofverona,1594\nspies,1,twogentlemenofverona,1594\nwhirlwind,1,twogentlemenofverona,1594\nsole,1,twogentlemenofverona,1594\n'What,1,twogentlemenofverona,1594\nopposes,1,twogentlemenofverona,1594\nExcuse,1,twogentlemenofverona,1594\nsat,1,twogentlemenofverona,1594\nbearing,1,twogentlemenofverona,1594\nyears,1,twogentlemenofverona,1594\nmastership,1,twogentlemenofverona,1594\ndance,1,twogentlemenofverona,1594\nloiterer,1,twogentlemenofverona,1594\nstream,1,twogentlemenofverona,1594\ninhabit,1,twogentlemenofverona,1594\ngrows,1,twogentlemenofverona,1594\nhour's,1,twogentlemenofverona,1594\nJove,1,twogentlemenofverona,1594\ndisprove,1,twogentlemenofverona,1594\npilgrimage,1,twogentlemenofverona,1594\nconfounds,1,twogentlemenofverona,1594\ncrying,1,twogentlemenofverona,1594\nlime,1,twogentlemenofverona,1594\n'Friend,1,twogentlemenofverona,1594\nProvokes,1,twogentlemenofverona,1594\nPulling,1,twogentlemenofverona,1594\nbrother,1,twogentlemenofverona,1594\nbroker,1,twogentlemenofverona,1594\nobdurate,1,twogentlemenofverona,1594\nheap,1,twogentlemenofverona,1594\nnecessaries,1,twogentlemenofverona,1594\nsoho,1,twogentlemenofverona,1594\nworthies,1,twogentlemenofverona,1594\nspurns,1,twogentlemenofverona,1594\nhearing,1,twogentlemenofverona,1594\nsoften,1,twogentlemenofverona,1594\nNicholas,1,twogentlemenofverona,1594\ngolden,1,twogentlemenofverona,1594\nexcelling,1,twogentlemenofverona,1594\ntesterned,1,twogentlemenofverona,1594\nTarry,1,twogentlemenofverona,1594\nsixteen,1,twogentlemenofverona,1594\nbeseem,1,twogentlemenofverona,1594\nEthiope,1,twogentlemenofverona,1594\nchains,1,twogentlemenofverona,1594\nfools,1,twogentlemenofverona,1594\nteach,1,twogentlemenofverona,1594\nriches,1,twogentlemenofverona,1594\ntoys,1,twogentlemenofverona,1594\nNod,1,twogentlemenofverona,1594\nblessed,1,twogentlemenofverona,1594\nabode,1,twogentlemenofverona,1594\nvisit,1,twogentlemenofverona,1594\nlesser,1,twogentlemenofverona,1594\ncoldly,1,twogentlemenofverona,1594\npartner,1,twogentlemenofverona,1594\nsomething,1,twogentlemenofverona,1594\nasked,1,twogentlemenofverona,1594\nmoving,1,twogentlemenofverona,1594\noftentimes,1,twogentlemenofverona,1594\nGentle,1,twogentlemenofverona,1594\ncompanies,1,twogentlemenofverona,1594\nunholy,1,twogentlemenofverona,1594\nWin,1,twogentlemenofverona,1594\ntowns,1,twogentlemenofverona,1594\nimpress,1,twogentlemenofverona,1594\nview,1,twogentlemenofverona,1594\nPerchance,1,twogentlemenofverona,1594\ndiscovery,1,twogentlemenofverona,1594\nFellows,1,twogentlemenofverona,1594\ndeserve,1,twogentlemenofverona,1594\nshe's,1,twogentlemenofverona,1594\nTwenty,1,twogentlemenofverona,1594\nillumined,1,twogentlemenofverona,1594\nacted,1,twogentlemenofverona,1594\nFills,1,twogentlemenofverona,1594\nboat,1,twogentlemenofverona,1594\ncrusts,1,twogentlemenofverona,1594\nwilderness,1,twogentlemenofverona,1594\ndeeper,1,twogentlemenofverona,1594\nConfirm,1,twogentlemenofverona,1594\nbabble,1,twogentlemenofverona,1594\nimpossible,1,twogentlemenofverona,1594\naged,1,twogentlemenofverona,1594\n'Whip,1,twogentlemenofverona,1594\nrobbing,1,twogentlemenofverona,1594\nkey,1,twogentlemenofverona,1594\nagent,1,twogentlemenofverona,1594\nfingering,1,twogentlemenofverona,1594\nworthiest,1,twogentlemenofverona,1594\nbastard,1,twogentlemenofverona,1594\ndisclosed,1,twogentlemenofverona,1594\nwall,1,twogentlemenofverona,1594\nsew,1,twogentlemenofverona,1594\nvice,1,twogentlemenofverona,1594\nvirtuous,1,twogentlemenofverona,1594\nplural,1,twogentlemenofverona,1594\ndeceived,1,twogentlemenofverona,1594\n'Tell,1,twogentlemenofverona,1594\nwake,1,twogentlemenofverona,1594\nWrite,1,twogentlemenofverona,1594\ncatching,1,twogentlemenofverona,1594\nchronicled,1,twogentlemenofverona,1594\nscoured,1,twogentlemenofverona,1594\nshe'ld,1,twogentlemenofverona,1594\n'twas,1,twogentlemenofverona,1594\nwedding,1,twogentlemenofverona,1594\nbitterly,1,twogentlemenofverona,1594\nlaying,1,twogentlemenofverona,1594\nlions,1,twogentlemenofverona,1594\ngeese,1,twogentlemenofverona,1594\nancestry,1,twogentlemenofverona,1594\nconcert,1,twogentlemenofverona,1594\nspy,1,twogentlemenofverona,1594\nconcern,1,twogentlemenofverona,1594\nconfirmed,1,twogentlemenofverona,1594\nhelp'd,1,twogentlemenofverona,1594\nbetideth,1,twogentlemenofverona,1594\nlesson,1,twogentlemenofverona,1594\nHimself,1,twogentlemenofverona,1594\nWithdraw,1,twogentlemenofverona,1594\nbringing,1,twogentlemenofverona,1594\nerring,1,twogentlemenofverona,1594\nsworn,1,twogentlemenofverona,1594\nnourished,1,twogentlemenofverona,1594\nsubject,1,twogentlemenofverona,1594\ndeformity,1,twogentlemenofverona,1594\nlooking,1,twogentlemenofverona,1594\napparent,1,twogentlemenofverona,1594\nmelting,1,twogentlemenofverona,1594\nWas,1,twogentlemenofverona,1594\nWar,1,twogentlemenofverona,1594\nRecking,1,twogentlemenofverona,1594\nkindle,1,twogentlemenofverona,1594\nscour,1,twogentlemenofverona,1594\nattends,1,twogentlemenofverona,1594\n't,1,twogentlemenofverona,1594\nsues,1,twogentlemenofverona,1594\nacquainted,1,twogentlemenofverona,1594\ncause,1,twogentlemenofverona,1594\ndisgrace,1,twogentlemenofverona,1594\ndeeply,1,twogentlemenofverona,1594\nstudy,1,twogentlemenofverona,1594\nadversity,1,twogentlemenofverona,1594\ndeserts,1,twogentlemenofverona,1594\nsky,1,twogentlemenofverona,1594\nUnheedful,1,twogentlemenofverona,1594\nMusic,1,twogentlemenofverona,1594\nsadder,1,twogentlemenofverona,1594\nlambs,1,twogentlemenofverona,1594\ndoubt,1,twogentlemenofverona,1594\ndearth,1,twogentlemenofverona,1594\nUnkind,1,twogentlemenofverona,1594\nunreverend,1,twogentlemenofverona,1594\naffect,1,twogentlemenofverona,1594\nawful,1,twogentlemenofverona,1594\nsmaller,1,twogentlemenofverona,1594\ndaughter's,1,twogentlemenofverona,1594\nExperience,1,twogentlemenofverona,1594\nindifferent,1,twogentlemenofverona,1594\nexhibition,1,twogentlemenofverona,1594\n'kind,1,twogentlemenofverona,1594\nswelling,1,twogentlemenofverona,1594\nourselves,1,twogentlemenofverona,1594\nworst,1,twogentlemenofverona,1594\nesteem,1,twogentlemenofverona,1594\nvile,1,twogentlemenofverona,1594\nmerit,1,twogentlemenofverona,1594\nPeruse,1,twogentlemenofverona,1594\nsly,1,twogentlemenofverona,1594\nthrusts,1,twogentlemenofverona,1594\nfelt,1,twogentlemenofverona,1594\nguide,1,twogentlemenofverona,1594\nbreeches,1,twogentlemenofverona,1594\nfight,1,twogentlemenofverona,1594\nmusing,1,twogentlemenofverona,1594\nForswear,1,twogentlemenofverona,1594\nsnow,1,twogentlemenofverona,1594\nreceives,1,twogentlemenofverona,1594\nmurmur,1,twogentlemenofverona,1594\nconceit,1,twogentlemenofverona,1594\nfawning,1,twogentlemenofverona,1594\ngranting,1,twogentlemenofverona,1594\nOur,1,twogentlemenofverona,1594\nheal'd,1,twogentlemenofverona,1594\nchased,1,twogentlemenofverona,1594\nways,1,twogentlemenofverona,1594\nlumpish,1,twogentlemenofverona,1594\nrhyme,1,twogentlemenofverona,1594\ncommon,1,twogentlemenofverona,1594\nbore,1,twogentlemenofverona,1594\nrounder,1,twogentlemenofverona,1594\nloathes,1,twogentlemenofverona,1594\nrepentance,1,twogentlemenofverona,1594\ncivil,1,twogentlemenofverona,1594\nkill'd,1,twogentlemenofverona,1594\nabsence,1,twogentlemenofverona,1594\nWhereon,1,twogentlemenofverona,1594\nfalls,1,twogentlemenofverona,1594\nexceeding,1,twogentlemenofverona,1594\nWise,1,twogentlemenofverona,1594\nWish,1,twogentlemenofverona,1594\nencounter,1,twogentlemenofverona,1594\nruminate,1,twogentlemenofverona,1594\nloose,1,twogentlemenofverona,1594\ncherish,1,twogentlemenofverona,1594\ncommit,1,twogentlemenofverona,1594\ninstance,1,twogentlemenofverona,1594\nwilling,1,twogentlemenofverona,1594\nWherein,1,twogentlemenofverona,1594\nshelving,1,twogentlemenofverona,1594\nhumble,1,twogentlemenofverona,1594\nGentlewoman,1,twogentlemenofverona,1594\nbiding,1,twogentlemenofverona,1594\nsum,1,twogentlemenofverona,1594\nsup,1,twogentlemenofverona,1594\nparagon,1,twogentlemenofverona,1594\nilliterate,1,twogentlemenofverona,1594\nvanished,1,twogentlemenofverona,1594\ncomplete,1,twogentlemenofverona,1594\ncompanion,1,twogentlemenofverona,1594\nfearful,1,twogentlemenofverona,1594\nwatchers,1,twogentlemenofverona,1594\nfeel,1,twogentlemenofverona,1594\ncease,1,twogentlemenofverona,1594\nspeediest,1,twogentlemenofverona,1594\nfeet,1,twogentlemenofverona,1594\npromise,1,twogentlemenofverona,1594\ndescent,1,twogentlemenofverona,1594\npinfold,1,twogentlemenofverona,1594\nconceitless,1,twogentlemenofverona,1594\nrelish,1,twogentlemenofverona,1594\nsaucy,1,twogentlemenofverona,1594\nbrief,1,twogentlemenofverona,1594\nflourishing,1,twogentlemenofverona,1594\nBetideth,1,twogentlemenofverona,1594\ntarriance,1,twogentlemenofverona,1594\nconceal,1,twogentlemenofverona,1594\nwhisper,1,twogentlemenofverona,1594\nprotestation,1,twogentlemenofverona,1594\nspeaking,1,twogentlemenofverona,1594\nchoose,1,twogentlemenofverona,1594\nrude,1,twogentlemenofverona,1594\nprevent,1,twogentlemenofverona,1594\nBestow,1,twogentlemenofverona,1594\nstuff'd,1,twogentlemenofverona,1594\nsoldier,1,twogentlemenofverona,1594\nBanished,1,twogentlemenofverona,1594\nungovern'd,1,twogentlemenofverona,1594\nshrink,1,twogentlemenofverona,1594\ncavil,1,twogentlemenofverona,1594\nbechance,1,twogentlemenofverona,1594\nlament'st,1,twogentlemenofverona,1594\nservants',1,twogentlemenofverona,1594\nrend,1,twogentlemenofverona,1594\nmoment's,1,twogentlemenofverona,1594\ntender'd,1,twogentlemenofverona,1594\nleviathans,1,twogentlemenofverona,1594\nDare,1,twogentlemenofverona,1594\nStop,1,twogentlemenofverona,1594\nwand,1,twogentlemenofverona,1594\ndeploring,1,twogentlemenofverona,1594\nnight's,1,twogentlemenofverona,1594\nseems,1,twogentlemenofverona,1594\nrespective,1,twogentlemenofverona,1594\nenjoined,1,twogentlemenofverona,1594\nentertained,1,twogentlemenofverona,1594\ndearer,1,twogentlemenofverona,1594\nwipe,1,twogentlemenofverona,1594\nFriend,1,twogentlemenofverona,1594\nhalloing,1,twogentlemenofverona,1594\nhates,1,twogentlemenofverona,1594\nEntreated,1,twogentlemenofverona,1594\ndiet,1,twogentlemenofverona,1594\nwrongful,1,twogentlemenofverona,1594\nimmaculate,1,twogentlemenofverona,1594\ndied,1,twogentlemenofverona,1594\nDumb,1,twogentlemenofverona,1594\nimperious,1,twogentlemenofverona,1594\nresembleth,1,twogentlemenofverona,1594\nfroward,1,twogentlemenofverona,1594\ntravellers,1,twogentlemenofverona,1594\nsense,1,twogentlemenofverona,1594\nstaying,1,twogentlemenofverona,1594\nvictuals,1,twogentlemenofverona,1594\nmalady,1,twogentlemenofverona,1594\nstop,1,twogentlemenofverona,1594\nvoice,1,twogentlemenofverona,1594\nwars,1,twogentlemenofverona,1594\nstocks,1,twogentlemenofverona,1594\napproacheth,1,twogentlemenofverona,1594\ntimeless,1,twogentlemenofverona,1594\nwash,1,twogentlemenofverona,1594\nboot,1,twogentlemenofverona,1594\nThere's,1,twogentlemenofverona,1594\nruled,1,twogentlemenofverona,1594\ninhabits,1,twogentlemenofverona,1594\nshedding,1,twogentlemenofverona,1594\nboom,1,twogentlemenofverona,1594\ngentlewoman's,1,twogentlemenofverona,1594\nboon,1,twogentlemenofverona,1594\nheardest,1,twogentlemenofverona,1594\nbright,1,twogentlemenofverona,1594\npraised,1,twogentlemenofverona,1594\nparts,1,twogentlemenofverona,1594\nsojourned,1,twogentlemenofverona,1594\nspoke,1,twogentlemenofverona,1594\nRepair,1,twogentlemenofverona,1594\nwayward,1,twogentlemenofverona,1594\nWherewith,1,twogentlemenofverona,1594\nhungry,1,twogentlemenofverona,1594\neverlastingly,1,twogentlemenofverona,1594\nDescended,1,twogentlemenofverona,1594\nconditions,1,twogentlemenofverona,1594\nnephew,1,twogentlemenofverona,1594\npills,1,twogentlemenofverona,1594\nbig,1,twogentlemenofverona,1594\nwherefore,1,twogentlemenofverona,1594\nnail,1,twogentlemenofverona,1594\npreferr'd,1,twogentlemenofverona,1594\ngrievous,1,twogentlemenofverona,1594\nunadvised,1,twogentlemenofverona,1594\nstumble,1,twogentlemenofverona,1594\nlife's,1,twogentlemenofverona,1594\nverily,1,twogentlemenofverona,1594\nstir,1,twogentlemenofverona,1594\nkeys,1,twogentlemenofverona,1594\nsolicit,1,twogentlemenofverona,1594\nslaves,1,twogentlemenofverona,1594\nMoyses,1,twogentlemenofverona,1594\nburning,1,twogentlemenofverona,1594\nmanners,1,twogentlemenofverona,1594\nvisibly,1,twogentlemenofverona,1594\nmelancholy,1,twogentlemenofverona,1594\ncommended,1,twogentlemenofverona,1594\nhap,1,twogentlemenofverona,1594\nprecisely,1,twogentlemenofverona,1594\nunmellow'd,1,twogentlemenofverona,1594\nhat,1,twogentlemenofverona,1594\nPentecost,1,twogentlemenofverona,1594\nHome,1,twogentlemenofverona,1594\nsweeter,1,twogentlemenofverona,1594\nHoly,1,twogentlemenofverona,1594\nutter,1,twogentlemenofverona,1594\nsign,1,twogentlemenofverona,1594\ndelivering,1,twogentlemenofverona,1594\ndelights,1,twogentlemenofverona,1594\nexercise,1,twogentlemenofverona,1594\nflattery,1,twogentlemenofverona,1594\nAh,1,twogentlemenofverona,1594\nappeased,1,twogentlemenofverona,1594\nstubborn,1,twogentlemenofverona,1594\nRehearse,1,twogentlemenofverona,1594\nmovingly,1,twogentlemenofverona,1594\ndazzled,1,twogentlemenofverona,1594\nloitering,1,twogentlemenofverona,1594\ngovern,1,twogentlemenofverona,1594\ndeeds,1,twogentlemenofverona,1594\nThose,1,twogentlemenofverona,1594\nreason's,1,twogentlemenofverona,1594\nCounsel,1,twogentlemenofverona,1594\ndesperate,1,twogentlemenofverona,1594\nSovereign,1,twogentlemenofverona,1594\nHope,1,twogentlemenofverona,1594\ntwits,1,twogentlemenofverona,1594\nLo,1,twogentlemenofverona,1594\nprodigious,1,twogentlemenofverona,1594\nlands,1,twogentlemenofverona,1594\nStand,1,twogentlemenofverona,1594\nproof,1,twogentlemenofverona,1594\ncruel,1,twogentlemenofverona,1594\nsubscribe,1,twogentlemenofverona,1594\npities,1,twogentlemenofverona,1594\nstar,1,twogentlemenofverona,1594\nexceed,1,twogentlemenofverona,1594\nfantastic,1,twogentlemenofverona,1594\nreasoning,1,twogentlemenofverona,1594\nOh,1,twogentlemenofverona,1594\nbraggardism,1,twogentlemenofverona,1594\nfinds,1,twogentlemenofverona,1594\nchanged,1,twogentlemenofverona,1594\nparable,1,twogentlemenofverona,1594\nHa,1,twogentlemenofverona,1594\nbeg,1,twogentlemenofverona,1594\nvanquished,1,twogentlemenofverona,1594\nsovereignty,1,twogentlemenofverona,1594\nteam,1,twogentlemenofverona,1594\nunruly,1,twogentlemenofverona,1594\nblest,1,twogentlemenofverona,1594\nwhole,1,twogentlemenofverona,1594\nbless,1,twogentlemenofverona,1594\ndeserved,1,twogentlemenofverona,1594\ngoods,1,twogentlemenofverona,1594\nsport,1,twogentlemenofverona,1594\ncommendation,1,twogentlemenofverona,1594\npast,1,twogentlemenofverona,1594\nears,1,twogentlemenofverona,1594\nAlmost,1,twogentlemenofverona,1594\npox,1,twogentlemenofverona,1594\nIs't,1,twogentlemenofverona,1594\ngrandfather,1,twogentlemenofverona,1594\nnice,1,twogentlemenofverona,1594\nvesture,1,twogentlemenofverona,1594\nVI,1,twogentlemenofverona,1594\nHapless,1,twogentlemenofverona,1594\nmonstrous,1,twogentlemenofverona,1594\nHeavy,1,twogentlemenofverona,1594\nsire,1,twogentlemenofverona,1594\nbecame,1,twogentlemenofverona,1594\nbegot,1,twogentlemenofverona,1594\ncorrupted,1,twogentlemenofverona,1594\nkiss'd,1,twogentlemenofverona,1594\nnick,1,twogentlemenofverona,1594\nwringing,1,twogentlemenofverona,1594\nswarthy,1,twogentlemenofverona,1594\nSt,1,twogentlemenofverona,1594\nAdieu,1,twogentlemenofverona,1594\noffered,1,twogentlemenofverona,1594\ntrimm'd,1,twogentlemenofverona,1594\ngod,1,twogentlemenofverona,1594\nintercept,1,twogentlemenofverona,1594\nallycholly,1,twogentlemenofverona,1594\nsought,1,twogentlemenofverona,1594\ndepending,1,twogentlemenofverona,1594\ngold,1,twogentlemenofverona,1594\ndolour,1,twogentlemenofverona,1594\nwhatever,1,twogentlemenofverona,1594\nweed,1,twogentlemenofverona,1594\nsith,1,twogentlemenofverona,1594\nsits,1,twogentlemenofverona,1594\nreckless,1,twogentlemenofverona,1594\nsorry,1,twogentlemenofverona,1594\npostern,1,twogentlemenofverona,1594\nproportion,1,twogentlemenofverona,1594\nsedge,1,twogentlemenofverona,1594\nOpen,1,twogentlemenofverona,1594\nstray,1,twogentlemenofverona,1594\nclosest,1,twogentlemenofverona,1594\ndignify,1,twogentlemenofverona,1594\nbehind,1,twogentlemenofverona,1594\nbury,1,twogentlemenofverona,1594\nbefortune,1,twogentlemenofverona,1594\nsalute,1,twogentlemenofverona,1594\ndifference,1,twogentlemenofverona,1594\n'thus,1,twogentlemenofverona,1594\nkindness,1,twogentlemenofverona,1594\ncar,1,twogentlemenofverona,1594\ncat,1,twogentlemenofverona,1594\nYourself,1,twogentlemenofverona,1594\nprisoners,1,twogentlemenofverona,1594\nornament,1,twogentlemenofverona,1594\naltar,1,twogentlemenofverona,1594\nsorted,1,twogentlemenofverona,1594\ndevised,1,twogentlemenofverona,1594\nlearned,1,twogentlemenofverona,1594\nSirs,1,twogentlemenofverona,1594\ngaze,1,twogentlemenofverona,1594\nsomewhat,1,twogentlemenofverona,1594\nparle,1,twogentlemenofverona,1594\nBehold,1,twogentlemenofverona,1594\nidleness,1,twogentlemenofverona,1594\nmeaneth,1,twogentlemenofverona,1594\nSaint,1,twogentlemenofverona,1594\n'greed,1,twogentlemenofverona,1594\nPut,1,twogentlemenofverona,1594\njealous,1,twogentlemenofverona,1594\nSILVIA's,1,twogentlemenofverona,1594\nsepulchre,1,twogentlemenofverona,1594\n'Poor,1,twogentlemenofverona,1594\nreportest,1,twogentlemenofverona,1594\nlegacy,1,twogentlemenofverona,1594\nsuddenly,1,twogentlemenofverona,1594\nbended,1,twogentlemenofverona,1594\nblock,1,twogentlemenofverona,1594\ncurst,1,twogentlemenofverona,1594\nDidst,1,twogentlemenofverona,1594\npersuasion,1,twogentlemenofverona,1594\neaten,1,twogentlemenofverona,1594\ndisguising,1,twogentlemenofverona,1594\ndespise,1,twogentlemenofverona,1594\ndrowning,1,twogentlemenofverona,1594\n'no,1,twogentlemenofverona,1594\nextreme,1,twogentlemenofverona,1594\nfriendly,1,twogentlemenofverona,1594\ntedious,1,twogentlemenofverona,1594\nInhabits,1,twogentlemenofverona,1594\nbeadsman,1,twogentlemenofverona,1594\ntestify,1,twogentlemenofverona,1594\nbeget,1,twogentlemenofverona,1594\nlikest,1,twogentlemenofverona,1594\nfrowns,1,twogentlemenofverona,1594\nUrge,1,twogentlemenofverona,1594\ndisguise,1,twogentlemenofverona,1594\nquips,1,twogentlemenofverona,1594\nbees,1,twogentlemenofverona,1594\nEnough,1,twogentlemenofverona,1594\ngown,1,twogentlemenofverona,1594\nadmired,1,twogentlemenofverona,1594\nstabb'd,1,twogentlemenofverona,1594\nsins,1,twogentlemenofverona,1594\nVain,1,twogentlemenofverona,1594\nLike,1,twogentlemenofverona,1594\n'Twas,1,twogentlemenofverona,1594\nWhither,1,twogentlemenofverona,1594\nrejoice,1,twogentlemenofverona,1594\nturns,1,twogentlemenofverona,1594\nTrampling,1,twogentlemenofverona,1594\norderly,1,twogentlemenofverona,1594\nupper,1,twogentlemenofverona,1594\nmonth's,1,twogentlemenofverona,1594\nchafed,1,twogentlemenofverona,1594\nconvey'd,1,twogentlemenofverona,1594\ngrandmother,1,twogentlemenofverona,1594\nquite,1,twogentlemenofverona,1594\nrifle,1,twogentlemenofverona,1594\nriver,1,twogentlemenofverona,1594\nstore,1,twogentlemenofverona,1594\nOmitting,1,twogentlemenofverona,1594\nnoblemen,1,twogentlemenofverona,1594\nenthralled,1,twogentlemenofverona,1594\ncontemptuously,1,twogentlemenofverona,1594\nconcealing,1,twogentlemenofverona,1594\nengine,1,twogentlemenofverona,1594\npromised,1,twogentlemenofverona,1594\nmood,1,twogentlemenofverona,1594\nimage,1,twogentlemenofverona,1594\neloquence,1,twogentlemenofverona,1594\nconfess,1,twogentlemenofverona,1594\nCannot,1,twogentlemenofverona,1594\nbreast,1,twogentlemenofverona,1594\nsheds,1,twogentlemenofverona,1594\ntorments,1,twogentlemenofverona,1594\nkeeping,1,twogentlemenofverona,1594\nexercises,1,twogentlemenofverona,1594\nuncompassionate,1,twogentlemenofverona,1594\naid,1,twogentlemenofverona,1594\ninstances,1,twogentlemenofverona,1594\nSONG,1,twogentlemenofverona,1594\nHere's,1,twogentlemenofverona,1594\nstopt,1,twogentlemenofverona,1594\nvow'dst,1,twogentlemenofverona,1594\nBest,1,twogentlemenofverona,1594\nrepute,1,twogentlemenofverona,1594\ncurrent,1,twogentlemenofverona,1594\njewels,1,twogentlemenofverona,1594\nintruder,1,twogentlemenofverona,1594\nIll,1,twogentlemenofverona,1594\nAdvise,1,twogentlemenofverona,1594\nsafe,1,twogentlemenofverona,1594\nyoked,1,twogentlemenofverona,1594\nwreck,1,twogentlemenofverona,1594\nstoop,1,twogentlemenofverona,1594\ngain,1,twogentlemenofverona,1594\nnewer,1,twogentlemenofverona,1594\ntongues,1,twogentlemenofverona,1594\nnotes,1,twogentlemenofverona,1594\nEve's,1,twogentlemenofverona,1594\nstrung,1,twogentlemenofverona,1594\nunworthy,1,twogentlemenofverona,1594\nAiming,1,twogentlemenofverona,1594\nprofaned,1,twogentlemenofverona,1594\nliberal,1,twogentlemenofverona,1594\ndeaf,1,twogentlemenofverona,1594\nseeing,1,twogentlemenofverona,1594\ngild,1,twogentlemenofverona,1594\nlent,1,twogentlemenofverona,1594\nLast,1,twogentlemenofverona,1594\nReturn,1,twogentlemenofverona,1594\nthrive,1,twogentlemenofverona,1594\nrhymes,1,twogentlemenofverona,1594\nenforce,1,twogentlemenofverona,1594\ndoes,1,twogentlemenofverona,1594\ndower,1,twogentlemenofverona,1594\nboast,1,twogentlemenofverona,1594\nunwillingly,1,twogentlemenofverona,1594\nMercatio,1,twogentlemenofverona,1594\nice,1,twogentlemenofverona,1594\n'Here,1,twogentlemenofverona,1594\nmakest,1,twogentlemenofverona,1594\nmemory,1,twogentlemenofverona,1594\npossess'd,1,twogentlemenofverona,1594\nshed,1,twogentlemenofverona,1594\nreckon,1,twogentlemenofverona,1594\nprivilege,1,twogentlemenofverona,1594\napproach,1,twogentlemenofverona,1594\ninscrutable,1,twogentlemenofverona,1594\nonset,1,twogentlemenofverona,1594\ndispleased,1,twogentlemenofverona,1594\nbless'd,1,twogentlemenofverona,1594\nforgotten,1,twogentlemenofverona,1594\nfeast,1,twogentlemenofverona,1594\nmove,1,twogentlemenofverona,1594\ncommitted,1,twogentlemenofverona,1594\nfears,1,twogentlemenofverona,1594\nYonder,1,twogentlemenofverona,1594\nmonth,1,twogentlemenofverona,1594\ncomment,1,twogentlemenofverona,1594\ncommendations,1,twogentlemenofverona,1594\nengraved,1,twogentlemenofverona,1594\npotentates,1,twogentlemenofverona,1594\nnecessity,1,twogentlemenofverona,1594\nbanish,1,twogentlemenofverona,1594\naside,1,twogentlemenofverona,1594\npublisher,1,twogentlemenofverona,1594\nshipped,1,twogentlemenofverona,1594\no',1,twogentlemenofverona,1594\nthankful,1,twogentlemenofverona,1594\nsluggardized,1,twogentlemenofverona,1594\nbeautified,1,twogentlemenofverona,1594\nmalignant,1,twogentlemenofverona,1594\naccount,1,twogentlemenofverona,1594\nMay't,1,twogentlemenofverona,1594\nlout,1,twogentlemenofverona,1594\nauburn,1,twogentlemenofverona,1594\nstudies,1,twogentlemenofverona,1594\ntemper,1,twogentlemenofverona,1594\ncrimes,1,twogentlemenofverona,1594\nmorn,1,twogentlemenofverona,1594\ntrain,1,twogentlemenofverona,1594\nnoble,1,twogentlemenofverona,1594\nexpostulate,1,twogentlemenofverona,1594\nstature,1,twogentlemenofverona,1594\nenviron,1,twogentlemenofverona,1594\nUrsula,1,twogentlemenofverona,1594\nendure,1,twogentlemenofverona,1594\nlightly,1,twogentlemenofverona,1594\nado,1,twogentlemenofverona,1594\nWouldst,1,twogentlemenofverona,1594\nagone,1,twogentlemenofverona,1594\nYes,1,twogentlemenofverona,1594\nbeholding,1,twogentlemenofverona,1594\nho,1,twogentlemenofverona,1594\nspeak'st,1,twogentlemenofverona,1594\nThrust,1,twogentlemenofverona,1594\nachieved,1,twogentlemenofverona,1594\nServants,1,twogentlemenofverona,1594\nagood,1,twogentlemenofverona,1594\nspent,1,twogentlemenofverona,1594\nangels',1,twogentlemenofverona,1594\nlawlessly,1,twogentlemenofverona,1594\neffectual,1,twogentlemenofverona,1594\ntwinkling,1,twogentlemenofverona,1594\nswains,1,twogentlemenofverona,1594\ndrier,1,twogentlemenofverona,1594\nANTONIO's,1,twogentlemenofverona,1594\npissing,1,twogentlemenofverona,1594\nbruising,1,twogentlemenofverona,1594\nlets,1,twogentlemenofverona,1594\nbeauteous,1,twogentlemenofverona,1594\nunheedfully,1,twogentlemenofverona,1594\nnatured,1,twogentlemenofverona,1594\ndecks,1,twogentlemenofverona,1594\nnimble,1,twogentlemenofverona,1594\nIt's,1,twogentlemenofverona,1594\nready,1,twogentlemenofverona,1594\ndully,1,twogentlemenofverona,1594\nglides,1,twogentlemenofverona,1594\ncomposed,1,twogentlemenofverona,1594\nexpels,1,twogentlemenofverona,1594\nmen's,1,twogentlemenofverona,1594\nendued,1,twogentlemenofverona,1594\npresume,1,twogentlemenofverona,1594\nkilled,1,twogentlemenofverona,1594\nWhence,1,twogentlemenofverona,1594\nvalour,1,twogentlemenofverona,1594\nexecuted,1,twogentlemenofverona,1594\ntempted,1,twogentlemenofverona,1594\ntransgression,1,twogentlemenofverona,1594\nscratch,1,twogentlemenofverona,1594\nsolitary,1,twogentlemenofverona,1594\nunmannerly,1,twogentlemenofverona,1594\nspeaks,1,twogentlemenofverona,1594\nsuggested,1,twogentlemenofverona,1594\nDinner,1,twogentlemenofverona,1594\nmadcap,1,twogentlemenofverona,1594\nsquirrel,1,twogentlemenofverona,1594\ncrow,1,twogentlemenofverona,1594\nround,1,twogentlemenofverona,1594\nperfected,1,twogentlemenofverona,1594\nsignify,1,twogentlemenofverona,1594\ncharacter'd,1,twogentlemenofverona,1594\nCall,1,twogentlemenofverona,1594\nimpression,1,twogentlemenofverona,1594\nintended,1,twogentlemenofverona,1594\nemploy'd,1,twogentlemenofverona,1594\nweeds,1,twogentlemenofverona,1594\nspur,1,twogentlemenofverona,1594\nimpeachment,1,twogentlemenofverona,1594\nexpelling,1,twogentlemenofverona,1594\ninterpret,1,twogentlemenofverona,1594\nrepeat,1,twogentlemenofverona,1594\nappears,1,twogentlemenofverona,1594\nmuttons,1,twogentlemenofverona,1594\nLady,1,twogentlemenofverona,1594\nnobleness,1,twogentlemenofverona,1594\n'love,1,twogentlemenofverona,1594\nprince,1,twogentlemenofverona,1594\nshut,1,twogentlemenofverona,1594\ndeny,1,twogentlemenofverona,1594\nLosing,1,twogentlemenofverona,1594\nswiftest,1,twogentlemenofverona,1594\nHood's,1,twogentlemenofverona,1594\nplain,1,twogentlemenofverona,1594\ndrawn,1,twogentlemenofverona,1594\nsincere,1,twogentlemenofverona,1594\nfire's,1,twogentlemenofverona,1594\naccurst,1,twogentlemenofverona,1594\nschool,1,twogentlemenofverona,1594\nsweetest,1,twogentlemenofverona,1594\nmighty,1,twogentlemenofverona,1594\nprovided,1,twogentlemenofverona,1594\npluck,1,twogentlemenofverona,1594\nwhether,1,twogentlemenofverona,1594\ndisfurnish,1,twogentlemenofverona,1594\nShe's,1,twogentlemenofverona,1594\nvengeance,1,twogentlemenofverona,1594\nrashness,1,twogentlemenofverona,1594\nrefused,1,twogentlemenofverona,1594\nweeps,1,twogentlemenofverona,1594\nbrothers,1,twogentlemenofverona,1594\nhammering,1,twogentlemenofverona,1594\nkingdoms,1,twogentlemenofverona,1594\n'Light,1,twogentlemenofverona,1594\nimpatient,1,twogentlemenofverona,1594\nCommend,1,twogentlemenofverona,1594\ntomorrow,1,twogentlemenofverona,1594\nstranger,1,twogentlemenofverona,1594\nfasts,1,twogentlemenofverona,1594\ndiest,1,twogentlemenofverona,1594\nmended,1,twogentlemenofverona,1594\nsuggesting,1,twogentlemenofverona,1594\nwalked,1,twogentlemenofverona,1594\nfooted,1,twogentlemenofverona,1594\nDispatch,1,twogentlemenofverona,1594\nexquisite,1,twogentlemenofverona,1594\ndeceitful,1,twogentlemenofverona,1594\nstrays,1,twogentlemenofverona,1594\nBeseeming,1,twogentlemenofverona,1594\nfoot,1,twogentlemenofverona,1594\nfear'd,1,twogentlemenofverona,1594\npack,1,twogentlemenofverona,1594\nworldly,1,twogentlemenofverona,1594\npersevers,1,twogentlemenofverona,1594\nforehead's,1,twogentlemenofverona,1594\nMILAN,1,twogentlemenofverona,1594\nfasted,1,twogentlemenofverona,1594\nproper,1,twogentlemenofverona,1594\nconcerning,1,twogentlemenofverona,1594\nchastity,1,twogentlemenofverona,1594\nnectar,1,twogentlemenofverona,1594\nmoan,1,twogentlemenofverona,1594\nrough,1,twogentlemenofverona,1594\nflatter'd,1,twogentlemenofverona,1594\nduke's,1,twogentlemenofverona,1594\ncreatures,1,twogentlemenofverona,1594\nexcess,1,twogentlemenofverona,1594\noverweening,1,twogentlemenofverona,1594\nfresh,1,twogentlemenofverona,1594\nhapless,1,twogentlemenofverona,1594\n'Mongst,1,twogentlemenofverona,1594\nMoist,1,twogentlemenofverona,1594\nRuffian,1,twogentlemenofverona,1594\nerror,1,twogentlemenofverona,1594\ncontemning,1,twogentlemenofverona,1594\ningratitude,1,twogentlemenofverona,1594\nRobin,1,twogentlemenofverona,1594\nHast,1,twogentlemenofverona,1594\nchance,1,twogentlemenofverona,1594\nliveries,1,twogentlemenofverona,1594\nfurnish,1,twogentlemenofverona,1594\npassengers,1,twogentlemenofverona,1594\nesteemest,1,twogentlemenofverona,1594\nright,1,twogentlemenofverona,1594\ninquire,1,twogentlemenofverona,1594\nsequel,1,twogentlemenofverona,1594\ntheirs,1,twogentlemenofverona,1594\nThink'st,1,twogentlemenofverona,1594\nfee,1,twogentlemenofverona,1594\nunprevented,1,twogentlemenofverona,1594\ncolour'd,1,twogentlemenofverona,1594\nSirrah,1,twogentlemenofverona,1594\nfed,1,twogentlemenofverona,1594\nwashed,1,twogentlemenofverona,1594\nesteemeth,1,twogentlemenofverona,1594\npartaker,1,twogentlemenofverona,1594\ncheque,1,twogentlemenofverona,1594\nenemies,1,twogentlemenofverona,1594\njourneying,1,twogentlemenofverona,1594\nrelying,1,twogentlemenofverona,1594\n'you,1,twogentlemenofverona,1594\nbehavior,1,twogentlemenofverona,1594\nscandalized,1,twogentlemenofverona,1594\ndaring,1,twogentlemenofverona,1594\nElysium,1,twogentlemenofverona,1594\nAsk,1,twogentlemenofverona,1594\nReceiving,1,twogentlemenofverona,1594\nhowling,1,twogentlemenofverona,1594\nguess,1,twogentlemenofverona,1594\nguest,1,twogentlemenofverona,1594\ndoubtfully,1,twogentlemenofverona,1594\nheight,1,twogentlemenofverona,1594\nInto,1,twogentlemenofverona,1594\nwatch,1,twogentlemenofverona,1594\nwheels,1,twogentlemenofverona,1594\nfat,1,twogentlemenofverona,1594\nShows,1,twogentlemenofverona,1594\nlacking,1,twogentlemenofverona,1594\nlean,1,twogentlemenofverona,1594\nComes,1,twogentlemenofverona,1594\nfodder,1,twogentlemenofverona,1594\njustice,1,twogentlemenofverona,1594\ntried,1,twogentlemenofverona,1594\nJULIA's,1,twogentlemenofverona,1594\nfrozen,1,twogentlemenofverona,1594\ntincture,1,twogentlemenofverona,1594\nmask'd,1,twogentlemenofverona,1594\nequal,1,twogentlemenofverona,1594\ndamm'st,1,twogentlemenofverona,1594\nInconstancy,1,twogentlemenofverona,1594\nconsider'd,1,twogentlemenofverona,1594\nventure,1,twogentlemenofverona,1594\ntarry,1,twogentlemenofverona,1594\ncarried,1,twogentlemenofverona,1594\nrequital,1,twogentlemenofverona,1594\nhoney,1,twogentlemenofverona,1594\nLaunces,1,twogentlemenofverona,1594\ndrench'd,1,twogentlemenofverona,1594\ngriefs,1,twogentlemenofverona,1594\nblackest,1,twogentlemenofverona,1594\nPhaeton,1,twogentlemenofverona,1594\nDetermined,1,twogentlemenofverona,1594\npebble,1,twogentlemenofverona,1594\nfinest,1,twogentlemenofverona,1594\nprofferer,1,twogentlemenofverona,1594\nfaction,1,twogentlemenofverona,1594\ncouldst,1,twogentlemenofverona,1594\ndistance,1,twogentlemenofverona,1594\nbuilt,1,twogentlemenofverona,1594\nBetter,1,twogentlemenofverona,1594\nunknown,1,twogentlemenofverona,1594\nrepose,1,twogentlemenofverona,1594\nOrpheus',1,twogentlemenofverona,1594\nnose,1,twogentlemenofverona,1594\nmarks,1,twogentlemenofverona,1594\nproverb,1,twogentlemenofverona,1594\nendanger,1,twogentlemenofverona,1594\nbeast,1,twogentlemenofverona,1594\nalmost,1,twogentlemenofverona,1594\nfraught,1,twogentlemenofverona,1594\ntrencher,1,twogentlemenofverona,1594\nwonder,1,twogentlemenofverona,1594\naction,1,twogentlemenofverona,1594\ngavest,1,twogentlemenofverona,1594\nchurlishly,1,twogentlemenofverona,1594\nunrivall'd,1,twogentlemenofverona,1594\nscale,1,twogentlemenofverona,1594\nnow's,1,twogentlemenofverona,1594\npinch'd,1,twogentlemenofverona,1594\nInjurious,1,twogentlemenofverona,1594\nguess'd,1,twogentlemenofverona,1594\nconceited,1,twogentlemenofverona,1594\nscalp,1,twogentlemenofverona,1594\nducat,1,twogentlemenofverona,1594\nspokesman,1,twogentlemenofverona,1594\ndisgraced,1,twogentlemenofverona,1594\ninfancy,1,twogentlemenofverona,1594\nremedy,1,twogentlemenofverona,1594\nbears,1,twogentlemenofverona,1594\nbeard,1,twogentlemenofverona,1594\nclothe,1,twogentlemenofverona,1594\ntigers,1,twogentlemenofverona,1594\nblunt,1,twogentlemenofverona,1594\nknots,1,twogentlemenofverona,1594\n'Take,1,twogentlemenofverona,1594\nhasten,1,twogentlemenofverona,1594\nunfrequented,1,twogentlemenofverona,1594\nhide,1,twogentlemenofverona,1594\ntenor,1,twogentlemenofverona,1594\nfeature,1,twogentlemenofverona,1594\novertake,1,twogentlemenofverona,1594\nobserved,1,twogentlemenofverona,1594\nneed'st,1,twogentlemenofverona,1594\npastime,1,twogentlemenofverona,1594\nout',1,twogentlemenofverona,1594\nbottom,1,twogentlemenofverona,1594\nWear,1,twogentlemenofverona,1594\ngingerly,1,twogentlemenofverona,1594\nBase,1,twogentlemenofverona,1594\ndisloyal,1,twogentlemenofverona,1594\nchase,1,twogentlemenofverona,1594\nadventure,1,twogentlemenofverona,1594\nabridge,1,twogentlemenofverona,1594\nwritten,1,twogentlemenofverona,1594\nidolatry,1,twogentlemenofverona,1594\nFlatter,1,twogentlemenofverona,1594\nmount,1,twogentlemenofverona,1594\nmorrows,1,twogentlemenofverona,1594\nSoho,1,twogentlemenofverona,1594\nHOST,1,twogentlemenofverona,1594\nLose,1,twogentlemenofverona,1594\ncounsellor,1,twogentlemenofverona,1594\nProteus',1,twogentlemenofverona,1594\nintercession,1,twogentlemenofverona,1594\nislands,1,twogentlemenofverona,1594\nDoth,1,twogentlemenofverona,1594\nwonder'd,1,twogentlemenofverona,1594\nThyself,1,twogentlemenofverona,1594\ninly,1,twogentlemenofverona,1594\nprecious,1,twogentlemenofverona,1594\npilgrim,1,twogentlemenofverona,1594\nensuing,1,twogentlemenofverona,1594\nplaced,1,twogentlemenofverona,1594\nFoster'd,1,twogentlemenofverona,1594\nSee,1,twogentlemenofverona,1594\ngeneral,1,twogentlemenofverona,1594\nconsort,1,twogentlemenofverona,1594\ndevice,1,twogentlemenofverona,1594\nerr,1,twogentlemenofverona,1594\nduty's,1,twogentlemenofverona,1594\ndoors,1,twogentlemenofverona,1594\nreigns,1,twogentlemenofverona,1594\nmortal,1,twogentlemenofverona,1594\ntowards,1,twogentlemenofverona,1594\nleaves,1,twogentlemenofverona,1594\nkissed,1,twogentlemenofverona,1594\n'Silvia,1,twogentlemenofverona,1594\nsacrifice,1,twogentlemenofverona,1594\nmild,1,twogentlemenofverona,1594\nindustry,1,twogentlemenofverona,1594\nrandom,1,twogentlemenofverona,1594\nRegard,1,twogentlemenofverona,1594\ncovers,1,twogentlemenofverona,1594\nsonnets,1,twogentlemenofverona,1594\nMakes,1,twogentlemenofverona,1594\nescape,1,twogentlemenofverona,1594\npurposed,1,twogentlemenofverona,1594\nblinded,1,twogentlemenofverona,1594\nblush,1,twogentlemenofverona,1594\nremorseful,1,twogentlemenofverona,1594\nbeggar,1,twogentlemenofverona,1594\n'yet,1,twogentlemenofverona,1594\nmask,1,twogentlemenofverona,1594\nconcord,1,twogentlemenofverona,1594\nthere's,1,twogentlemenofverona,1594\nchief,1,twogentlemenofverona,1594\npersuaded,1,twogentlemenofverona,1594\nraiment,1,twogentlemenofverona,1594\npenitence,1,twogentlemenofverona,1594\nblot,1,twogentlemenofverona,1594\nmistakest,1,twogentlemenofverona,1594\nstate,1,twogentlemenofverona,1594\nhabiliments,1,twogentlemenofverona,1594\nlet's,1,twogentlemenofverona,1594\nforsook,1,twogentlemenofverona,1594\nwot,1,twogentlemenofverona,1594\nbelieving,1,twogentlemenofverona,1594\njudgments,1,twogentlemenofverona,1594\nstarved,1,twogentlemenofverona,1594\nlubber,1,twogentlemenofverona,1594\nTorment,1,twogentlemenofverona,1594\nmountain,1,twogentlemenofverona,1594\nbenefit,1,twogentlemenofverona,1594\nfish,1,twogentlemenofverona,1594\ndeeps,1,twogentlemenofverona,1594\nperemptory,1,twogentlemenofverona,1594\nfree,1,twogentlemenofverona,1594\novertaketh,1,twogentlemenofverona,1594\nsearch,1,twogentlemenofverona,1594\nabhors,1,twogentlemenofverona,1594\ntrifle,1,twogentlemenofverona,1594\nheaviest,1,twogentlemenofverona,1594\n'Proteus',1,twogentlemenofverona,1594\none's,1,twogentlemenofverona,1594\ndesires,1,twogentlemenofverona,1594\nsand,1,twogentlemenofverona,1594\nfirm,1,twogentlemenofverona,1594\nwed,1,twogentlemenofverona,1594\no'clock,1,twogentlemenofverona,1594\npossession,1,twogentlemenofverona,1594\nblindness,1,twogentlemenofverona,1594\naccords,1,twogentlemenofverona,1594\nbreed,1,twogentlemenofverona,1594\nslight,1,twogentlemenofverona,1594\ndignified,1,twogentlemenofverona,1594\nunreversed,1,twogentlemenofverona,1594\nmaids,1,twogentlemenofverona,1594\nwinding,1,twogentlemenofverona,1594\naccomplish'd,1,twogentlemenofverona,1594\ndespairing,1,twogentlemenofverona,1594\nwrongs,1,twogentlemenofverona,1594\nWept,1,twogentlemenofverona,1594\nneat,1,twogentlemenofverona,1594\nodd,1,twogentlemenofverona,1594\nflies,1,twogentlemenofverona,1594\n'My,1,twogentlemenofverona,1594\nblushes,1,twogentlemenofverona,1594\nbanishment,1,twogentlemenofverona,1594\nfits,1,twogentlemenofverona,1594\nswain,1,twogentlemenofverona,1594\nexperience,1,twogentlemenofverona,1594\nRun,1,twogentlemenofverona,1594\ndiscipline,1,twogentlemenofverona,1594\nWitness,1,twogentlemenofverona,1594\ndesolate,1,twogentlemenofverona,1594\nprivy,1,twogentlemenofverona,1594\nhateful,1,twogentlemenofverona,1594\npenitential,1,twogentlemenofverona,1594\nthoroughly,1,twogentlemenofverona,1594\nstomach,1,twogentlemenofverona,1594\nwrath's,1,twogentlemenofverona,1594\nimpose,1,twogentlemenofverona,1594\nenamell'ed,1,twogentlemenofverona,1594\npretence,1,twogentlemenofverona,1594\nimport,1,twogentlemenofverona,1594\nSad,1,twogentlemenofverona,1594\nOutside,1,twogentlemenofverona,1594\nDissolves,1,twogentlemenofverona,1594\nthird,1,twogentlemenofverona,1594\ninclude,1,twogentlemenofverona,1594\nprime,1,twogentlemenofverona,1594\nthrives,1,twogentlemenofverona,1594\nsonnet,1,twogentlemenofverona,1594\nfawneth,1,twogentlemenofverona,1594\ninfluence,1,twogentlemenofverona,1594\nrecover,1,twogentlemenofverona,1594\nbestow'd,1,twogentlemenofverona,1594\nconspire,1,twogentlemenofverona,1594\nOften,1,twogentlemenofverona,1594\nclosed,1,twogentlemenofverona,1594\n'no',1,twogentlemenofverona,1594\nripe,1,twogentlemenofverona,1594\n'alas',1,twogentlemenofverona,1594\nyou're,1,twogentlemenofverona,1594\nintegrity,1,twogentlemenofverona,1594\nsubtle,1,twogentlemenofverona,1594\npatiently,1,twogentlemenofverona,1594\ndust,1,twogentlemenofverona,1594\noars,1,twogentlemenofverona,1594\nHebrew,1,twogentlemenofverona,1594\nsinews,1,twogentlemenofverona,1594\nhooks,1,twogentlemenofverona,1594\nwar,1,twogentlemenofverona,1594\nlinger,1,twogentlemenofverona,1594\nable,1,twogentlemenofverona,1594\nWorthy,1,twogentlemenofverona,1594\nheave,1,twogentlemenofverona,1594\narms,1,twogentlemenofverona,1594\nRemembering,1,twogentlemenofverona,1594\ndrives,1,twogentlemenofverona,1594\nbetween,1,twogentlemenofverona,1594\ncommanded,1,twogentlemenofverona,1594\ncommander,1,twogentlemenofverona,1594\nwag,1,twogentlemenofverona,1594\nenraged,1,twogentlemenofverona,1594\nWringing,1,twogentlemenofverona,1594\ntutor'd,1,twogentlemenofverona,1594\npride,1,twogentlemenofverona,1594\nKnowing,1,twogentlemenofverona,1594\nvillains,1,twogentlemenofverona,1594\n'ay,1,twogentlemenofverona,1594\nthreats,1,twogentlemenofverona,1594\nThree,1,twogentlemenofverona,1594\nurinal,1,twogentlemenofverona,1594\npence,1,twogentlemenofverona,1594\no'ernight,1,twogentlemenofverona,1594\nenforced,1,twogentlemenofverona,1594\nnotice,1,twogentlemenofverona,1594\nadored,1,twogentlemenofverona,1594\nbrews,1,twogentlemenofverona,1594\nrequite,1,twogentlemenofverona,1594\nanchoring,1,twogentlemenofverona,1594\nraging,1,twogentlemenofverona,1594\nShall,1,twogentlemenofverona,1594\ncompetitor,1,twogentlemenofverona,1594\nfaces,1,twogentlemenofverona,1594\ndreams,1,twogentlemenofverona,1594\nrake,1,twogentlemenofverona,1594\nBid,1,twogentlemenofverona,1594\nransom,1,twogentlemenofverona,1594\nearthly,1,twogentlemenofverona,1594\nLaurence,1,twogentlemenofverona,1594\ncharged,1,twogentlemenofverona,1594\nwasps,1,twogentlemenofverona,1594\nlinguist,1,twogentlemenofverona,1594\nangel,1,twogentlemenofverona,1594\nEternal's,1,twogentlemenofverona,1594\ndisembark,1,twogentlemenofverona,1594\nAriadne,1,twogentlemenofverona,1594\nlute,1,twogentlemenofverona,1594\ndump,1,twogentlemenofverona,1594\nknight,1,twogentlemenofverona,1594\nowe,1,twogentlemenofverona,1594\ndescant,1,twogentlemenofverona,1594\nCancel,1,twogentlemenofverona,1594\nMerops',1,twogentlemenofverona,1594\nPlead,1,twogentlemenofverona,1594\ncommending,1,twogentlemenofverona,1594\nconsent,1,twogentlemenofverona,1594\nvirtuously,1,twogentlemenofverona,1594\ndetermined,1,twogentlemenofverona,1594\nwooes,1,twogentlemenofverona,1594\nwaste,1,twogentlemenofverona,1594\nfox,1,twogentlemenofverona,1594\nbeguiled,1,twogentlemenofverona,1594\nForbear,1,twogentlemenofverona,1594\nhundred,1,twogentlemenofverona,1594\nwent,1,twogentlemenofverona,1594\nwhence,1,twogentlemenofverona,1594\nfollowers,1,twogentlemenofverona,1594\nEver,1,twogentlemenofverona,1594\ncover,1,twogentlemenofverona,1594\novercharged,1,twogentlemenofverona,1594\nTheseus',1,twogentlemenofverona,1594\ncontempt,1,twogentlemenofverona,1594\nminister,1,twogentlemenofverona,1594\ngarlands,1,twogentlemenofverona,1594\nfollowest,1,twogentlemenofverona,1594\nMake,1,twogentlemenofverona,1594\nUnhappy,1,twogentlemenofverona,1594\nperfections,1,twogentlemenofverona,1594\nyond,1,twogentlemenofverona,1594\nTime,1,twogentlemenofverona,1594\npractising,1,twogentlemenofverona,1594\nmessengers,1,twogentlemenofverona,1594\nhighly,1,twogentlemenofverona,1594\ndoublet,1,twogentlemenofverona,1594\nclownish,1,twogentlemenofverona,1594\nSwoons,1,twogentlemenofverona,1594\ncrystal,1,twogentlemenofverona,1594\nsaint,1,twogentlemenofverona,1594\ncares,1,twogentlemenofverona,1594\narticle,1,twogentlemenofverona,1594\ncloud,1,twogentlemenofverona,1594\nconstancy,1,twogentlemenofverona,1594\nquell,1,twogentlemenofverona,1594\npassioning,1,twogentlemenofverona,1594\nanswers,1,twogentlemenofverona,1594\nscorns,1,twogentlemenofverona,1594\nConsiders,1,twogentlemenofverona,1594\nlodges,1,twogentlemenofverona,1594\nthrew,1,twogentlemenofverona,1594\nroses,1,twogentlemenofverona,1594\nwest,1,twogentlemenofverona,1594\nenfranchise,1,twogentlemenofverona,1594\nundeserving,1,twogentlemenofverona,1594\nofficer,1,twogentlemenofverona,1594\ngazing,1,twogentlemenofverona,1594\nastray,1,twogentlemenofverona,1594\nthey're,1,twogentlemenofverona,1594\npassion,1,twogentlemenofverona,1594\nvow,1,twogentlemenofverona,1594\nscratch'd,1,twogentlemenofverona,1594\nglances,1,twogentlemenofverona,1594\nwoods,1,twogentlemenofverona,1594\npunish'd,1,twogentlemenofverona,1594\ncontinue,1,twogentlemenofverona,1594\nfriar,1,twogentlemenofverona,1594\nlascivious,1,twogentlemenofverona,1594\nrehearse,1,twogentlemenofverona,1594\nPlotted,1,twogentlemenofverona,1594\nthereby,1,twogentlemenofverona,1594\nmansion,1,twogentlemenofverona,1594\nshown,1,twogentlemenofverona,1594\nbite,1,twogentlemenofverona,1594\nimmodest,1,twogentlemenofverona,1594\nstay'st,1,twogentlemenofverona,1594\nvex,1,twogentlemenofverona,1594\nunstaid,1,twogentlemenofverona,1594\nqueen,1,twogentlemenofverona,1594\nBears,1,twogentlemenofverona,1594\nchiefly,1,twogentlemenofverona,1594\nThank,1,twogentlemenofverona,1594\nimportunacy,1,twogentlemenofverona,1594\npartly,1,twogentlemenofverona,1594\nwatch'd,1,twogentlemenofverona,1594\nendamage,1,twogentlemenofverona,1594\ncensure,1,twogentlemenofverona,1594\nbass,1,twogentlemenofverona,1594\nbreeder,1,twogentlemenofverona,1594\nstrikes,1,twogentlemenofverona,1594\ngrievances,1,twogentlemenofverona,1594\nqualify,1,twogentlemenofverona,1594\ncock,1,twogentlemenofverona,1594\nfriendship,1,twogentlemenofverona,1594\nVisit,1,twogentlemenofverona,1594\nbounds,1,twogentlemenofverona,1594\ntame,1,twogentlemenofverona,1594\nrising,1,twogentlemenofverona,1594\nImperial's,1,twogentlemenofverona,1594\nmischance,1,twogentlemenofverona,1594\nfeeble,1,twogentlemenofverona,1594\nlights,1,twogentlemenofverona,1594\nsoul's,1,twogentlemenofverona,1594\ntale,1,twogentlemenofverona,1594\nis't,1,twogentlemenofverona,1594\ndisability,1,twogentlemenofverona,1594\nPartly,1,twogentlemenofverona,1594\ntall,1,twogentlemenofverona,1594\nconversed,1,twogentlemenofverona,1594\nwelcomes,1,twogentlemenofverona,1594\nbind,1,twogentlemenofverona,1594\naloft,1,twogentlemenofverona,1594\ndeliberate,1,twogentlemenofverona,1594\nsufficient,1,twogentlemenofverona,1594\nperish,1,twogentlemenofverona,1594\nexcepted,1,twogentlemenofverona,1594\nTrust,1,twogentlemenofverona,1594\nwatchful,1,twogentlemenofverona,1594\nungartered,1,twogentlemenofverona,1594\ntorment,1,twogentlemenofverona,1594\nthwarted,1,twogentlemenofverona,1594\nAlready,1,twogentlemenofverona,1594\nRather,1,twogentlemenofverona,1594\nregarding,1,twogentlemenofverona,1594\nsights,1,twogentlemenofverona,1594\ncreep,1,twogentlemenofverona,1594\nthaw'd,1,twogentlemenofverona,1594\nought,1,twogentlemenofverona,1594\nholds,1,twogentlemenofverona,1594\nredbreast,1,twogentlemenofverona,1594\npoets',1,twogentlemenofverona,1594\nshore,1,twogentlemenofverona,1594\nAttends,1,twogentlemenofverona,1594\nmanfully,1,twogentlemenofverona,1594\ncapon's,1,twogentlemenofverona,1594\nclean,1,twogentlemenofverona,1594\nblasting,1,twogentlemenofverona,1594\nhole,1,twogentlemenofverona,1594\nexcus'd,1,twogentlemenofverona,1594\npupil,1,twogentlemenofverona,1594\ncut,1,twogentlemenofverona,1594\nunwind,1,twogentlemenofverona,1594\nGregory's,1,twogentlemenofverona,1594\ncounterfeit,1,twogentlemenofverona,1594\nloyal,1,twogentlemenofverona,1594\nrevolt,1,twogentlemenofverona,1594\nassist,1,twogentlemenofverona,1594\nperplexity,1,twogentlemenofverona,1594\ntire,1,twogentlemenofverona,1594\nwinter,1,twogentlemenofverona,1594\nperiwig,1,twogentlemenofverona,1594\ngrudge,1,twogentlemenofverona,1594\nremnant,1,twogentlemenofverona,1594\no'erlooked,1,twogentlemenofverona,1594\nnooks,1,twogentlemenofverona,1594\nsinned,1,twogentlemenofverona,1594\nwant'st,1,twogentlemenofverona,1594\nconjure,1,twogentlemenofverona,1594\nbuilding,1,twogentlemenofverona,1594\ngives,1,twogentlemenofverona,1594\nnotwithstanding,1,twogentlemenofverona,1594\npuling,1,twogentlemenofverona,1594\nprayers,1,twogentlemenofverona,1594\nDUKE'S,1,twogentlemenofverona,1594\ncleft,1,twogentlemenofverona,1594\nalso,1,twogentlemenofverona,1594\naspire,1,twogentlemenofverona,1594\nprettily,1,twogentlemenofverona,1594\nsatisfied,1,twogentlemenofverona,1594\nmanage,1,twogentlemenofverona,1594\nyellow,1,twogentlemenofverona,1594\nverdure,1,twogentlemenofverona,1594\napproved,1,twogentlemenofverona,1594\nseas,1,twogentlemenofverona,1594\ninterest,1,twogentlemenofverona,1594\nExpects,1,twogentlemenofverona,1594\nhearty,1,twogentlemenofverona,1594\nlying,1,twogentlemenofverona,1594\nrecall'd,1,twogentlemenofverona,1594\nvexation,1,twogentlemenofverona,1594\nwaiting,1,twogentlemenofverona,1594\nlog,1,twogentlemenofverona,1594\ntangle,1,twogentlemenofverona,1594\ninward,1,twogentlemenofverona,1594\nfavour'd,1,twogentlemenofverona,1594\ngossips,1,twogentlemenofverona,1594\nfairer,1,twogentlemenofverona,1594\ndeepest,1,twogentlemenofverona,1594\ncaptain's,1,twogentlemenofverona,1594\nbabe,1,twogentlemenofverona,1594\nremission,1,twogentlemenofverona,1594\nserviceable,1,twogentlemenofverona,1594\npuppet,1,twogentlemenofverona,1594\nconverse,1,twogentlemenofverona,1594\nthereto,1,twogentlemenofverona,1594\ncrept,1,twogentlemenofverona,1594\n'Out,1,twogentlemenofverona,1594\nSeem,1,twogentlemenofverona,1594\naught,1,twogentlemenofverona,1594\nknowest,1,twogentlemenofverona,1594\nfitting,1,twogentlemenofverona,1594\ntalking,1,twogentlemenofverona,1594\neither,1,twogentlemenofverona,1594\nfeeling,1,twogentlemenofverona,1594\nskill'd,1,twogentlemenofverona,1594\nTruly,1,twogentlemenofverona,1594\npuppy,1,twogentlemenofverona,1594\nHallowmas,1,twogentlemenofverona,1594\nhindered,1,twogentlemenofverona,1594\ncoy,1,twogentlemenofverona,1594\ndiscretion,1,twogentlemenofverona,1594\nrobin,1,twogentlemenofverona,1594\ncamest,1,twogentlemenofverona,1594\nangerly,1,twogentlemenofverona,1594\ncourtesy,1,twogentlemenofverona,1594\nsees,1,twogentlemenofverona,1594\n'Blessing,1,twogentlemenofverona,1594\nconclude,1,twogentlemenofverona,1594\npricks,1,twogentlemenofverona,1594\ncondition,1,twogentlemenofverona,1594\ntells,1,twogentlemenofverona,1594\nperiod,1,twogentlemenofverona,1594\nForsworn,1,twogentlemenofverona,1594\nscribe,1,twogentlemenofverona,1594\nMine,1,twogentlemenofverona,1594\nestimation,1,twogentlemenofverona,1594\nForsake,1,twogentlemenofverona,1594\ntraitor,1,twogentlemenofverona,1594\nthrust,1,twogentlemenofverona,1594\n'get,1,twogentlemenofverona,1594\npreferment,1,twogentlemenofverona,1594\nsacred,1,twogentlemenofverona,1594\nGentlemen,1,twogentlemenofverona,1594\nchanging,1,twogentlemenofverona,1594\nwhate'er,1,twogentlemenofverona,1594\nhearken,1,twogentlemenofverona,1594\nperson,1,twogentlemenofverona,1594\ndeign,1,twogentlemenofverona,1594\n'twill,1,twogentlemenofverona,1594\nnights,1,twogentlemenofverona,1594\nloyalty,1,twogentlemenofverona,1594\nmusician,1,twogentlemenofverona,1594\nheels,1,twogentlemenofverona,1594\nDeliver,1,twogentlemenofverona,1594\nwretches,1,twogentlemenofverona,1594\nmillion,1,twogentlemenofverona,1594\ncrews,1,twogentlemenofverona,1594\nslender,1,twogentlemenofverona,1594\nrhyming,1,twogentlemenofverona,1594\nheedfully,1,twogentlemenofverona,1594\nup',1,twogentlemenofverona,1594\n'alas,1,twogentlemenofverona,1594\nglove,1,twogentlemenofverona,1594\nbeheld,1,twogentlemenofverona,1594\nwailful,1,twogentlemenofverona,1594\nhalidom,1,twogentlemenofverona,1594\nunseeing,1,twogentlemenofverona,1594\nravel,1,twogentlemenofverona,1594\naccording,1,twogentlemenofverona,1594\nfairly,1,twogentlemenofverona,1594\nClose,1,twogentlemenofverona,1594\nuncertain,1,twogentlemenofverona,1594\npenetrate,1,twogentlemenofverona,1594\nbankrupt,1,twogentlemenofverona,1594\nsee'st,1,twogentlemenofverona,1594\nprison,1,twogentlemenofverona,1594\nmother's,1,twogentlemenofverona,1594\ngrieves,1,twogentlemenofverona,1594\ntrusting,1,twogentlemenofverona,1594\nherald,1,twogentlemenofverona,1594\nchose,1,twogentlemenofverona,1594\ndisobedient,1,twogentlemenofverona,1594\nseized,1,twogentlemenofverona,1594\nsullen,1,twogentlemenofverona,1594\nstatue,1,twogentlemenofverona,1594\ngarter,1,twogentlemenofverona,1594\nleagues,1,twogentlemenofverona,1594\npassionate,1,twogentlemenofverona,1594\ntriumphs,1,twogentlemenofverona,1594\ncurrish,1,twogentlemenofverona,1594\nafterward,1,twogentlemenofverona,1594\nbolder,1,twogentlemenofverona,1594\ncrooked,1,twogentlemenofverona,1594\nhunts,1,twogentlemenofverona,1594\nCoy,1,twogentlemenofverona,1594\ncoil,1,twogentlemenofverona,1594\nFire,1,twogentlemenofverona,1594\nbrow,1,twogentlemenofverona,1594\nregarded,1,twogentlemenofverona,1594\nlordship's,1,twogentlemenofverona,1594\neffects,1,twogentlemenofverona,1594\nservants,1,twogentlemenofverona,1594\npersuade,1,twogentlemenofverona,1594\nsuitor,1,twogentlemenofverona,1594\nHerself,1,twogentlemenofverona,1594\nhonesty,1,twogentlemenofverona,1594\npetty,1,twogentlemenofverona,1594\nmad,1,twogentlemenofverona,1594\nmar,1,twogentlemenofverona,1594\nTrenched,1,twogentlemenofverona,1594\nalter'd,1,twogentlemenofverona,1594\n'Hang,1,twogentlemenofverona,1594\nallied,1,twogentlemenofverona,1594\ndining,1,twogentlemenofverona,1594\nencounters,1,twogentlemenofverona,1594\nconstrue,1,twogentlemenofverona,1594\nHowever,1,twogentlemenofverona,1594\nabroad,1,twogentlemenofverona,1594\nspite,1,twogentlemenofverona,1594\nSignior,1,twogentlemenofverona,1594\nmine's,1,twogentlemenofverona,1594\n'scape,1,twogentlemenofverona,1594\npasture,1,twogentlemenofverona,1594\nhostess,1,twogentlemenofverona,1594\nfuture,1,twogentlemenofverona,1594\nforced,1,twogentlemenofverona,1594\ntournaments,1,twogentlemenofverona,1594\nlease,1,twogentlemenofverona,1594\nlaughed,1,twogentlemenofverona,1594\nimpatiently,1,twogentlemenofverona,1594\nAnother,1,twogentlemenofverona,1594\ndistresses,1,twogentlemenofverona,1594\npoesy,1,twogentlemenofverona,1594\ntrusted,1,twogentlemenofverona,1594\nchidden,1,twogentlemenofverona,1594\nmet,1,twogentlemenofverona,1594\nknocked,1,twogentlemenofverona,1594\ntreacherous,1,twogentlemenofverona,1594\nglory,1,twogentlemenofverona,1594\nlamenting,1,twogentlemenofverona,1594\nreadiness,1,twogentlemenofverona,1594\nlikelihoods,1,twogentlemenofverona,1594\nextol,1,twogentlemenofverona,1594\ngentlemanlike,1,twogentlemenofverona,1594\nsovereign,1,twogentlemenofverona,1594\nemployment,1,twogentlemenofverona,1594\nruinous,1,twogentlemenofverona,1594\ndetermine,1,twogentlemenofverona,1594\ngrievously,1,twogentlemenofverona,1594\nseduced,1,twogentlemenofverona,1594\nwhit,1,twogentlemenofverona,1594\nwhip,1,twogentlemenofverona,1594\nthinking,1,twogentlemenofverona,1594\ncounts,1,twogentlemenofverona,1594\nTears,1,twogentlemenofverona,1594\n'Welcome,1,twogentlemenofverona,1594\nelegies,1,twogentlemenofverona,1594\non's,1,twogentlemenofverona,1594\nlion,1,twogentlemenofverona,1594\non't,1,twogentlemenofverona,1594\nAmen,1,twogentlemenofverona,1594\nforgetfulness,1,twogentlemenofverona,1594\nhomage,1,twogentlemenofverona,1594\nmannerly,1,twogentlemenofverona,1594\ntelling,1,twogentlemenofverona,1594\nvolley,1,twogentlemenofverona,1594\nsometimes,1,twogentlemenofverona,1594\nwearisome,1,twogentlemenofverona,1594\nfraud,1,twogentlemenofverona,1594\nflat,1,twogentlemenofverona,1594\nfasting,1,twogentlemenofverona,1594\ninherit,1,twogentlemenofverona,1594\nunworthily,1,twogentlemenofverona,1594\nswum,1,twogentlemenofverona,1594\nlate,1,twogentlemenofverona,1594\nattendants,1,twogentlemenofverona,1594\ntruant,1,twogentlemenofverona,1594\nVII,1,twogentlemenofverona,1594\no'erslips,1,twogentlemenofverona,1594\nterritories,1,twogentlemenofverona,1594\nDone,1,twogentlemenofverona,1594\nstudious,1,twogentlemenofverona,1594\nbesides,1,twogentlemenofverona,1594\njade,1,twogentlemenofverona,1594\nsilver,1,twogentlemenofverona,1594\nrevenged,1,twogentlemenofverona,1594\nApril,1,twogentlemenofverona,1594\nuntuneable,1,twogentlemenofverona,1594\nDisdain,1,twogentlemenofverona,1594\nbreaking,1,twogentlemenofverona,1594\nragged,1,twogentlemenofverona,1594\nstrange,1,twogentlemenofverona,1594\nnature,1,twogentlemenofverona,1594\nLend,1,twogentlemenofverona,1594\ncontend,1,twogentlemenofverona,1594\noracles,1,twogentlemenofverona,1594\nseverely,1,twogentlemenofverona,1594\ncontent,1,twogentlemenofverona,1594\nleading,1,twogentlemenofverona,1594\nundertaking,1,twogentlemenofverona,1594\ndwells,1,twogentlemenofverona,1594\nsilent,1,twogentlemenofverona,1594\nspring,1,twogentlemenofverona,1594\nmalecontent,1,twogentlemenofverona,1594\nleads,1,twogentlemenofverona,1594\nreply,1,twogentlemenofverona,1594\nYou'll,1,twogentlemenofverona,1594\nenjoin'd,1,twogentlemenofverona,1594\nThy,1,twogentlemenofverona,1594\nValerius,1,twogentlemenofverona,1594\nbrag,1,twogentlemenofverona,1594\njudged,1,twogentlemenofverona,1594\ndiscovered,1,twogentlemenofverona,1594\nconfirm,1,twogentlemenofverona,1594\nessence,1,twogentlemenofverona,1594\nprovide,1,twogentlemenofverona,1594\nhonour'd,1,twogentlemenofverona,1594\ndestined,1,twogentlemenofverona,1594\nhappily,1,twogentlemenofverona,1594\nwith't,1,twogentlemenofverona,1594\nnightingale,1,twogentlemenofverona,1594\nhonour's,1,twogentlemenofverona,1594\nmaintenance,1,twogentlemenofverona,1594\nframe,1,twogentlemenofverona,1594\nnodding,1,twogentlemenofverona,1594\nsudden,1,twogentlemenofverona,1594\nlawless,1,twogentlemenofverona,1594\nlongest,1,twogentlemenofverona,1594\ncunningly,1,twogentlemenofverona,1594\nThurio's,1,twogentlemenofverona,1594\nblessing,1,twogentlemenofverona,1594\npillory,1,twogentlemenofverona,1594\nrocks,1,twogentlemenofverona,1594\nWishing,1,twogentlemenofverona,1594\nbred,1,twogentlemenofverona,1594\nliest,1,twogentlemenofverona,1594\ncouples,1,twogentlemenofverona,1594\nwonders,1,twogentlemenofverona,1594\nmonths,1,twogentlemenofverona,1594\nDRAMATIS,1,twogentlemenofverona,1594\nslew,1,twogentlemenofverona,1594\nshake,1,twogentlemenofverona,1594\nspurr'd,1,twogentlemenofverona,1594\nphysician,1,twogentlemenofverona,1594\nTeach,1,twogentlemenofverona,1594\nburden,1,twogentlemenofverona,1594\nbrew,1,twogentlemenofverona,1594\nundergo,1,twogentlemenofverona,1594\nflower,1,twogentlemenofverona,1594\nToo,1,twogentlemenofverona,1594\nrewards,1,twogentlemenofverona,1594\nbargain,1,twogentlemenofverona,1594\nrecord,1,twogentlemenofverona,1594\nobtain,1,twogentlemenofverona,1594\nentreated,1,twogentlemenofverona,1594\nwills,1,twogentlemenofverona,1594\nascend,1,twogentlemenofverona,1594\nsmell,1,twogentlemenofverona,1594\nstol'n,1,twogentlemenofverona,1594\nstings,1,twogentlemenofverona,1594\nprivate,1,twogentlemenofverona,1594\nsourest,1,twogentlemenofverona,1594\ndwelling,1,twogentlemenofverona,1594\nsmelt,1,twogentlemenofverona,1594\njealousy,1,twogentlemenofverona,1594\ngloves,1,twogentlemenofverona,1594\nobtaining,1,twogentlemenofverona,1594\nmutual,1,twogentlemenofverona,1594\namen,1,twogentlemenofverona,1594\nexchequer,1,twogentlemenofverona,1594\ncharity,1,twogentlemenofverona,1594\ntenantless,1,twogentlemenofverona,1594\nparley,1,twogentlemenofverona,1594\nrepair,1,twogentlemenofverona,1594\nsolemnity,1,twogentlemenofverona,1594\nwanteth,1,twogentlemenofverona,1594\n''twas,1,twogentlemenofverona,1594\nshape,1,twogentlemenofverona,1594\nhangman,1,twogentlemenofverona,1594\nunsounded,1,twogentlemenofverona,1594\nmarket,1,twogentlemenofverona,1594\nperhaps,1,twogentlemenofverona,1594\ndirection,1,twogentlemenofverona,1594\nDog,1,twogentlemenofverona,1594\nfading,1,twogentlemenofverona,1594\nturn'd,1,twogentlemenofverona,1594\nfortuned,1,twogentlemenofverona,1594\nTut,1,twogentlemenofverona,1594\nending,1,twogentlemenofverona,1594\nconsents,1,twogentlemenofverona,1594\nnightingale's,1,twogentlemenofverona,1594\nsummer,1,twogentlemenofverona,1594\nattended,2,twogentlemenofverona,1594\ngrandam,2,twogentlemenofverona,1594\nalehouse,2,twogentlemenofverona,1594\ntold,2,twogentlemenofverona,1594\nhorns,2,twogentlemenofverona,1594\nmeed,2,twogentlemenofverona,1594\nsuffer,2,twogentlemenofverona,1594\nLonger,2,twogentlemenofverona,1594\nreputation,2,twogentlemenofverona,1594\nderived,2,twogentlemenofverona,1594\nfathers,2,twogentlemenofverona,1594\nvotary,2,twogentlemenofverona,1594\nwish'd,2,twogentlemenofverona,1594\ntreasure,2,twogentlemenofverona,1594\npeasant,2,twogentlemenofverona,1594\nfollies,2,twogentlemenofverona,1594\nadvantage,2,twogentlemenofverona,1594\nroyal,2,twogentlemenofverona,1594\nesteems,2,twogentlemenofverona,1594\nheart's,2,twogentlemenofverona,1594\nroad,2,twogentlemenofverona,1594\nwhips,2,twogentlemenofverona,1594\nvillain,2,twogentlemenofverona,1594\ncords,2,twogentlemenofverona,1594\nnameless,2,twogentlemenofverona,1594\ncelestial,2,twogentlemenofverona,1594\nbrook,2,twogentlemenofverona,1594\nBeshrew,2,twogentlemenofverona,1594\noffer,2,twogentlemenofverona,1594\nhanged,2,twogentlemenofverona,1594\nwithal,2,twogentlemenofverona,1594\ncowardice,2,twogentlemenofverona,1594\ncalls,2,twogentlemenofverona,1594\nlies,2,twogentlemenofverona,1594\nsore,2,twogentlemenofverona,1594\ncontrary,2,twogentlemenofverona,1594\nwounded,2,twogentlemenofverona,1594\nwhoreson,2,twogentlemenofverona,1594\nboy's,2,twogentlemenofverona,1594\nlaced,2,twogentlemenofverona,1594\nOnce,2,twogentlemenofverona,1594\nPoor,2,twogentlemenofverona,1594\ndelivered,2,twogentlemenofverona,1594\nstock,2,twogentlemenofverona,1594\nline,2,twogentlemenofverona,1594\nsorrows,2,twogentlemenofverona,1594\nbroken,2,twogentlemenofverona,1594\nlily,2,twogentlemenofverona,1594\nKeep,2,twogentlemenofverona,1594\nMuch,2,twogentlemenofverona,1594\nconcerns,2,twogentlemenofverona,1594\nwants,2,twogentlemenofverona,1594\ncalm,2,twogentlemenofverona,1594\nhanging,2,twogentlemenofverona,1594\nglass,2,twogentlemenofverona,1594\ngrievance,2,twogentlemenofverona,1594\nMethinks,2,twogentlemenofverona,1594\nladies',2,twogentlemenofverona,1594\nocean,2,twogentlemenofverona,1594\nexecution,2,twogentlemenofverona,1594\nprevail'd,2,twogentlemenofverona,1594\nbody,2,twogentlemenofverona,1594\n'twere,2,twogentlemenofverona,1594\nsaying,2,twogentlemenofverona,1594\nmerry,2,twogentlemenofverona,1594\nflying,2,twogentlemenofverona,1594\ncarrying,2,twogentlemenofverona,1594\nshe'll,2,twogentlemenofverona,1594\npeevish,2,twogentlemenofverona,1594\nyield,2,twogentlemenofverona,1594\nlove's,2,twogentlemenofverona,1594\nembrace,2,twogentlemenofverona,1594\nsteps,2,twogentlemenofverona,1594\nskill,2,twogentlemenofverona,1594\nFarewell,2,twogentlemenofverona,1594\nshipp'd,2,twogentlemenofverona,1594\nkindly,2,twogentlemenofverona,1594\nwings,2,twogentlemenofverona,1594\nplay'd,2,twogentlemenofverona,1594\nsuffered,2,twogentlemenofverona,1594\nminion,2,twogentlemenofverona,1594\noffence,2,twogentlemenofverona,1594\nworse,2,twogentlemenofverona,1594\neating,2,twogentlemenofverona,1594\nreceived,2,twogentlemenofverona,1594\nseeks,2,twogentlemenofverona,1594\naffected,2,twogentlemenofverona,1594\nwhite,2,twogentlemenofverona,1594\npearl,2,twogentlemenofverona,1594\nLeave,2,twogentlemenofverona,1594\ndespiseth,2,twogentlemenofverona,1594\nspaniel,2,twogentlemenofverona,1594\nempress',2,twogentlemenofverona,1594\nTune,2,twogentlemenofverona,1594\ninfinite,2,twogentlemenofverona,1594\nclaim,2,twogentlemenofverona,1594\nmasters,2,twogentlemenofverona,1594\nwind,2,twogentlemenofverona,1594\nVouchsafe,2,twogentlemenofverona,1594\nmirth,2,twogentlemenofverona,1594\nlength,2,twogentlemenofverona,1594\nknees,2,twogentlemenofverona,1594\nstead,2,twogentlemenofverona,1594\npretty,2,twogentlemenofverona,1594\ncunning,2,twogentlemenofverona,1594\nmeat,2,twogentlemenofverona,1594\nsteel,2,twogentlemenofverona,1594\nwits,2,twogentlemenofverona,1594\nbook,2,twogentlemenofverona,1594\ncolour,2,twogentlemenofverona,1594\npraises,2,twogentlemenofverona,1594\ndeserves,2,twogentlemenofverona,1594\nDo,2,twogentlemenofverona,1594\nhe's,2,twogentlemenofverona,1594\nsick,2,twogentlemenofverona,1594\nmorning,2,twogentlemenofverona,1594\nhas,2,twogentlemenofverona,1594\naboard,2,twogentlemenofverona,1594\nWhile,2,twogentlemenofverona,1594\nfoes,2,twogentlemenofverona,1594\nmeasure,2,twogentlemenofverona,1594\ndeformed,2,twogentlemenofverona,1594\nscarce,2,twogentlemenofverona,1594\nHim,2,twogentlemenofverona,1594\nloath,2,twogentlemenofverona,1594\namong,2,twogentlemenofverona,1594\nsmile,2,twogentlemenofverona,1594\nitself,2,twogentlemenofverona,1594\nborrows,2,twogentlemenofverona,1594\nhopes,2,twogentlemenofverona,1594\nfarthingale,2,twogentlemenofverona,1594\nunless,2,twogentlemenofverona,1594\nbelike,2,twogentlemenofverona,1594\nbeautiful,2,twogentlemenofverona,1594\nquaintly,2,twogentlemenofverona,1594\ntales,2,twogentlemenofverona,1594\nOn,2,twogentlemenofverona,1594\npawn,2,twogentlemenofverona,1594\nhie,2,twogentlemenofverona,1594\n'Imprimis,2,twogentlemenofverona,1594\npleasure,2,twogentlemenofverona,1594\nmeant,2,twogentlemenofverona,1594\nbid,2,twogentlemenofverona,1594\napplaud,2,twogentlemenofverona,1594\nLet's,2,twogentlemenofverona,1594\nHad,2,twogentlemenofverona,1594\npass,2,twogentlemenofverona,1594\nhides,2,twogentlemenofverona,1594\npin,2,twogentlemenofverona,1594\ntreachery,2,twogentlemenofverona,1594\nproud,2,twogentlemenofverona,1594\nstep,2,twogentlemenofverona,1594\nshunn'd,2,twogentlemenofverona,1594\nGone,2,twogentlemenofverona,1594\nblood,2,twogentlemenofverona,1594\nWe,2,twogentlemenofverona,1594\nwriters,2,twogentlemenofverona,1594\ncanker,2,twogentlemenofverona,1594\ngoodly,2,twogentlemenofverona,1594\ncherish'd,2,twogentlemenofverona,1594\ngot,2,twogentlemenofverona,1594\nhomely,2,twogentlemenofverona,1594\nweak,2,twogentlemenofverona,1594\nabbey,2,twogentlemenofverona,1594\nexile,2,twogentlemenofverona,1594\njewel,2,twogentlemenofverona,1594\nfarewell,2,twogentlemenofverona,1594\nswift,2,twogentlemenofverona,1594\nused,2,twogentlemenofverona,1594\nAbout,2,twogentlemenofverona,1594\nvantage,2,twogentlemenofverona,1594\nashamed,2,twogentlemenofverona,1594\ntower,2,twogentlemenofverona,1594\ndogs,2,twogentlemenofverona,1594\nstay'd,2,twogentlemenofverona,1594\naffection,2,twogentlemenofverona,1594\npapers,2,twogentlemenofverona,1594\naim,2,twogentlemenofverona,1594\ngift,2,twogentlemenofverona,1594\nFear,2,twogentlemenofverona,1594\nexcellent,2,twogentlemenofverona,1594\nrepent,2,twogentlemenofverona,1594\nstood,2,twogentlemenofverona,1594\nyes,2,twogentlemenofverona,1594\nstone,2,twogentlemenofverona,1594\nplays,2,twogentlemenofverona,1594\nSebastian,2,twogentlemenofverona,1594\nmanner,2,twogentlemenofverona,1594\nDeliver'd,2,twogentlemenofverona,1594\nidle,2,twogentlemenofverona,1594\nReads,2,twogentlemenofverona,1594\nink,2,twogentlemenofverona,1594\nmiserable,2,twogentlemenofverona,1594\noffer'd,2,twogentlemenofverona,1594\nloss,2,twogentlemenofverona,1594\nwherein,2,twogentlemenofverona,1594\nlest,2,twogentlemenofverona,1594\nthose,2,twogentlemenofverona,1594\ndispose,2,twogentlemenofverona,1594\nGrace,2,twogentlemenofverona,1594\nlock'd,2,twogentlemenofverona,1594\noutrages,2,twogentlemenofverona,1594\njerkin,2,twogentlemenofverona,1594\nhot,2,twogentlemenofverona,1594\nexcels,2,twogentlemenofverona,1594\nthrice,2,twogentlemenofverona,1594\nhark,2,twogentlemenofverona,1594\nHaply,2,twogentlemenofverona,1594\nplot,2,twogentlemenofverona,1594\nsenseless,2,twogentlemenofverona,1594\npale,2,twogentlemenofverona,1594\nRead,2,twogentlemenofverona,1594\nrepeal,2,twogentlemenofverona,1594\nreach,2,twogentlemenofverona,1594\nthinkest,2,twogentlemenofverona,1594\nfour,2,twogentlemenofverona,1594\nfoul,2,twogentlemenofverona,1594\nconfession,2,twogentlemenofverona,1594\nforth,2,twogentlemenofverona,1594\ncity,2,twogentlemenofverona,1594\nopen,2,twogentlemenofverona,1594\nUnder,2,twogentlemenofverona,1594\ncite,2,twogentlemenofverona,1594\npair,2,twogentlemenofverona,1594\nship,2,twogentlemenofverona,1594\nchameleon,2,twogentlemenofverona,1594\ndelight,2,twogentlemenofverona,1594\npaid,2,twogentlemenofverona,1594\nmoney,2,twogentlemenofverona,1594\nspin,2,twogentlemenofverona,1594\nfrown,2,twogentlemenofverona,1594\nentertain'd,2,twogentlemenofverona,1594\nforlorn,2,twogentlemenofverona,1594\nrevenge,2,twogentlemenofverona,1594\nfond,2,twogentlemenofverona,1594\nunkindest,2,twogentlemenofverona,1594\nmayst,2,twogentlemenofverona,1594\nfold,2,twogentlemenofverona,1594\nthanks,2,twogentlemenofverona,1594\nbought,2,twogentlemenofverona,1594\nundone,2,twogentlemenofverona,1594\ndeadly,2,twogentlemenofverona,1594\nHark,2,twogentlemenofverona,1594\njudgment,2,twogentlemenofverona,1594\ntoken,2,twogentlemenofverona,1594\nlonging,2,twogentlemenofverona,1594\nhazard,2,twogentlemenofverona,1594\nwillingly,2,twogentlemenofverona,1594\nroot,2,twogentlemenofverona,1594\nspoken,2,twogentlemenofverona,1594\nHellespont,2,twogentlemenofverona,1594\nNorth,2,twogentlemenofverona,1594\nnotable,2,twogentlemenofverona,1594\ncodpiece,2,twogentlemenofverona,1594\nperceived,2,twogentlemenofverona,1594\nJULIA'S,2,twogentlemenofverona,1594\nreport,2,twogentlemenofverona,1594\nshouldst,2,twogentlemenofverona,1594\nsilence,2,twogentlemenofverona,1594\nthinks,2,twogentlemenofverona,1594\nrare,2,twogentlemenofverona,1594\ndaily,2,twogentlemenofverona,1594\nJew,2,twogentlemenofverona,1594\n'Ay,2,twogentlemenofverona,1594\nwho's,2,twogentlemenofverona,1594\nthreefold,2,twogentlemenofverona,1594\nmouth,2,twogentlemenofverona,1594\nseveral,2,twogentlemenofverona,1594\nanger'd,2,twogentlemenofverona,1594\nsay'st,2,twogentlemenofverona,1594\ntutor,2,twogentlemenofverona,1594\nDost,2,twogentlemenofverona,1594\nlikewise,2,twogentlemenofverona,1594\nexchange,2,twogentlemenofverona,1594\nnod,2,twogentlemenofverona,1594\nteeth,2,twogentlemenofverona,1594\nstars,2,twogentlemenofverona,1594\nconclusion,2,twogentlemenofverona,1594\nknave,2,twogentlemenofverona,1594\njars,2,twogentlemenofverona,1594\nCease,2,twogentlemenofverona,1594\nreading,2,twogentlemenofverona,1594\n'gainst,2,twogentlemenofverona,1594\nCould,2,twogentlemenofverona,1594\n'And,2,twogentlemenofverona,1594\nknown,2,twogentlemenofverona,1594\nquench,2,twogentlemenofverona,1594\nquote,2,twogentlemenofverona,1594\nwoo,2,twogentlemenofverona,1594\nwon,2,twogentlemenofverona,1594\nblow,2,twogentlemenofverona,1594\nAntonio,2,twogentlemenofverona,1594\nPanthino,2,twogentlemenofverona,1594\ntrouble,2,twogentlemenofverona,1594\nsayest,2,twogentlemenofverona,1594\nGiving,2,twogentlemenofverona,1594\nwrath,2,twogentlemenofverona,1594\nWere,2,twogentlemenofverona,1594\nmilder,2,twogentlemenofverona,1594\nproves,2,twogentlemenofverona,1594\nclose,2,twogentlemenofverona,1594\nopinion,2,twogentlemenofverona,1594\nformer,2,twogentlemenofverona,1594\nfive,2,twogentlemenofverona,1594\ncross'd,2,twogentlemenofverona,1594\nonly,2,twogentlemenofverona,1594\nwoes,2,twogentlemenofverona,1594\ndetest,2,twogentlemenofverona,1594\nbeseech,2,twogentlemenofverona,1594\nunseen,2,twogentlemenofverona,1594\nnoddy,2,twogentlemenofverona,1594\nSaw,2,twogentlemenofverona,1594\nsave,2,twogentlemenofverona,1594\nidol,2,twogentlemenofverona,1594\nheavy,2,twogentlemenofverona,1594\nThink,2,twogentlemenofverona,1594\nstick,2,twogentlemenofverona,1594\nearnest,2,twogentlemenofverona,1594\nbelieve,2,twogentlemenofverona,1594\nreceive,2,twogentlemenofverona,1594\n'To,2,twogentlemenofverona,1594\nswinged,2,twogentlemenofverona,1594\ngrowing,2,twogentlemenofverona,1594\noath,2,twogentlemenofverona,1594\nprint,2,twogentlemenofverona,1594\nwood,2,twogentlemenofverona,1594\nrage,2,twogentlemenofverona,1594\nforward,2,twogentlemenofverona,1594\nwanton,2,twogentlemenofverona,1594\nproceeding,2,twogentlemenofverona,1594\nmetamorphosed,2,twogentlemenofverona,1594\nsupper,2,twogentlemenofverona,1594\nbreakfast,2,twogentlemenofverona,1594\nstayed,2,twogentlemenofverona,1594\nbounty,2,twogentlemenofverona,1594\npassenger,2,twogentlemenofverona,1594\nserved,2,twogentlemenofverona,1594\ntaken,2,twogentlemenofverona,1594\nwhat's,2,twogentlemenofverona,1594\nanger,2,twogentlemenofverona,1594\ndevoted,2,twogentlemenofverona,1594\ndumb,2,twogentlemenofverona,1594\nhaply,2,twogentlemenofverona,1594\ndull,2,twogentlemenofverona,1594\nserves,2,twogentlemenofverona,1594\nangry,2,twogentlemenofverona,1594\nfail,2,twogentlemenofverona,1594\ngifts,2,twogentlemenofverona,1594\nglad,2,twogentlemenofverona,1594\nfain,2,twogentlemenofverona,1594\ntable,2,twogentlemenofverona,1594\nground,2,twogentlemenofverona,1594\nminds,2,twogentlemenofverona,1594\nstolen,2,twogentlemenofverona,1594\nTill,2,twogentlemenofverona,1594\nsilly,2,twogentlemenofverona,1594\nfie,2,twogentlemenofverona,1594\nunjust,2,twogentlemenofverona,1594\nfill,2,twogentlemenofverona,1594\nhost,2,twogentlemenofverona,1594\nta'en,2,twogentlemenofverona,1594\ntail,2,twogentlemenofverona,1594\npractise,2,twogentlemenofverona,1594\ndepart,2,twogentlemenofverona,1594\nmates,2,twogentlemenofverona,1594\npatient,2,twogentlemenofverona,1594\ndispraise,2,twogentlemenofverona,1594\ndeliver'd,2,twogentlemenofverona,1594\nwill't,2,twogentlemenofverona,1594\nLeander,2,twogentlemenofverona,1594\nsecrets,2,twogentlemenofverona,1594\nlarge,2,twogentlemenofverona,1594\nWelcome,2,twogentlemenofverona,1594\nlaw,2,twogentlemenofverona,1594\nlay,2,twogentlemenofverona,1594\nman's,2,twogentlemenofverona,1594\ndeparture,2,twogentlemenofverona,1594\nconvey,2,twogentlemenofverona,1594\ngiven,2,twogentlemenofverona,1594\nwild,2,twogentlemenofverona,1594\ndangerous,2,twogentlemenofverona,1594\nhonest,2,twogentlemenofverona,1594\nflood,2,twogentlemenofverona,1594\nWherefore,2,twogentlemenofverona,1594\nfavours,2,twogentlemenofverona,1594\ngiver,2,twogentlemenofverona,1594\nwife,2,twogentlemenofverona,1594\nbeset,2,twogentlemenofverona,1594\nhairs,2,twogentlemenofverona,1594\nlovely,2,twogentlemenofverona,1594\ncontents,2,twogentlemenofverona,1594\nadieu,2,twogentlemenofverona,1594\nlow,2,twogentlemenofverona,1594\nseem,2,twogentlemenofverona,1594\npresence,2,twogentlemenofverona,1594\nadore,2,twogentlemenofverona,1594\nshapes,2,twogentlemenofverona,1594\nthereof,2,twogentlemenofverona,1594\nPray,2,twogentlemenofverona,1594\nunderstands,2,twogentlemenofverona,1594\ntherein,2,twogentlemenofverona,1594\nhours,2,twogentlemenofverona,1594\nentreat,2,twogentlemenofverona,1594\nhuge,2,twogentlemenofverona,1594\nSend,2,twogentlemenofverona,1594\nexceptions,2,twogentlemenofverona,1594\npost,2,twogentlemenofverona,1594\nreputed,2,twogentlemenofverona,1594\nnurse,2,twogentlemenofverona,1594\ndeceive,2,twogentlemenofverona,1594\ncountryman,2,twogentlemenofverona,1594\nprotest,2,twogentlemenofverona,1594\nbetroth'd,2,twogentlemenofverona,1594\nvices,2,twogentlemenofverona,1594\nbegins,2,twogentlemenofverona,1594\nlearn,2,twogentlemenofverona,1594\nremember,2,twogentlemenofverona,1594\ncorrection,2,twogentlemenofverona,1594\nstreet,2,twogentlemenofverona,1594\nburns,2,twogentlemenofverona,1594\nAway,2,twogentlemenofverona,1594\nwound,2,twogentlemenofverona,1594\nmarriage,2,twogentlemenofverona,1594\ncorded,2,twogentlemenofverona,1594\nsimple,2,twogentlemenofverona,1594\nlover's,2,twogentlemenofverona,1594\nemploy,2,twogentlemenofverona,1594\ntherewithal,2,twogentlemenofverona,1594\nasleep,2,twogentlemenofverona,1594\nharsh,2,twogentlemenofverona,1594\nDid,2,twogentlemenofverona,1594\nliquor,2,twogentlemenofverona,1594\nhumbled,2,twogentlemenofverona,1594\ndispatch,2,twogentlemenofverona,1594\ndry,2,twogentlemenofverona,1594\nproclamation,2,twogentlemenofverona,1594\nsuccess,2,twogentlemenofverona,1594\nrescue,2,twogentlemenofverona,1594\nshine,2,twogentlemenofverona,1594\nuncivil,2,twogentlemenofverona,1594\ndrown'd,2,twogentlemenofverona,1594\nten,2,twogentlemenofverona,1594\npower,2,twogentlemenofverona,1594\nremembrance,2,twogentlemenofverona,1594\nshoes,2,twogentlemenofverona,1594\nbreathe,2,twogentlemenofverona,1594\nintends,2,twogentlemenofverona,1594\nundertake,2,twogentlemenofverona,1594\nsands,2,twogentlemenofverona,1594\nenemy,2,twogentlemenofverona,1594\nsharp,2,twogentlemenofverona,1594\nDon,2,twogentlemenofverona,1594\nanswer,3,twogentlemenofverona,1594\nparted,3,twogentlemenofverona,1594\ndays,3,twogentlemenofverona,1594\ntook,3,twogentlemenofverona,1594\nhorse,3,twogentlemenofverona,1594\nPatrick's,3,twogentlemenofverona,1594\nFie,3,twogentlemenofverona,1594\npeace,3,twogentlemenofverona,1594\nhaste,3,twogentlemenofverona,1594\nhealth,3,twogentlemenofverona,1594\nheld,3,twogentlemenofverona,1594\npainted,3,twogentlemenofverona,1594\nsight,3,twogentlemenofverona,1594\nhonourable,3,twogentlemenofverona,1594\nslander,3,twogentlemenofverona,1594\nnought,3,twogentlemenofverona,1594\ncast,3,twogentlemenofverona,1594\nsong,3,twogentlemenofverona,1594\nmistook,3,twogentlemenofverona,1594\nchid,3,twogentlemenofverona,1594\nbirth,3,twogentlemenofverona,1594\nsad,3,twogentlemenofverona,1594\njest,3,twogentlemenofverona,1594\nsaw,3,twogentlemenofverona,1594\nGive,3,twogentlemenofverona,1594\ngracious,3,twogentlemenofverona,1594\nheat,3,twogentlemenofverona,1594\nOnly,3,twogentlemenofverona,1594\nwait,3,twogentlemenofverona,1594\nperjured,3,twogentlemenofverona,1594\nsit,3,twogentlemenofverona,1594\nthink'st,3,twogentlemenofverona,1594\nfavoured,3,twogentlemenofverona,1594\nsuit,3,twogentlemenofverona,1594\nSuch,3,twogentlemenofverona,1594\nwithin,3,twogentlemenofverona,1594\nwages,3,twogentlemenofverona,1594\ngroans,3,twogentlemenofverona,1594\nsends,3,twogentlemenofverona,1594\nThese,3,twogentlemenofverona,1594\nOut,3,twogentlemenofverona,1594\nfellow,3,twogentlemenofverona,1594\nfigure,3,twogentlemenofverona,1594\nhabit,3,twogentlemenofverona,1594\nPardon,3,twogentlemenofverona,1594\nwink,3,twogentlemenofverona,1594\nMusicians,3,twogentlemenofverona,1594\nsteal,3,twogentlemenofverona,1594\naccess,3,twogentlemenofverona,1594\nladyship's,3,twogentlemenofverona,1594\nwise,3,twogentlemenofverona,1594\nThough,3,twogentlemenofverona,1594\nseest,3,twogentlemenofverona,1594\nbold,3,twogentlemenofverona,1594\nharbour,3,twogentlemenofverona,1594\noffice,3,twogentlemenofverona,1594\nmistake,3,twogentlemenofverona,1594\nLove's,3,twogentlemenofverona,1594\nbitter,3,twogentlemenofverona,1594\nrival,3,twogentlemenofverona,1594\nBelike,3,twogentlemenofverona,1594\nsigh,3,twogentlemenofverona,1594\nbed,3,twogentlemenofverona,1594\ndinner,3,twogentlemenofverona,1594\nquick,3,twogentlemenofverona,1594\nForgive,3,twogentlemenofverona,1594\nsooner,3,twogentlemenofverona,1594\nburn,3,twogentlemenofverona,1594\ndote,3,twogentlemenofverona,1594\nwear,3,twogentlemenofverona,1594\nput,3,twogentlemenofverona,1594\ntwice,3,twogentlemenofverona,1594\ncurse,3,twogentlemenofverona,1594\nbud,3,twogentlemenofverona,1594\nlonger,3,twogentlemenofverona,1594\ngate,3,twogentlemenofverona,1594\nimportune,3,twogentlemenofverona,1594\nbegin,3,twogentlemenofverona,1594\npearls,3,twogentlemenofverona,1594\nentertain,3,twogentlemenofverona,1594\nstory,3,twogentlemenofverona,1594\ndeep,3,twogentlemenofverona,1594\nbreath,3,twogentlemenofverona,1594\nvoyage,3,twogentlemenofverona,1594\nair,3,twogentlemenofverona,1594\nCrab,3,twogentlemenofverona,1594\nfavour,3,twogentlemenofverona,1594\nlend,3,twogentlemenofverona,1594\nburied,3,twogentlemenofverona,1594\nspeed,3,twogentlemenofverona,1594\nale,3,twogentlemenofverona,1594\ngentlewoman,3,twogentlemenofverona,1594\nwench,3,twogentlemenofverona,1594\ndoom,3,twogentlemenofverona,1594\nbanished,3,twogentlemenofverona,1594\nMaster,3,twogentlemenofverona,1594\nwhereof,3,twogentlemenofverona,1594\nMyself,3,twogentlemenofverona,1594\ndrift,3,twogentlemenofverona,1594\nresolved,3,twogentlemenofverona,1594\nill,3,twogentlemenofverona,1594\ngreater,3,twogentlemenofverona,1594\nforgot,3,twogentlemenofverona,1594\nclimb,3,twogentlemenofverona,1594\nhardly,3,twogentlemenofverona,1594\nChristian,3,twogentlemenofverona,1594\nknit,3,twogentlemenofverona,1594\nshallow,3,twogentlemenofverona,1594\nMore,3,twogentlemenofverona,1594\nstrings,3,twogentlemenofverona,1594\nexcuse,3,twogentlemenofverona,1594\ncourse,3,twogentlemenofverona,1594\npage,3,twogentlemenofverona,1594\nform,3,twogentlemenofverona,1594\nnightly,3,twogentlemenofverona,1594\nask,3,twogentlemenofverona,1594\nneglect,3,twogentlemenofverona,1594\nalive,3,twogentlemenofverona,1594\nshot,3,twogentlemenofverona,1594\nfood,3,twogentlemenofverona,1594\nobject,3,twogentlemenofverona,1594\nsecret,3,twogentlemenofverona,1594\ntrick,3,twogentlemenofverona,1594\nnew,3,twogentlemenofverona,1594\nhere's,3,twogentlemenofverona,1594\nnote,3,twogentlemenofverona,1594\nproceed,3,twogentlemenofverona,1594\nsirrah,3,twogentlemenofverona,1594\nstrike,3,twogentlemenofverona,1594\nquickly,3,twogentlemenofverona,1594\nyou'll,3,twogentlemenofverona,1594\nparting,3,twogentlemenofverona,1594\nchild,3,twogentlemenofverona,1594\neffect,3,twogentlemenofverona,1594\nlodge,3,twogentlemenofverona,1594\nmilk,3,twogentlemenofverona,1594\nFriar,3,twogentlemenofverona,1594\nqualities,3,twogentlemenofverona,1594\nprize,3,twogentlemenofverona,1594\nplead,3,twogentlemenofverona,1594\nFather,3,twogentlemenofverona,1594\ndream,3,twogentlemenofverona,1594\nmark,3,twogentlemenofverona,1594\nwoe,3,twogentlemenofverona,1594\nslave,3,twogentlemenofverona,1594\nquoth,3,twogentlemenofverona,1594\nlabour,3,twogentlemenofverona,1594\nchide,3,twogentlemenofverona,1594\nspecial,3,twogentlemenofverona,1594\nfather's,3,twogentlemenofverona,1594\nMade,3,twogentlemenofverona,1594\nmistress',3,twogentlemenofverona,1594\nliving,3,twogentlemenofverona,1594\nsalt,3,twogentlemenofverona,1594\nthrow,3,twogentlemenofverona,1594\noft,3,twogentlemenofverona,1594\nwin,3,twogentlemenofverona,1594\nmessage,3,twogentlemenofverona,1594\nfetch,3,twogentlemenofverona,1594\ncount,3,twogentlemenofverona,1594\nThus,3,twogentlemenofverona,1594\nCan,3,twogentlemenofverona,1594\nintend,3,twogentlemenofverona,1594\nfound,3,twogentlemenofverona,1594\ndanger,3,twogentlemenofverona,1594\nHeaven,3,twogentlemenofverona,1594\nweeping,3,twogentlemenofverona,1594\ncompass,3,twogentlemenofverona,1594\nwept,3,twogentlemenofverona,1594\njudge,3,twogentlemenofverona,1594\nfall,3,twogentlemenofverona,1594\namends,3,twogentlemenofverona,1594\nold,3,twogentlemenofverona,1594\ngrant,3,twogentlemenofverona,1594\nmethinks,3,twogentlemenofverona,1594\nthree,3,twogentlemenofverona,1594\npleased,3,twogentlemenofverona,1594\npassing,3,twogentlemenofverona,1594\n'em,3,twogentlemenofverona,1594\nfine,3,twogentlemenofverona,1594\nrich,3,twogentlemenofverona,1594\nne'er,3,twogentlemenofverona,1594\nhose,3,twogentlemenofverona,1594\nUnto,3,twogentlemenofverona,1594\nshows,3,twogentlemenofverona,1594\nherself,3,twogentlemenofverona,1594\nwhither,3,twogentlemenofverona,1594\nnames,3,twogentlemenofverona,1594\nprefer,3,twogentlemenofverona,1594\nemperor,3,twogentlemenofverona,1594\nconstant,3,twogentlemenofverona,1594\nfrontiers,3,twogentlemenofverona,1594\notherwise,3,twogentlemenofverona,1594\nrequest,3,twogentlemenofverona,1594\nvirtues,3,twogentlemenofverona,1594\nseal,3,twogentlemenofverona,1594\nfalsehood,3,twogentlemenofverona,1594\ncomplaining,3,twogentlemenofverona,1594\nswear,3,twogentlemenofverona,1594\ncaptain,3,twogentlemenofverona,1594\nseen,3,twogentlemenofverona,1594\nTrue,3,twogentlemenofverona,1594\nlovers,3,twogentlemenofverona,1594\nleg,3,twogentlemenofverona,1594\nNeither,3,twogentlemenofverona,1594\ntogether,3,twogentlemenofverona,1594\nbade,3,twogentlemenofverona,1594\ncold,3,twogentlemenofverona,1594\nfearing,3,twogentlemenofverona,1594\npurpose,3,twogentlemenofverona,1594\nbestow,3,twogentlemenofverona,1594\near,3,twogentlemenofverona,1594\nevening,3,twogentlemenofverona,1594\nsister,3,twogentlemenofverona,1594\nAccording,3,twogentlemenofverona,1594\nSince,3,twogentlemenofverona,1594\nfled,3,twogentlemenofverona,1594\nhenceforth,3,twogentlemenofverona,1594\nrespects,3,twogentlemenofverona,1594\nthither,3,twogentlemenofverona,1594\nseverally,3,twogentlemenofverona,1594\ncell,3,twogentlemenofverona,1594\ntry,3,twogentlemenofverona,1594\nwitness,3,twogentlemenofverona,1594\nattend,3,twogentlemenofverona,1594\nemperor's,3,twogentlemenofverona,1594\ncertain,3,twogentlemenofverona,1594\nTake,3,twogentlemenofverona,1594\ncross,3,twogentlemenofverona,1594\nking,3,twogentlemenofverona,1594\npossessions,3,twogentlemenofverona,1594\nspirit,3,twogentlemenofverona,1594\nkill,3,twogentlemenofverona,1594\nbids,3,twogentlemenofverona,1594\ne'er,3,twogentlemenofverona,1594\ndie,3,twogentlemenofverona,1594\nValentine's,3,twogentlemenofverona,1594\nfor't,4,twogentlemenofverona,1594\nweary,4,twogentlemenofverona,1594\nwoman's,4,twogentlemenofverona,1594\nthought,4,twogentlemenofverona,1594\nevery,4,twogentlemenofverona,1594\nTell,4,twogentlemenofverona,1594\nhers,4,twogentlemenofverona,1594\nwhile,4,twogentlemenofverona,1594\nsoul,4,twogentlemenofverona,1594\nrun,4,twogentlemenofverona,1594\nWould,4,twogentlemenofverona,1594\nsoon,4,twogentlemenofverona,1594\nWhose,4,twogentlemenofverona,1594\ncircumstance,4,twogentlemenofverona,1594\npurse,4,twogentlemenofverona,1594\nhead,4,twogentlemenofverona,1594\nwarrant,4,twogentlemenofverona,1594\nenough,4,twogentlemenofverona,1594\npenance,4,twogentlemenofverona,1594\nwalk,4,twogentlemenofverona,1594\nscorn,4,twogentlemenofverona,1594\ndeliver,4,twogentlemenofverona,1594\nit's,4,twogentlemenofverona,1594\nServant,4,twogentlemenofverona,1594\nmother,4,twogentlemenofverona,1594\ntaught,4,twogentlemenofverona,1594\nboth,4,twogentlemenofverona,1594\nexpedition,4,twogentlemenofverona,1594\nabove,4,twogentlemenofverona,1594\nfeed,4,twogentlemenofverona,1594\nOne,4,twogentlemenofverona,1594\ndesire,4,twogentlemenofverona,1594\neach,4,twogentlemenofverona,1594\n'Twere,4,twogentlemenofverona,1594\nAn,4,twogentlemenofverona,1594\nneither,4,twogentlemenofverona,1594\npatience,4,twogentlemenofverona,1594\nyouthful,4,twogentlemenofverona,1594\nbad,4,twogentlemenofverona,1594\nHer,4,twogentlemenofverona,1594\nOutlaws,4,twogentlemenofverona,1594\nGood,4,twogentlemenofverona,1594\nweep,4,twogentlemenofverona,1594\ngrief,4,twogentlemenofverona,1594\nRe,4,twogentlemenofverona,1594\nvows,4,twogentlemenofverona,1594\ntravel,4,twogentlemenofverona,1594\ndivine,4,twogentlemenofverona,1594\nresort,4,twogentlemenofverona,1594\nneeds,4,twogentlemenofverona,1594\nBesides,4,twogentlemenofverona,1594\nlady's,4,twogentlemenofverona,1594\nforget,4,twogentlemenofverona,1594\nsmall,4,twogentlemenofverona,1594\nage,4,twogentlemenofverona,1594\nless,4,twogentlemenofverona,1594\njourney,4,twogentlemenofverona,1594\nhand,4,twogentlemenofverona,1594\npraise,4,twogentlemenofverona,1594\nstones,4,twogentlemenofverona,1594\nbosom,4,twogentlemenofverona,1594\nexcept,4,twogentlemenofverona,1594\nass,4,twogentlemenofverona,1594\nHath,4,twogentlemenofverona,1594\nSilvia's,4,twogentlemenofverona,1594\nthrough,4,twogentlemenofverona,1594\nmoved,4,twogentlemenofverona,1594\nmutton,4,twogentlemenofverona,1594\nPeace,4,twogentlemenofverona,1594\nsubstance,4,twogentlemenofverona,1594\nstays,4,twogentlemenofverona,1594\nignorant,4,twogentlemenofverona,1594\nLook,4,twogentlemenofverona,1594\nfoolish,4,twogentlemenofverona,1594\nalready,4,twogentlemenofverona,1594\nknows,4,twogentlemenofverona,1594\nflatter,4,twogentlemenofverona,1594\nBeing,4,twogentlemenofverona,1594\naffairs,4,twogentlemenofverona,1594\ngrave,4,twogentlemenofverona,1594\nnear,4,twogentlemenofverona,1594\npound,4,twogentlemenofverona,1594\nWe'll,4,twogentlemenofverona,1594\nsorrow,4,twogentlemenofverona,1594\nloving,4,twogentlemenofverona,1594\nheard,4,twogentlemenofverona,1594\nlikes,4,twogentlemenofverona,1594\nstaff,4,twogentlemenofverona,1594\nwont,4,twogentlemenofverona,1594\nnext,4,twogentlemenofverona,1594\nduke,4,twogentlemenofverona,1594\nmarry,4,twogentlemenofverona,1594\nmodesty,4,twogentlemenofverona,1594\ndesert,4,twogentlemenofverona,1594\ndiscover,4,twogentlemenofverona,1594\nperfect,4,twogentlemenofverona,1594\nbare,4,twogentlemenofverona,1594\nlordship,4,twogentlemenofverona,1594\nwealth,4,twogentlemenofverona,1594\nhope,4,twogentlemenofverona,1594\nLet,4,twogentlemenofverona,1594\nwilt,4,twogentlemenofverona,1594\npardon,4,twogentlemenofverona,1594\nholy,4,twogentlemenofverona,1594\nfollows,4,twogentlemenofverona,1594\nalways,4,twogentlemenofverona,1594\nback,4,twogentlemenofverona,1594\ncry,4,twogentlemenofverona,1594\nheavenly,4,twogentlemenofverona,1594\nself,4,twogentlemenofverona,1594\nhither,4,twogentlemenofverona,1594\ngoes,4,twogentlemenofverona,1594\nperjury,4,twogentlemenofverona,1594\nleast,4,twogentlemenofverona,1594\nExcept,4,twogentlemenofverona,1594\nIndeed,4,twogentlemenofverona,1594\nlast,4,twogentlemenofverona,1594\nrespect,4,twogentlemenofverona,1594\ndare,4,twogentlemenofverona,1594\nLest,4,twogentlemenofverona,1594\nboots,4,twogentlemenofverona,1594\nwouldst,4,twogentlemenofverona,1594\nwomen,4,twogentlemenofverona,1594\nV,5,twogentlemenofverona,1594\ntimes,5,twogentlemenofverona,1594\nadvice,5,twogentlemenofverona,1594\nhelp,5,twogentlemenofverona,1594\nWill,5,twogentlemenofverona,1594\nWilt,5,twogentlemenofverona,1594\njoy,5,twogentlemenofverona,1594\nrather,5,twogentlemenofverona,1594\nsighs,5,twogentlemenofverona,1594\nunder,5,twogentlemenofverona,1594\ntruth,5,twogentlemenofverona,1594\ntrust,5,twogentlemenofverona,1594\nNor,5,twogentlemenofverona,1594\nblack,5,twogentlemenofverona,1594\nsea,5,twogentlemenofverona,1594\nbeloved,5,twogentlemenofverona,1594\nlooks,5,twogentlemenofverona,1594\nread,5,twogentlemenofverona,1594\nwrong,5,twogentlemenofverona,1594\nconfer,5,twogentlemenofverona,1594\nthence,5,twogentlemenofverona,1594\nabout,5,twogentlemenofverona,1594\nsun,5,twogentlemenofverona,1594\nwant,5,twogentlemenofverona,1594\nknow'st,5,twogentlemenofverona,1594\nperfection,5,twogentlemenofverona,1594\ncanst,5,twogentlemenofverona,1594\nstay,5,twogentlemenofverona,1594\nforce,5,twogentlemenofverona,1594\ntear,5,twogentlemenofverona,1594\nmeans,5,twogentlemenofverona,1594\nenter,5,twogentlemenofverona,1594\nplay,5,twogentlemenofverona,1594\nsing,5,twogentlemenofverona,1594\nhands,5,twogentlemenofverona,1594\ncommend,5,twogentlemenofverona,1594\nlover,5,twogentlemenofverona,1594\nlost,5,twogentlemenofverona,1594\ntwenty,5,twogentlemenofverona,1594\nknew,5,twogentlemenofverona,1594\nplace,5,twogentlemenofverona,1594\nbrought,5,twogentlemenofverona,1594\npart,5,twogentlemenofverona,1594\nkeep,5,twogentlemenofverona,1594\nmessenger,5,twogentlemenofverona,1594\npresent,5,twogentlemenofverona,1594\nthough,5,twogentlemenofverona,1594\nshoe,5,twogentlemenofverona,1594\ngirl,5,twogentlemenofverona,1594\ntouch,5,twogentlemenofverona,1594\nShould,5,twogentlemenofverona,1594\nwater,5,twogentlemenofverona,1594\nthings,5,twogentlemenofverona,1594\nFrom,5,twogentlemenofverona,1594\nunhappy,5,twogentlemenofverona,1594\nforest,5,twogentlemenofverona,1594\nawhile,5,twogentlemenofverona,1594\nLord,5,twogentlemenofverona,1594\nhigh,5,twogentlemenofverona,1594\nThey,5,twogentlemenofverona,1594\nonce,5,twogentlemenofverona,1594\nworthless,5,twogentlemenofverona,1594\nletters,5,twogentlemenofverona,1594\nbefore,5,twogentlemenofverona,1594\nlosing,5,twogentlemenofverona,1594\noff,5,twogentlemenofverona,1594\nhappiness,5,twogentlemenofverona,1594\nSay,5,twogentlemenofverona,1594\nflight,5,twogentlemenofverona,1594\ncoming,5,twogentlemenofverona,1594\ntakes,5,twogentlemenofverona,1594\nfly,5,twogentlemenofverona,1594\nworship,5,twogentlemenofverona,1594\ntalk,5,twogentlemenofverona,1594\ncarry,5,twogentlemenofverona,1594\ncur,5,twogentlemenofverona,1594\nJulia's,5,twogentlemenofverona,1594\nKnow,5,twogentlemenofverona,1594\ntied,5,twogentlemenofverona,1594\nsend,5,twogentlemenofverona,1594\nMistress,5,twogentlemenofverona,1594\nfirst,5,twogentlemenofverona,1594\nlie,5,twogentlemenofverona,1594\nNothing,5,twogentlemenofverona,1594\nsleep,5,twogentlemenofverona,1594\nfashion,5,twogentlemenofverona,1594\nWithout,5,twogentlemenofverona,1594\ngoing,5,twogentlemenofverona,1594\ncommand,5,twogentlemenofverona,1594\nforbear,5,twogentlemenofverona,1594\ncare,6,twogentlemenofverona,1594\ncame,6,twogentlemenofverona,1594\nstands,6,twogentlemenofverona,1594\nlight,6,twogentlemenofverona,1594\ncounsel,6,twogentlemenofverona,1594\nturn,6,twogentlemenofverona,1594\nfault,6,twogentlemenofverona,1594\nblind,6,twogentlemenofverona,1594\nPlease,6,twogentlemenofverona,1594\nwish,6,twogentlemenofverona,1594\nwindow,6,twogentlemenofverona,1594\nWhat's,6,twogentlemenofverona,1594\nIII,6,twogentlemenofverona,1594\nAt,6,twogentlemenofverona,1594\nBe,6,twogentlemenofverona,1594\nkept,6,twogentlemenofverona,1594\ntongue,6,twogentlemenofverona,1594\npains,6,twogentlemenofverona,1594\nleft,6,twogentlemenofverona,1594\ndear,6,twogentlemenofverona,1594\nthyself,6,twogentlemenofverona,1594\nspend,6,twogentlemenofverona,1594\npure,6,twogentlemenofverona,1594\nMantua,6,twogentlemenofverona,1594\nforsworn,6,twogentlemenofverona,1594\nAre,6,twogentlemenofverona,1594\nhaving,6,twogentlemenofverona,1594\nchange,6,twogentlemenofverona,1594\noften,6,twogentlemenofverona,1594\nnay,6,twogentlemenofverona,1594\nnone,6,twogentlemenofverona,1594\ntender,6,twogentlemenofverona,1594\nyoung,6,twogentlemenofverona,1594\nere,6,twogentlemenofverona,1594\ncloak,6,twogentlemenofverona,1594\nnor,6,twogentlemenofverona,1594\nend,6,twogentlemenofverona,1594\ndidst,6,twogentlemenofverona,1594\nAll,6,twogentlemenofverona,1594\nneed,6,twogentlemenofverona,1594\nover,6,twogentlemenofverona,1594\nfire,6,twogentlemenofverona,1594\nthine,6,twogentlemenofverona,1594\nbreak,6,twogentlemenofverona,1594\nduty,6,twogentlemenofverona,1594\nserve,6,twogentlemenofverona,1594\nDUKE's,6,twogentlemenofverona,1594\nfit,6,twogentlemenofverona,1594\nlines,6,twogentlemenofverona,1594\nhour,6,twogentlemenofverona,1594\ntill,6,twogentlemenofverona,1594\nfast,6,twogentlemenofverona,1594\nlives,6,twogentlemenofverona,1594\nwe'll,6,twogentlemenofverona,1594\nlovest,6,twogentlemenofverona,1594\ntide,6,twogentlemenofverona,1594\nreturn,6,twogentlemenofverona,1594\nmatch,6,twogentlemenofverona,1594\nmaster's,6,twogentlemenofverona,1594\nslow,6,twogentlemenofverona,1594\nwrite,6,twogentlemenofverona,1594\nvirtue,6,twogentlemenofverona,1594\nshame,6,twogentlemenofverona,1594\nAlas,7,twogentlemenofverona,1594\nbecome,7,twogentlemenofverona,1594\nyourself,7,twogentlemenofverona,1594\ndeath,7,twogentlemenofverona,1594\nset,7,twogentlemenofverona,1594\nfaults,7,twogentlemenofverona,1594\nIV,7,twogentlemenofverona,1594\nwhose,7,twogentlemenofverona,1594\ndost,7,twogentlemenofverona,1594\nshadow,7,twogentlemenofverona,1594\npicture,7,twogentlemenofverona,1594\nsaid,7,twogentlemenofverona,1594\nUnless,7,twogentlemenofverona,1594\ndead,7,twogentlemenofverona,1594\nearth,7,twogentlemenofverona,1594\nYet,7,twogentlemenofverona,1594\nshow,7,twogentlemenofverona,1594\nye,7,twogentlemenofverona,1594\nfar,7,twogentlemenofverona,1594\nfaith,7,twogentlemenofverona,1594\neye,7,twogentlemenofverona,1594\nSome,7,twogentlemenofverona,1594\nbecause,7,twogentlemenofverona,1594\nwho,7,twogentlemenofverona,1594\nget,7,twogentlemenofverona,1594\nmorrow,7,twogentlemenofverona,1594\nway,7,twogentlemenofverona,1594\nface,7,twogentlemenofverona,1594\nhappy,7,twogentlemenofverona,1594\nhair,7,twogentlemenofverona,1594\ntune,7,twogentlemenofverona,1594\npalace,7,twogentlemenofverona,1594\nSweet,7,twogentlemenofverona,1594\nfind,7,twogentlemenofverona,1594\nbase,7,twogentlemenofverona,1594\ngreat,7,twogentlemenofverona,1594\nalong,7,twogentlemenofverona,1594\nseek,7,twogentlemenofverona,1594\nhouse,7,twogentlemenofverona,1594\ntwo,7,twogentlemenofverona,1594\nfollow,7,twogentlemenofverona,1594\nwithout,7,twogentlemenofverona,1594\nshalt,7,twogentlemenofverona,1594\noaths,7,twogentlemenofverona,1594\nLaunce,7,twogentlemenofverona,1594\npity,8,twogentlemenofverona,1594\nlife,8,twogentlemenofverona,1594\nworld,8,twogentlemenofverona,1594\nsure,8,twogentlemenofverona,1594\nagainst,8,twogentlemenofverona,1594\nson,8,twogentlemenofverona,1594\nhonour,8,twogentlemenofverona,1594\nrest,8,twogentlemenofverona,1594\nprove,8,twogentlemenofverona,1594\nOr,8,twogentlemenofverona,1594\nay,8,twogentlemenofverona,1594\nloves,8,twogentlemenofverona,1594\nBecause,8,twogentlemenofverona,1594\nhard,8,twogentlemenofverona,1594\ndiscourse,8,twogentlemenofverona,1594\nladder,8,twogentlemenofverona,1594\nhate,8,twogentlemenofverona,1594\nThan,8,twogentlemenofverona,1594\nHave,8,twogentlemenofverona,1594\nmaid,8,twogentlemenofverona,1594\nindeed,8,twogentlemenofverona,1594\ninto,8,twogentlemenofverona,1594\nVerona,8,twogentlemenofverona,1594\nyours,8,twogentlemenofverona,1594\nmany,8,twogentlemenofverona,1594\nstand,8,twogentlemenofverona,1594\ncourt,8,twogentlemenofverona,1594\nbanish'd,8,twogentlemenofverona,1594\nEven,8,twogentlemenofverona,1594\nperceive,8,twogentlemenofverona,1594\nshepherd,8,twogentlemenofverona,1594\nreason,8,twogentlemenofverona,1594\nalone,8,twogentlemenofverona,1594\nuse,8,twogentlemenofverona,1594\npoor,8,twogentlemenofverona,1594\nthoughts,8,twogentlemenofverona,1594\nbeauty,8,twogentlemenofverona,1594\nmight,8,twogentlemenofverona,1594\nwoman,8,twogentlemenofverona,1594\nhimself,8,twogentlemenofverona,1594\nother,8,twogentlemenofverona,1594\nmeet,9,twogentlemenofverona,1594\nfriends,9,twogentlemenofverona,1594\npaper,9,twogentlemenofverona,1594\nfull,9,twogentlemenofverona,1594\nbring,9,twogentlemenofverona,1594\ntherefore,9,twogentlemenofverona,1594\nsince,9,twogentlemenofverona,1594\ndown,9,twogentlemenofverona,1594\nSo,9,twogentlemenofverona,1594\nbear,9,twogentlemenofverona,1594\nfool,9,twogentlemenofverona,1594\nYour,9,twogentlemenofverona,1594\nTherefore,9,twogentlemenofverona,1594\ncomes,9,twogentlemenofverona,1594\nThird,9,twogentlemenofverona,1594\ncould,9,twogentlemenofverona,1594\nThat's,9,twogentlemenofverona,1594\nfortune,9,twogentlemenofverona,1594\nplease,9,twogentlemenofverona,1594\nkiss,9,twogentlemenofverona,1594\nhold,9,twogentlemenofverona,1594\nhome,9,twogentlemenofverona,1594\nwhom,9,twogentlemenofverona,1594\nlive,9,twogentlemenofverona,1594\nkind,9,twogentlemenofverona,1594\nmistress,10,twogentlemenofverona,1594\ndaughter,10,twogentlemenofverona,1594\nworthy,10,twogentlemenofverona,1594\nservice,10,twogentlemenofverona,1594\nheaven,10,twogentlemenofverona,1594\nmatter,10,twogentlemenofverona,1594\nmusic,10,twogentlemenofverona,1594\nHis,10,twogentlemenofverona,1594\nIn,10,twogentlemenofverona,1594\nLucetta,10,twogentlemenofverona,1594\nany,10,twogentlemenofverona,1594\nmost,10,twogentlemenofverona,1594\nloved,10,twogentlemenofverona,1594\nwelcome,10,twogentlemenofverona,1594\nfolly,10,twogentlemenofverona,1594\nunto,10,twogentlemenofverona,1594\nMarry,10,twogentlemenofverona,1594\ntears,11,twogentlemenofverona,1594\nUpon,11,twogentlemenofverona,1594\ncall,11,twogentlemenofverona,1594\nbetter,11,twogentlemenofverona,1594\nworth,11,twogentlemenofverona,1594\nThere,11,twogentlemenofverona,1594\nEglamour,11,twogentlemenofverona,1594\nOf,11,twogentlemenofverona,1594\nsheep,11,twogentlemenofverona,1594\nlong,11,twogentlemenofverona,1594\nSecond,11,twogentlemenofverona,1594\nlittle,11,twogentlemenofverona,1594\nEGLAMOUR,11,twogentlemenofverona,1594\nsame,11,twogentlemenofverona,1594\nthing,11,twogentlemenofverona,1594\nsake,11,twogentlemenofverona,1594\nring,11,twogentlemenofverona,1594\nMilan,11,twogentlemenofverona,1594\nnews,11,twogentlemenofverona,1594\ncompany,11,twogentlemenofverona,1594\neven,11,twogentlemenofverona,1594\nday,11,twogentlemenofverona,1594\nthousand,11,twogentlemenofverona,1594\ngentlemen,11,twogentlemenofverona,1594\nthank,11,twogentlemenofverona,1594\neyes,11,twogentlemenofverona,1594\nthus,11,twogentlemenofverona,1594\nsent,11,twogentlemenofverona,1594\nNot,12,twogentlemenofverona,1594\nafter,12,twogentlemenofverona,1594\nHere,12,twogentlemenofverona,1594\nname,12,twogentlemenofverona,1594\nBy,12,twogentlemenofverona,1594\nboy,12,twogentlemenofverona,1594\nII,12,twogentlemenofverona,1594\nnight,12,twogentlemenofverona,1594\nagain,12,twogentlemenofverona,1594\nsays,12,twogentlemenofverona,1594\n'Tis,12,twogentlemenofverona,1594\never,12,twogentlemenofverona,1594\nwords,13,twogentlemenofverona,1594\nanother,13,twogentlemenofverona,1594\nWho,13,twogentlemenofverona,1594\nnothing,13,twogentlemenofverona,1594\nfear,13,twogentlemenofverona,1594\nfalse,13,twogentlemenofverona,1594\nhence,13,twogentlemenofverona,1594\nladyship,13,twogentlemenofverona,1594\nIt,13,twogentlemenofverona,1594\nbest,13,twogentlemenofverona,1594\ngave,13,twogentlemenofverona,1594\ndoth,13,twogentlemenofverona,1594\nthat's,13,twogentlemenofverona,1594\nFirst,13,twogentlemenofverona,1594\nmade,13,twogentlemenofverona,1594\nmind,13,twogentlemenofverona,1594\nstill,13,twogentlemenofverona,1594\nown,13,twogentlemenofverona,1594\nmen,13,twogentlemenofverona,1594\nWhere,13,twogentlemenofverona,1594\nmean,14,twogentlemenofverona,1594\nthese,14,twogentlemenofverona,1594\nchamber,14,twogentlemenofverona,1594\nGo,14,twogentlemenofverona,1594\ndone,14,twogentlemenofverona,1594\nlose,14,twogentlemenofverona,1594\nup,14,twogentlemenofverona,1594\nANTONIO,14,twogentlemenofverona,1594\npresently,14,twogentlemenofverona,1594\nhear,15,twogentlemenofverona,1594\nAside,15,twogentlemenofverona,1594\nelse,15,twogentlemenofverona,1594\nnever,15,twogentlemenofverona,1594\ngone,15,twogentlemenofverona,1594\ngrace,15,twogentlemenofverona,1594\nus,15,twogentlemenofverona,1594\nyouth,15,twogentlemenofverona,1594\nThen,15,twogentlemenofverona,1594\nwhy,15,twogentlemenofverona,1594\ngentleman,15,twogentlemenofverona,1594\nleave,15,twogentlemenofverona,1594\nmakes,15,twogentlemenofverona,1594\nwrit,16,twogentlemenofverona,1594\npray,16,twogentlemenofverona,1594\nservant,16,twogentlemenofverona,1594\nspeak,16,twogentlemenofverona,1594\ngentle,16,twogentlemenofverona,1594\nWell,16,twogentlemenofverona,1594\nword,16,twogentlemenofverona,1594\nbeing,16,twogentlemenofverona,1594\nWhen,16,twogentlemenofverona,1594\naway,17,twogentlemenofverona,1594\nIs,17,twogentlemenofverona,1594\nvery,17,twogentlemenofverona,1594\nwit,17,twogentlemenofverona,1594\ntrue,17,twogentlemenofverona,1594\nNay,18,twogentlemenofverona,1594\ntell,18,twogentlemenofverona,1594\nHe,18,twogentlemenofverona,1594\nlook,18,twogentlemenofverona,1594\nLove,18,twogentlemenofverona,1594\n'Item,18,twogentlemenofverona,1594\nWith,19,twogentlemenofverona,1594\nHost,19,twogentlemenofverona,1594\nWhich,19,twogentlemenofverona,1594\nExeunt,19,twogentlemenofverona,1594\nbeen,19,twogentlemenofverona,1594\ngive,19,twogentlemenofverona,1594\nart,19,twogentlemenofverona,1594\nhast,19,twogentlemenofverona,1594\nwhere,19,twogentlemenofverona,1594\nheart,19,twogentlemenofverona,1594\nfather,19,twogentlemenofverona,1594\nCome,20,twogentlemenofverona,1594\nPANTHINO,20,twogentlemenofverona,1594\nACT,20,twogentlemenofverona,1594\nThou,20,twogentlemenofverona,1594\nThis,20,twogentlemenofverona,1594\ntake,20,twogentlemenofverona,1594\nVERONA,21,twogentlemenofverona,1594\nor,21,twogentlemenofverona,1594\nTWO,21,twogentlemenofverona,1594\nTHE,21,twogentlemenofverona,1594\nfair,21,twogentlemenofverona,1594\ncome,21,twogentlemenofverona,1594\nsweet,21,twogentlemenofverona,1594\nGENTLEMEN,21,twogentlemenofverona,1594\nSCENE,21,twogentlemenofverona,1594\nlady,21,twogentlemenofverona,1594\nupon,22,twogentlemenofverona,1594\nOF,22,twogentlemenofverona,1594\nmyself,22,twogentlemenofverona,1594\nout,22,twogentlemenofverona,1594\ndog,22,twogentlemenofverona,1594\nwhich,23,twogentlemenofverona,1594\nThurio,23,twogentlemenofverona,1594\nhad,23,twogentlemenofverona,1594\nthere,23,twogentlemenofverona,1594\nMy,23,twogentlemenofverona,1594\nYou,23,twogentlemenofverona,1594\nmadam,23,twogentlemenofverona,1594\nNow,24,twogentlemenofverona,1594\nlord,24,twogentlemenofverona,1594\nMadam,24,twogentlemenofverona,1594\ntime,24,twogentlemenofverona,1594\ndid,25,twogentlemenofverona,1594\nfriend,26,twogentlemenofverona,1594\n'tis,26,twogentlemenofverona,1594\nExit,26,twogentlemenofverona,1594\nsee,27,twogentlemenofverona,1594\nNo,27,twogentlemenofverona,1594\ntheir,27,twogentlemenofverona,1594\nlet,27,twogentlemenofverona,1594\ntoo,27,twogentlemenofverona,1594\nmust,28,twogentlemenofverona,1594\nwe,28,twogentlemenofverona,1594\nletter,28,twogentlemenofverona,1594\nA,29,twogentlemenofverona,1594\nAs,29,twogentlemenofverona,1594\nmine,29,twogentlemenofverona,1594\nJulia,29,twogentlemenofverona,1594\nman,29,twogentlemenofverona,1594\nhow,30,twogentlemenofverona,1594\nhere,31,twogentlemenofverona,1594\nsay,31,twogentlemenofverona,1594\nsome,31,twogentlemenofverona,1594\nthey,31,twogentlemenofverona,1594\nan,31,twogentlemenofverona,1594\nmake,31,twogentlemenofverona,1594\nmaster,31,twogentlemenofverona,1594\nmay,31,twogentlemenofverona,1594\nOutlaw,32,twogentlemenofverona,1594\ncan,32,twogentlemenofverona,1594\nwere,32,twogentlemenofverona,1594\ngo,33,twogentlemenofverona,1594\nshould,33,twogentlemenofverona,1594\nthink,33,twogentlemenofverona,1594\nour,33,twogentlemenofverona,1594\ncannot,33,twogentlemenofverona,1594\nlike,34,twogentlemenofverona,1594\nIf,34,twogentlemenofverona,1594\nyet,34,twogentlemenofverona,1594\nknow,34,twogentlemenofverona,1594\nAy,36,twogentlemenofverona,1594\nmuch,37,twogentlemenofverona,1594\nthen,37,twogentlemenofverona,1594\nsuch,37,twogentlemenofverona,1594\nwhen,37,twogentlemenofverona,1594\na,294,twogentlemenofverona,1594\nsir,39,twogentlemenofverona,1594\nwell,40,twogentlemenofverona,1594\nthan,41,twogentlemenofverona,1594\nHow,41,twogentlemenofverona,1594\nyou,297,twogentlemenofverona,1594\nEnter,42,twogentlemenofverona,1594\nwas,42,twogentlemenofverona,1594\nO,44,twogentlemenofverona,1594\nFor,44,twogentlemenofverona,1594\nat,44,twogentlemenofverona,1594\nwhat,44,twogentlemenofverona,1594\nShe,45,twogentlemenofverona,1594\nthem,46,twogentlemenofverona,1594\nam,46,twogentlemenofverona,1594\nI'll,46,twogentlemenofverona,1594\none,46,twogentlemenofverona,1594\nI,558,twogentlemenofverona,1594\ngood,47,twogentlemenofverona,1594\nTHURIO,48,twogentlemenofverona,1594\nmore,49,twogentlemenofverona,1594\nhath,49,twogentlemenofverona,1594\n',50,twogentlemenofverona,1594\nWhy,50,twogentlemenofverona,1594\nif,50,twogentlemenofverona,1594\nnow,51,twogentlemenofverona,1594\nshall,51,twogentlemenofverona,1594\nno,52,twogentlemenofverona,1594\nLUCETTA,53,twogentlemenofverona,1594\nSir,53,twogentlemenofverona,1594\nSilvia,53,twogentlemenofverona,1594\nThe,53,twogentlemenofverona,1594\nDUKE,55,twogentlemenofverona,1594\nProteus,56,twogentlemenofverona,1594\nWhat,56,twogentlemenofverona,1594\nValentine,58,twogentlemenofverona,1594\nall,58,twogentlemenofverona,1594\nwould,60,twogentlemenofverona,1594\nfrom,62,twogentlemenofverona,1594\non,63,twogentlemenofverona,1594\nThat,64,twogentlemenofverona,1594\nare,66,twogentlemenofverona,1594\nby,69,twogentlemenofverona,1594\nBut,69,twogentlemenofverona,1594\nSILVIA,70,twogentlemenofverona,1594\ndo,70,twogentlemenofverona,1594\nTo,73,twogentlemenofverona,1594\nLAUNCE,75,twogentlemenofverona,1594\nbut,79,twogentlemenofverona,1594\nthee,84,twogentlemenofverona,1594\nhe,84,twogentlemenofverona,1594\nhim,87,twogentlemenofverona,1594\nthis,90,twogentlemenofverona,1594\nhis,93,twogentlemenofverona,1594\nthe,353,twogentlemenofverona,1594\nthy,98,twogentlemenofverona,1594\nso,102,twogentlemenofverona,1594\nwill,104,twogentlemenofverona,1594\nas,107,twogentlemenofverona,1594\nJULIA,115,twogentlemenofverona,1594\nto,373,twogentlemenofverona,1594\nthou,122,twogentlemenofverona,1594\nshe,124,twogentlemenofverona,1594\nSPEED,125,twogentlemenofverona,1594\nhave,129,twogentlemenofverona,1594\nwith,133,twogentlemenofverona,1594\nbe,144,twogentlemenofverona,1594\nlove,147,twogentlemenofverona,1594\nyour,154,twogentlemenofverona,1594\nVALENTINE,158,twogentlemenofverona,1594\nit,162,twogentlemenofverona,1594\nPROTEUS,162,twogentlemenofverona,1594\nin,167,twogentlemenofverona,1594\nAnd,169,twogentlemenofverona,1594\nfor,184,twogentlemenofverona,1594\nnot,189,twogentlemenofverona,1594\nher,197,twogentlemenofverona,1594\nis,205,twogentlemenofverona,1594\nthat,221,twogentlemenofverona,1594\nof,224,twogentlemenofverona,1594\nme,235,twogentlemenofverona,1594\nmy,253,twogentlemenofverona,1594\nand,255,twogentlemenofverona,1594\ncourageously,1,midsummersnightsdream,1595\nbrave,1,midsummersnightsdream,1595\nshrewishness,1,midsummersnightsdream,1595\nholding,1,midsummersnightsdream,1595\nbefal,1,midsummersnightsdream,1595\noverbear,1,midsummersnightsdream,1595\nanswered,1,midsummersnightsdream,1595\nheed,1,midsummersnightsdream,1595\nshepherd's,1,midsummersnightsdream,1595\nFrancis,1,midsummersnightsdream,1595\nasses,1,midsummersnightsdream,1595\njole,1,midsummersnightsdream,1595\nmoral,1,midsummersnightsdream,1595\nQuick,1,midsummersnightsdream,1595\nadvised,1,midsummersnightsdream,1595\nV,1,midsummersnightsdream,1595\ngrew,1,midsummersnightsdream,1595\nswords,1,midsummersnightsdream,1595\nflowerets',1,midsummersnightsdream,1595\nTaurus,1,midsummersnightsdream,1595\ngrey,1,midsummersnightsdream,1595\nLimander,1,midsummersnightsdream,1595\nlamentable,1,midsummersnightsdream,1595\nc,1,midsummersnightsdream,1595\nsuffer,1,midsummersnightsdream,1595\naddress'd,1,midsummersnightsdream,1595\nsmiles,1,midsummersnightsdream,1595\nYours,1,midsummersnightsdream,1595\nStir,1,midsummersnightsdream,1595\nplainest,1,midsummersnightsdream,1595\nextremity,1,midsummersnightsdream,1595\ndrop,1,midsummersnightsdream,1595\necho,1,midsummersnightsdream,1595\ndined,1,midsummersnightsdream,1595\nplaster,1,midsummersnightsdream,1595\nderived,1,midsummersnightsdream,1595\nfathers,1,midsummersnightsdream,1595\nmotion,1,midsummersnightsdream,1595\ncheer'd,1,midsummersnightsdream,1595\nyielding,1,midsummersnightsdream,1595\npreferred,1,midsummersnightsdream,1595\nrank'd,1,midsummersnightsdream,1595\ncountry,1,midsummersnightsdream,1595\ntruer,1,midsummersnightsdream,1595\nforswear,1,midsummersnightsdream,1595\nwrit,1,midsummersnightsdream,1595\nburn'd,1,midsummersnightsdream,1595\nBacchanals,1,midsummersnightsdream,1595\ndisturb,1,midsummersnightsdream,1595\nflower's,1,midsummersnightsdream,1595\npossible,1,midsummersnightsdream,1595\nespy,1,midsummersnightsdream,1595\ntyrant's,1,midsummersnightsdream,1595\nSkim,1,midsummersnightsdream,1595\nhempen,1,midsummersnightsdream,1595\nDaphne,1,midsummersnightsdream,1595\nTITANIA's,1,midsummersnightsdream,1595\nNew,1,midsummersnightsdream,1595\ngray,1,midsummersnightsdream,1595\ntorn,1,midsummersnightsdream,1595\nhindering,1,midsummersnightsdream,1595\nadvantage,1,midsummersnightsdream,1595\nAbide,1,midsummersnightsdream,1595\nfemale,1,midsummersnightsdream,1595\nroyal,1,midsummersnightsdream,1595\nbrows,1,midsummersnightsdream,1595\nWhether,1,midsummersnightsdream,1595\nlower,1,midsummersnightsdream,1595\nhasty,1,midsummersnightsdream,1595\ndagger,1,midsummersnightsdream,1595\nrock,1,midsummersnightsdream,1595\ndistill'd,1,midsummersnightsdream,1595\nbones,1,midsummersnightsdream,1595\npurge,1,midsummersnightsdream,1595\nbreathless,1,midsummersnightsdream,1595\npatched,1,midsummersnightsdream,1595\nanoint,1,midsummersnightsdream,1595\noffended,1,midsummersnightsdream,1595\nwren,1,midsummersnightsdream,1595\nhealth,1,midsummersnightsdream,1595\nknitteth,1,midsummersnightsdream,1595\nrod,1,midsummersnightsdream,1595\npatches,1,midsummersnightsdream,1595\nmend,1,midsummersnightsdream,1595\nwisher's,1,midsummersnightsdream,1595\nWilt,1,midsummersnightsdream,1595\nchiding,1,midsummersnightsdream,1595\nday's,1,midsummersnightsdream,1595\nbrands,1,midsummersnightsdream,1595\ntesty,1,midsummersnightsdream,1595\nboys,1,midsummersnightsdream,1595\nmelt,1,midsummersnightsdream,1595\nheld,1,midsummersnightsdream,1595\nsealing,1,midsummersnightsdream,1595\nswifter,1,midsummersnightsdream,1595\ndrowsy,1,midsummersnightsdream,1595\nVenus',1,midsummersnightsdream,1595\nlaughter,1,midsummersnightsdream,1595\nwarning,1,midsummersnightsdream,1595\nWeeds,1,midsummersnightsdream,1595\nthrostle,1,midsummersnightsdream,1595\nneedles,1,midsummersnightsdream,1595\nNeptune,1,midsummersnightsdream,1595\nmomentany,1,midsummersnightsdream,1595\nwrap,1,midsummersnightsdream,1595\nrichest,1,midsummersnightsdream,1595\nfinger,1,midsummersnightsdream,1595\nplainer,1,midsummersnightsdream,1595\nimitate,1,midsummersnightsdream,1595\ngoverness,1,midsummersnightsdream,1595\ncelestial,1,midsummersnightsdream,1595\nWhereat,1,midsummersnightsdream,1595\nblossom,1,midsummersnightsdream,1595\ncomest,1,midsummersnightsdream,1595\nUnworthy,1,midsummersnightsdream,1595\nbroom,1,midsummersnightsdream,1595\nbrook,1,midsummersnightsdream,1595\nBeshrew,1,midsummersnightsdream,1595\nhearted,1,midsummersnightsdream,1595\noffer,1,midsummersnightsdream,1595\nparadise,1,midsummersnightsdream,1595\nFar,1,midsummersnightsdream,1595\nrid,1,midsummersnightsdream,1595\nAmazon,1,midsummersnightsdream,1595\nadvance,1,midsummersnightsdream,1595\nHelen's,1,midsummersnightsdream,1595\nfury,1,midsummersnightsdream,1595\nScorn,1,midsummersnightsdream,1595\ndrink,1,midsummersnightsdream,1595\nmatch'd,1,midsummersnightsdream,1595\nrubies,1,midsummersnightsdream,1595\nSisters,1,midsummersnightsdream,1595\nterribly,1,midsummersnightsdream,1595\nlaugh,1,midsummersnightsdream,1595\nribbons,1,midsummersnightsdream,1595\nworms,1,midsummersnightsdream,1595\nadmirable,1,midsummersnightsdream,1595\nwormy,1,midsummersnightsdream,1595\nlapp'd,1,midsummersnightsdream,1595\nAsleep,1,midsummersnightsdream,1595\nivy,1,midsummersnightsdream,1595\ndamned,1,midsummersnightsdream,1595\nworm's,1,midsummersnightsdream,1595\nsisters',1,midsummersnightsdream,1595\nminimus,1,midsummersnightsdream,1595\nlids,1,midsummersnightsdream,1595\nfables,1,midsummersnightsdream,1595\nkinder,1,midsummersnightsdream,1595\nlied,1,midsummersnightsdream,1595\ndisobedience,1,midsummersnightsdream,1595\nabound,1,midsummersnightsdream,1595\nWhom,1,midsummersnightsdream,1595\nNought,1,midsummersnightsdream,1595\nwing'd,1,midsummersnightsdream,1595\nentice,1,midsummersnightsdream,1595\nPERSONAE,1,midsummersnightsdream,1595\nOpening,1,midsummersnightsdream,1595\nmarshal,1,midsummersnightsdream,1595\nRoaring,1,midsummersnightsdream,1595\nclamorous,1,midsummersnightsdream,1595\nspare,1,midsummersnightsdream,1595\ncloister,1,midsummersnightsdream,1595\nlightning,1,midsummersnightsdream,1595\nPretty,1,midsummersnightsdream,1595\nearly,1,midsummersnightsdream,1595\ngarment,1,midsummersnightsdream,1595\nliar,1,midsummersnightsdream,1595\nworser,1,midsummersnightsdream,1595\nswimming,1,midsummersnightsdream,1595\nvast,1,midsummersnightsdream,1595\npractised,1,midsummersnightsdream,1595\nstirring,1,midsummersnightsdream,1595\nextort,1,midsummersnightsdream,1595\nstrength,1,midsummersnightsdream,1595\nspinners,1,midsummersnightsdream,1595\ngraces,1,midsummersnightsdream,1595\ninconstant,1,midsummersnightsdream,1595\nseven,1,midsummersnightsdream,1595\ncharge,1,midsummersnightsdream,1595\nwanderers,1,midsummersnightsdream,1595\ngiant,1,midsummersnightsdream,1595\nspied,1,midsummersnightsdream,1595\nconscience,1,midsummersnightsdream,1595\ntarrying,1,midsummersnightsdream,1595\nForsook,1,midsummersnightsdream,1595\nperforming,1,midsummersnightsdream,1595\nlakin,1,midsummersnightsdream,1595\nEffect,1,midsummersnightsdream,1595\nyears,1,midsummersnightsdream,1595\nSwift,1,midsummersnightsdream,1595\nJove,1,midsummersnightsdream,1595\nhighness,1,midsummersnightsdream,1595\nbroach'd,1,midsummersnightsdream,1595\nriddles,1,midsummersnightsdream,1595\npilgrimage,1,midsummersnightsdream,1595\nwitnesseth,1,midsummersnightsdream,1595\nlily,1,midsummersnightsdream,1595\nConsent,1,midsummersnightsdream,1595\nluscious,1,midsummersnightsdream,1595\npatent,1,midsummersnightsdream,1595\nheat,1,midsummersnightsdream,1595\nconcerns,1,midsummersnightsdream,1595\nstalls,1,midsummersnightsdream,1595\nfunction,1,midsummersnightsdream,1595\ntoward,1,midsummersnightsdream,1595\ndrew,1,midsummersnightsdream,1595\nmeddling,1,midsummersnightsdream,1595\nfrolic,1,midsummersnightsdream,1595\nheadless,1,midsummersnightsdream,1595\nwants,1,midsummersnightsdream,1595\ndwarf,1,midsummersnightsdream,1595\nstreak,1,midsummersnightsdream,1595\ndogged,1,midsummersnightsdream,1595\nvoices,1,midsummersnightsdream,1595\ngross,1,midsummersnightsdream,1595\npaper,1,midsummersnightsdream,1595\nbragging,1,midsummersnightsdream,1595\nTarry,1,midsummersnightsdream,1595\nmaking,1,midsummersnightsdream,1595\nEyes,1,midsummersnightsdream,1595\ncongealed,1,midsummersnightsdream,1595\nEthiope,1,midsummersnightsdream,1595\nfools,1,midsummersnightsdream,1595\nPale,1,midsummersnightsdream,1595\nsoft,1,midsummersnightsdream,1595\ntoys,1,midsummersnightsdream,1595\nbated,1,midsummersnightsdream,1595\nNod,1,midsummersnightsdream,1595\nerrs,1,midsummersnightsdream,1595\nWedded,1,midsummersnightsdream,1595\nwait,1,midsummersnightsdream,1595\nlesser,1,midsummersnightsdream,1595\namity,1,midsummersnightsdream,1595\nboar,1,midsummersnightsdream,1595\nAmazons,1,midsummersnightsdream,1595\nperjured,1,midsummersnightsdream,1595\ncankers,1,midsummersnightsdream,1595\nadmiring,1,midsummersnightsdream,1595\ncompanies,1,midsummersnightsdream,1595\nGentle,1,midsummersnightsdream,1595\nsnakes,1,midsummersnightsdream,1595\nunwished,1,midsummersnightsdream,1595\nmonster's,1,midsummersnightsdream,1595\nPerchance,1,midsummersnightsdream,1595\nbarky,1,midsummersnightsdream,1595\ndeserve,1,midsummersnightsdream,1595\npillow,1,midsummersnightsdream,1595\nGently,1,midsummersnightsdream,1595\nshe's,1,midsummersnightsdream,1595\nprovender,1,midsummersnightsdream,1595\nconceits,1,midsummersnightsdream,1595\nsix,1,midsummersnightsdream,1595\nPainted,1,midsummersnightsdream,1595\nshames,1,midsummersnightsdream,1595\nAccompany,1,midsummersnightsdream,1595\nthroned,1,midsummersnightsdream,1595\nPresenteth,1,midsummersnightsdream,1595\nI'd,1,midsummersnightsdream,1595\nmock'st,1,midsummersnightsdream,1595\nspheres,1,midsummersnightsdream,1595\n'Ninus',1,midsummersnightsdream,1595\nhail'd,1,midsummersnightsdream,1595\nhistory,1,midsummersnightsdream,1595\nprevail'd,1,midsummersnightsdream,1595\nwarrant,1,midsummersnightsdream,1595\nBeteem,1,midsummersnightsdream,1595\norbs,1,midsummersnightsdream,1595\nrememberest,1,midsummersnightsdream,1595\nUttering,1,midsummersnightsdream,1595\ndeceased,1,midsummersnightsdream,1595\npaying,1,midsummersnightsdream,1595\nclerks,1,midsummersnightsdream,1595\nengilds,1,midsummersnightsdream,1595\nlaugh'd,1,midsummersnightsdream,1595\nNewts,1,midsummersnightsdream,1595\nentwist,1,midsummersnightsdream,1595\n'A,1,midsummersnightsdream,1595\nwalk,1,midsummersnightsdream,1595\nsaying,1,midsummersnightsdream,1595\nholla'd,1,midsummersnightsdream,1595\nWrite,1,midsummersnightsdream,1595\ncatching,1,midsummersnightsdream,1595\nsociety,1,midsummersnightsdream,1595\nlanguish,1,midsummersnightsdream,1595\nchronicled,1,midsummersnightsdream,1595\nlions,1,midsummersnightsdream,1595\ngeese,1,midsummersnightsdream,1595\nabused,1,midsummersnightsdream,1595\nmanager,1,midsummersnightsdream,1595\nfrosts,1,midsummersnightsdream,1595\nglide,1,midsummersnightsdream,1595\nnine,1,midsummersnightsdream,1595\nconcern,1,midsummersnightsdream,1595\neternally,1,midsummersnightsdream,1595\nactor,1,midsummersnightsdream,1595\nringlets,1,midsummersnightsdream,1595\nbirds,1,midsummersnightsdream,1595\nCorin,1,midsummersnightsdream,1595\nTempt,1,midsummersnightsdream,1595\nblessedness,1,midsummersnightsdream,1595\ncradle,1,midsummersnightsdream,1595\nworth,1,midsummersnightsdream,1595\nnymphs,1,midsummersnightsdream,1595\nchurch,1,midsummersnightsdream,1595\nWake,1,midsummersnightsdream,1595\ndisordered,1,midsummersnightsdream,1595\nwinds,1,midsummersnightsdream,1595\nextempore,1,midsummersnightsdream,1595\nWar,1,midsummersnightsdream,1595\nSilence,1,midsummersnightsdream,1595\nusual,1,midsummersnightsdream,1595\nstern,1,midsummersnightsdream,1595\nunharden'd,1,midsummersnightsdream,1595\nChanting,1,midsummersnightsdream,1595\nvidelicet,1,midsummersnightsdream,1595\nlivery,1,midsummersnightsdream,1595\n't,1,midsummersnightsdream,1595\nWait,1,midsummersnightsdream,1595\nExtremely,1,midsummersnightsdream,1595\nHeavens,1,midsummersnightsdream,1595\ninterchanged,1,midsummersnightsdream,1595\ndisgrace,1,midsummersnightsdream,1595\nstudy,1,midsummersnightsdream,1595\nmiddle,1,midsummersnightsdream,1595\nbeloved,1,midsummersnightsdream,1595\nDevoutly,1,midsummersnightsdream,1595\nOther,1,midsummersnightsdream,1595\nstuff,1,midsummersnightsdream,1595\nthin,1,midsummersnightsdream,1595\nplay'd,1,midsummersnightsdream,1595\nbetwixt,1,midsummersnightsdream,1595\nbecomes,1,midsummersnightsdream,1595\nconjunction,1,midsummersnightsdream,1595\ncondole,1,midsummersnightsdream,1595\namiss,1,midsummersnightsdream,1595\ndaughter's,1,midsummersnightsdream,1595\ngriffin,1,midsummersnightsdream,1595\nsuck'd,1,midsummersnightsdream,1595\nMerry,1,midsummersnightsdream,1595\ncrannied,1,midsummersnightsdream,1595\nloosed,1,midsummersnightsdream,1595\nrear,1,midsummersnightsdream,1595\nshriek,1,midsummersnightsdream,1595\noffence,1,midsummersnightsdream,1595\neverlasting,1,midsummersnightsdream,1595\nmerit,1,midsummersnightsdream,1595\nfelt,1,midsummersnightsdream,1595\nimagining,1,midsummersnightsdream,1595\nfreckles,1,midsummersnightsdream,1595\ngrunt,1,midsummersnightsdream,1595\npassed,1,midsummersnightsdream,1595\nfortunately,1,midsummersnightsdream,1595\n'Ladies,1,midsummersnightsdream,1595\npoints,1,midsummersnightsdream,1595\npiece,1,midsummersnightsdream,1595\nunkindly,1,midsummersnightsdream,1595\nturf,1,midsummersnightsdream,1595\nsilliest,1,midsummersnightsdream,1595\nskies,1,midsummersnightsdream,1595\nmarred,1,midsummersnightsdream,1595\nMuses,1,midsummersnightsdream,1595\ntwelve,1,midsummersnightsdream,1595\nways,1,midsummersnightsdream,1595\nonions,1,midsummersnightsdream,1595\ntorturing,1,midsummersnightsdream,1595\nroundel,1,midsummersnightsdream,1595\nworlds,1,midsummersnightsdream,1595\nchoughs,1,midsummersnightsdream,1595\nmoulded,1,midsummersnightsdream,1595\ntempting,1,midsummersnightsdream,1595\nkill'd,1,midsummersnightsdream,1595\nrounded,1,midsummersnightsdream,1595\nTurn,1,midsummersnightsdream,1595\nprosecute,1,midsummersnightsdream,1595\nabsence,1,midsummersnightsdream,1595\nruns,1,midsummersnightsdream,1595\nloathed,1,midsummersnightsdream,1595\neyelid,1,midsummersnightsdream,1595\nbrow'd,1,midsummersnightsdream,1595\nterms,1,midsummersnightsdream,1595\nconfer,1,midsummersnightsdream,1595\ncommit,1,midsummersnightsdream,1595\nSound,1,midsummersnightsdream,1595\nWink,1,midsummersnightsdream,1595\nstung,1,midsummersnightsdream,1595\nmark'd,1,midsummersnightsdream,1595\nPardon,1,midsummersnightsdream,1595\nshowers,1,midsummersnightsdream,1595\noverflown,1,midsummersnightsdream,1595\nswoon,1,midsummersnightsdream,1595\nworthy,1,midsummersnightsdream,1595\nWherein,1,midsummersnightsdream,1595\npageant,1,midsummersnightsdream,1595\nStarting,1,midsummersnightsdream,1595\nmemories,1,midsummersnightsdream,1595\nshining,1,midsummersnightsdream,1595\nsinger,1,midsummersnightsdream,1595\nvanished,1,midsummersnightsdream,1595\ncompanion,1,midsummersnightsdream,1595\naccent,1,midsummersnightsdream,1595\nbride,1,midsummersnightsdream,1595\nhonour,1,midsummersnightsdream,1595\nbowl,1,midsummersnightsdream,1595\nfeel,1,midsummersnightsdream,1595\nTelling,1,midsummersnightsdream,1595\nlegg'd,1,midsummersnightsdream,1595\nplainly,1,midsummersnightsdream,1595\nblink,1,midsummersnightsdream,1595\ndesirest,1,midsummersnightsdream,1595\nwinded,1,midsummersnightsdream,1595\nsaucy,1,midsummersnightsdream,1595\nswore,1,midsummersnightsdream,1595\n'scaped,1,midsummersnightsdream,1595\nodorous,1,midsummersnightsdream,1595\neglantine,1,midsummersnightsdream,1595\ncuckoo,1,midsummersnightsdream,1595\nconceal,1,midsummersnightsdream,1595\nchoose,1,midsummersnightsdream,1595\nhedgehogs,1,midsummersnightsdream,1595\nSlow,1,midsummersnightsdream,1595\nceremony,1,midsummersnightsdream,1595\nstatures,1,midsummersnightsdream,1595\nclaws,1,midsummersnightsdream,1595\n'Behold,1,midsummersnightsdream,1595\ntiger,1,midsummersnightsdream,1595\nDark,1,midsummersnightsdream,1595\nrarely,1,midsummersnightsdream,1595\nwane,1,midsummersnightsdream,1595\ntitle,1,midsummersnightsdream,1595\nThisne,1,midsummersnightsdream,1595\nlatter,1,midsummersnightsdream,1595\nlength,1,midsummersnightsdream,1595\nrent,1,midsummersnightsdream,1595\nAdvancing,1,midsummersnightsdream,1595\nsmartly,1,midsummersnightsdream,1595\nsphery,1,midsummersnightsdream,1595\nabjure,1,midsummersnightsdream,1595\nscorning,1,midsummersnightsdream,1595\nTroop,1,midsummersnightsdream,1595\nhates,1,midsummersnightsdream,1595\nbolt,1,midsummersnightsdream,1595\ndies,1,midsummersnightsdream,1595\ndisplease,1,midsummersnightsdream,1595\nThough,1,midsummersnightsdream,1595\nSickness,1,midsummersnightsdream,1595\ntransformed,1,midsummersnightsdream,1595\nEmptying,1,midsummersnightsdream,1595\nseest,1,midsummersnightsdream,1595\nImmediately,1,midsummersnightsdream,1595\ndied,1,midsummersnightsdream,1595\nPrecious,1,midsummersnightsdream,1595\nmead,1,midsummersnightsdream,1595\nmurder,1,midsummersnightsdream,1595\noxlips,1,midsummersnightsdream,1595\nbladed,1,midsummersnightsdream,1595\nthrows,1,midsummersnightsdream,1595\nproperty,1,midsummersnightsdream,1595\nheraldry,1,midsummersnightsdream,1595\ngawds,1,midsummersnightsdream,1595\npierce,1,midsummersnightsdream,1595\nbulls,1,midsummersnightsdream,1595\nstop,1,midsummersnightsdream,1595\nminding,1,midsummersnightsdream,1595\ndistemperature,1,midsummersnightsdream,1595\nwars,1,midsummersnightsdream,1595\ncrescent,1,midsummersnightsdream,1595\nrere,1,midsummersnightsdream,1595\nduring,1,midsummersnightsdream,1595\nsunny,1,midsummersnightsdream,1595\ntriple,1,midsummersnightsdream,1595\nrule,1,midsummersnightsdream,1595\nshuts,1,midsummersnightsdream,1595\nconsecrate,1,midsummersnightsdream,1595\nlunatic,1,midsummersnightsdream,1595\nslayeth,1,midsummersnightsdream,1595\nsteep,1,midsummersnightsdream,1595\nsteel,1,midsummersnightsdream,1595\ncrazed,1,midsummersnightsdream,1595\nrules,1,midsummersnightsdream,1595\nwits,1,midsummersnightsdream,1595\nobserve,1,midsummersnightsdream,1595\ncreeping,1,midsummersnightsdream,1595\nbook,1,midsummersnightsdream,1595\nmanly,1,midsummersnightsdream,1595\nmanhood,1,midsummersnightsdream,1595\nGlance,1,midsummersnightsdream,1595\nuneven,1,midsummersnightsdream,1595\ntend,1,midsummersnightsdream,1595\nknee'd,1,midsummersnightsdream,1595\ncreated,1,midsummersnightsdream,1595\nschooling,1,midsummersnightsdream,1595\nsympathy,1,midsummersnightsdream,1595\njudgement,1,midsummersnightsdream,1595\nhungry,1,midsummersnightsdream,1595\nharmonious,1,midsummersnightsdream,1595\nwittiest,1,midsummersnightsdream,1595\nintelligence,1,midsummersnightsdream,1595\nfairest,1,midsummersnightsdream,1595\novercast,1,midsummersnightsdream,1595\nbig,1,midsummersnightsdream,1595\nbristled,1,midsummersnightsdream,1595\nmistaken,1,midsummersnightsdream,1595\nscandal,1,midsummersnightsdream,1595\nrival,1,midsummersnightsdream,1595\nmulberry,1,midsummersnightsdream,1595\nsanded,1,midsummersnightsdream,1595\nsnores,1,midsummersnightsdream,1595\ncontrived,1,midsummersnightsdream,1595\nmerriment,1,midsummersnightsdream,1595\ntapers,1,midsummersnightsdream,1595\nTakes,1,midsummersnightsdream,1595\nunkind,1,midsummersnightsdream,1595\n'tide,1,midsummersnightsdream,1595\nmelancholy,1,midsummersnightsdream,1595\nbob,1,midsummersnightsdream,1595\nbog,1,midsummersnightsdream,1595\nousel,1,midsummersnightsdream,1595\ntrippingly,1,midsummersnightsdream,1595\nsnuff,1,midsummersnightsdream,1595\nwanting,1,midsummersnightsdream,1595\nHERNIA,1,midsummersnightsdream,1595\nimprinted,1,midsummersnightsdream,1595\nDraws,1,midsummersnightsdream,1595\nBelike,1,midsummersnightsdream,1595\nutter,1,midsummersnightsdream,1595\nrefuse,1,midsummersnightsdream,1595\nKnacks,1,midsummersnightsdream,1595\nstreams,1,midsummersnightsdream,1595\nchaplet,1,midsummersnightsdream,1595\nAh,1,midsummersnightsdream,1595\nprevailment,1,midsummersnightsdream,1595\nAm,1,midsummersnightsdream,1595\nstubborn,1,midsummersnightsdream,1595\npay,1,midsummersnightsdream,1595\nfogs,1,midsummersnightsdream,1595\nHit,1,midsummersnightsdream,1595\nfool's,1,midsummersnightsdream,1595\nneither,1,midsummersnightsdream,1595\nchaste,1,midsummersnightsdream,1595\nheresy,1,midsummersnightsdream,1595\nHie,1,midsummersnightsdream,1595\nloathing,1,midsummersnightsdream,1595\nblows,1,midsummersnightsdream,1595\nloath,1,midsummersnightsdream,1595\nWhiles,1,midsummersnightsdream,1595\nBecomes,1,midsummersnightsdream,1595\nwash'd,1,midsummersnightsdream,1595\nsmile,1,midsummersnightsdream,1595\nHaving,1,midsummersnightsdream,1595\nspots,1,midsummersnightsdream,1595\nScornful,1,midsummersnightsdream,1595\ntold'st,1,midsummersnightsdream,1595\nBy'r,1,midsummersnightsdream,1595\nLo,1,midsummersnightsdream,1595\nprodigious,1,midsummersnightsdream,1595\nsecretly,1,midsummersnightsdream,1595\nwarrior,1,midsummersnightsdream,1595\nsensible,1,midsummersnightsdream,1595\nsiege,1,midsummersnightsdream,1595\npays,1,midsummersnightsdream,1595\ncherries,1,midsummersnightsdream,1595\nfoal,1,midsummersnightsdream,1595\n'low',1,midsummersnightsdream,1595\nembarked,1,midsummersnightsdream,1595\nblots,1,midsummersnightsdream,1595\nWall's,1,midsummersnightsdream,1595\nCentaurs,1,midsummersnightsdream,1595\ngentleness,1,midsummersnightsdream,1595\ndoves,1,midsummersnightsdream,1595\nhymns,1,midsummersnightsdream,1595\nlisten,1,midsummersnightsdream,1595\noverhear,1,midsummersnightsdream,1595\ncreature,1,midsummersnightsdream,1595\nAnswer,1,midsummersnightsdream,1595\nbeautiful,1,midsummersnightsdream,1595\nPat,1,midsummersnightsdream,1595\nbrings,1,midsummersnightsdream,1595\ntales,1,midsummersnightsdream,1595\npen,1,midsummersnightsdream,1595\nOh,1,midsummersnightsdream,1595\nhandicraft,1,midsummersnightsdream,1595\nenter'd,1,midsummersnightsdream,1595\nconjoin'd,1,midsummersnightsdream,1595\nhabitation,1,midsummersnightsdream,1595\n'long,1,midsummersnightsdream,1595\nmedicine,1,midsummersnightsdream,1595\napprove,1,midsummersnightsdream,1595\nhipped,1,midsummersnightsdream,1595\nbee,1,midsummersnightsdream,1595\nHo,1,midsummersnightsdream,1595\nkinds,1,midsummersnightsdream,1595\nsovereignty,1,midsummersnightsdream,1595\nmeant,1,midsummersnightsdream,1595\nteam,1,midsummersnightsdream,1595\nowner,1,midsummersnightsdream,1595\ndeserved,1,midsummersnightsdream,1595\nease,1,midsummersnightsdream,1595\nfatted,1,midsummersnightsdream,1595\nconstraineth,1,midsummersnightsdream,1595\nwither'd,1,midsummersnightsdream,1595\neast,1,midsummersnightsdream,1595\nconqueror,1,midsummersnightsdream,1595\nLet's,1,midsummersnightsdream,1595\nHad,1,midsummersnightsdream,1595\nenrich,1,midsummersnightsdream,1595\nfinch,1,midsummersnightsdream,1595\nmermaid,1,midsummersnightsdream,1595\nbuys,1,midsummersnightsdream,1595\nstem,1,midsummersnightsdream,1595\nwedded,1,midsummersnightsdream,1595\nstep,1,midsummersnightsdream,1595\ntemples,1,midsummersnightsdream,1595\nIs't,1,midsummersnightsdream,1595\nUp,1,midsummersnightsdream,1595\nthighs,1,midsummersnightsdream,1595\nbrawls,1,midsummersnightsdream,1595\nquantity,1,midsummersnightsdream,1595\nAthens',1,midsummersnightsdream,1595\nRising,1,midsummersnightsdream,1595\nblameless,1,midsummersnightsdream,1595\nheads,1,midsummersnightsdream,1595\nquiet,1,midsummersnightsdream,1595\nkiss'd,1,midsummersnightsdream,1595\ndevices,1,midsummersnightsdream,1595\nAdieu,1,midsummersnightsdream,1595\ngod,1,midsummersnightsdream,1595\nmountain's,1,midsummersnightsdream,1595\nhaunt,1,midsummersnightsdream,1595\nmadmen,1,midsummersnightsdream,1595\ncrawling,1,midsummersnightsdream,1595\nespies,1,midsummersnightsdream,1595\nbull,1,midsummersnightsdream,1595\nweep,1,midsummersnightsdream,1595\ngave,1,midsummersnightsdream,1595\nmorning's,1,midsummersnightsdream,1595\nmechanicals,1,midsummersnightsdream,1595\nDance,1,midsummersnightsdream,1595\nbouncing,1,midsummersnightsdream,1595\nstraw,1,midsummersnightsdream,1595\nbusy,1,midsummersnightsdream,1595\nstray,1,midsummersnightsdream,1595\ncanker,1,midsummersnightsdream,1595\ndays',1,midsummersnightsdream,1595\nburr,1,midsummersnightsdream,1595\nimagine,1,midsummersnightsdream,1595\nbury,1,midsummersnightsdream,1595\nburn,1,midsummersnightsdream,1595\nimmediately,1,midsummersnightsdream,1595\ncar,1,midsummersnightsdream,1595\nhymn,1,midsummersnightsdream,1595\nchildren,1,midsummersnightsdream,1595\nmadman,1,midsummersnightsdream,1595\nawaked,1,midsummersnightsdream,1595\nhoneysuckle,1,midsummersnightsdream,1595\nunheedy,1,midsummersnightsdream,1595\naltar,1,midsummersnightsdream,1595\nhoary,1,midsummersnightsdream,1595\ntricks,1,midsummersnightsdream,1595\nWings,1,midsummersnightsdream,1595\ndevilish,1,midsummersnightsdream,1595\ndarkling,1,midsummersnightsdream,1595\nanything,1,midsummersnightsdream,1595\ndevised,1,midsummersnightsdream,1595\nSave,1,midsummersnightsdream,1595\ncanopied,1,midsummersnightsdream,1595\nimperial,1,midsummersnightsdream,1595\nquill,1,midsummersnightsdream,1595\npeople,1,midsummersnightsdream,1595\nValentine,1,midsummersnightsdream,1595\nsilently,1,midsummersnightsdream,1595\nshadow,1,midsummersnightsdream,1595\nWishes,1,midsummersnightsdream,1595\nidleness,1,midsummersnightsdream,1595\nwelkin,1,midsummersnightsdream,1595\nenamell'd,1,midsummersnightsdream,1595\nSaint,1,midsummersnightsdream,1595\npairs,1,midsummersnightsdream,1595\nexile,1,midsummersnightsdream,1595\ncourtesies,1,midsummersnightsdream,1595\ndumbly,1,midsummersnightsdream,1595\ngore,1,midsummersnightsdream,1595\ntranspose,1,midsummersnightsdream,1595\njewel,1,midsummersnightsdream,1595\nCrook,1,midsummersnightsdream,1595\nfarewell,1,midsummersnightsdream,1595\nDidst,1,midsummersnightsdream,1595\ncarpenter,1,midsummersnightsdream,1595\npersuasion,1,midsummersnightsdream,1595\ndespise,1,midsummersnightsdream,1595\nsilk,1,midsummersnightsdream,1595\ntheme,1,midsummersnightsdream,1595\nSink,1,midsummersnightsdream,1595\nfriendly,1,midsummersnightsdream,1595\ndissembling,1,midsummersnightsdream,1595\nanguish,1,midsummersnightsdream,1595\nbum,1,midsummersnightsdream,1595\nsentinel,1,midsummersnightsdream,1595\nhoots,1,midsummersnightsdream,1595\nbadge,1,midsummersnightsdream,1595\nbud,1,midsummersnightsdream,1595\ndespite,1,midsummersnightsdream,1595\nswift,1,midsummersnightsdream,1595\nherein,1,midsummersnightsdream,1595\nbuy,1,midsummersnightsdream,1595\nbeef,1,midsummersnightsdream,1595\nroared,1,midsummersnightsdream,1595\nused,1,midsummersnightsdream,1595\nfrowns,1,midsummersnightsdream,1595\ngaud,1,midsummersnightsdream,1595\nbees,1,midsummersnightsdream,1595\nwheresoe'er,1,midsummersnightsdream,1595\nMeet,1,midsummersnightsdream,1595\nAbout,1,midsummersnightsdream,1595\nmasques,1,midsummersnightsdream,1595\npains,1,midsummersnightsdream,1595\nensue,1,midsummersnightsdream,1595\ngate,1,midsummersnightsdream,1595\nstories,1,midsummersnightsdream,1595\nneeze,1,midsummersnightsdream,1595\nquire,1,midsummersnightsdream,1595\nvantage,1,midsummersnightsdream,1595\nattain'd,1,midsummersnightsdream,1595\nturns,1,midsummersnightsdream,1595\nharbinger,1,midsummersnightsdream,1595\ncrowned,1,midsummersnightsdream,1595\nCadmus,1,midsummersnightsdream,1595\nbeginning,1,midsummersnightsdream,1595\nThessaly,1,midsummersnightsdream,1595\ncrowns,1,midsummersnightsdream,1595\ntongs,1,midsummersnightsdream,1595\nName,1,midsummersnightsdream,1595\npearls,1,midsummersnightsdream,1595\nriver,1,midsummersnightsdream,1595\nsleepers,1,midsummersnightsdream,1595\nenthralled,1,midsummersnightsdream,1595\nGod's,1,midsummersnightsdream,1595\nsorting,1,midsummersnightsdream,1595\npumps,1,midsummersnightsdream,1595\ngovernment,1,midsummersnightsdream,1595\ninterchained,1,midsummersnightsdream,1595\nwretch,1,midsummersnightsdream,1595\nmood,1,midsummersnightsdream,1595\nwhereto,1,midsummersnightsdream,1595\neloquence,1,midsummersnightsdream,1595\nNature's,1,midsummersnightsdream,1595\nCannot,1,midsummersnightsdream,1595\naim,1,midsummersnightsdream,1595\nvoyage,1,midsummersnightsdream,1595\nDurst,1,midsummersnightsdream,1595\nconsecrated,1,midsummersnightsdream,1595\nartificial,1,midsummersnightsdream,1595\nyea,1,midsummersnightsdream,1595\nmole,1,midsummersnightsdream,1595\ngift,1,midsummersnightsdream,1595\nFear,1,midsummersnightsdream,1595\nservant,1,midsummersnightsdream,1595\nPard,1,midsummersnightsdream,1595\nburial,1,midsummersnightsdream,1595\nfaster,1,midsummersnightsdream,1595\nconsider,1,midsummersnightsdream,1595\nsheen,1,midsummersnightsdream,1595\nmoans,1,midsummersnightsdream,1595\nrunaway,1,midsummersnightsdream,1595\nfavour,1,midsummersnightsdream,1595\njewels,1,midsummersnightsdream,1595\nIll,1,midsummersnightsdream,1595\nThrottle,1,midsummersnightsdream,1595\nstood,1,midsummersnightsdream,1595\nbeat,1,midsummersnightsdream,1595\nbean,1,midsummersnightsdream,1595\npromontory,1,midsummersnightsdream,1595\ndebt,1,midsummersnightsdream,1595\nstool,1,midsummersnightsdream,1595\nMaking,1,midsummersnightsdream,1595\nBless,1,midsummersnightsdream,1595\nbead,1,midsummersnightsdream,1595\nApollo,1,midsummersnightsdream,1595\nUnless,1,midsummersnightsdream,1595\ndwell,1,midsummersnightsdream,1595\nplayer,1,midsummersnightsdream,1595\nfountains,1,midsummersnightsdream,1595\nwhereon,1,midsummersnightsdream,1595\noftener,1,midsummersnightsdream,1595\nalmanac,1,midsummersnightsdream,1595\nstone,1,midsummersnightsdream,1595\ntragedy,1,midsummersnightsdream,1595\nplays,1,midsummersnightsdream,1595\nautumn,1,midsummersnightsdream,1595\ndignity,1,midsummersnightsdream,1595\nradiant,1,midsummersnightsdream,1595\nlatch'd,1,midsummersnightsdream,1595\nFeed,1,midsummersnightsdream,1595\nseeing,1,midsummersnightsdream,1595\nsampler,1,midsummersnightsdream,1595\nmulberries,1,midsummersnightsdream,1595\nstain'd,1,midsummersnightsdream,1595\nchilding,1,midsummersnightsdream,1595\nrhymes,1,midsummersnightsdream,1595\ndwarfish,1,midsummersnightsdream,1595\nicy,1,midsummersnightsdream,1595\nbuskin'd,1,midsummersnightsdream,1595\nlighter,1,midsummersnightsdream,1595\nJill,1,midsummersnightsdream,1595\nlaughing,1,midsummersnightsdream,1595\ntreats,1,midsummersnightsdream,1595\nlady's,1,midsummersnightsdream,1595\nPuppet,1,midsummersnightsdream,1595\nice,1,midsummersnightsdream,1595\ngenerally,1,midsummersnightsdream,1595\nattractive,1,midsummersnightsdream,1595\nay,1,midsummersnightsdream,1595\nyields,1,midsummersnightsdream,1595\ncomforts,1,midsummersnightsdream,1595\nale,1,midsummersnightsdream,1595\ncrab,1,midsummersnightsdream,1595\npossess'd,1,midsummersnightsdream,1595\nshed,1,midsummersnightsdream,1595\ngleams,1,midsummersnightsdream,1595\ncruelty,1,midsummersnightsdream,1595\nmanner,1,midsummersnightsdream,1595\nasshead,1,midsummersnightsdream,1595\nNeptune's,1,midsummersnightsdream,1595\ndoor,1,midsummersnightsdream,1595\nfixed,1,midsummersnightsdream,1595\nScratch,1,midsummersnightsdream,1595\ndried,1,midsummersnightsdream,1595\nfeast,1,midsummersnightsdream,1595\nflew'd,1,midsummersnightsdream,1595\noverwatch'd,1,midsummersnightsdream,1595\nfrights,1,midsummersnightsdream,1595\ncowardly,1,midsummersnightsdream,1595\nquestions,1,midsummersnightsdream,1595\nbatty,1,midsummersnightsdream,1595\nboard,1,midsummersnightsdream,1595\ncommend,1,midsummersnightsdream,1595\npursuit,1,midsummersnightsdream,1595\nTransparent,1,midsummersnightsdream,1595\nYonder,1,midsummersnightsdream,1595\nregion,1,midsummersnightsdream,1595\nshears,1,midsummersnightsdream,1595\ncrew,1,midsummersnightsdream,1595\nsqueezes,1,midsummersnightsdream,1595\nmote,1,midsummersnightsdream,1595\ngambol,1,midsummersnightsdream,1595\ncrawl,1,midsummersnightsdream,1595\nabide,1,midsummersnightsdream,1595\nhuntsmen,1,midsummersnightsdream,1595\nplayfellow,1,midsummersnightsdream,1595\nhoard,1,midsummersnightsdream,1595\nMyself,1,midsummersnightsdream,1595\nattendant,1,midsummersnightsdream,1595\nlook'st,1,midsummersnightsdream,1595\nIndia,1,midsummersnightsdream,1595\nage,1,midsummersnightsdream,1595\ncommitt'st,1,midsummersnightsdream,1595\nenmity,1,midsummersnightsdream,1595\nventurous,1,midsummersnightsdream,1595\nBegin,1,midsummersnightsdream,1595\nspell,1,midsummersnightsdream,1595\neverywhere,1,midsummersnightsdream,1595\nLower,1,midsummersnightsdream,1595\nglance,1,midsummersnightsdream,1595\nbegg'd,1,midsummersnightsdream,1595\nmiserable,1,midsummersnightsdream,1595\ntransfigured,1,midsummersnightsdream,1595\nendure,1,midsummersnightsdream,1595\nparents,1,midsummersnightsdream,1595\nspeak'st,1,midsummersnightsdream,1595\nplaying,1,midsummersnightsdream,1595\ndragons,1,midsummersnightsdream,1595\nlest,1,midsummersnightsdream,1595\ndispose,1,midsummersnightsdream,1595\ndole,1,midsummersnightsdream,1595\nknot,1,midsummersnightsdream,1595\nspend,1,midsummersnightsdream,1595\nunfolds,1,midsummersnightsdream,1595\nviolet,1,midsummersnightsdream,1595\nremoved,1,midsummersnightsdream,1595\nlocal,1,midsummersnightsdream,1595\nlets,1,midsummersnightsdream,1595\ndewberries,1,midsummersnightsdream,1595\ngreater,1,midsummersnightsdream,1595\nnimble,1,midsummersnightsdream,1595\nknew,1,midsummersnightsdream,1595\nswaggering,1,midsummersnightsdream,1595\nready,1,midsummersnightsdream,1595\nCreep,1,midsummersnightsdream,1595\npremeditated,1,midsummersnightsdream,1595\ncomposed,1,midsummersnightsdream,1595\nwaggish,1,midsummersnightsdream,1595\nharshness,1,midsummersnightsdream,1595\nmen's,1,midsummersnightsdream,1595\nhot,1,midsummersnightsdream,1595\nhop,1,midsummersnightsdream,1595\nwisest,1,midsummersnightsdream,1595\nharp,1,midsummersnightsdream,1595\nCame,1,midsummersnightsdream,1595\nthrice,1,midsummersnightsdream,1595\nkilled,1,midsummersnightsdream,1595\ngraves,1,midsummersnightsdream,1595\nbrought,1,midsummersnightsdream,1595\nrunning,1,midsummersnightsdream,1595\nplot,1,midsummersnightsdream,1595\ncritical,1,midsummersnightsdream,1595\neasy,1,midsummersnightsdream,1595\nrushy,1,midsummersnightsdream,1595\nhare,1,midsummersnightsdream,1595\nblamed,1,midsummersnightsdream,1595\nJack,1,midsummersnightsdream,1595\npark,1,midsummersnightsdream,1595\nSeeking,1,midsummersnightsdream,1595\nspeaks,1,midsummersnightsdream,1595\nreasonable,1,midsummersnightsdream,1595\nMoth,1,midsummersnightsdream,1595\nhaunts,1,midsummersnightsdream,1595\nmessenger,1,midsummersnightsdream,1595\ncrop,1,midsummersnightsdream,1595\nDiana's,1,midsummersnightsdream,1595\ncontinents,1,midsummersnightsdream,1595\nsignify,1,midsummersnightsdream,1595\nsenseless,1,midsummersnightsdream,1595\nfowl,1,midsummersnightsdream,1595\nimpression,1,midsummersnightsdream,1595\nverses,1,midsummersnightsdream,1595\nperform'd,1,midsummersnightsdream,1595\nseething,1,midsummersnightsdream,1595\nnatural,1,midsummersnightsdream,1595\nserpent's,1,midsummersnightsdream,1595\n'Let,1,midsummersnightsdream,1595\nFlower,1,midsummersnightsdream,1595\nre,1,midsummersnightsdream,1595\nshun,1,midsummersnightsdream,1595\nreach,1,midsummersnightsdream,1595\ndeny,1,midsummersnightsdream,1595\nfoul,1,midsummersnightsdream,1595\ndrawn,1,midsummersnightsdream,1595\nmew'd,1,midsummersnightsdream,1595\ntrace,1,midsummersnightsdream,1595\nthreaten'd,1,midsummersnightsdream,1595\nforty,1,midsummersnightsdream,1595\nsweetest,1,midsummersnightsdream,1595\nmighty,1,midsummersnightsdream,1595\nprovided,1,midsummersnightsdream,1595\npraise,1,midsummersnightsdream,1595\nexamine,1,midsummersnightsdream,1595\nsucking,1,midsummersnightsdream,1595\nAntiopa,1,midsummersnightsdream,1595\ncourse,1,midsummersnightsdream,1595\nopen,1,midsummersnightsdream,1595\npage,1,midsummersnightsdream,1595\narm,1,midsummersnightsdream,1595\nrefused,1,midsummersnightsdream,1595\njuvenal,1,midsummersnightsdream,1595\nprepare,1,midsummersnightsdream,1595\nPleading,1,midsummersnightsdream,1595\ncharmed,1,midsummersnightsdream,1595\nDeserve,1,midsummersnightsdream,1595\npair,1,midsummersnightsdream,1595\ncosts,1,midsummersnightsdream,1595\nheaviness,1,midsummersnightsdream,1595\nreturn'd,1,midsummersnightsdream,1595\nape,1,midsummersnightsdream,1595\nPuts,1,midsummersnightsdream,1595\nNight,1,midsummersnightsdream,1595\nmended,1,midsummersnightsdream,1595\nwretchedness,1,midsummersnightsdream,1595\napt,1,midsummersnightsdream,1595\nfooted,1,midsummersnightsdream,1595\nforsworn,1,midsummersnightsdream,1595\nfrown,1,midsummersnightsdream,1595\nDispatch,1,midsummersnightsdream,1595\nshakes,1,midsummersnightsdream,1595\ndevise,1,midsummersnightsdream,1595\ntwain,1,midsummersnightsdream,1595\nlode,1,midsummersnightsdream,1595\npace,1,midsummersnightsdream,1595\nfear'd,1,midsummersnightsdream,1595\nshot,1,midsummersnightsdream,1595\nQuail,1,midsummersnightsdream,1595\nhats,1,midsummersnightsdream,1595\nrings,1,midsummersnightsdream,1595\nproper,1,midsummersnightsdream,1595\nleeks,1,midsummersnightsdream,1595\nchastity,1,midsummersnightsdream,1595\nfaithful,1,midsummersnightsdream,1595\nmerriments,1,midsummersnightsdream,1595\nmoan,1,midsummersnightsdream,1595\nduke's,1,midsummersnightsdream,1595\nimages,1,midsummersnightsdream,1595\nsignior,1,midsummersnightsdream,1595\nrenowned,1,midsummersnightsdream,1595\nmural,1,midsummersnightsdream,1595\nobject,1,midsummersnightsdream,1595\nSqueezing,1,midsummersnightsdream,1595\nPierced,1,midsummersnightsdream,1595\njuggler,1,midsummersnightsdream,1595\naccidents,1,midsummersnightsdream,1595\nAttendant,1,midsummersnightsdream,1595\nsojourn'd,1,midsummersnightsdream,1595\nmoonbeams,1,midsummersnightsdream,1595\nforms,1,midsummersnightsdream,1595\nfancies,1,midsummersnightsdream,1595\nbeards,1,midsummersnightsdream,1595\nmayst,1,midsummersnightsdream,1595\nnearly,1,midsummersnightsdream,1595\nfold,1,midsummersnightsdream,1595\nhateth,1,midsummersnightsdream,1595\ncondoling,1,midsummersnightsdream,1595\nKing,1,midsummersnightsdream,1595\nliveries,1,midsummersnightsdream,1595\noverborne,1,midsummersnightsdream,1595\nroll,1,midsummersnightsdream,1595\naweary,1,midsummersnightsdream,1595\nGoblin,1,midsummersnightsdream,1595\nthistle,1,midsummersnightsdream,1595\nunloved,1,midsummersnightsdream,1595\ntheirs,1,midsummersnightsdream,1595\nmazes,1,midsummersnightsdream,1595\nfee,1,midsummersnightsdream,1595\nbeggary,1,midsummersnightsdream,1595\nfed,1,midsummersnightsdream,1595\nHard,1,midsummersnightsdream,1595\nPursue,1,midsummersnightsdream,1595\nPeascod,1,midsummersnightsdream,1595\nmazed,1,midsummersnightsdream,1595\nenemies,1,midsummersnightsdream,1595\nnole,1,midsummersnightsdream,1595\nfantasy,1,midsummersnightsdream,1595\nvisited,1,midsummersnightsdream,1595\nContent,1,midsummersnightsdream,1595\ntrial,1,midsummersnightsdream,1595\nStood,1,midsummersnightsdream,1595\nstrongest,1,midsummersnightsdream,1595\nTartar,1,midsummersnightsdream,1595\nHate,1,midsummersnightsdream,1595\nmisprised,1,midsummersnightsdream,1595\n'paragon,1,midsummersnightsdream,1595\nguest,1,midsummersnightsdream,1595\nmerrier,1,midsummersnightsdream,1595\nhere's,1,midsummersnightsdream,1595\nrehearsal,1,midsummersnightsdream,1595\nwhistling,1,midsummersnightsdream,1595\nspoken,1,midsummersnightsdream,1595\njaws,1,midsummersnightsdream,1595\ncompact,1,midsummersnightsdream,1595\nThorny,1,midsummersnightsdream,1595\nShould,1,midsummersnightsdream,1595\naggravate,1,midsummersnightsdream,1595\nwatch,1,midsummersnightsdream,1595\nfat,1,midsummersnightsdream,1595\nfan,1,midsummersnightsdream,1595\nfrenzy,1,midsummersnightsdream,1595\nexposition,1,midsummersnightsdream,1595\nsweetmeats,1,midsummersnightsdream,1595\ndistant,1,midsummersnightsdream,1595\nwashes,1,midsummersnightsdream,1595\noccasion,1,midsummersnightsdream,1595\nnotably,1,midsummersnightsdream,1595\ndeceiving,1,midsummersnightsdream,1595\nCarthage,1,midsummersnightsdream,1595\nMarking,1,midsummersnightsdream,1595\ngarments,1,midsummersnightsdream,1595\nTearing,1,midsummersnightsdream,1595\nconfederacy,1,midsummersnightsdream,1595\ndestiny,1,midsummersnightsdream,1595\nheavier,1,midsummersnightsdream,1595\nsurgeon,1,midsummersnightsdream,1595\nballad,1,midsummersnightsdream,1595\ntarry,1,midsummersnightsdream,1595\ncounterfeiting,1,midsummersnightsdream,1595\n'cuckoo',1,midsummersnightsdream,1595\ncarried,1,midsummersnightsdream,1595\npiping,1,midsummersnightsdream,1595\nrote,1,midsummersnightsdream,1595\nhind,1,midsummersnightsdream,1595\nempty,1,midsummersnightsdream,1595\ntokens,1,midsummersnightsdream,1595\napprehension,1,midsummersnightsdream,1595\nleviathan,1,midsummersnightsdream,1595\nfolding,1,midsummersnightsdream,1595\nantique,1,midsummersnightsdream,1595\ntakest,1,midsummersnightsdream,1595\nbored,1,midsummersnightsdream,1595\nlords,1,midsummersnightsdream,1595\ncouldst,1,midsummersnightsdream,1595\nLords,1,midsummersnightsdream,1595\nrolling,1,midsummersnightsdream,1595\ntriumphant,1,midsummersnightsdream,1595\nwilfully,1,midsummersnightsdream,1595\nsmallest,1,midsummersnightsdream,1595\nunknown,1,midsummersnightsdream,1595\nthinks,1,midsummersnightsdream,1595\nElse,1,midsummersnightsdream,1595\nHalf,1,midsummersnightsdream,1595\nsquare,1,midsummersnightsdream,1595\nnose,1,midsummersnightsdream,1595\ngleek,1,midsummersnightsdream,1595\nmidst,1,midsummersnightsdream,1595\napply,1,midsummersnightsdream,1595\nHecate's,1,midsummersnightsdream,1595\ntends,1,midsummersnightsdream,1595\nproverb,1,midsummersnightsdream,1595\nbegone,1,midsummersnightsdream,1595\nnumber'd,1,midsummersnightsdream,1595\ntoil'd,1,midsummersnightsdream,1595\nSever,1,midsummersnightsdream,1595\nwakes,1,midsummersnightsdream,1595\n'nointed,1,midsummersnightsdream,1595\nFuries,1,midsummersnightsdream,1595\nHand,1,midsummersnightsdream,1595\nHenceforth,1,midsummersnightsdream,1595\nhips,1,midsummersnightsdream,1595\nHang,1,midsummersnightsdream,1595\nawaking,1,midsummersnightsdream,1595\nrestore,1,midsummersnightsdream,1595\napple,1,midsummersnightsdream,1595\nunbreathed,1,midsummersnightsdream,1595\nlocks,1,midsummersnightsdream,1595\npated,1,midsummersnightsdream,1595\ngently,1,midsummersnightsdream,1595\nInjurious,1,midsummersnightsdream,1595\nfemales,1,midsummersnightsdream,1595\npaths,1,midsummersnightsdream,1595\nrate,1,midsummersnightsdream,1595\nmurrion,1,midsummersnightsdream,1595\nFlourish,1,midsummersnightsdream,1595\nshew'd,1,midsummersnightsdream,1595\nscalp,1,midsummersnightsdream,1595\nbottle,1,midsummersnightsdream,1595\nPlaying,1,midsummersnightsdream,1595\nrash,1,midsummersnightsdream,1595\nspread,1,midsummersnightsdream,1595\nbravely,1,midsummersnightsdream,1595\nestate,1,midsummersnightsdream,1595\n'Most,1,midsummersnightsdream,1595\nscar,1,midsummersnightsdream,1595\nJew,1,midsummersnightsdream,1595\ncawing,1,midsummersnightsdream,1595\ncandle,1,midsummersnightsdream,1595\nSleeps,1,midsummersnightsdream,1595\ncowslip,1,midsummersnightsdream,1595\nAlack,1,midsummersnightsdream,1595\nUncouple,1,midsummersnightsdream,1595\n'tailor',1,midsummersnightsdream,1595\nausterity,1,midsummersnightsdream,1595\nyielders,1,midsummersnightsdream,1595\n'Ah,1,midsummersnightsdream,1595\nbottom,1,midsummersnightsdream,1595\nmeditation,1,midsummersnightsdream,1595\nleathern,1,midsummersnightsdream,1595\ntipsy,1,midsummersnightsdream,1595\nlingers,1,midsummersnightsdream,1595\nenthrall'd,1,midsummersnightsdream,1595\nmimic,1,midsummersnightsdream,1595\nidolatry,1,midsummersnightsdream,1595\nFlying,1,midsummersnightsdream,1595\nnun,1,midsummersnightsdream,1595\nspuns,1,midsummersnightsdream,1595\nfowler,1,midsummersnightsdream,1595\no'erlook,1,midsummersnightsdream,1595\nConsider,1,midsummersnightsdream,1595\nodious,1,midsummersnightsdream,1595\nSet,1,midsummersnightsdream,1595\npresented,1,midsummersnightsdream,1595\nApproach,1,midsummersnightsdream,1595\nshared,1,midsummersnightsdream,1595\nhousewife,1,midsummersnightsdream,1595\nplaces,1,midsummersnightsdream,1595\nmasque,1,midsummersnightsdream,1595\nseveral,1,midsummersnightsdream,1595\navouch,1,midsummersnightsdream,1595\nscare,1,midsummersnightsdream,1595\npowers,1,midsummersnightsdream,1595\nwall's,1,midsummersnightsdream,1595\nwithholds,1,midsummersnightsdream,1595\nheel'd,1,midsummersnightsdream,1595\nshivering,1,midsummersnightsdream,1595\npensioners,1,midsummersnightsdream,1595\ndirty,1,midsummersnightsdream,1595\nDecking,1,midsummersnightsdream,1595\nrecount,1,midsummersnightsdream,1595\nconsort,1,midsummersnightsdream,1595\neffect,1,midsummersnightsdream,1595\nseasons,1,midsummersnightsdream,1595\nparlous,1,midsummersnightsdream,1595\nstrife,1,midsummersnightsdream,1595\nNeighing,1,midsummersnightsdream,1595\nMislead,1,midsummersnightsdream,1595\nmile,1,midsummersnightsdream,1595\nelf,1,midsummersnightsdream,1595\nLong,1,midsummersnightsdream,1595\nSong,1,midsummersnightsdream,1595\nelm,1,midsummersnightsdream,1595\nRelent,1,midsummersnightsdream,1595\nrehearsed,1,midsummersnightsdream,1595\nstart,1,midsummersnightsdream,1595\nqualities,1,midsummersnightsdream,1595\nconclusion,1,midsummersnightsdream,1595\nMakes,1,midsummersnightsdream,1595\nplead,1,midsummersnightsdream,1595\ntempest,1,midsummersnightsdream,1595\nvalley,1,midsummersnightsdream,1595\nbeauties,1,midsummersnightsdream,1595\nobservation,1,midsummersnightsdream,1595\nfortnight,1,midsummersnightsdream,1595\nchain,1,midsummersnightsdream,1595\nQueen,1,midsummersnightsdream,1595\nmask,1,midsummersnightsdream,1595\nskip,1,midsummersnightsdream,1595\ndearest,1,midsummersnightsdream,1595\n'Tide,1,midsummersnightsdream,1595\nBearing,1,midsummersnightsdream,1595\nchief,1,midsummersnightsdream,1595\npresently,1,midsummersnightsdream,1595\nforests,1,midsummersnightsdream,1595\nmare,1,midsummersnightsdream,1595\nPerigenia,1,midsummersnightsdream,1595\nkissing,1,midsummersnightsdream,1595\nmistaketh,1,midsummersnightsdream,1595\nmonsieur,1,midsummersnightsdream,1595\ninjuries,1,midsummersnightsdream,1595\ncrimson,1,midsummersnightsdream,1595\nthick,1,midsummersnightsdream,1595\ngloriously,1,midsummersnightsdream,1595\nOdours,1,midsummersnightsdream,1595\nbringer,1,midsummersnightsdream,1595\ndevils,1,midsummersnightsdream,1595\nmistakest,1,midsummersnightsdream,1595\nstate,1,midsummersnightsdream,1595\nWeigh,1,midsummersnightsdream,1595\ncoronet,1,midsummersnightsdream,1595\nlet's,1,midsummersnightsdream,1595\nbecause,1,midsummersnightsdream,1595\nleaden,1,midsummersnightsdream,1595\nJoy,1,midsummersnightsdream,1595\nPhibbus',1,midsummersnightsdream,1595\nbrains,1,midsummersnightsdream,1595\ngreatest,1,midsummersnightsdream,1595\nlabour,1,midsummersnightsdream,1595\neke,1,midsummersnightsdream,1595\naddress,1,midsummersnightsdream,1595\nbushes,1,midsummersnightsdream,1595\nabridgement,1,midsummersnightsdream,1595\nthief,1,midsummersnightsdream,1595\nfret,1,midsummersnightsdream,1595\nfree,1,midsummersnightsdream,1595\nnaught,1,midsummersnightsdream,1595\ncircumference,1,midsummersnightsdream,1595\nnumber,1,midsummersnightsdream,1595\nmarvel,1,midsummersnightsdream,1595\ndainty,1,midsummersnightsdream,1595\nBeing,1,midsummersnightsdream,1595\npreposterously,1,midsummersnightsdream,1595\nthyme,1,midsummersnightsdream,1595\nadamant,1,midsummersnightsdream,1595\nfilly,1,midsummersnightsdream,1595\nsayest,1,midsummersnightsdream,1595\nGiving,1,midsummersnightsdream,1595\ni'faith,1,midsummersnightsdream,1595\nwrath,1,midsummersnightsdream,1595\nhight,1,midsummersnightsdream,1595\nliving,1,midsummersnightsdream,1595\nstain,1,midsummersnightsdream,1595\nmockers,1,midsummersnightsdream,1595\nblameful,1,midsummersnightsdream,1595\nrusset,1,midsummersnightsdream,1595\nLamenting,1,midsummersnightsdream,1595\nbequeath,1,midsummersnightsdream,1595\nbehalf,1,midsummersnightsdream,1595\nproves,1,midsummersnightsdream,1595\nauditor,1,midsummersnightsdream,1595\nneaf,1,midsummersnightsdream,1595\nsleeves,1,midsummersnightsdream,1595\npause,1,midsummersnightsdream,1595\nslight,1,midsummersnightsdream,1595\naffairs,1,midsummersnightsdream,1595\ndisturb'd,1,midsummersnightsdream,1595\nwrongs,1,midsummersnightsdream,1595\ncough,1,midsummersnightsdream,1595\nneck,1,midsummersnightsdream,1595\nroars,1,midsummersnightsdream,1595\noes,1,midsummersnightsdream,1595\n'Deceiving,1,midsummersnightsdream,1595\nformer,1,midsummersnightsdream,1595\nthrow,1,midsummersnightsdream,1595\nswain,1,midsummersnightsdream,1595\nRun,1,midsummersnightsdream,1595\nscrip,1,midsummersnightsdream,1595\nstamp,1,midsummersnightsdream,1595\nfive,1,midsummersnightsdream,1595\nstomach,1,midsummersnightsdream,1595\nsorrow,1,midsummersnightsdream,1595\ntraders,1,midsummersnightsdream,1595\nbay'd,1,midsummersnightsdream,1595\nEnrings,1,midsummersnightsdream,1595\nNinus',1,midsummersnightsdream,1595\ncross'd,1,midsummersnightsdream,1595\nbread,1,midsummersnightsdream,1595\nservices,1,midsummersnightsdream,1595\nloving,1,midsummersnightsdream,1595\nthird,1,midsummersnightsdream,1595\ndetest,1,midsummersnightsdream,1595\nsitting,1,midsummersnightsdream,1595\nmaypole,1,midsummersnightsdream,1595\nDream,1,midsummersnightsdream,1595\nunseen,1,midsummersnightsdream,1595\ndifferent,1,midsummersnightsdream,1595\nmoment,1,midsummersnightsdream,1595\nriot,1,midsummersnightsdream,1595\nLYSANDER's,1,midsummersnightsdream,1595\nrecover,1,midsummersnightsdream,1595\nhanded,1,midsummersnightsdream,1595\noak,1,midsummersnightsdream,1595\nknaveries,1,midsummersnightsdream,1595\nAntipodes,1,midsummersnightsdream,1595\nquicker,1,midsummersnightsdream,1595\nSay,1,midsummersnightsdream,1595\nsparrow,1,midsummersnightsdream,1595\ncharmeth,1,midsummersnightsdream,1595\nwalls,1,midsummersnightsdream,1595\nnegligence,1,midsummersnightsdream,1595\ndefeated,1,midsummersnightsdream,1595\nmice,1,midsummersnightsdream,1595\npatiently,1,midsummersnightsdream,1595\nSee'st,1,midsummersnightsdream,1595\nErcles',1,midsummersnightsdream,1595\nliked,1,midsummersnightsdream,1595\ntopples,1,midsummersnightsdream,1595\nDian's,1,midsummersnightsdream,1595\ncowslips,1,midsummersnightsdream,1595\nthrum,1,midsummersnightsdream,1595\ndust,1,midsummersnightsdream,1595\ncalled,1,midsummersnightsdream,1595\nstick,1,midsummersnightsdream,1595\nearnest,1,midsummersnightsdream,1595\nwode,1,midsummersnightsdream,1595\nwax,1,midsummersnightsdream,1595\nstage,1,midsummersnightsdream,1595\nwar,1,midsummersnightsdream,1595\nCan,1,midsummersnightsdream,1595\npoet,1,midsummersnightsdream,1595\nWeed,1,midsummersnightsdream,1595\narms,1,midsummersnightsdream,1595\nmisprision,1,midsummersnightsdream,1595\naudience,1,midsummersnightsdream,1595\nmorris,1,midsummersnightsdream,1595\ngrowing,1,midsummersnightsdream,1595\nsolemnly,1,midsummersnightsdream,1595\nrite,1,midsummersnightsdream,1595\noats,1,midsummersnightsdream,1595\n'Tis,1,midsummersnightsdream,1595\ngirdle,1,midsummersnightsdream,1595\nbrother's,1,midsummersnightsdream,1595\npride,1,midsummersnightsdream,1595\nmaiden's,1,midsummersnightsdream,1595\nAurora's,1,midsummersnightsdream,1595\nHobgoblin,1,midsummersnightsdream,1595\nKnowing,1,midsummersnightsdream,1595\napace,1,midsummersnightsdream,1595\nperadventure,1,midsummersnightsdream,1595\nsupper,1,midsummersnightsdream,1595\nsplit,1,midsummersnightsdream,1595\nBeg,1,midsummersnightsdream,1595\nCavalery,1,midsummersnightsdream,1595\nbells,1,midsummersnightsdream,1595\nthreats,1,midsummersnightsdream,1595\nThree,1,midsummersnightsdream,1595\nShine,1,midsummersnightsdream,1595\nenforced,1,midsummersnightsdream,1595\ndrowned,1,midsummersnightsdream,1595\nhail,1,midsummersnightsdream,1595\ncurses,1,midsummersnightsdream,1595\nfade,1,midsummersnightsdream,1595\ngrossness,1,midsummersnightsdream,1595\nEgypt,1,midsummersnightsdream,1595\nraging,1,midsummersnightsdream,1595\nhenchman,1,midsummersnightsdream,1595\nPyramus',1,midsummersnightsdream,1595\nmuddy,1,midsummersnightsdream,1595\ndissolved,1,midsummersnightsdream,1595\nshallowest,1,midsummersnightsdream,1595\nedict,1,midsummersnightsdream,1595\nbutterflies,1,midsummersnightsdream,1595\nfallen,1,midsummersnightsdream,1595\nimbrue,1,midsummersnightsdream,1595\nrotted,1,midsummersnightsdream,1595\nfigs,1,midsummersnightsdream,1595\nwhat's,1,midsummersnightsdream,1595\nvirtue's,1,midsummersnightsdream,1595\nshiver,1,midsummersnightsdream,1595\ncharged,1,midsummersnightsdream,1595\nangel,1,midsummersnightsdream,1595\nanger,1,midsummersnightsdream,1595\nspleen,1,midsummersnightsdream,1595\nAriadne,1,midsummersnightsdream,1595\nkilling,1,midsummersnightsdream,1595\nlabour'd,1,midsummersnightsdream,1595\nopposite,1,midsummersnightsdream,1595\nwomb,1,midsummersnightsdream,1595\ncompass,1,midsummersnightsdream,1595\ndumb,1,midsummersnightsdream,1595\nwillfully,1,midsummersnightsdream,1595\nwondrous,1,midsummersnightsdream,1595\nrail,1,midsummersnightsdream,1595\nrain,1,midsummersnightsdream,1595\nLearning,1,midsummersnightsdream,1595\ncups,1,midsummersnightsdream,1595\ndull,1,midsummersnightsdream,1595\nnest,1,midsummersnightsdream,1595\ncrossways,1,midsummersnightsdream,1595\ntouching,1,midsummersnightsdream,1595\ngrain,1,midsummersnightsdream,1595\nlurk,1,midsummersnightsdream,1595\nwaste,1,midsummersnightsdream,1595\nhundred,1,midsummersnightsdream,1595\nfalling,1,midsummersnightsdream,1595\nwent,1,midsummersnightsdream,1595\nwrong'd,1,midsummersnightsdream,1595\nfollowers,1,midsummersnightsdream,1595\nfill'd,1,midsummersnightsdream,1595\nEven,1,midsummersnightsdream,1595\nwend,1,midsummersnightsdream,1595\nsatire,1,midsummersnightsdream,1595\nglad,1,midsummersnightsdream,1595\nShow,1,midsummersnightsdream,1595\nshocks,1,midsummersnightsdream,1595\nguilty,1,midsummersnightsdream,1595\nsails,1,midsummersnightsdream,1595\ncreate,1,midsummersnightsdream,1595\nquern,1,midsummersnightsdream,1595\nboiling,1,midsummersnightsdream,1595\nperishing,1,midsummersnightsdream,1595\npersever,1,midsummersnightsdream,1595\nLull'd,1,midsummersnightsdream,1595\nsnail,1,midsummersnightsdream,1595\ndurst,1,midsummersnightsdream,1595\npressed,1,midsummersnightsdream,1595\ndiseases,1,midsummersnightsdream,1595\nmessengers,1,midsummersnightsdream,1595\nunion,1,midsummersnightsdream,1595\ndoubler,1,midsummersnightsdream,1595\nweapons,1,midsummersnightsdream,1595\ndesert,1,midsummersnightsdream,1595\nslumber'd,1,midsummersnightsdream,1595\nThat's,1,midsummersnightsdream,1595\nsnake,1,midsummersnightsdream,1595\nfog,1,midsummersnightsdream,1595\nAcheron,1,midsummersnightsdream,1595\nfoe,1,midsummersnightsdream,1595\nwilful,1,midsummersnightsdream,1595\nconstancy,1,midsummersnightsdream,1595\nProceed,1,midsummersnightsdream,1595\nquell,1,midsummersnightsdream,1595\nCall'd,1,midsummersnightsdream,1595\nanswers,1,midsummersnightsdream,1595\nchurn,1,midsummersnightsdream,1595\nImpatient,1,midsummersnightsdream,1595\nkinsman,1,midsummersnightsdream,1595\nvaward,1,midsummersnightsdream,1595\nhumour,1,midsummersnightsdream,1595\nduck,1,midsummersnightsdream,1595\nscorns,1,midsummersnightsdream,1595\nworm,1,midsummersnightsdream,1595\ncues,1,midsummersnightsdream,1595\npassing,1,midsummersnightsdream,1595\nHeigh,1,midsummersnightsdream,1595\nwest,1,midsummersnightsdream,1595\nfie,1,midsummersnightsdream,1595\nvixen,1,midsummersnightsdream,1595\nDeny,1,midsummersnightsdream,1595\nminute,1,midsummersnightsdream,1595\nimpeach,1,midsummersnightsdream,1595\noffices,1,midsummersnightsdream,1595\nastray,1,midsummersnightsdream,1595\nwheat,1,midsummersnightsdream,1595\nrunn'st,1,midsummersnightsdream,1595\nseparation,1,midsummersnightsdream,1595\nhowsoever,1,midsummersnightsdream,1595\nsafety,1,midsummersnightsdream,1595\nne'er,1,midsummersnightsdream,1595\nengaged,1,midsummersnightsdream,1595\nbarber's,1,midsummersnightsdream,1595\nperiods,1,midsummersnightsdream,1595\nrattling,1,midsummersnightsdream,1595\n'little',1,midsummersnightsdream,1595\nhorn,1,midsummersnightsdream,1595\nincorporate,1,midsummersnightsdream,1595\nmarried,1,midsummersnightsdream,1595\nbarm,1,midsummersnightsdream,1595\nbark,1,midsummersnightsdream,1595\nThessalian,1,midsummersnightsdream,1595\nrebuke,1,midsummersnightsdream,1595\nbare,1,midsummersnightsdream,1595\nlordship,1,midsummersnightsdream,1595\nthunder,1,midsummersnightsdream,1595\nFare,1,midsummersnightsdream,1595\nshown,1,midsummersnightsdream,1595\nUnto,1,midsummersnightsdream,1595\nshows,1,midsummersnightsdream,1595\nunfold,1,midsummersnightsdream,1595\nherself,1,midsummersnightsdream,1595\nfawn,1,midsummersnightsdream,1595\nlinen,1,midsummersnightsdream,1595\nWorm,1,midsummersnightsdream,1595\npartly,1,midsummersnightsdream,1595\nlived,1,midsummersnightsdream,1595\ndewlap,1,midsummersnightsdream,1595\nimpaired,1,midsummersnightsdream,1595\nmeaning,1,midsummersnightsdream,1595\nCoward,1,midsummersnightsdream,1595\nbase,1,midsummersnightsdream,1595\ngrisly,1,midsummersnightsdream,1595\ntriumphantly,1,midsummersnightsdream,1595\nCut,1,midsummersnightsdream,1595\nextenuate,1,midsummersnightsdream,1595\nfate,1,midsummersnightsdream,1595\nappointed,1,midsummersnightsdream,1595\nTartar's,1,midsummersnightsdream,1595\nobservance,1,midsummersnightsdream,1595\nband,1,midsummersnightsdream,1595\ngrapes,1,midsummersnightsdream,1595\nfriendship,1,midsummersnightsdream,1595\nhallow'd,1,midsummersnightsdream,1595\ncreeps,1,midsummersnightsdream,1595\ncarol,1,midsummersnightsdream,1595\nbounds,1,midsummersnightsdream,1595\ntame,1,midsummersnightsdream,1595\nnames,1,midsummersnightsdream,1595\ndam,1,midsummersnightsdream,1595\nEach,1,midsummersnightsdream,1595\nsentences,1,midsummersnightsdream,1595\ntrumpets,1,midsummersnightsdream,1595\nflock,1,midsummersnightsdream,1595\ndrinks,1,midsummersnightsdream,1595\nlad,1,midsummersnightsdream,1595\nsoul's,1,midsummersnightsdream,1595\nlap,1,midsummersnightsdream,1595\nofficious,1,midsummersnightsdream,1595\ncomplaint,1,midsummersnightsdream,1595\ntalk,1,midsummersnightsdream,1595\nsaddest,1,midsummersnightsdream,1595\nlay,1,midsummersnightsdream,1595\namiable,1,midsummersnightsdream,1595\narm'd,1,midsummersnightsdream,1595\nthousand,1,midsummersnightsdream,1595\nfarthest,1,midsummersnightsdream,1595\norient,1,midsummersnightsdream,1595\nwelcomes,1,midsummersnightsdream,1595\ngentlemen,1,midsummersnightsdream,1595\nContagious,1,midsummersnightsdream,1595\nperish,1,midsummersnightsdream,1595\nTrust,1,midsummersnightsdream,1595\naudacious,1,midsummersnightsdream,1595\ntorment,1,midsummersnightsdream,1595\nasunder,1,midsummersnightsdream,1595\nscreeching,1,midsummersnightsdream,1595\nchurchyards,1,midsummersnightsdream,1595\nAlready,1,midsummersnightsdream,1595\nRather,1,midsummersnightsdream,1595\nbewail,1,midsummersnightsdream,1595\nbeshrew,1,midsummersnightsdream,1595\ntangled,1,midsummersnightsdream,1595\nrecorder,1,midsummersnightsdream,1595\neyeballs,1,midsummersnightsdream,1595\nheresies,1,midsummersnightsdream,1595\nLulla,1,midsummersnightsdream,1595\nshore,1,midsummersnightsdream,1595\nholy,1,midsummersnightsdream,1595\nclean,1,midsummersnightsdream,1595\nNone,1,midsummersnightsdream,1595\nvirginity,1,midsummersnightsdream,1595\ngreet,1,midsummersnightsdream,1595\nstand'st,1,midsummersnightsdream,1595\ncur,1,midsummersnightsdream,1595\ndevour,1,midsummersnightsdream,1595\nfollows,1,midsummersnightsdream,1595\ngaping,1,midsummersnightsdream,1595\nAlthough,1,midsummersnightsdream,1595\ndefect,1,midsummersnightsdream,1595\nsunder,1,midsummersnightsdream,1595\nargument,1,midsummersnightsdream,1595\nsolemnities,1,midsummersnightsdream,1595\npaved,1,midsummersnightsdream,1595\nunsay,1,midsummersnightsdream,1595\nlives,1,midsummersnightsdream,1595\nspiced,1,midsummersnightsdream,1595\nFaintness,1,midsummersnightsdream,1595\nAwake,1,midsummersnightsdream,1595\ncounsels,1,midsummersnightsdream,1595\nseal,1,midsummersnightsdream,1595\npotion,1,midsummersnightsdream,1595\nTurn'd,1,midsummersnightsdream,1595\nconjure,1,midsummersnightsdream,1595\nunearned,1,midsummersnightsdream,1595\ntask,1,midsummersnightsdream,1595\nnotwithstanding,1,midsummersnightsdream,1595\n'Fair,1,midsummersnightsdream,1595\nintents,1,midsummersnightsdream,1595\nconvenient,1,midsummersnightsdream,1595\nNeglect,1,midsummersnightsdream,1595\nIntended,1,midsummersnightsdream,1595\nshout,1,midsummersnightsdream,1595\nprettily,1,midsummersnightsdream,1595\ndissension,1,midsummersnightsdream,1595\nseat,1,midsummersnightsdream,1595\nalong,1,midsummersnightsdream,1595\nglittering,1,midsummersnightsdream,1595\ncool,1,midsummersnightsdream,1595\nDisparage,1,midsummersnightsdream,1595\nbachelor,1,midsummersnightsdream,1595\neyed,1,midsummersnightsdream,1595\nsweat,1,midsummersnightsdream,1595\ndeepest,1,midsummersnightsdream,1595\naloof,1,midsummersnightsdream,1595\ndolphin's,1,midsummersnightsdream,1595\nugly,1,midsummersnightsdream,1595\n'never,1,midsummersnightsdream,1595\nlob,1,midsummersnightsdream,1595\nexpound,1,midsummersnightsdream,1595\nkingdom,1,midsummersnightsdream,1595\nAEgle,1,midsummersnightsdream,1595\npuppet,1,midsummersnightsdream,1595\nSees,1,midsummersnightsdream,1595\nSeem,1,midsummersnightsdream,1595\nwe'll,1,midsummersnightsdream,1595\nhandful,1,midsummersnightsdream,1595\nbracelets,1,midsummersnightsdream,1595\noriginal,1,midsummersnightsdream,1595\nscreech,1,midsummersnightsdream,1595\ncon,1,midsummersnightsdream,1595\nprogeny,1,midsummersnightsdream,1595\nsupposed,1,midsummersnightsdream,1595\nsports,1,midsummersnightsdream,1595\nmeantime,1,midsummersnightsdream,1595\ncoy,1,midsummersnightsdream,1595\npick'd,1,midsummersnightsdream,1595\nconclude,1,midsummersnightsdream,1595\nbashfulness,1,midsummersnightsdream,1595\nshapes,1,midsummersnightsdream,1595\nprospers,1,midsummersnightsdream,1595\nfellows,1,midsummersnightsdream,1595\nbattle,1,midsummersnightsdream,1595\nthereof,1,midsummersnightsdream,1595\njangling,1,midsummersnightsdream,1595\nBelieve,1,midsummersnightsdream,1595\nforgeries,1,midsummersnightsdream,1595\ncrest,1,midsummersnightsdream,1595\nberries,1,midsummersnightsdream,1595\nditty,1,midsummersnightsdream,1595\nsetting,1,midsummersnightsdream,1595\nbehowls,1,midsummersnightsdream,1595\nFann'd,1,midsummersnightsdream,1595\nmoused,1,midsummersnightsdream,1595\nexploit,1,midsummersnightsdream,1595\nincrease,1,midsummersnightsdream,1595\nconfounding,1,midsummersnightsdream,1595\nmonkey,1,midsummersnightsdream,1595\naffright,1,midsummersnightsdream,1595\ngathering,1,midsummersnightsdream,1595\npour,1,midsummersnightsdream,1595\nnights,1,midsummersnightsdream,1595\nloyalty,1,midsummersnightsdream,1595\ndownright,1,midsummersnightsdream,1595\nKnow,1,midsummersnightsdream,1595\ntherein,1,midsummersnightsdream,1595\nmillion,1,midsummersnightsdream,1595\nlovest,1,midsummersnightsdream,1595\ntiring,1,midsummersnightsdream,1595\ncushion,1,midsummersnightsdream,1595\nrevelling,1,midsummersnightsdream,1595\nQuench'd,1,midsummersnightsdream,1595\nbait,1,midsummersnightsdream,1595\nkindred,1,midsummersnightsdream,1595\ntied,1,midsummersnightsdream,1595\nUse,1,midsummersnightsdream,1595\nErcles,1,midsummersnightsdream,1595\nself,1,midsummersnightsdream,1595\nfairly,1,midsummersnightsdream,1595\nraven,1,midsummersnightsdream,1595\ncapacity,1,midsummersnightsdream,1595\nmoon's,1,midsummersnightsdream,1595\ndrivest,1,midsummersnightsdream,1595\napricocks,1,midsummersnightsdream,1595\ndistracted,1,midsummersnightsdream,1595\n'Thisne,1,midsummersnightsdream,1595\nreturn,1,midsummersnightsdream,1595\nbankrupt,1,midsummersnightsdream,1595\nsee'st,1,midsummersnightsdream,1595\nprison,1,midsummersnightsdream,1595\nled,1,midsummersnightsdream,1595\nroaring,1,midsummersnightsdream,1595\nbeached,1,midsummersnightsdream,1595\ncolt,1,midsummersnightsdream,1595\nundo,1,midsummersnightsdream,1595\nghosts,1,midsummersnightsdream,1595\nremote,1,midsummersnightsdream,1595\nsimpleness,1,midsummersnightsdream,1595\nswell,1,midsummersnightsdream,1595\nerewhile,1,midsummersnightsdream,1595\nbetrothed,1,midsummersnightsdream,1595\nCursed,1,midsummersnightsdream,1595\ndeceive,1,midsummersnightsdream,1595\nsquirrel's,1,midsummersnightsdream,1595\nplunge,1,midsummersnightsdream,1595\nseason,1,midsummersnightsdream,1595\nPhoebe,1,midsummersnightsdream,1595\nmatch,1,midsummersnightsdream,1595\ngarter,1,midsummersnightsdream,1595\nleagues,1,midsummersnightsdream,1595\npassionate,1,midsummersnightsdream,1595\nprotest,1,midsummersnightsdream,1595\npurpose,1,midsummersnightsdream,1595\naright,1,midsummersnightsdream,1595\naffair,1,midsummersnightsdream,1595\nMistress,1,midsummersnightsdream,1595\ncouple,1,midsummersnightsdream,1595\nspiders,1,midsummersnightsdream,1595\nhinders,1,midsummersnightsdream,1595\nlip,1,midsummersnightsdream,1595\npalpable,1,midsummersnightsdream,1595\ndrooping,1,midsummersnightsdream,1595\npipes,1,midsummersnightsdream,1595\nJudge,1,midsummersnightsdream,1595\ncoil,1,midsummersnightsdream,1595\nbags,1,midsummersnightsdream,1595\nmerchandise,1,midsummersnightsdream,1595\ntriumph,1,midsummersnightsdream,1595\n'Little',1,midsummersnightsdream,1595\nbrow,1,midsummersnightsdream,1595\nstorms,1,midsummersnightsdream,1595\nfrantic,1,midsummersnightsdream,1595\nNothing,1,midsummersnightsdream,1595\nsleek,1,midsummersnightsdream,1595\nupbraid,1,midsummersnightsdream,1595\nstarry,1,midsummersnightsdream,1595\nPhillida,1,midsummersnightsdream,1595\nrheumatic,1,midsummersnightsdream,1595\ndebate,1,midsummersnightsdream,1595\nwrite,1,midsummersnightsdream,1595\ninsufficiency,1,midsummersnightsdream,1595\nmar,1,midsummersnightsdream,1595\nevening,1,midsummersnightsdream,1595\nclouds,1,midsummersnightsdream,1595\nconfound,1,midsummersnightsdream,1595\nWeaving,1,midsummersnightsdream,1595\nbetroth'd,1,midsummersnightsdream,1595\ndulcet,1,midsummersnightsdream,1595\nlazy,1,midsummersnightsdream,1595\npeas,1,midsummersnightsdream,1595\nfilch'd,1,midsummersnightsdream,1595\nleast,1,midsummersnightsdream,1595\nme',1,midsummersnightsdream,1595\nconn'd,1,midsummersnightsdream,1595\nwanes,1,midsummersnightsdream,1595\n'scape,1,midsummersnightsdream,1595\nbalance,1,midsummersnightsdream,1595\nobscenely,1,midsummersnightsdream,1595\nsmiling,1,midsummersnightsdream,1595\nstarve,1,midsummersnightsdream,1595\ndoing,1,midsummersnightsdream,1595\nvillagery,1,midsummersnightsdream,1595\nfunerals,1,midsummersnightsdream,1595\nThebes,1,midsummersnightsdream,1595\nremember,1,midsummersnightsdream,1595\ngossip's,1,midsummersnightsdream,1595\nmargent,1,midsummersnightsdream,1595\ncourageous,1,midsummersnightsdream,1595\ngossip'd,1,midsummersnightsdream,1595\nsister,1,midsummersnightsdream,1595\nheaded,1,midsummersnightsdream,1595\nswim,1,midsummersnightsdream,1595\nlofty,1,midsummersnightsdream,1595\ntrim,1,midsummersnightsdream,1595\nglory,1,midsummersnightsdream,1595\nCaptain,1,midsummersnightsdream,1595\nounce,1,midsummersnightsdream,1595\nmeeting,1,midsummersnightsdream,1595\ncollied,1,midsummersnightsdream,1595\ndye,1,midsummersnightsdream,1595\nevils,1,midsummersnightsdream,1595\nwhit,1,midsummersnightsdream,1595\nwhip,1,midsummersnightsdream,1595\nrecreant,1,midsummersnightsdream,1595\nheartily,1,midsummersnightsdream,1595\nravished,1,midsummersnightsdream,1595\ncowslip's,1,midsummersnightsdream,1595\nMet,1,midsummersnightsdream,1595\nearthlier,1,midsummersnightsdream,1595\nCrystal,1,midsummersnightsdream,1595\nbethink,1,midsummersnightsdream,1595\nAbate,1,midsummersnightsdream,1595\nfashion,1,midsummersnightsdream,1595\nbellied,1,midsummersnightsdream,1595\ntaunted,1,midsummersnightsdream,1595\nflights,1,midsummersnightsdream,1595\nwithdraw,1,midsummersnightsdream,1595\nmaidenly,1,midsummersnightsdream,1595\nbrisky,1,midsummersnightsdream,1595\nshaping,1,midsummersnightsdream,1595\nAmen,1,midsummersnightsdream,1595\nIndeed,1,midsummersnightsdream,1595\nmourning,1,midsummersnightsdream,1595\namorous,1,midsummersnightsdream,1595\nMelted,1,midsummersnightsdream,1595\ntelling,1,midsummersnightsdream,1595\nlast,1,midsummersnightsdream,1595\nrespects,1,midsummersnightsdream,1595\neunuch,1,midsummersnightsdream,1595\nThereby,1,midsummersnightsdream,1595\nvestal,1,midsummersnightsdream,1595\npeck,1,midsummersnightsdream,1595\ncredit,1,midsummersnightsdream,1595\ngun's,1,midsummersnightsdream,1595\nliquid,1,midsummersnightsdream,1595\nthither,1,midsummersnightsdream,1595\nbrakes,1,midsummersnightsdream,1595\nSquash,1,midsummersnightsdream,1595\ntickle,1,midsummersnightsdream,1595\nshroud,1,midsummersnightsdream,1595\ncustomary,1,midsummersnightsdream,1595\nReason,1,midsummersnightsdream,1595\nrecompense,1,midsummersnightsdream,1595\nWithout,1,midsummersnightsdream,1595\npeep,1,midsummersnightsdream,1595\nbesides,1,midsummersnightsdream,1595\nopportunity,1,midsummersnightsdream,1595\nimperfection,1,midsummersnightsdream,1595\nsquire,1,midsummersnightsdream,1595\nTroyan,1,midsummersnightsdream,1595\nreprehend,1,midsummersnightsdream,1595\npelting,1,midsummersnightsdream,1595\nCrowns,1,midsummersnightsdream,1595\nneigh,1,midsummersnightsdream,1595\nHiems',1,midsummersnightsdream,1595\ndevoured,1,midsummersnightsdream,1595\nsway'd,1,midsummersnightsdream,1595\nChurl,1,midsummersnightsdream,1595\nurged,1,midsummersnightsdream,1595\nfloor,1,midsummersnightsdream,1595\ndefiled,1,midsummersnightsdream,1595\nsimply,1,midsummersnightsdream,1595\ntransported,1,midsummersnightsdream,1595\nassurance,1,midsummersnightsdream,1595\npert,1,midsummersnightsdream,1595\nnosegays,1,midsummersnightsdream,1595\nmouths,1,midsummersnightsdream,1595\ndate,1,midsummersnightsdream,1595\nleads,1,midsummersnightsdream,1595\nwidow,1,midsummersnightsdream,1595\nshady,1,midsummersnightsdream,1595\nreply,1,midsummersnightsdream,1595\nnuts,1,midsummersnightsdream,1595\nslay,1,midsummersnightsdream,1595\nTie,1,midsummersnightsdream,1595\nexpense,1,midsummersnightsdream,1595\ncentre,1,midsummersnightsdream,1595\nmud,1,midsummersnightsdream,1595\nnightingale,1,midsummersnightsdream,1595\namazedly,1,midsummersnightsdream,1595\ndark,1,midsummersnightsdream,1595\nBedabbled,1,midsummersnightsdream,1595\nLest,1,midsummersnightsdream,1595\nLess,1,midsummersnightsdream,1595\nshone,1,midsummersnightsdream,1595\nnodding,1,midsummersnightsdream,1595\nThracian,1,midsummersnightsdream,1595\ncarcass,1,midsummersnightsdream,1595\nprimrose,1,midsummersnightsdream,1595\nroasted,1,midsummersnightsdream,1595\nrocks,1,midsummersnightsdream,1595\nfordone,1,midsummersnightsdream,1595\nglobe,1,midsummersnightsdream,1595\nfellowship,1,midsummersnightsdream,1595\ndry,1,midsummersnightsdream,1595\nbred,1,midsummersnightsdream,1595\nillusion,1,midsummersnightsdream,1595\nsnatch,1,midsummersnightsdream,1595\nSteppe,1,midsummersnightsdream,1595\nDRAMATIS,1,midsummersnightsdream,1595\nspangled,1,midsummersnightsdream,1595\nsinister,1,midsummersnightsdream,1595\nDue,1,midsummersnightsdream,1595\ngarlic,1,midsummersnightsdream,1595\ntie,1,midsummersnightsdream,1595\nshake,1,midsummersnightsdream,1595\ndank,1,midsummersnightsdream,1595\ndotage,1,midsummersnightsdream,1595\nfinish'd,1,midsummersnightsdream,1595\nKnight,1,midsummersnightsdream,1595\nundergo,1,midsummersnightsdream,1595\nversing,1,midsummersnightsdream,1595\nnoontide,1,midsummersnightsdream,1595\nTom,1,midsummersnightsdream,1595\nsuperpraise,1,midsummersnightsdream,1595\nexit,1,midsummersnightsdream,1595\nhe'll,1,midsummersnightsdream,1595\nBeetles,1,midsummersnightsdream,1595\nimpair,1,midsummersnightsdream,1595\nboasts,1,midsummersnightsdream,1595\ncontest,1,midsummersnightsdream,1595\nmunch,1,midsummersnightsdream,1595\nprivate,1,midsummersnightsdream,1595\nshifting,1,midsummersnightsdream,1595\npress'd,1,midsummersnightsdream,1595\nscales,1,midsummersnightsdream,1595\nslip,1,midsummersnightsdream,1595\nprincess,1,midsummersnightsdream,1595\nmutual,1,midsummersnightsdream,1595\neyelids,1,midsummersnightsdream,1595\ndeflower'd,1,midsummersnightsdream,1595\namen,1,midsummersnightsdream,1595\nfragrant,1,midsummersnightsdream,1595\narchery,1,midsummersnightsdream,1595\ndoting,1,midsummersnightsdream,1595\nrepair,1,midsummersnightsdream,1595\nshoes,1,midsummersnightsdream,1595\nFine,1,midsummersnightsdream,1595\nobedience,1,midsummersnightsdream,1595\nproperties,1,midsummersnightsdream,1595\nbewitch'd,1,midsummersnightsdream,1595\nSpartan,1,midsummersnightsdream,1595\nThrice,1,midsummersnightsdream,1595\nbide,1,midsummersnightsdream,1595\nconspired,1,midsummersnightsdream,1595\nhunting,1,midsummersnightsdream,1595\ndewdrops,1,midsummersnightsdream,1595\nundertake,1,midsummersnightsdream,1595\nBrief,1,midsummersnightsdream,1595\ncrows,1,midsummersnightsdream,1595\nsands,1,midsummersnightsdream,1595\norder,1,midsummersnightsdream,1595\nhold'st,1,midsummersnightsdream,1595\nsharp,1,midsummersnightsdream,1595\nwoo'd,1,midsummersnightsdream,1595\nseek'st,1,midsummersnightsdream,1595\nwomen,1,midsummersnightsdream,1595\nconsents,1,midsummersnightsdream,1595\nfortunes,1,midsummersnightsdream,1595\nsway,1,midsummersnightsdream,1595\nungrateful,1,midsummersnightsdream,1595\nlads,1,midsummersnightsdream,1595\nmisgraffed,1,midsummersnightsdream,1595\nGrows,1,midsummersnightsdream,1595\ndischarged,2,midsummersnightsdream,1595\nforbid,2,midsummersnightsdream,1595\ninvisible,2,midsummersnightsdream,1595\njoin,2,midsummersnightsdream,1595\ntook,2,midsummersnightsdream,1595\napprehend,2,midsummersnightsdream,1595\nspeech,2,midsummersnightsdream,1595\ntremble,2,midsummersnightsdream,1595\ndiscord,2,midsummersnightsdream,1595\nbusiness,2,midsummersnightsdream,1595\nneighbours,2,midsummersnightsdream,1595\nFie,2,midsummersnightsdream,1595\nwicked,2,midsummersnightsdream,1595\npeace,2,midsummersnightsdream,1595\nProcrus,2,midsummersnightsdream,1595\nscene,2,midsummersnightsdream,1595\nwestern,2,midsummersnightsdream,1595\nvillain,2,midsummersnightsdream,1595\nwaxen,2,midsummersnightsdream,1595\ncranny,2,midsummersnightsdream,1595\nThisbe's,2,midsummersnightsdream,1595\nTell,2,midsummersnightsdream,1595\nthorns,2,midsummersnightsdream,1595\ndarkness,2,midsummersnightsdream,1595\npainted,2,midsummersnightsdream,1595\nhers,2,midsummersnightsdream,1595\nMust,2,midsummersnightsdream,1595\nvain,2,midsummersnightsdream,1595\nsighs,2,midsummersnightsdream,1595\ngrim,2,midsummersnightsdream,1595\nHelp,2,midsummersnightsdream,1595\ntuneable,2,midsummersnightsdream,1595\nhanged,2,midsummersnightsdream,1595\nsummer's,2,midsummersnightsdream,1595\nunderstand,2,midsummersnightsdream,1595\nQUINCE'S,2,midsummersnightsdream,1595\nEre,2,midsummersnightsdream,1595\ncowardice,2,midsummersnightsdream,1595\nunder,2,midsummersnightsdream,1595\ncalls,2,midsummersnightsdream,1595\nNedar's,2,midsummersnightsdream,1595\ninnocence,2,midsummersnightsdream,1595\nbefall,2,midsummersnightsdream,1595\npress,2,midsummersnightsdream,1595\niron,2,midsummersnightsdream,1595\nQuite,2,midsummersnightsdream,1595\ncheeks,2,midsummersnightsdream,1595\ncare,2,midsummersnightsdream,1595\nmistook,2,midsummersnightsdream,1595\nmercy,2,midsummersnightsdream,1595\nOver,2,midsummersnightsdream,1595\nchid,2,midsummersnightsdream,1595\nsurfeit,2,midsummersnightsdream,1595\namazed,2,midsummersnightsdream,1595\nconfusion,2,midsummersnightsdream,1595\nWhose,2,midsummersnightsdream,1595\ngrown,2,midsummersnightsdream,1595\ngrows,2,midsummersnightsdream,1595\nfortunate,2,midsummersnightsdream,1595\nTongue,2,midsummersnightsdream,1595\nKeep,2,midsummersnightsdream,1595\nworthier,2,midsummersnightsdream,1595\ncheek,2,midsummersnightsdream,1595\ngolden,2,midsummersnightsdream,1595\npoet's,2,midsummersnightsdream,1595\nglass,2,midsummersnightsdream,1595\nlikeness,2,midsummersnightsdream,1595\nnoise,2,midsummersnightsdream,1595\nvisions,2,midsummersnightsdream,1595\nstealth,2,midsummersnightsdream,1595\nview,2,midsummersnightsdream,1595\nDuke,2,midsummersnightsdream,1595\nsung,2,midsummersnightsdream,1595\nsit,2,midsummersnightsdream,1595\nstands,2,midsummersnightsdream,1595\nGet,2,midsummersnightsdream,1595\nconceive,2,midsummersnightsdream,1595\nlovers',2,midsummersnightsdream,1595\nknavish,2,midsummersnightsdream,1595\nmaidens,2,midsummersnightsdream,1595\n'twere,2,midsummersnightsdream,1595\nkey,2,midsummersnightsdream,1595\nsex,2,midsummersnightsdream,1595\nvirtuous,2,midsummersnightsdream,1595\npersonage,2,midsummersnightsdream,1595\nwedding,2,midsummersnightsdream,1595\nwildest,2,midsummersnightsdream,1595\nSeem'd,2,midsummersnightsdream,1595\nmurderer,2,midsummersnightsdream,1595\nFarewell,2,midsummersnightsdream,1595\n'I,2,midsummersnightsdream,1595\nTheir,2,midsummersnightsdream,1595\ninterlude,2,midsummersnightsdream,1595\nMusic,2,midsummersnightsdream,1595\nchildhood,2,midsummersnightsdream,1595\nThanks,2,midsummersnightsdream,1595\nrelease,2,midsummersnightsdream,1595\nAthenian's,2,midsummersnightsdream,1595\nworst,2,midsummersnightsdream,1595\nesteem,2,midsummersnightsdream,1595\nfight,2,midsummersnightsdream,1595\ndances,2,midsummersnightsdream,1595\nmonster,2,midsummersnightsdream,1595\nafraid,2,midsummersnightsdream,1595\nfellow,2,midsummersnightsdream,1595\nborn,2,midsummersnightsdream,1595\ncommon,2,midsummersnightsdream,1595\nfigure,2,midsummersnightsdream,1595\ncivil,2,midsummersnightsdream,1595\nbliss,2,midsummersnightsdream,1595\nquake,2,midsummersnightsdream,1595\nloose,2,midsummersnightsdream,1595\npearl,2,midsummersnightsdream,1595\nthence,2,midsummersnightsdream,1595\nWhilst,2,midsummersnightsdream,1595\ncries,2,midsummersnightsdream,1595\nhumble,2,midsummersnightsdream,1595\nsun,2,midsummersnightsdream,1595\nspaniel,2,midsummersnightsdream,1595\nservice,2,midsummersnightsdream,1595\nblind,2,midsummersnightsdream,1595\nancient,2,midsummersnightsdream,1595\nundistinguishable,2,midsummersnightsdream,1595\nnails,2,midsummersnightsdream,1595\nsphere,2,midsummersnightsdream,1595\nwant,2,midsummersnightsdream,1595\nsteal,2,midsummersnightsdream,1595\nfruitless,2,midsummersnightsdream,1595\ntrifles,2,midsummersnightsdream,1595\nwise,2,midsummersnightsdream,1595\nbold,2,midsummersnightsdream,1595\nsooth,2,midsummersnightsdream,1595\nFetch,2,midsummersnightsdream,1595\nbully,2,midsummersnightsdream,1595\nwindow,2,midsummersnightsdream,1595\npretty,2,midsummersnightsdream,1595\ncunning,2,midsummersnightsdream,1595\nmistake,2,midsummersnightsdream,1595\nwast,2,midsummersnightsdream,1595\nFrench,2,midsummersnightsdream,1595\nspoke,2,midsummersnightsdream,1595\nGoodfellow,2,midsummersnightsdream,1595\nLove's,2,midsummersnightsdream,1595\nBottom's,2,midsummersnightsdream,1595\ngoddess,2,midsummersnightsdream,1595\nmanners,2,midsummersnightsdream,1595\nWhat's,2,midsummersnightsdream,1595\nvotaress,2,midsummersnightsdream,1595\nStabs,2,midsummersnightsdream,1595\nIII,2,midsummersnightsdream,1595\npat,2,midsummersnightsdream,1595\npap,2,midsummersnightsdream,1595\nThose,2,midsummersnightsdream,1595\namong,2,midsummersnightsdream,1595\nNature,2,midsummersnightsdream,1595\nass's,2,midsummersnightsdream,1595\nPhilomel,2,midsummersnightsdream,1595\ncanst,2,midsummersnightsdream,1595\nshines,2,midsummersnightsdream,1595\nfinds,2,midsummersnightsdream,1595\nchanged,2,midsummersnightsdream,1595\ntear,2,midsummersnightsdream,1595\nflowery,2,midsummersnightsdream,1595\nmeans,2,midsummersnightsdream,1595\npleasure,2,midsummersnightsdream,1595\nIV,2,midsummersnightsdream,1595\nblest,2,midsummersnightsdream,1595\nwhole,2,midsummersnightsdream,1595\nquick,2,midsummersnightsdream,1595\nrevenue,2,midsummersnightsdream,1595\nears,2,midsummersnightsdream,1595\ncourteous,2,midsummersnightsdream,1595\ngold,2,midsummersnightsdream,1595\ntongue's,2,midsummersnightsdream,1595\nnigh,2,midsummersnightsdream,1595\ncrush,2,midsummersnightsdream,1595\nwear,2,midsummersnightsdream,1595\nbent,2,midsummersnightsdream,1595\njealous,2,midsummersnightsdream,1595\nDies,2,midsummersnightsdream,1595\ncurse,2,midsummersnightsdream,1595\nworship's,2,midsummersnightsdream,1595\nEnough,2,midsummersnightsdream,1595\ncasement,2,midsummersnightsdream,1595\ndivine,2,midsummersnightsdream,1595\nenterprise,2,midsummersnightsdream,1595\nbeds,2,midsummersnightsdream,1595\nBoth,2,midsummersnightsdream,1595\nquite,2,midsummersnightsdream,1595\ni',2,midsummersnightsdream,1595\nsail,2,midsummersnightsdream,1595\naffection,2,midsummersnightsdream,1595\ntyrant,2,midsummersnightsdream,1595\nexcellent,2,midsummersnightsdream,1595\nrepent,2,midsummersnightsdream,1595\nCrete,2,midsummersnightsdream,1595\nseeming,2,midsummersnightsdream,1595\nquaint,2,midsummersnightsdream,1595\ngame,2,midsummersnightsdream,1595\namend,2,midsummersnightsdream,1595\nThorough,2,midsummersnightsdream,1595\naby,2,midsummersnightsdream,1595\nox,2,midsummersnightsdream,1595\nattending,2,midsummersnightsdream,1595\nwarbling,2,midsummersnightsdream,1595\nfears,2,midsummersnightsdream,1595\nbodies,2,midsummersnightsdream,1595\ndelay,2,midsummersnightsdream,1595\naside,2,midsummersnightsdream,1595\nmorn,2,midsummersnightsdream,1595\npursues,2,midsummersnightsdream,1595\nloud,2,midsummersnightsdream,1595\nYes,2,midsummersnightsdream,1595\nspent,2,midsummersnightsdream,1595\nill,2,midsummersnightsdream,1595\nace,2,midsummersnightsdream,1595\napparel,2,midsummersnightsdream,1595\nbeauteous,2,midsummersnightsdream,1595\nbootless,2,midsummersnightsdream,1595\npure,2,midsummersnightsdream,1595\nloam,2,midsummersnightsdream,1595\nhog,2,midsummersnightsdream,1595\nwithering,2,midsummersnightsdream,1595\nbriers,2,midsummersnightsdream,1595\nhark,2,midsummersnightsdream,1595\nkills,2,midsummersnightsdream,1595\nhard,2,midsummersnightsdream,1595\nscratch,2,midsummersnightsdream,1595\nMost,2,midsummersnightsdream,1595\ncrow,2,midsummersnightsdream,1595\nwelcome,2,midsummersnightsdream,1595\nCall,2,midsummersnightsdream,1595\nHercules,2,midsummersnightsdream,1595\nHappy,2,midsummersnightsdream,1595\nstrings,2,midsummersnightsdream,1595\nappears,2,midsummersnightsdream,1595\nFull,2,midsummersnightsdream,1595\nfour,2,midsummersnightsdream,1595\ndraws,2,midsummersnightsdream,1595\nplain,2,midsummersnightsdream,1595\nschool,2,midsummersnightsdream,1595\nspotted,2,midsummersnightsdream,1595\npluck,2,midsummersnightsdream,1595\nwhether,2,midsummersnightsdream,1595\ncity,2,midsummersnightsdream,1595\nweeps,2,midsummersnightsdream,1595\nform,2,midsummersnightsdream,1595\nnightly,2,midsummersnightsdream,1595\npain,2,midsummersnightsdream,1595\nstranger,2,midsummersnightsdream,1595\nwasted,2,midsummersnightsdream,1595\npoint,2,midsummersnightsdream,1595\nfoot,2,midsummersnightsdream,1595\nbosom,2,midsummersnightsdream,1595\nfool,2,midsummersnightsdream,1595\ndreadful,2,midsummersnightsdream,1595\nfood,2,midsummersnightsdream,1595\nBergomask,2,midsummersnightsdream,1595\nrevenge,2,midsummersnightsdream,1595\nHop,2,midsummersnightsdream,1595\nye,2,midsummersnightsdream,1595\nerror,2,midsummersnightsdream,1595\nHast,2,midsummersnightsdream,1595\nchance,2,midsummersnightsdream,1595\nSparta,2,midsummersnightsdream,1595\nthanks,2,midsummersnightsdream,1595\ndisdainful,2,midsummersnightsdream,1595\ntouch,2,midsummersnightsdream,1595\njudgment,2,midsummersnightsdream,1595\nbroke,2,midsummersnightsdream,1595\nHath,2,midsummersnightsdream,1595\nheight,2,midsummersnightsdream,1595\nInto,2,midsummersnightsdream,1595\nBetween,2,midsummersnightsdream,1595\nroom,2,midsummersnightsdream,1595\nhawthorn,2,midsummersnightsdream,1595\nglow,2,midsummersnightsdream,1595\nAgainst,2,midsummersnightsdream,1595\ncarries,2,midsummersnightsdream,1595\nreport,2,midsummersnightsdream,1595\nhill,2,midsummersnightsdream,1595\nmischief,2,midsummersnightsdream,1595\nwater,2,midsummersnightsdream,1595\nprosperity,2,midsummersnightsdream,1595\nVenus,2,midsummersnightsdream,1595\nalmost,2,midsummersnightsdream,1595\nrare,2,midsummersnightsdream,1595\nproceed,2,midsummersnightsdream,1595\naction,2,midsummersnightsdream,1595\nwaked,2,midsummersnightsdream,1595\nscroll,2,midsummersnightsdream,1595\nchase,2,midsummersnightsdream,1595\nvisage,2,midsummersnightsdream,1595\nalter,2,midsummersnightsdream,1595\nquickly,2,midsummersnightsdream,1595\narise,2,midsummersnightsdream,1595\nPhilostrate,2,midsummersnightsdream,1595\nparting,2,midsummersnightsdream,1595\nhorned,2,midsummersnightsdream,1595\norange,2,midsummersnightsdream,1595\nevermore,2,midsummersnightsdream,1595\nmouth,2,midsummersnightsdream,1595\nforest,2,midsummersnightsdream,1595\nLord,2,midsummersnightsdream,1595\nmouse,2,midsummersnightsdream,1595\nDoth,2,midsummersnightsdream,1595\nTurns,2,midsummersnightsdream,1595\ngroves,2,midsummersnightsdream,1595\nquestion,2,midsummersnightsdream,1595\nSee,2,midsummersnightsdream,1595\ndevice,2,midsummersnightsdream,1595\nairy,2,midsummersnightsdream,1595\ndaylight,2,midsummersnightsdream,1595\nmild,2,midsummersnightsdream,1595\npurposed,2,midsummersnightsdream,1595\nNick,2,midsummersnightsdream,1595\nalready,2,midsummersnightsdream,1595\ndidst,2,midsummersnightsdream,1595\nstraightway,2,midsummersnightsdream,1595\nCould,2,midsummersnightsdream,1595\nskin,2,midsummersnightsdream,1595\nconcord,2,midsummersnightsdream,1595\ncoward,2,midsummersnightsdream,1595\nALL,2,midsummersnightsdream,1595\nknows,2,midsummersnightsdream,1595\nfountain,2,midsummersnightsdream,1595\nwoe,2,midsummersnightsdream,1595\nissue,2,midsummersnightsdream,1595\nwot,2,midsummersnightsdream,1595\nwon,2,midsummersnightsdream,1595\nminutes,2,midsummersnightsdream,1595\nvision,2,midsummersnightsdream,1595\ngates,2,midsummersnightsdream,1595\ndischarge,2,midsummersnightsdream,1595\nmockery,2,midsummersnightsdream,1595\nHorns,2,midsummersnightsdream,1595\nploughman,2,midsummersnightsdream,1595\nparamour,2,midsummersnightsdream,1595\nWere,2,midsummersnightsdream,1595\ndisfigure,2,midsummersnightsdream,1595\nknavery,2,midsummersnightsdream,1595\nclose,2,midsummersnightsdream,1595\nwoodbine,2,midsummersnightsdream,1595\nduchess,2,midsummersnightsdream,1595\nflies,2,midsummersnightsdream,1595\nenamour'd,2,midsummersnightsdream,1595\nsalt,2,midsummersnightsdream,1595\npomp,2,midsummersnightsdream,1595\nsides,2,midsummersnightsdream,1595\noft,2,midsummersnightsdream,1595\nDead,2,midsummersnightsdream,1595\nwalks,2,midsummersnightsdream,1595\npartition,2,midsummersnightsdream,1595\nmusical,2,midsummersnightsdream,1595\nheavy,2,midsummersnightsdream,1595\nmaid's,2,midsummersnightsdream,1595\nThink,2,midsummersnightsdream,1595\nable,2,midsummersnightsdream,1595\ntailor,2,midsummersnightsdream,1595\nfancy's,2,midsummersnightsdream,1595\nintend,2,midsummersnightsdream,1595\nfantasies,2,midsummersnightsdream,1595\narrow,2,midsummersnightsdream,1595\nrage,2,midsummersnightsdream,1595\nassure,2,midsummersnightsdream,1595\nforward,2,midsummersnightsdream,1595\nends,2,midsummersnightsdream,1595\nowl,2,midsummersnightsdream,1595\nnews,2,midsummersnightsdream,1595\ndreams,2,midsummersnightsdream,1595\ntakes,2,midsummersnightsdream,1595\nfaced,2,midsummersnightsdream,1595\nconference,2,midsummersnightsdream,1595\nowe,2,midsummersnightsdream,1595\nyoke,2,midsummersnightsdream,1595\nwolf,2,midsummersnightsdream,1595\nbeguiled,2,midsummersnightsdream,1595\nangry,2,midsummersnightsdream,1595\ncover,2,midsummersnightsdream,1595\nfail,2,midsummersnightsdream,1595\ngrass,2,midsummersnightsdream,1595\nTill,2,midsummersnightsdream,1595\namends,2,midsummersnightsdream,1595\nwander,2,midsummersnightsdream,1595\ngrant,2,midsummersnightsdream,1595\nworn,2,midsummersnightsdream,1595\nfine,2,midsummersnightsdream,1595\nfolly,2,midsummersnightsdream,1595\nNear,2,midsummersnightsdream,1595\nwide,2,midsummersnightsdream,1595\nsmooth,2,midsummersnightsdream,1595\nwonted,2,midsummersnightsdream,1595\nwhither,2,midsummersnightsdream,1595\nodours,2,midsummersnightsdream,1595\nFour,2,midsummersnightsdream,1595\ncomfort,2,midsummersnightsdream,1595\naunt,2,midsummersnightsdream,1595\ncock,2,midsummersnightsdream,1595\nSteal,2,midsummersnightsdream,1595\nbank,2,midsummersnightsdream,1595\nlarge,2,midsummersnightsdream,1595\nbill,2,midsummersnightsdream,1595\nfare,2,midsummersnightsdream,1595\nWelcome,2,midsummersnightsdream,1595\ngallant,2,midsummersnightsdream,1595\ntale,2,midsummersnightsdream,1595\nis't,2,midsummersnightsdream,1595\ncalendar,2,midsummersnightsdream,1595\nacorn,2,midsummersnightsdream,1595\nhatred,2,midsummersnightsdream,1595\ncomprehends,2,midsummersnightsdream,1595\ncarry,2,midsummersnightsdream,1595\nShafalus,2,midsummersnightsdream,1595\ncreep,2,midsummersnightsdream,1595\nought,2,midsummersnightsdream,1595\npardon,2,midsummersnightsdream,1595\nstarlight,2,midsummersnightsdream,1595\nclear,2,midsummersnightsdream,1595\nshort,2,midsummersnightsdream,1595\nLay,2,midsummersnightsdream,1595\ncounterfeit,2,midsummersnightsdream,1595\nrequest,2,midsummersnightsdream,1595\nwinter,2,midsummersnightsdream,1595\nflood,2,midsummersnightsdream,1595\nWherefore,2,midsummersnightsdream,1595\nfavours,2,midsummersnightsdream,1595\ngives,2,midsummersnightsdream,1595\nfitted,2,midsummersnightsdream,1595\nwife,2,midsummersnightsdream,1595\nprayers,2,midsummersnightsdream,1595\nAnon,2,midsummersnightsdream,1595\nhung,2,midsummersnightsdream,1595\nhairy,2,midsummersnightsdream,1595\nvexation,2,midsummersnightsdream,1595\nwanderer,2,midsummersnightsdream,1595\naught,2,midsummersnightsdream,1595\nTruly,2,midsummersnightsdream,1595\nLie,2,midsummersnightsdream,1595\nmarvellous,2,midsummersnightsdream,1595\nfeigning,2,midsummersnightsdream,1595\nrender,2,midsummersnightsdream,1595\nhound,2,midsummersnightsdream,1595\nTrue,2,midsummersnightsdream,1595\ncorn,2,midsummersnightsdream,1595\nPray,2,midsummersnightsdream,1595\nperson,2,midsummersnightsdream,1595\nThings,2,midsummersnightsdream,1595\nhours,2,midsummersnightsdream,1595\nloathe,2,midsummersnightsdream,1595\nprayer,2,midsummersnightsdream,1595\ngods,2,midsummersnightsdream,1595\nTrip,2,midsummersnightsdream,1595\nfloods,2,midsummersnightsdream,1595\nmother's,2,midsummersnightsdream,1595\nbarren,2,midsummersnightsdream,1595\nsickness,2,midsummersnightsdream,1595\nFollowing,2,midsummersnightsdream,1595\nsorrow's,2,midsummersnightsdream,1595\nmethought,2,midsummersnightsdream,1595\nuntil,2,midsummersnightsdream,1595\nthread,2,midsummersnightsdream,1595\nslow,2,midsummersnightsdream,1595\nmad,2,midsummersnightsdream,1595\nafeard,2,midsummersnightsdream,1595\nDespised,2,midsummersnightsdream,1595\nstraight,2,midsummersnightsdream,1595\nSometime,2,midsummersnightsdream,1595\nmurder'd,2,midsummersnightsdream,1595\nBefore,2,midsummersnightsdream,1595\nthoughts,2,midsummersnightsdream,1595\nsimplicity,2,midsummersnightsdream,1595\nAway,2,midsummersnightsdream,1595\nbeguile,2,midsummersnightsdream,1595\nplayers,2,midsummersnightsdream,1595\nsometimes,2,midsummersnightsdream,1595\nMarry,2,midsummersnightsdream,1595\nnativity,2,midsummersnightsdream,1595\njollity,2,midsummersnightsdream,1595\nlate,2,midsummersnightsdream,1595\nSings,2,midsummersnightsdream,1595\neastern,2,midsummersnightsdream,1595\nvirtue,2,midsummersnightsdream,1595\nbeauty,2,midsummersnightsdream,1595\ncompel,2,midsummersnightsdream,1595\nglimmering,2,midsummersnightsdream,1595\nstretch'd,2,midsummersnightsdream,1595\nsilver,2,midsummersnightsdream,1595\nhurt,2,midsummersnightsdream,1595\ncontent,2,midsummersnightsdream,1595\nshade,2,midsummersnightsdream,1595\ntry,2,midsummersnightsdream,1595\nshrewd,2,midsummersnightsdream,1595\nsimple,2,midsummersnightsdream,1595\nspring,2,midsummersnightsdream,1595\nlover's,2,midsummersnightsdream,1595\nshaft,2,midsummersnightsdream,1595\nemploy,2,midsummersnightsdream,1595\nlaid,2,midsummersnightsdream,1595\nattend,2,midsummersnightsdream,1595\nperchance,2,midsummersnightsdream,1595\nGentles,2,midsummersnightsdream,1595\nweigh,2,midsummersnightsdream,1595\nframe,2,midsummersnightsdream,1595\ndue,2,midsummersnightsdream,1595\nliquor,2,midsummersnightsdream,1595\nanother's,2,midsummersnightsdream,1595\ntop,2,midsummersnightsdream,1595\ncouples,2,midsummersnightsdream,1595\nwonders,2,midsummersnightsdream,1595\nflout,2,midsummersnightsdream,1595\nbehold,2,midsummersnightsdream,1595\ndame,2,midsummersnightsdream,1595\nshame,2,midsummersnightsdream,1595\ndale,2,midsummersnightsdream,1595\njealousy,2,midsummersnightsdream,1595\nten,2,midsummersnightsdream,1595\nhaunted,2,midsummersnightsdream,1595\nremembrance,2,midsummersnightsdream,1595\noaths,2,midsummersnightsdream,1595\ntread,2,midsummersnightsdream,1595\nperhaps,2,midsummersnightsdream,1595\ncrown,2,midsummersnightsdream,1595\ndowager,2,midsummersnightsdream,1595\nhorns,3,midsummersnightsdream,1595\nparted,3,midsummersnightsdream,1595\nred,3,midsummersnightsdream,1595\nfancy,3,midsummersnightsdream,1595\ndarest,3,midsummersnightsdream,1595\nweary,3,midsummersnightsdream,1595\nshadows,3,midsummersnightsdream,1595\nalack,3,midsummersnightsdream,1595\nhaste,3,midsummersnightsdream,1595\ndotes,3,midsummersnightsdream,1595\nStay,3,midsummersnightsdream,1595\neight,3,midsummersnightsdream,1595\nEither,3,midsummersnightsdream,1595\nwhile,3,midsummersnightsdream,1595\nLovers,3,midsummersnightsdream,1595\nlulla,3,midsummersnightsdream,1595\nyonder,3,midsummersnightsdream,1595\nnymph,3,midsummersnightsdream,1595\nmusk,3,midsummersnightsdream,1595\nbower,3,midsummersnightsdream,1595\ncast,3,midsummersnightsdream,1595\ncase,3,midsummersnightsdream,1595\npursue,3,midsummersnightsdream,1595\nsoon,3,midsummersnightsdream,1595\nyourself,3,midsummersnightsdream,1595\nGive,3,midsummersnightsdream,1595\nlime,3,midsummersnightsdream,1595\ninjury,3,midsummersnightsdream,1595\nsure,3,midsummersnightsdream,1595\ncheer,3,midsummersnightsdream,1595\nhearing,3,midsummersnightsdream,1595\nfingers,3,midsummersnightsdream,1595\nteach,3,midsummersnightsdream,1595\nmoonshine,3,midsummersnightsdream,1595\nmerry,3,midsummersnightsdream,1595\nbeasts,3,midsummersnightsdream,1595\nyield,3,midsummersnightsdream,1595\nspy,3,midsummersnightsdream,1595\nperil,3,midsummersnightsdream,1595\nson,3,midsummersnightsdream,1595\nskill,3,midsummersnightsdream,1595\ncounsel,3,midsummersnightsdream,1595\ncause,3,midsummersnightsdream,1595\nsky,3,midsummersnightsdream,1595\nwings,3,midsummersnightsdream,1595\nleague,3,midsummersnightsdream,1595\nmother,3,midsummersnightsdream,1595\nAttendants,3,midsummersnightsdream,1595\nread,3,midsummersnightsdream,1595\nworse,3,midsummersnightsdream,1595\nsnow,3,midsummersnightsdream,1595\nfault,3,midsummersnightsdream,1595\nfalls,3,midsummersnightsdream,1595\nfearful,3,midsummersnightsdream,1595\nmasters,3,midsummersnightsdream,1595\nrude,3,midsummersnightsdream,1595\nHence,3,midsummersnightsdream,1595\ncomedy,3,midsummersnightsdream,1595\nnight's,3,midsummersnightsdream,1595\ntinker,3,midsummersnightsdream,1595\ngoose,3,midsummersnightsdream,1595\nwish,3,midsummersnightsdream,1595\ntranslated,3,midsummersnightsdream,1595\nanon,3,midsummersnightsdream,1595\nbond,3,midsummersnightsdream,1595\ncoats,3,midsummersnightsdream,1595\nparts,3,midsummersnightsdream,1595\ncolour,3,midsummersnightsdream,1595\nFollow,3,midsummersnightsdream,1595\nsick,3,midsummersnightsdream,1595\nwherefore,3,midsummersnightsdream,1595\nDemetrius',3,midsummersnightsdream,1595\nstir,3,midsummersnightsdream,1595\nmorning,3,midsummersnightsdream,1595\nWhile,3,midsummersnightsdream,1595\noffend,3,midsummersnightsdream,1595\nhay,3,midsummersnightsdream,1595\nmeasure,3,midsummersnightsdream,1595\nbag,3,midsummersnightsdream,1595\ncruel,3,midsummersnightsdream,1595\nsince,3,midsummersnightsdream,1595\nadder,3,midsummersnightsdream,1595\npass,3,midsummersnightsdream,1595\nproud,3,midsummersnightsdream,1595\nyourselves,3,midsummersnightsdream,1595\nmonstrous,3,midsummersnightsdream,1595\nchangeling,3,midsummersnightsdream,1595\ncat,3,midsummersnightsdream,1595\ncurst,3,midsummersnightsdream,1595\nSing,3,midsummersnightsdream,1595\nlonger,3,midsummersnightsdream,1595\nepilogue,3,midsummersnightsdream,1595\nsavours,3,midsummersnightsdream,1595\nbegin,3,midsummersnightsdream,1595\nstory,3,midsummersnightsdream,1595\nvirgin,3,midsummersnightsdream,1595\ndeep,3,midsummersnightsdream,1595\nconfess,3,midsummersnightsdream,1595\nbreast,3,midsummersnightsdream,1595\nair,3,midsummersnightsdream,1595\ntruest,3,midsummersnightsdream,1595\ntawny,3,midsummersnightsdream,1595\nlegs,3,midsummersnightsdream,1595\nStarveling,3,midsummersnightsdream,1595\ngait,3,midsummersnightsdream,1595\nplayed,3,midsummersnightsdream,1595\nspeed,3,midsummersnightsdream,1595\nprivilege,3,midsummersnightsdream,1595\nmove,3,midsummersnightsdream,1595\nidle,3,midsummersnightsdream,1595\nYea,3,midsummersnightsdream,1595\nlost,3,midsummersnightsdream,1595\nforgot,3,midsummersnightsdream,1595\nfierce,3,midsummersnightsdream,1595\nkeen,3,midsummersnightsdream,1595\naye,3,midsummersnightsdream,1595\nhue,3,midsummersnightsdream,1595\nhalf,3,midsummersnightsdream,1595\nknit,3,midsummersnightsdream,1595\nexcuse,3,midsummersnightsdream,1595\nacquaintance,3,midsummersnightsdream,1595\nFirst,3,midsummersnightsdream,1595\nmidnight,3,midsummersnightsdream,1595\nask,3,midsummersnightsdream,1595\nmender,3,midsummersnightsdream,1595\nmock,3,midsummersnightsdream,1595\nstones,3,midsummersnightsdream,1595\nIndian,3,midsummersnightsdream,1595\nmortals,3,midsummersnightsdream,1595\nrivals,3,midsummersnightsdream,1595\nNinny's,3,midsummersnightsdream,1595\nbeams,3,midsummersnightsdream,1595\nluck,3,midsummersnightsdream,1595\nnay,3,midsummersnightsdream,1595\nindeed,3,midsummersnightsdream,1595\nbeast,3,midsummersnightsdream,1595\nfaint,3,midsummersnightsdream,1595\nbellows,3,midsummersnightsdream,1595\nslain,3,midsummersnightsdream,1595\ndares,3,midsummersnightsdream,1595\nawhile,3,midsummersnightsdream,1595\nyours,3,midsummersnightsdream,1595\nspurn,3,midsummersnightsdream,1595\nLook,3,midsummersnightsdream,1595\nmilk,3,midsummersnightsdream,1595\nstars,3,midsummersnightsdream,1595\nshield,3,midsummersnightsdream,1595\nfoolish,3,midsummersnightsdream,1595\nbloody,3,midsummersnightsdream,1595\nknown,3,midsummersnightsdream,1595\nvein,3,midsummersnightsdream,1595\nchide,3,midsummersnightsdream,1595\nSwifter,3,midsummersnightsdream,1595\ndesires,3,midsummersnightsdream,1595\nthorough,3,midsummersnightsdream,1595\nwed,3,midsummersnightsdream,1595\nfray,3,midsummersnightsdream,1595\ntaste,3,midsummersnightsdream,1595\nWe'll,3,midsummersnightsdream,1595\nhateful,3,midsummersnightsdream,1595\nfetch,3,midsummersnightsdream,1595\nbeseech,3,midsummersnightsdream,1595\nwaking,3,midsummersnightsdream,1595\nflight,3,midsummersnightsdream,1595\n'The,3,midsummersnightsdream,1595\nintent,3,midsummersnightsdream,1595\nFates,3,midsummersnightsdream,1595\nwanton,3,midsummersnightsdream,1595\nserve,3,midsummersnightsdream,1595\nwatery,3,midsummersnightsdream,1595\nknight,3,midsummersnightsdream,1595\nforester,3,midsummersnightsdream,1595\nfox,3,midsummersnightsdream,1595\nEver,3,midsummersnightsdream,1595\nTheseus',3,midsummersnightsdream,1595\ncompare,3,midsummersnightsdream,1595\nMake,3,midsummersnightsdream,1595\nfall,3,midsummersnightsdream,1595\nroses,3,midsummersnightsdream,1595\ntragical,3,midsummersnightsdream,1595\nfit,3,midsummersnightsdream,1595\nperfect,3,midsummersnightsdream,1595\nvow,3,midsummersnightsdream,1595\ncherry,3,midsummersnightsdream,1595\nmadly,3,midsummersnightsdream,1595\nbird,3,midsummersnightsdream,1595\nfast,3,midsummersnightsdream,1595\nhope,3,midsummersnightsdream,1595\nSnout,3,midsummersnightsdream,1595\ntall,3,midsummersnightsdream,1595\nman's,3,midsummersnightsdream,1595\ngiven,3,midsummersnightsdream,1595\nEvery,3,midsummersnightsdream,1595\nthank,3,midsummersnightsdream,1595\nmelody,3,midsummersnightsdream,1595\nhole,3,midsummersnightsdream,1595\nmaster,3,midsummersnightsdream,1595\ncut,3,midsummersnightsdream,1595\nhonest,3,midsummersnightsdream,1595\ntire,3,midsummersnightsdream,1595\nforsooth,3,midsummersnightsdream,1595\nstrong,3,midsummersnightsdream,1595\nWhere's,3,midsummersnightsdream,1595\nlying,3,midsummersnightsdream,1595\nblade,3,midsummersnightsdream,1595\nweaver,3,midsummersnightsdream,1595\nsees,3,midsummersnightsdream,1595\nsweep,3,midsummersnightsdream,1595\nMine,3,midsummersnightsdream,1595\nsouls,3,midsummersnightsdream,1595\naccording,3,midsummersnightsdream,1595\nsent,3,midsummersnightsdream,1595\ncold,3,midsummersnightsdream,1595\neat,3,midsummersnightsdream,1595\nSnug,3,midsummersnightsdream,1595\nAnother,3,midsummersnightsdream,1595\nfled,3,midsummersnightsdream,1595\nwound,3,midsummersnightsdream,1595\nlark,3,midsummersnightsdream,1595\nSleep,3,midsummersnightsdream,1595\nfright,3,midsummersnightsdream,1595\nhuman,3,midsummersnightsdream,1595\nsprite,3,midsummersnightsdream,1595\ncross,3,midsummersnightsdream,1595\nLysander's,3,midsummersnightsdream,1595\nsolemnity,3,midsummersnightsdream,1595\nlack,3,midsummersnightsdream,1595\nshape,3,midsummersnightsdream,1595\ne'er,3,midsummersnightsdream,1595\nturn'd,3,midsummersnightsdream,1595\nsummer,3,midsummersnightsdream,1595\ndays,4,midsummersnightsdream,1595\ndouble,4,midsummersnightsdream,1595\nfollowing,4,midsummersnightsdream,1595\nhelp,4,midsummersnightsdream,1595\nFlute,4,midsummersnightsdream,1595\ntruly,4,midsummersnightsdream,1595\nsingle,4,midsummersnightsdream,1595\nherb,4,midsummersnightsdream,1595\nlies,4,midsummersnightsdream,1595\ntrust,4,midsummersnightsdream,1595\nremain,4,midsummersnightsdream,1595\nWould,4,midsummersnightsdream,1595\nUpon,4,midsummersnightsdream,1595\nsad,4,midsummersnightsdream,1595\njest,4,midsummersnightsdream,1595\nsat,4,midsummersnightsdream,1595\nsaw,4,midsummersnightsdream,1595\nwords,4,midsummersnightsdream,1595\ngracious,4,midsummersnightsdream,1595\ntown,4,midsummersnightsdream,1595\nMethinks,4,midsummersnightsdream,1595\nCupid,4,midsummersnightsdream,1595\nsomething,4,midsummersnightsdream,1595\nderision,4,midsummersnightsdream,1595\nsir,4,midsummersnightsdream,1595\nbetter,4,midsummersnightsdream,1595\nagainst,4,midsummersnightsdream,1595\nsea,4,midsummersnightsdream,1595\nSuch,4,midsummersnightsdream,1595\nmantle,4,midsummersnightsdream,1595\nWas,4,midsummersnightsdream,1595\nlooks,4,midsummersnightsdream,1595\ndoubt,4,midsummersnightsdream,1595\nwrong,4,midsummersnightsdream,1595\nbrier,4,midsummersnightsdream,1595\ndaughter,4,midsummersnightsdream,1595\nafter,4,midsummersnightsdream,1595\nwhite,4,midsummersnightsdream,1595\npromise,4,midsummersnightsdream,1595\nwhisper,4,midsummersnightsdream,1595\nfalse,4,midsummersnightsdream,1595\nseems,4,midsummersnightsdream,1595\nhated,4,midsummersnightsdream,1595\nsense,4,midsummersnightsdream,1595\nfriend,4,midsummersnightsdream,1595\nmean,4,midsummersnightsdream,1595\nbrake,4,midsummersnightsdream,1595\nbright,4,midsummersnightsdream,1595\nbitter,4,midsummersnightsdream,1595\nchamber,4,midsummersnightsdream,1595\nStand,4,midsummersnightsdream,1595\nforce,4,midsummersnightsdream,1595\nHer,4,midsummersnightsdream,1595\nGo,4,midsummersnightsdream,1595\nbid,4,midsummersnightsdream,1595\npast,4,midsummersnightsdream,1595\ntemple,4,midsummersnightsdream,1595\nthorn,4,midsummersnightsdream,1595\ndove,4,midsummersnightsdream,1595\nweak,4,midsummersnightsdream,1595\nSpeak,4,midsummersnightsdream,1595\nput,4,midsummersnightsdream,1595\nbuds,4,midsummersnightsdream,1595\nserpent,4,midsummersnightsdream,1595\n'tis,4,midsummersnightsdream,1595\nbeen,4,midsummersnightsdream,1595\nMasters,4,midsummersnightsdream,1595\nsaid,4,midsummersnightsdream,1595\nMethought,4,midsummersnightsdream,1595\nsixpence,4,midsummersnightsdream,1595\nneeds,4,midsummersnightsdream,1595\napproach,4,midsummersnightsdream,1595\ndone,4,midsummersnightsdream,1595\nsmall,4,midsummersnightsdream,1595\nReads,4,midsummersnightsdream,1595\nYet,4,midsummersnightsdream,1595\nho,4,midsummersnightsdream,1595\nlose,4,midsummersnightsdream,1595\nvalour,4,midsummersnightsdream,1595\ndiscourse,4,midsummersnightsdream,1595\nfield,4,midsummersnightsdream,1595\nround,4,midsummersnightsdream,1595\ndelight,4,midsummersnightsdream,1595\nfiery,4,midsummersnightsdream,1595\nfond,4,midsummersnightsdream,1595\nfresh,4,midsummersnightsdream,1595\nmaiden,4,midsummersnightsdream,1595\npurple,4,midsummersnightsdream,1595\nchange,4,midsummersnightsdream,1595\nhoney,4,midsummersnightsdream,1595\nnote,4,midsummersnightsdream,1595\nremedy,4,midsummersnightsdream,1595\ntender,4,midsummersnightsdream,1595\nhide,4,midsummersnightsdream,1595\nwandering,4,midsummersnightsdream,1595\nwritten,4,midsummersnightsdream,1595\ncharm,4,midsummersnightsdream,1595\nhigh,4,midsummersnightsdream,1595\nmortal,4,midsummersnightsdream,1595\nmyself,4,midsummersnightsdream,1595\nbosoms,4,midsummersnightsdream,1595\nmind,4,midsummersnightsdream,1595\nThey,4,midsummersnightsdream,1595\nMade,4,midsummersnightsdream,1595\nwit,4,midsummersnightsdream,1595\nsays,4,midsummersnightsdream,1595\nripe,4,midsummersnightsdream,1595\nbelieve,4,midsummersnightsdream,1595\nactors,4,midsummersnightsdream,1595\nbetween,4,midsummersnightsdream,1595\ntrusty,4,midsummersnightsdream,1595\nperforce,4,midsummersnightsdream,1595\nfound,4,midsummersnightsdream,1595\nwont,4,midsummersnightsdream,1595\ncoming,4,midsummersnightsdream,1595\nlullaby,4,midsummersnightsdream,1595\nCupid's,4,midsummersnightsdream,1595\nHail,4,midsummersnightsdream,1595\nconsent,4,midsummersnightsdream,1595\nminds,4,midsummersnightsdream,1595\nplease,4,midsummersnightsdream,1595\nwork,4,midsummersnightsdream,1595\neven,4,midsummersnightsdream,1595\nSweet,4,midsummersnightsdream,1595\npassion,4,midsummersnightsdream,1595\nrich,4,midsummersnightsdream,1595\njoiner,4,midsummersnightsdream,1595\nperceive,4,midsummersnightsdream,1595\nkiss,4,midsummersnightsdream,1595\ncue,4,midsummersnightsdream,1595\nholds,4,midsummersnightsdream,1595\nhome,4,midsummersnightsdream,1595\nyellow,4,midsummersnightsdream,1595\nadieu,4,midsummersnightsdream,1595\nuse,4,midsummersnightsdream,1595\neither,4,midsummersnightsdream,1595\npresence,4,midsummersnightsdream,1595\nelves,4,midsummersnightsdream,1595\nwhom,4,midsummersnightsdream,1595\ncry,4,midsummersnightsdream,1595\neyne,4,midsummersnightsdream,1595\ngoes,4,midsummersnightsdream,1595\nTwo,4,midsummersnightsdream,1595\nspirits,4,midsummersnightsdream,1595\nmet,4,midsummersnightsdream,1595\nmakes,4,midsummersnightsdream,1595\nSince,4,midsummersnightsdream,1595\nMounsieur,4,midsummersnightsdream,1595\nfollow'd,4,midsummersnightsdream,1595\nrespect,4,midsummersnightsdream,1595\nDid,4,midsummersnightsdream,1595\nwithout,4,midsummersnightsdream,1595\nFair,4,midsummersnightsdream,1595\nanswer,5,midsummersnightsdream,1595\nmistress,5,midsummersnightsdream,1595\nhorse,5,midsummersnightsdream,1595\nthought,5,midsummersnightsdream,1595\nrather,5,midsummersnightsdream,1595\nhell,5,midsummersnightsdream,1595\nappear,5,midsummersnightsdream,1595\nsort,5,midsummersnightsdream,1595\nsong,5,midsummersnightsdream,1595\ndraw,5,midsummersnightsdream,1595\ngrove,5,midsummersnightsdream,1595\nPeaseblossom,5,midsummersnightsdream,1595\nrevels,5,midsummersnightsdream,1595\nblessed,5,midsummersnightsdream,1595\nWho,5,midsummersnightsdream,1595\nblack,5,midsummersnightsdream,1595\nfurther,5,midsummersnightsdream,1595\nwake,5,midsummersnightsdream,1595\nturn,5,midsummersnightsdream,1595\nOur,5,midsummersnightsdream,1595\nwakest,5,midsummersnightsdream,1595\nbrief,5,midsummersnightsdream,1595\nwind,5,midsummersnightsdream,1595\nlion's,5,midsummersnightsdream,1595\nmirth,5,midsummersnightsdream,1595\nOne,5,midsummersnightsdream,1595\nside,5,midsummersnightsdream,1595\npatience,5,midsummersnightsdream,1595\nbow,5,midsummersnightsdream,1595\nOn,5,midsummersnightsdream,1595\nflowers,5,midsummersnightsdream,1595\nbeg,5,midsummersnightsdream,1595\nprove,5,midsummersnightsdream,1595\nGood,5,midsummersnightsdream,1595\nbehind,5,midsummersnightsdream,1595\ndote,5,midsummersnightsdream,1595\ndost,5,midsummersnightsdream,1595\nLies,5,midsummersnightsdream,1595\ntedious,5,midsummersnightsdream,1595\nvows,5,midsummersnightsdream,1595\nLike,5,midsummersnightsdream,1595\nGod,5,midsummersnightsdream,1595\nMaster,5,midsummersnightsdream,1595\nPuck,5,midsummersnightsdream,1595\nReady,5,midsummersnightsdream,1595\nthose,5,midsummersnightsdream,1595\nloved,5,midsummersnightsdream,1595\nhang,5,midsummersnightsdream,1595\nMoon,5,midsummersnightsdream,1595\nrough,5,midsummersnightsdream,1595\nThan,5,midsummersnightsdream,1595\nfar,5,midsummersnightsdream,1595\noften,5,midsummersnightsdream,1595\nPrologue,5,midsummersnightsdream,1595\nrose,5,midsummersnightsdream,1595\nsilence,5,midsummersnightsdream,1595\nfaith,5,midsummersnightsdream,1595\nstrike,5,midsummersnightsdream,1595\nchink,5,midsummersnightsdream,1595\nmany,5,midsummersnightsdream,1595\nmark,5,midsummersnightsdream,1595\nwoo,5,midsummersnightsdream,1595\nonly,5,midsummersnightsdream,1595\nThus,5,midsummersnightsdream,1595\nduty,5,midsummersnightsdream,1595\nnuptial,5,midsummersnightsdream,1595\noath,5,midsummersnightsdream,1595\nthemselves,5,midsummersnightsdream,1595\nhappy,5,midsummersnightsdream,1595\nmarry,5,midsummersnightsdream,1595\nmodesty,5,midsummersnightsdream,1595\nmethinks,5,midsummersnightsdream,1595\npalace,5,midsummersnightsdream,1595\nrehearse,5,midsummersnightsdream,1595\nAwaking,5,midsummersnightsdream,1595\nwild,5,midsummersnightsdream,1595\nhearts,5,midsummersnightsdream,1595\nlow,5,midsummersnightsdream,1595\nseem,5,midsummersnightsdream,1595\ntroth,5,midsummersnightsdream,1595\nhounds,5,midsummersnightsdream,1595\nlook'd,5,midsummersnightsdream,1595\ncourtesy,5,midsummersnightsdream,1595\nMOTH,5,midsummersnightsdream,1595\nentreat,5,midsummersnightsdream,1595\nlie,5,midsummersnightsdream,1595\nimagination,5,midsummersnightsdream,1595\nspite,5,midsummersnightsdream,1595\nlips,5,midsummersnightsdream,1595\nlive,5,midsummersnightsdream,1595\nstrange,5,midsummersnightsdream,1595\ndog,5,midsummersnightsdream,1595\nland,5,midsummersnightsdream,1595\ncatch,5,midsummersnightsdream,1595\ncertain,5,midsummersnightsdream,1595\nshine,5,midsummersnightsdream,1595\nking,5,midsummersnightsdream,1595\nkind,5,midsummersnightsdream,1595\nwoman,5,midsummersnightsdream,1595\ntold,6,midsummersnightsdream,1595\ntomb,6,midsummersnightsdream,1595\nNay,6,midsummersnightsdream,1595\nNever,6,midsummersnightsdream,1595\nsleeps,6,midsummersnightsdream,1595\nworld,6,midsummersnightsdream,1595\ndance,6,midsummersnightsdream,1595\nanother,6,midsummersnightsdream,1595\nfull,6,midsummersnightsdream,1595\nfell,6,midsummersnightsdream,1595\nlove's,6,midsummersnightsdream,1595\nOut,6,midsummersnightsdream,1595\nabout,6,midsummersnightsdream,1595\ngrow,6,midsummersnightsdream,1595\nsword,6,midsummersnightsdream,1595\nheaven,6,midsummersnightsdream,1595\nThisby's,6,midsummersnightsdream,1595\nFairy,6,midsummersnightsdream,1595\neach,6,midsummersnightsdream,1595\nAt,6,midsummersnightsdream,1595\nHis,6,midsummersnightsdream,1595\nII,6,midsummersnightsdream,1595\nbless,6,midsummersnightsdream,1595\nwhose,6,midsummersnightsdream,1595\nbreath,6,midsummersnightsdream,1595\nleft,6,midsummersnightsdream,1595\nearth,6,midsummersnightsdream,1595\nnoble,6,midsummersnightsdream,1595\nFairies,6,midsummersnightsdream,1595\nBecause,6,midsummersnightsdream,1595\nharm,6,midsummersnightsdream,1595\nchoice,6,midsummersnightsdream,1595\nCobweb,6,midsummersnightsdream,1595\npale,6,midsummersnightsdream,1595\nMore,6,midsummersnightsdream,1595\npresent,6,midsummersnightsdream,1595\nass,6,midsummersnightsdream,1595\nAre,6,midsummersnightsdream,1595\nnew,6,midsummersnightsdream,1595\nmaid,6,midsummersnightsdream,1595\nShe,6,midsummersnightsdream,1595\nSome,6,midsummersnightsdream,1595\nend,6,midsummersnightsdream,1595\nover,6,midsummersnightsdream,1595\nMustardseed,6,midsummersnightsdream,1595\nfire,6,midsummersnightsdream,1595\nwho,6,midsummersnightsdream,1595\nget,6,midsummersnightsdream,1595\nthine,6,midsummersnightsdream,1595\nsake,6,midsummersnightsdream,1595\nstand,6,midsummersnightsdream,1595\nwhy,6,midsummersnightsdream,1595\njuice,6,midsummersnightsdream,1595\nmoonlight,6,midsummersnightsdream,1595\nhair,6,midsummersnightsdream,1595\nmounsieur,6,midsummersnightsdream,1595\nprologue,6,midsummersnightsdream,1595\nold,6,midsummersnightsdream,1595\nfly,6,midsummersnightsdream,1595\nhour,6,midsummersnightsdream,1595\ngentleman,6,midsummersnightsdream,1595\nlaw,6,midsummersnightsdream,1595\nwilt,6,midsummersnightsdream,1595\nalone,6,midsummersnightsdream,1595\nswear,6,midsummersnightsdream,1595\nseen,6,midsummersnightsdream,1595\nseek,6,midsummersnightsdream,1595\ndiscretion,6,midsummersnightsdream,1595\nsound,6,midsummersnightsdream,1595\nhither,6,midsummersnightsdream,1595\ntogether,6,midsummersnightsdream,1595\nfirst,6,midsummersnightsdream,1595\nMay,6,midsummersnightsdream,1595\nTake,6,midsummersnightsdream,1595\ndew,6,midsummersnightsdream,1595\nawake,6,midsummersnightsdream,1595\nspirit,6,midsummersnightsdream,1595\nEgeus,6,midsummersnightsdream,1595\nWill,7,midsummersnightsdream,1595\njoy,7,midsummersnightsdream,1595\nsoul,7,midsummersnightsdream,1595\nPEASEBLOSSOM,7,midsummersnightsdream,1595\nset,7,midsummersnightsdream,1595\nThese,7,midsummersnightsdream,1595\nhence,7,midsummersnightsdream,1595\nAn,7,midsummersnightsdream,1595\nIs,7,midsummersnightsdream,1595\nSNUG,7,midsummersnightsdream,1595\nsing,7,midsummersnightsdream,1595\nhands,7,midsummersnightsdream,1595\nkeep,7,midsummersnightsdream,1595\nlanthorn,7,midsummersnightsdream,1595\nHelen,7,midsummersnightsdream,1595\nright,7,midsummersnightsdream,1595\nlead,7,midsummersnightsdream,1595\nHave,7,midsummersnightsdream,1595\nwonder,7,midsummersnightsdream,1595\nnone,7,midsummersnightsdream,1595\ninto,7,midsummersnightsdream,1595\nbeard,7,midsummersnightsdream,1595\nLove,7,midsummersnightsdream,1595\nyoung,7,midsummersnightsdream,1595\nTherefore,7,midsummersnightsdream,1595\nyouth,7,midsummersnightsdream,1595\nAll,7,midsummersnightsdream,1595\nfather's,7,midsummersnightsdream,1595\nbreak,7,midsummersnightsdream,1595\nnext,7,midsummersnightsdream,1595\nShall,7,midsummersnightsdream,1595\nground,7,midsummersnightsdream,1595\nreason,7,midsummersnightsdream,1595\nhold,7,midsummersnightsdream,1595\nlovely,7,midsummersnightsdream,1595\nfairies,7,midsummersnightsdream,1595\nHippolyta,7,midsummersnightsdream,1595\nfather,7,midsummersnightsdream,1595\nThy,7,midsummersnightsdream,1595\nasleep,7,midsummersnightsdream,1595\nflower,7,midsummersnightsdream,1595\nshalt,7,midsummersnightsdream,1595\nmight,7,midsummersnightsdream,1595\nCOBWEB,7,midsummersnightsdream,1595\nHermia's,7,midsummersnightsdream,1595\nhimself,7,midsummersnightsdream,1595\npity,8,midsummersnightsdream,1595\nroar,8,midsummersnightsdream,1595\ntears,8,midsummersnightsdream,1595\nrun,8,midsummersnightsdream,1595\ntruth,8,midsummersnightsdream,1595\nNor,8,midsummersnightsdream,1595\nscorn,8,midsummersnightsdream,1595\nvile,8,midsummersnightsdream,1595\nMUSTARDSEED,8,midsummersnightsdream,1595\nbring,8,midsummersnightsdream,1595\nDo,8,midsummersnightsdream,1595\nmusic,8,midsummersnightsdream,1595\nBe,8,midsummersnightsdream,1595\nblood,8,midsummersnightsdream,1595\nbush,8,midsummersnightsdream,1595\nany,8,midsummersnightsdream,1595\nsometime,8,midsummersnightsdream,1595\ntrain,8,midsummersnightsdream,1595\nlover,8,midsummersnightsdream,1595\nhate,8,midsummersnightsdream,1595\nshow,8,midsummersnightsdream,1595\nRobin,8,midsummersnightsdream,1595\nYour,8,midsummersnightsdream,1595\nPeter,8,midsummersnightsdream,1595\nbefore,8,midsummersnightsdream,1595\nstill,8,midsummersnightsdream,1595\noff,8,midsummersnightsdream,1595\nmorrow,8,midsummersnightsdream,1595\nQuince,8,midsummersnightsdream,1595\nstolen,8,midsummersnightsdream,1595\ngreat,8,midsummersnightsdream,1595\nOberon,8,midsummersnightsdream,1595\near,8,midsummersnightsdream,1595\nbeing,8,midsummersnightsdream,1595\nsleeping,8,midsummersnightsdream,1595\nSTARVELING,9,midsummersnightsdream,1595\nfriends,9,midsummersnightsdream,1595\ncall,9,midsummersnightsdream,1595\ncame,9,midsummersnightsdream,1595\nenough,9,midsummersnightsdream,1595\nlight,9,midsummersnightsdream,1595\ndesire,9,midsummersnightsdream,1595\nelse,9,midsummersnightsdream,1595\nboy,9,midsummersnightsdream,1595\nTitania,9,midsummersnightsdream,1595\nTheseus,9,midsummersnightsdream,1595\nloves,9,midsummersnightsdream,1595\nhand,9,midsummersnightsdream,1595\nforth,9,midsummersnightsdream,1595\nlittle,9,midsummersnightsdream,1595\nthough,9,midsummersnightsdream,1595\nACT,9,midsummersnightsdream,1595\nFrom,9,midsummersnightsdream,1595\nonce,9,midsummersnightsdream,1595\nWell,9,midsummersnightsdream,1595\nway,9,midsummersnightsdream,1595\nown,9,midsummersnightsdream,1595\nface,9,midsummersnightsdream,1595\nthree,9,midsummersnightsdream,1595\ncompany,9,midsummersnightsdream,1595\nword,9,midsummersnightsdream,1595\ngreen,9,midsummersnightsdream,1595\nunto,9,midsummersnightsdream,1595\nThrough,9,midsummersnightsdream,1595\npoor,9,midsummersnightsdream,1595\nladies,9,midsummersnightsdream,1595\npower,9,midsummersnightsdream,1595\nsight,10,midsummersnightsdream,1595\nNot,10,midsummersnightsdream,1595\nwithin,10,midsummersnightsdream,1595\nboth,10,midsummersnightsdream,1595\nvoice,10,midsummersnightsdream,1595\nAy,10,midsummersnightsdream,1595\nbest,10,midsummersnightsdream,1595\nlong,10,midsummersnightsdream,1595\nmade,10,midsummersnightsdream,1595\nchild,10,midsummersnightsdream,1595\nDREAM,10,midsummersnightsdream,1595\nsame,10,midsummersnightsdream,1595\nheard,10,midsummersnightsdream,1595\nMIDSUMMER,10,midsummersnightsdream,1595\nLet,10,midsummersnightsdream,1595\nback,10,midsummersnightsdream,1595\nNIGHT'S,10,midsummersnightsdream,1595\nBottom,10,midsummersnightsdream,1595\nSCENE,10,midsummersnightsdream,1595\nkill,10,midsummersnightsdream,1595\nlady,10,midsummersnightsdream,1595\no'er,11,midsummersnightsdream,1595\nmuch,11,midsummersnightsdream,1595\nWall,11,midsummersnightsdream,1595\nThere,11,midsummersnightsdream,1595\nstay,11,midsummersnightsdream,1595\nsport,11,midsummersnightsdream,1595\ntongue,11,midsummersnightsdream,1595\nbear,11,midsummersnightsdream,1595\ngrace,11,midsummersnightsdream,1595\nere,11,midsummersnightsdream,1595\nvery,11,midsummersnightsdream,1595\ncould,11,midsummersnightsdream,1595\nnear,11,midsummersnightsdream,1595\nthing,11,midsummersnightsdream,1595\nEGEUS,11,midsummersnightsdream,1595\nduke,11,midsummersnightsdream,1595\nfind,11,midsummersnightsdream,1595\ntime,11,midsummersnightsdream,1595\ntill,11,midsummersnightsdream,1595\nhouse,11,midsummersnightsdream,1595\nother,11,midsummersnightsdream,1595\npray,12,midsummersnightsdream,1595\nhead,12,midsummersnightsdream,1595\nnothing,12,midsummersnightsdream,1595\nMoonshine,12,midsummersnightsdream,1595\ntherefore,12,midsummersnightsdream,1595\nHe,12,midsummersnightsdream,1595\nWe,12,midsummersnightsdream,1595\nLion,12,midsummersnightsdream,1595\ndead,12,midsummersnightsdream,1595\nplace,12,midsummersnightsdream,1595\nwhere,12,midsummersnightsdream,1595\nPHILOSTRATE,12,midsummersnightsdream,1595\nnor,12,midsummersnightsdream,1595\never,12,midsummersnightsdream,1595\nlovers,12,midsummersnightsdream,1595\nmen,12,midsummersnightsdream,1595\ncannot,12,midsummersnightsdream,1595\ndie,12,midsummersnightsdream,1595\nrest,13,midsummersnightsdream,1595\nname,13,midsummersnightsdream,1595\ndream,13,midsummersnightsdream,1595\nthink,13,midsummersnightsdream,1595\nSNOUT,14,midsummersnightsdream,1595\nlife,14,midsummersnightsdream,1595\ndeath,14,midsummersnightsdream,1595\ntell,14,midsummersnightsdream,1595\nRe,14,midsummersnightsdream,1595\nhast,14,midsummersnightsdream,1595\nthings,14,midsummersnightsdream,1595\nagain,14,midsummersnightsdream,1595\nqueen,14,midsummersnightsdream,1595\nAthenian,14,midsummersnightsdream,1595\nfollow,14,midsummersnightsdream,1595\nHere,15,midsummersnightsdream,1595\nFLUTE,15,midsummersnightsdream,1595\nbed,15,midsummersnightsdream,1595\nWhich,15,midsummersnightsdream,1595\ndear,15,midsummersnightsdream,1595\ngentle,15,midsummersnightsdream,1595\nwere,15,midsummersnightsdream,1595\nleave,15,midsummersnightsdream,1595\ntwo,15,midsummersnightsdream,1595\nWhere,15,midsummersnightsdream,1595\n',16,midsummersnightsdream,1595\nmeet,16,midsummersnightsdream,1595\nevery,16,midsummersnightsdream,1595\nWhy,16,midsummersnightsdream,1595\nfear,16,midsummersnightsdream,1595\nBy,16,midsummersnightsdream,1595\nIt,16,midsummersnightsdream,1595\ngone,16,midsummersnightsdream,1595\nhow,16,midsummersnightsdream,1595\npart,16,midsummersnightsdream,1595\nart,16,midsummersnightsdream,1595\nThen,16,midsummersnightsdream,1595\nthus,16,midsummersnightsdream,1595\nsleep,16,midsummersnightsdream,1595\nOf,17,midsummersnightsdream,1595\nenter,17,midsummersnightsdream,1595\ndown,17,midsummersnightsdream,1595\nExeunt,17,midsummersnightsdream,1595\nOr,17,midsummersnightsdream,1595\ngive,17,midsummersnightsdream,1595\ncomes,17,midsummersnightsdream,1595\nmost,18,midsummersnightsdream,1595\nThou,18,midsummersnightsdream,1595\ntake,18,midsummersnightsdream,1595\nlion,18,midsummersnightsdream,1595\nhad,19,midsummersnightsdream,1595\nthrough,19,midsummersnightsdream,1595\nHIPPOLYTA,19,midsummersnightsdream,1595\ntoo,19,midsummersnightsdream,1595\nCome,20,midsummersnightsdream,1595\nhear,20,midsummersnightsdream,1595\nwall,20,midsummersnightsdream,1595\nsuch,20,midsummersnightsdream,1595\nHow,20,midsummersnightsdream,1595\nmine,20,midsummersnightsdream,1595\naway,21,midsummersnightsdream,1595\nAs,21,midsummersnightsdream,1595\nThisbe,21,midsummersnightsdream,1595\nNo,21,midsummersnightsdream,1595\neye,21,midsummersnightsdream,1595\nheart,21,midsummersnightsdream,1595\nlike,22,midsummersnightsdream,1595\nyet,22,midsummersnightsdream,1595\nfairy,22,midsummersnightsdream,1595\nwell,22,midsummersnightsdream,1595\nout,22,midsummersnightsdream,1595\nwhich,23,midsummersnightsdream,1595\nThisby,23,midsummersnightsdream,1595\nknow,23,midsummersnightsdream,1595\nspeak,23,midsummersnightsdream,1595\nday,23,midsummersnightsdream,1595\nNow,24,midsummersnightsdream,1595\nthese,24,midsummersnightsdream,1595\nMy,24,midsummersnightsdream,1595\nlook,24,midsummersnightsdream,1595\nmoon,24,midsummersnightsdream,1595\nus,24,midsummersnightsdream,1595\nHelena,24,midsummersnightsdream,1595\nwood,24,midsummersnightsdream,1595\nto,280,midsummersnightsdream,1595\nupon,25,midsummersnightsdream,1595\nsay,25,midsummersnightsdream,1595\nmay,25,midsummersnightsdream,1595\ntrue,25,midsummersnightsdream,1595\nAthens,26,midsummersnightsdream,1595\nthere,26,midsummersnightsdream,1595\nIf,26,midsummersnightsdream,1595\nwas,26,midsummersnightsdream,1595\nlet,26,midsummersnightsdream,1595\nthem,27,midsummersnightsdream,1595\nIn,27,midsummersnightsdream,1595\nlord,27,midsummersnightsdream,1595\nup,27,midsummersnightsdream,1595\nI'll,27,midsummersnightsdream,1595\nWith,28,midsummersnightsdream,1595\nthan,28,midsummersnightsdream,1595\nan,28,midsummersnightsdream,1595\nfair,28,midsummersnightsdream,1595\nnever,29,midsummersnightsdream,1595\ndoth,29,midsummersnightsdream,1595\nWhen,29,midsummersnightsdream,1595\nthey,30,midsummersnightsdream,1595\nSo,30,midsummersnightsdream,1595\nsome,31,midsummersnightsdream,1595\nthen,31,midsummersnightsdream,1595\ncan,31,midsummersnightsdream,1595\nwhen,31,midsummersnightsdream,1595\nExit,31,midsummersnightsdream,1595\nWhat,31,midsummersnightsdream,1595\ngo,32,midsummersnightsdream,1595\nTITANIA,32,midsummersnightsdream,1595\nat,33,midsummersnightsdream,1595\nThis,33,midsummersnightsdream,1595\ndid,33,midsummersnightsdream,1595\nplay,34,midsummersnightsdream,1595\nshould,34,midsummersnightsdream,1595\nhath,34,midsummersnightsdream,1595\nmake,34,midsummersnightsdream,1595\nFor,35,midsummersnightsdream,1595\nYou,35,midsummersnightsdream,1595\nOBERON,36,midsummersnightsdream,1595\nEnter,36,midsummersnightsdream,1595\nwould,36,midsummersnightsdream,1595\nsee,37,midsummersnightsdream,1595\ngood,37,midsummersnightsdream,1595\nA,38,midsummersnightsdream,1595\nHermia,38,midsummersnightsdream,1595\nDemetrius,38,midsummersnightsdream,1595\nLysander,38,midsummersnightsdream,1595\none,38,midsummersnightsdream,1595\nif,39,midsummersnightsdream,1595\ncome,39,midsummersnightsdream,1595\neyes,40,midsummersnightsdream,1595\nwhat,41,midsummersnightsdream,1595\nmust,42,midsummersnightsdream,1595\nnow,42,midsummersnightsdream,1595\nmore,44,midsummersnightsdream,1595\nPUCK,44,midsummersnightsdream,1595\nsweet,44,midsummersnightsdream,1595\nQUINCE,45,midsummersnightsdream,1595\nHELENA,45,midsummersnightsdream,1595\nnight,46,midsummersnightsdream,1595\nor,46,midsummersnightsdream,1595\nThat,46,midsummersnightsdream,1595\nman,47,midsummersnightsdream,1595\ntheir,50,midsummersnightsdream,1595\nfrom,50,midsummersnightsdream,1595\nhim,51,midsummersnightsdream,1595\nhere,52,midsummersnightsdream,1595\nby,53,midsummersnightsdream,1595\nour,54,midsummersnightsdream,1595\nam,55,midsummersnightsdream,1595\nTHESEUS,55,midsummersnightsdream,1595\nshe,56,midsummersnightsdream,1595\nBOTTOM,56,midsummersnightsdream,1595\nPyramus,56,midsummersnightsdream,1595\nHERMIA,58,midsummersnightsdream,1595\nthy,58,midsummersnightsdream,1595\nDEMETRIUS,60,midsummersnightsdream,1595\nbut,60,midsummersnightsdream,1595\nO,61,midsummersnightsdream,1595\nTo,61,midsummersnightsdream,1595\nare,61,midsummersnightsdream,1595\nBut,61,midsummersnightsdream,1595\nLYSANDER,62,midsummersnightsdream,1595\nthee,64,midsummersnightsdream,1595\nwe,64,midsummersnightsdream,1595\nno,65,midsummersnightsdream,1595\nshall,65,midsummersnightsdream,1595\non,66,midsummersnightsdream,1595\nThe,77,midsummersnightsdream,1595\nhe,78,midsummersnightsdream,1595\nall,82,midsummersnightsdream,1595\nhis,83,midsummersnightsdream,1595\nso,85,midsummersnightsdream,1595\nhave,92,midsummersnightsdream,1595\nher,95,midsummersnightsdream,1595\nas,96,midsummersnightsdream,1595\nthou,98,midsummersnightsdream,1595\nbe,98,midsummersnightsdream,1595\ndo,99,midsummersnightsdream,1595\nlove,102,midsummersnightsdream,1595\nfor,109,midsummersnightsdream,1595\nwill,111,midsummersnightsdream,1595\nthis,115,midsummersnightsdream,1595\nyour,115,midsummersnightsdream,1595\nit,118,midsummersnightsdream,1595\nand,379,midsummersnightsdream,1595\nthat,140,midsummersnightsdream,1595\nwith,150,midsummersnightsdream,1595\nnot,160,midsummersnightsdream,1595\nmy,177,midsummersnightsdream,1595\nme,179,midsummersnightsdream,1595\nI,440,midsummersnightsdream,1595\nis,185,midsummersnightsdream,1595\nAnd,197,midsummersnightsdream,1595\nin,216,midsummersnightsdream,1595\nthe,486,midsummersnightsdream,1595\nyou,240,midsummersnightsdream,1595\na,242,midsummersnightsdream,1595\nof,255,midsummersnightsdream,1595\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/test/resources/log4j.properties",
    "content": "#\n# Licensed to the Apache Software Foundation (ASF) under one or more\n# contributor license agreements.  See the NOTICE file distributed with\n# this work for additional information regarding copyright ownership.\n# The ASF licenses this file to You under the Apache License, Version 2.0\n# (the \"License\"); you may not use this file except in compliance with\n# the License.  You may obtain a copy of the License at\n#\n#    http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n#\n\n# Set everything to be logged to the console\n# Set Default log level to WARN\nlog4j.rootCategory=WARN, console\nlog4j.appender.console=org.apache.log4j.ConsoleAppender\nlog4j.appender.console.target=System.err\nlog4j.appender.console.layout=org.apache.log4j.PatternLayout\nlog4j.appender.console.layout.ConversionPattern=%d{yy/MM/dd HH:mm:ss} %p %c{1}: %m%n\n\n# Set connector code to INFO\nlog4j.logger.com.google.cloud.bigquery=INFO\n"
  },
  {
    "path": "spark-bigquery-connector-common/src/test/resources/spark-bigquery-connector.properties",
    "content": "# needed for the tests\nconnector.version=test\n"
  },
  {
    "path": "spark-bigquery-connector-common/third_party/apache-spark/LICENSE",
    "content": "                                 Apache License\n                           Version 2.0, January 2004\n                        http://www.apache.org/licenses/\n\n   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n   1. Definitions.\n\n      \"License\" shall mean the terms and conditions for use, reproduction,\n      and distribution as defined by Sections 1 through 9 of this document.\n\n      \"Licensor\" shall mean the copyright owner or entity authorized by\n      the copyright owner that is granting the License.\n\n      \"Legal Entity\" shall mean the union of the acting entity and all\n      other entities that control, are controlled by, or are under common\n      control with that entity. For the purposes of this definition,\n      \"control\" means (i) the power, direct or indirect, to cause the\n      direction or management of such entity, whether by contract or\n      otherwise, or (ii) ownership of fifty percent (50%) or more of the\n      outstanding shares, or (iii) beneficial ownership of such entity.\n\n      \"You\" (or \"Your\") shall mean an individual or Legal Entity\n      exercising permissions granted by this License.\n\n      \"Source\" form shall mean the preferred form for making modifications,\n      including but not limited to software source code, documentation\n      source, and configuration files.\n\n      \"Object\" form shall mean any form resulting from mechanical\n      transformation or translation of a Source form, including but\n      not limited to compiled object code, generated documentation,\n      and conversions to other media types.\n\n      \"Work\" shall mean the work of authorship, whether in Source or\n      Object form, made available under the License, as indicated by a\n      copyright notice that is included in or attached to the work\n      (an example is provided in the Appendix below).\n\n      \"Derivative Works\" shall mean any work, whether in Source or Object\n      form, that is based on (or derived from) the Work and for which the\n      editorial revisions, annotations, elaborations, or other modifications\n      represent, as a whole, an original work of authorship. For the purposes\n      of this License, Derivative Works shall not include works that remain\n      separable from, or merely link (or bind by name) to the interfaces of,\n      the Work and Derivative Works thereof.\n\n      \"Contribution\" shall mean any work of authorship, including\n      the original version of the Work and any modifications or additions\n      to that Work or Derivative Works thereof, that is intentionally\n      submitted to Licensor for inclusion in the Work by the copyright owner\n      or by an individual or Legal Entity authorized to submit on behalf of\n      the copyright owner. For the purposes of this definition, \"submitted\"\n      means any form of electronic, verbal, or written communication sent\n      to the Licensor or its representatives, including but not limited to\n      communication on electronic mailing lists, source code control systems,\n      and issue tracking systems that are managed by, or on behalf of, the\n      Licensor for the purpose of discussing and improving the Work, but\n      excluding communication that is conspicuously marked or otherwise\n      designated in writing by the copyright owner as \"Not a Contribution.\"\n\n      \"Contributor\" shall mean Licensor and any individual or Legal Entity\n      on behalf of whom a Contribution has been received by Licensor and\n      subsequently incorporated within the Work.\n\n   2. Grant of Copyright License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      copyright license to reproduce, prepare Derivative Works of,\n      publicly display, publicly perform, sublicense, and distribute the\n      Work and such Derivative Works in Source or Object form.\n\n   3. Grant of Patent License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      (except as stated in this section) patent license to make, have made,\n      use, offer to sell, sell, import, and otherwise transfer the Work,\n      where such license applies only to those patent claims licensable\n      by such Contributor that are necessarily infringed by their\n      Contribution(s) alone or by combination of their Contribution(s)\n      with the Work to which such Contribution(s) was submitted. If You\n      institute patent litigation against any entity (including a\n      cross-claim or counterclaim in a lawsuit) alleging that the Work\n      or a Contribution incorporated within the Work constitutes direct\n      or contributory patent infringement, then any patent licenses\n      granted to You under this License for that Work shall terminate\n      as of the date such litigation is filed.\n\n   4. Redistribution. You may reproduce and distribute copies of the\n      Work or Derivative Works thereof in any medium, with or without\n      modifications, and in Source or Object form, provided that You\n      meet the following conditions:\n\n      (a) You must give any other recipients of the Work or\n          Derivative Works a copy of this License; and\n\n      (b) You must cause any modified files to carry prominent notices\n          stating that You changed the files; and\n\n      (c) You must retain, in the Source form of any Derivative Works\n          that You distribute, all copyright, patent, trademark, and\n          attribution notices from the Source form of the Work,\n          excluding those notices that do not pertain to any part of\n          the Derivative Works; and\n\n      (d) If the Work includes a \"NOTICE\" text file as part of its\n          distribution, then any Derivative Works that You distribute must\n          include a readable copy of the attribution notices contained\n          within such NOTICE file, excluding those notices that do not\n          pertain to any part of the Derivative Works, in at least one\n          of the following places: within a NOTICE text file distributed\n          as part of the Derivative Works; within the Source form or\n          documentation, if provided along with the Derivative Works; or,\n          within a display generated by the Derivative Works, if and\n          wherever such third-party notices normally appear. The contents\n          of the NOTICE file are for informational purposes only and\n          do not modify the License. You may add Your own attribution\n          notices within Derivative Works that You distribute, alongside\n          or as an addendum to the NOTICE text from the Work, provided\n          that such additional attribution notices cannot be construed\n          as modifying the License.\n\n      You may add Your own copyright statement to Your modifications and\n      may provide additional or different license terms and conditions\n      for use, reproduction, or distribution of Your modifications, or\n      for any such Derivative Works as a whole, provided Your use,\n      reproduction, and distribution of the Work otherwise complies with\n      the conditions stated in this License.\n\n   5. Submission of Contributions. Unless You explicitly state otherwise,\n      any Contribution intentionally submitted for inclusion in the Work\n      by You to the Licensor shall be under the terms and conditions of\n      this License, without any additional terms or conditions.\n      Notwithstanding the above, nothing herein shall supersede or modify\n      the terms of any separate license agreement you may have executed\n      with Licensor regarding such Contributions.\n\n   6. Trademarks. This License does not grant permission to use the trade\n      names, trademarks, service marks, or product names of the Licensor,\n      except as required for reasonable and customary use in describing the\n      origin of the Work and reproducing the content of the NOTICE file.\n\n   7. Disclaimer of Warranty. Unless required by applicable law or\n      agreed to in writing, Licensor provides the Work (and each\n      Contributor provides its Contributions) on an \"AS IS\" BASIS,\n      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n      implied, including, without limitation, any warranties or conditions\n      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n      PARTICULAR PURPOSE. You are solely responsible for determining the\n      appropriateness of using or redistributing the Work and assume any\n      risks associated with Your exercise of permissions under this License.\n\n   8. Limitation of Liability. In no event and under no legal theory,\n      whether in tort (including negligence), contract, or otherwise,\n      unless required by applicable law (such as deliberate and grossly\n      negligent acts) or agreed to in writing, shall any Contributor be\n      liable to You for damages, including any direct, indirect, special,\n      incidental, or consequential damages of any character arising as a\n      result of this License or out of the use or inability to use the\n      Work (including but not limited to damages for loss of goodwill,\n      work stoppage, computer failure or malfunction, or any and all\n      other commercial damages or losses), even if such Contributor\n      has been advised of the possibility of such damages.\n\n   9. Accepting Warranty or Additional Liability. While redistributing\n      the Work or Derivative Works thereof, You may choose to offer,\n      and charge a fee for, acceptance of support, warranty, indemnity,\n      or other liability obligations and/or rights consistent with this\n      License. However, in accepting such obligations, You may act only\n      on Your own behalf and on Your sole responsibility, not on behalf\n      of any other Contributor, and only if You agree to indemnify,\n      defend, and hold each Contributor harmless for any liability\n      incurred by, or claims asserted against, such Contributor by reason\n      of your accepting any such warranty or additional liability.\n\n   END OF TERMS AND CONDITIONS\n\n   APPENDIX: How to apply the Apache License to your work.\n\n      To apply the Apache License to your work, attach the following\n      boilerplate notice, with the fields enclosed by brackets \"[]\"\n      replaced with your own identifying information. (Don't include\n      the brackets!)  The text should be enclosed in the appropriate\n      comment syntax for the file format. We also recommend that a\n      file or class name and description of purpose be included on the\n      same \"printed page\" as the copyright notice for easier\n      identification within third-party archives.\n\n   Copyright [yyyy] [name of copyright owner]\n\n   Licensed under the Apache License, Version 2.0 (the \"License\");\n   you may not use this file except in compliance with the License.\n   You may obtain a copy of the License at\n\n       http://www.apache.org/licenses/LICENSE-2.0\n\n   Unless required by applicable law or agreed to in writing, software\n   distributed under the License is distributed on an \"AS IS\" BASIS,\n   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n   See the License for the specific language governing permissions and\n   limitations under the License.\n\n\n------------------------------------------------------------------------------------\nThis product bundles various third-party components under other open source licenses.\nThis section summarizes those components and their licenses. See licenses/\nfor text of these licenses.\n\n\nApache Software Foundation License 2.0\n--------------------------------------\n\ncommon/network-common/src/main/java/org/apache/spark/network/util/LimitedInputStream.java\ncore/src/main/java/org/apache/spark/util/collection/TimSort.java\ncore/src/main/resources/org/apache/spark/ui/static/bootstrap*\ncore/src/main/resources/org/apache/spark/ui/static/jsonFormatter*\ncore/src/main/resources/org/apache/spark/ui/static/vis*\ndocs/js/vendor/bootstrap.js\nexternal/spark-ganglia-lgpl/src/main/java/com/codahale/metrics/ganglia/GangliaReporter.java\n\n\nPython Software Foundation License\n----------------------------------\n\npyspark/heapq3.py\npython/docs/_static/copybutton.js\n\nBSD 3-Clause\n------------\n\npython/lib/py4j-*-src.zip\npython/pyspark/cloudpickle.py\npython/pyspark/join.py\ncore/src/main/resources/org/apache/spark/ui/static/d3.min.js\n\nThe CSS style for the navigation sidebar of the documentation was originally\nsubmitted by Óscar Nájera for the scikit-learn project. The scikit-learn project\nis distributed under the 3-Clause BSD license.\n\n\nMIT License\n-----------\n\ncore/src/main/resources/org/apache/spark/ui/static/dagre-d3.min.js\ncore/src/main/resources/org/apache/spark/ui/static/*dataTables*\ncore/src/main/resources/org/apache/spark/ui/static/graphlib-dot.min.js\ncore/src/main/resources/org/apache/spark/ui/static/jquery*\ncore/src/main/resources/org/apache/spark/ui/static/sorttable.js\ndocs/js/vendor/anchor.min.js\ndocs/js/vendor/jquery*\ndocs/js/vendor/modernizer*\n\n\nCreative Commons CC0 1.0 Universal Public Domain Dedication\n-----------------------------------------------------------\n(see LICENSE-CC0.txt)\n\ndata/mllib/images/kittens/29.5.a_b_EGDP022204.jpg\ndata/mllib/images/kittens/54893.jpg\ndata/mllib/images/kittens/DP153539.jpg\ndata/mllib/images/kittens/DP802813.jpg\ndata/mllib/images/multi-channel/chr30.4.184.jpg"
  },
  {
    "path": "spark-bigquery-connector-common/third_party/apache-spark/NOTICE",
    "content": "Apache Spark\nCopyright 2014 and onwards The Apache Software Foundation.\n\nThis product includes software developed at\nThe Apache Software Foundation (http://www.apache.org/).\n\n\nExport Control Notice\n---------------------\n\nThis distribution includes cryptographic software. The country in which you currently reside may have\nrestrictions on the import, possession, use, and/or re-export to another country, of encryption software.\nBEFORE using any encryption software, please check your country's laws, regulations and policies concerning\nthe import, possession, or use, and re-export of encryption software, to see if this is permitted. See\n<http://www.wassenaar.org/> for more information.\n\nThe U.S. Government Department of Commerce, Bureau of Industry and Security (BIS), has classified this\nsoftware as Export Commodity Control Number (ECCN) 5D002.C.1, which includes information security software\nusing or performing cryptographic functions with asymmetric algorithms. The form and manner of this Apache\nSoftware Foundation distribution makes it eligible for export under the License Exception ENC Technology\nSoftware Unrestricted (TSU) exception (see the BIS Export Administration Regulations, Section 740.13) for\nboth object code and source code.\n\nThe following provides more details on the included cryptographic software:\n\nThis software uses Apache Commons Crypto (https://commons.apache.org/proper/commons-crypto/) to\nsupport authentication, and encryption and decryption of data sent across the network between\nservices.\n\n\nMetrics\nCopyright 2010-2013 Coda Hale and Yammer, Inc.\n\nThis product includes software developed by Coda Hale and Yammer, Inc.\n\nThis product includes code derived from the JSR-166 project (ThreadLocalRandom, Striped64,\nLongAdder), which was released with the following comments:\n\n    Written by Doug Lea with assistance from members of JCP JSR-166\n    Expert Group and released to the public domain, as explained at\n    http://creativecommons.org/publicdomain/zero/1.0/s"
  },
  {
    "path": "spark-bigquery-connector-common/third_party/apache-spark/src/main/java/com/google/cloud/spark/bigquery/ArrowSchemaConverter.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery;\n\nimport java.lang.reflect.Method;\nimport java.math.BigDecimal;\nimport java.util.Arrays;\nimport java.util.List;\nimport java.util.Map;\nimport java.util.Optional;\nimport java.util.stream.Collectors;\nimport org.apache.arrow.memory.ArrowBuf;\nimport java.time.LocalDateTime;\nimport java.time.ZoneOffset;\nimport org.apache.arrow.vector.*;\nimport org.apache.arrow.vector.complex.*;\n\nimport org.apache.arrow.vector.types.pojo.ArrowType;\nimport org.apache.arrow.vector.types.pojo.ArrowType.ArrowTypeID;\nimport org.apache.spark.sql.internal.SQLConf;\nimport org.apache.spark.sql.types.*;\n\nimport org.apache.spark.sql.vectorized.ColumnVector;\nimport org.apache.spark.sql.vectorized.ColumnarArray;\nimport org.apache.spark.sql.vectorized.ColumnarMap;\nimport org.apache.spark.unsafe.types.UTF8String;\n\nimport org.apache.arrow.vector.types.pojo.Field;\n\n/**\n * ArrowSchemaConverter class for accessing values and converting\n * arrow data types to the types supported by big query.\n */\npublic abstract class ArrowSchemaConverter extends ColumnVector {\n  public abstract ValueVector vector();\n  @Override\n  public boolean hasNull() {\n    return vector().getNullCount() > 0;\n  }\n\n  @Override\n  public int numNulls() {\n    return vector().getNullCount();\n  }\n\n  @Override\n  public void close() {\n    vector().close();\n  }\n\n  @Override\n  public boolean getBoolean(int rowId) {\n    throw new UnsupportedOperationException();\n  }\n\n  @Override\n  public byte getByte(int rowId) {\n    throw new UnsupportedOperationException();\n  }\n\n  @Override\n  public short getShort(int rowId) {\n    throw new UnsupportedOperationException();\n  }\n\n  @Override\n  public int getInt(int rowId) {\n    throw new UnsupportedOperationException();\n  }\n\n  @Override\n  public long getLong(int rowId) {\n    throw new UnsupportedOperationException();\n  }\n\n  @Override\n  public float getFloat(int rowId) {\n    throw new UnsupportedOperationException();\n  }\n\n  @Override\n  public double getDouble(int rowId) {\n    throw new UnsupportedOperationException();\n  }\n\n  @Override\n  public Decimal getDecimal(int rowId, int precision, int scale) {\n    throw new UnsupportedOperationException();\n  }\n\n  @Override\n  public UTF8String getUTF8String(int rowId) {\n    throw new UnsupportedOperationException();\n  }\n\n  @Override\n  public byte[] getBinary(int rowId) {\n    throw new UnsupportedOperationException();\n  }\n\n  @Override\n  public ColumnarArray getArray(int rowId) {\n    throw new UnsupportedOperationException();\n  }\n\n  @Override\n  public ColumnarMap getMap(int rowId) {\n    throw new UnsupportedOperationException();\n  }\n\n  @Override\n  public ColumnVector getChild(int ordinal) { throw new UnsupportedOperationException(); }\n\n  private static DataType fromArrowType(ArrowType arrowType)\n  {\n    switch (arrowType.getTypeID())\n    {\n      case Int: return DataTypes.LongType;\n      case Bool: return DataTypes.BooleanType;\n      case FloatingPoint: return DataTypes.DoubleType;\n      case Binary: return DataTypes.BinaryType;\n      case Utf8: return DataTypes.StringType;\n      case Date: return DataTypes.DateType;\n      case Time:\n      case Timestamp: return DataTypes.TimestampType;\n      case Decimal: return DataTypes.createDecimalType();\n    }\n\n    throw new UnsupportedOperationException(\"Unsupported data type \" + arrowType.toString());\n  }\n\n  private static DataType fromArrowField(Field field)\n  {\n    if (field.getType().getTypeID() == ArrowTypeID.List)\n    {\n      Field elementField = field.getChildren().get(0);\n      DataType elementType = fromArrowField(elementField);\n\n      return new ArrayType(elementType, elementField.isNullable());\n    }\n\n    if (field.getType().getTypeID() == ArrowTypeID.Struct)\n    {\n      java.util.List<Field> fieldChildren = field.getChildren();\n      StructField[] structFields = new StructField[fieldChildren.size()];\n\n      int ind = 0;\n\n      for (Field childField : field.getChildren())\n      {\n        DataType childType = fromArrowField(childField);\n        structFields[ind++] = new StructField(childField.getName(), childType, childField.isNullable(), Metadata.empty());\n      }\n\n      return new StructType(structFields);\n    }\n\n    return fromArrowType(field.getType());\n  }\n\n  ArrowSchemaConverter(ValueVector vector) {\n    super(fromArrowField(vector.getField()));\n  }\n\n  public static ArrowSchemaConverter newArrowSchemaConverter(ValueVector vector, StructField userProvidedField) {\n    if (vector instanceof BitVector) {\n      return new ArrowSchemaConverter.BooleanAccessor((BitVector) vector);\n    } else if (vector instanceof BigIntVector) {\n      return new ArrowSchemaConverter.LongAccessor((BigIntVector) vector);\n    } else if (vector instanceof Float8Vector) {\n      return new ArrowSchemaConverter.DoubleAccessor((Float8Vector) vector);\n    } else if (vector instanceof DecimalVector) {\n      return new ArrowSchemaConverter.DecimalAccessor((DecimalVector) vector);\n    } else if (vector instanceof Decimal256Vector) {\n      return new ArrowSchemaConverter.Decimal256Accessor((Decimal256Vector) vector);\n    } else if (vector instanceof VarCharVector) {\n      return new ArrowSchemaConverter.StringAccessor((VarCharVector) vector);\n    } else if (vector instanceof VarBinaryVector) {\n      return new ArrowSchemaConverter.BinaryAccessor((VarBinaryVector) vector);\n    } else if (vector instanceof DateDayVector) {\n      return new ArrowSchemaConverter.DateAccessor((DateDayVector) vector);\n    } else if (vector instanceof TimeMicroVector) {\n      return new ArrowSchemaConverter.TimeMicroVectorAccessor((TimeMicroVector) vector);\n    } else if (vector instanceof TimeStampMicroVector) {\n      return new ArrowSchemaConverter.TimestampMicroVectorAccessor((TimeStampMicroVector) vector);\n    } else if (vector instanceof TimeStampMicroTZVector) {\n      return new ArrowSchemaConverter.TimestampMicroTZVectorAccessor((TimeStampMicroTZVector) vector);\n    } else if (vector instanceof ListVector) {\n      ListVector listVector = (ListVector) vector;\n      return new ArrowSchemaConverter.ArrayAccessor(listVector, userProvidedField);\n    } else if (vector instanceof StructVector) {\n      StructVector structVector = (StructVector) vector;\n      return new ArrowSchemaConverter.StructAccessor(structVector, userProvidedField);\n    } else {\n      throw new UnsupportedOperationException();\n    }\n  }\n\n  private static class BooleanAccessor extends ArrowSchemaConverter {\n    private final BitVector vector;\n\n    BooleanAccessor(BitVector vector) {\n      super(vector);\n      this.vector = vector;\n    }\n\n    @Override\n    public final boolean isNullAt(int rowId) {\n      return vector.isNull(rowId);\n    }\n\n    @Override\n    public final boolean getBoolean(int rowId) {\n      return vector.get(rowId) == 1;\n    }\n\n    @Override\n    public final ValueVector vector() {\n      return vector;\n    }\n  }\n\n  private static class LongAccessor extends ArrowSchemaConverter {\n    private final BigIntVector vector;\n\n    LongAccessor(BigIntVector vector) {\n      super(vector);\n      this.vector = vector;\n    }\n\n    @Override\n    public final boolean isNullAt(int rowId) {\n      return vector.isNull(rowId);\n    }\n\n    @Override\n    public final byte getByte(int rowId) {\n      return (byte)getLong(rowId);\n    }\n\n    @Override\n    public final short getShort(int rowId) {\n      return (short)getLong(rowId);\n    }\n\n    @Override\n    public final int getInt(int rowId) {\n      return (int)getLong(rowId);\n    }\n\n    @Override\n    public final long getLong(int rowId) {\n      return vector.get(rowId);\n    }\n\n    @Override\n    public final ValueVector vector() {\n      return vector;\n    }\n\n  }\n\n  private static class DoubleAccessor extends ArrowSchemaConverter {\n    private final Float8Vector vector;\n\n    DoubleAccessor(Float8Vector vector) {\n      super(vector);\n      this.vector = vector;\n    }\n\n    @Override\n    public final boolean isNullAt(int rowId) {\n      return vector.isNull(rowId);\n    }\n\n    @Override\n    public final double getDouble(int rowId) {\n      return vector.get(rowId);\n    }\n\n    @Override\n    public final ValueVector vector() {\n      return vector;\n    }\n\n  }\n\n  private static class DecimalAccessor extends ArrowSchemaConverter {\n    private final DecimalVector vector;\n\n    DecimalAccessor(DecimalVector vector) {\n      super(vector);\n      this.vector = vector;\n    }\n\n    // Implemented this method for tpc-ds queries that cast from Decimal to Byte\n    @Override\n    public byte getByte(int rowId) {\n      return vector.getObject(rowId).byteValueExact();\n    }\n\n    @Override\n    public final boolean isNullAt(int rowId) {\n      return vector.isNull(rowId);\n    }\n\n    @Override\n    public final Decimal getDecimal(int rowId, int precision, int scale) {\n      if (isNullAt(rowId)) return null;\n      return Decimal.apply(((DecimalVector)vector).getObject(rowId), precision, scale);\n    }\n\n    @Override\n    public final ValueVector vector() {\n      return vector;\n    }\n\n  }\n\n  private static class Decimal256Accessor extends ArrowSchemaConverter {\n    private final Decimal256Vector vector;\n\n    Decimal256Accessor(Decimal256Vector vector) {\n      super(vector);\n      this.vector = vector;\n    }\n\n    @Override\n    public final boolean isNullAt(int rowId) {\n      return vector.isNull(rowId);\n    }\n\n\n    public UTF8String getUTF8String(int rowId){\n      if (isNullAt(rowId)) {\n        return null;\n      }\n\n      BigDecimal bigDecimal = ((Decimal256Vector)vector).getObject(rowId);\n      return UTF8String.fromString(bigDecimal.toPlainString());\n    }\n\n    // Implemented this method for reading BigNumeric values\n    @Override\n    public final Decimal getDecimal(int rowId, int precision, int scale) {\n      if (isNullAt(rowId)) return null;\n      return Decimal.apply(((Decimal256Vector)vector).getObject(rowId), precision, scale);\n    }\n\n    @Override\n    public final ValueVector vector() {\n      return vector;\n    }\n  }\n\n  private static class StringAccessor extends ArrowSchemaConverter {\n    private final VarCharVector vector;\n    StringAccessor(VarCharVector vector) {\n      super(vector);\n      this.vector = vector;\n    }\n\n    @Override\n    public final boolean isNullAt(int rowId) {\n      return vector.isNull(rowId);\n    }\n\n    @Override\n    public final UTF8String getUTF8String(int rowId) {\n      if (vector.isSet(rowId) == 0) {\n        return null;\n      } else {\n        ArrowBuf offsets = ((VarCharVector)vector).getOffsetBuffer();\n        int index = rowId * VarCharVector.OFFSET_WIDTH;\n        int start = offsets.getInt(index);\n        int end = offsets.getInt(index + VarCharVector.OFFSET_WIDTH);\n\n        /* Since the result is accessed lazily if the memory address is corrupted we\n         * might lose the data. Might be better to include a byte array. Not doing so\n         * for performance reasons.\n         */\n        return UTF8String.fromAddress(/* base = */null,\n                ((VarCharVector)vector).getDataBuffer().memoryAddress() + start,\n            end - start);\n      }\n    }\n\n    @Override\n    public final ValueVector vector() {\n      return vector;\n    }\n  }\n\n  private static class BinaryAccessor extends ArrowSchemaConverter {\n    private final VarBinaryVector vector;\n    BinaryAccessor(VarBinaryVector vector) {\n      super(vector);\n      this.vector = vector;\n    }\n\n    @Override\n    public final boolean isNullAt(int rowId) {\n      return vector.isNull(rowId);\n    }\n\n    @Override\n    public final byte[] getBinary(int rowId) {\n      return vector.getObject(rowId);\n    }\n\n    @Override\n    public final ValueVector vector() {\n      return vector;\n    }\n\n  }\n\n  private static class DateAccessor extends ArrowSchemaConverter { ;\n    private final DateDayVector vector;\n\n    DateAccessor(DateDayVector vector) {\n      super(vector);\n      this.vector = vector;\n    }\n\n    @Override\n    public final boolean isNullAt(int rowId) {\n      return vector.isNull(rowId);\n    }\n\n    /**\n     * Interpreting Data here as int to keep it consistent with Avro.\n     */\n    @Override\n    public final int getInt(int rowId) {\n      return ((DateDayVector)vector).get(rowId);\n    }\n\n    @Override\n    public final ValueVector vector() {\n      return vector;\n    }\n\n  }\n\n  private static class TimeMicroVectorAccessor extends ArrowSchemaConverter {\n    private final TimeMicroVector vector;\n\n    TimeMicroVectorAccessor(TimeMicroVector vector) {\n      super(vector);\n      this.vector = vector;\n    }\n\n    @Override\n    public final boolean isNullAt(int rowId) {\n      return vector.isNull(rowId);\n    }\n\n    @Override\n    public final long getLong(int rowId) {\n      return vector.get(rowId);\n    }\n\n    @Override\n    public final ValueVector vector() {\n      return vector;\n    }\n\n  }\n\n\n  private static class TimestampMicroVectorAccessor extends ArrowSchemaConverter {\n    private static final int ONE_THOUSAND = 1_000;\n    private static final int ONE_MILLION = 1_000_000;\n    private static final int ONE_BILLION = 1_000_000_000;\n\n    private final TimeStampMicroVector vector;\n\n    TimestampMicroVectorAccessor(TimeStampMicroVector vector) {\n      super(vector);\n      this.vector = vector;\n    }\n\n    @Override\n    public final long getLong(int rowId) {\n      return vector.get(rowId);\n    }\n\n    @Override\n    public final boolean isNullAt(int rowId) {\n      return vector.isNull(rowId);\n    }\n\n\n    @Override\n    public final UTF8String getUTF8String(int rowId) {\n      if (isNullAt(rowId)) {\n         return null;\n      }\n      long epoch = getLong(rowId);\n      long seconds = epoch / ONE_MILLION;\n      int nanoOfSeconds = (int)(epoch % ONE_MILLION) * ONE_THOUSAND;\n\n      // The method LocalDateTime.ofEpochSecond expects\n      // seconds as the number of seconds from the epoch of 1970-01-01T00:00:00Z and\n      // the nanosecond within the second, from 0 to 999,999,999.\n      // For time prior to 1970-01-01, seconds and nanoseconds both could be negative, but\n      // negative nanoseconds is not allowed, hence for such cases adding 1_000_000_000 to\n      // nanosecond's value and subtracting 1 from the second's value.\n      if(nanoOfSeconds < 0) {\n        seconds--;\n        nanoOfSeconds += ONE_BILLION;\n      }\n\n      LocalDateTime dateTime = LocalDateTime.ofEpochSecond(seconds, nanoOfSeconds, ZoneOffset.UTC);\n      return UTF8String.fromString(dateTime.toString());\n    }\n\n    @Override\n    public final ValueVector vector() {\n      return vector;\n    }\n\n  }\n\n  private static class TimestampMicroTZVectorAccessor extends ArrowSchemaConverter {\n\n    private final Optional<Method> rebaseMicrosMethod;\n    private final TimeStampMicroTZVector vector;\n\n    TimestampMicroTZVectorAccessor(TimeStampMicroTZVector vector) {\n      super(vector);\n      this.vector = vector;\n      Method rebaseMicrosTmp = null;\n      try {\n        // for Spark 3.0+ only. See https://issues.apache.org/jira/browse/SPARK-26651\n        Class<?> rebaseDateTimeClass = Class.forName(\n            \"org.apache.spark.sql.catalyst.util.RebaseDateTime\");\n        rebaseMicrosTmp = rebaseDateTimeClass.getDeclaredMethod(\"rebaseJulianToGregorianMicros\", long.class);\n      } catch (ReflectiveOperationException ignored) { }\n      rebaseMicrosMethod = Optional.ofNullable(rebaseMicrosTmp);\n    }\n\n    @Override\n    public final boolean isNullAt(int rowId) {\n      return vector.isNull(rowId);\n    }\n\n\n    @Override\n    public final long getLong(int rowId) {\n      try {\n        if (rebaseMicrosMethod.isPresent()) {\n          return (long) rebaseMicrosMethod.get().invoke(rebaseMicrosMethod.get(), vector.get(rowId));\n        }\n      } catch (ReflectiveOperationException ignored) { }\n      return vector.get(rowId);\n    }\n\n    @Override\n    public final ValueVector vector() {\n      return vector;\n    }\n  }\n\n  private static class ArrayAccessor extends ArrowSchemaConverter {\n    private final ListVector vector;\n\n    private final ArrowSchemaConverter arrayData;\n\n    ArrayAccessor(ListVector vector, StructField userProvidedField) {\n      super(vector);\n      this.vector = vector;\n      StructField structField = null;\n\n      // this is to support Array of StructType/StructVector\n      if(userProvidedField != null) {\n        DataType dataType = userProvidedField.dataType();\n        ArrayType arrayType = dataType instanceof MapType ? convertMapTypeToArrayType((MapType) dataType) : (ArrayType) dataType;\n        structField =\n            new StructField(\n                vector.getDataVector().getName(),\n                arrayType.elementType(),\n                arrayType.containsNull(),\n                Metadata.empty());// safe to pass empty metadata as it is not used anywhere\n      }\n\n      this.arrayData = newArrowSchemaConverter(vector.getDataVector(), structField);\n    }\n\n\n    static ArrayType convertMapTypeToArrayType(MapType mapType) {\n      StructField key = StructField.apply(\"key\", mapType.keyType(), false, Metadata.empty());\n      StructField value = StructField.apply(\"value\", mapType.valueType(), mapType.valueContainsNull(), Metadata.empty());\n      StructField[] fields = new StructField[] { key, value};\n      return ArrayType.apply(new StructType(fields));\n    }\n\n    @Override\n    public final boolean isNullAt(int rowId) {\n      return vector.isNull(rowId);\n    }\n\n\n    @Override\n    public final ColumnarArray getArray(int rowId) {\n      ArrowBuf offsets = ((ListVector)vector).getOffsetBuffer();\n      int index = rowId * ListVector.OFFSET_WIDTH;\n      int start = offsets.getInt(index);\n      int end = offsets.getInt(index + ListVector.OFFSET_WIDTH);\n      return new ColumnarArray(arrayData, start, end - start);\n    }\n\n    @Override\n    public ColumnarMap getMap(int rowId) {\n      ArrowBuf offsets = ((ListVector)vector).getOffsetBuffer();\n      int index = rowId * ListVector.OFFSET_WIDTH;\n      int start = offsets.getInt(index);\n      int end = offsets.getInt(index + ListVector.OFFSET_WIDTH);\n      ColumnVector keys = ((StructAccessor)arrayData).childColumns[0];\n      ColumnVector values = ((StructAccessor)arrayData).childColumns[1];\n      return new ColumnarMap(keys, values, start, end - start);\n    }\n\n    @Override\n    public final ValueVector vector() {\n      return vector;\n    }\n\n  }\n\n  /**\n   * Any call to \"get\" method will throw UnsupportedOperationException.\n   */\n  private static class StructAccessor extends ArrowSchemaConverter {\n    private final StructVector vector;\n    private ArrowSchemaConverter childColumns[];\n\n    StructAccessor(StructVector structVector, StructField userProvidedField) {\n      super(structVector);\n      this.vector = structVector;\n      if(userProvidedField !=null) {\n\n\n        StructType schema = (StructType) SupportedCustomDataType.toSqlType(userProvidedField.dataType());\n        List<StructField> structList = Arrays.asList(schema.fields());\n\n        this.childColumns = new ArrowSchemaConverter[structList.size()];\n\n        Map<String, ValueVector> valueVectorMap =\n                structVector\n                        .getChildrenFromFields()\n                        .stream()\n                        .collect(Collectors.toMap(ValueVector::getName, valueVector -> valueVector));\n\n        for (int i = 0; i < childColumns.length; ++i) {\n          StructField structField = structList.get(i);\n          childColumns[i] =\n                  newArrowSchemaConverter(valueVectorMap.get(structField.name()), structField);\n        }\n      } else {\n        childColumns = new ArrowSchemaConverter[structVector.size()];\n        for (int i = 0; i < childColumns.length; ++i) {\n          childColumns[i] = newArrowSchemaConverter(structVector.getVectorById(i), /*userProvidedField=*/null);\n        }\n      }\n    }\n\n    @Override\n    public final boolean isNullAt(int rowId) {\n      return vector.isNull(rowId);\n    }\n\n\n    @Override\n    public ColumnVector getChild(int ordinal) { return childColumns[ordinal]; }\n\n\n    @Override\n    public void close() {\n      if (childColumns != null) {\n        for (ColumnVector v : childColumns) {\n          v.close();\n        }\n        childColumns = null;\n      }\n      vector.close();\n    }\n\n    @Override\n    public final ValueVector vector() {\n      return vector;\n    }\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-connector-common/third_party/apache-spark/src/main/java/com/google/cloud/spark/bigquery/AvroSchemaConverter.java",
    "content": "/*\n * Copyright 2020 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery;\n\nimport com.google.cloud.bigquery.connector.common.BigQueryUtil;\nimport com.google.common.base.Preconditions;\nimport java.util.HashMap;\nimport org.apache.avro.Conversions;\nimport org.apache.avro.LogicalTypes;\nimport org.apache.avro.Schema;\nimport org.apache.avro.Schema.Type;\nimport org.apache.avro.SchemaBuilder;\nimport org.apache.avro.generic.GenericData;\nimport org.apache.avro.util.Utf8;\nimport org.apache.spark.sql.Row;\nimport org.apache.spark.sql.SparkSqlUtils;\nimport org.apache.spark.sql.catalyst.InternalRow;\nimport org.apache.spark.sql.catalyst.expressions.SpecializedGetters;\nimport org.apache.spark.sql.catalyst.expressions.UnsafeArrayData;\nimport org.apache.spark.sql.catalyst.expressions.UnsafeRow;\nimport org.apache.spark.sql.catalyst.util.ArrayData;\nimport org.apache.spark.sql.catalyst.util.MapData;\nimport org.apache.spark.sql.types.ArrayType;\nimport org.apache.spark.sql.types.BinaryType;\nimport org.apache.spark.sql.types.BooleanType;\nimport org.apache.spark.sql.types.ByteType;\nimport org.apache.spark.sql.types.DataType;\nimport org.apache.spark.sql.types.DateType;\nimport org.apache.spark.sql.types.Decimal;\nimport org.apache.spark.sql.types.DecimalType;\nimport org.apache.spark.sql.types.DoubleType;\nimport org.apache.spark.sql.types.FloatType;\nimport org.apache.spark.sql.types.IntegerType;\nimport org.apache.spark.sql.types.LongType;\nimport org.apache.spark.sql.types.MapType;\nimport org.apache.spark.sql.types.Metadata;\nimport org.apache.spark.sql.types.NullType;\nimport org.apache.spark.sql.types.ShortType;\nimport org.apache.spark.sql.types.StringType;\nimport org.apache.spark.sql.types.StructField;\nimport org.apache.spark.sql.types.StructType;\nimport org.apache.spark.sql.types.TimestampType;\nimport org.apache.spark.sql.types.UserDefinedType;\nimport scala.collection.mutable.IndexedSeq;\n\nimport java.math.BigDecimal;\nimport java.nio.ByteBuffer;\nimport java.util.List;\nimport java.util.Optional;\n\npublic class AvroSchemaConverter {\n\n  private static final Schema NULL = Schema.create(Schema.Type.NULL);\n  private static final Conversions.DecimalConversion DECIMAL_CONVERSIONS =\n      new Conversions.DecimalConversion();\n\n  public static Schema sparkSchemaToAvroSchema(StructType sparkSchema) {\n    return sparkTypeToRawAvroType(sparkSchema, Metadata.empty(), false, \"root\");\n  }\n\n  static Schema sparkTypeToRawAvroType(DataType dataType, Metadata metadata, boolean nullable, String recordName) {\n    SchemaBuilder.TypeBuilder<Schema> builder = SchemaBuilder.builder();\n    Schema avroType = sparkTypeToRawAvroType(dataType, metadata, recordName, builder);\n\n    if (nullable) {\n      avroType = Schema.createUnion(avroType, NULL);\n    }\n\n    return avroType;\n  }\n\n  static Schema sparkTypeToRawAvroType(\n      DataType dataType, Metadata metadata, String recordName, SchemaBuilder.TypeBuilder<Schema> builder) {\n    if (dataType instanceof BinaryType) {\n      return builder.bytesType();\n    }\n    if (dataType instanceof ByteType\n        || dataType instanceof ShortType\n        || dataType instanceof IntegerType\n        || dataType instanceof LongType) {\n      return builder.longType();\n    }\n    if (dataType instanceof BooleanType) {\n      return builder.booleanType();\n    }\n    if (dataType instanceof FloatType || dataType instanceof DoubleType) {\n      return builder.doubleType();\n    }\n    if (dataType instanceof DecimalType) {\n      DecimalType decimalType = (DecimalType) dataType;\n      if (decimalType.precision() <= BigQueryUtil.DEFAULT_NUMERIC_PRECISION\n          && decimalType.scale() <= BigQueryUtil.DEFAULT_BIG_NUMERIC_SCALE) {\n        return LogicalTypes.decimal(decimalType.precision(), decimalType.scale())\n            .addToSchema(builder.bytesType());\n      } else {\n        throw new IllegalArgumentException(\n            \"Decimal type is too wide to fit in BigQuery Numeric format\");\n      }\n    }\n    if (dataType instanceof StringType) {\n      // Allows loading Avro strings as JSON\n      // https://cloud.google.com/bigquery/docs/loading-data-cloud-storage-avro#extract_json_data_from_avro_data\n      if (SparkBigQueryUtil.isJson(metadata)) {\n        return builder.stringBuilder().prop(\"sqlType\", \"JSON\").endString();\n      } else {\n        return builder.stringType();\n      }\n    }\n    if (dataType instanceof TimestampType) {\n      // return builder.TIMESTAMP; FIXME: Restore this correct conversion when the Vortex\n      // team adds microsecond support to their backend\n      return LogicalTypes.timestampMicros().addToSchema(builder.longType());\n    }\n    if (dataType instanceof DateType) {\n      return LogicalTypes.date().addToSchema(builder.intType());\n    }\n    if (dataType instanceof ArrayType) {\n      return builder\n          .array()\n          .items(\n              sparkTypeToRawAvroType(\n                  ((ArrayType) dataType).elementType(),\n                  metadata,\n                  ((ArrayType) dataType).containsNull(),\n                  recordName));\n    }\n    if (dataType instanceof StructType) {\n      SchemaBuilder.FieldAssembler<Schema> fieldsAssembler = builder.record(recordName).fields();\n      for (StructField field : ((StructType) dataType).fields()) {\n        Schema avroType = sparkTypeToRawAvroType(field.dataType(), field.metadata(), field.nullable(), field.name());\n\n        fieldsAssembler.name(field.name()).type(avroType).noDefault();\n      }\n      return fieldsAssembler.endRecord();\n    }\n    if (dataType instanceof MapType) {\n      MapType mapType  = (MapType) dataType;\n      return builder.map()\n          .values(\n              sparkTypeToRawAvroType(\n                  mapType.valueType(),\n                  metadata,\n                  mapType.valueContainsNull(),\n                  \"value\" ));\n    }\n    if (dataType instanceof UserDefinedType) {\n      DataType userDefinedType = ((UserDefinedType) dataType).sqlType();\n      return sparkTypeToRawAvroType(userDefinedType, metadata, recordName, builder);\n    }\n    throw new IllegalArgumentException(\"Data type not supported: \" + dataType.simpleString());\n  }\n\n  public static GenericData.Record sparkRowToAvroGenericData(\n      InternalRow row, StructType sparkSchema, Schema avroSchema) {\n    StructConverter structConverter = new StructConverter(sparkSchema, avroSchema);\n    return structConverter.convert(row);\n  }\n\n  static Schema resolveNullableType(Schema avroType, boolean nullable) {\n    if (nullable && avroType.getType() != Schema.Type.NULL) {\n      // avro uses union to represent nullable type.\n      List<Schema> fields = avroType.getTypes();\n      Preconditions.checkArgument(\n          fields.size() == 2, \"Avro nullable filed should be represented by a union of size 2\");\n      Optional<Schema> actualType =\n          fields.stream().filter(field -> field.getType() != Schema.Type.NULL).findFirst();\n      return actualType.orElseThrow(\n          () -> new IllegalArgumentException(\"No actual type has been found in \" + avroType));\n    } else {\n      return avroType;\n    }\n  }\n\n  static Converter createConverterFor(DataType sparkType, Schema avroType) {\n    if (sparkType instanceof NullType && avroType.getType() == Schema.Type.NULL) {\n      return (getter, ordinal) -> null;\n    }\n    if (sparkType instanceof BooleanType && avroType.getType() == Schema.Type.BOOLEAN) {\n      return (getter, ordinal) -> getter.getBoolean(ordinal);\n    }\n    if (sparkType instanceof ByteType && avroType.getType() == Schema.Type.LONG) {\n      return (getter, ordinal) -> Long.valueOf(getter.getByte(ordinal));\n    }\n    if (sparkType instanceof ShortType && avroType.getType() == Schema.Type.LONG) {\n      return (getter, ordinal) -> Long.valueOf(getter.getShort(ordinal));\n    }\n    if (sparkType instanceof IntegerType && avroType.getType() == Schema.Type.LONG) {\n      return (getter, ordinal) -> Long.valueOf(getter.getInt(ordinal));\n    }\n    if (sparkType instanceof LongType && avroType.getType() == Schema.Type.LONG) {\n      return (getter, ordinal) -> getter.getLong(ordinal);\n    }\n    if (sparkType instanceof FloatType && avroType.getType() == Schema.Type.DOUBLE) {\n      return (getter, ordinal) -> Double.valueOf(getter.getFloat(ordinal));\n    }\n    if (sparkType instanceof DoubleType && avroType.getType() == Schema.Type.DOUBLE) {\n      return (getter, ordinal) -> getter.getDouble(ordinal);\n    }\n    if (sparkType instanceof DecimalType && avroType.getType() == Schema.Type.BYTES) {\n      DecimalType decimalType = (DecimalType) sparkType;\n      return (getter, ordinal) -> {\n        BigDecimal bigDecimal = null;\n        if (getter instanceof UnsafeRow || getter instanceof UnsafeArrayData) {\n          // UnsafeRow mandates Datatype\n          Decimal decimal = getter.getDecimal(ordinal, decimalType.precision(), decimalType.scale());\n          bigDecimal = decimal.toJavaBigDecimal();\n        } else {\n          Object decimal = getter.get(ordinal, /* unused */ null);\n          bigDecimal =\n              decimal instanceof Decimal\n                  ? ((Decimal) decimal).toJavaBigDecimal()\n                  : (BigDecimal) decimal;\n        }\n        return DECIMAL_CONVERSIONS.toBytes(\n            bigDecimal,\n            avroType,\n            LogicalTypes.decimal(decimalType.precision(), decimalType.scale()));\n      };\n    }\n    if (sparkType instanceof StringType && avroType.getType() == Schema.Type.STRING) {\n      return (getter, ordinal) -> {\n        String str =\n                // UnsafeRow mandates Datatype\n                getter instanceof UnsafeRow || getter instanceof UnsafeArrayData\n                        ? getter.getUTF8String(ordinal).toString()\n                        : getter.get(ordinal, /* unused */ null).toString();\n        return new Utf8(str);\n      };\n    }\n    if (sparkType instanceof BinaryType && avroType.getType() == Schema.Type.FIXED) {\n      int size = avroType.getFixedSize();\n      return (getter, ordinal) -> {\n        byte[] data = getter.getBinary(ordinal);\n        if (data.length != size) {\n          throw new IllegalArgumentException(\n              String.format(\n                  \"Cannot write %s bytes of binary data into FIXED Type with size of %s bytes\",\n                  data.length, size));\n        }\n        return new GenericData.Fixed(avroType, data);\n      };\n    }\n    if (sparkType instanceof BinaryType && avroType.getType() == Schema.Type.BYTES) {\n      return (getter, ordinal) -> ByteBuffer.wrap(getter.getBinary(ordinal));\n    }\n\n    if (sparkType instanceof DateType && avroType.getType() == Schema.Type.INT) {\n      return (getter, ordinal) -> {\n        Object sparkValue =\n            // UnsafeRow mandates Datatype\n            getter instanceof UnsafeRow || getter instanceof UnsafeArrayData\n                ? getter.getInt(ordinal)\n                : getter.get(ordinal, /* unused */ null);\n        return SparkBigQueryUtil.sparkDateToBigQuery(sparkValue);\n      };\n    }\n\n    if (sparkType instanceof TimestampType && avroType.getType() == Schema.Type.LONG) {\n      return (getter, ordinal) -> {\n        Object sparkValue =\n            // UnsafeRow mandates Datatype\n            getter instanceof UnsafeRow || getter instanceof UnsafeArrayData\n                ? getter.getLong(ordinal)\n                : getter.get(ordinal, /* unused */ null);\n        return SparkBigQueryUtil.sparkTimestampToBigQuery(sparkValue);\n      };\n    }\n\n    if (sparkType instanceof ArrayType && avroType.getType() == Schema.Type.ARRAY) {\n      DataType et = ((ArrayType) sparkType).elementType();\n      boolean containsNull = ((ArrayType) sparkType).containsNull();\n\n      Converter elementConverter =\n          createConverterFor(et, resolveNullableType(avroType.getElementType(), containsNull));\n      return (getter, ordinal) -> {\n        ArrayData arrayData = null;\n        if (getter instanceof UnsafeRow || getter instanceof UnsafeArrayData) {\n          // UnsafeRow mandates DataType\n          arrayData = getter.getArray(ordinal);\n        } else {\n          Object array = getter.get(ordinal, /* unused */ null);\n          if (array instanceof IndexedSeq) {\n            arrayData = ArrayData.toArrayData(array);\n          } else {\n            arrayData = (ArrayData) array;\n          }\n        }\n        int len = arrayData.numElements();\n        Object[] result = new Object[len];\n        for (int i = 0; i < len; i++) {\n          if (containsNull && arrayData.isNullAt(i)) {\n            result[i] = null;\n          } else {\n            result[i] = elementConverter.convert(arrayData, i);\n          }\n        }\n        // avro writer is expecting a Java Collection, so we convert it into\n        // `ArrayList` backed by the specified array without data copying.\n        return java.util.Arrays.asList(result);\n      };\n    }\n    if (sparkType instanceof StructType && avroType.getType() == Schema.Type.RECORD) {\n      StructType sparkStruct = (StructType) sparkType;\n\n      StructConverter structConverter = new StructConverter(sparkStruct, avroType);\n      int numFields = sparkStruct.length();\n      return (getter, ordinal) -> {\n        InternalRow internalRow = null;\n        if (getter instanceof UnsafeRow || getter instanceof UnsafeArrayData) {\n          // UnsafeRow mandates Datatype\n          internalRow = getter.getStruct(ordinal, numFields);\n        } else {\n          Object obj = getter.get(ordinal, /* unused */ null);\n          if (obj instanceof Row) {\n            internalRow = SparkSqlUtils.getInstance().rowToInternalRow((Row) obj);\n          } else {\n            internalRow = (InternalRow) obj;\n          }\n        }\n        return structConverter.convert(internalRow);\n      };\n    }\n    if (sparkType instanceof MapType && avroType.getType() == Type.MAP) {\n      final MapType mapType = (MapType) sparkType;\n      final Converter keyConverter = createConverterFor(mapType.keyType(), Schema.create(Type.STRING));\n      Schema valueType = avroType.getValueType();\n      Schema nullableValueType = resolveNullableType(valueType, mapType.valueContainsNull());\n      final Converter valueConverter = createConverterFor(mapType.valueType(), nullableValueType);\n\n      return (getter, ordinal) -> {\n        HashMap<Utf8, Object> result = new HashMap<>();\n        MapData map = getter.getMap(ordinal);\n        ArrayData keys = map.keyArray();\n        ArrayData values = map.valueArray();\n        for(int i = 0; i< map.numElements(); i++) {\n          Utf8 key = (Utf8) keyConverter.convert(keys, i);\n          Object value = valueConverter.convert(values, i);\n          result.put(key, value);\n        }\n        return result;\n      };\n    }\n    if (sparkType instanceof UserDefinedType) {\n      UserDefinedType userDefinedType = (UserDefinedType) sparkType;\n      return createConverterFor(userDefinedType.sqlType(), avroType);\n    }\n    throw new IllegalArgumentException(\n        String.format(\"Cannot convert Catalyst type %s to Avro type %s\", sparkType, avroType));\n  }\n\n  @FunctionalInterface\n  interface Converter {\n    Object convert(SpecializedGetters getters, int ordinal);\n  }\n\n  static class StructConverter {\n    private final StructType sparkStruct;\n    private final Schema avroStruct;\n\n    StructConverter(StructType sparkStruct, Schema avroStruct) {\n      this.sparkStruct = sparkStruct;\n      this.avroStruct = avroStruct;\n      Preconditions.checkArgument(\n          avroStruct.getType() == Schema.Type.RECORD\n              && avroStruct.getFields().size() == sparkStruct.length(),\n          \"Cannot convert Catalyst type %s to Avro type %s.\",\n          sparkStruct,\n          avroStruct);\n    }\n\n    GenericData.Record convert(InternalRow row) {\n      int numFields = sparkStruct.length();\n      Converter[] fieldConverters = new Converter[numFields];\n      StructField[] sparkFields = sparkStruct.fields();\n      Schema.Field[] avroFields = avroStruct.getFields().toArray(new Schema.Field[numFields]);\n\n      GenericData.Record result = new GenericData.Record(avroStruct);\n\n      for (int i = 0; i < numFields; i++) {\n        if (row.isNullAt(i)) {\n          result.put(i, null);\n        } else {\n          Converter fieldConverter =\n              AvroSchemaConverter.createConverterFor(\n                  sparkFields[i].dataType(),\n                  AvroSchemaConverter.resolveNullableType(\n                      avroFields[i].schema(), sparkFields[i].nullable()));\n          result.put(i, fieldConverter.convert(row, i));\n        }\n      }\n      return result;\n    }\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv1/pom.xml",
    "content": "<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n  xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n  xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\">\n  <modelVersion>4.0.0</modelVersion>\n  <parent>\n    <groupId>com.google.cloud.spark</groupId>\n    <artifactId>spark-bigquery-parent</artifactId>\n    <version>${revision}</version>\n    <relativePath>../spark-bigquery-parent</relativePath>\n  </parent>\n\n  <artifactId>spark-bigquery-dsv1</artifactId>\n  <name>BigQuery DataSource v1 implementation</name>\n    <dependencies>\n        <dependency>\n            <groupId>org.apache.spark</groupId>\n            <artifactId>spark-sql_2.13</artifactId>\n            <version>4.0.0</version>\n            <scope>provided</scope>\n        </dependency>\n    </dependencies>\n    <packaging>pom</packaging>\n  <modules>\n    <module>spark-bigquery-dsv1-spark2-support</module>\n    <module>spark-bigquery-dsv1-spark3-support</module>\n    <module>spark-bigquery-dsv1-parent</module>\n    <module>spark-bigquery_2.11</module>\n    <module>spark-bigquery_2.12</module>\n    <module>spark-bigquery_2.13</module>\n    <module>spark-bigquery-with-dependencies-parent</module>\n    <module>spark-bigquery-with-dependencies_2.11</module>\n    <module>spark-bigquery-with-dependencies_2.12</module>\n    <module>spark-bigquery-with-dependencies_2.13</module>\n  </modules>\n</project>\n"
  },
  {
    "path": "spark-bigquery-dsv1/spark-bigquery-dsv1-parent/pom.xml",
    "content": "<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n    xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n    xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\">\n  <modelVersion>4.0.0</modelVersion>\n  <parent>\n    <groupId>com.google.cloud.spark</groupId>\n    <artifactId>spark-bigquery-parent</artifactId>\n    <version>${revision}</version>\n    <relativePath>../../spark-bigquery-parent</relativePath>\n  </parent>\n\n  <artifactId>spark-bigquery-dsv1-parent</artifactId>\n  <name>BigQuery DataSource v1 implementation common settings</name>\n  <packaging>pom</packaging>\n  <properties>\n    <maven.compiler.release></maven.compiler.release>\n    <maven.compiler.source>1.8</maven.compiler.source>\n    <maven.compiler.target>1.8</maven.compiler.target>\n    <maven.javadoc.skip>true</maven.javadoc.skip>\n    <scala.binary.version>2.12</scala.binary.version>\n    <scala.version>2.12.18</scala.version>\n    <spark.version>3.1.0</spark.version>\n  </properties>\n  <licenses>\n    <license>\n      <name>Apache License, Version 2.0</name>\n      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>\n      <distribution>repo</distribution>\n    </license>\n  </licenses>\n  <dependencies>\n    <dependency>\n      <groupId>${project.groupId}</groupId>\n      <artifactId>spark-bigquery-connector-common</artifactId>\n      <version>${project.version}</version>\n    </dependency>\n    <dependency>\n      <groupId>${project.groupId}</groupId>\n      <artifactId>spark-bigquery-dsv1-spark2-support</artifactId>\n      <version>${project.version}</version>\n    </dependency>\n    <dependency>\n      <groupId>${project.groupId}</groupId>\n      <artifactId>spark-bigquery-dsv1-spark3-support</artifactId>\n      <version>${project.version}</version>\n    </dependency>\n    <dependency>\n      <groupId>commons-lang</groupId>\n      <artifactId>commons-lang</artifactId>\n      <scope>provided</scope>\n    </dependency>\n    <dependency>\n      <groupId>org.apache.spark</groupId>\n      <artifactId>spark-mllib_${scala.binary.version}</artifactId>\n      <version>${spark.version}</version>\n      <scope>provided</scope>\n      <exclusions>\n        <exclusion>\n          <groupId>io.netty</groupId>\n          <artifactId>netty</artifactId>\n        </exclusion>\n      </exclusions>\n    </dependency>\n    <dependency>\n      <groupId>org.apache.spark</groupId>\n      <artifactId>spark-sql_${scala.binary.version}</artifactId>\n      <version>${spark.version}</version>\n      <scope>provided</scope>\n      <exclusions>\n        <exclusion>\n          <groupId>io.netty</groupId>\n          <artifactId>netty</artifactId>\n        </exclusion>\n      </exclusions>\n    </dependency>\n    <dependency>\n      <groupId>org.apache.spark</groupId>\n      <artifactId>spark-avro_${scala.binary.version}</artifactId>\n      <version>${spark.version}</version>\n      <scope>test</scope>\n    </dependency>\n    <dependency>\n      <groupId>${project.groupId}</groupId>\n      <artifactId>bigquery-connector-common</artifactId>\n      <version>${project.version}</version>\n      <scope>test</scope>\n      <classifier>tests</classifier>\n    </dependency>\n    <dependency>\n      <groupId>${project.groupId}</groupId>\n      <artifactId>spark-bigquery-connector-common</artifactId>\n      <version>${project.version}</version>\n      <scope>test</scope>\n      <classifier>tests</classifier>\n    </dependency>\n    <dependency>\n      <groupId>${project.groupId}</groupId>\n      <artifactId>spark-bigquery-tests</artifactId>\n      <version>${project.version}</version>\n      <scope>test</scope>\n    </dependency>\n  </dependencies>\n  <build>\n    <plugins>\n      <!-- keep scala version, can be queried without loading code -->\n      <plugin>\n        <groupId>org.apache.maven.plugins</groupId>\n        <artifactId>maven-resources-plugin</artifactId>\n        <executions>\n          <execution>\n            <id>copy-resources</id>\n            <!-- here the phase you need -->\n            <phase>validate</phase>\n            <goals>\n              <goal>copy-resources</goal>\n            </goals>\n            <configuration>\n              <outputDirectory>${basedir}/target/classes</outputDirectory>\n              <resources>\n                <resource>\n                  <directory>src/build/resources</directory>\n                  <filtering>true</filtering>\n                </resource>\n              </resources>\n            </configuration>\n          </execution>\n        </executions>\n      </plugin>\n      <plugin>\n        <groupId>org.codehaus.mojo</groupId>\n        <artifactId>build-helper-maven-plugin</artifactId>\n        <executions>\n          <execution>\n            <phase>generate-sources</phase>\n            <goals>\n              <goal>add-test-source</goal>\n            </goals>\n            <configuration>\n              <sources>\n                <source>src/test/scala</source>\n              </sources>\n            </configuration>\n          </execution>\n        </executions>\n      </plugin>\n      <!-- generating empty javadoc jar, for Maven Central publishing -->\n      <plugin>\n        <groupId>org.apache.maven.plugins</groupId>\n        <artifactId>maven-jar-plugin</artifactId>\n        <executions>\n          <execution>\n            <id>empty-javadoc-jar</id>\n            <phase>package</phase>\n            <goals>\n              <goal>jar</goal>\n            </goals>\n            <configuration>\n              <classifier>javadoc</classifier>\n              <classesDirectory>${basedir}/src/build/javadoc</classesDirectory>\n            </configuration>\n          </execution>\n        </executions>\n      </plugin>\n    </plugins>\n  </build>\n</project>\n"
  },
  {
    "path": "spark-bigquery-dsv1/spark-bigquery-dsv1-spark2-support/pom.xml",
    "content": "<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n  xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n  xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\">\n  <modelVersion>4.0.0</modelVersion>\n  <parent>\n    <groupId>com.google.cloud.spark</groupId>\n    <artifactId>spark-bigquery-parent</artifactId>\n    <version>${revision}</version>\n    <relativePath>../../spark-bigquery-parent</relativePath>\n  </parent>\n\n  <artifactId>spark-bigquery-dsv1-spark2-support</artifactId>\n  <name>Spark BigQuery Connector Spark 2 Support</name>\n  <licenses>\n    <license>\n      <name>Apache License, Version 2.0</name>\n      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>\n      <distribution>repo</distribution>\n    </license>\n  </licenses>\n  <dependencies>\n    <dependency>\n      <groupId>${project.groupId}</groupId>\n      <artifactId>spark-bigquery-connector-common</artifactId>\n      <version>${project.version}</version>\n    </dependency>\n    <dependency>\n      <groupId>org.apache.spark</groupId>\n      <artifactId>spark-sql_2.12</artifactId>\n      <version>2.4.0</version>\n      <scope>provided</scope>\n    </dependency>\n  </dependencies>\n</project>\n"
  },
  {
    "path": "spark-bigquery-dsv1/spark-bigquery-dsv1-spark2-support/src/main/java/com/google/cloud/spark/bigquery/spark2/Spark2DataFrameToRDDConverter.java",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.spark2;\n\nimport com.google.cloud.spark.bigquery.DataFrameToRDDConverter;\nimport java.util.Iterator;\nimport java.util.stream.Stream;\nimport org.apache.spark.rdd.RDD;\nimport org.apache.spark.sql.Dataset;\nimport org.apache.spark.sql.Row;\nimport org.apache.spark.sql.catalyst.InternalRow;\nimport org.apache.spark.sql.catalyst.analysis.SimpleAnalyzer$;\nimport org.apache.spark.sql.catalyst.encoders.ExpressionEncoder;\nimport org.apache.spark.sql.catalyst.encoders.RowEncoder;\nimport org.apache.spark.sql.catalyst.expressions.Attribute;\nimport org.apache.spark.sql.catalyst.expressions.AttributeReference;\nimport org.apache.spark.sql.types.StructType;\nimport scala.collection.Seq;\nimport scala.collection.mutable.WrappedArray;\n\npublic class Spark2DataFrameToRDDConverter implements DataFrameToRDDConverter {\n\n  @Override\n  public RDD<Row> convertToRDD(Dataset<Row> data) {\n    StructType schema = data.schema();\n    // Going to more explicit API as JavaConverters changed significantly across Scala versions\n    Seq<AttributeReference> attributeReferenceSeq = schema.toAttributes();\n    AttributeReference[] attributeReferenceArray =\n        new AttributeReference[attributeReferenceSeq.size()];\n    attributeReferenceSeq.copyToArray(attributeReferenceArray);\n    Attribute[] attributes =\n        Stream.of(attributeReferenceArray).map(Attribute::toAttribute).toArray(Attribute[]::new);\n\n    Seq<Attribute> attributeSeq = WrappedArray.<Attribute>make(attributes).toSeq();\n\n    final ExpressionEncoder<Row> expressionEncoder =\n        RowEncoder.apply(schema).resolveAndBind(attributeSeq, SimpleAnalyzer$.MODULE$);\n\n    RDD<Row> rowRdd =\n        data.queryExecution()\n            .toRdd()\n            .toJavaRDD()\n            .mapPartitions(iter -> new EncodingIterator(iter, expressionEncoder))\n            .rdd();\n\n    return rowRdd;\n  }\n\n  @Override\n  public boolean supports(String sparkVersion) {\n    return sparkVersion.compareTo(\"3\") < 0;\n  }\n\n  static class EncodingIterator implements Iterator<Row> {\n    private Iterator<InternalRow> internalIterator;\n    private ExpressionEncoder<Row> expressionEncoder;\n\n    public EncodingIterator(\n        Iterator<InternalRow> internalIterator, ExpressionEncoder<Row> expressionEncoder) {\n      this.internalIterator = internalIterator;\n      this.expressionEncoder = expressionEncoder;\n    }\n\n    @Override\n    public boolean hasNext() {\n      return internalIterator.hasNext();\n    }\n\n    @Override\n    public Row next() {\n      return expressionEncoder.fromRow(internalIterator.next());\n    }\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv1/spark-bigquery-dsv1-spark2-support/src/main/resources/META-INF/services/com.google.cloud.spark.bigquery.DataFrameToRDDConverter",
    "content": "com.google.cloud.spark.bigquery.spark2.Spark2DataFrameToRDDConverter\n"
  },
  {
    "path": "spark-bigquery-dsv1/spark-bigquery-dsv1-spark3-support/pom.xml",
    "content": "<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n  xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n  xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\">\n  <modelVersion>4.0.0</modelVersion>\n  <parent>\n    <groupId>com.google.cloud.spark</groupId>\n    <artifactId>spark-bigquery-parent</artifactId>\n    <version>${revision}</version>\n    <relativePath>../../spark-bigquery-parent</relativePath>\n  </parent>\n\n  <artifactId>spark-bigquery-dsv1-spark3-support</artifactId>\n  <name>Spark BigQuery Connector Spark 3 Support</name>\n  <licenses>\n    <license>\n      <name>Apache License, Version 2.0</name>\n      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>\n      <distribution>repo</distribution>\n    </license>\n  </licenses>\n  <dependencies>\n    <dependency>\n      <groupId>${project.groupId}</groupId>\n      <artifactId>spark-bigquery-connector-common</artifactId>\n      <version>${project.version}</version>\n    </dependency>\n    <dependency>\n      <groupId>org.apache.spark</groupId>\n      <artifactId>spark-sql_2.12</artifactId>\n      <version>3.2.0</version>\n      <scope>provided</scope>\n    </dependency>\n  </dependencies>\n</project>\n"
  },
  {
    "path": "spark-bigquery-dsv1/spark-bigquery-dsv1-spark3-support/src/main/java/com/google/cloud/spark/bigquery/spark3/SerializableAbstractFunction1.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.spark3;\n\nimport java.io.Serializable;\nimport java.util.function.Function;\nimport scala.runtime.AbstractFunction1;\n\npublic class SerializableAbstractFunction1<T, U> extends AbstractFunction1<T, U>\n    implements Serializable {\n  private Function<T, U> func;\n\n  SerializableAbstractFunction1(Function<T, U> func) {\n    this.func = func;\n  }\n\n  @Override\n  public U apply(T obj) {\n    return func.apply(obj);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv1/spark-bigquery-dsv1-spark3-support/src/main/java/com/google/cloud/spark/bigquery/spark3/Spark3DataFrameToRDDConverter.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.spark3;\n\nimport com.google.cloud.spark.bigquery.DataFrameToRDDConverter;\nimport java.io.Serializable;\nimport java.util.function.Function;\nimport org.apache.spark.rdd.RDD;\nimport org.apache.spark.sql.Dataset;\nimport org.apache.spark.sql.Row;\nimport org.apache.spark.sql.SparkSqlUtils;\nimport org.apache.spark.sql.catalyst.InternalRow;\nimport org.apache.spark.sql.catalyst.encoders.ExpressionEncoder;\nimport org.apache.spark.sql.catalyst.encoders.ExpressionEncoder.Deserializer;\nimport org.apache.spark.sql.types.StructType;\nimport scala.collection.Iterator;\nimport scala.reflect.ClassTag;\nimport scala.reflect.ClassTag$;\nimport scala.runtime.AbstractFunction1;\n\npublic class Spark3DataFrameToRDDConverter implements DataFrameToRDDConverter {\n\n  @Override\n  public RDD<Row> convertToRDD(Dataset<Row> data) {\n    StructType schema = data.schema();\n    final ExpressionEncoder<Row> expressionEncoder =\n        SparkSqlUtils.getInstance().createExpressionEncoder(schema);\n    final Deserializer<Row> deserializer = expressionEncoder.createDeserializer();\n    ClassTag<Row> classTag = ClassTag$.MODULE$.apply(Row.class);\n\n    RDD<Row> rowRdd =\n        data.queryExecution()\n            .toRdd()\n            .mapPartitions(getIteratorMapper(deserializer), false, classTag);\n\n    return rowRdd;\n  }\n\n  @Override\n  public boolean supports(String sparkVersion) {\n    return sparkVersion.compareTo(\"3\") >= 0;\n  }\n\n  private AbstractFunction1<Iterator<InternalRow>, Iterator<Row>> getIteratorMapper(\n      final Deserializer<Row> deserializer) {\n\n    final AbstractFunction1<InternalRow, Row> internalRowMapper =\n        new SerializableAbstractFunction1(\n            (Function<InternalRow, Row> & Serializable)\n                internalRow -> deserializer.apply(internalRow));\n\n    final AbstractFunction1<Iterator<InternalRow>, Iterator<Row>> iteratorMapper =\n        new SerializableAbstractFunction1(\n            (Function<Iterator<InternalRow>, Iterator<Row>> & Serializable)\n                iterator -> iterator.map(internalRowMapper));\n\n    return iteratorMapper;\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv1/spark-bigquery-dsv1-spark3-support/src/main/resources/META-INF/services/com.google.cloud.spark.bigquery.DataFrameToRDDConverter",
    "content": "com.google.cloud.spark.bigquery.spark3.Spark3DataFrameToRDDConverter\n"
  },
  {
    "path": "spark-bigquery-dsv1/spark-bigquery-with-dependencies-parent/pom.xml",
    "content": "<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n  xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n  xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\">\n  <modelVersion>4.0.0</modelVersion>\n  <parent>\n    <groupId>com.google.cloud.spark</groupId>\n    <artifactId>spark-bigquery-parent</artifactId>\n    <version>${revision}</version>\n    <relativePath>../../spark-bigquery-parent</relativePath>\n  </parent>\n  <artifactId>spark-bigquery-with-dependencies-parent</artifactId>\n  <name>BigQuery DataSource v1 shaded distributable common settings</name>\n  <packaging>pom</packaging>\n  <licenses>\n    <license>\n      <name>Apache License, Version 2.0</name>\n      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>\n      <distribution>repo</distribution>\n    </license>\n  </licenses>\n  <dependencies>\n    <dependency>\n      <groupId>${project.groupId}</groupId>\n      <artifactId>spark-bigquery-tests</artifactId>\n      <version>${project.parent.version}</version>\n      <scope>test</scope>\n    </dependency>\n  </dependencies>\n  <build>\n    <plugins>\n      <!-- generating empty javadoc jar, for Maven Central publishing -->\n      <plugin>\n        <groupId>org.apache.maven.plugins</groupId>\n        <artifactId>maven-jar-plugin</artifactId>\n        <executions>\n          <execution>\n            <id>empty-javadoc-jar</id>\n            <phase>package</phase>\n            <goals>\n              <goal>jar</goal>\n            </goals>\n            <configuration>\n              <classifier>javadoc</classifier>\n              <classesDirectory>${basedir}/src/build/javadoc</classesDirectory>\n            </configuration>\n          </execution>\n        </executions>\n      </plugin>\n    </plugins>\n  </build>\n</project>\n"
  },
  {
    "path": "spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.11/pom.xml",
    "content": "<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n    xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n    xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\">\n  <modelVersion>4.0.0</modelVersion>\n  <parent>\n    <groupId>com.google.cloud.spark</groupId>\n    <artifactId>spark-bigquery-with-dependencies-parent</artifactId>\n    <version>${revision}</version>\n    <relativePath>../spark-bigquery-with-dependencies-parent</relativePath>\n  </parent>\n\n  <artifactId>spark-bigquery-with-dependencies_2.11</artifactId>\n  <name>BigQuery DataSource v1 shaded distributable for Scala 2.11</name>\n  <properties>\n    <scala.binary.version>2.11</scala.binary.version>\n    <shade.skip>false</shade.skip>\n  </properties>\n  <licenses>\n    <license>\n      <name>Apache License, Version 2.0</name>\n      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>\n      <distribution>repo</distribution>\n    </license>\n  </licenses>\n  <dependencies>\n    <dependency>\n      <groupId>${project.groupId}</groupId>\n      <artifactId>spark-bigquery_${scala.binary.version}</artifactId>\n      <version>${project.version}</version>\n    </dependency>\n  </dependencies>\n</project>"
  },
  {
    "path": "spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.11/src/build/javadoc/README.md",
    "content": "In order to comply with Maven-Central requirements\n"
  },
  {
    "path": "spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.11/src/test/java/com/google/cloud/spark/bigquery/acceptance/Scala211DataprocImage13AcceptanceTest.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\nimport java.util.Collections;\nimport org.junit.AfterClass;\nimport org.junit.BeforeClass;\nimport org.junit.Ignore;\n\n@Ignore\npublic class Scala211DataprocImage13AcceptanceTest extends DataprocAcceptanceTestBase {\n\n  private static AcceptanceTestContext context;\n\n  public Scala211DataprocImage13AcceptanceTest() {\n    super(context);\n  }\n\n  @BeforeClass\n  public static void setup() throws Exception {\n    context =\n        DataprocAcceptanceTestBase.setup(\"1.3-debian10\", \"spark-bigquery\", Collections.emptyList());\n  }\n\n  @AfterClass\n  public static void tearDown() throws Exception {\n    DataprocAcceptanceTestBase.tearDown(context);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.11/src/test/java/com/google/cloud/spark/bigquery/acceptance/Scala211DataprocImage13DisableConscryptAcceptanceTest.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\nimport org.junit.AfterClass;\nimport org.junit.BeforeClass;\nimport org.junit.Ignore;\n\n@Ignore\npublic class Scala211DataprocImage13DisableConscryptAcceptanceTest\n    extends DataprocAcceptanceTestBase {\n\n  private static AcceptanceTestContext context;\n\n  public Scala211DataprocImage13DisableConscryptAcceptanceTest() {\n    super(context);\n  }\n\n  @BeforeClass\n  public static void setup() throws Exception {\n    context =\n        DataprocAcceptanceTestBase.setup(\"1.3-debian10\", \"spark-bigquery\", DISABLE_CONSCRYPT_LIST);\n  }\n\n  @AfterClass\n  public static void tearDown() throws Exception {\n    DataprocAcceptanceTestBase.tearDown(context);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.11/src/test/java/com/google/cloud/spark/bigquery/acceptance/Scala211DataprocImage14AcceptanceTest.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\nimport java.util.Collections;\nimport org.junit.AfterClass;\nimport org.junit.BeforeClass;\nimport org.junit.Ignore;\n\n@Ignore\npublic class Scala211DataprocImage14AcceptanceTest extends DataprocAcceptanceTestBase {\n\n  private static AcceptanceTestContext context;\n\n  public Scala211DataprocImage14AcceptanceTest() {\n    super(context);\n  }\n\n  @BeforeClass\n  public static void setup() throws Exception {\n    context =\n        DataprocAcceptanceTestBase.setup(\"1.4-debian10\", \"spark-bigquery\", Collections.emptyList());\n  }\n\n  @AfterClass\n  public static void tearDown() throws Exception {\n    DataprocAcceptanceTestBase.tearDown(context);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.11/src/test/java/com/google/cloud/spark/bigquery/acceptance/Scala211DataprocImage14DisableConscryptAcceptanceTest.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\nimport org.junit.AfterClass;\nimport org.junit.BeforeClass;\nimport org.junit.Ignore;\n\n@Ignore\npublic class Scala211DataprocImage14DisableConscryptAcceptanceTest\n    extends DataprocAcceptanceTestBase {\n\n  private static AcceptanceTestContext context;\n\n  public Scala211DataprocImage14DisableConscryptAcceptanceTest() {\n    super(context);\n  }\n\n  @BeforeClass\n  public static void setup() throws Exception {\n    context =\n        DataprocAcceptanceTestBase.setup(\"1.4-debian10\", \"spark-bigquery\", DISABLE_CONSCRYPT_LIST);\n  }\n\n  @AfterClass\n  public static void tearDown() throws Exception {\n    DataprocAcceptanceTestBase.tearDown(context);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.12/pom.xml",
    "content": "<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n         xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n         xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\">\n    <modelVersion>4.0.0</modelVersion>\n    <parent>\n        <groupId>com.google.cloud.spark</groupId>\n        <artifactId>spark-bigquery-with-dependencies-parent</artifactId>\n        <version>${revision}</version>\n        <relativePath>../spark-bigquery-with-dependencies-parent</relativePath>\n    </parent>\n\n    <artifactId>spark-bigquery-with-dependencies_2.12</artifactId>\n    <name>BigQuery DataSource v1 shaded distributable for Scala 2.12</name>\n    <properties>\n        <scala.binary.version>2.12</scala.binary.version>\n        <scala.version>2.12.18</scala.version>\n        <shade.skip>false</shade.skip>\n    </properties>\n    <licenses>\n        <license>\n            <name>Apache License, Version 2.0</name>\n            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>\n            <distribution>repo</distribution>\n        </license>\n    </licenses>\n    <dependencies>\n        <dependency>\n            <groupId>${project.groupId}</groupId>\n            <artifactId>spark-bigquery_${scala.binary.version}</artifactId>\n            <version>${project.version}</version>\n        </dependency>\n    </dependencies>\n    <build>\n        <plugins>\n            <plugin>\n                <groupId>org.codehaus.mojo</groupId>\n                <artifactId>build-helper-maven-plugin</artifactId>\n                <executions>\n                    <execution>\n                        <id>add-acceptance-test-source</id>\n                        <phase>generate-sources</phase>\n                        <goals>\n                            <goal>add-test-source</goal>\n                        </goals>\n                        <configuration>\n                            <sources>\n                                <source>src/test_2.12/java</source>\n                            </sources>\n                        </configuration>\n                    </execution>\n                </executions>\n            </plugin>\n        </plugins>\n    </build>\n</project>"
  },
  {
    "path": "spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.12/src/build/javadoc/README.md",
    "content": "In order to comply with Maven-Central requirements\n"
  },
  {
    "path": "spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.12/src/test/java/com/google/cloud/spark/bigquery/acceptance/Scala212DataprocImage15AcceptanceTest.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\nimport java.util.Collections;\nimport org.junit.AfterClass;\nimport org.junit.BeforeClass;\nimport org.junit.Ignore;\n\n@Ignore\npublic class Scala212DataprocImage15AcceptanceTest extends DataprocAcceptanceTestBase {\n\n  private static AcceptanceTestContext context;\n\n  public Scala212DataprocImage15AcceptanceTest() {\n    super(context);\n  }\n\n  @BeforeClass\n  public static void setup() throws Exception {\n    context =\n        DataprocAcceptanceTestBase.setup(\"1.5-debian10\", \"spark-bigquery\", Collections.emptyList());\n  }\n\n  @AfterClass\n  public static void tearDown() throws Exception {\n    DataprocAcceptanceTestBase.tearDown(context);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.12/src/test/java/com/google/cloud/spark/bigquery/acceptance/Scala212DataprocImage15DisableConscryptAcceptanceTest.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\nimport org.junit.AfterClass;\nimport org.junit.BeforeClass;\nimport org.junit.Ignore;\n\n@Ignore\npublic class Scala212DataprocImage15DisableConscryptAcceptanceTest\n    extends DataprocAcceptanceTestBase {\n\n  private static AcceptanceTestContext context;\n\n  public Scala212DataprocImage15DisableConscryptAcceptanceTest() {\n    super(context);\n  }\n\n  @BeforeClass\n  public static void setup() throws Exception {\n    context =\n        DataprocAcceptanceTestBase.setup(\"1.5-debian10\", \"spark-bigquery\", DISABLE_CONSCRYPT_LIST);\n  }\n\n  @AfterClass\n  public static void tearDown() throws Exception {\n    DataprocAcceptanceTestBase.tearDown(context);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.12/src/test/java/com/google/cloud/spark/bigquery/acceptance/Scala212DataprocImage20AcceptanceTest.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\nimport java.util.Collections;\nimport org.junit.AfterClass;\nimport org.junit.BeforeClass;\n\npublic class Scala212DataprocImage20AcceptanceTest extends DataprocAcceptanceTestBase {\n\n  private static AcceptanceTestContext context;\n\n  public Scala212DataprocImage20AcceptanceTest() {\n    super(context);\n  }\n\n  @BeforeClass\n  public static void setup() throws Exception {\n    context =\n        DataprocAcceptanceTestBase.setup(\"2.0-debian10\", \"spark-bigquery\", Collections.emptyList());\n  }\n\n  @AfterClass\n  public static void tearDown() throws Exception {\n    DataprocAcceptanceTestBase.tearDown(context);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.12/src/test/java/com/google/cloud/spark/bigquery/acceptance/Scala212DataprocImage20DisableConscryptAcceptanceTest.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\nimport org.junit.AfterClass;\nimport org.junit.BeforeClass;\n\npublic class Scala212DataprocImage20DisableConscryptAcceptanceTest\n    extends DataprocAcceptanceTestBase {\n\n  private static AcceptanceTestContext context;\n\n  public Scala212DataprocImage20DisableConscryptAcceptanceTest() {\n    super(context);\n  }\n\n  @BeforeClass\n  public static void setup() throws Exception {\n    context =\n        DataprocAcceptanceTestBase.setup(\"2.0-debian10\", \"spark-bigquery\", DISABLE_CONSCRYPT_LIST);\n  }\n\n  @AfterClass\n  public static void tearDown() throws Exception {\n    DataprocAcceptanceTestBase.tearDown(context);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.12/src/test/java/com/google/cloud/spark/bigquery/acceptance/Scala212DataprocImage21AcceptanceTest.java",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\nimport java.util.Collections;\nimport org.junit.AfterClass;\nimport org.junit.BeforeClass;\n\npublic class Scala212DataprocImage21AcceptanceTest extends DataprocAcceptanceTestBase {\n\n  private static AcceptanceTestContext context;\n\n  public Scala212DataprocImage21AcceptanceTest() {\n    super(context);\n  }\n\n  @BeforeClass\n  public static void setup() throws Exception {\n    context =\n        DataprocAcceptanceTestBase.setup(\"2.1-debian11\", \"spark-bigquery\", Collections.emptyList());\n  }\n\n  @AfterClass\n  public static void tearDown() throws Exception {\n    DataprocAcceptanceTestBase.tearDown(context);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.12/src/test/java/com/google/cloud/spark/bigquery/acceptance/Scala212DataprocImage21DisableConscryptAcceptanceTest.java",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\nimport org.junit.AfterClass;\nimport org.junit.BeforeClass;\n\npublic class Scala212DataprocImage21DisableConscryptAcceptanceTest\n    extends DataprocAcceptanceTestBase {\n\n  private static AcceptanceTestContext context;\n\n  public Scala212DataprocImage21DisableConscryptAcceptanceTest() {\n    super(context);\n  }\n\n  @BeforeClass\n  public static void setup() throws Exception {\n    context =\n        DataprocAcceptanceTestBase.setup(\"2.1-debian11\", \"spark-bigquery\", DISABLE_CONSCRYPT_LIST);\n  }\n\n  @AfterClass\n  public static void tearDown() throws Exception {\n    DataprocAcceptanceTestBase.tearDown(context);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.12/src/test/java/com/google/cloud/spark/bigquery/acceptance/Scala212DataprocImage22AcceptanceTest.java",
    "content": "/*\n * Copyright 2024 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\nimport java.util.Collections;\nimport org.junit.AfterClass;\nimport org.junit.BeforeClass;\n\npublic class Scala212DataprocImage22AcceptanceTest extends DataprocAcceptanceTestBase {\n\n  private static AcceptanceTestContext context;\n\n  public Scala212DataprocImage22AcceptanceTest() {\n    // TODO: sparkStreamingSupported should be set to true once bug is fixed in image 2.2\n    super(context, false);\n  }\n\n  @BeforeClass\n  public static void setup() throws Exception {\n    context =\n        DataprocAcceptanceTestBase.setup(\"2.2-debian12\", \"spark-bigquery\", Collections.emptyList());\n  }\n\n  @AfterClass\n  public static void tearDown() throws Exception {\n    DataprocAcceptanceTestBase.tearDown(context);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.12/src/test/java/com/google/cloud/spark/bigquery/acceptance/Scala212DataprocImage22DisableConscryptAcceptanceTest.java",
    "content": "/*\n * Copyright 2024 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\nimport org.junit.AfterClass;\nimport org.junit.BeforeClass;\n\npublic class Scala212DataprocImage22DisableConscryptAcceptanceTest\n    extends DataprocAcceptanceTestBase {\n\n  private static AcceptanceTestContext context;\n\n  public Scala212DataprocImage22DisableConscryptAcceptanceTest() {\n    super(context, false);\n  }\n\n  @BeforeClass\n  public static void setup() throws Exception {\n    context =\n        DataprocAcceptanceTestBase.setup(\"2.2-debian12\", \"spark-bigquery\", DISABLE_CONSCRYPT_LIST);\n  }\n\n  @AfterClass\n  public static void tearDown() throws Exception {\n    DataprocAcceptanceTestBase.tearDown(context);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.12/src/test/java/com/google/cloud/spark/bigquery/acceptance/Scala212Spark32WriteStreamDataprocServerlessAcceptanceTest.java",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\nimport org.junit.Ignore;\n\n@Ignore // spark-3.1-bigquery does not support streaming yet\npublic class Scala212Spark32WriteStreamDataprocServerlessAcceptanceTest\n    extends WriteStreamDataprocServerlessAcceptanceTestBase {\n\n  public Scala212Spark32WriteStreamDataprocServerlessAcceptanceTest() {\n    super(\"spark-bigquery\", \"1.0\");\n  }\n\n  // tests from superclass\n\n}\n"
  },
  {
    "path": "spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.12/src/test/java/com/google/cloud/spark/bigquery/acceptance/Scala212Spark33BigNumericDataprocServerlessAcceptanceTest.java",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\npublic class Scala212Spark33BigNumericDataprocServerlessAcceptanceTest\n    extends BigNumericDataprocServerlessAcceptanceTestBase {\n\n  public Scala212Spark33BigNumericDataprocServerlessAcceptanceTest() {\n    super(\"spark-bigquery\", \"1.1\");\n  }\n\n  // tests from superclass\n\n}\n"
  },
  {
    "path": "spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.12/src/test/java/com/google/cloud/spark/bigquery/acceptance/Scala212Spark33ReadSheakspeareDataprocServerlessAcceptanceTest.java",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\npublic class Scala212Spark33ReadSheakspeareDataprocServerlessAcceptanceTest\n    extends ReadSheakspeareDataprocServerlessAcceptanceTestBase {\n\n  public Scala212Spark33ReadSheakspeareDataprocServerlessAcceptanceTest() {\n    super(\"spark-bigquery\", \"1.1\");\n  }\n\n  // tests from superclass\n\n}\n"
  },
  {
    "path": "spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.12/src/test_2.12/java/com/google/cloud/spark/bigquery/acceptance/Scala212BigNumericDataprocServerlessAcceptanceTest.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\npublic class Scala212BigNumericDataprocServerlessAcceptanceTest extends BigNumericDataprocServerlessAcceptanceTestBase {\n\n    public Scala212BigNumericDataprocServerlessAcceptanceTest() {\n        super(\"spark-bigquery\", \"1.0\");\n    }\n\n    // tests from superclass\n\n}\n"
  },
  {
    "path": "spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.12/src/test_2.12/java/com/google/cloud/spark/bigquery/acceptance/Scala212ReadSheakspeareDataprocServerlessAcceptanceTest.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\npublic class Scala212ReadSheakspeareDataprocServerlessAcceptanceTest extends ReadSheakspeareDataprocServerlessAcceptanceTestBase {\n\n    public Scala212ReadSheakspeareDataprocServerlessAcceptanceTest() {\n        super(\"spark-bigquery\", \"1.0\");\n    }\n\n    // tests from superclass\n\n}\n"
  },
  {
    "path": "spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.12/src/test_2.12/java/com/google/cloud/spark/bigquery/acceptance/Scala212WriteStreamDataprocServerlessAcceptanceTest.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\npublic class Scala212WriteStreamDataprocServerlessAcceptanceTest extends WriteStreamDataprocServerlessAcceptanceTestBase {\n\n    public Scala212WriteStreamDataprocServerlessAcceptanceTest() {\n        super(\"spark-bigquery\", \"1.0\");\n    }\n\n    // tests from superclass\n\n}\n"
  },
  {
    "path": "spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.13/pom.xml",
    "content": "<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n         xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n         xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\">\n    <modelVersion>4.0.0</modelVersion>\n    <parent>\n        <groupId>com.google.cloud.spark</groupId>\n        <artifactId>spark-bigquery-with-dependencies-parent</artifactId>\n        <version>${revision}</version>\n        <relativePath>../spark-bigquery-with-dependencies-parent</relativePath>\n    </parent>\n\n    <artifactId>spark-bigquery-with-dependencies_2.13</artifactId>\n    <name>BigQuery DataSource v1 shaded distributable for Scala 2.13</name>\n    <properties>\n        <scala.binary.version>2.13</scala.binary.version>\n        <scala.version>2.13.5</scala.version>\n        <shade.skip>false</shade.skip>\n    </properties>\n    <licenses>\n        <license>\n            <name>Apache License, Version 2.0</name>\n            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>\n            <distribution>repo</distribution>\n        </license>\n    </licenses>\n    <dependencies>\n        <dependency>\n            <groupId>${project.groupId}</groupId>\n            <artifactId>spark-bigquery_${scala.binary.version}</artifactId>\n            <version>${project.version}</version>\n        </dependency>\n    </dependencies>\n    <build>\n        <plugins>\n            <plugin>\n                <groupId>org.codehaus.mojo</groupId>\n                <artifactId>build-helper-maven-plugin</artifactId>\n                <executions>\n                    <execution>\n                        <id>add-acceptance-test-source</id>\n                        <phase>generate-sources</phase>\n                        <goals>\n                            <goal>add-test-source</goal>\n                        </goals>\n                        <configuration>\n                            <sources>\n                                <source>src/test_2.13/java</source>\n                            </sources>\n                        </configuration>\n                    </execution>\n                </executions>\n            </plugin>\n        </plugins>\n    </build>\n</project>\n"
  },
  {
    "path": "spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.13/src/test/java/com/google/cloud/spark/bigquery/acceptance/Scala213DataprocImage21AcceptanceTest.java",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */ package com.google.cloud.spark.bigquery.acceptance;\n\nimport java.util.Collections;\nimport org.junit.AfterClass;\nimport org.junit.BeforeClass;\nimport org.junit.Ignore;\n\n@Ignore\n// A placeholder until a Scala 2.13 image is released\npublic class Scala213DataprocImage21AcceptanceTest extends DataprocAcceptanceTestBase {\n\n  private static AcceptanceTestContext context;\n\n  public Scala213DataprocImage21AcceptanceTest() {\n    super(context);\n  }\n\n  @BeforeClass\n  public static void setup() throws Exception {\n    context =\n        DataprocAcceptanceTestBase.setup(\"2.0-debian10\", \"spark-bigquery\", Collections.emptyList());\n  }\n\n  @AfterClass\n  public static void tearDown() throws Exception {\n    DataprocAcceptanceTestBase.tearDown(context);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.13/src/test/java/com/google/cloud/spark/bigquery/acceptance/Scala213DataprocImage21DisableConscryptAcceptanceTest.java",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\nimport org.junit.AfterClass;\nimport org.junit.BeforeClass;\nimport org.junit.Ignore;\n\n@Ignore\n// A placeholder until a Scala 2.13 image is released\npublic class Scala213DataprocImage21DisableConscryptAcceptanceTest\n    extends DataprocAcceptanceTestBase {\n\n  private static AcceptanceTestContext context;\n\n  public Scala213DataprocImage21DisableConscryptAcceptanceTest() {\n    super(context);\n  }\n\n  @BeforeClass\n  public static void setup() throws Exception {\n    context =\n        DataprocAcceptanceTestBase.setup(\"2.0-debian10\", \"spark-bigquery\", DISABLE_CONSCRYPT_LIST);\n  }\n\n  @AfterClass\n  public static void tearDown() throws Exception {\n    DataprocAcceptanceTestBase.tearDown(context);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.13/src/test/java/com/google/cloud/spark/bigquery/acceptance/Scala213Spark33BigNumericDataprocServerlessAcceptanceTest.java",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\npublic class Scala213Spark33BigNumericDataprocServerlessAcceptanceTest\n    extends BigNumericDataprocServerlessAcceptanceTestBase {\n\n  public Scala213Spark33BigNumericDataprocServerlessAcceptanceTest() {\n    super(\"spark-bigquery\", \"2.0\");\n  }\n\n  // tests from superclass\n\n}\n"
  },
  {
    "path": "spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.13/src/test/java/com/google/cloud/spark/bigquery/acceptance/Scala213Spark33ReadSheakspeareDataprocServerlessAcceptanceTest.java",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\npublic class Scala213Spark33ReadSheakspeareDataprocServerlessAcceptanceTest\n    extends ReadSheakspeareDataprocServerlessAcceptanceTestBase {\n\n  public Scala213Spark33ReadSheakspeareDataprocServerlessAcceptanceTest() {\n    super(\"spark-bigquery\", \"2.0\");\n  }\n\n  // tests from superclass\n\n}\n"
  },
  {
    "path": "spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.13/src/test/java/com/google/cloud/spark/bigquery/acceptance/Scala213Spark33WriteStreamDataprocServerlessAcceptanceTest.java",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\nimport org.junit.Ignore;\n\n@Ignore // spark-3.1-bigquery does not support streaming yet\npublic class Scala213Spark33WriteStreamDataprocServerlessAcceptanceTest\n    extends WriteStreamDataprocServerlessAcceptanceTestBase {\n\n  public Scala213Spark33WriteStreamDataprocServerlessAcceptanceTest() {\n    super(\"spark-bigquery\", \"2.0\");\n  }\n\n  // tests from superclass\n\n}\n"
  },
  {
    "path": "spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.13/src/test/java/com/google/cloud/spark/bigquery/acceptance/Scala213Spark34BigNumericDataprocServerlessAcceptanceTest.java",
    "content": "/*\n * Copyright 2024 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\npublic class Scala213Spark34BigNumericDataprocServerlessAcceptanceTest\n    extends BigNumericDataprocServerlessAcceptanceTestBase {\n\n  public Scala213Spark34BigNumericDataprocServerlessAcceptanceTest() {\n    super(\"spark-bigquery\", \"2.1\");\n  }\n\n  // tests from superclass\n\n}\n"
  },
  {
    "path": "spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.13/src/test/java/com/google/cloud/spark/bigquery/acceptance/Scala213Spark34ReadSheakspeareDataprocServerlessAcceptanceTest.java",
    "content": "/*\n * Copyright 2024 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\npublic class Scala213Spark34ReadSheakspeareDataprocServerlessAcceptanceTest\n    extends ReadSheakspeareDataprocServerlessAcceptanceTestBase {\n\n  public Scala213Spark34ReadSheakspeareDataprocServerlessAcceptanceTest() {\n    super(\"spark-bigquery\", \"2.1\");\n  }\n\n  // tests from superclass\n\n}\n"
  },
  {
    "path": "spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.13/src/test/java/com/google/cloud/spark/bigquery/acceptance/Scala213Spark35BigNumericDataprocServerlessAcceptanceTest.java",
    "content": "/*\n * Copyright 2024 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\npublic class Scala213Spark35BigNumericDataprocServerlessAcceptanceTest\n    extends BigNumericDataprocServerlessAcceptanceTestBase {\n\n  public Scala213Spark35BigNumericDataprocServerlessAcceptanceTest() {\n    super(\"spark-bigquery\", \"2.2\");\n  }\n\n  // tests from superclass\n\n}\n"
  },
  {
    "path": "spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.13/src/test/java/com/google/cloud/spark/bigquery/acceptance/Scala213Spark35ReadSheakspeareDataprocServerlessAcceptanceTest.java",
    "content": "/*\n * Copyright 2024 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\npublic class Scala213Spark35ReadSheakspeareDataprocServerlessAcceptanceTest\n    extends ReadSheakspeareDataprocServerlessAcceptanceTestBase {\n\n  public Scala213Spark35ReadSheakspeareDataprocServerlessAcceptanceTest() {\n    super(\"spark-bigquery\", \"2.2\");\n  }\n\n  // tests from superclass\n\n}\n"
  },
  {
    "path": "spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.13/src/test_2.13/java/com/google/cloud/spark/bigquery/acceptance/Scala213BigNumericDataprocServerlessAcceptanceTest.java",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\npublic class Scala213BigNumericDataprocServerlessAcceptanceTest extends BigNumericDataprocServerlessAcceptanceTestBase {\n\n    public Scala213BigNumericDataprocServerlessAcceptanceTest() {\n        super(\"spark-bigquery\", \"2.0\");\n    }\n\n    // tests from superclass\n\n}\n"
  },
  {
    "path": "spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.13/src/test_2.13/java/com/google/cloud/spark/bigquery/acceptance/Scala213ReadSheakspeareDataprocServerlessAcceptanceTest.java",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\npublic class Scala213ReadSheakspeareDataprocServerlessAcceptanceTest extends ReadSheakspeareDataprocServerlessAcceptanceTestBase {\n\n    public Scala213ReadSheakspeareDataprocServerlessAcceptanceTest() {\n        super(\"spark-bigquery\", \"2.0\");\n    }\n\n    // tests from superclass\n\n}\n"
  },
  {
    "path": "spark-bigquery-dsv1/spark-bigquery-with-dependencies_2.13/src/test_2.13/java/com/google/cloud/spark/bigquery/acceptance/Scala213WriteStreamDataprocServerlessAcceptanceTest.java",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\npublic class Scala213WriteStreamDataprocServerlessAcceptanceTest extends WriteStreamDataprocServerlessAcceptanceTestBase {\n\n    public Scala213WriteStreamDataprocServerlessAcceptanceTest() {\n        super(\"spark-bigquery\", \"2.0\");\n    }\n\n    // tests from superclass\n\n}\n"
  },
  {
    "path": "spark-bigquery-dsv1/spark-bigquery_2.11/pom.xml",
    "content": "<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n  xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\">\n  <modelVersion>4.0.0</modelVersion>\n  <parent>\n    <groupId>com.google.cloud.spark</groupId>\n    <artifactId>spark-bigquery-dsv1-parent</artifactId>\n    <version>${revision}</version>\n    <relativePath>../spark-bigquery-dsv1-parent</relativePath>\n  </parent>\n\n  <artifactId>spark-bigquery_2.11</artifactId>\n  <name>BigQuery DataSource v1 for Scala 2.11</name>\n  <properties>\n    <scala.binary.version>2.11</scala.binary.version>\n    <spark.version>2.4.0</spark.version>\n  </properties>\n  <licenses>\n    <license>\n      <name>Apache License, Version 2.0</name>\n      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>\n      <distribution>repo</distribution>\n    </license>\n  </licenses>\n  <build>\n    <plugins>\n      <!-- make sure we don't have any _2.10 or _2.12 dependencies when building\n      for Scala 2.11 -->\n      <plugin>\n        <groupId>org.apache.maven.plugins</groupId>\n        <artifactId>maven-enforcer-plugin</artifactId>\n        <version>3.0.0-M3</version>\n        <executions>\n          <execution>\n            <id>enforce-versions</id>\n            <goals>\n              <goal>enforce</goal>\n            </goals>\n            <configuration>\n              <rules>\n                <bannedDependencies>\n                  <excludes combine.children=\"append\">\n                    <exclude>*:*_2.12</exclude>\n                    <exclude>*:*_2.10</exclude>\n                  </excludes>\n                </bannedDependencies>\n              </rules>\n            </configuration>\n          </execution>\n        </executions>\n      </plugin>\n    </plugins>\n  </build>\n</project>\n"
  },
  {
    "path": "spark-bigquery-dsv1/spark-bigquery_2.12/pom.xml",
    "content": "<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n  xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\">\n  <modelVersion>4.0.0</modelVersion>\n  <parent>\n    <groupId>com.google.cloud.spark</groupId>\n    <artifactId>spark-bigquery-dsv1-parent</artifactId>\n    <version>${revision}</version>\n    <relativePath>../spark-bigquery-dsv1-parent</relativePath>\n  </parent>\n\n  <artifactId>spark-bigquery_2.12</artifactId>\n  <name>BigQuery DataSource v1 for Scala 2.12</name>\n  <properties>\n    <scala.binary.version>2.12</scala.binary.version>\n    <scala.version>2.12.18</scala.version>\n    <spark.version>3.1.0</spark.version>\n  </properties>\n  <licenses>\n    <license>\n      <name>Apache License, Version 2.0</name>\n      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>\n      <distribution>repo</distribution>\n    </license>\n  </licenses>\n  <dependencies>\n    <dependency>\n      <groupId>${project.groupId}</groupId>\n      <artifactId>spark-bigquery-scala-212-support</artifactId>\n      <version>${project.version}</version>\n    </dependency>\n    <dependency>\n      <groupId>io.openlineage</groupId>\n      <artifactId>openlineage-spark_${scala.binary.version}</artifactId>\n    </dependency>\n  </dependencies>\n  <build>\n    <plugins>\n      <!-- make sure we don't have any _2.10 or _2.11 dependencies when building\n      for Scala 2.12 -->\n      <plugin>\n        <groupId>org.apache.maven.plugins</groupId>\n        <artifactId>maven-enforcer-plugin</artifactId>\n        <version>3.0.0-M3</version>\n        <executions>\n          <execution>\n            <id>enforce-versions</id>\n            <goals>\n              <goal>enforce</goal>\n            </goals>\n            <configuration>\n              <rules>\n                <bannedDependencies>\n                  <excludes combine.children=\"append\">\n                    <exclude>*:*_2.11</exclude>\n                    <exclude>*:*_2.10</exclude>\n                  </excludes>\n                </bannedDependencies>\n              </rules>\n            </configuration>\n          </execution>\n        </executions>\n      </plugin>\n    </plugins>\n  </build>\n</project>\n"
  },
  {
    "path": "spark-bigquery-dsv1/spark-bigquery_2.12/src/main/java/com/google/cloud/spark/bigquery/DefaultSource.java",
    "content": "/*\n * Copyright 2025 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery;\n\npublic class DefaultSource extends Scala212BigQueryRelationProvider {\n  // empty\n}\n"
  },
  {
    "path": "spark-bigquery-dsv1/spark-bigquery_2.12/src/main/java/com/google/cloud/spark/bigquery/Scala212BigQueryRelationProvider.java",
    "content": "/*\n * Copyright 2025 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery;\n\nimport java.util.function.Supplier;\nimport org.apache.spark.sql.Dataset;\nimport org.apache.spark.sql.Row;\nimport org.apache.spark.sql.SQLContext;\nimport org.apache.spark.sql.SaveMode;\nimport org.apache.spark.sql.execution.streaming.Sink;\nimport org.apache.spark.sql.sources.BaseRelation;\nimport org.apache.spark.sql.sources.CreatableRelationProvider;\nimport org.apache.spark.sql.sources.RelationProvider;\nimport org.apache.spark.sql.sources.SchemaRelationProvider;\nimport org.apache.spark.sql.sources.StreamSinkProvider;\nimport org.apache.spark.sql.streaming.OutputMode;\nimport org.apache.spark.sql.types.StructType;\nimport scala.collection.JavaConverters;\nimport scala.collection.Seq;\nimport scala.collection.immutable.Map;\n\npublic class Scala212BigQueryRelationProvider extends BigQueryRelationProviderBase\n    implements RelationProvider,\n        CreatableRelationProvider,\n        SchemaRelationProvider,\n        StreamSinkProvider {\n\n  public Scala212BigQueryRelationProvider() {\n    super();\n  }\n\n  public Scala212BigQueryRelationProvider(Supplier<GuiceInjectorCreator> getGuiceInjectorCreator) {\n    super(getGuiceInjectorCreator);\n  }\n\n  @Override\n  public BaseRelation createRelation(\n      SQLContext sqlContext, SaveMode mode, Map<String, String> parameters, Dataset<Row> data) {\n    return super.createRelation(sqlContext, mode, asJava(parameters), data);\n  }\n\n  @Override\n  public BaseRelation createRelation(SQLContext sqlContext, Map<String, String> parameters) {\n    return super.createRelation(sqlContext, asJava(parameters));\n  }\n\n  @Override\n  public BaseRelation createRelation(\n      SQLContext sqlContext, Map<String, String> parameters, StructType schema) {\n    return super.createRelation(sqlContext, asJava(parameters), schema);\n  }\n\n  @Override\n  public Sink createSink(\n      SQLContext sqlContext,\n      Map<String, String> parameters,\n      Seq<String> partitionColumns,\n      OutputMode outputMode) {\n    return super.createSink(sqlContext, asJava(parameters), asJava(partitionColumns), outputMode);\n  }\n\n  private java.util.List<String> asJava(Seq<String> seq) {\n    return JavaConverters.seqAsJavaListConverter(seq).asJava();\n  }\n\n  private java.util.Map<String, String> asJava(Map<String, String> map) {\n    return JavaConverters.mapAsJavaMapConverter(map).asJava();\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv1/spark-bigquery_2.12/src/main/resources/META-INF/services/org.apache.spark.sql.sources.DataSourceRegister",
    "content": "com.google.cloud.spark.bigquery.Scala212BigQueryRelationProvider\n"
  },
  {
    "path": "spark-bigquery-dsv1/spark-bigquery_2.12/src/test/java/com/google/cloud/spark/bigquery/Scala212BigQueryRelationProviderTest.java",
    "content": "/*\n * Copyright 2025 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery;\n\nimport java.util.function.Supplier;\n\npublic class Scala212BigQueryRelationProviderTest extends BigQueryRelationProviderTestBase {\n\n  @Override\n  BigQueryRelationProviderBase createProvider(Supplier<GuiceInjectorCreator> injectorCreator) {\n    return new Scala212BigQueryRelationProvider(injectorCreator);\n  }\n\n  @Override\n  BigQueryRelationProviderBase createProvider() {\n    return new Scala212BigQueryRelationProvider();\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv1/spark-bigquery_2.13/pom.xml",
    "content": "<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n  xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\">\n  <modelVersion>4.0.0</modelVersion>\n  <parent>\n    <groupId>com.google.cloud.spark</groupId>\n    <artifactId>spark-bigquery-dsv1-parent</artifactId>\n    <version>${revision}</version>\n    <relativePath>../spark-bigquery-dsv1-parent</relativePath>\n  </parent>\n\n  <artifactId>spark-bigquery_2.13</artifactId>\n  <name>BigQuery DataSource v1 for Scala 2.13</name>\n  <properties>\n    <scala.binary.version>2.13</scala.binary.version>\n    <scala.version>2.13.5</scala.version>\n    <spark.version>3.2.0</spark.version>\n  </properties>\n  <licenses>\n    <license>\n      <name>Apache License, Version 2.0</name>\n      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>\n      <distribution>repo</distribution>\n    </license>\n  </licenses>\n  <dependencies>\n    <dependency>\n      <groupId>io.openlineage</groupId>\n      <artifactId>openlineage-spark_${scala.binary.version}</artifactId>\n    </dependency>\n  </dependencies>\n  <build>\n    <plugins>\n      <!-- make sure we don't have any _2.10 or _2.11 dependencies when building\n      for Scala 2.13 -->\n      <plugin>\n        <groupId>org.apache.maven.plugins</groupId>\n        <artifactId>maven-enforcer-plugin</artifactId>\n        <executions>\n          <execution>\n            <id>enforce-versions</id>\n            <goals>\n              <goal>enforce</goal>\n            </goals>\n            <configuration>\n              <rules>\n                <bannedDependencies>\n                  <excludes combine.children=\"append\">\n                    <exclude>*:*_2.12</exclude>\n                    <exclude>*:*_2.11</exclude>\n                    <exclude>*:*_2.10</exclude>\n                  </excludes>\n                </bannedDependencies>\n              </rules>\n            </configuration>\n          </execution>\n        </executions>\n      </plugin>\n    </plugins>\n  </build>\n</project>\n"
  },
  {
    "path": "spark-bigquery-dsv1/spark-bigquery_2.13/src/main/java/com/google/cloud/spark/bigquery/DefaultSource.java",
    "content": "/*\n * Copyright 2025 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery;\n\npublic class DefaultSource extends Scala213BigQueryRelationProvider {\n  // empty\n}\n"
  },
  {
    "path": "spark-bigquery-dsv1/spark-bigquery_2.13/src/main/java/com/google/cloud/spark/bigquery/Scala213BigQueryRelationProvider.java",
    "content": "/*\n * Copyright 2025 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery;\n\nimport java.util.function.Supplier;\nimport org.apache.spark.sql.Dataset;\nimport org.apache.spark.sql.Row;\nimport org.apache.spark.sql.SQLContext;\nimport org.apache.spark.sql.SaveMode;\nimport org.apache.spark.sql.execution.streaming.Sink;\nimport org.apache.spark.sql.sources.BaseRelation;\nimport org.apache.spark.sql.sources.CreatableRelationProvider;\nimport org.apache.spark.sql.sources.RelationProvider;\nimport org.apache.spark.sql.sources.SchemaRelationProvider;\nimport org.apache.spark.sql.sources.StreamSinkProvider;\nimport org.apache.spark.sql.streaming.OutputMode;\nimport org.apache.spark.sql.types.StructType;\nimport scala.collection.immutable.Map;\nimport scala.collection.immutable.Seq;\nimport scala.jdk.javaapi.CollectionConverters;\n\npublic class Scala213BigQueryRelationProvider extends BigQueryRelationProviderBase\n    implements RelationProvider,\n        CreatableRelationProvider,\n        SchemaRelationProvider,\n        StreamSinkProvider {\n\n  public Scala213BigQueryRelationProvider() {\n    super();\n  }\n\n  public Scala213BigQueryRelationProvider(Supplier<GuiceInjectorCreator> getGuiceInjectorCreator) {\n    super(getGuiceInjectorCreator);\n  }\n\n  @Override\n  public BaseRelation createRelation(\n      SQLContext sqlContext, SaveMode mode, Map<String, String> parameters, Dataset<Row> data) {\n    return super.createRelation(sqlContext, mode, CollectionConverters.asJava(parameters), data);\n  }\n\n  @Override\n  public BaseRelation createRelation(SQLContext sqlContext, Map<String, String> parameters) {\n    return super.createRelation(sqlContext, CollectionConverters.asJava(parameters));\n  }\n\n  @Override\n  public BaseRelation createRelation(\n      SQLContext sqlContext, Map<String, String> parameters, StructType schema) {\n    return super.createRelation(sqlContext, CollectionConverters.asJava(parameters), schema);\n  }\n\n  @Override\n  public Sink createSink(\n      SQLContext sqlContext,\n      Map<String, String> parameters,\n      Seq<String> partitionColumns,\n      OutputMode outputMode) {\n    return super.createSink(\n        sqlContext,\n        CollectionConverters.asJava(parameters),\n        CollectionConverters.asJava(partitionColumns),\n        outputMode);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv1/spark-bigquery_2.13/src/main/resources/META-INF/services/org.apache.spark.sql.sources.DataSourceRegister",
    "content": "com.google.cloud.spark.bigquery.Scala213BigQueryRelationProvider\n"
  },
  {
    "path": "spark-bigquery-dsv1/spark-bigquery_2.13/src/test/java/com/google/cloud/spark/bigquery/Scala213BigQueryRelationProviderTest.java",
    "content": "/*\n * Copyright 2025 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery;\n\nimport java.util.function.Supplier;\n\npublic class Scala213BigQueryRelationProviderTest extends BigQueryRelationProviderTestBase {\n\n  @Override\n  BigQueryRelationProviderBase createProvider(Supplier<GuiceInjectorCreator> injectorCreator) {\n    return new Scala213BigQueryRelationProvider(injectorCreator);\n  }\n\n  @Override\n  BigQueryRelationProviderBase createProvider() {\n    return new Scala213BigQueryRelationProvider();\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv1/src/build/javadoc/README.md",
    "content": "In order to comply with Maven-Central requirements\n"
  },
  {
    "path": "spark-bigquery-dsv1/src/build/resources/spark-bigquery-connector.properties",
    "content": "scala.binary.version=${scala.binary.version}\nconnector.version=${project.version}\n"
  },
  {
    "path": "spark-bigquery-dsv1/src/test/java/com/google/cloud/spark/bigquery/SchemaConvertersTest.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery;\n\nimport static com.google.common.truth.Truth.assertThat; // Google Truth import\n\nimport com.google.cloud.bigquery.Field;\nimport com.google.cloud.bigquery.LegacySQLTypeName;\nimport com.google.cloud.bigquery.Schema;\nimport org.apache.spark.sql.types.*;\nimport org.junit.Test;\n\npublic class SchemaConvertersTest {\n\n  private final SchemaConverters schemaConverters =\n      SchemaConverters.from(SchemaConvertersConfiguration.createDefault());\n\n  @Test\n  public void emptySchemaConversion() {\n    Schema bqSchema = Schema.of();\n    StructType expected = new StructType(new StructField[] {});\n    StructType result = schemaConverters.toSpark(bqSchema);\n    assertThat(result).isEqualTo(expected);\n  }\n\n  @Test\n  public void singleFieldSchemaConversion() {\n    Schema bqSchema = Schema.of(Field.of(\"foo\", LegacySQLTypeName.STRING));\n    StructType expected =\n        new StructType(\n            new StructField[] {DataTypes.createStructField(\"foo\", DataTypes.StringType, true)});\n    StructType result = schemaConverters.toSpark(bqSchema);\n    assertThat(result).isEqualTo(expected);\n  }\n\n  @Test\n  public void singleFieldSchemaConversionForJson() {\n    Schema bqSchema = Schema.of(Field.of(\"foo\", LegacySQLTypeName.JSON));\n    Metadata metadata = new MetadataBuilder().putString(\"sqlType\", \"JSON\").build();\n    StructType expected =\n        new StructType(\n            new StructField[] {\n              DataTypes.createStructField(\"foo\", DataTypes.StringType, true, metadata)\n            });\n    StructType result = schemaConverters.toSpark(bqSchema);\n    assertThat(result).isEqualTo(expected);\n  }\n\n  @Test\n  public void fullFieldSchemaConversion() {\n    Schema bqSchema =\n        Schema.of(\n            Field.of(\"foo\", LegacySQLTypeName.STRING),\n            Field.of(\"bar\", LegacySQLTypeName.INTEGER),\n            Field.newBuilder(\"required\", LegacySQLTypeName.BOOLEAN)\n                .setMode(Field.Mode.REQUIRED)\n                .build(),\n            Field.newBuilder(\"binary_arr\", LegacySQLTypeName.BYTES)\n                .setMode(Field.Mode.REPEATED)\n                .build(),\n            Field.of(\"float\", LegacySQLTypeName.FLOAT),\n            Field.newBuilder(\"numeric\", LegacySQLTypeName.NUMERIC)\n                .setPrecision(38L)\n                .setScale(9L)\n                .build(),\n            Field.of(\"date\", LegacySQLTypeName.DATE),\n            Field.of(\n                \"times\",\n                LegacySQLTypeName.RECORD,\n                Field.of(\"time\", LegacySQLTypeName.TIME),\n                Field.of(\"timestamp\", LegacySQLTypeName.TIMESTAMP),\n                Field.of(\"datetime\", LegacySQLTypeName.DATETIME)));\n\n    StructType expected =\n        new StructType(\n            new StructField[] {\n              DataTypes.createStructField(\"foo\", DataTypes.StringType, true),\n              DataTypes.createStructField(\"bar\", DataTypes.LongType, true),\n              DataTypes.createStructField(\"required\", DataTypes.BooleanType, false),\n              DataTypes.createStructField(\n                  \"binary_arr\", DataTypes.createArrayType(DataTypes.BinaryType, true), true),\n              DataTypes.createStructField(\"float\", DataTypes.DoubleType, true),\n              DataTypes.createStructField(\"numeric\", DataTypes.createDecimalType(38, 9), true),\n              DataTypes.createStructField(\"date\", DataTypes.DateType, true),\n              DataTypes.createStructField(\n                  \"times\",\n                  new StructType(\n                      new StructField[] {\n                        DataTypes.createStructField(\"time\", DataTypes.LongType, true),\n                        DataTypes.createStructField(\"timestamp\", DataTypes.TimestampType, true),\n                        DataTypes.createStructField(\"datetime\", DataTypes.StringType, true)\n                      }),\n                  true)\n            });\n\n    StructType result = schemaConverters.toSpark(bqSchema);\n    assertThat(result).isEqualTo(expected);\n  }\n\n  @Test\n  public void fieldHasDescription() {\n    Schema bqSchema =\n        Schema.of(\n            Field.newBuilder(\"name\", LegacySQLTypeName.STRING)\n                .setDescription(\"foo\")\n                .setMode(Field.Mode.NULLABLE)\n                .build());\n    Metadata expectedMetadata =\n        new MetadataBuilder().putString(\"description\", \"foo\").putString(\"comment\", \"foo\").build();\n    StructType expected =\n        new StructType(\n            new StructField[] {\n              DataTypes.createStructField(\"name\", DataTypes.StringType, true, expectedMetadata)\n            });\n    StructType result = schemaConverters.toSpark(bqSchema);\n    assertThat(result).isEqualTo(expected);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv1/src/test/java/com/google/cloud/spark/bigquery/integration/DataSourceV1DirectWriteIntegrationTest.java",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\nimport com.google.cloud.spark.bigquery.SparkBigQueryConfig;\n\npublic class DataSourceV1DirectWriteIntegrationTest extends DataSourceV1WriteIntegrationTestBase {\n\n  public DataSourceV1DirectWriteIntegrationTest() {\n    super(SparkBigQueryConfig.WriteMethod.DIRECT);\n  }\n\n  // additional tests are from the super-class\n\n}\n"
  },
  {
    "path": "spark-bigquery-dsv1/src/test/java/com/google/cloud/spark/bigquery/integration/DataSourceV1IndirectWriteIntegrationTest.java",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\nimport com.google.cloud.spark.bigquery.SparkBigQueryConfig;\nimport org.junit.Before;\n\npublic class DataSourceV1IndirectWriteIntegrationTest extends DataSourceV1WriteIntegrationTestBase {\n\n  public DataSourceV1IndirectWriteIntegrationTest() {\n    super(SparkBigQueryConfig.WriteMethod.INDIRECT);\n  }\n\n  @Before\n  public void setParquetLoadBehaviour() {\n    // TODO: make this the default value\n    spark.conf().set(\"enableListInference\", \"true\");\n  }\n\n  // additional tests are from the super-class\n}\n"
  },
  {
    "path": "spark-bigquery-dsv1/src/test/java/com/google/cloud/spark/bigquery/integration/DataSourceV1OpenLineageIntegrationTest.java",
    "content": "/*\n * Copyright 2024 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\npublic class DataSourceV1OpenLineageIntegrationTest extends OpenLineageIntegrationTestBase {}\n"
  },
  {
    "path": "spark-bigquery-dsv1/src/test/java/com/google/cloud/spark/bigquery/integration/DataSourceV1ReadByFormatIntegrationTest.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\nimport static com.google.common.truth.Truth.assertThat;\n\nimport com.google.cloud.spark.bigquery.direct.DirectBigQueryRelation;\nimport java.util.Arrays;\nimport java.util.Collection;\nimport org.junit.Test;\nimport org.junit.runner.RunWith;\nimport org.junit.runners.Parameterized;\n\n@RunWith(Parameterized.class)\npublic class DataSourceV1ReadByFormatIntegrationTest extends ReadByFormatIntegrationTestBase {\n\n  @Parameterized.Parameters(name = \"{0}\")\n  public static Collection<Object[]> formats() {\n    return Arrays.asList(new Object[][] {{\"AVRO\"}, {\"ARROW\"}});\n  }\n\n  public DataSourceV1ReadByFormatIntegrationTest(String format) {\n    super(format);\n  }\n\n  @Test\n  public void testOptimizedCountStarWithFilter() {\n    DirectBigQueryRelation.emptyRowRDDsCreated = 0;\n    long oldMethodCount =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"table\", \"bigquery-public-data.samples.shakespeare\")\n            .option(\"optimizedEmptyProjection\", \"false\")\n            .option(\"readDataFormat\", dataFormat)\n            .load()\n            .select(\"corpus_date\")\n            .where(\"corpus_date > 0\")\n            .count();\n\n    assertThat(DirectBigQueryRelation.emptyRowRDDsCreated).isEqualTo(0);\n\n    long optimizedCount =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"table\", \"bigquery-public-data.samples.shakespeare\")\n            .option(\"readDataFormat\", dataFormat)\n            .load()\n            .where(\"corpus_date > 0\")\n            .count();\n\n    assertThat(optimizedCount).isEqualTo(oldMethodCount);\n    assertThat(DirectBigQueryRelation.emptyRowRDDsCreated).isEqualTo(1);\n  }\n\n  @Test\n  public void testOptimizedCountStar() {\n    DirectBigQueryRelation.emptyRowRDDsCreated = 0;\n    long oldMethodCount =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"table\", \"bigquery-public-data.samples.shakespeare\")\n            .option(\"optimizedEmptyProjection\", \"false\")\n            .option(\"readDataFormat\", dataFormat)\n            .load()\n            .select(\"corpus_date\")\n            .count();\n\n    assertThat(DirectBigQueryRelation.emptyRowRDDsCreated).isEqualTo(0);\n\n    long optimizedCount =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"table\", \"bigquery-public-data.samples.shakespeare\")\n            .option(\"readDataFormat\", dataFormat)\n            .load()\n            .count();\n\n    assertThat(optimizedCount).isEqualTo(oldMethodCount);\n    assertThat(DirectBigQueryRelation.emptyRowRDDsCreated).isEqualTo(1);\n  }\n\n  // additional tests are from the super-class\n\n}\n"
  },
  {
    "path": "spark-bigquery-dsv1/src/test/java/com/google/cloud/spark/bigquery/integration/DataSourceV1ReadFromQueryIntegrationTest.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\npublic class DataSourceV1ReadFromQueryIntegrationTest extends ReadFromQueryIntegrationTestBase {\n\n  // tests are from the super-class\n\n}\n"
  },
  {
    "path": "spark-bigquery-dsv1/src/test/java/com/google/cloud/spark/bigquery/integration/DataSourceV1ReadIntegrationTest.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\nimport static com.google.common.truth.Truth.assertThat;\n\nimport com.google.cloud.bigquery.connector.common.integration.DefaultCredentialsDelegateAccessTokenProvider;\nimport org.apache.spark.sql.Column;\nimport org.apache.spark.sql.Dataset;\nimport org.apache.spark.sql.Row;\nimport org.junit.Test;\n\npublic class DataSourceV1ReadIntegrationTest extends ReadIntegrationTestBase {\n\n  // @TODO Move to support class once DSv2 supports all types\n  @Test\n  public void testReadDataTypes() {\n    Dataset<Row> allTypesTable = readAllTypesTable();\n    Row expectedValues =\n        spark\n            .range(1)\n            .select(TestConstants.ALL_TYPES_TABLE_COLS.stream().toArray(Column[]::new))\n            .head();\n    Row row = allTypesTable.head();\n\n    IntegrationTestUtils.compareRows(row, expectedValues);\n  }\n\n  @Test\n  public void testCustomAccessTokenProvider() throws Exception {\n    Dataset<Row> df =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\n                \"gcpAccessTokenProvider\",\n                DefaultCredentialsDelegateAccessTokenProvider.class.getCanonicalName())\n            .load(TestConstants.SHAKESPEARE_TABLE);\n    assertThat(df.count()).isEqualTo(TestConstants.SHAKESPEARE_TABLE_NUM_ROWS);\n  }\n\n  // additional tests are from the super-class\n}\n"
  },
  {
    "path": "spark-bigquery-dsv1/src/test/java/com/google/cloud/spark/bigquery/integration/DataSourceV1WriteIntegrationTestBase.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\nimport static com.google.common.truth.Truth.assertThat;\nimport static org.hamcrest.CoreMatchers.equalTo;\nimport static org.junit.Assert.assertThrows;\nimport static org.junit.Assume.assumeThat;\n\nimport com.google.cloud.spark.bigquery.SparkBigQueryConfig;\nimport com.google.common.util.concurrent.Uninterruptibles;\nimport java.util.List;\nimport java.util.concurrent.TimeUnit;\nimport org.apache.spark.sql.Dataset;\nimport org.apache.spark.sql.Row;\nimport org.apache.spark.sql.SaveMode;\nimport org.apache.spark.sql.catalyst.encoders.ExpressionEncoder;\nimport org.apache.spark.sql.catalyst.encoders.RowEncoder;\nimport org.apache.spark.sql.execution.streaming.MemoryStream;\nimport org.apache.spark.sql.streaming.OutputMode;\nimport org.apache.spark.sql.streaming.StreamingQuery;\nimport org.apache.spark.sql.types.StructType;\nimport org.junit.Test;\nimport scala.collection.JavaConverters;\nimport scala.collection.Seq;\n\npublic class DataSourceV1WriteIntegrationTestBase extends WriteIntegrationTestBase {\n\n  public DataSourceV1WriteIntegrationTestBase(SparkBigQueryConfig.WriteMethod writeMethod) {\n    super(writeMethod);\n  }\n\n  // DSv2 does not support BigNumeric yet\n  @Test\n  public void testWriteAllDataTypes() {\n\n    // temporarily skipping for v1, as \"AVRO\" write format is throwing error\n    // while writing to GCS\n    Dataset<Row> allTypesTable = readAllTypesTable();\n    writeToBigQuery(allTypesTable, SaveMode.Overwrite, \"avro\");\n\n    Dataset<Row> df =\n        spark\n            .read()\n            .format(\"bigquery\")\n            .option(\"dataset\", testDataset.toString())\n            .option(\"table\", testTable)\n            .option(\"readDataFormat\", \"arrow\")\n            .load()\n            .cache();\n\n    IntegrationTestUtils.compareRows(df.head(), allTypesTable.head());\n\n    // read from cache\n    IntegrationTestUtils.compareRows(df.head(), allTypesTable.head());\n    IntegrationTestUtils.compareBigNumericDataSetSchema(df.schema(), allTypesTable.schema());\n  }\n\n  // v2 does not support ORC\n  @Test\n  public void testWriteToBigQuery_OrcFormat() throws InterruptedException {\n    assumeThat(writeMethod, equalTo(SparkBigQueryConfig.WriteMethod.INDIRECT));\n    // required by ORC\n    spark.conf().set(\"spark.sql.orc.impl\", \"native\");\n    writeToBigQuery(initialData(), SaveMode.ErrorIfExists, \"orc\");\n    assertThat(testTableNumberOfRows()).isEqualTo(2);\n    assertThat(initialDataValuesExist()).isTrue();\n  }\n\n  // v2 does not support parquet\n  @Test\n  public void testWriteToBigQuery_ParquetFormat() throws InterruptedException {\n    assumeThat(writeMethod, equalTo(SparkBigQueryConfig.WriteMethod.INDIRECT));\n    writeToBigQuery(initialData(), SaveMode.ErrorIfExists, \"parquet\");\n    assertThat(testTableNumberOfRows()).isEqualTo(2);\n    assertThat(initialDataValuesExist()).isTrue();\n  }\n\n  @Test\n  public void testWriteToBigQuery_UnsupportedFormat() {\n    assumeThat(writeMethod, equalTo(SparkBigQueryConfig.WriteMethod.INDIRECT));\n    assertThrows(\n        Exception.class,\n        () -> {\n          writeToBigQuery(initialData(), SaveMode.ErrorIfExists, \"something else\");\n        });\n  }\n\n  @Test(timeout = 120_000)\n  public void testStreamingToBigQueryWriteAppend() throws Exception {\n    assumeThat(writeMethod, equalTo(SparkBigQueryConfig.WriteMethod.INDIRECT));\n    StructType schema = initialData().schema();\n    ExpressionEncoder<Row> expressionEncoder = RowEncoder.apply(schema);\n    MemoryStream<Row> stream = MemoryStream.apply(expressionEncoder, spark.sqlContext());\n    long lastBatchId = 0;\n    Dataset<Row> streamingDF = stream.toDF();\n    String cpLoc = String.format(\"/tmp/%s-%d\", fullTableName(), System.nanoTime());\n    // Start write stream\n    StreamingQuery writeStream =\n        streamingDF\n            .writeStream()\n            .format(\"bigquery\")\n            .outputMode(OutputMode.Append())\n            .option(\"checkpointLocation\", cpLoc)\n            .option(\"table\", fullTableName())\n            .option(\"temporaryGcsBucket\", TestConstants.TEMPORARY_GCS_BUCKET)\n            .start();\n\n    // Write to stream\n    stream.addData(toSeq(initialData().collectAsList()));\n    while (writeStream.lastProgress().batchId() <= lastBatchId) {\n      Uninterruptibles.sleepUninterruptibly(1, TimeUnit.SECONDS);\n    }\n    lastBatchId = writeStream.lastProgress().batchId();\n    assertThat(testTableNumberOfRows()).isEqualTo(2);\n    assertThat(initialDataValuesExist()).isTrue();\n    // Write to stream\n    stream.addData(toSeq(additonalData().collectAsList()));\n    while (writeStream.lastProgress().batchId() <= lastBatchId) {\n      Uninterruptibles.sleepUninterruptibly(1, TimeUnit.SECONDS);\n    }\n    writeStream.stop();\n    assertThat(testTableNumberOfRows()).isEqualTo(4);\n    assertThat(additionalDataValuesExist()).isTrue();\n  }\n\n  private static <T> Seq<T> toSeq(List<T> list) {\n    return JavaConverters.asScalaIteratorConverter(list.iterator()).asScala().toSeq();\n  }\n\n  // additional tests are from the super-class\n\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/pom.xml",
    "content": "<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n  xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n  xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\">\n  <modelVersion>4.0.0</modelVersion>\n  <parent>\n    <groupId>com.google.cloud.spark</groupId>\n    <artifactId>spark-bigquery-parent</artifactId>\n    <version>${revision}</version>\n    <relativePath>../spark-bigquery-parent</relativePath>\n  </parent>\n\n  <artifactId>spark-bigquery-dsv2</artifactId>\n  <name>BigQuery DataSource v2 implementation</name>\n  <packaging>pom</packaging>\n  <modules>\n    <module>spark-bigquery-dsv2-common</module>\n    <module>spark-bigquery-dsv2-parent</module>\n    <module>spark-3.1-bigquery-lib</module>\n    <module>spark-3.1-bigquery</module>\n    <module>spark-bigquery-metrics</module>\n    <module>spark-3.2-bigquery-lib</module>\n    <module>spark-3.2-bigquery</module>\n    <module>spark-3.3-bigquery-lib</module>\n    <module>spark-3.3-bigquery</module>\n    <module>spark-3.4-bigquery-lib</module>\n    <module>spark-3.4-bigquery</module>\n    <module>spark-3.5-bigquery-lib</module>\n    <module>spark-3.5-bigquery</module>\n    <module>spark-4.0-bigquery-lib</module>\n    <module>spark-4.0-bigquery</module>\n    <module>spark-4.1-bigquery-lib</module>\n    <module>spark-4.1-bigquery</module>\n  </modules>\n</project>\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-2.4-bigquery/pom.xml",
    "content": "<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n         xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n         xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\">\n    <modelVersion>4.0.0</modelVersion>\n    <parent>\n        <groupId>com.google.cloud.spark</groupId>\n        <artifactId>spark-bigquery-dsv2-parent</artifactId>\n        <version>${revision}</version>\n        <relativePath>../spark-bigquery-dsv2-parent</relativePath>\n    </parent>\n\n    <artifactId>spark-2.4-bigquery</artifactId>\n    <version>${revision}</version>\n    <name>BigQuery DataSource v2 for Spark 2.4</name>\n    <properties>\n        <spark.version>2.4.0</spark.version>\n        <shade.skip>false</shade.skip>\n    </properties>\n    <licenses>\n        <license>\n            <name>Apache License, Version 2.0</name>\n            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>\n            <distribution>repo</distribution>\n        </license>\n    </licenses>\n    <dependencies>\n        <dependency>\n            <groupId>${project.groupId}</groupId>\n            <artifactId>spark-bigquery-tests</artifactId>\n            <version>${project.parent.version}</version>\n            <scope>test</scope>\n        </dependency>\n    </dependencies>\n</project>"
  },
  {
    "path": "spark-bigquery-dsv2/spark-2.4-bigquery/src/build/resources/spark-bigquery-connector.properties",
    "content": "connector.version=${project.version}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-2.4-bigquery/src/main/java/com/google/cloud/spark/bigquery/v2/BigQueryDataSourceReader.java",
    "content": "/*\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.v2;\n\nimport com.google.cloud.spark.bigquery.SupportsQueryPushdown;\nimport com.google.cloud.spark.bigquery.direct.BigQueryRDDFactory;\nimport com.google.cloud.spark.bigquery.v2.context.BigQueryDataSourceReaderContext;\nimport java.util.List;\nimport java.util.Optional;\nimport java.util.stream.Collectors;\nimport org.apache.spark.sql.catalyst.InternalRow;\nimport org.apache.spark.sql.sources.Filter;\nimport org.apache.spark.sql.sources.v2.reader.*;\nimport org.apache.spark.sql.types.StructType;\nimport org.apache.spark.sql.vectorized.ColumnarBatch;\n\npublic class BigQueryDataSourceReader\n    implements DataSourceReader,\n        SupportsPushDownRequiredColumns,\n        SupportsPushDownFilters,\n        SupportsReportStatistics,\n        SupportsScanColumnarBatch,\n        SupportsQueryPushdown {\n\n  private BigQueryDataSourceReaderContext context;\n\n  public BigQueryDataSourceReader(BigQueryDataSourceReaderContext context) {\n    this.context = context;\n  }\n\n  @Override\n  public Filter[] pushFilters(Filter[] filters) {\n    return context.pushFilters(filters);\n  }\n\n  @Override\n  public Filter[] pushedFilters() {\n    return context.pushedFilters();\n  }\n\n  @Override\n  public void pruneColumns(StructType requiredSchema) {\n    context.pruneColumns(requiredSchema);\n  }\n\n  @Override\n  public Statistics estimateStatistics() {\n    return new Spark24Statistics(context.estimateStatistics());\n  }\n\n  @Override\n  public List<InputPartition<ColumnarBatch>> planBatchInputPartitions() {\n    return context\n        .planBatchInputPartitionContexts()\n        .map(ctx -> new Spark24InputPartition<ColumnarBatch>(ctx))\n        .collect(Collectors.toList());\n  }\n\n  @Override\n  public StructType readSchema() {\n    return context.readSchema();\n  }\n\n  @Override\n  public List<InputPartition<InternalRow>> planInputPartitions() {\n    return context\n        .planInputPartitionContexts()\n        .map(ctx -> new Spark24InputPartition<InternalRow>(ctx))\n        .collect(Collectors.toList());\n  }\n\n  @Override\n  public boolean enableBatchRead() {\n    return context.enableBatchRead();\n  }\n\n  @Override\n  public BigQueryRDDFactory getBigQueryRDDFactory() {\n    return context.getBigQueryRddFactory();\n  }\n\n  @Override\n  public Optional<String> getPushdownFilters() {\n    // Return Optional.empty() here since we can get the filters from the Filter node in the\n    // LogicalPlan in Spark 2.4\n    return Optional.empty();\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-2.4-bigquery/src/main/java/com/google/cloud/spark/bigquery/v2/BigQueryDataSourceV2.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.v2;\n\nimport com.google.cloud.spark.bigquery.InjectorFactory;\nimport com.google.cloud.spark.bigquery.v2.context.BigQueryDataSourceReaderContext;\nimport com.google.cloud.spark.bigquery.v2.context.BigQueryDataSourceReaderModule;\nimport com.google.cloud.spark.bigquery.write.context.DataSourceWriterContext;\nimport com.google.inject.Injector;\nimport java.util.Optional;\nimport org.apache.spark.sql.SaveMode;\nimport org.apache.spark.sql.sources.v2.DataSourceOptions;\nimport org.apache.spark.sql.sources.v2.DataSourceV2;\nimport org.apache.spark.sql.sources.v2.ReadSupport;\nimport org.apache.spark.sql.sources.v2.WriteSupport;\nimport org.apache.spark.sql.sources.v2.reader.DataSourceReader;\nimport org.apache.spark.sql.sources.v2.writer.DataSourceWriter;\nimport org.apache.spark.sql.types.StructType;\n\n/**\n * A DataSourceV2 implementation, providing efficient reader and writer for the Google Cloud\n * Platform BigQuery.\n */\npublic class BigQueryDataSourceV2 extends BaseBigQuerySource\n    implements DataSourceV2, ReadSupport, WriteSupport {\n\n  @Override\n  public DataSourceReader createReader(StructType schema, DataSourceOptions options) {\n    Injector injector =\n        InjectorFactory.createInjector(schema, options.asMap(), /* tableIsMandatory */ true)\n            .createChildInjector(new BigQueryDataSourceReaderModule());\n    BigQueryDataSourceReader reader =\n        new BigQueryDataSourceReader(injector.getInstance(BigQueryDataSourceReaderContext.class));\n    return reader;\n  }\n\n  @Override\n  public DataSourceReader createReader(DataSourceOptions options) {\n    return createReader(null, options);\n  }\n\n  /**\n   * Returning a DataSourceWriter for the specified parameters. In case the table already exist and\n   * the SaveMode is \"Ignore\", an Optional.empty() is returned.\n   */\n  @Override\n  public Optional<DataSourceWriter> createWriter(\n      String writeUUID, StructType schema, SaveMode mode, DataSourceOptions options) {\n    Injector injector =\n        InjectorFactory.createInjector(schema, options.asMap(), /* tableIsMandatory */ true);\n    Optional<DataSourceWriterContext> dataSourceWriterContext =\n        DataSourceWriterContext.create(injector, writeUUID, schema, mode, options.asMap());\n    return dataSourceWriterContext.map(ctx -> new BigQueryDataSourceWriter(ctx));\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-2.4-bigquery/src/main/java/com/google/cloud/spark/bigquery/v2/BigQueryDataSourceWriter.java",
    "content": "/*\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.v2;\n\nimport com.google.cloud.spark.bigquery.write.context.DataSourceWriterContext;\nimport com.google.cloud.spark.bigquery.write.context.WriterCommitMessageContext;\nimport java.util.stream.Stream;\nimport org.apache.spark.sql.catalyst.InternalRow;\nimport org.apache.spark.sql.sources.v2.writer.DataSourceWriter;\nimport org.apache.spark.sql.sources.v2.writer.DataWriterFactory;\nimport org.apache.spark.sql.sources.v2.writer.WriterCommitMessage;\n\npublic class BigQueryDataSourceWriter implements DataSourceWriter {\n\n  private DataSourceWriterContext ctx;\n\n  public BigQueryDataSourceWriter(DataSourceWriterContext ctx) {\n    this.ctx = ctx;\n  }\n\n  @Override\n  public DataWriterFactory<InternalRow> createWriterFactory() {\n    return new Spark24DataWriterFactory(ctx.createWriterContextFactory());\n  }\n\n  @Override\n  public boolean useCommitCoordinator() {\n    return ctx.useCommitCoordinator();\n  }\n\n  @Override\n  public void onDataWriterCommit(WriterCommitMessage message) {\n    ctx.onDataWriterCommit(toWriterCommitMessageContext(message));\n  }\n\n  @Override\n  public void commit(WriterCommitMessage[] messages) {\n    ctx.commit(toWriterCommitMessageContextArray(messages));\n  }\n\n  @Override\n  public void abort(WriterCommitMessage[] messages) {\n    ctx.abort(toWriterCommitMessageContextArray(messages));\n  }\n\n  private WriterCommitMessageContext toWriterCommitMessageContext(WriterCommitMessage message) {\n    return ((Spark24WriterCommitMessage) message).getContext();\n  }\n\n  private WriterCommitMessageContext[] toWriterCommitMessageContextArray(\n      WriterCommitMessage[] messages) {\n    return Stream.of(messages)\n        .map(this::toWriterCommitMessageContext)\n        .toArray(WriterCommitMessageContext[]::new);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-2.4-bigquery/src/main/java/com/google/cloud/spark/bigquery/v2/Spark24DataWriter.java",
    "content": "/*\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.v2;\n\nimport com.google.cloud.spark.bigquery.write.context.DataWriterContext;\nimport java.io.IOException;\nimport org.apache.spark.sql.catalyst.InternalRow;\nimport org.apache.spark.sql.sources.v2.writer.DataWriter;\nimport org.apache.spark.sql.sources.v2.writer.WriterCommitMessage;\n\npublic class Spark24DataWriter implements DataWriter<InternalRow> {\n\n  private DataWriterContext<InternalRow> ctx;\n\n  public Spark24DataWriter(DataWriterContext<InternalRow> ctx) {\n    this.ctx = ctx;\n  }\n\n  @Override\n  public void write(InternalRow record) throws IOException {\n    ctx.write(record);\n  }\n\n  @Override\n  public WriterCommitMessage commit() throws IOException {\n    return new Spark24WriterCommitMessage(ctx.commit());\n  }\n\n  @Override\n  public void abort() throws IOException {\n    ctx.abort();\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-2.4-bigquery/src/main/java/com/google/cloud/spark/bigquery/v2/Spark24DataWriterFactory.java",
    "content": "/*\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.v2;\n\nimport com.google.cloud.spark.bigquery.write.context.DataWriterContextFactory;\nimport org.apache.spark.sql.catalyst.InternalRow;\nimport org.apache.spark.sql.sources.v2.writer.DataWriter;\nimport org.apache.spark.sql.sources.v2.writer.DataWriterFactory;\n\npublic class Spark24DataWriterFactory implements DataWriterFactory<InternalRow> {\n\n  private DataWriterContextFactory ctxFactory;\n\n  public Spark24DataWriterFactory(DataWriterContextFactory ctxFactory) {\n    this.ctxFactory = ctxFactory;\n  }\n\n  @Override\n  public DataWriter<InternalRow> createDataWriter(int partitionId, long taskId, long epochId) {\n    return new Spark24DataWriter(ctxFactory.createDataWriterContext(partitionId, taskId, epochId));\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-2.4-bigquery/src/main/java/com/google/cloud/spark/bigquery/v2/Spark24InputPartition.java",
    "content": "/*\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.v2;\n\nimport com.google.cloud.spark.bigquery.v2.context.InputPartitionContext;\nimport org.apache.spark.sql.sources.v2.reader.InputPartition;\nimport org.apache.spark.sql.sources.v2.reader.InputPartitionReader;\n\nclass Spark24InputPartition<T> implements InputPartition<T> {\n\n  private InputPartitionContext<T> context;\n\n  public Spark24InputPartition(InputPartitionContext<T> context) {\n    this.context = context;\n  }\n\n  @Override\n  public InputPartitionReader<T> createPartitionReader() {\n    return new Spark24InputPartitionReader(context.createPartitionReaderContext());\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-2.4-bigquery/src/main/java/com/google/cloud/spark/bigquery/v2/Spark24InputPartitionReader.java",
    "content": "/*\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.v2;\n\nimport com.google.cloud.spark.bigquery.v2.context.InputPartitionReaderContext;\nimport java.io.IOException;\nimport org.apache.spark.sql.sources.v2.reader.InputPartitionReader;\n\nclass Spark24InputPartitionReader<T> implements InputPartitionReader<T> {\n\n  private InputPartitionReaderContext<T> context;\n\n  public Spark24InputPartitionReader(InputPartitionReaderContext<T> context) {\n    this.context = context;\n  }\n\n  @Override\n  public boolean next() throws IOException {\n    return context.next();\n  }\n\n  @Override\n  public T get() {\n    return context.get();\n  }\n\n  @Override\n  public void close() throws IOException {\n    context.close();\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-2.4-bigquery/src/main/java/com/google/cloud/spark/bigquery/v2/Spark24Statistics.java",
    "content": "/*\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.v2;\n\nimport com.google.cloud.spark.bigquery.v2.context.StatisticsContext;\nimport java.util.OptionalLong;\nimport org.apache.spark.sql.sources.v2.reader.Statistics;\n\npublic class Spark24Statistics implements Statistics {\n\n  private StatisticsContext context;\n\n  public Spark24Statistics(StatisticsContext context) {\n    this.context = context;\n  }\n\n  @Override\n  public OptionalLong sizeInBytes() {\n    return context.sizeInBytes();\n  }\n\n  @Override\n  public OptionalLong numRows() {\n    return context.numRows();\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-2.4-bigquery/src/main/java/com/google/cloud/spark/bigquery/v2/Spark24WriterCommitMessage.java",
    "content": "/*\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.v2;\n\nimport com.google.cloud.spark.bigquery.write.context.WriterCommitMessageContext;\nimport org.apache.spark.sql.sources.v2.writer.WriterCommitMessage;\n\npublic class Spark24WriterCommitMessage implements WriterCommitMessage {\n\n  WriterCommitMessageContext ctx;\n\n  public Spark24WriterCommitMessage(WriterCommitMessageContext ctx) {\n    this.ctx = ctx;\n  }\n\n  public WriterCommitMessageContext getContext() {\n    return ctx;\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-2.4-bigquery/src/main/resources/META-INF/services/org.apache.spark.sql.sources.DataSourceRegister",
    "content": "com.google.cloud.spark.bigquery.v2.BigQueryDataSourceV2"
  },
  {
    "path": "spark-bigquery-dsv2/spark-2.4-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark24DataprocImage14AcceptanceTest.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\nimport java.util.Collections;\nimport org.junit.AfterClass;\nimport org.junit.BeforeClass;\nimport org.junit.Ignore;\n\n@Ignore\npublic class Spark24DataprocImage14AcceptanceTest extends DataprocAcceptanceTestBase {\n\n  private static AcceptanceTestContext context;\n\n  public Spark24DataprocImage14AcceptanceTest() {\n    super(context, false);\n  }\n\n  @BeforeClass\n  public static void setup() throws Exception {\n    context =\n        DataprocAcceptanceTestBase.setup(\n            \"1.4-debian10\", \"spark-2.4-bigquery\", Collections.emptyList());\n  }\n\n  @AfterClass\n  public static void tearDown() throws Exception {\n    DataprocAcceptanceTestBase.tearDown(context);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-2.4-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark24DataprocImage14DisableConscryptAcceptanceTest.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\nimport org.junit.AfterClass;\nimport org.junit.BeforeClass;\nimport org.junit.Ignore;\n\n@Ignore\npublic class Spark24DataprocImage14DisableConscryptAcceptanceTest\n    extends DataprocAcceptanceTestBase {\n\n  private static AcceptanceTestContext context;\n\n  public Spark24DataprocImage14DisableConscryptAcceptanceTest() {\n    super(context, false);\n  }\n\n  @BeforeClass\n  public static void setup() throws Exception {\n    context =\n        DataprocAcceptanceTestBase.setup(\n            \"1.4-debian10\", \"spark-2.4-bigquery\", DISABLE_CONSCRYPT_LIST);\n  }\n\n  @AfterClass\n  public static void tearDown() throws Exception {\n    DataprocAcceptanceTestBase.tearDown(context);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-2.4-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark24DataprocImage15AcceptanceTest.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\nimport java.util.Collections;\nimport org.junit.AfterClass;\nimport org.junit.BeforeClass;\nimport org.junit.Ignore;\n\n@Ignore\npublic class Spark24DataprocImage15AcceptanceTest extends DataprocAcceptanceTestBase {\n\n  private static AcceptanceTestContext context;\n\n  public Spark24DataprocImage15AcceptanceTest() {\n    super(context, false);\n  }\n\n  @BeforeClass\n  public static void setup() throws Exception {\n    context =\n        DataprocAcceptanceTestBase.setup(\n            \"1.5-debian10\", \"spark-2.4-bigquery\", Collections.emptyList());\n  }\n\n  @AfterClass\n  public static void tearDown() throws Exception {\n    DataprocAcceptanceTestBase.tearDown(context);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-2.4-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark24DataprocImage15DisableConscryptAcceptanceTest.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\nimport org.junit.AfterClass;\nimport org.junit.BeforeClass;\nimport org.junit.Ignore;\n\n@Ignore\npublic class Spark24DataprocImage15DisableConscryptAcceptanceTest\n    extends DataprocAcceptanceTestBase {\n\n  private static AcceptanceTestContext context;\n\n  public Spark24DataprocImage15DisableConscryptAcceptanceTest() {\n    super(context, false);\n  }\n\n  @BeforeClass\n  public static void setup() throws Exception {\n    context =\n        DataprocAcceptanceTestBase.setup(\n            \"1.5-debian10\", \"spark-2.4-bigquery\", DISABLE_CONSCRYPT_LIST);\n  }\n\n  @AfterClass\n  public static void tearDown() throws Exception {\n    DataprocAcceptanceTestBase.tearDown(context);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-2.4-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark24DirectWriteIntegrationTest.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\nimport com.google.cloud.spark.bigquery.SparkBigQueryConfig;\n\npublic class Spark24DirectWriteIntegrationTest extends WriteIntegrationTestBase {\n\n  public Spark24DirectWriteIntegrationTest() {\n    super(SparkBigQueryConfig.WriteMethod.DIRECT);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-2.4-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark24IndirectWriteIntegrationTest.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\nimport com.google.cloud.spark.bigquery.SparkBigQueryConfig;\n\npublic class Spark24IndirectWriteIntegrationTest extends WriteIntegrationTestBase {\n\n  public Spark24IndirectWriteIntegrationTest() {\n    super(SparkBigQueryConfig.WriteMethod.INDIRECT);\n  }\n\n  // tests from superclass\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-2.4-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark24OpenLineageIntegrationTest.java",
    "content": "/*\n * Copyright 2024 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\npublic class Spark24OpenLineageIntegrationTest extends OpenLineageIntegrationTestBase {}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-2.4-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark24ReadByFormatIntegrationTest.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\npublic class Spark24ReadByFormatIntegrationTest extends ReadByFormatIntegrationTestBase {\n\n  public Spark24ReadByFormatIntegrationTest() {\n    super(\"ARROW\");\n  }\n\n  // tests are from the super-class\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-2.4-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark24ReadFromQueryIntegrationTest.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\npublic class Spark24ReadFromQueryIntegrationTest extends ReadFromQueryIntegrationTestBase {\n\n  // tests are from the super-class\n\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-2.4-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark24ReadIntegrationTest.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\npublic class Spark24ReadIntegrationTest extends ReadIntegrationTestBase {\n\n  // tests are from the super-class\n\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.1-bigquery/pom.xml",
    "content": "<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n  xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n  xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\">\n  <modelVersion>4.0.0</modelVersion>\n  <parent>\n    <groupId>com.google.cloud.spark</groupId>\n    <artifactId>spark-bigquery-dsv2-parent</artifactId>\n    <version>${revision}</version>\n    <relativePath>../spark-bigquery-dsv2-parent</relativePath>\n  </parent>\n\n  <artifactId>spark-3.1-bigquery</artifactId>\n  <version>${revision}</version>\n  <name>BigQuery DataSource v2 for Spark 3.1</name>\n  <properties>\n    <spark.version>3.1.0</spark.version>\n    <shade.skip>false</shade.skip>\n  </properties>\n  <licenses>\n    <license>\n      <name>Apache License, Version 2.0</name>\n      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>\n      <distribution>repo</distribution>\n    </license>\n  </licenses>\n  <dependencies>\n    <dependency>\n      <groupId>${project.groupId}</groupId>\n      <artifactId>spark-3.1-bigquery-lib</artifactId>\n      <version>${project.version}</version>\n    </dependency>\n    <dependency>\n      <groupId>${project.groupId}</groupId>\n      <artifactId>spark-bigquery-scala-212-support</artifactId>\n      <version>${project.version}</version>\n      <scope>compile</scope>\n    </dependency>\n    <dependency>\n      <groupId>org.apache.spark</groupId>\n      <artifactId>spark-avro_2.12</artifactId>\n      <version>${spark.version}</version>\n      <scope>test</scope>\n    </dependency>\n  </dependencies>\n</project>\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.1-bigquery/src/build/resources/spark-bigquery-connector.properties",
    "content": "connector.version=${project.version}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.1-bigquery/src/main/resources/META-INF/services/org.apache.spark.sql.sources.DataSourceRegister",
    "content": "com.google.cloud.spark.bigquery.v2.Spark31BigQueryTableProvider"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.1-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark31BigNumericDataprocServerlessAcceptanceTest.java",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\npublic class Spark31BigNumericDataprocServerlessAcceptanceTest\n    extends BigNumericDataprocServerlessAcceptanceTestBase {\n\n  public Spark31BigNumericDataprocServerlessAcceptanceTest() {\n    super(\"spark-3.1-bigquery\", \"1.0\");\n  }\n\n  // tests from superclass\n\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.1-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark31DataprocImage20AcceptanceTest.java",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\nimport java.util.Collections;\nimport org.junit.AfterClass;\nimport org.junit.BeforeClass;\n\npublic class Spark31DataprocImage20AcceptanceTest extends DataprocAcceptanceTestBase {\n\n  private static AcceptanceTestContext context;\n\n  public Spark31DataprocImage20AcceptanceTest() {\n    super(context, false);\n  }\n\n  @BeforeClass\n  public static void setup() throws Exception {\n    context =\n        DataprocAcceptanceTestBase.setup(\n            \"2.0-debian10\", \"spark-3.1-bigquery\", Collections.emptyList());\n  }\n\n  @AfterClass\n  public static void tearDown() throws Exception {\n    DataprocAcceptanceTestBase.tearDown(context);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.1-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark31DataprocImage20DisableConscryptAcceptanceTest.java",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\nimport org.junit.AfterClass;\nimport org.junit.BeforeClass;\n\npublic class Spark31DataprocImage20DisableConscryptAcceptanceTest\n    extends DataprocAcceptanceTestBase {\n\n  private static AcceptanceTestContext context;\n\n  public Spark31DataprocImage20DisableConscryptAcceptanceTest() {\n    super(context, false);\n  }\n\n  @BeforeClass\n  public static void setup() throws Exception {\n    context =\n        DataprocAcceptanceTestBase.setup(\n            \"2.0-debian10\", \"spark-3.1-bigquery\", DISABLE_CONSCRYPT_LIST);\n  }\n\n  @AfterClass\n  public static void tearDown() throws Exception {\n    DataprocAcceptanceTestBase.tearDown(context);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.1-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark31ReadSheakspeareDataprocServerlessAcceptanceTest.java",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\npublic class Spark31ReadSheakspeareDataprocServerlessAcceptanceTest\n    extends ReadSheakspeareDataprocServerlessAcceptanceTestBase {\n\n  public Spark31ReadSheakspeareDataprocServerlessAcceptanceTest() {\n    super(\"spark-3.1-bigquery\", \"1.0\");\n  }\n\n  // tests from superclass\n\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.1-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark31WriteStreamDataprocServerlessAcceptanceTest.java",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\nimport org.junit.Ignore;\n\n@Ignore // spark-3.1-bigquery does not support streaming yet\npublic class Spark31WriteStreamDataprocServerlessAcceptanceTest\n    extends WriteStreamDataprocServerlessAcceptanceTestBase {\n\n  public Spark31WriteStreamDataprocServerlessAcceptanceTest() {\n    super(\"spark-3.1-bigquery\", \"1.0\");\n  }\n\n  // tests from superclass\n\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.1-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark31DirectWriteIntegrationTest.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\nimport com.google.cloud.spark.bigquery.SparkBigQueryConfig;\n\npublic class Spark31DirectWriteIntegrationTest extends WriteIntegrationTestBase {\n\n  public Spark31DirectWriteIntegrationTest() {\n    super(SparkBigQueryConfig.WriteMethod.DIRECT);\n  }\n\n  // tests from superclass\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.1-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark31IndirectWriteIntegrationTest.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\nimport com.google.cloud.spark.bigquery.SparkBigQueryConfig;\nimport org.junit.Before;\n\npublic class Spark31IndirectWriteIntegrationTest extends WriteIntegrationTestBase {\n\n  public Spark31IndirectWriteIntegrationTest() {\n    super(SparkBigQueryConfig.WriteMethod.INDIRECT);\n  }\n\n  @Before\n  public void setParquetLoadBehaviour() {\n    // TODO: make this the default value\n    spark.conf().set(\"enableListInference\", \"true\");\n  }\n\n  // tests from superclass\n\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.1-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark31OpenLineageIntegrationTest.java",
    "content": "/*\n * Copyright 2024 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\npublic class Spark31OpenLineageIntegrationTest extends OpenLineageIntegrationTestBase {}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.1-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark31ReadByFormatIntegrationTest.java",
    "content": "/*\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\npublic class Spark31ReadByFormatIntegrationTest extends ReadByFormatIntegrationTestBase {\n\n  public Spark31ReadByFormatIntegrationTest() {\n    super(\"ARROW\", /* userProvidedSchemaAllowed */ false);\n  }\n\n  // tests are from the super-class\n\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.1-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark31ReadFromQueryIntegrationTest.java",
    "content": "/*\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\npublic class Spark31ReadFromQueryIntegrationTest extends ReadFromQueryIntegrationTestBase {\n  public Spark31ReadFromQueryIntegrationTest() {\n    super(true);\n  }\n  // tests are from the super-class\n\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.1-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark31ReadIntegrationTest.java",
    "content": "/*\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\npublic class Spark31ReadIntegrationTest extends ReadIntegrationTestBase {\n  public Spark31ReadIntegrationTest() {\n    super(/* userProvidedSchemaAllowed */ false);\n  }\n\n  // tests are from the super-class\n\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.1-bigquery-lib/pom.xml",
    "content": "<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n  xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n  xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\">\n  <modelVersion>4.0.0</modelVersion>\n  <parent>\n    <groupId>com.google.cloud.spark</groupId>\n    <artifactId>spark-bigquery-dsv2-parent</artifactId>\n    <version>${revision}</version>\n    <relativePath>../spark-bigquery-dsv2-parent</relativePath>\n  </parent>\n\n  <artifactId>spark-3.1-bigquery-lib</artifactId>\n  <version>${revision}</version>\n  <name>Connector code for BigQuery DataSource v2 for Spark 3.1</name>\n  <properties>\n    <spark.version>3.1.0</spark.version>\n    <shade.skip>true</shade.skip>\n  </properties>\n  <licenses>\n    <license>\n      <name>Apache License, Version 2.0</name>\n      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>\n      <distribution>repo</distribution>\n    </license>\n  </licenses>\n  <dependencies>\n    <dependency>\n      <groupId>org.apache.spark</groupId>\n      <artifactId>spark-avro_2.12</artifactId>\n      <version>${spark.version}</version>\n      <scope>test</scope>\n    </dependency>\n  </dependencies>\n</project>\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.1-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/BigQueryBatchWrite.java",
    "content": "/*\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.v2;\n\nimport com.google.cloud.spark.bigquery.write.context.DataSourceWriterContext;\nimport com.google.cloud.spark.bigquery.write.context.WriterCommitMessageContext;\nimport java.util.stream.Stream;\nimport org.apache.spark.sql.connector.write.BatchWrite;\nimport org.apache.spark.sql.connector.write.DataWriterFactory;\nimport org.apache.spark.sql.connector.write.PhysicalWriteInfo;\nimport org.apache.spark.sql.connector.write.WriterCommitMessage;\n\npublic class BigQueryBatchWrite implements BatchWrite {\n\n  private DataSourceWriterContext ctx;\n\n  public BigQueryBatchWrite(DataSourceWriterContext ctx) {\n    this.ctx = ctx;\n  }\n\n  @Override\n  public DataWriterFactory createBatchWriterFactory(PhysicalWriteInfo info) {\n    return new Spark31BigQueryDataWriterFactory(ctx.createWriterContextFactory());\n  }\n\n  @Override\n  public void onDataWriterCommit(WriterCommitMessage message) {\n    ctx.onDataWriterCommit(toWriterCommitMessageContext(message));\n  }\n\n  @Override\n  public void commit(WriterCommitMessage[] messages) {\n    ctx.commit(toWriterCommitMessageContextArray(messages));\n  }\n\n  @Override\n  public void abort(WriterCommitMessage[] messages) {\n    ctx.abort(toWriterCommitMessageContextArray(messages));\n  }\n\n  private WriterCommitMessageContext toWriterCommitMessageContext(WriterCommitMessage message) {\n    return ((Spark31BigQueryWriterCommitMessage) message).getContext();\n  }\n\n  private WriterCommitMessageContext[] toWriterCommitMessageContextArray(\n      WriterCommitMessage[] messages) {\n    return Stream.of(messages)\n        .map(this::toWriterCommitMessageContext)\n        .toArray(WriterCommitMessageContext[]::new);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.1-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/BigQueryInputPartition.java",
    "content": "/*\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.v2;\n\nimport com.google.cloud.spark.bigquery.v2.context.InputPartitionContext;\nimport org.apache.spark.sql.connector.read.InputPartition;\n\npublic class BigQueryInputPartition implements InputPartition {\n\n  private static final long serialVersionUID = -8318843699265025053L;\n  InputPartitionContext ctx;\n\n  public BigQueryInputPartition(InputPartitionContext ctx) {\n    this.ctx = ctx;\n  }\n\n  public InputPartitionContext getContext() {\n    return ctx;\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.1-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/BigQueryPartitionReader.java",
    "content": "/*\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.v2;\n\nimport com.google.cloud.spark.bigquery.v2.context.InputPartitionReaderContext;\nimport java.io.IOException;\nimport org.apache.spark.sql.connector.read.PartitionReader;\n\npublic class BigQueryPartitionReader<T> implements PartitionReader<T> {\n\n  private InputPartitionReaderContext<T> context;\n\n  public BigQueryPartitionReader(InputPartitionReaderContext<T> context) {\n    this.context = context;\n  }\n\n  @Override\n  public boolean next() throws IOException {\n    return context.next();\n  }\n\n  @Override\n  public T get() {\n    return context.get();\n  }\n\n  @Override\n  public void close() throws IOException {\n    context.close();\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.1-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/BigQueryPartitionReaderFactory.java",
    "content": "/*\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.v2;\n\nimport com.google.cloud.spark.bigquery.v2.context.InputPartitionContext;\nimport org.apache.spark.sql.catalyst.InternalRow;\nimport org.apache.spark.sql.connector.read.InputPartition;\nimport org.apache.spark.sql.connector.read.PartitionReader;\nimport org.apache.spark.sql.connector.read.PartitionReaderFactory;\nimport org.apache.spark.sql.vectorized.ColumnarBatch;\n\npublic class BigQueryPartitionReaderFactory implements PartitionReaderFactory {\n  @Override\n  public PartitionReader<InternalRow> createReader(InputPartition partition) {\n    InputPartitionContext<InternalRow> ctx = ((BigQueryInputPartition) partition).getContext();\n    return new BigQueryPartitionReader<>(ctx.createPartitionReaderContext());\n  }\n\n  @Override\n  public PartitionReader<ColumnarBatch> createColumnarReader(InputPartition partition) {\n    InputPartitionContext<ColumnarBatch> ctx = ((BigQueryInputPartition) partition).getContext();\n    return new BigQueryPartitionReader<>(ctx.createPartitionReaderContext());\n  }\n\n  @Override\n  public boolean supportColumnarReads(InputPartition partition) {\n    InputPartitionContext ctx = ((BigQueryInputPartition) partition).getContext();\n    return ctx.supportColumnarReads();\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.1-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/BigQueryStreamingDataWriter.java",
    "content": "package com.google.cloud.spark.bigquery.v2;\n\nimport com.google.cloud.spark.bigquery.write.context.DataWriterContext;\nimport java.io.IOException;\nimport org.apache.spark.sql.catalyst.InternalRow;\nimport org.apache.spark.sql.connector.write.DataWriter;\nimport org.apache.spark.sql.connector.write.WriterCommitMessage;\n\npublic class BigQueryStreamingDataWriter implements DataWriter<InternalRow> {\n  private final DataWriterContext<InternalRow> ctx;\n\n  public BigQueryStreamingDataWriter(DataWriterContext<InternalRow> ctx) {\n    this.ctx = ctx;\n  }\n\n  @Override\n  public void write(InternalRow record) throws IOException {\n    ctx.write(record);\n  }\n\n  @Override\n  public WriterCommitMessage commit() throws IOException {\n    return new Spark31BigQueryWriterCommitMessage(ctx.commit());\n  }\n\n  @Override\n  public void abort() throws IOException {\n    ctx.abort();\n  }\n\n  @Override\n  public void close() throws IOException {\n    ctx.close();\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.1-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/BigQueryStreamingWrite.java",
    "content": "package com.google.cloud.spark.bigquery.v2;\n\nimport com.google.cloud.spark.bigquery.write.context.DataSourceWriterContext;\nimport com.google.cloud.spark.bigquery.write.context.WriterCommitMessageContext;\nimport java.util.stream.Stream;\nimport org.apache.spark.sql.connector.write.PhysicalWriteInfo;\nimport org.apache.spark.sql.connector.write.WriterCommitMessage;\nimport org.apache.spark.sql.connector.write.streaming.StreamingDataWriterFactory;\nimport org.apache.spark.sql.connector.write.streaming.StreamingWrite;\n\npublic class BigQueryStreamingWrite implements StreamingWrite {\n  private final DataSourceWriterContext ctx;\n\n  public BigQueryStreamingWrite(DataSourceWriterContext ctx) {\n    this.ctx = ctx;\n  }\n\n  @Override\n  public StreamingDataWriterFactory createStreamingWriterFactory(PhysicalWriteInfo info) {\n    return new BigQueryStreamingWriterFactory(ctx.createWriterContextFactory());\n  }\n\n  @Override\n  public void commit(long epochId, WriterCommitMessage[] messages) {\n    this.ctx.onDataStreamingWriterCommit(epochId, toWriterCommitMessageContextArray(messages));\n  }\n\n  @Override\n  public void abort(long epochId, WriterCommitMessage[] messages) {\n    this.ctx.onDataStreamingWriterAbort(epochId, toWriterCommitMessageContextArray(messages));\n  }\n\n  private WriterCommitMessageContext toWriterCommitMessageContext(WriterCommitMessage message) {\n    return ((Spark31BigQueryWriterCommitMessage) message).getContext();\n  }\n\n  private WriterCommitMessageContext[] toWriterCommitMessageContextArray(\n      WriterCommitMessage[] messages) {\n    return Stream.of(messages)\n        .map(this::toWriterCommitMessageContext)\n        .toArray(WriterCommitMessageContext[]::new);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.1-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/BigQueryStreamingWriterFactory.java",
    "content": "package com.google.cloud.spark.bigquery.v2;\n\nimport com.google.cloud.spark.bigquery.write.context.DataWriterContextFactory;\nimport org.apache.spark.sql.catalyst.InternalRow;\nimport org.apache.spark.sql.connector.write.DataWriter;\nimport org.apache.spark.sql.connector.write.streaming.StreamingDataWriterFactory;\n\npublic class BigQueryStreamingWriterFactory implements StreamingDataWriterFactory {\n\n  private final DataWriterContextFactory<InternalRow> writerContextFactory;\n\n  public BigQueryStreamingWriterFactory(\n      DataWriterContextFactory<InternalRow> writerContextFactory) {\n    this.writerContextFactory = writerContextFactory;\n  }\n\n  @Override\n  public DataWriter<InternalRow> createWriter(int partitionId, long taskId, long epochId) {\n    return new BigQueryStreamingDataWriter(\n        writerContextFactory.createDataWriterContext(partitionId, taskId, epochId));\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.1-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/BigQueryTableCreator.java",
    "content": "/*\n * Copyright 2023 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.v2;\n\nimport com.google.inject.Injector;\nimport java.util.function.Supplier;\nimport org.apache.spark.sql.connector.catalog.Table;\nimport org.apache.spark.sql.types.StructType;\n\n@FunctionalInterface\npublic interface BigQueryTableCreator {\n\n  Table create(Injector injector, Supplier<StructType> schema);\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.1-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/BigQueryWriteBuilder.java",
    "content": "/*\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.v2;\n\nimport com.google.cloud.spark.bigquery.write.context.DataSourceWriterContext;\nimport com.google.inject.Injector;\nimport java.util.Optional;\nimport org.apache.spark.sql.SaveMode;\nimport org.apache.spark.sql.connector.write.BatchWrite;\nimport org.apache.spark.sql.connector.write.LogicalWriteInfo;\nimport org.apache.spark.sql.connector.write.SupportsOverwrite;\nimport org.apache.spark.sql.connector.write.WriteBuilder;\nimport org.apache.spark.sql.connector.write.streaming.StreamingWrite;\nimport org.apache.spark.sql.sources.Filter;\n\npublic class BigQueryWriteBuilder implements WriteBuilder, SupportsOverwrite {\n  protected final Injector injector;\n  protected final LogicalWriteInfo info;\n  protected final SaveMode mode;\n\n  @Override\n  public StreamingWrite buildForStreaming() {\n    Optional<DataSourceWriterContext> dataSourceWriterContext =\n        DataSourceWriterContext.create(\n            injector, info.queryId(), info.schema(), mode, info.options());\n    return new BigQueryStreamingWrite(dataSourceWriterContext.get());\n  }\n\n  public BigQueryWriteBuilder(Injector injector, LogicalWriteInfo info, SaveMode mode) {\n    this.injector = injector;\n    this.info = info;\n    this.mode = mode;\n  }\n\n  @Override\n  public BatchWrite buildForBatch() {\n    Optional<DataSourceWriterContext> dataSourceWriterContext =\n        DataSourceWriterContext.create(\n            injector, info.queryId(), info.schema(), mode, info.options());\n    return new BigQueryBatchWrite(dataSourceWriterContext.get());\n  }\n\n  @Override\n  public WriteBuilder overwrite(Filter[] filters) {\n    return null;\n  }\n\n  @Override\n  public WriteBuilder truncate() {\n    return new BigQueryWriteBuilder(injector, info, SaveMode.Overwrite);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.1-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/Spark31BigQueryDataWriter.java",
    "content": "/*\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.v2;\n\nimport com.google.cloud.spark.bigquery.write.context.DataWriterContext;\nimport java.io.IOException;\nimport org.apache.spark.sql.catalyst.InternalRow;\nimport org.apache.spark.sql.connector.write.DataWriter;\nimport org.apache.spark.sql.connector.write.WriterCommitMessage;\n\npublic class Spark31BigQueryDataWriter implements DataWriter<InternalRow> {\n\n  private DataWriterContext<InternalRow> ctx;\n\n  public Spark31BigQueryDataWriter(DataWriterContext<InternalRow> ctx) {\n    this.ctx = ctx;\n  }\n\n  @Override\n  public void write(InternalRow record) throws IOException {\n    ctx.write(record);\n  }\n\n  @Override\n  public WriterCommitMessage commit() throws IOException {\n    return new Spark31BigQueryWriterCommitMessage(ctx.commit());\n  }\n\n  @Override\n  public void abort() throws IOException {\n    ctx.abort();\n  }\n\n  @Override\n  public void close() throws IOException {\n    ctx.close();\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.1-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/Spark31BigQueryDataWriterFactory.java",
    "content": "/*\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.v2;\n\nimport com.google.cloud.spark.bigquery.write.context.DataWriterContextFactory;\nimport org.apache.spark.sql.catalyst.InternalRow;\nimport org.apache.spark.sql.connector.write.DataWriter;\nimport org.apache.spark.sql.connector.write.DataWriterFactory;\n\npublic class Spark31BigQueryDataWriterFactory implements DataWriterFactory {\n\n  private DataWriterContextFactory<InternalRow> writerContextFactory;\n\n  public Spark31BigQueryDataWriterFactory(\n      DataWriterContextFactory<InternalRow> writerContextFactory) {\n    this.writerContextFactory = writerContextFactory;\n  }\n\n  @Override\n  public DataWriter<InternalRow> createWriter(int partitionId, long taskId) {\n    return new Spark31BigQueryDataWriter(\n        writerContextFactory.createDataWriterContext(partitionId, taskId, 0));\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.1-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/Spark31BigQueryScanBuilder.java",
    "content": "/*\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.v2;\n\nimport com.google.cloud.bigquery.TableId;\nimport com.google.cloud.spark.bigquery.SupportsQueryPushdown;\nimport com.google.cloud.spark.bigquery.direct.BigQueryRDDFactory;\nimport com.google.cloud.spark.bigquery.v2.context.BigQueryDataSourceReaderContext;\nimport java.util.Objects;\nimport java.util.Optional;\nimport org.apache.spark.sql.connector.read.Batch;\nimport org.apache.spark.sql.connector.read.InputPartition;\nimport org.apache.spark.sql.connector.read.PartitionReaderFactory;\nimport org.apache.spark.sql.connector.read.Scan;\nimport org.apache.spark.sql.connector.read.ScanBuilder;\nimport org.apache.spark.sql.connector.read.Statistics;\nimport org.apache.spark.sql.connector.read.SupportsPushDownFilters;\nimport org.apache.spark.sql.connector.read.SupportsPushDownRequiredColumns;\nimport org.apache.spark.sql.connector.read.SupportsReportStatistics;\nimport org.apache.spark.sql.sources.Filter;\nimport org.apache.spark.sql.types.StructType;\nimport org.slf4j.Logger;\nimport org.slf4j.LoggerFactory;\n\n/**\n * Both Scan and ScanBuilder implementation, otherwise estimateStatistics() is not called due to bug\n * in DataSourceV2Relation\n */\npublic class Spark31BigQueryScanBuilder\n    implements Batch,\n        Scan,\n        ScanBuilder,\n        SupportsPushDownFilters,\n        SupportsPushDownRequiredColumns,\n        SupportsReportStatistics,\n        SupportsQueryPushdown {\n\n  protected final Logger logger = LoggerFactory.getLogger(getClass());\n\n  protected BigQueryDataSourceReaderContext ctx;\n  protected InputPartition[] partitions;\n\n  public Spark31BigQueryScanBuilder(BigQueryDataSourceReaderContext ctx) {\n    this.ctx = ctx;\n  }\n\n  public TableId getTableId() {\n    return ctx.getTableId();\n  }\n\n  @Override\n  public Scan build() {\n    // start creating ReadSession asynchronously\n    // no further pushFilters / pruneColumns expected from this point\n    ctx.build();\n    return this; // new BigQueryScan(ctx);\n  }\n\n  @Override\n  public Filter[] pushFilters(Filter[] filters) {\n    ctx.pushFilters(filters);\n    // We tell Spark that all filters were unhandled, in order to trigger DPP if needed\n    // The relevant filters (usually all of them) where pushed to the Read API by `ctx`\n    return filters;\n  }\n\n  @Override\n  public Filter[] pushedFilters() {\n    // We tell Spark that all filters were pushable, in order to trigger bloom filter if needed\n    return ctx.getAllFilters();\n  }\n\n  @Override\n  public void pruneColumns(StructType requiredSchema) {\n    ctx.pruneColumns(requiredSchema);\n  }\n\n  @Override\n  public StructType readSchema() {\n    return ctx.readSchema();\n  }\n\n  @Override\n  public String description() {\n    return String.format(\n        \"Reading table [%s], filters [%s], Read session Id : %s \",\n        ctx.getFullTableName(), getPushdownFilters().orElse(\"\"), ctx.getReadSessionId());\n  }\n\n  @Override\n  public Batch toBatch() {\n    return this;\n  }\n\n  @Override\n  public Statistics estimateStatistics() {\n    return new Spark3Statistics(ctx.estimateStatistics());\n  }\n\n  @Override\n  public BigQueryRDDFactory getBigQueryRDDFactory() {\n    return ctx.getBigQueryRddFactory();\n  }\n\n  @Override\n  public Optional<String> getPushdownFilters() {\n    // Return the combined filters (pushed + global) here since Spark 3.1 does not create a Filter\n    // node in the LogicalPlan\n    return ctx.getCombinedFilter();\n  }\n\n  @Override\n  public boolean equals(Object o) {\n    if (this == o) {\n      return true;\n    }\n\n    if (o == null || getClass() != o.getClass()) {\n      return false;\n    }\n\n    Spark31BigQueryScanBuilder that = (Spark31BigQueryScanBuilder) o;\n    return getTableId().equals(that.getTableId())\n        && readSchema().equals(that.readSchema())\n        && // compare Spark schemas to ignore field ids\n        getPushdownFilters().equals(that.getPushdownFilters());\n  }\n\n  @Override\n  public int hashCode() {\n    return Objects.hash(getTableId(), readSchema(), getPushdownFilters());\n  }\n\n  @Override\n  public InputPartition[] planInputPartitions() {\n    // As each result has another template type we cannot set this to the same variable and to share\n    // code\n    if (partitions != null) {\n      return partitions;\n    }\n    if (ctx.enableBatchRead()) {\n      partitions =\n          ctx.planBatchInputPartitionContexts()\n              .map(inputPartitionContext -> new BigQueryInputPartition(inputPartitionContext))\n              .toArray(InputPartition[]::new);\n    } else {\n      partitions =\n          ctx.planInputPartitionContexts()\n              .map(inputPartitionContext -> new BigQueryInputPartition(inputPartitionContext))\n              .toArray(InputPartition[]::new);\n    }\n    return partitions;\n  }\n\n  @Override\n  public PartitionReaderFactory createReaderFactory() {\n    return new BigQueryPartitionReaderFactory();\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.1-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/Spark31BigQueryTable.java",
    "content": "/*\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.v2;\n\nimport com.google.cloud.bigquery.TableId;\nimport com.google.cloud.bigquery.connector.common.BigQueryUtil;\nimport com.google.cloud.spark.bigquery.DataSourceVersion;\nimport com.google.cloud.spark.bigquery.SparkBigQueryConfig;\nimport com.google.cloud.spark.bigquery.v2.context.BigQueryDataSourceReaderContext;\nimport com.google.cloud.spark.bigquery.v2.context.BigQueryDataSourceReaderModule;\nimport com.google.common.collect.ImmutableMap;\nimport com.google.common.collect.ImmutableSet;\nimport com.google.inject.Injector;\nimport java.util.Map;\nimport java.util.Optional;\nimport java.util.Set;\nimport java.util.function.Supplier;\nimport org.apache.spark.sql.SaveMode;\nimport org.apache.spark.sql.SparkSession;\nimport org.apache.spark.sql.connector.catalog.SupportsRead;\nimport org.apache.spark.sql.connector.catalog.SupportsWrite;\nimport org.apache.spark.sql.connector.catalog.Table;\nimport org.apache.spark.sql.connector.catalog.TableCapability;\nimport org.apache.spark.sql.connector.read.ScanBuilder;\nimport org.apache.spark.sql.connector.write.LogicalWriteInfo;\nimport org.apache.spark.sql.connector.write.WriteBuilder;\nimport org.apache.spark.sql.types.StructType;\nimport org.apache.spark.sql.util.CaseInsensitiveStringMap;\n\npublic class Spark31BigQueryTable implements Table, SupportsRead, SupportsWrite {\n\n  public static final ImmutableSet<TableCapability> TABLE_CAPABILITIES =\n      ImmutableSet.of(\n          TableCapability.BATCH_READ,\n          TableCapability.V1_BATCH_WRITE,\n          TableCapability.TRUNCATE,\n          TableCapability.STREAMING_WRITE);\n\n  protected Injector injector;\n  protected Supplier<StructType> schemaSupplier;\n  protected TableId tableId;\n\n  public Spark31BigQueryTable(Injector injector, Supplier<StructType> schemaSupplier) {\n    this.injector = injector;\n    this.schemaSupplier = schemaSupplier;\n    SparkBigQueryConfig config = injector.getInstance(SparkBigQueryConfig.class);\n    // if this is a real table then use it\n    this.tableId = config.getQuery().isPresent() ? null : config.getTableId();\n  }\n\n  @Override\n  public ScanBuilder newScanBuilder(CaseInsensitiveStringMap options) {\n    BigQueryDataSourceReaderContext ctx = createBigQueryDataSourceReaderContext(options);\n    return new Spark31BigQueryScanBuilder(ctx);\n  }\n\n  protected BigQueryDataSourceReaderContext createBigQueryDataSourceReaderContext(\n      CaseInsensitiveStringMap options) {\n    SparkBigQueryConfig tableScanConfig =\n        SparkBigQueryConfig.from(\n            options,\n            ImmutableMap.of(),\n            injector.getInstance(DataSourceVersion.class),\n            injector.getInstance(SparkSession.class),\n            Optional.ofNullable(schemaSupplier.get()),\n            true /* tableIsMandatory */,\n            Optional.ofNullable(tableId));\n    Injector readerInjector =\n        injector.createChildInjector(\n            new BigQueryDataSourceReaderModule(Optional.of(tableScanConfig)));\n    BigQueryDataSourceReaderContext ctx =\n        readerInjector.getInstance(BigQueryDataSourceReaderContext.class);\n    return ctx;\n  }\n\n  @Override\n  public String name() {\n    return injector.getInstance(SparkBigQueryConfig.class).getTableId().getTable();\n  }\n\n  @Override\n  public StructType schema() {\n    return this.schemaSupplier.get();\n  }\n\n  @Override\n  public Set<TableCapability> capabilities() {\n    return TABLE_CAPABILITIES;\n  }\n\n  @Override\n  public WriteBuilder newWriteBuilder(LogicalWriteInfo info) {\n    // SaveMode is not provided by spark 3, it is handled by the DataFrameWriter\n    // The case where mode == SaveMode.Ignore is handled by Spark, so we can assume we can get the\n    // context\n    return new BigQueryWriteBuilder(injector, info, SaveMode.Append);\n  }\n\n  @Override\n  public Map<String, String> properties() {\n    SparkBigQueryConfig config = injector.getInstance(SparkBigQueryConfig.class);\n    ImmutableMap.Builder<String, String> propertiesBuilder =\n        ImmutableMap.<String, String>builder()\n            .put(\"openlineage.dataset.namespace\", \"bigquery\")\n            .put(\"openlineage.dataset.storageDatasetFacet.storageLayer\", \"bigquery\");\n    if (config.getQuery().isPresent()) {\n      propertiesBuilder.put(\"openlineage.dataset.query\", config.getQuery().get());\n    } else {\n      TableId tableId = config.getTableIdWithExplicitProject();\n      propertiesBuilder.put(\"openlineage.dataset.name\", BigQueryUtil.friendlyTableName(tableId));\n    }\n    return propertiesBuilder.build();\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.1-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/Spark31BigQueryTableProvider.java",
    "content": "/*\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.v2;\n\nimport static com.google.cloud.bigquery.connector.common.BigQueryUtil.formatTableResult;\n\nimport com.google.cloud.bigquery.TableId;\nimport com.google.cloud.bigquery.TableResult;\nimport com.google.cloud.bigquery.connector.common.BigQueryClient;\nimport com.google.cloud.bigquery.connector.common.BigQueryUtil;\nimport com.google.cloud.spark.bigquery.InjectorBuilder;\nimport com.google.cloud.spark.bigquery.SparkBigQueryConfig;\nimport com.google.cloud.spark.bigquery.write.CreatableRelationProviderHelper;\nimport com.google.common.collect.ImmutableMap;\nimport com.google.inject.Injector;\nimport io.openlineage.spark.shade.client.OpenLineage;\nimport io.openlineage.spark.shade.client.utils.DatasetIdentifier;\nimport io.openlineage.spark.shade.extension.v1.LineageRelationProvider;\nimport java.util.Locale;\nimport java.util.Map;\nimport org.apache.spark.sql.Dataset;\nimport org.apache.spark.sql.Row;\nimport org.apache.spark.sql.SQLContext;\nimport org.apache.spark.sql.SaveMode;\nimport org.apache.spark.sql.catalyst.util.CaseInsensitiveMap;\nimport org.apache.spark.sql.connector.ExternalCommandRunner;\nimport org.apache.spark.sql.connector.catalog.Table;\nimport org.apache.spark.sql.connector.catalog.TableProvider;\nimport org.apache.spark.sql.connector.expressions.Transform;\nimport org.apache.spark.sql.sources.BaseRelation;\nimport org.apache.spark.sql.sources.CreatableRelationProvider;\nimport org.apache.spark.sql.types.StructType;\nimport org.apache.spark.sql.util.CaseInsensitiveStringMap;\nimport scala.collection.JavaConverters;\n\npublic class Spark31BigQueryTableProvider extends BaseBigQuerySource\n    implements TableProvider,\n        CreatableRelationProvider,\n        LineageRelationProvider,\n        ExternalCommandRunner {\n\n  private static final Transform[] EMPTY_TRANSFORM_ARRAY = {};\n\n  @Override\n  public StructType inferSchema(CaseInsensitiveStringMap options) {\n    return getBigQueryTableInternal(options).schema();\n  }\n\n  @Override\n  public Table getTable(\n      StructType schema, Transform[] partitioning, Map<String, String> properties) {\n    return Spark3Util.createBigQueryTableInstance(Spark31BigQueryTable::new, schema, properties);\n  }\n\n  protected Table getBigQueryTableInternal(Map<String, String> properties) {\n    return Spark3Util.createBigQueryTableInstance(Spark31BigQueryTable::new, null, properties);\n  }\n\n  @Override\n  public boolean supportsExternalMetadata() {\n    return false;\n  }\n\n  @Override\n  public BaseRelation createRelation(\n      SQLContext sqlContext,\n      SaveMode mode,\n      scala.collection.immutable.Map<String, String> parameters,\n      Dataset<Row> data) {\n    return new CreatableRelationProviderHelper()\n        .createRelation(sqlContext, mode, parameters, data, ImmutableMap.of());\n  }\n\n  @Override\n  public DatasetIdentifier getLineageDatasetIdentifier(\n      String sparkListenerEventName,\n      OpenLineage openLineage,\n      Object sqlContext,\n      Object parameters) {\n    Map<String, String> properties = JavaConverters.mapAsJavaMap((CaseInsensitiveMap) parameters);\n    Injector injector = new InjectorBuilder().withOptions(properties).build();\n    SparkBigQueryConfig config = injector.getInstance(SparkBigQueryConfig.class);\n    TableId tableId = config.getTableIdWithExplicitProject();\n    return new DatasetIdentifier(BigQueryUtil.friendlyTableName(tableId), \"bigquery\");\n  }\n\n  @Override\n  public String[] executeCommand(String command, CaseInsensitiveStringMap options) {\n    String trimmedCommand = command.trim().toUpperCase(Locale.ROOT);\n    if (trimmedCommand.startsWith(\"SELECT\") || trimmedCommand.startsWith(\"WITH\")) {\n      throw new IllegalArgumentException(\n          \"SELECT and WITH statements are not supported for EXECUTE IMMEDIATE. \"\n              + \"Please use spark.read.format(\\\"bigquery\\\").load(command) instead.\");\n    }\n    Injector injector =\n        new InjectorBuilder().withTableIsMandatory(false).withOptions(options).build();\n    BigQueryClient bqClient = injector.getInstance(BigQueryClient.class);\n    TableResult result = bqClient.query(command);\n    return formatTableResult(result, /* withHeader */ false);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.1-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/Spark31BigQueryWriterCommitMessage.java",
    "content": "/*\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.v2;\n\nimport com.google.cloud.spark.bigquery.write.context.WriterCommitMessageContext;\nimport org.apache.spark.sql.connector.write.WriterCommitMessage;\n\npublic class Spark31BigQueryWriterCommitMessage implements WriterCommitMessage {\n\n  WriterCommitMessageContext ctx;\n\n  public Spark31BigQueryWriterCommitMessage(WriterCommitMessageContext ctx) {\n    this.ctx = ctx;\n  }\n\n  public WriterCommitMessageContext getContext() {\n    return ctx;\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.1-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/Spark3Statistics.java",
    "content": "/*\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.v2;\n\nimport com.google.cloud.spark.bigquery.v2.context.StatisticsContext;\nimport java.util.OptionalLong;\nimport org.apache.spark.sql.connector.read.Statistics;\n\npublic class Spark3Statistics implements Statistics {\n\n  private StatisticsContext context;\n\n  public Spark3Statistics(StatisticsContext context) {\n    this.context = context;\n  }\n\n  @Override\n  public OptionalLong sizeInBytes() {\n    return context.sizeInBytes();\n  }\n\n  @Override\n  public OptionalLong numRows() {\n    return OptionalLong.empty();\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.1-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/Spark3Util.java",
    "content": "/*\n * Copyright 2023 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.v2;\n\nimport com.google.cloud.bigquery.Schema;\nimport com.google.cloud.bigquery.connector.common.BigQueryClient;\nimport com.google.cloud.bigquery.connector.common.UserAgentProvider;\nimport com.google.cloud.spark.bigquery.DataSourceVersion;\nimport com.google.cloud.spark.bigquery.InjectorBuilder;\nimport com.google.cloud.spark.bigquery.SchemaConverters;\nimport com.google.cloud.spark.bigquery.SchemaConvertersConfiguration;\nimport com.google.cloud.spark.bigquery.SparkBigQueryConfig;\nimport com.google.cloud.spark.bigquery.metrics.SparkBigQueryConnectorMetricsUtils;\nimport com.google.inject.Injector;\nimport java.util.Map;\nimport java.util.function.Supplier;\nimport org.apache.spark.SparkContext;\nimport org.apache.spark.sql.SparkSession;\nimport org.apache.spark.sql.connector.catalog.Table;\nimport org.apache.spark.sql.types.StructType;\n\npublic class Spark3Util {\n\n  public static Table createBigQueryTableInstance(\n      BigQueryTableCreator bigQueryTableCreator,\n      StructType sparkProvidedSchema,\n      Map<String, String> properties) {\n    Injector injector =\n        new InjectorBuilder()\n            .withOptions(properties)\n            .withSchema(sparkProvidedSchema)\n            .withTableIsMandatory(true)\n            .withDataSourceVersion(DataSourceVersion.V2)\n            .build();\n    BigQueryClient bigQueryClient = injector.getInstance(BigQueryClient.class);\n    SparkBigQueryConfig config = injector.getInstance(SparkBigQueryConfig.class);\n    SparkContext sparkContext = injector.getInstance(SparkSession.class).sparkContext();\n    SparkBigQueryConnectorMetricsUtils.postInputFormatEvent(sparkContext);\n    UserAgentProvider userAgentProvider = injector.getInstance(UserAgentProvider.class);\n    SparkBigQueryConnectorMetricsUtils.postConnectorVersion(\n        sparkContext, userAgentProvider.getConnectorInfo());\n    Supplier<StructType> schemaSupplier =\n        () -> {\n          if (sparkProvidedSchema != null) {\n            return sparkProvidedSchema;\n          }\n          Schema schemaFromTable = bigQueryClient.getReadTableSchema(config.toReadTableOptions());\n          return schemaFromTable != null\n              ? SchemaConverters.from(SchemaConvertersConfiguration.from(config))\n                  .toSpark(schemaFromTable)\n              : null;\n        };\n    return bigQueryTableCreator.create(injector, schemaSupplier);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.1-bigquery-lib/src/test/resources/META-INF/services/org.apache.spark.sql.sources.DataSourceRegister",
    "content": "com.google.cloud.spark.bigquery.v2.Spark31BigQueryTableProvider"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.2-bigquery/pom.xml",
    "content": "<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n  xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n  xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\">\n  <modelVersion>4.0.0</modelVersion>\n  <parent>\n    <groupId>com.google.cloud.spark</groupId>\n    <artifactId>spark-bigquery-dsv2-parent</artifactId>\n    <version>${revision}</version>\n    <relativePath>../spark-bigquery-dsv2-parent</relativePath>\n  </parent>\n\n  <artifactId>spark-3.2-bigquery</artifactId>\n  <version>${revision}</version>\n  <name>BigQuery DataSource v2 for Spark 3.2</name>\n  <properties>\n    <spark.version>3.2.0</spark.version>\n    <shade.skip>false</shade.skip>\n  </properties>\n  <licenses>\n    <license>\n      <name>Apache License, Version 2.0</name>\n      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>\n      <distribution>repo</distribution>\n    </license>\n  </licenses>\n  <dependencies>\n    <dependency>\n      <groupId>${project.groupId}</groupId>\n      <artifactId>spark-3.2-bigquery-lib</artifactId>\n      <version>${project.version}</version>\n    </dependency>\n    <dependency>\n      <groupId>${project.groupId}</groupId>\n      <artifactId>spark-bigquery-scala-212-support</artifactId>\n      <version>${project.version}</version>\n      <scope>compile</scope>\n    </dependency>\n    <dependency>\n      <groupId>org.apache.spark</groupId>\n      <artifactId>spark-avro_2.12</artifactId>\n      <version>${spark.version}</version>\n      <scope>test</scope>\n    </dependency>\n  </dependencies>\n</project>\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.2-bigquery/src/build/resources/spark-bigquery-connector.properties",
    "content": "connector.version=${project.version}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.2-bigquery/src/main/resources/META-INF/services/org.apache.spark.sql.sources.DataSourceRegister",
    "content": "com.google.cloud.spark.bigquery.v2.Spark32BigQueryTableProvider\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.2-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark32BigNumericDataprocServerlessAcceptanceTest.java",
    "content": "/*\n * Copyright 2023 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\npublic class Spark32BigNumericDataprocServerlessAcceptanceTest\n    extends BigNumericDataprocServerlessAcceptanceTestBase {\n\n  public Spark32BigNumericDataprocServerlessAcceptanceTest() {\n    super(\"spark-3.2-bigquery\", \"1.0\");\n  }\n\n  // tests from superclass\n\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.2-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark32DataprocImage21AcceptanceTest.java",
    "content": "/*\n * Copyright 2023 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\nimport java.util.Collections;\nimport org.junit.AfterClass;\nimport org.junit.BeforeClass;\n\npublic class Spark32DataprocImage21AcceptanceTest extends DataprocAcceptanceTestBase {\n\n  private static AcceptanceTestContext context;\n\n  public Spark32DataprocImage21AcceptanceTest() {\n    super(context, false);\n  }\n\n  @BeforeClass\n  public static void setup() throws Exception {\n    context =\n        DataprocAcceptanceTestBase.setup(\n            \"2.1-debian11\", \"spark-3.2-bigquery\", Collections.emptyList());\n  }\n\n  @AfterClass\n  public static void tearDown() throws Exception {\n    DataprocAcceptanceTestBase.tearDown(context);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.2-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark32DataprocImage21DisableConscryptAcceptanceTest.java",
    "content": "/*\n * Copyright 2023 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\nimport org.junit.AfterClass;\nimport org.junit.BeforeClass;\n\npublic class Spark32DataprocImage21DisableConscryptAcceptanceTest\n    extends DataprocAcceptanceTestBase {\n\n  private static AcceptanceTestContext context;\n\n  public Spark32DataprocImage21DisableConscryptAcceptanceTest() {\n    super(context, false);\n  }\n\n  @BeforeClass\n  public static void setup() throws Exception {\n    context =\n        DataprocAcceptanceTestBase.setup(\n            \"2.1-debian11\", \"spark-3.2-bigquery\", DISABLE_CONSCRYPT_LIST);\n  }\n\n  @AfterClass\n  public static void tearDown() throws Exception {\n    DataprocAcceptanceTestBase.tearDown(context);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.2-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark32ReadSheakspeareDataprocServerlessAcceptanceTest.java",
    "content": "/*\n * Copyright 2023 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\npublic class Spark32ReadSheakspeareDataprocServerlessAcceptanceTest\n    extends ReadSheakspeareDataprocServerlessAcceptanceTestBase {\n\n  public Spark32ReadSheakspeareDataprocServerlessAcceptanceTest() {\n    super(\"spark-3.2-bigquery\", \"1.0\");\n  }\n\n  // tests from superclass\n\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.2-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark32WriteStreamDataprocServerlessAcceptanceTest.java",
    "content": "/*\n * Copyright 2023 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\nimport org.junit.Ignore;\n\n@Ignore // spark-3.2-bigquery does not support streaming yet\npublic class Spark32WriteStreamDataprocServerlessAcceptanceTest\n    extends WriteStreamDataprocServerlessAcceptanceTestBase {\n\n  public Spark32WriteStreamDataprocServerlessAcceptanceTest() {\n    super(\"spark-3.2-bigquery\", \"1.0\");\n  }\n\n  // tests from superclass\n\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.2-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark32DirectWriteIntegrationTest.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\nimport com.google.cloud.spark.bigquery.SparkBigQueryConfig;\n\npublic class Spark32DirectWriteIntegrationTest extends WriteIntegrationTestBase {\n\n  public Spark32DirectWriteIntegrationTest() {\n    super(SparkBigQueryConfig.WriteMethod.DIRECT);\n  }\n\n  // tests from superclass\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.2-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark32IndirectWriteIntegrationTest.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\nimport com.google.cloud.spark.bigquery.SparkBigQueryConfig;\nimport org.junit.Before;\n\npublic class Spark32IndirectWriteIntegrationTest extends WriteIntegrationTestBase {\n\n  public Spark32IndirectWriteIntegrationTest() {\n    super(SparkBigQueryConfig.WriteMethod.INDIRECT);\n  }\n\n  @Before\n  public void setParquetLoadBehaviour() {\n    // TODO: make this the default value\n    spark.conf().set(\"enableListInference\", \"true\");\n  }\n\n  // tests from superclass\n\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.2-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark32OpenLineageIntegrationTest.java",
    "content": "/*\n * Copyright 2024 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\npublic class Spark32OpenLineageIntegrationTest extends OpenLineageIntegrationTestBase {}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.2-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark32ReadByFormatIntegrationTest.java",
    "content": "/*\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\npublic class Spark32ReadByFormatIntegrationTest extends ReadByFormatIntegrationTestBase {\n\n  public Spark32ReadByFormatIntegrationTest() {\n    super(\"ARROW\", /* userProvidedSchemaAllowed */ false);\n  }\n\n  // tests are from the super-class\n\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.2-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark32ReadFromQueryIntegrationTest.java",
    "content": "/*\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\npublic class Spark32ReadFromQueryIntegrationTest extends ReadFromQueryIntegrationTestBase {\n\n  public Spark32ReadFromQueryIntegrationTest() {\n    super(true);\n  }\n\n  // tests are from the super-class\n\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.2-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark32ReadIntegrationTest.java",
    "content": "/*\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\npublic class Spark32ReadIntegrationTest extends ReadIntegrationTestBase {\n  public Spark32ReadIntegrationTest() {\n    super(/* userProvidedSchemaAllowed */ false);\n  }\n\n  // tests are from the super-class\n\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.2-bigquery-lib/pom.xml",
    "content": "<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n  xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n  xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\">\n  <modelVersion>4.0.0</modelVersion>\n  <parent>\n    <groupId>com.google.cloud.spark</groupId>\n    <artifactId>spark-bigquery-dsv2-parent</artifactId>\n    <version>${revision}</version>\n    <relativePath>../spark-bigquery-dsv2-parent</relativePath>\n  </parent>\n\n  <artifactId>spark-3.2-bigquery-lib</artifactId>\n  <version>${revision}</version>\n  <name>Connector code for BigQuery DataSource v2 for Spark 3.2</name>\n  <properties>\n    <spark.version>3.2.0</spark.version>\n    <shade.skip>true</shade.skip>\n  </properties>\n  <licenses>\n    <license>\n      <name>Apache License, Version 2.0</name>\n      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>\n      <distribution>repo</distribution>\n    </license>\n  </licenses>\n  <dependencies>\n    <dependency>\n      <groupId>${project.groupId}</groupId>\n      <artifactId>spark-bigquery-metrics</artifactId>\n      <version>${project.version}</version>\n    </dependency>\n    <dependency>\n      <groupId>${project.groupId}</groupId>\n      <artifactId>spark-3.1-bigquery-lib</artifactId>\n      <version>${project.version}</version>\n    </dependency>\n    <dependency>\n      <groupId>org.apache.spark</groupId>\n      <artifactId>spark-avro_2.12</artifactId>\n      <version>${spark.version}</version>\n      <scope>test</scope>\n    </dependency>\n  </dependencies>\n</project>\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.2-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/Spark32BigQueryPartitionReader.java",
    "content": "package com.google.cloud.spark.bigquery.v2;\n\nimport static com.google.cloud.spark.bigquery.v2.customMetrics.SparkBigQueryCustomMetricConstants.*;\n\nimport com.google.cloud.spark.bigquery.v2.context.InputPartitionReaderContext;\nimport com.google.cloud.spark.bigquery.v2.customMetrics.SparkBigQueryTaskMetric;\nimport org.apache.spark.sql.connector.metric.CustomTaskMetric;\nimport org.slf4j.Logger;\nimport org.slf4j.LoggerFactory;\n\npublic class Spark32BigQueryPartitionReader<T> extends BigQueryPartitionReader {\n\n  public Logger log = LoggerFactory.getLogger(this.getClass());\n  private InputPartitionReaderContext<T> context;\n\n  public Spark32BigQueryPartitionReader(InputPartitionReaderContext context) {\n    super(context);\n    this.context = context;\n  }\n\n  @Override\n  public CustomTaskMetric[] currentMetricsValues() {\n    log.trace(\"in current metric values\");\n    return context\n        .getBigQueryStorageReadRowsTracer()\n        .map(\n            bigQueryStorageReadRowsTracer ->\n                new SparkBigQueryTaskMetric[] {\n                  new SparkBigQueryTaskMetric(\n                      BIG_QUERY_BYTES_READ_METRIC_NAME,\n                      bigQueryStorageReadRowsTracer.getBytesRead()),\n                  new SparkBigQueryTaskMetric(\n                      BIG_QUERY_ROWS_READ_METRIC_NAME, bigQueryStorageReadRowsTracer.getRowsRead()),\n                  new SparkBigQueryTaskMetric(\n                      BIG_QUERY_SCAN_TIME_METRIC_NAME,\n                      bigQueryStorageReadRowsTracer.getScanTimeInMilliSec()),\n                  new SparkBigQueryTaskMetric(\n                      BIG_QUERY_PARSE_TIME_METRIC_NAME,\n                      bigQueryStorageReadRowsTracer.getParseTimeInMilliSec()),\n                  new SparkBigQueryTaskMetric(\n                      BIG_QUERY_TIME_IN_SPARK_METRIC_NAME,\n                      bigQueryStorageReadRowsTracer.getTimeInSparkInMilliSec()),\n                  new SparkBigQueryTaskMetric(BIG_QUERY_NUMBER_OF_READ_STREAMS_METRIC_NAME, 1)\n                })\n        .orElse(new SparkBigQueryTaskMetric[] {});\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.2-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/Spark32BigQueryPartitionReaderFactory.java",
    "content": "package com.google.cloud.spark.bigquery.v2;\n\nimport com.google.cloud.spark.bigquery.v2.context.InputPartitionContext;\nimport org.apache.spark.sql.catalyst.InternalRow;\nimport org.apache.spark.sql.connector.read.InputPartition;\nimport org.apache.spark.sql.connector.read.PartitionReader;\nimport org.apache.spark.sql.connector.read.PartitionReaderFactory;\nimport org.apache.spark.sql.vectorized.ColumnarBatch;\n\npublic class Spark32BigQueryPartitionReaderFactory implements PartitionReaderFactory {\n\n  @Override\n  public PartitionReader<InternalRow> createReader(InputPartition partition) {\n    InputPartitionContext<InternalRow> ctx = ((BigQueryInputPartition) partition).getContext();\n    return new Spark32BigQueryPartitionReader<>(ctx.createPartitionReaderContext());\n  }\n\n  @Override\n  public PartitionReader<ColumnarBatch> createColumnarReader(InputPartition partition) {\n    InputPartitionContext<ColumnarBatch> ctx = ((BigQueryInputPartition) partition).getContext();\n    return new Spark32BigQueryPartitionReader<>(ctx.createPartitionReaderContext());\n  }\n\n  @Override\n  public boolean supportColumnarReads(InputPartition partition) {\n    InputPartitionContext ctx = ((BigQueryInputPartition) partition).getContext();\n    return ctx.supportColumnarReads();\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.2-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/Spark32BigQueryScanBuilder.java",
    "content": "/*\n * Copyright 2023 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.v2;\n\nimport com.google.cloud.bigquery.connector.common.BigQueryUtil;\nimport com.google.cloud.spark.bigquery.v2.context.ArrowInputPartitionContext;\nimport com.google.cloud.spark.bigquery.v2.context.BigQueryDataSourceReaderContext;\nimport com.google.cloud.spark.bigquery.v2.customMetrics.*;\nimport com.google.common.collect.ImmutableList;\nimport com.google.common.collect.ImmutableSet;\nimport java.util.Arrays;\nimport java.util.List;\nimport java.util.Optional;\nimport org.apache.spark.sql.connector.expressions.Expressions;\nimport org.apache.spark.sql.connector.expressions.NamedReference;\nimport org.apache.spark.sql.connector.metric.CustomMetric;\nimport org.apache.spark.sql.connector.read.InputPartition;\nimport org.apache.spark.sql.connector.read.PartitionReaderFactory;\nimport org.apache.spark.sql.connector.read.SupportsRuntimeFiltering;\nimport org.apache.spark.sql.sources.Filter;\n\npublic class Spark32BigQueryScanBuilder extends Spark31BigQueryScanBuilder\n    implements SupportsRuntimeFiltering {\n\n  public Spark32BigQueryScanBuilder(BigQueryDataSourceReaderContext ctx) {\n    super(ctx);\n  }\n\n  @Override\n  public NamedReference[] filterAttributes() {\n    ImmutableList<String> partitionFields = BigQueryUtil.getPartitionFields(ctx.getTableInfo());\n    ImmutableList<String> clusteringFields = BigQueryUtil.getClusteringFields(ctx.getTableInfo());\n\n    ImmutableSet.Builder<String> filterFieldsBuilder = ImmutableSet.builder();\n    filterFieldsBuilder.addAll(partitionFields);\n    filterFieldsBuilder.addAll(clusteringFields);\n    ImmutableSet<String> filterFields = filterFieldsBuilder.build();\n    return Arrays.stream(ctx.readSchema().fieldNames())\n        .filter(filterFields::contains)\n        .map(Expressions::column)\n        .toArray(NamedReference[]::new);\n  }\n\n  @Override\n  public void filter(Filter[] filters) {\n    Optional<List<ArrowInputPartitionContext>> newInputPartitionContexts = ctx.filter(filters);\n    // re-assign partitions\n    newInputPartitionContexts.ifPresent(\n        arrowInputPartitionContexts ->\n            super.partitions =\n                arrowInputPartitionContexts.stream()\n                    .map(BigQueryInputPartition::new)\n                    .toArray(InputPartition[]::new));\n  }\n\n  @Override\n  public CustomMetric[] supportedCustomMetrics() {\n    return new CustomMetric[] {\n      new SparkBigQueryBytesReadMetric(),\n      new SparkBigQueryRowsReadMetric(),\n      new SparkBigQueryScanTimeMetric(),\n      new SparkBigQueryParseTimeMetric(),\n      new SparkBigQueryTimeInSparkMetric(),\n      new SparkBigQueryNumberOfReadStreamsMetric()\n    };\n  }\n\n  @Override\n  public PartitionReaderFactory createReaderFactory() {\n    return new Spark32BigQueryPartitionReaderFactory();\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.2-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/Spark32BigQueryTable.java",
    "content": "/*\n * Copyright 2023 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.v2;\n\nimport com.google.cloud.spark.bigquery.v2.context.BigQueryDataSourceReaderContext;\nimport com.google.inject.Injector;\nimport java.util.function.Supplier;\nimport org.apache.spark.sql.connector.read.ScanBuilder;\nimport org.apache.spark.sql.types.StructType;\nimport org.apache.spark.sql.util.CaseInsensitiveStringMap;\n\npublic class Spark32BigQueryTable extends Spark31BigQueryTable {\n\n  protected Spark32BigQueryTable(Injector injector, Supplier<StructType> schemaSupplier) {\n    super(injector, schemaSupplier);\n  }\n\n  @Override\n  public ScanBuilder newScanBuilder(CaseInsensitiveStringMap options) {\n    BigQueryDataSourceReaderContext ctx = createBigQueryDataSourceReaderContext(options);\n    return new Spark32BigQueryScanBuilder(ctx);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.2-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/Spark32BigQueryTableProvider.java",
    "content": "/*\n * Copyright 2023 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.v2;\n\nimport java.util.Map;\nimport org.apache.spark.sql.connector.catalog.Table;\nimport org.apache.spark.sql.connector.expressions.Transform;\nimport org.apache.spark.sql.types.StructType;\n\npublic class Spark32BigQueryTableProvider extends Spark31BigQueryTableProvider {\n\n  @Override\n  public Table getTable(\n      StructType schema, Transform[] partitioning, Map<String, String> properties) {\n    return Spark3Util.createBigQueryTableInstance(Spark32BigQueryTable::new, schema, properties);\n  }\n\n  @Override\n  protected Table getBigQueryTableInternal(Map<String, String> properties) {\n    return Spark3Util.createBigQueryTableInstance(Spark32BigQueryTable::new, null, properties);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.2-bigquery-lib/src/test/resources/META-INF/services/org.apache.spark.sql.sources.DataSourceRegister",
    "content": "com.google.cloud.spark.bigquery.v2.Spark32BigQueryTableProvider\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.3-bigquery/pom.xml",
    "content": "<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n  xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n  xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\">\n  <modelVersion>4.0.0</modelVersion>\n  <parent>\n    <groupId>com.google.cloud.spark</groupId>\n    <artifactId>spark-bigquery-dsv2-parent</artifactId>\n    <version>${revision}</version>\n    <relativePath>../spark-bigquery-dsv2-parent</relativePath>\n  </parent>\n\n  <artifactId>spark-3.3-bigquery</artifactId>\n  <version>${revision}</version>\n  <name>BigQuery DataSource v2 for Spark 3.3</name>\n  <properties>\n    <spark.version>3.3.0</spark.version>\n    <shade.skip>false</shade.skip>\n  </properties>\n  <licenses>\n    <license>\n      <name>Apache License, Version 2.0</name>\n      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>\n      <distribution>repo</distribution>\n    </license>\n  </licenses>\n  <dependencies>\n    <dependency>\n      <groupId>${project.groupId}</groupId>\n      <artifactId>spark-3.3-bigquery-lib</artifactId>\n      <version>${project.version}</version>\n    </dependency>\n    <dependency>\n      <groupId>${project.groupId}</groupId>\n      <artifactId>spark-bigquery-scala-212-support</artifactId>\n      <version>${project.version}</version>\n      <scope>compile</scope>\n    </dependency>\n    <dependency>\n      <groupId>org.apache.spark</groupId>\n      <artifactId>spark-avro_2.12</artifactId>\n      <version>${spark.version}</version>\n      <scope>test</scope>\n    </dependency>\n  </dependencies>\n</project>\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.3-bigquery/src/build/resources/spark-bigquery-connector.properties",
    "content": "connector.version=${project.version}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.3-bigquery/src/main/resources/META-INF/services/org.apache.spark.sql.sources.DataSourceRegister",
    "content": "com.google.cloud.spark.bigquery.v2.Spark33BigQueryTableProvider\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.3-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark33BigNumericDataprocServerlessAcceptanceTest.java",
    "content": "/*\n * Copyright 2023 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\npublic class Spark33BigNumericDataprocServerlessAcceptanceTest\n    extends BigNumericDataprocServerlessAcceptanceTestBase {\n\n  public Spark33BigNumericDataprocServerlessAcceptanceTest() {\n    super(\"spark-3.3-bigquery\", \"2.0\");\n  }\n\n  // tests from superclass\n\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.3-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark33DataprocImage21AcceptanceTest.java",
    "content": "/*\n * Copyright 2023 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\nimport java.util.Collections;\nimport org.junit.AfterClass;\nimport org.junit.BeforeClass;\n\npublic class Spark33DataprocImage21AcceptanceTest extends DataprocAcceptanceTestBase {\n\n  private static AcceptanceTestContext context;\n\n  public Spark33DataprocImage21AcceptanceTest() {\n    super(context, false);\n  }\n\n  @BeforeClass\n  public static void setup() throws Exception {\n    context =\n        DataprocAcceptanceTestBase.setup(\n            \"2.1-debian11\", \"spark-3.3-bigquery\", Collections.emptyList());\n  }\n\n  @AfterClass\n  public static void tearDown() throws Exception {\n    DataprocAcceptanceTestBase.tearDown(context);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.3-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark33DataprocImage21DisableConscryptAcceptanceTest.java",
    "content": "/*\n * Copyright 2023 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\nimport org.junit.AfterClass;\nimport org.junit.BeforeClass;\n\npublic class Spark33DataprocImage21DisableConscryptAcceptanceTest\n    extends DataprocAcceptanceTestBase {\n\n  private static AcceptanceTestContext context;\n\n  public Spark33DataprocImage21DisableConscryptAcceptanceTest() {\n    super(context, false);\n  }\n\n  @BeforeClass\n  public static void setup() throws Exception {\n    context =\n        DataprocAcceptanceTestBase.setup(\n            \"2.1-debian11\", \"spark-3.3-bigquery\", DISABLE_CONSCRYPT_LIST);\n  }\n\n  @AfterClass\n  public static void tearDown() throws Exception {\n    DataprocAcceptanceTestBase.tearDown(context);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.3-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark33ReadSheakspeareDataprocServerlessAcceptanceTest.java",
    "content": "/*\n * Copyright 2023 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\npublic class Spark33ReadSheakspeareDataprocServerlessAcceptanceTest\n    extends ReadSheakspeareDataprocServerlessAcceptanceTestBase {\n\n  public Spark33ReadSheakspeareDataprocServerlessAcceptanceTest() {\n    super(\"spark-3.3-bigquery\", \"2.0\");\n  }\n\n  // tests from superclass\n\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.3-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark33WriteStreamDataprocServerlessAcceptanceTest.java",
    "content": "/*\n * Copyright 2023 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\nimport org.junit.Ignore;\n\n@Ignore // spark-3.3-bigquery does not support streaming yet\npublic class Spark33WriteStreamDataprocServerlessAcceptanceTest\n    extends WriteStreamDataprocServerlessAcceptanceTestBase {\n\n  public Spark33WriteStreamDataprocServerlessAcceptanceTest() {\n    super(\"spark-3.3-bigquery\", \"2.0\");\n  }\n\n  // tests from superclass\n\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.3-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark33DirectWriteIntegrationTest.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\nimport com.google.cloud.spark.bigquery.SparkBigQueryConfig;\n\npublic class Spark33DirectWriteIntegrationTest extends WriteIntegrationTestBase {\n\n  public Spark33DirectWriteIntegrationTest() {\n    super(SparkBigQueryConfig.WriteMethod.DIRECT);\n  }\n\n  // tests from superclass\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.3-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark33IndirectWriteIntegrationTest.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\nimport com.google.cloud.spark.bigquery.SparkBigQueryConfig;\nimport org.junit.Before;\n\npublic class Spark33IndirectWriteIntegrationTest extends WriteIntegrationTestBase {\n\n  public Spark33IndirectWriteIntegrationTest() {\n    super(SparkBigQueryConfig.WriteMethod.INDIRECT);\n  }\n\n  @Before\n  public void setParquetLoadBehaviour() {\n    // TODO: make this the default value\n    spark.conf().set(\"enableListInference\", \"true\");\n  }\n\n  // tests from superclass\n\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.3-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark33OpenLineageIntegrationTest.java",
    "content": "/*\n * Copyright 2024 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\npublic class Spark33OpenLineageIntegrationTest extends OpenLineageIntegrationTestBase {}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.3-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark33ReadByFormatIntegrationTest.java",
    "content": "/*\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\npublic class Spark33ReadByFormatIntegrationTest extends ReadByFormatIntegrationTestBase {\n\n  public Spark33ReadByFormatIntegrationTest() {\n    super(\"ARROW\", /* userProvidedSchemaAllowed */ false);\n  }\n\n  // tests are from the super-class\n\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.3-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark33ReadFromQueryIntegrationTest.java",
    "content": "/*\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\npublic class Spark33ReadFromQueryIntegrationTest extends ReadFromQueryIntegrationTestBase {\n\n  public Spark33ReadFromQueryIntegrationTest() {\n    super(true);\n  }\n\n  // tests are from the super-class\n\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.3-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark33ReadIntegrationTest.java",
    "content": "/*\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\npublic class Spark33ReadIntegrationTest extends ReadIntegrationTestBase {\n  public Spark33ReadIntegrationTest() {\n    super(/* userProvidedSchemaAllowed */ false);\n  }\n\n  // tests are from the super-class\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.3-bigquery-lib/pom.xml",
    "content": "<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n  xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n  xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\">\n  <modelVersion>4.0.0</modelVersion>\n  <parent>\n    <groupId>com.google.cloud.spark</groupId>\n    <artifactId>spark-bigquery-dsv2-parent</artifactId>\n    <version>${revision}</version>\n    <relativePath>../spark-bigquery-dsv2-parent</relativePath>\n  </parent>\n\n  <artifactId>spark-3.3-bigquery-lib</artifactId>\n  <version>${revision}</version>\n  <name>Connector code for BigQuery DataSource v2 for Spark 3.3</name>\n  <properties>\n    <spark.version>3.3.0</spark.version>\n    <shade.skip>true</shade.skip>\n  </properties>\n  <licenses>\n    <license>\n      <name>Apache License, Version 2.0</name>\n      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>\n      <distribution>repo</distribution>\n    </license>\n  </licenses>\n  <dependencies>\n    <dependency>\n      <groupId>${project.groupId}</groupId>\n      <artifactId>spark-3.2-bigquery-lib</artifactId>\n      <version>${project.version}</version>\n    </dependency>\n    <dependency>\n      <groupId>org.apache.spark</groupId>\n      <artifactId>spark-avro_2.13</artifactId>\n      <version>${spark.version}</version>\n      <scope>test</scope>\n    </dependency>\n  </dependencies>\n</project>\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.3-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/Spark33BigQueryScanBuilder.java",
    "content": "/*\n * Copyright 2023 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.v2;\n\nimport com.google.cloud.spark.bigquery.v2.context.BigQueryDataSourceReaderContext;\n\npublic class Spark33BigQueryScanBuilder extends Spark32BigQueryScanBuilder {\n  public Spark33BigQueryScanBuilder(BigQueryDataSourceReaderContext ctx) {\n    super(ctx);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.3-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/Spark33BigQueryTable.java",
    "content": "/*\n * Copyright 2023 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.v2;\n\nimport com.google.cloud.spark.bigquery.v2.context.BigQueryDataSourceReaderContext;\nimport com.google.inject.Injector;\nimport java.util.function.Supplier;\nimport org.apache.spark.sql.connector.read.ScanBuilder;\nimport org.apache.spark.sql.types.StructType;\nimport org.apache.spark.sql.util.CaseInsensitiveStringMap;\n\npublic class Spark33BigQueryTable extends Spark32BigQueryTable {\n\n  protected Spark33BigQueryTable(Injector injector, Supplier<StructType> schemaSupplier) {\n    super(injector, schemaSupplier);\n  }\n\n  @Override\n  public ScanBuilder newScanBuilder(CaseInsensitiveStringMap options) {\n    BigQueryDataSourceReaderContext ctx = createBigQueryDataSourceReaderContext(options);\n    return new Spark33BigQueryScanBuilder(ctx);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.3-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/Spark33BigQueryTableProvider.java",
    "content": "/*\n * Copyright 2023 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.v2;\n\nimport java.util.Map;\nimport org.apache.spark.sql.connector.catalog.Table;\nimport org.apache.spark.sql.connector.expressions.Transform;\nimport org.apache.spark.sql.types.StructType;\n\npublic class Spark33BigQueryTableProvider extends Spark32BigQueryTableProvider {\n  // empty\n  @Override\n  public Table getTable(\n      StructType schema, Transform[] partitioning, Map<String, String> properties) {\n    return Spark3Util.createBigQueryTableInstance(Spark33BigQueryTable::new, schema, properties);\n  }\n\n  @Override\n  protected Table getBigQueryTableInternal(Map<String, String> properties) {\n    return Spark3Util.createBigQueryTableInstance(Spark33BigQueryTable::new, null, properties);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.3-bigquery-lib/src/test/resources/META-INF/services/org.apache.spark.sql.sources.DataSourceRegister",
    "content": "com.google.cloud.spark.bigquery.v2.Spark33BigQueryTableProvider\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.4-bigquery/pom.xml",
    "content": "<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n  xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n  xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\">\n  <modelVersion>4.0.0</modelVersion>\n  <parent>\n    <groupId>com.google.cloud.spark</groupId>\n    <artifactId>spark-bigquery-dsv2-parent</artifactId>\n    <version>${revision}</version>\n    <relativePath>../spark-bigquery-dsv2-parent</relativePath>\n  </parent>\n\n  <artifactId>spark-3.4-bigquery</artifactId>\n  <version>${revision}</version>\n  <name>BigQuery DataSource v2 for Spark 3.4</name>\n  <properties>\n    <spark.version>3.4.0</spark.version>\n    <shade.skip>false</shade.skip>\n  </properties>\n  <licenses>\n    <license>\n      <name>Apache License, Version 2.0</name>\n      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>\n      <distribution>repo</distribution>\n    </license>\n  </licenses>\n  <dependencies>\n    <dependency>\n      <groupId>${project.groupId}</groupId>\n      <artifactId>spark-3.4-bigquery-lib</artifactId>\n      <version>${project.version}</version>\n    </dependency>\n    <dependency>\n      <groupId>${project.groupId}</groupId>\n      <artifactId>spark-bigquery-scala-212-support</artifactId>\n      <version>${project.version}</version>\n      <scope>compile</scope>\n    </dependency>\n    <dependency>\n      <groupId>org.apache.spark</groupId>\n      <artifactId>spark-avro_2.12</artifactId>\n      <version>${spark.version}</version>\n      <scope>test</scope>\n    </dependency>\n  </dependencies>\n</project>\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.4-bigquery/src/build/resources/spark-bigquery-connector.properties",
    "content": "connector.version=${project.version}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.4-bigquery/src/main/resources/META-INF/services/org.apache.spark.sql.sources.DataSourceRegister",
    "content": "com.google.cloud.spark.bigquery.v2.Spark34BigQueryTableProvider\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.4-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark34BigNumericDataprocServerlessAcceptanceTest.java",
    "content": "/*\n * Copyright 2023 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\nimport org.junit.Ignore;\n\n@Ignore // Waiting for the serverless dataproc.sparkBqConnector.uri property\npublic class Spark34BigNumericDataprocServerlessAcceptanceTest\n    extends BigNumericDataprocServerlessAcceptanceTestBase {\n\n  public Spark34BigNumericDataprocServerlessAcceptanceTest() {\n    super(\"spark-3.4-bigquery\", \"2.1\");\n  }\n\n  // tests from superclass\n\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.4-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark34ReadSheakspeareDataprocServerlessAcceptanceTest.java",
    "content": "/*\n * Copyright 2023 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\nimport org.junit.Ignore;\n\n@Ignore // Waiting for the serverless dataproc.sparkBqConnector.uri property\npublic class Spark34ReadSheakspeareDataprocServerlessAcceptanceTest\n    extends ReadSheakspeareDataprocServerlessAcceptanceTestBase {\n\n  public Spark34ReadSheakspeareDataprocServerlessAcceptanceTest() {\n    super(\"spark-3.4-bigquery\", \"2.1\");\n  }\n\n  // tests from superclass\n\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.4-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark34WriteStreamDataprocServerlessAcceptanceTest.java",
    "content": "/*\n * Copyright 2023 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\nimport org.junit.Ignore;\n\n@Ignore // spark-3.4-bigquery does not support streaming yet\npublic class Spark34WriteStreamDataprocServerlessAcceptanceTest\n    extends WriteStreamDataprocServerlessAcceptanceTestBase {\n\n  public Spark34WriteStreamDataprocServerlessAcceptanceTest() {\n    super(\"spark-3.4-bigquery\", \"2.1\");\n  }\n\n  // tests from superclass\n\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.4-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark34DirectWriteIntegrationTest.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\nimport com.google.cloud.spark.bigquery.SparkBigQueryConfig;\nimport org.apache.spark.sql.types.DataTypes;\n\npublic class Spark34DirectWriteIntegrationTest extends WriteIntegrationTestBase {\n\n  public Spark34DirectWriteIntegrationTest() {\n    super(SparkBigQueryConfig.WriteMethod.DIRECT, DataTypes.TimestampNTZType);\n  }\n\n  // tests from superclass\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.4-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark34IndirectWriteIntegrationTest.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\nimport com.google.cloud.spark.bigquery.SparkBigQueryConfig;\nimport org.apache.spark.sql.types.DataTypes;\nimport org.junit.Before;\n\npublic class Spark34IndirectWriteIntegrationTest extends WriteIntegrationTestBase {\n\n  public Spark34IndirectWriteIntegrationTest() {\n    super(SparkBigQueryConfig.WriteMethod.INDIRECT, DataTypes.TimestampNTZType);\n  }\n\n  @Before\n  public void setParquetLoadBehaviour() {\n    // TODO: make this the default value\n    spark.conf().set(\"enableListInference\", \"true\");\n  }\n\n  // tests from superclass\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.4-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark34OpenLineageIntegrationTest.java",
    "content": "/*\n * Copyright 2024 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\npublic class Spark34OpenLineageIntegrationTest extends OpenLineageIntegrationTestBase {}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.4-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark34ReadByFormatIntegrationTest.java",
    "content": "/*\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\nimport org.apache.spark.sql.types.DataTypes;\n\npublic class Spark34ReadByFormatIntegrationTest extends ReadByFormatIntegrationTestBase {\n\n  public Spark34ReadByFormatIntegrationTest() {\n    super(\"ARROW\", /* userProvidedSchemaAllowed */ false, DataTypes.TimestampNTZType);\n  }\n\n  // tests are from the super-class\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.4-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark34ReadFromQueryIntegrationTest.java",
    "content": "/*\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\npublic class Spark34ReadFromQueryIntegrationTest extends ReadFromQueryIntegrationTestBase {\n\n  public Spark34ReadFromQueryIntegrationTest() {\n    super(true);\n  }\n\n  // tests are from the super-class\n\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.4-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark34ReadIntegrationTest.java",
    "content": "/*\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\nimport org.apache.spark.sql.types.DataTypes;\n\npublic class Spark34ReadIntegrationTest extends ReadIntegrationTestBase {\n\n  public Spark34ReadIntegrationTest() {\n\n    super(/* userProvidedSchemaAllowed */ false, DataTypes.TimestampNTZType);\n  }\n\n  // tests are from the super-class\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.4-bigquery-lib/pom.xml",
    "content": "<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n  xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n  xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\">\n  <modelVersion>4.0.0</modelVersion>\n  <parent>\n    <groupId>com.google.cloud.spark</groupId>\n    <artifactId>spark-bigquery-dsv2-parent</artifactId>\n    <version>${revision}</version>\n    <relativePath>../spark-bigquery-dsv2-parent</relativePath>\n  </parent>\n\n  <artifactId>spark-3.4-bigquery-lib</artifactId>\n  <version>${revision}</version>\n  <name>Connector code for BigQuery DataSource v2 for Spark 3.4</name>\n  <properties>\n    <spark.version>3.4.0</spark.version>\n    <scala.binary.version>2.13</scala.binary.version>\n    <shade.skip>true</shade.skip>\n  </properties>\n  <licenses>\n    <license>\n      <name>Apache License, Version 2.0</name>\n      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>\n      <distribution>repo</distribution>\n    </license>\n  </licenses>\n  <dependencies>\n    <dependency>\n      <groupId>${project.groupId}</groupId>\n      <artifactId>spark-3.3-bigquery-lib</artifactId>\n      <version>${project.version}</version>\n    </dependency>\n    <dependency>\n      <groupId>org.apache.spark</groupId>\n      <artifactId>spark-avro_2.13</artifactId>\n      <version>${spark.version}</version>\n      <scope>test</scope>\n    </dependency>\n  </dependencies>\n</project>\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.4-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/Spark34BigQueryTable.java",
    "content": "/*\n * Copyright 2025 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.v2;\n\nimport com.google.inject.Injector;\nimport java.util.function.Supplier;\nimport org.apache.spark.sql.types.StructType;\n\npublic class Spark34BigQueryTable extends Spark33BigQueryTable {\n  protected Spark34BigQueryTable(Injector injector, Supplier<StructType> schemaSupplier) {\n    super(injector, schemaSupplier);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.4-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/Spark34BigQueryTableProvider.java",
    "content": "/*\n * Copyright 2023 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.v2;\n\nimport java.util.Map;\nimport org.apache.spark.sql.connector.catalog.Table;\nimport org.apache.spark.sql.connector.expressions.Transform;\nimport org.apache.spark.sql.types.StructType;\n\npublic class Spark34BigQueryTableProvider extends Spark33BigQueryTableProvider {\n  // empty\n  @Override\n  public Table getTable(\n      StructType schema, Transform[] partitioning, Map<String, String> properties) {\n    return Spark3Util.createBigQueryTableInstance(Spark34BigQueryTable::new, schema, properties);\n  }\n\n  @Override\n  protected Table getBigQueryTableInternal(Map<String, String> properties) {\n    return Spark3Util.createBigQueryTableInstance(Spark34BigQueryTable::new, null, properties);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.4-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/TimestampNTZTypeConverter.java",
    "content": "/*\n * Copyright 2023 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.v2;\n\nimport com.google.cloud.bigquery.LegacySQLTypeName;\nimport com.google.cloud.bigquery.StandardSQLTypeName;\nimport com.google.cloud.bigquery.storage.v1.CivilTimeEncoder;\nimport com.google.cloud.spark.bigquery.TypeConverter;\nimport com.google.protobuf.DescriptorProtos;\nimport org.apache.spark.sql.types.DataType;\nimport org.apache.spark.sql.types.DataTypes;\n\npublic class TimestampNTZTypeConverter implements TypeConverter<Long> {\n  @Override\n  public DataType toSparkType(LegacySQLTypeName bigQueryType) {\n    if (supportsBigQueryType(bigQueryType)) {\n      return DataTypes.TimestampNTZType;\n    }\n    throw new IllegalArgumentException(\"Data type not supported : \" + bigQueryType);\n  }\n\n  @Override\n  public LegacySQLTypeName toBigQueryType(DataType sparkType) {\n    if (supportsSparkType(sparkType)) {\n      return LegacySQLTypeName.DATETIME;\n    }\n    throw new IllegalArgumentException(\"Data type not supported : \" + sparkType);\n  }\n\n  @Override\n  public DescriptorProtos.FieldDescriptorProto.Type toProtoFieldType(DataType sparkType) {\n    if (supportsSparkType(sparkType)) {\n      return DescriptorProtos.FieldDescriptorProto.Type.TYPE_INT64;\n    }\n    throw new IllegalArgumentException(\"Data type not supported : \" + sparkType);\n  }\n\n  @Override\n  public boolean supportsBigQueryType(LegacySQLTypeName bigQueryType) {\n    return bigQueryType.getStandardType().equals(StandardSQLTypeName.DATETIME);\n  }\n\n  @Override\n  public boolean supportsSparkType(DataType sparkType) {\n    return sparkType.sameType(DataTypes.TimestampNTZType);\n  }\n\n  @Override\n  public Long sparkToProtoValue(Object sparkValue) {\n    java.time.LocalDateTime javaLocalTime = (java.time.LocalDateTime) sparkValue;\n\n    org.threeten.bp.LocalDateTime threeTenLocalTime =\n        org.threeten.bp.LocalDateTime.of(\n            javaLocalTime.getYear(),\n            javaLocalTime.getMonthValue(),\n            javaLocalTime.getDayOfMonth(),\n            javaLocalTime.getHour(),\n            javaLocalTime.getMinute(),\n            javaLocalTime.getSecond(),\n            javaLocalTime.getNano());\n    return CivilTimeEncoder.encodePacked64DatetimeMicros(threeTenLocalTime);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.4-bigquery-lib/src/main/resources/META-INF/services/com.google.cloud.spark.bigquery.TypeConverter",
    "content": "com.google.cloud.spark.bigquery.v2.TimestampNTZTypeConverter\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.4-bigquery-lib/src/test/java/com/google/cloud/spark/bigquery/v2/TimestampNTZTypeConverterTest.java",
    "content": "/*\n * Copyright 2023 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.v2;\n\nimport static com.google.common.truth.Truth.assertThat;\nimport static org.junit.Assert.assertThrows;\n\nimport com.google.cloud.bigquery.LegacySQLTypeName;\nimport com.google.cloud.bigquery.storage.v1.CivilTimeEncoder;\nimport com.google.protobuf.DescriptorProtos;\nimport java.time.LocalDateTime;\nimport org.apache.spark.sql.types.DataTypes;\nimport org.junit.Test;\n\npublic class TimestampNTZTypeConverterTest {\n  private final TimestampNTZTypeConverter timestampNTZTypeConverter =\n      new TimestampNTZTypeConverter();\n\n  @Test\n  public void testToSparkType() {\n    assertThat(timestampNTZTypeConverter.toSparkType(LegacySQLTypeName.DATETIME))\n        .isEqualTo(DataTypes.TimestampNTZType);\n  }\n\n  @Test\n  public void testToSparkTypeThrowsException() {\n    assertThrows(\n        IllegalArgumentException.class,\n        () -> {\n          timestampNTZTypeConverter.toSparkType(LegacySQLTypeName.FLOAT);\n        });\n  }\n\n  @Test\n  public void testToBigQueryType() {\n    assertThat(timestampNTZTypeConverter.toBigQueryType(DataTypes.TimestampNTZType))\n        .isEqualTo(LegacySQLTypeName.DATETIME);\n  }\n\n  @Test\n  public void testToBigQueryTypeThrowsException() {\n    assertThrows(\n        IllegalArgumentException.class,\n        () -> {\n          timestampNTZTypeConverter.toBigQueryType(DataTypes.TimestampType);\n        });\n  }\n\n  @Test\n  public void testToProtoFieldType() {\n    assertThat(timestampNTZTypeConverter.toProtoFieldType(DataTypes.TimestampNTZType))\n        .isEqualTo(DescriptorProtos.FieldDescriptorProto.Type.TYPE_INT64);\n  }\n\n  @Test\n  public void testToProtoFieldTypeThrowsException() {\n    assertThrows(\n        IllegalArgumentException.class,\n        () -> {\n          timestampNTZTypeConverter.toProtoFieldType(DataTypes.TimestampType);\n        });\n  }\n\n  @Test\n  public void testSupportsBigQueryType() {\n    assertThat(timestampNTZTypeConverter.supportsBigQueryType(LegacySQLTypeName.DATETIME))\n        .isEqualTo(true);\n    assertThat(timestampNTZTypeConverter.supportsBigQueryType(LegacySQLTypeName.TIMESTAMP))\n        .isEqualTo(false);\n  }\n\n  @Test\n  public void testSupportsSparkType() {\n    assertThat(timestampNTZTypeConverter.supportsSparkType(DataTypes.TimestampNTZType))\n        .isEqualTo(true);\n    assertThat(timestampNTZTypeConverter.supportsSparkType(DataTypes.TimestampType))\n        .isEqualTo(false);\n  }\n\n  @Test\n  public void testSparkToProtoValue() {\n    LocalDateTime javaLocalTime = LocalDateTime.of(2023, 9, 18, 14, 30, 15, 234 * 1_000_000);\n    long protoDateTime = timestampNTZTypeConverter.sparkToProtoValue(javaLocalTime);\n    org.threeten.bp.LocalDateTime threeTenLocalTime =\n        org.threeten.bp.LocalDateTime.of(\n            javaLocalTime.getYear(),\n            javaLocalTime.getMonthValue(),\n            javaLocalTime.getDayOfMonth(),\n            javaLocalTime.getHour(),\n            javaLocalTime.getMinute(),\n            javaLocalTime.getSecond(),\n            javaLocalTime.getNano());\n    assertThat(threeTenLocalTime)\n        .isEqualTo(CivilTimeEncoder.decodePacked64DatetimeMicros(protoDateTime));\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.4-bigquery-lib/src/test/resources/META-INF/services/org.apache.spark.sql.sources.DataSourceRegister",
    "content": "com.google.cloud.spark.bigquery.v2.Spark34BigQueryTableProvider\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.5-bigquery/pom.xml",
    "content": "<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n  xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n  xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\">\n  <modelVersion>4.0.0</modelVersion>\n  <parent>\n    <groupId>com.google.cloud.spark</groupId>\n    <artifactId>spark-bigquery-dsv2-parent</artifactId>\n    <version>${revision}</version>\n    <relativePath>../spark-bigquery-dsv2-parent</relativePath>\n  </parent>\n\n  <artifactId>spark-3.5-bigquery</artifactId>\n  <version>${revision}</version>\n  <name>BigQuery DataSource v2 for Spark 3.5</name>\n  <properties>\n    <argLine>${jdk11plus.argLine}</argLine>\n    <toolchain.jdk.version>[11,12)</toolchain.jdk.version>\n    <scala.binary.version>2.13</scala.binary.version>\n    <spark.version>3.5.0</spark.version>\n    <shade.skip>false</shade.skip>\n  </properties>\n  <licenses>\n    <license>\n      <name>Apache License, Version 2.0</name>\n      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>\n      <distribution>repo</distribution>\n    </license>\n  </licenses>\n  <dependencies>\n    <dependency>\n      <groupId>${project.groupId}</groupId>\n      <artifactId>spark-3.5-bigquery-lib</artifactId>\n      <version>${project.version}</version>\n    </dependency>\n    <dependency>\n      <groupId>${project.groupId}</groupId>\n      <artifactId>spark-bigquery-scala-212-support</artifactId>\n      <version>${project.version}</version>\n      <scope>compile</scope>\n    </dependency>\n    <dependency>\n      <groupId>org.apache.spark</groupId>\n      <artifactId>spark-avro_${scala.binary.version}</artifactId>\n      <version>${spark.version}</version>\n      <scope>test</scope>\n    </dependency>\n  </dependencies>\n</project>\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.5-bigquery/src/build/resources/spark-bigquery-connector.properties",
    "content": "connector.version=${project.version}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.5-bigquery/src/main/resources/META-INF/services/org.apache.spark.sql.sources.DataSourceRegister",
    "content": "com.google.cloud.spark.bigquery.v2.Spark35BigQueryTableProvider\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.5-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark35BigNumericDataprocServerlessAcceptanceTest.java",
    "content": "/*\n * Copyright 2023 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\nimport org.junit.Ignore;\n\n@Ignore // Waiting for the serverless spark 3.5 runtime\npublic class Spark35BigNumericDataprocServerlessAcceptanceTest\n    extends BigNumericDataprocServerlessAcceptanceTestBase {\n\n  public Spark35BigNumericDataprocServerlessAcceptanceTest() {\n    super(\"spark-3.5-bigquery\", \"2.2\");\n  }\n\n  // tests from superclass\n\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.5-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark35CatalogAcceptanceTest.java",
    "content": "/// *\n// * Copyright 2018 Google Inc. All Rights Reserved.\n// *\n// * Licensed under the Apache License, Version 2.0 (the \"License\");\n// * you may not use this file except in compliance with the License.\n// * You may obtain a copy of the License at\n// *\n// *       http://www.apache.org/licenses/LICENSE-2.0\n// *\n// * Unless required by applicable law or agreed to in writing, software\n// * distributed under the License is distributed on an \"AS IS\" BASIS,\n// * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// * See the License for the specific language governing permissions and\n// * limitations under the License.\n// */\n// package com.google.cloud.spark.bigquery.acceptance;\n//\n// import static\n// com.google.cloud.spark.bigquery.acceptance.AcceptanceTestConstants.CONNECTOR_JAR_DIRECTORY;\n// import static\n// com.google.cloud.spark.bigquery.acceptance.AcceptanceTestConstants.DATAPROC_ENDPOINT;\n// import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestConstants.MAX_BIG_NUMERIC;\n// import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestConstants.MIN_BIG_NUMERIC;\n// import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestConstants.PROJECT_ID;\n// import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestConstants.REGION;\n// import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils.createBqDataset;\n// import static\n// com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils.deleteBqDatasetAndTables;\n// import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils.generateClusterName;\n// import static\n// com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils.getNumOfRowsOfBqTable;\n// import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils.runBqQuery;\n// import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils.uploadConnectorJar;\n// import static com.google.common.truth.Truth.assertThat;\n// import static com.google.common.truth.Truth.assertWithMessage;\n// import static org.junit.Assume.assumeTrue;\n//\n// import com.google.cloud.bigquery.BigQuery;\n// import com.google.cloud.bigquery.BigQueryOptions;\n// import com.google.cloud.bigquery.Dataset;\n// import com.google.cloud.bigquery.Table;\n// import com.google.cloud.dataproc.v1.*;\n// import com.google.common.collect.ImmutableList;\n// import com.google.common.io.ByteStreams;\n// import java.io.*;\n// import java.nio.charset.StandardCharsets;\n// import java.nio.file.Path;\n// import java.nio.file.Paths;\n// import java.time.Duration;\n// import java.util.Arrays;\n// import java.util.List;\n// import java.util.Map;\n// import java.util.concurrent.CompletableFuture;\n// import java.util.concurrent.TimeUnit;\n// import java.util.stream.Collectors;\n// import org.junit.Before;\n// import org.junit.Ignore;\n// import org.junit.Test;\n//\n// public class CatalogIntegrationTest {\n//\n//  protected static final ClusterProperty DISABLE_CONSCRYPT =\n//      ClusterProperty.of(\"dataproc:dataproc.conscrypt.provider.enable\", \"false\", \"nc\");\n//  protected static final ImmutableList<ClusterProperty> DISABLE_CONSCRYPT_LIST =\n//      ImmutableList.<ClusterProperty>builder().add(DISABLE_CONSCRYPT).build();\n//\n//  private AcceptanceTestContext context;\n//  private boolean sparkStreamingSupported;\n//\n//  protected CatalogIntegrationTest(AcceptanceTestContext context) {\n//    this(context, true);\n//  }\n//\n//  protected CatalogIntegrationTest(\n//      AcceptanceTestContext context, boolean sparkStreamingSupported) {\n//    this.context = context;\n//    this.sparkStreamingSupported = sparkStreamingSupported;\n//  }\n//\n//  protected static AcceptanceTestContext setup(\n//      String dataprocImageVersion,\n//      String connectorJarPrefix,\n//      List<ClusterProperty> clusterProperties)\n//      throws Exception {\n//    String clusterPropertiesMarkers =\n//        clusterProperties.isEmpty()\n//            ? \"\"\n//            : clusterProperties.stream()\n//                .map(ClusterProperty::getMarker)\n//                .collect(Collectors.joining(\"-\", \"-\", \"\"));\n//    String testId =\n//        String.format(\n//            \"%s-%s%s%s\",\n//            System.currentTimeMillis(),\n//            dataprocImageVersion.charAt(0),\n//            dataprocImageVersion.charAt(2),\n//            clusterPropertiesMarkers);\n//    Map<String, String> properties =\n//        clusterProperties.stream()\n//            .collect(Collectors.toMap(ClusterProperty::getKey, ClusterProperty::getValue));\n//    String testBaseGcsDir = AcceptanceTestUtils.createTestBaseGcsDir(testId);\n//    String connectorJarUri = testBaseGcsDir + \"/connector.jar\";\n//    uploadConnectorJar(CONNECTOR_JAR_DIRECTORY, connectorJarPrefix, connectorJarUri);\n//\n//    String clusterName =\n//        createClusterIfNeeded(dataprocImageVersion, testId, properties, connectorJarUri);\n//    AcceptanceTestContext acceptanceTestContext =\n//        new AcceptanceTestContext(testId, clusterName, testBaseGcsDir, connectorJarUri);\n//    createBqDataset(acceptanceTestContext.bqDataset);\n//    return acceptanceTestContext;\n//  }\n//\n//  @Before\n//  public void refreshTestTableNames() {\n//    context.refreshTableNames();\n//  }\n//\n//  protected static void tearDown(AcceptanceTestContext context) throws Exception {\n//    if (context != null) {\n//      terminateCluster(context.clusterId);\n//      AcceptanceTestUtils.deleteGcsDir(context.testBaseGcsDir);\n//      deleteBqDatasetAndTables(context.bqDataset);\n//    }\n//  }\n//\n//  protected static String createClusterIfNeeded(\n//      String dataprocImageVersion,\n//      String testId,\n//      Map<String, String> properties,\n//      String connectorJarUri)\n//      throws Exception {\n//    String clusterName = generateClusterName(testId);\n//    cluster(\n//        client ->\n//            client\n//                .createClusterAsync(\n//                    PROJECT_ID,\n//                    REGION,\n//                    createCluster(clusterName, dataprocImageVersion, properties, connectorJarUri))\n//                .get());\n//    return clusterName;\n//  }\n//\n//  protected static void terminateCluster(String clusterName) throws Exception {\n//    cluster(client -> client.deleteClusterAsync(PROJECT_ID, REGION, clusterName).get());\n//  }\n//\n//  private static void cluster(ThrowingConsumer<ClusterControllerClient> command) throws Exception\n// {\n//    try (ClusterControllerClient clusterControllerClient =\n//        ClusterControllerClient.create(\n//            ClusterControllerSettings.newBuilder().setEndpoint(DATAPROC_ENDPOINT).build())) {\n//      command.accept(clusterControllerClient);\n//    }\n//  }\n//\n//  private static Cluster createCluster(\n//      String clusterName,\n//      String dataprocImageVersion,\n//      Map<String, String> properties,\n//      String connectorJarUri) {\n//    return Cluster.newBuilder()\n//        .setClusterName(clusterName)\n//        .setProjectId(PROJECT_ID)\n//        .setConfig(\n//            ClusterConfig.newBuilder()\n//                .setGceClusterConfig(\n//                    GceClusterConfig.newBuilder()\n//                        .setNetworkUri(\"default\")\n//                        .setInternalIpOnly(false)\n//                        .setZoneUri(REGION + \"-a\")\n//                        .putMetadata(\"SPARK_BQ_CONNECTOR_URL\", connectorJarUri))\n//                .setMasterConfig(\n//                    InstanceGroupConfig.newBuilder()\n//                        .setNumInstances(1)\n//                        .setMachineTypeUri(\"n1-standard-4\")\n//                        .setDiskConfig(\n//                            DiskConfig.newBuilder()\n//                                .setBootDiskType(\"pd-standard\")\n//                                .setBootDiskSizeGb(300)\n//                                .setNumLocalSsds(0)))\n//                .setWorkerConfig(\n//                    InstanceGroupConfig.newBuilder()\n//                        .setNumInstances(2)\n//                        .setMachineTypeUri(\"n1-standard-4\")\n//                        .setDiskConfig(\n//                            DiskConfig.newBuilder()\n//                                .setBootDiskType(\"pd-standard\")\n//                                .setBootDiskSizeGb(300)\n//                                .setNumLocalSsds(0)))\n//                .setEndpointConfig(\n//                    EndpointConfig.newBuilder().setEnableHttpPortAccess(true).build())\n//                .setSoftwareConfig(\n//                    SoftwareConfig.newBuilder()\n//                        .setImageVersion(dataprocImageVersion)\n//                        .putAllProperties(properties)))\n//        .build();\n//  }\n//\n//  @Test\n//  @Ignore\n//  public void testRead() throws Exception {\n//    String testName = \"test-read\";\n//    Job result =\n//        createAndRunPythonJob(\n//            testName,\n//            \"read_shakespeare.py\",\n//            null,\n//            Arrays.asList(context.getResultsDirUri(testName)),\n//            120);\n//\n//    String output = AcceptanceTestUtils.getCsv(context.getResultsDirUri(testName));\n//    assertThat(output.trim()).isEqualTo(\"spark,10\");\n//  }\n//\n//  @Test\n//  @Ignore\n//  public void writeStream() throws Exception {\n//    // TODO: Should be removed once streaming is supported in DSv2\n//    assumeTrue(\"Spark streaming is not supported by this connector\", sparkStreamingSupported);\n//    String testName = \"write-stream-test\";\n//    String jsonFileName = \"write_stream_data.json\";\n//    String jsonFileUri = context.testBaseGcsDir + \"/\" + testName + \"/json/\" + jsonFileName;\n//\n//    AcceptanceTestUtils.uploadToGcs(\n//        getClass().getResourceAsStream(\"/acceptance/\" + jsonFileName),\n//        jsonFileUri,\n//        \"application/json\");\n//\n//    Job result =\n//        createAndRunPythonJob(\n//            testName,\n//            \"write_stream.py\",\n//            null,\n//            Arrays.asList(\n//                context.testBaseGcsDir + \"/\" + testName + \"/json/\",\n//                context.bqDataset,\n//                context.bqStreamTable,\n//                AcceptanceTestUtils.BUCKET),\n//            120);\n//\n//    int numOfRows = getNumOfRowsOfBqTable(context.bqDataset, context.bqStreamTable);\n//    assertThat(numOfRows == 2);\n//  }\n//\n//  @Test\n//  @Ignore\n//  public void testBigNumeric() throws Exception {\n//    String testName = \"test-big-numeric\";\n//    Path pythonLibTargetDir = Paths.get(\"../../spark-bigquery-python-lib/target\");\n//    Path pythonLibZip =\n//        AcceptanceTestUtils.getArtifact(pythonLibTargetDir, \"spark-bigquery\", \".zip\");\n//    String zipFileUri =\n//        context.testBaseGcsDir + \"/\" + testName + \"/big_numeric_acceptance_test.zip\";\n//    AcceptanceTestUtils.uploadToGcs(\n//        new FileInputStream(pythonLibZip.toFile()), zipFileUri, \"application/zip\");\n//\n//    runBqQuery(\n//        String.format(\n//            AcceptanceTestConstants.BIGNUMERIC_TABLE_QUERY_TEMPLATE,\n//            context.bqDataset,\n//            context.bqTable));\n//\n//    String tableName = context.bqDataset + \".\" + context.bqTable;\n//\n//    Job result =\n//        createAndRunPythonJob(\n//            testName,\n//            \"big_numeric.py\",\n//            zipFileUri,\n//            Arrays.asList(tableName, context.getResultsDirUri(testName)),\n//            120);\n//\n//    String output = AcceptanceTestUtils.getCsv(context.getResultsDirUri(testName));\n//    assertThat(output.trim()).isEqualTo(MIN_BIG_NUMERIC + \",\" + MAX_BIG_NUMERIC);\n//  }\n//\n//  @Test\n//  public void testSparkDml_explicitTableCreation() throws Exception {\n//    String testName = \"spark-dml-explicit-table\";\n//\n//    Job result = createAndRunSparkSqlJob(testName, /* outputTable */ \"N/A\", /* duration */ 120);\n//    String output = AcceptanceTestUtils.getDriverOutput(result);\n//    assertThat(output.trim()).contains(\"spark\\t10\");\n//  }\n//\n//  @Test\n//  public void testSparkDml_createTableInDefaultDataset() throws Exception {\n//    String testName = \"spark-dml-create-table-in-default-dataset\";\n//\n//    testWithTableInDefaultDataset(testName);\n//  }\n//\n//  @Test\n//  public void testSparkDml_createTableAsSelectInDefaultDataset() throws Exception {\n//    String testName = \"spark-dml-create-table-as-select-in-default-dataset\";\n//\n//    testWithTableInDefaultDataset(testName);\n//  }\n//\n//  private void testWithTableInDefaultDataset(String testName) throws Exception {\n//    BigQuery bq = BigQueryOptions.getDefaultInstance().getService();\n//    Dataset defaultDataset = bq.getDataset(\"default\");\n//    assertWithMessage(\"This test assume that the a dataset named `default` exists in the project\")\n//        .that(defaultDataset)\n//        .isNotNull();\n//\n//    Job result = createAndRunSparkSqlJob(testName, /* outputTable */ \"N/A\", /* duration */ 120);\n//\n//    Table table = null;\n//    try {\n//      table = bq.getTable(\"default\", context.bqTable);\n//      assertThat(table).isNotNull();\n//      assertThat(table.getNumRows().intValue()).isEqualTo(1);\n//    } finally {\n//      if (table != null) {\n//        assertThat(table.delete()).isTrue();\n//      }\n//    }\n//  }\n//\n//  @Test\n//  public void testSparkDml_createTableInCustomDataset() throws Exception {\n//    String testName = \"spark-dml-custom-dataset\";\n//\n//    BigQuery bq = BigQueryOptions.getDefaultInstance().getService();\n//    Dataset defaultDataset = bq.getDataset(context.bqDataset);\n//    assertWithMessage(\n//            \"This test assume that the a dataset named `\"\n//                + context.bqDataset\n//                + \"` exists in the project\")\n//        .that(defaultDataset)\n//        .isNotNull();\n//\n//    Job result = createAndRunSparkSqlJob(testName, /* outputTable */ \"N/A\", /* duration */ 120);\n//\n//    Table table = null;\n//    try {\n//      table = bq.getTable(\"default\", context.bqTable);\n//      assertThat(table).isNotNull();\n//      assertThat(table.getNumRows().intValue()).isEqualTo(1);\n//    } finally {\n//      if (table != null) {\n//        assertThat(table.delete()).isTrue();\n//      }\n//    }\n//  }\n//\n//  private Job createAndRunPythonJob(\n//      String testName, String pythonFile, String pythonZipUri, List<String> args, long duration)\n//      throws Exception {\n//    AcceptanceTestUtils.uploadToGcs(\n//        getClass().getResourceAsStream(\"/acceptance/\" + pythonFile),\n//        context.getScriptUri(testName),\n//        \"text/x-python\");\n//\n//    Job job =\n//        Job.newBuilder()\n//            .setPlacement(JobPlacement.newBuilder().setClusterName(context.clusterId))\n//            .putLabels(\"test-name\", testName)\n//            .setPysparkJob(createPySparkJobBuilder(testName, pythonZipUri, args))\n//            .build();\n//\n//    return runAndWait(job, Duration.ofSeconds(duration));\n//  }\n//\n//  private PySparkJob.Builder createPySparkJobBuilder(\n//      String testName, String pythonZipUri, List<String> args) {\n//    PySparkJob.Builder builder =\n//        PySparkJob.newBuilder()\n//            .setMainPythonFileUri(context.getScriptUri(testName))\n//            .addJarFileUris(context.connectorJarUri);\n//\n//    if (pythonZipUri != null && !pythonZipUri.isEmpty()) {\n//      builder.addPythonFileUris(pythonZipUri);\n//      builder.addFileUris(pythonZipUri);\n//    }\n//\n//    if (args != null && !args.isEmpty()) {\n//      builder.addAllArgs(args);\n//    }\n//\n//    return builder;\n//  }\n//\n//  private Job createAndRunSparkSqlJob(String testName, String outputTable, long duration)\n//      throws Exception {\n//\n//    InputStream sqlScriptSourceStream =\n//        getClass().getResourceAsStream(\"/acceptance/\" + testName + \".sql\");\n//    assertWithMessage(\"Could not find SQL script for \" + testName + \".sql\")\n//        .that(sqlScriptSourceStream)\n//        .isNotNull();\n//    String sqlScriptSource =\n//        new String(ByteStreams.toByteArray(sqlScriptSourceStream), StandardCharsets.UTF_8);\n//\n//    String sqlScript =\n//        sqlScriptSource\n//            .replace(\"${DATASET}\", context.bqDataset)\n//            .replace(\"${TABLE}\", context.bqTable)\n//            .replace(\"${OUTPUT_TABLE}\", outputTable);\n//\n//    AcceptanceTestUtils.uploadToGcs(\n//        new ByteArrayInputStream(sqlScript.getBytes(StandardCharsets.UTF_8)),\n//        context.getScriptUri(testName),\n//        \"application/x-sql\");\n//\n//    Job job =\n//        Job.newBuilder()\n//            .setPlacement(JobPlacement.newBuilder().setClusterName(context.clusterId))\n//            .putLabels(\"test-name\", testName)\n//            .setSparkSqlJob(createSparkSqlJobBuilder(testName))\n//            .build();\n//\n//    return runAndWait(job, Duration.ofSeconds(duration));\n//  }\n//\n//  private SparkSqlJob.Builder createSparkSqlJobBuilder(String testName) {\n//    return SparkSqlJob.newBuilder()\n//        .setQueryFileUri(context.getScriptUri(testName))\n//        .addJarFileUris(context.connectorJarUri)\n//        .setLoggingConfig(\n//            LoggingConfig.newBuilder()\n//                .putDriverLogLevels(\"com\", LoggingConfig.Level.DEBUG)\n//                .putDriverLogLevels(\"io\", LoggingConfig.Level.DEBUG)\n//                .putDriverLogLevels(\"org\", LoggingConfig.Level.DEBUG)\n//                .putDriverLogLevels(\"net\", LoggingConfig.Level.DEBUG)\n//                .build())\n//        .putProperties(\"spark.sql.legacy.createHiveTableByDefault\", \"false\")\n//        .putProperties(\"spark.sql.sources.default\", \"bigquery\")\n//        .putProperties(\"spark.datasource.bigquery.writeMethod\", \"direct\");\n//  }\n//\n//  private Job runAndWait(Job job, Duration timeout) throws Exception {\n//    try (JobControllerClient jobControllerClient =\n//        JobControllerClient.create(\n//            JobControllerSettings.newBuilder().setEndpoint(DATAPROC_ENDPOINT).build())) {\n//      Job request = jobControllerClient.submitJob(PROJECT_ID, REGION, job);\n//      String jobId = request.getReference().getJobId();\n//      CompletableFuture<Job> finishedJobFuture =\n//          CompletableFuture.supplyAsync(\n//              () -> waitForJobCompletion(jobControllerClient, PROJECT_ID, REGION, jobId));\n//      Job jobInfo = finishedJobFuture.get(timeout.getSeconds(), TimeUnit.SECONDS);\n//      assertThat(jobInfo.getStatus().getState()).isEqualTo(JobStatus.State.DONE);\n//      return jobInfo;\n//    }\n//  }\n//\n//  Job waitForJobCompletion(\n//      JobControllerClient jobControllerClient, String projectId, String region, String jobId) {\n//    while (true) {\n//      // Poll the service periodically until the Job is in a finished state.\n//      Job jobInfo = jobControllerClient.getJob(projectId, region, jobId);\n//      switch (jobInfo.getStatus().getState()) {\n//        case DONE:\n//        case CANCELLED:\n//        case ERROR:\n//          return jobInfo;\n//        default:\n//          try {\n//            // Wait a second in between polling attempts.\n//            TimeUnit.SECONDS.sleep(1);\n//          } catch (InterruptedException e) {\n//            throw new RuntimeException(e);\n//          }\n//      }\n//    }\n//  }\n//\n//  @FunctionalInterface\n//  private interface ThrowingConsumer<T> {\n//    void accept(T t) throws Exception;\n//  }\n//\n//  protected static class ClusterProperty {\n//    private String key;\n//    private String value;\n//    private String marker;\n//\n//    private ClusterProperty(String key, String value, String marker) {\n//      this.key = key;\n//      this.value = value;\n//      this.marker = marker;\n//    }\n//\n//    protected static ClusterProperty of(String key, String value, String marker) {\n//      return new ClusterProperty(key, value, marker);\n//    }\n//\n//    public String getKey() {\n//      return key;\n//    }\n//\n//    public String getValue() {\n//      return value;\n//    }\n//\n//    public String getMarker() {\n//      return marker;\n//    }\n//  }\n// }\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.5-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark35DataprocImage22AcceptanceTest.java",
    "content": "/*\n * Copyright 2024 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\nimport java.util.Collections;\nimport org.junit.AfterClass;\nimport org.junit.BeforeClass;\n\npublic class Spark35DataprocImage22AcceptanceTest extends DataprocAcceptanceTestBase {\n\n  private static AcceptanceTestContext context;\n\n  public Spark35DataprocImage22AcceptanceTest() {\n    super(context, false);\n  }\n\n  @BeforeClass\n  public static void setup() throws Exception {\n    context =\n        DataprocAcceptanceTestBase.setup(\n            \"2.2-debian12\", \"spark-3.5-bigquery\", Collections.emptyList());\n  }\n\n  @AfterClass\n  public static void tearDown() throws Exception {\n    DataprocAcceptanceTestBase.tearDown(context);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.5-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark35DataprocImage22DisableConscryptAcceptanceTest.java",
    "content": "/*\n * Copyright 2024 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\nimport org.junit.AfterClass;\nimport org.junit.BeforeClass;\n\npublic class Spark35DataprocImage22DisableConscryptAcceptanceTest\n    extends DataprocAcceptanceTestBase {\n\n  private static AcceptanceTestContext context;\n\n  public Spark35DataprocImage22DisableConscryptAcceptanceTest() {\n    super(context, false);\n  }\n\n  @BeforeClass\n  public static void setup() throws Exception {\n    context =\n        DataprocAcceptanceTestBase.setup(\n            \"2.2-debian12\", \"spark-3.5-bigquery\", DISABLE_CONSCRYPT_LIST);\n  }\n\n  @AfterClass\n  public static void tearDown() throws Exception {\n    DataprocAcceptanceTestBase.tearDown(context);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.5-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark35ReadSheakspeareDataprocServerlessAcceptanceTest.java",
    "content": "/*\n * Copyright 2023 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\nimport org.junit.Ignore;\n\n@Ignore // Waiting for the serverless dataproc.sparkBqConnector.uri property\npublic class Spark35ReadSheakspeareDataprocServerlessAcceptanceTest\n    extends ReadSheakspeareDataprocServerlessAcceptanceTestBase {\n\n  public Spark35ReadSheakspeareDataprocServerlessAcceptanceTest() {\n    super(\"spark-3.5-bigquery\", \"2.2\");\n  }\n\n  // tests from superclass\n\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.5-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark35WriteStreamDataprocServerlessAcceptanceTest.java",
    "content": "/*\n * Copyright 2023 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\nimport org.junit.Ignore;\n\n@Ignore // spark-3.5-bigquery does not support streaming yet\npublic class Spark35WriteStreamDataprocServerlessAcceptanceTest\n    extends WriteStreamDataprocServerlessAcceptanceTestBase {\n\n  public Spark35WriteStreamDataprocServerlessAcceptanceTest() {\n    super(\"spark-3.5-bigquery\", \"2.2\");\n  }\n\n  // tests from superclass\n\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.5-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark35CatalogIntegrationTest.java",
    "content": "/*\n * Copyright 2025 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\npublic class Spark35CatalogIntegrationTest extends CatalogIntegrationTestBase {\n  // all tests from superclass\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.5-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark35DirectWriteIntegrationTest.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\nimport com.google.cloud.spark.bigquery.SparkBigQueryConfig;\nimport org.apache.spark.sql.types.DataTypes;\n\npublic class Spark35DirectWriteIntegrationTest extends WriteIntegrationTestBase {\n\n  public Spark35DirectWriteIntegrationTest() {\n    super(SparkBigQueryConfig.WriteMethod.DIRECT, DataTypes.TimestampNTZType);\n  }\n\n  // tests from superclass\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.5-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark35IndirectWriteIntegrationTest.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\nimport com.google.cloud.spark.bigquery.SparkBigQueryConfig;\nimport org.apache.spark.sql.types.DataTypes;\nimport org.junit.Before;\n\npublic class Spark35IndirectWriteIntegrationTest extends WriteIntegrationTestBase {\n\n  public Spark35IndirectWriteIntegrationTest() {\n    super(SparkBigQueryConfig.WriteMethod.INDIRECT, DataTypes.TimestampNTZType);\n  }\n\n  @Before\n  public void setParquetLoadBehaviour() {\n    // TODO: make this the default value\n    spark.conf().set(\"enableListInference\", \"true\");\n  }\n\n  // tests from superclass\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.5-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark35OpenLineageIntegrationTest.java",
    "content": "/*\n * Copyright 2024 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\npublic class Spark35OpenLineageIntegrationTest extends OpenLineageIntegrationTestBase {}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.5-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark35ReadByFormatIntegrationTest.java",
    "content": "/*\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\nimport java.util.Arrays;\nimport java.util.Collection;\nimport org.apache.spark.sql.types.DataTypes;\nimport org.junit.runner.RunWith;\nimport org.junit.runners.Parameterized;\n\n@RunWith(Parameterized.class)\npublic class Spark35ReadByFormatIntegrationTest extends ReadByFormatIntegrationTestBase {\n\n  @Parameterized.Parameters\n  public static Collection<String> data() {\n    return Arrays.asList(\"AVRO\", \"ARROW\");\n  }\n\n  public Spark35ReadByFormatIntegrationTest(String dataFormat) {\n    super(dataFormat, /* userProvidedSchemaAllowed */ false, DataTypes.TimestampNTZType);\n  }\n\n  // tests are from the super-class\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.5-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark35ReadFromQueryIntegrationTest.java",
    "content": "/*\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\npublic class Spark35ReadFromQueryIntegrationTest extends ReadFromQueryIntegrationTestBase {\n\n  public Spark35ReadFromQueryIntegrationTest() {\n    super(true);\n  }\n\n  // tests are from the super-class\n\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.5-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark35ReadIntegrationTest.java",
    "content": "/*\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\nimport org.apache.spark.sql.types.DataTypes;\n\npublic class Spark35ReadIntegrationTest extends ReadIntegrationTestBase {\n\n  public Spark35ReadIntegrationTest() {\n\n    super(/* userProvidedSchemaAllowed */ false, DataTypes.TimestampNTZType);\n  }\n\n  // tests are from the super-class\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.5-bigquery/src/test/resources/acceptance/spark-dml-create-table-as-select-in-default-dataset.sql",
    "content": "CREATE TABLE ${TABLE}_shakespeare OPTIONS (table='bigquery-public-data.samples.shakespeare');\n\n\nCREATE TABLE ${TABLE} AS\n  SELECT word, SUM(word_count) as word_count\n  FROM ${TABLE}_shakespeare\n  WHERE word='spark' GROUP BY word;\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.5-bigquery/src/test/resources/acceptance/spark-dml-create-table-in-default-dataset.sql",
    "content": "CREATE TABLE ${TABLE} (id int, data string);\n\nINSERT INTO ${TABLE} VALUES (1, 'one');\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.5-bigquery/src/test/resources/acceptance/spark-dml-custom-dataset.sql",
    "content": "CREATE DATABASE ${DATASET};\n\nCREATE TABLE ${DATASET}.${TABLE} (id int, data string);\n\nINSERT INTO ${DATASET}.${TABLE} VALUES (1, 'one');\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.5-bigquery/src/test/resources/acceptance/spark-dml-explicit-table.sql",
    "content": "CREATE TABLE default.${TABLE} OPTIONS (table='bigquery-public-data.samples.shakespeare');\n\nSELECT word, SUM(word_count) FROM default.${TABLE} WHERE word='spark' GROUP BY word;\n\n-- cleanup\nDROP TABLE default.${TABLE};\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.5-bigquery-lib/pom.xml",
    "content": "<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n  xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n  xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\">\n  <modelVersion>4.0.0</modelVersion>\n  <parent>\n    <groupId>com.google.cloud.spark</groupId>\n    <artifactId>spark-bigquery-dsv2-parent</artifactId>\n    <version>${revision}</version>\n    <relativePath>../spark-bigquery-dsv2-parent</relativePath>\n  </parent>\n\n  <artifactId>spark-3.5-bigquery-lib</artifactId>\n  <version>${revision}</version>\n  <name>Connector code for BigQuery DataSource v2 for Spark 3.5</name>\n  <properties>\n    <argLine>${jdk11plus.argLine}</argLine>\n    <toolchain.jdk.version>[11,12)</toolchain.jdk.version>\n    <spark.version>3.5.0</spark.version>\n    <scala.binary.version>2.13</scala.binary.version>\n    <shade.skip>true</shade.skip>\n  </properties>\n  <licenses>\n    <license>\n      <name>Apache License, Version 2.0</name>\n      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>\n      <distribution>repo</distribution>\n    </license>\n  </licenses>\n  <dependencies>\n    <dependency>\n      <groupId>${project.groupId}</groupId>\n      <artifactId>spark-3.4-bigquery-lib</artifactId>\n      <version>${project.version}</version>\n    </dependency>\n    <dependency>\n      <groupId>org.apache.spark</groupId>\n      <artifactId>spark-avro_${scala.binary.version}</artifactId>\n      <version>${spark.version}</version>\n      <scope>test</scope>\n    </dependency>\n  </dependencies>\n</project>\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.5-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/BigQueryCatalog.java",
    "content": "/*\n * Copyright 2025 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery;\n\nimport com.google.api.client.googleapis.json.GoogleJsonResponseException;\nimport com.google.cloud.bigquery.BigQueryException;\nimport com.google.cloud.bigquery.Dataset;\nimport com.google.cloud.bigquery.DatasetId;\nimport com.google.cloud.bigquery.DatasetInfo;\nimport com.google.cloud.bigquery.Schema;\nimport com.google.cloud.bigquery.TableDefinition;\nimport com.google.cloud.bigquery.TableId;\nimport com.google.cloud.bigquery.TableInfo;\nimport com.google.cloud.bigquery.connector.common.BigQueryClient;\nimport com.google.cloud.bigquery.connector.common.BigQueryConnectorException;\nimport com.google.cloud.spark.bigquery.v2.BigQueryIdentifier;\nimport com.google.cloud.spark.bigquery.v2.Spark35BigQueryTable;\nimport com.google.cloud.spark.bigquery.v2.Spark3Util;\nimport com.google.common.base.Preconditions;\nimport com.google.common.cache.Cache;\nimport com.google.common.cache.CacheBuilder;\nimport com.google.common.cache.CacheLoader;\nimport com.google.common.cache.LoadingCache;\nimport com.google.common.collect.ImmutableMap;\nimport com.google.common.collect.Streams;\nimport com.google.inject.Injector;\nimport java.util.Arrays;\nimport java.util.Map;\nimport java.util.Optional;\nimport java.util.ServiceLoader;\nimport java.util.concurrent.ExecutionException;\nimport java.util.concurrent.TimeUnit;\nimport java.util.stream.StreamSupport;\nimport org.apache.spark.sql.catalyst.analysis.NamespaceAlreadyExistsException;\nimport org.apache.spark.sql.catalyst.analysis.NoSuchNamespaceException;\nimport org.apache.spark.sql.catalyst.analysis.NoSuchTableException;\nimport org.apache.spark.sql.catalyst.analysis.NonEmptyNamespaceException;\nimport org.apache.spark.sql.catalyst.analysis.TableAlreadyExistsException;\nimport org.apache.spark.sql.connector.catalog.Identifier;\nimport org.apache.spark.sql.connector.catalog.NamespaceChange;\nimport org.apache.spark.sql.connector.catalog.SupportsNamespaces;\nimport org.apache.spark.sql.connector.catalog.Table;\nimport org.apache.spark.sql.connector.catalog.TableCatalog;\nimport org.apache.spark.sql.connector.catalog.TableChange;\nimport org.apache.spark.sql.connector.catalog.TableProvider;\nimport org.apache.spark.sql.connector.expressions.Transform;\nimport org.apache.spark.sql.sources.DataSourceRegister;\nimport org.apache.spark.sql.types.StructType;\nimport org.apache.spark.sql.util.CaseInsensitiveStringMap;\nimport org.slf4j.Logger;\nimport org.slf4j.LoggerFactory;\n\npublic class BigQueryCatalog implements TableCatalog, SupportsNamespaces {\n\n  private static final Logger logger = LoggerFactory.getLogger(BigQueryCatalog.class);\n  private static final String[] DEFAULT_NAMESPACE = {\"default\"};\n\n  private static final Cache<String, Table> identifierToTableCache =\n      CacheBuilder.newBuilder().expireAfterWrite(30, TimeUnit.MINUTES).maximumSize(1000).build();\n  private final LoadingCache<String[], Boolean> datasetExistenceCache =\n      CacheBuilder.newBuilder()\n          .maximumSize(1000)\n          .expireAfterWrite(15, TimeUnit.MINUTES)\n          .build(CacheLoader.from(this::bigQueryDatasetExists));\n  private TableProvider tableProvider;\n  private BigQueryClient bigQueryClient;\n  private SchemaConverters schemaConverters;\n  private Map<String, String> options;\n\n  @Override\n  public void initialize(String name, CaseInsensitiveStringMap caseInsensitiveStringMap) {\n    logger.info(\n        \"Initializing BigQuery table catalog [{}] with options: {}\",\n        name,\n        caseInsensitiveStringMap);\n    this.options = caseInsensitiveStringMap.asCaseSensitiveMap();\n\n    try {\n      Injector injector =\n          new InjectorBuilder()\n              .withOptions(caseInsensitiveStringMap.asCaseSensitiveMap())\n              .withTableIsMandatory(false)\n              .build();\n      tableProvider =\n          StreamSupport.stream(ServiceLoader.load(DataSourceRegister.class).spliterator(), false)\n              .filter(candidate -> candidate.shortName().equals(\"bigquery\"))\n              .map(candidate -> (TableProvider) candidate)\n              .findFirst()\n              .orElseThrow(\n                  () -> new IllegalStateException(\"Could not find a BigQuery TableProvider\"));\n      bigQueryClient = injector.getInstance(BigQueryClient.class);\n      schemaConverters =\n          SchemaConverters.from(\n              SchemaConvertersConfiguration.from(injector.getInstance(SparkBigQueryConfig.class)));\n      logger.info(\"BigQuery table catalog [{}] initialized successfully\", name);\n    } catch (Exception e) {\n      logger.error(\"Failed to initialize BigQuery catalog [{}]\", name, e);\n      throw new BigQueryConnectorException(\"Failed to initialize BigQuery catalog: \" + name, e);\n    }\n  }\n\n  @Override\n  public String name() {\n    return \"bigquery\";\n  }\n\n  @Override\n  public String[] defaultNamespace() {\n    return DEFAULT_NAMESPACE;\n  }\n\n  @Override\n  public Identifier[] listTables(String[] namespace) throws NoSuchNamespaceException {\n    Preconditions.checkNotNull(namespace, \"namespace cannot be null\");\n    Preconditions.checkArgument(namespace.length == 1, \"BigQuery supports only one namespace\");\n    logger.debug(\"list tables [{}])\", namespace[0]);\n    DatasetId datasetId = DatasetId.of(namespace[0]);\n    try {\n      return StreamSupport.stream(\n              bigQueryClient.listTables(datasetId, TableDefinition.Type.TABLE).spliterator(), false)\n          .map(com.google.cloud.bigquery.Table::getTableId)\n          .map(BigQueryIdentifier::of)\n          .toArray(BigQueryIdentifier[]::new);\n    } catch (BigQueryException e) {\n      if (e.getCause() != null && e.getCause() instanceof GoogleJsonResponseException) {\n        GoogleJsonResponseException gsre = (GoogleJsonResponseException) e.getCause();\n        if (gsre.getStatusCode() == 404) {\n          // the dataset does not exist\n          logger.debug(\"Dataset does not exist\", e);\n          throw new NoSuchNamespaceException(namespace);\n        }\n      }\n      throw new BigQueryConnectorException(\n          \"Error listing tables  in \" + Arrays.toString(namespace), e);\n    }\n  }\n\n  @Override\n  public Table loadTable(Identifier identifier) throws NoSuchTableException {\n    logger.debug(\"loading table [{}])\", format(identifier));\n    try {\n      if (!tableExists(identifier)) {\n        throw new NoSuchBigQueryTableException(identifier);\n      }\n      return identifierToTableCache.get(\n          identifier.toString(),\n          () ->\n              // TODO: reuse injector\n              Spark3Util.createBigQueryTableInstance(\n                  Spark35BigQueryTable::new, null, toLoadProperties(identifier)));\n    } catch (ExecutionException e) {\n      throw new BigQueryConnectorException(\"Problem loading table \" + identifier, e);\n    }\n  }\n\n  Map<String, String> toLoadProperties(Identifier identifier) {\n    ImmutableMap.Builder<String, String> result = ImmutableMap.builder();\n    Map<String, String> processedOptions = new java.util.HashMap<>(options);\n    if (processedOptions.containsKey(\"projectId\")) {\n      processedOptions.put(\"project\", processedOptions.remove(\"projectId\"));\n    }\n    result.putAll(processedOptions);\n    switch (identifier.namespace().length) {\n      case 1:\n        result.put(\"dataset\", identifier.namespace()[0]);\n        break;\n      case 2:\n        result.put(\"project\", identifier.namespace()[0]);\n        result.put(\"dataset\", identifier.namespace()[1]);\n        break;\n      default:\n        throw new IllegalArgumentException(\n            \"The identifier [\" + identifier + \"] is not recognized by BigQuery\");\n    }\n    result.put(\"table\", identifier.name());\n    return result.buildKeepingLast();\n  }\n\n  @Override\n  public void invalidateTable(Identifier identifier) {\n    logger.debug(\"invalidating table [{}])\", format(identifier));\n    throw new UnsupportedOperationException(\"Cannot invalidate table in BigQuery\");\n  }\n\n  @Override\n  public boolean tableExists(Identifier identifier) {\n    logger.debug(\"checking existence of table [{}])\", format(identifier));\n    return bigQueryClient.tableExists(toTableId(identifier));\n  }\n\n  TableInfo loadBigQueryTable(Identifier identifier) {\n    return bigQueryClient.getTable(toTableId(identifier));\n  }\n\n  Optional<com.google.api.services.bigquery.model.Table> loadBigQueryRestTable(\n      Identifier identifier) {\n    return bigQueryClient.getRestTable(toTableId(identifier));\n  }\n\n  @Override\n  public Table createTable(\n      Identifier identifier,\n      StructType structType,\n      Transform[] transforms,\n      Map<String, String> properties)\n      throws TableAlreadyExistsException, NoSuchNamespaceException {\n    logger.debug(\"creating table [{}])\", format(identifier));\n    if (tableExplicitlySet(properties)) {\n      logger.debug(\"Mapping Spark table to BigQuery table)\");\n      // As the table is mapped to an actual table in BigQuery, we are relying on the BigQuery\n      // schema\n      try {\n        return identifierToTableCache.get(\n            identifier.toString(),\n            () ->\n                Spark3Util.createBigQueryTableInstance(\n                    Spark35BigQueryTable::new, /* schema */ null, properties));\n      } catch (ExecutionException e) {\n        throw new BigQueryConnectorException(\"Error creating table \" + identifier, e);\n      }\n    }\n    Schema schema = schemaConverters.toBigQuerySchema(structType);\n    bigQueryClient.createTable(\n        toTableId(identifier),\n        schema,\n        BigQueryClient.CreateTableOptions.of(\n            Optional.empty(), ImmutableMap.of(), Optional.empty()));\n    ImmutableMap.Builder<String, String> getTableProperties =\n        ImmutableMap.<String, String>builder().putAll(properties);\n    // if the user provided an alternative table we do not want to ignore it\n    if (!tableExplicitlySet(properties)) {\n      getTableProperties.put(\"dataset\", identifier.namespace()[0]).put(\"table\", identifier.name());\n    }\n    // TODO: Use the table constructor directly using the catalog's injector\n    return tableProvider.getTable(structType, transforms, getTableProperties.buildKeepingLast());\n  }\n\n  private static boolean tableExplicitlySet(Map<String, String> properties) {\n    if (properties.containsKey(\"table\")) {\n      return true;\n    }\n    if (properties.containsKey(\"path\")) {\n      return true;\n    }\n    return false;\n  }\n\n  @Override\n  public Table alterTable(Identifier identifier, TableChange... tableChanges)\n      throws NoSuchTableException {\n    throw new UnsupportedOperationException(\"Cannot alter table in BigQuery\");\n  }\n\n  @Override\n  public boolean dropTable(Identifier identifier) {\n    logger.debug(\"dropping table [{}])\", format(identifier));\n    TableId tableId = toTableId(identifier);\n    if (!bigQueryClient.tableExists(tableId)) {\n      return false;\n    }\n    if (bigQueryClient.deleteTable(tableId)) {\n      identifierToTableCache.invalidate(identifier.toString());\n      return true;\n    }\n    return false;\n  }\n\n  @Override\n  public boolean purgeTable(Identifier ident) throws UnsupportedOperationException {\n    throw new UnsupportedOperationException(\"Cannot purge table in BigQuery\");\n  }\n\n  @Override\n  public void renameTable(Identifier oldIdent, Identifier newIdent)\n      throws NoSuchTableException, TableAlreadyExistsException {\n    throw new UnsupportedOperationException(\"Cannot rename table in BigQuery\");\n  }\n\n  private String format(Identifier identifier) {\n    return String.format(\"%s.%s\", Arrays.toString(identifier.namespace()), identifier.name());\n  }\n\n  static TableId toTableId(Identifier identifier) {\n    if (identifier.namespace().length == 1) {\n      return TableId.of(identifier.namespace()[0], identifier.name());\n    }\n    if (identifier.namespace().length == 2) {\n      return TableId.of(identifier.namespace()[0], identifier.namespace()[1], identifier.name());\n    }\n    throw new IllegalArgumentException(\n        \"The identifier [\" + identifier + \"] is not recognized by BigQuery\");\n  }\n\n  @Override\n  public String[][] listNamespaces() throws NoSuchNamespaceException {\n    if (bigQueryClient == null) {\n      throw new IllegalStateException(\"BigQuery catalog not properly initialized\");\n    }\n    try {\n      return Streams.stream(bigQueryClient.listDatasets())\n          .map(Dataset::getDatasetId)\n          .map(this::toNamespace)\n          .toArray(String[][]::new);\n    } catch (Exception e) {\n      logger.error(\"Error listing namespaces\", e);\n      throw new BigQueryConnectorException(\"Failed to list namespaces\", e);\n    }\n  }\n\n  private String[] toNamespace(DatasetId datasetId) {\n    return new String[] {datasetId.getDataset()};\n  }\n\n  private DatasetId toDatasetId(String[] namespace) {\n    switch (namespace.length) {\n      case 1:\n        return DatasetId.of(namespace[0]);\n      case 2:\n        return DatasetId.of(namespace[0], namespace[1]);\n      default:\n        throw new IllegalArgumentException(\n            \"The identifier [\" + Arrays.toString(namespace) + \"] is not recognized by BigQuery\");\n    }\n  }\n\n  // based on JDBCTableCatalog.listNamespaces(namespace)\n  @Override\n  public String[][] listNamespaces(String[] namespace) throws NoSuchNamespaceException {\n    switch (namespace.length) {\n      case 0:\n        return listNamespaces();\n      case 1:\n        if (namespaceExists(namespace)) {\n          return new String[0][];\n        }\n    }\n    // unsupported case\n    throw new NoSuchNamespaceException(namespace);\n  }\n\n  @Override\n  public boolean namespaceExists(String[] namespace) {\n    return datasetExistenceCache.getUnchecked(namespace);\n  }\n\n  private boolean bigQueryDatasetExists(String[] namespace) {\n    return bigQueryClient.datasetExists(toDatasetId(namespace));\n  }\n\n  @Override\n  public Map<String, String> loadNamespaceMetadata(String[] namespace)\n      throws NoSuchNamespaceException {\n    DatasetInfo dataset = bigQueryClient.getDataset(toDatasetId(namespace));\n    ImmutableMap.Builder<String, String> result = ImmutableMap.builder();\n    result.put(\"bigquery_location\", dataset.getLocation());\n    result.put(\"creationTime\", dataset.getCreationTime().toString());\n    Optional.ofNullable(dataset.getDescription())\n        .ifPresent(description -> result.put(\"comment\", description));\n    return result.build();\n  }\n\n  @Override\n  public void createNamespace(String[] namespace, Map<String, String> metadata)\n      throws NamespaceAlreadyExistsException {\n    Preconditions.checkArgument(\n        namespace.length == 1, \"BigQuery does not support nested namespaces\");\n    if (namespaceExists(namespace)) {\n      throw new NamespaceAlreadyExistsException(namespace);\n    }\n    bigQueryClient.createDataset(DatasetId.of(namespace[0]), metadata);\n  }\n\n  @Override\n  public void alterNamespace(String[] namespace, NamespaceChange... changes)\n      throws NoSuchNamespaceException {}\n\n  @Override\n  public boolean dropNamespace(String[] namespace, boolean cascade)\n      throws NoSuchNamespaceException, NonEmptyNamespaceException {\n    if (!namespaceExists(namespace)) {\n      throw new NoSuchNamespaceException(namespace);\n    }\n    if (!cascade && listTables(namespace).length > 0) {\n      throw new NonEmptyNamespaceException(namespace);\n    }\n    return bigQueryClient.deleteDataset(toDatasetId(namespace), cascade);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.5-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/NoSuchBigQueryTableException.java",
    "content": "/*\n * Copyright 2025 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery;\n\nimport org.apache.spark.sql.catalyst.analysis.NoSuchTableException;\nimport org.apache.spark.sql.connector.catalog.Identifier;\nimport scala.Option;\n\npublic class NoSuchBigQueryTableException extends NoSuchTableException {\n\n  public NoSuchBigQueryTableException(String db, String table) {\n    super(db, table);\n  }\n\n  public NoSuchBigQueryTableException(Identifier tableIdent) {\n    super(tableIdent);\n  }\n\n  public NoSuchBigQueryTableException(String message, Option<Throwable> cause) {\n    super(message, cause);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.5-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/BigQueryIdentifier.java",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.v2;\n\nimport com.google.cloud.bigquery.TableId;\nimport com.google.cloud.bigquery.connector.common.BigQueryUtil;\nimport org.apache.spark.sql.connector.catalog.Identifier;\n\npublic class BigQueryIdentifier implements Identifier {\n\n  private final TableId tableId;\n\n  public BigQueryIdentifier(TableId tableId) {\n    this.tableId = tableId;\n  }\n\n  public static BigQueryIdentifier of(TableId tableId) {\n    return new BigQueryIdentifier(tableId);\n  }\n\n  @Override\n  public String[] namespace() {\n    return tableId.getProject() == null\n        ? new String[] {tableId.getDataset()}\n        : new String[] {tableId.getProject(), tableId.getDataset()};\n  }\n\n  @Override\n  public String name() {\n    return tableId.getTable();\n  }\n\n  public TableId getTableId() {\n    return tableId;\n  }\n\n  @Override\n  public String toString() {\n    return \"BigQueryIdentifier{\" + \"tableId=\" + BigQueryUtil.friendlyTableName(tableId) + '}';\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.5-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/Spark35BigQueryTable.java",
    "content": "/*\n * Copyright 2025 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.v2;\n\nimport com.google.inject.Injector;\nimport java.util.function.Supplier;\nimport org.apache.spark.sql.SaveMode;\nimport org.apache.spark.sql.connector.write.LogicalWriteInfo;\nimport org.apache.spark.sql.connector.write.WriteBuilder;\nimport org.apache.spark.sql.types.StructType;\n\npublic class Spark35BigQueryTable extends Spark34BigQueryTable {\n  public Spark35BigQueryTable(Injector injector, Supplier<StructType> schemaSupplier) {\n    super(injector, schemaSupplier);\n  }\n\n  @Override\n  public WriteBuilder newWriteBuilder(LogicalWriteInfo info) {\n    // SaveMode is not provided by spark 3, it is handled by the DataFrameWriter\n    // The case where mode == SaveMode.Ignore is handled by Spark, so we can assume we can get the\n    // context\n    return new Spark35BigQueryWriteBuilder(injector, info, SaveMode.Append);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.5-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/Spark35BigQueryTableProvider.java",
    "content": "/*\n * Copyright 2023 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.v2;\n\nimport java.util.Map;\nimport org.apache.spark.sql.connector.catalog.Table;\nimport org.apache.spark.sql.connector.expressions.Transform;\nimport org.apache.spark.sql.types.StructType;\n\npublic class Spark35BigQueryTableProvider extends Spark34BigQueryTableProvider {\n  // empty\n  @Override\n  public Table getTable(\n      StructType schema, Transform[] partitioning, Map<String, String> properties) {\n    return Spark3Util.createBigQueryTableInstance(Spark35BigQueryTable::new, schema, properties);\n  }\n\n  @Override\n  protected Table getBigQueryTableInternal(Map<String, String> properties) {\n    return Spark3Util.createBigQueryTableInstance(Spark35BigQueryTable::new, null, properties);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.5-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/Spark35BigQueryWriteBuilder.java",
    "content": "/*\n * Copyright 2025 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.v2;\n\nimport com.google.cloud.spark.bigquery.write.CreatableRelationProviderHelper;\nimport com.google.inject.Injector;\nimport org.apache.spark.sql.SaveMode;\nimport org.apache.spark.sql.connector.write.LogicalWriteInfo;\nimport org.apache.spark.sql.connector.write.V1Write;\nimport org.apache.spark.sql.connector.write.Write;\nimport org.apache.spark.sql.connector.write.streaming.StreamingWrite;\nimport org.apache.spark.sql.sources.InsertableRelation;\n\npublic class Spark35BigQueryWriteBuilder extends BigQueryWriteBuilder implements Write, V1Write {\n\n  public Spark35BigQueryWriteBuilder(Injector injector, LogicalWriteInfo info, SaveMode mode) {\n    super(injector, info, mode);\n  }\n\n  @Override\n  public Write build() {\n    return this;\n  }\n\n  @Override\n  public InsertableRelation toInsertableRelation() {\n    return new CreatableRelationProviderHelper()\n        .createBigQueryInsertableRelationFromInjector(info.schema(), mode, injector);\n  }\n\n  @Override\n  public StreamingWrite toStreaming() {\n    return super.buildForStreaming();\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.5-bigquery-lib/src/main/resources/META-INF/services/com.google.cloud.spark.bigquery.TypeConverter",
    "content": "com.google.cloud.spark.bigquery.v2.TimestampNTZTypeConverter\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-3.5-bigquery-lib/src/test/resources/META-INF/services/org.apache.spark.sql.sources.DataSourceRegister",
    "content": "com.google.cloud.spark.bigquery.v2.Spark35BigQueryTableProvider\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-4.0-bigquery/pom.xml",
    "content": "<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n  xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n  xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\">\n  <modelVersion>4.0.0</modelVersion>\n  <parent>\n    <groupId>com.google.cloud.spark</groupId>\n    <artifactId>spark-bigquery-dsv2-parent</artifactId>\n    <version>${revision}</version>\n    <relativePath>../spark-bigquery-dsv2-parent</relativePath>\n  </parent>\n\n  <artifactId>spark-4.0-bigquery</artifactId>\n  <version>${revision}</version>\n  <name>BigQuery DataSource v2 for Spark 4.0</name>\n  <properties>\n    <maven.compiler.release>17</maven.compiler.release>\n    <scala.binary.version>2.13</scala.binary.version>\n    <spark.version>4.0.0</spark.version>\n    <shade.skip>false</shade.skip>\n    <toolchain.jdk.version>[17,18)</toolchain.jdk.version>\n    <argLine>${jdk11plus.argLine}</argLine>\n  </properties>\n  <licenses>\n    <license>\n      <name>Apache License, Version 2.0</name>\n      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>\n      <distribution>repo</distribution>\n    </license>\n  </licenses>\n  <dependencyManagement>\n    <dependencies>\n      <dependency>\n        <groupId>org.apache.arrow</groupId>\n        <artifactId>arrow-bom</artifactId>\n        <version>${arrow.spark4.version}</version>\n        <scope>import</scope>\n        <type>pom</type>\n      </dependency>\n      <dependency>\n        <groupId>org.apache.arrow</groupId>\n        <artifactId>arrow-memory-netty-buffer-patch</artifactId>\n        <version>${arrow.spark4.version}</version>\n      </dependency>\n    </dependencies>\n  </dependencyManagement>\n  <dependencies>\n    <dependency>\n      <groupId>${project.groupId}</groupId>\n      <artifactId>spark-4.0-bigquery-lib</artifactId>\n      <version>${project.version}</version>\n    </dependency>\n    <dependency>\n      <groupId>org.apache.spark</groupId>\n      <artifactId>spark-avro_2.13</artifactId>\n      <version>${spark.version}</version>\n      <scope>test</scope>\n    </dependency>\n  </dependencies>\n</project>\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-4.0-bigquery/src/build/resources/spark-bigquery-connector.properties",
    "content": "connector.version=${project.version}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-4.0-bigquery/src/main/resources/META-INF/services/org.apache.spark.sql.sources.DataSourceRegister",
    "content": "com.google.cloud.spark.bigquery.v2.Spark40BigQueryTableProvider\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-4.0-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark40BigNumericDataprocServerlessAcceptanceTest.java",
    "content": "/*\n * Copyright 3.03 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\nimport org.junit.Ignore;\n\n@Ignore // Waiting for the serverless spark 4.0 runtime\npublic class Spark40BigNumericDataprocServerlessAcceptanceTest\n    extends BigNumericDataprocServerlessAcceptanceTestBase {\n\n  public Spark40BigNumericDataprocServerlessAcceptanceTest() {\n    super(\"spark-4.0-bigquery\", \"3.0\");\n  }\n\n  // tests from superclass\n\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-4.0-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark40CatalogAcceptanceTest.java",
    "content": "/// *\n// * Copyright 2018 Google Inc. All Rights Reserved.\n// *\n// * Licensed under the Apache License, Version 2.0 (the \"License\");\n// * you may not use this file except in compliance with the License.\n// * You may obtain a copy of the License at\n// *\n// *       http://www.apache.org/licenses/LICENSE-2.0\n// *\n// * Unless required by applicable law or agreed to in writing, software\n// * distributed under the License is distributed on an \"AS IS\" BASIS,\n// * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// * See the License for the specific language governing permissions and\n// * limitations under the License.\n// */\n// package com.google.cloud.spark.bigquery.acceptance;\n//\n// import static\n// com.google.cloud.spark.bigquery.acceptance.AcceptanceTestConstants.CONNECTOR_JAR_DIRECTORY;\n// import static\n// com.google.cloud.spark.bigquery.acceptance.AcceptanceTestConstants.DATAPROC_ENDPOINT;\n// import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestConstants.MAX_BIG_NUMERIC;\n// import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestConstants.MIN_BIG_NUMERIC;\n// import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestConstants.PROJECT_ID;\n// import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestConstants.REGION;\n// import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils.createBqDataset;\n// import static\n// com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils.deleteBqDatasetAndTables;\n// import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils.generateClusterName;\n// import static\n// com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils.getNumOfRowsOfBqTable;\n// import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils.runBqQuery;\n// import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils.uploadConnectorJar;\n// import static com.google.common.truth.Truth.assertThat;\n// import static com.google.common.truth.Truth.assertWithMessage;\n// import static org.junit.Assume.assumeTrue;\n//\n// import com.google.cloud.bigquery.BigQuery;\n// import com.google.cloud.bigquery.BigQueryOptions;\n// import com.google.cloud.bigquery.Dataset;\n// import com.google.cloud.bigquery.Table;\n// import com.google.cloud.dataproc.v1.*;\n// import com.google.common.collect.ImmutableList;\n// import com.google.common.io.ByteStreams;\n// import java.io.*;\n// import java.nio.charset.StandardCharsets;\n// import java.nio.file.Path;\n// import java.nio.file.Paths;\n// import java.time.Duration;\n// import java.util.Arrays;\n// import java.util.List;\n// import java.util.Map;\n// import java.util.concurrent.CompletableFuture;\n// import java.util.concurrent.TimeUnit;\n// import java.util.stream.Collectors;\n// import org.junit.Before;\n// import org.junit.Ignore;\n// import org.junit.Test;\n//\n// public class CatalogIntegrationTest {\n//\n//  protected static final ClusterProperty DISABLE_CONSCRYPT =\n//      ClusterProperty.of(\"dataproc:dataproc.conscrypt.provider.enable\", \"false\", \"nc\");\n//  protected static final ImmutableList<ClusterProperty> DISABLE_CONSCRYPT_LIST =\n//      ImmutableList.<ClusterProperty>builder().add(DISABLE_CONSCRYPT).build();\n//\n//  private AcceptanceTestContext context;\n//  private boolean sparkStreamingSupported;\n//\n//  protected CatalogIntegrationTest(AcceptanceTestContext context) {\n//    this(context, true);\n//  }\n//\n//  protected CatalogIntegrationTest(\n//      AcceptanceTestContext context, boolean sparkStreamingSupported) {\n//    this.context = context;\n//    this.sparkStreamingSupported = sparkStreamingSupported;\n//  }\n//\n//  protected static AcceptanceTestContext setup(\n//      String dataprocImageVersion,\n//      String connectorJarPrefix,\n//      List<ClusterProperty> clusterProperties)\n//      throws Exception {\n//    String clusterPropertiesMarkers =\n//        clusterProperties.isEmpty()\n//            ? \"\"\n//            : clusterProperties.stream()\n//                .map(ClusterProperty::getMarker)\n//                .collect(Collectors.joining(\"-\", \"-\", \"\"));\n//    String testId =\n//        String.format(\n//            \"%s-%s%s%s\",\n//            System.currentTimeMillis(),\n//            dataprocImageVersion.charAt(0),\n//            dataprocImageVersion.charAt(2),\n//            clusterPropertiesMarkers);\n//    Map<String, String> properties =\n//        clusterProperties.stream()\n//            .collect(Collectors.toMap(ClusterProperty::getKey, ClusterProperty::getValue));\n//    String testBaseGcsDir = AcceptanceTestUtils.createTestBaseGcsDir(testId);\n//    String connectorJarUri = testBaseGcsDir + \"/connector.jar\";\n//    uploadConnectorJar(CONNECTOR_JAR_DIRECTORY, connectorJarPrefix, connectorJarUri);\n//\n//    String clusterName =\n//        createClusterIfNeeded(dataprocImageVersion, testId, properties, connectorJarUri);\n//    AcceptanceTestContext acceptanceTestContext =\n//        new AcceptanceTestContext(testId, clusterName, testBaseGcsDir, connectorJarUri);\n//    createBqDataset(acceptanceTestContext.bqDataset);\n//    return acceptanceTestContext;\n//  }\n//\n//  @Before\n//  public void refreshTestTableNames() {\n//    context.refreshTableNames();\n//  }\n//\n//  protected static void tearDown(AcceptanceTestContext context) throws Exception {\n//    if (context != null) {\n//      terminateCluster(context.clusterId);\n//      AcceptanceTestUtils.deleteGcsDir(context.testBaseGcsDir);\n//      deleteBqDatasetAndTables(context.bqDataset);\n//    }\n//  }\n//\n//  protected static String createClusterIfNeeded(\n//      String dataprocImageVersion,\n//      String testId,\n//      Map<String, String> properties,\n//      String connectorJarUri)\n//      throws Exception {\n//    String clusterName = generateClusterName(testId);\n//    cluster(\n//        client ->\n//            client\n//                .createClusterAsync(\n//                    PROJECT_ID,\n//                    REGION,\n//                    createCluster(clusterName, dataprocImageVersion, properties, connectorJarUri))\n//                .get());\n//    return clusterName;\n//  }\n//\n//  protected static void terminateCluster(String clusterName) throws Exception {\n//    cluster(client -> client.deleteClusterAsync(PROJECT_ID, REGION, clusterName).get());\n//  }\n//\n//  private static void cluster(ThrowingConsumer<ClusterControllerClient> command) throws Exception\n// {\n//    try (ClusterControllerClient clusterControllerClient =\n//        ClusterControllerClient.create(\n//            ClusterControllerSettings.newBuilder().setEndpoint(DATAPROC_ENDPOINT).build())) {\n//      command.accept(clusterControllerClient);\n//    }\n//  }\n//\n//  private static Cluster createCluster(\n//      String clusterName,\n//      String dataprocImageVersion,\n//      Map<String, String> properties,\n//      String connectorJarUri) {\n//    return Cluster.newBuilder()\n//        .setClusterName(clusterName)\n//        .setProjectId(PROJECT_ID)\n//        .setConfig(\n//            ClusterConfig.newBuilder()\n//                .setGceClusterConfig(\n//                    GceClusterConfig.newBuilder()\n//                        .setNetworkUri(\"default\")\n//                        .setInternalIpOnly(false)\n//                        .setZoneUri(REGION + \"-a\")\n//                        .putMetadata(\"SPARK_BQ_CONNECTOR_URL\", connectorJarUri))\n//                .setMasterConfig(\n//                    InstanceGroupConfig.newBuilder()\n//                        .setNumInstances(1)\n//                        .setMachineTypeUri(\"n1-standard-4\")\n//                        .setDiskConfig(\n//                            DiskConfig.newBuilder()\n//                                .setBootDiskType(\"pd-standard\")\n//                                .setBootDiskSizeGb(300)\n//                                .setNumLocalSsds(0)))\n//                .setWorkerConfig(\n//                    InstanceGroupConfig.newBuilder()\n//                        .setNumInstances(2)\n//                        .setMachineTypeUri(\"n1-standard-4\")\n//                        .setDiskConfig(\n//                            DiskConfig.newBuilder()\n//                                .setBootDiskType(\"pd-standard\")\n//                                .setBootDiskSizeGb(300)\n//                                .setNumLocalSsds(0)))\n//                .setEndpointConfig(\n//                    EndpointConfig.newBuilder().setEnableHttpPortAccess(true).build())\n//                .setSoftwareConfig(\n//                    SoftwareConfig.newBuilder()\n//                        .setImageVersion(dataprocImageVersion)\n//                        .putAllProperties(properties)))\n//        .build();\n//  }\n//\n//  @Test\n//  @Ignore\n//  public void testRead() throws Exception {\n//    String testName = \"test-read\";\n//    Job result =\n//        createAndRunPythonJob(\n//            testName,\n//            \"read_shakespeare.py\",\n//            null,\n//            Arrays.asList(context.getResultsDirUri(testName)),\n//            120);\n//\n//    String output = AcceptanceTestUtils.getCsv(context.getResultsDirUri(testName));\n//    assertThat(output.trim()).isEqualTo(\"spark,10\");\n//  }\n//\n//  @Test\n//  @Ignore\n//  public void writeStream() throws Exception {\n//    // TODO: Should be removed once streaming is supported in DSv2\n//    assumeTrue(\"Spark streaming is not supported by this connector\", sparkStreamingSupported);\n//    String testName = \"write-stream-test\";\n//    String jsonFileName = \"write_stream_data.json\";\n//    String jsonFileUri = context.testBaseGcsDir + \"/\" + testName + \"/json/\" + jsonFileName;\n//\n//    AcceptanceTestUtils.uploadToGcs(\n//        getClass().getResourceAsStream(\"/acceptance/\" + jsonFileName),\n//        jsonFileUri,\n//        \"application/json\");\n//\n//    Job result =\n//        createAndRunPythonJob(\n//            testName,\n//            \"write_stream.py\",\n//            null,\n//            Arrays.asList(\n//                context.testBaseGcsDir + \"/\" + testName + \"/json/\",\n//                context.bqDataset,\n//                context.bqStreamTable,\n//                AcceptanceTestUtils.BUCKET),\n//            120);\n//\n//    int numOfRows = getNumOfRowsOfBqTable(context.bqDataset, context.bqStreamTable);\n//    assertThat(numOfRows == 2);\n//  }\n//\n//  @Test\n//  @Ignore\n//  public void testBigNumeric() throws Exception {\n//    String testName = \"test-big-numeric\";\n//    Path pythonLibTargetDir = Paths.get(\"../../spark-bigquery-python-lib/target\");\n//    Path pythonLibZip =\n//        AcceptanceTestUtils.getArtifact(pythonLibTargetDir, \"spark-bigquery\", \".zip\");\n//    String zipFileUri =\n//        context.testBaseGcsDir + \"/\" + testName + \"/big_numeric_acceptance_test.zip\";\n//    AcceptanceTestUtils.uploadToGcs(\n//        new FileInputStream(pythonLibZip.toFile()), zipFileUri, \"application/zip\");\n//\n//    runBqQuery(\n//        String.format(\n//            AcceptanceTestConstants.BIGNUMERIC_TABLE_QUERY_TEMPLATE,\n//            context.bqDataset,\n//            context.bqTable));\n//\n//    String tableName = context.bqDataset + \".\" + context.bqTable;\n//\n//    Job result =\n//        createAndRunPythonJob(\n//            testName,\n//            \"big_numeric.py\",\n//            zipFileUri,\n//            Arrays.asList(tableName, context.getResultsDirUri(testName)),\n//            120);\n//\n//    String output = AcceptanceTestUtils.getCsv(context.getResultsDirUri(testName));\n//    assertThat(output.trim()).isEqualTo(MIN_BIG_NUMERIC + \",\" + MAX_BIG_NUMERIC);\n//  }\n//\n//  @Test\n//  public void testSparkDml_explicitTableCreation() throws Exception {\n//    String testName = \"spark-dml-explicit-table\";\n//\n//    Job result = createAndRunSparkSqlJob(testName, /* outputTable */ \"N/A\", /* duration */ 120);\n//    String output = AcceptanceTestUtils.getDriverOutput(result);\n//    assertThat(output.trim()).contains(\"spark\\t10\");\n//  }\n//\n//  @Test\n//  public void testSparkDml_createTableInDefaultDataset() throws Exception {\n//    String testName = \"spark-dml-create-table-in-default-dataset\";\n//\n//    testWithTableInDefaultDataset(testName);\n//  }\n//\n//  @Test\n//  public void testSparkDml_createTableAsSelectInDefaultDataset() throws Exception {\n//    String testName = \"spark-dml-create-table-as-select-in-default-dataset\";\n//\n//    testWithTableInDefaultDataset(testName);\n//  }\n//\n//  private void testWithTableInDefaultDataset(String testName) throws Exception {\n//    BigQuery bq = BigQueryOptions.getDefaultInstance().getService();\n//    Dataset defaultDataset = bq.getDataset(\"default\");\n//    assertWithMessage(\"This test assume that the a dataset named `default` exists in the project\")\n//        .that(defaultDataset)\n//        .isNotNull();\n//\n//    Job result = createAndRunSparkSqlJob(testName, /* outputTable */ \"N/A\", /* duration */ 120);\n//\n//    Table table = null;\n//    try {\n//      table = bq.getTable(\"default\", context.bqTable);\n//      assertThat(table).isNotNull();\n//      assertThat(table.getNumRows().intValue()).isEqualTo(1);\n//    } finally {\n//      if (table != null) {\n//        assertThat(table.delete()).isTrue();\n//      }\n//    }\n//  }\n//\n//  @Test\n//  public void testSparkDml_createTableInCustomDataset() throws Exception {\n//    String testName = \"spark-dml-custom-dataset\";\n//\n//    BigQuery bq = BigQueryOptions.getDefaultInstance().getService();\n//    Dataset defaultDataset = bq.getDataset(context.bqDataset);\n//    assertWithMessage(\n//            \"This test assume that the a dataset named `\"\n//                + context.bqDataset\n//                + \"` exists in the project\")\n//        .that(defaultDataset)\n//        .isNotNull();\n//\n//    Job result = createAndRunSparkSqlJob(testName, /* outputTable */ \"N/A\", /* duration */ 120);\n//\n//    Table table = null;\n//    try {\n//      table = bq.getTable(\"default\", context.bqTable);\n//      assertThat(table).isNotNull();\n//      assertThat(table.getNumRows().intValue()).isEqualTo(1);\n//    } finally {\n//      if (table != null) {\n//        assertThat(table.delete()).isTrue();\n//      }\n//    }\n//  }\n//\n//  private Job createAndRunPythonJob(\n//      String testName, String pythonFile, String pythonZipUri, List<String> args, long duration)\n//      throws Exception {\n//    AcceptanceTestUtils.uploadToGcs(\n//        getClass().getResourceAsStream(\"/acceptance/\" + pythonFile),\n//        context.getScriptUri(testName),\n//        \"text/x-python\");\n//\n//    Job job =\n//        Job.newBuilder()\n//            .setPlacement(JobPlacement.newBuilder().setClusterName(context.clusterId))\n//            .putLabels(\"test-name\", testName)\n//            .setPysparkJob(createPySparkJobBuilder(testName, pythonZipUri, args))\n//            .build();\n//\n//    return runAndWait(job, Duration.ofSeconds(duration));\n//  }\n//\n//  private PySparkJob.Builder createPySparkJobBuilder(\n//      String testName, String pythonZipUri, List<String> args) {\n//    PySparkJob.Builder builder =\n//        PySparkJob.newBuilder()\n//            .setMainPythonFileUri(context.getScriptUri(testName))\n//            .addJarFileUris(context.connectorJarUri);\n//\n//    if (pythonZipUri != null && !pythonZipUri.isEmpty()) {\n//      builder.addPythonFileUris(pythonZipUri);\n//      builder.addFileUris(pythonZipUri);\n//    }\n//\n//    if (args != null && !args.isEmpty()) {\n//      builder.addAllArgs(args);\n//    }\n//\n//    return builder;\n//  }\n//\n//  private Job createAndRunSparkSqlJob(String testName, String outputTable, long duration)\n//      throws Exception {\n//\n//    InputStream sqlScriptSourceStream =\n//        getClass().getResourceAsStream(\"/acceptance/\" + testName + \".sql\");\n//    assertWithMessage(\"Could not find SQL script for \" + testName + \".sql\")\n//        .that(sqlScriptSourceStream)\n//        .isNotNull();\n//    String sqlScriptSource =\n//        new String(ByteStreams.toByteArray(sqlScriptSourceStream), StandardCharsets.UTF_8);\n//\n//    String sqlScript =\n//        sqlScriptSource\n//            .replace(\"${DATASET}\", context.bqDataset)\n//            .replace(\"${TABLE}\", context.bqTable)\n//            .replace(\"${OUTPUT_TABLE}\", outputTable);\n//\n//    AcceptanceTestUtils.uploadToGcs(\n//        new ByteArrayInputStream(sqlScript.getBytes(StandardCharsets.UTF_8)),\n//        context.getScriptUri(testName),\n//        \"application/x-sql\");\n//\n//    Job job =\n//        Job.newBuilder()\n//            .setPlacement(JobPlacement.newBuilder().setClusterName(context.clusterId))\n//            .putLabels(\"test-name\", testName)\n//            .setSparkSqlJob(createSparkSqlJobBuilder(testName))\n//            .build();\n//\n//    return runAndWait(job, Duration.ofSeconds(duration));\n//  }\n//\n//  private SparkSqlJob.Builder createSparkSqlJobBuilder(String testName) {\n//    return SparkSqlJob.newBuilder()\n//        .setQueryFileUri(context.getScriptUri(testName))\n//        .addJarFileUris(context.connectorJarUri)\n//        .setLoggingConfig(\n//            LoggingConfig.newBuilder()\n//                .putDriverLogLevels(\"com\", LoggingConfig.Level.DEBUG)\n//                .putDriverLogLevels(\"io\", LoggingConfig.Level.DEBUG)\n//                .putDriverLogLevels(\"org\", LoggingConfig.Level.DEBUG)\n//                .putDriverLogLevels(\"net\", LoggingConfig.Level.DEBUG)\n//                .build())\n//        .putProperties(\"spark.sql.legacy.createHiveTableByDefault\", \"false\")\n//        .putProperties(\"spark.sql.sources.default\", \"bigquery\")\n//        .putProperties(\"spark.datasource.bigquery.writeMethod\", \"direct\");\n//  }\n//\n//  private Job runAndWait(Job job, Duration timeout) throws Exception {\n//    try (JobControllerClient jobControllerClient =\n//        JobControllerClient.create(\n//            JobControllerSettings.newBuilder().setEndpoint(DATAPROC_ENDPOINT).build())) {\n//      Job request = jobControllerClient.submitJob(PROJECT_ID, REGION, job);\n//      String jobId = request.getReference().getJobId();\n//      CompletableFuture<Job> finishedJobFuture =\n//          CompletableFuture.supplyAsync(\n//              () -> waitForJobCompletion(jobControllerClient, PROJECT_ID, REGION, jobId));\n//      Job jobInfo = finishedJobFuture.get(timeout.getSeconds(), TimeUnit.SECONDS);\n//      assertThat(jobInfo.getStatus().getState()).isEqualTo(JobStatus.State.DONE);\n//      return jobInfo;\n//    }\n//  }\n//\n//  Job waitForJobCompletion(\n//      JobControllerClient jobControllerClient, String projectId, String region, String jobId) {\n//    while (true) {\n//      // Poll the service periodically until the Job is in a finished state.\n//      Job jobInfo = jobControllerClient.getJob(projectId, region, jobId);\n//      switch (jobInfo.getStatus().getState()) {\n//        case DONE:\n//        case CANCELLED:\n//        case ERROR:\n//          return jobInfo;\n//        default:\n//          try {\n//            // Wait a second in between polling attempts.\n//            TimeUnit.SECONDS.sleep(1);\n//          } catch (InterruptedException e) {\n//            throw new RuntimeException(e);\n//          }\n//      }\n//    }\n//  }\n//\n//  @FunctionalInterface\n//  private interface ThrowingConsumer<T> {\n//    void accept(T t) throws Exception;\n//  }\n//\n//  protected static class ClusterProperty {\n//    private String key;\n//    private String value;\n//    private String marker;\n//\n//    private ClusterProperty(String key, String value, String marker) {\n//      this.key = key;\n//      this.value = value;\n//      this.marker = marker;\n//    }\n//\n//    protected static ClusterProperty of(String key, String value, String marker) {\n//      return new ClusterProperty(key, value, marker);\n//    }\n//\n//    public String getKey() {\n//      return key;\n//    }\n//\n//    public String getValue() {\n//      return value;\n//    }\n//\n//    public String getMarker() {\n//      return marker;\n//    }\n//  }\n// }\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-4.0-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark40DataprocImage30AcceptanceTest.java",
    "content": "/*\n * Copyright 3.04 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\nimport java.util.Collections;\nimport org.junit.AfterClass;\nimport org.junit.BeforeClass;\n\npublic class Spark40DataprocImage30AcceptanceTest extends DataprocAcceptanceTestBase {\n\n  private static AcceptanceTestContext context;\n\n  public Spark40DataprocImage30AcceptanceTest() {\n    super(context, false);\n  }\n\n  @BeforeClass\n  public static void setup() throws Exception {\n    context =\n        DataprocAcceptanceTestBase.setup(\n            \"3.0-debian12\", \"spark-4.0-bigquery\", Collections.emptyList());\n  }\n\n  @AfterClass\n  public static void tearDown() throws Exception {\n    DataprocAcceptanceTestBase.tearDown(context);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-4.0-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark40DataprocImage30DisableConscryptAcceptanceTest.java",
    "content": "/*\n * Copyright 3.04 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\nimport org.junit.AfterClass;\nimport org.junit.BeforeClass;\n\npublic class Spark40DataprocImage30DisableConscryptAcceptanceTest\n    extends DataprocAcceptanceTestBase {\n\n  private static AcceptanceTestContext context;\n\n  public Spark40DataprocImage30DisableConscryptAcceptanceTest() {\n    super(context, false);\n  }\n\n  @BeforeClass\n  public static void setup() throws Exception {\n    context =\n        DataprocAcceptanceTestBase.setup(\n            \"3.0-debian12\", \"spark-4.0-bigquery\", DISABLE_CONSCRYPT_LIST);\n  }\n\n  @AfterClass\n  public static void tearDown() throws Exception {\n    DataprocAcceptanceTestBase.tearDown(context);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-4.0-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark40ReadSheakspeareDataprocServerlessAcceptanceTest.java",
    "content": "/*\n * Copyright 3.03 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\nimport org.junit.Ignore;\n\n@Ignore(\"Waiting for the serverless spark 4.0 runtime\")\npublic class Spark40ReadSheakspeareDataprocServerlessAcceptanceTest\n    extends ReadSheakspeareDataprocServerlessAcceptanceTestBase {\n\n  public Spark40ReadSheakspeareDataprocServerlessAcceptanceTest() {\n    super(\"spark-4.0-bigquery\", \"3.0\");\n  }\n\n  // tests from superclass\n\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-4.0-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark40WriteStreamDataprocServerlessAcceptanceTest.java",
    "content": "/*\n * Copyright 3.03 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\nimport org.junit.Ignore;\n\n@Ignore(\"Waiting for the serverless spark 4.0 runtime, no stream support yet\")\npublic class Spark40WriteStreamDataprocServerlessAcceptanceTest\n    extends WriteStreamDataprocServerlessAcceptanceTestBase {\n\n  public Spark40WriteStreamDataprocServerlessAcceptanceTest() {\n    super(\"spark-4.0-bigquery\", \"3.0\");\n  }\n\n  // tests from superclass\n\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-4.0-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark40CatalogIntegrationTest.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\npublic class Spark40CatalogIntegrationTest extends CatalogIntegrationTestBase {\n  // all tests from superclass\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-4.0-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark40DirectWriteIntegrationTest.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\nimport com.google.cloud.spark.bigquery.SparkBigQueryConfig;\nimport org.apache.spark.sql.types.DataTypes;\n\npublic class Spark40DirectWriteIntegrationTest extends WriteIntegrationTestBase {\n\n  public Spark40DirectWriteIntegrationTest() {\n    super(SparkBigQueryConfig.WriteMethod.DIRECT, DataTypes.TimestampNTZType);\n  }\n\n  // tests from superclass\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-4.0-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark40IndirectWriteIntegrationTest.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\nimport com.google.cloud.spark.bigquery.SparkBigQueryConfig;\nimport org.apache.spark.sql.types.DataTypes;\nimport org.junit.Before;\n\npublic class Spark40IndirectWriteIntegrationTest extends WriteIntegrationTestBase {\n\n  public Spark40IndirectWriteIntegrationTest() {\n    super(SparkBigQueryConfig.WriteMethod.INDIRECT, DataTypes.TimestampNTZType);\n  }\n\n  @Before\n  public void setParquetLoadBehaviour() {\n    // TODO: make this the default value\n    spark.conf().set(\"enableListInference\", \"true\");\n  }\n\n  // tests from superclass\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-4.0-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark40OpenLineageIntegrationTest.java",
    "content": "/*\n * Copyright 2024 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\npublic class Spark40OpenLineageIntegrationTest extends OpenLineageIntegrationTestBase {}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-4.0-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark40ReadByFormatIntegrationTest.java",
    "content": "/*\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\nimport org.apache.spark.sql.types.DataTypes;\n\npublic class Spark40ReadByFormatIntegrationTest extends ReadByFormatIntegrationTestBase {\n\n  public Spark40ReadByFormatIntegrationTest() {\n    super(\"ARROW\", /* userProvidedSchemaAllowed */ false, DataTypes.TimestampNTZType);\n  }\n\n  // tests are from the super-class\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-4.0-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark40ReadFromQueryIntegrationTest.java",
    "content": "/*\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\npublic class Spark40ReadFromQueryIntegrationTest extends ReadFromQueryIntegrationTestBase {\n\n  public Spark40ReadFromQueryIntegrationTest() {\n    super(true);\n  }\n\n  // tests are from the super-class\n\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-4.0-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark40ReadIntegrationTest.java",
    "content": "/*\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\nimport org.apache.spark.sql.types.DataTypes;\n\npublic class Spark40ReadIntegrationTest extends ReadIntegrationTestBase {\n\n  public Spark40ReadIntegrationTest() {\n\n    super(/* userProvidedSchemaAllowed */ false, DataTypes.TimestampNTZType);\n  }\n\n  // tests are from the super-class\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-4.0-bigquery/src/test/resources/acceptance/spark-dml-create-table-as-select-in-default-dataset.sql",
    "content": "CREATE TABLE ${TABLE}_shakespeare OPTIONS (table='bigquery-public-data.samples.shakespeare');\n\n\nCREATE TABLE ${TABLE} AS\n  SELECT word, SUM(word_count) as word_count\n  FROM ${TABLE}_shakespeare\n  WHERE word='spark' GROUP BY word;\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-4.0-bigquery/src/test/resources/acceptance/spark-dml-create-table-in-default-dataset.sql",
    "content": "CREATE TABLE ${TABLE} (id int, data string);\n\nINSERT INTO ${TABLE} VALUES (1, 'one');\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-4.0-bigquery/src/test/resources/acceptance/spark-dml-custom-dataset.sql",
    "content": "CREATE DATABASE ${DATASET};\n\nCREATE TABLE ${DATASET}.${TABLE} (id int, data string);\n\nINSERT INTO ${DATASET}.${TABLE} VALUES (1, 'one');\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-4.0-bigquery/src/test/resources/acceptance/spark-dml-explicit-table.sql",
    "content": "CREATE TABLE default.${TABLE} OPTIONS (table='bigquery-public-data.samples.shakespeare');\n\nSELECT word, SUM(word_count) FROM default.${TABLE} WHERE word='spark' GROUP BY word;\n\n-- cleanup\nDROP TABLE default.${TABLE};\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-4.0-bigquery-lib/pom.xml",
    "content": "<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n  xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n  xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\">\n  <modelVersion>4.0.0</modelVersion>\n  <parent>\n    <groupId>com.google.cloud.spark</groupId>\n    <artifactId>spark-bigquery-dsv2-parent</artifactId>\n    <version>${revision}</version>\n    <relativePath>../spark-bigquery-dsv2-parent</relativePath>\n  </parent>\n\n  <artifactId>spark-4.0-bigquery-lib</artifactId>\n  <version>${revision}</version>\n  <name>Connector code for BigQuery DataSource v2 for Spark 4.0</name>\n  <properties>\n    <maven.compiler.release>17</maven.compiler.release>\n    <spark.version>4.0.0</spark.version>\n    <scala.binary.version>2.13</scala.binary.version>\n    <shade.skip>true</shade.skip>\n    <toolchain.jdk.version>[17,18)</toolchain.jdk.version>\n    <argLine>${jdk11plus.argLine}</argLine>\n  </properties>\n  <licenses>\n    <license>\n      <name>Apache License, Version 2.0</name>\n      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>\n      <distribution>repo</distribution>\n    </license>\n  </licenses>\n  <dependencyManagement>\n    <dependencies>\n      <dependency>\n        <groupId>org.apache.arrow</groupId>\n        <artifactId>arrow-bom</artifactId>\n        <version>${arrow.spark4.version}</version>\n        <scope>import</scope>\n        <type>pom</type>\n      </dependency>\n      <dependency>\n        <groupId>org.apache.arrow</groupId>\n        <artifactId>arrow-memory-netty-buffer-patch</artifactId>\n        <version>${arrow.spark4.version}</version>\n      </dependency>\n    </dependencies>\n  </dependencyManagement>\n  <dependencies>\n    <dependency>\n      <groupId>${project.groupId}</groupId>\n      <artifactId>spark-3.5-bigquery-lib</artifactId>\n      <version>${project.parent.version}</version>\n    </dependency>\n    <dependency>\n      <groupId>org.apache.spark</groupId>\n      <artifactId>spark-avro_2.13</artifactId>\n      <version>${spark.version}</version>\n      <scope>test</scope>\n    </dependency>\n  </dependencies>\n</project>\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-4.0-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/Spark40BigQueryTable.java",
    "content": "/*\n * Copyright 2025 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.v2;\n\nimport com.google.inject.Injector;\nimport java.util.function.Supplier;\nimport org.apache.spark.sql.SaveMode;\nimport org.apache.spark.sql.connector.write.LogicalWriteInfo;\nimport org.apache.spark.sql.connector.write.WriteBuilder;\nimport org.apache.spark.sql.types.StructType;\n\npublic class Spark40BigQueryTable extends Spark35BigQueryTable {\n  public Spark40BigQueryTable(Injector injector, Supplier<StructType> schemaSupplier) {\n    super(injector, schemaSupplier);\n  }\n\n  @Override\n  public WriteBuilder newWriteBuilder(LogicalWriteInfo info) {\n    // SaveMode is not provided by spark 3, it is handled by the DataFrameWriter\n    // The case where mode == SaveMode.Ignore is handled by Spark, so we can assume we can get the\n    // context\n    return new Spark40BigQueryWriteBuilder(injector, info, SaveMode.Append);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-4.0-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/Spark40BigQueryTableProvider.java",
    "content": "/*\n * Copyright 2023 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.v2;\n\nimport java.util.Map;\nimport org.apache.spark.sql.connector.catalog.Table;\nimport org.apache.spark.sql.connector.expressions.Transform;\nimport org.apache.spark.sql.types.StructType;\n\npublic class Spark40BigQueryTableProvider extends Spark35BigQueryTableProvider {\n  // empty\n  @Override\n  public Table getTable(\n      StructType schema, Transform[] partitioning, Map<String, String> properties) {\n    return Spark3Util.createBigQueryTableInstance(Spark40BigQueryTable::new, schema, properties);\n  }\n\n  @Override\n  protected Table getBigQueryTableInternal(Map<String, String> properties) {\n    return Spark3Util.createBigQueryTableInstance(Spark40BigQueryTable::new, null, properties);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-4.0-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/Spark40BigQueryWriteBuilder.java",
    "content": "/*\n * Copyright 2025 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.v2;\n\nimport com.google.inject.Injector;\nimport org.apache.spark.sql.SaveMode;\nimport org.apache.spark.sql.connector.write.LogicalWriteInfo;\nimport org.apache.spark.sql.connector.write.V1Write;\nimport org.apache.spark.sql.connector.write.Write;\n\npublic class Spark40BigQueryWriteBuilder extends Spark35BigQueryWriteBuilder\n    implements Write, V1Write {\n\n  public Spark40BigQueryWriteBuilder(Injector injector, LogicalWriteInfo info, SaveMode mode) {\n    super(injector, info, mode);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-4.0-bigquery-lib/src/main/resources/META-INF/services/com.google.cloud.spark.bigquery.TypeConverter",
    "content": "com.google.cloud.spark.bigquery.v2.TimestampNTZTypeConverter\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-4.0-bigquery-lib/src/test/resources/META-INF/services/org.apache.spark.sql.sources.DataSourceRegister",
    "content": "com.google.cloud.spark.bigquery.v2.Spark40BigQueryTableProvider\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-4.1-bigquery/pom.xml",
    "content": "<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n  xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n  xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\">\n  <modelVersion>4.0.0</modelVersion>\n  <parent>\n    <groupId>com.google.cloud.spark</groupId>\n    <artifactId>spark-bigquery-dsv2-parent</artifactId>\n    <version>${revision}</version>\n    <relativePath>../spark-bigquery-dsv2-parent</relativePath>\n  </parent>\n\n  <artifactId>spark-4.1-bigquery</artifactId>\n  <version>${revision}-preview</version>\n  <name>BigQuery DataSource v2 for Spark 4.1</name>\n  <properties>\n    <maven.compiler.release>17</maven.compiler.release>\n    <scala.binary.version>2.13</scala.binary.version>\n    <spark.version>4.1.0</spark.version>\n    <shade.skip>false</shade.skip>\n    <toolchain.jdk.version>[17,18)</toolchain.jdk.version>\n    <argLine>${jdk11plus.argLine}</argLine>\n  </properties>\n  <licenses>\n    <license>\n      <name>Apache License, Version 2.0</name>\n      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>\n      <distribution>repo</distribution>\n    </license>\n  </licenses>\n  <dependencyManagement>\n    <dependencies>\n      <dependency>\n        <groupId>org.apache.arrow</groupId>\n        <artifactId>arrow-bom</artifactId>\n        <version>${arrow.spark4.version}</version>\n        <scope>import</scope>\n        <type>pom</type>\n      </dependency>\n      <dependency>\n        <groupId>org.apache.arrow</groupId>\n        <artifactId>arrow-memory-netty-buffer-patch</artifactId>\n        <version>${arrow.spark4.version}</version>\n      </dependency>\n    </dependencies>\n  </dependencyManagement>\n  <dependencies>\n    <dependency>\n      <groupId>${project.groupId}</groupId>\n      <artifactId>spark-4.1-bigquery-lib</artifactId>\n      <version>${project.version}</version>\n    </dependency>\n    <dependency>\n      <groupId>org.apache.spark</groupId>\n      <artifactId>spark-avro_2.13</artifactId>\n      <version>${spark.version}</version>\n      <scope>test</scope>\n    </dependency>\n  </dependencies>\n</project>\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-4.1-bigquery/src/build/resources/spark-bigquery-connector.properties",
    "content": "connector.version=${project.version}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-4.1-bigquery/src/main/resources/META-INF/services/org.apache.spark.sql.sources.DataSourceRegister",
    "content": "com.google.cloud.spark.bigquery.v2.Spark41BigQueryTableProvider\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-4.1-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark41BigNumericDataprocServerlessAcceptanceTest.java",
    "content": "/*\n * Copyright 3.03 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\nimport org.junit.Ignore;\n\n@Ignore // Waiting for the serverless spark 4.0 runtime\npublic class Spark41BigNumericDataprocServerlessAcceptanceTest\n    extends BigNumericDataprocServerlessAcceptanceTestBase {\n\n  public Spark41BigNumericDataprocServerlessAcceptanceTest() {\n    super(\"spark-4.1-bigquery\", \"3.0\");\n  }\n\n  // tests from superclass\n\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-4.1-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark41CatalogAcceptanceTest.java",
    "content": "/// *\n// * Copyright 2018 Google Inc. All Rights Reserved.\n// *\n// * Licensed under the Apache License, Version 2.0 (the \"License\");\n// * you may not use this file except in compliance with the License.\n// * You may obtain a copy of the License at\n// *\n// *       http://www.apache.org/licenses/LICENSE-2.0\n// *\n// * Unless required by applicable law or agreed to in writing, software\n// * distributed under the License is distributed on an \"AS IS\" BASIS,\n// * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// * See the License for the specific language governing permissions and\n// * limitations under the License.\n// */\n// package com.google.cloud.spark.bigquery.acceptance;\n//\n// import static\n// com.google.cloud.spark.bigquery.acceptance.AcceptanceTestConstants.CONNECTOR_JAR_DIRECTORY;\n// import static\n// com.google.cloud.spark.bigquery.acceptance.AcceptanceTestConstants.DATAPROC_ENDPOINT;\n// import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestConstants.MAX_BIG_NUMERIC;\n// import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestConstants.MIN_BIG_NUMERIC;\n// import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestConstants.PROJECT_ID;\n// import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestConstants.REGION;\n// import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils.createBqDataset;\n// import static\n// com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils.deleteBqDatasetAndTables;\n// import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils.generateClusterName;\n// import static\n// com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils.getNumOfRowsOfBqTable;\n// import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils.runBqQuery;\n// import static com.google.cloud.spark.bigquery.acceptance.AcceptanceTestUtils.uploadConnectorJar;\n// import static com.google.common.truth.Truth.assertThat;\n// import static com.google.common.truth.Truth.assertWithMessage;\n// import static org.junit.Assume.assumeTrue;\n//\n// import com.google.cloud.bigquery.BigQuery;\n// import com.google.cloud.bigquery.BigQueryOptions;\n// import com.google.cloud.bigquery.Dataset;\n// import com.google.cloud.bigquery.Table;\n// import com.google.cloud.dataproc.v1.*;\n// import com.google.common.collect.ImmutableList;\n// import com.google.common.io.ByteStreams;\n// import java.io.*;\n// import java.nio.charset.StandardCharsets;\n// import java.nio.file.Path;\n// import java.nio.file.Paths;\n// import java.time.Duration;\n// import java.util.Arrays;\n// import java.util.List;\n// import java.util.Map;\n// import java.util.concurrent.CompletableFuture;\n// import java.util.concurrent.TimeUnit;\n// import java.util.stream.Collectors;\n// import org.junit.Before;\n// import org.junit.Ignore;\n// import org.junit.Test;\n//\n// public class CatalogIntegrationTest {\n//\n//  protected static final ClusterProperty DISABLE_CONSCRYPT =\n//      ClusterProperty.of(\"dataproc:dataproc.conscrypt.provider.enable\", \"false\", \"nc\");\n//  protected static final ImmutableList<ClusterProperty> DISABLE_CONSCRYPT_LIST =\n//      ImmutableList.<ClusterProperty>builder().add(DISABLE_CONSCRYPT).build();\n//\n//  private AcceptanceTestContext context;\n//  private boolean sparkStreamingSupported;\n//\n//  protected CatalogIntegrationTest(AcceptanceTestContext context) {\n//    this(context, true);\n//  }\n//\n//  protected CatalogIntegrationTest(\n//      AcceptanceTestContext context, boolean sparkStreamingSupported) {\n//    this.context = context;\n//    this.sparkStreamingSupported = sparkStreamingSupported;\n//  }\n//\n//  protected static AcceptanceTestContext setup(\n//      String dataprocImageVersion,\n//      String connectorJarPrefix,\n//      List<ClusterProperty> clusterProperties)\n//      throws Exception {\n//    String clusterPropertiesMarkers =\n//        clusterProperties.isEmpty()\n//            ? \"\"\n//            : clusterProperties.stream()\n//                .map(ClusterProperty::getMarker)\n//                .collect(Collectors.joining(\"-\", \"-\", \"\"));\n//    String testId =\n//        String.format(\n//            \"%s-%s%s%s\",\n//            System.currentTimeMillis(),\n//            dataprocImageVersion.charAt(0),\n//            dataprocImageVersion.charAt(2),\n//            clusterPropertiesMarkers);\n//    Map<String, String> properties =\n//        clusterProperties.stream()\n//            .collect(Collectors.toMap(ClusterProperty::getKey, ClusterProperty::getValue));\n//    String testBaseGcsDir = AcceptanceTestUtils.createTestBaseGcsDir(testId);\n//    String connectorJarUri = testBaseGcsDir + \"/connector.jar\";\n//    uploadConnectorJar(CONNECTOR_JAR_DIRECTORY, connectorJarPrefix, connectorJarUri);\n//\n//    String clusterName =\n//        createClusterIfNeeded(dataprocImageVersion, testId, properties, connectorJarUri);\n//    AcceptanceTestContext acceptanceTestContext =\n//        new AcceptanceTestContext(testId, clusterName, testBaseGcsDir, connectorJarUri);\n//    createBqDataset(acceptanceTestContext.bqDataset);\n//    return acceptanceTestContext;\n//  }\n//\n//  @Before\n//  public void refreshTestTableNames() {\n//    context.refreshTableNames();\n//  }\n//\n//  protected static void tearDown(AcceptanceTestContext context) throws Exception {\n//    if (context != null) {\n//      terminateCluster(context.clusterId);\n//      AcceptanceTestUtils.deleteGcsDir(context.testBaseGcsDir);\n//      deleteBqDatasetAndTables(context.bqDataset);\n//    }\n//  }\n//\n//  protected static String createClusterIfNeeded(\n//      String dataprocImageVersion,\n//      String testId,\n//      Map<String, String> properties,\n//      String connectorJarUri)\n//      throws Exception {\n//    String clusterName = generateClusterName(testId);\n//    cluster(\n//        client ->\n//            client\n//                .createClusterAsync(\n//                    PROJECT_ID,\n//                    REGION,\n//                    createCluster(clusterName, dataprocImageVersion, properties, connectorJarUri))\n//                .get());\n//    return clusterName;\n//  }\n//\n//  protected static void terminateCluster(String clusterName) throws Exception {\n//    cluster(client -> client.deleteClusterAsync(PROJECT_ID, REGION, clusterName).get());\n//  }\n//\n//  private static void cluster(ThrowingConsumer<ClusterControllerClient> command) throws Exception\n// {\n//    try (ClusterControllerClient clusterControllerClient =\n//        ClusterControllerClient.create(\n//            ClusterControllerSettings.newBuilder().setEndpoint(DATAPROC_ENDPOINT).build())) {\n//      command.accept(clusterControllerClient);\n//    }\n//  }\n//\n//  private static Cluster createCluster(\n//      String clusterName,\n//      String dataprocImageVersion,\n//      Map<String, String> properties,\n//      String connectorJarUri) {\n//    return Cluster.newBuilder()\n//        .setClusterName(clusterName)\n//        .setProjectId(PROJECT_ID)\n//        .setConfig(\n//            ClusterConfig.newBuilder()\n//                .setGceClusterConfig(\n//                    GceClusterConfig.newBuilder()\n//                        .setNetworkUri(\"default\")\n//                        .setInternalIpOnly(false)\n//                        .setZoneUri(REGION + \"-a\")\n//                        .putMetadata(\"SPARK_BQ_CONNECTOR_URL\", connectorJarUri))\n//                .setMasterConfig(\n//                    InstanceGroupConfig.newBuilder()\n//                        .setNumInstances(1)\n//                        .setMachineTypeUri(\"n1-standard-4\")\n//                        .setDiskConfig(\n//                            DiskConfig.newBuilder()\n//                                .setBootDiskType(\"pd-standard\")\n//                                .setBootDiskSizeGb(300)\n//                                .setNumLocalSsds(0)))\n//                .setWorkerConfig(\n//                    InstanceGroupConfig.newBuilder()\n//                        .setNumInstances(2)\n//                        .setMachineTypeUri(\"n1-standard-4\")\n//                        .setDiskConfig(\n//                            DiskConfig.newBuilder()\n//                                .setBootDiskType(\"pd-standard\")\n//                                .setBootDiskSizeGb(300)\n//                                .setNumLocalSsds(0)))\n//                .setEndpointConfig(\n//                    EndpointConfig.newBuilder().setEnableHttpPortAccess(true).build())\n//                .setSoftwareConfig(\n//                    SoftwareConfig.newBuilder()\n//                        .setImageVersion(dataprocImageVersion)\n//                        .putAllProperties(properties)))\n//        .build();\n//  }\n//\n//  @Test\n//  @Ignore\n//  public void testRead() throws Exception {\n//    String testName = \"test-read\";\n//    Job result =\n//        createAndRunPythonJob(\n//            testName,\n//            \"read_shakespeare.py\",\n//            null,\n//            Arrays.asList(context.getResultsDirUri(testName)),\n//            120);\n//\n//    String output = AcceptanceTestUtils.getCsv(context.getResultsDirUri(testName));\n//    assertThat(output.trim()).isEqualTo(\"spark,10\");\n//  }\n//\n//  @Test\n//  @Ignore\n//  public void writeStream() throws Exception {\n//    // TODO: Should be removed once streaming is supported in DSv2\n//    assumeTrue(\"Spark streaming is not supported by this connector\", sparkStreamingSupported);\n//    String testName = \"write-stream-test\";\n//    String jsonFileName = \"write_stream_data.json\";\n//    String jsonFileUri = context.testBaseGcsDir + \"/\" + testName + \"/json/\" + jsonFileName;\n//\n//    AcceptanceTestUtils.uploadToGcs(\n//        getClass().getResourceAsStream(\"/acceptance/\" + jsonFileName),\n//        jsonFileUri,\n//        \"application/json\");\n//\n//    Job result =\n//        createAndRunPythonJob(\n//            testName,\n//            \"write_stream.py\",\n//            null,\n//            Arrays.asList(\n//                context.testBaseGcsDir + \"/\" + testName + \"/json/\",\n//                context.bqDataset,\n//                context.bqStreamTable,\n//                AcceptanceTestUtils.BUCKET),\n//            120);\n//\n//    int numOfRows = getNumOfRowsOfBqTable(context.bqDataset, context.bqStreamTable);\n//    assertThat(numOfRows == 2);\n//  }\n//\n//  @Test\n//  @Ignore\n//  public void testBigNumeric() throws Exception {\n//    String testName = \"test-big-numeric\";\n//    Path pythonLibTargetDir = Paths.get(\"../../spark-bigquery-python-lib/target\");\n//    Path pythonLibZip =\n//        AcceptanceTestUtils.getArtifact(pythonLibTargetDir, \"spark-bigquery\", \".zip\");\n//    String zipFileUri =\n//        context.testBaseGcsDir + \"/\" + testName + \"/big_numeric_acceptance_test.zip\";\n//    AcceptanceTestUtils.uploadToGcs(\n//        new FileInputStream(pythonLibZip.toFile()), zipFileUri, \"application/zip\");\n//\n//    runBqQuery(\n//        String.format(\n//            AcceptanceTestConstants.BIGNUMERIC_TABLE_QUERY_TEMPLATE,\n//            context.bqDataset,\n//            context.bqTable));\n//\n//    String tableName = context.bqDataset + \".\" + context.bqTable;\n//\n//    Job result =\n//        createAndRunPythonJob(\n//            testName,\n//            \"big_numeric.py\",\n//            zipFileUri,\n//            Arrays.asList(tableName, context.getResultsDirUri(testName)),\n//            120);\n//\n//    String output = AcceptanceTestUtils.getCsv(context.getResultsDirUri(testName));\n//    assertThat(output.trim()).isEqualTo(MIN_BIG_NUMERIC + \",\" + MAX_BIG_NUMERIC);\n//  }\n//\n//  @Test\n//  public void testSparkDml_explicitTableCreation() throws Exception {\n//    String testName = \"spark-dml-explicit-table\";\n//\n//    Job result = createAndRunSparkSqlJob(testName, /* outputTable */ \"N/A\", /* duration */ 120);\n//    String output = AcceptanceTestUtils.getDriverOutput(result);\n//    assertThat(output.trim()).contains(\"spark\\t10\");\n//  }\n//\n//  @Test\n//  public void testSparkDml_createTableInDefaultDataset() throws Exception {\n//    String testName = \"spark-dml-create-table-in-default-dataset\";\n//\n//    testWithTableInDefaultDataset(testName);\n//  }\n//\n//  @Test\n//  public void testSparkDml_createTableAsSelectInDefaultDataset() throws Exception {\n//    String testName = \"spark-dml-create-table-as-select-in-default-dataset\";\n//\n//    testWithTableInDefaultDataset(testName);\n//  }\n//\n//  private void testWithTableInDefaultDataset(String testName) throws Exception {\n//    BigQuery bq = BigQueryOptions.getDefaultInstance().getService();\n//    Dataset defaultDataset = bq.getDataset(\"default\");\n//    assertWithMessage(\"This test assume that the a dataset named `default` exists in the project\")\n//        .that(defaultDataset)\n//        .isNotNull();\n//\n//    Job result = createAndRunSparkSqlJob(testName, /* outputTable */ \"N/A\", /* duration */ 120);\n//\n//    Table table = null;\n//    try {\n//      table = bq.getTable(\"default\", context.bqTable);\n//      assertThat(table).isNotNull();\n//      assertThat(table.getNumRows().intValue()).isEqualTo(1);\n//    } finally {\n//      if (table != null) {\n//        assertThat(table.delete()).isTrue();\n//      }\n//    }\n//  }\n//\n//  @Test\n//  public void testSparkDml_createTableInCustomDataset() throws Exception {\n//    String testName = \"spark-dml-custom-dataset\";\n//\n//    BigQuery bq = BigQueryOptions.getDefaultInstance().getService();\n//    Dataset defaultDataset = bq.getDataset(context.bqDataset);\n//    assertWithMessage(\n//            \"This test assume that the a dataset named `\"\n//                + context.bqDataset\n//                + \"` exists in the project\")\n//        .that(defaultDataset)\n//        .isNotNull();\n//\n//    Job result = createAndRunSparkSqlJob(testName, /* outputTable */ \"N/A\", /* duration */ 120);\n//\n//    Table table = null;\n//    try {\n//      table = bq.getTable(\"default\", context.bqTable);\n//      assertThat(table).isNotNull();\n//      assertThat(table.getNumRows().intValue()).isEqualTo(1);\n//    } finally {\n//      if (table != null) {\n//        assertThat(table.delete()).isTrue();\n//      }\n//    }\n//  }\n//\n//  private Job createAndRunPythonJob(\n//      String testName, String pythonFile, String pythonZipUri, List<String> args, long duration)\n//      throws Exception {\n//    AcceptanceTestUtils.uploadToGcs(\n//        getClass().getResourceAsStream(\"/acceptance/\" + pythonFile),\n//        context.getScriptUri(testName),\n//        \"text/x-python\");\n//\n//    Job job =\n//        Job.newBuilder()\n//            .setPlacement(JobPlacement.newBuilder().setClusterName(context.clusterId))\n//            .putLabels(\"test-name\", testName)\n//            .setPysparkJob(createPySparkJobBuilder(testName, pythonZipUri, args))\n//            .build();\n//\n//    return runAndWait(job, Duration.ofSeconds(duration));\n//  }\n//\n//  private PySparkJob.Builder createPySparkJobBuilder(\n//      String testName, String pythonZipUri, List<String> args) {\n//    PySparkJob.Builder builder =\n//        PySparkJob.newBuilder()\n//            .setMainPythonFileUri(context.getScriptUri(testName))\n//            .addJarFileUris(context.connectorJarUri);\n//\n//    if (pythonZipUri != null && !pythonZipUri.isEmpty()) {\n//      builder.addPythonFileUris(pythonZipUri);\n//      builder.addFileUris(pythonZipUri);\n//    }\n//\n//    if (args != null && !args.isEmpty()) {\n//      builder.addAllArgs(args);\n//    }\n//\n//    return builder;\n//  }\n//\n//  private Job createAndRunSparkSqlJob(String testName, String outputTable, long duration)\n//      throws Exception {\n//\n//    InputStream sqlScriptSourceStream =\n//        getClass().getResourceAsStream(\"/acceptance/\" + testName + \".sql\");\n//    assertWithMessage(\"Could not find SQL script for \" + testName + \".sql\")\n//        .that(sqlScriptSourceStream)\n//        .isNotNull();\n//    String sqlScriptSource =\n//        new String(ByteStreams.toByteArray(sqlScriptSourceStream), StandardCharsets.UTF_8);\n//\n//    String sqlScript =\n//        sqlScriptSource\n//            .replace(\"${DATASET}\", context.bqDataset)\n//            .replace(\"${TABLE}\", context.bqTable)\n//            .replace(\"${OUTPUT_TABLE}\", outputTable);\n//\n//    AcceptanceTestUtils.uploadToGcs(\n//        new ByteArrayInputStream(sqlScript.getBytes(StandardCharsets.UTF_8)),\n//        context.getScriptUri(testName),\n//        \"application/x-sql\");\n//\n//    Job job =\n//        Job.newBuilder()\n//            .setPlacement(JobPlacement.newBuilder().setClusterName(context.clusterId))\n//            .putLabels(\"test-name\", testName)\n//            .setSparkSqlJob(createSparkSqlJobBuilder(testName))\n//            .build();\n//\n//    return runAndWait(job, Duration.ofSeconds(duration));\n//  }\n//\n//  private SparkSqlJob.Builder createSparkSqlJobBuilder(String testName) {\n//    return SparkSqlJob.newBuilder()\n//        .setQueryFileUri(context.getScriptUri(testName))\n//        .addJarFileUris(context.connectorJarUri)\n//        .setLoggingConfig(\n//            LoggingConfig.newBuilder()\n//                .putDriverLogLevels(\"com\", LoggingConfig.Level.DEBUG)\n//                .putDriverLogLevels(\"io\", LoggingConfig.Level.DEBUG)\n//                .putDriverLogLevels(\"org\", LoggingConfig.Level.DEBUG)\n//                .putDriverLogLevels(\"net\", LoggingConfig.Level.DEBUG)\n//                .build())\n//        .putProperties(\"spark.sql.legacy.createHiveTableByDefault\", \"false\")\n//        .putProperties(\"spark.sql.sources.default\", \"bigquery\")\n//        .putProperties(\"spark.datasource.bigquery.writeMethod\", \"direct\");\n//  }\n//\n//  private Job runAndWait(Job job, Duration timeout) throws Exception {\n//    try (JobControllerClient jobControllerClient =\n//        JobControllerClient.create(\n//            JobControllerSettings.newBuilder().setEndpoint(DATAPROC_ENDPOINT).build())) {\n//      Job request = jobControllerClient.submitJob(PROJECT_ID, REGION, job);\n//      String jobId = request.getReference().getJobId();\n//      CompletableFuture<Job> finishedJobFuture =\n//          CompletableFuture.supplyAsync(\n//              () -> waitForJobCompletion(jobControllerClient, PROJECT_ID, REGION, jobId));\n//      Job jobInfo = finishedJobFuture.get(timeout.getSeconds(), TimeUnit.SECONDS);\n//      assertThat(jobInfo.getStatus().getState()).isEqualTo(JobStatus.State.DONE);\n//      return jobInfo;\n//    }\n//  }\n//\n//  Job waitForJobCompletion(\n//      JobControllerClient jobControllerClient, String projectId, String region, String jobId) {\n//    while (true) {\n//      // Poll the service periodically until the Job is in a finished state.\n//      Job jobInfo = jobControllerClient.getJob(projectId, region, jobId);\n//      switch (jobInfo.getStatus().getState()) {\n//        case DONE:\n//        case CANCELLED:\n//        case ERROR:\n//          return jobInfo;\n//        default:\n//          try {\n//            // Wait a second in between polling attempts.\n//            TimeUnit.SECONDS.sleep(1);\n//          } catch (InterruptedException e) {\n//            throw new RuntimeException(e);\n//          }\n//      }\n//    }\n//  }\n//\n//  @FunctionalInterface\n//  private interface ThrowingConsumer<T> {\n//    void accept(T t) throws Exception;\n//  }\n//\n//  protected static class ClusterProperty {\n//    private String key;\n//    private String value;\n//    private String marker;\n//\n//    private ClusterProperty(String key, String value, String marker) {\n//      this.key = key;\n//      this.value = value;\n//      this.marker = marker;\n//    }\n//\n//    protected static ClusterProperty of(String key, String value, String marker) {\n//      return new ClusterProperty(key, value, marker);\n//    }\n//\n//    public String getKey() {\n//      return key;\n//    }\n//\n//    public String getValue() {\n//      return value;\n//    }\n//\n//    public String getMarker() {\n//      return marker;\n//    }\n//  }\n// }\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-4.1-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark41DataprocImage30AcceptanceTest.java",
    "content": "/*\n * Copyright 3.04 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\nimport java.util.Collections;\nimport org.junit.AfterClass;\nimport org.junit.BeforeClass;\n\npublic class Spark41DataprocImage30AcceptanceTest extends DataprocAcceptanceTestBase {\n\n  private static AcceptanceTestContext context;\n\n  public Spark41DataprocImage30AcceptanceTest() {\n    super(context, false);\n  }\n\n  @BeforeClass\n  public static void setup() throws Exception {\n    context =\n        DataprocAcceptanceTestBase.setup(\n            \"3.0-debian12\", \"spark-4.1-bigquery\", Collections.emptyList());\n  }\n\n  @AfterClass\n  public static void tearDown() throws Exception {\n    DataprocAcceptanceTestBase.tearDown(context);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-4.1-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark41DataprocImage30DisableConscryptAcceptanceTest.java",
    "content": "/*\n * Copyright 3.04 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\nimport org.junit.AfterClass;\nimport org.junit.BeforeClass;\n\npublic class Spark41DataprocImage30DisableConscryptAcceptanceTest\n    extends DataprocAcceptanceTestBase {\n\n  private static AcceptanceTestContext context;\n\n  public Spark41DataprocImage30DisableConscryptAcceptanceTest() {\n    super(context, false);\n  }\n\n  @BeforeClass\n  public static void setup() throws Exception {\n    context =\n        DataprocAcceptanceTestBase.setup(\n            \"3.0-debian12\", \"spark-4.1-bigquery\", DISABLE_CONSCRYPT_LIST);\n  }\n\n  @AfterClass\n  public static void tearDown() throws Exception {\n    DataprocAcceptanceTestBase.tearDown(context);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-4.1-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark41ReadSheakspeareDataprocServerlessAcceptanceTest.java",
    "content": "/*\n * Copyright 3.03 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\nimport org.junit.Ignore;\n\n@Ignore(\"Waiting for the serverless spark 4.0 runtime\")\npublic class Spark41ReadSheakspeareDataprocServerlessAcceptanceTest\n    extends ReadSheakspeareDataprocServerlessAcceptanceTestBase {\n\n  public Spark41ReadSheakspeareDataprocServerlessAcceptanceTest() {\n    super(\"spark-4.1-bigquery\", \"3.0\");\n  }\n\n  // tests from superclass\n\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-4.1-bigquery/src/test/java/com/google/cloud/spark/bigquery/acceptance/Spark41WriteStreamDataprocServerlessAcceptanceTest.java",
    "content": "/*\n * Copyright 3.03 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.acceptance;\n\nimport org.junit.Ignore;\n\n@Ignore(\"Waiting for the serverless spark 4.0 runtime, no stream support yet\")\npublic class Spark41WriteStreamDataprocServerlessAcceptanceTest\n    extends WriteStreamDataprocServerlessAcceptanceTestBase {\n\n  public Spark41WriteStreamDataprocServerlessAcceptanceTest() {\n    super(\"spark-4.1-bigquery\", \"3.0\");\n  }\n\n  // tests from superclass\n\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-4.1-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark41CatalogIntegrationTest.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\npublic class Spark41CatalogIntegrationTest extends CatalogIntegrationTestBase {\n  // all tests from superclass\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-4.1-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark41DirectWriteIntegrationTest.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\nimport com.google.cloud.spark.bigquery.SparkBigQueryConfig;\nimport org.apache.spark.sql.types.DataTypes;\n\npublic class Spark41DirectWriteIntegrationTest extends WriteIntegrationTestBase {\n\n  public Spark41DirectWriteIntegrationTest() {\n    super(SparkBigQueryConfig.WriteMethod.DIRECT, DataTypes.TimestampNTZType);\n  }\n\n  // tests from superclass\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-4.1-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark41IndirectWriteIntegrationTest.java",
    "content": "/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\nimport com.google.cloud.spark.bigquery.SparkBigQueryConfig;\nimport org.apache.spark.sql.types.DataTypes;\nimport org.junit.Before;\n\npublic class Spark41IndirectWriteIntegrationTest extends WriteIntegrationTestBase {\n\n  public Spark41IndirectWriteIntegrationTest() {\n    super(SparkBigQueryConfig.WriteMethod.INDIRECT, DataTypes.TimestampNTZType);\n  }\n\n  @Before\n  public void setParquetLoadBehaviour() {\n    // TODO: make this the default value\n    spark.conf().set(\"enableListInference\", \"true\");\n  }\n\n  // tests from superclass\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-4.1-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark41OpenLineageIntegrationTest.java",
    "content": "/*\n * Copyright 2024 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\npublic class Spark41OpenLineageIntegrationTest extends OpenLineageIntegrationTestBase {}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-4.1-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark41ReadByFormatIntegrationTest.java",
    "content": "/*\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\nimport org.apache.spark.sql.types.DataTypes;\n\npublic class Spark41ReadByFormatIntegrationTest extends ReadByFormatIntegrationTestBase {\n\n  public Spark41ReadByFormatIntegrationTest() {\n    super(\"ARROW\", /* userProvidedSchemaAllowed */ false, DataTypes.TimestampNTZType);\n  }\n\n  // tests are from the super-class\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-4.1-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark41ReadFromQueryIntegrationTest.java",
    "content": "/*\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\npublic class Spark41ReadFromQueryIntegrationTest extends ReadFromQueryIntegrationTestBase {\n\n  public Spark41ReadFromQueryIntegrationTest() {\n    super(true);\n  }\n\n  // tests are from the super-class\n\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-4.1-bigquery/src/test/java/com/google/cloud/spark/bigquery/integration/Spark41ReadIntegrationTest.java",
    "content": "/*\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.integration;\n\nimport org.apache.spark.sql.types.DataTypes;\n\npublic class Spark41ReadIntegrationTest extends ReadIntegrationTestBase {\n\n  public Spark41ReadIntegrationTest() {\n\n    super(/* userProvidedSchemaAllowed */ false, DataTypes.TimestampNTZType);\n  }\n\n  // tests are from the super-class\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-4.1-bigquery/src/test/resources/acceptance/spark-dml-create-table-as-select-in-default-dataset.sql",
    "content": "CREATE TABLE ${TABLE}_shakespeare OPTIONS (table='bigquery-public-data.samples.shakespeare');\n\n\nCREATE TABLE ${TABLE} AS\n  SELECT word, SUM(word_count) as word_count\n  FROM ${TABLE}_shakespeare\n  WHERE word='spark' GROUP BY word;\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-4.1-bigquery/src/test/resources/acceptance/spark-dml-create-table-in-default-dataset.sql",
    "content": "CREATE TABLE ${TABLE} (id int, data string);\n\nINSERT INTO ${TABLE} VALUES (1, 'one');\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-4.1-bigquery/src/test/resources/acceptance/spark-dml-custom-dataset.sql",
    "content": "CREATE DATABASE ${DATASET};\n\nCREATE TABLE ${DATASET}.${TABLE} (id int, data string);\n\nINSERT INTO ${DATASET}.${TABLE} VALUES (1, 'one');\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-4.1-bigquery/src/test/resources/acceptance/spark-dml-explicit-table.sql",
    "content": "CREATE TABLE default.${TABLE} OPTIONS (table='bigquery-public-data.samples.shakespeare');\n\nSELECT word, SUM(word_count) FROM default.${TABLE} WHERE word='spark' GROUP BY word;\n\n-- cleanup\nDROP TABLE default.${TABLE};\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-4.1-bigquery-lib/pom.xml",
    "content": "<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n  xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n  xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\">\n  <modelVersion>4.0.0</modelVersion>\n  <parent>\n    <groupId>com.google.cloud.spark</groupId>\n    <artifactId>spark-bigquery-dsv2-parent</artifactId>\n    <version>${revision}</version>\n    <relativePath>../spark-bigquery-dsv2-parent</relativePath>\n  </parent>\n\n  <artifactId>spark-4.1-bigquery-lib</artifactId>\n  <version>${revision}-preview</version>\n  <name>Connector code for BigQuery DataSource v2 for Spark 4.1</name>\n  <properties>\n    <maven.compiler.release>17</maven.compiler.release>\n    <spark.version>4.1.0</spark.version>\n    <scala.binary.version>2.13</scala.binary.version>\n    <shade.skip>true</shade.skip>\n    <toolchain.jdk.version>[17,18)</toolchain.jdk.version>\n    <argLine>${jdk11plus.argLine}</argLine>\n  </properties>\n  <licenses>\n    <license>\n      <name>Apache License, Version 2.0</name>\n      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>\n      <distribution>repo</distribution>\n    </license>\n  </licenses>\n  <dependencyManagement>\n    <dependencies>\n      <dependency>\n        <groupId>org.apache.arrow</groupId>\n        <artifactId>arrow-bom</artifactId>\n        <version>${arrow.spark4.version}</version>\n        <scope>import</scope>\n        <type>pom</type>\n      </dependency>\n      <dependency>\n        <groupId>org.apache.arrow</groupId>\n        <artifactId>arrow-memory-netty-buffer-patch</artifactId>\n        <version>${arrow.spark4.version}</version>\n      </dependency>\n    </dependencies>\n  </dependencyManagement>\n  <dependencies>\n    <dependency>\n      <groupId>${project.groupId}</groupId>\n      <artifactId>spark-4.0-bigquery-lib</artifactId>\n      <version>${project.parent.version}</version>\n    </dependency>\n    <dependency>\n      <groupId>org.apache.spark</groupId>\n      <artifactId>spark-avro_2.13</artifactId>\n      <version>${spark.version}</version>\n      <scope>test</scope>\n    </dependency>\n  </dependencies>\n</project>\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-4.1-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/Spark41BigQueryTable.java",
    "content": "/*\n * Copyright 2025 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.v2;\n\nimport com.google.inject.Injector;\nimport java.util.function.Supplier;\nimport org.apache.spark.sql.SaveMode;\nimport org.apache.spark.sql.connector.write.LogicalWriteInfo;\nimport org.apache.spark.sql.connector.write.WriteBuilder;\nimport org.apache.spark.sql.types.StructType;\n\npublic class Spark41BigQueryTable extends Spark40BigQueryTable {\n  public Spark41BigQueryTable(Injector injector, Supplier<StructType> schemaSupplier) {\n    super(injector, schemaSupplier);\n  }\n\n  @Override\n  public WriteBuilder newWriteBuilder(LogicalWriteInfo info) {\n    // SaveMode is not provided by spark 3, it is handled by the DataFrameWriter\n    // The case where mode == SaveMode.Ignore is handled by Spark, so we can assume we can get the\n    // context\n    return new Spark41BigQueryWriteBuilder(injector, info, SaveMode.Append);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-4.1-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/Spark41BigQueryTableProvider.java",
    "content": "/*\n * Copyright 2023 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.v2;\n\nimport java.util.Map;\nimport org.apache.spark.sql.connector.catalog.Table;\nimport org.apache.spark.sql.connector.expressions.Transform;\nimport org.apache.spark.sql.types.StructType;\n\npublic class Spark41BigQueryTableProvider extends Spark40BigQueryTableProvider {\n  // empty\n  @Override\n  public Table getTable(\n      StructType schema, Transform[] partitioning, Map<String, String> properties) {\n    return Spark3Util.createBigQueryTableInstance(Spark41BigQueryTable::new, schema, properties);\n  }\n\n  @Override\n  protected Table getBigQueryTableInternal(Map<String, String> properties) {\n    return Spark3Util.createBigQueryTableInstance(Spark41BigQueryTable::new, null, properties);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-4.1-bigquery-lib/src/main/java/com/google/cloud/spark/bigquery/v2/Spark41BigQueryWriteBuilder.java",
    "content": "/*\n * Copyright 2025 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.v2;\n\nimport com.google.inject.Injector;\nimport org.apache.spark.sql.SaveMode;\nimport org.apache.spark.sql.connector.write.LogicalWriteInfo;\nimport org.apache.spark.sql.connector.write.V1Write;\nimport org.apache.spark.sql.connector.write.Write;\n\npublic class Spark41BigQueryWriteBuilder extends Spark40BigQueryWriteBuilder\n    implements Write, V1Write {\n\n  public Spark41BigQueryWriteBuilder(Injector injector, LogicalWriteInfo info, SaveMode mode) {\n    super(injector, info, mode);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-4.1-bigquery-lib/src/main/resources/META-INF/services/com.google.cloud.spark.bigquery.TypeConverter",
    "content": "com.google.cloud.spark.bigquery.v2.TimestampNTZTypeConverter\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-4.1-bigquery-lib/src/test/resources/META-INF/services/org.apache.spark.sql.sources.DataSourceRegister",
    "content": "com.google.cloud.spark.bigquery.v2.Spark41BigQueryTableProvider\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-bigquery-dsv2-common/pom.xml",
    "content": "<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n         xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n         xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\">\n    <modelVersion>4.0.0</modelVersion>\n    <parent>\n        <groupId>com.google.cloud.spark</groupId>\n        <artifactId>spark-bigquery-parent</artifactId>\n        <version>${revision}</version>\n        <relativePath>../../spark-bigquery-parent</relativePath>\n    </parent>\n\n    <artifactId>spark-bigquery-dsv2-common</artifactId>\n    <name>BigQuery DataSource v2 implementation common implementation</name>\n    <properties>\n        <spark.version>3.5.0</spark.version>\n    </properties>\n    <licenses>\n        <license>\n            <name>Apache License, Version 2.0</name>\n            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>\n            <distribution>repo</distribution>\n        </license>\n    </licenses>\n    <dependencies>\n        <dependency>\n            <groupId>${project.groupId}</groupId>\n            <artifactId>spark-bigquery-connector-common</artifactId>\n            <version>${project.parent.version}</version>\n        </dependency>\n        <dependency>\n            <groupId>io.openlineage</groupId>\n            <artifactId>spark-extension-interfaces</artifactId>\n        </dependency>\n        <dependency>\n            <groupId>org.apache.spark</groupId>\n            <artifactId>spark-mllib_2.12</artifactId>\n            <version>${spark.version}</version>\n            <scope>provided</scope>\n            <exclusions>\n                <exclusion>\n                    <groupId>io.netty</groupId>\n                    <artifactId>netty-all</artifactId>\n                </exclusion>\n            </exclusions>\n        </dependency>\n        <dependency>\n            <groupId>org.apache.spark</groupId>\n            <artifactId>spark-sql_2.12</artifactId>\n            <version>${spark.version}</version>\n            <scope>provided</scope>\n            <exclusions>\n                <exclusion>\n                    <groupId>io.netty</groupId>\n                    <artifactId>netty-all</artifactId>\n                </exclusion>\n            </exclusions>\n        </dependency>\n        <dependency>\n            <groupId>${project.groupId}</groupId>\n            <artifactId>spark-bigquery-tests</artifactId>\n            <version>${project.parent.version}</version>\n            <scope>test</scope>\n        </dependency>\n    </dependencies>\n    <build>\n        <plugins>\n            <plugin>\n                <groupId>org.apache.maven.plugins</groupId>\n                <artifactId>maven-enforcer-plugin</artifactId>\n                <dependencies>\n                    <dependency>\n                        <groupId>de.skuzzle.enforcer</groupId>\n                        <artifactId>restrict-imports-enforcer-rule</artifactId>\n                        <version>2.0.0</version>\n                    </dependency>\n                </dependencies>\n                <executions>\n                    <execution>\n                        <id>check-spark-imports</id> <!-- put an explanatory ID here -->\n                        <phase>process-sources</phase>\n                        <goals>\n                            <goal>enforce</goal>\n                        </goals>\n                        <configuration>\n                            <rules>\n                                <RestrictImports>\n                                    <reason>Don't import Spark DataSource V2 classes</reason>\n                                    <bannedImport>org.apache.spark.sql.sources.v2.**</bannedImport>\n                                </RestrictImports>\n                            </rules>\n                        </configuration>\n                    </execution>\n                </executions>\n            </plugin>\n        </plugins>\n    </build>\n</project>\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-bigquery-dsv2-common/src/main/java/com/google/cloud/spark/bigquery/v2/BaseBigQuerySource.java",
    "content": "/*\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.v2;\n\nimport org.apache.spark.sql.sources.DataSourceRegister;\n\npublic abstract class BaseBigQuerySource implements DataSourceRegister {\n\n  @Override\n  public String shortName() {\n    return \"bigquery\";\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-bigquery-dsv2-common/src/main/java/com/google/cloud/spark/bigquery/v2/context/ArrowColumnBatchPartitionReaderContext.java",
    "content": "/*\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.v2.context;\n\nimport com.google.cloud.bigquery.connector.common.ArrowUtil;\nimport com.google.cloud.bigquery.connector.common.BigQueryStorageReadRowsTracer;\nimport com.google.cloud.bigquery.connector.common.IteratorMultiplexer;\nimport com.google.cloud.bigquery.connector.common.NonInterruptibleBlockingBytesChannel;\nimport com.google.cloud.bigquery.connector.common.ParallelArrowReader;\nimport com.google.cloud.bigquery.connector.common.ReadRowsHelper;\nimport com.google.cloud.bigquery.connector.common.ReadRowsResponseInputStreamEnumeration;\nimport com.google.cloud.bigquery.storage.v1.ReadRowsResponse;\nimport com.google.cloud.bigquery.storage.v1.ReadSession.TableReadOptions.ResponseCompressionCodec;\nimport com.google.cloud.spark.bigquery.ArrowSchemaConverter;\nimport com.google.common.collect.ImmutableList;\nimport com.google.common.util.concurrent.MoreExecutors;\nimport com.google.protobuf.ByteString;\nimport java.io.IOException;\nimport java.io.InputStream;\nimport java.io.SequenceInputStream;\nimport java.util.ArrayList;\nimport java.util.Arrays;\nimport java.util.Iterator;\nimport java.util.List;\nimport java.util.Map;\nimport java.util.Optional;\nimport java.util.concurrent.ExecutorService;\nimport java.util.concurrent.SynchronousQueue;\nimport java.util.concurrent.ThreadPoolExecutor;\nimport java.util.concurrent.TimeUnit;\nimport java.util.stream.Collectors;\nimport org.apache.arrow.compression.CommonsCompressionFactory;\nimport org.apache.arrow.memory.BufferAllocator;\nimport org.apache.arrow.util.AutoCloseables;\nimport org.apache.arrow.vector.VectorLoader;\nimport org.apache.arrow.vector.VectorSchemaRoot;\nimport org.apache.arrow.vector.ipc.ArrowReader;\nimport org.apache.arrow.vector.ipc.ArrowStreamReader;\nimport org.apache.arrow.vector.types.pojo.Schema;\nimport org.apache.spark.sql.types.StructField;\nimport org.apache.spark.sql.types.StructType;\nimport org.apache.spark.sql.vectorized.ColumnVector;\nimport org.apache.spark.sql.vectorized.ColumnarBatch;\n\npublic class ArrowColumnBatchPartitionReaderContext\n    implements InputPartitionReaderContext<ColumnarBatch> {\n  private static final long maxAllocation = 500 * 1024 * 1024;\n\n  interface ArrowReaderAdapter extends AutoCloseable {\n    boolean loadNextBatch() throws IOException;\n\n    VectorSchemaRoot root() throws IOException;\n  }\n\n  static class SimpleAdapter implements ArrowReaderAdapter {\n    private final ArrowReader reader;\n\n    SimpleAdapter(ArrowReader reader) {\n      this.reader = reader;\n    }\n\n    @Override\n    public boolean loadNextBatch() throws IOException {\n      return reader.loadNextBatch();\n    }\n\n    @Override\n    public VectorSchemaRoot root() throws IOException {\n      return reader.getVectorSchemaRoot();\n    }\n\n    @Override\n    public void close() throws Exception {\n      // Don't close the stream here since it will be taken care\n      // of by closing the ReadRowsHelper below and the way the stream\n      // is setup closing it here will cause it to be drained before\n      // returning.\n      reader.close(/*close stream*/ false);\n    }\n  }\n\n  static class ParallelReaderAdapter implements ArrowReaderAdapter {\n    private final ParallelArrowReader reader;\n    private final VectorLoader loader;\n    private final VectorSchemaRoot root;\n    private final List<AutoCloseable> closeables = new ArrayList<>();\n    private IOException initialException;\n\n    ParallelReaderAdapter(\n        BufferAllocator allocator,\n        List<ArrowReader> readers,\n        ExecutorService executor,\n        BigQueryStorageReadRowsTracer tracer,\n        AutoCloseable closeable) {\n      Schema schema = null;\n      closeables.add(closeable);\n      try {\n        schema = readers.get(0).getVectorSchemaRoot().getSchema();\n      } catch (IOException e) {\n        initialException = e;\n        closeables.addAll(readers);\n        this.reader = null;\n        this.loader = null;\n        this.root = null;\n        return;\n      }\n      BufferAllocator readerAllocator =\n          allocator.newChildAllocator(\"ParallelReaderAllocator\", 0, maxAllocation);\n      root = VectorSchemaRoot.create(schema, readerAllocator);\n      closeables.add(root);\n      loader = new VectorLoader(root);\n      this.reader = new ParallelArrowReader(readers, executor, loader, tracer);\n      closeables.add(0, reader);\n      closeables.add(readerAllocator);\n    }\n\n    @Override\n    public boolean loadNextBatch() throws IOException {\n      if (initialException != null) {\n        throw new IOException(initialException);\n      }\n      return reader.next();\n    }\n\n    @Override\n    public VectorSchemaRoot root() throws IOException {\n      return root;\n    }\n\n    @Override\n    public void close() throws Exception {\n      AutoCloseables.close(closeables);\n    }\n  }\n\n  private final ReadRowsHelper readRowsHelper;\n  private final ArrowReaderAdapter reader;\n  private final BufferAllocator allocator;\n  private final List<String> namesInOrder;\n  private ColumnarBatch currentBatch;\n  private final BigQueryStorageReadRowsTracer tracer;\n  private boolean closed = false;\n  private final Map<String, StructField> userProvidedFieldMap;\n  private final List<AutoCloseable> closeables = new ArrayList<>();\n\n  ArrowColumnBatchPartitionReaderContext(\n      Iterator<ReadRowsResponse> readRowsResponses,\n      ByteString schema,\n      ReadRowsHelper readRowsHelper,\n      List<String> namesInOrder,\n      BigQueryStorageReadRowsTracer tracer,\n      Optional<StructType> userProvidedSchema,\n      int numBackgroundThreads,\n      ResponseCompressionCodec responseCompressionCodec) {\n    this.allocator = ArrowUtil.newRootAllocator(maxAllocation);\n    this.readRowsHelper = readRowsHelper;\n    this.namesInOrder = namesInOrder;\n    this.tracer = tracer;\n    // place holder for reader.\n    closeables.add(null);\n\n    List<StructField> userProvidedFieldList =\n        Arrays.stream(userProvidedSchema.orElse(new StructType()).fields())\n            .collect(Collectors.toList());\n\n    this.userProvidedFieldMap =\n        userProvidedFieldList.stream().collect(Collectors.toMap(StructField::name, field -> field));\n\n    if (numBackgroundThreads == 1) {\n      // There is a background thread created by ParallelArrowReader that serves\n      // as a thread to do parsing on.\n      InputStream fullStream =\n          makeSingleInputStream(readRowsResponses, schema, tracer, responseCompressionCodec);\n      reader =\n          new ParallelReaderAdapter(\n              allocator,\n              ImmutableList.of(newArrowStreamReader(fullStream)),\n              MoreExecutors.newDirectExecutorService(),\n              tracer.forkWithPrefix(\"BackgroundReader\"),\n              /* closeable= */ null);\n    } else if (numBackgroundThreads > 1) {\n      // Subtract one because current excess tasks will be executed\n      // on round robin thread in ParallelArrowReader.\n      ExecutorService backgroundParsingService =\n          new ThreadPoolExecutor(\n              /* corePoolSize= */ 1,\n              /* maximumPoolSize= */ numBackgroundThreads - 1,\n              /* keepAliveTime= */ 2,\n              /* keepAlivetimeUnit= */ TimeUnit.SECONDS,\n              new SynchronousQueue<>(),\n              new ThreadPoolExecutor.CallerRunsPolicy());\n      IteratorMultiplexer multiplexer =\n          new IteratorMultiplexer(readRowsResponses, numBackgroundThreads);\n      List<ArrowReader> readers = new ArrayList<>();\n      for (int x = 0; x < numBackgroundThreads; x++) {\n        BigQueryStorageReadRowsTracer multiplexedTracer = tracer.forkWithPrefix(\"multiplexed-\" + x);\n        InputStream responseStream =\n            new SequenceInputStream(\n                new ReadRowsResponseInputStreamEnumeration(\n                    multiplexer.getSplit(x), multiplexedTracer, responseCompressionCodec));\n        InputStream schemaAndBatches = new SequenceInputStream(schema.newInput(), responseStream);\n        closeables.add(multiplexedTracer::finished);\n        readers.add(newArrowStreamReader(schemaAndBatches));\n      }\n      reader =\n          new ParallelReaderAdapter(\n              allocator,\n              readers,\n              backgroundParsingService,\n              tracer.forkWithPrefix(\"MultithreadReader\"),\n              multiplexer);\n    } else {\n      // Zero background threads.\n      InputStream fullStream =\n          makeSingleInputStream(readRowsResponses, schema, tracer, responseCompressionCodec);\n      reader = new SimpleAdapter(newArrowStreamReader(fullStream));\n    }\n  }\n\n  // Note this method consumes inputs.\n  private InputStream makeSingleInputStream(\n      Iterator<ReadRowsResponse> readRowsResponses,\n      ByteString schema,\n      BigQueryStorageReadRowsTracer tracer,\n      ResponseCompressionCodec responseCompressionCodec) {\n    InputStream batchStream =\n        new SequenceInputStream(\n            new ReadRowsResponseInputStreamEnumeration(\n                readRowsResponses, tracer, responseCompressionCodec));\n    return new SequenceInputStream(schema.newInput(), batchStream);\n  }\n\n  public boolean next() throws IOException {\n    tracer.nextBatchNeeded();\n    if (closed) {\n      return false;\n    }\n    tracer.rowsParseStarted();\n    closed = !reader.loadNextBatch();\n\n    if (closed) {\n      return false;\n    }\n\n    VectorSchemaRoot root = reader.root();\n    if (currentBatch == null) {\n      // trying to verify from dev@spark but this object\n      // should only need to get created once.  The underlying\n      // vectors should stay the same.\n      ColumnVector[] columns =\n          namesInOrder.stream()\n              .map(root::getVector)\n              .map(\n                  vector ->\n                      ArrowSchemaConverter.newArrowSchemaConverter(\n                          vector, userProvidedFieldMap.get(vector.getName())))\n              .toArray(ColumnVector[]::new);\n\n      currentBatch = new ColumnarBatch(columns);\n    }\n    currentBatch.setNumRows(root.getRowCount());\n    tracer.rowsParseFinished(currentBatch.numRows());\n    return true;\n  }\n\n  public ColumnarBatch get() {\n    return currentBatch;\n  }\n\n  @Override\n  public Optional<BigQueryStorageReadRowsTracer> getBigQueryStorageReadRowsTracer() {\n    return Optional.of(tracer);\n  }\n\n  public void close() throws IOException {\n    closed = true;\n    try {\n      tracer.finished();\n      closeables.set(0, reader);\n      closeables.add(allocator);\n      AutoCloseables.close(closeables);\n    } catch (Exception e) {\n      throw new IOException(\"Failure closing arrow components. stream: \" + readRowsHelper, e);\n    } finally {\n      try {\n        readRowsHelper.close();\n      } catch (Exception e) {\n        throw new IOException(\"Failure closing stream: \" + readRowsHelper, e);\n      }\n    }\n  }\n\n  private ArrowStreamReader newArrowStreamReader(InputStream fullStream) {\n    BufferAllocator childAllocator =\n        allocator.newChildAllocator(\"readerAllocator\" + (closeables.size() - 1), 0, maxAllocation);\n    closeables.add(childAllocator);\n    return new ArrowStreamReader(\n        new NonInterruptibleBlockingBytesChannel(fullStream),\n        childAllocator,\n        CommonsCompressionFactory.INSTANCE);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-bigquery-dsv2-common/src/main/java/com/google/cloud/spark/bigquery/v2/context/ArrowInputPartitionContext.java",
    "content": "/*\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.v2.context;\n\nimport static com.google.common.base.Optional.fromJavaUtil;\n\nimport com.google.cloud.bigquery.connector.common.BigQueryClientFactory;\nimport com.google.cloud.bigquery.connector.common.BigQueryStorageReadRowsTracer;\nimport com.google.cloud.bigquery.connector.common.BigQueryTracerFactory;\nimport com.google.cloud.bigquery.connector.common.ReadRowsHelper;\nimport com.google.cloud.bigquery.connector.common.ReadSessionResponse;\nimport com.google.cloud.bigquery.storage.v1.ReadRowsRequest;\nimport com.google.cloud.bigquery.storage.v1.ReadRowsResponse;\nimport com.google.cloud.bigquery.storage.v1.ReadSession.TableReadOptions.ResponseCompressionCodec;\nimport com.google.cloud.spark.bigquery.metrics.SparkBigQueryReadSessionMetrics;\nimport com.google.cloud.spark.bigquery.metrics.SparkMetricsSource;\nimport com.google.common.base.Joiner;\nimport com.google.common.collect.ImmutableList;\nimport com.google.protobuf.ByteString;\nimport java.util.Iterator;\nimport java.util.List;\nimport java.util.Optional;\nimport java.util.stream.Collectors;\nimport org.apache.spark.SparkEnv;\nimport org.apache.spark.TaskContext;\nimport org.apache.spark.sql.types.StructType;\nimport org.apache.spark.sql.vectorized.ColumnarBatch;\n\npublic class ArrowInputPartitionContext implements InputPartitionContext<ColumnarBatch> {\n\n  private static final long serialVersionUID = -6698485693266257704L;\n\n  private final BigQueryClientFactory bigQueryReadClientFactory;\n  private final BigQueryTracerFactory tracerFactory;\n  private List<String> streamNames;\n  private final ReadRowsHelper.Options options;\n  private final ImmutableList<String> selectedFields;\n  private final ByteString serializedArrowSchema;\n  private final com.google.common.base.Optional<StructType> userProvidedSchema;\n  private final SparkBigQueryReadSessionMetrics sparkBigQueryReadSessionMetrics;\n  private final ResponseCompressionCodec responseCompressionCodec;\n\n  public ArrowInputPartitionContext(\n      BigQueryClientFactory bigQueryReadClientFactory,\n      BigQueryTracerFactory tracerFactory,\n      List<String> names,\n      ReadRowsHelper.Options options,\n      ImmutableList<String> selectedFields,\n      ReadSessionResponse readSessionResponse,\n      Optional<StructType> userProvidedSchema,\n      SparkBigQueryReadSessionMetrics sparkBigQueryReadSessionMetrics,\n      ResponseCompressionCodec responseCompressionCodec) {\n    this.bigQueryReadClientFactory = bigQueryReadClientFactory;\n    this.streamNames = names;\n    this.options = options;\n    this.selectedFields = selectedFields;\n    this.serializedArrowSchema =\n        readSessionResponse.getReadSession().getArrowSchema().getSerializedSchema();\n    this.tracerFactory = tracerFactory;\n    this.userProvidedSchema = fromJavaUtil(userProvidedSchema);\n    this.sparkBigQueryReadSessionMetrics = sparkBigQueryReadSessionMetrics;\n    this.responseCompressionCodec = responseCompressionCodec;\n  }\n\n  public InputPartitionReaderContext<ColumnarBatch> createPartitionReaderContext() {\n    SparkMetricsSource sparkMetricsSource = new SparkMetricsSource();\n\n    TaskContext.get()\n        .registerAccumulator(sparkBigQueryReadSessionMetrics.getBytesReadAccumulator());\n    TaskContext.get().registerAccumulator(sparkBigQueryReadSessionMetrics.getRowsReadAccumulator());\n    TaskContext.get()\n        .registerAccumulator(sparkBigQueryReadSessionMetrics.getParseTimeAccumulator());\n    TaskContext.get().registerAccumulator(sparkBigQueryReadSessionMetrics.getScanTimeAccumulator());\n\n    SparkEnv.get().metricsSystem().registerSource(sparkMetricsSource);\n    BigQueryStorageReadRowsTracer tracer =\n        tracerFactory.newReadRowsTracer(\n            Joiner.on(\",\").join(streamNames),\n            sparkMetricsSource,\n            Optional.of(sparkBigQueryReadSessionMetrics));\n    List<ReadRowsRequest.Builder> readRowsRequests =\n        streamNames.stream()\n            .map(name -> ReadRowsRequest.newBuilder().setReadStream(name))\n            .collect(Collectors.toList());\n    ReadRowsHelper readRowsHelper =\n        new ReadRowsHelper(bigQueryReadClientFactory, readRowsRequests, options);\n    tracer.startStream();\n    Iterator<ReadRowsResponse> readRowsResponses = readRowsHelper.readRows();\n\n    return new ArrowColumnBatchPartitionReaderContext(\n        readRowsResponses,\n        serializedArrowSchema,\n        readRowsHelper,\n        selectedFields,\n        tracer,\n        userProvidedSchema.toJavaUtil(),\n        options.numBackgroundThreads(),\n        responseCompressionCodec);\n  }\n\n  @Override\n  public boolean supportColumnarReads() {\n    return true;\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-bigquery-dsv2-common/src/main/java/com/google/cloud/spark/bigquery/v2/context/BigQueryDataSourceReaderContext.java",
    "content": "/*\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.v2.context;\n\nimport com.google.cloud.bigquery.Field;\nimport com.google.cloud.bigquery.Schema;\nimport com.google.cloud.bigquery.TableDefinition;\nimport com.google.cloud.bigquery.TableId;\nimport com.google.cloud.bigquery.TableInfo;\nimport com.google.cloud.bigquery.connector.common.BigQueryClient;\nimport com.google.cloud.bigquery.connector.common.BigQueryClientFactory;\nimport com.google.cloud.bigquery.connector.common.BigQueryTracerFactory;\nimport com.google.cloud.bigquery.connector.common.BigQueryUtil;\nimport com.google.cloud.bigquery.connector.common.LazyInitializationSupplier;\nimport com.google.cloud.bigquery.connector.common.ReadSessionCreator;\nimport com.google.cloud.bigquery.connector.common.ReadSessionCreatorConfig;\nimport com.google.cloud.bigquery.connector.common.ReadSessionResponse;\nimport com.google.cloud.bigquery.storage.v1.DataFormat;\nimport com.google.cloud.bigquery.storage.v1.ReadSession;\nimport com.google.cloud.bigquery.storage.v1.ReadStream;\nimport com.google.cloud.spark.bigquery.ReadRowsResponseToInternalRowIteratorConverter;\nimport com.google.cloud.spark.bigquery.SchemaConverters;\nimport com.google.cloud.spark.bigquery.SchemaConvertersConfiguration;\nimport com.google.cloud.spark.bigquery.SparkBigQueryConfig;\nimport com.google.cloud.spark.bigquery.SparkBigQueryUtil;\nimport com.google.cloud.spark.bigquery.SparkFilterUtils;\nimport com.google.cloud.spark.bigquery.direct.BigQueryRDDFactory;\nimport com.google.cloud.spark.bigquery.metrics.DataOrigin;\nimport com.google.cloud.spark.bigquery.metrics.SparkBigQueryReadSessionMetrics;\nimport com.google.common.collect.ImmutableList;\nimport com.google.common.collect.ImmutableSet;\nimport com.google.common.collect.Iterables;\nimport com.google.common.collect.Streams;\nimport java.util.ArrayList;\nimport java.util.Arrays;\nimport java.util.Collection;\nimport java.util.HashSet;\nimport java.util.LinkedHashMap;\nimport java.util.List;\nimport java.util.Map;\nimport java.util.Optional;\nimport java.util.OptionalLong;\nimport java.util.Set;\nimport java.util.concurrent.ExecutorService;\nimport java.util.concurrent.Executors;\nimport java.util.stream.Collectors;\nimport java.util.stream.IntStream;\nimport java.util.stream.Stream;\nimport org.apache.spark.sql.SQLContext;\nimport org.apache.spark.sql.SparkSession;\nimport org.apache.spark.sql.catalyst.InternalRow;\nimport org.apache.spark.sql.sources.Filter;\nimport org.apache.spark.sql.types.StructField;\nimport org.apache.spark.sql.types.StructType;\nimport org.apache.spark.sql.vectorized.ColumnarBatch;\nimport org.slf4j.Logger;\nimport org.slf4j.LoggerFactory;\n\npublic class BigQueryDataSourceReaderContext {\n\n  private static final Logger logger =\n      LoggerFactory.getLogger(BigQueryDataSourceReaderContext.class);\n\n  private static StatisticsContext UNKNOWN_STATISTICS =\n      new StatisticsContext() {\n\n        @Override\n        public OptionalLong sizeInBytes() {\n          return OptionalLong.empty();\n        }\n\n        @Override\n        public OptionalLong numRows() {\n          return OptionalLong.empty();\n        }\n      };\n\n  private final TableInfo table;\n  private final TableId tableId;\n  private final ReadSessionCreatorConfig readSessionCreatorConfig;\n  private final BigQueryClient bigQueryClient;\n  private final BigQueryClientFactory bigQueryReadClientFactory;\n  private final BigQueryTracerFactory bigQueryTracerFactory;\n  private final ReadSessionCreator readSessionCreator;\n  private final SparkBigQueryConfig options;\n  private final SQLContext sqlContext;\n  private final SparkSession sparkSession;\n  private final BigQueryRDDFactory bigQueryRDDFactory;\n  private final Optional<String> globalFilter;\n  private final String applicationId;\n  private Optional<StructType> schema;\n  private Optional<StructType> userProvidedSchema;\n  private final Set<Filter> pushedFilters = new HashSet<>();\n  private Filter[] allFilters = new Filter[] {};\n  private Map<String, StructField> fields;\n  private ImmutableList<String> selectedFields;\n  private List<ArrowInputPartitionContext> plannedInputPartitionContexts;\n  // Lazy loading using Supplier will ensure that createReadSession is called only once and\n  // readSessionResponse is cached.\n  // Purpose is to create read session either in estimateStatistics or planInputPartitionContexts,\n  // whichever is called first.\n  // In Spark 3.1 connector, \"estimateStatistics\" is called before\n  // \"planBatchInputPartitionContexts\" or\n  // \"planInputPartitionContexts\". We will use this to get table statistics in estimateStatistics.\n  private LazyInitializationSupplier<ReadSessionResponse> readSessionResponse;\n  private final ExecutorService asyncReadSessionExecutor = Executors.newSingleThreadExecutor();\n  private boolean isBuilt = false;\n  private final BigQueryClient.ReadTableOptions readTableOptions;\n\n  public BigQueryDataSourceReaderContext(\n      TableInfo table,\n      BigQueryClient bigQueryClient,\n      BigQueryClientFactory bigQueryReadClientFactory,\n      BigQueryTracerFactory tracerFactory,\n      ReadSessionCreatorConfig readSessionCreatorConfig,\n      Optional<String> globalFilter,\n      Optional<StructType> schema,\n      String applicationId,\n      SparkBigQueryConfig options,\n      SQLContext sqlContext,\n      SparkSession sparkSession,\n      BigQueryClient.ReadTableOptions readTableOptions) {\n    this.table = table;\n    this.tableId = table.getTableId();\n    this.readSessionCreatorConfig = readSessionCreatorConfig;\n    this.bigQueryClient = bigQueryClient;\n    this.bigQueryReadClientFactory = bigQueryReadClientFactory;\n    this.bigQueryTracerFactory = tracerFactory;\n    this.sparkSession = sparkSession;\n    this.readTableOptions = readTableOptions;\n    this.readSessionCreator =\n        new ReadSessionCreator(readSessionCreatorConfig, bigQueryClient, bigQueryReadClientFactory);\n    this.globalFilter = globalFilter;\n    SchemaConverters sc = SchemaConverters.from(SchemaConvertersConfiguration.from(options));\n    StructType convertedSchema = sc.toSpark(sc.getSchemaWithPseudoColumns(table));\n    if (schema.isPresent()) {\n      this.schema = schema;\n      this.userProvidedSchema = schema;\n    } else {\n      this.schema = Optional.of(convertedSchema);\n      this.userProvidedSchema = Optional.empty();\n    }\n    // We want to keep the key order\n    this.fields = new LinkedHashMap<>();\n    for (StructField field : convertedSchema.fields()) {\n      fields.put(field.name(), field);\n    }\n    this.applicationId = applicationId;\n    this.options = options;\n    this.sqlContext = sqlContext;\n    this.bigQueryRDDFactory =\n        new BigQueryRDDFactory(\n            bigQueryClient, bigQueryReadClientFactory, bigQueryTracerFactory, options, sqlContext);\n    resetReadSessionResponse();\n  }\n\n  private void resetReadSessionResponse() {\n    this.readSessionResponse = new LazyInitializationSupplier<>(this::createReadSession);\n  }\n\n  public StructType readSchema() {\n    // TODO: rely on Java code\n    return schema.orElseGet(\n        () -> {\n          SchemaConverters sc = SchemaConverters.from(SchemaConvertersConfiguration.from(options));\n          return sc.toSpark(sc.getSchemaWithPseudoColumns(table));\n        });\n  }\n\n  public boolean enableBatchRead() {\n    return readSessionCreatorConfig.getReadDataFormat() == DataFormat.ARROW && !isEmptySchema();\n  }\n\n  public Stream<InputPartitionContext<InternalRow>> planInputPartitionContexts() {\n    if (isEmptySchema()) {\n      // create empty projection\n      return createEmptyProjectionPartitions();\n    }\n\n    ReadSession readSession = readSessionResponse.get().getReadSession();\n\n    return readSession.getStreamsList().stream()\n        .map(\n            stream ->\n                new BigQueryInputPartitionContext(\n                    bigQueryReadClientFactory,\n                    stream.getName(),\n                    readSessionCreatorConfig.toReadRowsHelperOptions(),\n                    createConverter(\n                        selectedFields, readSessionResponse.get(), userProvidedSchema)));\n  }\n\n  public Optional<String> getCombinedFilter() {\n    return BigQueryUtil.emptyIfNeeded(\n        SparkFilterUtils.getCompiledFilter(\n            readSessionCreatorConfig.getPushAllFilters(),\n            readSessionCreatorConfig.getReadDataFormat(),\n            globalFilter,\n            pushedFilters.toArray(new Filter[0])));\n  }\n\n  public DataOrigin getDataOrigin() {\n    if (BigQueryUtil.isBigLakeManagedTable(table)\n        || table.getDefinition().getType() == TableDefinition.Type.EXTERNAL) {\n      return DataOrigin.BIGLAKE;\n    } else if (table.getDefinition().getType() == TableDefinition.Type.MATERIALIZED_VIEW\n        || table.getDefinition().getType() == TableDefinition.Type.VIEW) {\n      return DataOrigin.VIEW;\n    } else if (readTableOptions.query().isPresent()) {\n      return DataOrigin.QUERY;\n    } else {\n      return DataOrigin.TABLE;\n    }\n  }\n\n  public Stream<InputPartitionContext<ColumnarBatch>> planBatchInputPartitionContexts() {\n    if (!enableBatchRead()) {\n      throw new IllegalStateException(\"Batch reads should not be enabled\");\n    }\n\n    ReadSession readSession = readSessionResponse.get().getReadSession();\n    long currentTimeMillis = System.currentTimeMillis();\n    SparkBigQueryReadSessionMetrics sparkBigQueryReadSessionMetrics =\n        SparkBigQueryReadSessionMetrics.from(\n            sparkSession,\n            readSession,\n            currentTimeMillis,\n            readSessionCreatorConfig.getReadDataFormat(),\n            getDataOrigin(),\n            readSession.getStreamsCount());\n\n    sparkSession.sparkContext().addSparkListener(sparkBigQueryReadSessionMetrics);\n\n    ImmutableList<String> tempSelectedFields = selectedFields;\n    if (tempSelectedFields.isEmpty()) {\n      // means select *\n      Schema tableSchema =\n          SchemaConverters.from(SchemaConvertersConfiguration.from(options))\n              .getSchemaWithPseudoColumns(readSessionResponse.get().getReadTableInfo());\n      tempSelectedFields =\n          tableSchema.getFields().stream()\n              .map(Field::getName)\n              .collect(ImmutableList.toImmutableList());\n    }\n\n    ImmutableList<String> partitionSelectedFields = tempSelectedFields;\n    Optional<StructType> arrowSchema = Optional.of(userProvidedSchema.orElse(readSchema()));\n    plannedInputPartitionContexts =\n        Streams.stream(\n                Iterables.partition(\n                    readSession.getStreamsList(), readSessionCreatorConfig.streamsPerPartition()))\n            .map(\n                streams ->\n                    new ArrowInputPartitionContext(\n                        bigQueryReadClientFactory,\n                        bigQueryTracerFactory,\n                        streams.stream()\n                            .map(ReadStream::getName)\n                            // This formulation is used to guarantee a serializable list.\n                            .collect(Collectors.toCollection(ArrayList::new)),\n                        readSessionCreatorConfig.toReadRowsHelperOptions(),\n                        partitionSelectedFields,\n                        readSessionResponse.get(),\n                        arrowSchema,\n                        sparkBigQueryReadSessionMetrics,\n                        readSessionCreatorConfig.getResponseCompressionCodec()))\n            .collect(Collectors.toList());\n    return plannedInputPartitionContexts.stream()\n        .map(ctx -> (InputPartitionContext<ColumnarBatch>) ctx);\n  }\n\n  private boolean isEmptySchema() {\n    return schema.map(StructType::isEmpty).orElse(false);\n  }\n\n  private ReadRowsResponseToInternalRowIteratorConverter createConverter(\n      ImmutableList<String> selectedFields,\n      ReadSessionResponse readSessionResponse,\n      Optional<StructType> userProvidedSchema) {\n    ReadRowsResponseToInternalRowIteratorConverter converter;\n    DataFormat format = readSessionCreatorConfig.getReadDataFormat();\n    if (format == DataFormat.AVRO) {\n      Schema schema =\n          SchemaConverters.from(SchemaConvertersConfiguration.from(options))\n              .getSchemaWithPseudoColumns(readSessionResponse.getReadTableInfo());\n      if (selectedFields.isEmpty()) {\n        // means select *\n        selectedFields =\n            schema.getFields().stream()\n                .map(Field::getName)\n                .collect(ImmutableList.toImmutableList());\n      } else {\n        Set<String> requiredColumnSet = ImmutableSet.copyOf(selectedFields);\n        schema =\n            Schema.of(\n                schema.getFields().stream()\n                    .filter(field -> requiredColumnSet.contains(field.getName()))\n                    .collect(Collectors.toList()));\n      }\n      return ReadRowsResponseToInternalRowIteratorConverter.avro(\n          schema,\n          selectedFields,\n          readSessionResponse.getReadSession().getAvroSchema().getSchema(),\n          userProvidedSchema,\n          /* bigQueryStorageReadRowTracer */ Optional.empty(),\n          SchemaConvertersConfiguration.from(options),\n          readSessionCreatorConfig.getResponseCompressionCodec());\n    }\n    throw new IllegalArgumentException(\n        \"No known converted for \" + readSessionCreatorConfig.getReadDataFormat());\n  }\n\n  private ReadSessionResponse createReadSession() {\n    selectedFields =\n        schema\n            .map(requiredSchema -> ImmutableList.copyOf(requiredSchema.fieldNames()))\n            .orElse(ImmutableList.copyOf(fields.keySet()));\n    Optional<String> filter = getCombinedFilter();\n    ReadSessionResponse response = readSessionCreator.create(tableId, selectedFields, filter);\n    logger.info(\n        \"Got read session for {}: {} for application id: {}\",\n        tableId.toString(),\n        response.getReadSession().getName(),\n        applicationId);\n    return response;\n  }\n\n  Stream<InputPartitionContext<InternalRow>> createEmptyProjectionPartitions() {\n    Optional<String> filter = getCombinedFilter();\n    long rowCount = bigQueryClient.calculateTableSize(tableId, filter);\n    logger.info(\"Used optimized BQ count(*) path. Count: \" + rowCount);\n    int partitionsCount = readSessionCreatorConfig.getDefaultParallelism();\n    int partitionSize = (int) (rowCount / partitionsCount);\n    InputPartitionContext<InternalRow>[] partitions =\n        IntStream.range(0, partitionsCount)\n            .mapToObj(ignored -> new EmptyProjectionInputPartitionContext(partitionSize))\n            .toArray(EmptyProjectionInputPartitionContext[]::new);\n    int firstPartitionSize = partitionSize + (int) (rowCount % partitionsCount);\n    partitions[0] = new EmptyProjectionInputPartitionContext(firstPartitionSize);\n    return Stream.of(partitions);\n  }\n\n  public Filter[] pushFilters(Filter[] filters) {\n    List<Filter> handledFilters = new ArrayList<>();\n    List<Filter> unhandledFilters = new ArrayList<>();\n    for (Filter filter : filters) {\n      if (SparkFilterUtils.isTopLevelFieldHandled(\n          readSessionCreatorConfig.getPushAllFilters(),\n          filter,\n          readSessionCreatorConfig.getReadDataFormat(),\n          fields)) {\n        handledFilters.add(filter);\n      } else {\n        unhandledFilters.add(filter);\n      }\n    }\n\n    allFilters = filters;\n    pushedFilters.addAll(handledFilters);\n    return unhandledFilters.stream().toArray(Filter[]::new);\n  }\n\n  public Filter[] pushedFilters() {\n    return pushedFilters.toArray(new Filter[0]);\n  }\n\n  public Filter[] getAllFilters() {\n    return allFilters;\n  }\n\n  /**\n   * Re-creates the read session and re-computes partitions for dynamic partition pruning\n   *\n   * @param filters dynamic partition pruning filters\n   * @return new planned partitions if dynamic partition pruning goes through, else returns empty\n   *     option.\n   */\n  public Optional<List<ArrowInputPartitionContext>> filter(Filter[] filters) {\n    logger.info(String.format(\"Use Dynamic Partition Pruning runtime filters: %s\", filters));\n    if (plannedInputPartitionContexts == null) {\n      logger.error(\"Should have planned partitions.\");\n      return Optional.empty();\n    }\n\n    ImmutableList<Filter> newFilters =\n        SparkBigQueryUtil.extractPartitionAndClusteringFilters(\n            table, ImmutableList.copyOf(filters));\n    if (newFilters.isEmpty()) {\n      // no partitioning and no clustering, this is probably a dimension table.\n      // It means the filter combined filter won't change, so no need to create another read session\n      // we are done here.\n      logger.info(\n          \"Could not find filters for partition of clustering field for table {}, aborting DPP\"\n              + \" filter\",\n          BigQueryUtil.friendlyTableName(tableId));\n      return Optional.empty();\n    }\n    pushedFilters.addAll(newFilters);\n    Optional<String> combinedFilter = getCombinedFilter();\n    if (!BigQueryUtil.filterLengthInLimit(combinedFilter)) {\n      logger.warn(\n          \"New filter for Dynamic Partition Pruning is too large, skipping partition pruning\");\n      return Optional.empty();\n    }\n\n    // Copies previous planned input partition contexts.\n    List<ArrowInputPartitionContext> previousInputPartitionContexts = plannedInputPartitionContexts;\n    resetReadSessionResponse();\n    // Creates a new read session, this creates a new plannedInputPartitionContexts.\n    planBatchInputPartitionContexts();\n\n    if (plannedInputPartitionContexts.size() > previousInputPartitionContexts.size()) {\n      logger.warn(\n          String.format(\n              \"New partitions should not be more than originally planned. Previously had %d\"\n                  + \" streams, now has %d.\",\n              previousInputPartitionContexts.size(), plannedInputPartitionContexts.size()));\n      return Optional.of(plannedInputPartitionContexts);\n    }\n    logger.info(\n        String.format(\n            \"Use Dynamic Partition Pruning, originally planned %d, adjust to %d partitions\",\n            previousInputPartitionContexts.size(), plannedInputPartitionContexts.size()));\n    return Optional.of(plannedInputPartitionContexts);\n  }\n\n  public void pruneColumns(StructType requiredSchema) {\n    // requiredSchema may be nested column pruned, which is not supported yet.\n    this.schema =\n        this.schema.map(\n            prevSchema -> {\n              Set<String> requiredCols = ImmutableSet.copyOf(requiredSchema.fieldNames());\n              StructType prunedSchema = new StructType();\n              for (StructField field : prevSchema.fields()) {\n                if (requiredCols.contains(field.name())) {\n                  prunedSchema = prunedSchema.add(field);\n                }\n              }\n              return prunedSchema;\n            });\n  }\n\n  public StatisticsContext estimateStatistics() {\n    boolean isBigLakeManagedTable = BigQueryUtil.isBigLakeManagedTable(table);\n    if (BigQueryUtil.isBigQueryNativeTable(table)) {\n      // Create StatisticsContext with information from read session response.\n      final long tableSizeInBytes;\n      final long numRowsInTable;\n      if (isBuilt) {\n        tableSizeInBytes =\n            readSessionResponse.get().getReadSession().getEstimatedTotalBytesScanned();\n        numRowsInTable = readSessionResponse.get().getReadSession().getEstimatedRowCount();\n      } else {\n        // If the scan is not built, filters & projections are not yet pushed. Use the fast path.\n        tableSizeInBytes = table.getNumBytes();\n        numRowsInTable = table.getNumRows().longValue();\n      }\n\n      StatisticsContext tableStatisticsContext =\n          new StatisticsContext() {\n            @Override\n            public OptionalLong sizeInBytes() {\n              return OptionalLong.of(tableSizeInBytes);\n            }\n\n            @Override\n            public OptionalLong numRows() {\n              return OptionalLong.of(numRowsInTable);\n            }\n          };\n\n      return tableStatisticsContext;\n    } else if (table.getDefinition().getType() == TableDefinition.Type.EXTERNAL\n        || isBigLakeManagedTable) {\n      ReadSession readSession = readSessionResponse.get().getReadSession();\n      // Physical file size for BigLake tables is the size of the files post file pruning and\n      // includes all fields.\n      final long tablePhysicalSizeInBytes = readSession.getEstimatedTotalPhysicalFileSize();\n      final long tableRowCount = readSession.getEstimatedRowCount();\n      final long originalRowSize = getRowSize(fields.values());\n      final long projectedRowSize =\n          schema.map(schema -> getRowSize(Arrays.asList(schema.fields()))).orElse(originalRowSize);\n      final long tableProjectedSizeInBytes =\n          (tablePhysicalSizeInBytes * projectedRowSize) / originalRowSize;\n      final OptionalLong sizeInBytes =\n          (tableProjectedSizeInBytes == 0)\n              ? OptionalLong.empty()\n              : OptionalLong.of(tableProjectedSizeInBytes);\n\n      StatisticsContext tableStatisticsContext =\n          new StatisticsContext() {\n            @Override\n            public OptionalLong sizeInBytes() {\n              return sizeInBytes;\n            }\n\n            @Override\n            public OptionalLong numRows() {\n              // Number of rows are only available for BigLake Managed tables.\n              return isBigLakeManagedTable ? OptionalLong.of(tableRowCount) : OptionalLong.empty();\n            }\n          };\n      return tableStatisticsContext;\n    } else {\n      return UNKNOWN_STATISTICS;\n    }\n  }\n\n  public String getTableName() {\n    return tableId.getTable();\n  }\n\n  public String getFullTableName() {\n    return BigQueryUtil.friendlyTableName(tableId);\n  }\n\n  public TableId getTableId() {\n    return tableId;\n  }\n\n  public BigQueryRDDFactory getBigQueryRddFactory() {\n    return this.bigQueryRDDFactory;\n  }\n\n  public TableInfo getTableInfo() {\n    return this.table;\n  }\n\n  public void build() {\n    // Supplier provided by Suppliers.memoize is thread-safe\n    asyncReadSessionExecutor.submit(() -> readSessionResponse.get());\n    asyncReadSessionExecutor.shutdown();\n    isBuilt = true;\n  }\n\n  /**\n   * This logic is taken from Spark's {@link\n   * org.apache.spark.sql.catalyst.plans.logical.statsEstimation.EstimationUtils ::getSizePerRow }\n   */\n  private long getRowSize(Collection<StructField> fields) {\n    // There should be some overhead in Row object, the size should not be zero when there are\n    // no columns, this helps to prevent divide-by-zero error.\n    return 8\n        + fields.stream()\n            .map(structField -> (long) structField.dataType().defaultSize())\n            .reduce(0L, Long::sum);\n  }\n\n  public String getReadSessionId() {\n    if (readSessionResponse.isInitialized()) {\n      return readSessionResponse.get().getReadSession().getName();\n    }\n    return \"N/A\";\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-bigquery-dsv2-common/src/main/java/com/google/cloud/spark/bigquery/v2/context/BigQueryDataSourceReaderModule.java",
    "content": "/*\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.v2.context;\n\nimport com.google.cloud.bigquery.TableInfo;\nimport com.google.cloud.bigquery.connector.common.BigQueryClient;\nimport com.google.cloud.bigquery.connector.common.BigQueryClientFactory;\nimport com.google.cloud.bigquery.connector.common.BigQueryTracerFactory;\nimport com.google.cloud.spark.bigquery.SparkBigQueryConfig;\nimport com.google.inject.Binder;\nimport com.google.inject.Module;\nimport com.google.inject.Provides;\nimport com.google.inject.Singleton;\nimport java.util.Optional;\nimport org.apache.spark.sql.SparkSession;\n\npublic class BigQueryDataSourceReaderModule implements Module {\n\n  private Optional<SparkBigQueryConfig> tableScanConfig;\n\n  public BigQueryDataSourceReaderModule() {\n    this(Optional.empty());\n  }\n\n  // in practiced used only by the spark 3 connector, as there are separate phases for creating the\n  // catalog and the table scan (unlike DSv1 and spark 2.4)\n  public BigQueryDataSourceReaderModule(Optional<SparkBigQueryConfig> tableScanConfig) {\n    this.tableScanConfig = tableScanConfig;\n  }\n\n  @Override\n  public void configure(Binder binder) {\n    // empty\n  }\n\n  @Singleton\n  @Provides\n  public BigQueryDataSourceReaderContext provideDataSourceReaderContext(\n      BigQueryClient bigQueryClient,\n      BigQueryClientFactory bigQueryReadClientFactory,\n      BigQueryTracerFactory tracerFactory,\n      SparkBigQueryConfig globalConfig,\n      SparkSession sparkSession) {\n    SparkBigQueryConfig config = tableScanConfig.orElse(globalConfig);\n    TableInfo tableInfo = bigQueryClient.getReadTable(config.toReadTableOptions());\n    return new BigQueryDataSourceReaderContext(\n        tableInfo,\n        bigQueryClient,\n        bigQueryReadClientFactory,\n        tracerFactory,\n        config.toReadSessionCreatorConfig(),\n        config.getFilter(),\n        config.getSchema(),\n        sparkSession.sparkContext().applicationId(),\n        config,\n        sparkSession.sqlContext(),\n        sparkSession,\n        config.toReadTableOptions());\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-bigquery-dsv2-common/src/main/java/com/google/cloud/spark/bigquery/v2/context/BigQueryInputPartitionContext.java",
    "content": "/*\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.v2.context;\n\nimport com.google.cloud.bigquery.connector.common.BigQueryClientFactory;\nimport com.google.cloud.bigquery.connector.common.ReadRowsHelper;\nimport com.google.cloud.bigquery.storage.v1.ReadRowsRequest;\nimport com.google.cloud.bigquery.storage.v1.ReadRowsResponse;\nimport com.google.cloud.spark.bigquery.ReadRowsResponseToInternalRowIteratorConverter;\nimport java.util.Iterator;\nimport java.util.Optional;\nimport org.apache.spark.sql.catalyst.InternalRow;\n\npublic class BigQueryInputPartitionContext implements InputPartitionContext<InternalRow> {\n\n  private final BigQueryClientFactory bigQueryReadClientFactory;\n  private final String streamName;\n  private final ReadRowsHelper.Options options;\n  private final ReadRowsResponseToInternalRowIteratorConverter converter;\n\n  public BigQueryInputPartitionContext(\n      BigQueryClientFactory bigQueryReadClientFactory,\n      String streamName,\n      ReadRowsHelper.Options options,\n      ReadRowsResponseToInternalRowIteratorConverter converter) {\n    this.bigQueryReadClientFactory = bigQueryReadClientFactory;\n    this.streamName = streamName;\n    this.options = options;\n    this.converter = converter;\n  }\n\n  @Override\n  public InputPartitionReaderContext<InternalRow> createPartitionReaderContext() {\n    ReadRowsRequest.Builder readRowsRequest =\n        ReadRowsRequest.newBuilder().setReadStream(streamName);\n    ReadRowsHelper readRowsHelper =\n        new ReadRowsHelper(bigQueryReadClientFactory, readRowsRequest, options, Optional.empty());\n    Iterator<ReadRowsResponse> readRowsResponses = readRowsHelper.readRows();\n    return new BigQueryInputPartitionReaderContext(readRowsResponses, converter, readRowsHelper);\n  }\n\n  @Override\n  public boolean supportColumnarReads() {\n    return false;\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-bigquery-dsv2-common/src/main/java/com/google/cloud/spark/bigquery/v2/context/BigQueryInputPartitionReaderContext.java",
    "content": "/*\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.v2.context;\n\nimport com.google.cloud.bigquery.connector.common.BigQueryStorageReadRowsTracer;\nimport com.google.cloud.bigquery.connector.common.ReadRowsHelper;\nimport com.google.cloud.bigquery.storage.v1.ReadRowsResponse;\nimport com.google.cloud.spark.bigquery.ReadRowsResponseToInternalRowIteratorConverter;\nimport com.google.common.collect.ImmutableList;\nimport java.io.IOException;\nimport java.util.Iterator;\nimport java.util.Optional;\nimport org.apache.spark.sql.catalyst.InternalRow;\n\nclass BigQueryInputPartitionReaderContext implements InputPartitionReaderContext<InternalRow> {\n\n  private Iterator<ReadRowsResponse> readRowsResponses;\n  private ReadRowsResponseToInternalRowIteratorConverter converter;\n  private ReadRowsHelper readRowsHelper;\n  private Iterator<InternalRow> rows = ImmutableList.<InternalRow>of().iterator();\n  private InternalRow currentRow;\n\n  BigQueryInputPartitionReaderContext(\n      Iterator<ReadRowsResponse> readRowsResponses,\n      ReadRowsResponseToInternalRowIteratorConverter converter,\n      ReadRowsHelper readRowsHelper) {\n    this.readRowsResponses = readRowsResponses;\n    this.converter = converter;\n    this.readRowsHelper = readRowsHelper;\n  }\n\n  @Override\n  public boolean next() throws IOException {\n    while (!rows.hasNext()) {\n      if (!readRowsResponses.hasNext()) {\n        return false;\n      }\n      ReadRowsResponse readRowsResponse = readRowsResponses.next();\n      rows = converter.convert(readRowsResponse);\n    }\n    currentRow = rows.next();\n    return true;\n  }\n\n  @Override\n  public InternalRow get() {\n    return currentRow;\n  }\n\n  @Override\n  public Optional<BigQueryStorageReadRowsTracer> getBigQueryStorageReadRowsTracer() {\n    return Optional.empty();\n  }\n\n  @Override\n  public void close() throws IOException {\n    readRowsHelper.close();\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-bigquery-dsv2-common/src/main/java/com/google/cloud/spark/bigquery/v2/context/EmptyProjectionInputPartitionContext.java",
    "content": "/*\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.v2.context;\n\nimport org.apache.spark.sql.catalyst.InternalRow;\n\npublic class EmptyProjectionInputPartitionContext implements InputPartitionContext<InternalRow> {\n\n  final int partitionSize;\n\n  public EmptyProjectionInputPartitionContext(int partitionSize) {\n    this.partitionSize = partitionSize;\n  }\n\n  @Override\n  public InputPartitionReaderContext<InternalRow> createPartitionReaderContext() {\n    return new EmptyProjectionInputPartitionReaderContext(partitionSize);\n  }\n\n  @Override\n  public boolean supportColumnarReads() {\n    return false;\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-bigquery-dsv2-common/src/main/java/com/google/cloud/spark/bigquery/v2/context/EmptyProjectionInputPartitionReaderContext.java",
    "content": "/*\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.v2.context;\n\nimport com.google.cloud.bigquery.connector.common.BigQueryStorageReadRowsTracer;\nimport java.io.IOException;\nimport java.util.Optional;\nimport org.apache.spark.sql.catalyst.InternalRow;\n\nclass EmptyProjectionInputPartitionReaderContext\n    implements InputPartitionReaderContext<InternalRow> {\n\n  final int partitionSize;\n  int currentIndex;\n\n  EmptyProjectionInputPartitionReaderContext(int partitionSize) {\n    this.partitionSize = partitionSize;\n    this.currentIndex = 0;\n  }\n\n  @Override\n  public boolean next() throws IOException {\n    return currentIndex < partitionSize;\n  }\n\n  @Override\n  public InternalRow get() {\n    currentIndex++;\n    return InternalRow.empty();\n  }\n\n  @Override\n  public Optional<BigQueryStorageReadRowsTracer> getBigQueryStorageReadRowsTracer() {\n    return Optional.empty();\n  }\n\n  @Override\n  public void close() throws IOException {\n    // empty\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-bigquery-dsv2-common/src/main/java/com/google/cloud/spark/bigquery/v2/context/InputPartitionContext.java",
    "content": "/*\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.v2.context;\n\nimport java.io.Serializable;\n\npublic interface InputPartitionContext<T> extends Serializable {\n\n  InputPartitionReaderContext<T> createPartitionReaderContext();\n\n  boolean supportColumnarReads();\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-bigquery-dsv2-common/src/main/java/com/google/cloud/spark/bigquery/v2/context/InputPartitionReaderContext.java",
    "content": "/*\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.v2.context;\n\nimport com.google.cloud.bigquery.connector.common.BigQueryStorageReadRowsTracer;\nimport java.io.Closeable;\nimport java.io.IOException;\nimport java.util.Optional;\n\npublic interface InputPartitionReaderContext<T> extends Closeable {\n\n  boolean next() throws IOException;\n\n  T get();\n\n  Optional<BigQueryStorageReadRowsTracer> getBigQueryStorageReadRowsTracer();\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-bigquery-dsv2-common/src/main/java/com/google/cloud/spark/bigquery/v2/context/StatisticsContext.java",
    "content": "/*\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.v2.context;\n\nimport java.util.OptionalLong;\n\npublic interface StatisticsContext {\n  OptionalLong sizeInBytes();\n\n  OptionalLong numRows();\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-bigquery-dsv2-common/src/test/java/com/google/cloud/spark/bigquery/v2/context/ArrowInputPartitionContextTest.java",
    "content": "/*\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.v2.context;\n\nimport com.google.cloud.bigquery.connector.common.ReadRowsHelper;\nimport com.google.cloud.bigquery.connector.common.ReadSessionResponse;\nimport com.google.cloud.bigquery.storage.v1.ReadSession;\nimport com.google.cloud.bigquery.storage.v1.ReadSession.TableReadOptions.ResponseCompressionCodec;\nimport com.google.common.collect.Lists;\nimport java.io.ByteArrayOutputStream;\nimport java.io.IOException;\nimport java.io.ObjectOutputStream;\nimport java.util.Optional;\nimport org.junit.Test;\n\npublic class ArrowInputPartitionContextTest {\n  // TODO: test with and without response compression!\n  @Test\n  public void testSerializability() throws IOException {\n    new ObjectOutputStream(new ByteArrayOutputStream())\n        .writeObject(\n            new ArrowInputPartitionContext(\n                /* bigQueryClientFactory= */ null,\n                /* tracerFactory= */ null,\n                Lists.newArrayList(\"streamName\"),\n                new ReadRowsHelper.Options(\n                    /* maxRetries= */ 5,\n                    Optional.of(\"endpoint\"),\n                    /* backgroundParsingThreads= */ 5,\n                    /* prebufferResponses= */ 1),\n                null,\n                new ReadSessionResponse(ReadSession.getDefaultInstance(), null),\n                null,\n                null,\n                ResponseCompressionCodec.RESPONSE_COMPRESSION_CODEC_UNSPECIFIED));\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-bigquery-dsv2-common/src/test/java/com/google/cloud/spark/bigquery/v2/context/BigQueryInputPartitionReaderContextTest.java",
    "content": "/*\n * Copyright 2021 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.v2.context;\n\nimport static com.google.common.truth.Truth.*;\n\nimport com.google.cloud.bigquery.*;\nimport com.google.cloud.bigquery.storage.v1.ReadRowsResponse;\nimport com.google.cloud.bigquery.storage.v1.ReadSession.TableReadOptions.ResponseCompressionCodec;\nimport com.google.cloud.spark.bigquery.ReadRowsResponseToInternalRowIteratorConverter;\nimport com.google.cloud.spark.bigquery.SchemaConvertersConfiguration;\nimport com.google.common.collect.ImmutableList;\nimport com.google.protobuf.TextFormat;\nimport java.util.Iterator;\nimport java.util.Optional;\nimport org.apache.spark.sql.catalyst.InternalRow;\nimport org.junit.Test;\n\npublic class BigQueryInputPartitionReaderContextTest {\n\n  private static final String ALL_TYPES_TABLE_AVRO_RAW_SCHEMA =\n      \"{\\\"type\\\":\\\"record\\\",\\\"name\\\":\\\"__root__\\\",\\\"fields\\\":[{\\\"name\\\":\\\"string_f\\\",\\\"type\\\":[\\\"null\\\",\\\"string\\\"]},{\\\"name\\\":\\\"bytes_f\\\",\\\"type\\\":[\\\"null\\\",\\\"bytes\\\"]},{\\\"name\\\":\\\"int_f\\\",\\\"type\\\":[\\\"null\\\",\\\"long\\\"]},{\\\"name\\\":\\\"float_f\\\",\\\"type\\\":[\\\"null\\\",\\\"double\\\"]},{\\\"name\\\":\\\"numeric_f\\\",\\\"type\\\":[\\\"null\\\",{\\\"type\\\":\\\"bytes\\\",\\\"logicalType\\\":\\\"decimal\\\",\\\"precision\\\":38,\\\"scale\\\":9}]},{\\\"name\\\":\\\"boolean_f\\\",\\\"type\\\":[\\\"null\\\",\\\"boolean\\\"]},{\\\"name\\\":\\\"timestamp_f\\\",\\\"type\\\":[\\\"null\\\",{\\\"type\\\":\\\"long\\\",\\\"logicalType\\\":\\\"timestamp-micros\\\"}]},{\\\"name\\\":\\\"date_f\\\",\\\"type\\\":[\\\"null\\\",{\\\"type\\\":\\\"int\\\",\\\"logicalType\\\":\\\"date\\\"}]},{\\\"name\\\":\\\"time_f\\\",\\\"type\\\":[\\\"null\\\",{\\\"type\\\":\\\"long\\\",\\\"logicalType\\\":\\\"time-micros\\\"}]},{\\\"name\\\":\\\"datetime_f\\\",\\\"type\\\":[\\\"null\\\",{\\\"type\\\":\\\"string\\\",\\\"logicalType\\\":\\\"datetime\\\"}]},{\\\"name\\\":\\\"geo_f\\\",\\\"type\\\":[\\\"null\\\",{\\\"type\\\":\\\"string\\\",\\\"sqlType\\\":\\\"GEOGRAPHY\\\"}]},{\\\"name\\\":\\\"record_f\\\",\\\"type\\\":[\\\"null\\\",{\\\"type\\\":\\\"record\\\",\\\"name\\\":\\\"__s_0\\\",\\\"fields\\\":[{\\\"name\\\":\\\"s\\\",\\\"type\\\":[\\\"null\\\",\\\"string\\\"]},{\\\"name\\\":\\\"i\\\",\\\"type\\\":[\\\"null\\\",\\\"long\\\"]}]}]},{\\\"name\\\":\\\"null_f\\\",\\\"type\\\":[\\\"null\\\",\\\"string\\\"]},{\\\"name\\\":\\\"sarray_f\\\",\\\"type\\\":{\\\"type\\\":\\\"array\\\",\\\"items\\\":\\\"string\\\"}},{\\\"name\\\":\\\"iarray_f\\\",\\\"type\\\":[\\\"null\\\",\\\"long\\\"]}]}\";\n  private static final Schema ALL_TYPES_TABLE_BIGQUERY_SCHEMA =\n      Schema.of(\n          Field.of(\"string_f\", LegacySQLTypeName.STRING),\n          Field.of(\"bytes_f\", LegacySQLTypeName.BYTES),\n          Field.of(\"int_f\", LegacySQLTypeName.INTEGER),\n          Field.of(\"float_f\", LegacySQLTypeName.FLOAT),\n          Field.newBuilder(\"numeric_f\", LegacySQLTypeName.NUMERIC)\n              .setPrecision(38L)\n              .setScale(9L)\n              .build(),\n          Field.of(\"boolean_f\", LegacySQLTypeName.BOOLEAN),\n          Field.of(\"timestamp_f\", LegacySQLTypeName.TIMESTAMP),\n          Field.of(\"date_f\", LegacySQLTypeName.DATE),\n          Field.of(\"time_f\", LegacySQLTypeName.TIME),\n          Field.of(\"datetime_f\", LegacySQLTypeName.DATETIME),\n          Field.of(\"geo_f\", LegacySQLTypeName.GEOGRAPHY),\n          Field.of(\n              \"record_f\",\n              LegacySQLTypeName.RECORD,\n              Field.of(\"s\", LegacySQLTypeName.STRING),\n              Field.of(\"i\", LegacySQLTypeName.INTEGER)),\n          Field.of(\"null_f\", LegacySQLTypeName.STRING),\n          Field.newBuilder(\"sarray_f\", LegacySQLTypeName.STRING)\n              .setMode(Field.Mode.REPEATED)\n              .build(),\n          Field.newBuilder(\"iarray_f\", LegacySQLTypeName.INTEGER)\n              .setMode(Field.Mode.REPEATED)\n              .build());\n  private static final ImmutableList<String> ALL_TYPES_TABLE_FIELDS =\n      ImmutableList.of(\n          \"string_f\",\n          \"bytes_f\",\n          \"int_f\",\n          \"float_f\",\n          \"numeric_f\",\n          \"boolean_f\",\n          \"timestamp_f\",\n          \"date_f\",\n          \"time_f\",\n          \"datetime_f\",\n          \"geo_f\",\n          \"record_f\",\n          \"null_f\",\n          \"sarray_f\",\n          \"iarray_f\");\n\n  private static final String ALL_TYPES_TABLE_READ_ROWS_RESPONSE_STR =\n      \"stats {\\n\"\n          + \"  progress {\\n\"\n          + \"    at_response_end: 0.5\\n\"\n          + \"  }\\n\"\n          + \"}\\n\"\n          + \"avro_rows {\\n\"\n          + \"  serialized_binary_rows: \\\"\\\\002\\\\n\"\n          + \"hello\\\\002\\\\b\\\\001\\\\002\\\\003\\\\004\\\\002\\\\310\\\\001\\\\0023333336@\\\\002\"\n          + \" \\\\000\\\\000\\\\000\\\\000\\\\000\\\\000\\\\000\\\\000\\\\000\\\\000\\\\000\\\\n\"\n          + \"X\\\\324\\\\226\\\\000\\\\002\\\\001\\\\002\\\\244\\\\234\\\\205\\\\342\\\\275\\\\242\\\\312\\\\005\\\\002\\\\204\\\\235\\\\002\\\\002\\\\340\\\\232\\\\206\\\\213\\\\330\\\\004\\\\00222019-11-11T11:11:11.11111\\\\002\"\n          + \" POINT(31.2 44.5)\\\\002\\\\002\\\\fin_rec\\\\002\\\\\\\"\\\\000\\\\004\\\\006big\\\\n\"\n          + \"query\\\\000\\\\000\\\"\\n\"\n          + \"  row_count: 1\\n\"\n          + \"}\\n\"\n          + \"row_count: 1\\n\";\n\n  @Test\n  public void testReadAvro() throws Exception {\n    TableInfo allTypesTableInfo = allTypesTableInfo();\n    ReadRowsResponse.Builder readRowsResponse = ReadRowsResponse.newBuilder();\n    TextFormat.merge(ALL_TYPES_TABLE_READ_ROWS_RESPONSE_STR, readRowsResponse);\n    Iterator<ReadRowsResponse> readRowsResponses =\n        ImmutableList.of(readRowsResponse.build()).iterator();\n\n    ReadRowsResponseToInternalRowIteratorConverter converter =\n        ReadRowsResponseToInternalRowIteratorConverter.avro(\n            ALL_TYPES_TABLE_BIGQUERY_SCHEMA,\n            ALL_TYPES_TABLE_FIELDS,\n            ALL_TYPES_TABLE_AVRO_RAW_SCHEMA,\n            Optional.empty(),\n            Optional.empty(),\n            SchemaConvertersConfiguration.createDefault(),\n            ResponseCompressionCodec.RESPONSE_COMPRESSION_CODEC_UNSPECIFIED);\n\n    BigQueryInputPartitionReaderContext reader =\n        new BigQueryInputPartitionReaderContext(readRowsResponses, converter, null);\n\n    assertThat(reader.next()).isTrue();\n    InternalRow row = reader.get();\n    assertThat(reader.next()).isFalse();\n    assertThat(row.numFields()).isEqualTo(15);\n    assertThat(row.getString(0)).isEqualTo(\"hello\");\n  }\n\n  private TableInfo allTypesTableInfo() {\n    return TableInfo.newBuilder(\n            TableId.of(\"test\", \"alltypes\"),\n            StandardTableDefinition.newBuilder()\n                .setType(TableDefinition.Type.TABLE)\n                .setSchema(ALL_TYPES_TABLE_BIGQUERY_SCHEMA)\n                .setNumBytes(146L)\n                .setNumRows(1L)\n                .build())\n        .build();\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-bigquery-dsv2-parent/pom.xml",
    "content": "<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n    xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n    xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\">\n  <modelVersion>4.0.0</modelVersion>\n  <parent>\n    <groupId>com.google.cloud.spark</groupId>\n    <artifactId>spark-bigquery-parent</artifactId>\n    <version>${revision}</version>\n    <relativePath>../../spark-bigquery-parent</relativePath>\n  </parent>\n\n  <artifactId>spark-bigquery-dsv2-parent</artifactId>\n  <name>BigQuery DataSource v2 implementation common settings</name>\n  <packaging>pom</packaging>\n  <properties>\n    <spark.version>3.5.0</spark.version>\n    <scala.binary.version>2.12</scala.binary.version>\n  </properties>\n  <licenses>\n    <license>\n      <name>Apache License, Version 2.0</name>\n      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>\n      <distribution>repo</distribution>\n    </license>\n  </licenses>\n  <dependencies>\n    <dependency>\n      <groupId>${project.groupId}</groupId>\n      <artifactId>spark-bigquery-dsv2-common</artifactId>\n      <version>${project.parent.version}</version>\n    </dependency>\n    <dependency>\n      <groupId>commons-lang</groupId>\n      <artifactId>commons-lang</artifactId>\n      <scope>provided</scope>\n    </dependency>\n    <dependency>\n      <groupId>io.openlineage</groupId>\n      <artifactId>openlineage-spark_${scala.binary.version}</artifactId>\n      <scope>test</scope>\n    </dependency>\n    <dependency>\n      <groupId>org.apache.spark</groupId>\n      <artifactId>spark-mllib_${scala.binary.version}</artifactId>\n      <version>${spark.version}</version>\n      <scope>provided</scope>\n      <exclusions>\n        <exclusion>\n          <groupId>io.netty</groupId>\n          <artifactId>netty-all</artifactId>\n        </exclusion>\n      </exclusions>\n    </dependency>\n    <dependency>\n      <groupId>org.apache.spark</groupId>\n      <artifactId>spark-sql_${scala.binary.version}</artifactId>\n      <version>${spark.version}</version>\n      <scope>provided</scope>\n      <exclusions>\n        <exclusion>\n          <groupId>io.netty</groupId>\n          <artifactId>netty-all</artifactId>\n        </exclusion>\n      </exclusions>\n    </dependency>\n    <dependency>\n      <groupId>${project.groupId}</groupId>\n      <artifactId>spark-bigquery-tests</artifactId>\n      <version>${project.parent.version}</version>\n      <scope>test</scope>\n    </dependency>\n  </dependencies>\n  <build>\n    <plugins>\n      <plugin>\n        <groupId>org.apache.maven.plugins</groupId>\n        <artifactId>maven-resources-plugin</artifactId>\n        <executions>\n          <execution>\n            <id>copy-resources</id>\n            <!-- here the phase you need -->\n            <phase>validate</phase>\n            <goals>\n              <goal>copy-resources</goal>\n            </goals>\n            <configuration>\n              <outputDirectory>${basedir}/target/classes</outputDirectory>\n              <resources>\n                <resource>\n                  <directory>src/build/resources</directory>\n                  <filtering>true</filtering>\n                </resource>\n              </resources>\n            </configuration>\n          </execution>\n        </executions>\n      </plugin>\n      <plugin>\n        <artifactId>maven-jar-plugin</artifactId>\n        <executions>\n          <execution>\n            <id>empty-javadoc-jar</id>\n            <phase>package</phase>\n            <goals>\n              <goal>jar</goal>\n            </goals>\n            <configuration>\n              <classifier>javadoc</classifier>\n              <classesDirectory>${basedir}/src/build/javadoc</classesDirectory>\n            </configuration>\n          </execution>\n        </executions>\n      </plugin>\n    </plugins>\n  </build>\n</project>\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-bigquery-metrics/pom.xml",
    "content": "<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n         xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n         xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\">\n    <modelVersion>4.0.0</modelVersion>\n    <parent>\n        <groupId>com.google.cloud.spark</groupId>\n        <artifactId>spark-bigquery-dsv2-parent</artifactId>\n        <version>${revision}</version>\n        <relativePath>../spark-bigquery-dsv2-parent</relativePath>\n    </parent>\n\n    <artifactId>spark-bigquery-metrics</artifactId>\n    <version>${revision}</version>\n    <name>Custom Metrics code for BigQuery DataSource v2 for Spark 3.2</name>\n    <properties>\n        <spark.version>3.2.0</spark.version>\n        <shade.skip>true</shade.skip>\n    </properties>\n    <licenses>\n        <license>\n            <name>Apache License, Version 2.0</name>\n            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>\n            <distribution>repo</distribution>\n        </license>\n    </licenses>\n    <dependencies>\n        <dependency>\n            <groupId>org.apache.spark</groupId>\n            <artifactId>spark-sql_2.12</artifactId>\n            <version>${spark.version}</version>\n            <scope>provided</scope>\n        </dependency>\n    </dependencies>\n</project>\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-bigquery-metrics/src/main/java/com/google/cloud/spark/bigquery/v2/customMetrics/MetricUtils.java",
    "content": "package com.google.cloud.spark.bigquery.v2.customMetrics;\n\nimport static org.apache.spark.util.Utils.bytesToString;\nimport static org.apache.spark.util.Utils.msDurationToString;\n\nimport java.text.NumberFormat;\nimport java.util.Arrays;\nimport java.util.Locale;\n\nclass MetricUtils {\n\n  private static final String METRIC_FORMAT = \"total (min, med, max)\\n%s (%s, %s, %s)\";\n  private static final NumberFormat NUMBER_FORMAT_US = NumberFormat.getIntegerInstance(Locale.US);\n\n  static String formatTimeMetrics(long[] taskMetrics) {\n    if (taskMetrics.length == 0) {\n      return msDurationToString(0);\n    }\n    if (taskMetrics.length == 1) {\n      return msDurationToString(taskMetrics[0]);\n    }\n    Arrays.sort(taskMetrics);\n    String sum = msDurationToString(Arrays.stream(taskMetrics).sum());\n    String min = msDurationToString(taskMetrics[0]);\n    String med = msDurationToString(taskMetrics[taskMetrics.length / 2]);\n    String max = msDurationToString(taskMetrics[taskMetrics.length - 1]);\n    return String.format(METRIC_FORMAT, sum, min, med, max);\n  }\n\n  static String formatSizeMetrics(long[] taskMetrics) {\n    return bytesToString(Arrays.stream(taskMetrics).sum());\n  }\n\n  static String formatSumMetrics(long[] taskMetrics) {\n    return NUMBER_FORMAT_US.format(Arrays.stream(taskMetrics).sum());\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-bigquery-metrics/src/main/java/com/google/cloud/spark/bigquery/v2/customMetrics/SparkBigQueryBytesReadMetric.java",
    "content": "package com.google.cloud.spark.bigquery.v2.customMetrics;\n\nimport static com.google.cloud.spark.bigquery.v2.customMetrics.SparkBigQueryCustomMetricConstants.BIG_QUERY_BYTES_READ_METRIC_DESCRIPTION;\nimport static com.google.cloud.spark.bigquery.v2.customMetrics.SparkBigQueryCustomMetricConstants.BIG_QUERY_BYTES_READ_METRIC_NAME;\n\nimport org.apache.spark.sql.connector.metric.CustomMetric;\n\npublic class SparkBigQueryBytesReadMetric implements CustomMetric {\n\n  @Override\n  public String name() {\n    return BIG_QUERY_BYTES_READ_METRIC_NAME;\n  }\n\n  @Override\n  public String description() {\n    return BIG_QUERY_BYTES_READ_METRIC_DESCRIPTION;\n  }\n\n  @Override\n  public String aggregateTaskMetrics(long[] taskMetrics) {\n    return MetricUtils.formatSizeMetrics(taskMetrics);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-bigquery-metrics/src/main/java/com/google/cloud/spark/bigquery/v2/customMetrics/SparkBigQueryCustomMetricConstants.java",
    "content": "package com.google.cloud.spark.bigquery.v2.customMetrics;\n\npublic class SparkBigQueryCustomMetricConstants {\n  public static final String BIG_QUERY_BYTES_READ_METRIC_NAME = \"bqBytesRead\";\n  static final String BIG_QUERY_BYTES_READ_METRIC_DESCRIPTION = \"number of BQ bytes read\";\n  public static final String BIG_QUERY_ROWS_READ_METRIC_NAME = \"bqRowsRead\";\n  static final String BIG_QUERY_ROWS_READ_METRIC_DESCRIPTION = \"number of BQ rows read\";\n  public static final String BIG_QUERY_SCAN_TIME_METRIC_NAME = \"bqScanTime\";\n  static final String BIG_QUERY_SCAN_TIME_METRIC_DESCRIPTION = \"scan time for BQ\";\n  public static final String BIG_QUERY_PARSE_TIME_METRIC_NAME = \"bqParseTime\";\n  static final String BIG_QUERY_PARSE_TIME_METRIC_DESCRIPTION = \"parsing time for BQ\";\n  public static final String BIG_QUERY_TIME_IN_SPARK_METRIC_NAME = \"bqTimeInSpark\";\n  static final String BIG_QUERY_TIME_IN_SPARK_METRIC_DESCRIPTION = \"time spent in spark\";\n  public static final String BIG_QUERY_NUMBER_OF_READ_STREAMS_METRIC_NAME = \"bqNumReadStreams\";\n  static final String BIG_QUERY_NUMBER_OF_READ_STREAMS_METRIC_DESCRIPTION =\n      \"number of read streams\";\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-bigquery-metrics/src/main/java/com/google/cloud/spark/bigquery/v2/customMetrics/SparkBigQueryNumberOfReadStreamsMetric.java",
    "content": "package com.google.cloud.spark.bigquery.v2.customMetrics;\n\nimport static com.google.cloud.spark.bigquery.v2.customMetrics.SparkBigQueryCustomMetricConstants.BIG_QUERY_NUMBER_OF_READ_STREAMS_METRIC_DESCRIPTION;\nimport static com.google.cloud.spark.bigquery.v2.customMetrics.SparkBigQueryCustomMetricConstants.BIG_QUERY_NUMBER_OF_READ_STREAMS_METRIC_NAME;\n\nimport org.apache.spark.sql.connector.metric.CustomMetric;\n\npublic class SparkBigQueryNumberOfReadStreamsMetric implements CustomMetric {\n\n  @Override\n  public String name() {\n    return BIG_QUERY_NUMBER_OF_READ_STREAMS_METRIC_NAME;\n  }\n\n  @Override\n  public String description() {\n    return BIG_QUERY_NUMBER_OF_READ_STREAMS_METRIC_DESCRIPTION;\n  }\n\n  @Override\n  public String aggregateTaskMetrics(long[] taskMetrics) {\n    return MetricUtils.formatSumMetrics(taskMetrics);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-bigquery-metrics/src/main/java/com/google/cloud/spark/bigquery/v2/customMetrics/SparkBigQueryParseTimeMetric.java",
    "content": "package com.google.cloud.spark.bigquery.v2.customMetrics;\n\nimport static com.google.cloud.spark.bigquery.v2.customMetrics.SparkBigQueryCustomMetricConstants.BIG_QUERY_PARSE_TIME_METRIC_DESCRIPTION;\nimport static com.google.cloud.spark.bigquery.v2.customMetrics.SparkBigQueryCustomMetricConstants.BIG_QUERY_PARSE_TIME_METRIC_NAME;\n\nimport org.apache.spark.sql.connector.metric.CustomMetric;\n\npublic class SparkBigQueryParseTimeMetric implements CustomMetric {\n\n  @Override\n  public String name() {\n    return BIG_QUERY_PARSE_TIME_METRIC_NAME;\n  }\n\n  @Override\n  public String description() {\n    return BIG_QUERY_PARSE_TIME_METRIC_DESCRIPTION;\n  }\n\n  @Override\n  public String aggregateTaskMetrics(long[] taskMetrics) {\n    return MetricUtils.formatTimeMetrics(taskMetrics);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-bigquery-metrics/src/main/java/com/google/cloud/spark/bigquery/v2/customMetrics/SparkBigQueryRowsReadMetric.java",
    "content": "package com.google.cloud.spark.bigquery.v2.customMetrics;\n\nimport static com.google.cloud.spark.bigquery.v2.customMetrics.SparkBigQueryCustomMetricConstants.BIG_QUERY_ROWS_READ_METRIC_DESCRIPTION;\nimport static com.google.cloud.spark.bigquery.v2.customMetrics.SparkBigQueryCustomMetricConstants.BIG_QUERY_ROWS_READ_METRIC_NAME;\n\nimport org.apache.spark.sql.connector.metric.CustomMetric;\n\npublic class SparkBigQueryRowsReadMetric implements CustomMetric {\n  @Override\n  public String name() {\n    return BIG_QUERY_ROWS_READ_METRIC_NAME;\n  }\n\n  @Override\n  public String description() {\n    return BIG_QUERY_ROWS_READ_METRIC_DESCRIPTION;\n  }\n\n  @Override\n  public String aggregateTaskMetrics(long[] taskMetrics) {\n    return MetricUtils.formatSumMetrics(taskMetrics);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-bigquery-metrics/src/main/java/com/google/cloud/spark/bigquery/v2/customMetrics/SparkBigQueryScanTimeMetric.java",
    "content": "package com.google.cloud.spark.bigquery.v2.customMetrics;\n\nimport static com.google.cloud.spark.bigquery.v2.customMetrics.SparkBigQueryCustomMetricConstants.BIG_QUERY_SCAN_TIME_METRIC_DESCRIPTION;\nimport static com.google.cloud.spark.bigquery.v2.customMetrics.SparkBigQueryCustomMetricConstants.BIG_QUERY_SCAN_TIME_METRIC_NAME;\n\nimport org.apache.spark.sql.connector.metric.CustomMetric;\n\npublic class SparkBigQueryScanTimeMetric implements CustomMetric {\n\n  @Override\n  public String name() {\n    return BIG_QUERY_SCAN_TIME_METRIC_NAME;\n  }\n\n  @Override\n  public String description() {\n    return BIG_QUERY_SCAN_TIME_METRIC_DESCRIPTION;\n  }\n\n  @Override\n  public String aggregateTaskMetrics(long[] taskMetrics) {\n    return MetricUtils.formatTimeMetrics(taskMetrics);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-bigquery-metrics/src/main/java/com/google/cloud/spark/bigquery/v2/customMetrics/SparkBigQueryTaskMetric.java",
    "content": "package com.google.cloud.spark.bigquery.v2.customMetrics;\n\nimport org.apache.spark.sql.connector.metric.CustomTaskMetric;\n\npublic class SparkBigQueryTaskMetric implements CustomTaskMetric {\n  private final String name;\n  private final long value;\n\n  public SparkBigQueryTaskMetric(String name, long value) {\n    this.name = name;\n    this.value = value;\n  }\n\n  @Override\n  public String name() {\n    return name;\n  }\n\n  @Override\n  public long value() {\n    return value;\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-bigquery-metrics/src/main/java/com/google/cloud/spark/bigquery/v2/customMetrics/SparkBigQueryTimeInSparkMetric.java",
    "content": "package com.google.cloud.spark.bigquery.v2.customMetrics;\n\nimport static com.google.cloud.spark.bigquery.v2.customMetrics.SparkBigQueryCustomMetricConstants.*;\n\nimport org.apache.spark.sql.connector.metric.CustomMetric;\n\npublic class SparkBigQueryTimeInSparkMetric implements CustomMetric {\n\n  @Override\n  public String name() {\n    return BIG_QUERY_TIME_IN_SPARK_METRIC_NAME;\n  }\n\n  @Override\n  public String description() {\n    return BIG_QUERY_TIME_IN_SPARK_METRIC_DESCRIPTION;\n  }\n\n  @Override\n  public String aggregateTaskMetrics(long[] taskMetrics) {\n    return MetricUtils.formatTimeMetrics(taskMetrics);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-bigquery-metrics/src/test/java/com/google/cloud/spark/bigquery/v2/customMetrics/SparkBigQueryBytesReadMetricTest.java",
    "content": "package com.google.cloud.spark.bigquery.v2.customMetrics;\n\nimport static com.google.cloud.spark.bigquery.v2.customMetrics.SparkBigQueryCustomMetricConstants.BIG_QUERY_BYTES_READ_METRIC_DESCRIPTION;\nimport static com.google.cloud.spark.bigquery.v2.customMetrics.SparkBigQueryCustomMetricConstants.BIG_QUERY_BYTES_READ_METRIC_NAME;\nimport static com.google.common.truth.Truth.assertThat;\n\nimport org.junit.Test;\n\npublic class SparkBigQueryBytesReadMetricTest {\n  private final SparkBigQueryBytesReadMetric sparkBigQueryBytesReadMetric =\n      new SparkBigQueryBytesReadMetric();\n\n  @Test\n  public void testName() {\n    assertThat(sparkBigQueryBytesReadMetric.name()).isEqualTo(BIG_QUERY_BYTES_READ_METRIC_NAME);\n  }\n\n  @Test\n  public void testDescription() {\n    assertThat(sparkBigQueryBytesReadMetric.description())\n        .isEqualTo(BIG_QUERY_BYTES_READ_METRIC_DESCRIPTION);\n  }\n\n  @Test\n  public void testAggregateMetrics() {\n    assertThat(sparkBigQueryBytesReadMetric.aggregateTaskMetrics(new long[] {1024L, 2048L}))\n        .isEqualTo(\"3.0 KiB\");\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-bigquery-metrics/src/test/java/com/google/cloud/spark/bigquery/v2/customMetrics/SparkBigQueryNumberOfReadStreamsMetricTest.java",
    "content": "package com.google.cloud.spark.bigquery.v2.customMetrics;\n\nimport static com.google.cloud.spark.bigquery.v2.customMetrics.SparkBigQueryCustomMetricConstants.BIG_QUERY_NUMBER_OF_READ_STREAMS_METRIC_DESCRIPTION;\nimport static com.google.cloud.spark.bigquery.v2.customMetrics.SparkBigQueryCustomMetricConstants.BIG_QUERY_NUMBER_OF_READ_STREAMS_METRIC_NAME;\nimport static com.google.common.truth.Truth.assertThat;\n\nimport org.junit.Test;\n\npublic class SparkBigQueryNumberOfReadStreamsMetricTest {\n  private final SparkBigQueryNumberOfReadStreamsMetric sparkBigQueryNumberOfReadStreamsMetric =\n      new SparkBigQueryNumberOfReadStreamsMetric();\n\n  @Test\n  public void testName() {\n    assertThat(sparkBigQueryNumberOfReadStreamsMetric.name())\n        .isEqualTo(BIG_QUERY_NUMBER_OF_READ_STREAMS_METRIC_NAME);\n  }\n\n  @Test\n  public void testDescription() {\n    assertThat(sparkBigQueryNumberOfReadStreamsMetric.description())\n        .isEqualTo(BIG_QUERY_NUMBER_OF_READ_STREAMS_METRIC_DESCRIPTION);\n  }\n\n  @Test\n  public void testAggregateMetrics() {\n    assertThat(\n            sparkBigQueryNumberOfReadStreamsMetric.aggregateTaskMetrics(new long[] {2L, 5L, 100L}))\n        .isEqualTo(\"107\");\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-bigquery-metrics/src/test/java/com/google/cloud/spark/bigquery/v2/customMetrics/SparkBigQueryParseTimeMetricTest.java",
    "content": "package com.google.cloud.spark.bigquery.v2.customMetrics;\n\nimport static com.google.cloud.spark.bigquery.v2.customMetrics.SparkBigQueryCustomMetricConstants.*;\nimport static com.google.common.truth.Truth.assertThat;\n\nimport org.junit.Test;\n\npublic class SparkBigQueryParseTimeMetricTest {\n  private final SparkBigQueryParseTimeMetric sparkBigQueryParseTimeMetric =\n      new SparkBigQueryParseTimeMetric();\n\n  @Test\n  public void testName() {\n    assertThat(sparkBigQueryParseTimeMetric.name()).isEqualTo(BIG_QUERY_PARSE_TIME_METRIC_NAME);\n  }\n\n  @Test\n  public void testDescription() {\n    assertThat(sparkBigQueryParseTimeMetric.description())\n        .isEqualTo(BIG_QUERY_PARSE_TIME_METRIC_DESCRIPTION);\n  }\n\n  @Test\n  public void testAggregateMetrics() {\n    assertThat(sparkBigQueryParseTimeMetric.aggregateTaskMetrics(new long[] {1020L, 2030L, 3040L}))\n        .isEqualTo(\"total (min, med, max)\\n\" + \"6.1 s (1.0 s, 2.0 s, 3.0 s)\");\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-bigquery-metrics/src/test/java/com/google/cloud/spark/bigquery/v2/customMetrics/SparkBigQueryRowsReadMetricTest.java",
    "content": "package com.google.cloud.spark.bigquery.v2.customMetrics;\n\nimport static com.google.cloud.spark.bigquery.v2.customMetrics.SparkBigQueryCustomMetricConstants.*;\nimport static com.google.common.truth.Truth.assertThat;\n\nimport org.junit.Test;\n\npublic class SparkBigQueryRowsReadMetricTest {\n  private final SparkBigQueryRowsReadMetric sparkBigQueryRowsReadMetric =\n      new SparkBigQueryRowsReadMetric();\n\n  @Test\n  public void testName() {\n    assertThat(sparkBigQueryRowsReadMetric.name()).isEqualTo(BIG_QUERY_ROWS_READ_METRIC_NAME);\n  }\n\n  @Test\n  public void testDescription() {\n    assertThat(sparkBigQueryRowsReadMetric.description())\n        .isEqualTo(BIG_QUERY_ROWS_READ_METRIC_DESCRIPTION);\n  }\n\n  @Test\n  public void testAggregateMetrics() {\n    assertThat(sparkBigQueryRowsReadMetric.aggregateTaskMetrics(new long[] {1000L, 2000L}))\n        .isEqualTo(\"3,000\");\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-bigquery-metrics/src/test/java/com/google/cloud/spark/bigquery/v2/customMetrics/SparkBigQueryScanTimeMetricTest.java",
    "content": "package com.google.cloud.spark.bigquery.v2.customMetrics;\n\nimport static com.google.cloud.spark.bigquery.v2.customMetrics.SparkBigQueryCustomMetricConstants.*;\nimport static com.google.common.truth.Truth.assertThat;\n\nimport org.junit.Test;\n\npublic class SparkBigQueryScanTimeMetricTest {\n  private final SparkBigQueryScanTimeMetric sparkBigQueryScanTimeMetric =\n      new SparkBigQueryScanTimeMetric();\n\n  @Test\n  public void testName() {\n    assertThat(sparkBigQueryScanTimeMetric.name()).isEqualTo(BIG_QUERY_SCAN_TIME_METRIC_NAME);\n  }\n\n  @Test\n  public void testDescription() {\n    assertThat(sparkBigQueryScanTimeMetric.description())\n        .isEqualTo(BIG_QUERY_SCAN_TIME_METRIC_DESCRIPTION);\n  }\n\n  @Test\n  public void testAggregateMetrics() {\n    assertThat(sparkBigQueryScanTimeMetric.aggregateTaskMetrics(new long[] {1010L, 2020L, 3030L}))\n        .isEqualTo(\"total (min, med, max)\\n\" + \"6.1 s (1.0 s, 2.0 s, 3.0 s)\");\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-bigquery-metrics/src/test/java/com/google/cloud/spark/bigquery/v2/customMetrics/SparkBigQueryTaskMetricTest.java",
    "content": "package com.google.cloud.spark.bigquery.v2.customMetrics;\n\nimport static com.google.common.truth.Truth.assertThat;\n\nimport org.junit.Test;\n\npublic class SparkBigQueryTaskMetricTest {\n\n  private final String testName = \"test_name\";\n  private final long testValue = 1000L;\n  private final SparkBigQueryTaskMetric sparkBigQueryTaskMetric =\n      new SparkBigQueryTaskMetric(testName, testValue);\n\n  @Test\n  public void testName() {\n    assertThat(sparkBigQueryTaskMetric.name()).isEqualTo(testName);\n  }\n\n  @Test\n  public void testValue() {\n    assertThat(sparkBigQueryTaskMetric.value()).isEqualTo(testValue);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-dsv2/spark-bigquery-metrics/src/test/java/com/google/cloud/spark/bigquery/v2/customMetrics/SparkBigQueryTimeInSparkMetricTest.java",
    "content": "package com.google.cloud.spark.bigquery.v2.customMetrics;\n\nimport static com.google.cloud.spark.bigquery.v2.customMetrics.SparkBigQueryCustomMetricConstants.*;\nimport static com.google.common.truth.Truth.assertThat;\n\nimport org.junit.Test;\n\npublic class SparkBigQueryTimeInSparkMetricTest {\n  private final SparkBigQueryTimeInSparkMetric sparkBigQueryTimeInSparkMetric =\n      new SparkBigQueryTimeInSparkMetric();\n\n  @Test\n  public void testName() {\n    assertThat(sparkBigQueryTimeInSparkMetric.name())\n        .isEqualTo(BIG_QUERY_TIME_IN_SPARK_METRIC_NAME);\n  }\n\n  @Test\n  public void testDescription() {\n    assertThat(sparkBigQueryTimeInSparkMetric.description())\n        .isEqualTo(BIG_QUERY_TIME_IN_SPARK_METRIC_DESCRIPTION);\n  }\n\n  @Test\n  public void testAggregateMetrics() {\n    assertThat(\n            sparkBigQueryTimeInSparkMetric.aggregateTaskMetrics(new long[] {1020L, 2010L, 3030L}))\n        .isEqualTo(\"total (min, med, max)\\n\" + \"6.1 s (1.0 s, 2.0 s, 3.0 s)\");\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-parent/pom.xml",
    "content": "<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n         xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n         xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\">\n    <modelVersion>4.0.0</modelVersion>\n    <groupId>com.google.cloud.spark</groupId>\n    <artifactId>spark-bigquery-parent</artifactId>\n    <version>${revision}</version>\n    <packaging>pom</packaging>\n    <name>Spark BigQuery Connector Build Parent</name>\n    <description>Parent project for all the Spark BigQuery Connector artifacts\n    </description>\n    <url>https://github.com/GoogleCloudDataproc/spark-bigquery-connector</url>\n\n    <licenses>\n        <license>\n            <name>Apache License, Version 2.0</name>\n            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>\n            <distribution>repo</distribution>\n        </license>\n    </licenses>\n\n    <developers>\n        <developer>\n            <organization>Google Inc.</organization>\n            <organizationUrl>http://www.google.com</organizationUrl>\n        </developer>\n    </developers>\n\n    <scm>\n        <connection>\n            scm:git:git@github.com:GoogleCloudDataproc/spark-bigquery-connector.git\n        </connection>\n        <developerConnection>\n            scm:git:git@github.com:GoogleCloudDataproc/spark-bigquery-connector.git\n        </developerConnection>\n        <url>git@github.com:GoogleCloudDataproc/spark-bigquery-connector.git</url>\n    </scm>\n\n    <properties>\n        <gpg.skip>true</gpg.skip>\n        <revision>0.0.1-SNAPSHOT</revision>\n\n        <!-- avro 1.12.0 is compiled with java 11 -->\n        <avro.version>1.11.5</avro.version>\n        <!-- arrow 18.0.0 removed the support for java 8 -->\n        <arrow.version>17.0.0</arrow.version>\n        <arrow.spark4.version>18.3.0</arrow.spark4.version>\n        <gax.version>2.75.0</gax.version>\n        <google-api-client.version>2.9.0</google-api-client.version>\n        <google-auth.version>1.43.0</google-auth.version>\n        <google-cloud-bigquery.version>2.60.0</google-cloud-bigquery.version>\n        <google-cloud-bigquerystorage.version>3.22.1</google-cloud-bigquerystorage.version>\n        <google-cloud-dataproc.version>4.83.0</google-cloud-dataproc.version>\n        <google-cloud-storage.version>2.64.0</google-cloud-storage.version>\n        <google-truth.version>1.4.5</google-truth.version>\n        <grpc.version>1.79.0</grpc.version>\n        <guava.version>33.5.0-jre</guava.version>\n        <jackson.version>2.21.1</jackson.version>\n        <netty.version>4.2.10.Final</netty.version>\n        <openlineage-spark.version>1.37.0</openlineage-spark.version>\n        <paranamer.version>2.8.3</paranamer.version>\n        <!-- Don't upgrade protobuf until bigquerystorage is compatible with 4.x version of proto.\n        Ref : https://github.com/protocolbuffers/protobuf/issues/16452-->\n        <protobuf.version>4.34.0</protobuf.version>\n        <deploy.skip>true</deploy.skip>\n        <nexus.remote.skip>false</nexus.remote.skip>\n        <shade.skip>true</shade.skip>\n        <!-- checkstyle\n        <checkstyle.header.file>${reactor.project.basedir}/java.header</checkstyle.header.file>\n        -->\n        <!-- default release JDK version is 8 to support previous versions of Spark and Dataproc -->\n        <maven.compiler.release>8</maven.compiler.release>\n        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>\n        <toolchain.jdk.version>[1.8,9)</toolchain.jdk.version>\n        <!-- for integration tests, running on JDK 11 and above -->\n        <jdk11plus.argLine>\n            --add-exports java.base/sun.util.calendar=ALL-UNNAMED\n            --add-opens java.base/java.nio=org.apache.arrow.memory.core,ALL-UNNAMED\n            --add-opens java.base/sun.nio.ch=ALL-UNNAMED\n        </jdk11plus.argLine>\n        <scala.skipTests>false</scala.skipTests>\n    </properties>\n    <dependencyManagement>\n        <dependencies>\n            <dependency>\n                <groupId>aopalliance</groupId>\n                <artifactId>aopalliance</artifactId>\n                <version>1.0</version>\n                <scope>provided</scope>\n            </dependency>\n            <dependency>\n                <groupId>com.fasterxml.jackson</groupId>\n                <artifactId>jackson-bom</artifactId>\n                <version>${jackson.version}</version>\n                <scope>import</scope>\n                <type>pom</type>\n            </dependency>\n            <dependency>\n                <groupId>com.fasterxml.jackson.core</groupId>\n                <artifactId>jackson-core</artifactId>\n                <version>${jackson.version}</version>\n                <scope>compile</scope>\n            </dependency>\n            <!-- Fixing CVE-2022-42003 -->\n            <dependency>\n                <groupId>com.fasterxml.jackson.core</groupId>\n                <artifactId>jackson-databind</artifactId>\n                <version>${jackson.version}</version>\n            </dependency>\n            <dependency>\n                <groupId>com.github.luben</groupId>\n                <artifactId>zstd-jni</artifactId>\n                <!-- provided dependency, please don't change the version-->\n                <version>1.4.9-1</version>\n                <scope>provided</scope>\n            </dependency>\n            <dependency>\n                <groupId>com.google.api</groupId>\n                <artifactId>gax-bom</artifactId>\n                <version>${gax.version}</version>\n                <type>pom</type>\n                <scope>import</scope>\n            </dependency>\n            <dependency>\n                <groupId>com.google.api-client</groupId>\n                <artifactId>google-api-client-bom</artifactId>\n                <version>${google-api-client.version}</version>\n                <type>pom</type>\n                <scope>import</scope>\n            </dependency>\n            <dependency>\n                <groupId>com.google.auth</groupId>\n                <artifactId>google-auth-library-bom</artifactId>\n                <version>${google-auth.version}</version>\n                <type>pom</type>\n                <scope>import</scope>\n            </dependency>\n            <dependency>\n                <groupId>com.google.cloud</groupId>\n                <artifactId>google-cloud-bigquery</artifactId>\n                <version>${google-cloud-bigquery.version}</version>\n                <exclusions>\n                    <exclusion>\n                        <groupId>io.grpc</groupId>\n                        <artifactId>grpc-netty-shaded</artifactId>\n                    </exclusion>\n                </exclusions>\n            </dependency>\n            <dependency>\n                <groupId>com.google.cloud</groupId>\n                <artifactId>google-cloud-bigquerystorage-bom</artifactId>\n                <version>${google-cloud-bigquerystorage.version}</version>\n                <type>pom</type>\n                <scope>import</scope>\n            </dependency>\n            <dependency>\n                <groupId>com.google.cloud</groupId>\n                <artifactId>google-cloud-dataproc-bom</artifactId>\n                <version>${google-cloud-dataproc.version}</version>\n                <type>pom</type>\n                <scope>import</scope>\n            </dependency>\n            <dependency>\n                <groupId>com.google.cloud</groupId>\n                <artifactId>google-cloud-storage</artifactId>\n                <version>${google-cloud-storage.version}</version>\n            </dependency>\n            <dependency>\n                <groupId>com.google.cloud.bigdataoss</groupId>\n                <artifactId>gcs-connector</artifactId>\n                <version>hadoop2-2.2.8</version>\n                <classifier>shaded</classifier>\n                <exclusions>\n                    <exclusion>\n                        <groupId>com.google.cloud.bigdataoss</groupId>\n                        <artifactId>util-hadoop</artifactId>\n                    </exclusion>\n                </exclusions>\n            </dependency>\n            <dependency>\n                <groupId>com.google.errorprone</groupId>\n                <artifactId>error_prone_annotations</artifactId>\n                <version>2.48.0</version>\n            </dependency>\n            <dependency>\n                <groupId>com.google.code.findbugs</groupId>\n                <artifactId>jsr305</artifactId>\n                <version>3.0.2</version>\n                <scope>provided</scope>\n            </dependency>\n            <dependency>\n                <groupId>com.google.guava</groupId>\n                <artifactId>guava</artifactId>\n                <version>${guava.version}</version>\n            </dependency>\n            <dependency>\n                <groupId>com.google.protobuf</groupId>\n                <artifactId>protobuf-bom</artifactId>\n                <version>${protobuf.version}</version>\n                <type>pom</type>\n                <scope>import</scope>\n            </dependency>\n            <dependency>\n                <groupId>com.google.truth</groupId>\n                <artifactId>truth</artifactId>\n                <version>${google-truth.version}</version>\n            </dependency>\n            <!-- see https://github.com/paul-hammant/paranamer#releases -->\n            <dependency>\n                <groupId>com.thoughtworks.paranamer</groupId>\n                <artifactId>paranamer</artifactId>\n                <version>${paranamer.version}</version>\n            </dependency>\n            <dependency>\n                <groupId>commons-codec</groupId>\n                <artifactId>commons-codec</artifactId>\n                <version>1.21.0</version>\n            </dependency>\n            <dependency>\n                <groupId>commons-lang</groupId>\n                <artifactId>commons-lang</artifactId>\n                <version>2.6</version>\n            </dependency>\n            <dependency>\n                <groupId>io.grpc</groupId>\n                <artifactId>grpc-bom</artifactId>\n                <version>${grpc.version}</version>\n                <type>pom</type>\n                <scope>import</scope>\n            </dependency>\n            <dependency>\n                <groupId>io.netty</groupId>\n                <artifactId>netty-bom</artifactId>\n                <version>${netty.version}</version>\n                <type>pom</type>\n                <scope>import</scope>\n            </dependency>\n            <dependency>\n                <groupId>io.openlineage</groupId>\n                <artifactId>openlineage-spark_2.12</artifactId>\n                <version>${openlineage-spark.version}</version>\n                <scope>test</scope>\n            </dependency>\n            <dependency>\n                <groupId>io.openlineage</groupId>\n                <artifactId>openlineage-spark_2.13</artifactId>\n                <version>${openlineage-spark.version}</version>\n                <scope>test</scope>\n            </dependency>\n            <dependency>\n                <groupId>javax.annotation</groupId>\n                <artifactId>javax.annotation-api</artifactId>\n                <version>1.3.2</version>\n                <scope>provided</scope>\n            </dependency>\n            <dependency>\n                <groupId>junit</groupId>\n                <artifactId>junit</artifactId>\n                <version>4.13.2</version>\n            </dependency>\n            <dependency>\n                <groupId>org.apache.avro</groupId>\n                <artifactId>avro</artifactId>\n                <version>${avro.version}</version>\n            </dependency>\n            <dependency>\n                <groupId>org.apache.avro</groupId>\n                <artifactId>avro-ipc</artifactId>\n                <version>${avro.version}</version>\n            </dependency>\n            <dependency>\n                <groupId>org.apache.avro</groupId>\n                <artifactId>avro-mapred</artifactId>\n                <version>${avro.version}</version>\n            </dependency>\n            <dependency>\n                <groupId>org.apache.arrow</groupId>\n                <artifactId>arrow-bom</artifactId>\n                <version>${arrow.version}</version>\n                <scope>import</scope>\n                <type>pom</type>\n            </dependency>\n            <dependency>\n                <groupId>org.apache.arrow</groupId>\n                <artifactId>arrow-memory-netty-buffer-patch</artifactId>\n                <version>${arrow.version}</version>\n            </dependency>\n            <dependency>\n                <groupId>org.apache.commons</groupId>\n                <artifactId>commons-compress</artifactId>\n                <version>1.28.0</version>\n            </dependency>\n            <dependency>\n                <groupId>commons-io</groupId>\n                <artifactId>commons-io</artifactId>\n                <version>2.21.0</version>\n            </dependency>\n            <dependency>\n                <groupId>org.apache.commons</groupId>\n                <artifactId>commons-lang3</artifactId>\n                <version>3.20.0</version>\n            </dependency>\n            <dependency>\n                <groupId>org.mockito</groupId>\n                <artifactId>mockito-core</artifactId>\n                <version>4.11.0</version>\n            </dependency>\n            <dependency>\n                <groupId>io.openlineage</groupId>\n                <artifactId>spark-extension-interfaces</artifactId>\n                <version>${openlineage-spark.version}</version>\n            </dependency>\n            <dependency>\n                <groupId>org.conscrypt</groupId>\n                <artifactId>conscrypt-openjdk-uber</artifactId>\n                <version>2.5.2</version>\n                <scope>provided</scope>\n            </dependency>\n            <dependency>\n                <groupId>org.json</groupId>\n                <artifactId>json</artifactId>\n                <version>20231013</version>\n            </dependency>\n        </dependencies>\n    </dependencyManagement>\n    <dependencies>\n        <dependency>\n            <groupId>org.slf4j</groupId>\n            <artifactId>slf4j-api</artifactId>\n            <version>1.7.16</version>\n            <scope>provided</scope>\n        </dependency>\n        <dependency>\n            <groupId>junit</groupId>\n            <artifactId>junit</artifactId>\n            <scope>test</scope>\n        </dependency>\n        <dependency>\n            <groupId>org.mockito</groupId>\n            <artifactId>mockito-core</artifactId>\n            <scope>test</scope>\n        </dependency>\n        <dependency>\n            <groupId>com.google.truth</groupId>\n            <artifactId>truth</artifactId>\n            <scope>test</scope>\n        </dependency>\n    </dependencies>\n    <build>\n        <pluginManagement>\n            <plugins>\n                <plugin>\n                    <groupId>net.alchim31.maven</groupId>\n                    <artifactId>scala-maven-plugin</artifactId>\n                    <version>4.9.5</version>\n                </plugin>\n                <plugin>\n                    <groupId>org.jacoco</groupId>\n                    <artifactId>jacoco-maven-plugin</artifactId>\n                    <version>0.8.11</version>\n                    <executions>\n                        <execution>\n                            <goals>\n                                <goal>prepare-agent</goal>\n                            </goals>\n                        </execution>\n                    </executions>\n                </plugin>\n                <plugin>\n                    <groupId>com.github.spotbugs</groupId>\n                    <artifactId>spotbugs-maven-plugin</artifactId>\n                    <version>4.8.3.0</version>\n                </plugin>\n                <plugin>\n                    <groupId>org.apache.maven.plugins</groupId>\n                    <artifactId>maven-checkstyle-plugin</artifactId>\n                    <version>3.3.1</version>\n                </plugin>\n                <plugin>\n                    <groupId>org.apache.maven.plugins</groupId>\n                    <artifactId>maven-enforcer-plugin</artifactId>\n                    <version>3.4.1</version>\n                </plugin>\n                <plugin>\n                    <groupId>org.apache.maven.plugins</groupId>\n                    <artifactId>maven-failsafe-plugin</artifactId>\n                    <version>3.5.3</version>\n                </plugin>\n                <plugin>\n                    <groupId>org.apache.maven.plugins</groupId>\n                    <artifactId>maven-jar-plugin</artifactId>\n                    <version>3.3.0</version>\n                </plugin>\n                <plugin>\n                    <groupId>org.apache.maven.plugins</groupId>\n                    <artifactId>maven-pmd-plugin</artifactId>\n                    <version>3.21.2</version>\n                </plugin>\n                <plugin>\n                    <groupId>org.apache.maven.plugins</groupId>\n                    <artifactId>maven-resources-plugin</artifactId>\n                    <version>3.3.1</version>\n                </plugin>\n                <plugin>\n                    <groupId>org.apache.maven.plugins</groupId>\n                    <artifactId>maven-shade-plugin</artifactId>\n                    <version>3.6.1</version>\n                </plugin>\n                <plugin>\n                    <groupId>org.apache.maven.plugins</groupId>\n                    <artifactId>maven-surefire-plugin</artifactId>\n                    <version>3.5.3</version>\n                </plugin>\n                <plugin>\n                    <groupId>org.codehaus.mojo</groupId>\n                    <artifactId>build-helper-maven-plugin</artifactId>\n                    <version>3.5.0</version>\n                </plugin>\n                <plugin>\n                    <groupId>org.apache.maven.plugins</groupId>\n                    <artifactId>maven-deploy-plugin</artifactId>\n                    <version>3.1.1</version>\n                    <configuration>\n                        <skip>${deploy.skip}</skip>\n                    </configuration>\n                </plugin>\n            </plugins>\n        </pluginManagement>\n        <plugins>\n            <plugin>\n                <groupId>org.apache.maven.plugins</groupId>\n                <artifactId>maven-compiler-plugin</artifactId>\n                <version>3.14.0</version>\n                <configuration>\n                    <jdkToolchain>\n                        <version>${toolchain.jdk.version}</version>\n                    </jdkToolchain>\n                </configuration>\n            </plugin>\n            <plugin>\n                <groupId>org.apache.maven.plugins</groupId>\n                <artifactId>maven-surefire-plugin</artifactId>\n                <configuration>\n                    <argLine>${argLine}</argLine>\n                    <excludes>\n                        <exclude>**/*AcceptanceTest.java</exclude>\n                        <exclude>**/*IntegrationTest.java</exclude>\n                    </excludes>\n                    <jdkToolchain>\n                        <version>${toolchain.jdk.version}</version>\n                    </jdkToolchain>\n                </configuration>\n            </plugin>\n            <plugin>\n                <groupId>org.apache.maven.plugins</groupId>\n                <artifactId>maven-jar-plugin</artifactId>\n                <configuration>\n                    <archive>\n                        <manifest>\n                            <addDefaultImplementationEntries>true\n                            </addDefaultImplementationEntries>\n                            <addDefaultSpecificationEntries>true\n                            </addDefaultSpecificationEntries>\n                        </manifest>\n                        <manifestEntries>\n                            <!-- Filtering out META-INF/versions/** during shading too -->\n                            <Multi-Release>false</Multi-Release>\n                        </manifestEntries>\n                    </archive>\n                </configuration>\n            </plugin>\n            <plugin>\n                <groupId>org.apache.maven.plugins</groupId>\n                <artifactId>maven-pmd-plugin</artifactId>\n                <configuration>\n                    <aggregate>true</aggregate>\n                    <inputEncoding>utf-8</inputEncoding>\n                    <minimumTokens>100</minimumTokens>\n                    <printFailingErrors>true</printFailingErrors>\n                    <targetJdk>1.8</targetJdk>\n                    <cpd>\n                        <minimumTileSize>100</minimumTileSize>\n                        <failOnViolation>true</failOnViolation>\n                    </cpd>\n                </configuration>\n                <executions>\n                    <execution>\n                        <id>copy-paste-detector</id>\n                        <phase>validate</phase>\n                        <goals>\n                            <goal>cpd-check</goal>\n                        </goals>\n                    </execution>\n                </executions>\n            </plugin>\n            <plugin>\n                <groupId>org.apache.maven.plugins</groupId>\n                <artifactId>maven-checkstyle-plugin</artifactId>\n                <configuration>\n                    <configLocation>google_checks.xml</configLocation>\n                    <consoleOutput>true</consoleOutput>\n                    <failsOnError>false</failsOnError>\n                    <linkXRef>false</linkXRef>\n                </configuration>\n                <executions>\n                    <execution>\n                        <id>validate</id>\n                        <phase>validate</phase>\n                        <goals>\n                            <goal>check</goal>\n                        </goals>\n                    </execution>\n                </executions>\n            </plugin>\n            <plugin>\n                <groupId>org.commonjava.maven.plugins</groupId>\n                <artifactId>directory-maven-plugin</artifactId>\n                <version>1.0</version>\n                <executions>\n                    <execution>\n                        <id>directories</id>\n                        <goals>\n                            <goal>directory-of</goal>\n                        </goals>\n                        <phase>initialize</phase>\n                        <configuration>\n                            <property>reactor.project.basedir</property>\n                            <project>\n                                <groupId>com.google.cloud.spark</groupId>\n                                <artifactId>spark-bigquery-reactor</artifactId>\n                            </project>\n                        </configuration>\n                    </execution>\n                </executions>\n            </plugin>\n            <plugin>\n                <groupId>com.diffplug.spotless</groupId>\n                <artifactId>spotless-maven-plugin</artifactId>\n                <!-- Later versions require Java 11 -->\n                <version>2.30.0</version>\n                <configuration>\n                    <formats>\n                        <format>\n                            <includes>\n                                <include>*.md</include>\n                                <include>.gitignore</include>\n                            </includes>\n                            <trimTrailingWhitespace/>\n                            <endWithNewline/>\n                        </format>\n                    </formats>\n                    <java>\n                        <toggleOffOn>\n                            <off>fmt:off</off>\n                            <on>fmt:on</on>\n                        </toggleOffOn>\n                        <googleJavaFormat>\n                            <version>1.7</version>\n                        </googleJavaFormat>\n                    </java>\n                </configuration>\n                <executions>\n                    <execution>\n                        <goals>\n                            <goal>check</goal>\n                        </goals>\n                        <phase>compile</phase>\n                    </execution>\n                </executions>\n            </plugin>\n            <plugin>\n                <groupId>com.github.spotbugs</groupId>\n                <artifactId>spotbugs-maven-plugin</artifactId>\n                <configuration>\n                    <failOnError>false</failOnError>\n                </configuration>\n            </plugin>\n            <plugin>\n                <groupId>org.codehaus.mojo</groupId>\n                <artifactId>flatten-maven-plugin</artifactId>\n                <version>1.5.0</version>\n                <configuration>\n                    <updatePomFile>true</updatePomFile>\n                    <flattenMode>resolveCiFriendliesOnly</flattenMode>\n                </configuration>\n                <executions>\n                    <execution>\n                        <id>flatten</id>\n                        <!-- we need it to run after the `package` phase, when the shade plugin runs -->\n                        <phase>verify</phase>\n                        <goals>\n                            <goal>flatten</goal>\n                        </goals>\n                    </execution>\n                    <execution>\n                        <id>flatten.clean</id>\n                        <phase>clean</phase>\n                        <goals>\n                            <goal>clean</goal>\n                        </goals>\n                    </execution>\n                </executions>\n            </plugin>\n            <plugin>\n                <groupId>org.apache.maven.plugins</groupId>\n                <artifactId>maven-shade-plugin</artifactId>\n                <configuration>\n                    <skip>${shade.skip}</skip>\n                    <shadedArtifactAttached>false</shadedArtifactAttached>\n                    <relocations>\n                        <relocation>\n                            <pattern>android</pattern>\n                            <shadedPattern>com.google.cloud.spark.bigquery.repackaged.android</shadedPattern>\n                        </relocation>\n                        <relocation>\n                            <pattern>autovalue</pattern>\n                            <shadedPattern>com.google.cloud.spark.bigquery.repackaged.autovalue</shadedPattern>\n                        </relocation>\n                        <relocation>\n                            <pattern>avro.shaded</pattern>\n                            <shadedPattern>com.google.cloud.spark.bigquery.repackaged.avro.shaded</shadedPattern>\n                        </relocation>\n                        <relocation>\n                            <pattern>com.fasterxml</pattern>\n                            <shadedPattern>com.google.cloud.spark.bigquery.repackaged.com.fasterxml</shadedPattern>\n                        </relocation>\n                        <relocation>\n                            <pattern>com.github</pattern>\n                            <shadedPattern>com.google.cloud.spark.bigquery.repackaged.com.github</shadedPattern>\n                            <!-- Need to exclude the zstd library from being repackaged because of https://github.com/luben/zstd-jni#limitations -->\n                            <excludes>\n                                <exclude>com.github.luben.zstd.**</exclude>\n                            </excludes>\n                        </relocation>\n                        <relocation>\n                            <pattern>com.google</pattern>\n                            <shadedPattern>com.google.cloud.spark.bigquery.repackaged.com.google</shadedPattern>\n                            <excludes>\n                                <exclude>com.google.cloud.bigquery.connector.common.**</exclude>\n                                <exclude>com.google.cloud.spark.bigquery.**</exclude>\n                                <exclude>com.google.cloud.spark.events.**</exclude>\n                            </excludes>\n                        </relocation>\n                        <relocation>\n                            <pattern>com.thoughtworks.paranamer</pattern>\n                            <shadedPattern>com.google.cloud.spark.bigquery.repackaged.com.thoughtworks.paranamer\n                            </shadedPattern>\n                        </relocation>\n                        <relocation>\n                            <pattern>com.typesafe</pattern>\n                            <shadedPattern>com.google.cloud.spark.bigquery.repackaged.com.typesafe</shadedPattern>\n                        </relocation>\n                        <relocation>\n                            <pattern>io.grpc</pattern>\n                            <shadedPattern>com.google.cloud.spark.bigquery.repackaged.io.grpc</shadedPattern>\n                        </relocation>\n                        <relocation>\n                            <pattern>io.netty</pattern>\n                            <shadedPattern>com.google.cloud.spark.bigquery.repackaged.io.netty</shadedPattern>\n                        </relocation>\n                        <relocation>\n                            <pattern>io.opencensus</pattern>\n                            <shadedPattern>com.google.cloud.spark.bigquery.repackaged.io.opencensus</shadedPattern>\n                        </relocation>\n                        <relocation>\n                            <pattern>io.opentelemetry</pattern>\n                            <shadedPattern>com.google.cloud.spark.bigquery.repackaged.io.opentelemetry</shadedPattern>\n                        </relocation>\n                        <relocation>\n                            <pattern>io.perfmark</pattern>\n                            <shadedPattern>com.google.cloud.spark.bigquery.repackaged.io.perfmark</shadedPattern>\n                        </relocation>\n                        <relocation>\n                            <pattern>javax.inject</pattern>\n                            <shadedPattern>com.google.cloud.spark.bigquery.repackaged.javax.inject</shadedPattern>\n                        </relocation>\n                        <relocation>\n                            <pattern>net.bytebuddy</pattern>\n                            <shadedPattern>com.google.cloud.spark.bigquery.repackaged.net.bytebuddy</shadedPattern>\n                        </relocation>\n                        <relocation>\n                            <pattern>org.apache.arrow</pattern>\n                            <shadedPattern>com.google.cloud.spark.bigquery.repackaged.org.apache.arrow</shadedPattern>\n                        </relocation>\n                        <relocation>\n                            <pattern>org.apache.beam</pattern>\n                            <shadedPattern>com.google.cloud.spark.bigquery.repackaged.org.apache.beam</shadedPattern>\n                        </relocation>\n                        <relocation>\n                            <pattern>org.apache.commons</pattern>\n                            <shadedPattern>com.google.cloud.spark.bigquery.repackaged.org.apache.commons</shadedPattern>\n                            <excludes>\n                                <exclude>org.apache.commons.logging.*</exclude>\n                            </excludes>\n                        </relocation>\n                        <relocation>\n                            <pattern>org.apache.http</pattern>\n                            <shadedPattern>com.google.cloud.spark.bigquery.repackaged.org.apache.http</shadedPattern>\n                        </relocation>\n                        <relocation>\n                            <pattern>org.checkerframework</pattern>\n                            <shadedPattern>com.google.cloud.spark.bigquery.repackaged.org.checkerframework\n                            </shadedPattern>\n                        </relocation>\n                        <relocation>\n                            <pattern>org.codehaus.mojo</pattern>\n                            <shadedPattern>com.google.cloud.spark.bigquery.repackaged.org.codehaus.mojo</shadedPattern>\n                        </relocation>\n                        <relocation>\n                            <pattern>org.eclipse.collections</pattern>\n                            <shadedPattern>com.google.cloud.spark.bigquery.repackaged.org.eclipse.collections\n                            </shadedPattern>\n                        </relocation>\n                        <relocation>\n                            <pattern>org.json</pattern>\n                            <shadedPattern>com.google.cloud.spark.bigquery.repackaged.org.json</shadedPattern>\n                        </relocation>\n                        <relocation>\n                            <pattern>org.jspecify</pattern>\n                            <shadedPattern>com.google.cloud.spark.bigquery.repackaged.org.jspecify</shadedPattern>\n                        </relocation>\n                        <relocation>\n                            <pattern>org.threeten</pattern>\n                            <shadedPattern>com.google.cloud.spark.bigquery.repackaged.org.threeten</shadedPattern>\n                        </relocation>\n                        <relocation>\n                            <pattern>org.tukaani.xz</pattern>\n                            <shadedPattern>com.google.cloud.spark.bigquery.repackaged.org.tukaani.xz</shadedPattern>\n                        </relocation>\n                        <relocation>\n                            <pattern>org.xerial.snappy</pattern>\n                            <shadedPattern>com.google.cloud.spark.bigquery.repackaged.org.xerial.snappy</shadedPattern>\n                        </relocation>\n                        <relocation>\n                            <pattern>io.openlineage.spark.shade</pattern>\n                            <shadedPattern>com.google.cloud.spark.bigquery.repackaged.io.openlineage.spark.shade\n                            </shadedPattern>\n                        </relocation>\n                        <relocation>\n                            <pattern>META-INF/native/libnetty</pattern>\n                            <shadedPattern>META-INF/native/libcom_google_cloud_spark_bigquery_repackaged_netty\n                            </shadedPattern>\n                        </relocation>\n                        <relocation>\n                            <pattern>META-INF/native/netty</pattern>\n                            <shadedPattern>META-INF/native/com_google_cloud_spark_bigquery_repackaged_netty\n                            </shadedPattern>\n                        </relocation>\n                    </relocations>\n                    <transformers>\n                        <transformer\n                                implementation=\"org.apache.maven.plugins.shade.resource.ServicesResourceTransformer\"/>\n                    </transformers>\n                    <filters>\n                        <filter>\n                            <artifact>*:*</artifact>\n                            <excludes>\n                                <exclude>module-info.class</exclude>\n                                <exclude>META-INF/*.MF</exclude>\n                                <exclude>META-INF/*.SF</exclude>\n                                <exclude>META-INF/*.DSA</exclude>\n                                <exclude>META-INF/*.RSA</exclude>\n                                <exclude>META-INF/maven/**</exclude>\n                                <exclude>META-INF/versions/**</exclude>\n                                <exclude>**/*.proto</exclude>\n                            </excludes>\n                        </filter>\n                    </filters>\n                </configuration>\n                <executions>\n                    <execution>\n                        <phase>package</phase>\n                        <goals>\n                            <goal>shade</goal>\n                        </goals>\n                    </execution>\n                </executions>\n            </plugin>\n            <plugin>\n                <groupId>org.apache.maven.plugins</groupId>\n                <artifactId>maven-toolchains-plugin</artifactId>\n                <version>3.2.0</version>\n                <executions>\n                    <execution>\n                        <goals>\n                            <goal>select-jdk-toolchain</goal>\n                        </goals>\n                    </execution>\n                </executions>\n            </plugin>\n            <plugin>\n                <groupId>org.codehaus.mojo</groupId>\n                <artifactId>exec-maven-plugin</artifactId>\n                <version>3.3.0</version>\n                <executions>\n                    <execution>\n                        <id>verify-shaded-artifact</id>\n                        <phase>pre-integration-test</phase>\n                        <goals>\n                            <goal>exec</goal>\n                        </goals>\n                    </execution>\n                </executions>\n                <configuration>\n                    <skip>${shade.skip}</skip>\n                    <executable>${reactor.project.basedir}/scripts/verify-shading.sh</executable>\n                    <arguments>\n                        <argument>${project.build.directory}/${project.build.finalName}.jar</argument>\n                    </arguments>\n                </configuration>\n            </plugin>\n        </plugins>\n        <extensions>\n            <extension>\n            <groupId>com.google.cloud.artifactregistry</groupId>\n            <artifactId>artifactregistry-maven-wagon</artifactId>\n            <version>2.2.0</version>\n            </extension>\n        </extensions>\n    </build>\n    <reporting>\n        <plugins>\n            <plugin>\n                <groupId>com.github.spotbugs</groupId>\n                <artifactId>spotbugs-maven-plugin</artifactId>\n            </plugin>\n        </plugins>\n    </reporting>\n\n    <profiles>\n        <profile>\n            <id>integration</id>\n            <activation>\n                <activeByDefault>false</activeByDefault>\n            </activation>\n            <build>\n                <plugins>\n                    <plugin>\n                        <groupId>org.apache.maven.plugins</groupId>\n                        <artifactId>maven-failsafe-plugin</artifactId>\n                        <configuration>\n                            <argLine>${argLine}</argLine>\n                            <forkCount>7</forkCount>\n                            <reuseForks>false</reuseForks>\n                            <includes>\n                                <include>**/*IntegrationTest.java</include>\n                            </includes>\n                            <jdkToolchain>\n                                <version>${toolchain.jdk.version}</version>\n                            </jdkToolchain>\n                        </configuration>\n                        <executions>\n                            <execution>\n                                <id>integration-test</id>\n                                <goals>\n                                    <goal>integration-test</goal>\n                                </goals>\n                            </execution>\n                            <execution>\n                                <id>verify</id>\n                                <goals>\n                                    <goal>verify</goal>\n                                </goals>\n                            </execution>\n                        </executions>\n                    </plugin>\n                </plugins>\n            </build>\n        </profile>\n        <profile>\n            <id>acceptance</id>\n            <activation>\n                <activeByDefault>false</activeByDefault>\n            </activation>\n            <build>\n                <plugins>\n                    <plugin>\n                        <groupId>org.apache.maven.plugins</groupId>\n                        <artifactId>maven-failsafe-plugin</artifactId>\n                        <configuration>\n                            <forkCount>10</forkCount>\n                            <reuseForks>false</reuseForks>\n                            <includes>\n                                <include>**/*AcceptanceTest.java</include>\n                            </includes>\n                        </configuration>\n                        <executions>\n                            <execution>\n                                <id>integration-test</id>\n                                <goals>\n                                    <goal>integration-test</goal>\n                                </goals>\n                            </execution>\n                            <execution>\n                                <id>verify</id>\n                                <goals>\n                                    <goal>verify</goal>\n                                </goals>\n                            </execution>\n                        </executions>\n                    </plugin>\n                </plugins>\n            </build>\n        </profile>\n        <profile>\n            <id>coverage</id>\n            <activation>\n                <activeByDefault>false</activeByDefault>\n            </activation>\n            <build>\n                <plugins>\n                    <plugin>\n                        <groupId>org.jacoco</groupId>\n                        <artifactId>jacoco-maven-plugin</artifactId>\n                        <executions>\n                            <execution>\n                                <id>report</id>\n                                <phase>verify</phase>\n                                <goals>\n                                    <goal>report</goal>\n                                </goals>\n                            </execution>\n                        </executions>\n                    </plugin>\n                </plugins>\n            </build>\n            <reporting>\n                <plugins>\n                    <plugin>\n                        <groupId>org.jacoco</groupId>\n                        <artifactId>jacoco-maven-plugin</artifactId>\n                        <reportSets>\n                            <reportSet>\n                                <reports>\n                                    <!-- select non-aggregate reports -->\n                                    <report>report</report>\n                                </reports>\n                            </reportSet>\n                        </reportSets>\n                    </plugin>\n                </plugins>\n            </reporting>\n        </profile>\n        <profile>\n            <id>release-nightly</id>\n            <properties>\n                <deploy.skip>false</deploy.skip>\n            </properties>\n            <distributionManagement>\n                <snapshotRepository>\n                  <id>artifact-registry</id>\n                  <url>artifactregistry://us-maven.pkg.dev/cloud-dataproc-ci/connectors</url>\n                </snapshotRepository>\n                <repository>\n                  <id>artifact-registry</id>\n                  <url>artifactregistry://us-maven.pkg.dev/cloud-dataproc-ci/connectors</url>\n                </repository>\n              </distributionManagement>\n        </profile>\n        <profile>\n            <id>release</id>\n            <properties>\n                <gpg.skip>false</gpg.skip>\n            </properties>\n            <build>\n                <plugins>\n                    <plugin>\n                        <groupId>org.sonatype.plugins</groupId>\n                        <artifactId>nexus-staging-maven-plugin</artifactId>\n                        <version>1.6.13</version>\n                        <extensions>true</extensions>\n                        <configuration>\n                            <serverId>ossrh</serverId>\n                            <nexusUrl>https://ossrh-staging-api.central.sonatype.com</nexusUrl>\n                            <autoReleaseAfterClose>false</autoReleaseAfterClose>\n                            <skipRemoteStaging>${nexus.remote.skip}</skipRemoteStaging>\n                        </configuration>\n                    </plugin>\n                    <plugin>\n                        <groupId>org.apache.maven.plugins</groupId>\n                        <artifactId>maven-gpg-plugin</artifactId>\n                        <version>3.2.8</version>\n                        <executions>\n                            <execution>\n                                <id>sign-artifacts</id>\n                                <phase>verify</phase>\n                                <goals>\n                                    <goal>sign</goal>\n                                </goals>\n                            </execution>\n                        </executions>\n                        <configuration>\n                            <!-- Expect the password to be passed as the gpg.passphrase property instead of provided over a tty by the gpg-agent process. -->\n                            <useAgent>false</useAgent>\n                        </configuration>\n                    </plugin>\n                    <plugin>\n                        <groupId>org.apache.maven.plugins</groupId>\n                        <artifactId>maven-source-plugin</artifactId>\n                        <version>3.3.1</version>\n                        <configuration>\n                            <forceCreation>true</forceCreation>\n                        </configuration>\n                        <executions>\n                            <execution>\n                                <id>attach-sources</id>\n                                <goals>\n                                    <goal>jar-no-fork</goal>\n                                </goals>\n                            </execution>\n                        </executions>\n                    </plugin>\n                    <plugin>\n                        <groupId>org.apache.maven.plugins</groupId>\n                        <artifactId>maven-javadoc-plugin</artifactId>\n                        <version>3.11.2</version>\n                        <executions>\n                            <execution>\n                                <id>attach-javadocs</id>\n                                <goals>\n                                    <goal>jar</goal>\n                                </goals>\n                            </execution>\n                        </executions>\n                    </plugin>\n                </plugins>\n            </build>\n        </profile>\n    </profiles>\n</project>\n"
  },
  {
    "path": "spark-bigquery-pushdown/pom.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n    xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n    xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\">\n  <parent>\n    <artifactId>spark-bigquery-parent</artifactId>\n    <groupId>com.google.cloud.spark</groupId>\n    <version>${revision}</version>\n    <relativePath>../spark-bigquery-parent</relativePath>\n  </parent>\n  <modelVersion>4.0.0</modelVersion>\n\n  <artifactId>spark-bigquery-pushdown</artifactId>\n  <name>Spark BigQuery Predicate Pushdown Implementation</name>\n  <packaging>pom</packaging>\n\n  <modules>\n    <module>spark-bigquery-pushdown-parent</module>\n    <module>spark-2.4-bigquery-pushdown_2.11</module>\n    <module>spark-2.4-bigquery-pushdown_2.12</module>\n    <module>spark-3.1-bigquery-pushdown_2.12</module>\n    <module>spark-3.2-bigquery-pushdown_2.12</module>\n    <module>spark-3.2-bigquery-pushdown_2.13</module>\n    <module>spark-3.3-bigquery-pushdown_2.12</module>\n    <module>spark-3.3-bigquery-pushdown_2.13</module>\n    <module>spark-bigquery-pushdown-common_2.11</module>\n    <module>spark-bigquery-pushdown-common_2.12</module>\n    <module>spark-bigquery-pushdown-common_2.13</module>\n  </modules>\n\n</project>\n"
  },
  {
    "path": "spark-bigquery-pushdown/pushdown_common_src/main/scala/com/google/cloud/spark/bigquery/pushdowns/AggregateQuery.scala",
    "content": "package com.google.cloud.spark.bigquery.pushdowns\n\nimport com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdownUtil.makeStatement\nimport org.apache.spark.sql.catalyst.expressions.{Expression, NamedExpression}\n\n/** Query for aggregation operations.\n *\n * @constructor\n * @param projectionColumns The projection columns, containing also the aggregate expressions.\n * @param groups  The grouping columns.\n * @param child   The child node.\n * @param alias   Query alias.\n */\ncase class AggregateQuery(\n   expressionConverter: SparkExpressionConverter,\n   expressionFactory: SparkExpressionFactory,\n   projectionColumns: Seq[NamedExpression],\n   groups: Seq[Expression],\n   child: BigQuerySQLQuery,\n   alias: String\n ) extends BigQuerySQLQuery(\n  expressionConverter,\n  expressionFactory,\n  alias,\n  children = Seq(child),\n  projections = if (projectionColumns.isEmpty) None else Some(projectionColumns)) {\n\n  /** Builds the GROUP BY clause of the filter query.\n   * Insert a limit 1 to ensure that only one row returns if there are no grouping expressions\n   * */\n  override val suffixStatement: BigQuerySQLStatement =\n    if (groups.nonEmpty) {\n      ConstantString(\"GROUP BY\") +\n        makeStatement(groups.map(expressionToStatement), \",\")\n    } else {\n      ConstantString(\"LIMIT 1\").toStatement\n    }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/pushdown_common_src/main/scala/com/google/cloud/spark/bigquery/pushdowns/BaseSparkBigQueryPushdown.scala",
    "content": "package com.google.cloud.spark.bigquery.pushdowns\n\nimport org.apache.spark.sql.SparkSession\n\nabstract class BaseSparkBigQueryPushdown extends SparkBigQueryPushdown {\n\n  def supportsSparkVersion(sparkVersion: String): Boolean\n\n  override def enable(session: SparkSession): Unit = {\n    val sparkExpressionFactory = createSparkExpressionFactory\n    val sparkPlanFactory = createSparkPlanFactory\n    val sparkExpressionConverter = createSparkExpressionConverter(\n      sparkExpressionFactory, sparkPlanFactory)\n    val bigQueryStrategy = createBigQueryStrategy(\n      sparkExpressionConverter, sparkExpressionFactory, sparkPlanFactory)\n    SparkBigQueryPushdownUtil.enableBigQueryStrategy(session, bigQueryStrategy)\n  }\n\n  override def disable(session: SparkSession): Unit = {\n    SparkBigQueryPushdownUtil.disableBigQueryStrategy(session)\n  }\n\n  def createSparkExpressionConverter(expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory): SparkExpressionConverter\n\n  def createSparkExpressionFactory: SparkExpressionFactory\n\n  def createSparkPlanFactory(): SparkPlanFactory\n\n  def createBigQueryStrategy(expressionConverter: SparkExpressionConverter, expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory): BigQueryStrategy\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/pushdown_common_src/main/scala/com/google/cloud/spark/bigquery/pushdowns/BigQuerySQLQuery.scala",
    "content": "package com.google.cloud.spark.bigquery.pushdowns\n\nimport com.google.cloud.bigquery.connector.common.BigQueryPushdownException\nimport com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdownUtil.{blockStatement, makeStatement, renameColumns}\nimport org.apache.spark.sql.catalyst.expressions.{Alias, Attribute, AttributeReference, Cast, Expression, NamedExpression}\n\n/**\n * Building blocks of a translated query, with nested subqueries.\n * Also, maintains the children, output, and projection expressions required to\n * construct the query from the bottom up\n *\n * @param expressionConverter Converter for converting Spark expressions to SQL\n * @param alias The alias for a subquery.\n * @param children A sequence containing the child queries. May be empty in the case\n *                 of a source (bottom-level) query, contain one element (for most\n *                 unary operations), or contain two elements (for joins, etc.).\n * @param projections Contains optional projection columns for this query. Currently, set in ProjectQuery and AggregateQuery\n * @param outputAttributes Optional manual override for output. Currently, set in SourceQuery and will be later used in UnionQuery\n * @param conjunctionStatement Conjunction phrase to be used in between subquery children,\n *                             or simple phrase when there are no subqueries.\n * @param fields Contains output from the left + right query for left semi and left anti joins\n */\nabstract class BigQuerySQLQuery(\n  expressionConverter: SparkExpressionConverter,\n  expressionFactory: SparkExpressionFactory,\n  alias: String,\n  children: Seq[BigQuerySQLQuery] = Seq.empty,\n  projections: Option[Seq[NamedExpression]] = None,\n  outputAttributes: Option[Seq[Attribute]] = None,\n  conjunctionStatement: BigQuerySQLStatement = EmptyBigQuerySQLStatement(),\n  fields: Option[Seq[Attribute]] = None,\n  // For some query clauses we may override the outputAttributes, but will\n  // need a different set of resolvable attributes to be visible to the parent\n  // query clause, e.g., in UnionQuery\n  val visibleAttributeOverride: Option[Seq[Attribute]] = None) {\n\n  /**\n   * Creates the sql after the FROM clause by building the queries from its children.\n   * Thus, we build the sourceStatement from the bottom up\n   */\n  val sourceStatement: BigQuerySQLStatement =\n    if (children.nonEmpty) {\n      makeStatement(children.map(_.getStatement(true)), conjunctionStatement)\n    } else {\n      conjunctionStatement\n    }\n\n  /** Creates the last part of the sql query. This could be the WHERE clause in\n   * case of a filter query or a LIMIT clause for a limit query\n   */\n  val suffixStatement: BigQuerySQLStatement = EmptyBigQuerySQLStatement()\n\n  /** Gets columns from the fields list if not empty or from the child query */\n  val columnSet: Seq[Attribute] = {\n    if (fields.isEmpty) {\n      children.foldLeft(Seq.empty[Attribute])(\n        (x, y) => {\n          val attrs = if (y.visibleAttributeOverride.isEmpty) {\n            y.outputWithQualifier\n          } else {\n            y.visibleAttributeOverride.get\n          }\n          x ++ attrs\n        }\n      )\n    } else {\n      fields.get\n    }\n\n  }\n\n  /**\n   * Checks if we have already seen the AttributeReference before based on the exprId and\n   * then renames the projection based on the query alias\n   */\n  val processedProjections: Option[Seq[NamedExpression]] = projections\n    .map(\n      p =>\n        p.map(\n          e =>\n            columnSet.find(c => c.exprId == e.exprId) match {\n              case Some(a) if e.isInstanceOf[AttributeReference] =>\n                AttributeReference(a.name, a.dataType, a.nullable, a.metadata)(\n                  a.exprId\n                )\n              case _ => e\n            }\n        )\n    )\n    .map(p => renameColumns(p, alias, expressionFactory))\n\n  /** Convert processedProjections into a BigQuerySQLStatement */\n  val columns: Option[BigQuerySQLStatement] =\n    processedProjections.map(\n      p => makeStatement(p.map(expressionConverter.convertStatement(_, columnSet)), \",\")\n    )\n\n  /**\n   * Creates the output of the current query from the passed in outputAttributes\n   * or projections. If both are empty, then we retrieve it from the child query's output\n   */\n  val output: Seq[Attribute] = {\n    outputAttributes.getOrElse(\n      processedProjections.map(p => p.map(_.toAttribute)).getOrElse {\n        if (children.isEmpty) {\n          throw new BigQueryPushdownException(\n            \"Query output attributes must not be empty when it has no children.\"\n          )\n        } else {\n          children\n            .foldLeft(Seq.empty[Attribute])((x, y) => x ++ y.output)\n        }\n      }\n    )\n  }\n\n  /** Add the query alias as a qualifier for each output attribute */\n  var outputWithQualifier: Seq[AttributeReference] = output.map(\n    a =>\n      AttributeReference(a.name, a.dataType, a.nullable, a.metadata)(\n        a.exprId,\n        Seq[String](alias)\n      )\n  )\n\n  /** Converts this query into a String representing the SQL.\n   *\n   * @param useAlias Whether or not to alias this translated block of SQL.\n   * @return SQL statement for this query.\n   */\n  def getStatement(useAlias: Boolean = false): BigQuerySQLStatement = {\n    val selectedColumns = if(columns.isEmpty || columns.get.isEmpty) ConstantString(\"*\").toStatement else columns.get\n    val statement =\n      ConstantString(\"SELECT\") + selectedColumns + \"FROM\" +\n        sourceStatement + suffixStatement\n\n    if (useAlias) {\n      blockStatement(statement, alias)\n    } else {\n      statement\n    }\n  }\n\n  /**\n   * Convert Spark expression to BigQuerySQLStatement by using the passed in expressionConverter\n   * @param expr\n   * @return\n   */\n  def expressionToStatement(expr: Expression): BigQuerySQLStatement =\n    expressionConverter.convertStatement(expr, columnSet)\n\n  /** Finds a particular query type in the overall tree.\n   *\n   * @param query PartialFunction defining a positive result.\n   * @param T BigQuerySQLQuery type\n   * @return Option[T] for one positive match, or None if nothing found.\n   */\n  def find[T](query: PartialFunction[BigQuerySQLQuery, T]): Option[T] =\n    query\n      .lift(this)\n      .orElse(\n        if (this.children.isEmpty) {\n          None\n        } else {\n          this.children.head.find(query)\n        }\n      )\n\n  // For OUTER JOIN, the column's nullability may need to be modified as true\n  def nullableOutputWithQualifier: Seq[AttributeReference] = output.map(\n    a =>\n      AttributeReference(a.name, a.dataType, nullable = true, a.metadata)(\n        a.exprId,\n        Seq[String](alias)\n      )\n  )\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/pushdown_common_src/main/scala/com/google/cloud/spark/bigquery/pushdowns/BigQuerySQLStatement.scala",
    "content": "package com.google.cloud.spark.bigquery.pushdowns\n\n/**\n * SQL string wrapper class\n */\nclass BigQuerySQLStatement(val list: List[StatementElement] = Nil) {\n\n  /**\n   * Create a new BigQuerySQLStatement by adding a StatementElement to the current BigQuerySQLStatement\n   * @param element\n   * @return\n   */\n  def +(element: StatementElement): BigQuerySQLStatement =\n    new BigQuerySQLStatement(element :: list)\n\n  /**\n   * Create a new BigQuerySQLStatement by adding a BigQuerySQLStatement to the current BigQuerySQLStatement\n   * @param element\n   * @return\n   */\n  def +(statement: BigQuerySQLStatement): BigQuerySQLStatement =\n    new BigQuerySQLStatement(statement.list ::: list)\n\n  /**\n   * Create a new BigQuerySQLStatement by adding a String to the current BigQuerySQLStatement\n   *\n   * @param element\n   * @return\n   */\n  def +(str: String): BigQuerySQLStatement = this + ConstantString(str)\n\n  def isEmpty: Boolean = list.isEmpty\n\n  /**\n   * Converts a BigQuerySQLStatement to SQL runnable by BigQuery\n   * @return\n   */\n  override def toString: String = {\n    val buffer = new StringBuilder\n    val sql = list.reverse\n\n    sql.foreach {\n      case x: ConstantString =>\n        if (buffer.nonEmpty && buffer.last != ' ') {\n          buffer.append(\" \")\n        }\n        buffer.append(x)\n      case x: VariableElement[_] =>\n        if (buffer.nonEmpty && buffer.last != ' ') {\n          buffer.append(\" \")\n        }\n        buffer.append(x.sql)\n    }\n\n    buffer.toString()\n  }\n}\n\nobject EmptyBigQuerySQLStatement {\n  def apply(): BigQuerySQLStatement = new BigQuerySQLStatement()\n}\n\n/**\n * Trait for wrapping various types like String, Long, Float etc\n */\nsealed trait StatementElement {\n\n  val value: String\n\n  /**\n   * Create a new BigQuerySQLStatement by adding a StatementElement to the current StatementElement\n   *\n   * @param element\n   * @return\n   */\n  def +(element: StatementElement): BigQuerySQLStatement =\n    new BigQuerySQLStatement(element :: List[StatementElement](this))\n\n  /**\n   * Create a new BigQuerySQLStatement by adding a BigQuerySQLStatement to the current StatementElement\n   *\n   * @param element\n   * @return\n   */\n  def +(statement: BigQuerySQLStatement): BigQuerySQLStatement =\n    new BigQuerySQLStatement(\n      statement.list ::: List[StatementElement](this)\n    )\n\n  /**\n   * Create a new BigQuerySQLStatement by adding a String to the current StatementElement\n   *\n   * @param element\n   * @return\n   */\n  def +(str: String): BigQuerySQLStatement = this + ConstantString(str)\n\n  override def toString: String = value\n\n  def toStatement: BigQuerySQLStatement =\n    new BigQuerySQLStatement(List[StatementElement](this))\n\n  def sql: String = value\n}\n\ncase class ConstantString(override val value: String) extends StatementElement\n\nsealed trait VariableElement[T] extends StatementElement {\n  override val value = \"?\"\n\n  val variable: Option[T]\n\n  override def sql: String = if (variable.isDefined) variable.get.toString else \"NULL\"\n\n}\n\ncase class StringVariable(override val variable: Option[String])\n  extends VariableElement[String] {\n  override def sql: String = if (variable.isDefined) s\"\"\"'${variable.get}'\"\"\" else \"NULL\"\n}\n\ncase class IntVariable(override val variable: Option[Int])\n  extends VariableElement[Int]\n\ncase class LongVariable(override val variable: Option[Long])\n  extends VariableElement[Long]\n\ncase class ShortVariable(override val variable: Option[Short])\n  extends VariableElement[Short]\n\ncase class FloatVariable(override val variable: Option[Float])\n  extends VariableElement[Float]\n\ncase class DoubleVariable(override val variable: Option[Double])\n  extends VariableElement[Double]\n\ncase class BooleanVariable(override val variable: Option[Boolean])\n  extends VariableElement[Boolean]\n\ncase class ByteVariable(override val variable: Option[Byte])\n  extends VariableElement[Byte]\n\nobject ConstantStringVal {\n  def apply(l: Any): StatementElement = {\n    if (l == null || l.toString.toLowerCase == \"null\") {\n      ConstantString(\"NULL\")\n    } else {\n      ConstantString(l.toString)\n    }\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/pushdown_common_src/main/scala/com/google/cloud/spark/bigquery/pushdowns/BigQueryStrategy.scala",
    "content": "package com.google.cloud.spark.bigquery.pushdowns\n\nimport com.google.cloud.bigquery.connector.common.{BigQueryPushdownException, BigQueryPushdownUnsupportedException}\nimport com.google.cloud.spark.bigquery.SparkBigQueryUtil.isDataFrameShowMethodInStackTrace\nimport com.google.cloud.spark.bigquery.direct.{BigQueryRDDFactory, DirectBigQueryRelation}\nimport com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdownUtil.{convertExpressionToNamedExpression, removeProjectNodeFromPlan, addProjectNodeToThePlan, isLimitTheChildToProjectNode}\nimport org.apache.spark.internal.Logging\nimport org.apache.spark.sql.Strategy\nimport org.apache.spark.sql.catalyst.analysis.NamedRelation\nimport org.apache.spark.sql.catalyst.expressions.NamedExpression.unapply\nimport org.apache.spark.sql.catalyst.expressions.{Alias, Cast, NamedExpression}\nimport org.apache.spark.sql.catalyst.plans._\nimport org.apache.spark.sql.catalyst.plans.logical._\nimport org.apache.spark.sql.execution.datasources.LogicalRelation\nimport org.apache.spark.sql.execution.{ProjectExec, SparkPlan}\n\n/**\n * Our hook into Spark that converts the logical plan into physical plan.\n * We try to translate the Spark logical plan into SQL runnable on BigQuery.\n * If the query generation fails for any reason, we return Nil and let Spark\n * run other strategies to compute the physical plan.\n *\n * Passing SparkPlanFactory as the constructor parameter here for ease of unit testing\n *\n */\nabstract class BigQueryStrategy(expressionConverter: SparkExpressionConverter, expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory) extends Strategy with Logging {\n\n  /** This iterator automatically increments every time it is used,\n   * and is for aliasing subqueries.\n   */\n  final val alias = Iterator.from(0).map(n => s\"SUBQUERY_$n\")\n\n  /** Attempts to generate a SparkPlan from the provided LogicalPlan.\n   *\n   * @param plan The LogicalPlan provided by Spark.\n   * @return An Option of Seq[BigQueryPlan] that contains the PhysicalPlan if\n   *         query generation was successful, None if not.\n   */\n  override def apply(plan: LogicalPlan): Seq[SparkPlan] = {\n    // Check if we have any unsupported nodes in the plan. If we do, we return\n    // Nil and let Spark try other strategies\n    if(hasUnsupportedNodes(plan)) {\n      return Nil\n    }\n\n    try {\n      generateSparkPlanFromLogicalPlan(plan)\n    } catch {\n      // We catch all exceptions here (including BigQueryPushdownUnsupportedException)\n      // and return Nil because if we are not able to translate the plan, then\n      // we let Spark handle it\n      case e: Exception =>\n        logDebug(\"Query pushdown failed: \", e)\n        Nil\n    }\n  }\n\n  def hasUnsupportedNodes(plan: LogicalPlan): Boolean = {\n    plan.foreach {\n      case UnaryOperationExtractor(_) | BinaryOperationExtractor(_) | UnionOperationExtractor(_) =>\n\n      // NamedRelation is the superclass of DataSourceV2Relation and DataSourceV2ScanRelation.\n      // DataSourceV2Relation is the Spark 2.4 DSv2 connector relation and\n      // DataSourceV2ScanRelation is the Spark 3.1 DSv2 connector relation\n      case _: LogicalRelation | _: NamedRelation | _: Expand =>\n\n      case subPlan =>\n        logDebug(s\"LogicalPlan has unsupported node for query pushdown : ${subPlan.nodeName} in ${subPlan.getClass.getName}\")\n        return true\n    }\n\n    false\n  }\n\n  def generateSparkPlanFromLogicalPlan(plan: LogicalPlan): Seq[SparkPlan] = {\n    var cleanedPlan = cleanUpLogicalPlan(plan)\n\n    // We have to handle the case where df.show() was called by an end user\n    // differently because Spark can insert a Project node on top of the\n    // LogicalPlan and that could mess up the ordering of results.\n    if (isDataFrameShowMethodInStackTrace) {\n\n      // We first get the project node that has been added by Spark for df.show()\n      var projectNodeAddedBySpark = getTopMostProjectNodeWithAliasedCasts(cleanedPlan)\n\n      // If the Project node exists, we first create a BigQueryPlan after\n      // removing the extra Project node and then create a physical Project plan\n      // by passing the BigQueryPlan as its child. Note that Spark may not add the\n      // Project node if the selected(projected) columns are all of type string.\n      // In such a case, we don't have to return a ProjectExec SparkPlan\n      if (projectNodeAddedBySpark.isDefined) {\n        if(!isLimitTheChildToProjectNode(projectNodeAddedBySpark.get)) {\n          // If limit is not the child to the Project node in case of show(),\n          // spark adds cast to the existing Project node instead of adding another Project node as happening above.\n          // Found this issue in Query 9 of TPCDS where query doesn't have limit and the Project has multiple ScalarSubQueries.\n          // To handle this case, we update the project node by removing the casts and then add an additional Project Node as parent to that node\n          // which has the cast to all the expressions in project list\n          // and do the same as above.\n          cleanedPlan = addProjectNodeToThePlan(cleanedPlan, projectNodeAddedBySpark.get, expressionFactory)\n          projectNodeAddedBySpark = getTopMostProjectNodeWithAliasedCasts(cleanedPlan)\n        }\n        return Seq(generateProjectPlanFromLogicalPlan(cleanedPlan, projectNodeAddedBySpark.get))\n      }\n    }\n\n    Seq(generateBigQueryPlanFromLogicalPlan(cleanedPlan))\n  }\n\n  /**\n   * Iterates over the logical plan to find project plan with no fields or SubQueryAlias, if found removes it\n   * and returns the LogicalPlan without empty project plan, to continue the generation of query.\n   * Spark is generating an empty project plan when the query has count(*)\n   * Found this issue when executing query-9 of TPC-DS\n   *\n   * @param plan The LogicalPlan to be processed.\n   * @return The processed LogicalPlan removing all the empty Project plan's or SubQueryAlias, if the input has any\n   */\n  def cleanUpLogicalPlan(plan: LogicalPlan): LogicalPlan = {\n    plan.transform({\n      case Project(Nil, child) => child\n      case SubqueryAlias(_, child) => child\n    })\n  }\n\n  /**\n   * Returns the first Project node that contains expressions in the projectList\n   * of the form Alias(Cast(_,_,_)) while recursing down the LogicalPlan.\n   * If an Aggregate, Join or Relation node is encountered first, we return None\n   */\n  def getTopMostProjectNodeWithAliasedCasts(plan: LogicalPlan): Option[Project] = {\n    plan.foreach {\n      case _: Aggregate | _: Join | _: LogicalRelation | _:NamedRelation =>\n        return None\n\n      case projectNode@Project(projectList, _) =>\n        projectList.foreach {\n          case Alias(child, _) =>\n            child match {\n              case CastExpressionExtractor(_) => return Some(projectNode)\n\n              case _ =>\n            }\n          case _ =>\n        }\n        return None\n\n      case _ =>\n    }\n\n    // We should never reach here\n    None\n  }\n\n  /**\n   * Generates the BigQueryPlan from the Logical plan by\n   * 1) Generating a BigQuerySQLQuery from the passed-in LogicalPlan\n   * 2) Getting the BigQueryRDDFactory from the source query\n   * 3) Creating a BigQueryPlan by passing the query root and the BigQueryRDDFactory\n   */\n  def generateBigQueryPlanFromLogicalPlan(plan: LogicalPlan): SparkPlan = {\n    // Generate the query from the logical plan\n    val queryRoot = generateQueryFromPlan(plan)\n    val bigQueryRDDFactory = getRDDFactory(queryRoot.get)\n\n    // Create the SparkPlan\n    sparkPlanFactory.createBigQueryPlan(queryRoot.get, bigQueryRDDFactory.get)\n      .getOrElse(throw new BigQueryPushdownException(\"Could not generate BigQuery physical plan from query\"))\n  }\n\n  /**\n   * Generates the physical Project plan from the Logical plan by\n   * 1) Removing the passed-in Project node from the passed-in plan\n   * 2) Generating a BigQuery plan from the remaining plan\n   * 3) Creating a physical Project plan by passing the Project node and BigQueryPlan into the SparkPlanFactory\n   */\n  def generateProjectPlanFromLogicalPlan(plan: LogicalPlan, projectNode: Project): SparkPlan = {\n    // Remove Project node from the plan\n    val planWithoutProjectNode = removeProjectNodeFromPlan(plan, projectNode)\n    val bigQueryPlan = generateBigQueryPlanFromLogicalPlan(planWithoutProjectNode)\n    sparkPlanFactory.createProjectPlan(projectNode, bigQueryPlan)\n      .getOrElse(throw new BigQueryPushdownException(\"Could not generate BigQuery physical plan from query\"))\n  }\n\n  def getRDDFactory(queryRoot: BigQuerySQLQuery): Option[BigQueryRDDFactory] = {\n    val sourceQuery = queryRoot\n      .find {\n        case q: SourceQuery => q\n      }\n      // this should ideally never happen\n      .getOrElse(\n        throw new BigQueryPushdownException(\n          \"Something went wrong: a query tree was generated with no SourceQuery.\"\n        )\n      )\n\n    Some(sourceQuery.bigQueryRDDFactory)\n  }\n\n  // This method will be overridden in subclasses that support query pushdown for DSv2\n  def generateQueryFromPlanForDataSourceV2(plan: LogicalPlan): Option[BigQuerySQLQuery]\n\n  /**\n   * Attempts to generate the query from the LogicalPlan by pattern matching recursively.\n   * The queries are constructed from the bottom up, but the validation of\n   * supported nodes for translation happens on the way down.\n   *\n   * @param plan The LogicalPlan to be processed.\n   * @return An object of type Option[BigQuerySQLQuery], which is None if the plan contains an\n   *         unsupported node type.\n   */\n  def generateQueryFromPlan(plan: LogicalPlan): Option[BigQuerySQLQuery] = {\n    plan match {\n      // NamedRelation is the superclass of DataSourceV2Relation and DataSourceV2ScanRelation.\n      // DataSourceV2Relation is the Spark 2.4 DSv2 connector relation and\n      // DataSourceV2ScanRelation is the Spark 3.1 DSv2 connector relation\n      case _: NamedRelation =>\n        generateQueryFromPlanForDataSourceV2(plan)\n\n      case l@LogicalRelation(bqRelation: DirectBigQueryRelation, _, _, _) =>\n        Some(SourceQuery(expressionConverter, expressionFactory, bqRelation.getBigQueryRDDFactory, bqRelation.getTableName, l.output, alias.next))\n\n      case UnaryOperationExtractor(node) =>\n        // UnaryOperationExtractor returns the node itself. So, recurse on the node's child\n        generateQueryFromPlan(node.children.head) map { subQuery =>\n          plan match {\n            case Filter(condition, _) =>\n              FilterQuery(expressionConverter, expressionFactory, Seq(condition), subQuery, alias.next)\n\n            case Project(fields, _) =>\n              ProjectQuery(expressionConverter, expressionFactory, fields, subQuery, alias.next)\n\n            case Aggregate(groups, fields, _) =>\n              AggregateQuery(expressionConverter, expressionFactory, fields, groups, subQuery, alias.next)\n\n            // Special case for Spark 2.4 in which Spark SQL query already has a limit clause and df.show() is called\n            case Limit(limitExpr, Limit(_, Sort(orderExpr, true, _))) =>\n              SortLimitQuery(expressionConverter, expressionFactory, Some(limitExpr), orderExpr, subQuery, alias.next)\n\n            case Limit(limitExpr, Sort(orderExpr, true, _)) =>\n              SortLimitQuery(expressionConverter, expressionFactory, Some(limitExpr), orderExpr, subQuery, alias.next)\n\n            case Limit(limitExpr, _) =>\n              SortLimitQuery(expressionConverter, expressionFactory, Some(limitExpr), Seq.empty, subQuery, alias.next)\n\n            case Sort(orderExpr, true, Limit(limitExpr, _)) =>\n              SortLimitQuery(expressionConverter, expressionFactory, Some(limitExpr), orderExpr, subQuery, alias.next)\n\n            case Sort(orderExpr, true, _) =>\n              SortLimitQuery(expressionConverter, expressionFactory, None, orderExpr, subQuery, alias.next)\n\n            case Window(windowExpressions, _, _, _) =>\n              WindowQuery(expressionConverter, expressionFactory, windowExpressions, subQuery,  if (plan.output.isEmpty) None else Some(plan.output), alias.next)\n\n            case _ => subQuery\n          }\n        }\n\n      case BinaryOperationExtractor(node) =>\n        // BinaryOperationExtractor returns the node itself. So, recurse on the node's children\n        generateQueryFromPlan(node.children.head).flatMap { l =>\n          generateQueryFromPlan(node.children(1)) map { r =>\n            plan match {\n              case JoinExtractor(joinType, condition) =>\n                joinType match {\n                  case Inner | LeftOuter | RightOuter | FullOuter | Cross =>\n                    JoinQuery(expressionConverter, expressionFactory, l, r, condition, joinType, alias.next)\n                  case LeftSemi =>\n                    LeftSemiJoinQuery(expressionConverter, expressionFactory, l, r, condition, isAntiJoin = false, alias)\n                  case LeftAnti =>\n                    LeftSemiJoinQuery(expressionConverter, expressionFactory, l, r, condition, isAntiJoin = true, alias)\n                  case _ => throw new MatchError\n                }\n            }\n          }\n        }\n\n      case UnionOperationExtractor(children) =>\n        createUnionQuery(children)\n\n      case Expand(projections, output, child) =>\n        // convert list of Expressions into ProjectPlan\n        val projectPlan = projections.map { p =>\n          val namedExpressions = convertExpressionToNamedExpression(p, output, expressionFactory)\n          Project(namedExpressions, child)\n        }\n        createUnionQuery(projectPlan)\n\n      case _ =>\n        throw new BigQueryPushdownUnsupportedException(\n          s\"Query pushdown failed in generateQueries for node ${plan.nodeName} in ${plan.getClass.getName}\"\n        )\n    }\n  }\n\n  /**\n   * Create a Union BigQuerySQLQuery from the given list of LogicalPlan\n   * @param children The list of LogicalPlan to be converted.\n   * @return An object of type Option[BigQuerySQLQuery].\n   */\n  def createUnionQuery(children: Seq[LogicalPlan]): Option[BigQuerySQLQuery]\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/pushdown_common_src/main/scala/com/google/cloud/spark/bigquery/pushdowns/BinaryOperationExtractor.scala",
    "content": "package com.google.cloud.spark.bigquery.pushdowns\n\nimport org.apache.spark.sql.catalyst.plans.logical.{Join, LogicalPlan}\n\n/** Extractor for supported binary operations. Returns the node itself if the\n * operation is supported **/\nobject BinaryOperationExtractor {\n  def unapply(node: LogicalPlan): Option[LogicalPlan] =\n    Option(node match {\n      case _: Join => node\n      case _ => null\n    })\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/pushdown_common_src/main/scala/com/google/cloud/spark/bigquery/pushdowns/CastExpressionExtractor.scala",
    "content": "package com.google.cloud.spark.bigquery.pushdowns\n\nimport org.apache.spark.sql.catalyst.expressions.{Cast, Expression}\n\n// The Spark APIs for Cast are not compatible between Spark 2.4/3.1 and Spark 3.2/3.3.\n// So, we create this extractor that can be used across all Spark versions\nobject CastExpressionExtractor {\n  def unapply(node: Expression): Option[Expression] =\n    node match {\n      case _: Cast =>\n        Some(node)\n\n      case _ => None\n    }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/pushdown_common_src/main/scala/com/google/cloud/spark/bigquery/pushdowns/FilterQuery.scala",
    "content": "package com.google.cloud.spark.bigquery.pushdowns\n\nimport com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdownUtil.makeStatement\nimport org.apache.spark.sql.catalyst.expressions.{Attribute, Expression}\n\n/** Query for filter operations.\n *\n * @constructor\n * @param conditions The filter condition.\n * @param child      The child node.\n * @param alias      Query alias.\n * @param fields Contains output from the left + right query for left semi and left anti joins\n */\ncase class FilterQuery(\n    expressionConverter: SparkExpressionConverter,\n    expressionFactory: SparkExpressionFactory,\n    conditions: Seq[Expression],\n    child: BigQuerySQLQuery,\n    alias: String,\n    fields: Option[Seq[Attribute]] = None)\n  extends BigQuerySQLQuery(\n    expressionConverter,\n    expressionFactory,\n    alias,\n    children = Seq(child),\n    fields = fields) {\n\n  /** Builds the WHERE statement of the filter query */\n  override val suffixStatement: BigQuerySQLStatement =\n    ConstantString(\"WHERE\") + makeStatement(\n      conditions.map(expressionToStatement),\n      \"AND\"\n    )\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/pushdown_common_src/main/scala/com/google/cloud/spark/bigquery/pushdowns/JoinExtractor.scala",
    "content": "package com.google.cloud.spark.bigquery.pushdowns\n\nimport org.apache.spark.sql.catalyst.expressions.Expression\nimport org.apache.spark.sql.catalyst.plans.JoinType\nimport org.apache.spark.sql.catalyst.plans.logical.Join\n\n// The Spark APIs for Joins are not compatible between Spark 2.4 and 3.1.\n// So, we create this extractor that only extracts those parameters that are\n// used for creating the join query\nobject JoinExtractor {\n  def unapply(node: Join): Option[(JoinType, Option[Expression])] =\n    node match {\n      case _: Join =>\n        Some(node.joinType, node.condition)\n\n      // We should never reach here\n      case _ => None\n    }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/pushdown_common_src/main/scala/com/google/cloud/spark/bigquery/pushdowns/JoinQuery.scala",
    "content": "package com.google.cloud.spark.bigquery.pushdowns\n\nimport com.google.cloud.spark.bigquery.pushdowns.JoinQuery.getConjunctionStatement\nimport org.apache.spark.sql.catalyst.expressions.Expression\nimport org.apache.spark.sql.catalyst.plans.{Cross, FullOuter, Inner, JoinType, LeftOuter, RightOuter}\n\n/** The query for join operations.\n *\n * @constructor\n * @param left       The left query subtree.\n * @param right      The right query subtree.\n * @param conditions The join conditions.\n * @param joinType   The join type.\n * @param alias      Query alias.\n */\ncase class JoinQuery(\n                      expressionConverter: SparkExpressionConverter,\n                      expressionFactory: SparkExpressionFactory,\n                      left: BigQuerySQLQuery,\n                      right: BigQuerySQLQuery,\n                      conditions: Option[Expression],\n                      joinType: JoinType,\n                      alias: String)\n  extends BigQuerySQLQuery(expressionConverter, expressionFactory, alias, Seq(left, right), Some(\n    left.outputWithQualifier ++ right.outputWithQualifier), outputAttributes = None, conjunctionStatement = ConstantString(getConjunctionStatement(joinType, left, right)).toStatement) {\n\n  override val suffixStatement: BigQuerySQLStatement =\n    conditions\n      .map(ConstantString(\"ON\") + expressionToStatement(_))\n      .getOrElse(EmptyBigQuerySQLStatement())\n\n  override def find[T](query: PartialFunction[BigQuerySQLQuery, T]): Option[T] =\n    query.lift(this).orElse(left.find(query)).orElse(right.find(query))\n}\n\nobject JoinQuery {\n  def getConjunctionStatement(joinType: JoinType, left: BigQuerySQLQuery, right: BigQuerySQLQuery): String = {\n    joinType match {\n      case Inner =>\n        // keep the nullability for both projections\n        \"INNER JOIN\"\n      case LeftOuter =>\n        // Update the column's nullability of right table as true\n        right.outputWithQualifier =\n          right.nullableOutputWithQualifier\n        \"LEFT OUTER JOIN\"\n      case RightOuter =>\n        // Update the column's nullability of left table as true\n        left.outputWithQualifier =\n          left.nullableOutputWithQualifier\n        \"RIGHT OUTER JOIN\"\n      case FullOuter =>\n        // Update the column's nullability of both tables as true\n        left.outputWithQualifier =\n          left.nullableOutputWithQualifier\n        right.outputWithQualifier =\n          right.nullableOutputWithQualifier\n        \"FULL OUTER JOIN\"\n      case Cross =>\n        \"CROSS JOIN\"\n      case _ => throw new MatchError\n    }\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/pushdown_common_src/main/scala/com/google/cloud/spark/bigquery/pushdowns/LeftSemiJoinQuery.scala",
    "content": "package com.google.cloud.spark.bigquery.pushdowns\n\nimport com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdownUtil.blockStatement\nimport org.apache.spark.sql.catalyst.expressions.Expression\n\ncase class LeftSemiJoinQuery(\n   expressionConverter: SparkExpressionConverter,\n   expressionFactory: SparkExpressionFactory,\n   left: BigQuerySQLQuery,\n   right: BigQuerySQLQuery,\n   conditions: Option[Expression],\n   isAntiJoin: Boolean = false,\n   alias: Iterator[String])\n  extends BigQuerySQLQuery(expressionConverter, expressionFactory, alias.next, Seq(left), Some(left.outputWithQualifier), outputAttributes = None) {\n\n  override val suffixStatement: BigQuerySQLStatement =\n    ConstantString(\"WHERE\") + (if (isAntiJoin) \" NOT \" else \" \") + \"EXISTS\" + blockStatement(\n      FilterQuery(\n        expressionConverter,\n        expressionFactory,\n        conditions = if (conditions.isEmpty) Seq.empty else Seq(conditions.get),\n        child = right,\n        alias = alias.next,\n        fields = Some(\n          left.outputWithQualifier ++ right.outputWithQualifier\n        )\n      ).getStatement()\n    )\n\n  override def find[T](query: PartialFunction[BigQuerySQLQuery, T]): Option[T] =\n    query.lift(this).orElse(left.find(query)).orElse(right.find(query))\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/pushdown_common_src/main/scala/com/google/cloud/spark/bigquery/pushdowns/ProjectQuery.scala",
    "content": "package com.google.cloud.spark.bigquery.pushdowns\n\nimport org.apache.spark.sql.catalyst.expressions.NamedExpression\n\n/** Query for projection operations.\n *\n * @constructor\n * @param projectionColumns The projection columns.\n * @param child   The child node.\n * @param alias   Query alias.\n */\ncase class ProjectQuery(\n     expressionConverter: SparkExpressionConverter,\n     expressionFactory: SparkExpressionFactory,\n     projectionColumns: Seq[NamedExpression],\n     child: BigQuerySQLQuery,\n     alias: String)\n  extends BigQuerySQLQuery(\n    expressionConverter,\n    expressionFactory,\n    alias, children = Seq(child),\n    projections = Some(projectionColumns)) {}\n"
  },
  {
    "path": "spark-bigquery-pushdown/pushdown_common_src/main/scala/com/google/cloud/spark/bigquery/pushdowns/SortLimitQuery.scala",
    "content": "package com.google.cloud.spark.bigquery.pushdowns\n\nimport com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdownUtil.makeStatement\nimport org.apache.spark.sql.catalyst.expressions.Expression\n\n/** Query for Sort and Limit operations.\n *\n * @constructor\n * @param limit   Limit expression.\n * @param orderBy Order By expressions.\n * @param child   The child node.\n * @param alias   Query alias.\n */\ncase class SortLimitQuery(\n   expressionConverter: SparkExpressionConverter,\n   expressionFactory: SparkExpressionFactory,\n   limit: Option[Expression],\n   orderBy: Seq[Expression],\n   child: BigQuerySQLQuery,\n   alias: String)\n  extends BigQuerySQLQuery(\n    expressionConverter,\n    expressionFactory,\n    alias,\n    children = Seq(child)) {\n\n  /** Builds the ORDER BY clause of the sort query and/or LIMIT clause of the sort query */\n  override val suffixStatement: BigQuerySQLStatement = {\n    val statementFirstPart =\n      if (orderBy.nonEmpty) {\n        ConstantString(\"ORDER BY\") + makeStatement(\n          orderBy.map(expressionToStatement),\n          \",\"\n        )\n      } else {\n        EmptyBigQuerySQLStatement()\n      }\n\n    statementFirstPart + limit\n      .map(ConstantString(\"LIMIT\") + expressionToStatement(_))\n      .getOrElse(EmptyBigQuerySQLStatement())\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/pushdown_common_src/main/scala/com/google/cloud/spark/bigquery/pushdowns/SourceQuery.scala",
    "content": "package com.google.cloud.spark.bigquery.pushdowns\n\nimport com.google.cloud.spark.bigquery.direct.BigQueryRDDFactory\nimport org.apache.spark.sql.catalyst.expressions.Attribute\n\n/** The base query representing a BigQuery table\n *\n * @constructor\n * @param tableName   The BigQuery table to be queried\n * @param outputAttributes  Columns used to override the output generation\n *                    These are the columns resolved by DirectBigQueryRelation.\n * @param alias      Query alias.\n */\ncase class SourceQuery(\n    expressionConverter: SparkExpressionConverter,\n    expressionFactory: SparkExpressionFactory,\n    bigQueryRDDFactory: BigQueryRDDFactory,\n    tableName: String,\n    outputAttributes: Seq[Attribute],\n    alias: String,\n    pushdownFilters: Option[String] = None)\n  extends BigQuerySQLQuery(\n    expressionConverter,\n    expressionFactory,\n    alias,\n    outputAttributes = Some(outputAttributes),\n    conjunctionStatement = ConstantString(\"`\" + tableName + \"`\").toStatement + ConstantString(\"AS BQ_CONNECTOR_QUERY_ALIAS\")) {\n\n    override def find[T](query: PartialFunction[BigQuerySQLQuery, T]): Option[T] = query.lift(this)\n\n    /** Builds the WHERE statement of the source query */\n    override val suffixStatement: BigQuerySQLStatement = {\n        if(pushdownFilters.isDefined) {\n            ConstantString(\"WHERE \") + pushdownFilters.get\n        } else {\n            EmptyBigQuerySQLStatement()\n        }\n    }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/pushdown_common_src/main/scala/com/google/cloud/spark/bigquery/pushdowns/SparkBigQueryPushdownUtil.scala",
    "content": "package com.google.cloud.spark.bigquery.pushdowns\n\nimport com.google.cloud.bigquery.connector.common.BigQueryConfigurationUtil.{DEFAULT_FALLBACK, getOptionFromMultipleParams}\nimport com.google.cloud.bigquery.connector.common.BigQueryUtil\nimport com.google.common.collect.ImmutableList\nimport org.apache.spark.rdd.RDD\nimport org.apache.spark.sql.SparkSession\nimport org.apache.spark.sql.catalyst.InternalRow\nimport org.apache.spark.sql.catalyst.expressions.{Alias, Attribute, AttributeReference, Cast, EmptyRow, ExprId, Expression, NamedExpression, UnsafeProjection}\nimport org.apache.spark.sql.catalyst.plans.logical.{GlobalLimit, LogicalPlan, Project, SubqueryAlias, UnaryNode}\nimport org.apache.spark.sql.execution.ProjectExec\nimport org.apache.spark.sql.types.{Metadata, StringType, StructField, StructType}\n\nimport scala.collection.JavaConverters._\n\n/**\n * Static methods for query pushdown functionality\n */\nobject SparkBigQueryPushdownUtil {\n  def enableBigQueryStrategy(session: SparkSession, bigQueryStrategy: BigQueryStrategy): Unit = {\n    if (!session.experimental.extraStrategies.exists(\n      s => s.isInstanceOf[BigQueryStrategy]\n    )) {\n      session.experimental.extraStrategies ++= Seq(bigQueryStrategy)\n    }\n  }\n\n  def disableBigQueryStrategy(session: SparkSession): Unit = {\n    session.experimental.extraStrategies = session.experimental.extraStrategies\n      .filterNot(strategy => strategy.isInstanceOf[BigQueryStrategy])\n  }\n\n  /**\n   * Creates a new BigQuerySQLStatement by adding parenthesis around the passed in statement and adding an alias for it\n   * @param stmt\n   * @param alias\n   * @return\n   */\n  def blockStatement(stmt: BigQuerySQLStatement, alias: String): BigQuerySQLStatement =\n    blockStatement(stmt) + \"AS\" + ConstantString(alias.toUpperCase).toStatement\n\n  def blockStatement(stmt: BigQuerySQLStatement): BigQuerySQLStatement =\n    ConstantString(\"(\") + stmt + \")\"\n\n  /**\n   * Creates a new BigQuerySQLStatement by taking a list of BigQuerySQLStatement and folding it into one BigQuerySQLStatement separated by a delimiter\n   * @param seq\n   * @param delimiter\n   * @return\n   */\n  def makeStatement(seq: Seq[BigQuerySQLStatement], delimiter: String): BigQuerySQLStatement =\n    makeStatement(seq, ConstantString(delimiter).toStatement)\n\n  def makeStatement(seq: Seq[BigQuerySQLStatement], delimiter: BigQuerySQLStatement): BigQuerySQLStatement =\n    seq.foldLeft(EmptyBigQuerySQLStatement()) {\n      case (left, stmt) =>\n        if (left.isEmpty) stmt else left + delimiter + stmt\n    }\n\n  /** This adds an attribute as part of a SQL expression, searching in the provided\n   * fields for a match, so the subquery qualifiers are correct.\n   *\n   * @param attr   The Spark Attribute object to be added.\n   * @param fields The Seq[Attribute] containing the valid fields to be used in the expression,\n   *               usually derived from the output of a subquery.\n   * @return A BigQuerySQLStatement representing the attribute expression.\n   */\n  def addAttributeStatement(attr: Attribute, fields: Seq[Attribute]): BigQuerySQLStatement =\n    fields.find(e => e.exprId == attr.exprId) match {\n      case Some(resolved) =>\n        qualifiedAttributeStatement(resolved.qualifier, resolved.name)\n      case None => qualifiedAttributeStatement(attr.qualifier, attr.name)\n    }\n\n  def qualifiedAttributeStatement(alias: Seq[String], name: String): BigQuerySQLStatement =\n    ConstantString(qualifiedAttribute(alias, name)).toStatement\n\n  def qualifiedAttribute(alias: Seq[String], name: String): String = {\n    val str =\n      if (alias.isEmpty) \"\"\n      else alias.map(a => a.toUpperCase).mkString(\".\") + \".\"\n\n    str + name.toUpperCase\n  }\n\n  /**\n   * Rename projections so as to have unique column names across subqueries\n   * @param origOutput\n   * @param alias\n   * @return\n   */\n  def renameColumns(origOutput: Seq[NamedExpression], alias: String, expressionFactory: SparkExpressionFactory): Seq[NamedExpression] = {\n    val col_names = Iterator.from(0).map(n => s\"COL_$n\")\n\n    origOutput.map { expr =>\n      val metadata = expr.metadata\n\n      val altName = s\"\"\"${alias}_${col_names.next()}\"\"\"\n\n      expr match {\n        case a@Alias(child: Expression, name: String) =>\n          expressionFactory.createAlias(child, altName, a.exprId, Seq.empty[String], Some(metadata))\n        case _ =>\n          expressionFactory.createAlias(expr, altName, expr.exprId, Seq.empty[String], Some(metadata))\n      }\n    }\n  }\n\n  /**\n   * Method to convert Expression into NamedExpression.\n   * If the Expression is not of type NamedExpression, we create an Alias from the expression and attribute\n   */\n  def convertExpressionToNamedExpression(projections: Seq[Expression],\n                                         output: Seq[Attribute],\n                                         expressionFactory: SparkExpressionFactory): Seq[NamedExpression] = {\n    projections zip output map { expression =>\n      expression._1 match {\n        case expr: NamedExpression => expr\n        case _ => expressionFactory.createAlias(expression._1, expression._2.name, expression._2.exprId, Seq.empty[String], Some(expression._2.metadata))\n      }\n    }\n  }\n\n  def doExecuteSparkPlan(output: Seq[Attribute], rdd: RDD[InternalRow]): RDD[InternalRow] = {\n    val schema = StructType(\n      output.map(attr => StructField(attr.name, attr.dataType, attr.nullable))\n    )\n\n    rdd.mapPartitions { iter =>\n      val project = UnsafeProjection.create(schema)\n      iter.map(project)\n    }\n  }\n\n  /**\n   * Returns a copy of the LogicalPlan after removing the passed-in Project node\n   * from the plan.\n   */\n  def removeProjectNodeFromPlan(plan: LogicalPlan, nodeToRemove: Project): LogicalPlan = {\n    plan.transform({\n      case node@Project(_, child) if node.fastEquals(nodeToRemove) => child\n    })\n  }\n\n  /**\n   * remove Cast from the projectList of the passed in Project node\n   */\n  def removeCastFromProjectList(node: Project, expressionFactory: SparkExpressionFactory): Project = {\n    var projectList: Seq[NamedExpression] = Seq()\n    node.projectList.foreach{\n      case Alias(child, name) =>\n        child match {\n          case CastExpressionExtractor(expression) => projectList = projectList :+ expressionFactory.createAlias(expression.asInstanceOf[Cast].child, name, NamedExpression.newExprId, Seq.empty, None)\n          case expression => projectList = projectList :+ expressionFactory.createAlias(expression, name, NamedExpression.newExprId, Seq.empty, None)\n        }\n      case node => projectList = projectList :+ node\n    }\n    Project(projectList, node.child)\n  }\n\n  /**\n   * Create a ProjectList with only Cast's of the passed in node ProjectList\n   */\n  def createProjectListWithCastToString(node: Project, expressionFactory: SparkExpressionFactory): Seq[NamedExpression] = {\n    var projectList: Seq[NamedExpression] = Seq()\n    node.projectList.foreach(\n      child =>\n        projectList = projectList :+ expressionFactory.createAlias(Cast.apply(child.toAttribute, StringType), child.name, NamedExpression.newExprId, Seq.empty, None)\n    )\n    projectList\n  }\n\n  /**\n   * Returns a copy of the updated LogicalPlan by adding a project plan to the passed in node.\n   * Takes in the LogicalPlan and the Project Plan to update.\n   * Remove the cast, if there is any from the passed project plan\n   * and adds another Project Plan on top of the passed node to update\n   */\n  def addProjectNodeToThePlan(plan: LogicalPlan, nodeToUpdate: Project, expressionFactory: SparkExpressionFactory): LogicalPlan = {\n    plan.transform({\n      case node@Project(_, _) if node.fastEquals(nodeToUpdate) =>\n        val projectWithoutCast = removeCastFromProjectList(nodeToUpdate, expressionFactory)\n        val projectListWithCast = createProjectListWithCastToString(projectWithoutCast, expressionFactory)\n        Project(projectListWithCast, projectWithoutCast)\n    })\n  }\n\n  def isLimitTheChildToProjectNode(node: Project): Boolean = {\n    if (node.child.isInstanceOf[GlobalLimit]) true else false\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/pushdown_common_src/main/scala/com/google/cloud/spark/bigquery/pushdowns/SparkExpressionConverter.scala",
    "content": "package com.google.cloud.spark.bigquery.pushdowns\n\nimport com.google.cloud.bigquery.connector.common.BigQueryPushdownUnsupportedException\nimport com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdownUtil.{addAttributeStatement, blockStatement, makeStatement}\nimport org.apache.commons.lang.{StringEscapeUtils, StringUtils}\nimport org.apache.spark.sql.catalyst.expressions._\nimport org.apache.spark.sql.catalyst.expressions.aggregate._\nimport org.apache.spark.sql.catalyst.plans.logical.LogicalPlan\nimport org.apache.spark.sql.types._\nimport org.apache.spark.unsafe.types.UTF8String\n\n/** This interface performs the conversion from Spark expressions to SQL runnable by BigQuery.\n * Spark Expressions are recursively pattern matched. Expressions that differ across Spark versions should be implemented in subclasses\n *\n */\nabstract class SparkExpressionConverter {\n  /**\n   * Tries to convert Spark expressions by matching across the different families of expressions such as Aggregate, Boolean etc.\n   * @param expression\n   * @param fields\n   * @return\n   */\n  def convertStatement(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = {\n    convertAggregateExpressions(expression, fields)\n      .orElse(convertBasicExpressions(expression, fields))\n      .orElse(convertBooleanExpressions(expression, fields))\n      .orElse(convertDateExpressions(expression, fields))\n      .orElse(convertMathematicalExpressions(expression, fields))\n      .orElse(convertMiscellaneousExpressions(expression, fields))\n      .orElse(convertStringExpressions(expression, fields))\n      .orElse(convertWindowExpressions(expression, fields))\n      .getOrElse(throw new BigQueryPushdownUnsupportedException((s\"Pushdown unsupported for ${expression.prettyName}\")))\n  }\n\n  def convertStatements(fields: Seq[Attribute], expressions: Expression*): BigQuerySQLStatement =\n    makeStatement(expressions.map(convertStatement(_, fields)), \",\")\n\n  def convertAggregateExpressions(expression: Expression, fields: Seq[Attribute]): Option[BigQuerySQLStatement] = {\n    expression match {\n      case _: AggregateExpression =>\n        // Take only the first child, as all of the functions below have only one.\n        expression.children.headOption.flatMap(agg_fun => {\n          Option(agg_fun match {\n            case _: Average | _: Corr | _: CovPopulation | _: CovSample | _: Count |\n                 _: Max | _: Min | _: Sum | _: StddevPop | _: StddevSamp |\n                 _: VariancePop | _: VarianceSamp =>\n              val distinct: BigQuerySQLStatement =\n                if (expression.sql contains \"(DISTINCT \") ConstantString(\"DISTINCT\").toStatement\n                else EmptyBigQuerySQLStatement()\n\n              ConstantString(agg_fun.prettyName.toUpperCase) +\n                blockStatement(\n                  distinct + convertStatements(fields, agg_fun.children: _*)\n                )\n          })\n        })\n      case _ => None\n    }\n  }\n\n  def convertBasicExpressions(expression: Expression, fields: Seq[Attribute]): Option[BigQuerySQLStatement] = {\n    Option(expression match {\n      case a: Attribute => addAttributeStatement(a, fields)\n      case And(left, right) =>\n        blockStatement(\n          convertStatement(left, fields) + \"AND\" + convertStatement(right, fields)\n        )\n      case Or(left, right) =>\n        blockStatement(\n          convertStatement(left, fields) + \"OR\" + convertStatement(right, fields)\n        )\n      case BitwiseAnd(left, right) =>\n        blockStatement(\n          convertStatement(left, fields) + \"&\" + convertStatement(right, fields)\n        )\n      case BitwiseOr(left, right) =>\n        blockStatement(\n          convertStatement(left, fields) + \"|\" + convertStatement(right, fields)\n        )\n      case BitwiseXor(left, right) =>\n        blockStatement(\n          convertStatement(left, fields) + \"^\" + convertStatement(right, fields)\n        )\n      case BitwiseNot(child) =>\n        ConstantString(\"~\") + blockStatement(\n          convertStatement(child, fields)\n        )\n      case EqualNullSafe(left, right) =>\n\n        /**\n         * Since NullSafeEqual operator is not supported in BigQuery, we are instead converting the operator to COALESCE ( CAST (leftExpression AS STRING), \"\" ) = COALESCE ( CAST (rightExpression AS STRING), \"\" )\n         * Casting the expression to String to make sure the COALESCE arguments are of same type.\n         */\n        blockStatement(\n          ConstantString(\"COALESCE\") + blockStatement( ConstantString(\"CAST\") + blockStatement(convertStatement(left, fields) + ConstantString(\"AS STRING\") ) + \",\" + ConstantString(\"\\\"\\\"\") ) +\n            ConstantString(\"=\") +\n            ConstantString(\"COALESCE\") + blockStatement( ConstantString(\"CAST\") + blockStatement(convertStatement(right, fields) + ConstantString(\"AS STRING\") ) + \",\" + ConstantString(\"\\\"\\\"\") )\n        )\n\n      case b@BinaryOperator(left, right) =>\n        blockStatement(\n          convertStatement(left, fields) + b.symbol + convertStatement(right, fields)\n        )\n      case l: Literal =>\n        l.dataType match {\n          case StringType =>\n            if (l.value == null) {\n              ConstantString(\"NULL\").toStatement\n            } else {\n              StringVariable(Some(l.toString())).toStatement\n            }\n          case DateType =>\n            ConstantString(\"DATE_ADD(DATE \\\"1970-01-01\\\", INTERVAL \") + IntVariable(\n              Option(l.value).map(_.asInstanceOf[Int])\n            ) + \" DAY)\" // s\"DATE_ADD(DATE \"1970-01-01\", INTERVAL ${l.value} DAY)\n          case TimestampType =>\n            ConstantString(\"TIMESTAMP_MICROS(\") + LongVariable(Option(l.value).map(_.asInstanceOf[Long])) + \")\"\n          case _ =>\n            l.value match {\n              case v: Int => IntVariable(Some(v)).toStatement\n              case v: Long => LongVariable(Some(v)).toStatement\n              case v: Short => ShortVariable(Some(v)).toStatement\n              case v: Boolean => BooleanVariable(Some(v)).toStatement\n              case v: Float => FloatVariable(Some(v)).toStatement\n              case v: Double => DoubleVariable(Some(v)).toStatement\n              case v: Byte => ByteVariable(Some(v)).toStatement\n              case _ => ConstantStringVal(l.value).toStatement\n            }\n        }\n\n      case _ => null\n    })\n  }\n\n  def convertBooleanExpressions(expression: Expression, fields: Seq[Attribute]): Option[BigQuerySQLStatement] = {\n    Option(expression match {\n      case In(child, list) =>\n        convertStatement(child, fields) + \"IN\" +\n          blockStatement(convertStatements(fields, list: _*))\n\n      case IsNull(child) =>\n        blockStatement(convertStatement(child, fields) + \"IS NULL\")\n\n      case IsNotNull(child) =>\n        blockStatement(convertStatement(child, fields) + \"IS NOT NULL\")\n\n      case Not(child) => {\n        child match {\n          case EqualTo(left, right) =>\n            blockStatement(\n              convertStatement(left, fields) + \"!=\" +\n                convertStatement(right, fields)\n            )\n          case GreaterThanOrEqual(left, right) =>\n            convertStatement(LessThan(left, right), fields)\n          case LessThanOrEqual(left, right) =>\n            convertStatement(GreaterThan(left, right), fields)\n          case GreaterThan(left, right) =>\n            convertStatement(LessThanOrEqual(left, right), fields)\n          case LessThan(left, right) =>\n            convertStatement(GreaterThanOrEqual(left, right), fields)\n          case _ =>\n            ConstantString(\"NOT\") +\n              blockStatement(convertStatement(child, fields))\n        }\n      }\n\n      case Contains(child, Literal(pattern: UTF8String, StringType)) =>\n        ConstantString(\"CONTAINS_SUBSTR\") + blockStatement(convertStatement(child, fields) + \",\" + s\"'${pattern.toString.replace( \"'\", \"\\\\'\")}'\")\n\n      case EndsWith(child, Literal(pattern: UTF8String, StringType)) =>\n        ConstantString(\"ENDS_WITH\") + blockStatement(convertStatement(child, fields) + \",\" + s\"'${pattern.toString.replace( \"'\", \"\\\\'\")}'\")\n\n      case StartsWith(child, Literal(pattern: UTF8String, StringType)) =>\n        ConstantString(\"STARTS_WITH\") + blockStatement(convertStatement(child, fields) + \",\" + s\"'${pattern.toString.replace( \"'\", \"\\\\'\")}'\")\n\n      case _ => null\n    })\n  }\n\n  def convertDateExpressions(expression: Expression, fields: Seq[Attribute]): Option[BigQuerySQLStatement] = {\n    Option(expression match {\n      case DateAdd(startDate, days) =>\n        ConstantString(expression.prettyName.toUpperCase) +\n          blockStatement(\n              convertStatement(startDate, fields) + \", INTERVAL \" +\n              convertStatement(days, fields) + \"DAY\"\n          )\n      case DateSub(startDate, days) =>\n        ConstantString(expression.prettyName.toUpperCase) +\n          blockStatement(\n              convertStatement(startDate, fields) + \", INTERVAL \" +\n              convertStatement(days, fields) + \"DAY\"\n          )\n      case Month(child) =>\n        ConstantString(\"EXTRACT\") +\n          blockStatement(\n            ConstantString(expression.prettyName.toUpperCase) + \" FROM \" +\n              convertStatement(child, fields)\n          )\n      case Quarter(child) =>\n        ConstantString(\"EXTRACT\") +\n          blockStatement(\n            ConstantString(expression.prettyName.toUpperCase) + \" FROM \" +\n              convertStatement(child, fields)\n          )\n      case Year(child) =>\n        ConstantString(\"EXTRACT\") +\n          blockStatement(\n            ConstantString(expression.prettyName.toUpperCase) + \" FROM \" +\n              convertStatement(child, fields)\n          )\n      case TruncDate(date, format) =>\n        ConstantString(\"DATE_TRUNC\") +\n          blockStatement(\n            convertStatement(date, fields) + s\", ${format.toString()}\"\n          )\n\n      case _ => null\n    })\n  }\n\n  def convertMathematicalExpressions(expression: Expression, fields: Seq[Attribute]): Option[BigQuerySQLStatement] = {\n    Option(expression match {\n      case _: Abs | _: Acos | _: Asin | _: Atan |\n           _: Cos | _: Cosh | _: Exp | _: Floor | _: Greatest |\n           _: Least | _:Log10 | _: Pow | _:Round | _: Sin | _: Sinh |\n           _: Sqrt | _: Tan | _: Tanh =>\n        ConstantString(expression.prettyName.toUpperCase) + blockStatement(convertStatements(fields, expression.children: _*))\n\n      case IsNaN(child) =>\n        ConstantString(\"IS_NAN\") + blockStatement(convertStatement(child, fields))\n\n      case Signum(child) =>\n        ConstantString(\"SIGN\") + blockStatement(convertStatement(child, fields))\n\n      case _: Rand =>\n        ConstantString(\"RAND\") + ConstantString(\"()\")\n\n      case Logarithm(base, expr) =>\n        // In spark it is LOG(base,expr) whereas in BigQuery it is LOG(expr, base)\n        ConstantString(\"LOG\") + blockStatement(convertStatement(expr, fields) + \",\" + convertStatement(base, fields))\n\n      case _: CheckOverflow =>\n        convertCheckOverflowExpression(expression, fields)\n\n      case Pi() => ConstantString(\"bqutil.fn.pi()\").toStatement\n\n      case PromotePrecision(child) => convertStatement(child, fields)\n\n      case _: UnaryMinus =>\n        convertUnaryMinusExpression(expression, fields)\n\n      case _ => null\n    })\n  }\n\n  def convertMiscellaneousExpressions(expression: Expression, fields: Seq[Attribute]): Option[BigQuerySQLStatement] = {\n    Option(expression match {\n      case Alias(child: Expression, name: String) =>\n        blockStatement(convertStatement(child, fields), name)\n\n      case SortOrder(child, Ascending, _, _) =>\n        blockStatement(convertStatement(child, fields)) + \"ASC\"\n\n      case SortOrder(child, Descending, _, _) =>\n        blockStatement(convertStatement(child, fields)) + \"DESC\"\n\n      case ShiftLeft(child, position) =>\n        blockStatement(convertStatement(child, fields) + ConstantString(\"<<\") + convertStatement(position, fields))\n\n      case ShiftRight(child, position) =>\n        blockStatement(convertStatement(child, fields) + ConstantString(\">>\") + convertStatement(position, fields))\n\n      case CaseWhen(branches, elseValue) =>\n        ConstantString(\"CASE\") +\n          makeStatement(branches.map(whenClauseTuple =>\n            ConstantString(\"WHEN\") + convertStatement(whenClauseTuple._1, fields) + ConstantString(\"THEN\") + convertStatement(whenClauseTuple._2, fields)\n          ), \"\") +\n          {\n            elseValue match {\n              case Some(value) =>\n                ConstantString(\"ELSE\") + convertStatement(value, fields)\n              case None =>\n                EmptyBigQuerySQLStatement()\n            }\n          } + ConstantString(\"END\")\n\n      case Coalesce(columns) =>\n        ConstantString(expression.prettyName.toUpperCase) + blockStatement(makeStatement(columns.map(convertStatement(_, fields)), \", \"))\n\n      case If(predicate, trueValue, falseValue) =>\n        ConstantString(expression.prettyName.toUpperCase) + blockStatement(convertStatements(fields, predicate, trueValue, falseValue))\n\n      case InSet(child, hset) =>\n        convertStatement( In(child, setToExpression(hset)), fields)\n\n      case UnscaledValue(child) =>\n        child.dataType match {\n          case d: DecimalType =>\n            blockStatement(convertStatement(child, fields) + \"* POW( 10,\" + IntVariable(Some(d.scale)) + \")\")\n          case _ => null\n        }\n\n      case _: Cast =>\n        convertCastExpression(expression, fields)\n\n      case _: ScalarSubquery =>\n        convertScalarSubqueryExpression(expression, fields)\n\n      case _ => null\n    })\n  }\n\n  def convertStringExpressions(expression: Expression, fields: Seq[Attribute]): Option[BigQuerySQLStatement] = {\n    Option(expression match {\n      case _: Ascii | _: Concat | _: Length | _: Lower |\n           _: StringLPad | _: StringRPad | _: StringTranslate |\n           _: StringTrim | _: StringTrimLeft | _: StringTrimRight |\n           _: Upper | _: StringInstr | _: InitCap |\n           _: Substring =>\n        ConstantString(expression.prettyName.toUpperCase()) + blockStatement(convertStatements(fields, expression.children: _*))\n      case _: Like =>\n        convertLikeExpression(expression, fields)\n      case RegExpExtract(child, Literal(pattern: UTF8String, StringType), idx) =>\n        ConstantString(\"REGEXP_EXTRACT\") + blockStatement(convertStatement(child, fields) + \",\" + s\"r'${pattern.toString}'\" + \",\" + convertStatement(idx, fields))\n     case _: RegExpReplace =>\n        ConstantString(\"REGEXP_REPLACE\") + blockStatement(convertStatement(expression.children.head, fields) + \",\" + s\"r'${expression.children(1).toString}'\" + \",\" + s\"'${expression.children(2).toString}'\")\n      case _: FormatString | _: FormatNumber =>\n        ConstantString(\"FORMAT\") + blockStatement(convertStatements(fields, expression.children: _*))\n      case _: Base64 =>\n        ConstantString(\"TO_BASE64\") + blockStatement(convertStatements(fields, expression.children: _*))\n      case _: UnBase64 =>\n        ConstantString(\"FROM_BASE64\") + blockStatement(convertStatements(fields, expression.children: _*))\n      case _: SoundEx =>\n        ConstantString(\"UPPER\") + blockStatement(ConstantString(\"SOUNDEX\") + blockStatement(convertStatements(fields, expression.children: _*)))\n      case _ => null\n    })\n  }\n\n  def convertWindowExpressions(expression: Expression, fields: Seq[Attribute]): Option[BigQuerySQLStatement] = {\n    Option(expression match {\n      case WindowExpression(windowFunction, windowSpec) =>\n        windowFunction match {\n          /**\n           * Since we can't use a window frame clause with navigation functions and numbering functions,\n           * we set the useWindowFrame to false\n           */\n          case _: Rank | _: DenseRank | _: PercentRank | _: RowNumber =>\n            convertStatement(windowFunction, fields) +\n            ConstantString(\"OVER\") +\n            convertWindowBlock(windowSpec, fields, generateWindowFrame = false)\n          case _ =>\n            convertStatement(windowFunction, fields) +\n              ConstantString(\"OVER\") +\n              convertWindowBlock(windowSpec, fields, generateWindowFrame = true)\n        }\n      /**\n       * Handling Numbering Functions here itself since they are a sub class of Window Expressions\n       */\n      case _: Rank | _: DenseRank | _: PercentRank | _: RowNumber =>\n        ConstantString(expression.prettyName.toUpperCase) + ConstantString(\"()\")\n      case _ => null\n    })\n  }\n\n  def convertWindowBlock(windowSpecDefinition: WindowSpecDefinition, fields: Seq[Attribute], generateWindowFrame: Boolean): BigQuerySQLStatement = {\n    val partitionBy =\n      if (windowSpecDefinition.partitionSpec.nonEmpty) {\n        ConstantString(\"PARTITION BY\") +\n          makeStatement(windowSpecDefinition.partitionSpec.map(convertStatement(_, fields)), \",\")\n      } else {\n        EmptyBigQuerySQLStatement()\n      }\n\n    val orderBy =\n      if (windowSpecDefinition.orderSpec.nonEmpty) {\n        ConstantString(\"ORDER BY\") +\n          makeStatement(windowSpecDefinition.orderSpec.map(convertStatement(_, fields)), \",\")\n      } else {\n        EmptyBigQuerySQLStatement()\n      }\n\n    /**\n     * Generating the window frame iff generateWindowFrame is true and the window spec has order spec in it\n     */\n    val windowFrame =\n      if (generateWindowFrame && windowSpecDefinition.orderSpec.nonEmpty) {\n        windowSpecDefinition.frameSpecification match {\n          case windowSpec: SpecifiedWindowFrame =>\n          (windowSpec.lower, windowSpec.upper) match {\n            case (lower: Literal, upper: Literal) =>\n              generateWindowFrameFromSpecDefinition(windowSpec, Math.abs(lower.value.asInstanceOf[Long]).toString + \" \" + ConstantString(\"PRECEDING\"), Math.abs(upper.value.asInstanceOf[Long]).toString + \" \" + ConstantString(\"FOLLOWING\"))\n            case (lower: Literal, upper: SpecialFrameBoundary) =>\n              generateWindowFrameFromSpecDefinition(windowSpec, Math.abs(lower.value.asInstanceOf[Long]).toString + \" \" + ConstantString(\"PRECEDING\"), upper.sql)\n            case (lower: SpecialFrameBoundary, upper: Literal) =>\n              generateWindowFrameFromSpecDefinition(windowSpec, lower.sql, Math.abs(upper.value.asInstanceOf[Long]).toString + \" \" + ConstantString(\"FOLLOWING\"))\n            case _ =>\n              windowSpecDefinition.frameSpecification.sql\n          }\n          case _ =>\n            windowSpecDefinition.frameSpecification.sql\n        }\n      } else {\n        \"\"\n      }\n\n    blockStatement(partitionBy + orderBy + windowFrame)\n  }\n\n  def generateWindowFrameFromSpecDefinition(windowSpec: SpecifiedWindowFrame, lower: String, upper: String): String = {\n    windowSpec.frameType.sql + \" \" + ConstantString(\"BETWEEN\") + \" \" + lower + \" \" + ConstantString(\"AND\") + \" \" + upper\n  }\n\n  /** Attempts a best effort conversion from a SparkType\n   * to a BigQuery type to be used in a Cast.\n   */\n  final def getCastType(t: DataType): Option[String] =\n    Option(t match {\n      case StringType => \"STRING\"\n      case ByteType => \"BYTES\"\n      case BooleanType => \"BOOL\"\n      case DateType => \"DATE\"\n      case TimestampType => \"TIMESTAMP\"\n      case _: DecimalType => \"BIGDECIMAL\"\n      case IntegerType | ShortType | LongType => \"INT64\"\n      case FloatType | DoubleType => \"FLOAT64\"\n      case _ => null\n    })\n\n  final def performCastExpressionConversion(child: Expression, fields: Seq[Attribute], dataType: DataType): BigQuerySQLStatement =\n    getCastType(dataType) match {\n      case Some(cast) =>\n\n        /**\n         * For known unsupported data conversion, raise exception to break the pushdown process.\n         * For example, BigQuery doesn't support to convert DATE/TIMESTAMP to NUMBER\n         */\n        (child.dataType, dataType) match {\n          case (_: DateType | _: TimestampType,\n          _: IntegerType | _: LongType | _: FloatType | _: DoubleType | _: DecimalType) => {\n            throw new BigQueryPushdownUnsupportedException(\n              \"Pushdown failed due to unsupported conversion\")\n          }\n\n          /**\n           * BigQuery doesn't support casting from Integer to Bytes (https://cloud.google.com/bigquery/docs/reference/standard-sql/functions-and-operators#cast_as_bytes)\n           * So handling this case separately.\n           */\n          case (_: IntegerType | _: LongType | _: FloatType | _: DoubleType | _: DecimalType ,_: ByteType) =>\n            ConstantString(\"CAST\") +\n              blockStatement(convertStatement(child, fields) + ConstantString(\"AS NUMERIC\"))\n          case _ =>\n            ConstantString(\"CAST\") +\n              blockStatement(convertStatement(child, fields) + \"AS\" + cast)\n        }\n\n      case _ => convertStatement(child, fields)\n    }\n\n  final def setToExpression(set: Set[Any]): Seq[Expression] = {\n    set.map {\n      case d: Decimal => Literal(d, DecimalType(d.precision, d.scale))\n      case s @ (_: String | _: UTF8String) => Literal(s, StringType)\n      case d: Double => Literal(d, DoubleType)\n      case l: Long => Literal(l, LongType)\n      case e: Expression => e\n      case default =>\n        throw new BigQueryPushdownUnsupportedException(\n          \"Pushdown unsupported for \" + s\"${default.getClass.getSimpleName} @ MiscStatement.setToExpression\"\n        )\n    }.toSeq\n  }\n\n  // For supporting Scalar Subquery, we need specific implementations of BigQueryStrategy\n  def convertScalarSubqueryExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement\n\n  def convertCheckOverflowExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement\n\n  def convertUnaryMinusExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement\n\n  def convertCastExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement\n\n  def convertLikeExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/pushdown_common_src/main/scala/com/google/cloud/spark/bigquery/pushdowns/SparkExpressionFactory.scala",
    "content": "package com.google.cloud.spark.bigquery.pushdowns\n\nimport org.apache.spark.sql.catalyst.expressions.{Alias, ExprId, Expression}\nimport org.apache.spark.sql.types.Metadata\n\n/**\n * Factory for creating Spark expressions that are not binary compatible between\n * different Spark versions.\n *\n * For example: Alias is not compatible between Spark 2.4 and Spark 3.1\n */\ntrait SparkExpressionFactory {\n  def createAlias(child: Expression, name: String, exprId: ExprId, qualifier: Seq[String], explicitMetadata: Option[Metadata]): Alias\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/pushdown_common_src/main/scala/com/google/cloud/spark/bigquery/pushdowns/SparkPlanFactory.scala",
    "content": "package com.google.cloud.spark.bigquery.pushdowns\n\nimport com.google.cloud.spark.bigquery.direct.BigQueryRDDFactory\nimport org.apache.spark.internal.Logging\nimport org.apache.spark.sql.catalyst.plans.logical.Project\nimport org.apache.spark.sql.execution.{ProjectExec, SparkPlan}\n\ntrait SparkPlanFactory {\n  /**\n   * Generate SparkPlan from the output and RDD of the translated query\n   */\n  def createBigQueryPlan(queryRoot: BigQuerySQLQuery, bigQueryRDDFactory: BigQueryRDDFactory): Option[SparkPlan]\n\n  /**\n   * Generate physical Project plan from the projectList of the passed-in Project node\n   */\n  def createProjectPlan(projectNode: Project, child: SparkPlan): Option[SparkPlan] = {\n    Some(ProjectExec(projectNode.projectList, child))\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/pushdown_common_src/main/scala/com/google/cloud/spark/bigquery/pushdowns/UnaryOperationExtractor.scala",
    "content": "package com.google.cloud.spark.bigquery.pushdowns\n\nimport org.apache.spark.sql.catalyst.plans.logical.{Aggregate, Filter, GlobalLimit, LocalLimit, LogicalPlan, Project, ReturnAnswer, Sort, UnaryNode, Window}\n\n/** Extractor for supported unary operations. Returns the node itself if the\n * operation is supported **/\nobject UnaryOperationExtractor {\n\n  def unapply(node: LogicalPlan): Option[LogicalPlan] =\n    node match {\n      case _: Filter | _: Project | _: GlobalLimit | _: LocalLimit |\n           _: Aggregate | _: Sort | _: ReturnAnswer | _: Window =>\n        Some(node)\n\n      case _ => None\n    }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/pushdown_common_src/main/scala/com/google/cloud/spark/bigquery/pushdowns/UnionOperationExtractor.scala",
    "content": "package com.google.cloud.spark.bigquery.pushdowns\n\nimport org.apache.spark.sql.catalyst.plans.logical.{LogicalPlan, Union}\n\nobject UnionOperationExtractor {\n  def unapply(node: Union): Option[Seq[LogicalPlan]] =\n    Option(node match {\n      case _: Union => node.children\n      case _ => null\n    })\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/pushdown_common_src/main/scala/com/google/cloud/spark/bigquery/pushdowns/UnionQuery.scala",
    "content": "package com.google.cloud.spark.bigquery.pushdowns\n\nimport com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdownUtil.{blockStatement, makeStatement}\nimport org.apache.spark.sql.catalyst.expressions.{Attribute, AttributeReference, NamedExpression}\nimport org.apache.spark.sql.catalyst.plans.logical.LogicalPlan\n\nimport scala.Seq\n\ncase class UnionQuery(\n                  expressionConverter: SparkExpressionConverter,\n                  expressionFactory: SparkExpressionFactory,\n                  children: Seq[BigQuerySQLQuery],\n                  alias: String)\n  extends BigQuerySQLQuery(\n    expressionConverter,\n    expressionFactory,\n    alias,\n    children = children,\n    outputAttributes = if (children.isEmpty) None else Some(children.head.output),\n    visibleAttributeOverride = if (children.isEmpty) None else Some(children.foldLeft(Seq.empty[Attribute])((x, y) => x ++ y.output).map(\n      a =>\n        AttributeReference(a.name, a.dataType, a.nullable, a.metadata)(\n          a.exprId,\n          Seq[String](alias)\n        )))) {\n\n  override def getStatement(useAlias: Boolean): BigQuerySQLStatement = {\n    val query =\n      if (children.nonEmpty) {\n        makeStatement(\n          children.map(c => blockStatement(c.getStatement())),\n          \"UNION ALL\"\n        )\n      } else {\n        EmptyBigQuerySQLStatement()\n      }\n\n    if (useAlias) {\n      blockStatement(query, alias)\n    } else {\n      query\n    }\n  }\n\n  override def find[T](query: PartialFunction[BigQuerySQLQuery, T]): Option[T] =\n    query.lift(this).orElse(\n        children\n          .map(q => q.find(query))\n          .view\n          .foldLeft[Option[T]](None)(_ orElse _)\n      )\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/pushdown_common_src/main/scala/com/google/cloud/spark/bigquery/pushdowns/WindowQuery.scala",
    "content": "package com.google.cloud.spark.bigquery.pushdowns\n\nimport org.apache.spark.sql.catalyst.expressions.{Attribute, NamedExpression}\n\ncase class WindowQuery(\n                        expressionConverter: SparkExpressionConverter,\n                        expressionFactory: SparkExpressionFactory,\n                        windowExpressions: Seq[NamedExpression],\n                        child: BigQuerySQLQuery,\n                        fields: Option[Seq[Attribute]],\n                        alias: String)\n  extends BigQuerySQLQuery(\n      expressionConverter,\n      expressionFactory,\n      alias,\n      children = Seq(child),\n      // Need to send in the query attributes along with window expressions to avoid \"TreeNodeException: Binding attribute, tree\"\n      projections = WindowQuery.getWindowProjections(windowExpressions, child, fields)) {}\n\nobject WindowQuery {\n      def getWindowProjections(windowExpressions: Seq[NamedExpression], child: BigQuerySQLQuery, fields: Option[Seq[Attribute]]): Option[Seq[NamedExpression]] = {\n            val projectionVector = windowExpressions ++ child.outputWithQualifier\n\n            val orderedProjections =\n                  fields.map(_.map(reference => {\n                        val origPos = projectionVector.map(_.exprId).indexOf(reference.exprId)\n                        projectionVector(origPos)\n                  }))\n\n            orderedProjections\n      }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/pushdown_common_src/test/scala/com/google/cloud/spark/bigquery/pushdowns/AggregateQuerySuite.scala",
    "content": "package com.google.cloud.spark.bigquery.pushdowns\n\nimport com.google.cloud.spark.bigquery.pushdowns.TestConstants.{SUBQUERY_0_ALIAS, TABLE_NAME, bigQueryRDDFactoryMock, expressionConverter, expressionFactory, schoolIdAttributeReference, schoolNameAttributeReference}\nimport org.scalatest.funsuite.AnyFunSuite\n\n// Testing only the suffixStatement here since it is the only variable that is\n// different from the other queries.\nclass AggregateQuerySuite extends AnyFunSuite{\n  private val sourceQuery = SourceQuery(expressionConverter, expressionFactory, bigQueryRDDFactoryMock, TABLE_NAME, Seq(schoolIdAttributeReference, schoolNameAttributeReference), SUBQUERY_0_ALIAS)\n\n  test(\"suffixStatement with groups\") {\n    // Passing projectionColumns parameter as empty list for simplicity\n    val aggregateQuery = AggregateQuery(expressionConverter, expressionFactory, projectionColumns = Seq(), groups = Seq(schoolNameAttributeReference), sourceQuery, SUBQUERY_0_ALIAS)\n    assert(aggregateQuery.suffixStatement.toString == \"GROUP BY SUBQUERY_0.SCHOOLNAME\")\n  }\n\n  test(\"suffixStatement without groups\") {\n    // Passing projectionColumns parameter as empty list for simplicity\n    val aggregateQuery = AggregateQuery(expressionConverter, expressionFactory, projectionColumns = Seq(), groups = Seq(), sourceQuery, SUBQUERY_0_ALIAS)\n    assert(aggregateQuery.suffixStatement.toString == \"LIMIT 1\")\n  }\n\n  test(\"find\") {\n    val aggregateQuery = AggregateQuery(expressionConverter, expressionFactory, projectionColumns = Seq(), groups = Seq(), sourceQuery, SUBQUERY_0_ALIAS)\n    val returnedQuery = aggregateQuery.find({ case q: SourceQuery => q })\n    assert(returnedQuery.isDefined)\n    assert(returnedQuery.get == sourceQuery)\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/pushdown_common_src/test/scala/com/google/cloud/spark/bigquery/pushdowns/BigQuerySQLStatementSuite.scala",
    "content": "package com.google.cloud.spark.bigquery.pushdowns\n\nimport org.scalatest.funsuite.AnyFunSuite\n\nclass BigQuerySQLStatementSuite extends AnyFunSuite {\n  test(\"toString\") {\n    val bigQuerySQLStatement = EmptyBigQuerySQLStatement.apply()\n    val newBigQuerySQLStatement = bigQuerySQLStatement + ConstantString(\"LIMIT\") + IntVariable(Option.apply(5))\n    assert(\"LIMIT 5\" == newBigQuerySQLStatement.toString)\n  }\n\n  test(\"+ with StatementElement\") {\n    val bigQuerySQLStatement = EmptyBigQuerySQLStatement.apply()\n    val newBigQuerySQLStatement = bigQuerySQLStatement + ConstantString(\"LIMIT\") + IntVariable(Option.apply(5))\n    assert(2 == newBigQuerySQLStatement.list.size)\n    assert(\"5\" == newBigQuerySQLStatement.list.head.sql)\n    assert(\"LIMIT\" == newBigQuerySQLStatement.list(1).sql)\n    assert(\"LIMIT 5\" == newBigQuerySQLStatement.toString)\n  }\n\n  test(\"+ with BigQuerySQLStatement\") {\n    val bigQuerySQLStatement1 = ConstantString(\"SELECT\") + \"*\"\n    val bigQuerySQLStatement2 = ConstantString(\"FROM TABLE\")\n\n    val newBigQuerySQLStatement = bigQuerySQLStatement1 + bigQuerySQLStatement2\n    assert(3 == newBigQuerySQLStatement.list.size)\n    assert(\"FROM TABLE\" == newBigQuerySQLStatement.list.head.sql)\n    assert(\"*\" == newBigQuerySQLStatement.list(1).sql)\n    assert(\"SELECT\" == newBigQuerySQLStatement.list(2).sql)\n    assert(\"SELECT * FROM TABLE\" == newBigQuerySQLStatement.toString)\n  }\n\n  test(\"+ with String\") {\n    val bigQuerySQLStatement = EmptyBigQuerySQLStatement.apply()\n    val newBigQuerySQLStatement = bigQuerySQLStatement + \"GROUP BY\"\n    assert(1 == newBigQuerySQLStatement.list.size)\n    assert(\"GROUP BY\" == newBigQuerySQLStatement.list.head.sql)\n    assert(\"GROUP BY\" == newBigQuerySQLStatement.toString)\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/pushdown_common_src/test/scala/com/google/cloud/spark/bigquery/pushdowns/BigQueryStrategySuite.scala",
    "content": "package com.google.cloud.spark.bigquery.pushdowns\n\nimport com.google.cloud.spark.bigquery.direct.{BigQueryRDDFactory, DirectBigQueryRelation}\nimport com.google.cloud.spark.bigquery.pushdowns.TestConstants._\nimport org.apache.spark.sql.catalyst.analysis.NamedRelation\nimport org.apache.spark.sql.catalyst.expressions.aggregate.{AggregateExpression, Complete, Count}\nimport org.apache.spark.sql.catalyst.expressions.{Alias, Ascending, Attribute, Cast, EqualTo, Literal, SortOrder}\nimport org.apache.spark.sql.catalyst.plans.JoinType\nimport org.apache.spark.sql.catalyst.plans.logical.{Aggregate, Filter, Intersect, Join, Limit, LogicalPlan, Project, Range, ReturnAnswer, Sort}\nimport org.apache.spark.sql.execution.datasources.LogicalRelation\nimport org.apache.spark.sql.types.{StringType, StructType}\nimport org.mockito.ArgumentMatchers.any\nimport org.mockito.{Mock, MockitoAnnotations}\nimport org.mockito.Mockito.when\nimport org.scalatest.BeforeAndAfter\nimport org.scalatest.funsuite.AnyFunSuite\n\nclass BigQueryStrategySuite extends AnyFunSuite with BeforeAndAfter {\n  @Mock\n  private var directBigQueryRelationMock: DirectBigQueryRelation = _\n  @Mock\n  var sparkPlanFactoryMock: SparkPlanFactory = _\n\n  private val sourceQuery = SourceQuery(expressionConverter, expressionFactory, bigQueryRDDFactoryMock, TABLE_NAME, Seq(schoolIdAttributeReference, schoolNameAttributeReference), SUBQUERY_0_ALIAS)\n\n  // Need a childPlan to pass. So, create the simplest possible\n  private val childPlan = Range.apply(2L, 100L, 4L, 8)\n\n  before {\n    MockitoAnnotations.initMocks(this)\n  }\n\n  test(\"getRDDFactory\") {\n    val returnedRDDFactory = new BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactoryMock) {\n      override def generateQueryFromPlanForDataSourceV2(plan: LogicalPlan): Option[BigQuerySQLQuery] = None\n\n      override def createUnionQuery(children: Seq[LogicalPlan]): Option[BigQuerySQLQuery] = None\n    }.getRDDFactory(sourceQuery)\n    assert(returnedRDDFactory.isDefined)\n    assert(returnedRDDFactory.get == bigQueryRDDFactoryMock)\n  }\n\n  test(\"exception thrown in apply method\") {\n    when(directBigQueryRelationMock.schema).thenReturn(StructType.apply(Seq()))\n    when(sparkPlanFactoryMock.createBigQueryPlan(any(classOf[BigQuerySQLQuery]),\n      any(classOf[BigQueryRDDFactory]))).thenThrow(new RuntimeException(\"Unable to create spark plan\"))\n\n    val logicalRelation = LogicalRelation(directBigQueryRelationMock)\n    val returnedPlan = new BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactoryMock) {\n      override def generateQueryFromPlanForDataSourceV2(plan: LogicalPlan): Option[BigQuerySQLQuery] = None\n\n      override def createUnionQuery(children: Seq[LogicalPlan]): Option[BigQuerySQLQuery] = None\n    }.apply(logicalRelation)\n\n    assert(returnedPlan == Nil)\n  }\n\n  test(\"hasUnsupportedNodes with unsupported node\") {\n    val unsupportedNode = Intersect(childPlan, childPlan, isAll = true)\n    val returnAnswerPlan = ReturnAnswer(unsupportedNode)\n\n    assert(new BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactoryMock) {\n      override def generateQueryFromPlanForDataSourceV2(plan: LogicalPlan): Option[BigQuerySQLQuery] = None\n\n      override def createUnionQuery(children: Seq[LogicalPlan]): Option[BigQuerySQLQuery] = None\n    }.hasUnsupportedNodes(returnAnswerPlan))\n  }\n\n  test(\"hasUnsupportedNodes with supported nodes\") {\n    when(directBigQueryRelationMock.schema).thenReturn(StructType.apply(Seq()))\n    when(directBigQueryRelationMock.getTableName).thenReturn(\"MY_BIGQUERY_TABLE\")\n\n    val logicalRelation = LogicalRelation(directBigQueryRelationMock)\n\n    val filterPlan = Filter(EqualTo.apply(schoolIdAttributeReference, Literal(1234L)), logicalRelation)\n    val projectPlan = Project(Seq(schoolNameAttributeReference), filterPlan)\n    val sortPlan = Sort(Seq(SortOrder.apply(schoolIdAttributeReference, Ascending)), global = true, projectPlan)\n    val limitPlan = Limit(Literal(10), sortPlan)\n    val returnAnswerPlan = ReturnAnswer(limitPlan)\n\n    assert(!new BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactoryMock) {\n      override def generateQueryFromPlanForDataSourceV2(plan: LogicalPlan): Option[BigQuerySQLQuery] = None\n\n      override def createUnionQuery(children: Seq[LogicalPlan]): Option[BigQuerySQLQuery] = None\n    }.hasUnsupportedNodes(returnAnswerPlan))\n  }\n\n  test(\"generateQueryFromPlan with filter, project, limit and sort plans\") {\n    when(directBigQueryRelationMock.schema).thenReturn(StructType.apply(Seq()))\n    when(directBigQueryRelationMock.getTableName).thenReturn(\"MY_BIGQUERY_TABLE\")\n\n    val logicalRelation = LogicalRelation(directBigQueryRelationMock)\n\n    val filterPlan = Filter(EqualTo.apply(schoolIdAttributeReference, Literal(1234L)), logicalRelation)\n    val projectPlan = Project(Seq(schoolNameAttributeReference), filterPlan)\n    val sortPlan = Sort(Seq(SortOrder.apply(schoolIdAttributeReference, Ascending)), global = true, projectPlan)\n    val limitPlan = Limit(Literal(10), sortPlan)\n\n    val returnedQueryOption = new BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactoryMock) {\n      override def generateQueryFromPlanForDataSourceV2(plan: LogicalPlan): Option[BigQuerySQLQuery] = None\n\n      override def createUnionQuery(children: Seq[LogicalPlan]): Option[BigQuerySQLQuery] = None\n    }.generateQueryFromPlan(limitPlan)\n    assert(returnedQueryOption.isDefined)\n\n    val returnedQuery = returnedQueryOption.get\n    assert(returnedQuery.getStatement().toString == \"SELECT * FROM \" +\n      \"( SELECT * FROM ( SELECT ( SCHOOLNAME ) AS SUBQUERY_2_COL_0 FROM \" +\n      \"( SELECT * FROM ( SELECT * FROM `MY_BIGQUERY_TABLE` AS BQ_CONNECTOR_QUERY_ALIAS ) \" +\n      \"AS SUBQUERY_0 WHERE ( SCHOOLID = 1234 ) ) AS SUBQUERY_1 ) \" +\n      \"AS SUBQUERY_2 ORDER BY ( SCHOOLID ) ASC ) AS SUBQUERY_3 ORDER BY ( SCHOOLID ) ASC LIMIT 10\")\n  }\n\n  // Special case for Spark 2.4 in which Spark SQL query has a limit and show() is called\n  test(\"generateQueryFromPlan with 2 limits and Sort as outermost nodes\") {\n    when(directBigQueryRelationMock.schema).thenReturn(StructType.apply(Seq()))\n    when(directBigQueryRelationMock.getTableName).thenReturn(\"MY_BIGQUERY_TABLE\")\n\n    val logicalRelation = LogicalRelation(directBigQueryRelationMock)\n\n    val filterPlan = Filter(EqualTo.apply(schoolIdAttributeReference, Literal(1234L)), logicalRelation)\n    val projectPlan = Project(Seq(schoolNameAttributeReference), filterPlan)\n    val sortPlan = Sort(Seq(SortOrder.apply(schoolIdAttributeReference, Ascending)), global = true, projectPlan)\n    val innerLimitPlan = Limit(Literal(10), sortPlan)\n    val outerLimitPlan = Limit(Literal(20), innerLimitPlan)\n\n    val returnedQueryOption = new BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactoryMock) {\n      override def generateQueryFromPlanForDataSourceV2(plan: LogicalPlan): Option[BigQuerySQLQuery] = None\n\n      override def createUnionQuery(children: Seq[LogicalPlan]): Option[BigQuerySQLQuery] = None\n    }.generateQueryFromPlan(outerLimitPlan)\n    assert(returnedQueryOption.isDefined)\n\n    val returnedQuery = returnedQueryOption.get\n    assert(returnedQuery.getStatement().toString == \"SELECT * FROM \" +\n      \"( SELECT * FROM ( SELECT * FROM ( SELECT ( SCHOOLNAME ) AS SUBQUERY_2_COL_0 FROM \" +\n      \"( SELECT * FROM ( SELECT * FROM `MY_BIGQUERY_TABLE` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_0 \" +\n      \"WHERE ( SCHOOLID = 1234 ) ) AS SUBQUERY_1 ) AS SUBQUERY_2 \" +\n      \"ORDER BY ( SCHOOLID ) ASC ) AS SUBQUERY_3 ORDER BY ( SCHOOLID ) ASC LIMIT 10 ) \" +\n      \"AS SUBQUERY_4 ORDER BY ( SCHOOLID ) ASC LIMIT 20\")\n  }\n\n\n  test(\"generateQueryFromPlan with aggregate plan\") {\n    when(directBigQueryRelationMock.schema).thenReturn(StructType.apply(Seq()))\n    when(directBigQueryRelationMock.getTableName).thenReturn(\"MY_BIGQUERY_TABLE\")\n\n    val logicalRelation = LogicalRelation(directBigQueryRelationMock)\n\n    val aggregateExpression = Alias.apply(AggregateExpression.apply(Count.apply(schoolIdAttributeReference), Complete, isDistinct = false), \"COUNT\")()\n    val aggregatePlan = Aggregate(Seq(schoolNameAttributeReference), Seq(aggregateExpression), logicalRelation)\n\n    // Need to create a new BigQueryStrategy object so as to start from the original alias\n    val returnedQueryOption = new BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactoryMock) {\n      override def generateQueryFromPlanForDataSourceV2(plan: LogicalPlan): Option[BigQuerySQLQuery] = None\n\n      override def createUnionQuery(children: Seq[LogicalPlan]): Option[BigQuerySQLQuery] = None\n    }.generateQueryFromPlan(aggregatePlan)\n    assert(returnedQueryOption.isDefined)\n\n    val returnedQuery = returnedQueryOption.get\n    assert(returnedQuery.getStatement().toString == \"SELECT ( COUNT ( SCHOOLID ) ) AS SUBQUERY_1_COL_0 FROM \" +\n      \"( SELECT * FROM `MY_BIGQUERY_TABLE` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_0 GROUP BY SCHOOLNAME\")\n  }\n\n  test(\"generateQueryFromPlan with empty project plan\") {\n    when(directBigQueryRelationMock.schema).thenReturn(StructType.apply(Seq()))\n    when(directBigQueryRelationMock.getTableName).thenReturn(\"MY_BIGQUERY_TABLE\")\n\n    val logicalRelation = LogicalRelation(directBigQueryRelationMock)\n\n    val aggregateExpression = Alias.apply(AggregateExpression.apply(Count.apply(schoolIdAttributeReference), Complete, isDistinct = false), \"COUNT\")()\n    val aggregatePlan = Aggregate(Seq(schoolNameAttributeReference), Seq(aggregateExpression), logicalRelation)\n\n    val projectPlan = Project(Nil, aggregatePlan)\n\n    // Need to create a new BigQueryStrategy object so as to start from the original alias\n    val bigQueryStrategy = new BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactoryMock) {\n      override def generateQueryFromPlanForDataSourceV2(plan: LogicalPlan): Option[BigQuerySQLQuery] = None\n\n      override def createUnionQuery(children: Seq[LogicalPlan]): Option[BigQuerySQLQuery] = None\n    }\n    val plan = bigQueryStrategy.cleanUpLogicalPlan(projectPlan)\n    val returnedQueryOption = bigQueryStrategy.generateQueryFromPlan(plan)\n    assert(returnedQueryOption.isDefined)\n\n    val returnedQuery = returnedQueryOption.get\n    assert(returnedQuery.getStatement().toString == \"SELECT ( COUNT ( SCHOOLID ) ) AS SUBQUERY_1_COL_0 FROM \" +\n      \"( SELECT * FROM `MY_BIGQUERY_TABLE` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_0 GROUP BY SCHOOLNAME\")\n  }\n\n  test(\"getTopMostProjectNodeWithAliasedCasts with Aggregate before Project\") {\n    when(directBigQueryRelationMock.schema).thenReturn(StructType.apply(Seq()))\n    when(directBigQueryRelationMock.getTableName).thenReturn(\"MY_BIGQUERY_TABLE\")\n\n    val logicalRelation = LogicalRelation(directBigQueryRelationMock)\n\n    val projectPlan = Project(Nil, logicalRelation)\n\n    val aggregateExpression = Alias.apply(AggregateExpression.apply(Count.apply(schoolIdAttributeReference), Complete, isDistinct = false), \"COUNT\")()\n    val aggregatePlan = Aggregate(Seq(schoolNameAttributeReference), Seq(aggregateExpression), projectPlan)\n\n    val bigQueryStrategy = new BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactoryMock) {\n      override def generateQueryFromPlanForDataSourceV2(plan: LogicalPlan): Option[BigQuerySQLQuery] = None\n\n      override def createUnionQuery(children: Seq[LogicalPlan]): Option[BigQuerySQLQuery] = None\n    }\n    assert(bigQueryStrategy.getTopMostProjectNodeWithAliasedCasts(aggregatePlan).isEmpty)\n  }\n\n  test(\"getTopMostProjectNodeWithAliasedCasts without Project\") {\n    when(directBigQueryRelationMock.schema).thenReturn(StructType.apply(Seq()))\n    when(directBigQueryRelationMock.getTableName).thenReturn(\"MY_BIGQUERY_TABLE\")\n\n    val logicalRelation = LogicalRelation(directBigQueryRelationMock)\n\n    val filterPlan = Filter(EqualTo.apply(schoolIdAttributeReference, Literal(1234L)), logicalRelation)\n\n    val aggregateExpression = Alias.apply(AggregateExpression.apply(Count.apply(schoolIdAttributeReference), Complete, isDistinct = false), \"COUNT\")()\n    val aggregatePlan = Aggregate(Seq(schoolNameAttributeReference), Seq(aggregateExpression), filterPlan)\n    val returnAnswerPlan = ReturnAnswer(aggregatePlan)\n\n    val bigQueryStrategy = new BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactoryMock) {\n      override def generateQueryFromPlanForDataSourceV2(plan: LogicalPlan): Option[BigQuerySQLQuery] = None\n\n      override def createUnionQuery(children: Seq[LogicalPlan]): Option[BigQuerySQLQuery] = None\n    }\n\n    assert(bigQueryStrategy.getTopMostProjectNodeWithAliasedCasts(logicalRelation).isEmpty)\n    assert(bigQueryStrategy.getTopMostProjectNodeWithAliasedCasts(returnAnswerPlan).isEmpty)\n\n    val namedRelation = new NamedRelation {\n      override def name: String = \"test-named-relation\"\n\n      override def output: Seq[Attribute] = Seq.empty\n\n      override def children: Seq[LogicalPlan] = Seq.empty\n\n      override def productElement(n: Int): Any = 1\n\n      override def productArity: Int = 1\n\n      override def canEqual(that: Any): Boolean = true\n\n      protected def withNewChildrenInternal(newChildren: IndexedSeq[LogicalPlan]): LogicalPlan = this\n    }\n\n    assert(bigQueryStrategy.getTopMostProjectNodeWithAliasedCasts(namedRelation).isEmpty)\n  }\n\n  test(\"getTopMostProjectNodeWithAliasedCasts with Project without Aliased Cast child\") {\n    when(directBigQueryRelationMock.schema).thenReturn(StructType.apply(Seq()))\n    when(directBigQueryRelationMock.getTableName).thenReturn(\"MY_BIGQUERY_TABLE\")\n\n    val logicalRelation = LogicalRelation(directBigQueryRelationMock)\n\n    val aggregateExpression = Alias.apply(AggregateExpression.apply(Count.apply(schoolIdAttributeReference), Complete, isDistinct = false), \"COUNT\")()\n    val aggregatePlan = Aggregate(Seq(schoolNameAttributeReference), Seq(aggregateExpression), logicalRelation)\n\n    val projectList = Seq(schoolNameAttributeReference, Alias(schoolNameAttributeReference, \"school-name\")())\n    val projectPlan = Project(projectList, aggregatePlan)\n    val returnAnswerPlan = ReturnAnswer(projectPlan)\n\n    val bigQueryStrategy = new BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactoryMock) {\n      override def generateQueryFromPlanForDataSourceV2(plan: LogicalPlan): Option[BigQuerySQLQuery] = None\n\n      override def createUnionQuery(children: Seq[LogicalPlan]): Option[BigQuerySQLQuery] = None\n    }\n\n    assert(bigQueryStrategy.getTopMostProjectNodeWithAliasedCasts(returnAnswerPlan).isEmpty)\n  }\n\n  test(\"getTopMostProjectNodeWithAliasedCasts should return Project with Aliased Cast child\") {\n    when(directBigQueryRelationMock.schema).thenReturn(StructType.apply(Seq()))\n    when(directBigQueryRelationMock.getTableName).thenReturn(\"MY_BIGQUERY_TABLE\")\n\n    val logicalRelation = LogicalRelation(directBigQueryRelationMock)\n\n    val aggregateExpression = Alias.apply(AggregateExpression.apply(Count.apply(schoolIdAttributeReference), Complete, isDistinct = false), \"COUNT\")()\n    val aggregatePlan = Aggregate(Seq(schoolNameAttributeReference), Seq(aggregateExpression), logicalRelation)\n\n    val projectList = Seq(schoolNameAttributeReference, Alias(schoolNameAttributeReference, \"school-name\")(), Alias(Cast(schoolIdAttributeReference, StringType), \"id\")())\n    val projectPlan = Project(projectList, aggregatePlan)\n    val returnAnswerPlan = ReturnAnswer(projectPlan)\n\n    val bigQueryStrategy = new BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactoryMock) {\n      override def generateQueryFromPlanForDataSourceV2(plan: LogicalPlan): Option[BigQuerySQLQuery] = None\n\n      override def createUnionQuery(children: Seq[LogicalPlan]): Option[BigQuerySQLQuery] = None\n    }\n\n    val projectNode = bigQueryStrategy.getTopMostProjectNodeWithAliasedCasts(returnAnswerPlan)\n    assert(projectNode.isDefined)\n    assert(projectNode.get.fastEquals(projectPlan))\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/pushdown_common_src/test/scala/com/google/cloud/spark/bigquery/pushdowns/CastExpressionExtractorSuite.scala",
    "content": "package com.google.cloud.spark.bigquery.pushdowns\n\nimport com.google.cloud.spark.bigquery.pushdowns.TestConstants.schoolIdAttributeReference\nimport org.apache.spark.sql.catalyst.expressions.{Alias, Cast}\nimport org.apache.spark.sql.types.StringType\nimport org.scalatest.funsuite.AnyFunSuite\n\nclass CastExpressionExtractorSuite extends AnyFunSuite {\n\n  test(\"unapply\") {\n    val castExpression = Cast(schoolIdAttributeReference, StringType)\n    val returnedExpression = CastExpressionExtractor.unapply(castExpression)\n    assert(returnedExpression.isDefined)\n    assert(returnedExpression.get.fastEquals(castExpression))\n\n    val aliasExpression = Alias(schoolIdAttributeReference, \"school-id\")()\n    val returnedOption = CastExpressionExtractor.unapply(aliasExpression)\n    assert(returnedOption.isEmpty)\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/pushdown_common_src/test/scala/com/google/cloud/spark/bigquery/pushdowns/FilterQuerySuite.scala",
    "content": "package com.google.cloud.spark.bigquery.pushdowns\n\nimport com.google.cloud.spark.bigquery.pushdowns.TestConstants._\nimport org.apache.spark.sql.catalyst.expressions.{GreaterThanOrEqual, LessThanOrEqual, Literal}\nimport org.scalatest.funsuite.AnyFunSuite\n\nclass FilterQuerySuite extends AnyFunSuite {\n\n  private val sourceQuery = SourceQuery(expressionConverter, expressionFactory, bigQueryRDDFactoryMock, TABLE_NAME, Seq(schoolIdAttributeReference, schoolNameAttributeReference), SUBQUERY_0_ALIAS)\n\n  private val greaterThanFilterCondition = GreaterThanOrEqual.apply(schoolIdAttributeReference, Literal(50))\n  private val lessThanFilterCondition = LessThanOrEqual.apply(schoolIdAttributeReference, Literal(100))\n  private val filterQuery = FilterQuery(expressionConverter, expressionFactory, Seq(greaterThanFilterCondition, lessThanFilterCondition), sourceQuery, SUBQUERY_1_ALIAS)\n\n  test(\"sourceStatement\") {\n    assert(filterQuery.sourceStatement.toString == \"( SELECT * FROM `test_project:test_dataset.test_table` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_0\")\n  }\n\n  test(\"suffixStatement\") {\n    assert(filterQuery.suffixStatement.toString == \"WHERE ( SUBQUERY_0.SCHOOLID >= 50 ) AND ( SUBQUERY_0.SCHOOLID <= 100 )\")\n  }\n\n  test(\"columnSet\") {\n    assert(filterQuery.columnSet.size == 2)\n    assert(filterQuery.columnSet == Seq(schoolIdAttributeReference.withQualifier(Seq(SUBQUERY_0_ALIAS)),\n      schoolNameAttributeReference.withQualifier(Seq(SUBQUERY_0_ALIAS))))\n  }\n\n  test(\"processedProjections\") {\n    assert(filterQuery.processedProjections.isEmpty)\n  }\n\n  test(\"columns\") {\n    assert(filterQuery.columns.isEmpty)\n  }\n\n  test(\"output\") {\n    assert(filterQuery.output.size == 2)\n    assert(filterQuery.output == Seq(schoolIdAttributeReference, schoolNameAttributeReference))\n  }\n\n  test(\"outputWithQualifier\") {\n    assert(filterQuery.outputWithQualifier.size == 2)\n    assert(filterQuery.outputWithQualifier == Seq(schoolIdAttributeReference.withQualifier(Seq(SUBQUERY_1_ALIAS)),\n      schoolNameAttributeReference.withQualifier(Seq(SUBQUERY_1_ALIAS))))\n  }\n\n  test(\"nullableOutputWithQualifier\") {\n    val nullableOutputWithQualifier = filterQuery.nullableOutputWithQualifier\n    assert(nullableOutputWithQualifier.size == 2)\n    assert(nullableOutputWithQualifier == Seq(schoolIdAttributeReference.withQualifier(Seq(SUBQUERY_1_ALIAS)).withNullability(true),\n      schoolNameAttributeReference.withQualifier(Seq(SUBQUERY_1_ALIAS)).withNullability(true)))\n  }\n\n  test(\"getStatement\") {\n    assert(filterQuery.getStatement().toString == \"SELECT * FROM ( SELECT * FROM `test_project:test_dataset.test_table` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_0 \" +\n      \"WHERE ( SUBQUERY_0.SCHOOLID >= 50 ) AND ( SUBQUERY_0.SCHOOLID <= 100 )\")\n  }\n\n  test(\"getStatement with alias\") {\n    assert(filterQuery.getStatement(useAlias = true).toString == \"( SELECT * FROM ( SELECT * FROM `test_project:test_dataset.test_table` AS BQ_CONNECTOR_QUERY_ALIAS ) \" +\n      \"AS SUBQUERY_0 WHERE ( SUBQUERY_0.SCHOOLID >= 50 ) AND ( SUBQUERY_0.SCHOOLID <= 100 ) ) AS SUBQUERY_1\")\n  }\n\n  test(\"find\") {\n    val returnedQuery = filterQuery.find({ case q: SourceQuery => q })\n    assert(returnedQuery.isDefined)\n    assert(returnedQuery.get == sourceQuery)\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/pushdown_common_src/test/scala/com/google/cloud/spark/bigquery/pushdowns/JoinQuerySuite.scala",
    "content": "package com.google.cloud.spark.bigquery.pushdowns\n\nimport com.google.cloud.spark.bigquery.pushdowns.TestConstants.{SUBQUERY_0_ALIAS, SUBQUERY_1_ALIAS, SUBQUERY_2_ALIAS, bigQueryRDDFactoryMock, expressionConverter, expressionFactory, schoolIdAttributeReference}\nimport org.apache.spark.sql.catalyst.expressions.{AttributeReference, EqualTo, ExprId, GreaterThanOrEqual, Literal}\nimport org.apache.spark.sql.catalyst.plans.JoinType\nimport org.apache.spark.sql.types.{LongType, StringType}\nimport org.scalatest.funsuite.AnyFunSuite\n\nclass JoinQuerySuite extends AnyFunSuite {\n  // Two tables on which we want to join\n  val SCHOOL_TABLE_NAME = \"test_project:test_dataset.school\"\n  val STUDENT_TABLE_NAME = \"test_project:test_dataset.student\"\n\n  // studentName and schoolName are two columns in the student table and school table respectively\n  val studentNameAttributeReference: AttributeReference = AttributeReference.apply(\"StudentName\", StringType)(ExprId.apply(2))\n  val schoolNameAttributeReference: AttributeReference = AttributeReference.apply(\"SchoolName\", StringType)(ExprId.apply(3))\n\n  // Consider that we are joining on the column SchoolID in the school table with _SchoolID in the student table\n  val _schoolIdAttributeReference: AttributeReference = AttributeReference.apply(\"_SchoolID\", LongType)(ExprId.apply(4))\n  private val joinExpression = EqualTo(schoolIdAttributeReference, _schoolIdAttributeReference)\n\n  // Left query of the join\n  private val leftSourceQuery = SourceQuery(expressionConverter, expressionFactory, bigQueryRDDFactoryMock, SCHOOL_TABLE_NAME, Seq(schoolIdAttributeReference, schoolNameAttributeReference), SUBQUERY_0_ALIAS)\n  private val greaterThanFilterCondition = GreaterThanOrEqual.apply(schoolIdAttributeReference, Literal(50))\n  private val filterQuery = FilterQuery(expressionConverter, expressionFactory, Seq(greaterThanFilterCondition), leftSourceQuery, SUBQUERY_1_ALIAS)\n\n  // Right query of the join\n  private val rightSourceQuery = SourceQuery(expressionConverter, expressionFactory, bigQueryRDDFactoryMock, STUDENT_TABLE_NAME, Seq(_schoolIdAttributeReference, studentNameAttributeReference), SUBQUERY_2_ALIAS)\n\n  test(\"find\") {\n    val joinQuery = JoinQuery(expressionConverter, expressionFactory, filterQuery, rightSourceQuery, Option.apply(joinExpression), JoinType.apply(\"inner\"), \"SUBQUERY_3\")\n    val returnedQuery = joinQuery.find({ case q: SourceQuery => q })\n    assert(returnedQuery.isDefined)\n    assert(returnedQuery.get == leftSourceQuery)\n  }\n\n  test(\"suffixStatement\") {\n    val joinQuery = JoinQuery(expressionConverter, expressionFactory, filterQuery, rightSourceQuery, Option.apply(joinExpression), JoinType.apply(\"inner\"), \"SUBQUERY_3\")\n    assert(joinQuery.suffixStatement.toString == \"ON ( SUBQUERY_1.SCHOOLID = SUBQUERY_2._SCHOOLID )\")\n  }\n\n  // Even though these statements look like a scary wall of text we are basically\n  // selecting schoolId, schoolName, _schoolId and studentName from the two tables\n  test(\"getStatement with INNER JOIN\") {\n    val joinQuery = JoinQuery(expressionConverter, expressionFactory, leftSourceQuery, rightSourceQuery, Option.apply(joinExpression), JoinType.apply(\"inner\"), \"SUBQUERY_3\")\n    assert(joinQuery.getStatement().toString == \"SELECT ( SUBQUERY_0.SCHOOLID ) AS SUBQUERY_3_COL_0 , ( SUBQUERY_0.SCHOOLNAME ) AS SUBQUERY_3_COL_1 , \" +\n      \"( SUBQUERY_2._SCHOOLID ) AS SUBQUERY_3_COL_2 , ( SUBQUERY_2.STUDENTNAME ) AS SUBQUERY_3_COL_3 FROM \" +\n      \"( SELECT * FROM `test_project:test_dataset.school` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_0 INNER JOIN \" +\n      \"( SELECT * FROM `test_project:test_dataset.student` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_2 ON ( SUBQUERY_0.SCHOOLID = SUBQUERY_2._SCHOOLID )\")\n  }\n\n  test(\"getStatement with LEFT OUTER JOIN\") {\n    val joinQuery = JoinQuery(expressionConverter, expressionFactory, leftSourceQuery, rightSourceQuery, Option.apply(joinExpression), JoinType.apply(\"leftouter\"), \"SUBQUERY_3\")\n    assert(joinQuery.getStatement().toString == \"SELECT ( SUBQUERY_0.SCHOOLID ) AS SUBQUERY_3_COL_0 , ( SUBQUERY_0.SCHOOLNAME ) AS SUBQUERY_3_COL_1 , \" +\n      \"( SUBQUERY_2._SCHOOLID ) AS SUBQUERY_3_COL_2 , ( SUBQUERY_2.STUDENTNAME ) AS SUBQUERY_3_COL_3 FROM \" +\n      \"( SELECT * FROM `test_project:test_dataset.school` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_0 LEFT OUTER JOIN \" +\n      \"( SELECT * FROM `test_project:test_dataset.student` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_2 ON ( SUBQUERY_0.SCHOOLID = SUBQUERY_2._SCHOOLID )\")\n  }\n\n  test(\"getStatement with RIGHT OUTER JOIN\") {\n    val joinQuery = JoinQuery(expressionConverter, expressionFactory, leftSourceQuery, rightSourceQuery, Option.apply(joinExpression), JoinType.apply(\"rightouter\"), \"SUBQUERY_3\")\n    assert(joinQuery.getStatement().toString == \"SELECT ( SUBQUERY_0.SCHOOLID ) AS SUBQUERY_3_COL_0 , ( SUBQUERY_0.SCHOOLNAME ) AS SUBQUERY_3_COL_1 , \" +\n      \"( SUBQUERY_2._SCHOOLID ) AS SUBQUERY_3_COL_2 , ( SUBQUERY_2.STUDENTNAME ) AS SUBQUERY_3_COL_3 FROM \" +\n      \"( SELECT * FROM `test_project:test_dataset.school` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_0 RIGHT OUTER JOIN \" +\n      \"( SELECT * FROM `test_project:test_dataset.student` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_2 ON ( SUBQUERY_0.SCHOOLID = SUBQUERY_2._SCHOOLID )\")\n  }\n\n  test(\"getStatement with FULL OUTER JOIN\") {\n    val joinQuery = JoinQuery(expressionConverter, expressionFactory, leftSourceQuery, rightSourceQuery, Option.apply(joinExpression), JoinType.apply(\"fullouter\"), \"SUBQUERY_3\")\n    assert(joinQuery.getStatement().toString == \"SELECT ( SUBQUERY_0.SCHOOLID ) AS SUBQUERY_3_COL_0 , ( SUBQUERY_0.SCHOOLNAME ) AS SUBQUERY_3_COL_1 , \" +\n      \"( SUBQUERY_2._SCHOOLID ) AS SUBQUERY_3_COL_2 , ( SUBQUERY_2.STUDENTNAME ) AS SUBQUERY_3_COL_3 FROM \" +\n      \"( SELECT * FROM `test_project:test_dataset.school` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_0 FULL OUTER JOIN \" +\n      \"( SELECT * FROM `test_project:test_dataset.student` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_2 ON ( SUBQUERY_0.SCHOOLID = SUBQUERY_2._SCHOOLID )\")\n  }\n\n  test(\"getStatement with CROSS JOIN\") {\n    val joinQuery = JoinQuery(expressionConverter, expressionFactory, leftSourceQuery, rightSourceQuery, Option.apply(joinExpression), JoinType.apply(\"cross\"), \"SUBQUERY_3\")\n    assert(joinQuery.getStatement().toString == \"SELECT ( SUBQUERY_0.SCHOOLID ) AS SUBQUERY_3_COL_0 , ( SUBQUERY_0.SCHOOLNAME ) AS SUBQUERY_3_COL_1 , \" +\n      \"( SUBQUERY_2._SCHOOLID ) AS SUBQUERY_3_COL_2 , ( SUBQUERY_2.STUDENTNAME ) AS SUBQUERY_3_COL_3 FROM \" +\n      \"( SELECT * FROM `test_project:test_dataset.school` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_0 CROSS JOIN \" +\n      \"( SELECT * FROM `test_project:test_dataset.student` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_2 ON ( SUBQUERY_0.SCHOOLID = SUBQUERY_2._SCHOOLID )\")\n  }\n\n  test(\"getStatement with LEFT SEMI JOIN\") {\n    val alias = Iterator.from(0).map(n => s\"SUBQUERY_$n\")\n    val joinQuery = LeftSemiJoinQuery(expressionConverter, expressionFactory, leftSourceQuery, rightSourceQuery, Option.apply(joinExpression), isAntiJoin = false, alias)\n    assert(joinQuery.getStatement().toString == \"SELECT ( SUBQUERY_0.SCHOOLID ) AS SUBQUERY_0_COL_0 , ( SUBQUERY_0.SCHOOLNAME ) AS SUBQUERY_0_COL_1 FROM \" +\n      \"( SELECT * FROM `test_project:test_dataset.school` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_0 WHERE  EXISTS \" +\n      \"( SELECT * FROM ( SELECT * FROM `test_project:test_dataset.student` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_2 WHERE \" +\n      \"( SUBQUERY_0.SCHOOLID = SUBQUERY_2._SCHOOLID ) )\")\n  }\n\n  test(\"getStatement with LEFT ANTI JOIN\") {\n    val alias = Iterator.from(0).map(n => s\"SUBQUERY_$n\")\n    val joinQuery = LeftSemiJoinQuery(expressionConverter, expressionFactory, leftSourceQuery, rightSourceQuery, Option.apply(joinExpression), isAntiJoin = true, alias)\n    assert(joinQuery.getStatement().toString == \"SELECT ( SUBQUERY_0.SCHOOLID ) AS SUBQUERY_0_COL_0 , ( SUBQUERY_0.SCHOOLNAME ) AS SUBQUERY_0_COL_1 FROM \" +\n      \"( SELECT * FROM `test_project:test_dataset.school` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_0 WHERE  NOT EXISTS \" +\n      \"( SELECT * FROM ( SELECT * FROM `test_project:test_dataset.student` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_2 WHERE \" +\n      \"( SUBQUERY_0.SCHOOLID = SUBQUERY_2._SCHOOLID ) )\")\n  }\n\n  test(\"find for left semi join\") {\n    val alias = Iterator.from(0).map(n => s\"SUBQUERY_$n\")\n    val joinQuery = LeftSemiJoinQuery(expressionConverter, expressionFactory, leftSourceQuery, rightSourceQuery, Option.apply(joinExpression), isAntiJoin = true, alias)\n    val returnedQuery = joinQuery.find({ case q: SourceQuery => q })\n    assert(returnedQuery.isDefined)\n    assert(returnedQuery.get == leftSourceQuery)\n  }\n\n  test(\"suffixStatement for left semi join\") {\n    val alias = Iterator.from(0).map(n => s\"SUBQUERY_$n\")\n    val joinQuery = LeftSemiJoinQuery(expressionConverter, expressionFactory, leftSourceQuery, rightSourceQuery, Option.apply(joinExpression), isAntiJoin = false, alias)\n    assert(joinQuery.suffixStatement.toString == \"WHERE  EXISTS \" +\n      \"( SELECT * FROM ( SELECT * FROM `test_project:test_dataset.student` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_2 WHERE \" +\n      \"( SUBQUERY_0.SCHOOLID = SUBQUERY_2._SCHOOLID ) )\")\n  }\n\n  test(\"suffixStatement for left anti join\") {\n    val alias = Iterator.from(0).map(n => s\"SUBQUERY_$n\")\n    val joinQuery = LeftSemiJoinQuery(expressionConverter, expressionFactory, leftSourceQuery, rightSourceQuery, Option.apply(joinExpression), isAntiJoin = true, alias)\n    assert(joinQuery.suffixStatement.toString == \"WHERE  NOT EXISTS \" +\n      \"( SELECT * FROM ( SELECT * FROM `test_project:test_dataset.student` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_2 WHERE \" +\n      \"( SUBQUERY_0.SCHOOLID = SUBQUERY_2._SCHOOLID ) )\")\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/pushdown_common_src/test/scala/com/google/cloud/spark/bigquery/pushdowns/ProjectQuerySuite.scala",
    "content": "package com.google.cloud.spark.bigquery.pushdowns\n\nimport com.google.cloud.spark.bigquery.pushdowns.TestConstants._\nimport org.apache.spark.sql.catalyst.expressions.{Alias, GreaterThanOrEqual, LessThanOrEqual, Literal}\nimport org.scalatest.funsuite.AnyFunSuite\n\nclass ProjectQuerySuite extends AnyFunSuite{\n\n  private val sourceQuery = SourceQuery(expressionConverter, expressionFactory, bigQueryRDDFactoryMock, TABLE_NAME, Seq(schoolIdAttributeReference, schoolNameAttributeReference), SUBQUERY_0_ALIAS)\n\n  // Conditions for filter query (> 50 AND < 100)\n  private val greaterThanFilterCondition = GreaterThanOrEqual.apply(schoolIdAttributeReference, Literal(50))\n  private val lessThanFilterCondition = LessThanOrEqual.apply(schoolIdAttributeReference, Literal(100))\n  private val filterQuery = FilterQuery(expressionConverter, expressionFactory, Seq(greaterThanFilterCondition, lessThanFilterCondition), sourceQuery, SUBQUERY_1_ALIAS)\n\n  // Projecting the column SchoolId\n  private val projectQuery = ProjectQuery(expressionConverter, expressionFactory, Seq(schoolIdAttributeReference), filterQuery, SUBQUERY_2_ALIAS)\n\n  test(\"sourceStatement\") {\n    assert(projectQuery.sourceStatement.toString == \"( SELECT * FROM ( SELECT * FROM `test_project:test_dataset.test_table` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_0 \" +\n      \"WHERE ( SUBQUERY_0.SCHOOLID >= 50 ) AND ( SUBQUERY_0.SCHOOLID <= 100 ) ) AS SUBQUERY_1\")\n  }\n\n  test(\"suffixStatement\") {\n    assert(projectQuery.suffixStatement.isEmpty)\n  }\n\n  test(\"columnSet\") {\n    assert(projectQuery.columnSet.size == 2)\n    assert(projectQuery.columnSet == Seq(schoolIdAttributeReference.withQualifier(Seq(SUBQUERY_1_ALIAS)),\n      schoolNameAttributeReference.withQualifier(Seq(SUBQUERY_1_ALIAS))))\n  }\n\n  test(\"processedProjections\") {\n    assert(projectQuery.processedProjections.isDefined)\n    assert(projectQuery.processedProjections.get == Seq(Alias(schoolIdAttributeReference, SUBQUERY_2_ALIAS + \"_COL_0\")(schoolIdAttributeReference.exprId,\n      schoolIdAttributeReference.qualifier, Some(schoolIdAttributeReference.metadata))))\n  }\n\n  test(\"columns\") {\n    assert(projectQuery.columns.isDefined)\n    assert(projectQuery.columns.get.toString == \"( SUBQUERY_1.SCHOOLID ) AS SUBQUERY_2_COL_0\")\n  }\n\n  test(\"output\") {\n    assert(projectQuery.output.size == 1)\n    assert(projectQuery.output == Seq(schoolIdAttributeReference.withName(\"SUBQUERY_2_COL_0\")))\n  }\n\n  test(\"outputWithQualifier\") {\n    assert(projectQuery.outputWithQualifier.size == 1)\n    assert(projectQuery.outputWithQualifier == Seq(schoolIdAttributeReference.withName(SUBQUERY_2_ALIAS + \"_COL_0\").withQualifier(Seq(SUBQUERY_2_ALIAS))))\n  }\n\n  test(\"nullableOutputWithQualifier\") {\n    val nullableOutputWithQualifier = projectQuery.nullableOutputWithQualifier\n    assert(nullableOutputWithQualifier.size == 1)\n    assert(nullableOutputWithQualifier == Seq(schoolIdAttributeReference.withName(SUBQUERY_2_ALIAS + \"_COL_0\").withQualifier(Seq(SUBQUERY_2_ALIAS)).withNullability(true)))\n  }\n\n  test(\"getStatement\") {\n    assert(projectQuery.getStatement().toString == \"SELECT ( SUBQUERY_1.SCHOOLID ) AS SUBQUERY_2_COL_0 FROM \" +\n      \"( SELECT * FROM ( SELECT * FROM `test_project:test_dataset.test_table` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_0 \" +\n      \"WHERE ( SUBQUERY_0.SCHOOLID >= 50 ) AND ( SUBQUERY_0.SCHOOLID <= 100 ) ) AS SUBQUERY_1\")\n  }\n\n  test(\"getStatement with alias\") {\n    assert(projectQuery.getStatement(useAlias = true).toString == \"( SELECT ( SUBQUERY_1.SCHOOLID ) AS SUBQUERY_2_COL_0 FROM \" +\n      \"( SELECT * FROM ( SELECT * FROM `test_project:test_dataset.test_table` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_0 \" +\n      \"WHERE ( SUBQUERY_0.SCHOOLID >= 50 ) AND ( SUBQUERY_0.SCHOOLID <= 100 ) ) AS SUBQUERY_1 ) AS SUBQUERY_2\")\n  }\n\n  test(\"find\") {\n    val returnedQuery = projectQuery.find({ case q: SourceQuery => q })\n    assert(returnedQuery.isDefined)\n    assert(returnedQuery.get == sourceQuery)\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/pushdown_common_src/test/scala/com/google/cloud/spark/bigquery/pushdowns/SortLimitQuerySuite.scala",
    "content": "package com.google.cloud.spark.bigquery.pushdowns\n\nimport com.google.cloud.spark.bigquery.pushdowns.TestConstants.{SUBQUERY_0_ALIAS, SUBQUERY_1_ALIAS, TABLE_NAME, bigQueryRDDFactoryMock, expressionConverter, expressionFactory, schoolIdAttributeReference, schoolNameAttributeReference}\nimport org.apache.spark.sql.catalyst.expressions.{Ascending, Literal, SortOrder}\nimport org.scalatest.funsuite.AnyFunSuite\n\n// Testing only the suffixStatement here since it is the only variable that is\n// different from the other queries.\nclass SortLimitQuerySuite extends AnyFunSuite{\n  private val sourceQuery = SourceQuery(expressionConverter, expressionFactory, bigQueryRDDFactoryMock, TABLE_NAME, Seq(schoolIdAttributeReference, schoolNameAttributeReference), SUBQUERY_0_ALIAS)\n\n  test(\"suffixStatement with only limit\") {\n    val sortLimitQuery = SortLimitQuery(expressionConverter, expressionFactory, Some(Literal(10)), Seq(), sourceQuery, SUBQUERY_1_ALIAS)\n    assert(sortLimitQuery.suffixStatement.toString == \"LIMIT 10\")\n  }\n\n  test(\"suffixStatement with only orderBy\") {\n    val sortOrder = SortOrder.apply(schoolIdAttributeReference, Ascending)\n    val sortLimitQuery = SortLimitQuery(expressionConverter, expressionFactory, None, Seq(sortOrder), sourceQuery, SUBQUERY_1_ALIAS)\n    assert(sortLimitQuery.suffixStatement.toString == \"ORDER BY ( SUBQUERY_0.SCHOOLID ) ASC\")\n  }\n\n  test(\"suffixStatement with both orderBy and limit\") {\n    val sortOrder = SortOrder.apply(schoolIdAttributeReference, Ascending)\n    val sortLimitQuery = SortLimitQuery(expressionConverter, expressionFactory, Some(Literal(10)), Seq(sortOrder), sourceQuery, SUBQUERY_1_ALIAS)\n    assert(sortLimitQuery.suffixStatement.toString == \"ORDER BY ( SUBQUERY_0.SCHOOLID ) ASC LIMIT 10\")\n  }\n\n  test(\"find\") {\n    val sortOrder = SortOrder.apply(schoolIdAttributeReference, Ascending)\n    val sortLimitQuery = SortLimitQuery(expressionConverter, expressionFactory, Some(Literal(10)), Seq(sortOrder), sourceQuery, SUBQUERY_1_ALIAS)\n    val returnedQuery = sortLimitQuery.find({ case q: SourceQuery => q })\n    assert(returnedQuery.isDefined)\n    assert(returnedQuery.get == sourceQuery)\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/pushdown_common_src/test/scala/com/google/cloud/spark/bigquery/pushdowns/SourceQuerySuite.scala",
    "content": "package com.google.cloud.spark.bigquery.pushdowns\n\nimport com.google.cloud.spark.bigquery.pushdowns.TestConstants._\nimport org.scalatest.funsuite.AnyFunSuite\n\nclass SourceQuerySuite extends AnyFunSuite{\n\n  private val sourceQuery = SourceQuery(expressionConverter, expressionFactory, bigQueryRDDFactoryMock, TABLE_NAME, Seq(schoolIdAttributeReference, schoolNameAttributeReference), SUBQUERY_0_ALIAS)\n\n  test(\"sourceStatement\") {\n    assert(sourceQuery.sourceStatement.toString == \"`test_project:test_dataset.test_table` AS BQ_CONNECTOR_QUERY_ALIAS\")\n  }\n\n  test(\"suffixStatement\") {\n    assert(sourceQuery.suffixStatement.toString.isEmpty)\n  }\n\n  test(\"columnSet\") {\n    assert(sourceQuery.columnSet.isEmpty)\n  }\n\n  test(\"processedProjections\") {\n    assert(sourceQuery.processedProjections.isEmpty)\n  }\n\n  test(\"columns\") {\n    assert(sourceQuery.columns.isEmpty)\n  }\n\n  test(\"output\") {\n    assert(sourceQuery.output.size == 2)\n    assert(sourceQuery.output == Seq(schoolIdAttributeReference, schoolNameAttributeReference))\n  }\n\n  test(\"outputWithQualifier\") {\n    assert(sourceQuery.outputWithQualifier.size == 2)\n    assert(sourceQuery.outputWithQualifier == Seq(schoolIdAttributeReference.withQualifier(Seq(SUBQUERY_0_ALIAS)),\n      schoolNameAttributeReference.withQualifier(Seq(SUBQUERY_0_ALIAS))))\n  }\n\n  test(\"nullableOutputWithQualifier\") {\n    val nullableOutputWithQualifier = sourceQuery.nullableOutputWithQualifier\n    assert(nullableOutputWithQualifier.size == 2)\n    assert(nullableOutputWithQualifier == Seq(schoolIdAttributeReference.withQualifier(Seq(SUBQUERY_0_ALIAS)).withNullability(true),\n      schoolNameAttributeReference.withQualifier(Seq(SUBQUERY_0_ALIAS)).withNullability(true)))\n  }\n\n  test(\"getStatement\") {\n    assert(sourceQuery.getStatement().toString == \"SELECT * FROM `test_project:test_dataset.test_table` AS BQ_CONNECTOR_QUERY_ALIAS\")\n  }\n\n  test(\"getStatement with alias\") {\n    assert(sourceQuery.getStatement(useAlias = true).toString == \"( SELECT * FROM `test_project:test_dataset.test_table` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_0\")\n  }\n\n  test(\"getStatement with pushdownFilter set\") {\n    val sourceQueryWithPushdownFilter = SourceQuery(expressionConverter, expressionFactory, bigQueryRDDFactoryMock, TABLE_NAME,\n      Seq(schoolIdAttributeReference, schoolNameAttributeReference), SUBQUERY_0_ALIAS, Option.apply(\"studentId = 1 AND studentName = Foo\"))\n    assert(sourceQueryWithPushdownFilter.getStatement().toString == \"SELECT * FROM \" +\n      \"`test_project:test_dataset.test_table` AS BQ_CONNECTOR_QUERY_ALIAS WHERE studentId = 1 AND studentName = Foo\")\n  }\n\n  test(\"find\") {\n    val returnedQuery = sourceQuery.find({ case q: SourceQuery => q })\n    assert(returnedQuery.isDefined)\n    assert(returnedQuery.get == sourceQuery)\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/pushdown_common_src/test/scala/com/google/cloud/spark/bigquery/pushdowns/SparkBigQueryPushdownUtilSuite.scala",
    "content": "package com.google.cloud.spark.bigquery.pushdowns\n\nimport com.google.cloud.spark.bigquery.direct.DirectBigQueryRelation\nimport com.google.cloud.spark.bigquery.pushdowns.TestConstants.{expressionFactory, schoolIdAttributeReference, schoolNameAttributeReference}\nimport org.apache.spark.sql.catalyst.expressions.{Alias, Ascending, AttributeReference, Cast, EqualTo, ExprId, Literal, NamedExpression, SortOrder}\nimport org.apache.spark.sql.catalyst.plans.logical.{Filter, Limit, LocalLimit, Project, Sort}\nimport org.apache.spark.sql.execution.datasources.LogicalRelation\nimport org.apache.spark.sql.types.{FloatType, IntegerType, LongType, StringType, StructType}\nimport org.mockito.Mockito.when\nimport org.mockito.{Mock, MockitoAnnotations}\nimport org.scalatest.BeforeAndAfter\nimport org.scalatest.funsuite.AnyFunSuite\n\nclass SparkBigQueryPushdownUtilSuite extends AnyFunSuite with BeforeAndAfter {\n  @Mock\n  private var directBigQueryRelationMock: DirectBigQueryRelation = _\n\n  before {\n    MockitoAnnotations.initMocks(this)\n  }\n\n  test(\"blockStatement with EmptyBigQuerySQLStatement\") {\n    val bigQuerySQLStatement = EmptyBigQuerySQLStatement.apply()\n    val returnedStatement = SparkBigQueryPushdownUtil.blockStatement(bigQuerySQLStatement)\n    assert(\"( )\" == returnedStatement.toString)\n  }\n\n  test(\"blockStatement with BigQuerySQLStatement\") {\n    val bigQuerySQLStatement = ConstantString(\"Address\") + \"IS NOT NULL\"\n    val returnedStatement = SparkBigQueryPushdownUtil.blockStatement(bigQuerySQLStatement)\n    assert(\"( Address IS NOT NULL )\" == returnedStatement.toString)\n  }\n\n  test(\"blockStatement with alias\") {\n    val bigQuerySQLStatement = ConstantString(\"`bigquery-public-data.samples.shakespeare`\").toStatement\n    val returnedStatement = SparkBigQueryPushdownUtil.blockStatement(bigQuerySQLStatement, \"bq_connector_query_alias\")\n    assert(\"( `bigquery-public-data.samples.shakespeare` ) AS BQ_CONNECTOR_QUERY_ALIAS\" == returnedStatement.toString)\n  }\n\n  test(\"makeStatement\") {\n    val bigQuerySQLStatement1 = ConstantString(\"Name\").toStatement\n    val bigQuerySQLStatement2 = ConstantString(\"Address\").toStatement\n    val bigQuerySQLStatement3 = ConstantString(\"Email\").toStatement\n    val returnedStatement = SparkBigQueryPushdownUtil.makeStatement(List(bigQuerySQLStatement1, bigQuerySQLStatement2, bigQuerySQLStatement3), \",\")\n    assert(\"Name , Address , Email\" == returnedStatement.toString)\n  }\n\n  test(\"addAttributeStatement with field match\") {\n    // Field match will occur on ExprId\n    val attr = AttributeReference.apply(\"SchoolID\", LongType)(ExprId.apply(1))\n    val fields = List(AttributeReference.apply(\"SUBQUERY_2_COL_0\", LongType)(ExprId.apply(1), List(\"SUBQUERY_2\")),\n      AttributeReference.apply(\"SUBQUERY_3_COL_1\", LongType)(ExprId.apply(2), List(\"SUBQUERY_3\")))\n    val returnedStatement = SparkBigQueryPushdownUtil.addAttributeStatement(attr, fields)\n    assert(\"SUBQUERY_2.SUBQUERY_2_COL_0\" == returnedStatement.toString)\n  }\n\n  test(\"addAttributeStatement without field match\") {\n    // Field match will not occur since ExprId are different between attr and fields\n    val attr = AttributeReference.apply(\"SchoolID\", LongType)(ExprId.apply(1))\n    val fields = List(AttributeReference.apply(\"SUBQUERY_2_COL_0\", LongType)(ExprId.apply(2), List(\"SUBQUERY_2\")),\n      AttributeReference.apply(\"SUBQUERY_3_COL_1\", LongType)(ExprId.apply(3), List(\"SUBQUERY_3\")))\n    val returnedStatement = SparkBigQueryPushdownUtil.addAttributeStatement(attr, fields)\n    assert(\"SCHOOLID\" == returnedStatement.toString)\n  }\n\n  test(\"renameColumns\") {\n    val namedExpr1 = AttributeReference.apply(\"SchoolID\", LongType)(ExprId.apply(1))\n    val namedExpr2 = Alias.apply(namedExpr1, \"SID\")(ExprId.apply(2))\n    val returnedExpressions = SparkBigQueryPushdownUtil.renameColumns(List(namedExpr1, namedExpr2), \"SUBQUERY_2\", expressionFactory)\n    assert(2 == returnedExpressions.size)\n    assert(\"SUBQUERY_2_COL_0\" == returnedExpressions.head.name)\n    assert(namedExpr1.exprId == returnedExpressions.head.exprId)\n    assert(\"SUBQUERY_2_COL_1\" == returnedExpressions(1).name)\n    assert(namedExpr2.exprId == returnedExpressions(1).exprId)\n  }\n\n  test(\"removeNodeFromPlan\") {\n    when(directBigQueryRelationMock.schema).thenReturn(StructType.apply(Seq()))\n    when(directBigQueryRelationMock.getTableName).thenReturn(\"MY_BIGQUERY_TABLE\")\n\n    val logicalRelation = LogicalRelation(directBigQueryRelationMock)\n\n    val filterPlan = Filter(EqualTo.apply(schoolIdAttributeReference, Literal(1234L)), logicalRelation)\n    val projectPlan = Project(Seq(schoolNameAttributeReference), filterPlan)\n    val sortPlan = Sort(Seq(SortOrder.apply(schoolIdAttributeReference, Ascending)), global = true, projectPlan)\n    val limitPlan = Limit(Literal(10), sortPlan)\n\n    val planWithProjectNodeRemoved = SparkBigQueryPushdownUtil.removeProjectNodeFromPlan(limitPlan, projectPlan)\n\n    val expectedPlan = Limit(Literal(10),\n      Sort(Seq(SortOrder.apply(schoolIdAttributeReference, Ascending)), global = true,\n        Filter(EqualTo.apply(schoolIdAttributeReference, Literal(1234L)),\n          logicalRelation)))\n\n    assert(planWithProjectNodeRemoved.fastEquals(expectedPlan))\n  }\n\n  test(\"updateTheLogicalPlan\") {\n    when(directBigQueryRelationMock.schema).thenReturn(StructType.apply(Seq()))\n    when(directBigQueryRelationMock.getTableName).thenReturn(\"MY_BIGQUERY_TABLE\")\n\n    val logicalRelation = LogicalRelation(directBigQueryRelationMock)\n\n    val schoolIdAttributeReference: AttributeReference = AttributeReference.apply(\"SchoolID\", LongType)(ExprId.apply(0L))\n    val filterPlan = Filter(EqualTo.apply(schoolIdAttributeReference, Literal(1234L)), logicalRelation)\n    val projectPlan = Project(Seq(expressionFactory.createAlias(schoolIdAttributeReference, schoolIdAttributeReference.name, ExprId.apply(1L), Seq.empty, None)), filterPlan)\n    val limitPlan = Limit(Literal(10), projectPlan)\n\n    val planWithProjectNodeRemoved = SparkBigQueryPushdownUtil.addProjectNodeToThePlan(limitPlan, projectPlan, expressionFactory)\n\n    assert(planWithProjectNodeRemoved.children.size == 1)\n    assert(planWithProjectNodeRemoved.children(0).isInstanceOf[LocalLimit])\n\n    // Root node of the plan is of type LocalLimit with 1 child, newly added ProjectPlan\n    val actualLimitPlan = planWithProjectNodeRemoved.children(0)\n    assert(actualLimitPlan.children.size == 1)\n    assert(actualLimitPlan.children(0).isInstanceOf[Project])\n\n    // The newly added Project plan has list of NamedExpressions which are cast to string\n    val addedProjectPlan = actualLimitPlan.children(0).asInstanceOf[Project]\n    addedProjectPlan.projectList.foreach(node => assert(node.isInstanceOf[Alias]))\n    addedProjectPlan.projectList.foreach(node => assert(node.asInstanceOf[Alias].child.isInstanceOf[Cast]))\n    assert(addedProjectPlan.children.size == 1)\n    assert(addedProjectPlan.children(0).isInstanceOf[Project])\n\n    // The updated project plan where cast is removed from the project list (if there is any)\n    val updatedProjectPlan = addedProjectPlan.children(0).asInstanceOf[Project]\n    updatedProjectPlan.projectList.foreach(node => assert(node.isInstanceOf[Alias]))\n    updatedProjectPlan.projectList.foreach(node => assert(node.asInstanceOf[Alias].child.isInstanceOf[AttributeReference]))\n    assert(updatedProjectPlan.children.size == 1)\n\n    // the rest all plan should be the same\n    val actualFilterPlan = updatedProjectPlan.children(0)\n    assert(actualFilterPlan.fastEquals(filterPlan))\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/pushdown_common_src/test/scala/com/google/cloud/spark/bigquery/pushdowns/SparkExpressionConverterSuite.scala",
    "content": "package com.google.cloud.spark.bigquery.pushdowns\n\nimport com.google.cloud.bigquery.connector.common.BigQueryPushdownUnsupportedException\nimport com.google.cloud.spark.bigquery.direct.DirectBigQueryRelation\nimport com.google.cloud.spark.bigquery.pushdowns.TestConstants.expressionConverter\nimport org.apache.spark.sql.catalyst.expressions.aggregate._\nimport org.apache.spark.sql.catalyst.expressions.{Abs, Acos, Alias, And, Ascending, Ascii, Asin, Atan, AttributeReference, Base64, BitwiseAnd, BitwiseNot, BitwiseOr, BitwiseXor, CaseWhen, Cast, Coalesce, Concat, Contains, Cos, Cosh, DateAdd, DateSub, DenseRank, Descending, EndsWith, EqualNullSafe, EqualTo, Exp, ExprId, Floor, FormatNumber, FormatString, GreaterThan, GreaterThanOrEqual, Greatest, If, In, InSet, InitCap, IsNaN, IsNotNull, IsNull, Least, Length, LessThan, LessThanOrEqual, Literal, Log10, Logarithm, Lower, Month, Not, Or, PercentRank, Pi, Pow, PromotePrecision, Quarter, Rand, Rank, RegExpExtract, RegExpReplace, Round, RowNumber, ShiftLeft, ShiftRight, Signum, Sin, Sinh, SortOrder, SoundEx, Sqrt, StartsWith, StringInstr, StringLPad, StringRPad, StringTranslate, StringTrim, StringTrimLeft, StringTrimRight, Substring, Tan, Tanh, TruncDate, UnBase64, UnscaledValue, Upper, Year}\nimport org.apache.spark.sql.types._\nimport org.mockito.{Mock, MockitoAnnotations}\nimport org.scalatest.BeforeAndAfter\nimport org.scalatest.funsuite.AnyFunSuite\n\nclass SparkExpressionConverterSuite extends AnyFunSuite with BeforeAndAfter {\n  private val schoolIdAttributeReference = AttributeReference.apply(\"SchoolID\", LongType)(ExprId.apply(1))\n  private val schoolStartDateAttributeReference = AttributeReference.apply(\"StartDate\", DateType)(ExprId.apply(2))\n  private val fields = List(AttributeReference.apply(\"SchoolID\", LongType)(ExprId.apply(1), List(\"SUBQUERY_2\")))\n  @Mock\n  var directBigQueryRelationMock: DirectBigQueryRelation = _\n\n  before {\n    MockitoAnnotations.initMocks(this)\n  }\n\n  test(\"convertAggregateExpressions with COUNT\") {\n    val aggregateFunction = Count.apply(schoolIdAttributeReference)\n    val aggregateExpression = AggregateExpression.apply(aggregateFunction, Complete, isDistinct = false)\n    val bigQuerySQLStatement = expressionConverter.convertAggregateExpressions(aggregateExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"COUNT ( SUBQUERY_2.SCHOOLID )\")\n  }\n\n  test(\"convertAggregateExpressions with DISTINCT COUNT\") {\n    val aggregateFunction = Count.apply(schoolIdAttributeReference)\n    val aggregateExpression = AggregateExpression.apply(aggregateFunction, Complete, isDistinct = true)\n    val bigQuerySQLStatement = expressionConverter.convertAggregateExpressions(aggregateExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"COUNT ( DISTINCT SUBQUERY_2.SCHOOLID )\")\n  }\n\n  test(\"convertAggregateExpressions with AVERAGE\") {\n    val aggregateFunction = Average.apply(schoolIdAttributeReference)\n    val aggregateExpression = AggregateExpression.apply(aggregateFunction, Complete, isDistinct = false)\n    val bigQuerySQLStatement = expressionConverter.convertAggregateExpressions(aggregateExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"AVG ( SUBQUERY_2.SCHOOLID )\")\n  }\n\n  test(\"convertAggregateExpressions with CORR\") {\n    val aggregateFunction = Corr.apply(schoolIdAttributeReference, AttributeReference.apply(\"StudentID\", LongType)(ExprId.apply(2)))\n    val aggregateExpression = AggregateExpression.apply(aggregateFunction, Complete, isDistinct = false)\n    val bigQuerySQLStatement = expressionConverter.convertAggregateExpressions(aggregateExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"CORR ( SUBQUERY_2.SCHOOLID , STUDENTID )\")\n  }\n\n  test(\"convertAggregateExpressions with COVAR_POP\") {\n    val aggregateFunction = CovPopulation.apply(schoolIdAttributeReference, AttributeReference.apply(\"StudentID\", LongType)(ExprId.apply(2)))\n    val aggregateExpression = AggregateExpression.apply(aggregateFunction, Complete, isDistinct = false)\n    val bigQuerySQLStatement = expressionConverter.convertAggregateExpressions(aggregateExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"COVAR_POP ( SUBQUERY_2.SCHOOLID , STUDENTID )\")\n  }\n\n  test(\"convertAggregateExpressions with COVAR_SAMP\") {\n    val aggregateFunction = CovSample.apply(schoolIdAttributeReference, AttributeReference.apply(\"StudentID\", LongType)(ExprId.apply(2)))\n    val aggregateExpression = AggregateExpression.apply(aggregateFunction, Complete, isDistinct = false)\n    val bigQuerySQLStatement = expressionConverter.convertAggregateExpressions(aggregateExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"COVAR_SAMP ( SUBQUERY_2.SCHOOLID , STUDENTID )\")\n  }\n\n  test(\"convertAggregateExpressions with MAX\") {\n    val aggregateFunction = Max.apply(schoolIdAttributeReference)\n    val aggregateExpression = AggregateExpression.apply(aggregateFunction, Complete, isDistinct = false)\n    val bigQuerySQLStatement = expressionConverter.convertAggregateExpressions(aggregateExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"MAX ( SUBQUERY_2.SCHOOLID )\")\n  }\n\n  test(\"convertAggregateExpressions with MIN\") {\n    val aggregateFunction = Min.apply(schoolIdAttributeReference)\n    val aggregateExpression = AggregateExpression.apply(aggregateFunction, Complete, isDistinct = false)\n    val bigQuerySQLStatement = expressionConverter.convertAggregateExpressions(aggregateExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"MIN ( SUBQUERY_2.SCHOOLID )\")\n  }\n\n  test(\"convertAggregateExpressions with SUM\") {\n    val aggregateFunction = Sum.apply(schoolIdAttributeReference)\n    val aggregateExpression = AggregateExpression.apply(aggregateFunction, Complete, isDistinct = false)\n    val bigQuerySQLStatement = expressionConverter.convertAggregateExpressions(aggregateExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"SUM ( SUBQUERY_2.SCHOOLID )\")\n  }\n\n  test(\"convertAggregateExpressions with STDDEV_POP\") {\n    val aggregateFunction = StddevPop.apply(schoolIdAttributeReference)\n    val aggregateExpression = AggregateExpression.apply(aggregateFunction, Complete, isDistinct = false)\n    val bigQuerySQLStatement = expressionConverter.convertAggregateExpressions(aggregateExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"STDDEV_POP ( SUBQUERY_2.SCHOOLID )\")\n  }\n\n  test(\"convertAggregateExpressions with STDDEV_SAMP\") {\n    val aggregateFunction = StddevSamp.apply(schoolIdAttributeReference)\n    val aggregateExpression = AggregateExpression.apply(aggregateFunction, Complete, isDistinct = false)\n    val bigQuerySQLStatement = expressionConverter.convertAggregateExpressions(aggregateExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"STDDEV_SAMP ( SUBQUERY_2.SCHOOLID )\")\n  }\n\n  test(\"convertAggregateExpressions with VAR_POP\") {\n    val aggregateFunction = VariancePop.apply(schoolIdAttributeReference)\n    val aggregateExpression = AggregateExpression.apply(aggregateFunction, Complete, isDistinct = false)\n    val bigQuerySQLStatement = expressionConverter.convertAggregateExpressions(aggregateExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"VAR_POP ( SUBQUERY_2.SCHOOLID )\")\n  }\n\n  test(\"convertAggregateExpressions with VAR_SAMP\") {\n    val aggregateFunction = VarianceSamp.apply(schoolIdAttributeReference)\n    val aggregateExpression = AggregateExpression.apply(aggregateFunction, Complete, isDistinct = false)\n    val bigQuerySQLStatement = expressionConverter.convertAggregateExpressions(aggregateExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"VAR_SAMP ( SUBQUERY_2.SCHOOLID )\")\n  }\n\n  test(\"convertAggregateExpressions with non aggregate expression\") {\n    val nonAggregateExpression = IsNotNull.apply(schoolIdAttributeReference)\n    val bigQuerySQLStatement = expressionConverter.convertAggregateExpressions(nonAggregateExpression, fields)\n    assert(bigQuerySQLStatement.isEmpty)\n  }\n\n  test(\"convertBasicExpressions with BinaryOperator (GreaterThanOrEqual)\") {\n    val binaryOperatorExpression = GreaterThanOrEqual.apply(schoolIdAttributeReference, Literal.apply(75L, LongType))\n    val bigQuerySQLStatement = expressionConverter.convertBasicExpressions(binaryOperatorExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"( SUBQUERY_2.SCHOOLID >= 75 )\")\n  }\n\n  test(\"convertBasicExpressions with BinaryOperator (LessThanOrEqual)\") {\n    val binaryOperatorExpression = LessThanOrEqual.apply(schoolIdAttributeReference, Literal.apply(75L, LongType))\n    val bigQuerySQLStatement = expressionConverter.convertBasicExpressions(binaryOperatorExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"( SUBQUERY_2.SCHOOLID <= 75 )\")\n  }\n\n  test(\"convertBasicExpressions with AND\") {\n    val left = LessThanOrEqual.apply(schoolIdAttributeReference, Literal.apply(100L, LongType))\n    val right = GreaterThanOrEqual.apply(schoolIdAttributeReference, Literal.apply(75L, LongType))\n    val andExpression = And.apply(left, right)\n    val bigQuerySQLStatement = expressionConverter.convertBasicExpressions(andExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"( ( SUBQUERY_2.SCHOOLID <= 100 ) AND ( SUBQUERY_2.SCHOOLID >= 75 ) )\")\n  }\n\n  test(\"convertBasicExpressions with OR\") {\n    val left = LessThanOrEqual.apply(schoolIdAttributeReference, Literal.apply(25L, LongType))\n    val right = GreaterThanOrEqual.apply(schoolIdAttributeReference, Literal.apply(75L, LongType))\n    val orExpression = Or.apply(left, right)\n    val bigQuerySQLStatement = expressionConverter.convertBasicExpressions(orExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"( ( SUBQUERY_2.SCHOOLID <= 25 ) OR ( SUBQUERY_2.SCHOOLID >= 75 ) )\")\n  }\n\n  test(\"convertBasicExpressions with BitwiseAnd\") {\n    val left = Literal.apply(0)\n    val right = Literal.apply(1)\n    val bitwiseAndExpression = BitwiseAnd.apply(left, right)\n    val bigQuerySQLStatement = expressionConverter.convertBasicExpressions(bitwiseAndExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"( 0 & 1 )\")\n  }\n\n  test(\"convertBasicExpressions with BitwiseOr\") {\n    val left = Literal.apply(0)\n    val right = Literal.apply(1)\n    val bitwiseOrExpression = BitwiseOr.apply(left, right)\n    val bigQuerySQLStatement = expressionConverter.convertBasicExpressions(bitwiseOrExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"( 0 | 1 )\")\n  }\n\n  test(\"convertBasicExpressions with BitwiseXor\") {\n    val left = Literal.apply(0)\n    val right = Literal.apply(1)\n    val bitwiseXorExpression = BitwiseXor.apply(left, right)\n    val bigQuerySQLStatement = expressionConverter.convertBasicExpressions(bitwiseXorExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"( 0 ^ 1 )\")\n  }\n\n  test(\"convertBasicExpressions with BitwiseNot\") {\n    val child = Literal.apply(1)\n    val bitwiseXorExpression = BitwiseNot.apply(child)\n    val bigQuerySQLStatement = expressionConverter.convertBasicExpressions(bitwiseXorExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"~ ( 1 )\")\n  }\n\n  test(\"convertBasicExpressions with EqualNullSafe\") {\n    val left = Literal.apply(1)\n    val right = Literal.apply(null)\n    val equalNullSafeExpression = EqualNullSafe.apply(left, right)\n    val bigQuerySQLStatement = expressionConverter.convertBasicExpressions(equalNullSafeExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"( COALESCE ( CAST ( 1 AS STRING ) , \\\"\\\" ) = COALESCE ( CAST ( NULL AS STRING ) , \\\"\\\" ) )\")\n  }\n\n  test(\"convertBasicExpressions with String literal\") {\n    val bigQuerySQLStatement = expressionConverter.convertBasicExpressions(Literal(\"MY_STRING_LITERAL\"), fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"'MY_STRING_LITERAL'\")\n  }\n\n  test(\"convertBasicExpressions with null String literal\") {\n    val bigQuerySQLStatement = expressionConverter.convertBasicExpressions(Literal(null, StringType), fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"NULL\")\n  }\n\n  test(\"convertBasicExpressions with Date literal\") {\n    // Spark represents DateType as number of days after 1970-01-01\n    val bigQuerySQLStatement = expressionConverter.convertBasicExpressions(Literal(17007, DateType), fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"DATE_ADD(DATE \\\"1970-01-01\\\", INTERVAL 17007  DAY)\")\n  }\n\n  test(\"convertBasicExpressions with Integer literal\") {\n    val bigQuerySQLStatement = expressionConverter.convertBasicExpressions(Literal(1), fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"1\")\n  }\n\n  test(\"convertBasicExpressions with Long literal\") {\n    val bigQuerySQLStatement = expressionConverter.convertBasicExpressions(Literal(100L), fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"100\")\n  }\n\n  test(\"convertBasicExpressions with Short literal\") {\n    val bigQuerySQLStatement = expressionConverter.convertBasicExpressions(Literal(100.toShort), fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"100\")\n  }\n\n  test(\"convertBasicExpressions with Boolean literal\") {\n    val bigQuerySQLStatement = expressionConverter.convertBasicExpressions(Literal(false), fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"false\")\n  }\n\n  test(\"convertBasicExpressions with Float literal\") {\n    val bigQuerySQLStatement = expressionConverter.convertBasicExpressions(Literal(1.2345F), fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"1.2345\")\n  }\n\n  test(\"convertBasicExpressions with Double literal\") {\n    val bigQuerySQLStatement = expressionConverter.convertBasicExpressions(Literal(3e5D), fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"300000.0\")\n  }\n\n  test(\"convertBasicExpressions with Byte literal\") {\n    val bigQuerySQLStatement = expressionConverter.convertBasicExpressions(Literal(20.toByte), fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"20\")\n  }\n\n  test(\"convertBasicExpressions with non basic expression\") {\n    val nonBasicExpression = IsNotNull.apply(schoolIdAttributeReference)\n    val bigQuerySQLStatement = expressionConverter.convertBasicExpressions(nonBasicExpression, fields)\n    assert(bigQuerySQLStatement.isEmpty)\n  }\n\n  test(\"convertBooleanExpressions with In\") {\n    val inExpression = In.apply(schoolIdAttributeReference, List(Literal(100), Literal(200)))\n    val bigQuerySQLStatement = expressionConverter.convertBooleanExpressions(inExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"SUBQUERY_2.SCHOOLID IN ( 100 , 200 )\")\n  }\n\n  test(\"convertBooleanExpressions with IsNull\") {\n    val isNullExpression = IsNull.apply(schoolIdAttributeReference)\n    val bigQuerySQLStatement = expressionConverter.convertBooleanExpressions(isNullExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"( SUBQUERY_2.SCHOOLID IS NULL )\")\n  }\n\n  test(\"convertBooleanExpressions with IsNotNull\") {\n    val isNotNullExpression = IsNotNull.apply(schoolIdAttributeReference)\n    val bigQuerySQLStatement = expressionConverter.convertBooleanExpressions(isNotNullExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"( SUBQUERY_2.SCHOOLID IS NOT NULL )\")\n  }\n\n  test(\"convertBooleanExpressions with Not EqualTo\") {\n    val notEqualToExpression = Not.apply(EqualTo.apply(schoolIdAttributeReference, Literal(1234L)))\n    val bigQuerySQLStatement = expressionConverter.convertBooleanExpressions(notEqualToExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"( SUBQUERY_2.SCHOOLID != 1234 )\")\n  }\n\n  test(\"convertBooleanExpressions with Not GreaterThanOrEqual\") {\n    val notGreaterThanOrEqualToExpression = Not.apply(GreaterThanOrEqual.apply(schoolIdAttributeReference, Literal(1234L)))\n    val bigQuerySQLStatement = expressionConverter.convertBooleanExpressions(notGreaterThanOrEqualToExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"( SUBQUERY_2.SCHOOLID < 1234 )\")\n  }\n\n  test(\"convertBooleanExpressions with Not LessThanOrEqual\") {\n    val notLessThanOrEqualToExpression = Not.apply(LessThanOrEqual.apply(schoolIdAttributeReference, Literal(1234L)))\n    val bigQuerySQLStatement = expressionConverter.convertBooleanExpressions(notLessThanOrEqualToExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"( SUBQUERY_2.SCHOOLID > 1234 )\")\n  }\n\n  test(\"convertBooleanExpressions with Not GreaterThan\") {\n    val notGreaterThanExpression = Not.apply(GreaterThan.apply(schoolIdAttributeReference, Literal(1234L)))\n    val bigQuerySQLStatement = expressionConverter.convertBooleanExpressions(notGreaterThanExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"( SUBQUERY_2.SCHOOLID <= 1234 )\")\n  }\n\n  test(\"convertBooleanExpressions with Not LessThan\") {\n    val notLessThanExpression = Not.apply(LessThan.apply(schoolIdAttributeReference, Literal(1234L)))\n    val bigQuerySQLStatement = expressionConverter.convertBooleanExpressions(notLessThanExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"( SUBQUERY_2.SCHOOLID >= 1234 )\")\n  }\n\n  test(\"convertBooleanExpressions with Contains\") {\n    val containsExpression = Contains.apply(schoolIdAttributeReference, Literal(\"123'4\"))\n    val bigQuerySQLStatement = expressionConverter.convertBooleanExpressions(containsExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"CONTAINS_SUBSTR ( SUBQUERY_2.SCHOOLID , '123\\\\'4' )\")\n  }\n\n  test(\"convertBooleanExpressions with Ends With\") {\n    val endsWithExpression = EndsWith.apply(schoolIdAttributeReference, Literal(\"123'4\"))\n    val bigQuerySQLStatement = expressionConverter.convertBooleanExpressions(endsWithExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"ENDS_WITH ( SUBQUERY_2.SCHOOLID , '123\\\\'4' )\")\n  }\n\n  test(\"convertBooleanExpressions with Starts With\") {\n    val startsWithExpression = StartsWith.apply(schoolIdAttributeReference, Literal(\"123'4\"))\n    val bigQuerySQLStatement = expressionConverter.convertBooleanExpressions(startsWithExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"STARTS_WITH ( SUBQUERY_2.SCHOOLID , '123\\\\'4' )\")\n  }\n\n  test(\"convertBooleanExpressions with non Boolean expression\") {\n    val bigQuerySQLStatement = expressionConverter.convertBooleanExpressions(Literal(100L), fields)\n    assert(bigQuerySQLStatement.isEmpty)\n  }\n\n  test(\"convertStringExpressions with Ascii\") {\n    val asciiExpression = Ascii.apply(schoolIdAttributeReference)\n    val bigQuerySQLStatement = expressionConverter.convertStringExpressions(asciiExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"ASCII ( SUBQUERY_2.SCHOOLID )\")\n  }\n\n  test(\"convertStringExpressions with Concat\") {\n    val concatExpression = Concat.apply(List(schoolIdAttributeReference, Literal(\"**\")))\n    val bigQuerySQLStatement = expressionConverter.convertStringExpressions(concatExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"CONCAT ( SUBQUERY_2.SCHOOLID , '**' )\")\n  }\n\n  test(\"convertStringExpressions with Length\") {\n    val lengthExpression = Length.apply(schoolIdAttributeReference)\n    val bigQuerySQLStatement = expressionConverter.convertStringExpressions(lengthExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"LENGTH ( SUBQUERY_2.SCHOOLID )\")\n  }\n\n  test(\"convertStringExpressions with Lower\") {\n    val lowerExpression = Lower.apply(schoolIdAttributeReference)\n    val bigQuerySQLStatement = expressionConverter.convertStringExpressions(lowerExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"LOWER ( SUBQUERY_2.SCHOOLID )\")\n  }\n\n  test(\"convertStringExpressions with StringLPad\") {\n    val stringLPadExpression = StringLPad.apply(schoolIdAttributeReference, Literal(10), Literal(\"*\"))\n    val bigQuerySQLStatement = expressionConverter.convertStringExpressions(stringLPadExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"LPAD ( SUBQUERY_2.SCHOOLID , 10 , '*' )\")\n  }\n\n  test(\"convertStringExpressions with StringRPad\") {\n    val stringRPadExpression = StringRPad.apply(schoolIdAttributeReference, Literal(10), Literal(\"*\"))\n    val bigQuerySQLStatement = expressionConverter.convertStringExpressions(stringRPadExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"RPAD ( SUBQUERY_2.SCHOOLID , 10 , '*' )\")\n  }\n\n  test(\"convertStringExpressions with StringTranslate\") {\n    val stringTranslateExpression = StringTranslate.apply(schoolIdAttributeReference, Literal(\"*\"), Literal(\"**\"))\n    val bigQuerySQLStatement = expressionConverter.convertStringExpressions(stringTranslateExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"TRANSLATE ( SUBQUERY_2.SCHOOLID , '*' , '**' )\")\n  }\n\n  test(\"convertStringExpressions with StringTrim\") {\n    val stringTrimExpression = StringTrim.apply(schoolIdAttributeReference)\n    val bigQuerySQLStatement = expressionConverter.convertStringExpressions(stringTrimExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"TRIM ( SUBQUERY_2.SCHOOLID )\")\n  }\n\n  test(\"convertStringExpressions with StringTrimLeft\") {\n    val stringTrimLeftExpression = StringTrimLeft.apply(schoolIdAttributeReference)\n    val bigQuerySQLStatement = expressionConverter.convertStringExpressions(stringTrimLeftExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"LTRIM ( SUBQUERY_2.SCHOOLID )\")\n  }\n\n  test(\"convertStringExpressions with StringTrimRight\") {\n    val stringTrimRightExpression = StringTrimRight.apply(schoolIdAttributeReference)\n    val bigQuerySQLStatement = expressionConverter.convertStringExpressions(stringTrimRightExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"RTRIM ( SUBQUERY_2.SCHOOLID )\")\n  }\n\n  test(\"convertStringExpressions with Upper\") {\n    val upperExpression = Upper.apply(schoolIdAttributeReference)\n    val bigQuerySQLStatement = expressionConverter.convertStringExpressions(upperExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"UPPER ( SUBQUERY_2.SCHOOLID )\")\n  }\n\n  test(\"convertStringExpressions with StringInstr\") {\n    val stringInstrExpression = StringInstr.apply(schoolIdAttributeReference, Literal(\"1234\"))\n    val bigQuerySQLStatement = expressionConverter.convertStringExpressions(stringInstrExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"INSTR ( SUBQUERY_2.SCHOOLID , '1234' )\")\n  }\n\n  test(\"convertStringExpressions with InitCap\") {\n    val initCapExpression = InitCap.apply(schoolIdAttributeReference)\n    val bigQuerySQLStatement = expressionConverter.convertStringExpressions(initCapExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"INITCAP ( SUBQUERY_2.SCHOOLID )\")\n  }\n\n  test(\"convertStringExpressions with Base64\") {\n    val base64Expression = Base64.apply(schoolIdAttributeReference)\n    val bigQuerySQLStatement = expressionConverter.convertStringExpressions(base64Expression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"TO_BASE64 ( SUBQUERY_2.SCHOOLID )\")\n  }\n\n  test(\"convertStringExpressions with UnBase64\") {\n    val unBase64Expression = UnBase64.apply(schoolIdAttributeReference)\n    val bigQuerySQLStatement = expressionConverter.convertStringExpressions(unBase64Expression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"FROM_BASE64 ( SUBQUERY_2.SCHOOLID )\")\n  }\n\n  test(\"convertStringExpressions with Substring\") {\n    val substrExpression = Substring.apply(schoolIdAttributeReference, Literal(2), Literal(3))\n    val bigQuerySQLStatement = expressionConverter.convertStringExpressions(substrExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"SUBSTRING ( SUBQUERY_2.SCHOOLID , 2 , 3 )\")\n  }\n\n  test(\"convertStringExpressions with SoundEx\") {\n    val soundexExpression = SoundEx.apply(schoolIdAttributeReference)\n    val bigQuerySQLStatement = expressionConverter.convertStringExpressions(soundexExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"UPPER ( SOUNDEX ( SUBQUERY_2.SCHOOLID ) )\")\n  }\n\n  test(\"convertStringExpressions with RegExpExtract\") {\n    val regExpExtractExpression = RegExpExtract.apply(schoolIdAttributeReference, Literal(\"[0-9]\"), Literal(1))\n    val bigQuerySQLStatement = expressionConverter.convertStringExpressions(regExpExtractExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"REGEXP_EXTRACT ( SUBQUERY_2.SCHOOLID , r'[0-9]' , 1 )\")\n  }\n\n  test(\"convertStringExpressions with RegExpReplace\") {\n    val regExpReplaceExpression = RegExpReplace.apply(schoolIdAttributeReference, Literal(\"[0-9]\"), Literal(\"replace\"))\n    val bigQuerySQLStatement = expressionConverter.convertStringExpressions(regExpReplaceExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"REGEXP_REPLACE ( SUBQUERY_2.SCHOOLID , r'[0-9]' , 'replace' )\")\n  }\n\n  test(\"convertStringExpressions with FormatString\") {\n    val formatStringExpression = FormatString.apply(Literal(\"*%s*\"), schoolIdAttributeReference)\n    val bigQuerySQLStatement = expressionConverter.convertStringExpressions(formatStringExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"FORMAT ( '*%s*' , SUBQUERY_2.SCHOOLID )\")\n  }\n\n  test(\"convertStringExpressions with FormatNumber\") {\n    val formatNumberExpression = FormatNumber.apply(Literal(12.3456), Literal(2))\n    val bigQuerySQLStatement = expressionConverter.convertStringExpressions(formatNumberExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"FORMAT ( 12.3456 , 2 )\")\n  }\n\n  test(\"convertMathematicalExpressions with Abs\") {\n    val absExpression = Abs.apply(Literal(-12))\n    val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(absExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"ABS ( -12 )\")\n  }\n\n  test(\"convertMathematicalExpressions with Acos\") {\n    val aCosExpression = Acos.apply(Literal(90))\n    val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(aCosExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"ACOS ( 90 )\")\n  }\n\n  test(\"convertMathematicalExpressions with Asin\") {\n    val aSinExpression = Asin.apply(Literal(90))\n    val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(aSinExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"ASIN ( 90 )\")\n  }\n\n  test(\"convertMathematicalExpressions with Atan\") {\n    val aTanExpression = Atan.apply(Literal(90))\n    val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(aTanExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"ATAN ( 90 )\")\n  }\n\n  test(\"convertMathematicalExpressions with Cos\") {\n    val cosExpression = Cos.apply(Literal(90))\n    val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(cosExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"COS ( 90 )\")\n  }\n\n  test(\"convertMathematicalExpressions with Cosh\") {\n    val coshExpression = Cosh.apply(Literal(90))\n    val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(coshExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"COSH ( 90 )\")\n  }\n\n  test(\"convertMathematicalExpressions with Exp\") {\n    val expExpression = Exp.apply(Literal(2))\n    val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(expExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"EXP ( 2 )\")\n  }\n\n  test(\"convertMathematicalExpressions with Floor\") {\n    val floorExpression = Floor.apply(Literal(2.5))\n    val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(floorExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"FLOOR ( 2.5 )\")\n  }\n\n  test(\"convertMathematicalExpressions with Greatest\") {\n    val greatestExpression = Greatest.apply(List(Literal(1), Literal(3), Literal(2)))\n    val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(greatestExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"GREATEST ( 1 , 3 , 2 )\")\n  }\n\n  test(\"convertMathematicalExpressions with Least\") {\n    val leastExpression = Least.apply(List(Literal(1), Literal(3), Literal(2)))\n    val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(leastExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"LEAST ( 1 , 3 , 2 )\")\n  }\n\n  test(\"convertMathematicalExpressions with Logarithm\") {\n    val logExpression = Logarithm.apply(Literal(2), Literal(10))\n    val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(logExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"LOG ( 10 , 2 )\")\n  }\n\n  test(\"convertMathematicalExpressions with Log10\") {\n    val logExpression = Log10.apply(Literal(10))\n    val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(logExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"LOG10 ( 10 )\")\n  }\n\n  test(\"convertMathematicalExpressions with Pow\") {\n    val powExpression = Pow.apply(Literal(10), Literal(2))\n    val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(powExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"POWER ( 10 , 2 )\")\n  }\n\n  test(\"convertMathematicalExpressions with Round\") {\n    val roundExpression = Round.apply(Literal(10.234), Literal(2))\n    val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(roundExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"ROUND ( 10.234 , 2 )\")\n  }\n\n  test(\"convertMathematicalExpressions with Sin\") {\n    val sinExpression = Sin.apply(Literal(90))\n    val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(sinExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"SIN ( 90 )\")\n  }\n\n  test(\"convertMathematicalExpressions with Sinh\") {\n    val sinhExpression = Sinh.apply(Literal(90))\n    val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(sinhExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"SINH ( 90 )\")\n  }\n\n  test(\"convertMathematicalExpressions with Sqrt\") {\n    val sqrtExpression = Sqrt.apply(Literal(90))\n    val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(sqrtExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"SQRT ( 90 )\")\n  }\n\n  test(\"convertMathematicalExpressions with Tan\") {\n    val tanExpression = Tan.apply(Literal(90))\n    val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(tanExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"TAN ( 90 )\")\n  }\n\n  test(\"convertMathematicalExpressions with Tanh\") {\n    val tanhExpression = Tanh.apply(Literal(90))\n    val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(tanhExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"TANH ( 90 )\")\n  }\n\n  test(\"convertMathematicalExpressions with IsNaN\") {\n    val isNanExpression = IsNaN.apply(Literal(90))\n    val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(isNanExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"IS_NAN ( 90 )\")\n  }\n\n  test(\"convertMathematicalExpressions with Signum\") {\n    val signumExpression = Signum.apply(Literal(90))\n    val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(signumExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"SIGN ( 90 )\")\n  }\n\n  test(\"convertMathematicalExpressions with Rand\") {\n    val randExpression = Rand.apply(Literal(2))\n    val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(randExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"RAND ()\")\n  }\n\n  test(\"convertMathematicalExpressions with Pi\") {\n    val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(Pi(), fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"bqutil.fn.pi()\")\n  }\n\n  test(\"convertMathematicalExpressions with PromotePrecision\") {\n    val promotePrecisionExpression = PromotePrecision(Cast(Literal.apply(233.00), DecimalType.apply(38, 6)))\n    val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(promotePrecisionExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"CAST ( 233.0 AS BIGDECIMAL )\")\n  }\n\n  test(\"convertMiscellaneousExpressions with Alias\") {\n    val aliasExpression = Alias.apply(schoolIdAttributeReference, \"SCHOOL_ID_ALIAS\")(ExprId.apply(1))\n    val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(aliasExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"( SUBQUERY_2.SCHOOLID ) AS SCHOOL_ID_ALIAS\")\n  }\n\n  test(\"convertMiscellaneousExpressions with Ascending sort\") {\n    val sortExpression = SortOrder.apply(schoolIdAttributeReference, Ascending)\n    val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(sortExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"( SUBQUERY_2.SCHOOLID ) ASC\")\n  }\n\n  test(\"convertMiscellaneousExpressions with Descending sort\") {\n    val sortExpression = SortOrder.apply(schoolIdAttributeReference, Descending)\n    val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(sortExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"( SUBQUERY_2.SCHOOLID ) DESC\")\n  }\n\n  test(\"convertMiscellaneousExpressions with unsupported casts\") {\n    assertThrows[BigQueryPushdownUnsupportedException] {\n      expressionConverter.convertMiscellaneousExpressions(Cast.apply(AttributeReference.apply(\"Date\", DateType)(ExprId.apply(2)), IntegerType), fields)\n    }\n\n    assertThrows[BigQueryPushdownUnsupportedException] {\n      expressionConverter.convertMiscellaneousExpressions(Cast.apply(AttributeReference.apply(\"Date\", DateType)(ExprId.apply(2)), LongType), fields)\n    }\n\n    assertThrows[BigQueryPushdownUnsupportedException] {\n      expressionConverter.convertMiscellaneousExpressions(Cast.apply(AttributeReference.apply(\"Date\", DateType)(ExprId.apply(2)), FloatType), fields)\n    }\n\n    assertThrows[BigQueryPushdownUnsupportedException] {\n      expressionConverter.convertMiscellaneousExpressions(Cast.apply(AttributeReference.apply(\"Date\", DateType)(ExprId.apply(2)), DoubleType), fields)\n    }\n\n    assertThrows[BigQueryPushdownUnsupportedException] {\n      expressionConverter.convertMiscellaneousExpressions(Cast.apply(AttributeReference.apply(\"Date\", DateType)(ExprId.apply(2)), DecimalType(10, 0)), fields)\n    }\n\n    assertThrows[BigQueryPushdownUnsupportedException] {\n      expressionConverter.convertMiscellaneousExpressions(Cast.apply(AttributeReference.apply(\"Timestamp\", TimestampType)(ExprId.apply(2)), IntegerType), fields)\n    }\n\n    assertThrows[BigQueryPushdownUnsupportedException] {\n      expressionConverter.convertMiscellaneousExpressions(Cast.apply(AttributeReference.apply(\"Timestamp\", TimestampType)(ExprId.apply(2)), LongType), fields)\n    }\n\n    assertThrows[BigQueryPushdownUnsupportedException] {\n      expressionConverter.convertMiscellaneousExpressions(Cast.apply(AttributeReference.apply(\"Timestamp\", TimestampType)(ExprId.apply(2)), FloatType), fields)\n    }\n\n    assertThrows[BigQueryPushdownUnsupportedException] {\n      expressionConverter.convertMiscellaneousExpressions(Cast.apply(AttributeReference.apply(\"Timestamp\", TimestampType)(ExprId.apply(2)), DoubleType), fields)\n    }\n\n    assertThrows[BigQueryPushdownUnsupportedException] {\n      expressionConverter.convertMiscellaneousExpressions(Cast.apply(AttributeReference.apply(\"Timestamp\", TimestampType)(ExprId.apply(2)), DecimalType(10, 0)), fields)\n    }\n  }\n\n  test(\"convertMiscellaneousExpressions with Cast from Integer to String\") {\n    val castExpression = Cast.apply(AttributeReference.apply(\"SchoolID\", IntegerType)(ExprId.apply(2)), StringType)\n    val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(castExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"CAST ( SCHOOLID AS STRING )\")\n  }\n\n  test(\"convertMiscellaneousExpressions with Cast from Integer to Boolean\") {\n    val castExpression = Cast.apply(AttributeReference.apply(\"is_student\", IntegerType)(ExprId.apply(2)), BooleanType)\n    val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(castExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"CAST ( IS_STUDENT AS BOOL )\")\n  }\n\n  test(\"convertMiscellaneousExpressions with Cast from Integer to Short\") {\n    val castExpression = Cast.apply(AttributeReference.apply(\"SchoolID\", IntegerType)(ExprId.apply(2)), ShortType)\n    val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(castExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"CAST ( SCHOOLID AS INT64 )\")\n  }\n\n  test(\"convertMiscellaneousExpressions with Cast from Integer to Long\") {\n    val castExpression = Cast.apply(AttributeReference.apply(\"SchoolID\", IntegerType)(ExprId.apply(2)), LongType)\n    val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(castExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"CAST ( SCHOOLID AS INT64 )\")\n  }\n\n  test(\"convertMiscellaneousExpressions with Cast from Long to Integer\") {\n    val castExpression = Cast.apply(AttributeReference.apply(\"SchoolID\", LongType)(ExprId.apply(2)), IntegerType)\n    val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(castExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"CAST ( SCHOOLID AS INT64 )\")\n  }\n\n  test(\"convertMiscellaneousExpressions with Cast from Integer to Float\") {\n    val castExpression = Cast.apply(AttributeReference.apply(\"SchoolID\", IntegerType)(ExprId.apply(2)), FloatType)\n    val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(castExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"CAST ( SCHOOLID AS FLOAT64 )\")\n  }\n\n  test(\"convertMiscellaneousExpressions with Cast from Integer to Double\") {\n    val castExpression = Cast.apply(AttributeReference.apply(\"SchoolID\", IntegerType)(ExprId.apply(2)), DoubleType)\n    val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(castExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"CAST ( SCHOOLID AS FLOAT64 )\")\n  }\n\n  test(\"convertMiscellaneousExpressions with Cast from Integer to Bytes\") {\n    val castExpression = Cast.apply(AttributeReference.apply(\"SchoolID\", IntegerType)(ExprId.apply(2)), ByteType)\n    val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(castExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"CAST ( SCHOOLID AS NUMERIC )\")\n  }\n\n  test(\"convertMiscellaneousExpressions with Cast from Long to Bytes\") {\n    val castExpression = Cast.apply(AttributeReference.apply(\"SchoolID\", LongType)(ExprId.apply(2)), ByteType)\n    val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(castExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"CAST ( SCHOOLID AS NUMERIC )\")\n  }\n\n  test(\"convertMiscellaneousExpressions with Cast from Float to Bytes\") {\n    val castExpression = Cast.apply(AttributeReference.apply(\"SchoolID\", FloatType)(ExprId.apply(2)), ByteType)\n    val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(castExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"CAST ( SCHOOLID AS NUMERIC )\")\n  }\n\n  test(\"convertMiscellaneousExpressions with Cast from Double to Bytes\") {\n    val castExpression = Cast.apply(AttributeReference.apply(\"SchoolID\", DoubleType)(ExprId.apply(2)), ByteType)\n    val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(castExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"CAST ( SCHOOLID AS NUMERIC )\")\n  }\n\n  test(\"convertMiscellaneousExpressions with Cast from Decimal to Bytes\") {\n    val castExpression = Cast.apply(AttributeReference.apply(\"SchoolID\", DecimalType(10, 5))(ExprId.apply(2)), ByteType)\n    val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(castExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"CAST ( SCHOOLID AS NUMERIC )\")\n  }\n\n  test(\"convertMiscellaneousExpressions with Cast from String to Date\") {\n    val castExpression = Cast.apply(AttributeReference.apply(\"attendance_date\", StringType)(ExprId.apply(2)), DateType)\n    val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(castExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"CAST ( ATTENDANCE_DATE AS DATE )\")\n  }\n\n  test(\"convertMiscellaneousExpressions with Cast from String to Timestamp\") {\n    val castExpression = Cast.apply(AttributeReference.apply(\"last_modified\", StringType)(ExprId.apply(2)), TimestampType)\n    val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(castExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"CAST ( LAST_MODIFIED AS TIMESTAMP )\")\n  }\n\n  test(\"convertMiscellaneousExpressions with Cast from String to Bytes\") {\n    val castExpression = Cast.apply(AttributeReference.apply(\"SchoolID\", StringType)(ExprId.apply(2)), ByteType)\n    val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(castExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"CAST ( SCHOOLID AS BYTES )\")\n  }\n\n  test(\"convertMiscellaneousExpressions with Cast from String to BigDecimal/BigNumeric\") {\n    val castExpression = Cast.apply(AttributeReference.apply(\"Transaction\", StringType)(ExprId.apply(2)), DecimalType(10, 5))\n    val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(castExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"CAST ( TRANSACTION AS BIGDECIMAL )\")\n  }\n\n  test(\"convertMiscellaneousExpressions with ShiftLeft\") {\n    val shiftLeftExpression = ShiftLeft.apply(Literal.apply(4), Literal.apply(2))\n    val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(shiftLeftExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"( 4 << 2 )\")\n  }\n\n  test(\"convertMiscellaneousExpressions with ShiftRight\") {\n    val shiftRightExpression = ShiftRight.apply(Literal.apply(4), Literal.apply(2))\n    val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(shiftRightExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"( 4 >> 2 )\")\n  }\n\n  test(\"convertMiscellaneousExpressions with CaseWhen\") {\n    val caseWhenExpression = CaseWhen.apply(List.apply(Tuple2.apply(Literal.apply(\"COND1\"), Literal.apply(\"EVAL1\")), Tuple2.apply(Literal.apply(\"COND2\"), Literal.apply(\"EVAL2\"))), Literal.apply(\"ELSE_EVAL\"))\n    val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(caseWhenExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"CASE WHEN 'COND1' THEN 'EVAL1' WHEN 'COND2' THEN 'EVAL2' ELSE 'ELSE_EVAL' END\")\n  }\n\n  test(\"convertMiscellaneousExpressions with CaseWhenWithWithoutElse\") {\n    val caseWhenExpression = CaseWhen.apply(List.apply(Tuple2.apply(Literal.apply(\"COND1\"), Literal.apply(\"EVAL1\")), Tuple2.apply(Literal.apply(\"COND2\"), Literal.apply(\"EVAL2\"))))\n    val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(caseWhenExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"CASE WHEN 'COND1' THEN 'EVAL1' WHEN 'COND2' THEN 'EVAL2' END\")\n  }\n\n  test(\"convertMiscellaneousExpressions with If\") {\n    val ifExpression = If.apply(Literal.apply(\"COND1\"), Literal.apply(\"TRUE_VAL\"), Literal.apply(\"FALSE_VAL\"))\n    val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(ifExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"IF ( 'COND1' , 'TRUE_VAL' , 'FALSE_VAL' )\")\n  }\n\n  test(\"convertMiscellaneousExpressions with InSet\") {\n    val inSetExpression = InSet.apply(Literal.apply(\"COND1\"), Set.apply(Literal.apply(\"C1\"), Literal.apply(\"C2\"), Literal.apply(\"C3\")))\n    val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(inSetExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"'COND1' IN ( 'C1' , 'C2' , 'C3' )\")\n  }\n\n  test(\"convertMiscellaneousExpressions with UnscaledValue\") {\n    val inSetExpression = UnscaledValue.apply(Literal.apply(Decimal(1234.34)))\n    val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(inSetExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"( 1234.34 * POW( 10, 2 ) )\")\n  }\n\n  test(\"convertMiscExpression with Coalesce\") {\n    val coalesceExpression = Coalesce.apply(List.apply(Literal.apply(null), Literal.apply(null), Literal.apply(\"COND2\")))\n    val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(coalesceExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"COALESCE ( NULL , NULL , 'COND2' )\")\n  }\n\n  test(\"convertDateExpressions with DateAdd\") {\n    val dateAddExpression = DateAdd.apply(schoolStartDateAttributeReference, Literal.apply(\"1\"))\n    val bigQuerySQLStatement = expressionConverter.convertDateExpressions(dateAddExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"DATE_ADD ( STARTDATE , INTERVAL '1' DAY )\")\n  }\n\n  test(\"convertDateExpressions with DateSub\") {\n    val dateSubExpression = DateSub.apply(schoolStartDateAttributeReference, Literal.apply(\"1\"))\n    val bigQuerySQLStatement = expressionConverter.convertDateExpressions(dateSubExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"DATE_SUB ( STARTDATE , INTERVAL '1' DAY )\")\n  }\n\n  test(\"convertDateExpressions with Month\") {\n    val monthExpression = Month.apply(schoolStartDateAttributeReference)\n    val bigQuerySQLStatement = expressionConverter.convertDateExpressions(monthExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"EXTRACT ( MONTH  FROM STARTDATE )\")\n  }\n\n  test(\"convertDateExpressions with Quarter\") {\n    val quarterExpression = Quarter.apply(schoolStartDateAttributeReference)\n    val bigQuerySQLStatement = expressionConverter.convertDateExpressions(quarterExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"EXTRACT ( QUARTER  FROM STARTDATE )\")\n  }\n\n  test(\"convertDateExpressions with Year\") {\n    val yearExpression = Year.apply(schoolStartDateAttributeReference)\n    val bigQuerySQLStatement = expressionConverter.convertDateExpressions(yearExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"EXTRACT ( YEAR  FROM STARTDATE )\")\n  }\n\n  test(\"convertDateExpressions with DATE_TRUNC\") {\n    val yearExpression = TruncDate.apply(Literal.apply(\"2016-07-30\"), Literal.apply(\"YEAR\"))\n    val bigQuerySQLStatement = expressionConverter.convertDateExpressions(yearExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"DATE_TRUNC ( '2016-07-30' , YEAR )\")\n  }\n\n  test(\"convertWindowExpressions with RANK\") {\n    val rankExpression = Rank.apply(List.apply(Literal.apply(1)))\n    val bigQuerySQLStatement = expressionConverter.convertWindowExpressions(rankExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"RANK ()\")\n  }\n\n  test(\"convertWindowExpressions with DenseRank\") {\n    val denseRankExpression = DenseRank.apply(List.apply(Literal.apply(1)))\n    val bigQuerySQLStatement = expressionConverter.convertWindowExpressions(denseRankExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"DENSE_RANK ()\")\n  }\n\n  test(\"convertWindowExpressions with PercentRank\") {\n    val percentRankExpression = PercentRank.apply(List.apply(Literal.apply(1)))\n    val bigQuerySQLStatement = expressionConverter.convertWindowExpressions(percentRankExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"PERCENT_RANK ()\")\n  }\n\n  test(\"convertWindowExpressions with RowNumber\") {\n    val rowNumberExpression = RowNumber.apply()\n    val bigQuerySQLStatement = expressionConverter.convertWindowExpressions(rowNumberExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"ROW_NUMBER ()\")\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/pushdown_common_src/test/scala/com/google/cloud/spark/bigquery/pushdowns/TestConstants.scala",
    "content": "package com.google.cloud.spark.bigquery.pushdowns\n\nimport com.google.cloud.spark.bigquery.direct.BigQueryRDDFactory\nimport org.apache.spark.sql.catalyst.expressions.{Alias, Attribute, AttributeReference, Cast, ExprId, Expression}\nimport org.apache.spark.sql.catalyst.plans.logical.LogicalPlan\nimport org.apache.spark.sql.types.{LongType, Metadata, StringType}\nimport org.mockito.Mock\n\nobject TestConstants {\n   val TABLE_NAME = \"test_project:test_dataset.test_table\"\n   val SUBQUERY_0_ALIAS = \"SUBQUERY_0\"\n   val SUBQUERY_1_ALIAS = \"SUBQUERY_1\"\n   val SUBQUERY_2_ALIAS = \"SUBQUERY_2\"\n\n\n   val schoolIdAttributeReference: AttributeReference = AttributeReference.apply(\"SchoolID\", LongType)(ExprId.apply(1))\n   val schoolNameAttributeReference: AttributeReference = AttributeReference.apply(\"SchoolName\", StringType)(ExprId.apply(2))\n\n   val expressionFactory: SparkExpressionFactory = new SparkExpressionFactory {\n      override def createAlias(child: Expression, name: String, exprId: ExprId, qualifier: Seq[String], explicitMetadata: Option[Metadata]): Alias = {\n         Alias(child, name)(exprId, qualifier, explicitMetadata)\n      }\n   }\n\n\n   val expressionConverter: SparkExpressionConverter = new SparkExpressionConverter {\n      // Tests for Scalar Subquery are in Spark version specific pushdown modules\n      override def convertScalarSubqueryExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = {\n         throw new UnsupportedOperationException(\"Scalar Subquery is supported \" +\n           \"only from Spark version specific implementations of SparkExpressionConverter\")\n      }\n\n      override def convertCheckOverflowExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = {\n         throw new UnsupportedOperationException(\"CheckOverflow expression is supported \" +\n           \"only from Spark version specific implementations of SparkExpressionConverter\")\n      }\n\n      override def convertUnaryMinusExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = {\n         throw new UnsupportedOperationException(\"UnaryMinus expression is supported \" +\n           \"only from Spark version specific implementations of SparkExpressionConverter\")\n      }\n\n      override def convertCastExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = {\n         val castExpression = expression.asInstanceOf[Cast]\n         performCastExpressionConversion(castExpression.child, fields, castExpression.dataType)\n      }\n\n      override def convertLikeExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = {\n         throw new UnsupportedOperationException(\"Like expression is supported \" +\n           \"only from Spark version specific implementations of SparkExpressionConverter\")\n      }\n   }\n\n   @Mock\n   var bigQueryRDDFactoryMock: BigQueryRDDFactory = _\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/pushdown_common_src/test/scala/com/google/cloud/spark/bigquery/pushdowns/UnaryOperationExtractorSuite.scala",
    "content": "package com.google.cloud.spark.bigquery.pushdowns\n\nimport org.apache.spark.sql.catalyst.expressions.{AttributeReference, EqualTo, ExprId, Literal}\nimport org.apache.spark.sql.catalyst.plans.logical.{Aggregate, Filter, GlobalLimit, LocalLimit, LogicalPlan, Project, Range, ReturnAnswer, Sort, SubqueryAlias, Window}\nimport org.apache.spark.sql.types.LongType\nimport org.scalatest.funsuite.AnyFunSuite\n\nclass UnaryOperationExtractorSuite extends AnyFunSuite {\n  private val schoolIdAttributeReference = AttributeReference.apply(\"SchoolID\", LongType)(ExprId.apply(1))\n\n  // Need a childPlan to pass. So, create the simplest possible\n  private val childPlan = Range.apply(2L, 100L, 4L, 8)\n\n  test(\"Filter\") {\n    val filterExpression = EqualTo.apply(schoolIdAttributeReference, Literal(1234L))\n    val filterPlan = Filter(filterExpression, childPlan)\n    val plan = UnaryOperationExtractor.unapply(filterPlan)\n    assertReturnedPlan(plan, filterPlan)\n  }\n\n  test(\"Project\") {\n    val projectPlan = Project(Seq(), childPlan)\n    val plan = UnaryOperationExtractor.unapply(projectPlan)\n    assertReturnedPlan(plan, projectPlan)\n  }\n\n  test(\"GlobalLimit\") {\n    val globalLimitPlan = GlobalLimit(Literal(21), childPlan)\n    val plan = UnaryOperationExtractor.unapply(globalLimitPlan)\n    assertReturnedPlan(plan, globalLimitPlan)\n  }\n\n  test(\"LocalLimit\") {\n    val localLimitPlan = LocalLimit(Literal(21), childPlan)\n    val plan = UnaryOperationExtractor.unapply(localLimitPlan)\n    assertReturnedPlan(plan, localLimitPlan)\n  }\n\n  test(\"Aggregate\") {\n    val aggregatePlan = Aggregate(Seq(), Seq() , childPlan)\n    val plan = UnaryOperationExtractor.unapply(aggregatePlan)\n    assertReturnedPlan(plan, aggregatePlan)\n  }\n\n  test(\"Sort\") {\n    val sortPlan = Sort(Seq(), global = false, childPlan)\n    val plan = UnaryOperationExtractor.unapply(sortPlan)\n    assertReturnedPlan(plan, sortPlan)\n  }\n\n  test(\"ReturnAnswer\") {\n    val returnAnswerPlan = ReturnAnswer(childPlan)\n    val plan = UnaryOperationExtractor.unapply(returnAnswerPlan)\n    assertReturnedPlan(plan, returnAnswerPlan)\n  }\n\n  test(\"Window\") {\n    val windowPlan = Window(Seq(), Seq(), Seq(), childPlan)\n    val plan = UnaryOperationExtractor.unapply(windowPlan)\n    assertReturnedPlan(plan, windowPlan)\n  }\n\n  test(\"non supported unary node\") {\n    val subqueryAliasPlan = SubqueryAlias(\"subquery_1\", childPlan)\n    val plan = UnaryOperationExtractor.unapply(subqueryAliasPlan)\n    assert(plan.isEmpty)\n  }\n\n  def assertReturnedPlan(plan: Option[LogicalPlan], originalPlan: LogicalPlan): Unit = {\n    assert(plan.isDefined)\n    assert(plan.get == originalPlan)\n    assert(plan.get.children.head.isInstanceOf[Range])\n    assert(plan.get.children.head == childPlan)\n  }\n\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/pushdown_common_src/test/scala/com/google/cloud/spark/bigquery/pushdowns/UnionOperationExtractorSuite.scala",
    "content": "package com.google.cloud.spark.bigquery.pushdowns\n\nimport org.apache.spark.sql.catalyst.plans.logical.{Range, Union}\nimport org.scalatest.funsuite.AnyFunSuite\n\nclass UnionOperationExtractorSuite extends AnyFunSuite{\n\n  // Need a sequence of logicalplan's to pass. So, create the simplest possible\n  private val childPlan1 = Range.apply(2L, 100L, 4L, 8)\n  private val childPlan2 = Range.apply(4L, 200L, 8L, 16)\n\n  test(testName = \"Union\") {\n    val union = Union(Seq(childPlan1, childPlan2))\n    val plan = UnionOperationExtractor.unapply(union)\n    assert(plan.isDefined)\n    assert(plan.get.length == 2)\n    assert(plan.get.head.isInstanceOf[Range])\n    assert(plan.get.equals(Seq(childPlan1, childPlan2)))\n  }\n\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/pushdown_common_src/test/scala/com/google/cloud/spark/bigquery/pushdowns/UnionQuerySuite.scala",
    "content": "package com.google.cloud.spark.bigquery.pushdowns\n\nimport com.google.cloud.spark.bigquery.pushdowns.TestConstants.{SUBQUERY_0_ALIAS, SUBQUERY_1_ALIAS, SUBQUERY_2_ALIAS, TABLE_NAME, bigQueryRDDFactoryMock, expressionConverter, expressionFactory, schoolIdAttributeReference, schoolNameAttributeReference}\nimport org.scalatest.funsuite.AnyFunSuite\n\nclass UnionQuerySuite extends AnyFunSuite{\n\n  private val sourceQuery1 = SourceQuery(expressionConverter, expressionFactory, bigQueryRDDFactoryMock, TABLE_NAME, Seq(schoolIdAttributeReference, schoolNameAttributeReference), SUBQUERY_0_ALIAS)\n  private val sourceQuery2 = SourceQuery(expressionConverter, expressionFactory, bigQueryRDDFactoryMock, TABLE_NAME, Seq(schoolIdAttributeReference, schoolNameAttributeReference), SUBQUERY_1_ALIAS)\n\n  test(testName = \"getStatement with nonempty children and useAlias true\") {\n    val unionQuery = UnionQuery(expressionConverter, expressionFactory, Seq(sourceQuery1, sourceQuery2), SUBQUERY_2_ALIAS)\n    val bigQuerySQLStatement = unionQuery.getStatement(true)\n    assert(bigQuerySQLStatement.toString == \"( ( SELECT * FROM `test_project:test_dataset.test_table` AS BQ_CONNECTOR_QUERY_ALIAS ) UNION ALL ( SELECT * FROM `test_project:test_dataset.test_table` AS BQ_CONNECTOR_QUERY_ALIAS ) ) AS SUBQUERY_2\")\n  }\n\n  test(testName = \"getStatement with nonempty children and useAlias false\") {\n    val unionQuery = UnionQuery(expressionConverter, expressionFactory, Seq(sourceQuery1, sourceQuery2), SUBQUERY_2_ALIAS)\n    val bigQuerySQLStatement = unionQuery.getStatement()\n    assert(bigQuerySQLStatement.toString == \"( SELECT * FROM `test_project:test_dataset.test_table` AS BQ_CONNECTOR_QUERY_ALIAS ) UNION ALL ( SELECT * FROM `test_project:test_dataset.test_table` AS BQ_CONNECTOR_QUERY_ALIAS )\")\n  }\n\n  test(\"find\") {\n    val unionQuery = UnionQuery(expressionConverter, expressionFactory, Seq(sourceQuery1, sourceQuery2), SUBQUERY_2_ALIAS)\n    val returnedQuery = unionQuery.find({ case q: SourceQuery => q })\n    assert(returnedQuery.isDefined)\n    assert(returnedQuery.get == sourceQuery1)\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/pushdown_common_src/test/scala/com/google/cloud/spark/bigquery/pushdowns/WindowQuerySuite.scala",
    "content": "package com.google.cloud.spark.bigquery.pushdowns\n\nimport com.google.cloud.bigquery.connector.common.BigQueryPushdownUnsupportedException\nimport com.google.cloud.spark.bigquery.pushdowns.TestConstants.{SUBQUERY_0_ALIAS, SUBQUERY_1_ALIAS, SUBQUERY_2_ALIAS, TABLE_NAME, bigQueryRDDFactoryMock, expressionConverter, expressionFactory, schoolIdAttributeReference, schoolNameAttributeReference}\nimport org.apache.spark.sql.catalyst.expressions\nimport org.apache.spark.sql.catalyst.expressions.aggregate.{AggregateExpression, Average, Complete, Sum}\nimport org.apache.spark.sql.catalyst.expressions.{Alias, Ascending, AttributeReference, Cast, EmptyRow, ExprId, FrameType, Literal, RangeFrame, Rank, RowFrame, RowNumber, SortOrder, SpecifiedWindowFrame, UnboundedFollowing, UnboundedPreceding, UnspecifiedFrame, WindowExpression, WindowFrame, WindowSpecDefinition}\nimport org.apache.spark.sql.catalyst.plans.logical.Range\nimport org.apache.spark.sql.types.{DateType, LongType, Metadata}\nimport org.scalatest.funsuite.AnyFunSuite\n\nclass WindowQuerySuite extends AnyFunSuite {\n\n  private val sourceQuery = SourceQuery(expressionConverter, expressionFactory, bigQueryRDDFactoryMock, TABLE_NAME, Seq(schoolIdAttributeReference, schoolNameAttributeReference), SUBQUERY_0_ALIAS)\n\n  test(\"sourceStatement with row window frame with rank func\") {\n    val windowExpressionWithRowWindowFrameWithRankFunc = WindowExpression.apply(\n      windowFunction = Rank.apply(List.apply(Literal.apply(1))),\n      windowSpec = WindowSpecDefinition.apply(\n        Seq(schoolNameAttributeReference),\n        Seq(SortOrder.apply(schoolIdAttributeReference, Ascending)),\n        SpecifiedWindowFrame.apply(RowFrame, UnboundedPreceding, UnboundedFollowing)))\n    val windowAliasWithRowsWindowFrameWithRankFunc = expressionFactory.createAlias(windowExpressionWithRowWindowFrameWithRankFunc, \"\", ExprId.apply(12L), Seq.empty[String], Some(Metadata.empty))\n    val windowQueryWithRowsWindowFrameWithRankFunc = WindowQuery(expressionConverter, expressionFactory, Seq(windowAliasWithRowsWindowFrameWithRankFunc), sourceQuery, Some(Seq(schoolIdAttributeReference, schoolNameAttributeReference, windowAliasWithRowsWindowFrameWithRankFunc.toAttribute)), SUBQUERY_0_ALIAS)\n    assert(windowQueryWithRowsWindowFrameWithRankFunc.getStatement().toString == \"SELECT ( SUBQUERY_0.SCHOOLID ) AS SUBQUERY_0_COL_0 , ( SUBQUERY_0.SCHOOLNAME ) AS SUBQUERY_0_COL_1 , ( RANK () OVER ( PARTITION BY SUBQUERY_0.SCHOOLNAME ORDER BY ( SUBQUERY_0.SCHOOLID ) ASC ) ) AS SUBQUERY_0_COL_2 FROM ( SELECT * FROM `test_project:test_dataset.test_table` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_0\")\n  }\n\n  test(\"sourceStatement with row window frame with sum func\") {\n    val windowExpressionWithRowWindowFrameWithSumFunc = WindowExpression.apply(\n      windowFunction = AggregateExpression.apply(Sum.apply(schoolIdAttributeReference), Complete, isDistinct = false),\n      windowSpec = WindowSpecDefinition.apply(\n        Seq(schoolNameAttributeReference),\n        Seq(SortOrder.apply(schoolIdAttributeReference, Ascending)),\n        SpecifiedWindowFrame.apply(RowFrame, UnboundedPreceding, UnboundedFollowing)))\n    val windowAliasWithRowsWindowFrameWithSumFunc = expressionFactory.createAlias(windowExpressionWithRowWindowFrameWithSumFunc, \"\", ExprId.apply(12L), Seq.empty[String], Some(Metadata.empty))\n    val windowQueryWithRowsWindowFrameWithSumFunc = WindowQuery(expressionConverter, expressionFactory, Seq(windowAliasWithRowsWindowFrameWithSumFunc), sourceQuery, Some(Seq(schoolIdAttributeReference, schoolNameAttributeReference, windowAliasWithRowsWindowFrameWithSumFunc.toAttribute)), SUBQUERY_0_ALIAS)\n    assert(windowQueryWithRowsWindowFrameWithSumFunc.getStatement().toString == \"SELECT ( SUBQUERY_0.SCHOOLID ) AS SUBQUERY_0_COL_0 , ( SUBQUERY_0.SCHOOLNAME ) AS SUBQUERY_0_COL_1 , ( SUM ( SUBQUERY_0.SCHOOLID ) OVER ( PARTITION BY SUBQUERY_0.SCHOOLNAME ORDER BY ( SUBQUERY_0.SCHOOLID ) ASC ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING ) ) AS SUBQUERY_0_COL_2 FROM ( SELECT * FROM `test_project:test_dataset.test_table` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_0\")\n  }\n\n  test(\"sourceStatement with range window frame with rowNumber func\") {\n    val windowExpressionWithRangeWindowFrameWithRowNum = WindowExpression.apply(\n      windowFunction = RowNumber.apply(),\n      windowSpec = WindowSpecDefinition.apply(\n        Seq(schoolNameAttributeReference),\n        Seq(SortOrder.apply(schoolIdAttributeReference, Ascending)),\n        SpecifiedWindowFrame.apply(RangeFrame, Literal.apply(-1L), Literal.apply(2L))))\n    val windowAliasWithRangeWindowFrameWithRowNum = expressionFactory.createAlias(windowExpressionWithRangeWindowFrameWithRowNum, \"\", ExprId.apply(12L), Seq.empty[String], Some(Metadata.empty))\n    val windowQueryWithRangeWindowFrameWithRowNum = WindowQuery(expressionConverter, expressionFactory, Seq(windowAliasWithRangeWindowFrameWithRowNum), sourceQuery, Some(Seq(schoolIdAttributeReference, schoolNameAttributeReference, windowAliasWithRangeWindowFrameWithRowNum.toAttribute)), SUBQUERY_0_ALIAS)\n    assert(windowQueryWithRangeWindowFrameWithRowNum.getStatement().toString == \"SELECT ( SUBQUERY_0.SCHOOLID ) AS SUBQUERY_0_COL_0 , ( SUBQUERY_0.SCHOOLNAME ) AS SUBQUERY_0_COL_1 , ( ROW_NUMBER () OVER ( PARTITION BY SUBQUERY_0.SCHOOLNAME ORDER BY ( SUBQUERY_0.SCHOOLID ) ASC ) ) AS SUBQUERY_0_COL_2 FROM ( SELECT * FROM `test_project:test_dataset.test_table` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_0\")\n  }\n\n  test(\"sourceStatement with range window frame with avg func\") {\n    val windowExpressionWithRangeWindowFrameWithAvg = WindowExpression.apply(\n        windowFunction = AggregateExpression.apply(Average.apply(schoolIdAttributeReference), Complete, isDistinct = false),\n        windowSpec = WindowSpecDefinition.apply(\n          Seq(schoolNameAttributeReference),\n          Seq(SortOrder.apply(schoolIdAttributeReference, Ascending)),\n          SpecifiedWindowFrame.apply(RangeFrame, UnboundedPreceding, UnboundedFollowing)))\n    val windowAliasWithRangeWindowFrameWithAvgFunc = expressionFactory.createAlias(windowExpressionWithRangeWindowFrameWithAvg, \"\", ExprId.apply(12L), Seq.empty[String], Some(Metadata.empty))\n    val windowQueryWithRangeWindowFrameWithAvgFunc = WindowQuery(expressionConverter, expressionFactory, Seq(windowAliasWithRangeWindowFrameWithAvgFunc), sourceQuery, Some(Seq(schoolIdAttributeReference, schoolNameAttributeReference, windowAliasWithRangeWindowFrameWithAvgFunc.toAttribute)), SUBQUERY_0_ALIAS)\n    assert(windowQueryWithRangeWindowFrameWithAvgFunc.getStatement().toString == \"SELECT ( SUBQUERY_0.SCHOOLID ) AS SUBQUERY_0_COL_0 , ( SUBQUERY_0.SCHOOLNAME ) AS SUBQUERY_0_COL_1 , ( AVG ( SUBQUERY_0.SCHOOLID ) OVER ( PARTITION BY SUBQUERY_0.SCHOOLNAME ORDER BY ( SUBQUERY_0.SCHOOLID ) ASC RANGE BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING ) ) AS SUBQUERY_0_COL_2 FROM ( SELECT * FROM `test_project:test_dataset.test_table` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_0\")\n  }\n\n  test(\"sourceStatement with range window frame with avg func 2 PRECEDING and UNBOUNDED FOLLOWING\") {\n    val windowExpressionWithRangeWindowFrameWithAvg = WindowExpression.apply(\n      windowFunction = AggregateExpression.apply(Average.apply(schoolIdAttributeReference), Complete, isDistinct = false),\n      windowSpec = WindowSpecDefinition.apply(\n        Seq(schoolNameAttributeReference),\n        Seq(SortOrder.apply(schoolIdAttributeReference, Ascending)),\n        SpecifiedWindowFrame.apply(RangeFrame, Literal.apply(-2L), UnboundedFollowing)))\n    val windowAliasWithRangeWindowFrameWithAvgFunc = expressionFactory.createAlias(windowExpressionWithRangeWindowFrameWithAvg, \"\", ExprId.apply(12L), Seq.empty[String], Some(Metadata.empty))\n    val windowQueryWithRangeWindowFrameWithAvgFunc = WindowQuery(expressionConverter, expressionFactory, Seq(windowAliasWithRangeWindowFrameWithAvgFunc), sourceQuery, Some(Seq(schoolIdAttributeReference, schoolNameAttributeReference, windowAliasWithRangeWindowFrameWithAvgFunc.toAttribute)), SUBQUERY_0_ALIAS)\n    assert(windowQueryWithRangeWindowFrameWithAvgFunc.getStatement().toString == \"SELECT ( SUBQUERY_0.SCHOOLID ) AS SUBQUERY_0_COL_0 , ( SUBQUERY_0.SCHOOLNAME ) AS SUBQUERY_0_COL_1 , ( AVG ( SUBQUERY_0.SCHOOLID ) OVER ( PARTITION BY SUBQUERY_0.SCHOOLNAME ORDER BY ( SUBQUERY_0.SCHOOLID ) ASC RANGE BETWEEN 2 PRECEDING AND UNBOUNDED FOLLOWING ) ) AS SUBQUERY_0_COL_2 FROM ( SELECT * FROM `test_project:test_dataset.test_table` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_0\")\n  }\n\n  test(\"sourceStatement with range window frame with avg func UNBOUNDED PRECEDING and 2 FOLLOWING\") {\n    val windowExpressionWithRangeWindowFrameWithAvg = WindowExpression.apply(\n      windowFunction = AggregateExpression.apply(Average.apply(schoolIdAttributeReference), Complete, isDistinct = false),\n      windowSpec = WindowSpecDefinition.apply(\n        Seq(schoolNameAttributeReference),\n        Seq(SortOrder.apply(schoolIdAttributeReference, Ascending)),\n        SpecifiedWindowFrame.apply(RangeFrame, Literal.apply(-2L), UnboundedFollowing)))\n    val windowAliasWithRangeWindowFrameWithAvgFunc = expressionFactory.createAlias(windowExpressionWithRangeWindowFrameWithAvg, \"\", ExprId.apply(12L), Seq.empty[String], Some(Metadata.empty))\n    val windowQueryWithRangeWindowFrameWithAvgFunc = WindowQuery(expressionConverter, expressionFactory, Seq(windowAliasWithRangeWindowFrameWithAvgFunc), sourceQuery, Some(Seq(schoolIdAttributeReference, schoolNameAttributeReference, windowAliasWithRangeWindowFrameWithAvgFunc.toAttribute)), SUBQUERY_0_ALIAS)\n    assert(windowQueryWithRangeWindowFrameWithAvgFunc.getStatement().toString == \"SELECT ( SUBQUERY_0.SCHOOLID ) AS SUBQUERY_0_COL_0 , ( SUBQUERY_0.SCHOOLNAME ) AS SUBQUERY_0_COL_1 , ( AVG ( SUBQUERY_0.SCHOOLID ) OVER ( PARTITION BY SUBQUERY_0.SCHOOLNAME ORDER BY ( SUBQUERY_0.SCHOOLID ) ASC RANGE BETWEEN 2 PRECEDING AND UNBOUNDED FOLLOWING ) ) AS SUBQUERY_0_COL_2 FROM ( SELECT * FROM `test_project:test_dataset.test_table` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_0\")\n  }\n\n  test(\"sourceStatement with range window frame with avg func on fail\") {\n    val windowExpressionWithRangeWindowFrameWithAvg = WindowExpression.apply(\n      windowFunction = AggregateExpression.apply(Average.apply(schoolIdAttributeReference), Complete, isDistinct = false),\n      windowSpec = WindowSpecDefinition.apply(\n        Seq(schoolNameAttributeReference),\n        Seq(SortOrder.apply(schoolIdAttributeReference, Ascending)),\n        SpecifiedWindowFrame.apply(RangeFrame, Literal.apply(\"abc\"), UnboundedFollowing)))\n    val windowAliasWithRangeWindowFrameWithAvgFunc = expressionFactory.createAlias(windowExpressionWithRangeWindowFrameWithAvg, \"\", ExprId.apply(12L), Seq.empty[String], Some(Metadata.empty))\n    assertThrows[Exception] {\n      WindowQuery(expressionConverter, expressionFactory, Seq(windowAliasWithRangeWindowFrameWithAvgFunc), sourceQuery, Some(Seq(schoolIdAttributeReference, schoolNameAttributeReference, windowAliasWithRangeWindowFrameWithAvgFunc.toAttribute)), SUBQUERY_0_ALIAS)\n    }\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-2.4-bigquery-pushdown_2.11/pom.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n    xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n    xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\">\n  <parent>\n    <artifactId>spark-bigquery-pushdown-parent</artifactId>\n    <groupId>com.google.cloud.spark</groupId>\n    <version>${revision}</version>\n    <relativePath>../spark-bigquery-pushdown-parent</relativePath>\n  </parent>\n  <modelVersion>4.0.0</modelVersion>\n\n  <artifactId>spark-2.4-bigquery-pushdown_2.11</artifactId>\n\n  <properties>\n    <scala.binary.version>2.11</scala.binary.version>\n    <spark.version>2.4.0</spark.version>\n  </properties>\n\n  <dependencies>\n    <dependency>\n      <groupId>${project.groupId}</groupId>\n      <artifactId>spark-bigquery-pushdown-common_${scala.binary.version}\n      </artifactId>\n      <version>${project.version}</version>\n    </dependency>\n    <dependency>\n      <groupId>org.apache.spark</groupId>\n      <artifactId>spark-sql_${scala.binary.version}</artifactId>\n      <version>${spark.version}</version>\n      <scope>provided</scope>\n    </dependency>\n  </dependencies>\n\n</project>\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-2.4-bigquery-pushdown_2.11/src/main/resources/META-INF/services/com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdown",
    "content": "com.google.cloud.spark.bigquery.pushdowns.Spark24BigQueryPushdown\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-2.4-bigquery-pushdown_2.11/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark24BigQueryPushdown.scala",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\npackage com.google.cloud.spark.bigquery.pushdowns\n\nclass Spark24BigQueryPushdown extends BaseSparkBigQueryPushdown {\n\n  override def supportsSparkVersion(sparkVersion: String): Boolean = {\n    sparkVersion.startsWith(\"2.4\")\n  }\n\n  override def createSparkExpressionConverter(expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory): SparkExpressionConverter = {\n    new Spark24ExpressionConverter(expressionFactory, sparkPlanFactory)\n  }\n\n  override def createSparkExpressionFactory: SparkExpressionFactory = {\n    new Spark24ExpressionFactory\n  }\n\n  override def createBigQueryStrategy(expressionConverter: SparkExpressionConverter, expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory): BigQueryStrategy = {\n    new Spark24BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactory)\n  }\n\n  override def createSparkPlanFactory(): SparkPlanFactory = {\n    new Spark24PlanFactory\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-2.4-bigquery-pushdown_2.11/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark24BigQueryPushdownPlan.scala",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.pushdowns\n\nimport com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdownUtil.doExecuteSparkPlan\nimport org.apache.spark.rdd.RDD\nimport org.apache.spark.sql.catalyst.InternalRow\nimport org.apache.spark.sql.catalyst.expressions.Attribute\nimport org.apache.spark.sql.execution.SparkPlan\n\n/** BigQueryPlan, with RDD defined by custom query. */\ncase class Spark24BigQueryPushdownPlan(output: Seq[Attribute], rdd: RDD[InternalRow])\n  extends SparkPlan {\n\n  override def children: Seq[SparkPlan] = Nil\n\n  protected override def doExecute(): RDD[InternalRow] = {\n    doExecuteSparkPlan(output, rdd)\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-2.4-bigquery-pushdown_2.11/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark24BigQueryStrategy.scala",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.pushdowns\n\nimport com.google.cloud.spark.bigquery.{SparkBigQueryUtil, SupportsQueryPushdown}\nimport org.apache.spark.sql.catalyst.plans.logical.LogicalPlan\nimport org.apache.spark.sql.execution.datasources.v2.DataSourceV2Relation\n\nimport scala.collection.JavaConverters._\n\nclass Spark24BigQueryStrategy(expressionConverter: SparkExpressionConverter, expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory)\n  extends BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactory) {\n\n  override def generateQueryFromPlanForDataSourceV2(plan: LogicalPlan): Option[BigQuerySQLQuery] = {\n    // DataSourceV2Relation is the relation that is used in the Spark 2.4 DatasourceV2 connector\n    plan match {\n      case relation@DataSourceV2Relation(_, _, _, _, _) =>\n        // Get the reader and cast it to SupportsQueryPushdown to get the BigQueryRDDFactory\n        relation.newReader() match {\n          case reader: SupportsQueryPushdown =>\n            Some(SourceQuery(expressionConverter, expressionFactory, reader.getBigQueryRDDFactory,\n              SparkBigQueryUtil.getTableNameFromOptions(relation.options.asJava),\n              relation.output, alias.next))\n\n          case _ => None\n        }\n\n      // We should never reach here\n      case _ => None\n    }\n  }\n\n  override def createUnionQuery(children: Seq[LogicalPlan]): Option[BigQuerySQLQuery] = {\n    val queries: Seq[BigQuerySQLQuery] = children.map { child =>\n      new Spark24BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactory).generateQueryFromPlan(child).get\n    }\n    Some(UnionQuery(expressionConverter, expressionFactory, queries, alias.next))\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-2.4-bigquery-pushdown_2.11/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark24ExpressionConverter.scala",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\npackage com.google.cloud.spark.bigquery.pushdowns\n\nimport com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdownUtil.blockStatement\nimport org.apache.spark.sql.catalyst.expressions.{Attribute, Cast, CheckOverflow, Expression, Like, ScalarSubquery, UnaryMinus}\nimport org.apache.spark.sql.catalyst.plans.logical.LogicalPlan\n\n/**\n * Convert Spark 2.4 specific expressions to SQL\n */\nclass Spark24ExpressionConverter(expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory) extends SparkExpressionConverter {\n  override def convertScalarSubqueryExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = {\n    expression match {\n      case ScalarSubquery(plan, _, _) =>\n        blockStatement(new Spark24BigQueryStrategy(this, expressionFactory, sparkPlanFactory)\n          .generateQueryFromPlan(plan).get.getStatement())\n    }\n  }\n\n  override def convertCheckOverflowExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = {\n    expression match {\n      case CheckOverflow(child, t) =>\n        getCastType(t) match {\n          case Some(cast) =>\n            ConstantString(\"CAST\") +\n              blockStatement(convertStatement(child, fields) + \"AS\" + cast)\n          case _ => convertStatement(child, fields)\n        }\n    }\n  }\n\n  override def convertUnaryMinusExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = {\n    expression match {\n      case UnaryMinus(child) =>\n        ConstantString(\"-\") +\n          blockStatement(convertStatement(child, fields))\n    }\n  }\n\n  override def convertCastExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = {\n    expression match {\n      case Cast(child, dataType, _) =>\n        performCastExpressionConversion(child, fields, dataType)\n    }\n  }\n\n  override def convertLikeExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = {\n    expression match {\n      case Like(left, right) =>\n        convertStatement(left, fields) + \"LIKE\" + convertStatement(right, fields)\n    }\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-2.4-bigquery-pushdown_2.11/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark24ExpressionFactory.scala",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.pushdowns\n\nimport org.apache.spark.sql.catalyst.expressions.{Alias, ExprId, Expression}\nimport org.apache.spark.sql.types.Metadata\n\nclass Spark24ExpressionFactory extends SparkExpressionFactory {\n  override def createAlias(child: Expression, name: String, exprId: ExprId, qualifier: Seq[String], explicitMetadata: Option[Metadata]): Alias = {\n    Alias(child, name)(exprId, qualifier, explicitMetadata)\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-2.4-bigquery-pushdown_2.11/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark24PlanFactory.scala",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.pushdowns\n\nimport com.google.cloud.spark.bigquery.direct.BigQueryRDDFactory\nimport org.apache.spark.sql.execution.SparkPlan\n\nclass Spark24PlanFactory extends SparkPlanFactory {\n  /**\n   * Generate SparkPlan from the output and RDD of the translated query\n   */\n  override def createBigQueryPlan(queryRoot: BigQuerySQLQuery, bigQueryRDDFactory: BigQueryRDDFactory): Option[SparkPlan] = {\n    Some(Spark24BigQueryPushdownPlan(queryRoot.output, bigQueryRDDFactory.buildScanFromSQL(queryRoot.getStatement().toString)))\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-2.4-bigquery-pushdown_2.11/src/test/scala/com/google/cloud/spark/bigquery/pushdowns/BinaryOperationExtractorSuite.scala",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\npackage com.google.cloud.spark.bigquery.pushdowns\n\nimport org.apache.spark.sql.catalyst.plans.JoinType\nimport org.apache.spark.sql.catalyst.plans.logical.{Intersect, Join, Range}\nimport org.scalatest.funsuite.AnyFunSuite\n\nclass BinaryOperationExtractorSuite extends AnyFunSuite  {\n\n  // Need a childPlan to pass. So, create the simplest possible\n  private val leftChildPlan = Range.apply(2L, 100L, 4L, 8)\n  private val rightChildPlan = Range.apply(2L, 100L, 4L, 10)\n\n  test(\"supported binary node\") {\n    val joinPlan = Join(leftChildPlan, rightChildPlan, JoinType.apply(\"inner\"), None)\n    val plan = BinaryOperationExtractor.unapply(joinPlan)\n    assert(plan.isDefined)\n    assert(plan.get.children.head == leftChildPlan)\n    assert(plan.get.children(1) == rightChildPlan)\n  }\n\n  test(\"non supported binary node\") {\n    val unsupportedPlan = Intersect(leftChildPlan, rightChildPlan, isAll = true)\n    val plan = BinaryOperationExtractor.unapply(unsupportedPlan)\n    assert(plan.isEmpty)\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-2.4-bigquery-pushdown_2.11/src/test/scala/com/google/cloud/spark/bigquery/pushdowns/JoinExtractorSuite.scala",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\npackage com.google.cloud.spark.bigquery.pushdowns\n\nimport org.apache.spark.sql.catalyst.expressions.{EqualTo, Literal}\nimport org.apache.spark.sql.catalyst.plans.JoinType\nimport org.apache.spark.sql.catalyst.plans.logical.{Join, Range}\nimport org.scalatest.funsuite.AnyFunSuite\n\nclass JoinExtractorSuite extends AnyFunSuite {\n  // Need a childPlan to pass. So, create the simplest possible\n  private val leftChildPlan = Range.apply(2L, 100L, 4L, 8)\n\n  // Need a childPlan to pass. So, create the simplest possible\n  private val rightChildPlan = Range.apply(2L, 100L, 4L, 16)\n\n  test(\"unapply\") {\n    val joinExpression = EqualTo.apply(Literal(leftChildPlan.start), Literal(rightChildPlan.start))\n    val joinPlan = Join.apply(leftChildPlan, rightChildPlan, JoinType.apply(\"inner\"), Option(joinExpression))\n    val returnedOption = JoinExtractor.unapply(joinPlan)\n    assert(returnedOption.isDefined)\n    assert(returnedOption.get._1 == JoinType.apply(\"inner\"))\n    assert(returnedOption.get._2 == Option(joinExpression))\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-2.4-bigquery-pushdown_2.11/src/test/scala/com/google/cloud/spark/bigquery/pushdowns/Spark24BigQueryStrategySuite.scala",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\npackage com.google.cloud.spark.bigquery.pushdowns\n\nimport com.google.cloud.spark.bigquery.SupportsQueryPushdown\nimport com.google.cloud.spark.bigquery.direct.BigQueryRDDFactory\nimport org.apache.spark.sql.catalyst.{InternalRow, TableIdentifier}\nimport org.apache.spark.sql.catalyst.expressions.{Alias, AttributeReference, ExprId, Expression}\nimport org.apache.spark.sql.catalyst.plans.logical.Range\nimport org.apache.spark.sql.execution.datasources.v2.DataSourceV2Relation\nimport org.apache.spark.sql.sources.v2.reader.{DataSourceReader, InputPartition}\nimport org.apache.spark.sql.types.{LongType, Metadata, StructType}\nimport org.mockito.Mockito.when\nimport org.mockito.{Mock, MockitoAnnotations}\nimport org.scalatest.BeforeAndAfter\nimport org.scalatest.funsuite.AnyFunSuite\n\nimport java.util\nimport java.util.Optional\n\nclass Spark24BigQueryStrategySuite extends AnyFunSuite with BeforeAndAfter {\n  @Mock\n  var sparkPlanFactoryMock: SparkPlanFactory = _\n\n  @Mock\n  var dataSourceV2Relation: DataSourceV2Relation = _\n\n  @Mock\n  var bigQueryRDDFactory: BigQueryRDDFactory = _\n\n  val expressionFactory: SparkExpressionFactory = new SparkExpressionFactory {\n    override def createAlias(child: Expression, name: String, exprId: ExprId, qualifier: Seq[String], explicitMetadata: Option[Metadata]): Alias = {\n      Alias(child, name)(exprId, qualifier, explicitMetadata)\n    }\n  }\n\n  val expressionConverter: SparkExpressionConverter = new Spark24ExpressionConverter(expressionFactory, sparkPlanFactoryMock)\n\n  val schoolIdAttributeReference: AttributeReference = AttributeReference.apply(\"SchoolID\", LongType)(ExprId.apply(1))\n\n  before {\n    MockitoAnnotations.initMocks(this)\n  }\n\n  test(\"generateQueryFromPlanForDataSourceV2 with unsupported node\") {\n    assert(new Spark24BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactoryMock)\n      .generateQueryFromPlanForDataSourceV2(Range.apply(2L, 100L, 4L, 8)).isEmpty)\n  }\n\n  test(\"generateQueryFromPlanForDataSourceV2 with unsupported query pushdown reader\") {\n    when(dataSourceV2Relation.newReader()).thenReturn(new MockDataSourceReaderWithoutQueryPushdown)\n\n    val bigQuerySQLQuery = new Spark24BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactoryMock)\n      .generateQueryFromPlanForDataSourceV2(dataSourceV2Relation)\n\n    assert(bigQuerySQLQuery.isEmpty)\n  }\n\n  test(\"generateQueryFromPlanForDataSourceV2 with table option set in DataSourceV2Relation node\") {\n    when(dataSourceV2Relation.newReader()).thenReturn(new MockDataSourceReaderWithQueryPushdown)\n    when(dataSourceV2Relation.output).thenReturn(Seq(schoolIdAttributeReference))\n    when(dataSourceV2Relation.tableIdent).thenReturn(None)\n    when(dataSourceV2Relation.options).thenReturn(Map(\"table\"-> \"MY_BIGQUERY_PROJECT.MY_BIGQUERY_DATASET.MY_BIGQUERY_TABLE\"))\n\n    val bigQuerySQLQuery = new Spark24BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactoryMock)\n      .generateQueryFromPlanForDataSourceV2(dataSourceV2Relation)\n\n    assert(bigQuerySQLQuery.isDefined)\n    assert(bigQuerySQLQuery.get.getStatement().toString == \"SELECT * FROM `MY_BIGQUERY_PROJECT.MY_BIGQUERY_DATASET.MY_BIGQUERY_TABLE` AS BQ_CONNECTOR_QUERY_ALIAS\")\n  }\n\n  test(\"generateQueryFromPlanForDataSourceV2 with path option set in DataSourceV2Relation node\") {\n    when(dataSourceV2Relation.newReader()).thenReturn(new MockDataSourceReaderWithQueryPushdown)\n    when(dataSourceV2Relation.output).thenReturn(Seq(schoolIdAttributeReference))\n    when(dataSourceV2Relation.tableIdent).thenReturn(None)\n    when(dataSourceV2Relation.options).thenReturn(Map(\"path\"-> \"MY_BIGQUERY_PROJECT.MY_BIGQUERY_DATASET.MY_BIGQUERY_TABLE\"))\n\n    val bigQuerySQLQuery = new Spark24BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactoryMock)\n      .generateQueryFromPlanForDataSourceV2(dataSourceV2Relation)\n\n    assert(bigQuerySQLQuery.isDefined)\n    assert(bigQuerySQLQuery.get.getStatement().toString == \"SELECT * FROM `MY_BIGQUERY_PROJECT.MY_BIGQUERY_DATASET.MY_BIGQUERY_TABLE` AS BQ_CONNECTOR_QUERY_ALIAS\")\n  }\n\n  class MockDataSourceReaderWithQueryPushdown extends DataSourceReader with SupportsQueryPushdown {\n    override def readSchema(): StructType = null\n\n    override def planInputPartitions(): util.List[InputPartition[InternalRow]] = null\n\n    override def getBigQueryRDDFactory: BigQueryRDDFactory = bigQueryRDDFactory\n\n    override def getPushdownFilters: Optional[String] = Optional.empty()\n  }\n\n  class MockDataSourceReaderWithoutQueryPushdown extends DataSourceReader {\n    override def readSchema(): StructType = null\n\n    override def planInputPartitions(): util.List[InputPartition[InternalRow]] = null\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-2.4-bigquery-pushdown_2.11/src/test/scala/com/google/cloud/spark/bigquery/pushdowns/Spark24ExpressionConverterSuite.scala",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.pushdowns\n\nimport com.google.cloud.spark.bigquery.direct.DirectBigQueryRelation\nimport org.apache.spark.sql.catalyst.expressions.{AttributeReference, CheckOverflow, ExprId, Like, Literal, ScalarSubquery, UnaryMinus}\nimport org.apache.spark.sql.catalyst.plans.logical.Aggregate\nimport org.apache.spark.sql.execution.datasources.LogicalRelation\nimport org.apache.spark.sql.types.{DecimalType, LongType, StringType, StructType, TimestampType}\nimport org.mockito.Mockito.when\nimport org.mockito.{Mock, MockitoAnnotations}\nimport org.scalatest.BeforeAndAfter\nimport org.scalatest.funsuite.AnyFunSuite\n\nclass Spark24ExpressionConverterSuite extends AnyFunSuite with BeforeAndAfter {\n  @Mock\n  var directBigQueryRelationMock: DirectBigQueryRelation = _\n  @Mock\n  var sparkPlanFactoryMock: SparkPlanFactory = _\n\n  private val expressionFactory = new Spark24ExpressionFactory\n  private val expressionConverter = new Spark24ExpressionConverter(expressionFactory, sparkPlanFactoryMock)\n  private val fields = List(AttributeReference.apply(\"SchoolID\", LongType)(ExprId.apply(1), List(\"SUBQUERY_2\")))\n\n  before {\n    MockitoAnnotations.initMocks(this)\n  }\n\n  test(\"convertMiscellaneousExpressions with ScalarSubquery\") {\n    when(directBigQueryRelationMock.schema).thenReturn(StructType.apply(Seq()))\n    when(directBigQueryRelationMock.getTableName).thenReturn(\"MY_BIGQUERY_TABLE\")\n    val logicalRelation = LogicalRelation(directBigQueryRelationMock)\n    val aggregatePlan = Aggregate(Seq(), Seq(), logicalRelation)\n    val scalarSubQueryExpression = ScalarSubquery.apply(aggregatePlan)\n    val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(scalarSubQueryExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"( SELECT * FROM ( SELECT * FROM `MY_BIGQUERY_TABLE` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_0 LIMIT 1 )\")\n  }\n\n  test(\"convertMathematicalExpressions with UnaryMinus\") {\n    val unaryMinusExpression = UnaryMinus.apply(Literal.apply(10))\n    val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(unaryMinusExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"- ( 10 )\")\n  }\n\n  test(\"convertMathematicalExpressions with CheckOverflow\") {\n    val checkOverflowExpression = CheckOverflow.apply(Literal.apply(233.45), DecimalType.apply(38, 10))\n    val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(checkOverflowExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"CAST ( 233.45 AS BIGDECIMAL )\")\n  }\n\n  test(\"convertBasicExpressions with Timestamp literal\") {\n    // Internally, a timestamp is stored as the number of microseconds from the epoch of 1970-01-01T00\n    val bigQuerySQLStatement = expressionConverter.convertBasicExpressions(Literal(1230219000000000L, TimestampType), fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"TIMESTAMP_MICROS( 1230219000000000 )\")\n  }\n\n  test(\"convertStringExpressions with Like\") {\n    val bigQuerySQLStatement = expressionConverter.convertStringExpressions(\n      Like(AttributeReference.apply(\"SchoolID\", StringType)(ExprId.apply(1)),\n        Literal(\"%aug%urs%\")), fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"SUBQUERY_2.SCHOOLID LIKE '%aug%urs%'\")\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-2.4-bigquery-pushdown_2.12/pom.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n    xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n    xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\">\n  <parent>\n    <artifactId>spark-bigquery-pushdown-parent</artifactId>\n    <groupId>com.google.cloud.spark</groupId>\n    <version>${revision}</version>\n    <relativePath>../spark-bigquery-pushdown-parent</relativePath>\n  </parent>\n  <modelVersion>4.0.0</modelVersion>\n\n  <artifactId>spark-2.4-bigquery-pushdown_2.12</artifactId>\n\n  <properties>\n    <scala.binary.version>2.12</scala.binary.version>\n    <scala.version>2.12.18</scala.version>\n    <spark.version>2.4.0</spark.version>\n  </properties>\n\n  <dependencies>\n    <dependency>\n      <groupId>${project.groupId}</groupId>\n      <artifactId>spark-bigquery-pushdown-common_${scala.binary.version}</artifactId>\n      <version>${project.version}</version>\n    </dependency>\n    <dependency>\n      <groupId>org.apache.spark</groupId>\n      <artifactId>spark-sql_${scala.binary.version}</artifactId>\n      <version>${spark.version}</version>\n      <scope>provided</scope>\n    </dependency>\n  </dependencies>\n\n  <build>\n    <plugins>\n      <!-- make sure we don't have any _2.10 or _2.11 dependencies when building\n      for Scala 2.12 -->\n      <plugin>\n        <groupId>org.apache.maven.plugins</groupId>\n        <artifactId>maven-enforcer-plugin</artifactId>\n        <version>3.0.0-M3</version>\n        <executions>\n          <execution>\n            <id>enforce-versions</id>\n            <goals>\n              <goal>enforce</goal>\n            </goals>\n            <configuration>\n              <rules>\n                <bannedDependencies>\n                  <excludes combine.children=\"append\">\n                    <exclude>*:*_2.10</exclude>\n                    <exclude>*:*_2.11</exclude>\n                  </excludes>\n                </bannedDependencies>\n              </rules>\n            </configuration>\n          </execution>\n        </executions>\n      </plugin>\n    </plugins>\n  </build>\n</project>\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-2.4-bigquery-pushdown_2.12/src/main/resources/META-INF/services/com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdown",
    "content": "com.google.cloud.spark.bigquery.pushdowns.Spark24BigQueryPushdown\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-2.4-bigquery-pushdown_2.12/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark24BigQueryPushdown.scala",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\npackage com.google.cloud.spark.bigquery.pushdowns\n\nclass Spark24BigQueryPushdown extends BaseSparkBigQueryPushdown {\n\n  override def supportsSparkVersion(sparkVersion: String): Boolean = {\n    sparkVersion.startsWith(\"2.4\")\n  }\n\n  override def createSparkExpressionConverter(expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory): SparkExpressionConverter = {\n    new Spark24ExpressionConverter(expressionFactory, sparkPlanFactory)\n  }\n\n  override def createSparkExpressionFactory: SparkExpressionFactory = {\n    new Spark24ExpressionFactory\n  }\n\n  override def createBigQueryStrategy(expressionConverter: SparkExpressionConverter, expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory): BigQueryStrategy = {\n    new Spark24BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactory)\n  }\n\n  override def createSparkPlanFactory(): SparkPlanFactory = {\n    new Spark24PlanFactory\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-2.4-bigquery-pushdown_2.12/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark24BigQueryPushdownPlan.scala",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.pushdowns\n\nimport com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdownUtil.doExecuteSparkPlan\nimport org.apache.spark.rdd.RDD\nimport org.apache.spark.sql.catalyst.InternalRow\nimport org.apache.spark.sql.catalyst.expressions.Attribute\nimport org.apache.spark.sql.execution.SparkPlan\n\n/** BigQueryPlan, with RDD defined by custom query. */\ncase class Spark24BigQueryPushdownPlan(output: Seq[Attribute], rdd: RDD[InternalRow])\n  extends SparkPlan {\n\n  override def children: Seq[SparkPlan] = Nil\n\n  protected override def doExecute(): RDD[InternalRow] = {\n    doExecuteSparkPlan(output, rdd)\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-2.4-bigquery-pushdown_2.12/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark24BigQueryStrategy.scala",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.pushdowns\n\nimport com.google.cloud.spark.bigquery.{SparkBigQueryUtil, SupportsQueryPushdown}\nimport org.apache.spark.sql.catalyst.plans.logical.LogicalPlan\nimport org.apache.spark.sql.execution.datasources.v2.DataSourceV2Relation\n\nimport scala.collection.JavaConverters._\n\nclass Spark24BigQueryStrategy(expressionConverter: SparkExpressionConverter, expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory)\n  extends BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactory) {\n  override def generateQueryFromPlanForDataSourceV2(plan: LogicalPlan): Option[BigQuerySQLQuery] = {\n    // DataSourceV2Relation is the relation that is used in the Spark 2.4 DatasourceV2 connector\n    plan match {\n      case relation@DataSourceV2Relation(_, _, _, _, _) =>\n        // Get the reader and cast it to SupportsQueryPushdown to get the BigQueryRDDFactory\n        relation.newReader() match {\n          case reader: SupportsQueryPushdown =>\n            Some(SourceQuery(expressionConverter, expressionFactory, reader.getBigQueryRDDFactory,\n              SparkBigQueryUtil.getTableNameFromOptions(relation.options.asJava),\n              relation.output, alias.next))\n\n          case _ => None\n        }\n\n      // We should never reach here\n      case _ => None\n    }\n  }\n\n  override def createUnionQuery(children: Seq[LogicalPlan]): Option[BigQuerySQLQuery] = {\n    val queries: Seq[BigQuerySQLQuery] = children.map { child =>\n      new Spark24BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactory).generateQueryFromPlan(child).get\n    }\n    Some(UnionQuery(expressionConverter, expressionFactory, queries, alias.next))\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-2.4-bigquery-pushdown_2.12/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark24ExpressionConverter.scala",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\npackage com.google.cloud.spark.bigquery.pushdowns\n\nimport com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdownUtil.blockStatement\nimport org.apache.spark.sql.catalyst.expressions.{Attribute, Cast, CheckOverflow, Expression, Like, ScalarSubquery, UnaryMinus}\nimport org.apache.spark.sql.catalyst.plans.logical.LogicalPlan\n\n/**\n * Convert Spark 2.4 specific expressions to SQL\n */\nclass Spark24ExpressionConverter(expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory) extends SparkExpressionConverter {\n  override def convertScalarSubqueryExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = {\n    expression match {\n      case ScalarSubquery(plan, _, _) =>\n        blockStatement(new Spark24BigQueryStrategy(this, expressionFactory, sparkPlanFactory)\n          .generateQueryFromPlan(plan).get.getStatement())\n    }\n  }\n\n  override def convertCheckOverflowExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = {\n    expression match {\n      case CheckOverflow(child, t) =>\n        getCastType(t) match {\n          case Some(cast) =>\n            ConstantString(\"CAST\") +\n              blockStatement(convertStatement(child, fields) + \"AS\" + cast)\n          case _ => convertStatement(child, fields)\n        }\n    }\n  }\n\n  override def convertUnaryMinusExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = {\n    expression match {\n      case UnaryMinus(child) =>\n        ConstantString(\"-\") +\n          blockStatement(convertStatement(child, fields))\n    }\n  }\n\n  override def convertCastExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = {\n    expression match {\n      case Cast(child, dataType, _) =>\n        performCastExpressionConversion(child, fields, dataType)\n    }\n  }\n\n  override def convertLikeExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = {\n    expression match {\n      case Like(left, right) =>\n        convertStatement(left, fields) + \"LIKE\" + convertStatement(right, fields)\n    }\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-2.4-bigquery-pushdown_2.12/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark24ExpressionFactory.scala",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.pushdowns\n\nimport org.apache.spark.sql.catalyst.expressions.{Alias, ExprId, Expression}\nimport org.apache.spark.sql.types.Metadata\n\nclass Spark24ExpressionFactory extends SparkExpressionFactory {\n  override def createAlias(child: Expression, name: String, exprId: ExprId, qualifier: Seq[String], explicitMetadata: Option[Metadata]): Alias = {\n    Alias(child, name)(exprId, qualifier, explicitMetadata)\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-2.4-bigquery-pushdown_2.12/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark24PlanFactory.scala",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.pushdowns\n\nimport com.google.cloud.spark.bigquery.direct.BigQueryRDDFactory\nimport org.apache.spark.sql.execution.SparkPlan\n\nclass Spark24PlanFactory extends SparkPlanFactory {\n  /**\n   * Generate SparkPlan from the output and RDD of the translated query\n   */\n  override def createBigQueryPlan(queryRoot: BigQuerySQLQuery, bigQueryRDDFactory: BigQueryRDDFactory): Option[SparkPlan] = {\n    Some(Spark24BigQueryPushdownPlan(queryRoot.output, bigQueryRDDFactory.buildScanFromSQL(queryRoot.getStatement().toString)))\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-2.4-bigquery-pushdown_2.12/src/test/scala/com/google/cloud/spark/bigquery/pushdowns/Spark24BigQueryStrategySuite.scala",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\npackage com.google.cloud.spark.bigquery.pushdowns\n\nimport com.google.cloud.spark.bigquery.SupportsQueryPushdown\nimport com.google.cloud.spark.bigquery.direct.BigQueryRDDFactory\nimport org.apache.spark.sql.catalyst.{InternalRow, TableIdentifier}\nimport org.apache.spark.sql.catalyst.expressions.{Alias, AttributeReference, ExprId, Expression}\nimport org.apache.spark.sql.catalyst.plans.logical.Range\nimport org.apache.spark.sql.execution.datasources.v2.DataSourceV2Relation\nimport org.apache.spark.sql.sources.v2.reader.{DataSourceReader, InputPartition}\nimport org.apache.spark.sql.types.{LongType, Metadata, StructType}\nimport org.mockito.Mockito.when\nimport org.mockito.{Mock, MockitoAnnotations}\nimport org.scalatest.BeforeAndAfter\nimport org.scalatest.funsuite.AnyFunSuite\n\nimport java.util\nimport java.util.Optional\n\nclass Spark24BigQueryStrategySuite extends AnyFunSuite with BeforeAndAfter {\n  @Mock\n  var sparkPlanFactoryMock: SparkPlanFactory = _\n\n  @Mock\n  var dataSourceV2Relation: DataSourceV2Relation = _\n\n  @Mock\n  var bigQueryRDDFactory: BigQueryRDDFactory = _\n\n  val expressionFactory: SparkExpressionFactory = new SparkExpressionFactory {\n    override def createAlias(child: Expression, name: String, exprId: ExprId, qualifier: Seq[String], explicitMetadata: Option[Metadata]): Alias = {\n      Alias(child, name)(exprId, qualifier, explicitMetadata)\n    }\n  }\n\n  val expressionConverter: SparkExpressionConverter = new Spark24ExpressionConverter(expressionFactory, sparkPlanFactoryMock)\n\n  val schoolIdAttributeReference: AttributeReference = AttributeReference.apply(\"SchoolID\", LongType)(ExprId.apply(1))\n\n  before {\n    MockitoAnnotations.initMocks(this)\n  }\n\n  test(\"generateQueryFromPlanForDataSourceV2 with unsupported node\") {\n    assert(new Spark24BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactoryMock)\n      .generateQueryFromPlanForDataSourceV2(Range.apply(2L, 100L, 4L, 8)).isEmpty)\n  }\n\n  test(\"generateQueryFromPlanForDataSourceV2 with unsupported query pushdown reader\") {\n    when(dataSourceV2Relation.newReader()).thenReturn(new MockDataSourceReaderWithoutQueryPushdown)\n\n    val bigQuerySQLQuery = new Spark24BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactoryMock)\n      .generateQueryFromPlanForDataSourceV2(dataSourceV2Relation)\n\n    assert(bigQuerySQLQuery.isEmpty)\n  }\n\n  test(\"generateQueryFromPlanForDataSourceV2 with table option set in DataSourceV2Relation node\") {\n    when(dataSourceV2Relation.newReader()).thenReturn(new MockDataSourceReaderWithQueryPushdown)\n    when(dataSourceV2Relation.output).thenReturn(Seq(schoolIdAttributeReference))\n    when(dataSourceV2Relation.tableIdent).thenReturn(None)\n    when(dataSourceV2Relation.options).thenReturn(Map(\"table\"-> \"MY_BIGQUERY_PROJECT.MY_BIGQUERY_DATASET.MY_BIGQUERY_TABLE\"))\n\n    val bigQuerySQLQuery = new Spark24BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactoryMock)\n      .generateQueryFromPlanForDataSourceV2(dataSourceV2Relation)\n\n    assert(bigQuerySQLQuery.isDefined)\n    assert(bigQuerySQLQuery.get.getStatement().toString == \"SELECT * FROM `MY_BIGQUERY_PROJECT.MY_BIGQUERY_DATASET.MY_BIGQUERY_TABLE` AS BQ_CONNECTOR_QUERY_ALIAS\")\n  }\n\n  test(\"generateQueryFromPlanForDataSourceV2 with path option set in DataSourceV2Relation node\") {\n    when(dataSourceV2Relation.newReader()).thenReturn(new MockDataSourceReaderWithQueryPushdown)\n    when(dataSourceV2Relation.output).thenReturn(Seq(schoolIdAttributeReference))\n    when(dataSourceV2Relation.tableIdent).thenReturn(None)\n    when(dataSourceV2Relation.options).thenReturn(Map(\"path\"-> \"MY_BIGQUERY_PROJECT.MY_BIGQUERY_DATASET.MY_BIGQUERY_TABLE\"))\n\n    val bigQuerySQLQuery = new Spark24BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactoryMock)\n      .generateQueryFromPlanForDataSourceV2(dataSourceV2Relation)\n\n    assert(bigQuerySQLQuery.isDefined)\n    assert(bigQuerySQLQuery.get.getStatement().toString == \"SELECT * FROM `MY_BIGQUERY_PROJECT.MY_BIGQUERY_DATASET.MY_BIGQUERY_TABLE` AS BQ_CONNECTOR_QUERY_ALIAS\")\n  }\n\n  class MockDataSourceReaderWithQueryPushdown extends DataSourceReader with SupportsQueryPushdown {\n    override def readSchema(): StructType = null\n\n    override def planInputPartitions(): util.List[InputPartition[InternalRow]] = null\n\n    override def getBigQueryRDDFactory: BigQueryRDDFactory = bigQueryRDDFactory\n\n    override def getPushdownFilters: Optional[String] = Optional.empty()\n  }\n\n  class MockDataSourceReaderWithoutQueryPushdown extends DataSourceReader {\n    override def readSchema(): StructType = null\n\n    override def planInputPartitions(): util.List[InputPartition[InternalRow]] = null\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-2.4-bigquery-pushdown_2.12/src/test/scala/com/google/cloud/spark/bigquery/pushdowns/Spark24ExpressionConverterSuite.scala",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.pushdowns\n\nimport com.google.cloud.spark.bigquery.direct.DirectBigQueryRelation\nimport org.apache.spark.sql.catalyst.expressions.{AttributeReference, CheckOverflow, ExprId, Like, Literal, ScalarSubquery, UnaryMinus}\nimport org.apache.spark.sql.catalyst.plans.logical.Aggregate\nimport org.apache.spark.sql.execution.datasources.LogicalRelation\nimport org.apache.spark.sql.types.{DecimalType, LongType, StringType, StructType, TimestampType}\nimport org.mockito.Mockito.when\nimport org.mockito.{Mock, MockitoAnnotations}\nimport org.scalatest.BeforeAndAfter\nimport org.scalatest.funsuite.AnyFunSuite\n\nclass Spark24ExpressionConverterSuite extends AnyFunSuite with BeforeAndAfter {\n  @Mock\n  var directBigQueryRelationMock: DirectBigQueryRelation = _\n  @Mock\n  var sparkPlanFactoryMock: SparkPlanFactory = _\n\n  private val expressionFactory = new Spark24ExpressionFactory\n  private val expressionConverter = new Spark24ExpressionConverter(expressionFactory, sparkPlanFactoryMock)\n  private val fields = List(AttributeReference.apply(\"SchoolID\", LongType)(ExprId.apply(1), List(\"SUBQUERY_2\")))\n\n  before {\n    MockitoAnnotations.initMocks(this)\n  }\n\n  test(\"convertMiscellaneousExpressions with ScalarSubquery\") {\n    when(directBigQueryRelationMock.schema).thenReturn(StructType.apply(Seq()))\n    when(directBigQueryRelationMock.getTableName).thenReturn(\"MY_BIGQUERY_TABLE\")\n    val logicalRelation = LogicalRelation(directBigQueryRelationMock)\n    val aggregatePlan = Aggregate(Seq(), Seq(), logicalRelation)\n    val scalarSubQueryExpression = ScalarSubquery.apply(aggregatePlan)\n    val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(scalarSubQueryExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"( SELECT * FROM ( SELECT * FROM `MY_BIGQUERY_TABLE` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_0 LIMIT 1 )\")\n  }\n\n  test(\"convertMathematicalExpressions with UnaryMinus\") {\n    val unaryMinusExpression = UnaryMinus.apply(Literal.apply(10))\n    val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(unaryMinusExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"- ( 10 )\")\n  }\n\n  test(\"convertMathematicalExpressions with CheckOverflow\") {\n    val checkOverflowExpression = CheckOverflow.apply(Literal.apply(233.45), DecimalType.apply(38, 10))\n    val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(checkOverflowExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"CAST ( 233.45 AS BIGDECIMAL )\")\n  }\n\n  test(\"convertBasicExpressions with Timestamp literal\") {\n    // Internally, a timestamp is stored as the number of microseconds from the epoch of 1970-01-01T00\n    val bigQuerySQLStatement = expressionConverter.convertBasicExpressions(Literal(1230219000000000L, TimestampType), fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"TIMESTAMP_MICROS( 1230219000000000 )\")\n  }\n\n  test(\"convertStringExpressions with Like\") {\n    val bigQuerySQLStatement = expressionConverter.convertStringExpressions(\n      Like(AttributeReference.apply(\"SchoolID\", StringType)(ExprId.apply(1)),\n        Literal(\"%aug%urs%\")), fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"SUBQUERY_2.SCHOOLID LIKE '%aug%urs%'\")\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-3.1-bigquery-pushdown_2.12/pom.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n    xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n    xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\">\n  <parent>\n    <artifactId>spark-bigquery-pushdown-parent</artifactId>\n    <groupId>com.google.cloud.spark</groupId>\n    <version>${revision}</version>\n    <relativePath>../spark-bigquery-pushdown-parent</relativePath>\n  </parent>\n  <modelVersion>4.0.0</modelVersion>\n\n  <artifactId>spark-3.1-bigquery-pushdown_2.12</artifactId>\n\n  <properties>\n    <scala.binary.version>2.12</scala.binary.version>\n    <scala.version>2.12.18</scala.version>\n    <spark.version>3.1.0</spark.version>\n  </properties>\n\n  <dependencies>\n    <dependency>\n      <groupId>${project.groupId}</groupId>\n      <artifactId>spark-bigquery-pushdown-common_${scala.binary.version}</artifactId>\n      <version>${project.version}</version>\n    </dependency>\n    <dependency>\n      <groupId>org.apache.spark</groupId>\n      <artifactId>spark-sql_${scala.binary.version}</artifactId>\n      <version>${spark.version}</version>\n      <scope>provided</scope>\n    </dependency>\n  </dependencies>\n\n  <build>\n    <plugins>\n      <!-- make sure we don't have any _2.10 or _2.11 dependencies when building\n      for Scala 2.12 -->\n      <plugin>\n        <groupId>org.apache.maven.plugins</groupId>\n        <artifactId>maven-enforcer-plugin</artifactId>\n        <version>3.0.0-M3</version>\n        <executions>\n          <execution>\n            <id>enforce-versions</id>\n            <goals>\n              <goal>enforce</goal>\n            </goals>\n            <configuration>\n              <rules>\n                <bannedDependencies>\n                  <excludes combine.children=\"append\">\n                    <exclude>*:*_2.10</exclude>\n                    <exclude>*:*_2.11</exclude>\n                  </excludes>\n                </bannedDependencies>\n              </rules>\n            </configuration>\n          </execution>\n        </executions>\n      </plugin>\n    </plugins>\n  </build>\n</project>\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-3.1-bigquery-pushdown_2.12/src/main/resources/META-INF/services/com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdown",
    "content": "com.google.cloud.spark.bigquery.pushdowns.Spark31BigQueryPushdown\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-3.1-bigquery-pushdown_2.12/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark31BigQueryPushdown.scala",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\npackage com.google.cloud.spark.bigquery.pushdowns\n\nclass Spark31BigQueryPushdown extends BaseSparkBigQueryPushdown {\n\n  override def supportsSparkVersion(sparkVersion: String): Boolean = {\n    sparkVersion.startsWith(\"3.1\")\n  }\n\n  override def createSparkExpressionConverter(expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory): SparkExpressionConverter = {\n    new Spark31ExpressionConverter(expressionFactory, sparkPlanFactory)\n  }\n\n  override def createSparkExpressionFactory: SparkExpressionFactory = {\n    new Spark31ExpressionFactory\n  }\n\n  override def createBigQueryStrategy(expressionConverter: SparkExpressionConverter, expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory): BigQueryStrategy = {\n    new Spark31BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactory)\n  }\n\n  override def createSparkPlanFactory(): SparkPlanFactory = {\n    new Spark31PlanFactory\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-3.1-bigquery-pushdown_2.12/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark31BigQueryPushdownPlan.scala",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.pushdowns\n\nimport com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdownUtil.doExecuteSparkPlan\nimport org.apache.spark.rdd.RDD\nimport org.apache.spark.sql.catalyst.InternalRow\nimport org.apache.spark.sql.catalyst.expressions.Attribute\nimport org.apache.spark.sql.execution.SparkPlan\n\n/** BigQueryPlan, with RDD defined by custom query. */\ncase class Spark31BigQueryPushdownPlan(output: Seq[Attribute], rdd: RDD[InternalRow])\n  extends SparkPlan {\n\n  override def children: Seq[SparkPlan] = Nil\n\n  protected override def doExecute(): RDD[InternalRow] = {\n    doExecuteSparkPlan(output, rdd)\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-3.1-bigquery-pushdown_2.12/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark31BigQueryStrategy.scala",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.pushdowns\nimport com.google.cloud.spark.bigquery.{SparkBigQueryUtil, SupportsQueryPushdown}\nimport org.apache.spark.sql.catalyst.plans.logical.LogicalPlan\nimport org.apache.spark.sql.execution.datasources.v2.DataSourceV2ScanRelation\n\nclass Spark31BigQueryStrategy(expressionConverter: SparkExpressionConverter, expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory)\n  extends BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactory) {\n  override def generateQueryFromPlanForDataSourceV2(plan: LogicalPlan): Option[BigQuerySQLQuery] = {\n    // DataSourceV2ScanRelation is the relation that is used in the Spark 3.1 DatasourceV2 connector\n    plan match {\n      case scanRelation@DataSourceV2ScanRelation(_, _, _) =>\n        scanRelation.scan match {\n          case scan: SupportsQueryPushdown =>\n            Some(SourceQuery(expressionConverter = expressionConverter,\n              expressionFactory = expressionFactory,\n              bigQueryRDDFactory = scan.getBigQueryRDDFactory,\n              tableName = SparkBigQueryUtil.getTableNameFromOptions(scanRelation.relation.options.asInstanceOf[java.util.Map[String, String]]),\n              outputAttributes = scanRelation.output,\n              alias = alias.next,\n              pushdownFilters = if (scan.getPushdownFilters.isPresent) Some(scan.getPushdownFilters.get) else None\n            ))\n\n          case _ => None\n        }\n\n      // We should never reach here\n      case _ => None\n    }\n  }\n\n  override def createUnionQuery(children: Seq[LogicalPlan]): Option[BigQuerySQLQuery] = {\n    val queries: Seq[BigQuerySQLQuery] = children.map { child =>\n      new Spark31BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactory).generateQueryFromPlan(child).get\n    }\n    Some(UnionQuery(expressionConverter, expressionFactory, queries, alias.next))\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-3.1-bigquery-pushdown_2.12/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark31ExpressionConverter.scala",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\npackage com.google.cloud.spark.bigquery.pushdowns\nimport com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdownUtil.blockStatement\nimport org.apache.spark.sql.catalyst.expressions.{Attribute, Cast, CheckOverflow, Expression, Like, ScalarSubquery, UnaryMinus}\nimport org.apache.spark.sql.catalyst.plans.logical.LogicalPlan\n\n/**\n * Convert Spark 3.1 specific expressions to SQL\n */\nclass Spark31ExpressionConverter(expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory) extends SparkExpressionConverter() {\n  override def convertScalarSubqueryExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = {\n    expression match {\n      case ScalarSubquery(plan, _, _) =>\n        blockStatement(new Spark31BigQueryStrategy(this, expressionFactory, sparkPlanFactory)\n          .generateQueryFromPlan(plan).get.getStatement())\n    }\n  }\n\n  override def convertCheckOverflowExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = {\n    expression match {\n      case CheckOverflow(child, t, _) =>\n        getCastType(t) match {\n          case Some(cast) =>\n            ConstantString(\"CAST\") +\n              blockStatement(convertStatement(child, fields) + \"AS\" + cast)\n          case _ => convertStatement(child, fields)\n        }\n    }\n  }\n\n  override def convertUnaryMinusExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = {\n    expression match {\n      case UnaryMinus(child, _) =>\n        ConstantString(\"-\") +\n          blockStatement(convertStatement(child, fields))\n    }\n  }\n\n  override def convertCastExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = {\n    expression match {\n      case Cast(child, dataType, _) =>\n        performCastExpressionConversion(child, fields, dataType)\n    }\n  }\n\n  override def convertLikeExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = {\n    expression match {\n      case Like(left, right, _) =>\n        convertStatement(left, fields) + \"LIKE\" + convertStatement(right, fields)\n    }\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-3.1-bigquery-pushdown_2.12/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark31ExpressionFactory.scala",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.pushdowns\n\nimport org.apache.spark.sql.catalyst.expressions.{Alias, ExprId, Expression}\nimport org.apache.spark.sql.types.Metadata\n\nclass Spark31ExpressionFactory extends SparkExpressionFactory {\n  override def createAlias(child: Expression, name: String, exprId: ExprId, qualifier: Seq[String], explicitMetadata: Option[Metadata]): Alias = {\n    Alias(child, name)(exprId, qualifier, explicitMetadata)\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-3.1-bigquery-pushdown_2.12/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark31PlanFactory.scala",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.pushdowns\n\nimport com.google.cloud.spark.bigquery.direct.BigQueryRDDFactory\nimport org.apache.spark.sql.execution.SparkPlan\n\nclass Spark31PlanFactory extends SparkPlanFactory {\n  /**\n   * Generate SparkPlan from the output and RDD of the translated query\n   */\n  override def createBigQueryPlan(queryRoot: BigQuerySQLQuery, bigQueryRDDFactory: BigQueryRDDFactory): Option[SparkPlan] = {\n    Some(Spark31BigQueryPushdownPlan(queryRoot.output, bigQueryRDDFactory.buildScanFromSQL(queryRoot.getStatement().toString)))\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-3.1-bigquery-pushdown_2.12/src/test/scala/com/google/cloud/spark/bigquery/pushdowns/BinaryOperationExtractorSuite.scala",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\npackage com.google.cloud.spark.bigquery.pushdowns\n\nimport org.apache.spark.sql.catalyst.plans.JoinType\nimport org.apache.spark.sql.catalyst.plans.logical.{Intersect, Join, JoinHint, Range}\nimport org.scalatest.funsuite.AnyFunSuite\n\nclass BinaryOperationExtractorSuite extends AnyFunSuite  {\n\n  // Need a childPlan to pass. So, create the simplest possible\n  private val leftChildPlan = Range.apply(2L, 100L, 4L, 8)\n  private val rightChildPlan = Range.apply(2L, 100L, 4L, 10)\n\n  test(\"supported binary node\") {\n    val joinPlan = Join(leftChildPlan, rightChildPlan, JoinType.apply(\"inner\"), None, JoinHint.NONE)\n    val plan = BinaryOperationExtractor.unapply(joinPlan)\n    assert(plan.isDefined)\n    assert(plan.get.children.head == leftChildPlan)\n    assert(plan.get.children(1) == rightChildPlan)\n  }\n\n  test(\"non supported binary node\") {\n    val unsupportedPlan = Intersect(leftChildPlan, rightChildPlan, isAll = true)\n    val plan = BinaryOperationExtractor.unapply(unsupportedPlan)\n    assert(plan.isEmpty)\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-3.1-bigquery-pushdown_2.12/src/test/scala/com/google/cloud/spark/bigquery/pushdowns/JoinExtractorSuite.scala",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\npackage com.google.cloud.spark.bigquery.pushdowns\n\nimport org.apache.spark.sql.catalyst.expressions.{EqualTo, Literal}\nimport org.apache.spark.sql.catalyst.plans.JoinType\nimport org.apache.spark.sql.catalyst.plans.logical.{Join, JoinHint, Range}\nimport org.scalatest.funsuite.AnyFunSuite\n\nclass JoinExtractorSuite extends AnyFunSuite {\n  // Need a childPlan to pass. So, create the simplest possible\n  private val leftChildPlan = Range.apply(2L, 100L, 4L, 8)\n\n  // Need a childPlan to pass. So, create the simplest possible\n  private val rightChildPlan = Range.apply(2L, 100L, 4L, 16)\n\n  test(\"unapply\") {\n    val joinExpression = EqualTo.apply(Literal(leftChildPlan.start), Literal(rightChildPlan.start))\n    val joinPlan = Join.apply(leftChildPlan, rightChildPlan, JoinType.apply(\"inner\"), Option(joinExpression), JoinHint.NONE)\n    val returnedOption = JoinExtractor.unapply(joinPlan)\n    assert(returnedOption.isDefined)\n    assert(returnedOption.get._1 == JoinType.apply(\"inner\"))\n    assert(returnedOption.get._2 == Option(joinExpression))\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-3.1-bigquery-pushdown_2.12/src/test/scala/com/google/cloud/spark/bigquery/pushdowns/Spark31BigQueryStrategySuite.scala",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.pushdowns\n\nimport com.google.cloud.spark.bigquery.SupportsQueryPushdown\nimport com.google.cloud.spark.bigquery.direct.BigQueryRDDFactory\nimport org.apache.spark.sql.catalyst.expressions.{Alias, AttributeReference, ExprId, Expression}\nimport org.apache.spark.sql.catalyst.plans.logical.Range\nimport org.apache.spark.sql.connector.read.Scan\nimport org.apache.spark.sql.execution.datasources.v2.{DataSourceV2Relation, DataSourceV2ScanRelation}\nimport org.apache.spark.sql.types.{LongType, Metadata, StructType}\nimport org.apache.spark.sql.util.CaseInsensitiveStringMap\nimport org.mockito.Mockito.when\nimport org.mockito.{Mock, MockitoAnnotations}\nimport org.scalatest.BeforeAndAfter\nimport org.scalatest.funsuite.AnyFunSuite\n\nimport java.util\nimport java.util.Optional\n\nclass Spark31BigQueryStrategySuite extends AnyFunSuite with BeforeAndAfter {\n  @Mock\n  var sparkPlanFactoryMock: SparkPlanFactory = _\n\n  @Mock\n  var bigQueryRDDFactory: BigQueryRDDFactory = _\n\n  @Mock\n  var dataSourceV2Relation: DataSourceV2Relation = _\n\n  @Mock\n  var dataSourceV2ScanRelation: DataSourceV2ScanRelation = _\n\n  val expressionFactory: SparkExpressionFactory = new SparkExpressionFactory {\n    override def createAlias(child: Expression, name: String, exprId: ExprId, qualifier: Seq[String], explicitMetadata: Option[Metadata]): Alias = {\n      Alias(child, name)(exprId, qualifier, explicitMetadata)\n    }\n  }\n\n  val expressionConverter: SparkExpressionConverter = new Spark31ExpressionConverter(expressionFactory, sparkPlanFactoryMock)\n\n  val schoolIdAttributeReference: AttributeReference = AttributeReference.apply(\"SchoolID\", LongType)(ExprId.apply(1))\n\n  before {\n    MockitoAnnotations.initMocks(this)\n  }\n\n  test(\"generateQueryFromPlanForDataSourceV2 with unsupported node\") {\n    assert(new Spark31BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactoryMock)\n      .generateQueryFromPlanForDataSourceV2(Range.apply(2L, 100L, 4L, 8)).isEmpty)\n  }\n\n  test(\"generateQueryFromPlanForDataSourceV2 with unsupported query pushdown scan\") {\n    when(dataSourceV2ScanRelation.scan).thenReturn(new MockScanWithoutQueryPushdown)\n\n    val bigQuerySQLQuery = new Spark31BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactoryMock)\n      .generateQueryFromPlanForDataSourceV2(dataSourceV2ScanRelation)\n\n    assert(bigQuerySQLQuery.isEmpty)\n  }\n\n  test(\"generateQueryFromPlanForDataSourceV2 with table option set in DataSourceV2Relation node\") {\n    when(dataSourceV2ScanRelation.scan).thenReturn(new MockScanWithQueryPushdown)\n    when(dataSourceV2ScanRelation.output).thenReturn(Seq(schoolIdAttributeReference))\n    when(dataSourceV2ScanRelation.relation).thenReturn(dataSourceV2Relation)\n\n    val caseInsensitiveStringMap = new CaseInsensitiveStringMap(new util.HashMap[String, String]() {{put(\"table\", \"MY_BIGQUERY_PROJECT.MY_BIGQUERY_DATASET.MY_BIGQUERY_TABLE\")}})\n\n    when(dataSourceV2Relation.options).thenReturn(caseInsensitiveStringMap)\n\n    val bigQuerySQLQuery = new Spark31BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactoryMock)\n      .generateQueryFromPlanForDataSourceV2(dataSourceV2ScanRelation)\n\n    assert(bigQuerySQLQuery.isDefined)\n    assert(bigQuerySQLQuery.get.getStatement().toString == \"SELECT * FROM `MY_BIGQUERY_PROJECT.MY_BIGQUERY_DATASET.MY_BIGQUERY_TABLE` AS BQ_CONNECTOR_QUERY_ALIAS WHERE foo = 1 AND bar = 2\")\n  }\n\n  test(\"generateQueryFromPlanForDataSourceV2 with path option set in DataSourceV2Relation node\") {\n    when(dataSourceV2ScanRelation.scan).thenReturn(new MockScanWithQueryPushdown)\n    when(dataSourceV2ScanRelation.output).thenReturn(Seq(schoolIdAttributeReference))\n    when(dataSourceV2ScanRelation.relation).thenReturn(dataSourceV2Relation)\n\n    val caseInsensitiveStringMap = new CaseInsensitiveStringMap(new util.HashMap[String, String]() {{put(\"path\", \"MY_BIGQUERY_PROJECT.MY_BIGQUERY_DATASET.MY_BIGQUERY_TABLE\")}})\n\n    when(dataSourceV2Relation.options).thenReturn(caseInsensitiveStringMap)\n\n    val bigQuerySQLQuery = new Spark31BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactoryMock)\n      .generateQueryFromPlanForDataSourceV2(dataSourceV2ScanRelation)\n\n    assert(bigQuerySQLQuery.isDefined)\n    assert(bigQuerySQLQuery.get.getStatement().toString == \"SELECT * FROM `MY_BIGQUERY_PROJECT.MY_BIGQUERY_DATASET.MY_BIGQUERY_TABLE` AS BQ_CONNECTOR_QUERY_ALIAS WHERE foo = 1 AND bar = 2\")\n  }\n\n  class MockScanWithQueryPushdown extends Scan with SupportsQueryPushdown {\n    override def getBigQueryRDDFactory: BigQueryRDDFactory = bigQueryRDDFactory\n\n    override def getPushdownFilters: Optional[String] = Optional.of(\"foo = 1 AND bar = 2\")\n\n    override def readSchema(): StructType = null\n  }\n\n  class MockScanWithoutQueryPushdown extends Scan {\n    override def readSchema(): StructType = null\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-3.1-bigquery-pushdown_2.12/src/test/scala/com/google/cloud/spark/bigquery/pushdowns/Spark31ExpressionConverterSuite.scala",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.pushdowns\n\nimport com.google.cloud.spark.bigquery.direct.DirectBigQueryRelation\nimport org.apache.spark.sql.catalyst.expressions.{AttributeReference, CheckOverflow, ExprId, Like, Literal, ScalarSubquery, UnaryMinus}\nimport org.apache.spark.sql.catalyst.plans.logical.Aggregate\nimport org.apache.spark.sql.execution.datasources.LogicalRelation\nimport org.apache.spark.sql.types.{DecimalType, LongType, StringType, StructType, TimestampType}\nimport org.mockito.Mockito.when\nimport org.mockito.{Mock, MockitoAnnotations}\nimport org.scalatest.BeforeAndAfter\nimport org.scalatest.funsuite.AnyFunSuite\n\nclass Spark31ExpressionConverterSuite extends AnyFunSuite with BeforeAndAfter {\n  @Mock\n  var directBigQueryRelationMock: DirectBigQueryRelation = _\n  @Mock\n  var sparkPlanFactoryMock: SparkPlanFactory = _\n\n  private val expressionFactory = new Spark31ExpressionFactory\n  private val expressionConverter = new Spark31ExpressionConverter(expressionFactory, sparkPlanFactoryMock)\n  private val fields = List(AttributeReference.apply(\"SchoolID\", LongType)(ExprId.apply(1), List(\"SUBQUERY_2\")))\n\n  before {\n    MockitoAnnotations.initMocks(this)\n  }\n\n  test(\"convertMiscellaneousExpressions with ScalarSubquery\") {\n    when(directBigQueryRelationMock.schema).thenReturn(StructType.apply(Seq()))\n    when(directBigQueryRelationMock.getTableName).thenReturn(\"MY_BIGQUERY_TABLE\")\n    val logicalRelation = LogicalRelation(directBigQueryRelationMock)\n    val aggregatePlan = Aggregate(Seq(), Seq(), logicalRelation)\n    val scalarSubQueryExpression = ScalarSubquery.apply(aggregatePlan)\n    val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(scalarSubQueryExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"( SELECT * FROM ( SELECT * FROM `MY_BIGQUERY_TABLE` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_0 LIMIT 1 )\")\n  }\n\n  test(\"convertMathematicalExpressions with UnaryMinus\") {\n    val unaryMinusExpression = UnaryMinus.apply(Literal.apply(10))\n    val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(unaryMinusExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"- ( 10 )\")\n  }\n\n  test(\"convertMathematicalExpressions with CheckOverflow\") {\n    val checkOverflowExpression = CheckOverflow.apply(Literal.apply(233.45), DecimalType.apply(38, 10), nullOnOverflow = true)\n    val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(checkOverflowExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"CAST ( 233.45 AS BIGDECIMAL )\")\n  }\n\n  test(\"convertBasicExpressions with Timestamp literal\") {\n    // Internally, a timestamp is stored as the number of microseconds from the epoch of 1970-01-01T00\n    val bigQuerySQLStatement = expressionConverter.convertBasicExpressions(Literal(1230219000000000L, TimestampType), fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"TIMESTAMP_MICROS( 1230219000000000 )\")\n  }\n\n  test(\"convertStringExpressions with Like\") {\n    val bigQuerySQLStatement = expressionConverter.convertStringExpressions(\n      Like(AttributeReference.apply(\"SchoolID\", StringType)(ExprId.apply(1)),\n        Literal(\"%aug%urs%\"), '\\\\'), fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"SUBQUERY_2.SCHOOLID LIKE '%aug%urs%'\")\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-3.2-bigquery-pushdown_2.12/pom.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n    xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n    xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\">\n  <parent>\n    <artifactId>spark-bigquery-pushdown-parent</artifactId>\n    <groupId>com.google.cloud.spark</groupId>\n    <version>${revision}</version>\n    <relativePath>../spark-bigquery-pushdown-parent</relativePath>\n  </parent>\n  <modelVersion>4.0.0</modelVersion>\n\n  <artifactId>spark-3.2-bigquery-pushdown_2.12</artifactId>\n\n  <properties>\n    <scala.binary.version>2.12</scala.binary.version>\n    <scala.version>2.12.18</scala.version>\n    <spark.version>3.2.0</spark.version>\n  </properties>\n\n  <dependencies>\n    <dependency>\n      <groupId>${project.groupId}</groupId>\n      <artifactId>spark-bigquery-pushdown-common_${scala.binary.version}\n      </artifactId>\n      <version>${project.version}</version>\n    </dependency>\n    <dependency>\n      <groupId>org.apache.spark</groupId>\n      <artifactId>spark-sql_${scala.binary.version}</artifactId>\n      <version>${spark.version}</version>\n      <scope>provided</scope>\n    </dependency>\n  </dependencies>\n\n</project>\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-3.2-bigquery-pushdown_2.12/src/main/resources/META-INF/services/com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdown",
    "content": "com.google.cloud.spark.bigquery.pushdowns.Spark32BigQueryPushdown\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-3.2-bigquery-pushdown_2.12/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark32BigQueryPushdown.scala",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\npackage com.google.cloud.spark.bigquery.pushdowns\n\nclass Spark32BigQueryPushdown extends BaseSparkBigQueryPushdown {\n\n  override def supportsSparkVersion(sparkVersion: String): Boolean = {\n    sparkVersion.startsWith(\"3.2\")\n  }\n\n  override def createSparkExpressionConverter(expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory): SparkExpressionConverter = {\n    new Spark32ExpressionConverter(expressionFactory, sparkPlanFactory)\n  }\n\n  override def createSparkExpressionFactory: SparkExpressionFactory = {\n    new Spark32ExpressionFactory\n  }\n\n  override def createBigQueryStrategy(expressionConverter: SparkExpressionConverter, expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory): BigQueryStrategy = {\n    new Spark32BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactory)\n  }\n\n  override def createSparkPlanFactory(): SparkPlanFactory = {\n    new Spark32PlanFactory\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-3.2-bigquery-pushdown_2.12/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark32BigQueryPushdownPlan.scala",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.pushdowns\n\nimport com.google.cloud.bigquery.connector.common.BigQueryConnectorException\nimport com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdownUtil.doExecuteSparkPlan\nimport org.apache.spark.rdd.RDD\nimport org.apache.spark.sql.catalyst.InternalRow\nimport org.apache.spark.sql.catalyst.expressions.Attribute\nimport org.apache.spark.sql.execution.SparkPlan\n\n/** BigQueryPlan, with RDD defined by custom query. */\ncase class Spark32BigQueryPushdownPlan(output: Seq[Attribute], rdd: RDD[InternalRow])\n  extends SparkPlan {\n\n  override def children: Seq[SparkPlan] = Nil\n\n  protected override def doExecute(): RDD[InternalRow] = {\n    doExecuteSparkPlan(output, rdd)\n  }\n\n  // New function introduced in Spark 3.2\n  override protected def withNewChildrenInternal(newChildren: IndexedSeq[SparkPlan]): SparkPlan = {\n    if (newChildren.nonEmpty) {\n      throw new BigQueryConnectorException(\"Spark connector internal error: \" +\n        \"Spark32BigQueryPushdownPlan.withNewChildrenInternal() is called to set some children nodes.\")\n    }\n    this\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-3.2-bigquery-pushdown_2.12/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark32BigQueryStrategy.scala",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.pushdowns\n\nimport com.google.cloud.spark.bigquery.{SparkBigQueryUtil, SupportsQueryPushdown}\nimport org.apache.spark.sql.catalyst.plans.logical.LogicalPlan\nimport org.apache.spark.sql.execution.datasources.v2.DataSourceV2ScanRelation\n\nclass Spark32BigQueryStrategy(expressionConverter: SparkExpressionConverter, expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory)\n  extends BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactory) {\n  override def generateQueryFromPlanForDataSourceV2(plan: LogicalPlan): Option[BigQuerySQLQuery] = {\n    // DataSourceV2ScanRelation is the relation that is used in the Spark 3.2 DatasourceV2 connector\n    plan match {\n      case scanRelation@DataSourceV2ScanRelation(_, _, _) =>\n        scanRelation.scan match {\n          case scan: SupportsQueryPushdown =>\n            Some(SourceQuery(expressionConverter = expressionConverter,\n              expressionFactory = expressionFactory,\n              bigQueryRDDFactory = scan.getBigQueryRDDFactory,\n              tableName = SparkBigQueryUtil.getTableNameFromOptions(scanRelation.relation.options.asInstanceOf[java.util.Map[String, String]]),\n              outputAttributes = scanRelation.output,\n              alias = alias.next,\n              pushdownFilters = if (scan.getPushdownFilters.isPresent) Some(scan.getPushdownFilters.get) else None\n            ))\n\n          case _ => None\n        }\n\n      // We should never reach here\n      case _ => None\n    }\n  }\n\n  override def createUnionQuery(children: Seq[LogicalPlan]): Option[BigQuerySQLQuery] = {\n    val queries: Seq[BigQuerySQLQuery] = children.map { child =>\n      new Spark32BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactory).generateQueryFromPlan(child).get\n    }\n    Some(UnionQuery(expressionConverter, expressionFactory, queries, alias.next))\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-3.2-bigquery-pushdown_2.12/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark32ExpressionConverter.scala",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\npackage com.google.cloud.spark.bigquery.pushdowns\n\nimport com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdownUtil.blockStatement\nimport org.apache.spark.sql.catalyst.expressions.{Attribute, Cast, CheckOverflow, Expression, Like, ScalarSubquery, UnaryMinus}\nimport org.apache.spark.sql.catalyst.plans.logical.LogicalPlan\n\n/**\n * Convert Spark 3.2 specific expressions to SQL\n */\nclass Spark32ExpressionConverter(expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory) extends SparkExpressionConverter() {\n  override def convertScalarSubqueryExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = {\n    expression match {\n      case ScalarSubquery(plan, _, _, joinCond) if joinCond.isEmpty =>\n        blockStatement(new Spark32BigQueryStrategy(this, expressionFactory, sparkPlanFactory)\n          .generateQueryFromPlan(plan).get.getStatement())\n    }\n  }\n\n  override def convertCheckOverflowExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = {\n    expression match {\n      case CheckOverflow(child, t, _) =>\n        getCastType(t) match {\n          case Some(cast) =>\n            ConstantString(\"CAST\") +\n              blockStatement(convertStatement(child, fields) + \"AS\" + cast)\n          case _ => convertStatement(child, fields)\n        }\n    }\n  }\n\n  override def convertUnaryMinusExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = {\n    expression match {\n      case UnaryMinus(child, _) =>\n        ConstantString(\"-\") +\n          blockStatement(convertStatement(child, fields))\n    }\n  }\n\n  override def convertCastExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = {\n    expression match {\n      case Cast(child, dataType, _, ansiEnabled) if !ansiEnabled =>\n        performCastExpressionConversion(child, fields, dataType)\n    }\n  }\n\n  override def convertLikeExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = {\n    expression match {\n      case Like(left, right, _) =>\n        convertStatement(left, fields) + \"LIKE\" + convertStatement(right, fields)\n    }\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-3.2-bigquery-pushdown_2.12/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark32ExpressionFactory.scala",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.pushdowns\n\nimport org.apache.spark.sql.catalyst.expressions.{Alias, ExprId, Expression}\nimport org.apache.spark.sql.types.Metadata\n\nclass Spark32ExpressionFactory extends SparkExpressionFactory {\n  override def createAlias(child: Expression, name: String, exprId: ExprId, qualifier: Seq[String], explicitMetadata: Option[Metadata]): Alias = {\n    Alias(child, name)(exprId, qualifier, explicitMetadata)\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-3.2-bigquery-pushdown_2.12/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark32PlanFactory.scala",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.pushdowns\n\nimport com.google.cloud.spark.bigquery.direct.BigQueryRDDFactory\nimport org.apache.spark.sql.execution.SparkPlan\n\nclass Spark32PlanFactory extends SparkPlanFactory {\n  /**\n   * Generate SparkPlan from the output and RDD of the translated query\n   */\n  override def createBigQueryPlan(queryRoot: BigQuerySQLQuery, bigQueryRDDFactory: BigQueryRDDFactory): Option[SparkPlan] = {\n    Some(Spark32BigQueryPushdownPlan(queryRoot.output, bigQueryRDDFactory.buildScanFromSQL(queryRoot.getStatement().toString)))\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-3.2-bigquery-pushdown_2.12/src/test/scala/com/google/cloud/spark/bigquery/pushdowns/BinaryOperationExtractorSuite.scala",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\npackage com.google.cloud.spark.bigquery.pushdowns\n\nimport org.apache.spark.sql.catalyst.plans.JoinType\nimport org.apache.spark.sql.catalyst.plans.logical.{Intersect, Join, JoinHint, Range}\nimport org.scalatest.funsuite.AnyFunSuite\n\nclass BinaryOperationExtractorSuite extends AnyFunSuite  {\n\n  // Need a childPlan to pass. So, create the simplest possible\n  private val leftChildPlan = Range.apply(2L, 100L, 4L, 8)\n  private val rightChildPlan = Range.apply(2L, 100L, 4L, 10)\n\n  test(\"supported binary node\") {\n    val joinPlan = Join(leftChildPlan, rightChildPlan, JoinType.apply(\"inner\"), None, JoinHint.NONE)\n    val plan = BinaryOperationExtractor.unapply(joinPlan)\n    assert(plan.isDefined)\n    assert(plan.get.children.head == leftChildPlan)\n    assert(plan.get.children(1) == rightChildPlan)\n  }\n\n  test(\"non supported binary node\") {\n    val unsupportedPlan = Intersect(leftChildPlan, rightChildPlan, isAll = true)\n    val plan = BinaryOperationExtractor.unapply(unsupportedPlan)\n    assert(plan.isEmpty)\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-3.2-bigquery-pushdown_2.12/src/test/scala/com/google/cloud/spark/bigquery/pushdowns/JoinExtractorSuite.scala",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\npackage com.google.cloud.spark.bigquery.pushdowns\n\nimport org.apache.spark.sql.catalyst.expressions.{EqualTo, Literal}\nimport org.apache.spark.sql.catalyst.plans.JoinType\nimport org.apache.spark.sql.catalyst.plans.logical.{Join, JoinHint, Range}\nimport org.scalatest.funsuite.AnyFunSuite\n\nclass JoinExtractorSuite extends AnyFunSuite {\n  // Need a childPlan to pass. So, create the simplest possible\n  private val leftChildPlan = Range.apply(2L, 100L, 4L, 8)\n\n  // Need a childPlan to pass. So, create the simplest possible\n  private val rightChildPlan = Range.apply(2L, 100L, 4L, 16)\n\n  test(\"unapply\") {\n    val joinExpression = EqualTo.apply(Literal(leftChildPlan.start), Literal(rightChildPlan.start))\n    val joinPlan = Join.apply(leftChildPlan, rightChildPlan, JoinType.apply(\"inner\"), Option(joinExpression), JoinHint.NONE)\n    val returnedOption = JoinExtractor.unapply(joinPlan)\n    assert(returnedOption.isDefined)\n    assert(returnedOption.get._1 == JoinType.apply(\"inner\"))\n    assert(returnedOption.get._2 == Option(joinExpression))\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-3.2-bigquery-pushdown_2.12/src/test/scala/com/google/cloud/spark/bigquery/pushdowns/Spark32ExpressionConverterSuite.scala",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.pushdowns\n\nimport com.google.cloud.spark.bigquery.direct.DirectBigQueryRelation\nimport org.apache.spark.sql.catalyst.expressions.{AttributeReference, CheckOverflow, ExprId, Like, Literal, ScalarSubquery, UnaryMinus}\nimport org.apache.spark.sql.catalyst.plans.logical.Aggregate\nimport org.apache.spark.sql.execution.datasources.LogicalRelation\nimport org.apache.spark.sql.types.{DecimalType, LongType, StringType, StructType, TimestampType}\nimport org.mockito.Mockito.when\nimport org.mockito.{Mock, MockitoAnnotations}\nimport org.scalatest.BeforeAndAfter\nimport org.scalatest.funsuite.AnyFunSuite\n\nclass Spark32ExpressionConverterSuite extends AnyFunSuite with BeforeAndAfter {\n  @Mock\n  var directBigQueryRelationMock: DirectBigQueryRelation = _\n  @Mock\n  var sparkPlanFactoryMock: SparkPlanFactory = _\n\n  private val expressionFactory = new Spark32ExpressionFactory\n  private val expressionConverter = new Spark32ExpressionConverter(expressionFactory, sparkPlanFactoryMock)\n  private val fields = List(AttributeReference.apply(\"SchoolID\", LongType)(ExprId.apply(1), List(\"SUBQUERY_2\")))\n\n  before {\n    MockitoAnnotations.initMocks(this)\n  }\n\n  test(\"convertMiscellaneousExpressions with ScalarSubquery\") {\n    when(directBigQueryRelationMock.schema).thenReturn(StructType.apply(Seq()))\n    when(directBigQueryRelationMock.getTableName).thenReturn(\"MY_BIGQUERY_TABLE\")\n    val logicalRelation = LogicalRelation(directBigQueryRelationMock)\n    val aggregatePlan = Aggregate(Seq(), Seq(), logicalRelation)\n    val scalarSubQueryExpression = ScalarSubquery.apply(aggregatePlan)\n    val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(scalarSubQueryExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"( SELECT * FROM ( SELECT * FROM `MY_BIGQUERY_TABLE` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_0 LIMIT 1 )\")\n  }\n\n  test(\"convertMathematicalExpressions with UnaryMinus\") {\n    val unaryMinusExpression = UnaryMinus.apply(Literal.apply(10))\n    val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(unaryMinusExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"- ( 10 )\")\n  }\n\n  test(\"convertMathematicalExpressions with CheckOverflow\") {\n    val checkOverflowExpression = CheckOverflow.apply(Literal.apply(233.45), DecimalType.apply(38, 10), nullOnOverflow = true)\n    val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(checkOverflowExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"CAST ( 233.45 AS BIGDECIMAL )\")\n  }\n\n  test(\"convertBasicExpressions with Timestamp literal\") {\n    // Internally, a timestamp is stored as the number of microseconds from the epoch of 1970-01-01T00\n    val bigQuerySQLStatement = expressionConverter.convertBasicExpressions(Literal(1230219000000000L, TimestampType), fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"TIMESTAMP_MICROS( 1230219000000000 )\")\n  }\n\n  test(\"convertStringExpressions with Like\") {\n    val bigQuerySQLStatement = expressionConverter.convertStringExpressions(\n      Like(AttributeReference.apply(\"SchoolID\", StringType)(ExprId.apply(1)),\n        Literal(\"%aug%urs%\"), '\\\\'), fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"SUBQUERY_2.SCHOOLID LIKE '%aug%urs%'\")\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-3.2-bigquery-pushdown_2.13/pom.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n    xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n    xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\">\n  <parent>\n    <artifactId>spark-bigquery-pushdown-parent</artifactId>\n    <groupId>com.google.cloud.spark</groupId>\n    <version>${revision}</version>\n    <relativePath>../spark-bigquery-pushdown-parent</relativePath>\n  </parent>\n  <modelVersion>4.0.0</modelVersion>\n\n  <artifactId>spark-3.2-bigquery-pushdown_2.13</artifactId>\n\n  <properties>\n    <scala.binary.version>2.13</scala.binary.version>\n    <scala.version>2.13.5</scala.version>\n    <spark.version>3.2.0</spark.version>\n  </properties>\n\n  <dependencies>\n    <dependency>\n      <groupId>${project.groupId}</groupId>\n      <artifactId>spark-bigquery-pushdown-common_${scala.binary.version}\n      </artifactId>\n      <version>${project.version}</version>\n    </dependency>\n    <dependency>\n      <groupId>org.apache.spark</groupId>\n      <artifactId>spark-sql_${scala.binary.version}</artifactId>\n      <version>${spark.version}</version>\n      <scope>provided</scope>\n    </dependency>\n  </dependencies>\n\n</project>\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-3.2-bigquery-pushdown_2.13/src/main/resources/META-INF/services/com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdown",
    "content": "com.google.cloud.spark.bigquery.pushdowns.Spark32BigQueryPushdown\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-3.2-bigquery-pushdown_2.13/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark32BigQueryPushdown.scala",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\npackage com.google.cloud.spark.bigquery.pushdowns\n\nclass Spark32BigQueryPushdown extends BaseSparkBigQueryPushdown {\n\n  override def supportsSparkVersion(sparkVersion: String): Boolean = {\n    sparkVersion.startsWith(\"3.2\")\n  }\n\n  override def createSparkExpressionConverter(expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory): SparkExpressionConverter = {\n    new Spark32ExpressionConverter(expressionFactory, sparkPlanFactory)\n  }\n\n  override def createSparkExpressionFactory: SparkExpressionFactory = {\n    new Spark32ExpressionFactory\n  }\n\n  override def createBigQueryStrategy(expressionConverter: SparkExpressionConverter, expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory): BigQueryStrategy = {\n    new Spark32BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactory)\n  }\n\n  override def createSparkPlanFactory(): SparkPlanFactory = {\n    new Spark32PlanFactory\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-3.2-bigquery-pushdown_2.13/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark32BigQueryPushdownPlan.scala",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.pushdowns\n\nimport com.google.cloud.bigquery.connector.common.BigQueryConnectorException\nimport com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdownUtil.doExecuteSparkPlan\nimport org.apache.spark.rdd.RDD\nimport org.apache.spark.sql.catalyst.InternalRow\nimport org.apache.spark.sql.catalyst.expressions.Attribute\nimport org.apache.spark.sql.execution.SparkPlan\n\n/** BigQueryPlan, with RDD defined by custom query. */\ncase class Spark32BigQueryPushdownPlan(output: Seq[Attribute], rdd: RDD[InternalRow])\n  extends SparkPlan {\n\n  override def children: Seq[SparkPlan] = Nil\n\n  protected override def doExecute(): RDD[InternalRow] = {\n    doExecuteSparkPlan(output, rdd)\n  }\n\n  // New function introduced in Spark 3.2\n  override protected def withNewChildrenInternal(newChildren: IndexedSeq[SparkPlan]): SparkPlan = {\n    if (newChildren.nonEmpty) {\n      throw new BigQueryConnectorException(\"Spark connector internal error: \" +\n        \"Spark32BigQueryPushdownPlan.withNewChildrenInternal() is called to set some children nodes.\")\n    }\n    this\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-3.2-bigquery-pushdown_2.13/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark32BigQueryStrategy.scala",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.pushdowns\n\nimport com.google.cloud.spark.bigquery.{SparkBigQueryUtil, SupportsQueryPushdown}\nimport org.apache.spark.sql.catalyst.plans.logical.LogicalPlan\nimport org.apache.spark.sql.execution.datasources.v2.DataSourceV2ScanRelation\n\nclass Spark32BigQueryStrategy(expressionConverter: SparkExpressionConverter, expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory)\n  extends BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactory) {\n  override def generateQueryFromPlanForDataSourceV2(plan: LogicalPlan): Option[BigQuerySQLQuery] = {\n    // DataSourceV2ScanRelation is the relation that is used in the Spark 3.2 DatasourceV2 connector\n    plan match {\n      case scanRelation@DataSourceV2ScanRelation(_, _, _) =>\n        scanRelation.scan match {\n          case scan: SupportsQueryPushdown =>\n            Some(SourceQuery(expressionConverter = expressionConverter,\n              expressionFactory = expressionFactory,\n              bigQueryRDDFactory = scan.getBigQueryRDDFactory,\n              tableName = SparkBigQueryUtil.getTableNameFromOptions(scanRelation.relation.options.asInstanceOf[java.util.Map[String, String]]),\n              outputAttributes = scanRelation.output,\n              alias = alias.next,\n              pushdownFilters = if (scan.getPushdownFilters.isPresent) Some(scan.getPushdownFilters.get) else None\n            ))\n\n          case _ => None\n        }\n\n      // We should never reach here\n      case _ => None\n    }\n  }\n\n  override def createUnionQuery(children: Seq[LogicalPlan]): Option[BigQuerySQLQuery] = {\n    val queries: Seq[BigQuerySQLQuery] = children.map { child =>\n      new Spark32BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactory).generateQueryFromPlan(child).get\n    }\n    Some(UnionQuery(expressionConverter, expressionFactory, queries, alias.next))\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-3.2-bigquery-pushdown_2.13/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark32ExpressionConverter.scala",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\npackage com.google.cloud.spark.bigquery.pushdowns\n\nimport com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdownUtil.blockStatement\nimport org.apache.spark.sql.catalyst.expressions.{Attribute, Cast, CheckOverflow, Expression, Like, ScalarSubquery, UnaryMinus}\nimport org.apache.spark.sql.catalyst.plans.logical.LogicalPlan\n\n/**\n * Convert Spark 3.2 specific expressions to SQL\n */\nclass Spark32ExpressionConverter(expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory) extends SparkExpressionConverter() {\n  override def convertScalarSubqueryExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = {\n    expression match {\n      case ScalarSubquery(plan, _, _, joinCond) if joinCond.isEmpty =>\n        blockStatement(new Spark32BigQueryStrategy(this, expressionFactory, sparkPlanFactory)\n          .generateQueryFromPlan(plan).get.getStatement())\n    }\n  }\n\n  override def convertCheckOverflowExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = {\n    expression match {\n      case CheckOverflow(child, t, _) =>\n        getCastType(t) match {\n          case Some(cast) =>\n            ConstantString(\"CAST\") +\n              blockStatement(convertStatement(child, fields) + \"AS\" + cast)\n          case _ => convertStatement(child, fields)\n        }\n    }\n  }\n\n  override def convertUnaryMinusExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = {\n    expression match {\n      case UnaryMinus(child, _) =>\n        ConstantString(\"-\") +\n          blockStatement(convertStatement(child, fields))\n    }\n  }\n\n  override def convertCastExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = {\n    expression match {\n      case Cast(child, dataType, _, ansiEnabled) if !ansiEnabled =>\n        performCastExpressionConversion(child, fields, dataType)\n    }\n  }\n\n  override def convertLikeExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = {\n    expression match {\n      case Like(left, right, _) =>\n        convertStatement(left, fields) + \"LIKE\" + convertStatement(right, fields)\n    }\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-3.2-bigquery-pushdown_2.13/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark32ExpressionFactory.scala",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.pushdowns\n\nimport org.apache.spark.sql.catalyst.expressions.{Alias, ExprId, Expression}\nimport org.apache.spark.sql.types.Metadata\n\nclass Spark32ExpressionFactory extends SparkExpressionFactory {\n  override def createAlias(child: Expression, name: String, exprId: ExprId, qualifier: Seq[String], explicitMetadata: Option[Metadata]): Alias = {\n    Alias(child, name)(exprId, qualifier, explicitMetadata)\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-3.2-bigquery-pushdown_2.13/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark32PlanFactory.scala",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.pushdowns\n\nimport com.google.cloud.spark.bigquery.direct.BigQueryRDDFactory\nimport org.apache.spark.sql.execution.SparkPlan\n\nclass Spark32PlanFactory extends SparkPlanFactory {\n  /**\n   * Generate SparkPlan from the output and RDD of the translated query\n   */\n  override def createBigQueryPlan(queryRoot: BigQuerySQLQuery, bigQueryRDDFactory: BigQueryRDDFactory): Option[SparkPlan] = {\n    Some(Spark32BigQueryPushdownPlan(queryRoot.output, bigQueryRDDFactory.buildScanFromSQL(queryRoot.getStatement().toString)))\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-3.2-bigquery-pushdown_2.13/src/test/scala/com/google/cloud/spark/bigquery/pushdowns/BinaryOperationExtractorSuite.scala",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\npackage com.google.cloud.spark.bigquery.pushdowns\n\nimport org.apache.spark.sql.catalyst.plans.JoinType\nimport org.apache.spark.sql.catalyst.plans.logical.{Intersect, Join, JoinHint, Range}\nimport org.scalatest.funsuite.AnyFunSuite\n\nclass BinaryOperationExtractorSuite extends AnyFunSuite  {\n\n  // Need a childPlan to pass. So, create the simplest possible\n  private val leftChildPlan = Range.apply(2L, 100L, 4L, 8)\n  private val rightChildPlan = Range.apply(2L, 100L, 4L, 10)\n\n  test(\"supported binary node\") {\n    val joinPlan = Join(leftChildPlan, rightChildPlan, JoinType.apply(\"inner\"), None, JoinHint.NONE)\n    val plan = BinaryOperationExtractor.unapply(joinPlan)\n    assert(plan.isDefined)\n    assert(plan.get.children.head == leftChildPlan)\n    assert(plan.get.children(1) == rightChildPlan)\n  }\n\n  test(\"non supported binary node\") {\n    val unsupportedPlan = Intersect(leftChildPlan, rightChildPlan, isAll = true)\n    val plan = BinaryOperationExtractor.unapply(unsupportedPlan)\n    assert(plan.isEmpty)\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-3.2-bigquery-pushdown_2.13/src/test/scala/com/google/cloud/spark/bigquery/pushdowns/JoinExtractorSuite.scala",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\npackage com.google.cloud.spark.bigquery.pushdowns\n\nimport org.apache.spark.sql.catalyst.expressions.{EqualTo, Literal}\nimport org.apache.spark.sql.catalyst.plans.JoinType\nimport org.apache.spark.sql.catalyst.plans.logical.{Join, JoinHint, Range}\nimport org.scalatest.funsuite.AnyFunSuite\n\nclass JoinExtractorSuite extends AnyFunSuite {\n  // Need a childPlan to pass. So, create the simplest possible\n  private val leftChildPlan = Range.apply(2L, 100L, 4L, 8)\n\n  // Need a childPlan to pass. So, create the simplest possible\n  private val rightChildPlan = Range.apply(2L, 100L, 4L, 16)\n\n  test(\"unapply\") {\n    val joinExpression = EqualTo.apply(Literal(leftChildPlan.start), Literal(rightChildPlan.start))\n    val joinPlan = Join.apply(leftChildPlan, rightChildPlan, JoinType.apply(\"inner\"), Option(joinExpression), JoinHint.NONE)\n    val returnedOption = JoinExtractor.unapply(joinPlan)\n    assert(returnedOption.isDefined)\n    assert(returnedOption.get._1 == JoinType.apply(\"inner\"))\n    assert(returnedOption.get._2 == Option(joinExpression))\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-3.2-bigquery-pushdown_2.13/src/test/scala/com/google/cloud/spark/bigquery/pushdowns/Spark32ExpressionConverterSuite.scala",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.pushdowns\n\nimport com.google.cloud.spark.bigquery.direct.DirectBigQueryRelation\nimport org.apache.spark.sql.catalyst.expressions.{AttributeReference, CheckOverflow, ExprId, Like, Literal, ScalarSubquery, UnaryMinus}\nimport org.apache.spark.sql.catalyst.plans.logical.Aggregate\nimport org.apache.spark.sql.execution.datasources.LogicalRelation\nimport org.apache.spark.sql.types.{DecimalType, LongType, StringType, StructType, TimestampType}\nimport org.mockito.Mockito.when\nimport org.mockito.{Mock, MockitoAnnotations}\nimport org.scalatest.BeforeAndAfter\nimport org.scalatest.funsuite.AnyFunSuite\n\nclass Spark32ExpressionConverterSuite extends AnyFunSuite with BeforeAndAfter {\n  @Mock\n  var directBigQueryRelationMock: DirectBigQueryRelation = _\n  @Mock\n  var sparkPlanFactoryMock: SparkPlanFactory = _\n\n  private val expressionFactory = new Spark32ExpressionFactory\n  private val expressionConverter = new Spark32ExpressionConverter(expressionFactory, sparkPlanFactoryMock)\n  private val fields = List(AttributeReference.apply(\"SchoolID\", LongType)(ExprId.apply(1), List(\"SUBQUERY_2\")))\n\n  before {\n    MockitoAnnotations.initMocks(this)\n  }\n\n  test(\"convertMiscellaneousExpressions with ScalarSubquery\") {\n    when(directBigQueryRelationMock.schema).thenReturn(StructType.apply(Seq()))\n    when(directBigQueryRelationMock.getTableName).thenReturn(\"MY_BIGQUERY_TABLE\")\n    val logicalRelation = LogicalRelation(directBigQueryRelationMock)\n    val aggregatePlan = Aggregate(Seq(), Seq(), logicalRelation)\n    val scalarSubQueryExpression = ScalarSubquery.apply(aggregatePlan)\n    val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(scalarSubQueryExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"( SELECT * FROM ( SELECT * FROM `MY_BIGQUERY_TABLE` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_0 LIMIT 1 )\")\n  }\n\n  test(\"convertMathematicalExpressions with UnaryMinus\") {\n    val unaryMinusExpression = UnaryMinus.apply(Literal.apply(10))\n    val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(unaryMinusExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"- ( 10 )\")\n  }\n\n  test(\"convertMathematicalExpressions with CheckOverflow\") {\n    val checkOverflowExpression = CheckOverflow.apply(Literal.apply(233.45), DecimalType.apply(38, 10), nullOnOverflow = true)\n    val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(checkOverflowExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"CAST ( 233.45 AS BIGDECIMAL )\")\n  }\n\n  test(\"convertBasicExpressions with Timestamp literal\") {\n    // Internally, a timestamp is stored as the number of microseconds from the epoch of 1970-01-01T00\n    val bigQuerySQLStatement = expressionConverter.convertBasicExpressions(Literal(1230219000000000L, TimestampType), fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"TIMESTAMP_MICROS( 1230219000000000 )\")\n  }\n\n  test(\"convertStringExpressions with Like\") {\n    val bigQuerySQLStatement = expressionConverter.convertStringExpressions(\n      Like(AttributeReference.apply(\"SchoolID\", StringType)(ExprId.apply(1)),\n        Literal(\"%aug%urs%\"), '\\\\'), fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"SUBQUERY_2.SCHOOLID LIKE '%aug%urs%'\")\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-3.3-bigquery-pushdown_2.12/pom.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n    xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n    xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\">\n  <modelVersion>4.0.0</modelVersion>\n  <parent>\n    <artifactId>spark-bigquery-pushdown-parent</artifactId>\n    <groupId>com.google.cloud.spark</groupId>\n    <version>${revision}</version>\n    <relativePath>../spark-bigquery-pushdown-parent</relativePath>\n  </parent>\n\n  <artifactId>spark-3.3-bigquery-pushdown_2.12</artifactId>\n\n  <properties>\n    <scala.binary.version>2.12</scala.binary.version>\n    <scala.version>2.12.18</scala.version>\n    <spark.version>3.3.0</spark.version>\n  </properties>\n\n  <dependencies>\n    <dependency>\n      <groupId>${project.groupId}</groupId>\n      <artifactId>spark-bigquery-pushdown-common_${scala.binary.version}\n      </artifactId>\n      <version>${project.version}</version>\n    </dependency>\n    <dependency>\n      <groupId>org.apache.spark</groupId>\n      <artifactId>spark-sql_${scala.binary.version}</artifactId>\n      <version>${spark.version}</version>\n      <scope>provided</scope>\n    </dependency>\n  </dependencies>\n\n</project>\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-3.3-bigquery-pushdown_2.12/src/main/resources/META-INF/services/com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdown",
    "content": "com.google.cloud.spark.bigquery.pushdowns.Spark33BigQueryPushdown\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-3.3-bigquery-pushdown_2.12/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark33BigQueryPushdown.scala",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\npackage com.google.cloud.spark.bigquery.pushdowns\n\nclass Spark33BigQueryPushdown extends BaseSparkBigQueryPushdown {\n\n  override def supportsSparkVersion(sparkVersion: String): Boolean = {\n    sparkVersion.startsWith(\"3.3\")\n  }\n\n  override def createSparkExpressionConverter(expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory): SparkExpressionConverter = {\n    new Spark33ExpressionConverter(expressionFactory, sparkPlanFactory)\n  }\n\n  override def createSparkExpressionFactory: SparkExpressionFactory = {\n    new Spark33ExpressionFactory\n  }\n\n  override def createBigQueryStrategy(expressionConverter: SparkExpressionConverter, expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory): BigQueryStrategy = {\n    new Spark33BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactory)\n  }\n\n  override def createSparkPlanFactory(): SparkPlanFactory = {\n    new Spark33PlanFactory\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-3.3-bigquery-pushdown_2.12/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark33BigQueryPushdownPlan.scala",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.pushdowns\n\nimport com.google.cloud.bigquery.connector.common.BigQueryConnectorException\nimport com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdownUtil.doExecuteSparkPlan\nimport org.apache.spark.rdd.RDD\nimport org.apache.spark.sql.catalyst.InternalRow\nimport org.apache.spark.sql.catalyst.expressions.Attribute\nimport org.apache.spark.sql.execution.SparkPlan\n\n/** BigQueryPlan, with RDD defined by custom query. */\ncase class Spark33BigQueryPushdownPlan(output: Seq[Attribute], rdd: RDD[InternalRow])\n  extends SparkPlan {\n\n  override def children: Seq[SparkPlan] = Nil\n\n  protected override def doExecute(): RDD[InternalRow] = {\n    doExecuteSparkPlan(output, rdd)\n  }\n\n  // New function introduced in Spark 3.3\n  override protected def withNewChildrenInternal(newChildren: IndexedSeq[SparkPlan]): SparkPlan = {\n    if (newChildren.nonEmpty) {\n      throw new BigQueryConnectorException(\"Spark connector internal error: \" +\n        \"Spark33BigQueryPushdownPlan.withNewChildrenInternal() is called to set some children nodes.\")\n    }\n    this\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-3.3-bigquery-pushdown_2.12/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark33BigQueryStrategy.scala",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.pushdowns\n\nimport com.google.cloud.spark.bigquery.{SparkBigQueryUtil, SupportsQueryPushdown}\nimport org.apache.spark.sql.catalyst.plans.logical.LogicalPlan\nimport org.apache.spark.sql.execution.datasources.v2.DataSourceV2ScanRelation\n\nclass Spark33BigQueryStrategy(expressionConverter: SparkExpressionConverter, expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory)\n  extends BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactory) {\n  override def generateQueryFromPlanForDataSourceV2(plan: LogicalPlan): Option[BigQuerySQLQuery] = {\n    // DataSourceV2ScanRelation is the relation that is used in the Spark 3.3 DatasourceV2 connector\n    plan match {\n      case scanRelation@DataSourceV2ScanRelation(_, _, _, _) =>\n        scanRelation.scan match {\n          case scan: SupportsQueryPushdown =>\n            Some(SourceQuery(expressionConverter = expressionConverter,\n              expressionFactory = expressionFactory,\n              bigQueryRDDFactory = scan.getBigQueryRDDFactory,\n              tableName = SparkBigQueryUtil.getTableNameFromOptions(scanRelation.relation.options.asInstanceOf[java.util.Map[String, String]]),\n              outputAttributes = scanRelation.output,\n              alias = alias.next,\n              pushdownFilters = if (scan.getPushdownFilters.isPresent) Some(scan.getPushdownFilters.get) else None\n            ))\n\n          case _ => None\n        }\n\n      // We should never reach here\n      case _ => None\n    }\n  }\n\n  override def createUnionQuery(children: Seq[LogicalPlan]): Option[BigQuerySQLQuery] = {\n    val queries: Seq[BigQuerySQLQuery] = children.map { child =>\n      new Spark33BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactory).generateQueryFromPlan(child).get\n    }\n    Some(UnionQuery(expressionConverter, expressionFactory, queries, alias.next))\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-3.3-bigquery-pushdown_2.12/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark33ExpressionConverter.scala",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\npackage com.google.cloud.spark.bigquery.pushdowns\n\nimport com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdownUtil.blockStatement\nimport org.apache.spark.sql.catalyst.expressions.{Attribute, Cast, CheckOverflow, Expression, Like, ScalarSubquery, UnaryMinus}\nimport org.apache.spark.sql.catalyst.plans.logical.LogicalPlan\n\n/**\n * Convert Spark 3.3 specific expressions to SQL\n */\nclass Spark33ExpressionConverter(expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory) extends SparkExpressionConverter() {\n  override def convertScalarSubqueryExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = {\n    expression match {\n      case ScalarSubquery(plan, _, _, joinCond) if joinCond.isEmpty =>\n        blockStatement(new Spark33BigQueryStrategy(this, expressionFactory, sparkPlanFactory)\n          .generateQueryFromPlan(plan).get.getStatement())\n    }\n  }\n\n  override def convertCheckOverflowExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = {\n    expression match {\n      case CheckOverflow(child, t, _) =>\n        getCastType(t) match {\n          case Some(cast) =>\n            ConstantString(\"CAST\") +\n              blockStatement(convertStatement(child, fields) + \"AS\" + cast)\n          case _ => convertStatement(child, fields)\n        }\n    }\n  }\n\n  override def convertUnaryMinusExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = {\n    expression match {\n      case UnaryMinus(child, _) =>\n        ConstantString(\"-\") +\n          blockStatement(convertStatement(child, fields))\n    }\n  }\n\n  override def convertCastExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = {\n    expression match {\n      case Cast(child, dataType, _, ansiEnabled) if !ansiEnabled =>\n        performCastExpressionConversion(child, fields, dataType)\n    }\n  }\n\n  override def convertLikeExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = {\n    expression match {\n      case Like(left, right, _) =>\n        convertStatement(left, fields) + \"LIKE\" + convertStatement(right, fields)\n    }\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-3.3-bigquery-pushdown_2.12/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark33ExpressionFactory.scala",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.pushdowns\n\nimport org.apache.spark.sql.catalyst.expressions.{Alias, ExprId, Expression}\nimport org.apache.spark.sql.types.Metadata\n\nclass Spark33ExpressionFactory extends SparkExpressionFactory {\n  override def createAlias(child: Expression, name: String, exprId: ExprId, qualifier: Seq[String], explicitMetadata: Option[Metadata]): Alias = {\n    Alias(child, name)(exprId, qualifier, explicitMetadata)\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-3.3-bigquery-pushdown_2.12/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark33PlanFactory.scala",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.pushdowns\n\nimport com.google.cloud.spark.bigquery.direct.BigQueryRDDFactory\nimport org.apache.spark.sql.execution.SparkPlan\n\nclass Spark33PlanFactory extends SparkPlanFactory {\n  /**\n   * Generate SparkPlan from the output and RDD of the translated query\n   */\n  override def createBigQueryPlan(queryRoot: BigQuerySQLQuery, bigQueryRDDFactory: BigQueryRDDFactory): Option[SparkPlan] = {\n    Some(Spark33BigQueryPushdownPlan(queryRoot.output, bigQueryRDDFactory.buildScanFromSQL(queryRoot.getStatement().toString)))\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-3.3-bigquery-pushdown_2.12/src/test/scala/com/google/cloud/spark/bigquery/pushdowns/BinaryOperationExtractorSuite.scala",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\npackage com.google.cloud.spark.bigquery.pushdowns\n\nimport org.apache.spark.sql.catalyst.plans.JoinType\nimport org.apache.spark.sql.catalyst.plans.logical.{Intersect, Join, JoinHint, Range}\nimport org.scalatest.funsuite.AnyFunSuite\n\nclass BinaryOperationExtractorSuite extends AnyFunSuite  {\n\n  // Need a childPlan to pass. So, create the simplest possible\n  private val leftChildPlan = Range.apply(2L, 100L, 4L, 8)\n  private val rightChildPlan = Range.apply(2L, 100L, 4L, 10)\n\n  test(\"supported binary node\") {\n    val joinPlan = Join(leftChildPlan, rightChildPlan, JoinType.apply(\"inner\"), None, JoinHint.NONE)\n    val plan = BinaryOperationExtractor.unapply(joinPlan)\n    assert(plan.isDefined)\n    assert(plan.get.children.head == leftChildPlan)\n    assert(plan.get.children(1) == rightChildPlan)\n  }\n\n  test(\"non supported binary node\") {\n    val unsupportedPlan = Intersect(leftChildPlan, rightChildPlan, isAll = true)\n    val plan = BinaryOperationExtractor.unapply(unsupportedPlan)\n    assert(plan.isEmpty)\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-3.3-bigquery-pushdown_2.12/src/test/scala/com/google/cloud/spark/bigquery/pushdowns/JoinExtractorSuite.scala",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\npackage com.google.cloud.spark.bigquery.pushdowns\n\nimport org.apache.spark.sql.catalyst.expressions.{EqualTo, Literal}\nimport org.apache.spark.sql.catalyst.plans.JoinType\nimport org.apache.spark.sql.catalyst.plans.logical.{Join, JoinHint, Range}\nimport org.scalatest.funsuite.AnyFunSuite\n\nclass JoinExtractorSuite extends AnyFunSuite {\n  // Need a childPlan to pass. So, create the simplest possible\n  private val leftChildPlan = Range.apply(2L, 100L, 4L, 8)\n\n  // Need a childPlan to pass. So, create the simplest possible\n  private val rightChildPlan = Range.apply(2L, 100L, 4L, 16)\n\n  test(\"unapply\") {\n    val joinExpression = EqualTo.apply(Literal(leftChildPlan.start), Literal(rightChildPlan.start))\n    val joinPlan = Join.apply(leftChildPlan, rightChildPlan, JoinType.apply(\"inner\"), Option(joinExpression), JoinHint.NONE)\n    val returnedOption = JoinExtractor.unapply(joinPlan)\n    assert(returnedOption.isDefined)\n    assert(returnedOption.get._1 == JoinType.apply(\"inner\"))\n    assert(returnedOption.get._2 == Option(joinExpression))\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-3.3-bigquery-pushdown_2.12/src/test/scala/com/google/cloud/spark/bigquery/pushdowns/Spark33ExpressionConverterSuite.scala",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.pushdowns\n\nimport com.google.cloud.spark.bigquery.direct.DirectBigQueryRelation\nimport org.apache.spark.sql.catalyst.expressions.{AttributeReference, CheckOverflow, ExprId, Like, Literal, ScalarSubquery, UnaryMinus}\nimport org.apache.spark.sql.catalyst.plans.logical.Aggregate\nimport org.apache.spark.sql.execution.datasources.LogicalRelation\nimport org.apache.spark.sql.types.{DecimalType, LongType, StringType, StructType, TimestampType}\nimport org.mockito.Mockito.when\nimport org.mockito.{Mock, MockitoAnnotations}\nimport org.scalatest.BeforeAndAfter\nimport org.scalatest.funsuite.AnyFunSuite\n\nclass Spark33ExpressionConverterSuite extends AnyFunSuite with BeforeAndAfter {\n  @Mock\n  var directBigQueryRelationMock: DirectBigQueryRelation = _\n  @Mock\n  var sparkPlanFactoryMock: SparkPlanFactory = _\n\n  private val expressionFactory = new Spark33ExpressionFactory\n  private val expressionConverter = new Spark33ExpressionConverter(expressionFactory, sparkPlanFactoryMock)\n  private val fields = List(AttributeReference.apply(\"SchoolID\", LongType)(ExprId.apply(1), List(\"SUBQUERY_2\")))\n\n  before {\n    MockitoAnnotations.initMocks(this)\n  }\n\n  test(\"convertMiscellaneousExpressions with ScalarSubquery\") {\n    when(directBigQueryRelationMock.schema).thenReturn(StructType.apply(Seq()))\n    when(directBigQueryRelationMock.getTableName).thenReturn(\"MY_BIGQUERY_TABLE\")\n    val logicalRelation = LogicalRelation(directBigQueryRelationMock)\n    val aggregatePlan = Aggregate(Seq(), Seq(), logicalRelation)\n    val scalarSubQueryExpression = ScalarSubquery.apply(aggregatePlan)\n    val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(scalarSubQueryExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"( SELECT * FROM ( SELECT * FROM `MY_BIGQUERY_TABLE` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_0 LIMIT 1 )\")\n  }\n\n  test(\"convertMathematicalExpressions with UnaryMinus\") {\n    val unaryMinusExpression = UnaryMinus.apply(Literal.apply(10))\n    val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(unaryMinusExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"- ( 10 )\")\n  }\n\n  test(\"convertMathematicalExpressions with CheckOverflow\") {\n    val checkOverflowExpression = CheckOverflow.apply(Literal.apply(233.45), DecimalType.apply(38, 10), nullOnOverflow = true)\n    val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(checkOverflowExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"CAST ( 233.45 AS BIGDECIMAL )\")\n  }\n\n  test(\"convertBasicExpressions with Timestamp literal\") {\n    // Internally, a timestamp is stored as the number of microseconds from the epoch of 1970-01-01T00\n    val bigQuerySQLStatement = expressionConverter.convertBasicExpressions(Literal(1230219000000000L, TimestampType), fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"TIMESTAMP_MICROS( 1230219000000000 )\")\n  }\n\n  test(\"convertStringExpressions with Like\") {\n    val bigQuerySQLStatement = expressionConverter.convertStringExpressions(\n      Like(AttributeReference.apply(\"SchoolID\", StringType)(ExprId.apply(1)),\n        Literal(\"%aug%urs%\"), '\\\\'), fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"SUBQUERY_2.SCHOOLID LIKE '%aug%urs%'\")\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-3.3-bigquery-pushdown_2.13/pom.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n    xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n    xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\">\n  <modelVersion>4.0.0</modelVersion>\n  <parent>\n    <artifactId>spark-bigquery-pushdown-parent</artifactId>\n    <groupId>com.google.cloud.spark</groupId>\n    <version>${revision}</version>\n    <relativePath>../spark-bigquery-pushdown-parent</relativePath>\n  </parent>\n\n  <artifactId>spark-3.3-bigquery-pushdown_2.13</artifactId>\n\n  <properties>\n    <scala.binary.version>2.13</scala.binary.version>\n    <scala.version>2.13.5</scala.version>\n    <spark.version>3.3.0</spark.version>\n  </properties>\n\n  <dependencies>\n    <dependency>\n      <groupId>${project.groupId}</groupId>\n      <artifactId>spark-bigquery-pushdown-common_${scala.binary.version}\n      </artifactId>\n      <version>${project.version}</version>\n    </dependency>\n    <dependency>\n      <groupId>org.apache.spark</groupId>\n      <artifactId>spark-sql_${scala.binary.version}</artifactId>\n      <version>${spark.version}</version>\n      <scope>provided</scope>\n    </dependency>\n  </dependencies>\n\n</project>\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-3.3-bigquery-pushdown_2.13/src/main/resources/META-INF/services/com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdown",
    "content": "com.google.cloud.spark.bigquery.pushdowns.Spark33BigQueryPushdown\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-3.3-bigquery-pushdown_2.13/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark33BigQueryPushdown.scala",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\npackage com.google.cloud.spark.bigquery.pushdowns\n\nclass Spark33BigQueryPushdown extends BaseSparkBigQueryPushdown {\n\n  override def supportsSparkVersion(sparkVersion: String): Boolean = {\n    sparkVersion.startsWith(\"3.3\")\n  }\n\n  override def createSparkExpressionConverter(expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory): SparkExpressionConverter = {\n    new Spark33ExpressionConverter(expressionFactory, sparkPlanFactory)\n  }\n\n  override def createSparkExpressionFactory: SparkExpressionFactory = {\n    new Spark33ExpressionFactory\n  }\n\n  override def createBigQueryStrategy(expressionConverter: SparkExpressionConverter, expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory): BigQueryStrategy = {\n    new Spark33BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactory)\n  }\n\n  override def createSparkPlanFactory(): SparkPlanFactory = {\n    new Spark33PlanFactory\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-3.3-bigquery-pushdown_2.13/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark33BigQueryPushdownPlan.scala",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.pushdowns\n\nimport com.google.cloud.bigquery.connector.common.BigQueryConnectorException\nimport com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdownUtil.doExecuteSparkPlan\nimport org.apache.spark.rdd.RDD\nimport org.apache.spark.sql.catalyst.InternalRow\nimport org.apache.spark.sql.catalyst.expressions.Attribute\nimport org.apache.spark.sql.execution.SparkPlan\n\n/** BigQueryPlan, with RDD defined by custom query. */\ncase class Spark33BigQueryPushdownPlan(output: Seq[Attribute], rdd: RDD[InternalRow])\n  extends SparkPlan {\n\n  override def children: Seq[SparkPlan] = Nil\n\n  protected override def doExecute(): RDD[InternalRow] = {\n    doExecuteSparkPlan(output, rdd)\n  }\n\n  // New function introduced in Spark 3.3\n  override protected def withNewChildrenInternal(newChildren: IndexedSeq[SparkPlan]): SparkPlan = {\n    if (newChildren.nonEmpty) {\n      throw new BigQueryConnectorException(\"Spark connector internal error: \" +\n        \"Spark33BigQueryPushdownPlan.withNewChildrenInternal() is called to set some children nodes.\")\n    }\n    this\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-3.3-bigquery-pushdown_2.13/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark33BigQueryStrategy.scala",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.pushdowns\n\nimport com.google.cloud.spark.bigquery.{SparkBigQueryUtil, SupportsQueryPushdown}\nimport org.apache.spark.sql.catalyst.plans.logical.LogicalPlan\nimport org.apache.spark.sql.execution.datasources.v2.DataSourceV2ScanRelation\n\nclass Spark33BigQueryStrategy(expressionConverter: SparkExpressionConverter, expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory)\n  extends BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactory) {\n  override def generateQueryFromPlanForDataSourceV2(plan: LogicalPlan): Option[BigQuerySQLQuery] = {\n    // DataSourceV2ScanRelation is the relation that is used in the Spark 3.3 DatasourceV2 connector\n    plan match {\n      case scanRelation@DataSourceV2ScanRelation(_, _, _, _) =>\n        scanRelation.scan match {\n          case scan: SupportsQueryPushdown =>\n            Some(SourceQuery(expressionConverter = expressionConverter,\n              expressionFactory = expressionFactory,\n              bigQueryRDDFactory = scan.getBigQueryRDDFactory,\n              tableName = SparkBigQueryUtil.getTableNameFromOptions(scanRelation.relation.options.asInstanceOf[java.util.Map[String, String]]),\n              outputAttributes = scanRelation.output,\n              alias = alias.next,\n              pushdownFilters = if (scan.getPushdownFilters.isPresent) Some(scan.getPushdownFilters.get) else None\n            ))\n\n          case _ => None\n        }\n\n      // We should never reach here\n      case _ => None\n    }\n  }\n\n  override def createUnionQuery(children: Seq[LogicalPlan]): Option[BigQuerySQLQuery] = {\n    val queries: Seq[BigQuerySQLQuery] = children.map { child =>\n      new Spark33BigQueryStrategy(expressionConverter, expressionFactory, sparkPlanFactory).generateQueryFromPlan(child).get\n    }\n    Some(UnionQuery(expressionConverter, expressionFactory, queries, alias.next))\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-3.3-bigquery-pushdown_2.13/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark33ExpressionConverter.scala",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\npackage com.google.cloud.spark.bigquery.pushdowns\n\nimport com.google.cloud.spark.bigquery.pushdowns.SparkBigQueryPushdownUtil.blockStatement\nimport org.apache.spark.sql.catalyst.expressions.{Attribute, Cast, CheckOverflow, Expression, Like, ScalarSubquery, UnaryMinus}\nimport org.apache.spark.sql.catalyst.plans.logical.LogicalPlan\n\n/**\n * Convert Spark 3.3 specific expressions to SQL\n */\nclass Spark33ExpressionConverter(expressionFactory: SparkExpressionFactory, sparkPlanFactory: SparkPlanFactory) extends SparkExpressionConverter() {\n  override def convertScalarSubqueryExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = {\n    expression match {\n      case ScalarSubquery(plan, _, _, joinCond) if joinCond.isEmpty =>\n        blockStatement(new Spark33BigQueryStrategy(this, expressionFactory, sparkPlanFactory)\n          .generateQueryFromPlan(plan).get.getStatement())\n    }\n  }\n\n  override def convertCheckOverflowExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = {\n    expression match {\n      case CheckOverflow(child, t, _) =>\n        getCastType(t) match {\n          case Some(cast) =>\n            ConstantString(\"CAST\") +\n              blockStatement(convertStatement(child, fields) + \"AS\" + cast)\n          case _ => convertStatement(child, fields)\n        }\n    }\n  }\n\n  override def convertUnaryMinusExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = {\n    expression match {\n      case UnaryMinus(child, _) =>\n        ConstantString(\"-\") +\n          blockStatement(convertStatement(child, fields))\n    }\n  }\n\n  override def convertCastExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = {\n    expression match {\n      case Cast(child, dataType, _, ansiEnabled) if !ansiEnabled =>\n        performCastExpressionConversion(child, fields, dataType)\n    }\n  }\n\n  override def convertLikeExpression(expression: Expression, fields: Seq[Attribute]): BigQuerySQLStatement = {\n    expression match {\n      case Like(left, right, _) =>\n        convertStatement(left, fields) + \"LIKE\" + convertStatement(right, fields)\n    }\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-3.3-bigquery-pushdown_2.13/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark33ExpressionFactory.scala",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.pushdowns\n\nimport org.apache.spark.sql.catalyst.expressions.{Alias, ExprId, Expression}\nimport org.apache.spark.sql.types.Metadata\n\nclass Spark33ExpressionFactory extends SparkExpressionFactory {\n  override def createAlias(child: Expression, name: String, exprId: ExprId, qualifier: Seq[String], explicitMetadata: Option[Metadata]): Alias = {\n    Alias(child, name)(exprId, qualifier, explicitMetadata)\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-3.3-bigquery-pushdown_2.13/src/main/scala/com/google/cloud/spark/bigquery/pushdowns/Spark33PlanFactory.scala",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.pushdowns\n\nimport com.google.cloud.spark.bigquery.direct.BigQueryRDDFactory\nimport org.apache.spark.sql.execution.SparkPlan\n\nclass Spark33PlanFactory extends SparkPlanFactory {\n  /**\n   * Generate SparkPlan from the output and RDD of the translated query\n   */\n  override def createBigQueryPlan(queryRoot: BigQuerySQLQuery, bigQueryRDDFactory: BigQueryRDDFactory): Option[SparkPlan] = {\n    Some(Spark33BigQueryPushdownPlan(queryRoot.output, bigQueryRDDFactory.buildScanFromSQL(queryRoot.getStatement().toString)))\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-3.3-bigquery-pushdown_2.13/src/test/scala/com/google/cloud/spark/bigquery/pushdowns/BinaryOperationExtractorSuite.scala",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\npackage com.google.cloud.spark.bigquery.pushdowns\n\nimport org.apache.spark.sql.catalyst.plans.JoinType\nimport org.apache.spark.sql.catalyst.plans.logical.{Intersect, Join, JoinHint, Range}\nimport org.scalatest.funsuite.AnyFunSuite\n\nclass BinaryOperationExtractorSuite extends AnyFunSuite  {\n\n  // Need a childPlan to pass. So, create the simplest possible\n  private val leftChildPlan = Range.apply(2L, 100L, 4L, 8)\n  private val rightChildPlan = Range.apply(2L, 100L, 4L, 10)\n\n  test(\"supported binary node\") {\n    val joinPlan = Join(leftChildPlan, rightChildPlan, JoinType.apply(\"inner\"), None, JoinHint.NONE)\n    val plan = BinaryOperationExtractor.unapply(joinPlan)\n    assert(plan.isDefined)\n    assert(plan.get.children.head == leftChildPlan)\n    assert(plan.get.children(1) == rightChildPlan)\n  }\n\n  test(\"non supported binary node\") {\n    val unsupportedPlan = Intersect(leftChildPlan, rightChildPlan, isAll = true)\n    val plan = BinaryOperationExtractor.unapply(unsupportedPlan)\n    assert(plan.isEmpty)\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-3.3-bigquery-pushdown_2.13/src/test/scala/com/google/cloud/spark/bigquery/pushdowns/JoinExtractorSuite.scala",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\npackage com.google.cloud.spark.bigquery.pushdowns\n\nimport org.apache.spark.sql.catalyst.expressions.{EqualTo, Literal}\nimport org.apache.spark.sql.catalyst.plans.JoinType\nimport org.apache.spark.sql.catalyst.plans.logical.{Join, JoinHint, Range}\nimport org.scalatest.funsuite.AnyFunSuite\n\nclass JoinExtractorSuite extends AnyFunSuite {\n  // Need a childPlan to pass. So, create the simplest possible\n  private val leftChildPlan = Range.apply(2L, 100L, 4L, 8)\n\n  // Need a childPlan to pass. So, create the simplest possible\n  private val rightChildPlan = Range.apply(2L, 100L, 4L, 16)\n\n  test(\"unapply\") {\n    val joinExpression = EqualTo.apply(Literal(leftChildPlan.start), Literal(rightChildPlan.start))\n    val joinPlan = Join.apply(leftChildPlan, rightChildPlan, JoinType.apply(\"inner\"), Option(joinExpression), JoinHint.NONE)\n    val returnedOption = JoinExtractor.unapply(joinPlan)\n    assert(returnedOption.isDefined)\n    assert(returnedOption.get._1 == JoinType.apply(\"inner\"))\n    assert(returnedOption.get._2 == Option(joinExpression))\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-3.3-bigquery-pushdown_2.13/src/test/scala/com/google/cloud/spark/bigquery/pushdowns/Spark33ExpressionConverterSuite.scala",
    "content": "/*\n * Copyright 2022 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.pushdowns\n\nimport com.google.cloud.spark.bigquery.direct.DirectBigQueryRelation\nimport org.apache.spark.sql.catalyst.expressions.{AttributeReference, CheckOverflow, ExprId, Like, Literal, ScalarSubquery, UnaryMinus}\nimport org.apache.spark.sql.catalyst.plans.logical.Aggregate\nimport org.apache.spark.sql.execution.datasources.LogicalRelation\nimport org.apache.spark.sql.types.{DecimalType, LongType, StringType, StructType, TimestampType}\nimport org.mockito.Mockito.when\nimport org.mockito.{Mock, MockitoAnnotations}\nimport org.scalatest.BeforeAndAfter\nimport org.scalatest.funsuite.AnyFunSuite\n\nclass Spark33ExpressionConverterSuite extends AnyFunSuite with BeforeAndAfter {\n  @Mock\n  var directBigQueryRelationMock: DirectBigQueryRelation = _\n  @Mock\n  var sparkPlanFactoryMock: SparkPlanFactory = _\n\n  private val expressionFactory = new Spark33ExpressionFactory\n  private val expressionConverter = new Spark33ExpressionConverter(expressionFactory, sparkPlanFactoryMock)\n  private val fields = List(AttributeReference.apply(\"SchoolID\", LongType)(ExprId.apply(1), List(\"SUBQUERY_2\")))\n\n  before {\n    MockitoAnnotations.initMocks(this)\n  }\n\n  test(\"convertMiscellaneousExpressions with ScalarSubquery\") {\n    when(directBigQueryRelationMock.schema).thenReturn(StructType.apply(Seq()))\n    when(directBigQueryRelationMock.getTableName).thenReturn(\"MY_BIGQUERY_TABLE\")\n    val logicalRelation = LogicalRelation(directBigQueryRelationMock)\n    val aggregatePlan = Aggregate(Seq(), Seq(), logicalRelation)\n    val scalarSubQueryExpression = ScalarSubquery.apply(aggregatePlan)\n    val bigQuerySQLStatement = expressionConverter.convertMiscellaneousExpressions(scalarSubQueryExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"( SELECT * FROM ( SELECT * FROM `MY_BIGQUERY_TABLE` AS BQ_CONNECTOR_QUERY_ALIAS ) AS SUBQUERY_0 LIMIT 1 )\")\n  }\n\n  test(\"convertMathematicalExpressions with UnaryMinus\") {\n    val unaryMinusExpression = UnaryMinus.apply(Literal.apply(10))\n    val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(unaryMinusExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"- ( 10 )\")\n  }\n\n  test(\"convertMathematicalExpressions with CheckOverflow\") {\n    val checkOverflowExpression = CheckOverflow.apply(Literal.apply(233.45), DecimalType.apply(38, 10), nullOnOverflow = true)\n    val bigQuerySQLStatement = expressionConverter.convertMathematicalExpressions(checkOverflowExpression, fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"CAST ( 233.45 AS BIGDECIMAL )\")\n  }\n\n  test(\"convertBasicExpressions with Timestamp literal\") {\n    // Internally, a timestamp is stored as the number of microseconds from the epoch of 1970-01-01T00\n    val bigQuerySQLStatement = expressionConverter.convertBasicExpressions(Literal(1230219000000000L, TimestampType), fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"TIMESTAMP_MICROS( 1230219000000000 )\")\n  }\n\n  test(\"convertStringExpressions with Like\") {\n    val bigQuerySQLStatement = expressionConverter.convertStringExpressions(\n      Like(AttributeReference.apply(\"SchoolID\", StringType)(ExprId.apply(1)),\n        Literal(\"%aug%urs%\"), '\\\\'), fields)\n    assert(bigQuerySQLStatement.isDefined)\n    assert(bigQuerySQLStatement.get.toString == \"SUBQUERY_2.SCHOOLID LIKE '%aug%urs%'\")\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-bigquery-pushdown-common_2.11/pom.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n    xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n    xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\">\n  <parent>\n    <artifactId>spark-bigquery-pushdown-parent</artifactId>\n    <groupId>com.google.cloud.spark</groupId>\n    <version>${revision}</version>\n    <relativePath>../spark-bigquery-pushdown-parent</relativePath>\n  </parent>\n  <modelVersion>4.0.0</modelVersion>\n\n  <artifactId>spark-bigquery-pushdown-common_2.11</artifactId>\n  <properties>\n    <scala.binary.version>2.11</scala.binary.version>\n    <spark.version>2.4.0</spark.version>\n  </properties>\n\n  <build>\n    <plugins>\n      <!-- make sure we don't have any _2.10 or _2.11 dependencies when building\n      for Scala 2.12 -->\n      <plugin>\n        <groupId>org.apache.maven.plugins</groupId>\n        <artifactId>maven-enforcer-plugin</artifactId>\n        <version>3.0.0-M3</version>\n        <executions>\n          <execution>\n            <id>enforce-versions</id>\n            <goals>\n              <goal>enforce</goal>\n            </goals>\n            <configuration>\n              <rules>\n                <bannedDependencies>\n                  <excludes combine.children=\"append\">\n                    <exclude>*:*_2.10</exclude>\n                    <exclude>*:*_2.12</exclude>\n                  </excludes>\n                </bannedDependencies>\n              </rules>\n            </configuration>\n          </execution>\n        </executions>\n      </plugin>\n    </plugins>\n  </build>\n\n</project>\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-bigquery-pushdown-common_2.12/pom.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n    xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n    xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\">\n  <parent>\n    <artifactId>spark-bigquery-pushdown-parent</artifactId>\n    <groupId>com.google.cloud.spark</groupId>\n    <version>${revision}</version>\n    <relativePath>../spark-bigquery-pushdown-parent</relativePath>\n  </parent>\n  <modelVersion>4.0.0</modelVersion>\n\n  <artifactId>spark-bigquery-pushdown-common_2.12</artifactId>\n\n  <properties>\n    <scala.binary.version>2.12</scala.binary.version>\n    <scala.version>2.12.18</scala.version>\n    <spark.version>3.1.0</spark.version>\n  </properties>\n\n  <build>\n    <plugins>\n      <!-- make sure we don't have any _2.10 or _2.11 dependencies when building\n      for Scala 2.12 -->\n      <plugin>\n        <groupId>org.apache.maven.plugins</groupId>\n        <artifactId>maven-enforcer-plugin</artifactId>\n        <version>3.0.0-M3</version>\n        <executions>\n          <execution>\n            <id>enforce-versions</id>\n            <goals>\n              <goal>enforce</goal>\n            </goals>\n            <configuration>\n              <rules>\n                <bannedDependencies>\n                  <excludes combine.children=\"append\">\n                    <exclude>*:*_2.10</exclude>\n                    <exclude>*:*_2.11</exclude>\n                  </excludes>\n                </bannedDependencies>\n              </rules>\n            </configuration>\n          </execution>\n        </executions>\n      </plugin>\n    </plugins>\n  </build>\n</project>\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-bigquery-pushdown-common_2.13/pom.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n    xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n    xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\">\n  <parent>\n    <artifactId>spark-bigquery-pushdown-parent</artifactId>\n    <groupId>com.google.cloud.spark</groupId>\n    <version>${revision}</version>\n    <relativePath>../spark-bigquery-pushdown-parent</relativePath>\n  </parent>\n  <modelVersion>4.0.0</modelVersion>\n\n  <artifactId>spark-bigquery-pushdown-common_2.13</artifactId>\n\n  <properties>\n    <scala.binary.version>2.13</scala.binary.version>\n    <scala.version>2.13.5</scala.version>\n    <spark.version>3.2.0</spark.version>\n  </properties>\n\n  <build>\n    <plugins>\n      <!-- make sure we don't have any _2.10 or _2.11 dependencies when building\n      for Scala 2.13 -->\n      <plugin>\n        <groupId>org.apache.maven.plugins</groupId>\n        <artifactId>maven-enforcer-plugin</artifactId>\n        <version>3.0.0-M3</version>\n        <executions>\n          <execution>\n            <id>enforce-versions</id>\n            <goals>\n              <goal>enforce</goal>\n            </goals>\n            <configuration>\n              <rules>\n                <bannedDependencies>\n                  <excludes combine.children=\"append\">\n                    <exclude>*:*_2.10</exclude>\n                    <exclude>*:*_2.11</exclude>\n                    <exclude>*:*_2.12</exclude>\n                  </excludes>\n                </bannedDependencies>\n              </rules>\n            </configuration>\n          </execution>\n        </executions>\n      </plugin>\n    </plugins>\n  </build>\n</project>\n"
  },
  {
    "path": "spark-bigquery-pushdown/spark-bigquery-pushdown-parent/pom.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n    xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n    xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\">\n  <parent>\n    <artifactId>spark-bigquery-parent</artifactId>\n    <groupId>com.google.cloud.spark</groupId>\n    <version>${revision}</version>\n    <relativePath>../../spark-bigquery-parent</relativePath>\n  </parent>\n  <modelVersion>4.0.0</modelVersion>\n\n  <artifactId>spark-bigquery-pushdown-parent</artifactId>\n  <name>Spark BigQuery Predicate Pushdown Implementation common settings</name>\n\n  <packaging>pom</packaging>\n  <properties>\n    <maven.compiler.release></maven.compiler.release>\n    <maven.compiler.source>1.8</maven.compiler.source>\n    <maven.compiler.target>1.8</maven.compiler.target>\n    <toolchain.jdk.version>[1.8,9)</toolchain.jdk.version>\n    <scala.binary.version>2.12</scala.binary.version>\n    <scala.version>2.12.18</scala.version>\n    <spark.version>3.1.0</spark.version>\n  </properties>\n  <licenses>\n    <license>\n      <name>Apache License, Version 2.0</name>\n      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>\n      <distribution>repo</distribution>\n    </license>\n  </licenses>\n  <dependencies>\n    <dependency>\n      <groupId>${project.groupId}</groupId>\n      <artifactId>spark-bigquery-connector-common</artifactId>\n      <version>${project.version}</version>\n    </dependency>\n    <dependency>\n      <groupId>${project.groupId}</groupId>\n      <artifactId>spark-bigquery-scala-212-support</artifactId>\n      <version>${project.version}</version>\n    </dependency>\n    <dependency>\n      <groupId>org.apache.spark</groupId>\n      <artifactId>spark-mllib_${scala.binary.version}</artifactId>\n      <version>${spark.version}</version>\n      <scope>provided</scope>\n      <exclusions>\n        <exclusion>\n          <groupId>io.netty</groupId>\n          <artifactId>netty</artifactId>\n        </exclusion>\n      </exclusions>\n    </dependency>\n    <dependency>\n      <groupId>org.apache.spark</groupId>\n      <artifactId>spark-sql_${scala.binary.version}</artifactId>\n      <version>${spark.version}</version>\n      <scope>provided</scope>\n      <exclusions>\n        <exclusion>\n          <groupId>io.netty</groupId>\n          <artifactId>netty</artifactId>\n        </exclusion>\n      </exclusions>\n    </dependency>\n    <dependency>\n      <groupId>org.apache.spark</groupId>\n      <artifactId>spark-avro_${scala.binary.version}</artifactId>\n      <version>${spark.version}</version>\n      <scope>test</scope>\n    </dependency>\n    <dependency>\n      <groupId>org.scalatest</groupId>\n      <artifactId>scalatest_${scala.binary.version}</artifactId>\n      <version>3.2.14</version>\n      <scope>test</scope>\n    </dependency>\n    <dependency>\n      <groupId>org.mockito</groupId>\n      <artifactId>mockito-scala-scalatest_${scala.binary.version}</artifactId>\n      <version>1.17.12</version>\n      <scope>test</scope>\n    </dependency>\n    <dependency>\n      <groupId>${project.groupId}</groupId>\n      <artifactId>spark-bigquery-connector-common</artifactId>\n      <version>${project.version}</version>\n      <scope>test</scope>\n      <classifier>tests</classifier>\n    </dependency>\n    <dependency>\n      <groupId>${project.groupId}</groupId>\n      <artifactId>spark-bigquery-tests</artifactId>\n      <version>${project.version}</version>\n      <scope>test</scope>\n    </dependency>\n  </dependencies>\n  <build>\n    <sourceDirectory>src/main/scala</sourceDirectory>\n    <plugins>\n      <plugin>\n        <groupId>net.alchim31.maven</groupId>\n        <artifactId>scala-maven-plugin</artifactId>\n        <configuration>\n          <scalaVersion>${scala.version}</scalaVersion>\n        </configuration>\n        <executions>\n          <execution>\n            <goals>\n              <goal>compile</goal>\n              <goal>testCompile</goal>\n            </goals>\n          </execution>\n        </executions>\n      </plugin>\n      <!-- enable scalatest -->\n      <plugin>\n        <groupId>org.scalatest</groupId>\n        <artifactId>scalatest-maven-plugin</artifactId>\n        <version>2.2.0</version>\n        <configuration>\n          <reportsDirectory>${project.build.directory}/surefire-reports\n          </reportsDirectory>\n          <junitxml>.</junitxml>\n          <filereports>TestSuite.txt</filereports>\n          <skipTests>${scala.skipTests}</skipTests>\n        </configuration>\n        <executions>\n          <execution>\n            <id>test</id>\n            <goals>\n              <goal>test</goal>\n            </goals>\n          </execution>\n        </executions>\n      </plugin>\n      <!-- keep scala version, can be queried without loading code -->\n      <plugin>\n        <groupId>org.apache.maven.plugins</groupId>\n        <artifactId>maven-resources-plugin</artifactId>\n        <executions>\n          <execution>\n            <id>copy-resources</id>\n            <!-- here the phase you need -->\n            <phase>validate</phase>\n            <goals>\n              <goal>copy-resources</goal>\n            </goals>\n            <configuration>\n              <outputDirectory>${basedir}/target/classes</outputDirectory>\n              <resources>\n                <resource>\n                  <directory>src/build/resources</directory>\n                  <filtering>true</filtering>\n                </resource>\n              </resources>\n            </configuration>\n          </execution>\n        </executions>\n      </plugin>\n      <plugin>\n        <groupId>org.codehaus.mojo</groupId>\n        <artifactId>build-helper-maven-plugin</artifactId>\n        <executions>\n          <execution>\n            <phase>generate-sources</phase>\n            <goals>\n              <goal>add-test-source</goal>\n            </goals>\n            <configuration>\n              <sources>\n                <source>src/test/scala</source>\n              </sources>\n            </configuration>\n          </execution>\n        </executions>\n      </plugin>\n      <!--\n      <plugin>\n        <groupId>org.apache.maven.plugins</groupId>\n        <artifactId>maven-enforcer-plugin</artifactId>\n        <version>3.5.0</version>\n        <executions>\n          <execution>\n            <id>enforce-java</id>\n            <goals>\n              <goal>enforce</goal>\n            </goals>\n            <configuration>\n              <rules>\n                <requireJavaVersion>\n                  <version>[1.8,9)</version>\n                </requireJavaVersion>\n              </rules>\n            </configuration>\n          </execution>\n        </executions>\n      </plugin>\n      -->\n      <!-- generating empty javadoc jar, for Maven Central publishing -->\n      <plugin>\n        <groupId>org.apache.maven.plugins</groupId>\n        <artifactId>maven-jar-plugin</artifactId>\n        <executions>\n          <execution>\n            <id>empty-javadoc-jar</id>\n            <phase>package</phase>\n            <goals>\n              <goal>jar</goal>\n            </goals>\n            <configuration>\n              <classifier>javadoc</classifier>\n              <classesDirectory>${basedir}/src/build/javadoc</classesDirectory>\n            </configuration>\n          </execution>\n        </executions>\n      </plugin>\n    </plugins>\n  </build>\n</project>\n"
  },
  {
    "path": "spark-bigquery-python-lib/pom.xml",
    "content": "<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n  xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n  xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\">\n  <modelVersion>4.0.0</modelVersion>\n  <parent>\n    <groupId>com.google.cloud.spark</groupId>\n    <artifactId>spark-bigquery-parent</artifactId>\n    <version>${revision}</version>\n    <relativePath>../spark-bigquery-parent</relativePath>\n  </parent>\n\n  <artifactId>spark-bigquery-support</artifactId>\n  <name>PySpark-BigQuery support library</name>\n  <packaging>pom</packaging>\n\n  <build>\n    <plugins>\n      <plugin>\n        <artifactId>maven-assembly-plugin</artifactId>\n        <configuration>\n          <appendAssemblyId>false</appendAssemblyId>\n          <descriptors>\n            <descriptor>src/assembly/descriptor.xml</descriptor>\n          </descriptors>\n        </configuration>\n        <executions>\n          <execution>\n            <phase>package</phase>\n            <goals>\n              <goal>single</goal>\n            </goals>\n          </execution>\n        </executions>\n      </plugin>\n    </plugins>\n  </build>\n\n</project>"
  },
  {
    "path": "spark-bigquery-python-lib/src/assembly/descriptor.xml",
    "content": "<assembly>\n    <id>python-support-lib</id>\n    <includeBaseDirectory>false</includeBaseDirectory>\n    <formats>\n        <format>zip</format>\n    </formats>\n\n    <fileSets>\n        <fileSet>\n            <directory>src/main/python</directory>\n            <outputDirectory>/</outputDirectory>\n        </fileSet>\n    </fileSets>\n</assembly>\n"
  },
  {
    "path": "spark-bigquery-python-lib/src/main/python/__init__.py",
    "content": ""
  },
  {
    "path": "spark-bigquery-python-lib/src/main/python/google/__init__.py",
    "content": ""
  },
  {
    "path": "spark-bigquery-python-lib/src/main/python/google/cloud/__init__.py",
    "content": ""
  },
  {
    "path": "spark-bigquery-python-lib/src/main/python/google/cloud/spark/__init__.py",
    "content": ""
  },
  {
    "path": "spark-bigquery-python-lib/src/main/python/google/cloud/spark/bigquery/__init__.py",
    "content": ""
  },
  {
    "path": "spark-bigquery-python-lib/src/main/python/google/cloud/spark/bigquery/big_query_connector_utils.py",
    "content": "def enablePushdownSession(spark):\n  spark.sparkContext._jvm.com.google.cloud.spark.bigquery.BigQueryConnectorUtils.enablePushdownSession(spark._jsparkSession)\n\n\ndef disablePushdownSession(spark):\n  spark.sparkContext._jvm.com.google.cloud.spark.bigquery.BigQueryConnectorUtils.disablePushdownSession(spark._jsparkSession)\n"
  },
  {
    "path": "spark-bigquery-scala-212-support/pom.xml",
    "content": "<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n         xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\">\n    <modelVersion>4.0.0</modelVersion>\n    <parent>\n        <groupId>com.google.cloud.spark</groupId>\n        <artifactId>spark-bigquery-parent</artifactId>\n        <version>${revision}</version>\n        <relativePath>../spark-bigquery-parent</relativePath>\n    </parent>\n\n    <artifactId>spark-bigquery-scala-212-support</artifactId>\n    <name>Spark BigQuery Scala 2.12 Support Library</name>\n    <licenses>\n        <license>\n            <name>Apache License, Version 2.0</name>\n            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>\n            <distribution>repo</distribution>\n        </license>\n    </licenses>\n    <properties>\n        <!-- some of the code is identical to code in spark-bigquery-common, but refers to different classes -->\n        <cpd.skip>true</cpd.skip>\n    </properties>\n    <dependencies>\n        <dependency>\n            <groupId>${project.groupId}</groupId>\n            <artifactId>spark-bigquery-connector-common</artifactId>\n            <version>${project.version}</version>\n        </dependency>\n        <dependency>\n            <groupId>org.apache.spark</groupId>\n            <artifactId>spark-sql_2.12</artifactId>\n            <version>3.2.0</version>\n            <scope>provided</scope>\n            <exclusions>\n                <exclusion>\n                    <groupId>io.netty</groupId>\n                    <artifactId>netty</artifactId>\n                </exclusion>\n            </exclusions>\n        </dependency>\n    </dependencies>\n</project>\n"
  },
  {
    "path": "spark-bigquery-scala-212-support/src/main/java/com/google/cloud/spark/bigquery/direct/PreScala213BigQueryRDD.java",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\npackage com.google.cloud.spark.bigquery.direct;\n\nimport java.util.List;\nimport org.apache.spark.Dependency;\nimport org.apache.spark.Partition;\nimport org.apache.spark.SparkContext;\nimport org.apache.spark.TaskContext;\nimport org.apache.spark.rdd.RDD;\nimport org.apache.spark.sql.catalyst.InternalRow;\nimport scala.collection.Seq;\nimport scala.collection.Seq$;\n\n// This method relies on the scala.Seq alias, which is different in Scala 2.12 and 2.13. In Scala\n// 2.12 scala.Seq points to scala.collection.Seq whereas in Scala 2.13 it points to\n// scala.collection.immutable.Seq.\nclass PreScala213BigQueryRDD extends RDD<InternalRow> {\n\n  // Added suffix so that CPD wouldn't mark as duplicate\n  private final BigQueryRDDContext ctx212;\n\n  private List<String> streamNames;\n\n  public PreScala213BigQueryRDD(SparkContext sparkContext, BigQueryRDDContext ctx) {\n    super(\n        sparkContext,\n        (Seq<Dependency<?>>) Seq$.MODULE$.<Dependency<?>>newBuilder().result(),\n        scala.reflect.ClassTag$.MODULE$.apply(InternalRow.class));\n\n    this.ctx212 = ctx;\n  }\n\n  @Override\n  public scala.collection.Iterator<InternalRow> compute(Partition split, TaskContext context) {\n    return ctx212.compute(split, context);\n  }\n\n  @Override\n  public Partition[] getPartitions() {\n    return ctx212.getPartitions();\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-scala-212-support/src/main/java/org/apache/spark/sql/PreScala213SparkSqlUtils.java",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.apache.spark.sql;\n\nimport java.util.List;\nimport java.util.stream.Collectors;\nimport java.util.stream.Stream;\nimport org.apache.spark.sql.catalyst.InternalRow;\nimport org.apache.spark.sql.catalyst.analysis.SimpleAnalyzer$;\nimport org.apache.spark.sql.catalyst.encoders.ExpressionEncoder;\nimport org.apache.spark.sql.catalyst.encoders.RowEncoder;\nimport org.apache.spark.sql.catalyst.expressions.Attribute;\nimport org.apache.spark.sql.catalyst.expressions.AttributeReference;\nimport org.apache.spark.sql.catalyst.expressions.NamedExpression;\nimport org.apache.spark.sql.types.StructType;\nimport scala.collection.JavaConverters;\nimport scala.collection.mutable.ListBuffer;\n\npublic class PreScala213SparkSqlUtils extends SparkSqlUtils {\n\n  @Override\n  public boolean supportsScalaVersion(String scalaVersion) {\n    return scalaVersion.compareTo(\"2.13\") < 0;\n  }\n\n  @Override\n  public InternalRow rowToInternalRow(Row row) {\n    return InternalRow.fromSeq(row.toSeq());\n  }\n\n  // This method relies on the scala.Seq alias, which is different in Scala 2.12 and 2.13. In Scala\n  // 2.12 scala.Seq points to scala.collection.Seq whereas in Scala 2.13 it points to\n  // scala.collection.immutable.Seq.   @Override\n  public ExpressionEncoder<Row> createExpressionEncoder(StructType schema) {\n    List<Attribute> attributes =\n        JavaConverters.asJavaCollection(toAttributes(schema)).stream()\n            .map(Attribute::toAttribute)\n            .collect(Collectors.toList());\n    ExpressionEncoder<Row> expressionEncoder =\n        RowEncoder.apply(schema)\n            .resolveAndBind(\n                JavaConverters.asScalaIteratorConverter(attributes.iterator()).asScala().toSeq(),\n                SimpleAnalyzer$.MODULE$);\n    return expressionEncoder;\n  }\n\n  // `toAttributes` is protected[sql] starting spark 3.2.0, so we need this call to be in the same\n  // package. Since Scala 2.13/Spark 3.3 forbids it, the implementation has been ported to Java\n  public static scala.collection.Seq<AttributeReference> toAttributes(StructType schema212) {\n    return JavaConverters.asScalaBuffer(\n            Stream.of(schema212.fields())\n                .map(\n                    field212 ->\n                        new AttributeReference(\n                            field212.name(),\n                            field212.dataType(),\n                            field212.nullable(),\n                            field212.metadata(),\n                            NamedExpression.newExprId(),\n                            new ListBuffer<String>().toStream()))\n                .collect(Collectors.toList()))\n        .toSeq();\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-scala-212-support/src/main/resources/META-INF/services/org.apache.spark.sql.SparkSqlUtils",
    "content": "org.apache.spark.sql.PreScala213SparkSqlUtils\n"
  },
  {
    "path": "spark-bigquery-scala-212-support/src/test/java/com/google/cloud/spark/bigquery/direct/PreScala213BigQueryRDDTest.java",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage com.google.cloud.spark.bigquery.direct;\n\nimport static com.google.common.truth.Truth.assertThat;\n\nimport org.apache.spark.rdd.RDD;\nimport org.apache.spark.sql.SparkSession;\nimport org.apache.spark.sql.catalyst.InternalRow;\nimport org.junit.Test;\n\n// Ported this class from Scala to Java with no change in functionality\npublic class PreScala213BigQueryRDDTest {\n\n  @Test\n  public void testCreatePreScala213BigQueryRDD() throws Exception {\n    SparkSession sparkSession =\n        SparkSession.builder().master(\"local\").appName(getClass().getName()).getOrCreate();\n\n    BigQueryRDDFactory factory =\n        new BigQueryRDDFactory(\n            null /* bigQueryClient */,\n            null /* bigQueryReadClientFactory */,\n            null /* bigQueryTracerFactory */,\n            null /* options */,\n            sparkSession.sqlContext());\n    RDD<InternalRow> result =\n        factory.createRDD(\n            sparkSession.sqlContext(),\n            null /* Partition[] */,\n            null /* ReadSession */,\n            null /* Schema */,\n            null /* columnsInOrder */,\n            null /* options */,\n            null /* bigQueryReadClientFactory */,\n            null /* bigQueryTracerFactory */);\n\n    assertThat(result).isInstanceOf(PreScala213BigQueryRDD.class);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-scala-212-support/src/test/java/org/apache/spark/sql/PreScala213SparkSqlUtilsTest.java",
    "content": "/*\n * Copyright 2022 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *       http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.apache.spark.sql;\n\nimport static com.google.common.truth.Truth.assertThat;\n\nimport org.apache.spark.sql.catalyst.InternalRow;\nimport org.apache.spark.sql.catalyst.expressions.GenericRow;\nimport org.apache.spark.unsafe.types.UTF8String;\nimport org.junit.Test;\n\npublic class PreScala213SparkSqlUtilsTest {\n\n  @Test\n  public void testRowToInternalRow() throws Exception {\n    SparkSqlUtils ssu = SparkSqlUtils.getInstance();\n    assertThat(ssu).isInstanceOf(PreScala213SparkSqlUtils.class);\n    Row row = new GenericRow(new Object[] {UTF8String.fromString(\"a\"), 1});\n    InternalRow internalRow = ssu.rowToInternalRow(row);\n    assertThat(internalRow.numFields()).isEqualTo(2);\n    assertThat(internalRow.getString(0).toString()).isEqualTo(\"a\");\n    assertThat(internalRow.getInt(1)).isEqualTo(1);\n  }\n}\n"
  },
  {
    "path": "spark-bigquery-tests/pom.xml",
    "content": "<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n    xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n    xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\">\n  <modelVersion>4.0.0</modelVersion>\n  <parent>\n    <groupId>com.google.cloud.spark</groupId>\n    <artifactId>spark-bigquery-parent</artifactId>\n    <version>${revision}</version>\n    <relativePath>../spark-bigquery-parent</relativePath>\n  </parent>\n\n  <artifactId>spark-bigquery-tests</artifactId>\n  <name>BigQuery Connector Tests Support</name>\n  <licenses>\n    <license>\n      <name>Apache License, Version 2.0</name>\n      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>\n      <distribution>repo</distribution>\n    </license>\n  </licenses>\n  <dependencies>\n    <dependency>\n      <groupId>${project.groupId}</groupId>\n      <artifactId>bigquery-connector-common</artifactId>\n      <version>${project.version}</version>\n    </dependency>\n    <dependency>\n      <groupId>${project.groupId}</groupId>\n      <artifactId>spark-bigquery-connector-common</artifactId>\n      <version>${project.version}</version>\n    </dependency>\n    <dependency>\n      <groupId>${project.groupId}</groupId>\n      <artifactId>spark-bigquery-connector-common</artifactId>\n      <version>${project.version}</version>\n      <classifier>tests</classifier>\n    </dependency>\n    <dependency>\n      <groupId>${project.groupId}</groupId>\n      <artifactId>spark-bigquery-scala-212-support</artifactId>\n      <version>${project.version}</version>\n    </dependency>\n    <dependency>\n      <groupId>com.google.cloud</groupId>\n      <artifactId>google-cloud-dataproc</artifactId>\n    </dependency>\n    <dependency>\n      <groupId>com.google.cloud</groupId>\n      <artifactId>google-cloud-storage</artifactId>\n    </dependency>\n    <dependency>\n      <groupId>com.google.cloud.bigdataoss</groupId>\n      <artifactId>gcs-connector</artifactId>\n      <classifier>shaded</classifier>\n    </dependency>\n    <dependency>\n      <groupId>com.google.truth</groupId>\n      <artifactId>truth</artifactId>\n    </dependency>\n    <dependency>\n      <groupId>junit</groupId>\n      <artifactId>junit</artifactId>\n    </dependency>\n    <dependency>\n      <groupId>org.mockito</groupId>\n      <artifactId>mockito-core</artifactId>\n      <scope>compile</scope>\n    </dependency>\n    <dependency>\n      <groupId>org.apache.spark</groupId>\n      <artifactId>spark-sql_2.12</artifactId>\n      <version>2.4.0</version>\n      <scope>provided</scope>\n    </dependency>\n  </dependencies>\n</project>\n"
  }
]