Working with Metadata, Creating Text Networks¶
The previous notebooks focus on working directly with EarlyPrint texts, as data. But we also provide a range of tools for working metadata: information about the texts. Using metadata, we can supplement our study of texts with information about who authored a text, when it was published, who the printers and publishers were, and more. Knowing how to retrieve this metadata and combine it with the data from the text itself is a crucial skill for working with the EarlyPrint corpus.
Much of the metadata for EarlyPrint is inherited from EEBO-TCP (the Text Creation Partnership), which is itself inherited from the ESTC (English Short Title Catalog). If these acronyms don’t yet mean anything to you, I’ve written a blog post that covers many aspects of our metadata and the improvements we’ve made to it. To make a long story short, our updated and improved metadata is available in its own Github repository.
The EarlyPrint site offers a number of ways to explore our metadata. The most fine-grained is our Catalog Search tool. You can also browse and download facets of metadata using our Download page.
In this tutorial, we’ll cover the following:
where to download metadata
how to parse, or process, metadata XML
using our improved metadata to create networks of texts and their printers
Downloading Metadata¶
If you look at our Catalog Search or Download page, you’ll see that you can search through various metadata fields and download a CSV (comma-separated value) file of just the subset of metadata you care about. You can use this to get metadata just on texts published in a single year, or ones just by a certain author or on a certain subject.
For many coding workflows, you may want to do the same sort of operation from within a Python environment. Start with the complete set of metadata, carve out a subset you care about, and use that subset to do something else.
The files used in this tutorial can be found in the standalone metadata Github repository. From the Github page, you can download all the files as .zip
archive, or you can “clone” the repository onto your own computer.
For this first part of the tutorial, you’ll need to install lxml
by running pip install lxml
on the command line. You may already have it installed from our previous tutorials. All subsequent libraries can be installed the same way. For help on this, see the Programming Historian’s Installing Python Modules with pip.
A Single Metadata File¶
If there’s just one text you care about, you can download our metadata directly into a Python script using the requests
module. If you’ve already found or downloaded a text using the EarlyPrint library or lab, you’ll notice that each text comes with a unique ID number, inherited from the TCP. (If you’re working with our XML files, the ID is also the filename.)
As an example, let’s find metadata for the text we used in our first tutorial, Margaret Cavendish’s Observations Upon Experimental Philosophy and The Blazing World. The TCP ID for this text is A53049. Using that and the base url for our metadata GitHub repository, we can retrieve the metadata XML in just a few lines of code:
# Import libraries
from lxml import etree
import requests
tcp_id = "A53049"
# A "formatting" string that lets us put any TCP ID we want into the right place
base_url = f'https://raw.githubusercontent.com/earlyprint/epmetadata/master/header/{tcp_id}_header.xml'
# Using requests, "get" the text from the file at this web location
raw_text = requests.get(base_url).text
print(raw_text)
<?xml version="1.0" encoding="UTF-8"?><?xml-model href="../schema/ep_teiHeader.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?><teiHeader xmlns="http://www.tei-c.org/ns/1.0">
<fileDesc>
<titleStmt>
<title>Observations upon experimental philosophy to which is added The description of a new blazing world / written by the thrice noble, illustrious, and excellent princesse, the Duchess of Newcastle.</title>
<author>Newcastle, Margaret Cavendish, Duchess of, 1624?-1674.</author>
</titleStmt>
<publicationStmt>
<publisher>EarlyPrint project</publisher>
<idno type="tcpid">A53049</idno>
<idno type="estcid">R32311</idno>
</publicationStmt>
<sourceDesc>
<biblFull>
<titleStmt>
<title>Observations upon experimental philosophy to which is added The description of a new blazing world / written by the thrice noble, illustrious, and excellent princesse, the Duchess of Newcastle.</title>
<author gender="F">Newcastle, Margaret Cavendish, Duchess of, 1624?-1674.</author>
</titleStmt>
<extent>654 p. in various pagings. </extent>
<publicationStmt>
<publisher>Printed by <persName type="printer">A. Maxwell</persName> ...,</publisher>
<pubPlace>London :</pubPlace>
<date when="1666">1666.</date>
</publicationStmt>
<notesStmt>
<note>"The description of a new world called the blazing new world" has separate t.p.</note>
<note>Reproduction of original in the University of Illinois (Urbana-Champaign Campus). Library.</note>
</notesStmt>
</biblFull>
<listPerson type="tcp_ep">
<person type="printer">
<persName>A. Maxwell</persName>
</person>
</listPerson>
<listPerson type="estc_ep">
<person role="creator">
<persName>Newcastle, Margaret Cavendish, <roleName>Duchess of,</roleName></persName>
<birth>1624?</birth>
<death>1674.</death>
<sex value="F"/>
</person>
</listPerson>
</sourceDesc>
</fileDesc>
<profileDesc>
<textClass>
<keywords n="general">
<list>
<item n="650a">Philosophy, English</item>
<item n="650a">Voyages, Imaginary</item>
</list>
</keywords>
<keywords n="temporal">
<list>
<item n="650y">17th century.</item>
</list>
</keywords>
<keywords n="geographic">
<list>
<item n="752a">Great Britain</item>
<item n="752b">England</item>
<item n="752d">London.</item>
</list>
</keywords>
</textClass>
</profileDesc>
</teiHeader>
We’ve now retrieved the XML from our metadata file for this text. Note that it’s very short but includes lots of key information about the text, including its author, title, and date of publication. It also includes information from the text’s imprint, including (in this case) the name of the printer.
Since this is an XML file, we can retrieve information from it using lxml
in much the same way as we did when we parsed the text in our earlier tutorial.
parser = etree.XMLParser(collect_ids=False, encoding='utf-8')
nsmap={'tei': 'http://www.tei-c.org/ns/1.0'}
# Parse your XML file into a "tree" object
metadata = etree.fromstring(raw_text.encode('utf8'), parser)
# Get information from the XML
# Get the title, using .find()
print("Title:", metadata.find(".//tei:sourceDesc//tei:title", namespaces=nsmap).text, "\n")
# Get the author, using the same technique
print("Author:", metadata.find(".//tei:sourceDesc//tei:author", namespaces=nsmap).text, "\n")
# Get the original date, as it was entered by catalogers
print("Original Date:", metadata.find(".//tei:sourceDesc//tei:date", namespaces=nsmap).text, "\n")
# Get the 4-digit EarlyPrint parsed date, using .get()
print("Parsed Date:", metadata.find(".//tei:sourceDesc//tei:date", namespaces=nsmap).get("when"), "\n")
# Get the printer by finding based on the "type" attribute
print("Printer:", metadata.find(".//tei:person[@type='printer']/tei:persName", namespaces=nsmap).text, "\n")
Title: Observations upon experimental philosophy to which is added The description of a new blazing world / written by the thrice noble, illustrious, and excellent princesse, the Duchess of Newcastle.
Author: Newcastle, Margaret Cavendish, Duchess of, 1624?-1674.
Original Date: 1666.
Parsed Date: 1666
Printer: A. Maxwell
All of the Metadata¶
The above method works fine if you need data on just one text, but what about analyzing the data for all of the texts at once? To do this, you’ll need to download all of the metadata files from Github. But once you do, the code is not all that different from working with a single file.
In the following code block, we’ll get the title, author, and date for every single text in the EarlyPrint corpus. We’ll aggregate the information and store it in a pandas
DataFrame for later use and analysis. For more on pandas
, see their documentation.
n.b. Some of the dates in our corpus are ranges rather than exact years, which are handled by notBefore
and notAfter
attributes of the <date>
element. I’m skipping over those in this example, but you may want to retain them in your analysis. Find out more in my metadata blog post.
import pandas as pd
import glob
# Get the full list of metadata files
# (You'll change this line based on where the files are on your computer)
files = glob.glob("../../epmetadata/header/*.xml")
all_data = [] # Empty list for data
index = [] # Empty list for TCP IDs
for f in files: # Loop through each file
tcp_id = f.split("/")[-1].split("_")[0] # Get TCP ID from filename
metadata = etree.parse(f, parser) # Create lxml tree for metadata
title = metadata.find(".//tei:sourceDesc//tei:title", namespaces=nsmap).text # Get title
# Get author (if there is one)
try:
author = metadata.find(".//tei:sourceDesc//tei:author", namespaces=nsmap).text
except AttributeError:
author = None
# Get date (if there is one that isn't a range)
try:
date = metadata.find(".//tei:sourceDesc//tei:date", namespaces=nsmap).get("when")
except AttributeError:
date = None
# Add dictionary of data to data list
all_data.append({'title':title,'author':author,'date':date})
# Add TCP ID to index list
index.append(tcp_id)
# Create DataFrame with data and indices
df = pd.DataFrame(all_data, index=index)
df
Trimming and “Cleaning” Data Fields¶
Though we’ve done a lot of work to make the EarlyPrint data more usable, some fields may still need to be adjusted, trimmed, or edited before they can be analyzed. The Author field, for example, includes birth and death dates for most authors, which a researcher may want to leave out.
There’s no one-size-fits-all approach to doing this sort of adjustment. And though this step is often referred to as “data cleaning,” the task of deciding when and how to “clean” and aggregate data is important intellectual work with serious research implications. How you “clean” data fields will depend on your research question.
Below, I focus on a single data field that we’ll use in the next section: the names of printers. As I discuss in the metadata post, the EarlyPrint metadata takes imprint information a step further by algorithmically parsing out the names of printers, publishers, and booksellers (among others). This process is imperfect, and it leaves some unneccessary characters and unusual spellings in these data fields.
Consider these spelling variants for the name of printer Thomas Newcomb:
Thomas Newcomb
Tho. Newcomb
T[homas] N[ewcomb]
Tho: Newcomb
Ideally, we would want any analysis of printers to recognize that these 4 variants refer to the same person. We can do that by standardizing the data field as we process it. We can create a function to do this:
# Import some built-in libraries
import re, json
# Get a list of standard early modern first name abbreviations, and what they stand for
with open("name_abbrev.json", "r") as abbrevfile:
name_abbrev = json.loads(abbrevfile.read())
def standardize_name(name): # Define our function
name = name.replace("[","").replace("]","") # Remove bracket characters
name = name.strip(",'") # Remove commas and apostrophes from the beginning or end of the name
name = name.replace("Iohn", "John") # Replace Iohn with John (a common spelling variant)
# Finally, look through each abbreviation and, if found,
# replace it with the full first name.
for k,v in name_abbrev.items():
name = re.sub(f"{k}[^a-zA-Z\s]", f"{v}", name)
return name
Building a Network¶
Now that we’ve created a function for cleaning up the printer names, we can use them for any purpose we like. In the rest of this tutorial, we’ll use printer names to create a network visualization of printers and the books they printed. Such a visualization could be useful for determining how much collaboration among printers there is in the early modern period.
Networks are made up of nodes or entities, and the edges or relationships that connect those entities to one another. If you’re new to networks, you might refer to this Programming Historian tutorial on working with networks in Python. We’ll use a similar Python approach here.
Our goal is to create a bipartite network, one with two different types of nodes: printers and the books they printed. To quickly create a network, we can build an edgelist from our metadata, which is simply a list of which entities are related or linked.
Just as we did when getting author, title, and date above, we can loop through every metadata file and pull out the TCP ID and any printers attached to that text. As we do, we can also “clean” the printer names using our function above. Each connection between a TCP ID (representing a book) and a printer’s name becomes an item in our edgelist.
edgelist = [] # Create an empty list
for f in files: # Loop through each file
tcp_id = f.split("/")[-1].split("_")[0] # Get TCP ID from filename
metadata = etree.parse(f, parser) # Create lxml etree object
# Get a list of all printer's names
printers = metadata.findall(".//tei:person[@type='printer']/tei:persName", namespaces=nsmap)
# Get the date of the printing (if there is one)
try:
date = metadata.find(".//tei:sourceDesc//tei:date", namespaces=nsmap).get("when")
except AttributeError:
date = None
# Add each printers name to the edgelist
for p in printers:
edgelist.append((tcp_id, standardize_name(p.text), {'date':date}))
print(edgelist)
[('B04484', 'E. Crowch', {'date': '1667'}), ('A31706', 'R. Daniel', {'date': '1655'}), ('A67519', 'R. Baldwin', {'date': '1691'}), ('A54137', 'T. Sowle', {'date': '1699'}), ('B02150', 'R. Smith', {'date': '1693'}), ('A36355', 'Nat. Thompson', {'date': '1687'}), ('A61538', 'J. Heptinstall', {'date': '1697'}), ('A78628', 'Robert Barker', {'date': '1642'}), ('A78628', 'the Assignes of John Bill', {'date': '1642'}), ('A01098', 'R.S.', {'date': '1623'}), ('A70655', 'T. Johnson', {'date': '1673'}), ('A76074', 'John Field', {'date': '1649'}), ('A86501', 'M. S.', {'date': '1641'}), ('A86501', 'T. P.', {'date': '1641'}), ('A40363', 'J.D.', {'date': '1697'}), ('A11064', 'Peter Short', {'date': '1601'}), ('A11064', 'the assent of Thomas Morley', {'date': '1601'}), ('A86705', 'T.M.', {'date': '1652'}), ('A84383', 'John Macock', {'date': '1650'}), ('A74156', 'Henry Hills', {'date': '1655'}), ('A74156', 'John Field', {'date': '1655'}), ('A04104', 'the Company of Stationers', {'date': '1625'}), ('A02608', 'the Societie of Stationers', {'date': '1620'}), ('A23570', 'A. Mathewes?', {'date': '1627'}), ('A30884', 'Thomas Milbourn', {'date': '1684'}), ('A09178', 'Thomas Dawson', {'date': '1589'}), ('A44995', 'T.F.', {'date': '1642'}), ('A09129', 'Henrye Denham', {'date': '1566'}), ('B13974', 'Thomas Orwin', {'date': '1590'}), ('B16185', 'Byllinges gate', {'date': '1550'}), ('B16185', 'N. Hill', {'date': '1550'}), ('A02588', 'Humphrey Lownes', {'date': '1609'}), ('A77281', 'Francis Leach', {'date': '1648'}), ('A26796', 'J. Darby', {'date': '1674'}), ('A18589', 'William Stansby', {'date': '1610'}), ('A02764', 'Melch. Bradwood', {'date': '1608'}), ('B13063', 'Robert Barker', {'date': '1633'}), ('B12200', 'Bernard Alsop', {'date': '1622'}), ('A92775', 'E.M.', {'date': '1650'}), ('A92775', 'T.R.', {'date': '1650'}), ('A84480', 'Abel Roper', {'date': '1660'}), ('A84480', 'Printors sic to the Council of State', {'date': '1660'}), ('A84480', 'Thomas Collins', {'date': '1660'}), ('A78144', 'M.S.', {'date': '1648'}), ('A42315', 'E. Raban', {'date': '1649'}), ('A22536', 'Robert Barker', {'date': '1630'}), ('A96937', 'William Du-Gard', {'date': '1651'}), ('A86160', 'John Macock', {'date': '1653'}), ('A10769', 'me Robert Redman', {'date': '1540'}), ('A08434', 'Peter Short', {'date': '1594'}), ('A07923', 'Andro Hart', {'date': '1615'}), ('A02151', 'Elizabeth Purslowe', {'date': '1636'}), ('A54840', 'Leonard Lichfield', {'date': '1691'}), ('A58713', 'J. Taylor', {'date': '1688'}), ('B13694', 'Iames Short', {'date': '1622'}), ('B13694', 'John Lichfield', {'date': '1622'}), ('A18697', 'Rychard Kele', {'date': '1545'}), ('A59161', 'T.N.', {'date': '1674'}), ('A07251', 'John Norton', {'date': '1632'}), ('A10520', 'Reginalde Wolfe', {'date': '1556'}), ('A16748', 'George Purslowe', {'date': '1616'}), ('A07555', 'Augustine Mathewes', {'date': '1637'}), ('B21286', 'George Croom', {'date': '1686'}), ('A26353', 'I.L.', {'date': '1643'}), ('A00228', 'John Day', {'date': '1561'}), ('A16615', "W. Jones' secret press", {'date': '1606'}), ('A07819', 'Robert Barker', {'date': '1639'}), ('A61853', 'M.D.', {'date': '1672'}), ('A61853', 'T.R.', {'date': '1672'}), ('A21172', 'William Stansby', {'date': '1623'}), ('A50181', 'Bartholomew Green', {'date': '1700'}), ('A50181', 'John Allen', {'date': '1700'}), ('A08438', 'Thomas Coldwell', {'date': '1565'}), ('A36594', 'T.N.', {'date': '1673'}), ('A58902', 'R.C.', {'date': '1647'}), ('A03127', 'John Alde', {'date': '1560'}), ('A65552', 'John Brent', {'date': '1691'}), ('A96206', 'R. Austin', {'date': '1648'}), ('A04859', 'G. Eld', {'date': '1617'}), ('A42886', 'Henry Hills', {'date': '1687'}), ('A58032', 'J.D.', {'date': '1680'}), ('A09431', 'Robert Walde-graue', {'date': '1585'}), ('A65783', '& Thomas Dieas', {'date': '1658'}), ('A65783', 'J.M. impensis Jo. Martin', {'date': '1658'}), ('A65783', 'James Allestry', {'date': '1658'}), ('A67758', 'Mr Swinnock M.A.', {'date': '1659'}), ('A67758', 'this authour; which', {'date': '1659'}), ('A09404', 'G.E.', {'date': '1623'}), ('A01167', 'William Iones', {'date': '1618'}), ('A87650', 'T. F.', {'date': '1642'}), ('B05565', 'the heirs and successors of Andrew Anderson', {'date': '1697'}), ('A96361', 'A.M.', {'date': '1653'}), ('A68977', 'B. Alsop', {'date': '1620'}), ('A85304', 'T.R.', {'date': '1656'}), ('A49064', 'Andrew Clark', {'date': '1671'}), ('A16133', 'John Wayland', {'date': '1556'}), ('A92551', 'Evan Tyler', {'date': '1648'}), ('A66288', 'Charles Bill, and the executrix of Thomas Newcomb', {'date': '1692'}), ('A63561', 'E. Mallet', {'date': '1684'}), ('A62398', 'the heir of Andrew Anderson', {'date': '1688'}), ('A55522', 'R. Austin', {'date': '1645'}), ('A64738', 'E.H.', {'date': '1676'}), ('A42274', 'Steven Swart', {'date': '1672'}), ('A86512', 'B.A.', {'date': '1647'}), ('B02642', 'Thomas Milbourn', {'date': '1671'}), ('A73707', 'T.S.', {'date': '1622'}), ('A74620', 'Leonard Lichfield', {'date': '1643'}), ('A56749', 'J.R.', {'date': '1695'}), ('A09272', 'R. Young', {'date': '1629'}), ('A89832', 'T.L.', {'date': '1656'}), ('A93131', 'E. Cotes', {'date': '1655'}), ('A11365', 'Elizabeth Allde, Are to be sould', {'date': '1629'}), ('A11365', 'Thomas Walkley', {'date': '1629'}), ('A02921', 'T. East?', {'date': '1577'}), ('A90237', 'John Canne.', {'date': '1644'}), ('A26195', 'M.F.', {'date': '1684'}), ('A04618', 'William Stansby', {'date': '1614'}), ('A38604', 'Thomas Newcomb', {'date': '1650'}), ('A87100', 'E. Purslow.', {'date': '1647'}), ('A46150', 'John Crook', {'date': '1662'}), ('A07210', 'George Purslowe', {'date': '1624'}), ('A22151', 'Assignes of Robert Barker', {'date': '1618'}), ('A22151', 'Bonham Norton', {'date': '1618'}), ('A22151', 'Deputies', {'date': '1618'}), ('A22151', 'John Bill', {'date': '1618'}), ('A89867', 'A.M.', {'date': '1649'}), ('A05158', 'Ihon Daye', {'date': '1550'}), ('A10080', 'Edward All-de', {'date': '1624'}), ('A66111', 'B. Green', {'date': '1650'}), ('A66111', 'J. Allen', {'date': '1650'}), ('B13176', 'Robert Barker', {'date': '1640'}), ('A85100', 'B.A.', {'date': '1646'}), ('A90333', 'Leonardi Lichfield. Acad. Typog.', {'date': '1683'}), ('A07590', 'Abel Ieffes', {'date': '1584'}), ('A07590', 'William Dickenson', {'date': '1584'}), ('B20631', 'T.R.', {'date': '1660'}), ('A07778', 'I.H.', {'date': '1627'}), ('A19279', 'Henrie Middleton', {'date': '1575'}), ('A15408', 'John Haviland', {'date': '1633'}), ('A22070', 'Robert Barker', {'date': '1611'}), ('A36275', 'John Bringhurst', {'date': '1683'}), ('A81246', 'E.M.', {'date': '1655'}), ('A81246', 'T.R.', {'date': '1655'}), ('A21263', 'Edward Griffin', {'date': '1616'}), ('A17136', 'John Windet', {'date': '1609'}), ('A53308', 'Thomas Ratcliffe', {'date': '1663'}), ('A68668', 'John VVindet', {'date': '1585'}), ('A19499', 'Edward Griffin', {'date': '1615'}), ('A19521', 'I. White', {'date': '1620'}), ('A10040', 'Nicholas Okes', {'date': '1621'}), ('B00721', 'Nicholas Okes', {'date': '1616'}), ('A07719', 'Thomas Orwin', {'date': '1588'}), ('A48748', 'B. Motte', {'date': '1696'}), ('A83341', 'Henry Hills', {'date': '1654'}), ('A83341', 'William du-Gard', {'date': '1654'}), ('B24782', 'Joseph Ray', {'date': '1690'}), ('A95676', 'F.N.', {'date': '1648'}), ('A55245', 'John Hayes', {'date': '1670'}), ('A89453', 'R.I.', {'date': '1650'}), ('A22079', 'Robert Barker', {'date': '1613'}), ('A10134', 'H. Lownes', {'date': '1625'}), ('A19071', 'Thomas Vautroullier', {'date': '1577'}), ('B19091', 'Robert Barker', {'date': '1641'}), ('A08925', 'R. Badger', {'date': '1634'}), ('A17624', 'Thomas Este', {'date': '1605'}), ('A39979', 'J.B.', {'date': '1688'}), ('A92848', 'Peter Cole', {'date': '1648'}), ('A14338', 'Edward Allde', {'date': '1591'}), ('A78180', 'John Dawson', {'date': '1646'}), ('A29564', 'L. Lichfield', {'date': '1643'}), ('A85938', 'Matthew Simmons', {'date': '1646'}), ('B28070', 'T.N.', {'date': '1680'}), ('A07176', 'John Wolfe', {'date': '1587'}), ('A19379', 'William Stansby', {'date': '1611'}), ('A27042', 'A.M.', {'date': '1660'}), ('A27042', 'R.W.', {'date': '1660'}), ('A25917', 'Henry Hall.', {'date': '1646'}), ('A07314', 'E. Alde', {'date': '1611'}), ('A83469', 'Edward Husband', {'date': '1650'}), ('A83469', 'John Field', {'date': '1650'}), ('A73370', 'G. Ppurslowe', {'date': '1622'}), ('A45121', 'Thomas Snowden', {'date': '1699'}), ('A34548', 'R. Cotes', {'date': '1647'}), ('A52992', 'Nathaniel Thompson', {'date': '1683'}), ('A08091', 'E. Allde', {'date': '1599'}), ('B15392', 'Felix Kyngston', {'date': '1621'}), ('A22425', 'Bonham Norton', {'date': '1626'}), ('A22425', 'John Bill', {'date': '1626'}), ('A22425', 'Printers to the Kings most Excellent Maiestie', {'date': '1626'}), ('A23445', 'me Robertum Redman, commorantem', {'date': '1531'}), ('A14497', 'William Iones', {'date': '1628'}), ('A15833', 'Thomas Este', {'date': '1597'}), ('A35962', 'E.P.', {'date': '1647'}), ('A63801', 'Andrew Sowle', {'date': '1688'}), ('A63504', 'command', {'date': '1647'}), ('A86752', 'Henry Hills', {'date': '1654'}), ('A81210', 'G.M.', {'date': '1646'}), ('A26745', 'Thomas Basset', {'date': '1684'}), ('A18480', 'William Seres', {'date': '1568'}), ('A66215', "Charles Bill and the executrix of Thomas Newcomb, deceas'd", {'date': '1697'}), ('A27445', 'Thomas Hodgkin', {'date': '1690'}), ('B13022', 'Robert Barker', {'date': '1630'}), ('A64225', 'John Bringhurst', {'date': '1683'}), ('A02962', 'John VVoolfe', {'date': '1589'}), ('A55818', 'J. H.', {'date': '1697'}), ('A02947', 'Olyuer Iacobson i.e. A. Goinus', {'date': '1543'}), ('A82476', 'Henry Hills', {'date': '1659'}), ('A82476', 'John Field', {'date': '1659'}), ('A82453', 'Henry Hills', {'date': '1657'}), ('A82453', 'John Field', {'date': '1657'}), ('A76321', 'F. Coles', {'date': '1700'}), ('A76321', 'T. Vere', {'date': '1700'}), ('A76321', 'I. Wright', {'date': '1700'}), ('B03351', 'Edward Jones', {'date': None}), ('B05405', 'the successors of Andrew Anderson', {'date': '1693'}), ('B12557', 'Felix Kyngston', {'date': '1613'}), ('A22027', 'Robert Barker', {'date': '1606'}), ('A94756', 'A. Miller', {'date': '1647'}), ('A22396', 'Bonham Norton', {'date': '1625'}), ('A22396', 'John Bill', {'date': '1625'}), ('A43218', 'N.G.', {'date': '1662'}), ('A17165', 'Valentine Sims', {'date': '1595'}), ('A90974', 'T. Paine', {'date': '1645'}), ('A13541', 'Felix Kyngston', {'date': '1620'}), ('A78308', 'Robert Ibbitson', {'date': '1648'}), ('A02983', 'T. Scarlet?', {'date': '1590'}), ('A58108', 'Elizabeth Holt', {'date': '1689'}), ('A06769', 'Iohannes Wreittoun', {'date': '1630'}), ('A10664', 'George Purslowe', {'date': '1632'}), ('A06630', 'James Roberts', {'date': '1596'}), ('A15127', 'Henrie Bynneman', {'date': '1572'}), ('A10724', 'J. Kingston', {'date': '1582'}), ('A40495', 'W. Downing', {'date': '1699'}), ('A29823', 'E. Griffin', {'date': '1641'}), ('A78016', 'Stephen Dagnall', {'date': '1650'}), ('A84207', 'Bernard Alsop.', {'date': '1644'}), ('A25921', 'J. Nutt', {'date': '1700'}), ('A84546', 'Robert Ibbitson', {'date': '1648'}), ('A00291', 'John Beale', {'date': '1639'}), ('A66601', 'T.S.', {'date': '1690'}), ('A68344', 'R. Wolfe', {'date': '1545'}), ('A10659', 'Felix Kyngston', {'date': '1631'}), ('A71329', 'Nycholas le Roux', {'date': '1538'}), ('A30945', 'J. Redmayne', {'date': '1681'}), ('A06140', 'John Kingston?', {'date': '1573'}), ('A06140', 'John Charlewood', {'date': '1573'}), ('A01236', 'Christopher Barkar', {'date': '1577'}), ('A10479', 'William Stansby', {'date': '1611'}), ('B03311', 'the heir of Andrew Anderson', {'date': '1676'}), ('A19541', 'R. Barker', {'date': '1604'}), ('A58430', 'T.N.', {'date': '1671'}), ('A14353', 'John Daye.', {'date': '1568'}), ('A14353', 'decennium. These bookes', {'date': '1568'}), ('A04391', 'T. Snodham', {'date': '1614'}), ('B05709', 'the heir of Andrew Anderson', {'date': '1693'}), ('A03408', 'Ihon Kyngston', {'date': '1580'}), ('A10748', 'VV. Stansby', {'date': '1612'}), ('A64888', 'J. Macock', {'date': '1657'}), ('A04850', "Eliot's Court Press", {'date': '1619'}), ('A29118', 'Stephen Bulkley', {'date': '1669'}), ('B05462', 'the heir of Andrew Anderson', {'date': '1680'}), ('A97103', 'R.C.', {'date': '1643'}), ('A90682', 'J.G.', {'date': '1658'}), ('A44499', 'Abraham Miller', {'date': '1649'}), ('A13804', 'G. Eld', {'date': '1607'}), ('A21589', 'John Cawood', {'date': '1559'}), ('A21589', 'Rycharde Iugge', {'date': '1559'}), ('A03784', 'B.A.', {'date': '1629'}), ('A03784', 'T.F.', {'date': '1629'}), ('A58921', 'A.G.', {'date': '1680'}), ('A58921', 'J.P.', {'date': '1680'}), ('A02919', 'H. Middleton', {'date': '1581'}), ('A70821', 'Edward Jones', {'date': '1693'}), ('A15877', 'me Richarde wyer', {'date': '1548'}), ('B31883', 'Edward Jones', {'date': '1695'}), ('B31883', 'the heirs and successors of Andrew Anderson. And', {'date': '1695'}), ('A64282', 'Nathaniel Thompson', {'date': '1666'}), ('A00452', 'A. Mathewes', {'date': '1630'}), ('A42064', 'E. Flesher', {'date': '1674'}), ('A10909', 'John Daye', {'date': '1579'}), ('A06191', 'I. Legat', {'date': '1623'}), ('A75556', 'A.N.', {'date': '1641'}), ('A19953', 'John Windet', {'date': '1609'}), ('A42515', 'S. Roycroft', {'date': '1690'}), ('A20836', 'Valentine Simmes', {'date': '1605'}), ('A14016', 'Henry Bynneman', {'date': '1575'}), ('A61109', 'J. Field', {'date': '1665'}), ('A18433', 'Thomas Dawson', {'date': '1580'}), ('A35012', 'C. Brome', {'date': '1698'}), ('B15184', 'A. Conincx', {'date': '1601'}), ('A84514', 'S. Bridge', {'date': '1697'}), ('B03593', 'J.C.', {'date': '1672'}), ('A57375', 'R.W.', {'date': '1657'}), ('A86673', 'J.L.', {'date': '1649'}), ('A66172', "Charles Bill and the executrix of Thomas Newcomb deceas'd", {'date': '1693'}), ('A86499', 'Thomas Roycroft', {'date': '1650'}), ('A21122', 'Andreas Hart', {'date': '1616'}), ('A47644', 'Edward Jones, and published', {'date': '1691'}), ('A47644', 'Randal Taylor', {'date': '1691'}), ('A30337', 'a society of stationers', {'date': '1665'}), ('A21611', 'John Cawood', {'date': '1560'}), ('A21611', 'Rycharde Iugge', {'date': '1560'}), ('A67764', 'Thomas Newcomb', {'date': '1658'}), ('A19326', 'W.S.', {'date': '1612'}), ('A00409', 'Thomas Creede', {'date': '1614'}), ('A18384', 'John Wolfe', {'date': '1591'}), ('A18724', 'Simon Stafford', {'date': '1604'}), ('A66125', 'Edward Jones', {'date': '1688'}), ('A02647', 'George Purslowe', {'date': '1618'}), ('B08429', 'J.A.', {'date': '1694'}), ('B08429', 'Obed. Smith', {'date': '1694'}), ('A28573', '& tous les libraires francois', {'date': '1695'}), ('A28573', 'R. Bentley Libraire', {'date': '1695'}), ('A28573', 'R. Parker', {'date': '1695'}), ('A73757', 'T. Purfoot', {'date': '1611'}), ('A50197', 'T. M.', {'date': '1687'}), ('B29617', 'John Seller', {'date': '1691'}), ('B29617', 'the author', {'date': '1691'}), ('A15651', 'Edward Allde', {'date': '1612'}), ('A53184', 'Langley Curtis', {'date': '1684'}), ('B04915', 'Andrew Anderson', {'date': '1674'}), ('A14963', 'Bonham Norton', {'date': '1598'}), ('A14963', 'Thomas Wight', {'date': '1598'}), ('A37336', 'Matthew Simmons', {'date': '1647'}), ('A55651', 'Henry Hills', {'date': '1684'}), ('A55651', 'Thomas Newcomb', {'date': '1684'}), ('B03148', 'J.S.', {'date': '1680'}), ('A04813', 'Thomas Dawson', {'date': '1596'}), ('A54576', 'Adrian Vlack', {'date': '1657'}), ('A89040', 'William Du-gard', {'date': '1650'}), ('A16755', 'Bernard Alsop', {'date': '1632'}), ('A16755', 'Thomas Fawcet', {'date': '1632'}), ('A55615', 'Robert Ibbitson', {'date': '1656'}), ('A14095', 'W. Jones', {'date': '1631'}), ('A14095', 'the successors of Giles Thorp, and', {'date': '1631'}), ('A84479', 'Abel Roper', {'date': '1660'}), ('A84479', 'Thomas Collins', {'date': '1660'}), ('A06516', 'Thomas Vautrollier', {'date': '1578'}), ('A57811', 'T. Sowle', {'date': '1700'}), ('A69340', 'Robert Barker', {'date': '1601'}), ('A44096', 'L. Lichfield', {'date': '1653'}), ('A31021', 'W.W.', {'date': '1647'}), ('A18415', 'William Stansby', {'date': '1611'}), ('A56616', 'R.N.', {'date': '1671'}), ('A04155', 'Felix Kingston', {'date': '1640'}), ('A68109', 'Humfrey Lownes ', {'date': '1604'}), ('A88605', 'J.G.', {'date': '1659'}), ('A87278', 'Francis Leech', {'date': '1646'}), ('A90214', 'W. Godbid', {'date': '1660'}), ('A19174', 'W. Stansby', {'date': '1617'}), ('A12471', 'John Haviland', {'date': '1630'}), ('B09907', 'Philemon Wollfe', {'date': '1691'}), ('A00209', 'John Woolfe', {'date': '1591'}), ('A68679', 'Edward Allde', {'date': '1613'}), ('A64897', 'M. Simmons', {'date': '1642'}), ('A64897', 'T. Paine', {'date': '1642'}), ('A54528', 'W. Wilson', {'date': '1645'}), ('A57158', 'Thomas Ratcliffe', {'date': '1668'}), ('A20829', 'Iames Roberts', {'date': '1596'}), ('A12509', 'T. Dawson', {'date': '1620'}), ('A65511', 'Thomas Mabb', {'date': '1664'}), ('A96555', "Charles Bill, and the Executrix of Thomas Newcomb deceas'd", {'date': None}), ('A16482', 'Edmund Bollifant', {'date': '1601'}), ('A11065', 'Thomas Este alias Snodham', {'date': '1609'}), ('A52591', 'John Field', {'date': '1659'}), ('B05472', 'Evan Tyler', {'date': '1667'}), ('A02755', 'Bernard Alsop', {'date': '1640'}), ('A02755', 'Thomas Fawcet', {'date': '1640'}), ('A45442', 'R. Norton', {'date': '1659'}), ('A80460', 'Barnard Alsop', {'date': '1645'}), ('A80460', 'Iane Coe.', {'date': '1645'}), ('A90382', 'J. Legatt', {'date': '1653'}), ('A60613', 'J.M.', {'date': '1677'}), ('A64310', 'A. Baldwin', {'date': '1699'}), ('A77832', 'Matthias Cowley', {'date': '1657'}), ('A85582', 'Nat. Thompson', {'date': '1672'}), ('A85582', 'Thomas Ratcliffe', {'date': '1672'}), ('A39993', 'Matthew Walbancke', {'date': '1646'}), ('A34588', 'G.M.', {'date': '1665'}), ('A13312', 'Henry Denham', {'date': '1570'}), ('A77420', 'R. Norton', {'date': '1652'}), ('A78831', 'J.C.', {'date': '1647'}), ('A75922', 'A.N.', {'date': '1641'}), ('A54124', 'D.E.', {'date': '1698'}), ('A38876', 'John Gain', {'date': '1681'}), ('A66110', 'Benjamin Harris', {'date': '1691'}), ('A66110', 'John Allen', {'date': '1691'}), ('A56809', 'J.D.', {'date': '1682'}), ('A46564', 'Charles Bill', {'date': '1687'}), ('A46564', 'Henry Hills', {'date': '1687'}), ('A46564', 'Thomas Newcomb', {'date': '1687'}), ('A92968', 'J.C.', {'date': '1657'}), ('B21808', "Charles Bill, and the executrix of Thomas Newcomb, deceas'd", {'date': '1696'}), ('B09394', 'the Heir of Andrew Anderson', {'date': '1690'}), ('A94736', 'Richard Cotes', {'date': '1643'}), ('B02089', 'Evan Tyler', {'date': '1666'}), ('A96516', 'I.F.', {'date': '1646'}), ('A41450', 'Robert White', {'date': '1674'}), ('A74558', 'Henry Hills', {'date': '1654'}), ('A74558', 'William Du-Gard', {'date': '1654'}), ('A86134', 'Stephen Bulkley', {'date': '1642'}), ('A32801', 'E.M.', {'date': '1650'}), ('A32801', 'T.R.', {'date': '1650'}), ('A36110', 'Henry Bonwicke', {'date': '1680'}), ('A12210', 'R. Bishop', {'date': '1638'}), ('A34596', 'T.W.', {'date': '1693'}), ('B26198', 'J.M.', {'date': '1673'}), ('A49049', 'Richard Cotes', {'date': '1650'}), ('B00031', 'Alexander Lacie', {'date': '1570'}), ('A75899', 'J.G.', {'date': '1658'}), ('A86744', 'S. Green', {'date': '1660'}), ('A08088', 'J. Windet', {'date': '1599'}), ('A28344', 'Abel Roper', {'date': '1658'}), ('A49533', 'L.L.', {'date': '1691'}), ('A01165', 'Thomas Creede', {'date': '1597'}), ('A74686', 'M.S.', {'date': '1660'}), ('A19494', 'Nicholas Okes', {'date': '1621'}), ('A17418', 'Felix Kyngston', {'date': '1631'}), ('A00265', 'Ralph Blower', {'date': '1609'}), ('B24753', 'Andrew Crook', {'date': '1691'}), ('B05578', 'Evan Tyler', {'date': '1668'}), ('A46884', 'Henry Artsensand now printed', {'date': '1657'}), ('A46884', 'Lewis de la Fosse', {'date': '1657'}), ('A22458', 'Bonham Norton', {'date': '1628'}), ('A22458', 'John Bill', {'date': '1628'}), ('A22458', 'Printers to the Kings most Excellent Maiestie', {'date': '1628'}), ('A03338', 'John Beale', {'date': '1632'}), ('A92101', 'M. Simmons', {'date': '1649'}), ('A19263', 'J. Charlewood', {'date': '1589'}), ('A64847', 'John Field', {'date': '1657'}), ('A16316', 'George Miller', {'date': '1640'}), ('A18212', 'M. Flesher', {'date': '1633'}), ('A26885', 'R. W.', {'date': '1660'}), ('A04192', 'Leonard Lichfield', {'date': '1638'}), ('A22144', 'Robert Barker', {'date': '1617'}), ('A23334', 'Ihon sic Mayler', {'date': '1543'}), ('A47151', 'William Bradford', {'date': '1693'}), ('A01970', 'George Miller', {'date': '1626'}), ('A55567', 'T.M.', {'date': '1679'}), ('A04154', 'M. Flesher', {'date': '1628'}), ('B05455', 'Andrew Anderson', {'date': '1674'}), ('B18419', 'R. Vaughan', {'date': '1662'}), ('A53210', 'L. Lichfield', {'date': '1644'}), ('A36234', 'W. Wilde', {'date': '1688'}), ('B01214', 'Richard Field demeurant à la rue de VVood-street.', {'date': '1622'}), ('A83441', 'John Field', {'date': '1650'}), ('A81627', 'him purposely omitted', {'date': '1660'}), ('B25413', 'J. Bell', {'date': '1658'}), ('A16549', 'Felix Kyngston', {'date': '1610'}), ('B05438', 'the heirs and successors of Andrew Anderson', {'date': '1698'}), ('A40394', 'J.G.', {'date': '1655'}), ('A18292', 'I.L.', {'date': '1623'}), ('A93317', 'T. Fawcett', {'date': '1643'}), ('A38918', 'Thomas James', {'date': '1679'}), ('A84297', 'Matthew Simmons', {'date': '1648'}), ('A91942', 'G. M.', {'date': '1644'}), ('A77078', 'M.S.', {'date': '1653'}), ('A20849', 'Augustine Mathewes', {'date': '1622'}), ('A58048', 'Jamex Moxon', {'date': '1651'}), ('A79938', 'Richard Baldwin marchand libraire dans Warwick-Lane', {'date': '1695'}), ('A13454', 'E.A.', {'date': '1612'}), ('A03862', 'Henrie Denham', {'date': '1583'}), ('A13263', 'B.A.', {'date': '1627'}), ('A13263', 'T. Favvcet', {'date': '1627'}), ('A66332', "Charles Bill, and the executrix of Thomas Newcomb deceas'd", {'date': '1693'}), ('A08614', 'Ioseph Barnes', {'date': '1586'}), ('A02469', 'Wiyllyam Seres', {'date': '1565'}), ('A89603', 'Evan Tyler', {'date': '1646'}), ('B05566', 'the heir of Andrew Anderson', {'date': '1686'}), ('A74556', 'Henry Hills', {'date': '1654'}), ('A74556', 'William du-Gard', {'date': '1654'}), ('A07556', 'Nicholas Okes', {'date': '1625'}), ('A00434', 'Wyllyam Copland', {'date': '1560'}), ('A66236', 'Charles Bill', {'date': '1689'}), ('A66236', 'Thomas Newcomb', {'date': '1689'}), ('A10685', 'Edward Allde', {'date': '1606'}), ('A64242', 'Thomas Warren', {'date': '1697'}), ('A51603', 'the successors of Andrew Anderson', {'date': '1699'}), ('A90603', 'Marie Okes', {'date': '1645'}), ('A10074', 'George Purslowe', {'date': '1617'}), ('A30309', 'William Bradford', {'date': '1694'}), ('A88403', 'T.F.', {'date': '1658'}), ('A19558', 'John Norton', {'date': '1635'}), ('A75394', 'B.A.', {'date': '1651'}), ('A03450', 'E. Allde', {'date': '1622'}), ('A64131', 'J.F.', {'date': '1661'}), ('A60950', 'W.H.', {'date': '1665'}), ('A73075', 'I.B.', {'date': '1617'}), ('A63068', 'R. N.', {'date': '1654'}), ('A16192', 'Simon Stafford', {'date': '1603'}), ('A87178', 'R. Bishop', {'date': '1647'}), ('A21882', 'the deputies of Christopher Barker', {'date': '1591'}), ('B13803', 'John Wolfe', {'date': '1591'}), ('A09436', 'John Legate', {'date': '1611'}), ('A09436', 'Simon Waterson', {'date': '1611'}), ('A01553', 'Edward Griffin', {'date': '1620'}), ('A05167', 'F. Kingston', {'date': '1621'}), ('A79587', 'Leonard Lichfield', {'date': None}), ('B02484', 'Stephen Bulkley', {'date': '1641'}), ('A49122', 'Freeman Collins', {'date': '1689'}), ('A16863', 'A. Scoloker', {'date': '1548'}), ('A16863', 'W. Seres', {'date': '1548'}), ('A70783', 'Leonard Lichfield', {'date': '1645'}), ('A62380', 'Richard Hodgkinsonne', {'date': '1642'}), ('A62590', 'A. Maxwell', {'date': '1675'}), ('A07554', 'William Jaggard', {'date': '1611'}), ('A15427', 'P. Short', {'date': '1598'}), ('B19172', 'Leonard Lichfield', {'date': '1643'}), ('B23896', 'J.G.', {'date': '1657'}), ('A50002', 'John Field', {'date': '1663'}), ('A24372', 'Edward Jones', {'date': '1689'}), ('A14530', 'impress.', {'date': '1544'}), ('A06381', 'John Allde', {'date': '1569'}), ('B05253', 'Andrew Anderson', {'date': '1674'}), ('A65379', 'Will. Bonny', {'date': '1685'}), ('A90320', 'Lichfieldianis Academiæ Typog.', {'date': '1663'}), ('A54917', 'J.C.', {'date': '1654'}), ('A21913', 'the deputies of Christopher Barker', {'date': '1595'}), ('A21338', 'me John̄ Skot, dwellynge', {'date': '1525'}), ('A01327', 'John Awdely', {'date': '1571'}), ('A15599', 'Richard Field Impensis Georg. Bishop', {'date': '1605'}), ('A06727', 'typographica Richardi Field', {'date': '1614'}), ('A66301', "Charles Bill, and the executrix of Thomas Newcomb, deceas'd", {'date': '1694'}), ('A42605', ' J. R.', {'date': '1680'}), ('B04961', 'Edward Crowch', {'date': '1665'}), ('A74561', 'Henry Hills', {'date': '1654'}), ('A74561', 'William du-Gard', {'date': '1654'}), ('A80737', 'J. Hayes', {'date': '1659'}), ('A44428', 'J. Dawks', {'date': '1695'}), ('A63544', 'Edward Jones', {'date': '1700'}), ('B03645', 'Edward Crouch', {'date': '1658'}), ('B14689', 'I. Windet', {'date': '1597'}), ('A33276', 'Henry Hills', {'date': '1652'}), ('A88924', 'B. Green', {'date': '1699'}), ('A88924', 'J. Allen', {'date': '1699'}), ('A16534', 'John Wreittoun', {'date': '1628'}), ('A01902', 'M. Flesher', {'date': '1636'}), ('A08059', 'John Charlewood', {'date': '1590'}), ('A85462', 'John Macock', {'date': '1646'}), ('A72222', 'Henry Bynneman', {'date': '1575'}), ('A67875', 'D. Maxwell', {'date': '1660'}), ('A52031', 'Andrew Sowle', {'date': '1688'}), ('A31076', 'J.H.', {'date': '1693'}), ('A08896', 'Nicholas Okes', {'date': '1617'}), ('A19272', 'Ralphe Newbery', {'date': '1580'}), ('A11912', 'Thomas Colwell', {'date': '1566'}), ('A81912', 'G.M.', {'date': '1643'}), ('A10211', '& Octauian Pullen', {'date': '1639'}), ('A10211', 'Jean Raworth, pour George Thomason', {'date': '1639'}), ('A10211', 'à la Rose, au Cimetiere de Sainct Paul', {'date': '1639'}), ('A02462', 'Felix Kyngston', {'date': '1607'}), ('A54390', 'Thomam Harperum', {'date': '1644'}), ('A89098', 'John Crook', {'date': '1665'}), ('A02652', 'R. Robinson?', {'date': '1596'}), ('A56612', 'J. Hayes', {'date': '1665'}), ('A60846', 'George Croom', {'date': '1684'}), ('A47322', 'J.H.', {'date': '1693'}), ('A07906', 'Nicholas Okes', {'date': '1618'}), ('A19162', 'Wynkyn de Worde', {'date': '1496'}), ('A61588', 'Rob. White', {'date': '1665'}), ('A21639', 'John Cawood', {'date': '1562'}), ('A21639', 'Rycharde Iugge', {'date': '1562'}), ('A28126', 'Mr. Hargrave', {'date': '1694'}), ('A28126', 'Mr. Jayand', {'date': '1694'}), ('A28126', 'Mr. Partridge', {'date': '1694'}), ('A28126', 'Mr. Southby', {'date': '1694'}), ('A34328', 'Henry Bonwicke', {'date': '1681'}), ('A88586', 'J.M.', {'date': '1649'}), ('A00227', 'Reynold Wolfe', {'date': '1549'}), ('B20451', 'Thomas Newcomb', {'date': '1660'}), ('A53496', 'VVilliam Bladen', {'date': '1654'}), ('A03924', 'Marmaduke Parsons', {'date': '1638'}), ('A55678', 'H. Hall', {'date': '1645'}), ('A49256', 'R. Cotes', {'date': '1647'}), ('A32062', 'a perfect copy', {'date': '1651'}), ('A05376', 'Henrie Bynneman', {'date': '1570'}), ('A12971', 'G. Bishop R. Newberry', {'date': '1599'}), ('A12971', 'R. Barker', {'date': '1599'}), ('A00529', 'Richard Oulton ', {'date': '1637'}), ('A54557', 'T.N.', {'date': '1673'}), ('A28024', 'J.D.', {'date': '1679'}), ('A09848', 'R. Shorleyker', {'date': '1624'}), ('A66315', 'Charles Bill', {'date': '1689'}), ('A66315', 'Thomas Newcomb', {'date': '1689'}), ('A20605', 'John Bill', {'date': '1617'}), ('A07393', 'E. Whitchurch', {'date': '1546'}), ('A00267', 'H. Denham', {'date': '1571'}), ('A28328', 'Robert Sanders', {'date': '1661'}), ('A57483', 'W. Bentley', {'date': '1650'}), ('A56097', 'Richard Janeway', {'date': '1689'}), ('A08926', 'R. Barker', {'date': '1610'}), ('A13499', 'Nicholas Okes', {'date': '1622'}), ('A12363', 'J. Danter', {'date': '1595'}), ('A00483', 'Thomas Berthelet', {'date': '1544'}), ('A09974', 'V.S.', {'date': '1603'}), ('A06534', 'John Cousturier', {'date': '1634'}), ('A03482', 'Henry Binneman', {'date': '1572'}), ('A43426', 'T.R.', {'date': '1677'}), ('A73162', 'W. Iones.', {'date': '1620'}), ('A05229', 'August Reginald Majest. Typographus', {'date': '1617'}), ('A05229', 'Thomas Finlason', {'date': '1617'}), ('A58833', 'Richard Janeway', {'date': '1689'}), ('A49440', 'J.G.', {'date': '1663'}), ('A51260', 'W. Marshall', {'date': '1700'}), ('A43559', 'E. Cotes', {'date': '1657'}), ('A09990', 'I. Dawson', {'date': '1629'}), ('B24774', 'Andrew Crook', {'date': '1692'}), ('A95479', 'Richard Cotes', {'date': '1648'}), ('A50214', 'M.J', {'date': '1670'}), ('A50214', 'S.G.', {'date': '1670'}), ('A29273', 'M.S.', {'date': '1653'}), ('A85476', 'James Cottrel', {'date': '1660'}), ('A16189', 'VVilliam Johnson Blaeu', {'date': '1612'}), ('A16189', 'the Old Bridge', {'date': '1612'}), ('A07805', 'W. Stansby', {'date': '1610'}), ('A45982', 'John Crook', {'date': '1662'}), ('A40872', 'W. Wilson', {'date': '1662'}), ('A87576', 'Edward Griffin', {'date': '1642'}), ('A83124', 'R. Raworth.', {'date': '1645'}), ('A83124', 'Richard Cotes', {'date': '1645'}), ('A90884', 'Robert White', {'date': '1651'}), ('A85382', 'J.M.', {'date': '1653'}), ('A00164', 'Edward Allde', {'date': '1626'}), ('A26071', 'W. Bonny', {'date': '1693'}), ('A17049', 'H. Lownes', {'date': '1614'}), ('A45432', 'W.H.', {'date': '1651'}), ('A90816', 'F.L.', {'date': '1676'}), ('A65055', 'George Larkin', {'date': '1684'}), ('A11881', 'B. Alsop', {'date': '1636'}), ('A11881', 'T. Fawcet', {'date': '1636'}), ('B23618', 'Henry Hills', {'date': '1687'}), ('A00667', 'R. Read', {'date': '1603'}), ('B05329', 'the heir of Andrew Anderson', {'date': '1686'}), ('A19865', 'Rogeri Danielis almæ Academiæ typographi', {'date': '1640'}), ('A76372', 'T. Maxey', {'date': '1652'}), ('A51206', 'Samuel Green', {'date': '1674'}), ('A87315', 'Thomas Paine', {'date': '1642'}), ('A42049', 'E. Flesher', {'date': '1673'}), ('A17946', 'Henrie Denham', {'date': '1584'}), ('A17946', 'Rafe Newberie', {'date': '1584'}), ('A85072', 'J.C.', {'date': '1654'}), ('A92378', 'Edward Jones', {'date': '1691'}), ('A81559', 'Thomas Harper', {'date': '1649'}), ('A36602', 'T.N.', {'date': '1676'}), ('A90506', 'Richard Constable', {'date': '1649'}), ('B03853', 'the heir of Andrew Anderson', {'date': '1685'}), ('A74950', 'Iaques Fierens boeckvercooper woonende inde Gist-straet inde Globe', {'date': '1644'}), ('A06245', 'R. Young', {'date': '1629'}), ('B15081', 'Nicholas Okes', {'date': '1620'}), ('A01514', 'H. Bynneman', {'date': '1575'}), ('B21773', 'Christopher Barker', {'date': '1679'}), ('B21773', 'Henry Hills', {'date': '1679'}), ('B21773', 'John Bill', {'date': '1679'}), ('B21773', 'Thomas Newcomb', {'date': '1679'}), ('A20788', 'G. Miller', {'date': '1637'}), ('B02170', 'Thomas Milbourn', {'date': '1673'}), ('A01027', 'Richard Plater', {'date': '1626'}), ('A36691', 'J. Heptinstall;', {'date': '1695'}), ('A15722', 'Nicholas Okes', {'date': '1616'}), ('A97365', 'Bernard Alsop', {'date': '1643'}), ('A22509', 'Bonham Norton', {'date': '1629'}), ('A22509', 'John Bill', {'date': '1629'}), ('A80531', 'John Franke', {'date': '1642'}), ('A14487', 'T. Buck and', {'date': '1632'}), ('A34293', 'J.A.', {'date': '1682'}), ('A32049', 'Leonard Lichfield', {'date': '1644'}), ('A80123', 'R.D.', {'date': '1661'}), ('A32551', 'Christopher Barker', {'date': '1678'}), ('A32551', 'Henry Hills', {'date': '1678'}), ('A32551', 'John Bill', {'date': '1678'}), ('A32551', 'Thomas Newcomb', {'date': '1678'}), ('A84037', 'Iane Coe', {'date': '1645'}), ('A63902', 'H. Hills Jun.', {'date': '1687'}), ('A77397', 'M.F.', {'date': '1647'}), ('A61915', 'E. Cotes', {'date': '1669'}), ('A93028', 'Thomas Brudenell', {'date': '1649'}), ('A82824', 'Robert Barker', {'date': '1642'}), ('A82824', 'the Assignes of John Bill', {'date': '1642'}), ('A74867', 'Robert Wood', {'date': '1652'}), ('A02486', 'Thomas Snodham', {'date': '1613'}), ('B00033', 'Simon Stafford', {'date': '1603'}), ('B26424', 'Freeman Collins', {'date': '1698'}), ('A12032', 'T. Judson', {'date': '1599'}), ('A13255', 'wynkyn de worde', {'date': '1534'}), ('B19842', 'Henry Hills', {'date': '1680'}), ('B19842', 'John Bill', {'date': '1680'}), ('B19842', 'Thomas Newcomb', {'date': '1680'}), ('A21663', 'John Cawood', {'date': '1564'}), ('A21663', 'Richarde Iugge', {'date': '1564'}), ('A01581', 'J. Dawson', {'date': '1624'}), ('A66330', "Charles Bill, and the executrix of Thomas Newcomb deceas'd", {'date': '1692'}), ('A88357', 'T. Mabb', {'date': '1653'}), ('A17654', 'John Daye', {'date': '1581'}), ('A01210', 'the Richt Right Press', {'date': '1640'}), ('A07518', 'Nicholas Okes', {'date': '1613'}), ('A63499', 'Leonard Lichfield', {'date': '1644'}), ('A21161', 'R. Jones', {'date': '1576'}), ('A74567', 'Henry Hills', {'date': '1654'}), ('A74567', 'William du-Gard', {'date': '1654'}), ('A89821', 'Matthew Simons', {'date': '1649'}), ('A19716', 'Simon Stafford', {'date': '1600'}), ('A22634', 'Robert Barker', {'date': '1639'}), ('A22634', 'the Assignes of John Bill', {'date': '1639'}), ('A67910', 'John Streater', {'date': '1659'}), ('A95870', 'G. Dexter', {'date': '1642'}), ('A95870', 'R. Oulton', {'date': '1642'}), ('B14779', 'Nicholas Okes', {'date': '1608'}), ('A13159', 'Arn. Hatfield', {'date': '1600'}), ('A20835', 'Felix Kingston', {'date': '1604'}), ('A15334', 'Robert Walde-graue', {'date': '1587'}), ('A01517', 'John Charlewood', {'date': '1576'}), ('A81809', 'Thomas Fawcet', {'date': '1643'}), ('B05280', 'Session', {'date': '1689'}), ('B05280', 'order of the Lords of Council', {'date': '1689'}), ('B05280', 'the heir of Andrew Anderson', {'date': '1689'}), ('A15420', 'Felix Kyngston', {'date': '1603'}), ('A20710', 'Edwardus Rabanns sic', {'date': '1637'}), ('A36357', 'Nat. Thompson', {'date': '1687'}), ('A19932', 'John Franckton', {'date': '1615'}), ('A95749', 'James Cottrel;', {'date': '1652'}), ('A84472', 'Abel Roper', {'date': '1660'}), ('A84472', 'Thomas Collins', {'date': '1660'}), ('A18357', 'W. Turner', {'date': '1629'}), ('B14994', 'T. Snodham?', {'date': '1622'}), ('A00155', 'Richard Grafton', {'date': '1548'}), ('A48615', 'Benjamin Tooke', {'date': '1670'}), ('A12024', 'Thomas Creede', {'date': '1609'}), ('A12024', 'William White', {'date': '1609'}), ('A22067', 'Robert Barker', {'date': '1611'}), ('A90541', 'Jane Coe.', {'date': '1646'}), ('A43142', 'F. Leach', {'date': '1673'}), ('A15339', 'Robert Waldegrave', {'date': '1585'}), ('A02637', 'Ioannem Foulerum', {'date': '1568'}), ('A35350', 'J. Reid', {'date': '1689'}), ('A58190', 'J. Brudenell', {'date': '1700'}), ('B05430', 'the heirs and successors of Andrew Anderson', {'date': '1695'}), ('B03988', 'John Reid, and to be', {'date': '1698'}), ('B05182', 'the heir of Andrew Anderson', {'date': '1690'}), ('A52334', 'Thomas Buck', {'date': '1652'}), ('A41704', 'A. Maxwell', {'date': '1674'}), ('A82611', 'G. Dexter', {'date': '1641'}), ('A82611', 'R. Oulton', {'date': '1641'}), ('A59547', 'Edoüard Jones, et se vend chez Jean Cailloüé', {'date': '1700'}), ('A25298', 'William Warwick', {'date': '1663'}), ('A32534', 'Christopher Barker', {'date': '1663'}), ('A32534', 'John Bill', {'date': '1663'}), ('A97068', 'A. N.', {'date': '1642'}), ('A02820', 'Wynkyn de Worde', {'date': '1509'}), ('A93343', 'G. Dawson', {'date': '1660'}), ('A16171', 'Claude Morell', {'date': '1614'}), ('A93252', 'S.G.', {'date': '1656'}), ('A78225', 'W. Godbid', {'date': '1671'}), ('A13384', 'Augustine Mathewes', {'date': '1628'}), ('A46362', 'J. Heptinstall', {'date': '1684'}), ('A82373', 'John Field', {'date': '1651'}), ('A07574', 'John Norton', {'date': '1631'}), ('A88786', 'Leonard Lichfield, and now', {'date': '1642'}), ('B02737', 'John Reid', {'date': '1700'}), ('A05137', 'John Beale', {'date': '1614'}), ('A39224', 'Marmaduke Johnson', {'date': '1665'}), ('A56696', 'J. Macock', {'date': '1678'}), ('A38443', 'J.G.', {'date': '1660'}), ('A65559', 'J.M.', {'date': '1663'}), ('B13170', 'Robert Barker', {'date': '1640'}), ('A21269', 'Richard Field', {'date': '1623'}), ('A40819', 'W. Bowyer', {'date': '1700'}), ('A07276', 'P. Short', {'date': '1600'}), ('A21909', 'the deputies of Christopher Barker', {'date': '1594'}), ('A80742', 'Matthew Simmons', {'date': '1648'}), ('A22586', 'Robert Barker', {'date': '1634'}), ('A95529', 'T.H.', {'date': '1652'}), ('A70033', '-- W----', {'date': None}), ('A16629', 'John Dawson', {'date': '1625'}), ('A16720', 'Robert Robinson', {'date': '1596'}), ('B02996', 'the Heir of Andrew Anderson', {'date': '1693'}), ('A53928', 'Alexander Milbourn', {'date': '1687'}), ('A46595', 'James Watson', {'date': '1687'}), ('A46595', '', {'date': '1687'}), ('A20807', 'W. Jones', {'date': '1617'}), ('A93393', 'I.D.', {'date': '1647'}), ('A93393', 'R.I.', {'date': '1647'}), ('A14521', 'Felix Kingston', {'date': '1620'}), ('A14521', 'Thomas Snodham', {'date': '1620'}), ('A30333', 'J.D.', {'date': '1680'}), ('A03457', 'Thomas Purfoot', {'date': '1622'}), ('A06509', 'Wyllyam Marshall i.e. Robert Wyer', {'date': '1536'}), ('A02141', 'John Wolfe', {'date': '1591'}), ('B12730', 'Robert Barker', {'date': '1605'}), ('A35338', 'T. Warren', {'date': '1652'}), ('A84579', 'John Field', {'date': '1649'}), ('A40160', 'John Bringhurst', {'date': '1682'}), ('B09557', 'J. Richardson', {'date': '1686'}), ('A07637', 'Bernard Alsop', {'date': '1618'}), ('A07637', 'Saint Annes Church', {'date': '1618'}), ('A35175', 'J.A.', {'date': '1694'}), ('A57722', 'John Streater', {'date': '1668'}), ('B24725', 'Andrew Crook', {'date': '1690'}), ('A10266', 'Felix Kyngston', {'date': '1624'}), ('A06964', 'I. Dawson', {'date': '1625'}), ('A77921', 'G. Dawson', {'date': '1656'}), ('A38034', 'John Field', {'date': '1651'}), ('A05041', 'A.M.', {'date': '1630'}), ('A85419', 'J.M.', {'date': '1653'}), ('A67323', 'G. Croom', {'date': '1692'}), ('A19966', 'Robert Walde-graue', {'date': '1586'}), ('B05676', 'the heirs and successors of Andrew Anderson', {'date': '1699'}), ('A07488', 'Nicholas Okes', {'date': '1619'}), ('A19923', 'R. Field', {'date': '1599'}), ('A27413', 'E. C.', {'date': '1661'}), ('B25774', 'T. Hodgkin', {'date': '1689'}), ('A23374', 'Rycharde Tottel', {'date': '1584'}), ('A25039', 'Thomas Newcomb ;', {'date': '1685'}), ('A25039', 'the heir of A Anderson', {'date': '1685'}), ('A45559', 'A.M.', {'date': '1659'}), ('A52984', 'Randal Taylor', {'date': '1687'}), ('B03691', 'T.J.', {'date': '1677'}), ('B03691', 'W.L.', {'date': '1677'}), ('A93097', 'Rob. Goodfellow about Midsummer moon.', {'date': '1654'}), ('A72536', 'Arrigo del Bosco i.e. J. Wolfe', {'date': '1588'}), ('A26948', 'E. Whitlock', {'date': '1697'}), ('A94256', 'Maarten van Leeuwen', {'date': '1683'}), ('A78932', 'Robert Ibbitson', {'date': '1647'}), ('A35325', 'S. Bridge', {'date': '1698'}), ('A29738', 'John Reidto be', {'date': '1691'}), ('A18947', 'Thomas Snodham', {'date': '1621'}), ('A07876', 'Thomas Orwin', {'date': '1590'}), ('A51674', 'W. Bowyer', {'date': '1700'}), ('A95030', 'J.F.', {'date': '1642'}), ('A95030', 'L.N.', {'date': '1642'}), ('A07678', 'Augustine Mathews', {'date': '1624'}), ('A04491', 'John Cawood', {'date': '1553'}), ('A72406', 'Thomas Godfray', {'date': '1535'}), ('A82014', 'M. Simmons', {'date': '1652'}), ('A88692', 'Joh. Raworth', {'date': '1644'}), ('A35355', 'Abraham Miller', {'date': '1657'}), ('A00244', 'VVilliam Iaggard', {'date': '1613'}), ('A57420', 'E.B.', {'date': '1657'}), ('A88042', 'C.D.', {'date': '1642'}), ('A88042', 'R.O.', {'date': '1642'}), ('A84887', 'J.C.', {'date': '1659'}), ('A19531', 'H. Lownes', {'date': '1611'}), ('A07388', 'Thomas Dawson', {'date': '1581'}), ('A36772', 'William Du-gard', {'date': '1649'}), ('A39319', 'J. Macock', {'date': '1673'}), ('A24051', 'Thomas Milbourn', {'date': '1681'}), ('A11222', 'Henry Kirkham', {'date': '1573'}), ('A65295', 'Joseph Collier', {'date': '1678'}), ('A04991', 'W. Hall', {'date': '1612'}), ('A34747', 'J. Macock', {'date': '1647'}), ('A18412', "Eliot's Court Press", {'date': '1614'}), ('A73785', 'Robert Barker', {'date': '1610'}), ('A89969', 'T.F.', {'date': '1642'}), ('B12757', 'Robert Barker', {'date': '1607'}), ('A05182', 'Thomas Dawson', {'date': '1587'}), ('A19981', 'J. Lichfield', {'date': '1618'}), ('A19981', 'J. Short', {'date': '1618'}), ('A07663', 'J. Kingston', {'date': '1554'}), ('A17055', 'John Norton', {'date': '1632'}), ('A01438', 'H. Middleton', {'date': '1574'}), ('A49013', 'Samuel Roycroft', {'date': '1694'}), ('A81815', 'T.N.', {'date': '1656'}), ('A04587', 'Elizabeth Allde', {'date': '1630'}), ('A16571', 'William Griffith', {'date': '1561'}), ('A12582', 'me Theophyll Emlos, vndere the sygne of sente Peters kay i.e. widow of C. Ruremund', {'date': '1540'}), ('A41614', 'A.C.', {'date': '1686'}), ('A41614', 'S.H.', {'date': '1686'}), ('A49633', 'George Croom', {'date': '1684'}), ('A16330', 'Felix Kyngston', {'date': '1631'}), ('A66819', 'T.C.', {'date': '1641'}), ('A16936', 'G. Eld', {'date': '1614'}), ('A97276', 'W. Wilson', {'date': '1646'}), ('A69533', 'R.W.', {'date': '1659'}), ('A10391', 'I. Dawson', {'date': '1622'}), ('A90523', 'H.A.', {'date': '1641'}), ('B03323', 'Christopher Higgins', {'date': '1660'}), ('A77399', 'I.C.', {'date': '1647'}), ('B09300', 'John Crooke', {'date': '1663'}), ('A06166', 'Thomas Orwin', {'date': '1591'}), ('A11663', 'Iames Bryson', {'date': '1640'}), ('A74498', 'Henry Hills', {'date': '1654'}), ('A74498', 'William du-Gard', {'date': '1654'}), ('A18261', 'Peter Short', {'date': '1598'}), ('A17084', 'me Richard Iugge', {'date': '1549'}), ('A12983', 'Thomas Creede', {'date': '1609'}), ('B20795', 'Thomas Simmons', {'date': '1659'}), ('A19502', 'G. Purslowe', {'date': '1617'}), ('A88812', 'M. Symmons', {'date': '1649'}), ('A74358', 'Edward Husband', {'date': '1650'}), ('A74358', 'John Field', {'date': '1650'}), ('B00941', 'Robert Stoughton Dwellynge wythin Ludgate', {'date': '1550'}), ('A82267', 'Andrew Coe according to order', {'date': '1644'}), ('A67315', 'G. Croom', {'date': '1691'}), ('A55520', 'Leonard Lichfield', {'date': '1642'}), ('A54695', 'Thomas Leach', {'date': '1660'}), ('A93286', 'R. H.', {'date': '1641'}), ('A32580', 'Christopher Barker', {'date': '1662'}), ('A32580', 'John Bill', {'date': '1662'}), ('A57979', 'Evan Tyler', {'date': '1644'}), ('A14107', 'T. Dawson', {'date': '1586'}), ('A62131', 'Impensis Henry Clements bibliopolæ', {'date': '1700'}), ('A62131', 'Leonard Lichfield', {'date': '1700'}), ('A21626', 'John Cawood', {'date': '1618'}), ('A21626', 'Richard Iugge', {'date': '1618'}), ('A14059', 'the heirs of Arnold Birckman', {'date': '1568'}), ('A17725', 'John Charlewood', {'date': '1584'}), ('A56732', 'George Mosman', {'date': '1693'}), ('A21279', 'Peter Sevestre', {'date': '1602'}), ('A50540', 'T.M.', {'date': '1662'}), ('A83634', 'Richard Cotes', {'date': '1650'}), ('A05405', 'I.B', {'date': '1631'}), ('A87302', 'Andrew Crook', {'date': '1695'}), ('A10060', 'John Windet', {'date': '1609'}), ('A10060', 'the Conduit', {'date': '1609'}), ('B24465', 'Leonard Lichfield', {'date': '1643'}), ('A87080', 'Matthew Simmons', {'date': '1642'}), ('A32484', 'Christopher Barker', {'date': '1666'}), ('A32484', 'John Bill', {'date': '1666'}), ('A03387', 'Humfrey Lownes', {'date': '1627'}), ('B05380', 'the heir of Andrew Anderson', {'date': '1685'}), ('B10271', 'London. And', {'date': '1691'}), ('B10271', 'Ra. Simpson', {'date': '1691'}), ('B10271', 'the bookselers and author.', {'date': '1691'}), ('A22248', 'John Bill', {'date': '1621'}), ('A22248', 'Robert Barker', {'date': '1621'}), ('A49065', 'Andrew Clark', {'date': '1672'}), ('A26705', 'J.R.', {'date': '1684'}), ('B09305', 'William Bladen', {'date': '1657'}), ('A67339', 'Thomas Newcomb', {'date': '1655'}), ('A79334', 'Christopher Barker', {'date': '1660'}), ('A79334', 'John Bill', {'date': '1660'}), ('A06544', 'me Richard Pinson', {'date': '1493'}), ('A05317', 'Ioseph Barnes', {'date': '1613'}), ('A01666', 'T. Dawson', {'date': '1577'}), ('A01666', 'T. Gardyner', {'date': '1577'}), ('A59304', 'T.M.', {'date': '1676'}), ('A73293', 'B. Alsop', {'date': '1624'}), ('A85746', 'T.W.', {'date': '1651'}), ('B05467', 'the heirs and successors of Andrew Anderson', {'date': '1696'}), ('A65385', 'Andrew Crook', {'date': '1698'}), ('A72778', 'VVilliam Iaggard', {'date': '1615'}), ('A14450', 'Richard Field', {'date': '1594'}), ('A87570', 'T.H.', {'date': '1650'}), ('A16603', 'W. Hall', {'date': '1609'}), ('A12343', 'Thomas Orwin', {'date': '1589'}), ('A01080', 'Rychard Tottill', {'date': '1567'}), ('A08240', 'John Day', {'date': '1548'}), ('A08240', 'Wyllyam Seres', {'date': '1548'}), ('A78902', 'Robert Barker', {'date': '1642'}), ('A93295', 'Elizabeth Purslow', {'date': '1646'}), ('A45539', 'I.L.', {'date': '1644'}), ('A00217', 'Thomas Purfoot', {'date': '1620'}), ('B14277', 'William Iones', {'date': '1574'}), ('A06674', 'L. Kellam', {'date': '1639'}), ('A69298', 'Thomas Berthelet', {'date': '1542'}), ('A96402', 'Henry Hall', {'date': '1660'}), ('A58629', 'the heir of A. Anderson', {'date': '1686'}), ('B09501', 'Samuel Green', {'date': '1690'}), ('A09108', 'F. Bellet', {'date': '1604'}), ('A97350', 'Cantrell Legge', {'date': '1621'}), ('B12865', 'Bonham Norton', {'date': '1623'}), ('B12865', 'John Bill', {'date': '1623'}), ('B20239', 'John Field', {'date': '1667'}), ('A49317', 'J. White', {'date': '1699'}), ('A13516', 'E. Purslowe', {'date': '1640'}), ('A50198', 'N. Thompson', {'date': '1676'}), ('A50198', 'T. Ratcliffe', {'date': '1676'}), ('A08154', 'Edward Allde', {'date': '1622'}), ('B31833', 'John Foster', {'date': '1679'}), ('A35858', 'George Larkin', {'date': '1686'}), ('A11010', 'Robert Charteris', {'date': '1606'}), ('A12622', 'John Charlewood?', {'date': '1587'}), ('A81783', 'veusue Maret Marchand libraire dans Salisbury Exchange, dans le Strand', {'date': '1695'}), ('A53865', 'L. Lichfield', {'date': '1678'}), ('A17936', 'R. Badger', {'date': '1633'}), ('A14870', 'N. Okes', {'date': '1613'}), ('A75534', 'T. Mabb', {'date': None}), ('A47134', 'William Bradford', {'date': '1692'}), ('A06704', 'I. Windet', {'date': '1609'}), ('A84285', 'M. Simmons', {'date': '1649'}), ('A90291', 'Peter Cole', {'date': '1650'}), ('A63298', 'E. Mallet', {'date': '1685'}), ('A82024', 'Thomas Newcomb', {'date': '1653'}), ('B06952', 'J. Read', {'date': '1713'}), ('B05225', 'the heir of Andrew Anderson', {'date': '1693'}), ('A52574', 'Bartholomew Green', {'date': '1698'}), ('A52574', 'John Allen', {'date': '1698'}), ('A63906', 'T.B.', {'date': '1685'}), ('A02168', 'Thomas Creede', {'date': '1598'}), ('B01298', 'the heir of Andrew Anderson', {'date': '1686'}), ('A73284', 'I. Dawson.', {'date': '1639'}), ('A16191', 'Henrie Binneman', {'date': '1569'}), ('A74888', 'Robert Wood.', {'date': '1653'}), ('A30870', 'J.G.', {'date': '1665'}), ('A81680', 'J.C.', {'date': '1651'}), ('A49211', 'Thomas Newcomb', {'date': '1674'}), ('A78129', 'J.', {'date': '1649'}), ('A78129', 'J.M.', {'date': '1649'}), ('A78980', 'Leonard Lichfield', {'date': '1645'}), ('A78980', 'R. Austin.', {'date': '1645'}), ('A55373', 'R.', {'date': '1654'}), ('A55373', 'W.L.', {'date': '1654'}), ('A14755', 'Augustine Mathewes', {'date': '1624'}), ('A45579', 'E.M.', {'date': '1653'}), ('A45579', 'T.R.', {'date': '1653'}), ('A49308', 'T. Snowden', {'date': '1683'}), ('A00693', 'T. Snodham', {'date': '1609'}), ('A02982', 'M. Flesher', {'date': '1637'}), ('A21779', 'Christopher Barker', {'date': '1618'}), ('A68967', 'Robert VValdegraue', {'date': '1581'}), ('A17696', 'John Windet', {'date': '1592'}), ('B09295', 'Benjamin Tooke', {'date': '1672'}), ('A30672', 'L. Lichfield', {'date': '1683'}), ('A07765', 'John Wolfe', {'date': '1588'}), ('A44128', 'J. Heptinstall', {'date': '1694'}), ('A18766', 'T. Orwin', {'date': '1588'}), ('A10686', 'G. Eld', {'date': '1623'}), ('A77434', 'R. Raworth', {'date': '1645'}), ('A96566', "Charles Bill, and the Executrix of Thomas Newcomb, deceas'd", {'date': '1700'}), ('A84996', 'Barnard Alsop', {'date': '1645'}), ('A84996', 'Jane Coe.', {'date': '1645'}), ('A19518', 'Edward All-de', {'date': '1620'}), ('A35411', 'Thomas Leach', {'date': '1668'}), ('A10131', 'John Dawson', {'date': '1630'}), ('A84399', 'E. P.', {'date': '1644'}), ('A41110', 'E.M.', {'date': '1647'}), ('A41110', 'T.R.', {'date': '1647'}), ('A09596', 'Edward Allde', {'date': '1591'}), ('A28197', 'T.W.', {'date': '1693'}), ('B05570', 'the heirs and successors of Andrew Anderson', {'date': '1694'}), ('A05729', 'Thomas Este', {'date': '1596'}), ('A46809', 'M.B.', {'date': '1648'}), ('A08279', 'William Stansby', {'date': '1614'}), ('A16435', 'Miles Flesher', {'date': '1628'}), ('A14366', 'John Tisdale', {'date': '1561'}), ('A73983', 'Bonham Norton', {'date': '1626'}), ('A73983', 'John Bill', {'date': '1626'}), ('A76316', 'John Field', {'date': '1647'}), ('A73301', 'Thomas Harper', {'date': '1637'}), ('A82488', 'John Field', {'date': '1651'}), ('A75462', 'the same artifice, as they did', {'date': '1660'}), ('A75462', 'their libellous pamphlets', {'date': '1660'}), ('A87137', 'G. Dawson', {'date': '1657'}), ('A19147', 'R. Field', {'date': '1602'}), ('A10413', 'Robert Robinson', {'date': '1588'}), ('A40978', 'J. Bennet', {'date': '1679'}), ('A01198', 'Henry Sutton', {'date': '1562'}), ('A54225', 'T. Sowle', {'date': '1695'}), ('B22434', 'Awnsham', {'date': '1688'}), ('B22434', 'John Starkey', {'date': '1688'}), ('B22434', 'William Churchill', {'date': '1688'}), ('A26733', 'Moses Pitt', {'date': '1671'}), ('A08181', 'Bernard Alsop', {'date': '1627'}), ('A08181', 'T. Fawcet.', {'date': '1627'}), ('A09213', 'John Charlewood', {'date': '1583'}), ('A59949', 'A.N.', {'date': '1641'}), ('B05185', 'Evan Tyler', {'date': '1661'}), ('A03057', 'T. Paine', {'date': '1640'}), ('A45932', 'T. Leach', {'date': '1664'}), ('A04403', 'Wynkyn de Worde', {'date': None}), ('A37203', 'M.J.', {'date': '1669'}), ('A37203', 'S.G.', {'date': '1669'}), ('A54663', 'G. Dawson', {'date': '1657'}), ('A30243', 'A. Miller', {'date': '1652'}), ('A52900', 'Randle Taylor', {'date': '1689'}), ('A47791', 'Roger Daniel', {'date': '1641'}), ('A16292', 'Thomas Davidson', {'date': '1540'}), ('A87562', 'R. Wood', {'date': '1651'}), ('A11205', 'John Okes', {'date': '1635'}), ('A11205', 'Nicholas', {'date': '1635'}), ('B05480', 'the heir of Andrew Anderson', {'date': '1679'}), ('A14421', 'A. Mathewes', {'date': '1627'}), ('A19422', 'Robert Waldegraue', {'date': '1583'}), ('A19860', 'the English secret press?', {'date': '1600'}), ('A25359', 'J.M.', {'date': '1681'}), ('A17182', 'Iames Nicolson', {'date': '1538'}), ('A62527', 'L.L.', {'date': '1652'}), ('A64893', 'J. Rothwell', {'date': '1647'}), ('A21378', 'Robert Barker, printer ot the Kings most Excellent Maiestie', {'date': '1608'}), ('B05481', 'the heir of Andrew Anderson', {'date': '1679'}), ('A12030', 'Richard Bradock', {'date': '1608'}), ('B21890', 'John Redmayn', {'date': '1659'}), ('B23779', 'John Hardesty', {'date': '1652'}), ('A64596', 'Andrew Sowle', {'date': '1683'}), ('A54457', 'W.G.', {'date': '1671'}), ('A84470', 'Henry Hills', {'date': '1653'}), ('A01216', 'Robert Barker', {'date': '1601'}), ('A78645', 'Robert Barker', {'date': '1642'}), ('A78645', 'the Assignes of John Bill', {'date': '1642'}), ('B05468', 'the heirs and successors of Andrew Anderson', {'date': '1698'}), ('A70305', 'N.T.', {'date': '1674'}), ('A70305', 'T.R.', {'date': '1674'}), ('A33951', 'George Larkin', {'date': '1684'}), ('B11843', 'William How', {'date': '1575'}), ('A76805', 'Richard Cotes', {'date': '1649'}), ('A17029', 'Thomas Scarlet', {'date': '1591'}), ('A71336', 'John Macock', {'date': None}), ('B15867', 'I. Okes', {'date': '1637'}), ('B06652', 'John Hammond', {'date': '1649'}), ('A67665', 'George Croom', {'date': '1688'}), ('A46567', 'Henry Hills', {'date': '1685'}), ('A46567', 'Thomas Newcomb', {'date': '1685'}), ('A70537', 'A. Baldwin', {'date': '1700'}), ('A46909', 'Thomas Broad', {'date': '1648'}), ('B24685', 'Andr. Crook', {'date': '1687'}), ('B24685', 'Samuel Helsham', {'date': '1687'}), ('A10716', 'John Charlewood', {'date': '1587'}), ('A41223', 'James Moxon', {'date': '1698'}), ('A85839', 'J. Best', {'date': '1660'}), ('A01331', 'T. Dawson', {'date': '1577'}), ('A01331', 'T. Gardiner', {'date': '1577'}), ('B16236', 'Felix Kingston', {'date': '1624'}), ('A53413', 'J.D. to be', {'date': '1697'}), ('B27736', 'Leonard Lichfield', {'date': '1651'}), ('B20857', 'Henry Hills', {'date': '1655'}), ('B20857', 'John Fields', {'date': '1655'}), ('A18271', 'Thomas Creede', {'date': '1600'}), ('A84640', 'Ralph Wood', {'date': '1657'}), ('A74534', 'Henry Hills', {'date': '1654'}), ('A74534', 'William du-Gard', {'date': '1654'}), ('A53077', 'A.M.', {'date': '1682'}), ('A53077', 'R.R.', {'date': '1682'}), ('A10407', 'John Buck the printers to the Universitie of Cambridge', {'date': '1632'}), ('A10407', 'Thomas', {'date': '1632'}), ('A34470', 'Philip Wattleworth', {'date': '1656'}), ('A02029', 'T. Snodham', {'date': '1616'}), ('A46206', 'Benjamin Tooke', {'date': '1677'}), ('A29398', 'W. Davis', {'date': '1689'}), ('A87837', 'F. L.', {'date': '1644'}), ('A47053', 'George Larkin', {'date': '1684'}), ('A41543', 'A. Maxey', {'date': '1658'}), ('A12675', 'S. Mierdman?', {'date': '1551'}), ('A52084', 'J. Bradford', {'date': '1699'}), ('A35073', 'Thomas Milbourn', {'date': '1664'}), ('B05705', 'the heir of Andrew Anderson', {'date': '1693'}), ('A64883', 'Peter Cole', {'date': '1653'}), ('A19412', 'Edward Allde', {'date': '1589'}), ('A94058', 'W. Wilson', {'date': '1660'}), ('A00697', 'Thomas Purfoote', {'date': '1571'}), ('A06545', 'Wynken de worde', {'date': '1497'}), ('A13413', 'Augustine Matthewes', {'date': '1623'}), ('A66196', 'Charles Bill, and the executrix of Thomas Newcomb', {'date': '1697'}), ('A65925', 'E. Holt', {'date': '1698'}), ('B25299', 'Thomas Pierrepont', {'date': '1662'}), ('A90954', 'E. Griffin', {'date': '1650'}), ('A93262', 'I.H.', {'date': '1645'}), ('A06221', 'J. Day', {'date': '1577'}), ('A55065', 'Joseph Moxon', {'date': '1658'}), ('A32722', 'Thomas Milbourn', {'date': '1680'}), ('A19656', 'Ihon Day', {'date': '1548'}), ('A19656', 'William Seres', {'date': '1548'}), ('A30570', 'Edward Cole', {'date': '1661'}), ('A30570', 'Peter Cole', {'date': '1661'}), ('A90499', 'the Company of Covenant-Keepers', {'date': '1650'}), ('A94661', 'E.P.', {'date': '1642'}), ('A28961', 'M. Flesher', {'date': '1685'}), ('A59592', 'T.F.', {'date': '1657'}), ('A34133', 'Thomas Berry', {'date': '1675'}), ('A32493', 'Christopher Barker', {'date': '1678'}), ('A32493', 'Henry Hills', {'date': '1678'}), ('A32493', 'John Bill', {'date': '1678'}), ('A32493', 'Thomas Newcomb', {'date': '1678'}), ('A95449', 'Richard Cotes', {'date': '1647'}), ('A25865', 'T.M.', {'date': '1685'}), ('A47545', 'T. Leach', {'date': '1666'}), ('A03201', 'Miles Flesher', {'date': '1631'}), ('A35402', 'I. Norton', {'date': '1641'}), ('A76085', 'John Macock', {'date': '1645'}), ('B05393', 'Evan Tyler', {'date': '1665'}), ('A41964', 'M.F.', {'date': '1647'}), ('A50426', 'M.I.', {'date': '1662'}), ('A16392', 'wynkyn the worde', {'date': '1496'}), ('A06932', 'John Kingston', {'date': '1566'}), ('A06932', 'Thomas Marshe', {'date': '1566'}), ('A49748', 'James Young', {'date': '1648'}), ('A06770', 'Thomas Purfoote', {'date': '1576'}), ('A60256', 'T.B.', {'date': '1682'}), ('A44310', 'John. Pennyman.', {'date': '1697'}), ('A44310', 'John How', {'date': '1697'}), ('A06004', 'H. Lownes', {'date': '1618'}), ('A67108', 'A.C.', {'date': '1675'}), ('A00397', 'G. Robinson', {'date': '1586'}), ('A17140', 'Adam Islip', {'date': '1636'}), ('A32400', 'Christopher Barker', {'date': '1660'}), ('A32400', 'John Bill', {'date': '1660'}), ('B03074', 'the heir of Andrew Anderson', {'date': '1692'}), ('A96240', 'Richard Cotes', {'date': '1644'}), ('A46034', 'Benjamin Tooke', {'date': '1684'}), ('A18039', 'W. How', {'date': '1573'}), ('A55191', 'W.G.', {'date': '1667'}), ('A26589', 'William Du-gard', {'date': '1653'}), ('A92908', 'W.G.', {'date': '1660'}), ('A94264', 'M. Symmons', {'date': '1642'}), ('A94264', 'T. Paine', {'date': '1642'}), ('A40073', 'E. Tyler', {'date': '1671'}), ('A40073', 'R. Holt', {'date': '1671'}), ('A69278', 'impress.', {'date': '1539'}), ('A67406', 'Henry Hall', {'date': '1679'}), ('A66331', "Charles Bill, and the executrix of Thomas Newcomb deceas'd", {'date': '1692'}), ('A07626', 'Augustine Mathewes', {'date': '1633'}), ('A88346', 'G.C.', {'date': '1690'}), ('B06839', 'Thomas Cross.', {'date': '1698'}), ('A40398', 'A. Grover', {'date': '1683'}), ('A75279', 'J.H.', {'date': '1687'}), ('B24982', 'Mr. P. Bruce enginier, and', {'date': '1688'}), ('A43587', 'R.W.', {'date': '1670'}), ('A09758', 'John Legat', {'date': '1603'}), ('A09758', 'Simon Waterson', {'date': '1603'}), ('A17218', 'John Haviland', {'date': '1624'}), ('B12150', 'Laurence Kellam', {'date': '1603'}), ('A40556', 'G.C.', {'date': '1685'}), ('A56293', 'J. Heptinstall', {'date': '1698'}), ('A01566', 'William Hall', {'date': '1612'}), ('A34424', 'J. Nutt', {'date': '1700'}), ('A60177', 'Iames Brown', {'date': '1658'}), ('A01258', 'Richard Field', {'date': '1589'}), ('A27313', 'J. Playford', {'date': '1685'}), ('A75492', 'G.M.', {'date': '1645'}), ('A79025', 'L. Lichfield', {'date': '1642'}), ('A00374', 'Adam Anonimus i.e. S. Mierdman', {'date': '1545'}), ('B17273', 'W. Wilde', {'date': '1685'}), ('A48810', 'Thomas Roycroft', {'date': '1653'}), ('A21673', 'John Cawood', {'date': '1618'}), ('A21673', 'Richard Iugge', {'date': '1618'}), ('A04626', 'William Iones', {'date': '1625'}), ('B13060', 'Robert Barker', {'date': '1633'}), ('A80058', 'James Cottrel', {'date': '1654'}), ('A01408', 'Rouland Hall ', {'date': '1563'}), ('A37379', 'Evan Tyler', {'date': '1644'}), ('A40386', 'John Gain', {'date': '1687'}), ('A68970', 'John Awdely', {'date': '1574'}), ('A68970', 'John Wyght', {'date': '1574'}), ('A11081', 'Felix Kingston', {'date': '1598'}), ('A46046', 'John Crook', {'date': '1666'}), ('B05598', 'the heirs and successors of Andrew Anderson', {'date': '1695'}), ('A32898', 'T. Sowle', {'date': '1698'}), ('A42100', 'W. Rawlins', {'date': '1682'}), ('A62876', 'E. Cotes', {'date': '1667'}), ('B05334', 'the heir of Andrew Anderson', {'date': '1688'}), ('A21455', 'Richard Shorleyker', {'date': '1630'}), ('A57648', 'James Young', {'date': '1646'}), ('A00416', 'John Roberts', {'date': '1602'}), ('A48812', 'T.R.', {'date': '1654'}), ('A60130', 'J.D.', {'date': '1694'}), ('A22493', 'Bonham Norton', {'date': '1628'}), ('A22493', 'John Bill', {'date': '1628'}), ('A12211', 'the Societie of Stationers', {'date': '1622'}), ('A25619', 'Richard Wilde', {'date': '1694'}), ('A91311', 'J.M.', {'date': '1647'}), ('A16959', 'J. Theunisz?', {'date': '1605'}), ('A34439', 'Joseph Ray', {'date': '1688'}), ('A49776', 'J.G.', {'date': '1664'}), ('A05393', 'R. Grafton', {'date': '1551'}), ('A08551', 'Thomas Purfoot', {'date': '1598'}), ('A79670', "Charles Bill and the executrix of Thomas Newcomb deceas'd", {'date': '1692'}), ('A64781', 'L. Lichfield', {'date': '1658'}), ('A66375', 'R. Roberts', {'date': '1689'}), ('A09309', 'Edmund Bollifant', {'date': '1599'}), ('A09952', 'Robert Waldegrave', {'date': '1585'}), ('A74485', 'John Field', {'date': '1653'}), ('A01864', 'I. Wolfe', {'date': '1588'}), ('A69248', 'Iames Dawson', {'date': '1624'}), ('A57248', 'M. Simmons', {'date': '1647'}), ('A80303', 'E.E.', {'date': '1646'}), ('A69449', 'J.F.', {'date': '1650'}), ('A74553', 'Henry Hills', {'date': '1654'}), ('A74553', 'William Du-Gard', {'date': '1654'}), ('A37215', 'Henry Hall', {'date': '1659'}), ('A49039', 'Andrew Clark', {'date': '1671'}), ('A13529', 'Miles Flesher', {'date': '1635'}), ('A18386', 'Bartelmew Sermartelli i.e. J. Windet', {'date': '1600'}), ('A14298', 'T. Snodham', {'date': '1612'}), ('A59325', 'Peter Lillicrap', {'date': '1666'}), ('A10561', 'Augustine Mathevves', {'date': '1632'}), ('B24996', 'Benjamin Took', {'date': '1685'}), ('A19411', 'E. Allde', {'date': '1591'}), ('A81932', 'J. Clowes', {'date': '1650'}), ('A00547', 'me Wynkyn de Worde', {'date': '1530'}), ('A03256', 'John Hodges', {'date': '1607'}), ('A03256', 'William Iaggard', {'date': '1607'}), ('A15415', 'Cantrell Legge', {'date': '1610'}), ('A38306', 'Christopher Barker', {'date': '1661'}), ('A38306', 'John Bill', {'date': '1661'}), ('A32155', 'Robert Barker and', {'date': '1642'}), ('A34410', 'Thomas James', {'date': '1678'}), ('A15357', 'W. Iaggard', {'date': '1607'}), ('A41931', 'Richard Janeway', {'date': '1689'}), ('A07131', 'Wynkyn de worde', {'date': '1526'}), ('A12044', 'G. Eld', {'date': '1609'}), ('A37566', 'John Macock', {'date': '1659'}), ('A37566', 'John Streater', {'date': '1659'}), ('A37077', 'P.L.', {'date': '1642'}), ('A00831', 'Henry Midleton', {'date': '1583'}), ('A65710', 'W. Bowyer', {'date': '1700'}), ('A13990', 'E. Purslowe?', {'date': '1635'}), ('A38657', 'John Bill', {'date': '1645'}), ('A38657', 'Robert Barker', {'date': '1645'}), ('A58487', 'Samuel Smith', {'date': '1689'}), ('A09850', 'T. Snodham', {'date': '1619'}), ('A50063', 'A.M.', {'date': '1658'}), ('A11509', 'Nicholas Okes', {'date': '1607'}), ('A11327', 'Thomas Godfray', {'date': '1535'}), ('A83718', 'Leonard Lichfield', {'date': '1648'}), ('A30771', 'Stephen Bulkley', {'date': '1677'}), ('A30627', 'John Crook', {'date': '1662'}), ('A01795', 'George Waters', {'date': '1616'}), ('A66296', 'Charles Bill', {'date': '1689'}), ('A66296', 'Thomas Newcomb', {'date': '1689'}), ('A78423', 'Thomas Harper', {'date': '1644'}), ('A45125', 'John Leake', {'date': '1685'}), ('A12550', 'Edmund Bollifant', {'date': '1596'}), ('A63235', 'R.D.', {'date': '1665'}), ('A68846', 'Ricardum Tottel.', {'date': '1557'}), ('A40635', 'Evan Tyler', {'date': '1672'}), ('A40635', 'Ralph Holt', {'date': '1672'}), ('A13917', 'me Rychard Lant', {'date': '1545'}), ('A84720', 'John Redmayne', {'date': '1660'}), ('A09793', 'Robert Robinson', {'date': '1589'}), ('A88848', 'John Macock', {'date': '1651'}), ('A04123', 'the Societie of Stationers', {'date': '1623'}), ('B02850', 'T.M.', {'date': '1672'}), ('A88029', 'J. Darby', {'date': '1700'}), ('A17341', 'Richarde Pynson', {'date': '1526'}), ('A73135', 'Nicholas Okes?', {'date': '1624'}), ('A40103', 'W.O.', {'date': '1700'}), ('A68648', 'B.A.', {'date': '1627'}), ('A68648', 'T.F.', {'date': '1627'}), ('B04472', 'J.S.', {'date': '1680'}), ('A77545', 'G.B.', {'date': '1644'}), ('A77545', 'R.W.', {'date': '1644'}), ('A26782', 'J.D.', {'date': '1676'}), ('A46239', 'R. Wood', {'date': '1650'}), ('B05574', 'the heirs and successors of Andrew Anderson', {'date': '1699'}), ('B09878', 'I. R.', {'date': '1667'}), ('A10387', 'Henrie Kyrkham', {'date': '1577'}), ('A10387', 'J. Charlewood', {'date': '1577'}), ('A74516', 'Henry Hills', {'date': '1654'}), ('A74516', 'William du-Gard', {'date': '1654'}), ('A13773', 'L. Snowden', {'date': '1606'}), ('A68559', 'T. Creede?', {'date': '1612'}), ('A65870', 'Andrew Sowle', {'date': '1682'}), ('A94638', 'John Raworth', {'date': '1642'}), ('A84857', 'Leonard Brown', {'date': '1647'}), ('A32391', 'Christopher Barker', {'date': '1663'}), ('A32391', 'John Bill', {'date': '1663'}), ('A22719', 'William Stansby', {'date': '1611'}), ('A51366', 'Leonard Lichfield', {'date': '1691'}), ('A76452', 'Richard Cotes', {'date': '1643'}), ('A92606', 'R.W.', {'date': '1648'}), ('A64128', 'W. Bladen', {'date': '1661'}), ('A09631', 'Thomas East', {'date': '1585'}), ('A53261', 'Nathaniel Thompson', {'date': '1681'}), ('A90794', 'R. White', {'date': '1650'}), ('A90794', 'T. Roycroft', {'date': '1650'}), ('A47576', 'John Marshall', {'date': '1700'}), ('A76788', 'John Macock', {'date': '1650'}), ('A51310', 'Roger Daniel', {'date': '1647'}), ('A90620', 'Evan Tyler', {'date': '1644'}), ('A77586', 'R.W.', {'date': '1650'}), ('A18004', 'H Myddleton:', {'date': '1572'}), ('A18004', 'Thomas East', {'date': '1572'}), ('A50961', 'John Norton', {'date': '1641'}), ('A82468', 'Henry Hills', {'date': '1657'}), ('A82468', 'John Field', {'date': '1657'}), ('A41440', 'S. Roycroft', {'date': '1689'}), ('B16656', 'Andrew Clark', {'date': '1677'}), ('A95004', 'Luke Norton', {'date': '1642'}), ('A41582', 'Henry Hall', {'date': '1644'}), ('A03440', 'Robert Caly', {'date': '1554'}), ('B05717', 'the heir of Andrew Anderson', {'date': '1690'}), ('A61191', 'R.W.', {'date': '1647'}), ('B05192', 'the heir of Andrew Anderson', {'date': '1685'}), ('A33222', 'H. Clark', {'date': '1688'}), ('A04827', 'Felix Kingston', {'date': '1598'}), ('A11988', 'Thomas Harper', {'date': '1630'}), ('A18908', 'Felix Kingston', {'date': '1600'}), ('A26833', 'Thomas Warren', {'date': '1694'}), ('A69331', 'New-gate Market next', {'date': '1618'}), ('A69331', 'Richarde Iugge', {'date': '1618'}), ('B14943', 'George Veseler. ', {'date': '1621'}), ('B05453', 'the heir of Andrew Anderson', {'date': '1681'}), ('A42885', 'J.B.', {'date': '1689'}), ('A02136', 'J. Charlewood', {'date': '1584'}), ('A02136', 'J. Kingston', {'date': '1584'}), ('A64660', 'G.M.', {'date': '1641'}), ('A33892', 'M.I.', {'date': '1660'}), ('B02021', 'Leonard Lichfield', {'date': '1645'}), ('A12600', 'R. Young', {'date': '1626'}), ('A76013', 'John Macock', {'date': '1660'}), ('A76013', 'John Streater', {'date': '1660'}), ('A13383', 'Thomas Creede', {'date': '1599'}), ('A28288', 'Thomas Warren', {'date': '1697'}), ('A81104', 'F.C.', {'date': '1691'}), ('A14250', 'John Daye', {'date': '1564'}), ('A07537', 'John Haviland and', {'date': '1639'}), ('A07537', 'Marmaduke Parsons', {'date': '1639'}), ('A78355', 'the heir of Andrew Anderson', {'date': '1677'}), ('A84642', 'William Bradford', {'date': '1693'}), ('B00323', 'John Windet', {'date': '1586'}), ('A21243', 'Ihon Kyngston', {'date': '1558'}), ('A53719', 'J.G.', {'date': '1681'}), ('A35111', 'T. Broad', {'date': '1650'}), ('A85061', 'J.W.', {'date': '1700'}), ('A75535', 'R. Bishop', {'date': '1641'}), ('A08242', 'Nicholas Okes', {'date': '1616'}), ('A11978', 'Nicholas Okes', {'date': '1608'}), ('A21191', 'William Copland', {'date': '1555'}), ('B26345', 'Vincent Du Moutier', {'date': '1675'}), ('A81629', 'Edward Griffin', {'date': '1642'}), ('A22355', 'Bonham Norton', {'date': '1625'}), ('A22355', 'John Bill', {'date': '1625'}), ('A22355', 'Printers to the Kings most Excellent Maiestie', {'date': '1625'}), ('A21066', 'VV.VV.', {'date': '1600'}), ('A80419', 'T. Sowle', {'date': '1699'}), ('A52642', 'George Larkin', {'date': '1699'}), ('A52642', 'Jun.', {'date': '1699'}), ('A18337', 'George Purslowe', {'date': '1622'}), ('A60366', 'Edward Jones', {'date': '1689'}), ('B19255', 'Leonard Lichfield', {'date': '1642'}), ('A04571', 'G. Eld', {'date': '1612'}), ('B14980', 'F. K.', {'date': '1622'}), ('A13573', 'Iames Shaw', {'date': '1602'}), ('A13573', 'Simon Stafford', {'date': '1602'}), ('A83886', 'Richard Cotes', {'date': '1646'}), ('A47508', 'Anne Johnson', {'date': '1673'}), ('A47508', 'most other booksellers', {'date': '1673'}), ('A21043', 'Richard Field', {'date': '1619'}), ('A36408', 'Frederick Stam', {'date': '1651'}), ('A02353', 'George Purslowe', {'date': '1620'}), ('A77005', 'J.D.', {'date': '1645'}), ('A37275', 'F.C.', {'date': '1695'}), ('A73585', 'Robert Robinson', {'date': '1588'}), ('A66066', 'Thomas Broad', {'date': '1645'}), ('A87514', 'G. Dawson', {'date': '1659'}), ('A80117', 'John Crowch', {'date': '1652'}), ('A80117', 'T.W.', {'date': '1652'}), ('B11899', 'T. Harper', {'date': '1638'}), ('A82135', 'B.A.', {'date': '1648'}), ('A20782', 'John Windet', {'date': '1596'}), ('A08447', 'Thomas East', {'date': '1580'}), ('A25834', 'J. Hayes', {'date': '1677'}), ('B05568', 'the heir of Andrew Anderson', {'date': '1683'}), ('A37317', 'F.L.', {'date': '1676'}), ('B21941', 'A. N.', {'date': '1642'}), ('A13019', 'Richard Badger, and', {'date': '1640'}), ('A13019', 'Thomas Cotes ', {'date': '1640'}), ('A26037', 'E.G.', {'date': '1646'}), ('A21728', 'John Cawood', {'date': '1570'}), ('A21728', 'Richarde Iugge', {'date': '1570'}), ('A04786', 'Richard Grafton', {'date': '1547'}), ('A40091', 'T.B.', {'date': '1685'}), ('A08304', 'I. Windet', {'date': '1596'}), ('A19624', 'W. Stansby', {'date': '1630'}), ('A64583', 'T. F.', {'date': '1641'}), ('A13627', 'T. Creede', {'date': '1604'}), ('A79296', 'Christopher Barker', {'date': '1660'}), ('A79296', 'John Bill', {'date': '1660'}), ('A13445', 'George Eld', {'date': '1620'}), ('A63485', 'Freeman Collins', {'date': '1698'}), ('A66120', 'Charles Bill, and the executrix of Thomas Newcomb', {'date': '1695'}), ('A02266', 'Felix Kingston', {'date': '1623'}), ('A92483', 'the heirs and successors of Andrew Anderson', {'date': '1695'}), ('A26760', 'Simon Dover', {'date': '1661'}), ('A40178', 'John Bringhurst', {'date': '1682'}), ('A13414', 'Leonard Lichfield', {'date': '1638'}), ('A16762', 'Thomas Creede', {'date': '1602'}), ('B09277', 'Andrew Crook', {'date': '1699'}), ('A55393', 'J.H.', {'date': '1659'}), ('A91796', 'E.C.', {'date': '1656'}), ('A63236', 'J. Harefinch', {'date': '1684'}), ('A27219', 'J.R.', {'date': '1665'}), ('A17100', 'Robertus Walde-graue typographus regius.', {'date': '1595'}), ('A88061', 'E.G.', {'date': '1650'}), ('A02792', 'Thomas Orwin', {'date': '1592'}), ('A57980', 'J.D.', {'date': '1648'}), ('A57980', 'R.I.', {'date': '1648'}), ('A42565', 'David Lindsay', {'date': '1683'}), ('A42565', 'John Colmar', {'date': '1683'}), ('A42565', 'Josua Van Solingen', {'date': '1683'}), ('A42565', 'Mr. James Kniblo', {'date': '1683'}), ('B24940', 'Andrew Crook', {'date': '1689'}), ('B24940', 'Samuel Helsham', {'date': '1689'}), ('A91081', 'William Ellis', {'date': '1650'}), ('A21675', 'John Cawood:', {'date': '1564'}), ('A21675', 'Rycharde Iugge', {'date': '1564'}), ('A96265', 'Thomas Harper', {'date': '1652'}), ('A97377', 'Ihon Oswen. They be also to sell', {'date': '1551'}), ('A40040', 'E. Cotes', {'date': '1662'}), ('A20120', 'Richard Iones', {'date': '1586'}), ('A34527', 'Thomas Badger', {'date': '1642'}), ('A46952', 'M. Inman', {'date': '1661'}), ('A46952', 'Thomas Forde', {'date': '1661'}), ('A68818', 'Richard Field', {'date': '1604'}), ('A69611', 'E. Flesher', {'date': '1675'}), ('A66188', 'Charles Bill, and the executrix of Thomas Newcomb', {'date': '1695'}), ('A34991', 'A. Sowle', {'date': '1690'}), ('A35867', 'Andrew Sowle', {'date': '1683'}), ('A83567', 'T.W.', {'date': '1645'}), ('A12545', 'W. Jaggard', {'date': '1605'}), ('A12545', 'W. White', {'date': '1605'}), ('A17304', 'Thomas Cotes', {'date': '1628'}), ('A46112', 'John Crooke', {'date': '1663'}), ('A58062', 'B.G.', {'date': '1672'}), ('A58062', 'S.G.', {'date': '1672'}), ('A63409', 'Freeman Collins', {'date': '1682'}), ('A09262', 'John Lichfield', {'date': '1628'}), ('A05547', 'John̄ Byddell', {'date': '1538'}), ('B05613', 'the heir of Andrew Anderson', {'date': '1692'}), ('A61477', 'Peter Cole', {'date': '1657'}), ('A52199', 'Bartholomew Green', {'date': '1694'}), ('A19122', 'Thomas Colwell', {'date': '1571'}), ('B02087', 'Evan Tyler', {'date': '1670'}), ('A41751', 'R.W.', {'date': '1671'}), ('A35775', 'Joseph Moxon', {'date': '1673'}), ('A75708', 'A.M.', {'date': '1654'}), ('B04134', 'James Brown', {'date': '1661'}), ('B26903', 'J.A.', {'date': '1688'}), ('A06859', 'Thomas Marshe', {'date': '1581'}), ('A14861', 'Edward Griffin', {'date': '1615'}), ('A50158', 'R. Pierce', {'date': '1691'}), ('A01750', 'John Legatt', {'date': '1640'}), ('A21890', 'the deputies of Christopher Barker', {'date': '1592'}), ('A16730', 'Thomas Este', {'date': '1597'}), ('A46213', 'John Crooke', {'date': '1667'}), ('A46213', 'Samuel Dancer', {'date': '1667'}), ('A00012', 'B. Alsop', {'date': '1623'}), ('A05191', 'John Haviland', {'date': '1624'}), ('A86197', 'F.N.', {'date': '1645'}), ('A20983', 'Joh: Okes', {'date': '1635'}), ('A20983', 'Nicholas', {'date': '1635'}), ('A08799', 'John Haviland', {'date': '1638'}), ('A69013', 'Robert Barker', {'date': '1606'}), ('A50129', 'B. Green', {'date': '1699'}), ('A50129', 'J. Allen', {'date': '1699'}), ('A42782', 'E.T.', {'date': '1658'}), ('B05285', 'the heir of Andrew Anderson', {'date': '1676'}), ('A09069', 'A. Hatfield', {'date': '1584'}), ('A09069', 'N. Newton', {'date': '1584'}), ('A21715', 'John Cawood', {'date': '1569'}), ('A21715', 'Richarde Iugge', {'date': '1569'}), ('A22723', 'Ihon Cawood', {'date': '1553'}), ('A01376', 'Edward Allde', {'date': '1605'}), ('A96611', 'Iane Coe', {'date': '1645'}), ('A39434', 'Christopher Barker', {'date': '1679'}), ('A39434', 'Henry Hills', {'date': '1679'}), ('A39434', 'John Bill', {'date': '1679'}), ('A39434', 'Thomas Newcomb', {'date': '1679'}), ('A90118', 'Thomas Newcomb', {'date': '1657'}), ('A06901', 'Augustine Matthewes', {'date': '1622'}), ('A12063', 'Iohannis Legat', {'date': '1603'}), ('A94630', 'J.H.', {'date': '1660'}), ('B04931', 'John Reid', {'date': '1688'}), ('A62948', 'T.B.', {'date': '1646'}), ('A13823', 'John Windet', {'date': '1596'}), ('A21958', 'Robert Barker', {'date': '1602'}), ('A09537', 'John Charlewood', {'date': '1584'}), ('A19864', 'Richard Field', {'date': '1590'}), ('A87001', 'E. Crowch', {'date': '1657'}), ('A92349', 'Stephen Bulkley', {'date': '1643'}), ('A12461', 'John Dawson', {'date': '1624'}), ('A12461', 'John Haviland', {'date': '1624'}), ('B05226', 'Evan Tyler', {'date': '1649'}), ('A15691', 'N. Okes', {'date': '1608'}), ('A76087', 'E. C.', {'date': '1652'}), ('A85599', 'Robert Ibbitson', {'date': '1648'}), ('A52286', 'G. Larkin', {'date': '1687'}), ('A61329', 'W. Godbid', {'date': '1669'}), ('A95902', 'J. Nuthall', {'date': '1651'}), ('A95902', 'T. Fawcet', {'date': '1651'}), ('A82961', 'John Macock', {'date': '1660'}), ('A82961', 'John Streater', {'date': '1660'}), ('A59377', 'Joseph Ray', {'date': '1681'}), ('A76758', 'Pauls', {'date': '1659'}), ('A51169', 'E. Griffin', {'date': '1647'}), ('B04034', 'E. Mallet', {'date': '1685'}), ('A50107', 'Leonard Lichfield academiæ typographus', {'date': '1651'}), ('A09847', 'John Dawson', {'date': '1624'}), ('A03343', 'George Miller', {'date': '1635'}), ('B08717', 'Evan Tyler', {'date': '1667'}), ('A02404', 'Andrevv Clouting', {'date': '1631'}), ('A27515', 'M. Pitt', {'date': '1676'}), ('A05047', 'Felix Kingston', {'date': '1600'}), ('A07825', 'Thomas Creed', {'date': '1599'}), ('A96624', 'R.D.', {'date': '1660'}), ('B00772', 'the deputies of Christopher Barker', {'date': '1588'}), ('A18760', 'Ihon Kyngston', {'date': '1580'}), ('A18419', 'Valentine Syms', {'date': '1599'}), ('A70489', 'Samvel Roycroft', {'date': '1683'}), ('A13201', 'Henry Wylkes', {'date': '1567'}), ('A32549', 'Christopher Barker', {'date': '1663'}), ('A32549', 'John Bill', {'date': '1663'}), ('A19058', 'Nicholas Okes', {'date': '1621'}), ('A43765', 'Will. Bonny', {'date': '1698'}), ('B20402', 'R.L.', {'date': '1646'}), ('A11441', 'me Humfrey Powell, dewellinge sic aboue Holburne Conduit', {'date': '1550'}), ('A62867', 'R.W.', {'date': '1645'}), ('B09663', 'H. Hall', {'date': '1669'}), ('A12203', 'John Norton', {'date': '1637'}), ('A74670', 'M.S.', {'date': '1657'}), ('A18368', 'John Harison', {'date': '1601'}), ('A57053', 'Henry Hills', {'date': '1686'}), ('A47096', 'Benja. Harris', {'date': '1696'}), ('B14199', 'Augustine Mathewes', {'date': '1625'}), ('B14199', 'John Norton', {'date': '1625'}), ('A08332', 'John Awdely', {'date': '1561'}), ('A08332', 'great S. Bartelmewes', {'date': '1561'}), ('B05295', 'Andrew Anderson', {'date': '1674'}), ('B09083', 'Evan Tyler', {'date': '1642'}), ('B12377', 'John Legatt', {'date': '1624'}), ('A34202', 'James Flesher', {'date': '1652'}), ('A44003', 'William Godbid', {'date': '1676'}), ('A82387', 'John Streater', {'date': '1659'}), ('A34044', 'T.D.', {'date': '1678'}), ('A01531', 'Edward Griffin', {'date': '1640'}), ('A05341', 'George Purslowe', {'date': '1617'}), ('A36730', 'Thomas Johnson', {'date': '1671'}), ('A33197', 'Robert Thornton', {'date': '1692'}), ('A09043', 'Richard Ihones', {'date': '1595'}), ('A38414', 'Th. Dawks', {'date': '1679'}), ('A77390', 'Leonard Lichfield', {'date': '1679'}), ('B04420', 'J. Bradford', {'date': '1698'}), ('A47208', 'John Bringhurst', {'date': '1682'}), ('A31569', 'Thomas Newcomb', {'date': '1671'}), ('A11886', 'William Iones', {'date': '1619'}), ('A91389', 'G. Dexter', {'date': '1642'}), ('A91389', 'R. Oulton.', {'date': '1642'}), ('A21770', 'J. Bill', {'date': '1618'}), ('A21770', 'Richarde Iugge i.e. B. Norton', {'date': '1618'}), ('A09738', 'Wyllyam Powell', {'date': '1547'}), ('A20866', 'A. Mathewes', {'date': '1631'}), ('A76008', 'John Macock', {'date': '1660'}), ('A11038', 'Augustine Mathewes', {'date': '1623'}), ('A92179', 'J. Clowes', {'date': '1650'}), ('A89574', 'J.B.', {'date': '1659'}), ('A80461', 'Iane Coe', {'date': '1646'}), ('A63175', 'A. Godbid', {'date': '1680'}), ('A21878', 'the deputies of Christopher Barker', {'date': '1591'}), ('A64191', 'L. Lichfield', {'date': '1645'}), ('A79379', 'Christopher Barker', {'date': '1660'}), ('A79379', 'John Bill', {'date': '1660'}), ('A00643', 'Roger Daniel', {'date': '1640'}), ('A38362', 'John Field', {'date': '1649'}), ('A54396', 'Henry Hall', {'date': '1658'}), ('B12722', 'Robert Barker', {'date': '1605'}), ('A80915', 'William Bladen', {'date': '1655'}), ('A80915', 'order of His Highness the Lord Protectors Council', {'date': '1655'}), ('A49459', 'R.D.', {'date': '1665'}), ('A04053', 'J. King', {'date': '1557'}), ('A57947', 'George Croom', {'date': '1683'}), ('A60413', 'Leonard Lichfield', {'date': '1698'}), ('A07511', 'George Eld', {'date': '1608'}), ('A69293', 'Thomas Berthelet', {'date': '1538'}), ('A85887', 'J.M.', {'date': '1653'}), ('A63885', 'John Playford', {'date': '1685'}), ('A03983', 'Robert Pynson', {'date': '1517'}), ('A52013', 'E.P.', {'date': '1641'}), ('A92768', 'T.M.', {'date': '1652'}), ('A07960', 'John Wolfe', {'date': '1591'}), ('A35290', 'I.G.', {'date': '1665'}), ('A50967', 'G. Larkin', {'date': '1688'}), ('A55966', 'G. Croom', {'date': '1685'}), ('A58475', 'Andrew Sowle', {'date': '1683'}), ('A40753', 'B.A.', {'date': '1648'}), ('A26203', 'R.I.', {'date': '1652'}), ('A56780', 'R. Hearne', {'date': '1641'}), ('A46605', 'Thomas Newcomb, one of His Majesties printers', {'date': '1688'}), ('A62858', 'T. Milbourn', {'date': '1673'}), ('B13166', 'Robert Barker', {'date': '1639'}), ('A09026', 'N. Okes', {'date': '1614'}), ('A40006', 'Andrew Sowle', {'date': '1684'}), ('A20126', 'H. Lownes', {'date': '1626'}), ('A13297', 'H. Denham', {'date': '1579'}), ('A13381', 'Thomas Dawson', {'date': '1588'}), ('A49704', 'M.B.', {'date': '1645'}), ('B25081', 'Andrew Crook', {'date': '1689'}), ('A07781', 'Christopher Barker', {'date': '1579'}), ('B05559', 'the heirs and successors of Andrew Anderson', {'date': '1697'}), ('A85654', 'John Allen', {'date': '1700'}), ('A89408', 'Thomas Harper', {'date': '1652'}), ('A01090', 'B. Alsop', {'date': '1631'}), ('A01090', 'T. Favvcet', {'date': '1631'}), ('A69538', 'B. Griffin', {'date': '1682'}), ('A84582', 'Edward Husband', {'date': '1651'}), ('A84582', 'John Field', {'date': '1651'}), ('A86516', 'Evan Tyler', {'date': '1669'}), ('B26369', 'John Macock', {'date': '1659'}), ('A08090', 'Thomas Purfoot', {'date': '1605'}), ('A02063', 'Rycharde Kele', {'date': '1540'}), ('A02063', 'Rycharde bankes', {'date': '1540'}), ('A48952', 'Benjamin Tooke', {'date': '1669'}), ('A88179', 'John Clowes', {'date': '1650'}), ('A34640', 'Thomas Newcomb', {'date': '1660'}), ('A82753', 'John Field', {'date': '1652'}), ('A60548', 'Thomas James', {'date': '1680'}), ('A12348', 'E. Allde?', {'date': '1591'}), ('A84137', 'Luke Norton', {'date': '1643'}), ('A84867', 'Ruth Raworth', {'date': '1648'}), ('A79496', 'J.C.', {'date': '1651'}), ('A62469', 'Robert White', {'date': '1677'}), ('A75227', 'J.L.', {'date': '1696'}), ('A50139', '1689', {'date': '1689'}), ('A50139', 'R.P.', {'date': '1689'}), ('A77132', 'Matthew Symons', {'date': '1646'}), ('A48316', 'R. Young', {'date': '1641'}), ('A20805', 'G. Eld', {'date': '1608'}), ('A23677', 'T. Wall', {'date': '1679'}), ('B00568', 'M.P.', {'date': '1638'}), ('A06108', 'Adam Islip', {'date': '1597'}), ('A83538', 'John Field', {'date': '1649'}), ('A20770', 'John Lichfield', {'date': '1635'}), ('A20095', 'Nicholas Okes', {'date': '1609'}), ('A29488', 'J.R.', {'date': '1677'}), ('B05597', 'the heirs and successors of Andrew Anderson', {'date': '1698'}), ('A70980', '1681', {'date': '1681'}), ('A70980', 'the heir of Andrew Anderson', {'date': '1681'}), ('A14460', 'Thomas Vautrollier', {'date': '1584'}), ('A97104', 'Thomas Paine', {'date': '1646'}), ('A32784', 'Leonard Lichfield', {'date': '1641'}), ('A33328', 'E.M.', {'date': '1653'}), ('A33328', 'T.R.', {'date': '1653'}), ('A14406', 'H. Bynneman', {'date': '1571'}), ('A11385', 'B. Alsop', {'date': '1639'}), ('A11385', 'T. Fawcet', {'date': '1639'}), ('A47127', 'Andrew Sowle', {'date': '1687'}), ('A36970', 'H. Hall', {'date': '1649'}), ('A08201', 'Thomas Wight', {'date': '1602'}), ('A01989', 'Edward Griffin', {'date': '1640'}), ('A72015', 'Robert Barker', {'date': '1638'}), ('B09393', 'T. Paine', {'date': '1647'}), ('A09123', 'Edward Alde', {'date': '1588'}), ('A21185', 'John Windet', {'date': '1589'}), ('A16655', 'John windet', {'date': '1606'}), ('A60132', 'J.G.', {'date': '1681'}), ('B22419', 'Richard Hodgkinson', {'date': '1661'}), ('A47834', 'J.R.', {'date': '1674'}), ('A47834', 'W.R.', {'date': '1674'}), ('A85173', 'H. Hills', {'date': '1653'}), ('A63765', 'T. M.', {'date': '1671'}), ('A36258', 'Benjamin Tooke', {'date': '1672'}), ('A76967', 'H. Hall', {'date': '1653'}), ('B02801', 'J.M. pour Moyse Pitt', {'date': '1675'}), ('A28536', 'M.S.', {'date': '1650'}), ('A49788', 'William Bladen', {'date': '1647'}), ('A90643', '1648. And', {'date': '1648'}), ('A90643', 'Haest van Voortganck, printer of the Articles of the Peace', {'date': '1648'}), ('A90643', 'Robert White', {'date': '1648'}), ('A08770', 'John Wolfe', {'date': '1582'}), ('A21875', 'the deputies of Christopher Barker', {'date': '1618'}), ('A00681', 'Edward Allde', {'date': '1620'}), ('A02409', 'Thomas Harper', {'date': '1633'}), ('A31955', 'A.N.', {'date': '1642'}), ('A32824', 'Samuel Darker', {'date': '1698'}), ('A37761', 'E.G.', {'date': '1642'}), ('A93137', 'the heir of Andrew Anderson', {'date': '1692'}), ('A58724', 'the heir of Andrew Anderson', {'date': '1681'}), ('B06279', 'the heir of Andrew Anderson', {'date': '1685'}), ('A59976', 'James Cottrel', {'date': '1667'}), ('A79298', 'the heir of Andrew Anderson', {'date': '1679'}), ('A04575', 'Humphrey Lownes', {'date': '1624'}), ('A19146', 'Rouland Hall', {'date': '1563'}), ('A02443', 'Edward Allde', {'date': '1588'}), ('B24834', 'Andrew Crook', {'date': '1689'}), ('B24834', 'Samuel Helsham', {'date': '1689'}), ('A33980', 'T.S.', {'date': '1684'}), ('A53202', 'Henry Bonwicke', {'date': '1698'}), ('A95428', 'I. Coe', {'date': '1644'}), ('A00179', 'Thomas Colwell', {'date': '1565'}), ('B11881', 'George Purslovv', {'date': '1619'}), ('A65748', 'John Streater', {'date': '1656'}), ('A01363', 'John Alde', {'date': '1562'}), ('A93305', 'G. D.', {'date': '1642'}), ('A93305', 'R. O.', {'date': '1642'}), ('A43467', 'F.L.', {'date': '1657'}), ('A79826', 'A. Lichfield', {'date': '1659'}), ('A69646', 'Matthew Simmons', {'date': '1644'}), ('A85228', 'J.G.', {'date': '1653'}), ('A12158', 'Thomas Cotes', {'date': '1637'}), ('B19403', 'Leonard Lichfeild', {'date': '1666'}), ('A42725', 'E.P.', {'date': '1641'}), ('A21097', 'Thomas Este', {'date': '1604'}), ('A94998', 'Thomas Hodgkin.', {'date': '1693'}), ('A74158', 'Henry Hills', {'date': '1657'}), ('A74158', 'John Field', {'date': '1657'}), ('A14055', 'Marcus Antonius Constantius. Otherwyse called, thraso miles gloriosus i.e. Egidius van der Erve', {'date': '1555'}), ('A14055', 'the vaticane church', {'date': '1555'}), ('A83913', 'Robert Ibbitson', {'date': '1647'}), ('A01017', 'William Stansby', {'date': '1610'}), ('A42325', 'T.N.', {'date': '1669'}), ('A29832', 'Henry Walker', {'date': '1641'}), ('A00584', 'Felix Kyngston', {'date': '1630'}), ('A85117', 'J. Bradford', {'date': '1696'}), ('A69802', 'R.J.', {'date': '1698'}), ('A29475', 'A. Maxwell', {'date': '1668'}), ('A89271', 'J.C.', {'date': '1656'}), ('B05524', 'the successors of Andrew Anderson', {'date': '1694'}), ('A12064', 'Edward Griffin', {'date': '1616'}), ('A13279', 'Bernard Alsop?', {'date': '1620'}), ('A20131', 'i.e.', {'date': '1602'}), ('A29128', 'M.S.', {'date': '1656'}), ('A22072', 'Robert Barker', {'date': '1611'}), ('A17474', 'Thomas Harper', {'date': '1639'}), ('B12846', 'Bonham Norton', {'date': '1622'}), ('B12846', 'John Bill', {'date': '1622'}), ('A01889', 'B. Alsop', {'date': '1627'}), ('A01889', 'T. Favvcet', {'date': '1627'}), ('A45020', 'His Majesties speciall command', {'date': '1642'}), ('A85797', 'Richard Herne', {'date': '1642'}), ('A64389', 'Gideon Lithgovv', {'date': '1648'}), ('B06352', 'the heir of Andrew Anderson', {'date': '1687'}), ('A80900', 'Henry Hill', {'date': '1654'}), ('A80900', 'William du-Gard', {'date': '1654'}), ('A47706', 'Ram-Alley', {'date': '1650'}), ('A80958', 'Henry Hills', {'date': '1655'}), ('A80958', 'John Field', {'date': '1655'}), ('A41853', 'J. Rawlins', {'date': '1687'}), ('A01347', 'Thomas Harper', {'date': '1628'}), ('A17408', 'G. Purslowe', {'date': '1619'}), ('A72792', 'Robert Young', {'date': '1634'}), ('A12194', 'G. Miller', {'date': '1638'}), ('A18922', 'Richard Schilders', {'date': '1604'}), ('A06271', 'A.M.', {'date': '1630'}), ('A53707', 'J.A.', {'date': '1691'}), ('A27536', 'J. Grantham', {'date': '1683'}), ('A38590', 'P. Torga', {'date': '1654'}), ('A13126', 'G. Snowdon', {'date': '1606'}), ('A13126', 'H. Lownes', {'date': '1606'}), ('A83385', 'John Field', {'date': '1653'}), ('A94257', 'Jacobus Voorn', {'date': '1687'}), ('A06920', 'John̄ Maylerre', {'date': '1542'}), ('A86390', 'R.H.', {'date': '1641'}), ('A95905', 'T. Sowle', {'date': '1697'}), ('A06874', 'Peter Short', {'date': '1602'}), ('A55641', 'Edward Jones', {'date': '1698'}), ('A78695', 'Robert Barker', {'date': '1642'}), ('A78695', 'the Assignes of John Bill', {'date': '1642'}), ('A16257', 'Henry Bynneman', {'date': '1571'}), ('A83946', 'Robert White', {'date': '1648'}), ('A74400', 'Edward Husband', {'date': '1650'}), ('A74400', 'John Field', {'date': '1650'}), ('A17966', 'Anthony Scoloker', {'date': '1550'}), ('A17966', 'Dwelling', {'date': '1550'}), ('A17966', 'Wyllyam Seres', {'date': '1550'}), ('A51607', 'N.T.', {'date': '1683'}), ('B03715', 'the heir of Andrew Anderson', {'date': '1681'}), ('A00823', 'Ioseph Barnes', {'date': '1596'}), ('A09208', 'M. Parsons', {'date': '1638'}), ('A53459', 'T. Warren', {'date': '1694'}), ('A63268', 'M.S.', {'date': '1656'}), ('A60240', 'J. Heptinstall', {'date': '1685'}), ('A86551', 'B.A.', {'date': '1649'}), ('A83468', 'Edward Husband', {'date': '1650'}), ('A83468', 'John Field', {'date': '1650'}), ('A08156', 'B. Alsop this third of May', {'date': '1622'}), ('A44622', 'J. B.', {'date': '1689'}), ('A44622', 'Randal Taylor', {'date': '1689'}), ('A86434', 'J. Best', {'date': '1660'}), ('A05165', 'the Society of Stationers', {'date': '1637'}), ('A11438', 'Robert Crowley i.e. R. Grafton', {'date': '1551'}), ('A61823', 'T.W.', {'date': '1693'}), ('A14494', 'Richard Field', {'date': '1620'}), ('A16144', 'Peter Short', {'date': '1599'}), ('A32862', 'Andrew Sowle', {'date': '1689'}), ('A13115', 'Henrie Denham', {'date': '1570'}), ('A54228', 'T. Sowle', {'date': '1699'}), ('A22448', 'Bonham Norton', {'date': '1627'}), ('A22448', 'John Bill', {'date': '1627'}), ('A22448', 'Printers to the Kings most Excellent Maiestie', {'date': '1627'}), ('A45691', 'St. Gregories Church', {'date': '1659'}), ('A66357', 'T.H.', {'date': '1650'}), ('A11935', 'Rychard Lant', {'date': '1542'}), ('A85046', 'B.G.', {'date': '1672'}), ('A85046', 'S.G.', {'date': '1672'}), ('B22351', 'Robert Barker', {'date': '1641'}), ('A83873', 'G. Dexter', {'date': '1642'}), ('A83873', 'R. Oulton', {'date': '1642'}), ('A17041', 'Nicholas Okes', {'date': '1624'}), ('A45331', 'J.G.', {'date': '1654'}), ('B05905', 'Robert Bryson', {'date': '1643'}), ('A75800', 'Henry Hall', {'date': '1657'}), ('A83449', 'John Field', {'date': '1652'}), ('A28932', 'G.C.', {'date': '1700'}), ('A47202', 'Thomas Cotes', {'date': '1641'}), ('A94641', 'Richard Cotes', {'date': '1646'}), ('B05693', 'the heirs and successors of Andrew Anderson', {'date': '1697'}), ('A66939', 'E. Tyler', {'date': '1681'}), ('A66939', 'R. Holt', {'date': '1681'}), ('B05421', 'the heir of Andrew Anderson', {'date': '1692'}), ('A86603', 'T. Paine', {'date': '1647'}), ('A11166', 'Wyllyam Seres', {'date': '1551'}), ('B04331', 'Anne Maxwell', {'date': '1668'}), ('A69358', 'Christopher Barker', {'date': '1578'}), ('A21645', 'John Cawood', {'date': '1571'}), ('A21645', 'Richard Iugge', {'date': '1571'}), ('A05570', 'Felix Kyngston', {'date': '1609'}), ('A43121', 'T. Sowle', {'date': '1700'}), ('A13091', 'R. Ward', {'date': '1583'}), ('A89675', 'J.M.', {'date': '1653'}), ('A37642', 'Robert Barkerand', {'date': '1641'}), ('A76710', 'Robert Wood', {'date': '1651'}), ('A21330', 'me John̄ of Doesborowe', {'date': '1520'}), ('B05749', 'the heir of Andrew Anderson', {'date': '1691'}), ('A10233', 'Robert Walde-graue', {'date': '1588'}), ('A14043', 'Elizabeth Purslowe', {'date': '1634'}), ('B24734', 'Andrew Crook', {'date': '1691'}), ('A48715', 'George Croom', {'date': '1685'}), ('A66194', 'Charles Bill, and the executrix of Thomas Newcomb', {'date': '1697'}), ('A69046', 'Felix Kyngston', {'date': '1605'}), ('A08463', 'me Humfrey Powell', {'date': '1548'}), ('A67733', 'J.R.', {'date': '1642'}), ('B30874', 'George Croom', {'date': '1685'}), ('A11250', 'Richard Johnes', {'date': '1596'}), ('A07317', 'E. Alde', {'date': '1612'}), ('A18750', 'Felix Kingston', {'date': '1580'}), ('A65456', 'B. Motte', {'date': '1695'}), ('A52080', 'J. Clark', {'date': '1697'}), ('A07128', 'John Daye', {'date': '1569'}), ('B21924', 'A. Norton', {'date': '1642'}), ('A71338', 'John Macock', {'date': None}), ('A95627', 'Benjamin Took', {'date': '1679'}), ('A95627', 'John Crook', {'date': '1679'}), ('B25935', 'Mary Thompson', {'date': '1688'}), ('A69875', 'George Croom', {'date': '1684'}), ('A29193', 'E.T.', {'date': '1657'}), ('A46503', 'Charles Bill', {'date': '1688'}), ('A46503', 'Thomas Newcomb', {'date': '1688'}), ('A92377', 'E.G.', {'date': '1642'}), ('A85587', 'Bernard Alsop', {'date': '1641'}), ('A81088', 'R.W.', {'date': '1647'}), ('B05328', 'the heirs and successors of Andrew Anderson', {'date': '1695'}), ('A55066', 'W. Godbid', {'date': '1674'}), ('A15711', 'William Stansby', {'date': '1617'}), ('A26346', 'Richard Pierce', {'date': '1685'}), ('A37547', "Charles Bill and the executrix of Thomas Newcomb, deceas'd", {'date': '1700'}), ('A46164', 'John Crook', {'date': '1662'}), ('A82409', 'John Field', {'date': '1659'}), ('B11341', 'John Charlewood', {'date': '1576'}), ('A67119', 'A.N.', {'date': '1641'}), ('A18053', 'the printers to the Vniversity of Cambridge', {'date': '1628'}), ('A10419', 'J. Rastell', {'date': '1523'}), ('A59379', 'I.F.', {'date': '1642'}), ('A59379', 'L.N.', {'date': '1642'}), ('A38283', 'Richard Cotes', {'date': '1646'}), ('A07486', 'Felix Kingston', {'date': '1624'}), ('A04847', 'Augustine Matthewes', {'date': '1624'}), ('A04847', 'John Norton', {'date': '1624'}), ('A20184', 'G. Eld', {'date': '1614'}), ('A07297', 'T. Este.', {'date': '1606'}), ('A12991', 'Henry Bynneman', {'date': '1578'}), ('B00671', 'the Heirs of Thomas Finlasone His M. printer.', {'date': '1629'}), ('A59552', 'Thomas Warren', {'date': '1694'}), ('A38615', 'Ruth Raworth', {'date': '1646'}), ('A01759', 'T. Cotes', {'date': '1638'}), ('A03759', 'Robert Waldegraue', {'date': '1600'}), ('A91430', 'John Field', {'date': '1649'}), ('A22461', 'Bonham Norton', {'date': '1628'}), ('A22461', 'John Bill', {'date': '1628'}), ('A22461', 'Printers to the Kings most Excellent Maiestie', {'date': '1628'}), ('A20412', 'John Lichfield', {'date': '1628'}), ('A95257', 'M.B.', {'date': '1645'}), ('A92756', 'T. Forcet', {'date': '1645'}), ('A02031', 'T. Snodham', {'date': '1621'}), ('A07491', 'T.C.', {'date': '1604'}), ('A39659', 'R.W.', {'date': '1678'}), ('A52371', 'Thomas Parkhurst', {'date': '1682'}), ('A78824', 'Stephen Bulkley', {'date': '1647'}), ('B05691', 'order of Secret Council', {'date': '1689'}), ('B05691', 'the heir of Andrew Anderson', {'date': '1689'}), ('A48382', 'William Godbid', {'date': '1671'}), ('A68088', 'Edward Griffin', {'date': '1620'}), ('A83754', 'Richard Cotes', {'date': '1643'}), ('A83307', 'Richard Cotes', {'date': '1646'}), ('A85156', 'John Macock', {'date': '1660'}), ('A81270', 'A. Maxwell', {'date': '1680'}), ('A81270', 'R. Roberts', {'date': '1680'}), ('A75658', 'Robert Barker', {'date': '1642'}), ('A75658', 'the Assignes of John Bill', {'date': '1642'}), ('A44266', 'J.C.', {'date': '1676'}), ('B01752', 'George Anderson', {'date': '1643'}), ('B13081', 'Robert Barker', {'date': '1634'}), ('A74535', 'Henry Hills', {'date': '1654'}), ('A74535', 'William Du-Gard', {'date': '1654'}), ('A26577', 'J.G.', {'date': '1657'}), ('A74923', 'T.M.', {'date': '1660'}), ('A67264', 'J.G.', {'date': '1659'}), ('A13075', 'the heires of Andro Hart', {'date': '1628'}), ('A38104', 'L. Lichfield', {'date': '1692'}), ('A04106', 'the Kings most excellent Majestie', {'date': '1634'}), ('A04106', 'the Society of Stationers, printed', {'date': '1634'}), ('A77226', 'Gartrude Dawson', {'date': '1649'}), ('B13004', 'Bonham Norton', {'date': '1629'}), ('B13004', 'John Bill', {'date': '1629'}), ('B00045', 'M.F.', {'date': '1635'}), ('A70956', 'direction of the Lady Russel', {'date': '1683'}), ('A60482', 'J. Hayes', {'date': '1666'}), ('A33380', 'G.L.', {'date': '1683'}), ('A32570', 'Henry Hills', {'date': '1679'}), ('A32570', 'John Bill', {'date': '1679'}), ('A32570', 'Thomas Newcomb', {'date': '1679'}), ('A12123', 'Robert Caly?', {'date': '1555'}), ('A00627', 'T. Orwin', {'date': '1590'}), ('A18040', 'Wylliam How:', {'date': '1573'}), ('A53761', 'Thomas Newcomb', {'date': '1675'}), ('A80561', 'B.A.', {'date': '1647'}), ('A01516', 'Thomas Creede', {'date': '1605'}), ('A01516', 'Thomas Purfoot', {'date': '1605'}), ('A21276', 'Paul Boulenger', {'date': '1615'}), ('A79542', 'G. Bishop', {'date': '1644'}), ('A43254', 'John Darby', {'date': '1700'}), ('A09473', 'John Legate', {'date': '1593'}), ('A22681', 'Thomas Barcker', {'date': '1588'}), ('A03179', 'w. Rastell', {'date': '1534'}), ('A21114', 'Georgium Miller', {'date': '1626'}), ('A02885', 'Henrie Middleton', {'date': '1578'}), ('A82109', 'George Morgan', {'date': '1660'}), ('A26974', 'R.W.', {'date': '1658'}), ('A88558', 'the heir of Andrew Anderson', {'date': '1692'}), ('A13025', 'John Legat', {'date': '1598'}), ('A74219', 'Leonard Lichfield', {'date': '1643'}), ('A21842', 'the deputies of Christopher Barker', {'date': '1587'}), ('A72509', 'H. Middleton', {'date': '1576'}), ('A52847', 'John Astwood', {'date': '1697'}), ('A04254', 'Thomas Vautroullier', {'date': '1584'}), ('A03040', 'me Wyllyam Copland', {'date': '1552'}), ('A09486', "Eliot's Court Press", {'date': '1624'}), ('A09486', 'John Beale', {'date': '1624'}), ('A09486', 'Richard Field', {'date': '1624'}), ('A09486', 'Thomas Snodham', {'date': '1624'}), ('A47465', 'S. Bridge', {'date': '1698'}), ('A73399', 'Richard Badger', {'date': '1637'}), ('B21416', 'E. Holt', {'date': '1697'}), ('A54962', 'T.M.', {'date': '1665'}), ('A58774', 'Nathaniel Thompson', {'date': '1685'}), ('A39589', 'N. Thompson', {'date': '1681'}), ('A80841', 'D. Maxwel', {'date': '1659'}), ('A48052', 'E. Whitlock', {'date': '1698'}), ('A14277', 'Thomas Snodham', {'date': '1615'}), ('A86299', 'J.G.', {'date': '1659'}), ('A47301', 'J. Macock', {'date': '1681'}), ('A26830', 'J. Heptinstall', {'date': None}), ('A31666', 'T.M.', {'date': '1678'}), ('A56008', 'T.S.', {'date': '1691'}), ('B05152', 'the heir of Andrew Anderson', {'date': '1688'}), ('A53407', 'Richard Baldwin', {'date': '1697'}), ('A08133', 'Edward Griffins', {'date': '1619'}), ('A09181', 'John Tisdale', {'date': '1562'}), ('A70144', 'T.D.', {'date': '1679'}), ('A47687', 'J.F.', {'date': '1642'}), ('A47687', 'L.N.', {'date': '1642'}), ('A31726', 'M.T.', {'date': '1681'}), ('A04334', 'G. Bishop', {'date': '1597'}), ('A04334', 'R. Barker', {'date': '1597'}), ('A04334', 'R. Newbery', {'date': '1597'}), ('A95269', 'John Field', {'date': '1650'}), ('B25057', 'Andrew Crook', {'date': '1689'}), ('B25057', 'Samuel Helsham', {'date': '1689'}), ('A42149', 'W. Godbid', {'date': '1661'}), ('B13539', "Eliot's Court Press?", {'date': '1615'}), ('B24737', 'Andrew Crook', {'date': '1691'}), ('A49383', 'Thomas Snowden', {'date': '1696'}), ('A35231', 'W.O.', {'date': '1700'}), ('A39371', 'T. Sowle', {'date': '1700'}), ('A67344', 'I.N.', {'date': '1645'}), ('B02204', 'Evan Tyler', {'date': '1649'}), ('A17051', 'R. Field', {'date': '1617'}), ('A22766', 'me Robert Redman', {'date': '1534'}), ('A10616', 'William White', {'date': '1601'}), ('B12653', 'the deputies of Christopher Barker', {'date': '1588'}), ('A21151', 'wyllyam Copland', {'date': '1553'}), ('A68554', 'John Lyon Greenstreet House Press', {'date': '1581'}), ('A42453', 'T.R.', {'date': '1674'}), ('A82725', 'J.F.', {'date': '1642'}), ('A82725', 'L.N.', {'date': '1642'}), ('A06377', 'Roulande Hall', {'date': '1562'}), ('B21699', 'James Flesher', {'date': '1668'}), ('A80547', 'F.L.', {'date': '1652'}), ('A82022', 'Thomas Broad', {'date': '1654'}), ('A21624', 'John Cawood', {'date': '1560'}), ('A21624', 'Richarde Iugge', {'date': '1560'}), ('A08168', 'Bernard Alsop?', {'date': '1622'}), ('A22836', 'John Cawood', {'date': '1561'}), ('A22836', 'Richard Jugge', {'date': '1561'}), ('A92944', 'T. Milbourn', {'date': '1682'}), ('A01981', 'George Miller', {'date': '1632'}), ('A09616', 'Alexander Edmonds i.e. Jan Gheylliaert', {'date': '1554'}), ('A09616', 'Steven Mierdman', {'date': '1554'}), ('A04265', 'Bonham Norton', {'date': '1619'}), ('A04265', 'John Bill', {'date': '1619'}), ('A93349', 'B.A.', {'date': '1647'}), ('A34903', 'the heirs of Andrew Anderson', {'date': '1694'}), ('A20714', 'Edward Raban', {'date': '1638'}), ('A05548', 'J. Scot', {'date': '1554'}), ('A13802', 'Nicholas Okes', {'date': '1615'}), ('A42819', 'J. Macock', {'date': '1671'}), ('A04821', 'Cantrell Legge', {'date': '1618'}), ('A10318', 'the English secret press', {'date': '1605'}), ('A96989', 'T. Sowle', {'date': '1699'}), ('A92849', 'J. Macock', {'date': '1650'}), ('A14614', 'William Stansby', {'date': '1624'}), ('A13348', 'Richard Iugge', {'date': '1575'}), ('A04026', "W. Jones' secret press", {'date': '1608'}), ('B05384', 'the heir of Andrew Anderson', {'date': '1693'}), ('A91899', 'R.I.', {'date': '1655'}), ('A87158', 'A. G.', {'date': '1681'}), ('A87158', 'J. P.', {'date': '1681'}), ('A91793', 'M.S. &', {'date': '1647'}), ('A41883', 'Andrew Swole', {'date': '1688'}), ('A87151', 'M. F.', {'date': '1642'}), ('A44277', 'Robert Ibbitson', {'date': '1653'}), ('A75953', 'W.D.', {'date': '1649'}), ('A63634', 'George Croom', {'date': '1683'}), ('B05356', 'Evan Tyler', {'date': '1664'}), ('A65618', 'George Trigg', {'date': '1653'}), ('A17477', 'Richard Jhones', {'date': '1574'}), ('A27055', 'R.E.', {'date': '1680'}), ('A92629', 'the successors of Andrew Anderson', {'date': '1694'}), ('A64137', 'R.N.', {'date': '1651'}), ('A52455', 'Matthew Turner', {'date': '1688'}), ('A18701', 'Elizabeth Allde', {'date': '1628'}), ('A12143', 'Thomas Cotes', {'date': '1640'}), ('A36187', 'M.J.', {'date': '1671'}), ('A36187', 'S.G.', {'date': '1671'}), ('B13493', 'Nicholas Okes', {'date': '1615'}), ('A13881', 'Michael Schirat', {'date': '1574'}), ('A49157', 'T.M.', {'date': '1653'}), ('A21816', 'Christopher Barker', {'date': '1583'}), ('A34337', 'A.M.', {'date': '1680'}), ('A83386', 'John Field', {'date': '1651'}), ('A32405', 'Henry Hills', {'date': '1680'}), ('A32405', 'John Bill', {'date': '1680'}), ('A32405', 'Thomas Newcomb', {'date': '1680'}), ('A02160', 'John Wolfe', {'date': '1592'}), ('A11443', 'Ioannem Foulerum', {'date': '1567'}), ('B11281', 'Edvvard Griffin', {'date': '1617'}), ('A20362', 'the permission of superiours', {'date': '1604'}), ('A61112', 'John Field', {'date': '1660'}), ('A83052', 'L.N.', {'date': '1644'}), ('A28907', 'T. Moore', {'date': '1693'}), ('A22364', 'Bonham Norton', {'date': '1625'}), ('A22364', 'John Bill', {'date': '1625'}), ('A53455', 'J.C.', {'date': '1662'}), ('A14934', 'Robert Waldegraue', {'date': '1590'}), ('A04122', 'the Company of Stationers', {'date': '1629'}), ('A19857', 'the English secret press?', {'date': '1602'}), ('B04662', 'W. Godbid', {'date': '1658'}), ('A68078', 'Henrie Middleton', {'date': '1579'}), ('A17688', 'me Ihon Oswen', {'date': '1548'}), ('A11240', 'Henry Bynneman', {'date': '1579'}), ('A11983', 'Thomas Creede', {'date': '1602'}), ('B08585', 'J. Ashwood behind St. Christophers-Church', {'date': '1695'}), ('B25048', 'Andrew Crook', {'date': '1689'}), ('B25048', 'Samuel Helsham', {'date': '1689'}), ('A10846', 'J. Kingston?', {'date': '1577'}), ('A13646', 'E. Short', {'date': '1603'}), ('A81101', 'J.R.', {'date': '1690'}), ('A46606', 'Charles Bill', {'date': '1687'}), ('A46606', 'Henry Hills', {'date': '1687'}), ('A46606', 'Thomas Newcomb', {'date': '1687'}), ('A28849', 'F.C.', {'date': '1684'}), ('A28849', 'J.C.', {'date': '1684'}), ('A28849', "the king's special command", {'date': '1684'}), ('A88695', 'J.G.', {'date': '1656'}), ('A72378', 'Robert Walde-graue', {'date': '1583'}), ('A76314', 'J.M.', {'date': '1657'}), ('A40743', 'E. Mallet', {'date': '1685'}), ('A17487', 'E. Allde', {'date': '1603'}), ('A07695', 'w. Rastell', {'date': '1533'}), ('A16688', 'Thomas Dausonus, pro Ricardo Watkins', {'date': '1592'}), ('A29610', 'T.S.', {'date': '1679'}), ('A43130', 'Ri. Whitaker', {'date': '1648'}), ('A01047', 'Thomas Purfoot', {'date': '1634'}), ('A01240', 'Arnold Meuris', {'date': '1621'}), ('A01240', 'E. Allde', {'date': '1621'}), ('A10051', 'Edward Griffin', {'date': '1617'}), ('A68556', 'Richarde Iones', {'date': '1573'}), ('A39537', 'Thomam Stanton lapicidam perquam peritum scripsit & typis exa ravit P. Fisher', {'date': '1668'}), ('A72506', 'I.D.', {'date': '1595'}), ('B20999', 'R. Holt', {'date': '1687'}), ('A78906', 'Robert Barker', {'date': '1642'}), ('A66168', "Charles Bill and the executrix of Thomas Newcomb, deceas'd;", {'date': '1691'}), ('A25886', 'Robert Leyburn', {'date': '1645'}), ('A12339', 'me Wyllyam Copland', {'date': '1565'}), ('A53906', 'J.A.', {'date': '1684'}), ('A53906', 'T.M.', {'date': '1684'}), ('A45206', 'Stphen Bulkley', {'date': '1666'}), ('A13296', 'Andro Hart', {'date': '1616'}), ('B06634', 'the Heir of Andrew Anderson', {'date': '1690'}), ('B05712', 'the heir of Andrew Anderson', {'date': '1684'}), ('A92699', 'VV.G.', {'date': '1661'}), ('A49114', 'J.C.', {'date': '1658'}), ('A02772', 'S. Mierdman', {'date': '1549'}), ('A20088', 'B. Alsop', {'date': '1631'}), ('A20088', 'T. Favvcet', {'date': '1631'}), ('A05995', 'Thomas Snodham', {'date': '1618'}), ('A86319', 'John Clowes', {'date': '1661'}), ('A08562', 'Humfrey Lownes', {'date': '1606'}), ('A47831', 'A. Godbid', {'date': '1680'}), ('A47831', 'J. Playford', {'date': '1680'}), ('A09915', 'Byllynges gate. They be to be solde', {'date': '1550'}), ('A09915', 'S. Mierdman', {'date': '1550'}), ('A49952', 'N. T.', {'date': '1675'}), ('A49952', 'T. R.', {'date': '1675'}), ('A72732', 'Henry Denham', {'date': '1585'}), ('A51625', 'the heir of Andrew Anderson', {'date': '1686'}), ('A54111', 'Andrew Sowle', {'date': '1681'}), ('A64279', 'George Croom', {'date': '1685'}), ('A08952', 'Lavrence Kellam', {'date': '1633'}), ('A66192', 'Charles Bill, and the executrix of Thomas Newcomb', {'date': '1696'}), ('A16754', 'A. Mathewes', {'date': '1624'}), ('A28571', 'R. Bentley', {'date': '1683'}), ('A28571', 'S. Magnes', {'date': '1683'}), ('A38652', 'Leonard Lichfield', {'date': '1645'}), ('A88508', 'Stephen Buckley', {'date': '1643'}), ('A25468', 'E.T.', {'date': '1655'}), ('A87219', 'Robert Austin', {'date': '1644'}), ('B43760', 'William Cademan', {'date': '1678'}), ('A62433', 'R. Wood', {'date': '1665'}), ('B10040', 'M. Simmons', {'date': '1648'}), ('A05288', 'the successors of Giles Thorp', {'date': '1625'}), ('A01900', 'E. Griffin', {'date': '1638'}), ('A83973', 'M. S.', {'date': '1642'}), ('A83973', 'T. P.', {'date': '1642'}), ('A14436', 'Robert Caly', {'date': '1554'}), ('A21495', 'Thomas Berthelet', {'date': '1541'}), ('A19366', 'John VVolfe', {'date': '1590'}), ('A02549', 'Miles Flesher', {'date': '1641'}), ('A74392', 'Edward Husband', {'date': '1650'}), ('A74392', 'John Field', {'date': '1650'}), ('B20149', 'William Bladen', {'date': '1660'}), ('B20149', 'special order', {'date': '1660'}), ('A02139', 'I. Dawson', {'date': '1640'}), ('A89480', 'W.H.', {'date': '1652'}), ('A72417', 'the Society of Stationers', {'date': '1639'}), ('A51306', 'Maximiliaen Graet', {'date': '1656'}), ('A70611', 'B. Griffin', {'date': '1672'}), ('A70611', 'S.', {'date': '1672'}), ('A66179', 'Charles Bill, and the executrix of Thomas Newcomb', {'date': '1696'}), ('A44930', 'Henry Hall', {'date': '1657'}), ('A93924', 'Leonard Lichfield', {'date': '1646'}), ('A06937', 'George Purslowe', {'date': '1625'}), ('A17694', 'Thomas Dawson', {'date': '1579'}), ('A44221', 'R. Tayler', {'date': '1692'}), ('A08104', 'the widowe & heires of the deceased Hillebrand Iacobs van Wouw, ordinarie', {'date': '1631'}), ('B12866', 'Bonham Norton', {'date': '1623'}), ('B12866', 'John Bill', {'date': '1623'}), ('A46491', 'Charles Bill', {'date': '1688'}), ('A46491', 'Henry Hills', {'date': '1688'}), ('A46491', 'Thomas Newcomb', {'date': '1688'}), ('A31965', 'Leonard Lichfield', {'date': '1644'}), ('A05217', 'the widdow of Mark Wyon', {'date': '1635'}), ('A69179', 'William Harford', {'date': '1555'}), ('A08152', 'Edward Allde', {'date': '1622'}), ('A10541', 'Reynold Wolfe.', {'date': '1551'}), ('A71253', 'Thomas Roycroft', {'date': '1663'}), ('B05320', 'the heir of Andrew Anderson', {'date': '1685'}), ('A46983', 'Henry Hills', {'date': '1687'}), ('A87229', 'S.D.', {'date': '1661'}), ('A52628', 'the sufferers themselves, from Newgate Prison', {'date': '1683'}), ('A20739', 'Thomas Snodham', {'date': '1612'}), ('B03957', 'J.F.', {'date': '1652'}), ('A06365', 'William Stansby', {'date': '1617'}), ('A89563', 'Richard Cotes', {'date': '1646'}), ('A81239', 'Ruth Raworth', {'date': '1646'}), ('A01066', 'Thomas Creede', {'date': '1615'}), ('A18960', 'Felix Kyngston', {'date': '1615'}), ('A14918', 'Valentine Simmes', {'date': '1601'}), ('A08764', 'Felix Kyngston', {'date': '1622'}), ('A43008', 'J. H.', {'date': '1663'}), ('A48803', 'E. Alsop', {'date': '1653'}), ('A93913', 'R.', {'date': '1652'}), ('A93913', 'W. Leybourn', {'date': '1652'}), ('A58614', 'Evan Tyler', {'date': '1650'}), ('A08277', 'John Haviland', {'date': '1624'}), ('A60283', 'the heir of Andrew Anderson', {'date': '1688'}), ('A39006', 'J. Conyers', {'date': '1690'}), ('A71345', 'Thomas Newcomb', {'date': None}), ('A22015', 'Robert Barker', {'date': '1605'}), ('A13415', 'Bernard Alsop', {'date': '1630'}), ('A13415', 'Elizabeth Allde', {'date': '1630'}), ('A13415', 'John Beale', {'date': '1630'}), ('A13415', 'Thomas Fawcet', {'date': '1630'}), ('A50988', 'Joseph Ray', {'date': '1690'}), ('A03691', 'Henry VVykes', {'date': '1566'}), ('A68126', 'John Beale', {'date': '1625'}), ('A68126', 'John Haviland', {'date': '1625'}), ('A68126', 'Miles Flesher', {'date': '1625'}), ('A07776', 'I. Dawson', {'date': '1626'}), ('A35710', 'the heir of Andrew Anderson', {'date': '1688'}), ('A80521', 'the Haukers', {'date': '1659'}), ('A75049', 'John Crook', {'date': '1663'}), ('A54395', 'Cornelius Woons', {'date': '1649'}), ('B05342', 'the heir of Andrew Anderson', {'date': '1688'}), ('A73841', 'Felix Kyngston', {'date': '1608'}), ('A80526', 'John Reid', {'date': '1700'}), ('A30426', 'John Reid', {'date': '1689'}), ('B21824', 'James Flesher', {'date': '1669'}), ('A87399', 'Robert Wood', {'date': '1651'}), ('A49991', 'J.F.', {'date': '1664'}), ('A16354', 'Laurence Kellam', {'date': '1610'}), ('B10265', 'M.J.', {'date': '1670'}), ('B10265', 'S.G.', {'date': '1670'}), ('A82121', 'Edward Husband', {'date': '1650'}), ('A82121', 'John Field', {'date': '1650'}), ('A15010', 'G. Miller', {'date': '1637'}), ('A03800', 'I. Beale', {'date': '1615'}), ('A09117', 'Richard Jones', {'date': '1591'}), ('B07200', 'Felix Kyngston', {'date': '1630'}), ('A83876', 'Robert Barker', {'date': '1641'}), ('A02166', 'J. Danter', {'date': '1592'}), ('A50162', 'R. Pierce', {'date': '1689'}), ('A11810', 'M. Flesher', {'date': '1628'}), ('B12626', 'Thomas Berthelet', {'date': '1544'}), ('A48626', 'H.H.', {'date': '1681'}), ('B07676', 'Miles Flesher', {'date': '1624'}), ('A17247', 'William Stansby', {'date': '1616'}), ('A90280', 'Henry Hall', {'date': '1659'}), ('A93422', 'Leonard Leichfield', {'date': '1643'}), ('A53074', 'Thomas Milbourn', {'date': '1667'}), ('A19977', 'E. Allde', {'date': '1608'}), ('A16087', 'Richarde Bankes', {'date': '1540'}), ('A08224', 'N. Bohmberg', {'date': '1574'}), ('A17343', 'T. Harper', {'date': '1628'}), ('A74539', 'Henry Hills', {'date': '1654'}), ('A74539', 'William du-Gard', {'date': '1654'}), ('A85207', 'R.I.', {'date': '1652'}), ('A61154', 'Thomas Newcomb', {'date': '1685'}), ('A68918', 'Richard Bradocke', {'date': '1581'}), ('A39122', 'Claude Francois Tulliet', {'date': '1684'}), ('A46543', 'the heir of Andrew Anderson', {'date': '1686'}), ('A56658', 'R.W.', {'date': '1660'}), ('A74443', 'John Field', {'date': '1652'}), ('A92853', 'R. Bishop', {'date': '1643'}), ('A20093', 'Robert Raworth', {'date': '1636'}), ('A46148', 'John Crooke', {'date': '1667'}), ('B28766', 'H. Hills', {'date': '1694'}), ('A44236', 'W. Godbid', {'date': '1677'}), ('A41485', 'T. Cotes', {'date': '1641'}), ('A51248', 'Matthew Simmons', {'date': '1650'}), ('A21613', 'John Cawood', {'date': '1560'}), ('A21613', 'Rycharde Iugge', {'date': '1560'}), ('A03067', 'Ioannes Charlewood pro Roberto VVallie', {'date': '1587'}), ('A36504', 'J. Dover', {'date': '1665'}), ('A48521', 'Andrew Sowle', {'date': '1688'}), ('A60704', 'J. Heptinstall', {'date': '1695'}), ('A05093', 'Christopher Barker', {'date': '1576'}), ('A92544', 'Evan Tyler', {'date': '1647'}), ('A05034', 'John Day', {'date': '1548'}), ('A05034', 'William Seres', {'date': '1548'}), ('B14778', 'T. Creede', {'date': '1604'}), ('A32612', 'Christopher Barker', {'date': '1666'}), ('A32612', 'John Bill', {'date': '1666'}), ('A74185', 'Roger Norton', {'date': '1660'}), ('B05734', 'the heir of Andrew Anderson', {'date': '1686'}), ('A37413', 'J.N.', {'date': '1699'}), ('B20680', 'Jane Coe', {'date': '1644'}), ('A61951', 'T. Newcomb', {'date': '1676'}), ('B19839', 'Henry Hills', {'date': '1683'}), ('B19839', 'Thomas Newcomb', {'date': '1683'}), ('A49227', 'George Croom', {'date': '1683'}), ('B05635', 'the heirs and successors of Andrew Anderson', {'date': '1697'}), ('A15998', 'Gabriel Simson', {'date': '1596'}), ('A15998', 'Richard Field', {'date': '1596'}), ('A03416', 'William Stansby', {'date': '1615'}), ('A07811', 'the English secret press', {'date': '1606'}), ('A78490', 'Leonard Lichfield, according to the copy printed last week', {'date': '1645'}), ('A34637', 'A.M.', {'date': '1674'}), ('A50354', 'T.H.', {'date': '1641'}), ('A93807', 'E.G.', {'date': '1648'}), ('A02181', 'Richard Bradocke', {'date': '1598'}), ('A00686', 'Henry Midleton', {'date': '1584'}), ('A20958', 'G. Miller', {'date': '1630'}), ('A14203', 'I. Dawson', {'date': '1638'}), ('A14159', 'Thomam brumenium', {'date': '1573'}), ('B12882', 'Bonham Norton', {'date': '1624'}), ('B12882', 'John Bill', {'date': '1624'}), ('A94268', 'T. Sowle', {'date': '1696'}), ('A61219', 'E. Whitlock', {'date': '1697'}), ('A02057', 'Augustine Mathewes?', {'date': '1636'}), ('A34675', 'H. Hall', {'date': '1658'}), ('A06448', 'Iames Robarts', {'date': '1598'}), ('A91808', 'W.W.', {'date': '1649'}), ('B05000', 'Nathaniel Thompson', {'date': '1682'}), ('A21700', 'John Cawood', {'date': '1618'}), ('A21700', 'Richard Iugge', {'date': '1618'}), ('A22608', 'R. Young', {'date': '1635'}), ('A10285', 'John Trundle', {'date': '1614'}), ('A83652', 'Robert Barker', {'date': '1641'}), ('A97093', 'Thomas Paine', {'date': '1646'}), ('A43532', 'Edward Jones', {'date': '1693'}), ('A68204', 'T. Creede', {'date': '1603'}), ('A08161', 'Edward Allde', {'date': '1622'}), ('A08161', 'William Iones', {'date': '1622'}), ('A94168', 'R.W.', {'date': '1651'}), ('A72836', 'J. White?', {'date': '1618'}), ('A16566', 'R. Raworth', {'date': '1607'}), ('A24989', 'the heir of Andrew Anderson', {'date': '1690'}), ('A46538', 'the heir of Andrew Anderson', {'date': '1688'}), ('A00519', 'E. Allde?', {'date': '1630'}), ('A20858', 'the printers to the Vniversitie', {'date': '1636'}), ('A74431', 'John Field', {'date': '1651'}), ('A26565', 'R.W.', {'date': '1651'}), ('A06147', 'R. Warde', {'date': '1584'}), ('A46165', 'Benjamin Took', {'date': '1683'}), ('A46165', 'John Crook', {'date': '1683'}), ('A88451', 'James Flesher', {'date': '1659'}), ('A39007', 'Laurence Doppersii', {'date': '1689'}), ('A34516', 'Thomas Paine', {'date': '1641'}), ('A42310', 'Iames Brown', {'date': '1655'}), ('A85487', 'G. M.', {'date': '1642'}), ('A02399', 'Edwarde Whitchurche', {'date': '1547'}), ('A57688', '1680. &', {'date': '1680'}), ('A57688', 'B. Harris', {'date': '1680'}), ('A57688', 'Goddæus', {'date': '1680'}), ('A57688', 'June 7. N. Stylo', {'date': '1680'}), ('A54914', 'Gabriel Targa', {'date': '1665'}), ('A85108', 'R.I.', {'date': '1653'}), ('A19742', 'I. Wolfe', {'date': '1588'}), ('A30978', 'H. Hills', {'date': '1679'}), ('A30978', 'Thomas Newcomb', {'date': '1679'}), ('B08027', 'Roger Warde', {'date': '1585'}), ('A07619', 'John Budge', {'date': '1612'}), ('A07619', 'Simon Stafford', {'date': '1612'}), ('A77458', 'J. Grismond', {'date': '1665'}), ('A03783', 'Nicholas Okes', {'date': '1628'}), ('A14233', 'Robert Young', {'date': '1631'}), ('B14992', 'E. Allde', {'date': '1622'}), ('A01718', 'T. Orwin', {'date': '1587'}), ('A42545', 'A.M.', {'date': '1663'}), ('A08305', 'Richard Iones', {'date': '1585'}), ('A01255', 'John Windet', {'date': '1597'}), ('B01322', 'W. Davis', {'date': '1689'}), ('A22026', 'Robert Barker', {'date': '1606'}), ('A37074', 'J.C.', {'date': '1650'}), ('A80847', 'E. Cotes', {'date': '1657'}), ('A01078', 'John Bill', {'date': '1619'}), ('A18020', 'Thomas Orwin', {'date': '1588'}), ('A33332', 'A.M.', {'date': '1660'}), ('B02285', 'Casparus Loots-man', {'date': '1688'}), ('A25231', 'R. Roberts', {'date': '1686'}), ('A76124', 'H. Hall', {'date': '1643'}), ('A66271', 'Charles Bill, and the executrix of Thomas Newcomb', {'date': '1691'}), ('A70871', 'L. Parry', {'date': '1659'}), ('A70871', 'T. Childe', {'date': '1659'}), ('A65341', 'John Lock', {'date': '1673'}), ('A22048', 'the Deputies of Robert Barker', {'date': '1608'}), ('A29389', 'Thomas Roycroft', {'date': '1659'}), ('B08993', 'T. Soule', {'date': '1693'}), ('B26215', 'G.W.', {'date': '1642'}), ('A76531', 'Joseph Moxon', {'date': '1657'}), ('A00810', 'J. Roberts', {'date': '1605'}), ('A12091', 'John Beale', {'date': '1612'}), ('A08214', 'N. Bohmberg', {'date': '1575'}), ('A28366', 'Benjamin Griffing', {'date': '1670'}), ('A28366', 'Sarah Griffing', {'date': '1670'}), ('A01524', 'John Haviland', {'date': '1626'}), ('A65287', 'E.M.', {'date': '1654'}), ('A65287', 'T.R.', {'date': '1654'}), ('A27822', 'R. Everingham', {'date': '1685'}), ('A16657', 'John Haviland', {'date': '1630'}), ('A95629', 'Henry Ribotteau Marchands libraires, dans Salisbury-Exchange dans le Strand', {'date': '1695'}), ('A95629', 'la Veusue Marat', {'date': '1695'}), ('A54489', 'J. Heptinstall', {'date': '1698'}), ('B05193', 'the heir of Andrew Anderson', {'date': '1693'}), ('B03891', 'L. Miller', {'date': '1666'}), ('A07197', 'Nat. Butter', {'date': '1633'}), ('A21976', 'Robert Barker', {'date': '1603'}), ('A63217', 'John Everingham', {'date': '1696'}), ('A04643', 'G. Eld', {'date': '1608'}), ('A80110', 'Robert Ibbitson', {'date': '1648'}), ('A87488', 'Charles Bill', {'date': '1688'}), ('A87488', 'Henry Hills', {'date': '1688'}), ('A87488', 'Thomas Newcomb', {'date': '1688'}), ('A77148', 'F: Neile', {'date': '1648'}), ('A80959', 'Henry Hil?s', {'date': '1657'}), ('A80959', 'John Field', {'date': '1657'}), ('A10777', 'the heirs of W. Rihel', {'date': '1556'}), ('A73774', 'W. de Worde', {'date': '1506'}), ('A17731', 'C. Boscard', {'date': '1626'}), ('A50763', 'the advice of some', {'date': '1699'}), ('A30820', 'William Godbid', {'date': '1658'}), ('A61153', 'G. Dawson', {'date': '1649'}), ('B08415', 'Thomas Moore', {'date': '1691'}), ('A42187', 'Jonathan Edwin', {'date': '1672'}), ('A88543', 'E.G.', {'date': '1650'}), ('B03334', 'Henry Hills', {'date': '1700'}), ('A33270', 'E.T.', {'date': '1670'}), ('A33270', 'R.H.', {'date': '1670'}), ('A81234', 'E.M.', {'date': '1655'}), ('A81234', 'T.R.', {'date': '1655'}), ('A32351', 'Christopher Barker', {'date': None}), ('A32351', 'Henry Hills', {'date': None}), ('A32351', 'John Bill', {'date': None}), ('A32351', 'Thomas Newcomb', {'date': None}), ('A27017', 'Rob. White', {'date': '1650'}), ('A76756', 'Peter Cole', {'date': '1653'}), ('A51253', 'R. Ibbitson', {'date': '1655'}), ('A14268', 'John Harison 3', {'date': '1600'}), ('A07348', 'John Haviland', {'date': '1627'}), ('B18887', 'T. Sowle', {'date': '1696'}), ('A30594', 'T. Paine', {'date': '1641'}), ('A11249', 'G. Eld', {'date': '1606'}), ('A87552', 'A.M.', {'date': '1648'}), ('A66559', 'W. Hall', {'date': '1660'}), ('A02476', 'William How', {'date': '1575'}), ('A38595', 'Ruth Raworth', {'date': '1648'}), ('A39736', 'T. Hodgkin', {'date': '1694'}), ('A96498', 'I.N.', {'date': '1641'}), ('A32876', 'W.G.', {'date': '1673'}), ('A42741', 'T.M.', {'date': '1676'}), ('A72564', 'assignationem Francisci Florence', {'date': '1585'}), ('A56313', 'T. Sowle', {'date': '1696'}), ('B00158', 'R.Blower.', {'date': '1615'}), ('A03549', 'John Cawood', {'date': '1571'}), ('A03549', 'Richarde Iugge', {'date': '1571'}), ('A37242', 'M.S.', {'date': '1653'}), ('A93027', 'the heir of Andrew Anderson', {'date': '1683'}), ('A24911', 'Edward Jones', {'date': '1695'}), ('A49562', 'T.R.', {'date': '1660'}), ('A16800', 'P. Short', {'date': '1600'}), ('A93868', 'E.M.', {'date': '1658'}), ('A93868', 'T.R.', {'date': '1658'}), ('A83931', 'Robert Barker', {'date': '1641'}), ('A66337', 'Charles Bill', {'date': '1689'}), ('A66337', 'Thomas Newcomb', {'date': '1689'}), ('A52450', 'A.N.', {'date': '1642'}), ('A69164', 'Augustine Mathewes', {'date': '1624'}), ('A87990', 'John Field', {'date': '1659'}), ('A66316', 'Charles Bill', {'date': '1690'}), ('A66316', 'Thomas Newcomb', {'date': '1690'}), ('A08247', 'Edward Allde', {'date': '1612'}), ('A13423', 'Nicholas Okes?', {'date': '1636'}), ('A19812', 'G. Eld', {'date': '1605'}), ('A21773', 'Richarde Iugge', {'date': '1576'}), ('B01962', 'E. Whitlock', {'date': '1696'}), ('A04083', 'the Society of Stationers', {'date': '1635'}), ('B04753', 'John Reid', {'date': '1698'}), ('B05377', 'order of his Majesties Privy Council', {'date': '1689'}), ('B05377', 'the heir of Andrew Anderson', {'date': '1689'}), ('A92255', 'Samuel Roycroft', {'date': '1690'}), ('B05513', 'the heirs and successors of Andrew Anderson', {'date': '1697'}), ('A63183', 'James Flesher', {'date': '1661'}), ('B05599', 'Evan Tyler', {'date': '1665'}), ('A20101', 'Nicholas Okes', {'date': '1607'}), ('A86450', 'Matthew Simmons', {'date': '1651'}), ('A19957', 'John Wolfe', {'date': '1587'}), ('A77115', 'J.C.', {'date': '1669'}), ('A94538', 'Robert Barker', {'date': '1642'}), ('A46182', 'Benjamin Took', {'date': '1679'}), ('A46182', 'John Crook', {'date': '1679'}), ('A19368', 'Richard Field', {'date': '1602'}), ('A04027', 'Thomas Crolwell', {'date': '1570'}), ('B15101', 'John Allde', {'date': '1580'}), ('A97248', 'Thomas Milbourn', {'date': '1665'}), ('A97248', 'the same Author', {'date': '1665'}), ('A49293', 'S. Griffin', {'date': '1660'}), ('A68445', 'William Jaggard', {'date': '1610'}), ('A84452', 'Henry Hills', {'date': '1659'}), ('A84452', 'John Field', {'date': '1659'}), ('A02092', 'A. Ieffes', {'date': '1592'}), ('B19173', 'Leonard Lichfield', {'date': '1643'}), ('A12317', 'W: Stansby', {'date': '1621'}), ('B02944', 'the heir of Andrew Anderson', {'date': '1685'}), ('A81371', 'Robert Ibbitson', {'date': '1647'}), ('A56431', "T.M. pour Robert Wilson, et se vendent ʹa la boutique ʹa l'enseigne de l'Aigle noir, au rue appellee St. Martins Le grand", {'date': '1660'}), ('A32054', 'Robert Barker', {'date': '1641'}), ('B02115', 'Andrew Anderson', {'date': '1674'}), ('A11915', 'Richard Tottyll', {'date': '1559'}), ('A09001', 'Thomas Purfoote', {'date': '1587'}), ('A88533', 'Mathias Symmons', {'date': '1643'}), ('A88533', 'Thomas Paine', {'date': '1643'}), ('B22072', 'John Field', {'date': '1659'}), ('A97122', 'J. How', {'date': '1699'}), ('A97030', 'J. Norton', {'date': '1641'}), ('A02826', 'John Dawson', {'date': '1622'}), ('A20673', '. English secret press', {'date': '1619'}), ('A20673', 'Iaques Foüet', {'date': '1619'}), ('B08086', 'Miles Flesher', {'date': '1627'}), ('A10062', 'Richard Bradocke', {'date': '1599'}), ('A79592', 'John Field', {'date': '1668'}), ('A82493', 'John Macock', {'date': '1660'}), ('A82493', 'John Streater', {'date': '1660'}), ('A74518', 'Henry Hills', {'date': '1654'}), ('A74518', 'William du-Gard', {'date': '1654'}), ('A55017', 'J. Leake', {'date': '1685'}), ('A00426', 'George Miller', {'date': '1639'}), ('A58455', 'Thomas Newcomb', {'date': '1673'}), ('A19670', 'Henry Denham', {'date': '1569'}), ('A78515', 'Henry Hall for H. Curteyne', {'date': '1644'}), ('A66107', 'S. Green upon', {'date': '1681'}), ('A60140', 'J. D.', {'date': '1694'}), ('A34666', 'T.C.', {'date': '1654'}), ('A21699', 'John Cawood', {'date': '1568'}), ('A21699', 'Richarde Iugge', {'date': '1568'}), ('A16036', 'Edwarde Whitchurche', {'date': '1548'}), ('A02183', 'T. Snodham', {'date': '1612'}), ('A55414', 'M.S.', {'date': '1681'}), ('A45991', 'Andrew Crook', {'date': '1697'}), ('A85896', 'T.W.', {'date': '1646'}), ('A92691', 'Robert White', {'date': '1648'}), ('A38929', 'T.B.', {'date': '1689'}), ('A48974', 'Andrew Clark', {'date': '1671'}), ('A09292', 'Robert Waldegrave', {'date': '1588'}), ('A78437', 'T.H.', {'date': '1645'}), ('A89085', 'J. Macock', {'date': '1661'}), ('A58034', 'J.D.', {'date': '1677'}), ('A01813', 'Ioseph Barnes', {'date': '1602'}), ('A03733', 'R. Oulton', {'date': '1640'}), ('A38344', 'Robert Barkerand', {'date': '1641'}), ('A12094', 'William Hall', {'date': '1612'}), ('A12094', 'William Stansby', {'date': '1612'}), ('A96120', 'N.T.', {'date': '1687'}), ('A09044', 'Thomas Purfoot', {'date': '1597'}), ('A89442', 'J.M.', {'date': '1645'}), ('A09447', 'Ioannis Legat.', {'date': '1604'}), ('A67524', 'J. How', {'date': '1700'}), ('A19232', 'John Windet', {'date': '1599'}), ('B05212', 'Evan Tyler', {'date': '1643'}), ('A62778', 'A Godbid', {'date': '1681'}), ('A62778', 'J. Playford', {'date': '1681'}), ('A27303', 'R.H.', {'date': '1687'}), ('A13283', 'I. Norton', {'date': '1630'}), ('A02110', 'I. Wolfe', {'date': '1590'}), ('A03080', 'John Dawson', {'date': '1625'}), ('A62455', 'J.M.', {'date': '1659'}), ('A62455', 'T.R.', {'date': '1659'}), ('A77735', 'Francis Leach', {'date': '1650'}), ('B05479', 'Evan Tyler', {'date': '1666'}), ('A12619', 'Ihon Cawood', {'date': '1561'}), ('B21759', 'Henry Hills;', {'date': '1680'}), ('B21759', 'John Bill', {'date': '1680'}), ('B21759', 'Thomas Newcomb', {'date': '1680'}), ('A36233', 'E. Cates', {'date': '1665'}), ('A84082', 'John Clowes', {'date': '1651'}), ('A96991', 'William Godbid', {'date': '1661'}), ('A06368', 'John Beale?', {'date': '1620'}), ('A08820', 'John Legate', {'date': '1605'}), ('A08820', 'Simon Waterson', {'date': '1605'}), ('A67575', 'Leonard Lichfield', {'date': '1654'}), ('A17245', 'Ioseph Barnes', {'date': '1607'}), ('A38323', 'Leonard Lichfield', {'date': '1644'}), ('A55313', 'John Nutt', {'date': '1700'}), ('A45558', 'J. G.', {'date': '1658'}), ('A81033', 'Henry Hills', {'date': '1658'}), ('A81033', 'John Field', {'date': '1658'}), ('A74563', 'Henry Hills', {'date': '1654'}), ('A74563', 'William du-Gard', {'date': '1654'}), ('A48433', 'R. Cotes', {'date': '1643'}), ('A03582', 'E. Allde', {'date': '1603'}), ('A91273', 'L. Parry', {'date': '1660'}), ('A91273', 'T. Childe', {'date': '1660'}), ('A90059', 'E.C.', {'date': '1659'}), ('A87789', 'George Croom', {'date': '1684'}), ('A12958', 'Richard Lant', {'date': '1552'}), ('A66149', 'Charles Bill', {'date': '1689'}), ('A66149', 'Thomas Newcomb', {'date': '1689'}), ('A74511', 'Henry Hills', {'date': '1654'}), ('A74511', 'William du-Gard', {'date': '1654'}), ('A44695', 'S. Bridge', {'date': '1698'}), ('A32377', 'Christopher Barker', {'date': '1661'}), ('A32377', 'John Bill', {'date': '1661'}), ('A35416', 'E.M.', {'date': '1652'}), ('A35416', 'T.R.', {'date': '1652'}), ('A86352', 'M.B.', {'date': '1699'}), ('A21104', 'John Legatt', {'date': '1616'}), ('A58739', 'the heir of Andrew Anderson', {'date': '1683'}), ('A06390', 'John Allde', {'date': '1581'}), ('A11460', 'Miles Flesher', {'date': '1635'}), ('A07529', 'Thomas Purfoot', {'date': '1606'}), ('A01353', 'Edward Allde', {'date': '1587'}), ('A00157', 'A.J.', {'date': '1607'}), ('A00157', 'Edwardum Allde', {'date': '1607'}), ('A59627', 'Thomas Warren', {'date': '1700'}), ('A32366', 'Christopher Barker', {'date': '1663'}), ('A32366', 'John Bill', {'date': '1663'}), ('A13463', 'N.O.', {'date': '1624'}), ('B32611', 'Benjamin Tooke', {'date': '1685'}), ('A22539', 'Robert Barker', {'date': '1631'}), ('A42650', 'R.C.', {'date': '1647'}), ('A45550', 'R.L.', {'date': '1648'}), ('A19281', 'G. Eld', {'date': '1606'}), ('A19281', 'Thomas Purfoot', {'date': '1606'}), ('A33864', 'S.R.', {'date': '1678'}), ('A22052', 'Robert Barker', {'date': '1609'}), ('A88411', 'John Macock', {'date': '1660'}), ('A88411', 'John Streater', {'date': '1660'}), ('A25376', 'A. Sowle', {'date': '1690'}), ('A20579', 'Henry Loë', {'date': '1578'}), ('A20579', 'my Gerard Dewes', {'date': '1578'}), ('A03599', 'T. Badger', {'date': '1640'}), ('A42866', 'J.C.', {'date': '1660'}), ('A66269', 'Charles Bill', {'date': '1690'}), ('A66269', 'Thomas Newcomb', {'date': '1690'}), ('A00439', 'Guilielmum Stansby', {'date': '1625'}), ('A93506', 'Leonard Lichfield', {'date': '1645'}), ('A81028', 'Henry Hills', {'date': '1659'}), ('A81028', 'John Field', {'date': '1659'}), ('A91016', 'George Wells', {'date': '1681'}), ('A23667', 'J.M.', {'date': '1675'}), ('A42789', 'Thomas Warren', {'date': '1699'}), ('A16136', 'Valentine S.', {'date': '1605'}), ('B13003', 'Bonham Norton, and lohn sic Bill', {'date': '1629'}), ('B09481', 'Samuel Green', {'date': '1689'}), ('A13797', 'Felix Kingston', {'date': '1598'}), ('B11202', 'John Charlewood', {'date': '1580'}), ('B11293', 'Thomas Harper', {'date': '1635'}), ('A13582', '& Geor. Bishop', {'date': '1583'}), ('A13582', 'H. Middletonus, pro John Harrisono', {'date': '1583'}), ('A70079', 'J.M.', {'date': '1682'}), ('A59598', 'S.B.', {'date': '1652'}), ('A32392', 'the heir of Andrew Anderson', {'date': '1679'}), ('A20878', 'Andro Hart', {'date': '1616'}), ('B05496', 'Evan Tyler', {'date': '1671'}), ('A15332', 'Thomas Este', {'date': '1598'}), ('A12351', 'John Danter', {'date': '1593'}), ('A95937', 'Leonard Lichfield', {'date': '1644'}), ('A20027', 'E. Short', {'date': '1604'}), ('A44313', 'T.R.', {'date': '1674'}), ('A21293', 'impress.', {'date': '1539'}), ('A39919', 'T.B.', {'date': '1686'}), ('A17689', 'John Daye and Wyllyam Seres', {'date': '1549'}), ('A56797', 'W. Wilson', {'date': '1649'}), ('B24752', 'Andrew Crook', {'date': '1691'}), ('A03096', 'Augustine Mathewes', {'date': '1635'}), ('A21449', 'Robert Barker', {'date': '1633'}), ('A13930', 'Wynkyn de Worde', {'date': '1493'}), ('A09049', 'C. Barker', {'date': '1585'}), ('A54406', 'E.C.', {'date': '1668'}), ('A15435', 'Felix Kingston', {'date': '1613'}), ('A68983', 'G. Eld', {'date': '1618'}), ('A17085', 'E. van der Erve', {'date': '1566'}), ('A03434', 'Hugh Iackson', {'date': '1577'}), ('A86773', 'Richard Cotes', {'date': '1647'}), ('A21888', 'the deputies of Christopher Barker', {'date': '1618'}), ('A58195', 'J.G.', {'date': '1665'}), ('A17693', 'Robert VValdegraue', {'date': '1581'}), ('A18413', 'Valentine Simmes', {'date': '1606'}), ('A47471', 'Andrew Coe', {'date': '1644'}), ('A02593', 'Augustine Mathewes', {'date': '1624'}), ('B43922', 'Evan Tyler', {'date': '1648'}), ('A01582', 'George Eld', {'date': '1618'}), ('B05714', 'the heir of Andrew Anderson', {'date': '1677'}), ('A18639', 'John Wolfe', {'date': '1587'}), ('A22198', 'Bonham Norton', {'date': '1619'}), ('A22198', 'John Bill', {'date': '1619'}), ('A08989', 'Felix Kyngston', {'date': '1631'}), ('A92778', 'E.G.', {'date': '1644'}), ('B25069', 'Andrew Crook', {'date': '1689'}), ('A06521', 'Ludgate.', {'date': '1578'}), ('A06521', 'Thomas Vautroullier', {'date': '1578'}), ('A26448', 'John Shadd', {'date': '1680'}), ('A32490', 'Christopher Barker', {'date': '1662'}), ('A32490', 'John Bill', {'date': '1662'}), ('A28644', 'J.M.', {'date': '1655'}), ('A49714', 'J.C.', {'date': '1673'}), ('B06307', 'Evan Tyler', {'date': '1670'}), ('A40659', 'James Cottrel', {'date': '1652'}), ('A57828', 'Stephen Bulkley', {'date': '1642'}), ('A03321', 'J. Windet', {'date': '1593'}), ('A54678', 'R.A.', {'date': '1646'}), ('A08206', 'J. Windet?', {'date': '1602'}), ('A02565', 'Miles Flesher', {'date': '1628'}), ('A02565', 'William Stansby', {'date': '1628'}), ('A05599', 'John Wreittoun.', {'date': '1633'}), ('A83861', 'R.R.', {'date': '1647'}), ('A87656', 'William Bradford', {'date': '1692'}), ('A70044', 'Samuel Green', {'date': '1672'}), ('A95662', 'R. Cotes', {'date': '1644'}), ('A09040', 'Thomas Creede', {'date': '1615'}), ('A66525', 'Jonathan Robinson', {'date': '1674'}), ('B08452', 'W. Bradford', {'date': '1699'}), ('A33355', 'J. Bradford', {'date': '1697'}), ('A07417', 'Alexander Lacy', {'date': '1566'}), ('A86525', 'G. M.', {'date': '1641'}), ('A26296', 'B.W.', {'date': '1684'}), ('A44201', 'B.A.', {'date': '1641'}), ('A44201', 'T.F.', {'date': '1641'}), ('A12674', 'J. Dawson?', {'date': '1623'}), ('A19490', 'W. White', {'date': '1606'}), ('A46121', 'Benjamin Took', {'date': '1684'}), ('A46166', 'John Crook', {'date': '1668'}), ('B05680', 'the heir of Andrew Anderson', {'date': '1688'}), ('B05291', 'the heirs and successors of Andrew Anderson', {'date': '1694'}), ('A07194', 'Felix Kingston impensis Edwardi Blackmore, ad signum Angeli', {'date': '1638'}), ('A28594', 'Richard Janeway', {'date': '1682'}), ('A13792', 'Edward Allde', {'date': '1615'}), ('B12683', 'Robert Barker', {'date': '1603'}), ('A06013', 'G. Thorp', {'date': '1621'}), ('A03003', 'E. White', {'date': '1589'}), ('A03003', 'I. Wolfe', {'date': '1589'}), ('A09035', 'William Turner', {'date': '1628'}), ('A28043', 'the Assignes of John More', {'date': '1641'}), ('A03451', 'I. Dawson', {'date': '1622'}), ('A88807', 'E.M.', {'date': '1658'}), ('B02045', 'Evan Tyler', {'date': '1663'}), ('A48638', 'F. Collins', {'date': '1700'}), ('A10322', 'George Walters', {'date': '1609'}), ('A19515', 'George Purslowe', {'date': '1619'}), ('A04549', 'John VVindet ', {'date': '1595'}), ('A07146', 'John Day', {'date': '1563'}), ('A38895', 'Elizabeth Mallet', {'date': '1684'}), ('A92028', 'Roger Daniel', {'date': '1651'}), ('A91952', 'E.M.', {'date': '1660'}), ('A91952', 'Thomas Ratcliffe', {'date': '1660'}), ('A37192', 'R.H.', {'date': '1643'}), ('A63570', 'Richard Janeway', {'date': '1680'}), ('A08336', 'John Kingston', {'date': '1571'}), ('A28171', 'R.S.', {'date': '1667'}), ('B04304', 'Evan Tyler', {'date': '1667'}), ('A55647', 'Thomas James', {'date': '1681'}), ('A82258', 'Samuel Broun English', {'date': '1651'}), ('A80604', 'C. Lucas, demeurant dans les Black-Fryers, auprès de la Riviere, vis à vis de la couronne', {'date': '1697'}), ('A02256', 'John VVoolfe', {'date': '1594'}), ('A77667', 'John Davvson', {'date': '1646'}), ('A43453', 'H. Hills', {'date': '1683'}), ('A43453', 'Jun.', {'date': '1683'}), ('A04146', 'John Wolfe', {'date': '1588'}), ('A16265', 'Thomas Godfray. At the coste and charge of dan Robert Saltwode monke of saynt Austens', {'date': '1537'}), ('A57065', 'R.I.', {'date': '1655'}), ('A22281', 'Bonham Norton', {'date': '1622'}), ('A22281', 'John Bill', {'date': '1622'}), ('A22281', 'Printers to the Kings most Excellent Maiestie', {'date': '1622'}), ('A18070', 'W. Stansby', {'date': '1621'}), ('A13493', 'Edward Allde &', {'date': '1612'}), ('A05532', 'Ægidius Diest', {'date': '1565'}), ('A21796', 'Christopher Barker', {'date': '1579'}), ('A19606', 'Thomas Dawson', {'date': '1580'}), ('B22549', 'permission of superiors', {'date': '1646'}), ('A10037', 'I.Dawson', {'date': '1621'}), ('A60881', 'H,. Clark', {'date': '1693'}), ('A23656', 'T.R.', {'date': '1676'}), ('B22778', 'T.F.', {'date': '1664'}), ('A11402', 'R. Field', {'date': '1603'}), ('A94420', 'Thomas Ratcliffe', {'date': '1660'}), ('A80142', 'R.L.', {'date': '1646'}), ('A09092', 'Arnold Hatfield', {'date': '1607'}), ('A06866', 'J. Gough', {'date': '1543'}), ('A06866', 'J. Mayler', {'date': '1543'}), ('A17042', 'John Hauiland', {'date': '1625'}), ('B04829', 'Enoch Prosser', {'date': '1681'}), ('B04829', 'Sold', {'date': '1681'}), ('B04829', 'Thomas Dawks', {'date': '1681'}), ('A74460', 'John Field', {'date': '1652'}), ('B27765', 'William Hall', {'date': '1663'}), ('A01682', 'John Windet', {'date': '1594'}), ('A29861', 'T.H.', {'date': '1646'}), ('A88969', 'Benjamin Billingsly', {'date': '1672'}), ('A88969', 'John Darby', {'date': '1672'}), ('A88969', 'R. Clavel', {'date': '1672'}), ('A28017', 'B.G.', {'date': '1670'}), ('A28017', 'S.G.', {'date': '1670'}), ('A74536', 'Henry Hills', {'date': '1654'}), ('A74536', 'William du-Gard', {'date': '1654'}), ('A63204', 'J. Ray', {'date': '1683'}), ('A84678', 'H. Brugis', {'date': '1660'}), ('A86801', 'Leonard Lichfield', {'date': '1642'}), ('A93917', 'R.H.', {'date': '1641'}), ('A93917', 'T.H.', {'date': '1641'}), ('A34010', 'Thomas Newcomb', {'date': '1685'}), ('A73997', 'Robert Barker', {'date': '1604'}), ('A63552', 'I.L.', {'date': '1641'}), ('A67885', 'Leonard Lichfield', {'date': '1645'}), ('A06993', 'Felix Kingston', {'date': '1598'}), ('A55842', 'Leonard Lichfield', {'date': '1641'}), ('A63766', 'A. Maxwell', {'date': '1672'}), ('B26742', 'order', {'date': '1690'}), ('B26742', 'the heir of Andrew Anderson', {'date': '1690'}), ('A14591', 'F. Kingston', {'date': '1600'}), ('B14963', 'Broyer Johnson corantere to his excellency', {'date': '1621'}), ('A42889', 'T.N.', {'date': '1652'}), ('A39970', 'T. Snowden', {'date': '1684'}), ('B06790', 'J. Bell', {'date': '1656'}), ('A01673', 'Robert de Baudous. 1608. Printed', {'date': '1608'}), ('A81763', 'J.M.', {'date': '1660'}), ('A15481', 'W. Iones', {'date': '1621'}), ('A66451', 'Matthew Simmons', {'date': '1644'}), ('A35297', 'H.H. Jun.', {'date': '1685'}), ('A80189', 'B.A', {'date': '1648'}), ('A45250', 'E. Cotes', {'date': '1659'}), ('A11137', 'Bernard Alsop', {'date': '1618'}), ('A75603', 'E.G.', {'date': '1648'}), ('B03038', 'Christopher Higgins', {'date': '1660'}), ('A26506', 'R.E.', {'date': '1700'}), ('A16364', 'Robert Caly', {'date': '1555'}), ('A90447', 'Matthew Simmons', {'date': '1648'}), ('A02904', 'Adam Islip', {'date': '1601'}), ('B13201', 'Robert Barker', {'date': '1631'}), ('A27246', 'R. Everingham', {'date': '1679'}), ('B09542', 'B. Green', {'date': '1697'}), ('B09542', 'J. Allen', {'date': '1697'}), ('A77642', 'J.C.', {'date': '1653'}), ('A42212', 'W.H.', {'date': '1652'}), ('A93831', 'A. Coe', {'date': '1647'}), ('A74654', 'T. Broad', {'date': '1649'}), ('A25792', 'H. Lloyd', {'date': '1661'}), ('A25792', 'R. Vaughan', {'date': '1661'}), ('A15762', 'John Wolfe', {'date': '1591'}), ('A48656', 'Thomas Newcomb', {'date': '1659'}), ('A05400', 'Henrie Bynneman', {'date': '1575'}), ('A52110', 'J.G.', {'date': '1664'}), ('A74610', 'John Hammond', {'date': '1642'}), ('A74610', 'Mathias Rhodes', {'date': '1642'}), ('A93533', 'J.M.', {'date': '1653'}), ('A14146', 'Jhon daye', {'date': '1547'}), ('A32066', 'L. Lichfield', {'date': '1643'}), ('A17344', 'Leonard Lichfield', {'date': '1636'}), ('A61077', 'R.W.', {'date': '1651'}), ('A09233', 'Richard Ihones', {'date': '1590'}), ('A40628', 'F.C.', {'date': '1700'}), ('A03790', 'Richard Field', {'date': '1615'}), ('A31630', 'John Whitlock', {'date': '1694'}), ('A07489', 'Nicholas Okes ', {'date': '1617'}), ('A17145', 'George Eld', {'date': '1608'}), ('A17145', 'Nicholas Okes', {'date': '1608'}), ('A83896', "Charles Bill, and the executrix of Thomas Newcomb, deceas'd;", {'date': '1699'}), ('A15677', 'G. Eld', {'date': '1613'}), ('A86772', 'E. Griffin.', {'date': '1647'}), ('A02190', 'Elizabeth All-de', {'date': '1634'}), ('A20696', 'Thomas Snodham', {'date': '1610'}), ('A14770', 'London:', {'date': '1633'}), ('A14770', 'Thomas Harper', {'date': '1633'}), ('A14770', 'the Society of Stationers', {'date': '1633'}), ('A10869', 'Joseph Barnes', {'date': '1599'}), ('B05725', 'the heirs and successors of Andrew Anderson', {'date': '1695'}), ('A55387', 'Henry Hall', {'date': '1666'}), ('A04874', 'I. Okes', {'date': '1638'}), ('A46060', 'Peter Cole', {'date': '1645'}), ('A55009', 'N.T.', {'date': '1675'}), ('A55009', 'T.R.', {'date': '1675'}), ('A88073', 'M.B.', {'date': '1645'}), ('A92958', 'T.C.', {'date': '1660'}), ('B03528', 'W. Rawlins', {'date': '1681'}), ('A02715', 'Felix Kyngston', {'date': '1618'}), ('A46731', 'Thomas James', {'date': '1678'}), ('B04688', 'the heir of Andrew Anderson', {'date': '1687'}), ('A54017', 'T. Sowle', {'date': '1696'}), ('A53529', 'the heir of Andrew Anderson', {'date': '1682'}), ('A61485', 'M.S.', {'date': '1662'}), ('B09304', 'Benjamin Tooke', {'date': '1676'}), ('A10796', 'Cantrel Legge', {'date': '1613'}), ('A22377', 'Bonham Norton', {'date': '1625'}), ('A22377', 'John Bill', {'date': '1625'}), ('A83008', 'Robert Barker', {'date': '1641'}), ('A74453', 'John Field', {'date': '1652'}), ('A55728', 'George Croom', {'date': '1681'}), ('A60230', 'Thomas Roycroft', {'date': '1661'}), ('A21281', 'Robert Waldgraue', {'date': '1595'}), ('A47066', 'A.M.', {'date': '1679'}), ('A47066', 'R.R.', {'date': '1679'}), ('A81985', 'M.S.', {'date': '1656'}), ('B32033', 'Andrew Crook', {'date': '1691'}), ('A17219', 'Henrie Bynneman', {'date': '1572'}), ('A47572', 'Moses Bell', {'date': '1648'}), ('A71348', 'Thomas Newcomb', {'date': None}), ('A13576', 'I. Charlewood', {'date': '1592'}), ('A15828', 'Thomas Cotes', {'date': '1637'}), ('A22432', 'Bonham Norton', {'date': '1627'}), ('A22432', 'John Bill', {'date': '1627'}), ('A22432', 'Printers to the Kings most Excellent Maiestie', {'date': '1627'}), ('A08347', 'Augustine Mathewes', {'date': '1628'}), ('A21074', 'Nicholas Okes', {'date': '1608'}), ('A49156', 'W.G.', {'date': '1675'}), ('A67163', 'Benjamin Griffin', {'date': '1697'}), ('A11612', 'T. Creede', {'date': '1604'}), ('B12978', 'Bonham Norton', {'date': '1628'}), ('B12978', 'John Bill', {'date': '1628'}), ('A83451', 'John Field', {'date': '1659'}), ('A81232', 'T.R.', {'date': '1660'}), ('A08442', 'R. Carr', {'date': '1548'}), ('A77677', 'T. Paine', {'date': '1641'}), ('A57377', 'E.M.', {'date': '1648'}), ('A57377', 'T.R.', {'date': '1648'}), ('A04070', 'John Franckton', {'date': '1608'}), ('A13358', 'Peter Short', {'date': '1594'}), ('B00196', 'Andro Hart.', {'date': '1621'}), ('A78192', 'T. Fawcet', {'date': '1660'}), ('A16912', 'John Wolfe', {'date': '1591'}), ('A63536', 'Robert Everingham', {'date': '1690'}), ('A63536', 'Thomas Braddyll', {'date': '1690'}), ('A14466', 'Anthony Scoloker. Dwelling wythout Aldersgate· And Wyllyam Seres', {'date': '1548'}), ('A16308', 'George Eld', {'date': '1610'}), ('A73267', 'Thomas Haueland', {'date': '1610'}), ('A92077', 'W. Godbid', {'date': '1656'}), ('A94711', 'R.I.', {'date': '1648'}), ('B06119', 'Henry Hills', {'date': '1683'}), ('B06119', 'Thomas Newcomb', {'date': '1683'}), ('A01937', 'R. Bishop', {'date': '1639'}), ('A46734', 'I.L.', {'date': '1641'}), ('A39640', 'T. Sawbridge', {'date': '1674'}), ('A69028', 'G.M.', {'date': '1626'}), ('B24020', 'S. Roycroft', {'date': '1679'}), ('A15015', 'T. East', {'date': '1606'}), ('A00237', 'Ioseph Barnes', {'date': '1599'}), ('A34698', 'M.F.', {'date': '1641'}), ('A41387', 'L. Lichfield', {'date': '1677'}), ('A48863', 'Joseph Collier', {'date': '1682'}), ('A37307', 'H.L.', {'date': '1681'}), ('A22042', 'Robert Barker', {'date': '1607'}), ('A41155', 'A. N.', {'date': '1642'}), ('A08176', 'William How', {'date': '1569'}), ('A74974', 'Henry Hall', {'date': '1646'}), ('A37602', 'John Field', {'date': '1653'}), ('B05168', 'Evan Tyler', {'date': '1670'}), ('A67773', 'Henry Cripps', {'date': '1658'}), ('A67773', 'James Crumpand', {'date': '1658'}), ('A96750', 'Richard Cotes', {'date': '1645'}), ('A46702', 'G.D.', {'date': '1649'}), ('A05952', 'E. Griffin', {'date': '1640'}), ('A65782', 'I.R.', {'date': '1641'}), ('A78726', 'Robert Barker', {'date': '1642'}), ('A78726', 'the Assignes of John Bill', {'date': '1642'}), ('A89005', 'L. Lichfield', {'date': '1647'}), ('A17636', 'J. Lambrecht?', {'date': '1553'}), ('A96362', 'S. Griffin', {'date': '1659'}), ('A88433', 'John Macock', {'date': '1650'}), ('A00158', 'Willyam Seres', {'date': '1577'}), ('B14721', 'H. Binneman', {'date': '1574'}), ('A01375', 'William Iones', {'date': '1618'}), ('A41838', 'George Swintoun', {'date': '1669'}), ('A41838', 'James Glen', {'date': '1669'}), ('B02999', 'the heir of Andrew Anderson', {'date': '1685'}), ('A68750', 'R. Field', {'date': '1591'}), ('A10499', 'William Hall', {'date': '1611'}), ('A93033', 'J.G.', {'date': '1655'}), ('A39005', 'W.O.', {'date': None}), ('A59816', 'J.M.', {'date': '1674'}), ('A77456', 'Christopher Higgins', {'date': '1659'}), ('A78621', 'S. Dover', {'date': '1660'}), ('B23303', 'M. Flesher', {'date': '1682'}), ('A84307', 'G. D.', {'date': '1642'}), ('A84307', 'R. O.', {'date': '1642'}), ('A69048', 'Giles Thorp', {'date': '1620'}), ('A04095', 'John Franckton printer and stationer to the Kings Maiestie', {'date': '1612'}), ('A90824', 'T.M.', {'date': '1653'}), ('B03201', 'John Reid', {'date': '1693'}), ('A51475', 'M. Flesher', {'date': '1684'}), ('A46178', 'Benjamin Tooke', {'date': '1677'}), ('A88557', 'the Society of Stationers', {'date': '1690'}), ('A90298', 'J. Macock', {'date': '1680'}), ('A47672', 'W. Godbid', {'date': '1678'}), ('A22224', 'Thomas Purfoot', {'date': '1620'}), ('A32523', 'Christopher Barker', {'date': '1677'}), ('A32523', 'Henry Hills', {'date': '1677'}), ('A32523', 'John Bill', {'date': '1677'}), ('A32523', 'Thomas Newcomb', {'date': '1677'}), ('A62050', 'E.M.', {'date': '1659'}), ('A58583', 'the heir of Andrew Anderson', {'date': '1690'}), ('B05323', 'the heir of Andrew Anderson', {'date': '1688'}), ('A07503', 'William Stansby', {'date': '1619'}), ('A49098', 'E. P.', {'date': '1641'}), ('A08484', 'wynkyn de worde', {'date': '1518'}), ('A83806', 'Robert Barker', {'date': '1642'}), ('A83806', 'the Assignes of John Bill', {'date': '1642'}), ('A12634', 'Iames Roberts', {'date': '1595'}), ('A11139', 'W. Jaggard', {'date': '1606'}), ('B14572', 'Hugh Singleton B. Norton', {'date': '1618'}), ('B14572', 'J. Bill', {'date': '1618'}), ('B06142', 'F.L.', {'date': '1642'}), ('A55395', 'J.M.', {'date': '1673'}), ('B24339', 'H.B.', {'date': '1683'}), ('A08252', 'Thomas Creede', {'date': '1612'}), ('A40515', 'John Field', {'date': '1657'}), ('A12168', 'John Dawson', {'date': '1639'}), ('A65188', 'Robert White', {'date': '1655'}), ('A49759', 'J.R.', {'date': '1690'}), ('A04207', 'Richard Schilders', {'date': '1613'}), ('A49634', 'Elizabeth Mallet', {'date': '1684'}), ('A22066', 'Robert Barker', {'date': '1611'}), ('A54171', 'Andrew Sowle', {'date': '1683'}), ('A60221', 'Francis Clark', {'date': '1683'}), ('A18948', 'the Deputies of Christopher Barker', {'date': '1594'}), ('A76882', 'Thomas Warren.', {'date': '1653'}), ('A08166', 'B. Downes, and', {'date': '1622'}), ('A08166', 'F. Kingston', {'date': '1622'}), ('A03431', 'Robert Caly', {'date': '1555'}), ('A22241', 'John Bill', {'date': '1620'}), ('A90918', 'Thomas Banks', {'date': '1642'}), ('B26241', 'J. Nutt', {'date': '1700'}), ('A22695', 'le deputati de Christophero Barker stampadore della sua excellente Maestá', {'date': '1596'}), ('A52767', 'Jonathan Edwin', {'date': '1677'}), ('B16007', 'William Iones', {'date': '1622'}), ('A16579', 'wyllyam Coplande', {'date': '1559'}), ('A10617', 'H. Lownes', {'date': '1627'}), ('A45000', 'Robert Barkerand', {'date': '1642'}), ('A27373', 'J.C.', {'date': '1675'}), ('A15387', 'William Stansby', {'date': '1625'}), ('A19790', 'Valentine Simmes', {'date': '1597'}), ('A96749', 'James Cottrel.', {'date': '1660'}), ('A23268', 'Felix Kingston', {'date': '1629'}), ('A31338', "Jo'n Bringhurst", {'date': '1683'}), ('B15672', 'Henry Denham', {'date': '1584'}), ('A47928', 'A.C.', {'date': '1670'}), ('A47928', 'E.C.', {'date': '1670'}), ('A56226', 'J. Heptinstall', {'date': '1697'}), ('A11727', 'me Jhone Scott', {'date': '1561'}), ('A19751', 'John Charlewood', {'date': '1587'}), ('A07897', 'R. Bradock', {'date': '1601'}), ('A13222', 'John Dawson', {'date': '1632'}), ('A80622', 'R.C.', {'date': '1646'}), ('A79302', 'Christopher Barker', {'date': '1666'}), ('A79302', 'John Bill', {'date': '1666'}), ('A38765', 'E.T.', {'date': '1655'}), ('B05498', 'the heir of Andrew Anderson', {'date': '1692'}), ('A85933', 'Robert Ibbitson', {'date': '1649'}), ('A73848', 'Augustine. Mathewes.', {'date': '1625'}), ('B12220', 'George Purslowe', {'date': '1616'}), ('A83340', 'John Macock', {'date': '1660'}), ('A83340', 'John Streater', {'date': '1660'}), ('A78992', 'Leonard Lichfield', {'date': '1645'}), ('A12653', 'Thomas Snodham', {'date': '1617'}), ('A48837', 'Thomas Milbourn', {'date': '1671'}), ('A37323', 'Evan Tyler', {'date': '1643'}), ('B16321', 'G.E.', {'date': '1618'}), ('A47339', 'J.H.', {'date': '1692'}), ('A90286', 'H. Hall.', {'date': '1656'}), ('A26356', 'J.R.', {'date': '1679'}), ('A07344', 'M. Flesher', {'date': '1625'}), ('A09875', 'W. Stansby', {'date': '1613'}), ('A04139', 'N. Okes', {'date': '1611'}), ('B03084', 'the heir of Andrew Anderson', {'date': '1688'}), ('A80281', 'Leonard Lichfield', {'date': '1643'}), ('B18376', 'George Croom', {'date': '1690'}), ('B05448', 'the heir of Andrew Anderson', {'date': '1685'}), ('A19691', 'John Bill', {'date': '1620'}), ('A19691', 'Robert Barker', {'date': '1620'}), ('A92680', 'the heir of Andrew Anderson', {'date': '1681'}), ('A53478', 'T.N.', {'date': '1677'}), ('A93124', 'Iames Young', {'date': '1645'}), ('B01370', 'A.C.', {'date': '1671'}), ('B05424', 'the heir of Andrew Anderson', {'date': '1693'}), ('A10594', 'Thomas Purfoot', {'date': '1596'}), ('A79913', 'Jane Coe', {'date': '1646'}), ('A88829', 'R. White', {'date': '1657'}), ('A90514', 'W.B.', {'date': '1654'}), ('A17027', 'Edward Raban', {'date': '1622'}), ('A75514', 'the heir of Andrew Anderson', {'date': '1681'}), ('A21681', 'R. Bourne', {'date': '1592'}), ('A10856', 'J. Windet', {'date': '1609'}), ('A62186', 'Thomas Hodgkin', {'date': '1680'}), ('A32264', 'Christopher Barker', {'date': '1665'}), ('A32264', 'John Bill', {'date': '1665'}), ('A79993', 'J. Macock', {'date': '1651'}), ('B12273', 'H. Lownes', {'date': '1607'}), ('A02753', 'John Windet', {'date': '1599'}), ('A78496', 'Leonard Lichfield', {'date': '1643'}), ('A38528', 'J. Grantham', {'date': '1683'}), ('A67516', 'J. How', {'date': '1700'}), ('A04699', 'the Widow of C. Ruremond', {'date': '1543'}), ('B17316', 'Andrew Crook', {'date': '1691'}), ('A66159', 'Charles Bill', {'date': '1689'}), ('A66159', 'Thomas Newcomb', {'date': '1689'}), ('A48349', 'M.C.', {'date': '1684'}), ('A51121', 'John Field', {'date': '1648'}), ('A29365', 'I. N.', {'date': '1641'}), ('A69332', 'Christopher Barker', {'date': '1580'}), ('A94543', 'Charles Sumptner', {'date': '1650'}), ('A18767', 'Henry Bynneman?:', {'date': '1580'}), ('A18767', 'John Allde', {'date': '1580'}), ('A18767', 'Nicholas Lyng', {'date': '1580'}), ('A50639', 'P.C.', {'date': '1650'}), ('B00958', 'Ihon Cawodde', {'date': '1555'}), ('A01564', 'me Iohan Butler', {'date': '1528'}), ('A37147', 'Henry Hills', {'date': '1651'}), ('A68662', 'William Williamson', {'date': '1574'}), ('A45990', 'Andrew Crook', {'date': '1697'}), ('A12129', 'George Purslowe', {'date': '1632'}), ('B05649', 'the heir of Andrew Anderson', {'date': '1690'}), ('A08715', 'Leonardus Lichfield', {'date': '1635'}), ('A76938', 'R. Badger', {'date': '1642'}), ('A01250', 'G. Eld', {'date': '1623'}), ('A20813', 'Iames Roberts', {'date': '1595'}), ('A73721', 'R. Hodgkinson', {'date': '1640'}), ('A53167', 'John Nutt', {'date': '1699'}), ('A22410', 'Bonham Norton', {'date': '1626'}), ('A22410', 'John Bill', {'date': '1626'}), ('A22410', 'Printers to the Kings most Excellent Maiestie', {'date': '1626'}), ('A18525', 'Wynkyn de Worde', {'date': '1493'}), ('A10153', 'me Wynkyn the Worde', {'date': '1499'}), ('A84475', 'Abel Roper', {'date': '1660'}), ('A84475', 'Thomas Collins', {'date': '1660'}), ('A43638', 'George Larkin', {'date': '1683'}), ('A11015', 'Felix Kyngston', {'date': '1603'}), ('A32826', 'J. Macock', {'date': '1678'}), ('A48400', 'E. Okes', {'date': '1670'}), ('A71359', 'John Redmayne', {'date': '1660'}), ('B04011', 'Christopher Higgins', {'date': '1659'}), ('B20348', 'George Mosman', {'date': '1698'}), ('A66298', 'Charles Bill, and the executrix of Thomas Newcomb', {'date': '1689'}), ('B04143', 'James Flesher', {'date': '1661'}), ('A64558', 'J. Wallis', {'date': '1683'}), ('B06117', 'R.D.', {'date': '1661'}), ('A09524', 'E. Allde', {'date': '1603'}), ('A28311', 'J.C.', {'date': '1653'}), ('A56392', 'Thomas Newborough', {'date': '1700'}), ('A17646', 'Thomas Purfoote', {'date': '1581'}), ('A12937', 'William Iones', {'date': '1632'}), ('A38334', 'Charles Bill', {'date': '1690'}), ('A38334', 'Thomas Newcomb', {'date': '1690'}), ('A61061', 'R.B.', {'date': '1648'}), ('A23606', 'A. Maxwell', {'date': '1681'}), ('A23606', 'R. Roberts', {'date': '1681'}), ('A73805', 'Isaac Iaggard', {'date': '1624'}), ('A91547', 'Matthew Simmons', {'date': '1648'}), ('B25425', 'John Darby', {'date': '1682'}), ('A70978', 'the heir of Andrew Anderson', {'date': '1686'}), ('A95484', 'R. VVood', {'date': '1652'}), ('B12675', 'Robert Barker', {'date': '1603'}), ('A29627', 'J. Moxon', {'date': '1694'}), ('A21915', 'T. East', {'date': '1595'}), ('B05186', 'Evan Tyler', {'date': '1644'}), ('A58886', 'Henry Hills', {'date': '1688'}), ('B15880', 'E. Allde', {'date': '1611'}), ('A07010', 'Iohan Mayler', {'date': '1543'}), ('A01474', 'William Ssansby sic', {'date': '1615'}), ('A84322', 'W. Godbid', {'date': '1659'}), ('A90905', 'R. Wood', {'date': '1651'}), ('A00276', 'Robert Waldegraue', {'date': '1581'}), ('A22126', 'Robert Barker', {'date': '1615'}), ('A52250', 'Neil Simmons', {'date': '1672'}), ('A19070', 'Anne Griffin', {'date': '1636'}), ('B12804', 'Bonham Norton', {'date': '1619'}), ('B12804', 'John Bill', {'date': '1619'}), ('B04358', 'the heir of Andrew Anderson', {'date': '1685'}), ('A14823', '&', {'date': '1590'}), ('A14823', 'Thomas Este, the assigné of William Byrd', {'date': '1590'}), ('A62557', 'M. Flesher', {'date': '1684'}), ('A63095', 'T.M.', {'date': '1677'}), ('B20918', 'James Watson', {'date': '1698'}), ('A37548', 'John Macock', {'date': '1659'}), ('A37548', 'John Streater', {'date': '1659'}), ('A32913', 'D.M.', {'date': '1660'}), ('A00605', 'G. Purslowe', {'date': '1632'}), ('A60712', 'Andrew Sowle', {'date': '1688'}), ('A13850', 'John Lichfield', {'date': '1633'}), ('A15699', 'E. Purslowe?', {'date': '1635'}), ('A49134', 'R. Taylor', {'date': '1690'}), ('A17958', 'S. Stafford', {'date': '1602'}), ('A66511', 'G. Took', {'date': '1683'}), ('A66511', 'J. Crook, to be', {'date': '1683'}), ('A22422', 'Henrie Denham', {'date': '1584'}), ('A58684', 'the heirs of Andrew Anderson', {'date': '1682'}), ('A82792', 'John Field', {'date': '1652'}), ('A20851', 'Iames Roberts', {'date': '1603'}), ('A61629', 'J. H.', {'date': '1697'}), ('A14853', 'G.Purslowe', {'date': '1619'}), ('B03976', 'George Croom', {'date': '1685'}), ('B09486', 'John Foster', {'date': '1678'}), ('A18082', 'Robert Walde-graue', {'date': '1602'}), ('A19566', 'J. Lambrecht', {'date': '1556'}), ('A08153', 'F. Kingston', {'date': '1621'}), ('A42595', 'J. Gain', {'date': '1684'}), ('A02375', 'John VVoolfe', {'date': '1589'}), ('A87973', 'J.C.', {'date': '1653'}), ('A34008', 'John Winter', {'date': '1671'}), ('A39375', 'T. Sowle', {'date': '1699'}), ('A65440', 'Thomas Milbourne', {'date': '1686'}), ('A54540', 'Leonard Lichfield', {'date': '1642'}), ('B13015', 'John Bill', {'date': '1630'}), ('B13015', 'Robert Barker', {'date': '1630'}), ('B05977', 'John Reid, to be', {'date': '1693'}), ('A45087', 'Thomas Newcomb', {'date': '1656'}), ('A14108', 'Peter Short', {'date': '1592'}), ('A24427', 'Robert Sanders', {'date': '1677'}), ('A34075', 'S. Roycroft', {'date': '1682'}), ('A01872', 'E. Purslowe', {'date': '1637'}), ('A69303', 'Thomas Berthelet', {'date': '1544'}), ('A35066', 'the heirs and successors of Andrew Anderson', {'date': '1695'}), ('A13466', 'G. Eld', {'date': '1620'}), ('B24841', 'Andrew Crook', {'date': '1690'}), ('A50541', 'J.G.', {'date': '1656'}), ('A50498', 'A. C.', {'date': '1677'}), ('A05389', 'Rovland Hall', {'date': '1563'}), ('A15491', 'Ioseph Barnes', {'date': '1603'}), ('A15491', 'Simon VVaterson London', {'date': '1603'}), ('A73962', 'Robert Barker', {'date': '1605'}), ('A79739', 'T. Favvcet', {'date': '1641'}), ('A36494', 'Richard Hearn', {'date': '1641'}), ('A86264', 'R.I.', {'date': '1648'}), ('A68609', 'Leonard Lichfield', {'date': '1637'}), ('A10357', 'William Stansby', {'date': '1617'}), ('A74375', 'Edward Husband', {'date': '1650'}), ('A74375', 'John Field', {'date': '1650'}), ('A10668', 'Augustine Mathewes', {'date': '1635'}), ('A10668', 'John Haviland', {'date': '1635'}), ('A46092', 'Benjamin Tooke', {'date': '1678'}), ('A45838', 'H. Hall', {'date': '1648'}), ('A76826', 'Richard Bishop', {'date': '1653'}), ('A95064', 'M.S.', {'date': '1646'}), ('A86890', 'F.L.', {'date': '1654'}), ('A08479', 'Thomas Snodham', {'date': '1619'}), ('A80240', 'T.F.', {'date': '1642'}), ('A13073', 'Thomas Harper', {'date': '1635'}), ('A66732', 'Daniel Major', {'date': '1678'}), ('A31414', 'A.C.', {'date': '1677'}), ('B03532', 'a Society of Stationers', {'date': '1660'}), ('A68350', 'John Day', {'date': '1550'}), ('A68350', 'the litle conduit', {'date': '1550'}), ('A37412', 'D. Maxwell', {'date': '1659'}), ('A86289', 'W. Wilson', {'date': '1660'}), ('A00118', '. Cumpriuilegio ad imprimendum solum.', {'date': '1547'}), ('A22502', 'Bonham Norton', {'date': '1629'}), ('A22502', 'John Bill', {'date': '1629'}), ('A48734', 'J. Macock', {'date': '1671'}), ('A09750', 'John Legat', {'date': '1603'}), ('A09750', 'Simon Waterson', {'date': '1603'}), ('A95674', 'Thomas Milbourn', {'date': '1682'}), ('A88410', 'John Reid', {'date': '1683'}), ('A83795', 'C.A. Dublin', {'date': '1647'}), ('A20168', 'Richard Field', {'date': '1622'}), ('B07665', 'John Norton.', {'date': '1633'}), ('A18769', 'G. Robinson', {'date': '1587'}), ('A96560', "Charles Bill, and the Executrix of Thomas Newcomb, decease'd", {'date': '1696'}), ('B01091', 'M.P.', {'date': '1639'}), ('B00216', 'Simon Stafford', {'date': '1604'}), ('A89794', 'G.D.', {'date': '1642'}), ('A89794', 'R.O.', {'date': '1642'}), ('A50435', 'J. Dawks', {'date': '1698'}), ('A42902', 'Henry Hills', {'date': '1688'}), ('A08364', 'Joseph Barnes', {'date': '1613'}), ('B24650', 'B. Motte', {'date': '1691'}), ('A54569', 'G. Dexter', {'date': '1642'}), ('A54569', 'R. Olton', {'date': '1642'}), ('A11116', 'G.M.', {'date': '1639'}), ('A57259', 'authoryty', {'date': '1645'}), ('A32426', 'Christopher Barker', {'date': '1660'}), ('A32426', 'John Bill', {'date': '1660'}), ('A83216', 'Richard Cotes', {'date': '1643'}), ('B11637', 'Robert Young', {'date': '1638'}), ('A19308', 'Felix Kingston', {'date': '1629'}), ('A53594', 'N. Thompson', {'date': '1672'}), ('A53594', 'T. Ratcliff', {'date': '1672'}), ('A36457', 'T.M.', {'date': '1691'}), ('A21709', 'John Cawood', {'date': '1569'}), ('A21709', 'Richarde Iugge', {'date': '1569'}), ('A26659', 'W. Bentley', {'date': '1649'}), ('A14984', 'G. Purslowe', {'date': '1620'}), ('B02074', 'Evan Tyler', {'date': '1663'}), ('A91515', 'R White', {'date': '1659'}), ('A13398', 'Thomas Godfray', {'date': '1534'}), ('A45056', 'Richard Cotes', {'date': '1647'}), ('A06254', 'William Stansby', {'date': '1625'}), ('A16807', 'Edward Allde', {'date': '1612'}), ('B23602', 'Thomas Snowden', {'date': '1696'}), ('A66381', 'J. Redmayne', {'date': None}), ('A66381', 'Jun.', {'date': None}), ('B07165', 'Iames Short', {'date': '1618'}), ('B07165', 'John Lichfield', {'date': '1618'}), ('A04887', 'Th. Creede', {'date': '1600'}), ('A10033', 'A. Mathewes', {'date': '1619'}), ('B19098', 'Robert Barker', {'date': '1641'}), ('B13085', 'Robert Barker', {'date': '1634'}), ('B05204', 'the heirs and successors of Andrew Anderson', {'date': '1695'}), ('A67757', 'E. Cotes', {'date': '1652'}), ('A02000', 'E. Griffin', {'date': '1640'}), ('A60753', 'Andrew Sowle', {'date': '1689'}), ('A24968', 'John Leake', {'date': '1685'}), ('A69300', 'Thomas Berthelet', {'date': '1538'}), ('A59780', 'R. N.', {'date': '1675'}), ('A56801', 'J.D.', {'date': '1674'}), ('A76090', 'R.W.', {'date': '1647'}), ('A74454', 'John Field', {'date': '1652'}), ('A52612', 'J. Darby', {'date': '1700'}), ('A28988', 'T.N.', {'date': '1678'}), ('A72164', 'T.S.', {'date': '1614'}), ('A00648', 'G. Eld', {'date': '1615'}), ('B05183', 'the heir of Andrew Anderson', {'date': '1687'}), ('B24796', 'Benjamin Tooke', {'date': '1685'}), ('A84524', 'Henry Twyford', {'date': '1667'}), ('A84524', 'James Flesher', {'date': '1667'}), ('A84524', 'John Streater', {'date': '1667'}), ('A64730', 'S. Roycroft', {'date': '1682'}), ('A32873', 'T.N.', {'date': '1652'}), ('A15396', 'John Legat', {'date': '1602'}), ('A29133', 'A.M.', {'date': '1659'}), ('A72276', 'Anthony scoloker. Dwellyng', {'date': '1548'}), ('A10320', 'Giles Thorp', {'date': '1609'}), ('A10320', 'Jodocus Hondius', {'date': '1609'}), ('A94919', 'J.R.', {'date': '1645'}), ('A48966', 'Thomas Newcomb', {'date': '1665'}), ('A39600', 'John Harefinch', {'date': '1684'}), ('A02191', 'I. Haviland', {'date': '1628'}), ('A43486', 'T.M.', {'date': '1690'}), ('A04472', 'Ralfe Newberie', {'date': '1584'}), ('A56282', 'Mary Thompson', {'date': '1688'}), ('A43054', 'Henry Hills', {'date': '1683'}), ('A43054', 'Jun.', {'date': '1683'}), ('A58147', 'T. Maxey', {'date': '1656'}), ('A01761', 'Henrie Middleton', {'date': '1581'}), ('A14324', 'R. Field', {'date': '1605'}), ('A57178', 'T. Mabb', {'date': '1654'}), ('A80872', 'T.S.', {'date': '1685'}), ('A81185', 'T. Sowle', {'date': '1696'}), ('A01500', 'Iames Roberts', {'date': '1594'}), ('A57539', 'J.C.', {'date': '1659'}), ('A82465', 'Henry Hills', {'date': '1657'}), ('A82465', 'John Field', {'date': '1657'}), ('B01183', 'Edward-Allde', {'date': '1620'}), ('A10732', 'Felix Kyngston', {'date': '1630'}), ('A50530', 'Thomas Roycroft', {'date': '1653'}), ('B02221', 'Successors of Andrew Anderson', {'date': '1699'}), ('B02221', 'the Heirs', {'date': '1699'}), ('A43455', 'Henry Hills', {'date': '1684'}), ('A79930', 'M. Simmons', {'date': '1645'}), ('A06379', 'Henry Sutton', {'date': '1562'}), ('A22228', 'Thomas Purfoot', {'date': '1620'}), ('B11837', 'John Day', {'date': '1561'}), ('A13925', 'me Robert wyer', {'date': '1542'}), ('A96267', 'John Clowes', {'date': '1649'}), ('B26327', 'Henry Hills', {'date': '1686'}), ('A82031', 'Christian Roman', {'date': '1667'}), ('A53344', 'Andrew Crook', {'date': '1685'}), ('A53344', 'Samuel Helsham', {'date': '1685'}), ('A50419', 'Henry Hall', {'date': '1665'}), ('A10491', 'John Haviland', {'date': '1623'}), ('A43776', 'S. Roycroft', {'date': '1683'}), ('A21638', 'John Cawood', {'date': '1562'}), ('A21638', 'Richard Iugge', {'date': '1562'}), ('A72399', 'Iudoci Dooms', {'date': '1627'}), ('A78705', 'Robert Barker', {'date': '1642'}), ('A30293', 'Thomas Brudenell', {'date': '1642'}), ('A08488', 'the Society of Stationers', {'date': '1630'}), ('A86681', 'George Miller', {'date': '1645'}), ('A57655', 'Thomas Newcomb', {'date': '1653'}), ('A05092', 'Richard Field', {'date': '1614'}), ('A61555', 'J.H.', {'date': '1698'}), ('A11090', 'Thomas East', {'date': '1576'}), ('A43779', 'H. Brugis', {'date': '1680'}), ('A14030', 'G. Robinson', {'date': '1585'}), ('A00284', 'Egidius van der Erve', {'date': '1566'}), ('A13956', 'Thomas Raynalde', {'date': '1549'}), ('A29138', 'John Best', {'date': '1663'}), ('A46699', 'A. Lichfield', {'date': '1660'}), ('A46699', 'H. Hall', {'date': '1660'}), ('B02482', 'M.S.', {'date': '1648'}), ('A34261', 'the heir of Andrew Anderson', {'date': '1681'}), ('A30928', 'R.W.', {'date': '1651'}), ('B04748', 'George Larkin', {'date': '1687'}), ('A45933', 'John Wallis', {'date': '1689'}), ('A03897', 'R. Bishop', {'date': '1637'}), ('A88972', 'Leonard Lichfield', {'date': '1644'}), ('A19952', 'Martin Bogart, vnder the signe of Paris', {'date': '1630'}), ('A49001', 'Andrew Clark', {'date': '1676'}), ('A67902', 'L. Lichfield', {'date': '1652'}), ('A28532', 'M.S.', {'date': '1648'}), ('A57802', 'Thomas Newcomb', {'date': '1662'}), ('B23708', 'Thomas Moore.', {'date': '1690'}), ('A53292', 'Samuel Green', {'date': '1674'}), ('A63953', 'Thomas Ratcliffe', {'date': '1670'}), ('B04845', 'the heir of Andrew Anderson', {'date': '1683'}), ('A37515', 'H.B.', {'date': '1684'}), ('A21705', 'John Cawood', {'date': '1569'}), ('A21705', 'Richard Iugge', {'date': '1569'}), ('A03495', 'William Stansby', {'date': '1626'}), ('B24722', 'Andrew Crook', {'date': '1690'}), ('A61182', 'Edward Jones', {'date': '1693'}), ('A80512', 'Robert Ibbitson', {'date': '1648'}), ('A58708', 'the heir of Andrew Anderson', {'date': '1678'}), ('B04710', 'Evan Tyler', {'date': '1652'}), ('A42751', 'M.S.', {'date': '1642'}), ('A42751', 'T.P.', {'date': '1642'}), ('A08178', 'G. Robinson', {'date': '1586'}), ('B19112', 'Leonard Lichfield', {'date': '1643'}), ('A72473', 'Bernard Alsop', {'date': '1641'}), ('A72473', 'James Dawson', {'date': '1641'}), ('A72473', 'John Beale', {'date': '1641'}), ('A72473', 'Thomas Fawcet', {'date': '1641'}), ('A04482', 'John Day', {'date': '1560'}), ('A18588', 'John Legate', {'date': '1598'}), ('A19182', 'Simon Stafford', {'date': '1602'}), ('A06089', 'John Bill', {'date': '1629'}), ('A06089', 'Robert Barker', {'date': '1629'}), ('A53222', 'the author', {'date': '1671'}), ('A90215', 'Henry Mason', {'date': '1660'}), ('A03392', 'John Haviland', {'date': '1622'}), ('A89448', 'T. Leach', {'date': '1661'}), ('A07078', 'Iames Roberts', {'date': '1598'}), ('A82272', 'J. Flesher', {'date': '1650'}), ('A67146', 'D. Maxwell', {'date': '1662'}), ('A38157', 'J.B.', {'date': '1659'}), ('A22335', 'Bonham Norton', {'date': '1625'}), ('A22335', 'John Bill', {'date': '1625'}), ('A53375', 'Thomas Dawkes', {'date': '1680'}), ('A44606', 'J.H.', {'date': '1661'}), ('A66998', 'M. F.', {'date': '1641'}), ('B14289', 'N. Okes.', {'date': '1609'}), ('A29839', 'Joannes Redmayne, celsissimi principis jacobi ducis eboracensis typographus', {'date': '1684'}), ('A70539', 'F. Collins', {'date': '1684'}), ('A70539', 'J.C.', {'date': '1684'}), ('A86810', 'Richard Cotes', {'date': '1647'}), ('A34002', 'A. Godbid', {'date': '1680'}), ('A34002', 'J. Playford', {'date': '1680'}), ('A77860', 'James Cottrel.', {'date': '1660'}), ('A22077', 'Robert Barker', {'date': '1611'}), ('A94913', 'A. Coe', {'date': '1643'}), ('A94913', 'R. Austin', {'date': '1643'}), ('A01049', 'Elizabeth Purslowe', {'date': '1638'}), ('A18725', 'Thomas Colwell', {'date': '1566'}), ('A67619', 'William Du-Gard', {'date': '1651'}), ('A63676', 'R. Dickinson', {'date': '1663'}), ('A66930', 'J.R.', {'date': '1680'}), ('A78765', 'Leonard Lichfield', {'date': '1643'}), ('A25538', 'Thomas Snowden', {'date': '1680'}), ('A10577', 'Hugh Syngelton', {'date': '1548'}), ('A00969', 'Thomas Cotes', {'date': '1634'}), ('A87385', 'J.C.', {'date': '1651'}), ('A17262', 'G. Eld', {'date': '1606'}), ('A15873', 'John Okes', {'date': '1639'}), ('A01987', 'John Awdeley', {'date': '1570'}), ('A39506', 'Charles Bill, and the executrix of Thomas Newcomb', {'date': '1698'}), ('B05747', 'the heir of Andrew Anderson', {'date': '1681'}), ('A22244', 'Roger Wood', {'date': '1621'}), ('A22244', 'Thomas Symcocke', {'date': '1621'}), ('A42950', 'J. Darby', {'date': '1682'}), ('A18093', 'R. Young', {'date': '1626'}), ('A43219', 'R.H.', {'date': '1665'}), ('A19915', 'Roger Daniell', {'date': '1623'}), ('B05406', 'the heirs and successors of Andrew Anderson', {'date': '1695'}), ('A53304', 'Henry Hall', {'date': '1676'}), ('A69118', 'John Wolfe', {'date': '1583'}), ('A14350', 'Henry Denham', {'date': '1583'}), ('A14350', 'Henry Middleton', {'date': '1583'}), ('B15782', 'W. White', {'date': '1604'}), ('A03960', 'B. Alsop', {'date': '1640'}), ('A03960', 'T. Fawcet', {'date': '1640'}), ('A48430', 'John Crook', {'date': '1661'}), ('A35738', 'Nathaniel Thompson', {'date': '1683'}), ('A02795', 'VV. How', {'date': '1587'}), ('A07526', 'Anne Griffin', {'date': '1635'}), ('B31906', "Charles Bill, and the executrix of Thomas Newcomb, deceas'd", {'date': '1696'}), ('A83084', 'Jo. Raworth.', {'date': '1644'}), ('A83084', 'Richard Cotes', {'date': '1644'}), ('A11070', 'William Stansby', {'date': '1622'}), ('A00003', 'George Eld', {'date': '1623'}), ('A01530', 'Edward Griffin', {'date': '1620'}), ('A74599', 'John Field', {'date': '1659'}), ('A05408', "Eliot's Court Press", {'date': '1624'}), ('B26146', 'Samuel Roycroft', {'date': '1692'}), ('A31715', 'E.W.', {'date': '1689'}), ('A15673', 'T: Purfoot:', {'date': '1612'}), ('A46571', 'Charles Bill', {'date': '1687'}), ('A46571', 'Henry Hills', {'date': '1687'}), ('A46571', 'Thomas Newcomb', {'date': '1687'}), ('A45065', 'George Croom', {'date': '1690'}), ('A93915', 'G.D.', {'date': '1641'}), ('A93915', 'R.O.', {'date': '1641'}), ('B26157', 'Samuel Roycroft', {'date': '1691'}), ('A82528', 'T.N.', {'date': '1650'}), ('A50332', 'Hannah Clark', {'date': '1691'}), ('A77982', 'Peter Cole, printer and', {'date': '1659'}), ('A61536', 'J.H.', {'date': '1695'}), ('A77833', 'Matthew Simmons', {'date': '1646'}), ('A19508', 'T. East', {'date': '1608'}), ('B06649', 'H. Brugis', {'date': '1677'}), ('A14594', 'Augustine Mathewes', {'date': '1631'}), ('A28673', 'W.G.', {'date': '1675'}), ('A46811', 'Roger Daniel', {'date': '1646'}), ('A73954', 'Robert Barker', {'date': '1600'}), ('A14801', 'Miles Flesher', {'date': '1629'}), ('A58743', 'the heir of Andrew Anderson', {'date': '1679'}), ('A74428', 'John Field', {'date': '1651'}), ('A56170', 'L. Parry', {'date': '1660'}), ('A56170', 'T. Child', {'date': '1660'}), ('B05723', 'the heirs and successors of Andrew Anderson', {'date': '1695'}), ('A27991', 'M. Flesher', {'date': '1683'}), ('B05447', 'Evan Tyler', {'date': '1669'}), ('B12853', 'Bonham Norton', {'date': '1622'}), ('B12853', 'John Bill', {'date': '1622'}), ('A19495', 'Thomas Snodham', {'date': '1611'}), ('A31421', 'J.M.', {'date': '1675'}), ('A85665', 'M. Simmons', {'date': '1651'}), ('A20775', 'William Turner', {'date': '1632'}), ('A10129', 'John Wreittoun', {'date': '1625'}), ('A75425', 'Francis Leach', {'date': '1646'}), ('B05169', 'Andrew Anderson', {'date': '1673'}), ('A33543', 'B. Griffin', {'date': '1691'}), ('A09403', 'John Legat', {'date': '1604'}), ('A09403', 'Simon Waterson', {'date': '1604'}), ('A11920', 'B. Alsop', {'date': '1637'}), ('A11920', 'T. Fawcet', {'date': '1637'}), ('A71085', 'J. Raworth', {'date': '1644'}), ('A84659', 'J. Flesher', {'date': '1652'}), ('A66039', 'E.M.', {'date': '1651'}), ('A66039', 'T.R.', {'date': '1651'}), ('A19995', 'E. Griffin', {'date': '1618'}), ('B06512', 'Thomas Dawks, his Majesties British printer', {'date': '1684'}), ('A82413', 'Henry Hills', {'date': '1659'}), ('A82413', 'John Field', {'date': '1659'}), ('A94408', 'J.C.', {'date': '1659'}), ('A08351', 'Edward Allde', {'date': '1624'}), ('A64341', 'F.L.', {'date': '1642'}), ('A69809', 'J.B.', {'date': '1686'}), ('A28514', 'I. L.', {'date': '1644'}), ('B15346', 'E. Allde', {'date': '1595'}), ('A05363', 'John Legate', {'date': '1592'}), ('B05441', 'the heirs and successors of Andrew Anderson', {'date': '1699'}), ('A31627', 'T. Sowle', {'date': '1695'}), ('A83941', 'H. Hall', {'date': '1644'}), ('A61390', 'J. Astwood', {'date': '1688'}), ('A14732', 'Thomas Snodham', {'date': '1618'}), ('A97120', 'T. Favvcet', {'date': '1642'}), ('A66255', 'Charles Bill', {'date': '1689'}), ('A66255', 'Thomas Newcomb', {'date': '1689'}), ('A57133', 'Thomas Ratcliffe', {'date': '1662'}), ('A55880', 'A. Maxwell', {'date': '1674'}), ('A29194', 'John Ramzey', {'date': '1658'}), ('A18267', 'T.S.', {'date': '1609'}), ('A32397', 'Christopher Barker', {'date': '1662'}), ('A32397', 'John Bill', {'date': '1662'}), ('A12178', 'John Norton', {'date': '1637'}), ('A06731', 'T. Badger', {'date': '1640'}), ('A26293', 'J.M.', {'date': '1687'}), ('A49890', 'I. G.', {'date': '1642'}), ('A49890', 'W. E.', {'date': '1642'}), ('A42857', 'A.M.', {'date': '1680'}), ('A42857', 'R.R.', {'date': '1680'}), ('A63141', 'R. Baldwin', {'date': '1689'}), ('A82420', 'John Field', {'date': '1652'}), ('A49423', 'J. Grover', {'date': '1676'}), ('B05355', 'the heirs and successors of Andrew Anderson', {'date': '1696'}), ('A21857', 'the Deputies of Christopher Barker', {'date': '1589'}), ('A40899', 'R.I.', {'date': '1660'}), ('A01924', 'V. Simmes', {'date': '1604'}), ('A01924', 'him to be', {'date': '1604'}), ('A06916', 'I. Charlewood', {'date': '1593'}), ('A27239', 'George Mosman', {'date': '1691'}), ('B25196', 'Andrew Crook', {'date': '1689'}), ('A61880', 'L. Lichfield', {'date': '1656'}), ('A26119', 'Alexander Milbourn', {'date': '1693'}), ('A77134', 'J. Bringhurst', {'date': '1682'}), ('B02013', 'Leonard Lichfield', {'date': '1642'}), ('A74083', 'Thomas Wilson', {'date': '1655'}), ('A02171', 'Roger Ward', {'date': '1589'}), ('A30156', 'the heirs and succeesors sic of Andrew Anderson', {'date': '1698'}), ('A34931', 'T.N.', {'date': '1670'}), ('B21648', 'Henry Hills', {'date': '1686'}), ('A01154', 'Thomas Scarlet', {'date': '1590'}), ('A96139', 'Thomas Simmons', {'date': '1659'}), ('A87073', 'Andrew Coe, according to order', {'date': '1644'}), ('A26210', 'Edward Jones', {'date': '1690'}), ('B05227', 'order of Parliament', {'date': '1690'}), ('B05227', 'the heir of Andrew Anderson', {'date': '1690'}), ('A01503', 'Edward All-de', {'date': '1624'}), ('A03230', 'I. Okes', {'date': '1637'}), ('A02122', 'T. East', {'date': '1584'}), ('A90319', 'A. Lichfield Academiæ Typographus', {'date': '1657'}), ('A32401', 'Henry Hills', {'date': '1680'}), ('A32401', 'John Bill', {'date': '1680'}), ('A32401', 'Thomas Newcomb', {'date': '1680'}), ('A81372', 'Henry Hills', {'date': '1658'}), ('A88614', 'William Hall', {'date': '1659'}), ('A22547', 'Robert Barker', {'date': '1631'}), ('A22547', 'the Assignes of John Bill', {'date': '1631'}), ('B12933', 'Bonham Norton', {'date': '1626'}), ('B12933', 'John Bill', {'date': '1626'}), ('A65545', 'Joseph Ray', {'date': '1682'}), ('A56283', 'Nathaniel Thompson', {'date': '1687'}), ('A09098', 'B. Alsop', {'date': '1631'}), ('A09098', 'T. Fauucet', {'date': '1631'}), ('A84650', 'B.A.', {'date': '1648'}), ('A26806', 'J.D.', {'date': '1696'}), ('A04658', 'Thomas Harper', {'date': '1631'}), ('A32642', 'Christopher Barker', {'date': '1678'}), ('A32642', 'Henry Hills', {'date': '1678'}), ('A32642', 'John Bill', {'date': '1678'}), ('A32642', 'Thomas Newcomb', {'date': '1678'}), ('A12069', 'John Okes', {'date': '1640'}), ('A78191', 'Thomas Snowden', {'date': '1699'}), ('A53656', 'S. Bridge', {'date': '1699'}), ('A35771', 'the order of the Society', {'date': '1665'}), ('A93076', 'R. Cotes', {'date': '1648'}), ('A01405', 'Edward Griffin', {'date': '1618'}), ('A88084', 'J. Clowes', {'date': '1659'}), ('A21521', 'Richard Grafton', {'date': '1550'}), ('A76607', 'J.H.', {'date': '1688'}), ('A06706', 'Roger Ward', {'date': '1585'}), ('A62068', 'Randal Taylor', {'date': '1694'}), ('A68396', 'Simon Stafford', {'date': '1604'}), ('A45384', 'Edward Crowch', {'date': '1664'}), ('A32530', 'Christopher Barker', {'date': '1662'}), ('A32530', 'John Bill', {'date': '1662'}), ('A08987', 'M. Flesher', {'date': '1637'}), ('B05346', 'the heirs and successors of Andrew Anderson ..', {'date': '1698'}), ('A07333', 'John Beale?', {'date': '1635'}), ('A10663', 'John Norton', {'date': '1640'}), ('A10663', 'R. Hearne', {'date': '1640'}), ('A53117', 'L.N.', {'date': '1644'}), ('A05418', 'I. Okes', {'date': '1637'}), ('A05418', 'N.', {'date': '1637'}), ('A46204', 'Benjamin Took', {'date': '1672'}), ('B25038', 'Andrew Crook', {'date': '1689'}), ('B25038', 'Samuel Helsham', {'date': '1689'}), ('A87584', 'John Macock', {'date': '1660'}), ('A78608', 'R.I.', {'date': '1656'}), ('A57997', 'J.D.', {'date': '1687'}), ('A07690', 'w. Rastell', {'date': '1533'}), ('A36614', 'H. Hills', {'date': '1686'}), ('A03598', 'Joseph Barnes', {'date': '1614'}), ('A07481', 'Richarde Jhones', {'date': '1574'}), ('A54227', 'J.P.', {'date': '1685'}), ('A63181', 'J.B.', {'date': '1664'}), ('A51830', 'J. Richardson', {'date': '1695'}), ('A47450', 'William Hall', {'date': '1668'}), ('A21054', 'Edward Griffin', {'date': '1639'}), ('A34182', 'Benjamin Motte', {'date': '1696'}), ('A04486', 'H. Lownes', {'date': '1612'}), ('A85526', 'Leonard Lichfield', {'date': '1643'}), ('A73861', 'Augustine. Mathewes.', {'date': '1631'}), ('A50820', 'Thomas Dawks', {'date': '1677'}), ('A07410', 'Paules Wharfe. These bookes', {'date': '1579'}), ('A07410', 'Thomas East', {'date': '1579'}), ('A90570', 'A.N.', {'date': '1642'}), ('A39936', 'W.B.', {'date': '1659'}), ('A48125', 'W.B.', {'date': '1691'}), ('A30014', 'William Bradford', {'date': '1685'}), ('A41579', 'J.S.', {'date': '1657'}), ('A31012', 'Leonard Lichfield', {'date': '1699'}), ('A72063', 'Thomas Dawson', {'date': '1580'}), ('A42226', 'J. Redmayne Jun.', {'date': '1682'}), ('A10242', 'William Stansby', {'date': '1628'}), ('A50413', 'John Forbes', {'date': '1677'}), ('A84656', 'Matthew Simmons.', {'date': '1647'}), ('A21734', 'John Cawood', {'date': '1570'}), ('A21734', 'Richarde Iugge', {'date': '1570'}), ('A66698', 'H. Clark', {'date': '1687'}), ('A09010', 'Humfrey Lownes', {'date': '1629'}), ('A09010', 'Robert Young', {'date': '1629'}), ('A96827', 'E.P.', {'date': '1649'}), ('A00922', 'Arnold Hatfield', {'date': '1604'}), ('B24735', 'Andrew Crook', {'date': '1691'}), ('A65644', 'N.T.', {'date': '1683'}), ('B05395', 'the heir of Andrew Anderson', {'date': '1662'}), ('A64650', 'Leonard Lichfield', {'date': '1643'}), ('A08793', 'Thomas Petyt', {'date': '1545'}), ('B05569', 'order of his Majesties Privy Council', {'date': '1689'}), ('B05569', 'the heir of Andrew Anderson', {'date': '1689'}), ('A50300', 'T.R.', {'date': '1660'}), ('A26458', 'William Bentley', {'date': '1651'}), ('B15717', '. N. Okes', {'date': '1624'}), ('B15717', 'J. Dawson', {'date': '1624'}), ('A03318', 'me Laurens Andrewe', {'date': '1528'}), ('A19254', 'W. Iones', {'date': '1631'}), ('A26596', 'Thomas Hodgkin', {'date': '1690'}), ('A35730', 'John Raworth', {'date': '1641'}), ('B00218', 'John Hauiland', {'date': '1623'}), ('A40680', 'Roger Norton', {'date': '1653'}), ('B13143', 'Robert Barker', {'date': '1638'}), ('B21346', 'W. Onley', {'date': '1697'}), ('A21711', 'John Cawood', {'date': '1569'}), ('A21711', 'Richarde Iugge', {'date': '1569'}), ('A10829', 'the English College Press', {'date': '1635'}), ('A10845', 'Thomas Harper', {'date': '1631'}), ('A55137', 'Fr. Calverley', {'date': '1681'}), ('A06554', 'W. Caxton', {'date': None}), ('A57347', 'T.W.', {'date': '1650'}), ('A06145', 'Richard Ihones', {'date': '1591'}), ('A64133', 'Thomas Milbourn', {'date': '1672'}), ('A10077', 'Ioseph Barnes', {'date': '1614'}), ('B25324', 'W. Wilson', {'date': '1646'}), ('A74734', 'M.S.', {'date': '1645'}), ('A27411', 'A. Lichfield', {'date': '1660'}), ('A19474', 'John Haviland', {'date': '1623'}), ('A12197', 'M. Flesher', {'date': '1634'}), ('A03755', 'W. How?', {'date': '1581'}), ('B00426', 'Simon Stafford', {'date': '1603'}), ('A18429', 'B. Alsop', {'date': '1635'}), ('A18429', 'T. Fawcet', {'date': '1635'}), ('A15028', 'Henrie Denham', {'date': '1584'}), ('A66830', 'Benjamin Tooke', {'date': '1673'}), ('A91791', 'M. Simmons', {'date': '1649'}), ('A07953', 'T.C.', {'date': '1610'}), ('A87595', 'J. Cottrel', {'date': '1651'}), ('A46086', 'Benjamin Took', {'date': '1672'}), ('A55337', 'Thomas Newcomb', {'date': '1668'}), ('A05358', 'Thomas Vautrollier', {'date': '1587'}), ('A11169', '1628. And', {'date': '1628'}), ('A11169', 'John Lichfield', {'date': '1628'}), ('A13620', 'Thomas Marshe', {'date': '1581'}), ('A49129', 'R. Baldwin', {'date': '1689'}), ('A03239', 'Robert Raworth;', {'date': '1635'}), ('A20838', 'the successors of Giles Thorp', {'date': '1630'}), ('A18595', 'J. Danter', {'date': '1593'}), ('A18595', 'J. Wolfe', {'date': '1593'}), ('A16746', 'W. How', {'date': '1577'}), ('A22841', 'John Cawood', {'date': '1618'}), ('A22841', 'Rycharde Iugge', {'date': '1618'}), ('A01033', 'Richard Schilders', {'date': '1616'}), ('A66391', 'R.D.', {'date': '1641'}), ('A37114', 'J.B.', {'date': '1688'}), ('A00505', 'John Wolfe', {'date': '1591'}), ('A74593', 'W.G.', {'date': None}), ('A64853', 'Thomas Harper', {'date': '1642'}), ('A42418', 'John Nutt', {'date': '1699'}), ('A52409', 'A. Maxey', {'date': '1657'}), ('A03362', 'W. Iaggard', {'date': '1613'}), ('A59968', 'B.G.', {'date': '1678'}), ('A32503', 'Leonard Lichfield', {'date': '1666'}), ('A07673', 'R. Bryson', {'date': '1640'}), ('A09490', 'Joseph Barnes', {'date': '1600'}), ('A19261', 'John Dawson', {'date': '1629'}), ('A89838', 'Giles Calvert', {'date': '1655'}), ('A75159', 'Robert Sanders', {'date': '1681'}), ('A38094', 'John Macock', {'date': '1660'}), ('A38094', 'John Streater', {'date': '1660'}), ('A32040', 'Leonard Lichfield', {'date': '1646'}), ('A04568', 'W. Jaggard?', {'date': '1607'}), ('A70130', 'George Miller', {'date': '1645'}), ('B05122', 'the heir of Andrew Anderson', {'date': '1691'}), ('A87123', 'J. Macock', {'date': '1648'}), ('A22197', 'Thomas Purfoot', {'date': '1619'}), ('A31482', 'Leonard Lichfield', {'date': '1641'}), ('A14038', 'R. Read', {'date': '1603'}), ('A10976', 'I. Beale', {'date': '1624'}), ('A21208', 'Hugh Iackeson', {'date': '1606'}), ('A18370', 'Miles Flesher', {'date': '1638'}), ('A12292', 'Richard Pynson', {'date': '1528'}), ('A55257', 'E. Mallet', {'date': '1685'}), ('B12763', 'Robert Barker', {'date': '1608'}), ('A96993', 'Bennet. Griffin.', {'date': '1672'}), ('A96993', 'Sarah. Griffin.', {'date': '1672'}), ('A32222', 'Christopher Barker', {'date': '1662'}), ('A32222', 'John Bill', {'date': '1662'}), ('A97136', 'R.I.', {'date': '1647'}), ('A33311', 'R.I.', {'date': '1657'}), ('A28173', 'George Swintown', {'date': '1670'}), ('A28173', 'James Glen', {'date': '1670'}), ('A34690', 'M.S.', {'date': '1654'}), ('A87798', 'T: Roycroft', {'date': '1651'}), ('B24516', 'T. Johnson', {'date': '1661'}), ('A93394', 'William Downing', {'date': '1685'}), ('A37362', 'Leonard Lichfield', {'date': '1642'}), ('A92663', 'the heir Andrew Anderson', {'date': '1679'}), ('A35869', 'W.D.', {'date': '1683'}), ('A86326', 'G. Miller', {'date': '1645'}), ('B00963', 'William Stansby.', {'date': '1625'}), ('A70820', 'Edward Jones', {'date': '1688'}), ('B05519', 'Evan Tyler', {'date': '1670'}), ('A42630', 'Thomas Newcomb', {'date': '1670'}), ('B12776', 'the deputies of Robert Barker', {'date': '1609'}), ('A32540', 'Christopher Barker', {'date': '1678'}), ('A32540', 'Henry Hills', {'date': '1678'}), ('A32540', 'John Bill', {'date': '1678'}), ('A32540', 'Thomas Newcomb', {'date': '1678'}), ('A36151', 'Andrew Sowle', {'date': '1687'}), ('A85370', 'I.L.', {'date': '1645'}), ('A28982', 'H. Clark', {'date': '1686'}), ('A15848', 'R. Badger', {'date': '1636'}), ('A18741', 'Ar. Hatfield', {'date': '1596'}), ('A35319', 'J.R.', {'date': '1691'}), ('A09511', 'Edward Griffin', {'date': '1620'}), ('B09696', 'W. H.', {'date': '1650'}), ('A38280', 'Richard Cotes', {'date': '1649'}), ('A26484', 'H. Iones', {'date': '1688'}), ('A73088', 'John Awdeley', {'date': '1566'}), ('A45537', 'Edward Atkins', {'date': '1693'}), ('A45537', 'the Assigns of Richard', {'date': '1693'}), ('A19821', 'Humphrey Lownes', {'date': '1609'}), ('A14886', 'Andreas Hart, bibliopola', {'date': '1613'}), ('A18707', 'John Charlewood', {'date': '1585'}), ('A06133', 'Thomas Purfoot', {'date': '1607'}), ('A14428', 'John Bill', {'date': '1627'}), ('A07323', 'Adam Islip', {'date': '1613'}), ('B11272', 'John Awdely', {'date': '1563'}), ('B11272', 'great Saint Bartelmewes', {'date': '1563'}), ('A21084', 'John Dawson', {'date': '1628'}), ('A40858', 'J. Baker', {'date': '1680'}), ('A01341', 'Thomas Cotes', {'date': '1631'}), ('A13502', 'J. Okes', {'date': '1638'}), ('A15800', 'E. Allde', {'date': '1624'}), ('A20060', 'Nicholas Okes', {'date': '1609'}), ('A88058', 'John Field', {'date': '1649'}), ('A18435', 'John Windet', {'date': '1587'}), ('A00981', 'R. Read', {'date': '1603'}), ('A02702', 'Robert Young', {'date': '1626'}), ('A41431', 'Henry Hills', {'date': '1687'}), ('A61975', 'Richard Hodgkinson', {'date': '1665'}), ('A22340', 'Bonham Norton', {'date': '1625'}), ('A22340', 'John Bill', {'date': '1625'}), ('A22340', 'Printers to the Kings most Excellent Maiestie', {'date': '1625'}), ('A72379', 'Edward Allde?', {'date': '1607'}), ('A46638', 'a Society of Stationers', {'date': '1661'}), ('A90691', 'A.M.', {'date': '1653'}), ('A03700', 'Robert VValde-graue', {'date': '1585'}), ('A19643', 'Valentine Sims', {'date': '1605'}), ('A62923', 'J. D.', {'date': '1680'}), ('A61250', 'the heir of Andrew Anderson', {'date': '1681'}), ('B01823', 'Jun.', {'date': '1700'}), ('B01823', 'Richard Janeway', {'date': '1700'}), ('A55452', 'Thomas Roycroft', {'date': '1656'}), ('B05078', 'the heir of Andrew Anderson', {'date': '1681'}), ('A40870', 'T.N.', {'date': '1675'}), ('A18238', 'H. Lownes', {'date': '1612'}), ('A67580', 'Nathaniel Thompson', {'date': '1687'}), ('A06218', 'John Daye.', {'date': '1568'}), ('A13345', 'John Beale', {'date': '1614'}), ('B08994', 'T. Sowle', {'date': '1699'}), ('A04079', 'John Franckton', {'date': '1615'}), ('A49847', 'Francis Leach', {'date': '1651'}), ('A19611', 'Thomas Harper', {'date': '1639'}), ('A28914', 'M.S.', {'date': '1646'}), ('A31963', 'Leonard Lichfield', {'date': '1643'}), ('A14212', 'Ioseph Barnes', {'date': '1600'}), ('B08255', 'T. Moore', {'date': '1694'}), ('A48361', 'J. Leake', {'date': '1694'}), ('A31445', 'R.Y.', {'date': '1641'}), ('A16598', 'Felix Kingston', {'date': '1600'}), ('B05298', 'the successors of Andrew Anderson', {'date': '1694'}), ('A49508', 'William Du Gard', {'date': '1652'}), ('A00642', 'Richard Schilders', {'date': '1588'}), ('A20408', 'Richard Bradocke', {'date': '1598'}), ('A13325', 'W.I.', {'date': '1625'}), ('A09959', 'Hugh Singleton', {'date': '1578'}), ('A59934', 'M.S.', {'date': '1661'}), ('A86479', 'J. Playford', {'date': '1684'}), ('A15623', 'G. Eld', {'date': '1613'}), ('A66217', "Charles Bill and the executrix of Thomas Newcomb, deceas'd", {'date': '1699'}), ('A07324', 'J. Haviland', {'date': '1630'}), ('A48617', 'J.M.', {'date': '1668'}), ('A32857', 'E. Cotes', {'date': '1664'}), ('A76055', 'E.M.', {'date': '1646'}), ('A76055', 'T.R.', {'date': '1646'}), ('A09587', 'Richarde Johnes', {'date': '1571'}), ('A58624', 'Evan Tyler', {'date': '1643'}), ('A02120', 'J. Roberts', {'date': '1599'}), ('A33777', 'J. Field', {'date': '1661'}), ('A50224', 'Samuel Green', {'date': '1678'}), ('A22844', 'John Bill', {'date': '1630'}), ('A22844', 'Robert Barker', {'date': '1630'}), ('B26584', 'John Gouge', {'date': '1700'}), ('B21793', "Charles Bill, and the executrix of Thomas Newcomb, deceas'd;", {'date': '1696'}), ('A22231', 'John Bill', {'date': '1620'}), ('A22231', 'Robert Barker', {'date': '1620'}), ('A51605', 'E.M.', {'date': '1656'}), ('A51605', 'T.R.', {'date': '1656'}), ('A46102', 'Benjamin Tooke', {'date': '1677'}), ('A19676', 'Ni: Alsope', {'date': '1632'}), ('A19676', 'Roger Daniel', {'date': '1632'}), ('A19676', 'the printers to the Universitie of Cambridge i.e. Thomas Buck', {'date': '1632'}), ('A86708', 'Thomas Roycroft', {'date': '1655'}), ('A45647', 'J. L.', {'date': '1698'}), ('A06146', 'R. Jones', {'date': '1610'}), ('A06146', 'W. White', {'date': '1610'}), ('A74401', 'Edward Husband', {'date': '1650'}), ('A74401', 'John Field', {'date': '1650'}), ('A35421', 'Thomas Buck', {'date': '1651'}), ('A21001', 'G. Eld', {'date': '1612'}), ('A17130', 'the English secret press', {'date': None}), ('A00689', 'Henry Bynneman', {'date': '1578'}), ('A54534', 'Robert Barkerand', {'date': '1642'}), ('A87292', 'G. Miller', {'date': '1644'}), ('A96600', 'John Hammond', {'date': '1643'}), ('A22472', 'W. Iaggard', {'date': '1614'}), ('B05391', 'Evan Tyler', {'date': '1662'}), ('A87975', 'Henry Hills', {'date': '1653'}), ('A16506', 'John Legat', {'date': '1622'}), ('A59354', 'Jeremiah Wilkins', {'date': '1695'}), ('A17270', 'George Miller', {'date': '1625'}), ('A17270', 'Richard Badger ', {'date': '1625'}), ('A59341', 'J. Wilkins', {'date': '1695'}), ('A94242', 'S.G.', {'date': '1653'}), ('B10187', 'Benjamin Took', {'date': '1683'}), ('B10187', 'John Crook', {'date': '1683'}), ('A01333', 'Henrie Middleton', {'date': '1580'}), ('A31143', 'T.W.', {'date': '1654'}), ('B24564', 'George Croom', {'date': '1684'}), ('B00888', 'John Charlewood', {'date': '1576'}), ('A47387', 'T. Mabb', {'date': '1664'}), ('A71316', 'John Wayland', {'date': '1554'}), ('A84618', 'J.C.', {'date': '1646'}), ('B19154', 'Leonard Lichfield', {'date': '1643'}), ('A68944', 'Th. Haueland.', {'date': '1609'}), ('A08893', 'Edward Allde', {'date': '1591'}), ('A09300', 'Robert Waldegrave', {'date': '1589'}), ('A43895', 'Henry Hills', {'date': '1683'}), ('A43895', 'Jun.', {'date': '1683'}), ('A89299', 'J. Cottrel;', {'date': '1654'}), ('B02106', 'Christopher Barker', {'date': '1678'}), ('B02106', 'Henry Hills', {'date': '1678'}), ('B02106', 'John Bill', {'date': '1678'}), ('B02106', 'Thomas Newcomb', {'date': '1678'}), ('A93233', 'Robert Ibbitson', {'date': '1649'}), ('A82374', 'John Field', {'date': '1653'}), ('A63947', 'Christopher Barker', {'date': '1664'}), ('A63947', 'John Bill', {'date': '1664'}), ('A21901', 'the deputies of Christopher Barker', {'date': '1593'}), ('A50972', 'J.M.', {'date': '1682'}), ('B00466', 'Peter Short', {'date': '1594'}), ('A21795', 'Christopher Barker', {'date': '1579'}), ('A85979', 'M.S.', {'date': '1645'}), ('B24741', 'Andrew Crook', {'date': '1691'}), ('A07083', 'John Windet', {'date': '1606'}), ('A66418', 'J.G.', {'date': '1684'}), ('A04324', 'Simon Stafford', {'date': '1607'}), ('A46463', 'Henry Hills', {'date': '1685'}), ('A46463', 'Thomas Newcomb', {'date': '1685'}), ('A46463', "the Assigns of John Bill deceas'd and", {'date': '1685'}), ('A96224', 'G.M.', {'date': '1643'}), ('A84506', "Charles Bill, and the executrix of Thomas Newcomb, deceas'd;", {'date': '1694'}), ('A00392', 'me Robert wyer', {'date': '1533'}), ('A01461', 'J. Lambrecht?', {'date': '1553'}), ('B31923', "Charles Bill, and the executrix of Thomas Newcomb, deceas'd", {'date': '1699'}), ('A72433', 'Robert Barker', {'date': '1616'}), ('A83860', 'M.S.', {'date': '1642'}), ('A83860', 'T.P.', {'date': '1642'}), ('A36172', 'T. Badger', {'date': '1641'}), ('B02938', 'Christopher Higgins', {'date': '1657'}), ('A05085', 'Valentine Simmes', {'date': '1611'}), ('A85878', 'W. Wilson', {'date': '1655'}), ('A50989', 'hares Andrea Andersoni, typographus regius', {'date': '1682'}), ('A28832', 'Leonardus Lichfield', {'date': '1643'}), ('A40282', 'J.B.', {'date': '1684'}), ('A28624', 'L.N.', {'date': '1644'}), ('B13057', 'Robert Barker', {'date': '1632'}), ('A54249', 'Robert Ibbitson', {'date': '1649'}), ('B13111', 'Robert Barker', {'date': '1636'}), ('A47307', 'A.', {'date': '1697'}), ('A47307', 'J. Churchill', {'date': '1697'}), ('A21986', 'Robert Barker', {'date': '1603'}), ('A51363', 'Leonard Lichfield', {'date': '1692'}), ('A63945', 'D. Maxwel', {'date': '1663'}), ('A92397', 'John Field', {'date': '1642'}), ('A92397', 'Luke Norton', {'date': '1642'}), ('A79466', 'J.M.', {'date': '1660'}), ('A02440', 'T. Este', {'date': '1602'}), ('A02440', 'Thomas Creede', {'date': '1602'}), ('A33068', 'Charles Bill', {'date': '1690'}), ('A33068', 'Thomas Newcomb', {'date': '1690'}), ('A86097', 'R.B.', {'date': '1642'}), ('A10235', 'Io. Okes', {'date': '1639'}), ('A43746', 'Thomas Warren', {'date': '1658'}), ('A66202', "Charles Bill and the executrix of Thomas Newcomb, deceas'd", {'date': '1700'}), ('A26041', 'B.W.', {'date': '1684'}), ('B11581', 'John Windet', {'date': '1587'}), ('A66564', 'J. L.', {'date': '1691'}), ('A52971', 'T.F.', {'date': '1642'}), ('A62594', 'J.D.', {'date': '1678'}), ('A06886', 'Thomas Raynald', {'date': '1548'}), ('A61467', 'E. Cotes', {'date': '1653'}), ('A17127', 'John Bill', {'date': '1618'}), ('A61383', '& also', {'date': '1678'}), ('A61383', 'Benjamin Clark stationer;', {'date': '1678'}), ('A61383', 'Charles Allen', {'date': '1678'}), ('A61383', 'the author', {'date': '1678'}), ('A19347', 'I. Okes', {'date': '1640'}), ('A38217', 'Robert Barker, and', {'date': '1641'}), ('A38108', 'John Field', {'date': '1649'}), ('A42257', 'Miles Flesher', {'date': '1688'}), ('A55594', 'Charles Bill', {'date': '1689'}), ('A55594', 'Thomas Newcomb', {'date': '1689'}), ('A18305', 'Richard Field impensis Georg. Bishop', {'date': '1607'}), ('A93596', 'John Dever', {'date': '1646'}), ('A93596', 'Robert Ibbitson', {'date': '1646'}), ('B05476', 'the heirs and successors of Andrew Anderson', {'date': '1695'}), ('A21000', 'H.L.', {'date': '1609'}), ('B05456', 'Evan Tyler', {'date': '1671'}), ('A22120', 'Robert Barker', {'date': '1615'}), ('A22426', 'Bonham Norton', {'date': '1626'}), ('A22426', 'John Bill', {'date': '1626'}), ('A22426', 'Printers to the Kings most Excellent Maiestie', {'date': '1626'}), ('B26124', 'R.D.', {'date': '1665'}), ('A14607', 'W. White', {'date': '1603'}), ('B12738', 'Robert Barker', {'date': '1606'}), ('A29747', 'John Reid', {'date': '1694'}), ('A31617', 'J.M.', {'date': '1688'}), ('A82371', 'John Field', {'date': '1652'}), ('A13316', 'I.W.', {'date': '1619'}), ('A57530', 'Th. Harper', {'date': '1642'}), ('A13964', 'John Windet', {'date': '1591'}), ('A60887', 'G.M.', {'date': '1665'}), ('B05469', 'the heirs and successors of Andrew Anderson', {'date': '1698'}), ('A92903', 'Richard Cotes', {'date': '1650'}), ('A93703', 'J.C.', {'date': '1653'}), ('A44967', 'J.O.', {'date': '1641'}), ('A58715', 'the heir of Andrew Anderson', {'date': '1692'}), ('A94740', 'Henry Hills', {'date': '1661'}), ('A86823', 'Richard Cotes', {'date': '1648'}), ('A32034', 'Leonard Lichfield', {'date': '1643'}), ('B15699', 'Edward Raban, according to the true copie imprinted', {'date': '1638'}), ('B15699', 'Robert Young', {'date': '1638'}), ('A31377', 'James Watson', {'date': '1700'}), ('A36175', 'Leonard Lichfield', {'date': '1645'}), ('A70152', 'Iames Brown', {'date': '1656'}), ('A85386', 'M. Simmons', {'date': '1645'}), ('A72464', 'Abel Ieffs', {'date': '1595'}), ('A59163', 'W.G.', {'date': '1671'}), ('A18843', 'Edward Griffin', {'date': '1620'}), ('A79726', 'Evan Tyler', {'date': '1650'}), ('A86711', 'John Bill', {'date': '1660'}), ('B19442', 'Andrew Anderson', {'date': '1674'}), ('A16102', 'Richard Field', {'date': '1592'}), ('A75906', 'H. Hills', {'date': '1699'}), ('A59206', 'G. Croom', {'date': '1691'}), ('A38950', 'R. W.', {'date': '1644'}), ('A74250', 'John Redmayne', {'date': '1660'}), ('A97060', 'H. Hills', {'date': '1690'}), ('A31691', 'Richard Janeway', {'date': '1689'}), ('A92414', 'Robert Wood', {'date': '1654'}), ('A31787', 'Roger Daniel', {'date': '1642'}), ('A50537', 'Thomas Broad', {'date': '1647'}), ('B02985', 'John Reid', {'date': '1696'}), ('A53355', 'John Whitlock', {'date': '1695'}), ('A57220', 'R.N.', {'date': '1685'}), ('A13958', 'A.M.', {'date': '1627'}), ('B06139', 'Christopher Higgins', {'date': '1659'}), ('A05064', 'Edvvard VVhitchurche', {'date': '1547'}), ('A84739', 'A: Thompson', {'date': '1652'}), ('A01592', 'J. Wolfe', {'date': '1584'}), ('A46549', 'the heir of Andrew Anderson', {'date': '1685'}), ('A16531', 'J. Legat', {'date': '1628'}), ('A28628', 'Miles Flesher', {'date': '1684'}), ('A80049', 'John Field', {'date': '1650'}), ('A66310', 'Charles Bill, and the executrix of Thomas Newcomb', {'date': '1694'}), ('A32955', 'M. F.', {'date': '1641'}), ('A29842', 'T.R.', {'date': '1662'}), ('A55083', 'Thomas Harper', {'date': '1652'}), ('A46602', 'Thomas Newcomb', {'date': '1686'}), ('A49671', 'T.R.', {'date': '1661'}), ('A07775', 'T. Dawson', {'date': '1620'}), ('A58161', 'John Hayes', {'date': '1678'}), ('A14955', 'G. Eld', {'date': '1607'}), ('A72410', 'Thomas Creed', {'date': '1600'}), ('B05531', 'the heir of Andrew Anderson', {'date': '1683'}), ('A37220', 'John Forbes', {'date': '1666'}), ('A54586', 'B.W.', {'date': '1684'}), ('A19251', 'William Iones', {'date': '1622'}), ('A19208', 'Felix Kyngston', {'date': '1617'}), ('A63279', 'W. Godbid', {'date': '1660'}), ('A80670', 'M. Simmons', {'date': '1660'}), ('A36086', 'Jo: Ray', {'date': '1697'}), ('A46179', 'J. Richardson', {'date': '1688'}), ('A46017', 'Benjamin Tooke', {'date': '1677'}), ('A09312', 'Edmund Bollifant', {'date': '1599'}), ('A10252', 'M.F.', {'date': '1633'}), ('A08695', 'R. Bradock', {'date': '1605'}), ('A14500', 'Humphrey Lownes', {'date': '1628'}), ('A12940', 'Ioannem Foulerum. Anne 1567.', {'date': '1567'}), ('A54142', 'Andrew Sowle', {'date': '1687'}), ('B30812', 'Samuel Green', {'date': '1686'}), ('A09333', 'T. Snodham', {'date': '1613'}), ('A00967', 'Leonard Lichfield', {'date': '1640'}), ('A17018', 'the widdow of Mark Wyon', {'date': '1632'}), ('B06642', 'George Mosman', {'date': '1700'}), ('A72749', 'Robert Barker', {'date': '1613'}), ('A61587', 'M. Flesher', {'date': '1681'}), ('A19888', 'John Okes', {'date': '1639'}), ('B07516', 'Robert Walde-graue', {'date': '1595'}), ('B05149', 'Christopher Higgins', {'date': '1657'}), ('A96868', 'J.R.', {'date': '1644'}), ('A00968', 'N. Okes', {'date': '1621'}), ('A84512', 'Christopher Barker', {'date': '1663'}), ('A84512', 'John Bill', {'date': '1663'}), ('A66783', 'R. Austin', {'date': '1651'}), ('A96357', 'E.G.', {'date': '1646'}), ('B06235', 'J. Whitlock', {'date': '1695'}), ('A03627', 'John Tisdale', {'date': '1562'}), ('A03627', 'Thomas Hacket', {'date': '1562'}), ('A42672', 'A.L.', {'date': '1658'}), ('A58502', 'W. Bonny', {'date': '1691'}), ('A94351', 'E.C.', {'date': '1655'}), ('A14828', 'Adam Islip', {'date': '1601'}), ('A11719', 'His Majesties printer', {'date': '1639'}), ('A11719', 'Robert Young', {'date': '1639'}), ('A13744', 'H. Denham', {'date': '1584'}), ('A28314', 'G.C.', {'date': '1691'}), ('A16881', 'F. Kingston', {'date': '1607'}), ('A46071', 'John Crook', {'date': '1666'}), ('A07445', 'Edward Allde', {'date': '1622'}), ('A62325', 'J. Heptinstall', {'date': '1683'}), ('A21108', 'George Purslowe', {'date': '1624'}), ('A02099', 'Thomas Scarlet', {'date': '1591'}), ('A46255', 'Henry Brome', {'date': '1671'}), ('B13157', 'Robert Barker', {'date': '1639'}), ('A39044', 'E. Mallet', {'date': '1684'}), ('A50776', 'J.R.', {'date': '1671'}), ('A63447', 'A.N.', {'date': '1642'}), ('A35958', 'Andro Anderson', {'date': '1655'}), ('A10711', 'John Legat', {'date': '1616'}), ('A20404', 'Richard Cotes', {'date': '1630'}), ('A20404', 'Thomas Cotes', {'date': '1630'}), ('A00102', 'John Cawood', {'date': '1559'}), ('A00102', 'Richard Iugge', {'date': '1559'}), ('A85636', 'R.W.', {'date': '1648'}), ('A14753', 'Augustine Mathewes', {'date': '1622'}), ('A55533', 'A. Baldwin', {'date': '1700'}), ('A07908', 'Valentine Symmes', {'date': '1596'}), ('A54080', 'J. Sowle', {'date': '1695'}), ('A17889', 'the widow Blageart', {'date': '1633'}), ('A11816', 'Thomas Cotes', {'date': '1631'}), ('A84556', 'John Field', {'date': '1659'}), ('A28823', 'J.G.', {'date': '1654'}), ('A17754', 'Cantrelli Legg', {'date': '1612'}), ('A53436', 'Thomas Bourke', {'date': '1643'}), ('A21683', 'John Cawood:', {'date': '1565'}), ('A21683', 'Rycharde Iugge', {'date': '1565'}), ('A11297', 'Thomas Godfray', {'date': '1535'}), ('A12035', 'Richard Field', {'date': '1594'}), ('A73827', 'M. Flesher', {'date': '1630'}), ('A44571', 'I.R.', {'date': '1661'}), ('A72538', 'Thomas Creede', {'date': '1613'}), ('A10085', 'R. Blower', {'date': '1604'}), ('A84418', 'Henry Hills', {'date': '1657'}), ('A84418', 'John Field', {'date': '1657'}), ('B14092', 'I. Okes', {'date': '1640'}), ('A00616', 'Ihon Waley', {'date': '1557'}), ('A06400', 'Thomas Purfoot', {'date': '1597'}), ('B08550', 'Alice Broade', {'date': '1663'}), ('A08835', 'me wynkyn de worde', {'date': '1530'}), ('A11861', 'Thomas Purfoote', {'date': '1587'}), ('A46246', 'W. Godbid', {'date': '1674'}), ('A32081', 'Leonard Lichfield', {'date': '1643'}), ('A23647', 'J.C.', {'date': '1675'}), ('A43271', 'Richard Smith', {'date': '1697'}), ('B14220', 'John Beale', {'date': '1619'}), ('A95723', 'W. Wilson', {'date': '1659'}), ('A80188', 'F: Neile', {'date': '1654'}), ('A14750', 'Augustine Mathewes', {'date': '1621'}), ('B43913', 'Christopher Higgins', {'date': '1658'}), ('A10495', 'I. Okes', {'date': '1640'}), ('A09298', 'Ioseph Barnes', {'date': '1587'}), ('A14199', 'Thomas Cotes', {'date': '1628'}), ('A86794', 'I. F.', {'date': '1642'}), ('A86794', 'L. N.', {'date': '1642'}), ('A95077', 'L. N.', {'date': '1644'}), ('A66462', 'Leopold Lichfield', {'date': '1681'}), ('A96415', 'E.M.', {'date': '1651'}), ('A96415', 'T.R.', {'date': '1651'}), ('A78452', 'S.G.', {'date': '1654'}), ('A11406', 'Edward Bollifant', {'date': '1595'}), ('B24773', 'Andrew Crook', {'date': '1692'}), ('A33467', 'S. Roycroft', {'date': '1682'}), ('A22358', 'Bonham Norton', {'date': '1625'}), ('A22358', 'John Bill', {'date': '1625'}), ('A08179', 'Nicholas Okes', {'date': '1615'}), ('A46333', 'T.N.', {'date': '1671'}), ('A59136', 'Job', {'date': '1696'}), ('A59136', 'John How', {'date': '1696'}), ('A02376', 'G. Robinson', {'date': '1586'}), ('A60954', 'J.H.', {'date': '1692'}), ('A73311', 'G. Eld.', {'date': '1617'}), ('A34645', 'E. Cotes', {'date': '1665'}), ('A54463', 'John Bulkley', {'date': '1689'}), ('A51294', 'James Flesher', {'date': '1668'}), ('A32491', 'Christopher Barker', {'date': '1664'}), ('A32491', 'John Bill', {'date': '1664'}), ('B08902', 'J. C.', {'date': '1648'}), ('A02291', 'Richard Watkins', {'date': '1581'}), ('A15303', 'J. Lichfield', {'date': '1630'}), ('A85867', 'W. Wilson', {'date': '1646'}), ('A72799', 'William Stansby', {'date': '1625'}), ('A11299', 'the deputies of Christopher Barker', {'date': '1591'}), ('A20508', 'Wynkyn de Worde', {'date': '1516'}), ('A75684', 'Joseph Ray', {'date': '1698'}), ('A48859', 'N.T.', {'date': '1683'}), ('A08998', 'I. Okes', {'date': '1639'}), ('A68254', 'George Bishop', {'date': '1590'}), ('A68254', 'Ralph Newberie', {'date': '1590'}), ('A84856', 'James', {'date': '1649'}), ('A84856', 'Joseph Moxon', {'date': '1649'}), ('B04444', 'S.B. i.e. S. Bulkley', {'date': '1650'}), ('A19899', 'Peter Short', {'date': '1591'}), ('A19899', 'R. Yardley', {'date': '1591'}), ('B13108', 'Robert Barker', {'date': '1636'}), ('A03470', 'V. Simmes', {'date': '1603'}), ('A04484', 'T. Powell', {'date': '1562'}), ('B00654', 'William How', {'date': '1569'}), ('A04250', 'Cantrell Legge', {'date': '1616'}), ('A22343', 'Bonham Norton', {'date': '1625'}), ('A22343', 'John Bill', {'date': '1625'}), ('A54215', 'Andrew Sowle', {'date': '1687'}), ('A28315', 'B.G.', {'date': '1671'}), ('A28315', 'S.G.', {'date': '1671'}), ('A04799', 'John Wreittoun', {'date': '1629'}), ('A18014', 'Thomas Creede', {'date': '1607'}), ('A25464', 'George Swintoun', {'date': '1670'}), ('A25464', 'James Glen', {'date': '1670'}), ('A81681', 'J.C.', {'date': '1651'}), ('A54742', 'T. Sowle', {'date': '1700'}), ('B09285', 'VVilliam Bladen', {'date': '1653'}), ('A89422', '& G. Dexter', {'date': '1642'}), ('A89422', 'R. Oulton', {'date': '1642'}), ('A57018', 'W.D.', {'date': '1685'}), ('A16522', 'William Stansby', {'date': '1615'}), ('A38164', 'Robert Ibbitson', {'date': '1647'}), ('A27163', 'M.H.', {'date': None}), ('A27163', 'S.I.', {'date': None}), ('A28402', 'T.R.', {'date': '1661'}), ('A83380', 'Robert Barker', {'date': '1642'}), ('A09967', 'M. Parsons', {'date': '1639'}), ('A46877', 'T. Cotes', {'date': '1641'}), ('A86822', 'Richard Cotes', {'date': '1648'}), ('A36160', 'Awnsham', {'date': '1688'}), ('A36160', 'John Starkey', {'date': '1688'}), ('A36160', 'William Chruchill', {'date': '1688'}), ('A65697', 'J. Leake', {'date': '1689'}), ('A59759', 'John Crook', {'date': '1665'}), ('A18959', 'I. Charlewood', {'date': '1591'}), ('B19030', 'Leonard Lichfield', {'date': '1642'}), ('A25364', 'J.W.', {'date': '1669'}), ('A00650', 'Nicholas Okes', {'date': '1612'}), ('A14985', 'William Hall', {'date': '1612'}), ('A18092', 'Henrie Denham', {'date': '1580'}), ('A64753', 'Thomas Roycroft', {'date': '1677'}), ('A84170', 'T.M.', {'date': '1652'}), ('A34381', 'Thomas Newcomb', {'date': '1670'}), ('B25214', 'R. Vaughan', {'date': '1661'}), ('A07807', 'Richard Field', {'date': '1606'}), ('B05495', 'the heir of Andrew Anderson', {'date': '1683'}), ('A52043', 'R. Badger', {'date': '1641'}), ('A58650', 'G.C.', {'date': '1689'}), ('A61116', 'Ralph Wood', {'date': '1659'}), ('A33419', 'T.M.', {'date': '1655'}), ('A90352', 'T.W.', {'date': '1653'}), ('A16890', 'John Haviland', {'date': '1622'}), ('A08428', 'Arnold Conings', {'date': '1606'}), ('A07804', 'Miles Flesher', {'date': '1633'}), ('A67616', 'F.L.', {'date': '1657'}), ('A65619', 'S. Roycroft', {'date': '1689'}), ('B00213', 'M. Flesher.', {'date': '1630'}), ('A91196', 'F.L.', {'date': '1644'}), ('A09670', 'Laurens Kellam', {'date': '1604'}), ('A45542', 'R.L.', {'date': '1647'}), ('A25846', 'T.B.', {'date': '1685'}), ('A29528', 'Andrew Coe', {'date': '1644'}), ('A10679', 'me Thomas Colwell:', {'date': '1560'}), ('A90711', 'L. N.', {'date': '1642'}), ('A46569', 'the heir of Andrew Anderson', {'date': '1685'}), ('A46026', 'John Crooke', {'date': '1663'}), ('A20436', 'Iames Roberts', {'date': '1595'}), ('A96524', 'Thomas Milbourn', {'date': '1681'}), ('A10904', 'John Norton', {'date': '1633'}), ('A22375', 'Bonham Norton', {'date': '1625'}), ('A22375', 'John Bill', {'date': '1625'}), ('A15106', 'Henrie Midleton', {'date': '1586'}), ('A22257', 'Bonham Norton', {'date': '1621'}), ('A22257', 'John Bill', {'date': '1621'}), ('A22257', 'Printers to the Kings most Excellent Maiestie', {'date': '1621'}), ('B19109', 'L. Lichfield', {'date': '1642'}), ('A45785', 'Leonard Lichfield', {'date': '1685'}), ('A35242', 'T.M.', {'date': '1672'}), ('A89411', 'R. White', {'date': '1657'}), ('A09810', 'J. Dawson', {'date': '1622'}), ('A34669', 'M.S.', {'date': '1654'}), ('A27595', 'J.M.', {'date': '1668'}), ('A50837', 'R.R.', {'date': '1698'}), ('A76763', 'Richard Cotes', {'date': '1645'}), ('A58211', 'Thomas Newcomb', {'date': '1663'}), ('A01580', 'A. Mathewes', {'date': '1624'}), ('A01580', 'I. Norton', {'date': '1624'}), ('A81031', 'Henry Hills', {'date': '1659'}), ('A81031', 'John Field', {'date': '1659'}), ('B27551', 'J. Nutt', {'date': '1700'}), ('A80989', 'Henry Hills', {'date': '1658'}), ('A80989', 'John Field', {'date': '1658'}), ('A85421', 'F:N:', {'date': '1651'}), ('A15336', 'John Legat', {'date': '1598'}), ('A03406', 'John Norton', {'date': '1633'}), ('A04306', 'VVilliam Turner', {'date': '1637'}), ('A96360', '(Septem. 4. 1649.', {'date': '1649'}), ('A96360', 'T. Forcet', {'date': '1649'}), ('A53249', 'R. D.', {'date': '1663'}), ('A10310', 'I.R.', {'date': '1598'}), ('A08202', 'the VVidowe Orwin', {'date': '1595'}), ('A19215', 'Edward Allde', {'date': '1615'}), ('A86316', 'G.E.', {'date': '1658'}), ('A00756', 'Edward Allde', {'date': '1626'}), ('A10262', 'Felix Kingston', {'date': '1621'}), ('A32403', 'Christopher Barker', {'date': '1678'}), ('A32403', 'Henry Hills', {'date': '1678'}), ('A32403', 'John Bill', {'date': '1678'}), ('A32403', 'Thomas Newcomb', {'date': '1678'}), ('A02916', 'Thomas East', {'date': '1580'}), ('A25584', 'Mary Thompson', {'date': '1688'}), ('A21747', 'John Cawood', {'date': '1572'}), ('A21747', 'Richarde Jugge', {'date': '1572'}), ('A08727', 'J. Barnes', {'date': '1605'}), ('A28939', 'William Godbid', {'date': '1674'}), ('A08873', 'Felix Kyngston', {'date': '1635'}), ('B04880', 'G.D.', {'date': '1643'}), ('B04880', 'R.O.', {'date': '1643'}), ('A39696', 'H.H.', {'date': '1682'}), ('A20638', 'Avg. Matthew', {'date': '1623'}), ('A68488', 'George Purslowe', {'date': '1616'}), ('A58539', 'James Bryon', {'date': '1641'}), ('A38751', 'A. N.', {'date': '1642'}), ('A02674', 'Humphrey Lownes', {'date': '1629'}), ('A02674', 'R. Young', {'date': '1629'}), ('A81255', 'J. Macock', {'date': '1647'}), ('A40605', 'Henry Hills', {'date': '1687'}), ('A45979', 'Andrew Crook', {'date': '1695'}), ('A75089', 'the heir of Andrew Anderson', {'date': '1683'}), ('A64501', 'F. Collins', {'date': '1700'}), ('A22416', 'Bonham Norton', {'date': '1626'}), ('A22416', 'John Bill', {'date': '1626'}), ('A22416', 'Printers to the Kings most Excellent Maiestie', {'date': '1626'}), ('A23573', 'Heugh Syngelton', {'date': '1552'}), ('A19883', 'Augustine Mathewes', {'date': '1636'}), ('B22200', 'Thomas Fawcet', {'date': '1642'}), ('A51050', 'A.M.', {'date': '1647'}), ('A82447', 'Christopher Barker', {'date': '1660'}), ('A82447', 'John Bill', {'date': '1660'}), ('A00170', 'T. East', {'date': '1600'}), ('A05039', 'J. Mychell', {'date': '1550'}), ('A79828', 'Matthew Simmons', {'date': '1649'}), ('B05317', 'the heirs and successors of Andrew Anderson', {'date': '1698'}), ('A96870', 'G.M.', {'date': '1646'}), ('A12976', 'B. Alsop', {'date': '1621'}), ('A96467', 'James Cottrel', {'date': '1656'}), ('A04613', 'Peter Short', {'date': '1600'}), ('A11842', 'R. Bourne', {'date': '1592'}), ('A83429', 'John Field', {'date': '1649'}), ('A09487', 'Nicholas Okes', {'date': '1634'}), ('A20065', 'Elizabeth All-de', {'date': '1630'}), ('A56839', 'M.F.', {'date': '1645'}), ('A22068', 'Robert Barker', {'date': '1611'}), ('A72376', 'M. Flesher.', {'date': '1638'}), ('A13919', ' James Nicolson', {'date': '1537'}), ('A61263', 'A.M.', {'date': '1676'}), ('B05319', 'Evan Tyler', {'date': '1666'}), ('A53187', 'L. L. Acad. Typog. Impensis J. Crosley.', {'date': '1675'}), ('A44314', 'J.H.', {'date': '1661'}), ('A00344', 'wynkyn de worde', {'date': '1532'}), ('A48127', 'J.C.', {'date': '1672'}), ('A22572', 'Robert Barker', {'date': '1634'}), ('A22572', 'the Assignes of John Bill', {'date': '1634'}), ('A31823', 'I.C.', {'date': '1645'}), ('A31823', 'R.A.', {'date': '1645'}), ('A40716', 'E.T.', {'date': '1672'}), ('A40716', 'R.H.', {'date': '1672'}), ('A46649', 'W. Godbid', {'date': '1675'}), ('A78287', 'T.W.', {'date': '1646'}), ('A71337', 'John Macock', {'date': None}), ('A05212', 'Marck Wyon', {'date': '1629'}), ('A15036', 'Richard Iones:', {'date': '1585'}), ('A60373', 'John Leake', {'date': '1693'}), ('A03805', 'H. Jackson', {'date': '1577'}), ('A17283', 'T.C.', {'date': '1629'}), ('A43129', 'N.T.', {'date': '1685'}), ('A01225', 'Thomas Orwyn', {'date': '1591'}), ('A14264', 'Henry Ballard', {'date': '1609'}), ('A22417', 'Bonham Norton', {'date': '1626'}), ('A22417', 'John Bill', {'date': '1626'}), ('A22417', 'Printers to the Kings most Excellent Maiestie', {'date': '1626'}), ('A85292', 'I.G.', {'date': '1653'}), ('A46108', 'John Crook', {'date': '1666'}), ('A17020', 'Humfrey Louunes', {'date': '1624'}), ('A87707', 'Bernard Alsop', {'date': '1644'}), ('A85049', 'A.M.', {'date': '1656'}), ('A53557', 'H. Brugis', {'date': '1685'}), ('B24839', 'William Bladen', {'date': '1661'}), ('B24839', 'special order.', {'date': '1661'}), ('A01752', 'S. Mierdman', {'date': None}), ('A66180', "Charles Bill and the executrix of Thomas Newcomb, deceas'd", {'date': '1696'}), ('A22612', 'me Robert Redman', {'date': '1536'}), ('A06733', 'John Day', {'date': '1577'}), ('B06077', 'Evan Tyler', {'date': '1663'}), ('A63127', 'M.S.', {'date': '1662'}), ('A24955', 'Edward Jones', {'date': '1691'}), ('A78145', 'J.A.', {'date': '1689'}), ('A33953', 'Henry Hills', {'date': '1655'}), ('A39277', 'John Field', {'date': '1668'}), ('A28965', 'W.G.', {'date': '1673'}), ('A95997', 'James Young', {'date': '1653'}), ('A30490', 'R.N.', {'date': '1697'}), ('A93911', 'R.', {'date': '1651'}), ('A93911', 'W. Leybourn', {'date': '1651'}), ('A69861', 'D. Brown', {'date': '1700'}), ('A37152', 'Bernard Alsop', {'date': '1646'}), ('A38099', 'John Field', {'date': '1652'}), ('A43030', 'James Young', {'date': '1653'}), ('A08922', 'Thomas Dawson', {'date': '1582'}), ('A63660', 'G.D.', {'date': '1642'}), ('A63660', 'R.O.', {'date': '1642'}), ('A63011', 'H.C.', {'date': '1676'}), ('A04515', 'Ioseph Barnes', {'date': '1591'}), ('A11994', 'Valentine Simmes', {'date': '1597'}), ('A82456', 'Henry Hills', {'date': '1659'}), ('A82456', 'John Field', {'date': '1659'}), ('A19692', 'John Clark', {'date': '1637'}), ('A16152', 'Ioseph Barnes', {'date': '1585'}), ('A28464', 'Thomas Newcombe', {'date': '1661'}), ('A46147', 'John Crooke', {'date': '1663'}), ('A56454', 'H. Hall', {'date': '1670'}), ('A25740', 'Leonard Lichfield', {'date': '1641'}), ('A21836', 'Christopher Barker', {'date': '1587'}), ('A86728', 'Matthew Simmons', {'date': '1649'}), ('A46189', 'John Crook', {'date': '1665'}), ('A89317', 'W. Godbid', {'date': '1657'}), ('A17005', 'Richard Watkins', {'date': '1591'}), ('A29278', 'Robert Austin', {'date': '1651'}), ('A35765', 'G. Croom', {'date': '1685'}), ('B06074', 'Robert Sanders', {'date': '1678'}), ('A86491', 'A. Coe', {'date': '1643'}), ('A86491', 'R. Austin', {'date': '1643'}), ('A27257', 'E.P.', {'date': '1641'}), ('A09791', 'Richarde Pynson', {'date': '1528'}), ('B02107', 'the heir of Andrew Anderson', {'date': '1679'}), ('A51303', 'James Flesher', {'date': '1669'}), ('A55134', 'A. Mathewes.', {'date': '1630'}), ('A08986', 'M. Flesher', {'date': '1634'}), ('B12613', 'Robert Barker', {'date': '1610'}), ('A93628', 'M.B.', {'date': '1645'}), ('A09400', 'John Legate', {'date': '1596'}), ('A08356', 'Ioseph Barnes', {'date': '1614'}), ('A78955', 'Moses Bell', {'date': '1648'}), ('A10215', 'the English College Press', {'date': '1632'}), ('A92807', 'J.R.', {'date': '1680'}), ('A44287', 'William Godbid', {'date': '1677'}), ('A28575', 'S.G.', {'date': '1657'}), ('B12371', 'Simon Stafford', {'date': '1609'}), ('A52743', 'Evan Tyler', {'date': '1643'}), ('A08134', 'John Wolfe', {'date': '1590'}), ('A11027', 'John Danter', {'date': '1595'}), ('A92675', 'the heir of Andrew Anderson', {'date': '1679'}), ('A56656', 'R.W.', {'date': '1659'}), ('A61158', 'T. R.', {'date': '1667'}), ('A40082', 'R. Norton', {'date': '1680'}), ('A74424', 'John Field', {'date': '1651'}), ('A46091', 'Benjamin Tooke', {'date': '1672'}), ('A04591', 'Eduardus Rabanus', {'date': '1628'}), ('A39483', 'Leonard Lichfield', {'date': '1645'}), ('A85424', 'A.M.', {'date': '1658'}), ('A56857', 'H. Crippsand', {'date': '1658'}), ('A56857', 'J.M.', {'date': '1658'}), ('A56857', 'Stephen Chatfield', {'date': '1658'}), ('B03167', 'Nathaniel Thompson', {'date': '1683'}), ('A09275', 'Felyx Kyngston', {'date': '1635'}), ('A54544', 'Leonard Lichfield', {'date': '1643'}), ('A86506', 'M. Simmons', {'date': '1646'}), ('A10966', 'John Legatt', {'date': '1639'}), ('A37297', 'W.G.', {'date': '1657'}), ('A85981', 'I.F.', {'date': '1642'}), ('A85981', 'L.N.', {'date': '1642'}), ('B09506', 'Bartholomew Green', {'date': '1696'}), ('B09506', 'John Allen', {'date': '1696'}), ('A14060', 'S. Mierdman', {'date': '1551'}), ('A76815', 'A.M.', {'date': '1656'}), ('A10155', 'I. Herford', {'date': '1547'}), ('A14518', "Eliot's Court Press", {'date': '1610'}), ('A14518', 'William Stansby', {'date': '1610'}), ('A21732', 'John Cawood', {'date': '1570'}), ('A21732', 'Richarde Iugge', {'date': '1570'}), ('A16779', 'Thomas Creede', {'date': '1602'}), ('A01550', 'Edward Griffin', {'date': '1619'}), ('A16659', 'B. Alsop', {'date': '1631'}), ('A16659', 'T. Favvcet', {'date': '1631'}), ('A70819', 'J.G. got John Clark', {'date': '1651'}), ('B26302', 'George Croom', {'date': '1685'}), ('A05091', 'T. Dawson?', {'date': '1578'}), ('A21949', 'Robert Barker', {'date': '1601'}), ('A21688', 'John Cawood:', {'date': '1566'}), ('A21688', 'Rycharde Iugge', {'date': '1566'}), ('A82737', 'Henry Hills', {'date': '1659'}), ('A82737', 'John Field', {'date': '1659'}), ('B26429', 'N.T.', {'date': '1681'}), ('A90757', 'J. Heptinstall', {'date': '1696'}), ('A72187', 'I. Okes', {'date': '1635'}), ('A72187', 'N.', {'date': '1635'}), ('A79291', 'F.L.', {'date': '1675'}), ('A17387', 'E. Griffin', {'date': '1618'}), ('A38304', 'Edward Jones', {'date': '1688'}), ('A65239', 'T.M.', {'date': '1653'}), ('A64902', 'Ralphe Markland', {'date': '1643'}), ('A16772', 'V.S.', {'date': '1601'}), ('A60872', 'T.S.', {'date': '1697'}), ('A58410', 'A. Maxey', {'date': '1658'}), ('A46030', 'John Crook', {'date': '1666'}), ('A58199', 'Edward Jones', {'date': '1687'}), ('A13111', 'Richard Badger', {'date': '1634'}), ('A42351', 'A.N.', {'date': '1641'}), ('A68146', 'John Windet', {'date': '1590'}), ('B12894', 'Bonham Norton', {'date': '1625'}), ('B12894', 'John Bill', {'date': '1625'}), ('A85159', 'Edward Jones', {'date': '1692'}), ('A74595', 'Henry Hills', {'date': '1656'}), ('A74595', 'John Field', {'date': '1656'}), ('A54671', 'W. Godbid', {'date': '1661'}), ('A35929', 'Robert Thornton', {'date': '1692'}), ('A16815', 'Thomas Dawson', {'date': '1577'}), ('A16815', 'Thomas Gardyner', {'date': '1577'}), ('A09232', 'John Danter', {'date': '1595'}), ('A74501', 'Henry Hills', {'date': '1654'}), ('A74501', 'William du-Gard', {'date': '1654'}), ('A19838', 'Thomas Creede', {'date': '1604'}), ('A81684', 'F.N.', {'date': '1651'}), ('A79986', 'Giles Calvert', {'date': '1652'}), ('A00476', 'W. White', {'date': '1610'}), ('A17571', 'Giles Thorpe', {'date': '1621'}), ('A95816', 'E. Alsop.', {'date': '1653'}), ('B06540', 'T. Milbourn', {'date': None}), ('A62581', 'H.C.', {'date': '1676'}), ('A19771', 'I. Jaggard?', {'date': '1625'}), ('A42079', 'William Du-gard', {'date': '1649'}), ('A78880', 'Leonard Lichfield', {'date': '1644'}), ('B15004', 'Simon Stafford', {'date': '1602'}), ('B12664', 'the deputies of Christopher Barker', {'date': '1596'}), ('A86600', 'R.I.', {'date': '1656'}), ('A63336', 'D. Mallet', {'date': '1685'}), ('A39391', '4 others', {'date': '1673'}), ('A39391', 'Elizabeth Flesher', {'date': '1673'}), ('A02734', 'Felix Kyngston', {'date': '1634'}), ('A82153', 'Henry Hills', {'date': '1659'}), ('A16565', 'E. Allde', {'date': '1599'}), ('A34854', 'Joseph Ray', {'date': '1698'}), ('A69662', 'Jane Coe', {'date': '1645'}), ('A39301', 'T. Sowle', {'date': '1693'}), ('A02159', 'John Wolfe', {'date': '1592'}), ('A83430', 'John Streater', {'date': '1659'}), ('A88331', 'John Redmayne', {'date': '1660'}), ('A88324', 'Robert Ibbitson', {'date': '1648'}), ('A05143', 'John Day', {'date': '1562'}), ('A05143', 'Maiestatis, per septennium', {'date': '1562'}), ('A09325', 'Richardum Totell', {'date': '1559'}), ('A85505', 'G. M.', {'date': '1644'}), ('A36566', 'Henry Hills', {'date': '1655'}), ('A92626', 'the heirs and successors of Andrew Anderson', {'date': '1695'}), ('A92653', 'the heirs and successors of Andrew Anderson', {'date': '1698'}), ('A72143', 'Anne Griffin', {'date': '1637'}), ('A72143', 'John Haviland', {'date': '1637'}), ('B14172', 'Henry Iaye', {'date': '1616'}), ('A79717', 'Evan Tyler', {'date': '1648'}), ('A11910', 'Thomas Colwell', {'date': '1566'}), ('A24423', 'Robert Sanders', {'date': '1664'}), ('A92316', 'Henry Hils', {'date': '1649'}), ('A37887', 'Leonard Lichfield', {'date': '1642'}), ('A09207', 'Nicholas Okes', {'date': '1638'}), ('A35425', 'Richard Chiswell', {'date': '1686'}), ('A49761', 'M.S.', {'date': '1649'}), ('A48339', 'J.C.', {'date': '1675'}), ('A31102', 'John Streater', {'date': '1668'}), ('A95981', 'G.M.', {'date': '1646'}), ('A45276', 'Robert? White?', {'date': '1657'}), ('A06799', 'R.F.', {'date': '1617'}), ('B14965', 'John. Dawson.', {'date': '1632'}), ('A60244', 'Thomas Braddyll', {'date': '1684'}), ('A15352', 'William Jaggard', {'date': '1607'}), ('A03379', 'George Anderson', {'date': '1638'}), ('A81354', 'M.S.', {'date': '1653'}), ('A70449', 'A.M.', {'date': '1656'}), ('A25966', 'J. Leake', {'date': '1687'}), ('A00363', 'wynkyn de worde', {'date': '1533'}), ('A56366', 'R.I.', {'date': '1654'}), ('A95963', 'W. Wilson', {'date': '1647'}), ('A65993', 'B. Harris', {'date': '1699'}), ('A40643', 'Leonard Lichfield', {'date': '1643'}), ('A66221', 'J.B.', {'date': '1688'}), ('A14136', 'me Hans luft i.e. J. Hoochstraten', {'date': '1528'}), ('A04138', 'E. Allde', {'date': '1607'}), ('B05099', 'the heirs of Andrew Anderson', {'date': '1686'}), ('A18157', 'Hugh Singleton', {'date': '1576'}), ('A17706', 'Henrie Bynneman', {'date': '1574'}), ('A47214', 'Nat. Thompson', {'date': '1687'}), ('A08583', 'M. Flesher', {'date': '1632'}), ('A82540', 'Edward Husband', {'date': '1650'}), ('A82540', 'John Field', {'date': '1650'}), ('A08094', 'Simon Stafford', {'date': '1607'}), ('B12583', 'Robert Dexter.', {'date': '1597'}), ('A61376', 'W. Godbid', {'date': '1677'}), ('A66496', 'J.B.', {'date': '1681'}), ('A13248', 'Nicholas Okes', {'date': '1617'}), ('A41340', 'I. Miller', {'date': '1690'}), ('A80266', 'George Mosman', {'date': '1699'}), ('A14395', 'the English secret press', {'date': '1605'}), ('A27898', 'J.M.', {'date': '1679'}), ('B24674', 'Andrew Crook', {'date': '1688'}), ('B24674', 'Samuel Helsham', {'date': '1688'}), ('A88537', 'F. N.', {'date': '1644'}), ('B20727', 'M. Simmons', {'date': '1644'}), ('A04795', 'M. Flesher', {'date': '1625'}), ('A13544', 'Felix Kyngston', {'date': '1620'}), ('A07367', 'Leonard Lichfield', {'date': '1639'}), ('A88880', 'P.W.', {'date': '1656'}), ('A13399', 'John Haruye', {'date': '1539'}), ('A13399', 'Richard Bankes', {'date': '1539'}), ('A35537', 'M. Simmons', {'date': '1664'}), ('A73880', 'Richard Field', {'date': '1594'}), ('B14920', 'W. Jones', {'date': '1630'}), ('A83452', 'John Field', {'date': '1651'}), ('A89945', 'John Ioness', {'date': '1644'}), ('A62342', 'Henry Hills', {'date': '1683'}), ('A06775', 'John Wolfe', {'date': '1582'}), ('A35945', 'E.M.', {'date': '1653'}), ('A35945', 'T.R.', {'date': '1653'}), ('A07891', 'John Charlewood', {'date': '1582'}), ('A11459', 'E.P.', {'date': '1640'}), ('A46157', 'Benjamin Tooke', {'date': '1683'}), ('A46157', 'John Crooke', {'date': '1683'}), ('A08687', 'William Stansby', {'date': '1619'}), ('B07631', 'T.P.', {'date': '1628'}), ('A28175', 'John Darby', {'date': '1676'}), ('A68845', 'John Kingston', {'date': '1583'}), ('B05287', 'order of Privy Council', {'date': '1690'}), ('B05287', 'the heir of Andrew Anderson', {'date': '1690'}), ('A75710', 'T.M.', {'date': '1654'}), ('A12523', 'Thomas Purfoot', {'date': '1616'}), ('A58749', 'J.C.', {'date': '1672'}), ('A48629', 'James Flesher', {'date': '1667'}), ('A66302', 'Charles Bill', {'date': '1690'}), ('A66302', 'Thomas Newcomb', {'date': '1690'}), ('A45420', 'Henry Hall', {'date': '1646'}), ('B05340', 'the heir of Andrew Anderson', {'date': '1688'}), ('A08875', 'I. Charlewood', {'date': '1588'}), ('A11863', 'Robert Barker', {'date': '1602'}), ('A10931', 'Felix Kyngston', {'date': '1612'}), ('B07618', 'Rychard Tottel the vi.day of December', {'date': '1574'}), ('A49252', 'E. Cotes', {'date': '1652'}), ('A76011', 'John Redmayn', {'date': '1660'}), ('A13781', 'R. Bradock', {'date': '1603'}), ('A13781', 'the Royall Exchange', {'date': '1603'}), ('A45068', 'N.T.', {'date': '1681'}), ('A53568', 'J.M.', {'date': '1680'}), ('A31438', 'T.C.', {'date': '1656'}), ('A18728', 'Owen Rogers', {'date': '1560'}), ('A00941', 'H. Middleton', {'date': '1576'}), ('A15130', 'Henry Binneman', {'date': '1574'}), ('A50365', 'T.F.', {'date': '1644'}), ('A06257', 'John Windet', {'date': '1603'}), ('A27364', 'R.I.', {'date': '1656'}), ('A06555', 'the English College Press', {'date': '1612'}), ('A93930', 'Samuel Darker', {'date': '1698'}), ('A93930', 'Samuel Farley', {'date': '1698'}), ('A86330', 'T. Newcomb', {'date': '1657'}), ('A10715', 'Thomas Dawson', {'date': '1613'}), ('A10574', 'John Charlwoode', {'date': '1583'}), ('A27063', 'R.W.', {'date': '1660'}), ('A18638', 'Thomas Orwin', {'date': '1593'}), ('B08364', 'J. Nutt', {'date': '1699'}), ('A19895', 'Robert VValde-graue', {'date': '1590'}), ('A88962', 'Leonard Lichfield', {'date': '1649'}), ('A70588', 'E.G.', {'date': '1642'}), ('A73011', 'Felix Kyngston', {'date': '1623'}), ('B21766', 'James Flesher', {'date': '1670'}), ('A27467', 'Samuell Broun English', {'date': '1651'}), ('A74505', 'Henry Hills', {'date': '1654'}), ('A74505', 'William du-Gard', {'date': '1654'}), ('A35400', 'Peter Cole', {'date': '1663'}), ('A22306', 'Bonham Norton', {'date': '1623'}), ('A22306', 'John Bill', {'date': '1623'}), ('A65820', 'Anthony Peisley', {'date': '1700'}), ('A65820', 'George West', {'date': '1700'}), ('A65820', 'Jo. Crosley', {'date': '1700'}), ('A15295', 'Thomas Dawson', {'date': '1581'}), ('A19756', 'G. Eld', {'date': '1618'}), ('A61244', 'William Leybourn', {'date': '1661'}), ('A45554', 'Abraham Miller', {'date': '1662'}), ('A79216', 'the heirs of Andrew Anderson', {'date': '1681'}), ('A12467', 'VVilliam Iones', {'date': '1620'}), ('A44344', 'Peter Cole', {'date': '1656'}), ('A34575', 'Joseph Ray', {'date': '1695'}), ('B05297', 'the heir of Andrew Anderson', {'date': '1688'}), ('A06165', 'Abell Ieffes', {'date': '1592'}), ('A12384', 'the successors of G. Thorp', {'date': '1630'}), ('A63738', 'T.D.', {'date': '1680'}), ('A12297', 'R. Copland', {'date': '1545'}), ('A35721', 'Leonard Lichfield', {'date': '1685'}), ('A77739', 'M.O.', {'date': '1644'}), ('A90520', 'I.M.', {'date': '1657'}), ('A31680', 'T.N.', {'date': '1671'}), ('A52347', 'J. Grantham', {'date': '1683'}), ('A80931', 'John Field', {'date': '1649'}), ('B21716', 'Christopher Barker', {'date': '1675'}), ('B21716', 'the Assigns of John Bill', {'date': '1675'}), ('B01718', 'Christopher Higgins', {'date': '1657'}), ('A87038', 'R.N.', {'date': '1656'}), ('A83213', 'T.W.', {'date': '1645'}), ('A30714', 'Thomas Forcet', {'date': '1646'}), ('A22331', 'Bonham Norton', {'date': '1624'}), ('A22331', 'John Bill', {'date': '1624'}), ('B09977', 'the heirs and successors of Andrew Anderson', {'date': '1697'}), ('A51172', 'E.G.', {'date': '1647'}), ('A22300', 'Bonham Norton', {'date': '1623'}), ('A22300', 'John Bill', {'date': '1623'}), ('A14956', 'G. Eld', {'date': '1606'}), ('B13520', 'Richard Field', {'date': '1619'}), ('A16327', 'William Turner', {'date': '1631'}), ('B02808', 'J.A.', {'date': '1682'}), ('A06695', 'John Windet', {'date': '1603'}), ('B25073', 'Andrew Crook', {'date': '1689'}), ('A36282', 'R.E.', {'date': '1686'}), ('A02299', 'Bernard Alsop', {'date': '1619'}), ('A02299', 'Saint Annes Church', {'date': '1619'}), ('A14978', 'John Cawood', {'date': '1560'}), ('A14978', 'Richarde Iugge', {'date': '1560'}), ('A08590', 'C. Boscard', {'date': '1622'}), ('A08142', "Eliot's Court Press?", {'date': '1623'}), ('A91187', 'John Macock', {'date': '1645'}), ('A46153', 'Benjamin Tooke', {'date': '1675'}), ('A18607', 'Wynkyn de Worde', {'date': '1568'}), ('A22243', 'Roger Wood', {'date': '1621'}), ('A22243', 'Thomas Symcocke', {'date': '1621'}), ('A65850', 'Andrew Sowle:', {'date': '1689'}), ('A18158', 'Hugh Singleton', {'date': '1582'}), ('A14011', 'Richardum Pynson', {'date': '1518'}), ('A22370', 'Bonham Norton', {'date': '1625'}), ('A22370', 'John Bill', {'date': '1625'}), ('A04062', 'George Eld', {'date': '1618'}), ('A04165', 'T.S.', {'date': '1614'}), ('A74346', 'John Field', {'date': '1649'}), ('A72833', 'Henrie Iaey', {'date': '1618'}), ('B28888', 'R.J.', {'date': '1647'}), ('A28643', 'M. Clark', {'date': '1678'}), ('A01373', 'VVilliam Hovv:', {'date': '1570'}), ('A78845', 'Henry Hall', {'date': '1643'}), ('A60308', 'T. Newcomb pour Samuel Lowns', {'date': '1675'}), ('A14194', 'John Haviland', {'date': '1624'}), ('A01454', 'John Haviland', {'date': '1638'}), ('B22508', 'H. Clark', {'date': '1685'}), ('A39719', 'R. Wood', {'date': '1664'}), ('A13441', 'I Perse I', {'date': '1628'}), ('B05449', 'Andrew Anderson', {'date': '1676'}), ('A14273', 'J. Beale', {'date': '1615'}), ('A65656', 'W.W.', {'date': '1657'}), ('B22559', 'Tace Sowle', {'date': '1698'}), ('A02698', 'John Davvson', {'date': '1622'}), ('A19581', 'William Stansby', {'date': '1625'}), ('A45073', 'Leonard Lichfield', {'date': '1644'}), ('A96867', 'E.M.', {'date': '1656'}), ('A96867', 'T,R.', {'date': '1656'}), ('A77375', 'R.B.', {'date': '1645'}), ('A76048', 'Thomas Harper', {'date': '1651'}), ('A29310', 'Leonard Lichfield', {'date': '1643'}), ('B24831', 'Andrew Crook', {'date': '1689'}), ('B24831', 'Samuel Helsham', {'date': '1689'}), ('A19432', 'I. Charlewood', {'date': '1586'}), ('B18040', 'Samuel Smith', {'date': '1690'}), ('A54808', 'B.A.', {'date': '1645'}), ('B43923', 'Evan Tyler', {'date': '1647'}), ('A67768', 'William Leybourn', {'date': '1661'}), ('B26622', 'John Foster', {'date': '1680'}), ('A61516', 'E.M.', {'date': '1662'}), ('A82925', 'Edward Husband', {'date': '1650'}), ('A82925', 'John Field', {'date': '1650'}), ('A16740', 'E. Allde', {'date': '1608'}), ('A07610', 'Thom. Harper', {'date': '1635'}), ('B25201', 'Andrew Crook', {'date': '1689'}), ('A19799', 'John Legate', {'date': '1594'}), ('A19799', 'J. Orwin 1594. And', {'date': '1594'}), ('A81485', 'M.S.', {'date': '1656'}), ('A34787', 'R.H.', {'date': '1641'}), ('A41282', 'M. S.', {'date': '1643'}), ('A41282', 'T. P.', {'date': '1643'}), ('A39497', 'Charles Bill, and the executrix of Thomas Newcomb', {'date': '1698'}), ('A19626', 'Elizabeth Allde', {'date': '1632'}), ('A61617', 'M. Flesher', {'date': '1685'}), ('A07316', 'John Legatt', {'date': '1617'}), ('A49984', 'E.R. to be', {'date': '1680'}), ('A37351', 'Leonard Lichfield', {'date': '1643'}), ('A00777', 'George Purslowe', {'date': '1616'}), ('A51324', 'Thomas Payne', {'date': '1641'}), ('A96311', 'G. Miller', {'date': '1645'}), ('B01109', 'Augustine Mathewes', {'date': '1626'}), ('A21628', 'John Cawood', {'date': '1561'}), ('A21628', 'Richard Iugge', {'date': '1561'}), ('A86119', 'M. Simmons', {'date': '1648'}), ('B05526', 'the heirs and successors of Andrew Anderson', {'date': '1699'}), ('A17244', 'Thomas Purfoote', {'date': '1576'}), ('B19104', 'Leonard Lichfield', {'date': '1642'}), ('A67824', 'T.W.', {'date': '1693'}), ('A74523', 'Henry Hills', {'date': '1653'}), ('A41200', 'R.W.', {'date': '1674'}), ('B06647', 'James Watson', {'date': '1700'}), ('A00356', 'Thomas Berthelet', {'date': '1531'}), ('A21157', 'Thomas Harper', {'date': '1636'}), ('B02025', 'Leonard Lichfield', {'date': '1645'}), ('A82228', 'Evan Tyler', {'date': '1648'}), ('A82228', 'order of the Committee of Estates', {'date': '1648'}), ('A10477', 'Edward Allde', {'date': '1614'}), ('A86562', 'R. Wood', {'date': '1651'}), ('A14900', 'Thomas Este', {'date': '1608'}), ('A91789', 'M. Simmons', {'date': '1653'}), ('A68143', 'Richard Field', {'date': '1625'}), ('A66256', 'Charles Bill', {'date': '1690'}), ('A66256', 'Thomas Newcomb', {'date': '1690'}), ('A95658', 'T.W.', {'date': '1655'}), ('A13878', 'Thomas Vautroullier', {'date': '1579'}), ('A08402', 'Ioseph Barnes', {'date': '1615'}), ('A18744', 'Ihon Kyngston', {'date': '1580'}), ('A00341', 'Andreas Hart', {'date': '1619'}), ('A74273', 'Robert Barker', {'date': '1641'}), ('A23512', 'John Awdely', {'date': '1565'}), ('A79845', 'J.C.', {'date': '1659'}), ('A00980', 'I. Dawson', {'date': '1632'}), ('A35583', 'Thomas Milbourn', {'date': '1670'}), ('A02103', 'J. Danter', {'date': '1592'}), ('A02103', 'J. Wolfe', {'date': '1592'}), ('A27987', 'H. Hills', {'date': '1681'}), ('A73936', 'John Cawood', {'date': '1562'}), ('A73936', 'Rycharde Jugge', {'date': '1562'}), ('A46496', 'Bridewell-bridge', {'date': '1688'}), ('A46496', 'D. Mallet, next door to the sign of the Star, betwen Fleet-bridge', {'date': '1688'}), ('A02253', 'M. Flesher', {'date': '1626'}), ('B24676', 'Andrew Crook', {'date': '1689'}), ('B24676', 'Samuel Helsham', {'date': '1689'}), ('A05290', 'Ralph Blower', {'date': '1613'}), ('A10851', 'Nicholas Okes', {'date': '1617'}), ('A04534', 'William Iones', {'date': '1618'}), ('B19265', 'John Bill', {'date': '1660'}), ('A13203', 'me Hans Luft i.e. Johan Hoochstraten', {'date': '1530'}), ('A21755', 'Richarde Iugge', {'date': '1573'}), ('A12535', 'John Windet', {'date': '1589'}), ('A49070', 'Samuel Roycroft', {'date': '1679'}), ('A40618', 'L. Lichfield', {'date': '1646'}), ('A58345', 'William Wilson', {'date': '1657'}), ('A01883', 'Felix Kyngston', {'date': '1616'}), ('A74418', 'John Field', {'date': '1651'}), ('A95217', "E. Mallet, next door to Mr. Shipton's coffee-house", {'date': '1686'}), ('B00445', 'Thomas Este', {'date': '1601'}), ('A28272', 'J. Leake', {'date': '1700'}), ('A42061', 'E. Flesher', {'date': '1673'}), ('A08570', 'George Purslowe', {'date': '1621'}), ('A35422', 'Robert Barkerand', {'date': '1642'}), ('A49581', 'Thomas Maxey', {'date': '1651'}), ('A30677', 'R.W.', {'date': '1660'}), ('A10086', 'Henrie Denham', {'date': '1581'}), ('A83485', 'Edward Husband', {'date': '1650'}), ('A83485', 'John Field', {'date': '1650'}), ('A66268', 'Charles Bill', {'date': '1689'}), ('A66268', 'Thomas Newcomb', {'date': '1689'}), ('A27065', 'R.W.', {'date': '1660'}), ('A11602', 'Edward Griffin', {'date': '1616'}), ('A64966', 'J.A.', {'date': '1684'}), ('B05276', 'Christopher Higgins', {'date': '1656'}), ('A83466', 'Edward Husband', {'date': '1650'}), ('A83466', 'John Field', {'date': '1650'}), ('A83621', 'Richard Cotes', {'date': '1643'}), ('A44075', 'A. Maxwell', {'date': '1669'}), ('A89484', 'J. Coe', {'date': '1645'}), ('A89484', 'T.F.', {'date': '1645'}), ('A19032', 'Henry Bynneman', {'date': '1572'}), ('A44323', 'James Allestry', {'date': '1665'}), ('A44323', 'Jo. Martyn', {'date': '1665'}), ('B19958', 'John Bill', {'date': '1661'}), ('A94167', 'John Macock', {'date': '1650'}), ('B03144', 'E. Golding', {'date': '1691'}), ('A54006', 'M.S.', {'date': '1656'}), ('A17927', 'H. Lownes', {'date': '1624'}), ('A37536', 'T.S.', {'date': '1688'}), ('A46308', 'Richard Baldwin', {'date': '1690'}), ('A21864', 'the deputies of Christopher Barker', {'date': '1618'}), ('A33060', "Charles Bill and the executrix of Thomas Newcomb, deceas'd;", {'date': '1691'}), ('A94297', 'Roger Daniel', {'date': '1641'}), ('B19101', 'Leonard Lichfield', {'date': '1642'}), ('A45426', 'J. Flesher', {'date': '1653'}), ('B12703', 'Robert Barker', {'date': '1604'}), ('A60788', 'A.', {'date': '1671'}), ('A60788', 'L. Lichfield', {'date': '1671'}), ('A90593', 'E.G.', {'date': '1642'}), ('B14765', 'Thomas Harper', {'date': '1638'}), ('A02495', 'George Bishop', {'date': '1600'}), ('A02495', 'Ralph Newberie', {'date': '1600'}), ('A02495', 'Robert Barker', {'date': '1600'}), ('A00940', 'H. Denham ', {'date': '1582'}), ('A08077', 'G. Purslowe', {'date': '1615'}), ('A08077', 'N. Okes', {'date': '1615'}), ('A61391', 'M.S.', {'date': '1668'}), ('A48277', 'Evan Tyler', {'date': '1644'}), ('A48277', 'especiall command and re-printed', {'date': '1644'}), ('A33734', 'Joseph Streater', {'date': '1689'}), ('B12780', 'Robert Barker', {'date': '1609'}), ('A40632', 'J.D.', {'date': '1685'}), ('A20999', 'John Windet', {'date': '1609'}), ('A51245', 'A.M.', {'date': '1675'}), ('A11372', 'William Iones', {'date': '1626'}), ('A43849', 'J. Redmayne', {'date': '1663'}), ('A73508', 'me Johan Byddell', {'date': '1536'}), ('A80903', 'Henry Hills', {'date': '1655'}), ('A80903', 'John Field', {'date': '1655'}), ('A82414', 'Henry Hills', {'date': '1659'}), ('A82414', 'John Field', {'date': '1659'}), ('B26118', 'Evan Taylor', {'date': '1652'}), ('A82033', 'Evan Tyler', {'date': '1646'}), ('A88391', 'Leonard Lichfield', {'date': '1645'}), ('B09711', 'John How', {'date': '1697'}), ('A06203', 'Richard Field', {'date': '1593'}), ('B31380', 'T.C.', {'date': '1658'}), ('A76409', 'Thomas Roycroft', {'date': '1657'}), ('A88443', 'Richard Cotes', {'date': '1643'}), ('A45567', 'J. G.', {'date': '1656'}), ('B01437', 'Evan Tyler', {'date': '1648'}), ('A58584', 'Evan Tyler', {'date': '1663'}), ('A01233', 'Bernard Alsop', {'date': '1632'}), ('A01233', 'Thomas Fawcet', {'date': '1632'}), ('A01233', 'the little south-doore of St. Pauls Church', {'date': '1632'}), ('A45740', 'Ralph Holt', {'date': '1684'}), ('A22254', 'Bonham Norton', {'date': '1621'}), ('A22254', 'John Bill', {'date': '1621'}), ('A40888', 'Thomas Roycroft', {'date': '1672'}), ('A67738', 'R. Everingham', {'date': '1677'}), ('A21434', 'John Dawson', {'date': '1640'}), ('A61185', 'Thomas Newcomb', {'date': '1685'}), ('A92467', 'the heir of Andrew Anderson', {'date': '1688'}), ('A41866', 'David Edwards', {'date': '1700'}), ('A17340', 'me Roberte Redman', {'date': '1531'}), ('A04785', 'John Windet', {'date': '1593'}), ('A58372', 'J.H.', {'date': '1683'}), ('A36631', 'J.M.', {'date': '1667'}), ('B05562', 'the heirs and successors of Andrew Anderson', {'date': '1696'}), ('A72549', 'I. Roberts', {'date': '1596'}), ('A75925', 'Thomas Harper', {'date': '1647'}), ('A68901', 'John Allde', {'date': '1577'}), ('A68901', 'John Iugge', {'date': '1577'}), ('A68345', 'G. Eld', {'date': '1609'}), ('B09320', 'S. G.', {'date': '1689'}), ('B09289', 'VVilliam Bladen', {'date': '1655'}), ('A13971', 'Peter Short', {'date': '1602'}), ('A66534', 'A.C.', {'date': '1678'}), ('A87905', 'Thomas Newcomb', {'date': '1658'}), ('A05111', 'Thomas Vautroullier', {'date': '1574'}), ('A22234', 'John Bill', {'date': '1620'}), ('A22234', 'Robert Barker', {'date': '1620'}), ('A59550', 'Henry Hills', {'date': '1694'}), ('A26232', 'Henry Hall', {'date': '1658'}), ('B27014', 'J.D.', {'date': '1690'}), ('A42043', 'Henry Hall', {'date': '1660'}), ('A29269', 'John Clowes', {'date': '1660'}), ('A82811', 'the coppy that was printed', {'date': '1642'}), ('A95751', 'Iames Young.', {'date': '1645'}), ('A66580', 'Maximilian Graet', {'date': '1652'}), ('A17267', 'I. Lichfield', {'date': '1629'}), ('A03456', 'Thomas Orwin', {'date': '1589'}), ('A19808', 'Richarde Johnes:', {'date': '1572'}), ('A62591', 'A. Maxwell', {'date': '1675'}), ('B00238', 'Robert VValde-graue', {'date': '1583'}), ('A02065', 'Thomas Marshe', {'date': '1562'}), ('A02408', 'Thomas East', {'date': '1582'}), ('B09267', 'Robert Ibbitson', {'date': '1647'}), ('A19906', 'William Iaggard', {'date': '1607'}), ('A82353', 'John Field', {'date': '1653'}), ('A69161', 'E', {'date': '1610'}), ('A69161', 'sic Allde', {'date': '1610'}), ('A92063', 'L.N.', {'date': '1642'}), ('A92063', 'R.C.', {'date': '1642'}), ('B15961', 'John Cornelissoon, ordinarie sworne', {'date': '1587'}), ('B15961', 'Richard Iones, according to the Dutch copie first printed', {'date': '1587'}), ('A46574', 'Charles Bill', {'date': '1687'}), ('A46574', 'Henry Hills', {'date': '1687'}), ('A46574', 'Thomas Newcomb', {'date': '1687'}), ('A59203', 'Peter Cole, printer and', {'date': '1660'}), ('A57733', 'T.S.', {'date': '1679'}), ('A19091', 'N. Okes', {'date': '1608'}), ('A10354', 'Robert Robinson', {'date': '1596'}), ('A78883', 'Leonard Lichfield', {'date': '1643'}), ('A78218', 'G. Dawson', {'date': '1649'}), ('B13058', 'Robert Barker', {'date': '1632'}), ('B05699', 'the heir of Andrew Anderson', {'date': '1691'}), ('A34897', 'T.W.', {'date': '1656'}), ('A51802', 'H.B.', {'date': '1676'}), ('A85412', 'John Macock', {'date': '1650'}), ('A07976', 'John Dawson', {'date': '1638'}), ('A81788', 'Thomas Leach', {'date': '1657'}), ('A28438', 'Nathaniel Thompson', {'date': '1684'}), ('A78810', 'Leonard Lychfield', {'date': '1643'}), ('A10702', 'John Windet', {'date': '1609'}), ('A85761', 'I.L.', {'date': '1648'}), ('A04532', 'J. Day', {'date': '1579'}), ('A41128', 'Roger Daniel', {'date': '1643'}), ('A13360', 'Valentine Simmes', {'date': '1607'}), ('A18013', 'R. Read', {'date': '1601'}), ('A66899', 'A. Maxwell', {'date': '1675'}), ('A20623', 'W. Hall', {'date': '1611'}), ('A61505', 'Andrew Sowle', {'date': '1688'}), ('A14325', 'Felix Kyngston', {'date': '1628'}), ('A21995', 'Robert Barker', {'date': '1600'}), ('A66012', 'A.P.', {'date': '1673'}), ('A86690', 'B. Alsop', {'date': '1651'}), ('A48935', 'Andrew Sowle', {'date': '1685'}), ('A26251', 'R. Daniel', {'date': '1662'}), ('A09507', 'Thomas Creede', {'date': '1615'}), ('A36235', 'R. Wood', {'date': '1665'}), ('A60269', 'T. Hodgkin', {'date': '1677'}), ('A31477', 'T. Mabb', {'date': '1654'}), ('A59986', 'James Cottrel', {'date': '1661'}), ('A42411', 'Red-Lion-Square', {'date': '1699'}), ('A42543', 'R.H.', {'date': '1663'}), ('A62598', 'M. Flesher', {'date': '1683'}), ('B01405', 'J.W.', {'date': '1699'}), ('A52511', 'Charles Bill, and the Executrix of Thomas Newcomb', {'date': '1695'}), ('A53326', 'Sarah Griffin', {'date': '1663'}), ('A18465', 'Edward All-de', {'date': '1623'}), ('A45690', 'E. Cotes', {'date': '1659'}), ('A22651', 'Robert Barker', {'date': '1640'}), ('A22651', 'the Assignes of John Bill', {'date': '1640'}), ('A07627', 'Edward Allde', {'date': '1607'}), ('A49076', 'Samuel Roycroft', {'date': '1689'}), ('A07831', 'Iacob Frederick Stam', {'date': '1637'}), ('A08344', 'H. Bynneman', {'date': '1577'}), ('A76997', 'J.C.', {'date': '1655'}), ('A94570', 'R.W.', {'date': '1659'}), ('A31334', 'J.D., to be', {'date': '1680'}), ('B25727', 'E.C.', {'date': '1656'}), ('B24710', 'Andrew Crook', {'date': '1690'}), ('A43636', 'George Larkin', {'date': '1689'}), ('A01224', 'Thomas Orwin', {'date': '1588'}), ('A80984', 'Henry Hills', {'date': '1655'}), ('A80984', 'John Field', {'date': '1655'}), ('A17732', 'Richardi Graftoni clarissimo principi Edouardo typographia', {'date': '1546'}), ('A66285', 'Charles Bill', {'date': '1692'}), ('A66285', 'Thomas Newcomb', {'date': '1692'}), ('A03496', 'William Stansby', {'date': '1618'}), ('A77515', 'T. Maxey', {'date': '1652'}), ('A83936', 'Henry Hills', {'date': '1657'}), ('A83936', 'John Field', {'date': '1657'}), ('A03238', 'N. Okes', {'date': '1613'}), ('B00982', 'VVyllyam Hovv', {'date': '1565'}), ('A73456', 'Simon Stafford', {'date': '1600'}), ('B06639', 'Thomas Creake', {'date': '1660'}), ('A58059', 'A. Maxwell', {'date': '1672'}), ('A04979', 'Wyllam Copland', {'date': '1560'}), ('A67169', 'Thomas Moore', {'date': '1686'}), ('A97181', 'M.S.', {'date': '1645'}), ('A04782', 'Gerard Pinchon', {'date': '1629'}), ('A21144', 'T. Scarlet', {'date': '1596'}), ('A92684', 'order of privy council', {'date': '1690'}), ('A92684', 'the heir of Andrew Anderson', {'date': '1690'}), ('B02742', 'Andrew Crook', {'date': '1692'}), ('B02742', 'the booksellers of Dublin', {'date': '1692'}), ('B05257', 'order of the Convention of Estates', {'date': '1689'}), ('B05257', 'the heir of Andrew Anderson', {'date': '1689'}), ('A91504', 'J.G.', {'date': '1657'}), ('A41593', 'Henry Hills', {'date': '1687'}), ('A80426', 'J.C.', {'date': '1649'}), ('A10697', 'T. Orwin', {'date': '1592'}), ('A13883', 'Ioseph Barnes', {'date': '1612'}), ('A94855', 'William Godbid', {'date': '1660'}), ('A06112', 'John Daye', {'date': '1548'}), ('A41434', 'J. Flesher', {'date': '1653'}), ('A00049', 'G. Purslowe', {'date': '1622'}), ('A28758', "Charles Bill and the executrix of Thomas Newcomb, deceas'd", {'date': '1693'}), ('A80918', 'Henry Hills', {'date': '1657'}), ('A80918', 'John Field', {'date': '1657'}), ('A47248', '& Academiæ Typographus', {'date': '1690'}), ('A47248', 'hæres Andrea Anderson, regum urbis', {'date': '1690'}), ('A82965', 'Edward Husband', {'date': '1650'}), ('A82965', 'John Field', {'date': '1650'}), ('A33999', 'Thomas Johnson', {'date': '1659'}), ('A47777', 'Thomas Maxey', {'date': '1655'}), ('A25918', 'Leonard Lichfield', {'date': '1646'}), ('A04305', 'C. Legge', {'date': '1615'}), ('A04305', 'his Maiesties speciall priuiledge and commaund', {'date': '1615'}), ('A63950', 'J.F.', {'date': '1655'}), ('A33269', 'John Reid', {'date': '1690'}), ('A20987', 'I. Okes', {'date': '1635'}), ('A20987', 'N.', {'date': '1635'}), ('A21627', 'John Cawood', {'date': '1618'}), ('A21627', 'Richard Iugge', {'date': '1618'}), ('A82491', 'Henry Hills', {'date': '1659'}), ('A82491', 'John Field', {'date': '1659'}), ('A11662', 'Iames Bryson', {'date': '1640'}), ('A21667', 'John Cawood', {'date': '1564'}), ('A21667', 'Richard Iugge', {'date': '1564'}), ('A07692', 'w. Rastell', {'date': '1533'}), ('A80487', 'M.S.', {'date': '1641'}), ('A80487', 'T.P.', {'date': '1641'}), ('A12284', 'the successors of Giles Thorp', {'date': '1623'}), ('A33407', 'John Atwood', {'date': '1696'}), ('A56248', 'H. Cruttenden', {'date': '1687'}), ('A20672', 'Hubert Antony Velpius', {'date': '1638'}), ('A00759', 'William Stansby', {'date': '1630'}), ('A10657', 'Felix Kyngston', {'date': '1636'}), ('A42817', 'E. Cotes', {'date': '1667'}), ('A72331', 'J. Norton.', {'date': '1638'}), ('A09316', 'Thomas East', {'date': '1576'}), ('A01088', 'G. Eld', {'date': '1613'}), ('A01076', 'B. Alsop', {'date': '1624'}), ('A06357', 'R. Cotes', {'date': '1630'}), ('A06357', 'T.', {'date': '1630'}), ('B14661', 'M. Parsons', {'date': '1638'}), ('A77534', 'F. Neile', {'date': '1645'}), ('A53161', 'D. Maxwell', {'date': '1662'}), ('A56163', 'L. Parry', {'date': '1660'}), ('A56163', 'T. Childe', {'date': '1660'}), ('B01318', 'Thomas Milbourn', {'date': '1666'}), ('B08108', 'me Robert Wyer: Dwellynge', {'date': '1554'}), ('A63208', 'Joseph Ray', {'date': '1681'}), ('A02975', 'John Windet', {'date': '1594'}), ('A54084', 'T. Sowle', {'date': '1696'}), ('A25509', 'G. Dexter', {'date': '1642'}), ('A25509', 'R. Olton', {'date': '1642'}), ('A07698', 'J. Rastell', {'date': '1529'}), ('A33024', 'Charles Bill and the executrix of Thomas Newcomb', {'date': '1697'}), ('A60527', 'J. Macock and to be', {'date': '1672'}), ('B13303', 'J. Windet', {'date': '1599'}), ('A12469', 'John Hauiland', {'date': '1627'}), ('A94997', 'John Field', {'date': '1646'}), ('A67525', 'J. How', {'date': '1700'}), ('A21445', 'John Bill', {'date': '1620'}), ('A21445', 'Robert Barker', {'date': '1620'}), ('A34322', 'T.H.', {'date': '1679'}), ('A79370', 'John Bill', {'date': '1661'}), ('A61865', 'John Hancock', {'date': '1677'}), ('B11791', 'Melchisedech Bradwood', {'date': '1613'}), ('A03126', 'the sayd Richarde Pynson', {'date': '1520'}), ('A16479', 'John Hauiland', {'date': '1630'}), ('A67827', 'Thomas James', {'date': '1679'}), ('A95489', 'W. Wilson', {'date': '1646'}), ('A16678', "Eliot's Court Press", {'date': '1621'}), ('B10050', 'J. Owsley', {'date': '1657'}), ('A92356', 'J.M.', {'date': '1646'}), ('A56593', 'J. Leake', {'date': '1686'}), ('A39934', 'Joseph Moxon', {'date': '1657'}), ('A80560', 'B.A.', {'date': '1647'}), ('A13767', 'Nicholas Okes', {'date': '1609'}), ('A19822', 'Nicholas Okes', {'date': '1612'}), ('A89213', 'Robert Ibbitson', {'date': '1651'}), ('A03184', 'Thomas Povvell', {'date': '1556'}), ('A94942', 'R. White', {'date': '1653'}), ('B17247', 'T. Sowle', {'date': '1699'}), ('A68165', 'T. Scarlet', {'date': '1592'}), ('A03751', 'R. Badger', {'date': '1634'}), ('A19550', 'George Purslowe', {'date': '1620'}), ('A83734', 'L.N.', {'date': '1643'}), ('A11933', 'John VVindet', {'date': '1585'}), ('A38431', 'D. Maxwell', {'date': '1659'}), ('A85805', 'J.R.', {'date': '1643'}), ('A49204', 'George Croom', {'date': '1685'}), ('A13448', 'John Lichfield', {'date': '1625'}), ('A13448', 'William Turner', {'date': '1625'}), ('A36182', 'S. Roycroft', {'date': '1683'}), ('A97343', 'G.M.', {'date': '1643'}), ('A12085', 'B. Alsop', {'date': '1638'}), ('A13495', 'Edward Allde', {'date': '1621'}), ('A89127', 'Henry Hills', {'date': '1654'}), ('A95073', 'Robert Ibbitson', {'date': '1651'}), ('A88934', 'Samuel Green', {'date': '1689'}), ('A79725', 'Evan Tyler', {'date': '1647'}), ('A11155', 'Thomas Harper', {'date': '1633'}), ('A00659', 'Henry Middelton', {'date': '1575'}), ('A86586', 'T.M.', {'date': '1654'}), ('B27584', 'K. Astwood', {'date': '1699'}), ('A22055', 'Robert Barker', {'date': '1609'}), ('A57863', 'George Mosman', {'date': '1695'}), ('A36791', 'Thomas Warren', {'date': '1656'}), ('A13565', 'John Charlewood', {'date': '1588'}), ('A13565', 'VVilliam Brome', {'date': '1588'}), ('A03356', 'W. Stansby', {'date': '1613'}), ('A13777', 'R. Badger', {'date': '1637'}), ('A36034', 'Edward Jones', {'date': '1700'}), ('A36989', 'T.N.', {'date': '1677'}), ('A11227', 'Augustine Mathewes', {'date': '1626'}), ('A03111', 'Thomas Paine', {'date': '1636'}), ('A89173', 'H. Hills', {'date': '1698'}), ('B21882', 'G. Dexter', {'date': '1642'}), ('B21882', 'R. Oulton', {'date': '1642'}), ('A14696', 'John Awdely', {'date': '1566'}), ('A01144', 'William Stansby', {'date': '1617'}), ('A08158', 'W. Iones', {'date': '1622'}), ('A67095', 'R. Hodgkinson', {'date': '1641'}), ('A67102', 'Michael Cnobbaert', {'date': '1672'}), ('A50543', 'E. Tyler', {'date': '1670'}), ('A50543', 'R. Holt', {'date': '1670'}), ('A68174', 'Richard Hodgkinsonne;', {'date': '1637'}), ('A29925', 'D. Maxwell', {'date': '1660'}), ('A21646', 'John Cawood i.e. B. Norton', {'date': '1618'}), ('A21646', 'J. Bill', {'date': '1618'}), ('A21646', 'Richarde Iugge', {'date': '1618'}), ('A12062', 'the English College Press', {'date': '1630'}), ('A64913', 'T. Sowle', {'date': None}), ('B28583', 'T.M.', {'date': '1655'}), ('A84448', 'Henry Hills', {'date': '1659'}), ('A84448', 'John Field', {'date': '1659'}), ('A20018', 'Valentine Simmes', {'date': '1605'}), ('A56118', 'W.R.', {'date': '1700'}), ('A51548', 'J. Moxon', {'date': None}), ('A03442', 'William Barley', {'date': '1599'}), ('A79046', 'Robert Ibbitson', {'date': '1647'}), ('A68833', 'John Dawson', {'date': '1629'}), ('B22018', 'John Field', {'date': '1653'}), ('A50212', 'Benjamin Harris', {'date': '1692'}), ('A42922', 'E.T.', {'date': '1674'}), ('A42922', 'R.H.', {'date': '1674'}), ('A52210', 'Bartholomew Green', {'date': '1699'}), ('A52210', 'John Allen', {'date': '1699'}), ('A19884', 'Isaack van Waesberghe, upon the Steygher', {'date': '1636'}), ('A20216', 'John Wolfe', {'date': '1591'}), ('A01935', 'T. Cotes', {'date': '1636'}), ('A01085', 'Augustine Matthewes', {'date': '1622'}), ('A97378', 'John Field', {'date': '1668'}), ('A40180', 'John Bringhurst', {'date': '1685'}), ('A08489', 'Rychard Lant.', {'date': '1542'}), ('A30997', 'John Hayes', {'date': '1670'}), ('A44158', 'John Reid', {'date': '1696'}), ('A87515', 'Leonard Litchfeild', {'date': '1643'}), ('A86946', 'R. White', {'date': '1658'}), ('A34858', 'J.B.', {'date': '1659'}), ('A21877', 'the deputies of Christopher Barker', {'date': '1591'}), ('A28585', 'Thomas Roycroft', {'date': '1651'}), ('A42906', 'John Darby', {'date': '1674'}), ('A67379', 'L. Litchfield', {'date': '1692'}), ('A22419', 'Bonham Norton', {'date': '1626'}), ('A22419', 'John Bill', {'date': '1626'}), ('A22419', 'Printers to the Kings most Excellent Maiestie', {'date': '1626'}), ('A02362', 'A. Hatfield', {'date': '1612'}), ('A62237', 'H.B.', {'date': '1663'}), ('A14319', 'P. Short', {'date': '1601'}), ('A69093', 'Thomas Creede', {'date': '1606'}), ('A29129', 'Henry Crips', {'date': '1658'}), ('A29129', 'Lodowick Lloyd', {'date': '1658'}), ('A95109', 'D. Mallet', {'date': '1681'}), ('A05115', 'Thomas Cotes', {'date': '1636'}), ('B06123', 'John Swintoun', {'date': '1681'}), ('A48356', 'W.G.', {'date': '1680'}), ('A17269', 'I. Haviland', {'date': '1622'}), ('A88872', 'E.G.', {'date': '1645'}), ('A92513', 'the heirs and successors of Andrew Anderson', {'date': '1695'}), ('A90843', 'Jane Coe', {'date': '1646'}), ('A14463', 'Henry Bynneman?', {'date': '1573'}), ('A32354', 'Christopher Barker', {'date': '1660'}), ('A32354', 'John Bill', {'date': '1660'}), ('A14846', 'Wyllyam Copland', {'date': '1565'}), ('A45297', 'E.C.', {'date': '1659'}), ('A10135', 'I. Dawson', {'date': '1626'}), ('B13640', 'Abraham Schilders i.e. William Jones? or William Stansby?', {'date': '1620'}), ('A47330', 'J.H.', {'date': '1690'}), ('A19657', 'S. Mierdman?', {'date': '1548'}), ('A07466', 'Humphrey Lownes', {'date': '1623'}), ('A47332', 'J.H.', {'date': '1698'}), ('A53265', 'Samuel Green', {'date': '1673'}), ('A88419', 'Barnard Alsop', {'date': '1641'}), ('A19936', 'Thomas Snodham', {'date': '1614'}), ('A29208', 'William Bladen', {'date': '1661'}), ('A16691', 'John Windet', {'date': '1588'}), ('A52332', 'A.G.', {'date': '1681'}), ('A52332', 'J.P.', {'date': '1681'}), ('A71335', 'John Macock', {'date': None}), ('A87492', 'Joseph Ray', {'date': '1686'}), ('A78331', 'John Field', {'date': '1645'}), ('B15274', 'John Charlewood', {'date': '1585'}), ('A11187', 'John Mestais', {'date': '1640'}), ('B05432', 'the heirs and successors of Andrew Anderson', {'date': '1695'}), ('A55772', 'William Hall', {'date': '1663'}), ('A62762', 'James Watson', {'date': '1687'}), ('A73873', 'Arnold Hatfield', {'date': '1587'}), ('B11226', 'me Johan fro doesborch', {'date': '1505'}), ('B11226', 'the fron ballaunce &c. Emprinted', {'date': '1505'}), ('B21901', 'J.R.', {'date': '1642'}), ('A44931', 'W. Onely', {'date': '1694'}), ('A93661', 'Leonard Liechfield sic', {'date': '1643'}), ('A21187', 'Richard Grafton, printer too our soueraigne lorde Kyng Edward the. VI.', {'date': '1547'}), ('A56969', 'R. D.', {'date': '1643'}), ('A66173', "Charles Bill and the executrix of Thomas Newcomb, deceas'd;", {'date': '1694'}), ('A16395', 'Robert Toye', {'date': '1566'}), ('A30879', 'A.', {'date': '1663'}), ('A30879', 'L. Lichfield', {'date': '1663'}), ('A68877', 'Bernard Alsop', {'date': '1622'}), ('A68877', 'Felix Kyngston', {'date': '1622'}), ('A15391', 'John Bill', {'date': '1622'}), ('A96671', 'H. Hills', {'date': '1687'}), ('A96671', 'Jun.', {'date': '1687'}), ('A74940', 'John Streater', {'date': '1655'}), ('A21752', 'John Daye', {'date': '1573'}), ('A52025', 'J. Best', {'date': '1664'}), ('A21202', 'Thomas Purfoote', {'date': '1570'}), ('A17642', 'Thomas Dawson impensis G. Bishop', {'date': '1585'}), ('A02265', 'George Purslowe', {'date': '1615'}), ('A31475', 'H.L.', {'date': '1671'}), ('A31475', 'R.B.', {'date': '1671'}), ('A51529', 'Thomas Milbourn', {'date': '1665'}), ('A24550', 'G.C.', {'date': '1683'}), ('A18982', 'Henry Middleton', {'date': '1573'}), ('A07896', 'John Charlewood', {'date': '1581'}), ('A18397', 'John Heigham', {'date': '1616'}), ('A16421', 'Thomas Scarlet, i.e. John Wolfe?', {'date': '1591'}), ('A76181', 'Robert White', {'date': '1652'}), ('A64001', 'E.G.', {'date': '1641'}), ('A05063', 'Edwarde Whytchurche', {'date': '1545'}), ('A47437', 'Benja. Harris', {'date': '1698'}), ('B13055', 'Robert Barker', {'date': '1632'}), ('A06170', 'James Roberts', {'date': '1593'}), ('A04218', 'Richard Schilders', {'date': '1604'}), ('A43222', 'R.W.', {'date': '1659'}), ('A23664', 'J.M.', {'date': '1655'}), ('A23335', 'P.O. i.e. John Kingston', {'date': '1569'}), ('A16497', 'Nicholas Okes', {'date': '1623'}), ('A81106', 'Will. Bonny', {'date': '1698'}), ('B01339', 'John Forbes', {'date': '1678'}), ('A41505', 'Richard Baldwin', {'date': '1696'}), ('A50531', 'R. W.', {'date': '1683'}), ('A09931', 'N. Hill?', {'date': '1552'}), ('A57385', 'R.W.', {'date': '1657'}), ('A29670', 'T.F.', {'date': '1642'}), ('A13071', 'William Iones', {'date': '1618'}), ('B30435', 'Richard Janeway', {'date': '1681'}), ('A90657', 'Richard Hodgkinson', {'date': '1660'}), ('A90657', 'Thomas Newcomb', {'date': '1660'}), ('A90302', 'I.O.', {'date': '1641'}), ('A39168', 'J.C.', {'date': '1652'}), ('A39168', 'T.W.', {'date': '1652'}), ('A02785', 'John Windet', {'date': '1604'}), ('A63469', 'John Clowes', {'date': '1659'}), ('B04466', 'the heirs and successors of Andrew Anderson', {'date': '1700'}), ('A27562', 'T. James', {'date': '1682'}), ('A89527', 'F.L.', {'date': '1654'}), ('A89527', 'the west-end of St. Pauls', {'date': '1654'}), ('A72183', 'John Harison', {'date': '1601'}), ('A91599', 'F. Leach', {'date': '1647'}), ('A49657', 'D. Mallet', {'date': '1681'}), ('A12808', 'William Stansby', {'date': '1624'}), ('A80277', 'Matthew Simmons', {'date': '1649'}), ('B14945', 'George Veseler', {'date': '1621'}), ('A40629', 'Andrew Anderson', {'date': '1664'}), ('A64570', 'Thomas Harper', {'date': '1641'}), ('A85222', 'Successors of Andrew Anderson', {'date': '1696'}), ('A85222', 'the Heirs', {'date': '1696'}), ('A15422', 'Thomas Orwin', {'date': '1592'}), ('A83694', 'M. Simons', {'date': '1643'}), ('A83694', 'T. Pain', {'date': '1643'}), ('B20836', 'William Du-Gard', {'date': '1653'}), ('B05452', 'the heirs and successors of Andrew Anderson', {'date': '1699'}), ('A45747', 'G. Dawson', {'date': '1655'}), ('A22133', 'Robert Barker', {'date': '1616'}), ('A78482', 'Robert White', {'date': '1651'}), ('A41912', 'Alexander Milbourn', {'date': '1689'}), ('A82382', 'John Field', {'date': '1659'}), ('B21945', 'John Field', {'date': '1642'}), ('B21945', 'Luke Norton', {'date': '1642'}), ('A45184', 'William Godbid', {'date': '1657'}), ('A62968', 'A. Warren', {'date': '1662'}), ('A61333', 'Richard Hall', {'date': '1661'}), ('A62859', 'Henry Hills', {'date': '1652'}), ('A08628', 'T. Cotes', {'date': '1640'}), ('A20718', 'F. Kingston', {'date': '1602'}), ('A20718', 'R. Field', {'date': '1602'}), ('A09957', 'John Wreittoun', {'date': '1634'}), ('A79338', 'the heir of Andrew Anderson', {'date': '1683'}), ('A13271', 'Elizabeth Allde', {'date': '1630'}), ('A13271', 'Felix Kingston', {'date': '1630'}), ('A13271', 'William Stansby ', {'date': '1630'}), ('B09118', 'Charles Bill and the Executrix of Thomas Newcomb', {'date': '1694'}), ('B09463', '& John Allen', {'date': '1691'}), ('B09463', 'Benjamin Harris', {'date': '1691'}), ('B14955', 'Broer Ionson', {'date': '1621'}), ('B14955', 'the brewery', {'date': '1621'}), ('B11044', 'Richarde Serll', {'date': '1564'}), ('B05580', 'the heir of Andrew Anderson', {'date': '1692'}), ('A90756', 'J. Heptinstall', {'date': '1696'}), ('A41160', 'Nathaniel Thompson', {'date': '1673'}), ('A41160', 'Thomas Ratcliffe', {'date': '1673'}), ('A22372', 'Bonham Norton', {'date': '1625'}), ('A22372', 'John Bill', {'date': '1625'}), ('A22372', 'Printers to the Kings most Excellent Maiesty', {'date': '1625'}), ('A32253', 'John Darby', {'date': '1683'}), ('A32253', 'the heir of Andrew Andersonand re-printed', {'date': '1683'}), ('A49441', 'Thomas Ratcliffe', {'date': '1670'}), ('A36656', 'J. Heptinstall', {'date': '1696'}), ('A00634', 'R. Schilders', {'date': '1588'}), ('A08087', 'Peter Geuaerts', {'date': '1597'}), ('A63844', 'James Flesher', {'date': '1660'}), ('A05040', 'John Haviland', {'date': '1623'}), ('A10944', 'Edward Grifin', {'date': '1620'}), ('A42469', 'J.L.', {'date': '1653'}), ('A58859', 'J.H.', {'date': '1691'}), ('A95610', 'J.H.', {'date': '1658'}), ('A31302', 'T. Fawset', {'date': '1642'}), ('A92687', 'the heir of Andrew Anderson', {'date': '1683'}), ('A12245', "Eliot's Court Press", {'date': '1635'}), ('A12245', 'Th. Harper', {'date': '1635'}), ('A42292', 'M.F.', {'date': '1684'}), ('A23819', 'J.W.', {'date': '1672'}), ('A07361', 'T. Harper', {'date': '1638'}), ('A01631', 'John Wolfe', {'date': '1581'}), ('A51846', 'J. Astwood', {'date': '1684'}), ('A20692', 'Thomas Este', {'date': '1600'}), ('A12485', 'Francisois Bellet', {'date': '1609'}), ('A22708', 'Robert Barker', {'date': '1608'}), ('A03589', 'Ioseph Barnes', {'date': '1612'}), ('A29060', '& veneunt apud Samuel. Dancer', {'date': '1665'}), ('A29060', 'Johan. Crook, typographi regii', {'date': '1665'}), ('A22440', 'Bonham Norton', {'date': '1627'}), ('A22440', 'John Bill', {'date': '1627'}), ('A22440', 'Printers to the Kings most Excellent Maiestie', {'date': '1627'}), ('A00400', 'Miles Flesher', {'date': '1630'}), ('A74122', 'Evan Tyler', {'date': '1649'}), ('A87476', 'John Harris?', {'date': '1647'}), ('A11404', 'R. Field', {'date': '1604'}), ('A30890', 'Mary Thompson', {'date': '1688'}), ('A74111', 'Richard Cotes', {'date': '1648'}), ('B24762', 'Andrew Crook', {'date': '1691'}), ('A36242', 'M. Clark', {'date': '1681'}), ('A25235', 'Randal Taylor', {'date': '1689'}), ('A77401', 'R.W.', {'date': '1650'}), ('A84552', 'Edward Husband', {'date': '1650'}), ('A84552', 'John Field', {'date': '1650'}), ('A64808', 'S. Griffin', {'date': '1653'}), ('A87139', 'J.C.', {'date': '1659'}), ('A92567', 'T.M.', {'date': '1661'}), ('B13970', 'T. Orwin', {'date': '1590'}), ('B24751', 'Andrew Crook', {'date': '1691'}), ('A09970', 'R. Badger', {'date': '1638'}), ('A25358', 'J.M.', {'date': '1684'}), ('A09881', 'Joseph Barnes', {'date': '1604'}), ('A09881', 'Simon VVaterson', {'date': '1604'}), ('B05360', 'the heir of Andrew Anderson', {'date': '1678'}), ('A86360', 'I. L.', {'date': '1642'}), ('A27015', 'Abraham Miller', {'date': '1657'}), ('A04824', 'John Norton', {'date': '1638'}), ('A07402', 'me Robart wyer', {'date': '1550'}), ('A06619', 'John Charlwoode', {'date': '1592'}), ('A54677', 'W. Godbid', {'date': '1671'}), ('A57810', 'J.A.', {'date': '1680'}), ('A60564', 'J.C.', {'date': '1659'}), ('A64468', 'G. Croom', {'date': '1684'}), ('A18925', 'W. White', {'date': '1602'}), ('A09522', 'me Iohan Skot', {'date': '1536'}), ('A21761', 'T. Purfoot', {'date': '1675'}), ('A67892', 'S. Stafford', {'date': '1602'}), ('A74451', 'John Field', {'date': '1652'}), ('A04506', 'Thomas Creed', {'date': '1597'}), ('A01680', 'John Charlewood', {'date': '1589'}), ('A12361', 'the widdow Orwin', {'date': '1595'}), ('A70398', 'Thomas Broad and to be', {'date': '1647'}), ('A01159', 'John Dawson', {'date': '1624'}), ('A68968', 'Th. Harper', {'date': '1638'}), ('A19037', 'T. Cotes', {'date': '1633'}), ('B00634', '&', {'date': '1626'}), ('B00634', 'Edward All-de', {'date': '1626'}), ('A46111', 'Thomas Bourke', {'date': '1648'}), ('A10418', 'Edward Allde', {'date': '1598'}), ('A06184', 'John Danter', {'date': '1594'}), ('A11882', 'Thomas Creede', {'date': '1611'}), ('A72398', 'A.M.', {'date': '1632'}), ('A37290', 'G.D.', {'date': '1654'}), ('A37290', 'S.G.', {'date': '1654'}), ('A86361', 'T.N.', {'date': '1660'}), ('A06460', 'impress.', {'date': '1546'}), ('A92611', 'Evan Tyler, printer to the Kings most Excellent Majesty', {'date': '1646'}), ('A89587', 'Richard Cotes', {'date': '1645'}), ('A44674', 'J. Heptinstall', {'date': '1700'}), ('A51409', 'Samuel Darker', {'date': '1696'}), ('A02062', 'John Turke', {'date': '1540'}), ('A02062', 'me Rychard Bankes', {'date': '1540'}), ('A17511', 'Henry Sutton', {'date': '1560'}), ('A67049', 'Evan Tyler', {'date': '1651'}), ('A36868', 'D. Brown', {'date': '1692'}), ('A12805', 'W. Stansby', {'date': '1613'}), ('A09838', 'Robert Waldegraue', {'date': '1599'}), ('A75307', 'M. Simmons', {'date': '1660'}), ('A77990', 'Roger Daniel', {'date': '1648'}), ('A79360', 'John Bill', {'date': '1661'}), ('A07753', 'Peter Short', {'date': '1597'}), ('B19115', 'Leonard Lichfield', {'date': '1643'}), ('B43422', 'Benjamin Harris', {'date': '1693'}), ('A59054', 'A. N.', {'date': '1641'}), ('A05679', 'Robert Robinson', {'date': '1589'}), ('B04766', 'John Reid', {'date': '1695'}), ('A70847', 'H. Clark', {'date': '1690'}), ('A86871', 'John Field', {'date': '1651'}), ('A17724', 'Thomas Dawson', {'date': '1580'}), ('A20534', 'Humfrey Lownes', {'date': '1614'}), ('A34395', '1690', {'date': '1692'}), ('A34395', 'M. Brown', {'date': '1692'}), ('A21636', 'John Cawood', {'date': '1562'}), ('A21636', 'Richard Iugge', {'date': '1562'}), ('A64581', 'E. Alsop', {'date': '1657'}), ('A48006', 'William Bradford', {'date': '1698'}), ('A51391', 'R. Norton', {'date': '1662'}), ('A26724', 'William Du-Gard', {'date': '1651'}), ('A80739', 'R.W.', {'date': '1649'}), ('A04763', 'Nicholas Okes', {'date': '1615'}), ('A27038', 'R.W.', {'date': '1655'}), ('B09477', 'T. Sowle', {'date': '1697'}), ('A89420', 'F.B.', {'date': '1647'}), ('A30411', 'Moses Pitt', {'date': '1676'}), ('A15092', 'Richard Field', {'date': '1615'}), ('A58981', 'D.M.', {'date': '1674'}), ('A87561', 'G.M.', {'date': '1646'}), ('A03468', 'John Legatt', {'date': '1590'}), ('A91787', 'I.C.', {'date': '1649'}), ('A70983', 'the heir of Andrew Anderson', {'date': '1685'}), ('A47342', 'J.H.', {'date': '1694'}), ('A78093', 'John Field', {'date': '1645'}), ('A06931', 'Nicholas Okes', {'date': '1609'}), ('A06931', 'the great south gate of Paules', {'date': '1609'}), ('A18049', 'C. Leege And', {'date': '1615'}), ('A18049', 'Matthevv Law', {'date': '1615'}), ('A11899', 'William Stansby', {'date': '1614'}), ('A32768', 'T.S.', {'date': '1690'}), ('B05303', 'the heirs and successors of Andrew Anderson', {'date': '1696'}), ('A70421', 'J.B.', {'date': '1680'}), ('A22111', 'Robert Barker', {'date': '1615'}), ('B12976', 'Bonham Norton', {'date': '1628'}), ('B12976', 'John Bill', {'date': '1628'}), ('A20448', 'Simon Stafford', {'date': '1613'}), ('A19407', 'George Purslowe', {'date': '1616'}), ('A58035', 'E.T.', {'date': '1673'}), ('A58035', 'R.H.', {'date': '1673'}), ('A90047', 'Richard Badger', {'date': '1642'}), ('A37855', 'J.R.', {'date': '1643'}), ('A52957', 'T. Favvcet', {'date': '1642'}), ('B02946', 'Iames Brown', {'date': '1657'}), ('A53799', 'Thomas Hodgkin', {'date': '1695'}), ('A19271', 'Henrie Denham', {'date': '1573'}), ('A46020', 'William Bladen', {'date': '1660'}), ('A63668', 'J. Grover', {'date': '1677'}), ('A49042', 'Samuel Roycroft', {'date': '1692'}), ('A49888', 'Nathaniel Thompson', {'date': '1687'}), ('A83486', 'Richard Cotes', {'date': '1649'}), ('A03254', 'Felix Kyngston', {'date': '1607'}), ('A03217', 'Thomas Purfoot', {'date': '1606'}), ('A28807', 'Robert Barker, and', {'date': '1642'}), ('A28807', 'the Assignes of John Bill', {'date': '1642'}), ('A19175', 'Robert Charteris', {'date': '1600'}), ('A13762', 'John Charlwood', {'date': '1577'}), ('A04793', 'Richard Iones', {'date': '1587'}), ('A58723', 'the heir of Andrew Anderson printer to His most sacred Majesty', {'date': '1681'}), ('A85006', 'M.S.', {'date': '1645'}), ('A41481', 'John Macock', {'date': '1651'}), ('A16698', 'Ihon Daie', {'date': '1550'}), ('A43562', 'T.B.', {'date': '1641'}), ('B12285', 'Egidius van der Erve', {'date': '1566'}), ('A36727', 'Thomas Warren', {'date': '1698'}), ('A39056', 'Charles Bill', {'date': '1690'}), ('A39056', 'Thomas Newcomb', {'date': '1690'}), ('A71289', 'Edward Jones', {'date': '1685'}), ('A15395', 'Felix Kingston', {'date': '1603'}), ('A15395', 'Richard Field', {'date': '1603'}), ('A48082', 'the heir of Andrew Anderson', {'date': '1688'}), ('A43281', 'Freeman Collins', {'date': '1685'}), ('A43281', 'J.C.', {'date': '1685'}), ('A10908', 'Marmaduke Parsons', {'date': '1638'}), ('A10908', 'Richard Badger', {'date': '1638'}), ('A03909', 'John Day', {'date': '1560'}), ('A54610', 'Franc̜ois Vaillant', {'date': '1686'}), ('A54610', "Marchand Libraire demeurant dans le Strand, vis à vis l'Eglise Franc̜oise de la Savoye", {'date': '1686'}), ('A16286', 'T. Harper', {'date': '1636'}), ('B05627', 'the heirs and successors of Andrew Anderson', {'date': '1696'}), ('B07997', 'Augustine Mathews', {'date': '1622'}), ('A00954', 'B. Alsop', {'date': '1623'}), ('A61670', 'William Hall', {'date': '1667'}), ('A81179', 'T.W.', {'date': '1653'}), ('A25356', 'A. Coe', {'date': '1643'}), ('A25356', 'R. Austine', {'date': '1643'}), ('A55308', 'A.M.', {'date': '1678'}), ('A55308', 'R.R.', {'date': '1678'}), ('A14832', 'John Legat', {'date': '1637'}), ('B05694', 'the heir of Andrew Anderson', {'date': '1691'}), ('A27494', 'R. Hodkginson', {'date': '1661'}), ('B02998', 'the heir of Andrew Anderson', {'date': '1685'}), ('A16195', 'Thomas Purfoot', {'date': '1596'}), ('A95888', 'J. Macock', {'date': '1645'}), ('A95888', 'M. Simons', {'date': '1645'}), ('B15663', 'I. Dawson', {'date': '1633'}), ('A31229', 'J.M.', {'date': '1666'}), ('A07288', 'John Windet', {'date': '1596'}), ('A84932', 'Robert Ibbitson', {'date': '1648'}), ('A64995', 'J.R.', {'date': '1677'}), ('A77918', 'H.T.', {'date': '1650'}), ('A94137', 'L. Lichfield', {'date': '1646'}), ('A54947', 'A.C.', {'date': '1670'}), ('A54947', 'E.C.', {'date': '1670'}), ('B05760', 'T. Staples.', {'date': '1694'}), ('A82177', 'Henry Hills', {'date': '1653'}), ('A82177', 'Thomas Brewster', {'date': '1653'}), ('A92703', 'J.C.', {'date': '1648'}), ('A43551', 'E.C.', {'date': '1661'}), ('A68015', 'Richard Badger', {'date': '1638'}), ('A53903', 'James Flesher', {'date': '1664'}), ('A08522', 'the heires of D. Turner i.e. T. Creede', {'date': '1601'}), ('A07647', 'William Stansby', {'date': '1624'}), ('A30920', 'John White', {'date': '1697'}), ('A55505', 'T.N.', {'date': '1659'}), ('A14468', 'S. Mierdman', {'date': '1548'}), ('A34603', 'a society of Stationers', {'date': '1662'}), ('A15398', 'John Legat', {'date': '1603'}), ('A15398', 'Simon Waterson London', {'date': '1603'}), ('A46626', 'T.H.', {'date': '1678'}), ('A05211', 'Henry Denham', {'date': '1566'}), ('A37083', 'William Du-Gard', {'date': '1650'}), ('A48998', 'Andrew Clark', {'date': '1672'}), ('B03592', 'James Lindesay', {'date': '1644'}), ('A14160', 'Valentine Simmes', {'date': '1598'}), ('A32237', 'J.C.', {'date': '1675'}), ('A43488', 'T. Cotes', {'date': '1641'}), ('A26496', 'William Godbid', {'date': '1666'}), ('A02454', 'Thomas Cotes', {'date': '1640'}), ('A47081', 'E.P.', {'date': '1641'}), ('A01980', 'George Miller', {'date': '1639'}), ('B11609', 'Edward Allde', {'date': '1605'}), ('A00430', 'W. Stansby', {'date': '1609'}), ('A09051', 'Valentine Simmes', {'date': '1601'}), ('B05422', 'the heir of Andrew Anderson', {'date': '1693'}), ('A16760', 'R. Field', {'date': '1603'}), ('A11133', 'R.Blower', {'date': '1615'}), ('A14720', 'Thomas Snodham', {'date': '1613'}), ('B43924', 'Evan Tyler', {'date': '1648'}), ('A86645', 'S. Griffin', {'date': '1659'}), ('A03494', 'William Stansby', {'date': '1626'}), ('A07248', 'Edward Griffin', {'date': '1639'}), ('A83405', 'Richard Cotes', {'date': '1649'}), ('A83405', 'T. Newcomb', {'date': '1649'}), ('A00482', 'R. Jones', {'date': '1583'}), ('A85381', 'G.B.', {'date': '1642'}), ('A85381', 'R.W.', {'date': '1642'}), ('A03465', 'Thomas East', {'date': '1606'}), ('A51302', 'J. Flesher', {'date': '1660'}), ('A30724', 'J. Ashburne', {'date': '1683'}), ('A30724', 'T. Moore', {'date': '1683'}), ('A16293', 'R. Jugge', {'date': '1553'}), ('A29225', 'J. Grismond', {'date': '1665'}), ('A95543', 'L. Lichfield', {'date': '1645'}), ('A96582', 'the heir of Andrew Anderson', {'date': '1690'}), ('A44162', 'L. Lichfield', {'date': '1678'}), ('A00918', 'Wynkyn de Word', {'date': '1495'}), ('A28376', 'Thomas James', {'date': '1680'}), ('A17707', 'Iames Robertes', {'date': '1596'}), ('A17707', 'Richarde Watkins', {'date': '1596'}), ('A19569', 'Thomas Payne', {'date': '1639'}), ('B02674', 'William Downing', {'date': '1683'}), ('A89825', 'Richard Hodgkinsonne', {'date': '1655'}), ('A68080', 'me Robert Wyer', {'date': '1532'}), ('A14772', 'Laurence Kellam i.e. F. Perez?', {'date': '1604'}), ('A49073', 'Samuel Roycroft', {'date': '1687'}), ('A13880', 'Richard Schilders', {'date': '1588'}), ('A34420', 'Peter de Pienne', {'date': '1651'}), ('A14345', 'John Okes ', {'date': '1637'}), ('A14345', 'N.', {'date': '1637'}), ('A19265', 'Thomas Purfoote', {'date': '1576'}), ('A51322', 'T.B.', {'date': '1641'}), ('A21964', 'Robert Barker', {'date': '1603'}), ('A19946', 'Bernard Alsop', {'date': '1621'}), ('A10243', 'Anne Griffin', {'date': '1635'}), ('A53041', 'Thomas Milbourn', {'date': '1680'}), ('A41435', 'H. Hills Jun.', {'date': '1684'}), ('A07604', 'Melchisedec Bradwood', {'date': '1607'}), ('A66875', 'N.T.', {'date': '1672'}), ('A66875', 'T.R.', {'date': '1672'}), ('A38092', 'John Brocas', {'date': '1700'}), ('A29371', 'Peter Cole', {'date': '1656'}), ('A20825', 'Felix Kyngston', {'date': '1607'}), ('A66470', 'T. Braddyll', {'date': '1685'}), ('A34597', 'T.W.', {'date': '1693'}), ('A37690', 'G. Dexter', {'date': '1642'}), ('A37690', 'R. Oulton', {'date': '1642'}), ('A04167', 'Leonard Lichfield', {'date': '1637'}), ('A32479', 'Henry Hills', {'date': '1679'}), ('A32479', 'John Bill', {'date': '1679'}), ('A32479', 'Thomas Newcomb', {'date': '1679'}), ('A19602', 'Thomas Creede', {'date': '1602'}), ('A46138', 'John Crook', {'date': '1661'}), ('A20094', 'J. Browne', {'date': '1603'}), ('A20094', 'J. Smethwick', {'date': '1603'}), ('A20094', 'N. Ling', {'date': '1603'}), ('A20094', 'Thomas Creede', {'date': '1603'}), ('A69455', 'Joseph Streater', {'date': '1688'}), ('A77634', 'J.G.', {'date': '1649'}), ('A67231', 'Stephen Bulkley', {'date': '1679'}), ('A66978', 'J. Astwood', {'date': '1698'}), ('A38278', 'Edward Husbands', {'date': '1660'}), ('A38278', 'Thomas Newcomb', {'date': '1660'}), ('A78536', 'the heirs and successors of Andrew Anderson', {'date': '1700'}), ('A00186', 'Ioseph Barnes', {'date': '1586'}), ('A82141', 'Matthew Simmons', {'date': '1647'}), ('A06477', 'Thomas Dawson', {'date': '1589'}), ('A92845', 'R.D.', {'date': '1653'}), ('A02852', 'John Bill', {'date': '1623'}), ('A02786', 'John Windet', {'date': '1607'}), ('A95154', 'John Wallis', {'date': '1688'}), ('A22089', 'Robert Barker', {'date': '1613'}), ('B00565', 'the Widow Orwin', {'date': '1596'}), ('A11688', 'Thomas Finlason', {'date': '1620'}), ('A30153', 'B.W.', {'date': '1684'}), ('A00731', 'Augustine Mathewes', {'date': '1622'}), ('A74395', 'Edward Husband', {'date': '1650'}), ('A74395', 'John Field', {'date': '1650'}), ('B05588', 'Andrew Anderson', {'date': '1675'}), ('A84126', 'John Bringhurst', {'date': '1683'}), ('A38802', 'T. R.', {'date': '1674'}), ('A92657', 'Robert Wood', {'date': '1650'}), ('A34279', 'H. Hills', {'date': '1690'}), ('B02058', 'the heir of Andrew Anderson', {'date': '1683'}), ('B06326', 'the heir of Andrew Anderson', {'date': '1684'}), ('B06331', 'Elizabeth. Purslowe.', {'date': '1641'}), ('A88420', 'Matthew Simmons', {'date': '1646'}), ('A48984', 'James Flesher', {'date': '1658'}), ('A78991', 'Leonard Lichfield', {'date': '1643'}), ('B06226', 'the heir of Andrew Anderson', {'date': '1691'}), ('A66282', 'Charles Bill', {'date': '1690'}), ('A66282', 'Thomas Newcomb', {'date': '1690'}), ('A63559', 'E. Mallet', {'date': '1685'}), ('A62090', 'J. Darby', {'date': '1697'}), ('B06069', 'Christopher Higgins', {'date': '1655'}), ('A74494', 'John Field', {'date': '1653'}), ('A06660', 'Byllinges gate', {'date': '1550'}), ('A06660', 'S. Mierdman', {'date': '1550'}), ('A84471', 'Abel Roper', {'date': '1660'}), ('A84471', 'Thomas Collins', {'date': '1660'}), ('A89567', 'Richard Cotes', {'date': '1645'}), ('A21974', 'Robert Barker', {'date': '1603'}), ('A13707', 'E.P.', {'date': '1615'}), ('A13707', 'Giles Thorp. Published', {'date': '1615'}), ('A19498', 'H. Lownes', {'date': '1613'}), ('A53236', 'J. Richardson', {'date': '1689'}), ('A53971', 'H. Hills', {'date': '1684'}), ('A53971', 'Jun.', {'date': '1684'}), ('A67225', 'A. Godbid', {'date': '1682'}), ('A67225', 'J. Playford', {'date': '1682'}), ('A61677', 'Peter Cole', {'date': '1652'}), ('A68976', 'Ihon Day:', {'date': '1551'}), ('A87320', 'E.M.', {'date': '1659'}), ('A54131', 'T. Sowle', {'date': '1699'}), ('A01520', 'Henry Middleton', {'date': '1575'}), ('A75606', 'B.A. and published according to order', {'date': '1650'}), ('A11614', 'John Awdeley', {'date': '1574'}), ('A01069', 'Edvvard Griffin', {'date': '1616'}), ('A50086', 'Academiæ Typographus', {'date': '1687'}), ('A50086', 'hæres Andreæ Anderson, civitatis', {'date': '1687'}), ('A79649', 'R. Norton', {'date': '1661'}), ('A31015', '& væneunt apud Th. Robinson', {'date': '1658'}), ('A31015', 'R. Danielis', {'date': '1658'}), ('A31015', 'Ri. Davis', {'date': '1658'}), ('A12127', 'I. Okes', {'date': '1638'}), ('A11257', 'Thomas Snodham', {'date': '1614'}), ('A17918', 'Robert Robinson', {'date': '1590'}), ('A74899', 'R.W.', {'date': '1653'}), ('B05413', 'the heir of Andrew Anderson', {'date': '1685'}), ('A78664', 'L. Lichfield', {'date': '1682'}), ('A09505', 'Nycolas Hyll, as the coses and charges of Robert Toye', {'date': '1546'}), ('A40388', 'W. Jones', {'date': '1642'}), ('A66704', 'E.C.', {'date': '1675'}), ('A04077', 'the deputies of Christopher Barker', {'date': '1599'}), ('B09691', 'Edward Jones', {'date': '1688'}), ('A59036', 'M.F.', {'date': '1641'}), ('A57812', 'T. Sowle', {'date': '1700'}), ('A65815', 'W. Godbid', {'date': '1656'}), ('A85664', 'G.D.', {'date': '1643'}), ('A85664', 'R.O.', {'date': '1643'}), ('A48160', 'J. Astwood', {'date': '1694'}), ('A96858', 'H.H.', {'date': '1656'}), ('B09910', 'John de Cock.', {'date': '1697'}), ('A09591', 'William How:', {'date': '1570'}), ('B24668', 'Andrew Crook', {'date': '1687'}), ('B24668', 'Samuel Helsham', {'date': '1687'}), ('A84578', 'John Field', {'date': '1651'}), ('B22010', 'Robert Barker and', {'date': '1642'}), ('A11164', 'I. Harrison', {'date': '1603'}), ('A03078', 'Isaac Iaggard', {'date': '1624'}), ('A10971', 'William Hall', {'date': '1612'}), ('A10984', 'Miles Flesher', {'date': '1628'}), ('A26135', 'Thomas Lock', {'date': '1659'}), ('A00120', 'Robart Caly, wythin the precinct of Christes Hospitall', {'date': '1558'}), ('A68949', 'Roulande Hall', {'date': '1562'}), ('A26314', 'J.R.', {'date': '1682'}), ('A40744', 'Edward Jones', {'date': '1692'}), ('B01765', 'J.H.', {'date': '1687'}), ('A04061', 'Ihon Herford', {'date': '1546'}), ('A85193', 'T. Sowle', {'date': '1693'}), ('B24904', 'A.M.', {'date': '1648'}), ('A48874', 'Elizabeth Holt', {'date': '1690'}), ('A06217', 'Henrie Bynneman', {'date': '1567'}), ('A10384', 'John Dawson', {'date': '1639'}), ('A09971', 'Thomas Cotes', {'date': '1639'}), ('A47502', 'Thomas Johnson', {'date': '1664'}), ('A44732', 'J. Streater', {'date': '1657'}), ('A74216', 'Jo: Field', {'date': '1643'}), ('A85916', 'T.M.', {'date': '1652'}), ('A39132', 'E. Mallet', {'date': '1685'}), ('B06827', 'John Hammond', {'date': None}), ('A86718', 'D. Maxwell', {'date': '1660'}), ('A23575', '. H. Singleton', {'date': '1555'}), ('A20916', 'R. Blower', {'date': '1604'}), ('A09827', 'VVyllyam Gryffyth', {'date': '1556'}), ('A06556', 'Wynkyn de Worde', {'date': '1495'}), ('A90200', 'Leonard Lichfield', {'date': '1652'}), ('B09474', 'Joseph Ray', {'date': '1694'}), ('A45549', 'Abraham Miller', {'date': '1661'}), ('A34290', 'Nat. Thompson', {'date': '1682'}), ('A77409', 'T.C.', {'date': '1656'}), ('A46007', 'Benjamin Tooke', {'date': '1676'}), ('A11902', 'John Kingston', {'date': '1578'}), ('A07061', 'H. Lownes', {'date': '1625'}), ('B00127', 'M.P.', {'date': '1640'}), ('B12044', 'Thomas Purfoot', {'date': '1582'}), ('B12044', 'William Pounsonbie', {'date': '1582'}), ('A26488', 'I.L.', {'date': '1646'}), ('A85624', 'J. Coe', {'date': '1644'}), ('A31653', 'Thomas Roycroft', {'date': '1664'}), ('A53720', 'F. Darby', {'date': '1676'}), ('B12376', 'George Purslowe', {'date': '1623'}), ('A19610', 'B. Alsop', {'date': '1638'}), ('A19610', 'T. Fawcet', {'date': '1638'}), ('B05532', 'the heir of Andrew Anderson', {'date': '1685'}), ('A16526', 'Adam Islip', {'date': '1604'}), ('A16526', 'Felix Kingston', {'date': '1604'}), ('A04527', 'Wyllyam Coplande', {'date': '1553'}), ('A54944', 'B.W.', {'date': '1683'}), ('A14004', 'Io. Beale', {'date': '1613'}), ('A12705', 'Ioseph Barnes', {'date': '1594'}), ('B00563', 'Alexander Lacie', {'date': '1570'}), ('A20489', 'G. Bishop', {'date': '1596'}), ('A20489', 'R. Barker', {'date': '1596'}), ('A20489', 'R. Nuberie', {'date': '1596'}), ('B22203', 'Robert Barker and', {'date': '1642'}), ('A92024', 'Thomas Johnson', {'date': '1670'}), ('A06911', 'I. Dawson', {'date': '1639'}), ('A20304', 'H. Middleton', {'date': '1577'}), ('A91646', 'T. Sowle', {'date': '1693'}), ('A00723', 'G. Eld', {'date': '1618'}), ('A17690', 'Thomas Dawson', {'date': '1581'}), ('A40560', 'W. Downing', {'date': '1689'}), ('A20390', 'J. Dawson', {'date': '1625'}), ('A28949', 'Henry Hall', {'date': '1669'}), ('A22298', 'Bonham Norton', {'date': '1623'}), ('A22298', 'John Bill', {'date': '1623'}), ('A29121', 'Stephen Bulkley', {'date': '1668'}), ('B05436', 'the heirs and successors of Andrew Anderson', {'date': '1698'}), ('A68144', 'John Wolfe', {'date': '1592'}), ('A17319', 'John Windet', {'date': '1591'}), ('A18995', 'Roger Ward', {'date': '1590'}), ('A13405', 'John Norton', {'date': '1633'}), ('A30592', 'John Field', {'date': '1650'}), ('B19080', 'Leonard Lichfield', {'date': '1643'}), ('A10299', 'Adam Islip', {'date': '1590'}), ('A09135', 'James Roberts', {'date': '1602'}), ('A53441', 'William Bladenand now', {'date': '1643'}), ('A01075', "Eliot's Court Press", {'date': '1606'}), ('B05906', 'George Mosman', {'date': '1696'}), ('A01249', 'Saint Austins Gate', {'date': '1609'}), ('A01249', 'VV. Stansby', {'date': '1609'}), ('A11953', 'Ihon Kyngston', {'date': '1580'}), ('A84357', 'Peter Cole', {'date': '1653'}), ('A07432', 'Richard Schilders', {'date': '1597'}), ('A07203', 'M. Flesher', {'date': '1630'}), ('A08997', 'W. Stansby', {'date': '1630'}), ('A91526', 'R.W.', {'date': '1660'}), ('A53093', 'D. Maxwell', {'date': '1658'}), ('A35845', 'Andrew Sowle', {'date': '1684'}), ('A30100', 'Thomas Mabb', {'date': '1664'}), ('A08190', 'Wynkyn de worde', {'date': '1525'}), ('A78976', 'Leonard Lichfield', {'date': '1645'}), ('A22376', 'Bonham Norton', {'date': '1625'}), ('A22376', 'John Bill', {'date': '1625'}), ('A64685', 'William Smith', {'date': '1679'}), ('A45976', 'J.F.', {'date': '1662'}), ('A59037', 'W.D.', {'date': '1698'}), ('A45190', 'James Flesher', {'date': '1661'}), ('A96134', 'William Bentley', {'date': '1651'}), ('A74525', 'Henry Hills', {'date': '1653'}), ('A74525', 'Will. du-Gard', {'date': '1653'}), ('A81931', 'Roger Daniel', {'date': '1641'}), ('A01170', 'Thomas Snodham', {'date': '1619'}), ('A90307', 'A.', {'date': '1660'}), ('A90307', 'Acad. typogr.', {'date': '1660'}), ('A90307', 'L. Lichfield', {'date': '1660'}), ('A50177', 'Benjamin Harris', {'date': '1693'}), ('A12672', 'Henrie Bynneman', {'date': '1567'}), ('B05157', 'Evan Tyler', {'date': '1646'}), ('A48794', 'Thomas Milbourne', {'date': '1670'}), ('B03479', 'J.B.', {'date': '1676'}), ('A56500', 'Peter Cole', {'date': '1654'}), ('A91374', 'John Field', {'date': '1645'}), ('A00586', 'John Lichfield', {'date': '1635'}), ('A44006', 'W.B.', {'date': '1654'}), ('A02769', 'John Legat', {'date': '1640'}), ('A79857', 'Matthew Simmons next door to the gilded Lyon', {'date': '1653'}), ('A80650', 'Luke. Norton.', {'date': '1642'}), ('A80650', 'Richard. Cotes.', {'date': '1642'}), ('A47642', 'J. White', {'date': '1693'}), ('A47642', 'Their Majesties printer', {'date': '1693'}), ('A01923', 'R. Read', {'date': '1603'}), ('B20601', 'John Harefinch', {'date': '1684'}), ('A79581', 'John Field', {'date': None}), ('A66812', 'W.R.', {'date': '1669'}), ('A09113', 'G. Miller', {'date': '1628'}), ('A44124', 'J. Macock', {'date': '1680'}), ('A80200', 'A.M.', {'date': '1654'}), ('A20080', 'G. Purslowe', {'date': '1625'}), ('A19014', 'Nicholas Okes', {'date': '1618'}), ('A00545', 'H. Lownes', {'date': '1606'}), ('A57049', 'Evan Tyler', {'date': '1652'}), ('A87116', 'Richard Baldwin', {'date': '1694'}), ('B19224', 'Robert Barker', {'date': '1642'}), ('A08935', 'impress', {'date': '1539'}), ('A90386', 'Charles Sumptner', {'date': '1650'}), ('A07304', 'E.A.', {'date': '1614'}), ('A18575', 'Nicholas Okes', {'date': '1613'}), ('A07204', 'Miles Flesher', {'date': '1627'}), ('A01231', 'William How', {'date': '1588'}), ('A11651', 'Evan Tyler', {'date': '1651'}), ('A64740', 'R.E.', {'date': '1686'}), ('A12138', 'Bernard Alsop', {'date': '1630'}), ('A12138', 'Thomas Fawcet', {'date': '1630'}), ('A78825', 'Robert Ibbitson', {'date': '1648'}), ('A46466', 'Mr. P.B.', {'date': '1688'}), ('A33533', 'E.C.', {'date': '1665'}), ('B24759', 'Andrew Crook', {'date': '1691'}), ('A11626', 'the Printers to the Vniversitie of Cambridge', {'date': '1633'}), ('B05735', 'the heir of Andrew Anderson', {'date': '1680'}), ('A47686', 'H. Hills', {'date': '1647'}), ('A47686', 'J. Harris', {'date': '1647'}), ('A59700', 'B. Alsop', {'date': '1652'}), ('A28990', 'H. Clark', {'date': '1687'}), ('A13629', 'John Lichfield', {'date': '1617'}), ('A13629', 'William Wrench', {'date': '1617'}), ('A33560', 'J. Macock', {'date': '1663'}), ('A85323', 'Robert White', {'date': '1644'}), ('A21669', 'John Cawood', {'date': '1564'}), ('A21669', 'Richard Iugge', {'date': '1564'}), ('A73189', 'G. Purslowe', {'date': '1625'}), ('A09563', 'Edward Griffin', {'date': '1619'}), ('A72314', 'Humphrey. Lownes.', {'date': '1608'}), ('A15052', 'John Dawson', {'date': '1638'}), ('A39038', 'J. Grantham', {'date': '1683'}), ('A74002', 'Bonham Norton', {'date': '1618'}), ('A74002', 'John Bill, deputie', {'date': '1618'}), ('B18892', 'Jane Clowes', {'date': '1662'}), ('B19153', 'Leonard Lichfield', {'date': '1643'}), ('A52931', 'W. Downing', {'date': '1689'}), ('A03146', 'E. Purslowe', {'date': '1636'}), ('A03146', 'Thomas Cotes', {'date': '1636'}), ('A03146', 'Thomas Harper', {'date': '1636'}), ('A22229', 'John Bill', {'date': '1620'}), ('A22229', 'Robert Barker', {'date': '1620'}), ('A18640', 'Thomas Thomas', {'date': '1586'}), ('A82436', 'Edward Husband', {'date': '1650'}), ('A82436', 'John Field', {'date': '1650'}), ('A67031', 'T.N.', {'date': '1669'}), ('A16469', 'Andro Hart', {'date': '1614'}), ('A47584', 'John Raworth', {'date': '1644'}), ('A62975', 'G.M.', {'date': '1645'}), ('A92359', 'Leonard Lichfield', {'date': '1642'}), ('A81370', 'B.A.', {'date': '1648'}), ('A12186', 'E. Purslow', {'date': '1638'}), ('A12186', 'Richard Badger', {'date': '1638'}), ('A16729', 'Richard Johnes', {'date': '1597'}), ('A21657', 'J. Bill', {'date': '1618'}), ('A21657', 'John Cawood i.e. B. Norton', {'date': '1618'}), ('A21657', 'Richarde Jugge', {'date': '1618'}), ('A91915', 'Richard Bishop', {'date': '1651'}), ('A81240', 'E.T.', {'date': '1658'}), ('A04503', 'J. Windet', {'date': '1609'}), ('A61335', 'John Field', {'date': '1668'}), ('B21646', 'Henry Hills', {'date': '1686'}), ('A58253', 'G. Miller', {'date': '1665'}), ('A92714', 'A. C.', {'date': '1644'}), ('A22749', 'Robert Barkerand', {'date': '1630'}), ('A06658', 'John Herforde', {'date': '1548'}), ('A39186', 'William Downing', {'date': '1699'}), ('A88362', 'M.S.', {'date': '1652'}), ('A64336', 'T.R.', {'date': '1659'}), ('B19760', 'Christopher Barker', {'date': '1666'}), ('B19760', 'John Bill', {'date': '1666'}), ('A36212', 'T. Sowle', {'date': '1699'}), ('A40566', 'Langley Curtis', {'date': '1682'}), ('A75596', 'Henry Hills', {'date': '1659'}), ('A00747', 'Thomas Harper', {'date': '1640'}), ('A46218', 'Benjamin Took', {'date': '1683'}), ('A46218', 'John Crook', {'date': '1683'}), ('B21878', 'James Partridge', {'date': '1689'}), ('B21878', 'Matthew Gillyflower', {'date': '1689'}), ('B21878', 'Samuel Heyrick', {'date': '1689'}), ('A62306', 'D. Mallet', {'date': '1680'}), ('B06076', 'Evan Tyler', {'date': '1662'}), ('A41536', 'J.G.', {'date': '1650'}), ('A30053', 'Assignes of William Bradford', {'date': '1689'}), ('A08162', 'I. Dawson', {'date': '1622'}), ('A16256', 'H. Bynneman', {'date': '1567'}), ('A42763', 'Evan Tyler', {'date': '1647'}), ('B01020', 'A. Lacy', {'date': '1566'}), ('A43180', 'Henry Hills', {'date': '1697'}), ('A42350', 'J.M.', {'date': '1672'}), ('A91602', 'Deputy to Margery Mar-prelate', {'date': '1641'}), ('A91602', 'Pasquin', {'date': '1641'}), ('B43606', 'Edward Jones', {'date': '1691'}), ('A90968', 'C.S.', {'date': '1648'}), ('A06671', 'E. Allde', {'date': '1621'}), ('A13214', 'John Bill', {'date': '1621'}), ('A42638', 'Thomas Mabb', {'date': '1664'}), ('A22081', 'Robert Barker', {'date': '1613'}), ('B00660', 'Robert Waldegraue', {'date': '1600'}), ('A23580', 'John Byddell', {'date': '1540'}), ('A16845', 'Thomas Vautrollier', {'date': '1586'}), ('A01052', 'Edward Griffin', {'date': '1639'}), ('B03059', 'the heirs and successors of Andrew Anderson', {'date': '1696'}), ('A61188', 'Thomas Newcomb, one of His Majesties printers', {'date': '1685'}), ('A77847', 'G.M.', {'date': '1645'}), ('A35068', 'J.G.', {'date': '1658'}), ('A88799', 'I. Coe', {'date': '1646'}), ('A82076', 'B. Alsop', {'date': '1648'}), ('A38841', 'James Cottrel', {'date': '1656'}), ('A53547', 'William du-Gard', {'date': '1652'}), ('A64670', 'R.B.', {'date': '1645'}), ('A17854', 'Hary Sutton', {'date': '1552'}), ('A05589', 'Robert Bryson', {'date': '1640'}), ('A60955', 'J.H.', {'date': '1694'}), ('A88963', 'R.D.', {'date': '1656'}), ('A13656', 'T. Creede', {'date': '1602'}), ('A29969', 'Randal Taylor', {'date': '1693'}), ('A12180', 'Thomas Cotes', {'date': '1639'}), ('B43645', 'T.J.', {'date': '1672'}), ('A46467', 'Charles Bill', {'date': '1688'}), ('A46467', 'Henry Hills', {'date': '1688'}), ('A46467', 'Thomas Newcomb', {'date': '1688'}), ('A26380', 'Charles Bill', {'date': '1689'}), ('A26380', 'Thomas Newcomb', {'date': '1689'}), ('A86280', 'J.M.', {'date': '1659'}), ('A94853', 'the heir of Andrew Anderson', {'date': '1688'}), ('B13025', 'Robert Barker', {'date': '1630'}), ('A71056', 'J.L.', {'date': '1646'}), ('A61099', 'Leonard Lichfield', {'date': '1642'}), ('B25046', 'Andrew Crook', {'date': '1689'}), ('B25046', 'Samuel Helsham', {'date': '1689'}), ('A67784', 'J.A.', {'date': '1685'}), ('A10467', 'W: Stansby', {'date': '1616'}), ('A37000', 'W. Onley', {'date': '1697'}), ('A07889', 'Thomas Dawson', {'date': '1608'}), ('A17514', 'Bernard Alsop', {'date': '1618'}), ('A02538', 'John Windet', {'date': '1606'}), ('A04961', 'T. Snodham', {'date': '1625'}), ('A11434', 'John Norton', {'date': '1636'}), ('A61615', 'J.M.', {'date': '1684'}), ('B05321', 'the heirs and successors of Andrew Anderson', {'date': '1695'}), ('A16948', 'Thomas Purfoot', {'date': '1613'}), ('A54797', 'F. Millet', {'date': '1685'}), ('A57328', 'Henry Hall', {'date': '1662'}), ('A41618', 'Henry Hills', {'date': '1686'}), ('A04919', 'Thomas Harper', {'date': '1635'}), ('A17647', 'John Windet', {'date': '1584'}), ('A35974', 'Peter Targa', {'date': '1652'}), ('A68585', 'A. Conincx', {'date': '1603'}), ('A21055', 'John Dawson', {'date': '1623'}), ('A06068', 'Richard Field', {'date': '1619'}), ('A77430', 'J. Heptinstall.', {'date': '1687'}), ('A70580', 'T.N.', {'date': '1683'}), ('B05205', 'the heir of Andrew Anderson', {'date': '1690'}), ('A66818', 'Richard Cotes', {'date': '1651'}), ('A84482', 'Abel Roper', {'date': '1660'}), ('A84482', 'Thomas Collins', {'date': '1660'}), ('A97281', 'W. Onely', {'date': '1694'}), ('A01567', 'John VVoolfe', {'date': '1583'}), ('A46163', 'Benjamin Took', {'date': '1680'}), ('A46163', 'John Crook', {'date': '1680'}), ('A07957', 'the English secret press', {'date': '1595'}), ('A45563', 'Thomas Newcomb', {'date': '1668'}), ('A58816', 'M. Flesher', {'date': '1686'}), ('A66544', 'John Lock', {'date': '1673'}), ('A03777', 'Wyllyam How', {'date': '1569'}), ('B09125', 'G. L.', {'date': '1681'}), ('B22572', 'I. Leach', {'date': '1658'}), ('A18126', 'Thomas Snodham', {'date': '1616'}), ('A44069', 'H.H.', {'date': '1659'}), ('A21201', 'John Waylande', {'date': '1555'}), ('A21201', 'septenium', {'date': '1555'}), ('A06169', 'A. Jeffes', {'date': '1596'}), ('A16156', 'T. Cotes', {'date': '1635'}), ('A43097', 'A.', {'date': '1692'}), ('A43097', 'I. Dawks', {'date': '1692'}), ('A20495', 'Roger Daniel', {'date': '1638'}), ('A20495', 'Thomas Buck', {'date': '1638'}), ('A22245', 'Roger Wood', {'date': '1621'}), ('A22245', 'Thomas Symcocke', {'date': '1621'}), ('A08319', 'Augustine Mathewes', {'date': '1636'}), ('A00249', 'John Charlewood', {'date': '1588'}), ('A19877', 'Thomas Harper', {'date': '1630'}), ('B02189', 'the heirs and successors of Andrew Anderson', {'date': '1698'}), ('A36292', 'John Dawson', {'date': '1644'}), ('A45058', 'R. Everingham', {'date': '1690'}), ('A45058', 'T. Braddyll', {'date': '1690'}), ('B02834', 'Nathaniel Thompson', {'date': '1682'}), ('A08965', 'M.F.', {'date': '1639'}), ('A44898', 'Guillaume Street', {'date': '1685'}), ('A71139', 'the heir of Andrew Anderson', {'date': '1680'}), ('A74033', '. Richard Tottell, regii impressoris', {'date': '1570'}), ('A14352', 'William Seres', {'date': '1569'}), ('A92658', 'the heir of Andrew Anderson', {'date': '1687'}), ('A38629', 'Thomas Newcomb', {'date': '1653'}), ('A30839', 'A.G.', {'date': '1679'}), ('A30839', 'J.P.', {'date': '1679'}), ('A94731', 'H. Hils', {'date': '1652'}), ('A18844', 'Rouland Hall', {'date': '1561'}), ('A86094', 'M: Simmons', {'date': '1653'}), ('A43602', 'J.O.', {'date': '1641'}), ('A64379', 'the heirs and successors of Andrew Anderson', {'date': '1695'}), ('B05164', 'Successors of Andrew Anderson', {'date': '1696'}), ('B05164', 'the Heirs', {'date': '1696'}), ('A02402', 'Adam Islip', {'date': '1597'}), ('A12285', 'R. Copland', {'date': '1545'}), ('A06772', 'John Day', {'date': '1550'}), ('A22207', 'John Beale', {'date': '1619'}), ('A85160', 'Edward Jones', {'date': '1692'}), ('A06278', 'John VVolfe', {'date': '1595'}), ('A61073', 'J. C.', {'date': '1677'}), ('A28958', 'E.T.', {'date': '1681'}), ('A28958', 'R.H.', {'date': '1681'}), ('A78518', 'Francis Leach', {'date': '1646'}), ('A66262', "Charles Bill and the executrix of Thomas Newcomb deceas'd", {'date': '1692'}), ('A73956', 'Robert Barker', {'date': '1601'}), ('A94865', 'Sarah Griffin', {'date': '1660'}), ('A03949', 'Thomas Creede', {'date': '1595'}), ('A52226', 'E. Webster', {'date': '1689'}), ('A29477', 'T. Mabb', {'date': '1664'}), ('A21994', 'Robert Barker', {'date': '1603'}), ('A40549', 'N.T.', {'date': '1687'}), ('B05210', 'the heirs and successors of Andrew Anderson', {'date': '1694'}), ('B12844', 'Bonham Norton', {'date': '1622'}), ('B12844', 'John Bill', {'date': '1622'}), ('A44663', 'Robert Roberts', {'date': '1681'}), ('A53493', 'J.G.', {'date': '1656'}), ('A40823', 'T.N.', {'date': '1672'}), ('A78954', 'Leonard Lichfield', {'date': '1643'}), ('A66928', 'H. Brugus', {'date': '1685'}), ('A61882', 'R.N.', {'date': '1657'}), ('B23945', 'J.C.', {'date': '1659'}), ('A67240', 'Thomas Harper', {'date': '1641'}), ('A22455', 'Bonham Norton', {'date': '1627'}), ('A22455', 'John Bill', {'date': '1627'}), ('A22455', 'Printers to the Kings most Excellent Maiestie', {'date': '1627'}), ('B02731', 'A. Maxwell', {'date': '1680'}), ('A14957', 'Edward Griffin', {'date': '1619'}), ('A14957', 'Pauls-Churchyard', {'date': '1619'}), ('A32174', 'Henry Hills', {'date': '1682'}), ('A32174', 'Thomas Newcomb', {'date': '1682'}), ('A00932', 'Henrie Denham', {'date': '1580'}), ('A78342', 'T. Fawcet', {'date': '1642'}), ('A66291', 'Charles Bill, and the executrix of Thomas Newcomb', {'date': '1694'}), ('A35315', 'R.C.', {'date': '1642'}), ('A50049', 'A.M.', {'date': '1657'}), ('A87239', 'George Miller', {'date': '1644'}), ('A86527', 'W. Wilson', {'date': '1646'}), ('A18414', 'Thomas Harper', {'date': '1629'}), ('A09449', 'Felix Kyngston', {'date': '1607'}), ('A66678', 'F.L.', {'date': '1653'}), ('A68649', 'Henrie Middleton', {'date': '1578'}), ('A19803', 'John Kingston', {'date': '1578'}), ('A03064', 'William Stansby', {'date': '1631'}), ('A93779', 'Obediah Blagrave', {'date': '1690'}), ('A05291', 'Melchisedech Bradwood', {'date': '1603'}), ('A11375', 'J. Kingston', {'date': '1579'}), ('A45818', 'Thomas Leach', {'date': '1660'}), ('A05074', 'Thomas Orwin', {'date': '1588'}), ('A16209', 'Thomas Dawson', {'date': '1582'}), ('A12166', 'Elizabeth Purslowe', {'date': '1639'}), ('A12166', 'George Miller', {'date': '1639'}), ('A89196', 'J. R.', {'date': '1642'}), ('A21765', 'J. Bill', {'date': '1618'}), ('A21765', 'Richarde Iugge i.e. B. Norton', {'date': '1618'}), ('A76498', 'T.R.', {'date': '1660'}), ('A58493', 'J. Nutt', {'date': '1699'}), ('A16809', 'John Latius', {'date': '1565'}), ('A65706', 'J.D.', {'date': '1687'}), ('A54692', 'Thomas Newcomb', {'date': '1662'}), ('A04725', 'William Iaggard', {'date': '1605'}), ('A32091', 'George Larkin', {'date': '1697'}), ('A85533', 'M.S.', {'date': '1657'}), ('B21803', "Charles Bill, and the executrix of Thomas Newcomb, deceas'd", {'date': '1697'}), ('A77870', 'A.M.', {'date': '1649'}), ('A02884', 'Richarde Johnes', {'date': '1572'}), ('A47369', 'J.M.', {'date': '1685'}), ('A17221', 'T. Dawson', {'date': '1582'}), ('A39541', 'Joannes Field, apud quem prostant ad insigne septem Stellarum è regione Templi Dunstano sacri', {'date': '1658'}), ('B02193', 'Evan Tyler', {'date': '1644'}), ('A14462', 'John Day', {'date': '1565'}), ('A91431', 'J.M.', {'date': '1656'}), ('A25990', 'John Astwood', {'date': '1698'}), ('A22567', 'Robert Barker', {'date': '1633'}), ('A36424', 'Thomas Bennet', {'date': '1692'}), ('A01473', 'Bernard Alsop', {'date': '1623'}), ('A17384', 'Humfrey Lownes', {'date': '1623'}), ('A01637', 'And', {'date': '1640'}), ('A01637', 'Roger Daniel', {'date': '1640'}), ('A04995', 'E. Purslowe', {'date': '1635'}), ('A94327', 'Jane Coe', {'date': '1644'}), ('B05173', 'Andrew Anderson', {'date': '1673'}), ('B24754', 'Andrew Crook', {'date': '1691'}), ('A19586', 'George Purslowe', {'date': '1625'}), ('A26980', 'Robert White', {'date': '1657'}), ('A21701', 'John Cawood', {'date': '1569'}), ('A21701', 'Richarde Iugge', {'date': '1569'}), ('A09946', 'Christopher Barker', {'date': '1580'}), ('A95331', 'J. Flesher', {'date': '1652'}), ('A10050', 'Ioseph Barnes', {'date': '1608'}), ('A04893', 'William How:', {'date': '1571'}), ('A47392', 'T. Mabb;', {'date': '1665'}), ('A55527', 'T.W.', {'date': '1655'}), ('B20332', 'B. Alsop', {'date': '1641'}), ('B20332', 'R.W. And now', {'date': '1641'}), ('A85394', 'Matthew Simmons', {'date': '1647'}), ('A66746', 'R. Austin', {'date': '1643'}), ('A17186', 'Humfrey Powell', {'date': '1548'}), ('B02626', 'James Young', {'date': '1643'}), ('B24809', 'Andrew Crook', {'date': '1687'}), ('B24809', 'Samuel Helsham', {'date': '1687'}), ('A09377', 'Felix Kyngston', {'date': '1609'}), ('A95995', 'R. Hodgkinsonne', {'date': '1661'}), ('A19248', 'William Iones', {'date': '1621'}), ('A21655', 'T. Scarlet', {'date': '1594'}), ('A92479', 'Evan Tyler', {'date': '1669'}), ('A04459', 'Reginald Wolfe', {'date': '1564'}), ('A30068', 'T. Sowle', {'date': '1699'}), ('A92476', 'Evan Tyler', {'date': '1646'}), ('A40725', 'John Lock', {'date': '1673'}), ('A81112', 'J.C.', {'date': '1655'}), ('A37588', 'Robert Barkerand', {'date': '1641'}), ('A88854', 'F. Leach', {'date': '1650'}), ('A81133', 'Peter Cole', {'date': '1653'}), ('B07558', 'I.L.', {'date': '1634'}), ('A43666', 'Henry Hills', {'date': '1678'}), ('A07801', 'R. Field', {'date': '1618'}), ('A34033', 'His Majesties printer', {'date': '1673'}), ('A88922', '& J. Allen', {'date': '1696'}), ('A88922', 'B. Green', {'date': '1696'}), ('A56299', 'J. Heptinstall', {'date': '1691'}), ('A81580', 'Leonard Lichfield', {'date': '1643'}), ('A72113', 'G. Purslowe', {'date': '1629'}), ('A91853', 'J.C.', {'date': '1659'}), ('A13872', 'Richard Badger', {'date': '1637'}), ('A10054', 'impress.', {'date': '1542'}), ('A28913', 'Thomas Broad', {'date': '1655'}), ('A46904', 'John Hayes', {'date': '1670'}), ('A06510', 'J. Mychell', {'date': '1548'}), ('A03799', 'Thomas Payne', {'date': '1640'}), ('A29912', 'Thomas Roycroft', {'date': '1664'}), ('A11603', 'John Raworth', {'date': '1638'}), ('A39492', 'Charles Bill, and the executrix of Thomas Newcomb', {'date': '1697'}), ('A91537', 'J. Field', {'date': '1642'}), ('A91537', 'L. Norton', {'date': '1642'}), ('A60136', 'J. Heptinstall', {'date': '1700'}), ('A04550', 'W. White', {'date': '1603'}), ('A88859', 'J. Bradford', {'date': '1700'}), ('B00104', 'Edward Raban.', {'date': '1630'}), ('A49036', 'J. Flesher', {'date': '1657'}), ('A82248', 'John Hammond', {'date': '1642'}), ('A82248', 'Mathias Rhodes', {'date': '1642'}), ('A58280', 'N. Thompson', {'date': '1685'}), ('A63904', 'Henry Hills Junior', {'date': '1686'}), ('A67311', 'H. Hall', {'date': '1662'}), ('A19900', 'R. Bradock', {'date': '1606'}), ('A97170', 'Matthew Inman', {'date': '1661'}), ('A22646', 'Robert Barkerand', {'date': '1640'}), ('A88320', 'Francis Leach', {'date': '1654'}), ('A54714', 'A. Warren', {'date': '1661'}), ('A08496', 'R. Barker', {'date': '1617'}), ('A91785', 'Thomas Harper', {'date': '1645'}), ('A07119', 'John Daye', {'date': '1572'}), ('A15802', 'John Waylande', {'date': '1538'}), ('A90526', 'N. Thompson', {'date': '1684'}), ('A14979', 'the English College Press', {'date': '1624'}), ('A46069', 'VVilliam Bladen', {'date': '1644'}), ('A04605', 'William Iones', {'date': '1633'}), ('A17306', 'W. Iones', {'date': '1626'}), ('A88485', 'James Flesher', {'date': '1655'}), ('A43489', 'J. Macock', {'date': '1650'}), ('A62853', 'H. H.', {'date': '1683'}), ('A08534', 'Thomas Snodham', {'date': '1609'}), ('A09485', '. J. Wolfe', {'date': '1586'}), ('B05160', 'Evan Tyler', {'date': '1648'}), ('A12190', 'George Miller', {'date': '1639'}), ('A30070', 'Henry Walker', {'date': '1641'}), ('A85345', 'T.N.', {'date': '1650'}), ('A49628', 'N.T.', {'date': '1683'}), ('A26475', 'William Du-Gard', {'date': '1652'}), ('A26338', 'Samuel Bridge', {'date': '1696'}), ('A47607', 'George Larkin', {'date': '1681'}), ('A61318', 'N.T.', {'date': '1675'}), ('A61318', 'T.R.', {'date': '1675'}), ('A04145', 'Andro Hart', {'date': '1619'}), ('A55879', 'T.H.', {'date': '1681'}), ('B00785', 'the Printers to the Vniversity of Cambridge.', {'date': '1627'}), ('A20055', 'Nicholas Okes', {'date': '1620'}), ('B19203', 'Leonard Lichfield', {'date': '1643'}), ('A67203', 'Jane Coe', {'date': '1644'}), ('A44155', 'T. Fawcet', {'date': '1642'}), ('A63358', 'J. Leake', {'date': '1687'}), ('A11640', 'Robert Waldegraue', {'date': '1594'}), ('A46063', 'John Crook', {'date': '1662'}), ('A92843', 'R.B.', {'date': '1642'}), ('A48910', 'W.G.', {'date': '1672'}), ('A60825', 'F. Leach', {'date': '1685'}), ('A17630', 'me (Robert Wyer', {'date': '1545'}), ('B14669', 'Thomas Snodham', {'date': '1609'}), ('A94706', 'John Macock', {'date': '1660'}), ('A94706', 'John Streater', {'date': '1660'}), ('A39317', 'J.D.', {'date': '1677'}), ('A76774', 'J. Clowes', {'date': '1651'}), ('A52035', 'Edward Cole, printers and book-sellers', {'date': '1661'}), ('A52035', 'Peter Cole', {'date': '1661'}), ('A63277', 'Andrew Crook', {'date': '1683'}), ('A88472', 'Richard Cotes', {'date': '1648'}), ('A32618', 'Christopher Barker', {'date': '1665'}), ('A32618', 'John Bill', {'date': '1665'}), ('A64806', 'T. Ratcliffe', {'date': '1662'}), ('B09290', 'William Bladen', {'date': '1655'}), ('A60336', 'T.B.', {'date': '1645'}), ('A05567', 'Roger Warde', {'date': '1584'}), ('A34287', 'T.R.', {'date': '1661'}), ('A46032', 'Benjamin Tooke', {'date': '1678'}), ('A90668', 'Richard Heron', {'date': '1644'}), ('A02797', 'Felix Kyngston', {'date': '1600'}), ('B25055', 'Andrew Crook', {'date': '1689'}), ('B25055', 'Samuel Helsham', {'date': '1689'}), ('A87649', 'E.M.', {'date': '1646'}), ('A87649', 'T.R.', {'date': '1646'}), ('A63876', 'T.R.', {'date': '1676'}), ('A03420', 'I. Dawson', {'date': '1638'}), ('A86763', 'John Clowes', {'date': '1649'}), ('A87511', 'A. Lichfield', {'date': '1660'}), ('A16685', 'Edward Griffin. For R. Best or his', {'date': '1640'}), ('B14918', 'H. Middleton?', {'date': '1577'}), ('A62760', 'Andrew Crook', {'date': '1690'}), ('A62760', 'him', {'date': '1690'}), ('A77157', 'S. Griffin', {'date': '1659'}), ('A54477', 'T. Mabb', {'date': '1664'}), ('A70867', 'Thomas Ratcliff', {'date': None}), ('A32470', 'Henry Hills', {'date': '1680'}), ('A32470', 'John Bill', {'date': '1680'}), ('A32470', 'Thomas Newcomb', {'date': '1680'}), ('A84892', 'Barnard Alsop', {'date': '1646'}), ('A88285', 'A. Purslow', {'date': '1673'}), ('A21870', 'the deputies of Christopher Barker', {'date': '1591'}), ('A93462', 'G.B.', {'date': '1643'}), ('A93462', 'R.W.', {'date': '1643'}), ('A82472', 'John Field', {'date': '1653'}), ('B28216', 'H. Hills', {'date': '1687'}), ('A71341', 'John Macock', {'date': None}), ('A15140', 'Francis Raphelengius', {'date': '1586'}), ('A26621', 'Christopher Higgins', {'date': '1659'}), ('A13613', 'G. Miller', {'date': '1627'}), ('B02404', 'John Reid', {'date': '1691'}), ('A56560', 'J. Harefinch', {'date': '1682'}), ('A91527', 'John Hayes', {'date': '1692'}), ('A94317', 'Mathew Simmons', {'date': '1645'}), ('B02119', 'His Majesties printers', {'date': '1674'}), ('A32644', 'Christopher Barker', {'date': '1661'}), ('A32644', 'John Bill', {'date': '1661'}), ('A84455', 'Abel Roper', {'date': '1660'}), ('A84455', 'Thomas Collins', {'date': '1660'}), ('A96131', 'A. N.', {'date': '1642'}), ('B14576', 'W. Iaggard', {'date': '1621'}), ('A26083', 'Leonard Lichfield', {'date': '1643'}), ('A04411', 'John Beale', {'date': '1613'}), ('A28938', 'Thomas Snowden', {'date': '1680'}), ('A09061', 'F. Bellet', {'date': '1606'}), ('B05670', 'the heir of Andrew Anderson', {'date': '1690'}), ('A22251', 'Bonham Norton', {'date': '1621'}), ('A22251', 'John Bill', {'date': '1621'}), ('B29229', 'George Croom', {'date': '1686'}), ('A65261', 'Samuel Broun', {'date': '1651'}), ('A88582', 'Robert Wood', {'date': '1651'}), ('A67828', 'J. Wallis', {'date': '1683'}), ('B03903', 'Robert. White.', {'date': '1658'}), ('A57105', 'R. Baldwin', {'date': '1687'}), ('A42261', 'J. Redmayne', {'date': None}), ('A42261', 'Jun.', {'date': None}), ('A75123', 'Thomas Jones', {'date': '1700'}), ('A78178', 'I.B. Gent.', {'date': '1642'}), ('A96725', 'J.G.', {'date': '1657'}), ('A49059', 'James Flesher', {'date': '1657'}), ('A22450', 'Bonham Norton', {'date': '1627'}), ('A22450', 'John Bill', {'date': '1627'}), ('A46876', 'T. H.', {'date': '1685'}), ('A17171', 'Iohan Mayler', {'date': '1543'}), ('A61472', 'Evan Tyler', {'date': '1652'}), ('A09583', 'John Charlewood', {'date': '1578'}), ('A29052', 'W. G.', {'date': '1674'}), ('A31491', 'Leonard Lichfield', {'date': '1644'}), ('A92666', 'the heir of Andrew Anderson', {'date': '1683'}), ('A48213', 'B. Motte', {'date': '1696'}), ('A36017', 'E. Flesher', {'date': '1678'}), ('A96416', 'Thomas Snowden;', {'date': '1684'}), ('A61709', 'J.W.', {'date': '1671'}), ('A21704', 'John Cawood', {'date': '1569'}), ('A21704', 'Richarde Iugge', {'date': '1569'}), ('A01383', 'Ihon Windet', {'date': '1584'}), ('A01383', 'Thomas Iudson', {'date': '1584'}), ('A94880', 'John Brent', {'date': '1692'}), ('A92856', 'D. Maxwel', {'date': '1660'}), ('A83388', 'Robert Ibbitson', {'date': '1649'}), ('A48628', 'Thomas Newcomb', {'date': '1659'}), ('A69906', 'Thomas Broad', {'date': '1645'}), ('A51257', 'R.I.', {'date': '1657'}), ('A01242', 'Thomas Creede', {'date': '1613'}), ('A33284', 'Joseph Collier', {'date': '1680'}), ('A48792', 'J.B.', {'date': '1660'}), ('B05400', 'the heirs and successors of Andrew Anderson', {'date': '1694'}), ('A26785', 'J.D.', {'date': '1677'}), ('A46195', 'John Crook', {'date': '1662'}), ('A88381', 'R.I.', {'date': None}), ('A58609', 'Evan Tyler', {'date': '1648'}), ('A77425', 'Thomas Newcomb', {'date': '1653'}), ('A46373', 'Abraham Miller', {'date': '1654'}), ('A46373', 'John Legat', {'date': '1654'}), ('A96786', 'F: Neile', {'date': '1653'}), ('A00189', 'J. Kingston', {'date': '1584'}), ('A45325', 'R.I.', {'date': '1656'}), ('A57159', 'James Cottrel', {'date': '1669'}), ('A21714', 'John Cawood i.e. B. Norton', {'date': '1618'}), ('A21714', 'J. Bill', {'date': '1618'}), ('A21714', 'Richarde Iugge', {'date': '1618'}), ('A46105', 'Benjamin Tooke', {'date': '1676'}), ('A92617', 'John Field', {'date': '1648'}), ('A00635', 'Robert Waldegraue', {'date': '1592'}), ('A43714', 'T. Sowle', {'date': '1693'}), ('A14713', 'John Kyng', {'date': '1560'}), ('A94350', 'Henry Hills', {'date': '1654'}), ('B07675', 'Robert Walde-Graut', {'date': '1583'}), ('A08445', 'John Day', {'date': '1551'}), ('A39485', 'Bartholomew Green', {'date': '1699'}), ('A39485', 'John Allen', {'date': '1699'}), ('A01431', 'John Haviland', {'date': '1627'}), ('A73324', 'R.H.', {'date': '1639'}), ('A13135', 'Wynandum de Worde', {'date': '1515'}), ('A62759', 'the heir of Andrew Anderson', {'date': '1690'}), ('A95058', 'Evan Tyler', {'date': '1644'}), ('A12470', 'W.W.', {'date': '1608'}), ('A44576', 'S.R.', {'date': '1678'}), ('A11579', 'Thomas Snodham ex typographia Societatis Stationariorum', {'date': '1620'}), ('A04779', 'P. Auroi', {'date': '1621'}), ('A09500', 'Richard Badger', {'date': '1635'}), ('A09500', 'Thomas Cotes', {'date': '1635'}), ('A21099', 'Thomas Snodham ', {'date': '1610'}), ('A52648', 'H.H.', {'date': '1649'}), ('A67920', 'W. Jaggard', {'date': '1612'}), ('A41781', 'J.D.', {'date': '1688'}), ('A20917', 'Iames Roberts', {'date': '1604'}), ('A88322', 'Robert Ibbitson', {'date': '1654'}), ('A10508', 'John Haviland', {'date': '1635'}), ('A46972', 'L. N.', {'date': '1642'}), ('A02572', 'Adam Islip', {'date': '1617'}), ('A02572', 'Edward Blount', {'date': '1617'}), ('A85014', 'T.H.', {'date': '1646'}), ('A19285', 'N.O.', {'date': '1615'}), ('A68187', 'Henry Denham', {'date': '1571'}), ('B20591', 'Benjamin Motte', {'date': '1692'}), ('A15046', 'H. Middleton', {'date': '1576'}), ('B14334', 'John Hauiland', {'date': '1628'}), ('A46547', 'Henry Hills', {'date': '1685'}), ('A46547', 'Thomas Newcomb', {'date': '1685'}), ('A78179', 'W. Wilson', {'date': '1646'}), ('A23771', 'J. Flesher', {'date': '1667'}), ('A02881', 'J. Kingston', {'date': '1579'}), ('A53762', 'John Pricton', {'date': '1652'}), ('A15690', 'J. Dawson', {'date': '1628'}), ('A70254', 'H. Wallis', {'date': '1687'}), ('A18320', 'Christopher Barker', {'date': '1583'}), ('A63952', 'Thomas Ratcliffe', {'date': '1666'}), ('A20021', 'Peter Short', {'date': '1599'}), ('A55637', 'T.B.', {'date': '1684'}), ('A13563', 'John Charlewoode', {'date': '1588'}), ('A13563', 'VVilliam Broome', {'date': '1588'}), ('A54321', 'Ralph Wood', {'date': '1661'}), ('A93071', 'Henry Ribotteau, libraires en Salisbury Buildings dans le Strand', {'date': '1696'}), ('A93071', 'la Veuve Marret', {'date': '1696'}), ('A27156', 'the author, to bee presented to the high court of Parliament', {'date': '1641'}), ('A38314', 'Henry Hills', {'date': '1679'}), ('A38314', 'John Bill', {'date': '1679'}), ('A38314', 'Thomas Newcomb', {'date': '1679'}), ('A09529', 'Thomas Purfoot', {'date': '1599'}), ('A95988', 'William Du-Gard', {'date': '1653'}), ('B01248', 'John Bill', {'date': '1620'}), ('B01248', 'Robert Barker', {'date': '1620'}), ('A72208', 'Robert Walde-graue', {'date': '1595'}), ('A01285', 'Rouland Hall', {'date': '1563'}), ('A19270', 'H. Middleton', {'date': '1580'}), ('B05737', 'the heir of Andrew Anderson', {'date': '1693'}), ('A36570', 'Randal Taylor', {'date': '1691'}), ('A62907', 'John Richardson', {'date': '1680'}), ('A51029', 'Thomas Mabb', {'date': '1665'}), ('B27879', 'Edward Jones', {'date': '1691'}), ('A68674', 'me Wynkyn de Worde', {'date': '1510'}), ('B17091', 'Anthony Peisley', {'date': '1699'}), ('B17091', 'George West', {'date': '1699'}), ('A49535', 'L. Lichfield', {'date': '1685'}), ('A84663', 'Ridibundus', {'date': '1643'}), ('A63641', 'R. Norton', {'date': '1675'}), ('A53440', 'William Bladen', {'date': '1643'}), ('A61669', 'Henry Hull', {'date': '1667'}), ('A53453', 'J.C.', {'date': '1662'}), ('B05656', 'the heir of Andrew Anderson', {'date': '1690'}), ('A87554', 'Th. Maxey', {'date': '1652'}), ('A08274', 'M. Flesher', {'date': '1625'}), ('A87160', 'J.M.', {'date': '1656'}), ('A63040', 'J.M. and published', {'date': '1685'}), ('A63040', 'Randal Taylor', {'date': '1685'}), ('B09428', 'James Flesher', {'date': '1654'}), ('A66209', "Charles Bill and the executrix of Thomas Newcomb, deceas'd", {'date': '1696'}), ('A55239', 'Elizabeth Whitlock', {'date': '1696'}), ('A33007', 'Henry Hills', {'date': '1685'}), ('A33007', 'Thomas Newcomb', {'date': '1685'}), ('A21465', 'Richarde Pynson', {'date': '1517'}), ('A55498', 'William Godbid', {'date': '1657'}), ('A56381', 'W. Hall', {'date': '1666'}), ('A02547', 'John Pindley', {'date': '1613'}), ('A07484', 'E. Allde', {'date': '1600'}), ('B01982', 'T. Sowle', {'date': '1697'}), ('B05198', 'the heir of Andrew Anderson', {'date': '1690'}), ('A03590', 'John Windet', {'date': '1604'}), ('B16048', 'G. Purslowe', {'date': '1620'}), ('A80980', 'Henry Hills', {'date': '1655'}), ('A80980', 'John Field', {'date': '1655'}), ('A19576', 'Iohannis Daij', {'date': '1571'}), ('A77501', 'S. Griffin', {'date': '1659'}), ('A70095', 'John Bringhurst', {'date': '1682'}), ('A33411', 'Henry Hills', {'date': '1686'}), ('A38170', 'M.S.', {'date': '1642'}), ('A38170', 'T.P.', {'date': '1642'}), ('A06810', 'James Short', {'date': '1619'}), ('A06810', 'John Lichfield', {'date': '1619'}), ('A55460', 'Th. Dawks', {'date': '1679'}), ('A20054', 'W. Jaggard', {'date': '1608'}), ('A03469', 'Nicholas Okes', {'date': '1625'}), ('A68487', 'I. Charlewood', {'date': '1588'}), ('A50469', 'T. Warren', {'date': '1693'}), ('A90874', 'John Reid', {'date': '1694'}), ('A28815', 'B. Alsop', {'date': '1651'}), ('A66807', 'John Hayes', {'date': '1677'}), ('A66286', 'Charles Bill', {'date': '1694'}), ('A66286', 'Thomas Newcomb', {'date': '1694'}), ('A96553', 'the heir of Andrew Anderson', {'date': '1691'}), ('A32338', 'Henry Hills', {'date': '1684'}), ('A32338', 'Thomas Newcomb', {'date': '1684'}), ('A32338', 'the Assigns of John Bill, and', {'date': '1684'}), ('A21493', 'Edwardum VVhitchurch.', {'date': '1541'}), ('A21493', 'Richardum Grafton', {'date': '1541'}), ('A15576', 'Martin Abraham vander Nolck', {'date': '1622'}), ('A49796', 'J.S.', {'date': '1662'}), ('B05097', 'D. Maxwell', {'date': '1661'}), ('A04911', 'Adam Islip', {'date': '1603'}), ('A20679', 'N. Okes', {'date': '1610'}), ('A15484', 'Richard Badger', {'date': '1639'}), ('A06982', 'G. Eld', {'date': '1622'}), ('A19078', 'N. Okes', {'date': '1607'}), ('A19078', 'R. Raworth', {'date': '1607'}), ('A81247', 'E. M.', {'date': '1660'}), ('A51911', 'M.F.', {'date': '1648'}), ('A15108', 'Henry Bynneman', {'date': '1578'}), ('A73786', 'M.F.', {'date': '1624'}), ('A28572', 'J. A.', {'date': '1682'}), ('A32031', 'Leonard Lichfield', {'date': '1642'}), ('A06990', 'J. Allde', {'date': '1570'}), ('B10132', 'J. Bradford', {'date': '1697'}), ('A04212', 'Richard Schilders', {'date': '1612'}), ('A90706', 'E.M.', {'date': '1652'}), ('A90706', 'T.R.', {'date': '1652'}), ('B24843', 'Andrew Crook', {'date': '1686'}), ('B24843', 'Samuel Helsham', {'date': '1686'}), ('A00718', 'J. Stroud', {'date': '1572'}), ('A05689', 'the successors of G. Thorp', {'date': '1625'}), ('A88479', 'Richard Cotes', {'date': '1649'}), ('A06350', 'Thomas Godfray', {'date': '1535'}), ('A40408', 'command of authority', {'date': '1693'}), ('A82082', 'E.M.', {'date': '1649'}), ('A82082', 'T.R.', {'date': '1649'}), ('A19408', 'John Legat', {'date': '1624'}), ('A30700', 'Peter Lillicrap', {'date': '1668'}), ('A30694', 'Roger Daniel', {'date': '1647'}), ('A93294', 'James Cottrel', {'date': '1660'}), ('A45319', 'Nathaniel Butter', {'date': '1641'}), ('A75315', 'Bernard Alsop', {'date': '1644'}), ('A79640', 'I.Bell', {'date': '1654'}), ('A96565', "Charles Bill, and the Executrix of Thomas Newcomb, deceas'd", {'date': None}), ('A11063', 'Augustine Mathewes', {'date': '1630'}), ('A50368', 'Moses Bell', {'date': '1647'}), ('A22266', 'Bonham Norton', {'date': '1621'}), ('A22266', 'John Bill', {'date': '1621'}), ('A76081', 'John Macock', {'date': '1645'}), ('A35650', 'T. Newcomb', {'date': '1668'}), ('A61222', 'Ralph Simpson', {'date': '1695'}), ('A54349', 'N.T.', {'date': '1687'}), ('A53057', 'Thomas Roycroft', {'date': '1653'}), ('A57066', 'T.C.', {'date': '1654'}), ('B24835', 'Andrew Crook', {'date': '1692'}), ('A91413', 'T. F.', {'date': '1642'}), ('A14665', 'John Windet', {'date': '1607'}), ('A80756', 'T.R.', {'date': '1661'}), ('A83830', 'John Field', {'date': '1649'}), ('A17315', 'W. Stansby', {'date': '1620'}), ('A08958', 'A. Mathewes', {'date': '1635'}), ('A08958', 'the Sarafens head', {'date': '1635'}), ('A08081', 'me Robert wyer', {'date': '1532'}), ('A55996', 'T. Sowle', {'date': '1692'}), ('A57529', 'Th. Harper', {'date': '1642'}), ('A59766', 'E. Flesher', {'date': '1677'}), ('A56449', 'W. Godbid', {'date': '1672'}), ('A04928', 'A. Rebul', {'date': '1558'}), ('A04928', 'J. Poullain', {'date': '1558'}), ('A54913', 'Vincent Du Moutier', {'date': '1666'}), ('A96258', 'J.G.', {'date': '1656'}), ('A80971', 'A.M.', {'date': '1652'}), ('A72490', 'Richard Grafton', {'date': '1552'}), ('A36385', 'Henry Hall', {'date': '1644'}), ('A18920', 'W. White', {'date': '1608'}), ('A18921', 'N. Okes', {'date': '1608'}), ('A14418', 'Henrie Taylor', {'date': '1624'}), ('A58989', 'J.W.', {'date': '1661'}), ('A91478', 'Henry Hall', {'date': '1659'}), ('B24953', 'Andrew Crook', {'date': '1689'}), ('B24953', 'Samuel Helsham', {'date': '1689'}), ('A57233', 'Samuel Green', {'date': '1679'}), ('A60593', 'J.G.', {'date': '1657'}), ('A01831', 'Edwarde whitchurche', {'date': '1550'}), ('A66261', 'Charles Bill', {'date': '1690'}), ('A66261', 'Thomas Newcomb', {'date': '1690'}), ('A48839', 'A.C.', {'date': '1672'}), ('A32202', 'Henry Hills', {'date': '1686'}), ('A81705', 'Thomas Newcomb', {'date': '1654'}), ('A91861', 'Thomas Maxey', {'date': '1651'}), ('A14926', 'Robert Walde-graue', {'date': '1602'}), ('B14944', 'George Veseler', {'date': '1621'}), ('A09164', 'Richard Grafton', {'date': '1548'}), ('A66258', 'Charles Bill', {'date': '1690'}), ('A66258', 'Thomas Newcomb', {'date': '1690'}), ('A92007', 'M.S.', {'date': '1645'}), ('A77357', 'Peter Cole', {'date': '1649'}), ('A12817', 'J. Okes', {'date': '1640'}), ('A12817', 'Thomas Cotes?', {'date': '1640'}), ('A17048', 'Felix Kingston', {'date': '1598'}), ('A53302', 'M.C.', {'date': '1684'}), ('A02663', 'Robert Caly', {'date': '1556'}), ('A14498', 'John Legat', {'date': '1634'}), ('A46177', 'Benjamin Tooke', {'date': '1683'}), ('A46177', 'John Crooke', {'date': '1683'}), ('B07634', 'B. A.', {'date': '1640'}), ('A63828', 'H. H.', {'date': '1678'}), ('A60948', 'Thomas Newcomb', {'date': '1666'}), ('A07544', 'William Hall', {'date': '1612'}), ('A69306', 'Thomas Berthelet', {'date': '1546'}), ('A68325', 'Ihon Day', {'date': '1548'}), ('A68325', 'the lytle Conduyte', {'date': '1548'}), ('A25820', 'T.B.', {'date': '1686'}), ('A92405', 'David Lindsay.', {'date': '1681'}), ('A42172', 'H.B.', {'date': '1660'}), ('A62862', 'R.R.', {'date': '1698'}), ('B24951', 'Andrew Crook', {'date': '1689'}), ('B24951', 'Samuel Helsham', {'date': '1689'}), ('A49439', 'B.G.', {'date': '1673'}), ('A49439', 'S.G.', {'date': '1673'}), ('A86549', 'J.G.', {'date': '1655'}), ('A70453', 'W.L.', {'date': '1673'}), ('A57656', 'James Young', {'date': '1645'}), ('A61456', 'John Field', {'date': '1661'}), ('A61603', 'Robert White', {'date': '1667'}), ('A06215', 'Richard Jugge', {'date': '1564'}), ('A70390', 'W. Bowyer', {'date': '1700'}), ('A87972', 'B.A', {'date': '1648'}), ('A02630', 'John Bogard', {'date': '1564'}), ('A96526', 'R.W.', {'date': '1648'}), ('A85699', 'A.M.', {'date': '1652'}), ('A87634', 'A. Coe and published according to order', {'date': '1644'}), ('A00665', 'Johannis Legatt, celeberrimæ Academiæ Cantabrigiensis typographi', {'date': '1592'}), ('A29715', 'VV. L.', {'date': '1656'}), ('A07877', 'Raph Blower', {'date': '1603'}), ('A16281', 'Henry Sutton', {'date': '1555'}), ('A16281', 'Ihon Kingstone', {'date': '1555'}), ('A92584', 'John Field', {'date': '1645'}), ('A60776', 'E. Whitlock', {'date': '1698'}), ('A90649', 'Roger Vaughan', {'date': '1662'}), ('A37016', 'J. Playford', {'date': '1684'}), ('A47162', 'W. Bradford', {'date': '1692'}), ('A37210', 'James Cottrel', {'date': '1661'}), ('A29570', 'G.D.', {'date': '1642'}), ('A29570', 'R.O.', {'date': '1642'}), ('A06078', 'Francis Coldocke', {'date': '1577'}), ('A06078', 'Henry Bynneman', {'date': '1577'}), ('A63849', 'R.D.', {'date': '1666'}), ('B05600', 'the heir of Andrew Anderson', {'date': '1678'}), ('A29532', 'S. Griffin', {'date': '1659'}), ('A11100', 'R. Blower', {'date': '1615'}), ('A90749', 'Peter Cole, printer and', {'date': '1664'}), ('B25222', 'A. Purslow', {'date': '1674'}), ('A12141', 'Thomas Cotes', {'date': '1640'}), ('A04556', 'E. Allde?', {'date': '1597'}), ('A02053', 'Thomas Creede', {'date': '1604'}), ('A59331', 'George Croom', {'date': '1684'}), ('A40586', 'Elizabeth Mallet', {'date': '1684'}), ('A86552', 'B. Alsop', {'date': '1645'}), ('A86552', 'J. Coe.', {'date': '1645'}), ('A31677', 'H. Hills', {'date': '1684'}), ('A31677', 'Jun.', {'date': '1684'}), ('A67479', 'J. Winter', {'date': '1669'}), ('A38788', 'W. Godbid', {'date': '1661'}), ('A46974', 'T. Mabb', {'date': '1665'}), ('A02796', 'Felix Kingston', {'date': '1598'}), ('B09308', 'Henry Hills', {'date': '1682'}), ('A00499', 'Simon Stafford', {'date': '1600'}), ('B26231', 'R. Royston', {'date': '1649'}), ('A52200', 'Bartholomew Green', {'date': '1695'}), ('A52200', 'John Allen', {'date': '1695'}), ('A19361', 'Thomas Purfoote', {'date': '1575'}), ('A16151', 'Melchisedech Bradwood', {'date': '1604'}), ('B13066', 'Robert Barker printer of the Kings most excellent Maiestie: and', {'date': '1633'}), ('A07881', 'Lud-gate', {'date': '1582'}), ('A07881', 'Thomas Vautroullier', {'date': '1582'}), ('A48982', 'James Flesher', {'date': '1656'}), ('A32555', 'Christopher Barker', {'date': '1666'}), ('A32555', 'John Bill', {'date': '1666'}), ('A75647', 'Richard Cotes', {'date': '1646'}), ('A56902', 'T. Snowden', {'date': '1691'}), ('A80315', 'E.M.', {'date': '1684'}), ('A08964', 'Henry Denham', {'date': '1570'}), ('A37089', 'Thomas Johnson', {'date': '1661'}), ('A79893', 'Abraham Miller', {'date': '1653'}), ('B24487', 'John Gibson', {'date': '1643'}), ('A45419', 'J. Flesher', {'date': '1654'}), ('A73575', 'Richard Field', {'date': '1589'}), ('A94739', 'Henry Hills, next door to the sign of the Peacock', {'date': '1659'}), ('B12798', 'Bonham Norton', {'date': '1618'}), ('B12798', 'John Bill, deputie printers', {'date': '1618'}), ('A02457', 'Ioseph Barnes', {'date': '1591'}), ('A06663', 'Ihon Daye', {'date': '1549'}), ('A30561', 'Robert Wilson', {'date': '1660'}), ('A84180', 'Matthew Simmons', {'date': '1648'}), ('B05471', 'the heir of Andrew Anderson', {'date': '1688'}), ('A11245', 'Henry Sutton', {'date': '1562'}), ('A11117', 'Edward Allde', {'date': '1605'}), ('A82541', 'John Field, printed to the Parliament of England', {'date': '1652'}), ('A81199', 'M. Simmons', {'date': '1655'}), ('A11016', 'J. Kynge', {'date': '1557'}), ('A01622', 'Adam Islip Ioice Norton', {'date': '1633'}), ('A01622', 'Richard Whitakers', {'date': '1633'}), ('A12996', 'G. Eld', {'date': '1610'}), ('B24693', 'command of the Generall Assembly', {'date': '1648'}), ('A30015', 'William Bradford', {'date': '1692'}), ('A66283', 'Charles Bill', {'date': '1690'}), ('A66283', 'Thomas Newcomb', {'date': '1690'}), ('A45831', 'T.M.', {'date': '1664'}), ('A45885', 'T.R.', {'date': '1677'}), ('A86851', 'R.W.', {'date': '1651'}), ('A96004', 'H. Hills', {'date': '1692'}), ('A61837', 'A. Maxwell', {'date': '1676'}), ('B18963', 'Robert Barker and', {'date': '1643'}), ('A06569', 'William Caxton', {'date': '1477'}), ('A03550', 'Thomas Hacket', {'date': '1566'}), ('A03389', 'Thomas Creede', {'date': '1604'}), ('A35099', 'T. N.', {'date': '1671'}), ('A97901', 'me Wynkyn de Worde', {'date': '1528'}), ('A66195', "Charles Bill, and the executrix of Thomas Newcomb, deceas'd;", {'date': '1697'}), ('A89976', 'J.D.', {'date': '1690'}), ('A33727', 'For Nathanael Webb', {'date': '1661'}), ('A33727', 'James Cottrel', {'date': '1661'}), ('A57981', 'J.G.', {'date': '1658'}), ('A29681', 'M.S.', {'date': '1662'}), ('A67021', 'John Crowch', {'date': '1653'}), ('A67021', 'Thomas Wilson', {'date': '1653'}), ('B05868', 'John Reid', {'date': '1682'}), ('A52653', 'Thomas Newcomb', {'date': '1673'}), ('A55139', 'A.G.', {'date': '1688'}), ('A10147', 'W. How', {'date': '1578'}), ('B05316', 'the heir of Andrew Anderson', {'date': '1693'}), ('A66712', 'A.M.', {'date': '1663'}), ('A00415', 'Iames Roberts', {'date': '1603'}), ('A06698', 'me John̄ Mayler', {'date': '1542'}), ('A49705', 'A.M.', {'date': '1649'}), ('A04629', 'John Davvson', {'date': '1623'}), ('A64790', 'J. Darby', {'date': '1685'}), ('A60867', 'George Croom', {'date': '1683'}), ('B14440', 'Henrie Middleton', {'date': '1580'}), ('A96328', 'G. Miller', {'date': '1645'}), ('A09950', 'W. Iones', {'date': '1630'}), ('A08182', 'Felix Kingston', {'date': '1607'}), ('A19242', 'William Iones', {'date': '1625'}), ('A36975', 'T.N.', {'date': '1677'}), ('A05280', 'Nicholas Okes', {'date': '1609'}), ('A01948', 'George Eld', {'date': '1623'}), ('A79730', 'Robert Ibbitson', {'date': '1648'}), ('A50273', 'John Crook', {'date': '1667'}), ('A94574', 'James Cottrel', {'date': '1657'}), ('A26872', 'R.W.', {'date': '1658'}), ('A70487', 'Samuel Roycroft', {'date': '1682'}), ('A29583', 'John Patte', {'date': '1657'}), ('A29583', 'Thomas Fievet', {'date': '1657'}), ('A22702', 'Egidius van der Erve', {'date': '1556'}), ('A87942', 'Robert Ibbitson', {'date': '1648'}), ('A51839', 'J.D.', {'date': '1679'}), ('A66284', 'Charles Bill', {'date': '1691'}), ('A66284', 'Thomas Newcomb', {'date': '1691'}), ('A07787', 'Ioseph Barnes', {'date': '1612'}), ('A67358', 'William Bladen', {'date': '1659'}), ('A67358', 'special order', {'date': '1659'}), ('A50786', 'J.C.', {'date': '1679'}), ('A58417', 'Adrian Vlack', {'date': '1660'}), ('A02148', 'Edward Griffin', {'date': '1638'}), ('A68130', 'Melch. Bradwood', {'date': '1608'}), ('A09386', 'F. Kingston', {'date': '1606'}), ('A02591', 'I. Haviland', {'date': '1624'}), ('A76202', 'A.M.', {'date': '1654'}), ('A12102', 'John Dawson', {'date': '1640'}), ('A30679', 'Henry Hills', {'date': '1685'}), ('A30679', 'Jun.', {'date': '1685'}), ('A92620', 'Evan Tyler', {'date': '1662'}), ('A01707', 'Alexander Lacie', {'date': '1570'}), ('A71031', 'W. Godbid', {'date': '1667'}), ('A78535', 'the heir of Andrew Anderson', {'date': '1693'}), ('A78725', 'Leonard Lichfield', {'date': '1643'}), ('B05696', 'the heirs and successors of Andrew Anderson', {'date': '1695'}), ('A26805', 'J.D.', {'date': '1683'}), ('A16927', 'I. Okes', {'date': '1640'}), ('A85657', 'F.B.', {'date': '1647'}), ('B12736', 'Robert Barker', {'date': '1606'}), ('A53246', 'T.M.', {'date': '1660'}), ('A15976', 'Cornelis Gerritis van Breughel', {'date': '1632'}), ('A33821', 'J. Heptinstall', {'date': '1698'}), ('A42701', 'John Astwood', {'date': '1699'}), ('A13158', 'R. Bradock', {'date': '1606'}), ('B00572', 'Richard Serll', {'date': '1565'}), ('A21218', 'Richard Field', {'date': '1593'}), ('A19925', 'Richard Field', {'date': '1599'}), ('A81215', 'J.B.', {'date': '1651'}), ('A38056', 'Robert Barkerand', {'date': '1642'}), ('A03244', 'E. Allde', {'date': '1608'}), ('A12303', 'T. Orwin', {'date': '1589'}), ('A51388', 'B.B.', {'date': '1695'}), ('A51388', 'J.M.', {'date': '1695'}), ('B24956', 'Andrew Crook', {'date': '1689'}), ('A09237', 'Felix Kyngston', {'date': '1617'}), ('A81235', 'J.M.', {'date': '1652'}), ('A46460', 'Thomas Newcomb', {'date': '1687'}), ('A45499', 'N. Howell', {'date': '1664'}), ('A22520', 'John Bill', {'date': '1629'}), ('A22520', 'Robert Barker', {'date': '1629'}), ('B27767', 'T. F.', {'date': '1642'}), ('A94867', 'T. F.', {'date': '1642'}), ('A84689', 'John Macock', {'date': '1648'}), ('A19608', 'Thomas Este', {'date': '1608'}), ('A86513', 'Thomas Newcomb', {'date': '1651'}), ('A07090', 'Humphrey Lownes', {'date': '1629'}), ('A18210', 'John Mogar', {'date': '1604'}), ('A18210', 'the English secret press', {'date': '1604'}), ('A46214', 'John Crooke', {'date': '1663'}), ('A50397', 'Thomas Snowden', {'date': '1680'}), ('A08474', 'I.H.', {'date': '1634'}), ('A14830', 'Felix Kingston', {'date': '1601'}), ('A96564', "Charles Bill, and the Executrix of Thomas Newcomb, deceas'd", {'date': None}), ('A21194', 'Eduardus Aldaus', {'date': '1618'}), ('A60455', 'Samuel Darker', {'date': '1698'}), ('A60455', 'Samuel Farley', {'date': '1698'}), ('A08666', 'W. Stansby', {'date': '1627'}), ('A82727', 'A.N.', {'date': '1642'}), ('A21746', 'John Cawood', {'date': '1570'}), ('A21746', 'Richard Iugge', {'date': '1570'}), ('B05374', 'Andrew Anderson', {'date': '1672'}), ('A79357', 'the heir of Andrew Anderson', {'date': '1681'}), ('A16904', 'M. Flesher', {'date': '1627'}), ('A20173', 'Richard Field', {'date': '1619'}), ('A12016', 'William Stansby', {'date': '1631'}), ('A71094', 'J. Bradford', {'date': '1696'}), ('B05592', 'the heirs and successors of Andrew Anderson', {'date': '1698'}), ('A08234', 'me John Skot', {'date': '1529'}), ('A03326', 'Thomas Marshe', {'date': '1574'}), ('A74504', 'Henry Hills', {'date': '1654'}), ('A74504', 'William du-Gard', {'date': '1654'}), ('A44087', 'J.H.', {'date': '1693'}), ('B20123', 'Christopher Barker', {'date': '1663'}), ('B20123', 'John Bill', {'date': '1663'}), ('A30858', 'W. Godbid', {'date': '1657'}), ('A65082', 'R.H.', {'date': '1643'}), ('B22998', 'Benjamin Tooke', {'date': '1680'}), ('B22998', 'John Crooke', {'date': '1680'}), ('A29168', 'Thomas Newcomb', {'date': '1685'}), ('A53025', 'William Bradford', {'date': '1693'}), ('A10345', 'John Wolfe impensis Geor. Bishop', {'date': '1584'}), ('A17142', 'G. Eld', {'date': '1622'}), ('A02203', 'Thomas Marshe', {'date': '1568'}), ('B20181', 'T.N.', {'date': '1676'}), ('A44164', 'L. Lichfield', {'date': '1668'}), ('A58639', 'the heirs and successors of Andrew Anderson', {'date': '1695'}), ('A63178', 'Thomas James', {'date': '1681'}), ('A83625', 'R. Cotes', {'date': '1648'}), ('A83625', 'R. Raworth', {'date': '1648'}), ('A63229', 'W.G.', {'date': '1664'}), ('B29289', 'VVilliam Godbid', {'date': '1657'}), ('A15692', 'Edward Allde', {'date': '1605'}), ('A01655', 'William Stansby', {'date': '1610'}), ('A19320', 'me Wyllyam Copland', {'date': '1565'}), ('A00122', 'John Cawood', {'date': '1561'}), ('A00122', 'Richard Iugge', {'date': '1561'}), ('B21719', 'Christopher Barker', {'date': '1664'}), ('B21719', 'John Bill', {'date': '1664'}), ('A85813', 'James Flesher', {'date': '1651'}), ('A48403', 'F.L', {'date': '1693'}), ('B07995', 'Felix Kyngston', {'date': '1603'}), ('A20161', 'G. Miller', {'date': '1626'}), ('A14424', 'Augustine Mathewes', {'date': '1627'}), ('A37055', 'I.R.', {'date': '1641'}), ('A93339', 'T.R.', {'date': '1660'}), ('A69170', 'Thomas Harper', {'date': '1630'}), ('A69170', 'Michael Sparke', {'date': '1630'}), ('B27684', 'Thomas Johnson', {'date': '1670'}), ('A13438', 'R. Bishop?', {'date': '1640'}), ('A23645', 'J. Cotterel', {'date': '1674'}), ('B05669', 'Evan Tyler', {'date': '1666'}), ('A25300', 'T. Milbourn', {'date': '1695'}), ('A33338', 'Thomas Ratcliff', {'date': '1659'}), ('A01443', 'E. Allde', {'date': '1611'}), ('A33229', 'their own appointment', {'date': '1649'}), ('B02077', 'Stephen Bulkley', {'date': '1665'}), ('A65567', 'Robert Ibbitson', {'date': '1647'}), ('A21914', 'the Deputies of Christopher Barker', {'date': '1595'}), ('A22609', 'Robert Barker', {'date': '1636'}), ('A91773', 'John Ratkliffe', {'date': '1661'}), ('A86818', 'Richard Cotes', {'date': '1648'}), ('A59154', 'E. Tyler', {'date': '1655'}), ('A13444', 'Nicholas Okes', {'date': '1613'}), ('A62412', 'Evan Tyler', {'date': '1670'}), ('A04576', 'T. Haueland', {'date': '1609'}), ('A30241', 'Abraham Miller', {'date': '1656'}), ('A29756', 'T.J.', {'date': '1661'}), ('A46582', 'Charles Bill', {'date': '1685'}), ('A46582', 'Henry Hills', {'date': '1685'}), ('A46582', 'Thomas Newcomb', {'date': '1685'}), ('A91476', 'J.G.', {'date': '1660'}), ('B00055', 'John Okes', {'date': '1637'}), ('A26975', 'T. Snowden', {'date': '1691'}), ('A41462', 'J.M.', {'date': '1684'}), ('A19306', 'H. Iackson', {'date': '1581'}), ('B03765', 'William Downing', {'date': '1683'}), ('B09119', 'Robert Barker', {'date': '1641'}), ('B09119', 'the Assignes of John Bill', {'date': '1641'}), ('A44920', 'G.M.', {'date': '1665'}), ('A57477', 'M. Symmons', {'date': '1647'}), ('A46524', 'Charles Bill', {'date': '1688'}), ('A46524', 'Henry Hills', {'date': '1688'}), ('A46524', 'Thomas Newcomb', {'date': '1688'}), ('A12793', 'Nicholas Okes', {'date': '1611'}), ('A18375', 'T. Snodham', {'date': '1613'}), ('B12699', 'Robert Barker', {'date': '1603'}), ('A49462', 'J.D.', {'date': '1674'}), ('A04055', 'William Copland', {'date': '1561'}), ('A88461', 'Richard Cotes', {'date': '1646'}), ('B15156', 'Thomas Cotes', {'date': '1638'}), ('A61377', 'W.R.', {'date': '1668'}), ('A78081', 'Andrew Coe, and published accordeng sic to Order', {'date': '1644'}), ('A73942', 'John Cawood:', {'date': '1564'}), ('A73942', 'Rycharde Jugge', {'date': '1564'}), ('A16913', 'John Lion i.e. Greenstreet House Press', {'date': '1580'}), ('A33605', 'J. Lock', {'date': '1673'}), ('A44693', 'S. Bridge', {'date': '1698'}), ('A18303', 'Andro Hart', {'date': '1618'}), ('A90123', 'R. Wilks', {'date': '1660'}), ('A46447', 'D. Mallet', {'date': '1687'}), ('A20185', 'Thomas Snodham', {'date': '1613'}), ('A82212', 'Robert Ibbitson', {'date': '1648'}), ('A86136', 'Thomas Ratcliffe', {'date': '1661'}), ('A58787', 'M. Clark', {'date': '1681'}), ('A29334', 'T. N. pour Will. Nott', {'date': '1670'}), ('A01532', 'John Legat', {'date': '1624'}), ('B03415', 'Jun.', {'date': '1690'}), ('B03415', 'Richard Cheese', {'date': '1690'}), ('A04966', 'John Wolfe', {'date': '1590'}), ('A21270', 'Thomas Colvvell', {'date': '1569'}), ('A21938', 'the deputies of Christopher Barker', {'date': '1599'}), ('A20066', 'Thomas Creede', {'date': '1612'}), ('A22192', 'VVilliam Seres', {'date': '1572'}), ('A19667', 'R. Grafton', {'date': '1551'}), ('A73775', 'Wynkyn de Worde', {'date': '1507'}), ('A87334', 'Andrew Crook', {'date': '1695'}), ('A59195', 'J.M.', {'date': '1658'}), ('A86366', 'the Royal Exchange', {'date': '1653'}), ('A29635', 'T.R.', {'date': '1653'}), ('A68193', 'John Legatt', {'date': '1625'}), ('A00522', 'J. Cawood', {'date': '1562'}), ('A54573', 'B. Walford', {'date': '1703'}), ('A54573', 'S. Smith', {'date': '1703'}), ('A30352', 'T.H.', {'date': '1679'}), ('A69234', 'Felix Kyngston', {'date': '1608'}), ('A69234', 'T. East', {'date': '1608'}), ('A46129', 'John Crooke', {'date': '1663'}), ('B05509', 'the heir of Andrew Anderson', {'date': '1692'}), ('A94762', 'T.W.', {'date': '1649'}), ('B11957', 'W. Iones', {'date': '1632'}), ('A89655', 'William Beale', {'date': '1689'}), ('A13479', 'Edward Griffin', {'date': '1614'}), ('A12202', 'Thomas Paine', {'date': '1640'}), ('A57667', 'T.C.', {'date': '1655'}), ('B13958', 'I. Wolfe', {'date': '1590'}), ('A46012', 'Andrew Crook', {'date': '1690'}), ('A31403', 'J.D.', {'date': '1681'}), ('B06151', 'Evan Tyler', {'date': '1650'}), ('B16402', 'Thomas Harper', {'date': '1634'}), ('A94255', 'John Redmayne.', {'date': '1659'}), ('A43983', 'J.C.', {'date': '1678'}), ('A45590', 'Joannis Macock', {'date': '1658'}), ('B05250', 'Evan Tyler', {'date': '1645'}), ('A02586', 'Thomas Harper', {'date': '1637'}), ('A12689', 'George Eld', {'date': '1623'}), ('A09831', 'F. Kingston', {'date': '1610'}), ('B06353', 'the heir of Andrew Anderson', {'date': '1687'}), ('A12924', 'Rychard Tottel', {'date': '1567'}), ('A87938', 'L. Lichfield', {'date': '1643'}), ('A05962', 'A. Griffin', {'date': '1637'}), ('B12801', 'Bonham Norton', {'date': '1619'}), ('B12801', 'John Bill', {'date': '1619'}), ('B26659', 'John Foster', {'date': '1675'}), ('B28468', 'Thomas Newcomb', {'date': '1658'}), ('A04546', 'me Peter congeth i.e. J. Hoochstraten', {'date': '1535'}), ('A34759', 'Thomas Roycroft', {'date': '1653'}), ('A33299', 'A.M.', {'date': '1665'}), ('A73472', 'Thomas Harper', {'date': '1636'}), ('A21794', 'Christopher Barker', {'date': '1579'}), ('A18431', 'Richard Johnes', {'date': '1595'}), ('A14631', 'Iosephus Barnesius', {'date': '1608'}), ('A56274', 'J.M.', {'date': '1679'}), ('A04321', 'Edward Griffin', {'date': '1618'}), ('A72993', 'M.D.', {'date': '1635'}), ('A37015', 'Thomas Cross', {'date': '1698'}), ('B19160', 'Leonard Lichfield', {'date': '1643'}), ('A09763', 'Adam Islip', {'date': '1634'}), ('A32615', 'Christopher Barker', {'date': '1665'}), ('A32615', 'John Bill', {'date': '1665'}), ('A03404', 'Simon Stafford', {'date': '1605'}), ('A94160', 'T.M.', {'date': '1653'}), ('A18322', 'Thomas Vautroullerius', {'date': '1584'}), ('A68252', 'John Legatt', {'date': '1633'}), ('A38495', 'J.H.', {'date': '1698'}), ('A04260', 'Robert Walde-graue', {'date': '1591'}), ('A58604', 'Evan Tyler', {'date': '1643'}), ('B07964', "Eliot's Court Press?", {'date': '1624'}), ('A52943', 'Langley Curtis', {'date': '1682'}), ('A15579', 'Martin Abraham vander Nolck', {'date': '1621'}), ('A77489', 'C. Lucas, demeurant dans les Black-Fryers, auprès de la Riviere, vis-à-vis la Couronne', {'date': '1697'}), ('A85480', 'Henry Hall', {'date': '1660'}), ('A10692', 'Rouland Hall', {'date': '1563'}), ('A32431', 'Christopher Barker', {'date': '1664'}), ('A32431', 'John Bill', {'date': '1664'}), ('A01382', 'VV. VVhite', {'date': '1600'}), ('A46197', 'Benjamin Tooke', {'date': '1677'}), ('A85064', 'W.D.', {'date': '1650'}), ('A36873', 'Thomas Broad', {'date': '1656'}), ('A74998', 'J.M.', {'date': '1653'}), ('A61693', 'T. Sowle', {'date': '1698'}), ('A04224', 'John Bill', {'date': '1616'}), ('A04224', 'Robert Barker', {'date': '1616'}), ('B02224', 'the heir of Andrew Anderson', {'date': '1679'}), ('A34766', 'A.M.', {'date': '1689'}), ('A39397', 'L. Lichfield', {'date': '1642'}), ('A62418', 'N.T.', {'date': '1684'}), ('A15631', 'Augustine Mathewes', {'date': '1635'}), ('B14421', 'L. Kellam', {'date': '1609'}), ('A87181', 'G. Dawson', {'date': '1649'}), ('A21397', 'T. East', {'date': '1608'}), ('A93383', 'Barnard Alsop', {'date': '1641'}), ('A40019', 'Leonard Lichfield', {'date': '1643'}), ('A65764', 'Matth. Simmons', {'date': '1645'}), ('A17891', 'Thomas East', {'date': '1583'}), ('A36097', 'W.G.', {'date': '1670'}), ('A61955', 'E. Crowch', {'date': '1669'}), ('A83557', 'Robert Ibbitson', {'date': '1647'}), ('A16260', 'T. Colwell?', {'date': '1565'}), ('B05625', 'the Heir of Andrew Anderson', {'date': '1694'}), ('A04790', 'J. Charlewood and Richard Ihones', {'date': '1581'}), ('A18162', 'Robart Walley', {'date': '1583'}), ('A78611', 'J. Brudenell', {'date': '1699'}), ('A58640', 'Evan Tyler', {'date': '1661'}), ('B25188', 'Andrew Crook', {'date': '1689'}), ('B25188', 'Samuel Helsham', {'date': '1689'}), ('B07739', 'Iean Wolfe.', {'date': '1590'}), ('A39500', 'Charles Bill, and the executrix of Thomas Newcomb', {'date': '1696'}), ('A19218', 'Edward Allde', {'date': '1590'}), ('A10588', 'Edward Allde', {'date': '1599'}), ('A37884', 'Leonard Lichfield', {'date': '1644'}), ('A87841', 'I.D.', {'date': '1646'}), ('A31473', 'Henry Hills', {'date': '1686'}), ('A01502', 'P. Short', {'date': '1595'}), ('A82286', 'R. Cotes', {'date': '1646'}), ('A28468', 'Thomas Newcomb', {'date': '1670'}), ('B07593', 'me Roberte Redman.', {'date': '1540'}), ('A04374', 'Augustine Mathewes', {'date': '1625'}), ('A04374', 'John Norton', {'date': '1625'}), ('A21799', 'Christopher Barker', {'date': '1580'}), ('A73459', 'Thomas Cotes', {'date': '1636'}), ('A13472', 'John Beale', {'date': '1630'}), ('A51394', 'R. Norton', {'date': '1661'}), ('A09661', 'Wyllyam Seres.', {'date': '1561'}), ('A86498', 'Thomas Roycroft', {'date': '1650'}), ('A77402', 'H. Hall', {'date': '1644'}), ('A14577', 'Henrie Denham', {'date': '1584'}), ('A01811', 'A. Islip', {'date': '1630'}), ('A01811', 'W. Stansby', {'date': '1630'}), ('A48377', 'Thomas Newcomb', {'date': '1670'}), ('A40493', 'Matthew Simmons', {'date': '1647'}), ('A47709', 'Peter Messchaert', {'date': '1675'}), ('B00011', 'Cantrell Legge.', {'date': '1613'}), ('A50872', 'J. Hays', {'date': '1694'}), ('A15298', 'Ioseph Barnes', {'date': '1608'}), ('A62891', 'E.C.', {'date': '1661'}), ('A28683', 'Andrew Clark', {'date': '1676'}), ('A56159', 'L. Parry', {'date': '1660'}), ('A56159', 'T. Childe', {'date': '1660'}), ('A96764', 'J.C.', {'date': '1655'}), ('A20950', 'Augustine Mathewes', {'date': '1631'}), ('A09880', 'G. Eld', {'date': '1606'}), ('A81535', 'M. S.', {'date': '1642'}), ('A81535', 'T. P.', {'date': '1642'}), ('A80849', 'T. Fawcet', {'date': '1660'}), ('A20394', 'Anthony Scoloker', {'date': '1548'}), ('A20394', 'Willyam Seres. Dwellyng wythout Aldersgate.', {'date': '1548'}), ('A81083', '1650. But not permitted to be publick till now', {'date': '1660'}), ('A81083', 'R. Wood', {'date': '1660'}), ('A56718', 'John Astwood', {'date': '1695'}), ('A71324', 'Richard Bradock', {'date': '1599'}), ('A40995', 'R. Cotes', {'date': '1641'}), ('B00327', 'Robert Barker', {'date': '1633'}), ('B00327', 'the Assignes of John Bill.', {'date': '1633'}), ('B20856', 'Henry Hills', {'date': '1656'}), ('B20856', 'John Field', {'date': '1656'}), ('A37558', 'John Field', {'date': '1653'}), ('A88388', 'Henry Hall', {'date': '1660'}), ('A74560', 'Henry Hills', {'date': '1654'}), ('A74560', 'William du-Gard', {'date': '1654'}), ('A04223', 'William Jaggard?', {'date': '1601'}), ('A22342', 'Bonham Norton', {'date': '1624'}), ('A22342', 'John Bill', {'date': '1624'}), ('A22342', 'Printers to the Kings most Excellent Maiestie', {'date': '1624'}), ('A66487', 'B.W.', {'date': '1683'}), ('A20026', 'E. Short', {'date': '1604'}), ('A63281', 'George Croom', {'date': '1686'}), ('B06376', 'David. Mallet.', {'date': '1680'}), ('A87173', 'R. Cotes', {'date': '1645'}), ('A04157', 'Thomas Purfoot', {'date': '1603'}), ('A11269', 'Richard Johnes', {'date': '1595'}), ('A87752', 'Charles Bill, and the executrix of Thomas Newcomb deceased', {'date': '1695'}), ('A13485', 'Edward All-de', {'date': '1618'}), ('A79435', 'R.I.', {'date': '1659'}), ('A97348', 'John Foster', {'date': '1677'}), ('A40758', 'E.T.', {'date': '1682'}), ('A40758', 'R.H.', {'date': '1682'}), ('A40617', 'George Croom', {'date': '1684'}), ('A26159', 'E. Mallet', {'date': '1685'}), ('A96104', 'J.C.', {'date': '1661'}), ('A26893', 'T.C.', {'date': '1655'}), ('A44573', 'T.S.', {'date': '1678'}), ('A88081', 'James', {'date': '1647'}), ('A88081', 'Joseph Moxon', {'date': '1647'}), ('A19447', 'J. Danter', {'date': '1594'}), ('A07223', 'T. Creede', {'date': '1609'}), ('A44052', 'R. Daniel', {'date': '1650'}), ('A86226', 'Jo. Dever', {'date': '1646'}), ('A86226', 'Robert Ibbitson', {'date': '1646'}), ('A70392', 'John Field', {'date': '1668'}), ('B07515', 'Valentine Simmes.', {'date': '1601'}), ('A28462', 'M. Clark', {'date': None}), ('A87640', 'William Du-gard', {'date': '1650'}), ('A21083', 'R. Read', {'date': '1603'}), ('A80238', 'William Bladen', {'date': '1654'}), ('A06975', 'Nicholas Okes', {'date': '1608'}), ('A19044', "Eliot's Court Press", {'date': '1623'}), ('A60033', 'Randal Taylor', {'date': '1689'}), ('B05912', 'Gedeon Lithgow', {'date': '1650'}), ('A38745', 'J. T.', {'date': '1659'}), ('A17969', 'William Iones', {'date': '1618'}), ('A25809', 'W.G.', {'date': '1659'}), ('A45851', 'Samuell Broun', {'date': '1649'}), ('A91423', 'William Godbid', {'date': '1663'}), ('A34069', 'William Godbid', {'date': '1662'}), ('A94474', 'Felix Kingston', {'date': '1642'}), ('A70480', 'James Flesher', {'date': '1660'}), ('A08912', 'Isaac Iaggard', {'date': '1617'}), ('B08158', 'Jo. Beale', {'date': '1616'}), ('A74434', 'Edward Husband', {'date': '1650'}), ('A74434', 'John Field', {'date': '1650'}), ('A05302', 'Thomam Orwinum, typographum', {'date': '1589'}), ('B02735', 'Leonard Parry', {'date': '1662'}), ('B02735', 'Tho Childe', {'date': '1662'}), ('A90172', 'Edward Jones', {'date': '1692'}), ('A81514', 'Leonard Lichfield', {'date': '1645'}), ('B03870', 'the heir of Andrew Anderson', {'date': '1688'}), ('A44213', 'J.M.', {'date': '1653'}), ('B05234', 'Evan Tyler', {'date': '1665'}), ('A54191', 'Andrew Sowle', {'date': '1685'}), ('A76073', 'Edward Husband', {'date': '1650'}), ('A76073', 'John Field', {'date': '1650'}), ('A05177', 'Iobn sic Wreittoun', {'date': '1629'}), ('A58210', 'E.G.', {'date': '1642'}), ('B06462', 'R. Everingham', {'date': '1680'}), ('A37575', 'Edward Husband', {'date': '1649'}), ('A37575', 'John Field', {'date': '1649'}), ('A01784', 'Thomas Berthelet', {'date': '1532'}), ('A84690', 'T. Maxey', {'date': '1655'}), ('A10877', 'the widow of C. Boscard', {'date': '1630'}), ('B09867', 'Roger Norton', {'date': '1661'}), ('A03834', 'Richardus Field', {'date': '1605'}), ('A29433', 'Evan Tyler', {'date': '1644'}), ('A17054', 'R. Field', {'date': '1598'}), ('A04548', 'Edward Allde', {'date': '1605'}), ('A85335', 'M.S.', {'date': '1642'}), ('A85335', 'T.P.', {'date': '1642'}), ('B31133', 'R. Cotes', {'date': '1644'}), ('A66267', "Charles Bill and the executrix of Thomas Newcomb deceas'd", {'date': '1693'}), ('A01760', 'W. Christiaens', {'date': '1637'}), ('B21027', 'Baltazar Bellere', {'date': '1663'}), ('A35086', 'Christopher Higgins', {'date': '1658'}), ('A38207', 'Robert Barker', {'date': '1641'}), ('A03852', 'William Iaggard', {'date': '1607'}), ('A24772', 'E.M.', {'date': '1684'}), ('A46563', 'Charles Bill', {'date': '1687'}), ('A46563', 'Henry Hills', {'date': '1687'}), ('A46563', 'Thomas Newcomb', {'date': '1687'}), ('A95453', 'Robert Ibbitson', {'date': '1647'}), ('A13331', 'Ioseph Barnes', {'date': '1591'}), ('A13331', 'London', {'date': '1591'}), ('A13331', 'R. Robinson', {'date': '1591'}), ('A26561', 'M. D.', {'date': '1670'}), ('A26561', 'T. R.', {'date': '1670'}), ('A48584', 'T. Sowle', {'date': '1700'}), ('A42667', 'H. Bruges', {'date': '1674'}), ('A47361', 'the author', {'date': '1691'}), ('A48081', 'Christopher Higgins', {'date': '1659'}), ('A18747', 'Felix Kingston', {'date': '1579'}), ('A52741', 'T. James', {'date': '1687'}), ('A72754', 'Robert Barker', {'date': '1636'}), ('A12475', 'Giles Thorp', {'date': '1607'}), ('A20977', 'Richard Bradocke', {'date': '1599'}), ('A74866', 'Robert', {'date': '1652'}), ('A74866', 'William Leybourn', {'date': '1652'}), ('A04069', 'H. Lownes', {'date': '1628'}), ('A55811', 'J. Darby, viz. one third part, and fourth (now first printed', {'date': '1672'}), ('A96523', 'A. Lichfield', {'date': '1660'}), ('A96523', 'H.H. ', {'date': '1660'}), ('A96523', 'W.H.', {'date': '1660'}), ('A33688', 'J.C.', {'date': '1675'}), ('B26176', 'Samuel Roycroft', {'date': '1700'}), ('A40610', 'the heir of Andrew Anderson', {'date': '1685'}), ('A59048', 'H.', {'date': '1648'}), ('A42320', 'J.M.', {'date': '1676'}), ('A00301', 'H. Bynneman', {'date': '1567'}), ('A21685', 'John Cawood:', {'date': '1565'}), ('A21685', 'Rycharde Iugge', {'date': '1565'}), ('A66343', 'Samuel Darker', {'date': '1698'}), ('A73033', 'J. Dawson', {'date': '1639'}), ('A01092', 'John Haviland', {'date': '1629'}), ('A22346', 'Bonham Norton', {'date': '1625'}), ('A22346', 'John Bill', {'date': '1625'}), ('A77556', 'I. L.', {'date': '1642'}), ('A20020', 'John Daye', {'date': '1577'}), ('A47810', 'M. Clark', {'date': '1679'}), ('A43912', 'T. Leach', {'date': '1669'}), ('A07510', 'Edward All-de', {'date': '1621'}), ('A18017', 'John Windet', {'date': '1606'}), ('A01568', 'I. Stell?', {'date': '1583'}), ('A01568', 'Richard Iones', {'date': '1583'}), ('A11253', 'John Windet', {'date': '1607'}), ('A04930', 'Thomas Dawson', {'date': '1580'}), ('A20957', 'A. Mathews', {'date': '1623'}), ('A21480', '. Cum priuilegio', {'date': '1534'}), ('B16652', 'W.G.', {'date': '1670'}), ('A58751', 'the heir of Andrew Anderson', {'date': '1679'}), ('A77358', 'Peter Cole', {'date': '1649'}), ('A00136', 'John Bill', {'date': '1621'}), ('A74093', 'Richard Cotes', {'date': '1647'}), ('A47333', 'J.H.', {'date': '1694'}), ('A34962', 'Thomas Johnson', {'date': '1662'}), ('A20303', 'Henry Denham', {'date': '1568'}), ('A13341', 'Thomas Orwin', {'date': '1590'}), ('A03241', 'R. Oulton', {'date': '1637'}), ('A84367', 'M.S.', {'date': '1652'}), ('A02953', 'John VVoolfe', {'date': '1589'}), ('A80886', 'Robert Ibbiston', {'date': '1649'}), ('A80886', 'William Bladen and re-printed', {'date': '1649'}), ('A10090', 'John Windet', {'date': '1603'}), ('A43837', 'J.P.', {'date': '1685'}), ('A14163', 'John Wolfe', {'date': '1588'}), ('A60951', 'H. Hall', {'date': '1679'}), ('A84291', 'E.M.', {'date': '1655'}), ('A84291', 'T.R.', {'date': '1655'}), ('A37593', 'Christopher Barker', {'date': '1660'}), ('A37593', 'John Bill', {'date': '1660'}), ('A96536', 'T.R.', {'date': '1660'}), ('B06081', 'Robert Sanders', {'date': '1698'}), ('A82105', 'Robert Ibbitson', {'date': '1648'}), ('A22087', 'Robert Barker', {'date': '1613'}), ('A53241', 'the author', {'date': '1676'}), ('A77243', 'Henry Hall', {'date': '1659'}), ('A28312', 'T.H.', {'date': '1642'}), ('A55970', 'George Croom', {'date': '1688'}), ('A32839', 'T.F.', {'date': '1681'}), ('A33120', 'James Brown', {'date': '1651'}), ('A44342', 'Peter Cole', {'date': '1656'}), ('B09030', 'Charles Bill', {'date': '1690'}), ('B09030', 'Thomas Newcomb', {'date': '1690'}), ('A63831', 'S.G.', {'date': '1672'}), ('A08913', 'R. Cotes', {'date': '1630'}), ('A08913', 'R. Young', {'date': '1630'}), ('A51249', 'Matthew Symmons', {'date': '1647'}), ('A91805', 'John Hancock', {'date': '1646'}), ('A52051', 'Richard Cotes', {'date': '1644'}), ('A02835', 'Iames Short', {'date': '1624'}), ('A02835', 'John Lichfield', {'date': '1624'}), ('A82352', 'John Field', {'date': '1653'}), ('B02110', 'Evan Tyler', {'date': '1665'}), ('A57855', 'George Mosman', {'date': '1694'}), ('A04851', 'Ioseph Barnes', {'date': '1607'}), ('A95904', 'T. Sowle', {'date': '1697'}), ('A27250', 'Matthew Simmons', {'date': '1650'}), ('A34976', 'Charles Bill and the executrix of Thomas Newcomb', {'date': '1699'}), ('A06607', 'T. East', {'date': '1580'}), ('A19443', 'G. Simson', {'date': '1596'}), ('A19443', 'W. White', {'date': '1596'}), ('A35751', 'J. Moxon', {'date': '1697'}), ('A03058', 'Roger Daniel', {'date': '1633'}), ('A03058', 'Thom. Buck', {'date': '1633'}), ('A46623', 'W. Onley', {'date': '1698'}), ('A02949', 'Thomas Vautrollier', {'date': '1576'}), ('A49000', 'Samuel Roycraft', {'date': '1684'}), ('A95883', 'T. Mabb', {'date': '1660'}), ('A16634', 'N. Okes', {'date': '1614'}), ('A51278', 'J.D.', {'date': '1694'}), ('A45191', 'Richard Baldwin', {'date': '1683'}), ('A47276', 'George Croom', {'date': '1685'}), ('A79937', 'J.Y.', {'date': '1647'}), ('A13840', 'Thomas Snodham', {'date': '1611'}), ('A44073', 'H. Hall', {'date': '1658'}), ('A72733', 'Christopher Barker', {'date': '1586'}), ('A06447', 'Iames Roberts', {'date': '1598'}), ('A36102', 'E. Cotes', {'date': '1656'}), ('A84744', 'Jane Coe.', {'date': '1645'}), ('A78646', 'Robert Barker', {'date': '1642'}), ('A78646', 'the Assignes of John Bill', {'date': '1642'}), ('A32399', 'Christopher Barker', {'date': '1660'}), ('A32399', 'John Bill', {'date': '1660'}), ('A46558', 'Charles Bill', {'date': '1687'}), ('A46558', 'Henry Hills', {'date': '1687'}), ('A46558', 'Thomas Newcomb', {'date': '1687'}), ('A89734', 'John Field', {'date': '1648'}), ('A80896', 'Henry Hills', {'date': '1658'}), ('A80896', 'John Field', {'date': '1658'}), ('B05307', 'the heir of Andrew Anderson', {'date': '1685'}), ('A62869', 'Henry Hills', {'date': '1654'}), ('A90537', 'William Du-Gard', {'date': '1651'}), ('A30644', 'B. Alsop', {'date': '1641'}), ('A95898', 'Thomas Ienner', {'date': '1646'}), ('A12609', 'John Windet', {'date': '1603'}), ('A29149', 'John Foster', {'date': '1678'}), ('A57355', 'G. Croom', {'date': '1692'}), ('A68435', 'Bernard Alsop', {'date': '1632'}), ('A68435', 'Thomas Fawcet', {'date': '1632'}), ('A80991', 'Henry Hills', {'date': '1653'}), ('A05049', 'Thomas Marshe', {'date': '1565'}), ('A17420', 'Iames Robertes', {'date': '1595'}), ('A17420', 'Richarde Watkins', {'date': '1595'}), ('A83920', 'Francis Tyton', {'date': '1660'}), ('A83920', 'John Macock', {'date': '1660'}), ('A53640', 'Andrew Clark', {'date': '1672'}), ('A86455', 'J. F.', {'date': '1642'}), ('B08995', 'T. Sowle', {'date': '1700'}), ('A12496', 'Reynolde Wolfe', {'date': '1547'}), ('A86793', 'Robert Barker', {'date': '1642'}), ('A86793', 'the Assignes of John Bill', {'date': '1642'}), ('B09419', 'Henry Hills', {'date': '1653'}), ('B22447', 'Christopher Barker', {'date': '1661'}), ('B22447', 'John Bill', {'date': '1661'}), ('A66483', 'Leonard Sowersby', {'date': '1661'}), ('A87203', 'Thomas Newcomb', {'date': '1660'}), ('A11156', 'John Dawson', {'date': '1632'}), ('A33689', 'W.G.', {'date': '1662'}), ('A49529', 'Leonard Lichfield', {'date': '1641'}), ('A05142', 'Jhon Day', {'date': '1549'}), ('A05142', 'the sp--e? Conduyte', {'date': '1549'}), ('A04474', 'Henry VVykes', {'date': '1565'}), ('A48056', 'order of Father Penn', {'date': '1688'}), ('B05744', 'the heir of Andrew Anderson', {'date': '1696'}), ('A08772', 'Nicholas Okes', {'date': '1608'}), ('A50187', 'Samuel Green', {'date': '1684'}), ('B25195', 'Thomas Newcomb', {'date': '1686'}), ('A20499', 'F. Kingston', {'date': '1621'}), ('A66699', 'Thomas Mabb', {'date': '1665'}), ('A50982', 'T. Dawks', {'date': '1680'}), ('A44969', 'Peter Lillicrap', {'date': '1660'}), ('A80577', 'J. Astwood', {'date': '1690'}), ('A11746', 'John Wreittoun?', {'date': '1638'}), ('A63503', 'R.B.', {'date': '1642'}), ('A69606', 'Stephen Bulkley', {'date': '1669'}), ('A45772', 'Robert White', {'date': '1664'}), ('A67201', 'J.M.', {'date': '1672'}), ('A46245', 'Thomas Wilson', {'date': '1657'}), ('A11082', 'Leonard Lichfield', {'date': '1637'}), ('A08241', 'William Hill remayning', {'date': '1548'}), ('A08241', 'him to be solde', {'date': '1548'}), ('A51163', 'Thomas Mabb', {'date': '1665'}), ('A58754', 'the heir of Andrew Anderson', {'date': '1678'}), ('A46066', 'Benjamin Tooke', {'date': '1677'}), ('A51769', 'H.C.', {'date': '1690'}), ('A11763', 'James Bryson i.e. Richt Right Press', {'date': '1639'}), ('A04551', 'G. Eld', {'date': '1612'}), ('B09199', 'John Whitlock', {'date': '1693'}), ('A51700', 'N.T.', {'date': '1672'}), ('A51700', 'T.R.', {'date': '1672'}), ('A01185', 'John Bill', {'date': '1619'}), ('A32535', 'Christopher Barker', {'date': '1665'}), ('A32535', 'John Bill', {'date': '1665'}), ('A54015', 'T. Sowle', {'date': '1696'}), ('A65667', 'J.D.', {'date': '1682'}), ('A86493', 'S.G.', {'date': '1654'}), ('A84447', 'Henry Hills', {'date': '1659'}), ('A84447', 'John Field', {'date': '1659'}), ('A12982', 'Felix Kyngston', {'date': '1610'}), ('A62206', 'Randal Taylor', {'date': '1693'}), ('A92655', 'the heir of Andrew Anderson', {'date': '1693'}), ('A45434', 'J.G.', {'date': '1650'}), ('A76177', 'R.W.', {'date': '1658'}), ('A76177', 'Thomas Brewster', {'date': '1658'}), ('A52804', 'T.H.', {'date': '1680'}), ('A54505', 'John Macock', {'date': '1650'}), ('B05139', 'Iames Brown', {'date': '1656'}), ('A08694', 'thomas Petyt', {'date': '1538'}), ('A80399', 'C.S.', {'date': '1650'}), ('B14975', 'T. Harper?', {'date': '1640'}), ('A13844', 'Ian Fredericksz Stam.', {'date': '1629'}), ('A12131', 'Elizabeth Allde', {'date': '1633'}), ('A21894', 'the deputies of Christopher Barker', {'date': '1592'}), ('A05458', 'Richard Bradocke', {'date': '1598'}), ('A20865', 'John Charlewood', {'date': '1578'}), ('A21003', 'Felix Kingston', {'date': '1598'}), ('B13102', 'Robert Barker', {'date': '1636'}), ('A47456', 'J.M.', {'date': '1650'}), ('A66947', 'Evan Tyler', {'date': '1651'}), ('A21680', 'John Cawood', {'date': '1565'}), ('A21680', 'Rycharde Iugge', {'date': '1565'}), ('A07428', 'Robert Walde-graue', {'date': '1597'}), ('A08826', 'Thomas Paine', {'date': '1635'}), ('A08826', 'William Iones', {'date': '1635'}), ('A66263', 'Charles Bill, and the executrix of Thomas Newcomb', {'date': '1692'}), ('A22494', 'Bonham Norton', {'date': '1628'}), ('A22494', 'John Bill', {'date': '1628'}), ('A68028', 'Richard Bankes', {'date': '1540'}), ('A13432', 'Elizabeth Allde', {'date': '1630'}), ('A03193', 'John Beale', {'date': '1631'}), ('A06248', 'Robert Young', {'date': '1630'}), ('A14100', 'William How', {'date': '1574'}), ('A20507', 'John Dawson', {'date': '1638'}), ('A21911', 'the deputies of Christopher Barker', {'date': '1595'}), ('B19285', 'Andrew Anderson', {'date': '1673'}), ('A87005', 'G. Dawson', {'date': '1658'}), ('B09013', 'John Macock', {'date': '1659'}), ('B09013', 'John Streater', {'date': '1659'}), ('B05428', 'the heirs and successors of Andrew Anderson', {'date': '1694'}), ('A85513', 'John Macock', {'date': '1650'}), ('A32912', 'S.G. to be', {'date': '1657'}), ('B00424', 'Hillebrant Iacobson', {'date': '1622'}), ('A30880', 'Cave Pullen', {'date': '1685'}), ('A86079', 'Francis Leach', {'date': '1653'}), ('A71188', 'W.W.', {'date': None}), ('A33848', 'T. Warren', {'date': '1693'}), ('A48917', 'E.G.', {'date': '1643'}), ('A52249', 'R.W.', {'date': '1660'}), ('B05314', 'the heir of Andrew Anderson', {'date': '1690'}), ('A61175', 'J. Macock', {'date': '1678'}), ('A34582', 'Thomas Roycroft', {'date': '1655'}), ('A32578', 'Christopher Barker', {'date': '1662'}), ('A32578', 'John Bill', {'date': '1662'}), ('A03479', 'Thomas Marshe', {'date': '1575'}), ('B05711', 'the heir of Andrew Anderson', {'date': None}), ('A11604', 'Ioseph Barnes', {'date': '1612'}), ('A21653', 'John Cawood', {'date': '1563'}), ('A21653', 'Rycharde Iugge', {'date': '1563'}), ('A90719', 'James. Watson.', {'date': '1695'}), ('A14092', 'G. Miller', {'date': '1632'}), ('A13916', 'E. Allde', {'date': '1599'}), ('B05615', 'the heirs and successors of Andrew Anderson', {'date': '1697'}), ('A31921', 'Leonard Lichfield', {'date': '1643'}), ('A42850', 'J.C.', {'date': '1665'}), ('A95858', 'Thomas Fawcet', {'date': '1642'}), ('A32933', 'Leonard Lichfield', {'date': '1676'}), ('A63140', 'Joseph Ray', {'date': '1681'}), ('A62395', 'R.C.', {'date': '1651'}), ('A08520', 'Adam Islip', {'date': '1594'}), ('A13509', 'John Hauiland', {'date': '1632'}), ('A28210', 'Thomas Leach', {'date': '1660'}), ('A46216', 'VVilliam Bladen', {'date': '1644'}), ('A10145', 'E. Allde &', {'date': '1607'}), ('A21251', 'V.S.', {'date': '1603'}), ('A57933', 'John Hayes', {'date': '1694'}), ('A93841', 'Andrew Crook', {'date': '1691'}), ('A30345', 'G. Miller', {'date': '1645'}), ('B04242', 'N. Thompson', {'date': '1685'}), ('A21496', 'Thomas Berthelet', {'date': '1542'}), ('A21912', 'the deputies of Christopher Barker', {'date': '1595'}), ('A59183', 'T.N.', {'date': '1679'}), ('A41427', 'R. Cotes', {'date': '1648'}), ('A19797', 'Thomas Scarlet', {'date': '1595'}), ('A03403', 'G. Eld', {'date': '1620'}), ('A45405', 'T.M.', {'date': '1682'}), ('A11580', 'Richard Field', {'date': '1614'}), ('B03855', 'Mr. P. B. enginier', {'date': '1688'}), ('A04494', 'Nicholas Okes', {'date': '1623'}), ('A01512', 'Edmund Bollifant', {'date': '1600'}), ('A46261', 'J.C.', {'date': '1680'}), ('A82494', 'Henry Hills', {'date': '1659'}), ('A82494', 'John Field', {'date': '1659'}), ('A03723', 'Henry Bynneman', {'date': '1573'}), ('A55582', 'Matthew Simmons', {'date': '1655'}), ('A01227', 'Thomas Orwyn', {'date': '1591'}), ('A38508', 'George Croom', {'date': '1685'}), ('A10111', 'Ioseph Barnes', {'date': '1587'}), ('A47629', 'E. Griffin', {'date': '1646'}), ('A34724', 'R.H.', {'date': '1641'}), ('B18996', 'Robert Barkerand', {'date': '1642'}), ('A59365', 'G.D.', {'date': '1641'}), ('A59365', 'R.O.', {'date': '1641'}), ('A74677', 'T. Lock', {'date': '1655'}), ('B01867', 'Peter Cole', {'date': '1648'}), ('A32573', 'Christopher Barker', {'date': '1663'}), ('A32573', 'John Bill', {'date': '1663'}), ('A80485', 'John Macock', {'date': '1653'}), ('A19775', 'Symon Stafford', {'date': '1604'}), ('A02233', 'George Miller', {'date': '1633'}), ('B06752', 'H.H.', {'date': '1651'}), ('A45756', 'J.M.', {'date': '1655'}), ('B05575', 'the heir of Andrew Anderson', {'date': '1693'}), ('A63693', 'J. Wells', {'date': '1688'}), ('A40034', 'Robert', {'date': '1654'}), ('A40034', 'William Leybourn', {'date': '1654'}), ('A05392', 'Jhon Daye', {'date': '1551'}), ('B04257', 'T. Mabb', {'date': None}), ('A89060', 'I.C.', {'date': '1646'}), ('A81440', 'Daniel du Chemin, demeurant dans York Street, proche du Covent Gardin', {'date': '1688'}), ('A16525', 'John Legat', {'date': '1604'}), ('B15707', 'Iames Bryson', {'date': '1639'}), ('A43206', 'J.C.', {'date': '1676'}), ('A44071', 'Leonard Lichfield', {'date': '1652'}), ('A13578', 'R. Bourne', {'date': '1592'}), ('A54854', 'E.F.', {'date': '1679'}), ('A82372', 'John Field', {'date': '1651'}), ('B19439', 'Christopher Barker', {'date': '1666'}), ('B19439', 'John Bill', {'date': '1666'}), ('A85988', 'R.W.', {'date': '1658'}), ('A41979', 'T. Haly', {'date': '1681'}), ('A96712', 'William Bladen', {'date': '1656'}), ('A46247', 'J.M.', {'date': None}), ('A43554', 'E. Cotes', {'date': '1654'}), ('A03490', 'Thomas Snodham', {'date': '1619'}), ('A36940', 'M.S.', {'date': '1649'}), ('A13217', 'Roger Daniel, the printers to the Vniversitie of Cambridge', {'date': '1635'}), ('A13217', 'Thomas Buck', {'date': '1635'}), ('A92138', 'John Field', {'date': '1646'}), ('A22409', 'Bonham Norton', {'date': '1626'}), ('A22409', 'John Bill', {'date': '1626'}), ('A92695', 'the heir of Andrew Anderson', {'date': '1678'}), ('A22667', 'John Cawood', {'date': '1560'}), ('A22667', 'Rycharde Iugge', {'date': '1560'}), ('A77291', 'J.C.', {'date': '1654'}), ('B18177', 'J. Cottrell.', {'date': '1672'}), ('A83457', 'John Macock', {'date': '1660'}), ('A83457', 'John Streater', {'date': '1660'}), ('A92460', 'I.C.', {'date': '1648'}), ('A33207', 'J.C.', {'date': '1678'}), ('B27565', 'Richard Hodgkinson', {'date': '1664'}), ('A62665', 'E. Cotes', {'date': '1654'}), ('A86561', 'J.M.', {'date': '1654'}), ('A08838', 'John Kingston and Henry Denham', {'date': '1566'}), ('A60805', 'Randall Taylor', {'date': '1691'}), ('B05534', 'the heir of Andrew Anderson', {'date': '1686'}), ('B11845', 'John Barnes', {'date': '1602'}), ('B11845', 'Ioseph Barnes', {'date': '1602'}), ('A02878', 'A. Mathewes', {'date': '1637'}), ('A86661', 'John Foster', {'date': '1677'}), ('A15308', "Eliot's Court Press", {'date': '1616'}), ('A15308', 'George Eld', {'date': '1616'}), ('A06138', 'Simon Stafford', {'date': '1607'}), ('A13508', 'Nicholas Okes', {'date': '1620'}), ('A03175', 'Wyllyam Rastell', {'date': '1533'}), ('A14185', 'Edward Griffin', {'date': '1618'}), ('A14185', 'Richard Field', {'date': '1618'}), ('A95029', 'G. Dexter', {'date': '1642'}), ('A95029', 'R. Oulton', {'date': '1642'}), ('A01541', 'William Iones', {'date': '1620'}), ('A15817', 'John Wolfe', {'date': '1582'}), ('A69310', 'Thomas Berthelet', {'date': '1546'}), ('A86786', 'E.G.', {'date': '1646'}), ('A08907', 'William Kearney', {'date': '1591'}), ('A17880', 'Thomas Snodham', {'date': '1613'}), ('A15344', 'the Widdow Orwin', {'date': '1595'}), ('A81482', 'J.M.', {'date': '1654'}), ('A64426', 'Henry Hall', {'date': '1643'}), ('B05278', 'the heir of Andrew Anderson', {'date': '1690'}), ('A92109', 'J. Coe', {'date': '1644'}), ('A21858', 'the deputies of Christopher Barker', {'date': '1589'}), ('A74381', 'Edward Husband', {'date': '1650'}), ('A74381', 'John Field', {'date': '1650'}), ('A28566', 'M. Clark', {'date': '1683'}), ('A14512', 'Thomas Haueland', {'date': '1610'}), ('A51289', 'J. Redmayne', {'date': '1672'}), ('A82481', 'John Bill', {'date': '1670'}), ('A82481', 'Christopher Barker', {'date': '1670'}), ('A03634', 'Ihon Oswen, prynter appointed', {'date': '1553'}), ('A03634', 'the Kinges Maiestie', {'date': '1553'}), ('A67756', 'J. Hayes', {'date': '1667'}), ('A01858', 'Pierre Auroi', {'date': '1623'}), ('B43674', 'Edward Jones', {'date': '1689'}), ('B43863', 'Henry Hills', {'date': '1687'}), ('A97246', 'Thomas Paine', {'date': '1646'}), ('A62323', 'J.G.', {'date': '1664'}), ('A02758', 'John Beale', {'date': '1633'}), ('A09429', 'Henry Bynnyman', {'date': '1578'}), ('A01057', 'Nicholas Okes', {'date': '1633'}), ('A30658', 'Thomas Roycroft', {'date': '1658'}), ('A11273', 'William Stansby', {'date': '1620'}), ('A91744', 'T.R.', {'date': '1660'}), ('A39358', 'T.J.', {'date': '1692'}), ('A10053', 'Ioseph Barnes', {'date': '1613'}), ('A23590', 'maistir Gerard de leew. a man of grete wysedom', {'date': '1493'}), ('B17422', 'Samuel Green', {'date': '1689'}), ('A46354', 'W. Godbid', {'date': '1672'}), ('A47580', 'H.B.', {'date': '1684'}), ('A42860', 'George Croom', {'date': '1697'}), ('A14784', 'Felix Kyngston', {'date': '1606'}), ('A14784', 'Richard Bradock?', {'date': '1606'}), ('A30727', 'M.C.', {'date': '1678'}), ('B02114', 'Evan Tyler', {'date': '1660'}), ('A68502', 'W. White', {'date': '1602'}), ('A20037', 'George Bishop', {'date': '1590'}), ('A20037', 'Ralph Newberie', {'date': '1590'}), ('B12480', 'Roger Daniel the printers to the Vniversitie of Cambridge:', {'date': '1634'}), ('B12480', 'Thomas Buck', {'date': '1634'}), ('A84063', 'J.C.', {'date': '1653'}), ('A15000', 'Thomas Creed', {'date': '1602'}), ('A16745', 'J. Haviland', {'date': '1636'}), ('A85911', 'Edward Jones', {'date': '1689'}), ('A45274', 'E. C.', {'date': '1652'}), ('A04479', 'Wyllyam Rastell wyth the pryuylege of our souereyn lord kyng Henry the .viii. and no may prynt the same agayn within the space of .vii. yere next ensuing', {'date': '1531'}), ('B14559', 'Nicholas Okes', {'date': '1607'}), ('A07234', 'Edward Allde', {'date': '1624'}), ('A88159', 'Thomas Newcomb', {'date': '1653'}), ('A79887', 'E. M.', {'date': '1660'}), ('A21654', 'John Cawood', {'date': '1563'}), ('A21654', 'Richarde Iugge', {'date': '1563'}), ('A90383', 'M. Simmons', {'date': '1652'}), ('A00256', 'John Beale', {'date': '1619'}), ('A84505', 'Charles Bill', {'date': '1688'}), ('A84505', 'H. Hills', {'date': '1688'}), ('A84505', 'Th. Newcomb', {'date': '1688'}), ('A06778', 'Thomas Marshe', {'date': '1565'}), ('A26192', 'J. Grantham', {'date': '1683'}), ('A53033', 'William Bradford', {'date': '1694'}), ('A01444', 'Humphrey Lownes', {'date': '1610'}), ('A14382', 'R.Cotes', {'date': '1630'}), ('A14382', 'T.Cotes', {'date': '1630'}), ('A20104', 'Thomas Cotes', {'date': '1632'}), ('A01164', 'G. Purslowe', {'date': '1621'}), ('A44199', 'E. G.', {'date': '1641'}), ('A61594', 'R.W.', {'date': '1666'}), ('B25574', 'J. Bradford', {'date': '1692'}), ('B14968', 'I. Dawson', {'date': '1632'}), ('A14477', 'William Copland', {'date': '1553'}), ('A35197', 'Edward Crowch', {'date': '1665'}), ('A03099', 'John Legatt', {'date': '1621'}), ('B09510', 'R. Pierce', {'date': '1690'}), ('B01850', 'T.H.', {'date': '1681'}), ('A62962', 'Samuel Green', {'date': '1683'}), ('A02252', 'E. Purslowe', {'date': '1640'}), ('B04480', 'Thomas Reading', {'date': '1700'}), ('B04480', 'order of the General Assembly', {'date': '1700'}), ('A27232', 'H. Hills', {'date': '1699'}), ('A03966', 'I. Raworth', {'date': '1640'}), ('A17458', 'Elizabeth Allde', {'date': '1630'}), ('A19257', 'Henry Middleton', {'date': '1574'}), ('A38445', 'Randall Taylor', {'date': '1686'}), ('A06162', 'T. Este', {'date': '1584'}), ('B05514', 'the heir of Andrew Anderson', {'date': '1682'}), ('A77017', 'John Macock', {'date': '1646'}), ('A46578', 'Charles Bill', {'date': '1686'}), ('A46578', 'Henry Hills', {'date': '1686'}), ('A46578', 'Thomas Newcomb', {'date': '1686'}), ('B13091', 'Robert Barker', {'date': '1635'}), ('A70483', 'James Partridge', {'date': '1689'}), ('A70483', 'Matthew Gillyflower', {'date': '1689'}), ('A70483', 'Samuel Heyrick', {'date': '1689'}), ('B12826', 'Bonham Norton', {'date': '1621'}), ('B12826', 'John Bill', {'date': '1621'}), ('A95371', 'J.B.', {'date': '1654'}), ('A94409', 'James', {'date': '1648'}), ('A94409', 'Joseph Moxon', {'date': '1648'}), ('A14783', 'the widow Orwin', {'date': '1597'}), ('A52753', 'Henry Hills', {'date': '1678'}), ('A38400', 'J. Astwood', {'date': '1687'}), ('A90401', 'J.M.', {'date': '1659'}), ('A18411', 'Humphrey Lownes', {'date': '1609'}), ('B05367', 'Evan Tyler', {'date': '1664'}), ('A70941', 'W.B.', {'date': '1650'}), ('A50522', 'Roger Norton', {'date': '1672'}), ('A01022', 'I.L.', {'date': '1623'}), ('A17307', 'William Iones', {'date': '1628'}), ('A21220', 'Christopher Barker', {'date': '1586'}), ('A14251', 'Anthony Scoloker.', {'date': '1549'}), ('A43796', 'Reinier Leers', {'date': '1685'}), ('A52255', 'R.', {'date': '1657'}), ('A68013', 'Ihon Michel', {'date': '1556'}), ('A45981', 'Andrew Crook', {'date': '1697'}), ('A18071', 'William Stansby', {'date': '1611'}), ('A84186', 'J. M.', {'date': '1645'}), ('A49646', 'H. Lloyd', {'date': '1672'}), ('A61475', 'Matth. Simmons', {'date': '1645'}), ('B03450', 'T. Sowle', {'date': '1700'}), ('B02741', 'Joseph Ray', {'date': '1695'}), ('A15389', 'Wyllyam Powell', {'date': '1552'}), ('A36220', 'A.M.', {'date': '1678'}), ('A36220', 'R.R.', {'date': '1678'}), ('A07483', 'J. Orwin', {'date': '1596'}), ('B23074', 'T. Mabb', {'date': '1660'}), ('A07455', 'Wynkyn de Worde', {'date': '1510'}), ('A50298', 'A.M.', {'date': '1659'}), ('A00220', 'Edward Allde', {'date': '1615'}), ('A67694', 'the heirs of George Anderson', {'date': '1653'}), ('A89063', 'Robert. Wood', {'date': '1653'}), ('A04054', 'me Wyllyam Copland', {'date': '1565'}), ('A75873', ': I:L:', {'date': '1641'}), ('A70765', 'Stephen Bulkley', {'date': '1642'}), ('B26171', 'Samuel Roycroft', {'date': '1694'}), ('A56151', 'Edward Thomas', {'date': '1660'}), ('A07888', 'George Purslowe', {'date': '1617'}), ('B08567', 'E. Witlock', {'date': '1697'}), ('A03304', 'R. Field', {'date': '1604'}), ('A80921', 'Henry Hills', {'date': '1655'}), ('A80921', 'John Field', {'date': '1655'}), ('A32017', 'Leonard Lichfield', {'date': '1643'}), ('A92732', 'R.W.', {'date': '1651'}), ('A62724', 'Ann Lichfield', {'date': '1658'}), ('A92532', 'Evan Tyler', {'date': '1648'}), ('A33329', 'J.R.', {'date': '1675'}), ('A44300', 'Rich Herne', {'date': '1642'}), ('A31495', 'Christopher Barker', {'date': '1665'}), ('A31495', 'John Bill', {'date': '1665'}), ('A88453', 'James Flesher', {'date': '1659'}), ('A73373', 'Nicholas Okes', {'date': '1611'}), ('A20130', 'John VVolfe', {'date': '1588'}), ('A13429', 'M. Parsons', {'date': '1638'}), ('A08811', 'George Veseler', {'date': '1618'}), ('A08811', 'the South-Church', {'date': '1618'}), ('A12367', 'Thomas Orwin', {'date': '1591'}), ('B05412', 'the heir of Andrew Anderson', {'date': '1684'}), ('A20966', 'R. Badger', {'date': '1640'}), ('A20966', 'R. Young', {'date': '1640'}), ('A79489', 'M.S.', {'date': '1644'}), ('A79489', 'T.P.', {'date': '1644'}), ('A79030', 'L. Lichfield', {'date': '1642'}), ('A90415', 'T.F.', {'date': '1660'}), ('B14569', 'John VVindet', {'date': '1606'}), ('A94074', 'T.H.', {'date': '1647'}), ('A38667', 'T.N.', {'date': '1679'}), ('B04914', 'the heir of Andrew Anderson', {'date': '1686'}), ('A10652', 'Felix Kyngston', {'date': '1638'}), ('A11457', 'G. Purslowe', {'date': '1622'}), ('A07065', 'Thomas Purfoot', {'date': '1605'}), ('A02643', 'A. Mathewes', {'date': '1632'}), ('A00926', 'John Raworth', {'date': '1640'}), ('A13314', 'P.S.', {'date': '1597'}), ('A22441', 'Bonham Norton', {'date': '1627'}), ('A22441', 'John Bill', {'date': '1627'}), ('A22441', 'Printers to the Kings most Excellent Maiestie', {'date': '1627'}), ('A42439', 'J. Streater', {'date': '1657'}), ('A77618', 'R.I.', {'date': '1660'}), ('B11895', 'J. Orwin', {'date': '1595'}), ('A39421', 'James Flesher', {'date': '1662'}), ('A09039', 'Thomas Snodham', {'date': '1613'}), ('A07763', 'John Windet', {'date': '1600'}), ('B09962', 'E. Tyler', {'date': '1646'}), ('A93894', 'J. F.', {'date': '1644'}), ('A29626', 'M. Clark', {'date': '1679'}), ('A06227', 'Hugh Singleton, printer', {'date': '1587'}), ('A78683', 'Iane Coe', {'date': '1644'}), ('A13611', 'Thomas East', {'date': '1588'}), ('A05325', 'Thomas Vautroullier', {'date': '1575'}), ('A17916', 'Felix Kyngston', {'date': '1616'}), ('A23279', 'John Legat', {'date': '1635'}), ('A22616', 'Robert Barker', {'date': '1637'}), ('A22616', 'the Assignes of John Bill', {'date': '1637'}), ('A23734', 'R. Smith', {'date': '1694'}), ('A03915', 'Ioseph Barnes', {'date': '1605'}), ('A03915', 'Simon Waterson', {'date': '1605'}), ('A61373', 'William Wilson', {'date': '1648'}), ('A00573', 'Felix Kingstonius', {'date': '1638'}), ('A04931', 'Henry Denham?', {'date': '1566'}), ('A12389', 'Peter Short', {'date': '1594'}), ('A32541', 'Henry Hills', {'date': '1679'}), ('A32541', 'John Bill', {'date': '1679'}), ('A32541', 'Thomas Newcomb', {'date': '1679'}), ('A68099', 'John Hauiland', {'date': '1623'}), ('A08311', 'John Hauiland', {'date': '1628'}), ('A14063', 'Henry Denham? In ædibus Richardi Tottylli', {'date': '1570'}), ('A84228', 'William Du-gard', {'date': '1650'}), ('A59398', 'Bartholomew Green', {'date': '1697'}), ('A59398', 'John Allen', {'date': '1697'}), ('A09019', 'Thomam Purfutium', {'date': '1582'}), ('B11456', 'Thomas Dawson', {'date': '1580'}), ('B14984', 'Bernard Alsop', {'date': '1622'}), ('A19072', 'John Windet', {'date': '1586'}), ('A60802', 'Andrew Sow', {'date': '1691'}), ('A94219', 'M. Simmons', {'date': '1652'}), ('A57991', 'Thomas Newcomb', {'date': '1676'}), ('A70139', 'Edward Atkins', {'date': '1680'}), ('A70139', 'the Assignees of Richard', {'date': '1680'}), ('B26662', 'Samuel Green', {'date': '1657'}), ('A27173', 'T. Moore', {'date': '1686'}), ('B12393', 'Richard Schilders', {'date': '1590'}), ('A18736', 'Edmund Bollifant', {'date': '1599'}), ('A82124', 'the appointment of the officers, whose names', {'date': '1647'}), ('A00762', 'John Cawood, one of the printers to the Queenes Maiestie', {'date': '1563'}), ('A94544', 'Charles Sumptner', {'date': '1650'}), ('A33879', 'F. Leach', {'date': '1685'}), ('A33879', 'W. Davis', {'date': '1685'}), ('B05845', 'William Horton', {'date': '1685'}), ('A97370', 'Benjamin Tooke', {'date': '1669'}), ('A36496', 'J.M.', {'date': '1664'}), ('A39498', 'Charles Bill, and the executrix of Thomas Newcomb', {'date': '1698'}), ('A63393', 'G. Dawson', {'date': '1658'}), ('A88105', 'I.L.', {'date': '1646'}), ('A58284', 'T.B.', {'date': '1684'}), ('B20371', 'B. Alsop', {'date': '1647'}), ('A51629', 'John Gain', {'date': '1682'}), ('A35766', 'George Croom', {'date': '1689'}), ('A90422', 'Andrew Sowle', {'date': '1673'}), ('A58892', 'Henry Hills', {'date': '1687'}), ('A95065', 'E.C.', {'date': '1655'}), ('A08009', 'Simon Stafford', {'date': '1600'}), ('A23587', 'William Caxton', {'date': '1480'}), ('A74622', 'G.B.', {'date': '1643'}), ('A74622', 'R.W.', {'date': '1643'}), ('A48796', 'J.C.', {'date': '1665'}), ('B08272', 'M.J.', {'date': '1664'}), ('B08272', 'S.G.', {'date': '1664'}), ('A95587', 'John Hammond', {'date': '1642'}), ('A84896', 'John Clowes', {'date': '1659'}), ('A48931', 'M. Clark', {'date': '1695'}), ('A04617', 'John Windet', {'date': '1607'}), ('B05721', 'Andrew Anderson', {'date': '1675'}), ('A66672', 'J. Young', {'date': '1644'}), ('A66672', 'M. Flesher', {'date': '1644'}), ('A17534', 'John Kyngston', {'date': '1578'}), ('A33099', 'George Mosman', {'date': '1699'}), ('A14015', 'Thomas Harper', {'date': '1633'}), ('A61199', 'H. Hills', {'date': '1699'}), ('B11188', 'Robert Barker', {'date': '1610'}), ('A05277', 'E. Allde', {'date': '1592'}), ('A14777', 'Richard Field', {'date': '1612'}), ('A08112', '& William Turner', {'date': '1625'}), ('A08112', 'John Lichfield', {'date': '1625'}), ('A35549', 'F.G.', {'date': '1663'}), ('A22213', 'Thomas Purfoot', {'date': '1619'}), ('A06546', 'Wynkyn de Worde', {'date': '1510'}), ('A78123', 'B.A.', {'date': '1649'}), ('A16039', 'Wynkyn de worde', {'date': '1497'}), ('A57489', 'W. Onley', {'date': '1697'}), ('A03332', 'John Machvel', {'date': '1609'}), ('B19236', 'Leonard Lichfield', {'date': '1643'}), ('A32554', 'Christopher Barker', {'date': '1661'}), ('A32554', 'John Bill', {'date': '1661'}), ('A58145', 'T. Sowle', {'date': '1700'}), ('A68046', 'William How', {'date': '1569'}), ('A55342', 'J. Nutt', {'date': '1700'}), ('A00800', 'Edward Allde', {'date': '1592'}), ('B15781', 'Blower', {'date': '1600'}), ('B15781', 'R', {'date': '1600'}), ('A00652', 'John Dawson', {'date': '1622'}), ('A34599', 'J. Dawson', {'date': '1646'}), ('A91287', 'J. Leach', {'date': '1658'}), ('A65934', 'D.M.', {'date': '1658'}), ('A17432', 'Thomas Este', {'date': '1599'}), ('A21448', 'R. Waldegrave', {'date': '1590'}), ('A29762', 'John Brown', {'date': '1671'}), ('A29762', 'John Darby', {'date': '1671'}), ('A53767', 'Leonard Lichfield', {'date': '1646'}), ('A57140', 'Thomas Ratcliffe', {'date': '1659'}), ('A95541', 'J.C.', {'date': '1652'}), ('A95541', 'T.W.', {'date': '1652'}), ('A21730', 'John Cawood', {'date': '1570'}), ('A21730', 'Richarde Iugge', {'date': '1570'}), ('A27833', 'Mary Thompson', {'date': '1688'}), ('A09388', 'John Legate', {'date': '1596'}), ('A18252', 'the English College Press', {'date': '1632'}), ('A44756', 'W. Wilson', {'date': '1660'}), ('A26295', 'John Playford', {'date': '1684'}), ('A10114', 'Christopher Barker', {'date': '1582'}), ('B05488', 'the heirs and successors of Andrew Anderson', {'date': '1699'}), ('A59729', 'Richard Hondgkinsonne', {'date': None}), ('A02832', 'Andro Hart', {'date': '1617'}), ('A84677', 'R.I.', {'date': '1651'}), ('B24768', 'Andrew Crook', {'date': '1691'}), ('A89159', 'I. G.', {'date': '1641'}), ('A89159', 'W. E.', {'date': '1641'}), ('A58731', 'G. Croom', {'date': '1689'}), ('A80855', 'R.D.', {'date': '1645'}), ('A91627', 'G.M.', {'date': '1643'}), ('A43889', 'T.H.', {'date': '1641'}), ('A02597', 'John Wreittoun', {'date': '1626'}), ('A07075', 'Iames Roberts', {'date': '1598'}), ('A20877', 'Andro Hart', {'date': '1617'}), ('B02078', 'Benjamin Tooke', {'date': '1675'}), ('A69233', 'Felix Kyngston', {'date': '1611'}), ('A14087', 'Humphrey Lownes', {'date': '1608'}), ('A46031', 'John Crook', {'date': '1662'}), ('A85172', 'J.C.', {'date': '1659'}), ('A17000', 'Richard Schilders', {'date': '1611'}), ('A95920', 'B. Alsop', {'date': '1650'}), ('A90187', 'William Bladen', {'date': '1646'}), ('A00822', 'William Stansby', {'date': '1622'}), ('A66816', 'T.W.', {'date': '1654'}), ('A02374', 'Iames Roberts', {'date': '1598'}), ('A36961', 'John Playford', {'date': '1684'}), ('A02133', 'Thomas Orwin', {'date': '1589'}), ('A09976', 'John Wreittoun', {'date': '1633'}), ('A65422', 'Robert Sanders', {'date': '1672'}), ('A90607', 'M.O.', {'date': '1645'}), ('A57214', 'Francis Smith', {'date': '1680'}), ('B03849', 'Robert Sanders, one of his Majesties printers', {'date': '1698'}), ('A92692', 'the heir of Andrew Anderson', {'date': '1692'}), ('A33361', 'J. Astwood', {'date': '1688'}), ('A97251', 'R. Cotes', {'date': '1649'}), ('B13696', 'Leonard Lichfield', {'date': '1638'}), ('A78421', 'Ralph Wood', {'date': '1658'}), ('A08264', 'S. Mierdman', {'date': '1550'}), ('A09938', 'Valentine Simmes', {'date': '1607'}), ('A52216', 'E. Mallet', {'date': '1683'}), ('A22056', 'Robert Barker', {'date': '1609'}), ('B06625', 'the heirs and successors of Andrew Anderson', {'date': '1696'}), ('A30276', 'J.D.', {'date': '1694'}), ('A73566', 'John Daye', {'date': '1569'}), ('A11432', 'Thomas Vautrollier', {'date': '1578'}), ('A02959', 'Melchisedech Bradvvood', {'date': '1613'}), ('A77255', 'John Hammond', {'date': '1645'}), ('B05508', 'the heirs and successors of Andrew Anderson', {'date': '1698'}), ('A66280', 'Charles Bill', {'date': '1689'}), ('A66280', 'Thomas Newcomb', {'date': '1689'}), ('A11685', 'Robert Walde-graue', {'date': '1596'}), ('A29113', 'Alice Broad', {'date': '1661'}), ('A45476', 'J.G.', {'date': '1654'}), ('A31858', 'M. Flesher', {'date': '1687'}), ('B21799', "Charles Bill, and the executrix of Thomas Newcomb, deceas'd", {'date': '1697'}), ('A82959', 'Francis Tyton', {'date': '1660'}), ('A82959', 'John Macock', {'date': '1660'}), ('A17328', 'the Widow Orwin', {'date': '1595'}), ('A82992', 'G. Dexter', {'date': '1642'}), ('A82992', 'R. Ohen', {'date': '1642'}), ('A44132', 'J. Heptinstall', {'date': '1694'}), ('A49259', 'T.F.', {'date': '1641'}), ('A12120', 'Edward Griffin', {'date': '1620'}), ('A51894', 'J. Leake', {'date': '1692'}), ('A64772', 'Richard Cotes', {'date': '1641'}), ('A64772', 'Thomas', {'date': '1641'}), ('A82505', 'T.W.', {'date': '1645'}), ('A47656', 'R.N.', {'date': '1686'}), ('A54404', 'Thomas Newcombe', {'date': '1674'}), ('B00400', 'Robert Waldegraue.', {'date': '1585'}), ('A28888', 'Henry Wetstein', {'date': None}), ('A84109', 'Henry Hall', {'date': '1643'}), ('A87819', 'W. Godbid', {'date': '1656'}), ('A18998', 'T. East', {'date': '1585'}), ('A16167', 'Henry Denham', {'date': '1569'}), ('A20661', 'John Latius', {'date': '1564'}), ('A12466', 'Joseph Barnes', {'date': '1612'}), ('A07270', 'Io: Hauiland', {'date': '1632'}), ('A60135', 'the Widow Astwood', {'date': '1699'}), ('A10187', 'Augustine Mathewes', {'date': '1633'}), ('A10187', 'Edward Allde', {'date': '1633'}), ('A10187', 'Thomas Cotes', {'date': '1633'}), ('A10187', 'William Iones', {'date': '1633'}), ('A34189', 'F. Moxon', {'date': '1697'}), ('A10476', 'E. Allde', {'date': '1610'}), ('A10476', 'R. Blower', {'date': '1610'}), ('A91728', 'R.W.', {'date': '1646'}), ('A30034', 'J. Gain', {'date': '1683'}), ('A95845', 'John Reid, to be', {'date': '1693'}), ('A77802', 'J.F.', {'date': '1656'}), ('A78289', 'J.B.', {'date': None}), ('A21064', 'John Daye', {'date': '1579'}), ('A54010', 'J.D.', {'date': '1696'}), ('A95862', 'Stephen Swart', {'date': '1679'}), ('A27361', 'Richard Cotes', {'date': '1646'}), ('A78996', 'Robert Barker', {'date': '1642'}), ('A12558', 'Joseph Barnes', {'date': '1612'}), ('A32664', 'Henry Hills', {'date': '1685'}), ('A32664', 'Thomas Newcomb', {'date': '1685'}), ('A07665', 'Wyllyam Copland', {'date': '1548'}), ('A01162', 'John Wolfe', {'date': '1592'}), ('A67840', 'A. Baldwin', {'date': '1699'}), ('A83894', "Charles Bill and the executrix of Thomas Newcomb, deceas'd;", {'date': '1698'}), ('A58858', 'a Society of Stationers', {'date': '1660'}), ('A03251', 'John Okes', {'date': '1637'}), ('A88360', 'H.I.', {'date': '1642'}), ('A07394', 'Iohan rastell', {'date': None}), ('A07394', 'syde paulys cheyne', {'date': None}), ('A32999', 'Christopher Barker', {'date': '1665'}), ('A32999', 'John Bill', {'date': '1665'}), ('A54946', 'J.R.', {'date': '1682'}), ('A46995', 'R. Norton', {'date': '1654'}), ('A06057', 'Rychard Grafton', {'date': '1548'}), ('A38912', 'I.F.', {'date': '1642'}), ('A38912', 'L.N.', {'date': '1642'}), ('A85312', 'T.C.', {'date': '1658'}), ('A92287', 'G.M.', {'date': '1645'}), ('A90882', 'Edward Husband', {'date': '1650'}), ('A90882', 'John Field', {'date': '1650'}), ('A96747', 'R. Austin', {'date': '1647'}), ('A72447', 'A. Mathewes.', {'date': '1620'}), ('A47546', 'H. Bruges', {'date': '1666'}), ('A96713', 'Robert Wood', {'date': '1655'}), ('A42823', 'A. Clark', {'date': '1671'}), ('A20936', 'Richard Field', {'date': '1620'}), ('A08608', 'George Eld', {'date': '1615'}), ('A68218', 'me Iohan of Doesborowe', {'date': '1527'}), ('A66251', 'Charles Bill', {'date': '1689'}), ('A66251', 'Thomas Newcomb', {'date': '1689'}), ('A08940', 'J. Danter', {'date': '1592'}), ('A54556', 'the Heir of Andrew Anderson', {'date': '1685'}), ('A05303', 'Valentine Simmes', {'date': '1605'}), ('A95110', 'D. Mallet', {'date': '1681'}), ('A20683', 'Thomas Creede', {'date': '1606'}), ('A51250', 'James Cottrel', {'date': '1656'}), ('A16749', 'E. Allde', {'date': '1604'}), ('A66247', 'Charles Bill', {'date': '1689'}), ('A66247', 'Thomas Newcomb', {'date': '1689'}), ('A10044', 'G. Eld', {'date': '1610'}), ('A03615', 'John Haviland', {'date': '1638'}), ('A07774', 'G. Eld', {'date': '1609'}), ('A34383', 'T.M.', {'date': '1676'}), ('B18479', 'Thomas Braddyll', {'date': '1691'}), ('A37053', 'T.R.', {'date': '1671'}), ('A74387', 'Edward Husband', {'date': '1650'}), ('A74387', 'John Field', {'date': '1650'}), ('B02079', 'Thomas Brown, one of His Majesties Printers', {'date': '1678'}), ('A81057', 'Nathaniel Thompson', {'date': '1687'}), ('A42062', 'A.', {'date': '1660'}), ('A42062', 'L. Lichfield', {'date': '1660'}), ('A40986', 'Matthew Simmons', {'date': '1648'}), ('A94307', 'Flying-Horse Court', {'date': '1678'}), ('A09568', 'Rouland Hall', {'date': '1563'}), ('B03076', "Charles Bill and the executrix of Thomas Newcomb, deceas'd", {'date': '1698'}), ('A11332', 'J. Windet', {'date': '1600'}), ('A96686', 'Richard Cotes', {'date': '1647'}), ('A82852', 'L.N.', {'date': '1642'}), ('B03224', 'George Croom', {'date': '1684'}), ('A52813', 'Richard Janeway', {'date': '1682'}), ('A68428', 'Wynkyn de Worde', {'date': '1495'}), ('A08541', 'H. Lownes', {'date': '1609'}), ('A20574', 'Bernard Alsop', {'date': '1630'}), ('A20574', 'Thomas Fawcet', {'date': '1630'}), ('A81897', 'A. Coe.', {'date': '1643'}), ('A81897', 'R. Austin', {'date': '1643'}), ('A34152', 'E. G.', {'date': '1641'}), ('A54688', 'J.M.', {'date': '1661'}), ('A26537', 'John Hayes', {'date': '1697'}), ('A37436', 'A. Baldwin', {'date': '1700'}), ('A42984', 'T.B.', {'date': '1682'}), ('A46370', 'S. Roycroft', {'date': '1683'}), ('A69335', 'the deputies of Christopher Barker', {'date': '1618'}), ('A47082', 'N.T.', {'date': '1681'}), ('A17308', 'Robert Young', {'date': '1629'}), ('A79759', 'Evan Tyler', {'date': '1649'}), ('A00336', 'Iohan Mychell', {'date': '1550'}), ('A91900', 'R.I.', {'date': '1655'}), ('A54575', 'T. B.', {'date': '1684'}), ('A30645', 'T.N.', {'date': '1652'}), ('A19460', 'P. Short', {'date': '1603'}), ('A90454', 'W. Wilson', {'date': '1650'}), ('A90493', 'Robert Ibbitson', {'date': '1650'}), ('B03879', 'the heir of Andrew Anderson', {'date': '1685'}), ('A79680', 'Samuell Broun', {'date': '1650'}), ('A00566', 'Peter Short', {'date': '1598'}), ('A33251', 'T.B.', {'date': '1680'}), ('A69425', 'John Awdeley', {'date': '1575'}), ('A78985', 'Robert Barker, printed to the Kings most excellent Majestie, and', {'date': '1642'}), ('A42669', 'D. Edwards', {'date': '1699'}), ('A18726', 'VVylliam Griffith', {'date': '1570'}), ('A01735', 'Thomas Orwin', {'date': '1591'}), ('A06520', 'Anthony Scoloker. Dwellyng', {'date': '1548'}), ('B14428', 'W. Jones?', {'date': '1620'}), ('A06134', 'George Bishop', {'date': '1590'}), ('A06134', 'Ralph Nevvberie', {'date': '1590'}), ('B13095', 'Robert Barker', {'date': '1635'}), ('A14295', 'Richard Bradocke', {'date': '1600'}), ('A21586', 'John Cawoodde i.e. B. Norton', {'date': '1618'}), ('A21586', 'J. Bill', {'date': '1618'}), ('A21586', 'Richard Iugge', {'date': '1618'}), ('A16095', 'Johñ Redman', {'date': '1540'}), ('A23988', 'Bartholomew Green', {'date': '1700'}), ('A23988', 'John Allen', {'date': '1700'}), ('A92419', 'L. N.', {'date': '1642'}), ('A92419', 'R. C.', {'date': '1642'}), ('A10592', 'B. Alsop', {'date': '1631'}), ('A10592', 'R. Young', {'date': '1631'}), ('A10592', 'T. Fawcet', {'date': '1631'}), ('A43987', 'R.', {'date': '1656'}), ('A43987', 'W. Leybourn', {'date': '1656'}), ('A68283', 'A. Islip', {'date': '1606'}), ('B09326', 'John Crook', {'date': '1661'}), ('B14901', 'Thomas Judson', {'date': '1599'}), ('B14901', 'Valentine Simmes', {'date': '1599'}), ('A77773', 'Joseph Ray', {'date': '1697'}), ('A65384', 'R. Everingham', {'date': '1692'}), ('A55205', 'A. Godbin', {'date': '1682'}), ('A55205', 'J. Playford', {'date': '1682'}), ('A56385', 'M. Flesher', {'date': '1681'}), ('A55752', 'J.T.', {'date': '1658'}), ('A55242', 'Nathaniel Thompson', {'date': '1685'}), ('A10216', 'William Iaggard', {'date': '1608'}), ('B02231', 'J.R.', {'date': '1660'}), ('A49072', 'Samuel Roycroft', {'date': '1684'}), ('A03926', 'Thomas Dawson', {'date': '1579'}), ('A08471', 'E. van der Erve', {'date': '1555'}), ('A43501', 'Robert Ibbitson', {'date': '1647'}), ('A64608', 'Giles Calvert', {'date': '1653'}), ('A14275', 'Roger Ward', {'date': '1590'}), ('A62190', 'E. Holt', {'date': '1692'}), ('A86287', 'J.G.', {'date': '1656'}), ('A21762', 'W. Copland', {'date': '1560'}), ('A08200', 'John Fogny', {'date': '1583'}), ('A03760', 'Thomas Snodham', {'date': '1622'}), ('A92238', 'W. Downing', {'date': '1699'}), ('A22288', 'Bonham Norton', {'date': '1622'}), ('A22288', 'John Bill', {'date': '1622'}), ('A92632', 'the heirs of Andrew Anderson, printed to his most sacred Majesty', {'date': '1681'}), ('B22481', 'Charles Bill', {'date': '1688'}), ('B22481', 'Thomas Newcomb', {'date': '1688'}), ('A19244', 'Thomas Est', {'date': '1593'}), ('A21718', 'John Cawood i.e. B. Norton', {'date': '1618'}), ('A21718', 'J. Bill', {'date': '1618'}), ('A21718', 'Richard Iugge', {'date': '1618'}), ('A02822', 'J. Cousturier', {'date': '1632'}), ('A11947', 'Henrie Middleton', {'date': '1577'}), ('A07312', 'F. Kingston', {'date': '1611'}), ('A92701', 'John Field', {'date': '1646'}), ('A06891', 'V. Simmes', {'date': '1597'}), ('A46551', 'Henry Hills', {'date': '1685'}), ('A46551', 'Thomas Newcomb', {'date': '1685'}), ('A22565', 'Robert Barker', {'date': '1633'}), ('A22565', 'the Assignes of John Bill', {'date': '1633'}), ('A74202', 'John Bill', {'date': '1661'}), ('A35312', 'John Nutt', {'date': '1700'}), ('A51723', 'William Wilson', {'date': '1650'}), ('A63817', 'H.C.', {'date': '1691'}), ('A94505', 'A.M.', {'date': '1655'}), ('A86035', 'J.B.', {'date': '1661'}), ('B05572', 'the heirs and successors of Andrew Anderson', {'date': '1695'}), ('B24855', 'Andrew Crook', {'date': '1688'}), ('B24855', 'Samuel Helsham', {'date': '1688'}), ('A77144', 'T.W.', {'date': '1653'}), ('A14661', 'Felix Kyngston', {'date': '1608'}), ('A71105', 'R. Ibbitson', {'date': '1655'}), ('B19096', 'Leonard Lichfield', {'date': '1643'}), ('A42727', 'Samuel Darker', {'date': '1699'}), ('A42727', 'Samuel Farley', {'date': '1699'}), ('A90870', 'E.M.', {'date': '1651'}), ('A90870', 'T.R.', {'date': '1651'}), ('A01062', 'Thomas Creede', {'date': '1607'}), ('A21753', 'Richard Iugge', {'date': '1573'}), ('B07082', 'R. Newcomb', {'date': '1713'}), ('A89979', 'Robert Ibbitson', {'date': '1653'}), ('A40681', 'J. F.', {'date': '1650'}), ('A41139', 'W. Godbid', {'date': '1674'}), ('A25179', 'D. Mallet', {'date': '1687'}), ('A01450', 'Thomas Creede', {'date': '1597'}), ('A13497', 'John Okes', {'date': '1638'}), ('A07254', 'G. Eld', {'date': '1608'}), ('A01992', 'John Dawson', {'date': '1621'}), ('A18479', 'Ioannem Foulerum', {'date': '1568'}), ('A03727', 'Richarde Pynson, printer to the kynges noble grace', {'date': '1521'}), ('A02073', 'George Purslowe', {'date': '1617'}), ('B19149', 'L. Lichfield', {'date': '1642'}), ('A49699', 'M. Clarke', {'date': '1683'}), ('A48851', 'M.C.', {'date': '1680'}), ('A37344', 'H. Hills', {'date': '1647'}), ('A37344', 'J. Harris', {'date': '1647'}), ('A07363', 'A. Islip', {'date': '1612'}), ('A07363', 'G. Eld', {'date': '1612'}), ('A79988', 'G. Dexter', {'date': '1642'}), ('A79988', 'R. Oulton', {'date': '1642'}), ('A25404', 'Roger Norton', {'date': '1650'}), ('A00015', 'R. Blower', {'date': '1607'}), ('A79286', 'Christopher Barker', {'date': '1660'}), ('A79286', 'John Bill', {'date': '1660'}), ('A44022', 'Eleutherium Anglicum, fub Signo Veritatis', {'date': '1681'}), ('A69075', 'Felix Kingston', {'date': '1611'}), ('A19829', 'John Legat', {'date': '1615'}), ('B04317', 'John Reid', {'date': '1697'}), ('A07044', 'John Day', {'date': '1561'}), ('A20814', 'Iames Roberts', {'date': '1597'}), ('A86813', 'Richard Cotes', {'date': '1648'}), ('A19753', 'John Wolfe', {'date': '1585'}), ('A08299', 'Will. Stansby', {'date': '1615'}), ('A32581', 'Christopher Barker', {'date': '1666'}), ('A32581', 'John Bill', {'date': '1666'}), ('A85397', 'R.O. And G.D. And', {'date': '1642'}), ('A69066', "Henry Garnet's first press", {'date': None}), ('A14709', 'Thomas Dawson', {'date': '1582'}), ('A57156', 'Thomas Ratcliffe', {'date': '1666'}), ('A94147', 'N.T.', {'date': '1684'}), ('A11743', 'G. Anderson', {'date': '1638'}), ('A10392', 'John Byddell', {'date': '1539'}), ('A11433', 'R. Field', {'date': '1613'}), ('A11433', 'the church', {'date': '1613'}), ('A96557', "Charles Bill, and the executrix of Thomas Newcomb deceas'd;", {'date': '1701'}), ('B05463', 'the heir of Andrew Anderson', {'date': '1687'}), ('A66246', 'Charles Bill', {'date': '1688'}), ('A66246', 'Thomas Newcomb', {'date': '1688'}), ('B25182', 'Mr. P.B. engineir', {'date': '1688'}), ('A78589', 'F.N.', {'date': '1645'}), ('A14896', 'W. Iones', {'date': '1624'}), ('A77282', 'J.C.', {'date': '1659'}), ('A54666', 'W.G.', {'date': '1670'}), ('A84566', 'Edward Husband', {'date': '1650'}), ('A84566', 'John Field', {'date': '1650'}), ('A04926', 'Egidius van der Erve', {'date': '1554'}), ('A66486', 'J.M.', {'date': '1676'}), ('A17881', 'Thomas Snodham', {'date': '1613'}), ('A89441', 'B.A. and published according to order', {'date': '1646'}), ('A07268', 'the widdow of Hubert Anthony called Velpius', {'date': '1633'}), ('A42767', 'F. Neile', {'date': '1646'}), ('A57841', 'B.A.', {'date': '1642'}), ('A39594', 'John Harefinch', {'date': '1684'}), ('A14380', 'W. Stansby', {'date': '1618'}), ('A72029', 'R.F.', {'date': '1601'}), ('A41623', 'Henry Hills', {'date': '1688'}), ('A10045', 'Joseph Barnes', {'date': '1613'}), ('A06348', 'Thomas Dawson', {'date': '1580'}), ('A37249', 'S. Simmons', {'date': '1669'}), ('B01481', 'P. Brooksby', {'date': None}), ('A09895', 'Nicholas Okes', {'date': '1616'}), ('A21815', 'Christopher Barker', {'date': '1583'}), ('B14962', 'I.D.', {'date': '1632'}), ('A97031', 'G. Dexter', {'date': '1643'}), ('A52888', 'J. Grantham', {'date': '1682'}), ('A47046', 'John Hayes', {'date': '1675'}), ('A67148', 'W. Hall', {'date': '1659'}), ('A01850', 'Miles Flesher', {'date': '1628'}), ('A82779', 'Richard Cotes', {'date': '1647'}), ('A39298', 'T. Sowle', {'date': '1696'}), ('A02447', 'VVilliam Christian', {'date': '1634'}), ('A96990', 'T. Sowle', {'date': '1697'}), ('A05195', 'Nicholas Okes', {'date': '1631'}), ('B14948', 'Ao. 1620. The 2. of Decemember. sic And', {'date': '1620'}), ('B14948', 'George Veseler', {'date': '1620'}), ('A15440', 'Henry Middleton', {'date': '1573'}), ('A67012', 'J. Darby', {'date': '1697'}), ('A25247', 'J.F.', {'date': '1650'}), ('A42520', 'H. Hall', {'date': '1668'}), ('A63934', 'T.N.', {'date': '1677'}), ('B05315', 'the heirs and successors of Andrew Anderson', {'date': '1696'}), ('A16170', 'R. Bradock', {'date': '1598'}), ('B13024', 'Robert Barker', {'date': '1630'}), ('A07662', 'Thomas Creede', {'date': '1610'}), ('A20479', 'Henrie Bynneman', {'date': '1569'}), ('A67614', 'M. White', {'date': '1682'}), ('A03742', 'Richardum Tottel.', {'date': '1557'}), ('B14951', 'G. Purslowe?', {'date': '1631'}), ('A41433', 'H.B.', {'date': '1681'}), ('A76468', 'P. Lauren', {'date': '1693'}), ('A51928', 'Andrew Clark', {'date': '1675'}), ('A85667', 'M.S.', {'date': '1649'}), ('B05327', 'the heir of Andrew Anderson', {'date': '1684'}), ('A16126', 'Richarde Watkins', {'date': '1579'}), ('A07883', 'Thomas Vautrollier', {'date': '1581'}), ('A76840', 'Thomas Ratcliffe', {'date': '1658'}), ('A01570', 'Robert walde-graue', {'date': '1584'}), ('A75363', 'the heir of Andrew Anderson', {'date': '1691'}), ('A87519', 'John Macock', {'date': '1648'}), ('A42547', 'R.I.', {'date': '1667'}), ('A66950', 'W.W.', {'date': '1690'}), ('A17909', 'typographica: Ioannis Laquehay, via Iudæ', {'date': '1611'}), ('A92219', 'A.C.', {'date': '1642'}), ('A92219', 'R.A.', {'date': '1642'}), ('A89262', 'Godfridi Philadelphi', {'date': '1651'}), ('A21217', 'N. Bohmberg', {'date': '1574'}), ('A74552', 'Henry Hills', {'date': '1654'}), ('A74552', 'William du-Gard', {'date': '1654'}), ('A03519', 'Rychard Grafton', {'date': '1547'}), ('A95171', 'J. R.', {'date': '1642'}), ('A95122', 'G.D.', {'date': '1642'}), ('A95122', 'R.O.', {'date': '1642'}), ('A00750', 'Thomas Marshe', {'date': '1558'}), ('A27468', 'H. Hills', {'date': '1653'}), ('A12878', 'Wynkyn de Worde', {'date': '1509'}), ('A47141', 'William Bradford', {'date': '1693'}), ('A22156', 'Bonham Norton', {'date': '1618'}), ('A22156', 'John Bill, deputie printers', {'date': '1618'}), ('A10789', 'William Iones', {'date': '1620'}), ('A39614', 'John Field', {'date': '1660'}), ('A15587', 'Robert Stoughten', {'date': '1551'}), ('A06560', 'me Robert Redman', {'date': '1531'}), ('A91809', 'Peter Cole', {'date': '1645'}), ('A01093', 'Nicholas Okes', {'date': '1622'}), ('A15754', 'John Wolfe', {'date': '1589'}), ('A27425', 'J. Leake', {'date': '1697'}), ('A45493', 'S. Roycroft', {'date': '1680'}), ('A50342', 'Samuel Roycroft', {'date': '1682'}), ('B04333', 'W. Onley', {'date': '1697'}), ('A60614', 'W. Godbid', {'date': '1670'}), ('A66361', 'E. Tyler', {'date': '1663'}), ('A25625', 'E. Mallet', {'date': '1685'}), ('A03021', 'Andro Hart', {'date': '1613'}), ('A21429', 'A. Mathewes', {'date': '1628'}), ('A00423', 'Henry Binneman', {'date': '1581'}), ('A05241', 'me Gerard Leeu', {'date': '1492'}), ('A87845', 'M.S.', {'date': '1661'}), ('A26069', 'T.B.', {'date': '1684'}), ('A80729', 'K. Astwood', {'date': '1700'}), ('A95197', 'E.G.', {'date': '1650'}), ('A14155', 'W. Hall', {'date': '1609'}), ('A66306', 'Charles Bill', {'date': '1689'}), ('A66306', 'Thomas Newcomb', {'date': '1689'}), ('A16166', 'Robert Charteris', {'date': '1606'}), ('B09023', 'B. Tooke', {'date': '1681'}), ('B09023', 'J. Crooke', {'date': '1681'}), ('A00649', 'Edvvard Griffin', {'date': '1616'}), ('A37586', 'Henry Hills', {'date': '1657'}), ('A37586', 'John Field', {'date': '1657'}), ('A18331', 'John Beale', {'date': '1631'}), ('A72929', 'Bernard Alsop', {'date': '1618'}), ('A13068', 'Valentine Sims', {'date': '1595'}), ('A56697', 'J.M.', {'date': '1680'}), ('A39968', 'Miles Flesher', {'date': '1683'}), ('A38860', 'E. Mallet', {'date': '1683'}), ('A60022', 'G. Bishop', {'date': '1641'}), ('A60022', 'R. White', {'date': '1641'}), ('B12892', 'Bonham Norton', {'date': '1625'}), ('B12892', 'John Bill', {'date': '1625'}), ('B09281', 'William Bladen', {'date': '1653'}), ('A80924', 'Edward Husband', {'date': '1650'}), ('A80924', 'John Field', {'date': '1650'}), ('A00880', 'Thomas Marshe', {'date': '1579'}), ('A37187', 'J.M.', {'date': '1659'}), ('B09966', 'the heir of Andrew Anderson', {'date': '1690'}), ('A21872', 'the deputies of Christopher Barker', {'date': '1591'}), ('A34350', 'F.L.', {'date': '1653'}), ('A32705', '& J. Redmanni', {'date': '1659'}), ('A32705', 'R. Danielis', {'date': '1659'}), ('A50662', 'S. Roycroft', {'date': '1694'}), ('A50662', 'W. Rawlins', {'date': '1694'}), ('B17385', 'J. Coniers', {'date': '1676'}), ('A95776', 'E.C.', {'date': '1656'}), ('A86749', 'John Field', {'date': '1642'}), ('A86749', 'Luke Norton', {'date': '1642'}), ('A06968', 'A. Mathewes', {'date': '1627'}), ('A65830', 'Andrew Sowle', {'date': '1680'}), ('A55957', 'George Croom', {'date': '1688'}), ('A21942', 'Robert Barker', {'date': '1600'}), ('A61600', 'Robert White', {'date': '1666'}), ('A61625', 'J.H.', {'date': '1694'}), ('A19902', 'John Windet', {'date': '1609'}), ('A56489', 'L. Lichfield', {'date': '1643'}), ('A49784', 'Robert Barkerand', {'date': '1641'}), ('A92790', 'Langly Curtis', {'date': '1680'}), ('A92790', 'Th. Dawks', {'date': '1680'}), ('A39410', 'Henry Hills', {'date': '1683'}), ('A39410', 'Thomas Newcomb', {'date': '1683'}), ('A65809', 'T.M.', {'date': '1651'}), ('A58938', 'J.L.', {'date': '1691'}), ('A39212', 'Matthew Simmons', {'date': '1648'}), ('A04956', 'T. Purfoot', {'date': '1636'}), ('A48654', 'Nat. Thompson', {'date': '1683'}), ('A01704', 'N. Okes', {'date': '1614'}), ('A01704', 'Thomas Creede', {'date': '1614'}), ('A53908', 'J. Redmayne', {'date': '1690'}), ('A88052', 'H. Hall', {'date': '1643'}), ('A18345', 'John Norton', {'date': '1635'}), ('A35865', 'Thomas Maxey', {'date': '1656'}), ('A50949', 'E. G.', {'date': '1641'}), ('A13431', 'Anne Griffin', {'date': '1637'}), ('A29730', 'Benjamin Took', {'date': '1681'}), ('A29730', 'John Crook', {'date': '1681'}), ('A00746', 'Edvvard Griffin', {'date': '1621'}), ('A40150', 'John Bringhurst, printer and', {'date': '1682'}), ('A17335', 'William Stansby', {'date': '1631'}), ('A10995', 'Thomas Creede', {'date': '1612'}), ('A10995', 'the great north doore of Paules', {'date': '1612'}), ('A14363', 'Ihon Tisdale', {'date': '1561'}), ('A68328', 'Richard Badger', {'date': '1637'}), ('A02740', 'T. Creede', {'date': '1614'}), ('A87799', 'T. F.', {'date': '1642'}), ('A11622', 'Henrie Denham', {'date': '1574'}), ('A00669', "Eliot's Court Press?", {'date': '1616'}), ('A65735', 'John Forbes', {'date': '1700'}), ('A90743', 'John Streater', {'date': '1658'}), ('A16245', 'Mr. Sudbury', {'date': '1600'}), ('A01094', 'Henry Ballard', {'date': '1608'}), ('B08081', 'Thomas Cotes.', {'date': '1633'}), ('A69950', 'Edward Husbands', {'date': '1660'}), ('A69950', 'Thomas Newcomb', {'date': '1660'}), ('A21679', 'John Cawood:', {'date': '1565'}), ('A21679', 'Rycharde Iugge', {'date': '1565'}), ('A06207', 'John Beale', {'date': '1619'}), ('A45613', 'J. Streater', {'date': '1656'}), ('A39514', 'Charles Bill, and the executrix of Thomas Newcomb', {'date': '1697'}), ('A59760', 'Thomas Snowdon', {'date': '1681'}), ('A28805', 'John Gain', {'date': '1681'}), ('A64882', 'Joseph Ray', {'date': '1692'}), ('A01248', 'E. Purslowe', {'date': '1637'}), ('A96593', 'Henry Hall', {'date': '1644'}), ('A00325', 'Wynandum de Worde calcographie prelis examinata nouiter: suaque', {'date': '1519'}), ('A21899', 'the deputies of Christopher Barker', {'date': '1593'}), ('B09046', 'His Majesties command', {'date': '1643'}), ('B09046', 'Leonard Lichfield', {'date': '1643'}), ('A51359', 'A.G.', {'date': '1683'}), ('A51359', 'J.P.', {'date': '1683'}), ('A02153', 'John VVolfe', {'date': '1588'}), ('A67147', 'Jacobi Flesheri', {'date': '1660'}), ('A55001', 'S.G.', {'date': '1649'}), ('A76336', 'E. Mallet', {'date': '1685'}), ('A72916', 'Thomas Snodham', {'date': '1619'}), ('A73092', 'G. Eld', {'date': '1617'}), ('A53727', 'T.N.', {'date': '1682'}), ('A78319', 'T. Fawcet', {'date': '1642'}), ('A32371', 'Henry Hills', {'date': '1680'}), ('A32371', 'John Bill', {'date': '1680'}), ('A32371', 'Thomas Newcomb', {'date': '1680'}), ('A42057', 'J.R.', {'date': '1691'}), ('A12495', 'Thomas Raynalde', {'date': '1548'}), ('A93554', 'Matthew Simmons next doore to the Golden Lyon', {'date': '1650'}), ('A89676', 'B.A.', {'date': '1647'}), ('A28660', 'I.L.', {'date': '1649'}), ('A18598', 'John Beale', {'date': '1632'}), ('A34140', 'A. Baldwin', {'date': '1699'}), ('B05229', 'the heirs and successors of Andrew Anderson', {'date': '1695'}), ('A43596', 'W.H.', {'date': '1657'}), ('A56635', 'J. Hayes', {'date': '1665'}), ('A23572', 'George Eld', {'date': '1624'}), ('A05035', 'R. Redman', {'date': '1536'}), ('A68105', 'Thomas Cotes', {'date': '1638'}), ('B24707', 'Andrew Crook', {'date': '1690'}), ('B05161', 'the heir of Andrew Anderson', {'date': '1693'}), ('A19787', 'Adam Islip', {'date': '1628'}), ('A04717', 'Thomas Finlason, typographus Reginald Majest.', {'date': '1612'}), ('A26839', 'R.I.', {'date': '1657'}), ('A70235', 'R. Bishop', {'date': '1643'}), ('B18104', 'Richard Hodgkinson', {'date': '1663'}), ('B18104', 'Thomas Mab', {'date': '1663'}), ('A54415', 'J.M', {'date': '1676'}), ('A81013', 'E.M.', {'date': '1654'}), ('A81013', 'T.R.', {'date': '1654'}), ('A09255', 'Edward Griffin', {'date': '1613'}), ('A00679', 'E. Griffin', {'date': '1637'}), ('A68089', 'John Cawood', {'date': '1557'}), ('A50800', 'E. Flesher', {'date': '1677'}), ('A11380', 'E.G.', {'date': '1639'}), ('A06570', 'Wynkyn de Worde', {'date': '1506'}), ('A10790', 'R. Bishop', {'date': '1639'}), ('A89721', 'Jo. Harefinch', {'date': '1683'}), ('A89721', 'Harefinch, John', {'date': '1683'}), ('A38884', 'Francis Leach', {'date': '1651'}), ('A20760', 'Felix Kyngston', {'date': '1609'}), ('A29856', 'I. Dawks', {'date': '1697'}), ('A18489', 'Anne Griffin', {'date': '1637'}), ('A66096', 'Benjamin Harris', {'date': '1694'}), ('A53696', 'Robert White', {'date': '1668'}), ('B26765', 'D. Mallet', {'date': '1680'}), ('A93749', 'E. Whitlock', {'date': '1698'}), ('A18107', 'Bonham Norton', {'date': '1624'}), ('A18107', 'John Bull', {'date': '1624'}), ('B05440', 'the heirs and successors of Andrew Anderson', {'date': '1699'}), ('A16437', 'Thomas Dauson', {'date': '1577'}), ('A16437', 'Thomas Gardyner', {'date': '1577'}), ('A21987', 'Robert Barker', {'date': '1603'}), ('A14278', 'John Legat', {'date': '1625'}), ('A75886', 'S. Dover', {'date': '1661'}), ('A86260', 'Saint Austines gate', {'date': '1641'}), ('A21757', 'Nevvgate market, next', {'date': '1573'}), ('A22642', 'Robert Barker', {'date': '1640'}), ('A22642', 'the Assignes of John Bill', {'date': '1640'}), ('A01997', 'me willyam Caxton', {'date': '1483'}), ('A01472', 'John Beale', {'date': '1618'}), ('A93557', 'N.T.', {'date': '1686'}), ('A80505', 'Thomas Newcomb, over against Bainards-Castle', {'date': '1656'}), ('A07123', 'G. Eld', {'date': '1621'}), ('A59998', 'J.D.', {'date': '1677'}), ('A85670', 'T.R.', {'date': '1659'}), ('B05650', 'the heirs and successors of Andrew Anderson', {'date': '1695'}), ('A80659', 'Richard Hearn', {'date': '1641'}), ('B12810', 'Bonham Norton', {'date': '1619'}), ('B12810', 'John Bill', {'date': '1619'}), ('A71343', 'John Macock', {'date': None}), ('A13322', 'viduam Marci Wyonis', {'date': '1632'}), ('B15648', 'R. Blower', {'date': '1606'}), ('A26836', 'Richard Cotes', {'date': '1648'}), ('A50902', 'J.M.', {'date': '1670'}), ('A22193', 'Augustine Mathewes', {'date': '1623'}), ('A28781', 'E.C.', {'date': '1672'}), ('A01933', 'Edward Griffin', {'date': '1618'}), ('A15386', 'George Eld', {'date': '1607'}), ('A51026', 'J. Reid', {'date': '1694'}), ('A36332', 'J. Astwood', {'date': '1689'}), ('A16641', 'Henry Binneman', {'date': '1574'}), ('A16218', 'William Stansby', {'date': '1617'}), ('A57623', 'J. Macock', {'date': '1679'}), ('B01079', 'Thomas Newton.', {'date': '1579'}), ('B09033', 'Christopher Barker', {'date': '1660'}), ('B09033', 'John Bill', {'date': '1660'}), ('B04860', 'the heirs and successors of Andrew Anderson', {'date': '1695'}), ('A36960', 'William Pearson', {'date': '1699'}), ('A54460', 'Henry Hills', {'date': '1686'}), ('A91877', 'Matthew Simmons next doore to the Golden Lyon', {'date': '1650'}), ('A12605', 'John Charlewood', {'date': '1584'}), ('A95131', 'E. Cotes', {'date': '1656'}), ('A20980', 'Ioseph Barnes', {'date': '1610'}), ('A53716', 'M. Simmons', {'date': '1649'}), ('A68409', 'R.B.', {'date': '1592'}), ('A78512', 'G. Dawson', {'date': '1660'}), ('A16660', 'E: Griffin:', {'date': '1620'}), ('B03513', 'a Society of Stationers', {'date': '1660'}), ('B08156', 'G. E.', {'date': '1623'}), ('A63337', 'E. Mallet', {'date': '1685'}), ('A01202', 'G. Patté', {'date': '1613'}), ('A63967', 'E.W.', {'date': '1696'}), ('A20518', 'Ralph Blower', {'date': '1612'}), ('A67247', 'Th. Hodgkin', {'date': '1684'}), ('B05719', 'the heirs and successors of Andrew Anderson', {'date': '1698'}), ('A20121', 'John Wolfe', {'date': '1588'}), ('A27073', 'William Bradford', {'date': '1693'}), ('A03279', 'Felix Kyngston', {'date': '1615'}), ('A04808', 'John Daye', {'date': '1571'}), ('B22429', 'Robert Barker', {'date': '1641'}), ('B22429', 'the Assignes of John Bill.', {'date': '1641'}), ('A56662', 'Benjamin Motte, and to be', {'date': '1694'}), ('A03136', 'James Moxon', {'date': '1637'}), ('A19560', 'Felix Kingston', {'date': '1630'}), ('A12820', 'George Purslowe', {'date': '1615'}), ('A05279', 'E. Allde', {'date': '1605'}), ('A22317', 'Bonham Norton', {'date': '1624'}), ('A22317', 'John Bill', {'date': '1624'}), ('A08151', 'B. Alsop', {'date': '1625'}), ('B21242', 'Randal Taylor', {'date': '1694'}), ('A50890', 'Thomas Newcomb', {'date': '1685'}), ('A50378', 'William Bonny', {'date': '1691'}), ('A96073', 'A.M.', {'date': '1655'}), ('A92487', 'the heir of Andrew Anderson', {'date': '1693'}), ('A57937', 'W.O.', {'date': '1694'}), ('A55832', '& T. Robinson', {'date': '1648'}), ('A55832', 'H. Curteyne', {'date': '1648'}), ('A55832', 'L. Lichfield, impensis H. Cripps', {'date': '1648'}), ('A83738', 'G. Dexter', {'date': '1641'}), ('A83738', 'R. Oulton', {'date': '1641'}), ('A66556', 'T.N.', {'date': '1678'}), ('A45564', 'A.M.', {'date': '1658'}), ('A01297', 'Henry Sutton', {'date': '1560'}), ('B15838', 'William Hall', {'date': '1610'}), ('A14860', 'F. Kingston', {'date': '1610'}), ('A38555', 'H.C.', {'date': '1676'}), ('A54829', 'W. Hall', {'date': '1671'}), ('A32037', 'Leonard Lichfield', {'date': '1644'}), ('A02990', 'Roger Daniel', {'date': '1640'}), ('A21204', 'Thomas Colwell', {'date': '1571'}), ('A31389', 'J. Richardson', {'date': '1686'}), ('B03671', 'Christopher Higgins', {'date': '1660'}), ('B00849', 'John Wolfe.', {'date': '1589'}), ('A20520', 'me Wynkyn de Worde', {'date': '1498'}), ('B11278', 'I. Dawson', {'date': '1624'}), ('A72780', 'VVilliam Iaggard', {'date': '1617'}), ('B02300', 'Successors of Andrew Anderson', {'date': '1697'}), ('B02300', 'the Heirs', {'date': '1697'}), ('A43764', 'R.N.', {'date': '1651'}), ('A19671', 'R. Grafton', {'date': '1549'}), ('A22282', 'Bonham Norton', {'date': '1622'}), ('A22282', 'John Bill', {'date': '1622'}), ('B05683', 'the heirs and successors of Andrew Anderson', {'date': '1696'}), ('B18863', 'Thomas Hodgkin', {'date': '1657'}), ('A84408', 'T. Sowle', {'date': '1697'}), ('A27045', 'R.W.', {'date': '1660'}), ('A27533', 'Thomas Gevbels', {'date': '1667'}), ('A11656', 'Iames Bryson', {'date': '1639'}), ('A45470', 'Henry Hall', {'date': '1645'}), ('B06496', 'George Mosman', {'date': '1694'}), ('B24706', 'Andrew Crook', {'date': '1690'}), ('A94192', 'E.C.', {'date': '1668'}), ('B01083', 'Reginalde Wolfe', {'date': '1553'}), ('A80128', 'Robert Ibbitson', {'date': '1649'}), ('A54412', 'George Miller', {'date': '1644'}), ('A04909', 'John Legat', {'date': '1639'}), ('A10994', 'T. Snodham', {'date': '1611'}), ('A08455', 'John Fredericksz Stam', {'date': '1635'}), ('A08455', 'the South-Church', {'date': '1635'}), ('A21245', 'Adam Islip', {'date': '1598'}), ('A17389', 'Edward Griffin', {'date': '1615'}), ('A17389', 'T. Snodham.', {'date': '1615'}), ('A39519', 'B. Green', {'date': '1695'}), ('A06255', 'Richard Hodgkinson', {'date': '1629'}), ('A13551', 'H. Lownes', {'date': '1628'}), ('B07975', 'Adam Islip.', {'date': '1598'}), ('A02237', 'Richard Bradocke.', {'date': '1598'}), ('A02438', 'William Iaggard', {'date': '1615'}), ('A84164', 'William Downing', {'date': '1684'}), ('A46211', 'Benjamin Took', {'date': '1684'}), ('A11615', 'Bernard Alsop', {'date': '1622'}), ('A13401', 'E. Whitchurch', {'date': '1542'}), ('A29556', 'E. Cotes', {'date': '1667'}), ('A01456', 'W. White', {'date': '1611'}), ('A38848', 'Edward Jones', {'date': '1689'}), ('A66571', 'M.C.', {'date': '1684'}), ('A68519', 'Thomas Cadman', {'date': '1588'}), ('A68519', 'Thomas Orwin', {'date': '1588'}), ('A93323', 'M.S.', {'date': '1644'}), ('A53713', 'A. Lichfield', {'date': '1657'}), ('A41596', 'Henry Hills', {'date': '1687'}), ('A18712', 'Ihon Cawod', {'date': '1556'}), ('A17985', 'T. Este', {'date': '1606'}), ('A46489', 'Charles Bill', {'date': '1688'}), ('A46489', 'Henry Hills', {'date': '1688'}), ('A46489', 'Thomas Newcomb', {'date': '1688'}), ('A46043', 'John Wallis', {'date': '1689'}), ('A95895', 'John Macock', {'date': '1645'}), ('A09845', '& Radulphi Nuberij', {'date': '1585'}), ('A09845', 'Edmundum Bollifantum, impensis Henrici Denhami', {'date': '1585'}), ('A16489', 'John Hauiland', {'date': '1630'}), ('A38579', 'Thomas Newcomb', {'date': '1668'}), ('A24269', 'Henry Hills', {'date': '1683'}), ('A24269', 'Thomas Newcomb', {'date': '1683'}), ('A00168', 'Christopher Barker', {'date': '1580'}), ('A17650', 'Felix Kingston', {'date': '1605'}), ('A27290', 'R. Holt', {'date': '1688'}), ('A96248', 'John Field', {'date': '1645'}), ('A44272', 'M.I.', {'date': '1660'}), ('A62912', 'John Foster', {'date': '1676'}), ('A44984', 'Samuel Roycroft', {'date': '1681'}), ('A95701', 'Thomas Mabb', {'date': '1660'}), ('A54538', 'T. F.', {'date': '1642'}), ('A08107', 'I. Windet', {'date': '1598'}), ('B21024', 'J. Orme', {'date': '1698'}), ('A88060', 'Matthew Simmons', {'date': '1649'}), ('A07200', 'George Purslowe', {'date': '1625'}), ('A07332', 'Richard Hodgkinsonne', {'date': '1639'}), ('A92661', 'Francis Neile', {'date': '1650'}), ('A11954', 'Edward Blount ', {'date': '1623'}), ('A11954', 'Isaac Iaggard', {'date': '1623'}), ('A00730', 'A. Jeffes', {'date': '1592'}), ('A00730', 'P. Short', {'date': '1592'}), ('A18963', 'Thomas Snodham', {'date': '1613'}), ('A86725', 'Henry Hills', {'date': '1659'}), ('A02091', 'Thomas Creede', {'date': '1599'}), ('A15530', '', {'date': '1553'}), ('A96891', 'George Miller', {'date': '1644'}), ('A96891', '', {'date': '1644'}), ('A96891', 'order', {'date': '1644'}), ('A30597', 'E.C.', {'date': '1671'}), ('B27318', 'H.H.', {'date': '1700'}), ('A04189', 'Miles Flesher', {'date': '1634'}), ('A12078', 'Edward Allde', {'date': '1607'}), ('A07418', 'Barnard Alsop', {'date': '1620'}), ('A49355', 'George Croom', {'date': '1685'}), ('A15107', 'Henry Bynneman', {'date': '1578'}), ('A76227', 'Robert White', {'date': '1657'}), ('A14584', 'Edward Allde', {'date': '1591'}), ('A92942', 'R.', {'date': '1657'}), ('A92942', 'W. Leybourn', {'date': '1657'}), ('A68658', 'E. van der Erve', {'date': '1555'}), ('A13028', 'Richard Schilders', {'date': '1604'}), ('A02059', 'Felix Kyngston', {'date': '1609'}), ('A87671', 'I.M.', {'date': '1646'}), ('B10078', 'Richard Pierce', {'date': '1684'}), ('A75699', 'Thomas Newcomb', {'date': '1654'}), ('A10414', 'John Charlewood', {'date': '1587'}), ('A21648', 'John Cawood', {'date': '1562'}), ('A21648', 'Rycharde Jugge', {'date': '1562'}), ('A22727', 'William Stansby', {'date': '1615'}), ('A83735', 'Robert Barker', {'date': '1641'}), ('B05184', 'the heir of Andrew Anderson', {'date': None}), ('A11524', 'Thomas Snodham', {'date': '1614'}), ('A91385', 'B.H.', {'date': '1643'}), ('A02361', 'Nicholas Okes', {'date': '1621'}), ('A16267', 'me Robert Wyer', {'date': '1550'}), ('A00437', 'John Charlewood?', {'date': '1579'}), ('A19556', 'G. Eld', {'date': '1621'}), ('A19556', 'M. Flesher', {'date': '1621'}), ('A83667', 'Thomas Harper', {'date': '1646'}), ('A03858', 'Ar. Hatfield', {'date': '1605'}), ('A49022', 'James Flesher', {'date': '1668'}), ('A00594', 'Miles Flesher', {'date': '1629'}), ('A67611', 'R. Daniel', {'date': None}), ('A13457', 'Edward Allde', {'date': '1622'}), ('A41388', 'L. Lichfield', {'date': '1674'}), ('A08542', 'Thomas East', {'date': '1580'}), ('A33200', 'H.C.', {'date': '1683'}), ('A22542', 'Robert Barker', {'date': '1631'}), ('A22542', 'the Assignes of John Bill', {'date': '1631'}), ('A79294', 'Christopher Barker', {'date': '1660'}), ('A79294', 'John Bill', {'date': '1660'}), ('A78142', 'E.G.', {'date': '1644'}), ('A67475', 'Thomas Leach', {'date': '1660'}), ('A88359', 'Robert Ibbitson', {'date': '1648'}), ('A10027', 'T. Cotes', {'date': '1630'}), ('A07782', 'Nicholas Okes', {'date': '1609'}), ('A04081', 'the Society of Stationers', {'date': '1634'}), ('A43673', 'R.E.', {'date': '1684'}), ('A73991', 'Robert Barker', {'date': '1635'}), ('A73991', 'the Assignes of John Bill', {'date': '1635'}), ('A34447', 'W. Redmayne, and to be', {'date': '1700'}), ('A09289', 'Richard Bishop, and to be', {'date': '1640'}), ('A26807', 'J.D.', {'date': '1687'}), ('B03688', 'Edward Jones', {'date': '1689'}), ('A41199', 'Christopher Higgins', {'date': '1656'}), ('A94049', 'Matthew Simmons', {'date': '1644'}), ('A21038', 'Edward Griffin', {'date': '1616'}), ('A32421', 'Christopher Barker', {'date': '1665'}), ('A32421', 'John Bill', {'date': '1665'}), ('B09090', 'Edward Husband', {'date': '1650'}), ('B09090', 'John Field', {'date': '1650'}), ('B29161', 'M. Flesher', {'date': '1686'}), ('A57599', 'Thomas James', {'date': '1678'}), ('A46903', 'H. Brugis', {'date': '1669'}), ('A88777', 'B. A.', {'date': '1648'}), ('A44707', 'J.G.', {'date': '1662'}), ('A05633', 'Willem Christiaens', {'date': '1637'}), ('A40800', 'H. Hall', {'date': '1645'}), ('A11266', 'William White', {'date': '1607'}), ('A27428', 'J.H.', {'date': '1699'}), ('A58207', 'Thomas Newcomb', {'date': '1654'}), ('A36183', 'N.T.', {'date': '1674'}), ('A36183', 'T.R.', {'date': '1674'}), ('A68010', 'Richard Grafton', {'date': '1547'}), ('A72612', 'Thomas Snodham', {'date': '1618'}), ('A21203', 'Rychard Haruy', {'date': '1552'}), ('A42126', 'Henry Clark', {'date': '1685'}), ('A03103', 'John Gough', {'date': '1540'}), ('A04310', 'R. Read', {'date': '1603'}), ('A21170', 'J. Windet?', {'date': '1595'}), ('B21730', 'Christopher Barker', {'date': '1672'}), ('B21730', 'the Assigns of John Bill', {'date': '1672'}), ('A10393', 'John Dawson', {'date': '1622'}), ('A19491', 'I. Windet', {'date': '1610'}), ('A32409', 'Christopher Barker', {'date': '1661'}), ('A32409', 'John Bill', {'date': '1661'}), ('B05451', 'the heirs and successors of Andrew Anderson', {'date': '1694'}), ('A13119', 'Felix Kyngston', {'date': '1620'}), ('A11610', 'R. Young', {'date': '1639'}), ('A76368', 'A. Coles', {'date': '1650'}), ('A76368', 'T. Mab', {'date': '1650'}), ('A02862', 'Felix Kingston', {'date': '1606'}), ('A80416', 'I. L.', {'date': '1644'}), ('A34785', 'John Raworth', {'date': '1644'}), ('A70276', 'J. Grismond', {'date': '1661'}), ('A56369', 'William Blanden', {'date': '1661'}), ('B43912', 'Christopher Higgins', {'date': '1656'}), ('A58149', 'John Owsley', {'date': '1658'}), ('B13093', 'Robert Barker', {'date': '1635'}), ('A08791', 'F.Kingston', {'date': '1624'}), ('A26845', 'A.M.', {'date': '1670'}), ('A07756', 'John Allde', {'date': '1576'}), ('A79591', 'Richard Cotes.', {'date': '1641'}), ('A79591', 'Thomas', {'date': '1641'}), ('B07722', 'John Sudbury and George Humble', {'date': '1613'}), ('B08005', 'T.C.', {'date': '1605'}), ('A12149', 'John Dawson', {'date': '1640'}), ('A01880', 'John Crispin', {'date': '1558'}), ('A96595', 'Henry Hall', {'date': '1643'}), ('A74546', 'Henry Hills', {'date': '1654'}), ('A74546', 'William du-Gard', {'date': '1654'}), ('A06182', 'Thomas Creede', {'date': '1603'}), ('A06182', 'Valentine Simmes', {'date': '1603'}), ('A64611', 'James Young', {'date': '1645'}), ('B43866', 'J.D.', {'date': '1680'}), ('A54682', 'Richard Hodgkinson', {'date': '1663'}), ('A72872', 'B. Alsop.', {'date': '1640'}), ('A72872', 'Thomas. Fawcet.', {'date': '1640'}), ('A14258', 'Leonard Lichfield', {'date': '1638'}), ('B05196', 'the heir of Andrew Anderson', {'date': '1685'}), ('A73427', 'Felix Kyngston', {'date': '1607'}), ('A32213', 'Evan Tyler', {'date': '1650'}), ('A97309', 'John Redmayne', {'date': '1659'}), ('A74133', 'R.I.', {'date': '1653'}), ('A53586', 'T.M.', {'date': '1659'}), ('A01979', 'John Beale', {'date': '1619'}), ('A76881', 'the citty-club, the country spade-men, rich-diamond men and loyall hearted men.', {'date': '1643'}), ('A91574', 'M.F.', {'date': '1645'}), ('A30380', 'J. Bradford', {'date': '1690'}), ('A03444', 'Felix Kyngston', {'date': '1609'}), ('A62153', 'J. Bradford', {'date': '1696'}), ('A18427', 'Thomas Cotes', {'date': '1639'}), ('A20764', 'Edward Griffin', {'date': '1616'}), ('A21884', 'the deputies of Christopher Barker', {'date': '1592'}), ('A74239', 'Leonard Lichfield', {'date': '1645'}), ('A14012', 'Reginald Woulfe', {'date': '1560'}), ('B01023', 'George Elde', {'date': '1618'}), ('A22736', 'Bonham Norton', {'date': '1622'}), ('A22736', 'John Bill', {'date': '1622'}), ('A02040', 'Thomas Colwell', {'date': '1568'}), ('A89338', 'T. Favvcet', {'date': '1642'}), ('B05556', 'the heirs and successors of Andrew Anderson', {'date': '1696'}), ('A12801', 'H. Lownes', {'date': '1607'}), ('A06960', 'I. Roberts', {'date': '1595'}), ('A63562', 'E. Mallet', {'date': '1684'}), ('A94349', 'Matthew Simmons', {'date': '1646'}), ('A70747', 'B. Mills', {'date': '1660'}), ('A21620', 'John Cawood', {'date': '1560'}), ('A21620', 'Rycharde Iugge', {'date': '1560'}), ('A39071', 'His Majesties command', {'date': '1643'}), ('A39071', 'Leonard Lichfield', {'date': '1643'}), ('A21886', 'the deputies of Christopher Barker', {'date': '1592'}), ('A43660', 'T.B.', {'date': '1685'}), ('A16485', 'Richard Field', {'date': '1600'}), ('A03319', 'William Caxton', {'date': '1482'}), ('B05033', 'Thomas. Dawks', {'date': '1680'}), ('A02135', 'W. Stansby', {'date': '1616'}), ('A13419', 'Edward All-de', {'date': '1622'}), ('A65269', 'H. Brugis', {'date': '1677'}), ('A89390', 'J. Heptinstall', {'date': '1697'}), ('A89390', 'John Welch musical instrument-maker', {'date': '1697'}), ('A77851', 'J.H.', {'date': '1658'}), ('A19816', 'Edward Allde', {'date': '1594'}), ('A19816', 'James Roberts', {'date': '1594'}), ('A65948', 'Thomas Harbin', {'date': '1693'}), ('A22690', 'the deputies of Christopher Barker', {'date': '1594'}), ('B02011', 'Robert Barkerand', {'date': '1642'}), ('A25329', 'Thomas Milbourne', {'date': '1673'}), ('A14690', 'Henrie Middleton', {'date': '1578'}), ('B03015', 'Robert Barker', {'date': '1642'}), ('A82368', 'John Field', {'date': '1652'}), ('A55222', 'Samuel Green', {'date': '1685'}), ('A20410', 'E. Allde', {'date': '1596'}), ('A74157', 'Henry Hills', {'date': '1657'}), ('A74157', 'John Field', {'date': '1657'}), ('B05443', 'the heirs and successors of Andrew Anderson', {'date': '1700'}), ('A47796', 'H.H.', {'date': '1678'}), ('B16191', 'Humfrey Powell', {'date': '1548'}), ('A63606', 'D. Mallet', {'date': '1680'}), ('A32030', 'Leonard Lichfield', {'date': '1643'}), ('A01143', 'John Wolfe', {'date': '1589'}), ('A04606', 'Henrie Bynneman', {'date': '1579'}), ('B05655', 'the heir of Andrew Anderson', {'date': '1700'}), ('A20619', 'William Stansby', {'date': '1611'}), ('A02125', 'John Danter', {'date': '1594'}), ('B10264', 'W. Bladen', {'date': '1659'}), ('A19319', 'Robert Copland', {'date': '1536'}), ('A44292', 'F.G.', {'date': '1659'}), ('A79488', 'M. S. and to be', {'date': '1643'}), ('A79488', 'T. P.', {'date': '1643'}), ('A62516', 'A. Coe', {'date': '1662'}), ('A40992', 'H.C.', {'date': '1686'}), ('A86571', 'James Cottrel', {'date': '1650'}), ('A32677', 'Richard Parker', {'date': '1698'}), ('A18326', 'R. Barker', {'date': '1616'}), ('A77382', 'T. Sowle', {'date': '1694'}), ('A05379', 'V. Simmes', {'date': '1607'}), ('A08871', 'Thomas Creede', {'date': '1600'}), ('B09784', 'Henry Brugis', {'date': '1681'}), ('A79325', 'John Bill', {'date': '1661'}), ('A69832', 'Peter Cole', {'date': '1662'}), ('A36953', 'J.G.', {'date': '1662'}), ('A23818', 'J. C.', {'date': '1678'}), ('B24766', 'Andrew Crook', {'date': '1691'}), ('A72019', 'Robert Barker', {'date': '1604'}), ('A72190', 'E. Griffin.', {'date': '1640'}), ('A73190', 'A. Mathewes', {'date': '1631'}), ('A57118', 'J. T.', {'date': '1657'}), ('B19034', 'Stephen Bulkley', {'date': '1646'}), ('A65010', 'N. Thompson', {'date': '1681'}), ('A18081', 'Thomas Guarinus', {'date': '1577'}), ('A57358', 'Peter Cole', {'date': '1655'}), ('B19195', 'VVilliam Bladen', {'date': '1646'}), ('B23108', 'Thomas Hodgkin', {'date': '1678'}), ('A89259', 'J.C.', {'date': '1655'}), ('A23434', 'Rychard Tottel', {'date': '1582'}), ('A23637', 'John Foster', {'date': '1679'}), ('A15124', 'me Wynkyn de Worde', {'date': '1530'}), ('A15346', 'the Widow Orwin', {'date': '1597'}), ('A10377', 'Bonham Norton', {'date': '1618'}), ('A10377', 'John Bill', {'date': '1618'}), ('A02400', 'Augustine Mathewes', {'date': '1624'}), ('A56583', 'Henry Hills', {'date': '1654'}), ('A11131', 'E. Allde', {'date': '1604'}), ('A13284', 'Miles Flesher', {'date': '1629'}), ('A34659', 'M.S.', {'date': '1655'}), ('A54257', 'the author, or to be had', {'date': '1674'}), ('A17336', 'E. Allde', {'date': '1608'}), ('A20134', 'R. Blower', {'date': '1612'}), ('A52557', 'John Foster', {'date': '1678'}), ('B06615', 'the heirs and successors of Andrew Anderson', {'date': '1695'}), ('A16508', 'Thomas Dawson', {'date': '1587'}), ('A66602', 'George Croom', {'date': '1690'}), ('A38392', 'T. M.', {'date': '1669'}), ('B00016', 'John Bill.', {'date': '1629'}), ('B05116', 'the heir of Andrew Anderson', {'date': '1691'}), ('A67137', 'J.M.', {'date': '1651'}), ('A79292', 'John Bill', {'date': '1661'}), ('A80935', 'Edward Husband', {'date': '1650'}), ('A80935', 'John Field', {'date': '1650'}), ('A16109', 'Edwarde Whitchurche', {'date': '1547'}), ('A44738', 'J.G.', {'date': '1659'}), ('A57597', 'R.I.', {'date': '1667'}), ('A62484', 'Iane Coe', {'date': '1645'}), ('A65998', 'A. Maxwell', {'date': '1663'}), ('A97258', 'R.', {'date': '1654'}), ('A97258', 'W. Leybourn', {'date': '1654'}), ('A51111', 'B. Griffin', {'date': '1676'}), ('A51111', 'S.', {'date': '1676'}), ('B02080', 'the heires of Andrew Anderson', {'date': '1680'}), ('A36435', 'James Brown', {'date': '1651'}), ('A03854', 'John Wolfe', {'date': '1589'}), ('A14708', 'Henrie Bynneman', {'date': '1573'}), ('A58837', 'Benjamin Harris', {'date': '1694'}), ('A56215', 'R.I.', {'date': '1653'}), ('A02087', 'Anne Griffin', {'date': '1636'}), ('A70503', 'R.N.', {'date': '1662'}), ('A17309', 'Bernard Alsop', {'date': '1628'}), ('A17309', 'Thomas Cotes', {'date': '1628'}), ('A17309', 'Thomas Fawcet', {'date': '1628'}), ('A13562', 'Augustine Mathewes', {'date': '1629'}), ('A09417', 'T. Creed', {'date': '1609'}), ('A12126', 'Edvvard VVhite', {'date': '1581'}), ('A12126', 'John Charlewood', {'date': '1581'}), ('A70445', 'T. Milbourn', {'date': '1678'}), ('A04194', 'Miles Flesher', {'date': '1629'}), ('A09539', 'R. Watkins', {'date': '1576'}), ('A12290', 'J. Rastell', {'date': '1528'}), ('A38319', 'Christopher Barker', {'date': '1663'}), ('A38319', 'John Bill', {'date': '1663'}), ('A36296', 'James Flesher', {'date': '1649'}), ('A53750', 'R. Everingham', {'date': '1679'}), ('A17887', 'the widowe of Marke Wyon', {'date': '1632'}), ('A78334', 'D. Maxwell', {'date': '1659'}), ('A10250', 'Robert Waldegraue', {'date': '1591'}), ('A40415', 'E.T.', {'date': '1668'}), ('A31203', 'Thomas Newcomb', {'date': '1652'}), ('A42982', 'R.', {'date': '1654'}), ('A42982', 'W. Laybourn', {'date': '1654'}), ('A35666', 'J.D.', {'date': '1681'}), ('A50842', 'J. Wallis', {'date': '1683'}), ('A66279', "Charles Bill, and the executrix of Thomas Newcomb decease'd", {'date': '1692'}), ('A02497', 'John Lichfield', {'date': '1617'}), ('A02497', 'William Wrench', {'date': '1617'}), ('A67210', 'T. Sowle', {'date': '1700'}), ('A66144', 'A.', {'date': '1688'}), ('A66144', 'J. Starkey', {'date': '1688'}), ('A66144', 'W. Churchill', {'date': '1688'}), ('A15364', 'John Norton', {'date': '1640'}), ('A15364', 'R. Hearne', {'date': '1640'}), ('A22142', 'Robert Barker', {'date': '1617'}), ('A82399', 'Henry Hills', {'date': '1657'}), ('A82399', 'John Field', {'date': '1657'}), ('A19858', 'William Iones', {'date': '1617'}), ('A46568', 'Charles Bill', {'date': '1687'}), ('A46568', 'Henry Hills', {'date': '1687'}), ('A46568', 'Thomas Newcomb', {'date': '1687'}), ('A46565', 'the heir of Andrew Anderson', {'date': '1685'}), ('A83565', 'James Cottrel', {'date': '1660'}), ('A28874', 'Henry Hills', {'date': '1686'}), ('A77328', 'James Flesher', {'date': '1652'}), ('A28280', 'J. Leake', {'date': '1700'}), ('A63412', 'G. Croom', {'date': '1684'}), ('A18421', 'Thomas Snodham', {'date': '1613'}), ('A15525', 'W. Iaggard', {'date': '1614'}), ('B02097', 'His Majesties Printers', {'date': '1662'}), ('A04853', 'Ioseph Barnes', {'date': '1608'}), ('A22571', 'Robert Barker', {'date': '1634'}), ('A22571', 'the Assignes of John Bill', {'date': '1634'}), ('A33935', 'R. Janaway', {'date': '1687'}), ('A78034', 'M.S.', {'date': '1645'}), ('A77473', 'Thomas Paine', {'date': '1641'}), ('A65680', 'R. Januway Janeway', {'date': '1681'}), ('B05631', 'the heirs and successors of Andrew Anderson', {'date': '1700'}), ('A43583', 'J.R.', {'date': '1679'}), ('A88735', 'E. Mallet', {'date': '1684'}), ('A38253', 'Richard Cotes', {'date': '1649'}), ('A32582', 'Christopher Barker', {'date': '1664'}), ('A32582', 'John Bill', {'date': '1664'}), ('A90327', 'Leonardi Lichfield Acad. Typog.', {'date': '1675'}), ('A10687', 'M. Dawson', {'date': '1637'}), ('A12570', 'N. Okes', {'date': '1610'}), ('B21822', 'Henry Hills', {'date': '1657'}), ('B21822', 'John Field', {'date': '1657'}), ('A95036', 'T.H.', {'date': '1641'}), ('A59432', 'T.N.', {'date': '1676'}), ('A94261', 'J. G.', {'date': '1653'}), ('A14307', 'Thomas Snodham', {'date': '1619'}), ('A55805', 'Andrew Sowle', {'date': '1683'}), ('A80842', 'E. Cotes', {'date': '1656'}), ('B23913', 'R.D.', {'date': '1658'}), ('A90699', 'J.H.', {'date': '1683'}), ('A12615', 'Felix Kyngston', {'date': '1609'}), ('A45864', 'Henry Hills', {'date': '1687'}), ('B13062', 'Robert Barker', {'date': '1634'}), ('A32045', 'Leonard Lichfield', {'date': '1643'}), ('A93155', 'M. Shinkin', {'date': '1647'}), ('A43182', 'Roger Daniel', {'date': '1647'}), ('A85496', 'W. W.', {'date': '1653'}), ('A55586', 'John Kidgell', {'date': '1684'}), ('A92866', 'W.D.', {'date': '1689'}), ('A16814', 'E. Allde', {'date': '1602'}), ('A67361', 'B. Griffin', {'date': '1680'}), ('A50610', 'J. Macock', {'date': '1653'}), ('A02525', 'M. Bradwood', {'date': '1612'}), ('A09002', 'Richard Schilders', {'date': '1607'}), ('A80489', 'John Raworth', {'date': '1642'}), ('A47273', 'J.C.', {'date': '1665'}), ('A53224', 'the author', {'date': '1675'}), ('A08444', 'Jhon Day:', {'date': '1551'}), ('A08444', 'the Litle Counduit', {'date': '1551'}), ('A94530', 'Henry Hills', {'date': '1655'}), ('A44449', 'B. Motte', {'date': '1698'}), ('A70932', 'Thomas Ratcliffe', {'date': '1659'}), ('A75792', 'J.C.', {'date': '1660'}), ('A37186', 'J.H.', {'date': '1686'}), ('A30952', 'Thomas Warren', {'date': '1652'}), ('A61358', 'Richard Baldwin', {'date': '1692'}), ('A27534', 'Henry Hills', {'date': '1686'}), ('A57825', 'H. Dudley', {'date': '1641'}), ('A08630', 'Henry Denham', {'date': '1567'}), ('A92440', 'John Macock.', {'date': '1645'}), ('A26009', 'G. Miller', {'date': '1645'}), ('A02723', 'John Beale', {'date': '1632'}), ('A02723', 'R. Badger?', {'date': '1632'}), ('A40076', 'R.N.', {'date': '1672'}), ('A28523', 'J.M.', {'date': '1659'}), ('A10083', 'T. Creede', {'date': '1609'}), ('A54008', 'J.D.', {'date': '1696'}), ('A06791', 'Richard Field', {'date': '1601'}), ('A58561', 'Evan Tyler', {'date': '1648'}), ('A57027', 'E. Tyler', {'date': '1653'}), ('B01781', 'John Reid', {'date': '1694'}), ('A81976', 'John Brudenell', {'date': '1659'}), ('A19255', 'Thomas Purfoot', {'date': '1626'}), ('B03873', 'Henry Hills', {'date': '1684'}), ('B03873', 'Thomas Newcomb', {'date': '1684'}), ('A47636', 'Henry Hills', {'date': '1684'}), ('A47636', 'Jun.', {'date': '1684'}), ('A50112', 'Nat. Thompson', {'date': '1687'}), ('A14467', 'Robert VValde-graue', {'date': '1585'}), ('A49513', 'Henry Hall', {'date': '1655'}), ('A58767', 'Thomas Newcomb', {'date': '1685'}), ('A58767', 'the heir to Andrew Anderson;', {'date': '1685'}), ('A48646', 'E. Crouch', {'date': '1672'}), ('A37899', 'Robert Barker, and', {'date': '1641'}), ('A36799', 'F.', {'date': '1666'}), ('A36799', 'T. Warren', {'date': '1666'}), ('A44957', "Charles Bill and the executrix of Thomas Newcomb, deceas'd", {'date': '1700'}), ('A95062', 'Charles Bill', {'date': '1689'}), ('A95062', 'Thomas Newcomb', {'date': '1689'}), ('A20528', 'I.D.', {'date': '1634'}), ('A50520', 'J. Streater', {'date': '1666'}), ('A03120', 'Humphrey Lownes', {'date': '1618'}), ('A26160', 'R. Cotes', {'date': '1648'}), ('A28831', 'Andr. Clarke', {'date': '1675'}), ('A51123', 'T. Sowle', {'date': '1695'}), ('A01767', 'Willyam Reddell', {'date': '1552'}), ('A64197', 'M.S.', {'date': '1658'}), ('A00921', 'Ihon Kyngston', {'date': '1566'}), ('A74385', 'Edward Husband', {'date': '1650'}), ('A74385', 'John Field', {'date': '1650'}), ('A15117', 'me Johan waylande', {'date': '1537'}), ('A69173', 'E. Griffin', {'date': '1620'}), ('A28252', 'M. Inman', {'date': '1660'}), ('A91125', 'Robert VVood', {'date': '1651'}), ('B03276', 'Edward Crowch', {'date': '1664'}), ('A67248', 'G. Croom', {'date': '1692'}), ('A26158', 'J.H.', {'date': '1699'}), ('A46110', 'John Crooke', {'date': '1667'}), ('A08448', 'Byllynges gate', {'date': '1549'}), ('A08448', 'N. Hill', {'date': '1549'}), ('A66166', 'Charles Bill', {'date': '1691'}), ('A66166', 'Thomas Newcomb', {'date': '1691'}), ('A07809', 'George Miller', {'date': '1626'}), ('B26796', 'T. James', {'date': '1682'}), ('A35284', 'N.T.', {'date': '1672'}), ('A35284', 'T.R.', {'date': '1672'}), ('A44832', 'William Warwick', {'date': '1663'}), ('A42498', 'R. Bishop', {'date': '1642'}), ('A39917', 'J.H.', {'date': '1661'}), ('A19974', 'Thomas Cotes', {'date': '1637'}), ('A02626', 'John Beale', {'date': '1613'}), ('A56576', 'Iames Brown', {'date': '1660'}), ('A21897', 'the deputies of Christopher Barker', {'date': '1593'}), ('A19316', 'Thomas Finlason', {'date': '1618'}), ('A81611', 'John Reid', {'date': '1698'}), ('A06991', 'John Beale', {'date': '1633'}), ('A06401', 'Iames Roberts', {'date': '1596'}), ('A00089', 'Robert Barker', {'date': '1640'}), ('A10806', 'I. Charlewood', {'date': '1589'}), ('A64324', 'A. Maxwell', {'date': '1673'}), ('A83391', 'John Field', {'date': '1651'}), ('A46141', 'Benjamin Tooke', {'date': '1673'}), ('A20081', 'Edward Allde', {'date': '1602'}), ('A40476', 'Reinier Leers', {'date': '1686'}), ('A76798', 'Henry Hills', {'date': '1659'}), ('A02281', 'Adam Islip', {'date': '1596'}), ('A10184', 'Augustine Mathewes', {'date': '1628'}), ('A65304', 'E.M.', {'date': '1658'}), ('A65050', 'Randal Taylor', {'date': '1691'}), ('A00268', 'H. Denham', {'date': '1578'}), ('A89134', 'John Macock', {'date': '1646'}), ('A06508', 'S. Mierdman', {'date': '1548'}), ('B05662', 'the heir of Andrew Anderson', {'date': None}), ('A77923', 'Barnard Alsop', {'date': '1641'}), ('A54095', 'T. Sowle', {'date': '1694'}), ('A59355', 'Richard Baldwin', {'date': '1694'}), ('A46690', 'Thomas Harper', {'date': '1642'}), ('A03614', 'M.P.', {'date': '1638'}), ('A62257', 'F.C.', {'date': '1683'}), ('A62257', 'J.C.', {'date': '1683'}), ('A58968', 'G.C.', {'date': '1688'}), ('A80917', 'William Du-Gard', {'date': '1653'}), ('A20202', 'Melchiside Bradwood', {'date': '1607'}), ('A74993', 'S. Hawes', {'date': '1699'}), ('A67685', 'H.H. jun.', {'date': '1684'}), ('A31863', 'Leonard Lichfield', {'date': '1642'}), ('B05484', 'the heir of Andrew Anderson', {'date': '1687'}), ('A06622', 'Thomas Scarlet', {'date': '1594'}), ('A51337', 'D. Mallet', {'date': '1682'}), ('A82803', 'Robert Barker', {'date': '1643'}), ('A72252', 'John Wolfe', {'date': '1593'}), ('A39994', 'the heir of Andrew Anderson', {'date': '1679'}), ('A15337', 'Robert Waldegraue', {'date': '1587'}), ('B13169', 'Robert Barker', {'date': '1639'}), ('B04990', 'William Downing', {'date': None}), ('A07726', 'impress.', {'date': '1539'}), ('A63949', 'Christopher Barker', {'date': '1665'}), ('A63949', 'John Bill', {'date': '1665'}), ('A13410', 'Nicholas Okes', {'date': '1623'}), ('A85365', 'T. Badger', {'date': '1644'}), ('A04713', 'Edward Griffin', {'date': '1615'}), ('A22823', 'John Daye', {'date': '1570'}), ('A91254', 'Fr: Neile', {'date': '1650'}), ('A14624', 'John Charlewood', {'date': '1588'}), ('A16965', 'Richard Schilders', {'date': '1603'}), ('A42582', 'T.J.', {'date': '1660'}), ('A22172', 'W. Jones', {'date': '1618'}), ('A29549', 'John Darby', {'date': '1695'}), ('A88858', 'J. Bradford', {'date': '1696'}), ('A61409', 'J.D.', {'date': '1695'}), ('A65015', 'T. Snowden', {'date': '1683'}), ('A14401', 'Edwarde Whytchurch, wyth the kynges moste gratious priuelege', {'date': '1543'}), ('A02573', 'S. Mierdman', {'date': '1546'}), ('A54733', 'R.', {'date': '1654'}), ('A54733', 'W. Leybourn', {'date': '1654'}), ('A68914', 'Thomas Snodham', {'date': '1622'}), ('A37366', 'S.B.', {'date': '1650'}), ('A87384', 'T.R.', {'date': '1657'}), ('A44696', 'S. Bridge', {'date': '1698'}), ('A69349', 'Bonham Norton', {'date': '1619'}), ('A69349', 'John Bill', {'date': '1619'}), ('A10169', 'N. Okes', {'date': '1611'}), ('A87042', 'Thomas Mabb, and to be', {'date': '1660'}), ('A97226', 'Will. Bonny', {'date': '1696'}), ('A52735', 'Freeman Collins', {'date': '1695'}), ('B18113', 'S. Roycroft', {'date': '1682'}), ('A26257', 'Edward Jones', {'date': '1696'}), ('A38211', 'R. Daniel', {'date': '1660'}), ('A31555', 'John Harefinch', {'date': '1683'}), ('A68982', 'R. Bradock', {'date': '1606'}), ('A09052', 'Nicholas Okes', {'date': '1616'}), ('A19506', 'T.S.', {'date': '1612'}), ('A12160', 'W. Stansby', {'date': '1626'}), ('A21163', 'Henrye Dizle', {'date': '1580'}), ('A03809', 'I.D.', {'date': '1626'}), ('A83649', 'Richard Cotes', {'date': '1648'}), ('A81001', 'Henry Hills', {'date': '1655'}), ('A81001', 'John Field', {'date': '1655'}), ('A40770', 'Randall Taylor', {'date': '1690'}), ('A74389', 'Edward Husband', {'date': '1650'}), ('A74389', 'John Field', {'date': '1650'}), ('A17866', 'R. Young', {'date': '1635'}), ('A27738', 'Geogre sic Croom', {'date': '1683'}), ('A22428', 'Bonham Norton', {'date': '1626'}), ('A22428', 'John Bill', {'date': '1626'}), ('B22957', 'J. Orme', {'date': '1697'}), ('A49130', 'F.C.', {'date': '1697'}), ('A81576', 'A.M.', {'date': '1648'}), ('A68281', 'G. Thorpe', {'date': '1608'}), ('A04076', 'the Society of Stationers', {'date': '1625'}), ('A97303', 'Leonard Lichfield', {'date': '1652'}), ('A05059', 'Peter Short', {'date': '1595'}), ('B14007', 'Bernard Alsop', {'date': '1632'}), ('B14007', 'Thomas Fawcet', {'date': '1632'}), ('A82220', 'R. Wood', {'date': '1654'}), ('A37555', 'John Field', {'date': '1652'}), ('A24327', 'E. Cotes', {'date': '1653'}), ('A84929', 'Robert Ibbitson', {'date': '1647'}), ('A46988', 'T.B.', {'date': '1686'}), ('A87295', 'Robert Ibbitson', {'date': '1647'}), ('A01700', 'Felix Kingston', {'date': '1620'}), ('A94670', 'G.D.', {'date': '1642'}), ('A94670', 'R.O.', {'date': '1642'}), ('A42930', 'W. Godbid', {'date': '1661'}), ('A58141', 'T.M.', {'date': '1677'}), ('A72547', 'W. Stansby', {'date': '1611'}), ('A74538', 'Henry Hills', {'date': '1654'}), ('A74538', 'William du-Gard', {'date': '1654'}), ('B27204', 'Jacobus Scheltus', {'date': '1672'}), ('A21192', 'John Dawson', {'date': '1640'}), ('A07925', 'George Eld', {'date': '1611'}), ('A02080', 'Robert Robinson', {'date': '1589'}), ('A14019', 'Henry Denham', {'date': '1567'}), ('A22018', 'Robert Barker', {'date': '1605'}), ('A34072', 'S. Roycroft', {'date': '1682'}), ('A84599', 'Jane Coe.', {'date': '1647'}), ('A18939', 'A. Mathewes', {'date': '1634'}), ('A93723', 'T.C.', {'date': '1654'}), ('A82231', 'Robert Ibbitson', {'date': '1647'}), ('A49294', 'William Godbid', {'date': '1659'}), ('A85701', 'J.C.', {'date': '1657'}), ('A59422', 'J.M.', {'date': '1678'}), ('A01003', 'Richard Field', {'date': '1604'}), ('A13160', 'Arnold Hatfield ', {'date': '1602'}), ('A13160', 'J. Harrison', {'date': '1602'}), ('A13160', 'John Windet', {'date': '1602'}), ('A61365', 'R.W.', {'date': '1674'}), ('A06266', 'Henrie Midleton', {'date': '1584'}), ('A66292', "Charles Bill, and the executrix of Thomas Newcomb, deceas'd", {'date': '1693'}), ('A00533', 'Richardi Graphei', {'date': '1579'}), ('B00820', 'W.S.', {'date': None}), ('A32860', 'H. Hall', {'date': '1644'}), ('A15086', 'George Purslowe', {'date': '1619'}), ('A22140', 'Robert Barker', {'date': '1617'}), ('A36060', 'Evan Tyler', {'date': '1647'}), ('A92327', 'Thomas Newcomb.', {'date': '1655'}), ('A25673', 'Randal Taylor', {'date': '1691'}), ('A66725', 'J.P.', {'date': '1685'}), ('B15484', 'John Windet', {'date': '1609'}), ('A96807', 'T.R.', {'date': '1661'}), ('A07929', 'John Legate', {'date': '1593'}), ('A90244', 'Martin Claw-Clergy', {'date': '1645'}), ('A08523', 'Anthony Scoloker', {'date': '1549'}), ('A14326', 'William Iones', {'date': '1621'}), ('B02218', 'John Reid', {'date': '1700'}), ('A14316', 'Miles Flesher', {'date': '1632'}), ('A25811', 'John Back', {'date': '1699'}), ('A67115', 'Margery Mar-Prelate', {'date': '1642'}), ('A40397', 'Thomas Braddyll', {'date': '1681'}), ('A83343', 'John Macock', {'date': '1660'}), ('A83343', 'John Streater', {'date': '1660'}), ('A03418', 'Felix Kingston', {'date': '1609'}), ('A75278', 'George Croom', {'date': '1688'}), ('A96651', 'Matth. Simmons', {'date': '1646'}), ('A11236', 'Thomas East', {'date': '1573'}), ('A29507', 'John Field', {'date': '1644'}), ('A16068', 'John Kingstone', {'date': '1558'}), ('A12295', 'J. Rastell', {'date': '1527'}), ('A43978', 'T.R.', {'date': '1652'}), ('A66543', 'W. Godbid', {'date': '1675'}), ('A09163', 'Thomas Marsh.', {'date': '1576'}), ('A09228', 'Adam Islip', {'date': '1599'}), ('B04721', 'L.H.', {'date': '1663'}), ('A68509', 'Ihon Kyngston', {'date': '1581'}), ('A80927', 'John Field', {'date': '1651'}), ('A71098', 'A. Maxwell', {'date': '1671'}), ('A84995', 'Bernard Alsop, according to order', {'date': '1644'}), ('A40676', 'Leonard Lichfield', {'date': '1644'}), ('A00171', 'R.Y.', {'date': '1631'}), ('A19625', 'George Miller', {'date': '1629'}), ('A64079', 'William Cademan', {'date': '1689'}), ('A85881', 'R. White', {'date': '1600'}), ('A20083', 'Valentine Sims', {'date': '1600'}), ('A57258', 'W.I. dweling', {'date': '1641'}), ('A65885', 'T. Sowle', {'date': '1699'}), ('A29942', 'E.T.', {'date': '1679'}), ('A29942', 'R.H.', {'date': '1679'}), ('A42718', 'Henry Hills', {'date': '1688'}), ('A10672', 'William Jones', {'date': '1624'}), ('B06272', 'D. Mallet', {'date': '1685'}), ('A16853', 'Hendrick Laurenss', {'date': '1611'}), ('A16853', 'Iudocus Hondius', {'date': '1611'}), ('A79352', 'Christopher Barker', {'date': '1660'}), ('A79352', 'John Bill', {'date': '1660'}), ('A13461', 'John Okes', {'date': '1639'}), ('A64499', 'John Starkey', {'date': '1675'}), ('A73546', 'R.H.', {'date': '1640'}), ('A04776', 'Thomas Harper', {'date': '1628'}), ('A58717', 'the heir of Andrew Anderson', {'date': '1681'}), ('B01360', 'the heirs and successors of Andrew Anderson', {'date': '1696'}), ('A49571', 'J.B.', {'date': '1665'}), ('B02840', 'Robert Sanders, one of his Majesties printers', {'date': '1685'}), ('A21846', 'Thomas Purfoote', {'date': '1588'}), ('B23484', 'William Godbid', {'date': '1670'}), ('A59393', 'Edward Jones', {'date': '1699'}), ('A59751', 'W. Hunt', {'date': '1651'}), ('A32941', 'A. Maxwell', {'date': '1670'}), ('A29260', 'William Downing', {'date': '1700'}), ('A19327', 'me Peter Treuerys', {'date': '1530'}), ('A22983', 'H. Denham', {'date': '1581'}), ('A48488', 'J.B.', {'date': '1650'}), ('B15654', 'Thomas Dawson', {'date': '1578'}), ('A15315', 'Felix Kingston', {'date': '1613'}), ('A02624', 'Thomas Creede', {'date': '1604'}), ('A51304', 'J. Flesher', {'date': '1659'}), ('A40430', 'Thomas Moore', {'date': '1682'}), ('A91106', 'Evan Tyler', {'date': '1646'}), ('B11377', 'Henry Bynneman.', {'date': '1581'}), ('B11377', 'Ralphe Nubery assigned', {'date': '1581'}), ('B06612', 'the heir of Andrew Anderson', {'date': None}), ('A29400', 'the Heirs of Andrew Anderson', {'date': '1681'}), ('A50547', 'A. Grover', {'date': '1682'}), ('A21852', 'the deputies of Christopher Barker', {'date': '1588'}), ('A79319', 'Christopher Barker', {'date': '1660'}), ('A79319', 'John Bill', {'date': '1660'}), ('A67906', 'J.G.', {'date': '1660'}), ('B05373', 'Evan Tyler', {'date': '1643'}), ('B05373', 'Printer tothe Kings most excellent Majestie', {'date': '1643'}), ('A22210', 'Bonham Norton', {'date': '1619'}), ('A22210', 'John Bill', {'date': '1619'}), ('A22210', 'Printers to the Kings most Excellent Maiestie', {'date': '1619'}), ('A06339', 'John Wolfe', {'date': '1597'}), ('A09434', 'Felix Kyngston', {'date': '1606'}), ('A62040', 'J.B.', {'date': '1665'}), ('A47912', 'Henry Hills', {'date': '1687'}), ('A80897', 'Henry Hills', {'date': '1657'}), ('A80897', 'John Field', {'date': '1657'}), ('A03950', 'I. Roberts', {'date': '1601'}), ('A50687', 'T.L.', {'date': '1658'}), ('A19158', 'William Stansby', {'date': '1632'}), ('A88234', 'James', {'date': '1648'}), ('A88234', 'Jo. Moxon', {'date': '1648'}), ('A77504', 'Thomas Maxey', {'date': '1653'}), ('A64361', "Charles Bill, and the executrix of Thomas Newcomb, deceas'd", {'date': '1699'}), ('A17864', 'John Lichfield', {'date': '1626'}), ('A17864', 'William Turner', {'date': '1626'}), ('B22373', 'a perfect coppy', {'date': '1642'}), ('B05474', 'Andrew Anderson', {'date': '1676'}), ('A67886', 'E.T.', {'date': '1658'}), ('A14008', 'Thomas Creede', {'date': '1607'}), ('B05371', 'Evan Tyler', {'date': '1664'}), ('A11989', 'Richard Bradock', {'date': '1600'}), ('A39412', 'Christopher Barker', {'date': '1664'}), ('A39412', 'John Bill', {'date': '1664'}), ('A94822', 'A. Coe', {'date': '1642'}), ('A94822', 'R. Austin', {'date': '1642'}), ('A51782', 'J. Streater', {'date': '1663'}), ('A20592', 'G. Eld', {'date': '1617'}), ('B01249', 'I.L.', {'date': '1625'}), ('B01249', 'W.T.', {'date': '1625'}), ('A04369', 'Thomas East', {'date': '1576'}), ('A35903', 'Richard Janeway', {'date': '1689'}), ('A62704', 'Henry Hills', {'date': '1659'}), ('A36624', 'R.E.', {'date': '1693'}), ('B14293', 'E. Purslowe', {'date': '1638'}), ('B08273', 'Bartholomew Green.', {'date': '1694'}), ('A86560', 'R.W.', {'date': '1651'}), ('B25876', 'T. Sowle', {'date': '1697'}), ('A12970', 'S. Stafford', {'date': '1608'}), ('A82768', 'R. H.', {'date': '1641'}), ('A17330', 'Richard Field', {'date': '1602'}), ('A61655', 'J.R.', {'date': '1682'}), ('A92780', 'B.A.', {'date': '1642'}), ('B05457', 'the heirs and successors of Andrew Anderson', {'date': '1698'}), ('A87204', 'John Field', {'date': '1650'}), ('A44631', 'J. Gardyner', {'date': '1700'}), ('A10749', 'Edward Allde', {'date': '1612'}), ('A51643', 'Henry Hall', {'date': '1645'}), ('B25059', 'Andrew Crook', {'date': '1689'}), ('B25059', 'Samuel Helsham', {'date': '1689'}), ('A01020', 'Adam Islip', {'date': '1629'}), ('A53067', 'Stephen Bulkley', {'date': '1643'}), ('A22476', 'Bonham Norton', {'date': '1628'}), ('A22476', 'John Bill', {'date': '1628'}), ('A22476', 'Printers to the Kings most Excellent Maiestie', {'date': '1628'}), ('A36537', 'T.N.', {'date': '1675'}), ('B13138', 'Robert Barker', {'date': '1637'}), ('A84048', 'Henry Hills', {'date': '1655'}), ('A84048', 'John Field', {'date': '1655'}), ('A75674', 'E. Griffin', {'date': '1650'}), ('A75711', 'G.M.', {'date': '1646'}), ('A73036', 'William How:', {'date': '1570'}), ('A28882', 'A.', {'date': '1697'}), ('A28882', 'J. Churhill', {'date': '1697'}), ('A37567', 'John Field', {'date': '1651'}), ('B09032', 'Henry Hills', {'date': '1657'}), ('B09032', 'John Field', {'date': '1657'}), ('A28102', 'Thomas Milbourn', {'date': '1700'}), ('A11144', 'John Haviland', {'date': '1623'}), ('A41428', 'R.N.', {'date': '1676'}), ('A11073', 'William Iones', {'date': '1631'}), ('A03804', 'Robert Robinson', {'date': '1587'}), ('A57335', 'Peter Cole', {'date': '1657'}), ('A40571', 'Roger Daniel', {'date': '1647'}), ('A28667', 'Samuel Green upon', {'date': '1682'}), ('A21973', 'Robert Barker', {'date': '1603'}), ('B06075', 'Robert Saunders', {'date': '1678'}), ('B06075', 'warrant of the Privy Council', {'date': '1678'}), ('A85233', 'Leonard Lichfield', {'date': '1643'}), ('A02364', 'Isaac Canin', {'date': '1598'}), ('A12696', 'I. Norton', {'date': '1637'}), ('A54293', 'D. Newman', {'date': '1693'}), ('A91902', 'G. Dexter', {'date': '1643'}), ('A01706', 'R. Wyer', {'date': '1548'}), ('A21255', 'W. Iaggard', {'date': '1605'}), ('A29003', 'H. Hall', {'date': '1660'}), ('A39419', 'Andrew Clark', {'date': '1672'}), ('A27298', 'W. Onley', {'date': '1697'}), ('B04263', 'B.G.', {'date': '1673'}), ('B04263', 'S.G.', {'date': '1673'}), ('B12777', 'the deputies of Robert Barker', {'date': '1609'}), ('A18994', 'Adam Islip', {'date': '1594'}), ('B14745', 'Ihon Kingston', {'date': '1566'}), ('A32928', 'Richard Pierce', {'date': '1688'}), ('A84750', 'Robert Ibbitson', {'date': '1647'}), ('A94063', 'A.M.', {'date': '1675'}), ('A89058', 'Peter Cole', {'date': '1645'}), ('A91637', 'Joseph Moxon', {'date': '1660'}), ('A78563', 'Iane Coe', {'date': '1645'}), ('A07003', 'Edward Allde', {'date': '1594'}), ('A66434', 'H. Hills', {'date': '1684'}), ('B03054', 'the heir of Andrew Anderson', {'date': '1692'}), ('A79704', 'Evan Tyler', {'date': '1646'}), ('A22537', 'Robert Barker', {'date': '1631'}), ('A22537', 'the Assignes of John Bill', {'date': '1631'}), ('B11254', 'me Wynkyn de Worde', {'date': '1525'}), ('A44245', 'L. Lichfield', {'date': '1657'}), ('A02746', 'R. Badger', {'date': '1630'}), ('A20804', 'Felix Kingston', {'date': '1613'}), ('A90610', 'T.P.', {'date': '1648'}), ('A38337', 'Christoper Barker', {'date': '1661'}), ('A38337', 'John Bill', {'date': '1661'}), ('A89816', 'T.M.', {'date': '1600'}), ('A46553', 'the heir of Andrew Anderson', {'date': '1685'}), ('A86183', 'E.G.', {'date': '1650'}), ('A53307', 'A:', {'date': '1666'}), ('A53307', 'L: Lichfield', {'date': '1666'}), ('A01425', 'Thomas Cotes', {'date': '1630'}), ('A93589', 'Ruth Raworth', {'date': '1646'}), ('A41605', 'Randal Taylor', {'date': '1687'}), ('A41346', 'T. Sowle', {'date': '1696'}), ('A91807', 'Thomas Paine', {'date': '1641'}), ('A00933', 'Thomas Purfoote', {'date': '1583'}), ('A01736', 'J. Windet', {'date': '1590'}), ('A86032', 'Peter Cole', {'date': '1651'}), ('A86457', 'E.M.', {'date': '1650'}), ('A86457', 'T.R.', {'date': '1650'}), ('B23808', 'Edward Jones', {'date': '1697'}), ('A88103', 'L. Lichfield', {'date': '1653'}), ('A96987', 'Robert Ibbitson', {'date': '1648'}), ('A20939', 'Thomas Snodham', {'date': '1623'}), ('A06098', 'Isaac Iaggard', {'date': '1625'}), ('A06689', 'W. Iones', {'date': '1625'}), ('A40596', 'Andrew Coe', {'date': '1644'}), ('A40596', 'Bernard Alsop', {'date': '1644'}), ('A32068', 'L. Lichfield', {'date': None}), ('A57160', 'J.M.', {'date': '1678'}), ('A38035', 'John Redmayne', {'date': '1659'}), ('A36501', 'William Du-Gard', {'date': '1651'}), ('A36501', 'the appointment of the Council of State', {'date': '1651'}), ('A10945', 'Felix Kyngston', {'date': '1603'}), ('A66293', 'Charles Bill', {'date': '1690'}), ('A66293', 'Thomas Newcomb', {'date': '1690'}), ('A12565', 'Edward Allde', {'date': '1606'}), ('A85253', 'T.N.', {'date': '1652'}), ('A74411', 'John Field', {'date': '1651'}), ('A66603', 'J.H.', {'date': '1694'}), ('A60096', 'T.B.', {'date': '1685'}), ('A21442', 'B. Alsop', {'date': '1640'}), ('A21442', 'T. Fawcett', {'date': '1640'}), ('A67377', 'Leonard Lichfield', {'date': '1697'}), ('A07192', 'Robert Barker', {'date': '1613'}), ('B12251', 'W. Stansby', {'date': '1613'}), ('A88025', 'Henry Hills', {'date': '1660'}), ('A06139', 'Thomas Purfoot', {'date': '1607'}), ('A00685', 'Robert Lekpreuik.', {'date': '1563'}), ('A09015', 'Wynkyn de worde', {'date': '1509'}), ('A32564', 'Christopher Barker', {'date': '1678'}), ('A32564', 'Henry Hills', {'date': '1678'}), ('A32564', 'John Bill', {'date': '1678'}), ('A32564', 'Thomas Newcomb', {'date': '1678'}), ('A10317', 'Richard Field', {'date': '1605'}), ('A15304', 'John Lichfield', {'date': '1630'}), ('A73233', 'W. White', {'date': '1617'}), ('A81583', 'R.I.', {'date': '1652'}), ('B10086', 'Samuel Green', {'date': '1687'}), ('A01038', 'Edward Raban', {'date': '1638'}), ('A06480', 'Richard Mundee', {'date': '1578'}), ('A06480', 'Roger Warde', {'date': '1578'}), ('A28163', 'R.A.', {'date': '1653'}), ('A96650', 'E.G.', {'date': '1642'}), ('B12711', 'Robert Barker', {'date': '1604'}), ('A11536', 'Thomas Haueland', {'date': '1611'}), ('A72111', 'Bernard. Alsop.', {'date': '1630'}), ('A72111', 'T. Fawcet', {'date': '1630'}), ('A68860', 'me Iohan Byddell', {'date': '1534'}), ('A89344', 'E. Cotes', {'date': '1662'}), ('A68832', 'Humfrey Lownes', {'date': '1606'}), ('A08781', 'Hugh Singleton', {'date': '1586'}), ('A85415', 'M.S.', {'date': '1648'}), ('A68537', 'Cantrell Legge', {'date': '1610'}), ('B24758', 'Andrew Crook', {'date': '1691'}), ('A44855', 'J. Heptinstall', {'date': '1693'}), ('A57624', 'Martin Marpope', {'date': '1673'}), ('A45638', 'J. L.', {'date': '1698'}), ('A19911', 'Barnard Allsopp', {'date': '1616'}), ('A19911', 'Thomas Creede', {'date': '1616'}), ('A07407', 'VVilliam Powell', {'date': '1548'}), ('A12291', 'Thomas Marshe', {'date': '1568'}), ('A04483', 'H. Bynneman', {'date': '1582'}), ('A04483', 'R. Newberie', {'date': '1582'}), ('A22227', 'John Bill', {'date': '1620'}), ('A22227', 'Robert Barker', {'date': '1620'}), ('A17099', 'John Day', {'date': '1571'}), ('A32418', 'Henry Hills', {'date': '1679'}), ('A32418', 'John Bill', {'date': '1679'}), ('A32418', 'Thomas Newcomb', {'date': '1679'}), ('A40759', 'T. Snowden', {'date': '1685'}), ('A40598', 'Richard Cotes', {'date': '1647'}), ('A22263', 'Bonham Norton', {'date': '1621'}), ('A22263', 'John Bill', {'date': '1621'}), ('A68475', 'Melch. Bradvvood', {'date': '1613'}), ('A79982', 'Sarah Griffin', {'date': '1653'}), ('A81338', 'J. Raworth', {'date': '1644'}), ('A51897', 'J. Leake', {'date': '1692'}), ('A26903', 'T.S.', {'date': '1681'}), ('A01149', 'John Day', {'date': '1566'}), ('A82556', 'John Field', {'date': '1659'}), ('A19871', 'George Miller', {'date': '1628'}), ('A20620', 'M. Bradwood', {'date': '1612'}), ('A86732', 'Henry Hills', {'date': '1660'}), ('A83540', 'E. Griffin', {'date': '1642'}), ('A11721', 'W. Jaggard', {'date': '1610'}), ('A50157', 'James Astwood', {'date': '1689'}), ('A58099', 'W. Wilson', {'date': '1649'}), ('A84560', 'M.S.', {'date': '1642'}), ('A84560', 'T.P.', {'date': '1642'}), ('A41320', 'R.W.', {'date': '1658'}), ('A18018', 'Thomas Creede', {'date': '1599'}), ('B00010', 'Cantrell Legge.', {'date': '1610'}), ('A50182', 'M.J.', {'date': '1671'}), ('A50182', 'S.G.', {'date': '1671'}), ('A62017', 'A.M.', {'date': '1661'}), ('A63825', 'J.M.', {'date': '1676'}), ('A29644', 'Henry Brome', {'date': '1657'}), ('A04208', "William Jones' secret press", {'date': '1606'}), ('B24445', 'Abel Roper', {'date': '1660'}), ('A73952', 'the deputies of Christopher Barker', {'date': '1591'}), ('A88437', 'H.H.', {'date': '1655'}), ('A38607', 'Thomas Malthus', {'date': '1682'}), ('A96223', 'John Field', {'date': '1646'}), ('A74149', 'James Flesher', {'date': '1655'}), ('A84993', 'E.G.', {'date': '1650'}), ('A84993', 'order from the Committee of Estates, and now', {'date': '1650'}), ('A45644', 'J. L.', {'date': '1698'}), ('A81717', 'Henry Hills', {'date': '1658'}), ('A81717', 'John Field', {'date': '1658'}), ('A17156', 'Thomas Marshe', {'date': '1579'}), ('A41900', 'A.M.', {'date': '1691'}), ('A91477', 'J.C.', {'date': '1658'}), ('A82560', 'John Partridge', {'date': '1642'}), ('A89554', 'Bernard Alsop', {'date': '1645'}), ('A78952', 'Robert Barker', {'date': '1642'}), ('B03602', 'E.C.', {'date': '1675'}), ('A22828', 'Thomas Barthelet', {'date': '1544'}), ('A74137', 'Henry Hills', {'date': '1654'}), ('A74137', 'William du-Gard', {'date': '1654'}), ('A09677', 'Thomas Creede', {'date': '1597'}), ('A96404', 'T. Sowle', {'date': '1699'}), ('A55138', 'H.B.', {'date': '1673'}), ('A82165', 'John Clowes', {'date': '1648'}), ('A88321', 'S. Griffin', {'date': '1660'}), ('A20114', 'John Windet', {'date': '1596'}), ('A20114', 'Paules Wharfe', {'date': '1596'}), ('A85625', 'Robert Ibbitson', {'date': '1648'}), ('A17729', 'Rouland Hall', {'date': '1561'}), ('A25844', 'T.M.', {'date': '1659'}), ('A32889', 'W. Onley', {'date': '1696'}), ('A23561', 'John Mychell', {'date': '1552'}), ('A65926', 'Thomas Warren', {'date': '1698'}), ('B00961', 'A. Islip', {'date': '1607'}), ('A39341', 'Randal Taylor', {'date': '1688'}), ('A73706', 'Edward Griffin', {'date': '1617'}), ('B04023', 'a Society of Stationers', {'date': '1661'}), ('A67490', 'Jonathan Edwin', {'date': '1679'}), ('A87874', 'Leonard Lichfield', {'date': '1643'}), ('A04630', 'S. Stafford', {'date': '1600'}), ('A09288', 'G.P., to be', {'date': '1624'}), ('A83885', 'Robert Barker', {'date': '1641'}), ('A77649', 'W.G.', {'date': '1667'}), ('A02154', 'E. Allde', {'date': '1592'}), ('A02154', 'R. Bourne', {'date': '1592'}), ('A17338', 'John Awdely', {'date': '1576'}), ('A18272', 'T. Cotes', {'date': '1640'}), ('A59578', 'Freeman Collins, to be', {'date': '1681'}), ('A59578', 'J.C.', {'date': '1681'}), ('A67185', 'T.M.', {'date': '1691'}), ('A05372', 'Thomas Marshe', {'date': '1573'}), ('A75675', 'Edward Griffin', {'date': '1651'}), ('A02971', 'Thomas Purfoote', {'date': '1589'}), ('B01991', 'Jan Aelberts, boeckverkooper', {'date': '1691'}), ('A19453', 'Raph Blower', {'date': '1607'}), ('A19523', 'Ihon Alde', {'date': '1561'}), ('A47643', 'B.G.', {'date': '1694'}), ('A20511', 'A. Matthewes?', {'date': '1635'}), ('A41015', 'Thomas Purslow', {'date': '1644'}), ('A26132', 'P.L.', {'date': '1669'}), ('A35409', 'T.J.', {'date': '1673'}), ('A88766', 'M.B.', {'date': '1645'}), ('A25885', 'H. Hills', {'date': '1689'}), ('A25885', 'Jun.', {'date': '1689'}), ('A10813', 'Thomas Creede', {'date': '1595'}), ('A93011', 'Bartholomew Green', {'date': '1695'}), ('A14818', 'John Wolfe', {'date': '1587'}), ('A16229', 'VVyllyam Seres', {'date': '1566'}), ('A83771', 'Richard Cotes', {'date': '1646'}), ('A81734', 'J.H.', {'date': '1659'}), ('B13174', 'Robert Barker', {'date': '1640'}), ('A90960', 'J.G.', {'date': '1660'}), ('A47013', 'A. Maxey', {'date': '1657'}), ('A22386', 'I.L.', {'date': '1625'}), ('A22386', 'W.T.', {'date': '1625'}), ('A44630', 'J.M.', {'date': '1671'}), ('A22465', 'Bonham Norton', {'date': '1628'}), ('A22465', 'John Bill', {'date': '1628'}), ('A93269', 'Andrevv Anderson', {'date': '1665'}), ('A06177', 'Thomas Creede', {'date': '1615'}), ('A77418', 'E.P.', {'date': '1646'}), ('B05674', 'the heirs and successors of Andrew Anderson', {'date': '1695'}), ('A02129', 'T. Dawson', {'date': '1583'}), ('A53925', 'Alexander Milbourn', {'date': '1687'}), ('A21094', 'R. Read', {'date': '1603'}), ('A01501', 'James Roberts', {'date': '1595'}), ('A32067', 'L. Lichfield', {'date': '1642'}), ('A14669', 'Edward Griffin', {'date': '1620'}), ('A54844', 'J.G.', {'date': '1659'}), ('A21778', 'Christopher Barkar', {'date': '1577'}), ('A49757', 'J.C.', {'date': '1672'}), ('A90377', 'Matthew Inman', {'date': '1660'}), ('A02639', 'I. Okes', {'date': '1638'}), ('B03325', 'the heir of Andrew Anderson', {'date': '1678'}), ('A49005', 'Samuel Roycroft', {'date': '1683'}), ('A47484', 'W.G.', {'date': '1665'}), ('A61324', 'R. Daniel', {'date': '1658'}), ('A48147', 'John Streater', {'date': '1659'}), ('A21060', 'R. Bishop', {'date': '1636'}), ('A12939', 'John Latius', {'date': '1565'}), ('A21845', 'the deputies of Christopher Barker', {'date': '1588'}), ('A16820', 'Ioannem Foulerum', {'date': '1567'}), ('A67765', 'R.', {'date': '1655'}), ('A67765', 'W. Leybourn', {'date': '1655'}), ('A13154', 'Bernard Alsop', {'date': '1634'}), ('A13154', 'Thomas Fawcet', {'date': '1634'}), ('A58543', 'the heir of Andrew Anderson', {'date': '1685'}), ('A62743', 'the heir of Andrew Anderson', {'date': '1685'}), ('A36825', 'R. Norton', {'date': '1664'}), ('A52366', 'A.P.', {'date': '1674'}), ('B05279', 'the heir of Andrew Anderson', {'date': '1688'}), ('A60549', 'G. Croom', {'date': '1685'}), ('A88278', 'T.B.', {'date': '1648'}), ('B07708', 'Andro Hart', {'date': '1617'}), ('A86092', 'Edward Husband', {'date': '1650'}), ('A86092', 'John Field', {'date': '1650'}), ('A04555', 'J. Danter', {'date': '1596'}), ('A11557', 'Jan Troost i.e. widow of C. Ruremond', {'date': '1541'}), ('A03645', 'Robert Walde-graue', {'date': '1581'}), ('A40710', 'J. Macock', {'date': '1662'}), ('A50276', 'John Leake', {'date': '1685'}), ('A21484', 'Thomas Berthelet', {'date': '1535'}), ('A00181', 'Thomas Purfoot', {'date': '1609'}), ('A65827', 'Thomas Daniel', {'date': '1669'}), ('A65827', 'Thomas Ratcliffe', {'date': '1669'}), ('A44891', 'R. Battersby', {'date': '1672'}), ('A53060', 'A. Warren', {'date': '1662'}), ('A68595', 'Richard Serll', {'date': '1565'}), ('A90437', 'John Darby', {'date': '1684'}), ('A01190', 'Felix Kyngston', {'date': '1617'}), ('A20077', 'E. Allde', {'date': '1603'}), ('A16758', 'John Danter:', {'date': '1595'}), ('A05345', 'John Raworth', {'date': '1639'}), ('A72235', 'Richard Ihones', {'date': '1578'}), ('A10958', 'John Legatt', {'date': '1607'}), ('A50764', 'J.G.', {'date': '1664'}), ('A38660', 'Richard Bishop', {'date': '1643'}), ('A74554', 'Henry Hills', {'date': '1654'}), ('A74554', 'William Du-Gard', {'date': '1654'}), ('A93664', 'Elizabeth Purslow', {'date': '1646'}), ('A30267', 'J.R.', {'date': '1690'}), ('A42395', 'W.R.', {'date': '1676'}), ('A18771', 'I. Windet', {'date': '1593'}), ('A57764', 'J. Cottrel', {'date': '1658'}), ('A83695', 'Edward Husbands', {'date': '1660'}), ('A83695', 'Thomas Newcomb', {'date': '1660'}), ('A95594', 'Henry Hills', {'date': '1660'}), ('A63303', 'E.R.', {'date': '1684'}), ('A66751', 'T.S.', {'date': '1688'}), ('B12875', 'Bonham Norton', {'date': '1624'}), ('B12875', 'John Bill', {'date': '1624'}), ('A60202', 'H. Bruges', {'date': '1670'}), ('A10268', 'Miles Flesher', {'date': '1636'}), ('A32042', 'Leonard Lichfield', {'date': '1643'}), ('A30114', 'James Cottrel', {'date': '1656'}), ('A03641', 'F. Kingston', {'date': '1609'}), ('A32847', 'R.E.', {'date': '1678'}), ('A14394', 'Henry Bamforde', {'date': '1577'}), ('A50263', 'T. Snowden', {'date': '1681'}), ('A04638', 'Nicholas Okes', {'date': '1609'}), ('A10113', 'Ioseph Barnes', {'date': '1585'}), ('A49957', 'Samuel Green', {'date': '1687'}), ('A83612', 'Robert Barker', {'date': '1642'}), ('A51292', 'J.R.', {'date': '1692'}), ('A65581', 'J.G.', {'date': '1663'}), ('A19571', 'Reginald Wolfe.', {'date': '1550'}), ('A10556', 'Thomas Harper', {'date': '1630'}), ('A93282', 'T.B.', {'date': '1681'}), ('B12885', 'Bonham Norton', {'date': '1625'}), ('B12885', 'John Bill', {'date': '1625'}), ('A72146', 'Leon Lichfield', {'date': '1640'}), ('A18050', 'C. Leege 1618. And', {'date': '1618'}), ('A81560', 'T. Fawcet', {'date': '1642'}), ('B05722', 'the heir of Andrew Anderson', {'date': None}), ('A76101', 'R.I.', {'date': '1653'}), ('A50574', 'James Glen', {'date': '1678'}), ('A20675', 'wyllyam Copland', {'date': '1553'}), ('A91993', 'Robert Ibbitson', {'date': '1648'}), ('A43755', 'Samuel Green', {'date': '1663'}), ('A33142', 'Henry Hall', {'date': '1659'}), ('A16457', 'Richard Field', {'date': '1604'}), ('A82392', 'John Field', {'date': '1649'}), ('B00537', 'Robert Waldegrave', {'date': '1588'}), ('A67746', 'J.B.', {'date': '1641'}), ('A67746', 'S.B.', {'date': '1641'}), ('A06388', 'T. Snodham', {'date': '1621'}), ('A07911', 'John Charlevvood', {'date': '1580'}), ('A95311', 'G.D.', {'date': '1653'}), ('A21452', 'Robert Barker', {'date': '1637'}), ('A04898', 'Miles Flesher', {'date': '1628'}), ('A16992', 'W. White', {'date': '1612'}), ('A94547', 'R.C.', {'date': '1642'}), ('A02972', 'Thomas Orwin', {'date': '1590'}), ('A73981', 'Bonham Norton', {'date': '1626'}), ('A73981', 'John Bill', {'date': '1626'}), ('A79225', 'Evan Tyler', {'date': '1665'}), ('A80328', 'Mathias Simmons', {'date': '1646'}), ('A67849', 'E. Leach', {'date': '1672'}), ('A93058', 'R.I. For Henry Mortlock', {'date': '1660'}), ('A07892', 'John Charlewood', {'date': '1582'}), ('A26740', 'W.G.', {'date': '1668'}), ('A19715', 'John Bill', {'date': '1622'}), ('A32178', 'Christopher Barker', {'date': '1677'}), ('A32178', 'Henry Hills', {'date': '1677'}), ('A32178', 'John Bill', {'date': '1677'}), ('A32178', 'Thomas Newcomb', {'date': '1677'}), ('B13580', 'Thomas Snodham', {'date': '1620'}), ('A75476', 'John Macock', {'date': '1652'}), ('A22236', 'John Bill', {'date': '1620'}), ('A22236', 'Printers to the Kings most Excellent Maiestie', {'date': '1620'}), ('A22236', 'Robert Barker', {'date': '1620'}), ('A78140', 'I.R.', {'date': '1660'}), ('A34480', 'A.', {'date': '1661'}), ('A34480', 'L. Lichfield', {'date': '1661'}), ('A70336', 'Nathaniel Thompson', {'date': '1685'}), ('B17145', 'Randal Taylor', {'date': '1688'}), ('B12932', 'Bonham Norton', {'date': '1626'}), ('B12932', 'John Bill', {'date': '1626'}), ('B23787', 'T.N.', {'date': '1676'}), ('A34868', 'A. Maxwell', {'date': '1672'}), ('A01403', 'Thomas Creede', {'date': '1616'}), ('A68613', 'G. Anderson', {'date': '1636'}), ('A09829', 'H. Bynneman', {'date': '1579'}), ('A06475', 'John Norton', {'date': '1634'}), ('A87609', 'Richard Bishop', {'date': '1645'}), ('B03871', 'the heir of Andrew Anderson', {'date': '1685'}), ('A75967', 'Willam Smith', {'date': '1657'}), ('B19081', 'Leonard Lichfield', {'date': '1643'}), ('A36193', 'George Groom', {'date': '1685'}), ('A72855', 'J. Charlewood?', {'date': '1588'}), ('B12731', 'Robert Barker', {'date': '1605'}), ('A05017', 'Christopher Barker', {'date': '1581'}), ('A05017', 'H. Bynneman', {'date': '1581'}), ('A05017', 'Ra: Newbery', {'date': '1581'}), ('A05017', 'the ass. of Ri. Tottell', {'date': '1581'}), ('A95396', 'M.S.', {'date': '1653'}), ('A49035', 'James Flesher', {'date': '1655'}), ('A64827', 'Roger Daniel', {'date': '1646'}), ('A83737', 'Robert Barker', {'date': '1641'}), ('B05410', 'the heir of Andrew Anderson', {'date': '1683'}), ('A64335', 'J. Hayes', {'date': '1676'}), ('A81363', 'Robert Ibbitson', {'date': '1648'}), ('B05617', 'the heir of Andrew Anderson', {'date': '1693'}), ('A04243', 'Robert Walde-graue', {'date': '1597'}), ('B08998', 'A. M.', {'date': None}), ('A06230', 'J. Windet', {'date': '1595'}), ('A13209', 'John Haviland', {'date': '1632'}), ('A67491', 'R.E.', {'date': '1678'}), ('A69820', 'Thomas Harper', {'date': '1646'}), ('A07549', 'James Roberts', {'date': '1599'}), ('A10394', 'T.Snodham', {'date': '1623'}), ('A62543', 'M.S.', {'date': '1655'}), ('A95093', 'E. Mallet', {'date': '1683'}), ('A45965', 'A.N.', {'date': '1642'}), ('A71358', 'John Redmayne', {'date': '1660'}), ('A13851', 'L. Lichfield', {'date': '1639'}), ('A12293', 'me Rychard faukes', {'date': '1523'}), ('A13319', 'Wylliam Powell', {'date': '1560'}), ('A87093', 'J.G.', {'date': '1655'}), ('A95499', 'Elizabeth Purslow', {'date': '1646'}), ('A29975', 'W. Wilson', {'date': '1647'}), ('A30396', 'Robert Sanders', {'date': '1673'}), ('A36695', 'T.N.', {'date': '1677'}), ('A08588', 'Augustine Mathewes', {'date': '1633'}), ('A62715', 'Andrew Clark', {'date': '1674'}), ('A01151', 'John Wolfe', {'date': '1590'}), ('A14208', 'J. Dawson?', {'date': '1631'}), ('A04901', 'Thomas Dawson', {'date': '1579'}), ('B20687', 'Printer the Kings Most Excellent Majestie: And', {'date': '1642'}), ('B20687', 'Robert Barker', {'date': '1642'}), ('B20687', 'the Assignes of John Bill.', {'date': '1642'}), ('A01287', 'Adam Islip?', {'date': '1600'}), ('A67250', 'William Du-Gard', {'date': '1652'}), ('A06404', 'Katherine-wheel', {'date': '1609'}), ('A06404', 'the Cocke', {'date': '1609'}), ('B28283', 'Henry Hills', {'date': '1699'}), ('B09153', 'R.', {'date': '1661'}), ('B09153', 'W. Leybourn', {'date': '1661'}), ('A04152', 'E. Griffin', {'date': '1640'}), ('B05423', 'the heir of Andrew Anderson', {'date': '1693'}), ('A19505', 'W. Stansby', {'date': '1613'}), ('A66176', "Charles Bill and the executrix of Thomas Newcomb, deceas'd;", {'date': '1695'}), ('A13233', 'John Legat', {'date': '1633'}), ('A13233', 'Miles Flesher', {'date': '1633'}), ('A05382', 'G. Miller', {'date': '1627'}), ('A59570', 'T.W.', {'date': '1693'}), ('A89325', 'E.G.', {'date': '1644'}), ('A00231', 'H. Middleton?', {'date': '1569'}), ('A14281', 'T. Orwin.', {'date': '1590'}), ('A96562', "Charles Bill, and the Executrix of Thomas Newcomb, deceas'd", {'date': '1700'}), ('A88452', 'James Flesher', {'date': '1659'}), ('A19145', 'John Wolfe', {'date': '1588'}), ('B15851', 'H.L.', {'date': '1627'}), ('A29531', 'J.L.', {'date': '1656'}), ('A82319', 'R. White', {'date': '1651'}), ('A78993', 'Robert Barker', {'date': '1641'}), ('A01747', 'Simon Stafford', {'date': '1601'}), ('A09910', 'Ioseph Barnes', {'date': '1613'}), ('A82847', 'Robert Barker', {'date': '1641'}), ('A25987', 'A.J.', {'date': '1650'}), ('B16083', 'William Tvrner;', {'date': '1630'}), ('A46128', 'Benjamin Tooke', {'date': '1678'}), ('A04416', 'R. Read', {'date': '1601'}), ('A81869', 'J. Streater', {'date': '1659'}), ('A70159', 'H. Hall', {'date': '1644'}), ('A63081', 'A. N.', {'date': '1642'}), ('A16471', 'Wyllyam Powell', {'date': '1547'}), ('A88126', 'J.W.', {'date': '1687'}), ('A92485', 'Evan Tyler', {'date': '1650'}), ('A91654', 'M. Simmons', {'date': '1644'}), ('A06705', 'W.W.', {'date': '1608'}), ('A41537', 'J.D.', {'date': '1693'}), ('A08014', 'John Danter', {'date': '1594'}), ('A67171', 'J. Wilde', {'date': '1693'}), ('A06739', 'E. Allde?', {'date': '1624'}), ('A97114', 'D. Maxwell.', {'date': '1660'}), ('A46273', 'Thomas Leach', {'date': '1660'}), ('A23236', 'Richard Tottel', {'date': '1586'}), ('A06888', 'Thomas Raynalde', {'date': '1548'}), ('B33867', 'A. Moore', {'date': None}), ('A29080', 'J. de Beaulieu', {'date': '1685'}), ('A04863', 'R. Field', {'date': '1598'}), ('A96623', 'W. Hunt', {'date': '1655'}), ('B43905', 'Christopher Higgins', {'date': '1657'}), ('A69521', 'R.C.', {'date': '1641'}), ('A61213', 'T.R.', {'date': '1670'}), ('A05999', 'Richard Badger', {'date': '1634'}), ('B02798', 'Thomas Newcomb', {'date': '1655'}), ('A90322', 'Lichfieldianis Acad. Typog.', {'date': '1669'}), ('A82120', 'Edward Husband', {'date': '1650'}), ('A82120', 'John Field', {'date': '1650'}), ('A90688', 'R. Daniel', {'date': '1658'}), ('A46183', 'John Crooke', {'date': '1664'}), ('A92857', 'E.M.', {'date': '1657'}), ('A92857', 'T.R.', {'date': '1657'}), ('A63226', 'George Croom', {'date': '1687'}), ('A71317', 'Richard Badger', {'date': '1641'}), ('B05341', 'the heir of Andrew Anderson', {'date': '1687'}), ('A03845', 'E. Griffin', {'date': '1640'}), ('A13065', 'John Wolfe', {'date': '1591'}), ('A13065', 'J. Charlewood', {'date': '1591'}), ('A47257', 'Leonard Lichfield', {'date': '1695'}), ('B03858', 'Charles Bill', {'date': '1687'}), ('B03858', 'Henry Hills', {'date': '1687'}), ('B03858', 'Thomas Newcomb', {'date': '1687'}), ('A03765', 'John Barnes', {'date': '1602'}), ('A03765', 'Joseph Barnes', {'date': '1602'}), ('A54201', 'J.P.', {'date': '1685'}), ('A27379', 'J. Field', {'date': '1665'}), ('A96627', 'J.L.', {'date': '1655'}), ('A02811', 'Wynkyn de Worde.', {'date': '1509'}), ('A32250', 'the heir of Andrew Anderson', {'date': None}), ('A68490', '. printed', {'date': '1623'}), ('A68490', 'the English Secret Press', {'date': '1623'}), ('A30259', 'T. Badger', {'date': '1641'}), ('B05491', 'Evan Tyler', {'date': '1667'}), ('A03284', 'Thomas Vautrollier', {'date': '1584'}), ('B13644', 'Thomas Purfoote', {'date': '1586'}), ('A19434', 'T.S. For Richard Boyle', {'date': '1611'}), ('A90061', 'G.M.', {'date': '1643'}), ('A10094', 'Elizabeth Purslowe', {'date': '1634'}), ('B15212', 'William Stansby', {'date': '1630'}), ('A16537', 'George Anderson', {'date': '1640'}), ('B05034', 'the heir of Andrew Anderson', {'date': '1692'}), ('A28370', 'B. Alsop', {'date': '1648'}), ('B05548', 'the heirs and successors of Andrew Anderson', {'date': '1696'}), ('A78875', 'I.G.', {'date': '1647'}), ('A66328', 'Charles Bill', {'date': '1690'}), ('A66328', 'Thomas Newcomb', {'date': '1690'}), ('A91386', 'G. Dexter', {'date': '1642'}), ('A91386', 'R. Oulton', {'date': '1642'}), ('A21750', 'Richarde Iugge', {'date': '1572'}), ('A11527', 'John Dawson', {'date': '1640'}), ('A11527', 'Thomas Harper', {'date': '1640'}), ('A76449', 'A.N.', {'date': '1642'}), ('A47344', 'J.C.', {'date': '1657'}), ('B05555', 'the heir of Andrew Anderson', {'date': '1680'}), ('A22603', 'Robert Barker', {'date': '1636'}), ('A22603', 'the Assignes of John Bill', {'date': '1636'}), ('A90548', 'M. Simmons', {'date': '1647'}), ('B07983', 'R. Robinson', {'date': '1589'}), ('A94695', 'James Flesher', {'date': '1653'}), ('A09445', 'I. Roberts', {'date': '1605'}), ('B05684', 'the heir of Andrew Anderson', {'date': '1692'}), ('B03514', 'the heir of Andrew Anderson', {'date': '1691'}), ('A08427', 'Graies Inne new gate', {'date': '1604'}), ('A08427', 'Thomas Purfoot', {'date': '1604'}), ('A03068', 'Ioannes Charlewood. pro Roberto VVallie', {'date': '1587'}), ('A79368', 'John Bill', {'date': '1661'}), ('B24670', 'Andrew Crook', {'date': '1688'}), ('B24670', 'Samuel Helsham', {'date': '1688'}), ('A59650', 'J.M.', {'date': '1678'}), ('A18209', 'Gerard Pinchon', {'date': '1630'}), ('A43693', 'F. Eglesfield', {'date': '1673'}), ('A73793', 'Bernard Alsop', {'date': '1636'}), ('A73793', 'Thomas Fawcet', {'date': '1636'}), ('A03680', 'Thomas Marshe', {'date': '1566'}), ('A51590', 'Maximilian Graet', {'date': '1662'}), ('A11179', 'Thomas Purfoot, impensis I. Spencer', {'date': '1630'}), ('A66951', 'John Legate', {'date': '1655'}), ('A53153', 'Randal Taylor', {'date': '1687'}), ('A44150', 'Andrew Sowle', {'date': '1683'}), ('A69858', 'Andrew Sowle', {'date': '1689'}), ('B08387', 'R. W.', {'date': '1661'}), ('A14520', 'Thomas Snodham', {'date': '1617'}), ('A12140', 'Thomas Cotes', {'date': '1637'}), ('A62137', 'R. Norton', {'date': '1656'}), ('A32568', 'Henry Hills', {'date': '1679'}), ('A32568', 'John Bill', {'date': '1679'}), ('A32568', 'Thomas Newcomb', {'date': '1679'}), ('A03378', 'Thomas Marsh', {'date': '1576'}), ('A56521', 'William Leybourn', {'date': '1661'}), ('A18763', 'Ar. Hatfield', {'date': '1596'}), ('A10810', 'Abel Ieffes', {'date': '1595'}), ('A77854', 'James Young', {'date': '1646'}), ('B04463', 'Awnsham Churchill', {'date': '1689'}), ('B04463', 'John Starkey', {'date': '1689'}), ('B19214', 'Robert Barker and', {'date': '1641'}), ('A59782', 'E. Flesher', {'date': '1677'}), ('A03500', 'Ioseph Barnes', {'date': '1613'}), ('A85407', 'I. Macock', {'date': '1654'}), ('B14987', 'Ao. 1621. The 21 of Ianuari. And', {'date': '1621'}), ('B14987', 'George Veseler', {'date': '1621'}), ('B43574', 'M. Johnson', {'date': '1670'}), ('B43574', 'S. Green', {'date': '1670'}), ('A04973', 'Edward Allde', {'date': '1597'}), ('A32226', 'Henry Hills', {'date': '1680'}), ('A32226', 'John Bill', {'date': '1680'}), ('A32226', 'Thomas Newcomb', {'date': '1680'}), ('A78427', 'Robert White', {'date': '1645'}), ('A85306', 'G. Dawson', {'date': '1651'}), ('A16737', 'G. Eld', {'date': '1616'}), ('A06164', 'Adam Islip', {'date': '1596'}), ('A25460', 'T.R.', {'date': '1661'}), ('A03207', 'Adam Islip', {'date': '1635'}), ('A86219', 'J.T.', {'date': '1659'}), ('B14983', 'Ao. 1621. The 4 of Nanuari. sic And', {'date': '1621'}), ('B14983', 'George Veseler', {'date': '1621'}), ('A97207', 'E. Cotes', {'date': '1653'}), ('A15602', 'W. Stansby', {'date': '1625'}), ('A64613', 'Randolph Taylor over against Stationers Hall', {'date': '1685'}), ('A93237', 'M.S.', {'date': '1661'}), ('A44541', 'A. Sowle', {'date': '1690'}), ('A02192', 'George Purslowe', {'date': '1615'}), ('A94314', 'John Clowes', {'date': '1650'}), ('B06175', 'Elizabeth. Purslow.', {'date': None}), ('A96239', 'Richard Cotes', {'date': '1644'}), ('B09499', 'R. P.', {'date': '1689'}), ('A72336', 'For Thomas Bushel', {'date': '1613'}), ('A72336', 'George Eld', {'date': '1613'}), ('A19834', 'P. Short', {'date': '1599'}), ('A16834', 'Henry Binneman', {'date': '1571'}), ('A14883', 'John-Wyrich Rôsslin', {'date': '1619'}), ('A32047', 'G.M.', {'date': '1643'}), ('A75521', 'Isaac Burchoorn', {'date': '1643'}), ('A10267', 'Thomas Cotes', {'date': '1639'}), ('A66448', 'John Foster', {'date': '1676'}), ('A03481', 'I. Danter', {'date': '1592'}), ('A19246', 'George Purslow', {'date': '1625'}), ('A42829', 'N. Thompson', {'date': '1687'}), ('A11918', 'Humphrey Lownes', {'date': '1627'}), ('A03477', 'Nicholas Okes', {'date': '1622'}), ('A63907', 'R.E.', {'date': '1683'}), ('A42680', 'E. Flesher ', {'date': '1677'}), ('A21999', 'Robert Barker', {'date': '1604'}), ('A09789', 'Henry Bynneman', {'date': '1571'}), ('A12966', 'Robert Robinson', {'date': '1586'}), ('A05414', 'John Windet', {'date': '1600'}), ('A05470', 'Thomas Snodham', {'date': '1619'}), ('A26736', 'William Du-gard', {'date': '1650'}), ('A26736', 'the appointment of the Council of State', {'date': '1650'}), ('A05588', 'me John Skot', {'date': '1536'}), ('A77798', 'William Hunt', {'date': '1653'}), ('A43547', 'Henry Hall', {'date': '1645'}), ('A42536', 'J.G.', {'date': '1663'}), ('A28520', 'M.S.', {'date': '1648'}), ('A69012', 'Bernard Alsop', {'date': '1637'}), ('A69012', 'Thomas Fawcet', {'date': '1637'}), ('A73038', 'Thomas Purfoot', {'date': '1601'}), ('A87921', 'John Macock', {'date': '1660'}), ('A87921', 'John Streater', {'date': '1660'}), ('A02319', 'Adam Islip', {'date': '1597'}), ('A02319', 'the little north dore of Pouls', {'date': '1597'}), ('B05667', 'the heir of Andrew Anderson', {'date': '1688'}), ('A42017', 'R.I.', {'date': '1656'}), ('B05518', 'the heir of Andrew Anderson', {'date': '1691'}), ('A17088', 'John Daye, accordyng to the Scotish copie printed', {'date': '1571'}), ('A17088', 'Robert Lekpreuik', {'date': '1571'}), ('A06902', 'Bernard Alsop', {'date': '1634'}), ('A06902', 'Thomas Fawcett', {'date': '1634'}), ('A71106', 'M. Flesher', {'date': '1685'}), ('A93627', 'T. Badger', {'date': '1645'}), ('A85089', 'Leonard Lichfield', {'date': '1644'}), ('A37308', 'Henry Cruttenden', {'date': '1688'}), ('A18991', 'Ioannes Herforde', {'date': '1545'}), ('B24949', 'Andrew Crook', {'date': '1689'}), ('B24949', 'Samuel Helsham', {'date': '1689'}), ('A01291', 'Adam Islip', {'date': '1602'}), ('A60268', 'J.D.', {'date': '1670'}), ('A82404', 'John Macock', {'date': '1659'}), ('A82404', 'John Streater', {'date': '1659'}), ('B24805', 'Benjamin Tooke', {'date': '1685'}), ('A21128', 'Ioannes Wreittoun', {'date': '1628'}), ('B03143', 'Robert Sanders', {'date': '1696'}), ('A87749', 'Charles Sumptner', {'date': '1650'}), ('A84331', 'Francis Leach', {'date': '1656'}), ('A51778', 'E. Flesher', {'date': '1672'}), ('A51778', 'Henry Twyford', {'date': '1672'}), ('A51778', 'John Streater', {'date': '1672'}), ('A45934', "Charles Bill, and the executrix of Thomas Newcomb, deceas'd", {'date': '1692'}), ('B02744', 'Mary Thompson', {'date': '1688'}), ('B04457', 'Christopher Higgins', {'date': '1660'}), ('A86496', 'T. Lock', {'date': '1659'}), ('A08283', 'Hugh Singleton', {'date': '1584'}), ('A04986', 'Thomas Badger', {'date': '1640'}), ('A93200', 'I.F.', {'date': '1645'}), ('A74652', 'T.W.', {'date': '1652'}), ('A34433', 'A. Miller', {'date': '1651'}), ('A74343', 'John Field', {'date': '1649'}), ('A76441', 'Will. Du-Gard', {'date': '1650'}), ('A10620', 'Giles Thorp', {'date': '1613'}), ('A26169', 'J.D.', {'date': '1690'}), ('A02045', 'Rouland Hall', {'date': '1562'}), ('A06223', 'John Day', {'date': '1576'}), ('A14975', 'R.B.', {'date': '1600'}), ('A73382', 'Thomas Cotes', {'date': '1636'}), ('A61133', 'Ruth Raworth', {'date': '1646'}), ('A81819', 'Jeremiah Wilkins', {'date': '1700'}), ('A00816', 'Leonard Lichfield', {'date': '1637'}), ('B05429', 'the heirs and successors of Andrew Anderson', {'date': '1694'}), ('A08426', 'Christopher Barker', {'date': '1583'}), ('A80973', 'Henry Hills', {'date': '1658'}), ('A80973', 'John Field', {'date': '1658'}), ('B05170', 'the heir of Andrew Anderson', {'date': None}), ('A02536', 'A. Garbrand', {'date': '1611'}), ('A02536', 'E. Edgar', {'date': '1611'}), ('A06926', 'Thomas Snodham', {'date': '1613'}), ('A01703', 'Robert Walde-graue', {'date': '1584'}), ('A31629', 'E. Whitlock', {'date': '1695'}), ('B02947', 'Robert Barker', {'date': '1641'}), ('A20430', 'me wynkyn de worde', {'date': '1520'}), ('A10514', 'Bernard Alsop', {'date': '1621'}), ('A89372', 'I.H.', {'date': '1645'}), ('A16739', 'Thomas Creede', {'date': '1603'}), ('A89550', 'I.R.', {'date': '1661'}), ('A16215', 'R. Young', {'date': '1632'}), ('A34485', 'Robert Barker, and', {'date': '1642'}), ('A12213', 'the Societie of Stationers', {'date': '1625'}), ('A10786', 'Thomas Orwin', {'date': '1591'}), ('A70787', 'H. Hall', {'date': '1643'}), ('A32774', 'F.C.', {'date': '1687'}), ('A36773', 'Edward Brewster', {'date': '1664'}), ('A15093', 'R. Field', {'date': '1608'}), ('A44590', 'L.N.', {'date': '1644'}), ('A50735', 'J. Streater', {'date': '1662'}), ('A00021', 'the deputies of Christopher Barker', {'date': '1599'}), ('A41497', 'J. Macock', {'date': '1651'}), ('A92939', 'W.G. over against the Anchor', {'date': '1660'}), ('A01299', 'Thomas Dawson', {'date': '1581'}), ('A19600', 'Robert Copland?', {'date': '1514'}), ('A04680', 'Peter Short', {'date': '1602'}), ('B14991', 'I. Dawson', {'date': '1622'}), ('A10728', 'wynkyn de worde', {'date': '1509'}), ('A07370', 'Richard Field', {'date': '1624'}), ('A17485', 'Thomas Purfoot', {'date': '1609'}), ('A51210', 'R.', {'date': '1653'}), ('A51210', 'W. Leybourn', {'date': '1653'}), ('B12249', 'Myles Couerdale', {'date': '1545'}), ('A40807', 'J.M.', {'date': '1674'}), ('A82252', 'Robert Ibbitson', {'date': '1648'}), ('A46185', 'John Crooke', {'date': '1664'}), ('A79342', 'John Bill', {'date': '1661'}), ('A41681', 'A. Maxwell ad R. Roberts', {'date': '1677'}), ('A38177', 'D.M.', {'date': '1689'}), ('A06800', 'John Wolfe', {'date': '1590'}), ('A45019', 'Roger Daniel', {'date': '1642'}), ('A85314', 'R.I.', {'date': '1652'}), ('A85733', 'W. Bentley', {'date': '1656'}), ('A72935', 'John Windet', {'date': '1609'}), ('A12100', 'Felix Kingston', {'date': '1602'}), ('A03308', 'John Legate', {'date': '1607'}), ('A15676', 'Edward Allde', {'date': '1609'}), ('A09513', 'I. Roberts', {'date': '1597'}), ('A50251', 'Samuel Green', {'date': '1652'}), ('B17502', 'W.G.', {'date': '1675'}), ('A31100', 'Leonard Lichfield, impensis Henriette Clements', {'date': '1698'}), ('A56850', 'T.J.', {'date': '1671'}), ('B09423', 'Benjamin Tooke', {'date': '1671'}), ('A65752', 'M. Simmons', {'date': '1646'}), ('A40069', 'John Clowes', {'date': '1647'}), ('A51801', 'T.C.', {'date': '1660'}), ('A25531', 'T. Sowle', {'date': '1696'}), ('B00812', 'T.S.', {'date': '1612'}), ('B29649', 'E.J.', {'date': '1691'}), ('B26168', 'Samuel Roycroft', {'date': '1689'}), ('A14426', 'Augustine Mathewes', {'date': '1627'}), ('B05195', 'the heir of Andrew Anderson', {'date': '1693'}), ('A29916', 'J.R.', {'date': '1682'}), ('B02400', 'F. Leach', {'date': '1686'}), ('A68162', 'Augustine Matthewes', {'date': '1625'}), ('A68162', 'John Norton', {'date': '1625'}), ('B22598', 'John Field', {'date': '1643'}), ('A02024', 'William Hall', {'date': '1611'}), ('A04270', 'Felix Kyngston', {'date': '1619'}), ('A67222', 'W.W.', {'date': '1660'}), ('B05363', 'the heir of Andrew Anderson', {'date': None}), ('A18727', 'Rycharde Lant', {'date': '1552'}), ('A85616', 'W.D.', {'date': '1693'}), ('B21992', 'Leonard Lichfield', {'date': '1643'}), ('A14599', 'Thomas Harper', {'date': '1637'}), ('B14268', 'Felix Kyngston', {'date': '1612'}), ('A12763', 'John Beale', {'date': '1616'}), ('A57235', 'N.T.', {'date': '1673'}), ('A57235', 'T.R.', {'date': '1673'}), ('A01424', 'Augustine Mathewes', {'date': '1629'}), ('A80905', 'Henry Hills', {'date': '1654'}), ('A80905', 'William du-Gard', {'date': '1654'}), ('A80905', 'his Highness special commandment', {'date': '1654'}), ('A11241', 'Thomas Payne', {'date': '1639'}), ('A69511', 'A.N.', {'date': '1641'}), ('A21227', 'Richard Johnes', {'date': '1588'}), ('A57677', 'William Du-Gard', {'date': '1648'}), ('A64804', 'E. Tyler', {'date': '1672'}), ('A64804', 'R. Holt', {'date': '1672'}), ('A93593', 'Joseph Moxon', {'date': '1670'}), ('A06904', 'Thomas Snodham', {'date': '1614'}), ('A57537', 'John Field', {'date': '1650'}), ('A27412', 'William Thompson', {'date': '1669'}), ('A21603', 'John Cawood', {'date': '1559'}), ('A21603', 'Richarde Iugge', {'date': '1559'}), ('A50456', 'Peter Lillicrap. And', {'date': '1664'}), ('A74986', 'John Macock', {'date': '1648'}), ('A22827', 'Richarde Pynson', {'date': '1513'}), ('A04031', 'R. Field', {'date': '1619'}), ('A17727', 'Thomas Dawson', {'date': '1580'}), ('A05475', 'Richarde Pynson', {'date': '1522'}), ('A18748', 'Ar. Hatfield', {'date': '1595'}), ('A86044', 'John Cowles', {'date': '1648'}), ('A13110', 'Bonham Norton', {'date': '1618'}), ('A13110', 'John Bill', {'date': '1618'}), ('A19338', 'A. Griffin', {'date': '1636'}), ('B06900', 'George Larkin', {'date': '1687'}), ('A43379', 'T.R.', {'date': '1665'}), ('B43930', 'the Heir of Andrw sic Anderson', {'date': '1677'}), ('B15498', 'Avgvstine Mathevves', {'date': '1632'}), ('A13240', 'George Purslowe', {'date': '1615'}), ('A13404', 'Melchior Tavernor, ingrauer, and', {'date': '1628'}), ('A16906', 'Melchisedech Bradwood', {'date': '1608'}), ('A12809', 'T.S.', {'date': '1618'}), ('A38917', 'R. Janeway', {'date': '1689'}), ('A19986', 'Ioseph Barnes', {'date': '1615'}), ('A65560', 'Joseph Ray', {'date': '1692'}), ('A50127', 'B. Green', {'date': '1697'}), ('A50127', 'J. Allen', {'date': '1697'}), ('A36105', 'Edward Millington', {'date': '1679'}), ('A02644', 'Richard Field', {'date': '1596'}), ('A13533', 'Miles Flesher', {'date': '1633'}), ('A77800', 'T.S.', {'date': '1660'}), ('B05483', 'the heir of Andrew Anderson', {'date': '1689'}), ('A74203', 'Robert Barker', {'date': '1642'}), ('A72264', 'the widow of C. Boscard Permisiu superiorum', {'date': '1634'}), ('A10848', 'Roger Ward', {'date': '1589'}), ('B14422', 'J. Beale', {'date': '1619'}), ('A12319', 'John Beale', {'date': '1619'}), ('A82103', 'John Field', {'date': '1648'}), ('A87461', 'B.A.', {'date': '1647'}), ('A16366', 'Ihon Cawoode', {'date': '1555'}), ('A58719', 'the heir of Andrew Anderson', {'date': '1684'}), ('A02730', 'J.P. Waelpots?', {'date': '1633'}), ('A86304', 'E. Cotes', {'date': '1658'}), ('A10231', 'William Stansby', {'date': '1626'}), ('A62873', 'R.D.', {'date': '1664'}), ('A74684', 'J.G.', {'date': '1660'}), ('A13961', 'Thomas: Purfoot', {'date': '1612'}), ('A13961', 'Thomas Creede:', {'date': '1612'}), ('B03168', 'George Croom', {'date': '1683'}), ('A60974', 'J.C.', {'date': '1663'}), ('B08923', 'W. Godbid', {'date': '1677'}), ('A43226', 'R.A.', {'date': '1652'}), ('A46427', 'R. Hodgkinsonne', {'date': '1660'}), ('A56390', 'W. Hall', {'date': '1666'}), ('A30160', 'George Larkin', {'date': '1689'}), ('A44418', 'Thomas Warren', {'date': '1695'}), ('A52175', 'John Macock', {'date': '1671'}), ('A74820', 'Peter Cole', {'date': '1649'}), ('A07286', 'William Stansby', {'date': '1620'}), ('B05302', 'Andrew Anderson', {'date': '1675'}), ('A46545', 'Henry Hills', {'date': None}), ('A46545', 'Thomas Newcomb', {'date': None}), ('A09575', 'P. Short', {'date': '1597'}), ('A50514', 'John Reid', {'date': '1684'}), ('A50160', 'Samuel Green', {'date': '1690'}), ('B02339', 'Nat. Thompson', {'date': '1679'}), ('A53961', 'Edward Jones', {'date': '1693'}), ('A15701', 'J. Charlewood', {'date': '1577'}), ('A87477', 'Charles Bill', {'date': '1687'}), ('A87477', 'Henry Hills', {'date': '1687'}), ('A87477', 'Thomas Newcomb', {'date': '1687'}), ('A32629', 'Christopher Barker', {'date': '1664'}), ('A32629', 'John Bill', {'date': '1664'}), ('A66053', 'A. Maxwell', {'date': '1675'}), ('A19945', 'William Stansby', {'date': '1611'}), ('A82443', 'Francis Tyton', {'date': '1660'}), ('A82443', 'John Macock', {'date': '1660'}), ('A12478', 'Felix Kyngston', {'date': '1632'}), ('A19935', 'Henry Denham', {'date': '1577'}), ('A42532', 'W. Hall', {'date': '1661'}), ('B22795', 'James Scheltus', {'date': '1688'}), ('A51689', 'John Whitlock', {'date': '1695'}), ('A11114', 'George Purslowe', {'date': '1622'}), ('A14369', 'Thomas Marshe', {'date': '1562'}), ('A19938', 'G. Eld', {'date': '1612'}), ('A22519', 'John Bill', {'date': '1630'}), ('A22519', 'Printers to the Kings most Excellent Maiestie', {'date': '1630'}), ('A22519', 'Robert Barker', {'date': '1630'}), ('B03087', 'Henry Hills', {'date': '1684'}), ('B03087', 'Thomas Newcomb', {'date': '1684'}), ('A48562', 'John Hayes', {'date': '1673'}), ('A45328', 'A.W.', {'date': '1660'}), ('B05577', 'the heir of Andrew Anderson', {'date': '1685'}), ('A12701', 'Ioseph Barnes', {'date': '1591'}), ('A76384', 'M.S.', {'date': '1646'}), ('A81978', 'W. Wilson', {'date': '1646'}), ('A02935', 'R. Bradock', {'date': '1599'}), ('A19758', 'C. Boscard', {'date': '1625'}), ('A92698', 'order of secret council', {'date': '1689'}), ('A92698', 'the heir of Andrew Anderson', {'date': '1689'}), ('A56693', 'Robert White', {'date': '1670'}), ('A03025', 'R. Badger', {'date': '1631'}), ('A75410', 'T.N.', {'date': '1654'}), ('B05178', 'Robert Sanders', {'date': '1684'}), ('A42816', 'A.C.', {'date': '1670'}), ('A42816', 'E.C.', {'date': '1670'}), ('B00832', 'the widow of Laurence Kellam', {'date': '1614'}), ('A01152', 'Henrie Bynneman', {'date': '1575'}), ('A04376', 'Mathew Law', {'date': '1601'}), ('A04376', 'John Windet', {'date': '1601'}), ('A36808', 'R.I.', {'date': '1652'}), ('A37635', 'M.S.', {'date': '1647'}), ('A30077', 'John Legatt', {'date': '1641'}), ('A65357', 'Thomas James', {'date': '1679'}), ('B15398', 'Augustine Mathevves', {'date': '1625'}), ('A66555', 'John Reid', {'date': '1696'}), ('A15575', 'Martin Abraham vander Nolck', {'date': '1621'}), ('A29244', 'W. Downing', {'date': '1700'}), ('A76792', 'Thomas Johnson', {'date': '1660'}), ('A53191', 'J.M.', {'date': '1680'}), ('A53191', 'law', {'date': '1680'}), ('A46513', 'George Croom', {'date': '1687'}), ('A46513', '', {'date': '1687'}), ('A46513', 'the heir of Andrew Anderson', {'date': '1687'}), ('A50572', 'E.H.', {'date': '1683'}), ('A15520', 'William Iaggard', {'date': '1612'}), ('A68450', 'I. Okes', {'date': '1638'}), ('A68450', 'N.', {'date': '1638'}), ('A66450', 'Gregory Dexter', {'date': '1643'}), ('A56866', 'Thomas Paine', {'date': '1642'}), ('A10612', 'J. Windet', {'date': '1594'}), ('A26862', 'Abraham Brown', {'date': '1655'}), ('A04510', 'excusum', {'date': '1544'}), ('A44386', 'William Du-Gard', {'date': '1651'}), ('A87557', 'Thomas Maxey', {'date': '1654'}), ('A68079', 'Henry Bynneman', {'date': '1568'}), ('A20628', 'Thomas Harper', {'date': '1632'}), ('A44537', 'E. Jones', {'date': '1689'}), ('A44537', 'R. Taylor', {'date': '1689'}), ('A89800', 'Thomas Broad', {'date': '1648'}), ('A20225', 'Edward Allde', {'date': '1608'}), ('A76258', 'H. Hils', {'date': '1649'}), ('B04962', 'Edward Crowch sic', {'date': '1662'}), ('A36803', 'S.R.', {'date': '1685'}), ('A19455', 'W. Hall', {'date': '1612'}), ('A44168', 'F. Richardson', {'date': '1700'}), ('A93007', 'R. Wood', {'date': '1660'}), ('A22299', 'Bonham Norton', {'date': '1623'}), ('A22299', 'John Bill', {'date': '1623'}), ('A35408', 'T.L.', {'date': '1670'}), ('A28981', 'R.R.', {'date': '1695'}), ('A03361', 'Ihon Kyngston', {'date': '1581'}), ('A08456', 'John Fredericksz Stam', {'date': '1635'}), ('A08456', 'the South-Church', {'date': '1635'}), ('A28553', 'H. Hall', {'date': '1653'}), ('A07956', 'Thomas Purfoot', {'date': '1608'}), ('A56300', 'R. I.', {'date': '1657'}), ('A25837', 'Joseph Ray', {'date': '1685'}), ('B02376', 'John. Brudenell', {'date': '1661'}), ('A77266', 'J.G.', {'date': '1659'}), ('A06289', 'Nicholas Okes', {'date': '1619'}), ('A62156', 'John Bringhurst', {'date': '1683'}), ('A49066', 'Andrew Clark', {'date': '1673'}), ('A46099', 'John Crook', {'date': '1665'}), ('A00156', 'E. Allde', {'date': '1624'}), ('A06678', 'John Iackson', {'date': '1589'}), ('A32566', 'Christopher Barker', {'date': '1666'}), ('A32566', 'John Bill', {'date': '1666'}), ('A14189', 'John Windes', {'date': '1584'}), ('A14189', 'Thomas Iudson', {'date': '1584'}), ('A04574', 'Nicholas Okes', {'date': '1621'}), ('A84289', 'J.M.', {'date': '1655'}), ('A15418', 'Felix Kingston', {'date': '1604'}), ('A50525', 'Richard Bishop', {'date': '1641'}), ('A19605', 'R. Field', {'date': '1611'}), ('A71356', 'Thomas Newcomb', {'date': None}), ('A46461', 'Charles Bill', {'date': '1685'}), ('A46461', 'Henry Hills', {'date': '1685'}), ('A46461', 'Thomas Newcomb', {'date': '1685'}), ('A10306', 'Thomas Orwin', {'date': '1591'}), ('A08256', 'Edward Allde', {'date': '1613'}), ('A22190', 'Bonham Norton', {'date': '1618'}), ('A22190', 'John Bill', {'date': '1618'}), ('A51390', 'Timotheum Garthwait', {'date': '1663'}), ('A81633', 'R.W.', {'date': '1652'}), ('A76116', 'R.E.', {'date': '1684'}), ('B28834', 'J.G.', {'date': '1652'}), ('B05215', 'Evan Tyler', {'date': '1648'}), ('A13534', 'J. Beale?', {'date': '1631'}), ('A33515', 'J. Whitlock', {'date': '1695'}), ('A44269', 'Thomas Roycroft', {'date': '1665'}), ('A79060', 'B. Alsop', {'date': '1641'}), ('A90535', 'Jane Coe.', {'date': '1645'}), ('A04640', 'W. Stansby?', {'date': '1611'}), ('A10611', 'R.B.', {'date': '1640'}), ('A66440', 'J.G.', {'date': '1664'}), ('A28675', 'R.H.', {'date': '1686'}), ('A41118', 'A. Maxey', {'date': '1657'}), ('A14007', 'Bernard Alsop', {'date': '1616'}), ('A14007', 'Thomas Creede', {'date': '1616'}), ('A58278', 'T. Fawcet', {'date': '1642'}), ('B05546', 'the heirs and successors of Andrew Anderson', {'date': '1696'}), ('A39921', 'S.G.', {'date': '1654'}), ('A51307', 'J. Flesher', {'date': '1664'}), ('A95857', 'M.S.', {'date': '1647'}), ('A06502', 'John Kingston', {'date': '1581'}), ('A59596', 'E. Whitlock', {'date': '1697'}), ('A60204', 'Randal Taylor', {'date': '1689'}), ('A22683', 'the deputies of Christopher Barker', {'date': '1589'}), ('A14489', 'Nicholas Okes', {'date': '1622'}), ('A91996', 'Thomas James', {'date': '1678'}), ('A04989', 'Richarde Watkins', {'date': '1594'}), ('A68294', 'the heires of Andro Hart', {'date': '1627'}), ('A79186', 'John Williams', {'date': '1698'}), ('A78539', 'T.S.', {'date': '1694'}), ('A20960', 'R. Field', {'date': '1610'}), ('A58058', 'A.G.', {'date': '1680'}), ('A58058', 'J.P.', {'date': '1680'}), ('B20376', 'the heirs of Andrew Anderson', {'date': '1681'}), ('A92136', 'J. G.', {'date': '1658'}), ('A16199', 'Robert Walde-graue', {'date': '1600'}), ('A30242', 'Abraham Miller', {'date': '1659'}), ('A12708', 'H. Bynneman', {'date': '1580'}), ('A82557', 'John Raworth', {'date': '1644'}), ('A82557', 'Richard Cotes', {'date': '1644'}), ('A00465', 'Gulielm. Hall impensis William Welbie', {'date': '1611'}), ('A02578', 'Edward Griffin', {'date': '1617'}), ('A53895', 'B. Tooke', {'date': '1688'}), ('A53895', 'Impensis R. Clavell', {'date': '1688'}), ('A53895', 'S. Roycroft', {'date': '1688'}), ('A14909', 'T.Cotes', {'date': '1632'}), ('A60345', 'J. Moxon', {'date': '1653'}), ('B05561', 'the heirs and successors of Andrew Anderson', {'date': '1700'}), ('A03611', 'M. Flesher', {'date': '1632'}), ('A93834', 'J.G.', {'date': '1655'}), ('A70735', 'Thomas Johnson', {'date': '1670'}), ('A84988', 'G. Miller', {'date': '1642'}), ('B23036', 'Joseph Ray', {'date': '1695'}), ('B09302', 'Benjamin Took', {'date': '1680'}), ('B09302', 'John Crook', {'date': '1680'}), ('A39409', 'Henry Hills', {'date': '1682'}), ('A39409', 'Thomas Newcomb', {'date': '1682'}), ('A06524', 'H. Bynneman', {'date': '1579'}), ('A06524', 'Ralph Newbery', {'date': '1579'}), ('A27234', 'Leonard Lichfield', {'date': '1697'}), ('A37471', 'T. Leach', {'date': '1665'}), ('A25225', 'J.L.', {'date': '1688'}), ('A58490', 'T.M.', {'date': '1690'}), ('A90169', 'Richard Bishop', {'date': '1643'}), ('A75358', 'R. Hodgkinsonne', {'date': '1660'}), ('B22403', 'Richard Hodgkinson', {'date': '1661'}), ('A02875', 'VVyllyam Hovv', {'date': '1570'}), ('A00975', 'J. Beale', {'date': '1632'}), ('B05237', 'Evan Tyler', {'date': '1648'}), ('A15414', 'Cantrell Legge', {'date': '1611'}), ('A65871', 'T. Sowle', {'date': '1693'}), ('A08310', 'Simon Stafford', {'date': '1607'}), ('A89111', 'E.C.', {'date': '1652'}), ('A19458', "Eliot's Court Press", {'date': '1631'}), ('A67750', 'Henry Cripps', {'date': '1658'}), ('A67750', 'James Crumpand', {'date': '1658'}), ('A09822', 'John Legat', {'date': '1599'}), ('A47832', 'A.C.', {'date': '1663'}), ('A30979', 'John Macock', {'date': '1679'}), ('A16300', 'George Purslow', {'date': '1619'}), ('A43556', 'L. Lichfield', {'date': '1643'}), ('A35318', 'S. Bridge', {'date': '1697'}), ('B23262', 'J.B.', {'date': '1662'}), ('A76156', 'R.W.', {'date': '1655'}), ('A13078', 'the heires of Andro Hart', {'date': '1632'}), ('A93438', 'T. Milbourn', {'date': '1687'}), ('A79931', 'Thomas Paine', {'date': '1646'}), ('B18791', 'J.M.', {'date': '1678'}), ('A57090', 'John Winter', {'date': '1673'}), ('A56993', 'Evan Tyler', {'date': '1651'}), ('A76312', 'W.O.', {'date': '1698'}), ('A41990', 'Robert VValker', {'date': '1676'}), ('A55472', 'Andrew Sowle', {'date': '1687'}), ('A61953', 'Thomas Newcomb', {'date': '1677'}), ('A59890', 'the heirs and successors of Andrew Anderson', {'date': '1695'}), ('A10442', 'Ægidus Diest', {'date': '1564'}), ('A46470', 'Charles Bill', {'date': '1687'}), ('A46470', 'Henry Hills', {'date': '1687'}), ('A46470', 'Thomas Newcomb', {'date': '1687'}), ('B16605', 'Benjamin Tooke, printer the Kings most excellent Majesty:', {'date': '1685'}), ('A15772', 'Ioachim Trognesius i.e. the English secret press', {'date': '1596'}), ('A22330', 'Bonham Norton', {'date': '1624'}), ('A22330', 'John Bill', {'date': '1624'}), ('A19517', 'me Robert Redman', {'date': '1532'}), ('A19517', 'saynt Dunstones chyrche', {'date': '1532'}), ('A57693', 'R. Young', {'date': '1641'}), ('A13711', 'Valentine Sims', {'date': '1599'}), ('A02553', 'Humfrey Lownes', {'date': '1605'}), ('A15057', 'Felix Kyngston', {'date': '1606'}), ('A58385', 'L. Curtiss', {'date': '1682'}), ('A02613', 'J. Tisdale', {'date': '1561'}), ('A11159', 'Wynkyn de Worde', {'date': '1507'}), ('A85387', 'H Cripps', {'date': '1655'}), ('A85387', 'L. Lloyd', {'date': '1655'}), ('A68543', 'Leonard Lichfield', {'date': '1638'}), ('A97367', 'Bernard Alsop', {'date': '1643'}), ('A15850', 'William Iones', {'date': '1617'}), ('A75554', 'Evan Tyler, and re-printed', {'date': '1648'}), ('A18302', 'Robert Barker', {'date': '1606'}), ('A01325', 'Thomas Vautroullier', {'date': '1580'}), ('B06196', 'J. Bradford', {'date': '1699'}), ('A27351', 'John Hancock', {'date': '1673'}), ('A39751', 'Randal Taylor', {'date': '1689'}), ('A91205', 'F.L.', {'date': '1656'}), ('A77843', 'M. Simmons', {'date': '1644'}), ('A45771', 'J. D.', {'date': '1689'}), ('A96866', 'John Field', {'date': '1652'}), ('A76707', 'E.T.', {'date': '1657'}), ('A76707', 'Thomas Johnson', {'date': '1657'}), ('A30926', 'J. Astwood', {'date': '1691'}), ('A88514', 'James Cottrel', {'date': '1654'}), ('A56127', 'authority', {'date': '1641'}), ('A37386', 'John Redmayne', {'date': '1664'}), ('A71344', 'John Macock', {'date': None}), ('A86947', 'James Cottrel', {'date': '1651'}), ('A61369', 'E. Cotes', {'date': '1669'}), ('A05292', 'Simonem Staffordum', {'date': '1600'}), ('A33413', 'J.C.', {'date': '1677'}), ('A72861', 'Thomas Creede', {'date': '1603'}), ('A20370', 'Roger Warde:', {'date': '1583'}), ('A07968', 'Simon Stafford', {'date': '1607'}), ('A03573', 'Edward Allde', {'date': '1588'}), ('A09757', 'Iames Roberts', {'date': '1597'}), ('A32454', 'Christopher Barker', {'date': '1661'}), ('A32454', 'John Bill', {'date': '1661'}), ('A19241', 'A. Ieffes', {'date': '1592'}), ('A31440', 'J.S.', {'date': '1657'}), ('A02475', 'Bernard Alsop', {'date': '1623'}), ('A50431', 'J. Gain', {'date': '1684'}), ('A33843', 'Richard Janeway', {'date': '1689'}), ('A44172', 'W. Godbid', {'date': '1673'}), ('A29259', 'William Bradford', {'date': '1700'}), ('A95510', 'I.C.', {'date': '1649'}), ('A46541', 'John Wallis', {'date': '1688'}), ('A46541', 'the heir of Andrew Anderson', {'date': '1688'}), ('A87653', 'William Bradford', {'date': '1692'}), ('A14510', 'Felix Kyngston', {'date': '1622'}), ('B08453', 'Bartholomew Green', {'date': '1699'}), ('B08453', 'John Allen', {'date': '1699'}), ('A16491', 'I. Raworth', {'date': '1638'}), ('B02020', 'Leonard Lichfield', {'date': '1644'}), ('A70927', 'T. Ratcliffe pro Georgio Thomasono', {'date': '1659'}), ('A77288', 'R.C.', {'date': '1641'}), ('A77288', 'T.', {'date': '1641'}), ('A57551', 'J.G.', {'date': '1656'}), ('A89555', 'Bernard Alsop', {'date': '1646'}), ('A30019', 'Leonard Lichfield', {'date': '1700'}), ('A59600', 'R.W.', {'date': '1678'}), ('A68219', 'Thomas Purfoot', {'date': '1591'}), ('A00026', 'Walter Dight', {'date': '1600'}), ('A14368', 'Henry Sutton', {'date': '1562'}), ('A56451', 'J.G. For Nathaniel Brook', {'date': '1663'}), ('A38968', 'T.N.', {'date': '1669'}), ('A59351', 'J. Orme', {'date': '1693'}), ('A08888', 'Iames Short', {'date': '1618'}), ('A08888', 'John Lichfield', {'date': '1618'}), ('A11848', 'I L.', {'date': '1624'}), ('A92458', 'John Field', {'date': '1646'}), ('B19961', 'Henry Hills', {'date': '1683'}), ('B19961', 'Thomas Newcomb', {'date': '1683'}), ('B05718', 'the heir of Andrew Anderson', {'date': '1693'}), ('A09197', 'E. Purslowe', {'date': '1639'}), ('A02180', 'John Danter', {'date': '1595'}), ('B04059', 'Edward Jones', {'date': '1698'}), ('A57516', 'Stephen Bulkley', {'date': '1642'}), ('A13216', 'John Dawson', {'date': '1640'}), ('A28543', 'James Flesher', {'date': '1664'}), ('A22047', 'Robert Barker', {'date': '1608'}), ('A52356', 'George Mosman', {'date': '1694'}), ('A61922', 'A.M.', {'date': '1657'}), ('A15695', 'I. Legatt', {'date': '1640'}), ('A75862', 'Thomas Braddyll', {'date': '1692'}), ('A90321', 'Academiæ Typog.', {'date': '1664'}), ('A90321', 'Lichfieldianis', {'date': '1664'}), ('A40095', 'T.M.', {'date': '1692'}), ('B24794', 'Andrew Crook', {'date': '1691'}), ('A33673', 'Henry Twyford', {'date': '1668'}), ('A33673', 'James Flesher', {'date': '1668'}), ('A33673', 'John Streater', {'date': '1668'}), ('A59254', 'Evan Tyler', {'date': '1649'}), ('A08160', 'Bernard Alsop', {'date': '1622'}), ('A22090', 'Robert Barker', {'date': '1613'}), ('B24740', 'Andrew Crook', {'date': '1691'}), ('A34445', 'J.G.', {'date': '1654'}), ('A43699', 'M. Flesher', {'date': '1687'}), ('A59264', 'W. Downing', {'date': '1673'}), ('A38938', 'Thomas Mabb', {'date': '1664'}), ('B14612', 'William Jones', {'date': '1634'}), ('A71318', 'Richarde Pynson', {'date': '1523'}), ('B05563', 'the heirs and successors of Andrew Anderson', {'date': '1695'}), ('A92870', 'Henry Hills', {'date': '1653'}), ('A04573', 'T. Cotes', {'date': '1633'}), ('A39305', 'T. Sowle', {'date': '1694'}), ('A74507', 'Henry Hills', {'date': '1654'}), ('A74507', 'William du-Gard', {'date': '1654'}), ('A92095', 'Leonard Lichfield', {'date': '1642'}), ('A48758', 'A.M.', {'date': '1674'}), ('A42937', 'Nathaniel Thompson', {'date': '1683'}), ('A73967', 'Robert Barker', {'date': '1610'}), ('A12814', 'Robert Young', {'date': '1637'}), ('B05343', 'the heirs and successors of Andrew Anderson', {'date': '1695'}), ('A21689', 'John Cawood', {'date': '1566'}), ('A21689', 'Rycharde Iugge', {'date': '1566'}), ('A01417', 'VVilliam Iones', {'date': '1574'}), ('A87134', 'J.C.', {'date': '1659'}), ('A53856', 'William Hall', {'date': '1667'}), ('A11823', 'Thomas Snodham', {'date': '1624'}), ('A74271', 'Robert Barker', {'date': '1641'}), ('A48906', 'N. Thompson', {'date': '1675'}), ('A48906', 'T. Ratcliff', {'date': '1675'}), ('A96298', 'Samuel Green', {'date': '1676'}), ('A03912', 'John Day', {'date': '1560'}), ('B17539', 'Andrew Sowle', {'date': '1683'}), ('A35753', 'R. White', {'date': '1672'}), ('A80185', 'William Du-gard', {'date': '1650'}), ('A80185', 'the appointment of the Council of State', {'date': '1650'}), ('B02774', 'the heirs and successors of Andrew Anderson', {'date': '1695'}), ('A50155', 'Samuel Green', {'date': '1690'}), ('A34128', 'E.G.', {'date': '1650'}), ('A95213', 'D. Mallet', {'date': '1687'}), ('A49261', 'R. Wood', {'date': '1651'}), ('B12988', 'Bonham Norton', {'date': '1628'}), ('B12988', 'John Bill', {'date': '1628'}), ('A69354', 'Robert Barker', {'date': '1632'}), ('A69354', 'the Assignes of John Bill', {'date': '1632'}), ('B05704', 'the heir of Andrew Anderson', {'date': '1681'}), ('A46550', 'the heir of Andrew Anderson', {'date': '1685'}), ('A81938', 'H. Clark', {'date': '1685'}), ('A84076', 'J.C.', {'date': '1653'}), ('A10214', 'John Beale', {'date': '1640'}), ('A10214', 'Stephen Bulkley', {'date': '1640'}), ('A57919', 'Thomas Newcomb', {'date': '1659'}), ('B06337', 'the heir of Andrew Anderson', {'date': '1681'}), ('B23576', 'Henry Overton', {'date': '1643'}), ('A83537', 'Edward Husband', {'date': '1651'}), ('A83537', 'John Field', {'date': '1651'}), ('A38823', 'John Owsley', {'date': '1657'}), ('B18312', 'John Darby', {'date': '1681'}), ('A00286', 'the successors of G. Thorp', {'date': '1624'}), ('A67566', 'Leonard Lichfield', {'date': '1653'}), ('A94769', 'R.D.', {'date': '1660'}), ('A14611', 'Thomas Dawson', {'date': '1582'}), ('A82569', 'J.R.', {'date': '1643'}), ('A31500', 'Leonard Lichfield', {'date': '1643'}), ('A16786', 'R.B.', {'date': '1606'}), ('A09733', 'Peter Short', {'date': '1596'}), ('A68467', 'E.Griffin', {'date': '1638'}), ('A68467', 'Richard Bishop', {'date': '1638'}), ('A45781', 'A.N.', {'date': '1642'}), ('A67744', 'James Crumps', {'date': '1660'}), ('A67744', 'M.I.', {'date': '1660'}), ('A87309', 'William Bladen', {'date': '1642'}), ('A85315', 'J.G.', {'date': '1656'}), ('B19217', 'Leonard Lichfield', {'date': '1643'}), ('A88134', 'Thomas Pain', {'date': '1647'}), ('A08439', 'B. Alsop', {'date': '1625'}), ('A08439', 'T. Fawcet', {'date': '1625'}), ('A74862', 'John Macock', {'date': '1651'}), ('A30705', 'E.G.', {'date': '1641'}), ('A08571', 'Richard Schilders. 1602. At London printed', {'date': '1602'}), ('A08803', 'Nicholas Okes', {'date': '1616'}), ('A56728', 'Andrew Sowle', {'date': '1688'}), ('A04404', 'E: Allde dwelling', {'date': '1617'}), ('A85768', 'E.M.', {'date': '1656'}), ('A85768', 'T.R.', {'date': '1656'}), ('A20744', 'Felix Kyngston', {'date': '1608'}), ('A20744', 'Felix Kyngston', {'date': '1608'}), ('A20744', 'Humphrey Lownes', {'date': '1608'}), ('A20744', 'Matthew Lownes', {'date': '1608'}), ('A78877', 'Robert Ibbitson', {'date': '1648'}), ('A88600', 'Roger Daniel', {'date': '1642'}), ('A16663', 'Thomas Harper', {'date': '1635'}), ('A07482', 'John Danter', {'date': '1597'}), ('A07482', 'the Royall Exchange', {'date': '1597'}), ('A45375', 'Samuell Broun English', {'date': '1649'}), ('A02021', 'Thomas Finlason', {'date': '1609'}), ('A16309', 'Bernard Alsop', {'date': '1624'}), ('A16309', 'Thomas Snodham', {'date': '1624'}), ('B13099', 'Robert Barker', {'date': '1635'}), ('A12644', 'Richard Field', {'date': '1620'}), ('A51316', 'the printers to the University of Cambridge', {'date': '1651'}), ('A08732', 'Josephus Barnesius', {'date': '1612'}), ('A08276', 'Ioseph Barnes', {'date': '1613'}), ('A36345', 'Andrew Crook', {'date': '1691'}), ('B01128', 'Leonard Askel', {'date': '1562'}), ('A37748', 'Evan Tyler', {'date': '1643'}), ('A02779', 'John Iackson', {'date': '1588'}), ('A48436', 'Edward Jones', {'date': '1691'}), ('B11386', 'Felix Kingston', {'date': '1602'}), ('A14936', 'Robert Waldegrave', {'date': '1598'}), ('B14755', 'John Windet', {'date': '1603'}), ('A21154', 'Wylliam Griffith', {'date': '1570'}), ('A46104', 'John Crook', {'date': '1667'}), ('A82403', 'John Bill', {'date': '1660'}), ('A81845', 'James Cottrel', {'date': '1659'}), ('A32753', 'Samuel Green', {'date': '1655'}), ('B00511', 'E. Griffin.', {'date': '1640'}), ('A01678', 'Thomas Orwin', {'date': '1590'}), ('A31773', 'Robert Ibbitson', {'date': '1648'}), ('A55386', 'J.H.', {'date': '1658'}), ('A02461', 'F. Kingston', {'date': '1606'}), ('A95099', 'James. Cottrell.', {'date': '1676'}), ('A22459', 'Bonham Norton', {'date': '1628'}), ('A22459', 'John Bill', {'date': '1628'}), ('A38136', 'Henry Hills', {'date': '1685'}), ('A38136', 'Thomas Newcomb', {'date': '1685'}), ('A38136', "the Assigns of John Bill deceas'd, and", {'date': '1685'}), ('A01555', 'Henry Middleton', {'date': '1579'}), ('A30612', 'Thomas Newcomb', {'date': '1659'}), ('A83103', 'J. Raworth', {'date': '1644'}), ('A83103', 'R. Cotes', {'date': '1644'}), ('A12778', 'Richard Field', {'date': '1596'}), ('A09223', 'Edward Allde', {'date': '1585'}), ('A41846', 'George Swinton', {'date': '1672'}), ('A41846', 'James Glen', {'date': '1672'}), ('A41846', 'Thomas Brown', {'date': '1672'}), ('A87721', 'Thomas Paine', {'date': '1646'}), ('A44334', 'Thomas Newcomb', {'date': '1666'}), ('A96673', 'Robert Leybourn', {'date': '1649'}), ('A34564', 'H. Lloyd', {'date': '1672'}), ('A19016', 'Iames Short', {'date': '1622'}), ('A19016', 'John Lichfield', {'date': '1622'}), ('A21783', 'Christopher Barker', {'date': '1578'}), ('A82889', 'the heir of Andrew Anderson', {'date': '1682'}), ('A42726', 'H.C.', {'date': '1686'}), ('B05708', 'the heir of Andrew Anderson', {'date': '1691'}), ('A91361', 'E. Alsop.', {'date': '1653'}), ('A46198', 'Benjamin Tooke', {'date': '1670'}), ('A01505', 'Alexander Lacy', {'date': '1566'}), ('B26043', 'the heir of Andrew Anderson', {'date': '1683'}), ('A04784', 'Andreas Hart', {'date': '1617'}), ('A10126', 'B. Alsop', {'date': '1640'}), ('A10126', 'T. Favvcet', {'date': '1640'}), ('A28407', 'L. Lichfield and re-printed', {'date': '1660'}), ('A02049', 'F. Kingston', {'date': '1602'}), ('A22687', 'the deputies of Christopher Barker', {'date': '1593'}), ('A37045', 'the heir of Andrew Anderson', {'date': '1685'}), ('B11806', 'C. Boscard', {'date': '1623'}), ('B11806', 'M. Wyon, and', {'date': '1623'}), ('A01103', 'Humfrey Lovvnes', {'date': '1618'}), ('B03763', 'B.W.', {'date': '1666'}), ('A94568', 'John Redmayn', {'date': '1660'}), ('A16765', 'R. Bradock?', {'date': '1601'}), ('A56409', 'Randall Taylor', {'date': '1690'}), ('A03248', 'John Okes', {'date': '1637'}), ('A03248', 'Nicholas', {'date': '1637'}), ('A68924', 'J. Roberts', {'date': '1594'}), ('A68924', 'R. Watkins', {'date': '1594'}), ('B05478', 'the heirs and successors of Andrew Anderson', {'date': '1697'}), ('A82320', 'R.W.', {'date': '1653'}), ('A01873', 'Edward All-de', {'date': '1618'}), ('A16196', 'Hugh Iackson', {'date': '1590'}), ('A05056', 'N. Okes', {'date': '1611'}), ('A23433', 'the widdow of Nicolas Courant.', {'date': '1631'}), ('A06185', 'Thomas Creede', {'date': '1594'}), ('A48625', 'R. Royston', {'date': '1672'}), ('A32429', 'Christopher Barker', {'date': '1678'}), ('A32429', 'Henry Hills', {'date': '1678'}), ('A32429', 'John Bill', {'date': '1678'}), ('A32429', 'Thomas Newcomb', {'date': '1678'}), ('A19564', 'Byllynges gate', {'date': '1548'}), ('A19564', 'Nycolas Hyll.', {'date': '1548'}), ('A02963', 'Thomas Purfoote', {'date': '1589'}), ('A87339', 'Edward Griffin', {'date': '1648'}), ('B14949', 'G. Purslowe', {'date': '1630'}), ('A62931', 'J.M.', {'date': '1672'}), ('A91650', 'Edward Cole, printers and book-sellers', {'date': '1661'}), ('A91650', 'Peter Cole', {'date': '1661'}), ('A25014', 'John Wallis', {'date': '1693'}), ('A71328', 'Nicholas Okes', {'date': '1619'}), ('A86441', 'William Shrowsbury', {'date': '1700'}), ('A20146', 'Robertus Charteris typographus Regis', {'date': '1608'}), ('A72059', 'Richard Read', {'date': '1602'}), ('B08187', 'Edward White.', {'date': '1591'}), ('B08187', 'J. Wolfe', {'date': '1591'}), ('A15836', 'Simon Stafford', {'date': '1600'}), ('A29110', 'Stephen Bulkley', {'date': '1666'}), ('A64956', 'J. Astwood', {'date': '1688'}), ('A00792', 'John Awdely, dewyllyng sic', {'date': '1565'}), ('B11273', 'G. Eld', {'date': '1624'}), ('A96188', 'R.A.', {'date': '1649'}), ('A92365', 'Jo. Raworth', {'date': '1643'}), ('A92365', 'Richard Cotes', {'date': '1643'}), ('B15226', 'Edward Griffine', {'date': '1638'}), ('B15226', 'R. Bishop', {'date': '1638'}), ('A76199', 'T.M.', {'date': '1654'}), ('A78338', 'D. Maxwel', {'date': '1660'}), ('A50395', 'Th. Dawks', {'date': '1683'}), ('A61628', 'R. White', {'date': '1669'}), ('A34207', 'Andrew Anderson', {'date': '1669'}), ('A69356', 'Richard Grafton', {'date': '1548'}), ('A46895', 'F.K.', {'date': '1642'}), ('A89992', 'the heir of Andrew Anderson', {'date': '1680'}), ('A60073', 'J. Grantham', {'date': '1683'}), ('A36718', 'E.O.', {'date': '1669'}), ('A45460', 'J.G.', {'date': '1654'}), ('B13129', 'Robert Barker', {'date': '1637'}), ('A21485', 'Thomas Berthelet', {'date': '1535'}), ('A38359', 'Leonard Lichfield', {'date': '1645'}), ('A43141', 'I.O.', {'date': '1642'}), ('B16613', 'Andrew Crooke', {'date': '1684'}), ('A47663', 'Jo. Streater', {'date': '1658'}), ('A45425', 'Henry Hall', {'date': '1646'}), ('A95474', 'Richard Cotes', {'date': '1648'}), ('A68128', 'William Iones', {'date': '1629'}), ('A41818', 'R.D.', {'date': '1662'}), ('A76119', 'Matthew Simmons', {'date': '1647'}), ('A07259', 'George Miller', {'date': '1634'}), ('A83899', 'Robert Barker', {'date': '1641'}), ('A72189', 'Miles. Flesher.', {'date': '1638'}), ('A61881', 'J.C. fdor Andrew Crook', {'date': '1662'}), ('A50206', 'Samuel Green', {'date': '1675'}), ('A46143', 'Benjamin Tooke', {'date': '1676'}), ('A94253', 'E. Coates', {'date': '1659'}), ('A37084', 'R.D.', {'date': '1649'}), ('A21148', 'A. Mathewes.', {'date': '1630'}), ('B13116', 'Robert Barker', {'date': '1636'}), ('A43609', 'W. Downing', {'date': '1698'}), ('A43609', 'Westminster', {'date': '1698'}), ('A43609', 'most booksellers about London', {'date': '1698'}), ('A47328', 'J. Heptinstall', {'date': '1684'}), ('A07602', 'Valentine Simmes', {'date': '1599'}), ('B43741', 'Stephen Bulkley', {'date': '1643'}), ('A25851', 'James Flesher', {'date': '1664'}), ('A81254', 'Ruth Raworth', {'date': '1645'}), ('A25902', 'J. Cotterel', {'date': '1676'}), ('A12807', 'M. Flesher', {'date': '1630'}), ('A83596', 'John Field', {'date': '1652'}), ('A37504', 'T.M.', {'date': '1678'}), ('A74462', 'John Field', {'date': '1652'}), ('A09695', 'Thomas Creede', {'date': '1599'}), ('A07993', 'Henry Denham', {'date': '1566'}), ('A07993', 'Thomas Hacket', {'date': '1566'}), ('A03758', 'C. Legge', {'date': '1615'}), ('B14995', 'William Stansby', {'date': '1614'}), ('A17162', 'John Day', {'date': '1558'}), ('B05675', 'Evan Tyler', {'date': '1664'}), ('B03585', 'Joacim Nosche', {'date': '1665'}), ('A14254', 'Abell Ieffes', {'date': '1590'}), ('A03968', 'Iohannis Day ', {'date': '1558'}), ('A02273', 'Abel Ieffs', {'date': '1587'}), ('A20724', 'J. Okes', {'date': '1639'}), ('A04108', 'Wylliam Gryffith', {'date': '1564'}), ('A57719', 'J. Grantham', {'date': '1683'}), ('A57719', 'the order of the Widdow Rouse', {'date': '1683'}), ('A96979', 'R. B.', {'date': '1642'}), ('A06719', 'Johan Mayler', {'date': '1542'}), ('A77699', 'Thomas Roycroft', {'date': '1659'}), ('A59809', 'A.C.', {'date': '1675'}), ('B24746', 'Andrew Crook', {'date': '1691'}), ('A44446', 'Thomas Warren', {'date': '1700'}), ('A02681', 'the Society of Stationers', {'date': '1634'}), ('A96707', 'A.M.', {'date': '1664'}), ('A42508', 'B.G.', {'date': '1671'}), ('A85373', 'Bernard Alsop', {'date': '1645'}), ('A11795', 'John Schellem', {'date': '1626'}), ('B02951', 'B. Griffin', {'date': '1678'}), ('B02951', 'S.', {'date': '1678'}), ('B02951', 'order of the principal officers and commissioners of his Majesties Navy', {'date': '1678'}), ('A26061', 'T.B.', {'date': '1688'}), ('A14707', 'Christophor Trutheall i.e. Egidius van der Erve', {'date': '1556'}), ('B05590', 'order of his Majesties Privy Council', {'date': '1689'}), ('B05590', 'the heir of Andrew Anderson', {'date': '1689'}), ('A92098', 'Edward Griffin.', {'date': '1645'}), ('A88053', 'Leonard Lichfield', {'date': '1643'}), ('A09857', 'Edward Allde', {'date': '1599'}), ('A14514', 'George Eld', {'date': '1610'}), ('A19876', 'Augustine Mathewes', {'date': '1630'}), ('A13631', 'John Lichfield', {'date': '1625'}), ('A13631', 'William Turner', {'date': '1625'}), ('A20684', 'T. Creede', {'date': '1601'}), ('A33473', 'James Cottrel', {'date': '1659'}), ('A79127', 'Robert Barker, and now', {'date': '1642'}), ('A30484', 'R. Norton', {'date': '1690'}), ('A46742', 'Leonard Lichfield', {'date': '1683'}), ('A41629', 'Henry Hills', {'date': '1687'}), ('A41583', 'K. Astwood', {'date': '1700'}), ('A14809', 'W. Iaggard', {'date': '1621'}), ('A80963', 'Henry Hills', {'date': '1653'}), ('A01839', 'August. Matthevves', {'date': '1631'}), ('A20090', 'Nicholas Okes', {'date': '1612'}), ('A04648', 'Adam Islip', {'date': '1600'}), ('A16110', 'John Dawson', {'date': '1639'}), ('A20123', 'Thomas Gubbin', {'date': '1588'}), ('A20123', 'Thomas Orwin', {'date': '1588'}), ('A05281', 'T. Creede', {'date': '1606'}), ('A21776', 'Christopher Barkar', {'date': '1577'}), ('A26681', 'R.D.', {'date': '1659'}), ('A09927', 'R. Jugge', {'date': '1553'}), ('A46079', 'Benjamin Took', {'date': '1679'}), ('A46079', 'John Crook', {'date': '1679'}), ('B13700', 'W.White', {'date': '1611'}), ('A35200', 'Edward Crowch', {'date': '1665'}), ('A52921', 'T.L.', {'date': '1659'}), ('A79170', 'Thomas Newcomb', {'date': '1673'}), ('A19513', 'T. Snodham', {'date': '1616'}), ('A63915', 'H. Hills jun.', {'date': '1684'}), ('A35320', 'J.R.', {'date': '1689'}), ('A00888', 'Thomas Snodham', {'date': '1614'}), ('B05536', 'the heir of Andrew Anderson', {'date': '1692'}), ('A34204', 'Leonard Lichfield', {'date': '1644'}), ('A25956', 'L. Lichfield', {'date': '1646'}), ('A00075', 'Regiæ Maiestatis typographi', {'date': '1597'}), ('A00075', 'deputati Christopheri Barker', {'date': '1597'}), ('A18482', 'Henrie Bynneman', {'date': '1573'}), ('A33964', 'A. Maxwell', {'date': '1681'}), ('A33964', 'R. Roberts', {'date': '1681'}), ('A06369', 'George Veseler', {'date': '1621'}), ('A78634', 'Robert Barker', {'date': '1642'}), ('B19087', 'Leonard Lichfield', {'date': '1644'}), ('A66948', 'S.R.', {'date': '1682'}), ('A58714', 'J. Wallis', {'date': '1688'}), ('A15340', 'John Kyngston', {'date': '1581'}), ('A12260', 'G. Eld', {'date': '1623'}), ('A12260', 'J. Dawson', {'date': '1623'}), ('A12260', 'W. Iones', {'date': '1623'}), ('B05644', 'the heir of Andrew Anderson', {'date': '1690'}), ('A16279', 'Wyllyam Powel', {'date': '1554'}), ('A02605', 'B. Alsop', {'date': '1640'}), ('A02605', 'J. Raworth', {'date': '1640'}), ('A02605', 'M. Parsons', {'date': '1640'}), ('A02605', 'T. Fawcet', {'date': '1640'}), ('A19300', 'B. Alsop', {'date': '1630'}), ('A19300', 'George Purslowe ', {'date': '1630'}), ('A19300', 'T. Fawcet', {'date': '1630'}), ('A45324', 'M. Flesher', {'date': '1646'}), ('A30023', 'Jun.', {'date': '1700'}), ('A30023', 'R. Janeway', {'date': '1700'}), ('A51909', 'F.L.', {'date': '1647'}), ('A84860', 'Jane Coe.', {'date': '1645'}), ('A17581', 'the printers to the Vniversitie of Cambridge', {'date': '1635'}), ('A13152', 'Bernard Alsop', {'date': '1638'}), ('A80530', 'I.N.', {'date': '1641'}), ('A11503', 'R. Cotes', {'date': '1629'}), ('A11503', 'T. Cotes', {'date': '1629'}), ('B09425', 'Richard Cotes', {'date': '1649'}), ('A72487', 'Lionell Snowdon ', {'date': '1616'}), ('A84957', 'T. Mabb', {'date': '1657'}), ('A95264', 'J.C.', {'date': '1648'}), ('A22447', 'Bonham Norton', {'date': '1627'}), ('A22447', 'John Bill', {'date': '1627'}), ('A22447', 'Printers to the Kings most Excellent Maiestie', {'date': '1627'}), ('A70924', 'Stephen Bulkley', {'date': '1641'}), ('A91779', 'R. Ibbitson', {'date': '1656'}), ('A34797', 'F. Leach', {'date': '1658'}), ('A12772', 'P. Short', {'date': '1595'}), ('A02754', 'John Bill', {'date': '1629'}), ('B02725', 'T. Dawks', {'date': '1680'}), ('A16794', 'S. Stafford', {'date': '1602'}), ('A19493', 'Thomas Snodham', {'date': '1609'}), ('B12646', 'John Cawood', {'date': '1618'}), ('B12646', 'Richard Jugge', {'date': '1618'}), ('A04962', 'Thomas Purfoot', {'date': '1614'}), ('A77639', 'John Field', {'date': '1652'}), ('A46094', 'Benjamin Tooke', {'date': '1687'}), ('A53723', 'R. Cotes', {'date': '1645'}), ('A54597', 'Thomas Dawks', {'date': '1683'}), ('A80975', 'Henry Hills', {'date': '1656'}), ('A80975', 'John Feild', {'date': '1656'}), ('A11529', 'Richard Iones', {'date': '1587'}), ('A11529', 'the little North doore of Paules', {'date': '1587'}), ('A20725', 'Felix Kyngston', {'date': '1620'}), ('A69996', 'Thomas Newcomb', {'date': '1669'}), ('A14144', 'Hans luft i.e. J. Hoochstraten', {'date': '1528'}), ('A36701', 'William Wilson', {'date': '1659'}), ('A35327', 'J.R.', {'date': '1689'}), ('A42127', 'S.B.', {'date': '1649'}), ('A04977', 'Thomas Harper', {'date': '1640'}), ('B12783', 'Robert Barker', {'date': '1609'}), ('A66700', 'Thomas Mabb', {'date': '1664'}), ('A86191', 'James Cottrel', {'date': '1652'}), ('A06869', 'Henrie Middleton', {'date': '1579'}), ('A16679', 'E. Griffin', {'date': '1617'}), ('A32080', 'Leonard Lichfield', {'date': '1643'}), ('A27995', 'E. Flesher', {'date': '1679'}), ('A03803', 'Edward All-de', {'date': '1621'}), ('A16975', 'Richard Watkins', {'date': '1594'}), ('B05347', 'the heirs and successors of Andrew Anderson', {'date': '1696'}), ('A19680', 'G.P.', {'date': '1630'}), ('A16490', 'T. Purfoot', {'date': '1606'}), ('A77507', 'Moses Bell', {'date': '1645'}), ('A49524', 'J. G.', {'date': '1662'}), ('A75850', 'Robert Ibbitson', {'date': '1648'}), ('A20398', 'N.O.', {'date': '1610'}), ('A76367', 'Richard Cotes', {'date': '1645'}), ('A06767', 'T. Scarlet?', {'date': '1592'}), ('B05720', 'the heir of Andrew Anderson', {'date': '1678'}), ('A01801', 'E. Allde?', {'date': '1604'}), ('A01801', 'R. Bradock?', {'date': '1604'}), ('A33914', 'John Hayes', {'date': '1688'}), ('A31073', 'M. Flesher', {'date': '1685'}), ('B25240', 'S.B.', {'date': '1649'}), ('A86484', 'E.M.', {'date': '1647'}), ('A86484', 'T.R.', {'date': '1647'}), ('A45110', 'Evan Tyler', {'date': None}), ('A77495', 'Francis Neile', {'date': '1648'}), ('A90120', 'Thomas Roycroft', {'date': '1661'}), ('A63890', 'M.W.', {'date': '1683'}), ('A68249', 'Robert Barker', {'date': '1607'}), ('A66327', "Charles Bill, and the executrix of Thomas Newcomb deceas'd", {'date': '1693'}), ('A07313', 'Edward Allde', {'date': '1612'}), ('A91007', 'Henry Hils', {'date': '1652'}), ('A37265', 'J.G.', {'date': '1684'}), ('A25439', 'Leonard Lichfield', {'date': '1697'}), ('A30663', 'Leonard Lichfield', {'date': '1681'}), ('A07025', 'John Beale', {'date': '1632'}), ('A15665', 'August. Mathewes', {'date': '1632'}), ('A58068', 'T.N.', {'date': '1674'}), ('A92862', 'H.', {'date': '1648'}), ('A20100', 'William Jaggard, and to be', {'date': '1607'}), ('A08225', 'N. Bohmberg', {'date': '1575'}), ('A21081', 'John Legat', {'date': '1601'}), ('A69677', 'S. Roycroft', {'date': '1681'}), ('A62374', 'J.L.', {'date': '1650'}), ('A09972', 'John Wreittoun', {'date': '1631'}), ('A12799', 'B. Alsop', {'date': '1623'}), ('A13486', 'John Haviland', {'date': '1623'}), ('A08840', 'Henry Bynneman', {'date': '1567'}), ('A85946', 'J.F.', {'date': '1647'}), ('A85532', 'M.S.', {'date': '1653'}), ('A01234', 'Thomas Harper', {'date': '1639'}), ('A35177', 'Jonathan Robinson', {'date': '1692'}), ('A21158', 'Thomas Harper', {'date': '1638'}), ('A47379', 'Henry Hall', {'date': '1666'}), ('A03231', 'John Harrison 3?', {'date': '1600'}), ('A57371', 'Moses Pitt', {'date': '1670'}), ('A30811', 'Edward Jones', {'date': '1693'}), ('A25777', 'E. Whitlock', {'date': '1698'}), ('A39515', 'S. Bryan', {'date': '1700'}), ('A12161', 'Thomas Dawson', {'date': '1577'}), ('A12161', 'Thomas Gardyner', {'date': '1577'}), ('A81245', 'Ruth Raworth', {'date': '1646'}), ('A44563', 'A. Maxwell', {'date': '1675'}), ('A51869', 'S. Darker', {'date': '1700'}), ('A88804', 'Robert Ibbitson', {'date': '1648'}), ('A50201', 'John Foster', {'date': '1680'}), ('A88476', 'Richard Cotes', {'date': '1648'}), ('A09509', 'VVylliam Gryffith', {'date': '1570'}), ('A46612', 'Thomas James', {'date': '1682'}), ('A08128', 'John Awdely', {'date': '1569'}), ('A90621', 'Isaak VVaesbergen', {'date': '1644'}), ('A07240', 'John Beale', {'date': '1632'}), ('A19903', 'John Barnes', {'date': '1603'}), ('A19903', 'Ioseph Barnes', {'date': '1603'}), ('A12429', 'P. Short', {'date': '1599'}), ('A56724', 'William Lesteens', {'date': '1654'}), ('A52775', 'Thomas Brudenell', {'date': '1642'}), ('A08533', 'Edward Allde', {'date': '1605'}), ('A67462', 'T. Maxey', {'date': '1653'}), ('A85389', 'M.S.', {'date': '1646'}), ('B05593', 'Evan Tyler', {'date': '1665'}), ('A32516', 'Christopher Barker', {'date': '1678'}), ('A32516', 'Henry Hills', {'date': '1678'}), ('A32516', 'John Bill', {'date': '1678'}), ('A32516', 'Thomas Newcomb', {'date': '1678'}), ('A54551', 'T.J.', {'date': '1662'}), ('A22083', 'Robert Barker', {'date': '1613'}), ('A94407', 'J.C.', {'date': '1659'}), ('A10793', 'J. Charlewood', {'date': '1582'}), ('A57969', 'E. Griffin', {'date': '1644'}), ('A07385', 'Miles Flesher', {'date': '1638'}), ('A66290', 'Charles Bill, and the executrix of Thomas Newcomb', {'date': '1693'}), ('A80701', 'J.C.', {'date': '1661'}), ('B18958', 'His Majesties command', {'date': '1643'}), ('B18958', 'Stephen Bulkley', {'date': '1643'}), ('A16207', 'Edward Allde', {'date': '1610'}), ('A88063', 'J. M.', {'date': '1651'}), ('B03797', 'Edward Raban', {'date': '1644'}), ('A88455', 'James Flesher', {'date': '1659'}), ('A19697', 'John Dawson', {'date': '1623'}), ('A75387', 'R. Wood', {'date': '1654'}), ('A27339', 'the heirs and successors of Andrew Anderson', {'date': '1699'}), ('A05282', 'Thomas Creede', {'date': '1612'}), ('A42084', 'J. Bradford', {'date': '1696'}), ('A02464', 'John Daye', {'date': '1581'}), ('A10812', 'George Eld', {'date': '1606'}), ('A03730', 'E. Purslowe', {'date': '1640'}), ('A00551', 'Cantrell Legge', {'date': '1616'}), ('A92416', 'J.F.', {'date': '1642'}), ('A92416', 'L.N.', {'date': '1642'}), ('A03253', 'Nicholas Okes', {'date': '1636'}), ('A32328', 'His Majesties printers', {'date': '1673'}), ('A20075', 'Augustine Mathewes', {'date': '1631'}), ('A32519', 'Henry Hills', {'date': '1679'}), ('A32519', 'John Bill', {'date': '1679'}), ('A32519', 'Thomas Newcomb', {'date': '1679'}), ('A85445', 'A.M.', {'date': '1655'}), ('A10591', 'I.D.', {'date': '1622'}), ('A80720', 'J.M.', {'date': '1661'}), ('A90959', 'Peter Cole', {'date': '1656'}), ('A91998', 'R. Cotes', {'date': '1643'}), ('A35975', 'J.C.', {'date': '1661'}), ('A80129', 'Robert Ibbitson', {'date': '1649'}), ('A36308', 'Thomas Newcomb', {'date': '1661'}), ('A52139', 'A.B.', {'date': '1672'}), ('A28472', 'T.N.', {'date': '1673'}), ('A46566', 'Henry Hills', {'date': '1685'}), ('A46566', 'Thomas Newcomb', {'date': '1685'}), ('A32559', 'Christopher Barker', {'date': '1666'}), ('A32559', 'John Bill', {'date': '1666'}), ('A36072', 'Matthew Simmons', {'date': '1650'}), ('B06122', 'the heir of Andrew Anderson', {'date': '1683'}), ('A36365', 'J.H.', {'date': '1695'}), ('A10389', 'William Turner', {'date': '1638'}), ('A73454', 'the widow of James Boscard', {'date': '1601'}), ('A28989', 'William Hall', {'date': '1666'}), ('A14989', 'William Iaggard', {'date': '1617'}), ('B23880', 'Evan Tyler', {'date': '1648'}), ('A04372', 'Roger Ward', {'date': '1590'}), ('A13513', 'Edward Griffin', {'date': '1617'}), ('A63655', 'Thomas Harper', {'date': '1641'}), ('A82166', 'B.A.', {'date': '1652'}), ('A28352', 'Thomas Harper', {'date': '1651'}), ('A79327', 'Christopher Barker', {'date': '1660'}), ('A79327', 'John Bill', {'date': '1660'}), ('A37291', 'S. Griffin', {'date': '1666'}), ('A65549', 'Benjamin Tooke', {'date': '1678'}), ('A63629', 'J.D.', {'date': '1687'}), ('A49916', 'Gulielmi Godbid', {'date': '1675'}), ('A07603', 'Richard Field', {'date': '1615'}), ('A52290', 'W. Redmayne', {'date': None}), ('A88742', 'G.D.', {'date': '1643'}), ('A88742', 'R.O.', {'date': '1643'}), ('A06822', 'Felix Kingston', {'date': '1602'}), ('A00337', 'T. Cotes', {'date': '1633'}), ('A02807', 'S. Mierdman', {'date': '1552'}), ('A02807', 'the litle Condite', {'date': '1552'}), ('A64030', 'J.G.', {'date': '1657'}), ('A02023', 'Robert Waldegraue', {'date': '1588'}), ('A22408', 'Bonham Norton', {'date': '1626'}), ('A22408', 'John Bill', {'date': '1626'}), ('A22408', 'Printers to the Kings most Excellent Maiestie', {'date': '1626'}), ('B19856', 'Christopher Barker', {'date': '1678'}), ('B19856', 'Henry Hills', {'date': '1678'}), ('B19856', 'John Bill', {'date': '1678'}), ('B19856', 'Thomas Newcomb', {'date': '1678'}), ('A14907', 'T. Cotes', {'date': '1632'}), ('A46464', 'Charles Bill', {'date': '1688'}), ('A46464', 'Henry Hills', {'date': '1688'}), ('A46464', 'Thomas Newcomb', {'date': '1688'}), ('A13270', 'W. Stansby', {'date': '1630'}), ('A01554', 'John Haviland', {'date': '1623'}), ('A90222', 'T. Maxey', {'date': '1650'}), ('A01449', 'Thomas Purfoot', {'date': '1606'}), ('A22453', 'Bonham Norton', {'date': '1627'}), ('A22453', 'John Bill', {'date': '1627'}), ('A22453', 'Printers to the Kings most Excellent Maiestie', {'date': '1627'}), ('A54839', 'S. Griffin', {'date': '1659'}), ('B04182', 'G. Croom', {'date': '1692'}), ('B04182', 'the heir of Andrew Anderson, and re-printed', {'date': '1692'}), ('A19402', 'Iames Short', {'date': '1623'}), ('A19402', 'John Lichfield', {'date': '1623'}), ('A96386', 'T. Sowle', {'date': '1692'}), ('A15091', 'Richard Field', {'date': '1614'}), ('A34466', 'L. Norton', {'date': '1642'}), ('A57911', 'Leonard Lichfield, and now', {'date': '1642'}), ('A23673', 'J.M.', {'date': '1676'}), ('A21246', 'Ioseph Barnes', {'date': '1592'}), ('A40683', 'J.D.', {'date': '1647'}), ('A45329', 'Evan Tyler', {'date': '1655'}), ('A94490', 'G. Dexter', {'date': '1642'}), ('A94490', 'R. Oulton', {'date': '1642'}), ('A44451', 'B.M.', {'date': '1698'}), ('B02251', 'Edward. Crowch', {'date': '1672'}), ('B05459', 'Evan Tyler', {'date': '1669'}), ('A04806', 'S. Mierdman?', {'date': '1553'}), ('A03840', 'the heirs of Thomas Finlason', {'date': '1629'}), ('A19143', 'Thomas Berthelet', {'date': '1530'}), ('A41527', 'S. Simmons', {'date': '1666'}), ('A39386', 'Andrew Crook', {'date': '1698'}), ('A29007', 'Miles Flesher', {'date': '1682'}), ('A89665', 'Richard Cotes', {'date': '1649'}), ('A09206', 'John Haviland', {'date': '1634'}), ('B04401', 'the heir of Andrew Anderson', {'date': '1687'}), ('A64976', 'J.C.', {'date': '1674'}), ('A21684', 'John Cawood', {'date': '1565'}), ('A21684', 'Richard Iugge', {'date': '1565'}), ('A44753', 'J.M.', {'date': '1663'}), ('A23187', 'M. Flesher', {'date': '1634'}), ('A84600', 'John Macock', {'date': '1650'}), ('A50886', 'M. Flesher', {'date': '1682'}), ('A21916', 'the deputies of Christopher Barker', {'date': '1596'}), ('A59323', 'D. Mallet', {'date': '1680'}), ('A48967', 'Joseph Ray', {'date': '1681'}), ('B02072', 'Christopher Higgins', {'date': '1660'}), ('B05659', 'the heir of Andrew Anderson', {'date': '1690'}), ('B09303', 'William Bladen', {'date': '1654'}), ('A01868', 'I. Okes', {'date': '1635'}), ('A01868', 'N.', {'date': '1635'}), ('A36329', 'R.I.', {'date': '1666'}), ('A53192', 'G. Dawson', {'date': '1650'}), ('A12851', 'James Gauer', {'date': '1500'}), ('A59595', 'John Macock', {'date': '1650'}), ('A82862', 'His Majesties command', {'date': '1642'}), ('A82862', 'Leonard Lichfield', {'date': '1642'}), ('A38767', 'Freeman Collins', {'date': '1683'}), ('A38767', 'J.C.', {'date': '1683'}), ('A46894', 'M. Simmons', {'date': '1649'}), ('A65994', 'Samuel Roycroft', {'date': '1683'}), ('A42771', 'Gedeon Lithgovv', {'date': '1649'}), ('B05486', 'the heir of Andrew Anderson', {'date': '1693'}), ('A84130', 'William Du-gard', {'date': '1648'}), ('A44999', 'Barnard Alsop', {'date': '1642'}), ('A43342', 'George Larkin', {'date': None}), ('A05967', 'Felix Kyngston', {'date': '1618'}), ('A93910', 'Andrew Sowle', {'date': '1683'}), ('A94730', 'Charles Sumptner', {'date': '1650'}), ('A21774', 'G. Eld', {'date': '1614'}), ('A20116', 'T. Purfoot', {'date': '1606'}), ('A70899', 'A. Baldwin', {'date': '1700'}), ('A68635', 'John Rastell', {'date': '1530'}), ('A50571', 'the heir of Andrew Anderson', {'date': '1690'}), ('A41502', 'M.F.', {'date': '1641'}), ('A38524', 'George Croom', {'date': '1684'}), ('A76874', 'R.W.', {'date': '1651'}), ('A49060', 'James Flesher', {'date': '1669'}), ('A18420', 'B. Alsop', {'date': '1622'}), ('A44491', 'N. Thompson', {'date': '1672'}), ('A44491', 'Thomas Radcliffe', {'date': '1672'}), ('A78340', 'R.A.', {'date': '1646'}), ('A45234', 'J. Astwood', {'date': '1692'}), ('A75497', 'Thomas Harper', {'date': '1644'}), ('A18354', 'I.L.', {'date': '1623'}), ('A01138', 'George Eld', {'date': '1614'}), ('A09799', 'Wyllyam Seres', {'date': '1561'}), ('B05517', 'the heirs and successors of Andrew Anderson', {'date': '1694'}), ('A03144', 'Bernard Alsop', {'date': '1631'}), ('A03144', 'Thomas Fawcet', {'date': '1631'}), ('A65453', 'Henry Clark', {'date': '1683'}), ('A41948', 'N.T.', {'date': '1674'}), ('A41948', 'T.R.', {'date': '1674'}), ('A88250', 'Thomas Newcomb', {'date': '1653'}), ('A61268', 'H. Hills', {'date': '1684'}), ('A61268', 'Jun.', {'date': '1684'}), ('B19147', 'Leonard Lichfield', {'date': '1645'}), ('A82450', 'Henry Hills', {'date': '1656'}), ('A82450', 'John Field', {'date': '1656'}), ('A01890', 'George Purslowe', {'date': '1624'}), ('A09739', 'Robert Lekprewik', {'date': '1562'}), ('A05583', 'Richard Field', {'date': '1594'}), ('A04112', 'J. Beale?', {'date': '1624'}), ('A01511', 'Roger Daniel', {'date': '1634'}), ('A01511', 'Thomas Buck', {'date': '1634'}), ('A58686', 'the heir of Andrew Anderson', {'date': '1688'}), ('A44247', 'T.R.', {'date': '1658'}), ('A15003', 'Felix Kingston', {'date': '1618'}), ('A12040', 'Thomas Snodham', {'date': '1616'}), ('A44129', 'T.N.', {'date': '1669'}), ('A58682', 'the heir of Andrew Anderson', {'date': '1681'}), ('A40092', 'T.M.', {'date': '1688'}), ('A57151', 'Thomas Ratcliffe', {'date': '1662'}), ('B14990', 'Ao. 1621. The 9 of April. And', {'date': '1621'}), ('B14990', 'George Veseler', {'date': '1621'}), ('A74377', 'Edward Husband', {'date': '1650'}), ('A74377', 'John Field', {'date': '1650'}), ('A16588', 'Wyllyam Copland', {'date': '1561'}), ('A22002', 'Robert Barker', {'date': '1604'}), ('A69019', 'Augustine Matthewes', {'date': '1631'}), ('A52456', 'L.L., prostant venales apud J. Crosley', {'date': '1681'}), ('A39041', 'D. Mallet', {'date': '1681'}), ('A68614', 'J.F. Stam', {'date': '1636'}), ('A08065', 'Augustine Mathewes', {'date': '1624'}), ('A08065', 'John Norton', {'date': '1624'}), ('A52487', 'Anne Godbid', {'date': '1678'}), ('A52487', 'John Playford', {'date': '1678'}), ('A13700', 'P. Short And', {'date': '1592'}), ('A13700', 'R. Yardley', {'date': '1592'}), ('A63833', 'S.G.', {'date': '1672'}), ('B27333', 'George Croom', {'date': '1685'}), ('A13262', "Eliot's Court Press", {'date': '1626'}), ('A90326', 'Leonardi Lichfield Academiæ Typographi', {'date': '1674'}), ('A94072', 'Thomas Harper', {'date': '1647'}), ('A82483', 'John Field', {'date': '1653'}), ('A13468', 'E. Allde', {'date': '1625'}), ('A05199', 'Abell Ieffes', {'date': '1586'}), ('A02478', 'John Windet', {'date': '1604'}), ('B05397', "his Majestie's printers", {'date': '1674'}), ('A89656', 'M. O.', {'date': '1644'}), ('A83629', 'J.F.', {'date': '1642'}), ('A03715', 'P. Treveris', {'date': '1530'}), ('A06386', 'N. Okes', {'date': '1624'}), ('A66294', "Charles Bill, and the executrix of Thomas Newcomb, deceas'd", {'date': '1694'}), ('B15410', 'J.F. Stam', {'date': '1637'}), ('A41429', 'M. Flesher', {'date': '1684'}), ('A82870', 'L.N.', {'date': '1642'}), ('A96584', 'Charles Bill', {'date': '1689'}), ('A96584', 'Thomas Newcomb', {'date': '1689'}), ('A53561', 'T. Sowle', {'date': '1695'}), ('A15341', 'Roger warde', {'date': '1589'}), ('A32536', 'Christopher Barker', {'date': '1661'}), ('A32536', 'John Bill', {'date': '1661'}), ('A89225', 'Thomas Newcomb', {'date': '1654'}), ('A90622', 'Jo. Streater', {'date': '1655'}), ('A23017', 'John Cawood', {'date': '1564'}), ('A23017', 'Richarde Iugge', {'date': '1564'}), ('A51412', 'B. Harris', {'date': '1692'}), ('A02551', 'William Stansby', {'date': '1630'}), ('A57143', 'Thomas Newcomb', {'date': '1649'}), ('A04654', 'Valentine Sims', {'date': '1606'}), ('A84473', 'Abel Roper', {'date': '1660'}), ('A84473', 'Thomas Collins', {'date': '1660'}), ('A49067', 'Andrew Clark', {'date': '1674'}), ('A08665', 'Thomas Col(well) i.e. T. Colwell', {'date': '1565'}), ('A19470', 'William Hall', {'date': '1612'}), ('A73990', 'Robert Barker', {'date': '1630'}), ('A78217', 'W.E.', {'date': '1647'}), ('A76913', 'P.Lillicrap.', {'date': '1668'}), ('A91570', 'Leonard Lichfield', {'date': '1645'}), ('A01053', 'William Stansby', {'date': '1620'}), ('A00944', 'Richard Badger', {'date': '1634'}), ('A60255', 'L. Lichfield', {'date': '1685'}), ('A31078', 'Miles Flesher', {'date': '1680'}), ('A09204', 'W. Stansby', {'date': '1615'}), ('A69984', 'Gartrude Dawson', {'date': '1653'}), ('A63048', 'B. Griffin', {'date': '1673'}), ('A63048', 'S.', {'date': '1673'}), ('A74506', 'Henry Hills', {'date': '1654'}), ('A74506', 'William du-Gard', {'date': '1654'}), ('A90894', 'Robert Ibbitson', {'date': '1651'}), ('A11368', 'John Cousturier', {'date': '1639'}), ('A57437', 'E. P.', {'date': '1641'}), ('A59343', 'J. Heptinstall', {'date': '1697'}), ('A03017', 'Thomas Snodham', {'date': '1613'}), ('A64836', 'E.M.', {'date': '1654'}), ('A64836', 'T.R.', {'date': '1654'}), ('A87956', 'Robert Ibbitson', {'date': '1648'}), ('A90384', 'R.I.', {'date': '1657'}), ('A36467', 'John Legatt', {'date': '1645'}), ('A36467', 'John Raworth', {'date': '1645'}), ('A61499', 'L. Lichfield', {'date': '1684'}), ('B25077', 'Andrew Crook', {'date': '1689'}), ('A68953', 'George Waters', {'date': '1619'}), ('A84936', 'Richard Cotes', {'date': '1647'}), ('A79606', 'Thomas Newcomb', {'date': '1665'}), ('A48714', 'J.O.', {'date': '1643'}), ('A09227', 'the widdowe Charlewood', {'date': '1593'}), ('A96658', 'Henry Hills', {'date': '1688'}), ('A34064', 'Samuel Roycroft', {'date': '1699'}), ('A21080', 'Bonham Norton', {'date': '1628'}), ('A21080', 'John Bill', {'date': '1628'}), ('A83597', 'John Field', {'date': '1652'}), ('B03738', 'Georgii Mosman.', {'date': '1697'}), ('A01470', 'Edward Raban', {'date': '1625'}), ('A26808', 'J.D.', {'date': '1680'}), ('A85196', 'John Clowes', {'date': '1659'}), ('A24326', 'George Croom', {'date': '1684'}), ('A93700', 'J.C.', {'date': '1653'}), ('A77503', 'John Field', {'date': '1645'}), ('A57730', 'E. Okes', {'date': '1672'}), ('A55202', 'R.E.', {'date': '1693'}), ('A19722', 'T. Man', {'date': '1584'}), ('A19722', 'W. Brome', {'date': '1584'}), ('A88483', 'James Flesher', {'date': '1653'}), ('A82335', 'John Reid printer', {'date': '1700'}), ('A29252', 'T.H.', {'date': '1680'}), ('A32952', 'J. Leake', {'date': '1700'}), ('A36059', 'George Larkin', {'date': '1684'}), ('A14032', 'John VVindet', {'date': '1591'}), ('A62761', 'the heir of Andrew Anderson', {'date': '1685'}), ('A48444', 'M.C.', {'date': '1679'}), ('A40379', 'George Croom', {'date': '1685'}), ('A00364', 'Henry Binneman', {'date': '1572'}), ('A55917', 'C.P.', {'date': '1644'}), ('B02886', 'Benjamin Tooke et Jean Crooke', {'date': '1681'}), ('A04830', 'Robertus Charteris', {'date': '1603'}), ('B24769', 'Andrew Crook', {'date': '1691'}), ('A69245', 'Thomas Snodham', {'date': '1620'}), ('A75654', 'R.W.', {'date': '1651'}), ('A96183', 'J. Astwood, and entred according to order', {'date': '1684'}), ('A01828', 'w. Rastell', {'date': '1533'}), ('A12154', 'John Norton', {'date': '1635'}), ('A76012', 'John Johnson', {'date': '1659'}), ('A53751', 'T.R.', {'date': '1656'}), ('A75968', 'L. Sevestre, over against Graffin College', {'date': '1691'}), ('A50164', 'Samuel Green', {'date': '1690'}), ('A39284', 'Henry Hills', {'date': '1686'}), ('A11909', 'Thomas Marsh', {'date': '1581'}), ('A63990', 'Matthew Simmons', {'date': '1646'}), ('A69922', 'Leonard Lichfield', {'date': '1642'}), ('A37390', 'Sebastien Cramoisy', {'date': '1647'}), ('A82508', 'Matthew Simmons', {'date': '1645'}), ('A15797', 'Felix Kyngston', {'date': '1616'}), ('A12654', 'William Jaggard', {'date': '1612'}), ('B07733', 'John Heigham', {'date': '1622'}), ('A46196', 'John Crooke', {'date': '1666'}), ('A39494', 'Charles Bill, and the executrix of Thomas Newcomb', {'date': '1697'}), ('A77414', 'G.D.', {'date': '1660'}), ('A62014', 'J.G.', {'date': '1659'}), ('A16523', 'the Widdow Orwin', {'date': '1595'}), ('B03509', 'J. Millet', {'date': '1684'}), ('B03509', 'John Seller', {'date': '1684'}), ('B03509', 'M. Haly', {'date': '1684'}), ('A97256', 'J.B.', {'date': '1657'}), ('A03430', 'Robert Caly', {'date': '1554'}), ('A04616', 'John Windet', {'date': '1609'}), ('A14052', 'S. Mierdman', {'date': '1548'}), ('A52003', 'T.C.', {'date': '1658'}), ('B02122', 'Evan Tyler', {'date': '1665'}), ('B04075', 'Thomas James', {'date': '1691'}), ('A68463', 'P. Short', {'date': '1598'}), ('A61215', 'Thomas Snowden', {'date': '1698'}), ('A66683', 'I.C.', {'date': '1649'}), ('B02118', 'Evan Tyler', {'date': '1667'}), ('A33462', 'T.R.', {'date': '1658'}), ('A09291', 'R. Waldegrave', {'date': '1589'}), ('A82397', 'Christopher Barker', {'date': '1660'}), ('A82397', 'John Bill', {'date': '1660'}), ('B08872', 'W. R.', {'date': '1670'}), ('A26746', 'Randal Taylor', {'date': '1693'}), ('A03069', 'Richard Watkins', {'date': '1577'}), ('A02616', 'Thomas Marsh', {'date': '1581'}), ('A09697', 'E. Allde', {'date': '1591'}), ('A11502', 'John Byddell', {'date': '1538'}), ('A15814', 'R. Read', {'date': '1601'}), ('A82363', 'John Field', {'date': '1652'}), ('B07679', 'William Hill', {'date': '1548'}), ('A60569', 'Miles Flesher', {'date': '1680'}), ('A00281', 'Henry Bynneman', {'date': '1574'}), ('A72913', 'A. Kitson', {'date': '1594'}), ('A72913', 'John Legatt', {'date': '1594'}), ('A48118', 'N. Thompson', {'date': '1681'}), ('A90325', 'Leonardi Lichfield Acad. Typog.', {'date': '1673'}), ('A78861', 'His Majesties Command', {'date': '1643'}), ('B08952', 'W. O.', {'date': '1700'}), ('A13125', 'John Haviland', {'date': '1638'}), ('B05364', 'Evan Tyler', {'date': '1664'}), ('A37480', 'John How', {'date': '1683'}), ('A37480', 'Thomas Knowles', {'date': '1683'}), ('A49924', 'H. Hills Jun.', {'date': '1684'}), ('A45545', 'A. M.', {'date': '1660'}), ('A69788', 'J.D.', {'date': '1698'}), ('A13811', 'Wyllyam Myddylton', {'date': '1545'}), ('A16237', 'VVillyam Seres', {'date': '1574'}), ('A01661', 'me Robert wyer', {'date': '1550'}), ('B03081', 'Charles Bill, and the executrix of Thomas Newcomb', {'date': '1698'}), ('A92628', 'J.M.', {'date': '1648'}), ('B05294', 'the heirs and successors of Andrew Anderson', {'date': '1697'}), ('A05205', 'Felix Kingston', {'date': '1599'}), ('A75818', 'J.M.', {'date': '1647'}), ('A69196', 'T. Snodham', {'date': '1620'}), ('A22350', 'Bonham Norton', {'date': '1625'}), ('A22350', 'John Bill', {'date': '1625'}), ('A22350', 'Printers to the Kings most Excellent Maiestie', {'date': '1625'}), ('A79571', 'M. Simmons', {'date': '1661'}), ('A04585', 'E. Griffin', {'date': '1640'}), ('A32019', 'Leonard Lichfield', {'date': '1642'}), ('A41373', 'J. Mayos', {'date': '1698'}), ('A22413', 'Bonham Norton', {'date': '1626'}), ('A22413', 'John Bill', {'date': '1626'}), ('A22413', 'Printers to the Kings most Excellent Maiestie', {'date': '1626'}), ('A03618', 'Augustyne Fries', {'date': '1547'}), ('A53894', 'J.G.', {'date': '1660'}), ('A30255', 'James Cottrel.', {'date': '1660'}), ('A91858', 'James Young', {'date': '1645'}), ('B23015', 'Reinier Leers', {'date': '1685'}), ('A36288', 'John Reid', {'date': '1697'}), ('A14397', 'John Awdeley', {'date': '1566'}), ('A83707', 'the heirs and successors of Andrew Anderson', {'date': '1696'}), ('A14041', 'John Windet', {'date': '1607'}), ('A39150', 'J. Wilkins', {'date': '1700'}), ('A02727', 'Giles Thorp', {'date': '1619'}), ('A11516', 'Bonham Norton', {'date': '1629'}), ('A11516', 'John Bill', {'date': '1629'}), ('A67834', 'J.M.', {'date': '1700'}), ('A77772', 'J. Robinson', {'date': '1699'}), ('A77772', 'Jun.', {'date': '1699'}), ('A77772', 'Richard Janeway', {'date': '1699'}), ('A77772', 'Sold', {'date': '1699'}), ('A63910', 'H.H.', {'date': '1682'}), ('A70046', 'J.C.', {'date': '1663'}), ('A05295', 'R. Wolfe apud Ioannem Herford', {'date': '1544'}), ('A32026', 'Leonard Lichfield', {'date': '1644'}), ('A07280', 'Adam Islip', {'date': '1613'}), ('A15403', 'Cantrell Legge', {'date': '1614'}), ('A14341', 'Richard Grafton', {'date': '1546'}), ('A11672', 'Margery Mar-Prelat i.e. Amsterdam', {'date': '1640'}), ('A11672', 'Robert Bryson, and now', {'date': '1640'}), ('A08000', 'I. Charlewood', {'date': '1589'}), ('A16462', 'me Robert Wyer', {'date': '1550'}), ('A16462', 's. Martyns parysshe', {'date': '1550'}), ('A03507', 'G. Purslowe', {'date': '1619'}), ('A22475', 'Bonham Norton', {'date': '1628'}), ('A22475', 'John Bill', {'date': '1628'}), ('A22475', 'Printers to the Kings most Excellent Maiestie', {'date': '1628'}), ('A19997', 'Richard Field', {'date': '1616'}), ('A21331', 'me Robert wyer', {'date': '1554'}), ('A41214', 'J.G.', {'date': '1655'}), ('A14005', 'Edward Griffin', {'date': '1617'}), ('A74596', 'Henry Hills', {'date': '1656'}), ('A74596', 'John Field', {'date': '1656'}), ('A36731', 'Thomas Warren', {'date': '1696'}), ('A80428', 'R. C.', {'date': '1644'}), ('A57478', 'R.C.', {'date': '1643'}), ('A66560', 'W. Godbid', {'date': '1659'}), ('A66969', 'Henry Hills', {'date': '1686'}), ('A09304', 'T. Paine', {'date': '1640'}), ('B05366', 'the relict of Andrew Anderson', {'date': '1681'}), ('A10043', 'Wylliam Gryffith', {'date': '1570'}), ('A70014', 'T. Sowle', {'date': '1694'}), ('B06542', 'Edward Cole, printer and', {'date': '1658'}), ('A04645', 'William Stansby', {'date': '1620'}), ('A18402', 'J. Roberts', {'date': '1598'}), ('A87308', 'Benjamin Tooke', {'date': '1669'}), ('A87308', 'Samuel Dancer', {'date': '1669'}), ('A49016', 'Samuel Roycroft', {'date': '1695'}), ('B06619', 'Successors of Andrew Anderson', {'date': '1698'}), ('B06619', 'the Heirs', {'date': '1698'}), ('A81982', 'Leonard Lychfield', {'date': '1644'}), ('A19683', 'Arnold Hatfield', {'date': '1607'}), ('A88149', 'S.I.', {'date': '1647'}), ('A28310', 'J.C.', {'date': '1653'}), ('A93389', 'T.N.', {'date': '1649'}), ('A66204', "Charles Bill and the executrix of Thomas Newcomb, deceas'd", {'date': None}), ('B07114', '& se vendent a sa bottique en Cornehill prez de la Bourse.', {'date': '1590'}), ('B07114', 'Andre Whitte', {'date': '1590'}), ('A92340', 'F.N.', {'date': '1645'}), ('A13295', 'Giles Thorp', {'date': '1620'}), ('A54815', 'R. Sollers', {'date': '1678'}), ('A54815', 'W. Godbid', {'date': '1678'}), ('B05850', 'T. P.', {'date': '1663'}), ('A67551', 'J. R.', {'date': '1641'}), ('B05658', 'order of his Majesties Privy Council', {'date': '1689'}), ('B05658', 'the heir of Andrew Anderson', {'date': '1689'}), ('A73532', 'Andro Hart', {'date': '1613'}), ('A01909', 'Thomas Colwell', {'date': '1563'}), ('A06933', 'T. Snodham', {'date': '1613'}), ('A93110', 'G. Dawson', {'date': '1649'}), ('A42474', 'J. Heptinstall', {'date': '1696'}), ('A02172', 'R. Braddock', {'date': '1603'}), ('A49177', 'Margaret Shears', {'date': '1664'}), ('A49177', 'Thomas Mabb', {'date': '1664'}), ('A37208', 'W.L.', {'date': '1661'}), ('A30810', 'William Bentley', {'date': '1656'}), ('B05703', 'Evan Tyler', {'date': None}), ('A85939', 'Matthew Simmons', {'date': '1646'}), ('A40902', 'A.M. pro Christophero Meredith', {'date': '1650'}), ('A00001', 'R. Bourne?', {'date': '1593'}), ('A39916', 'A.M.', {'date': '1669'}), ('A35923', 'Thomas Newcomb', {'date': '1667'}), ('A50141', 'B. Green', {'date': '1698'}), ('A50141', 'J. Allen', {'date': '1698'}), ('A07328', 'Augustine Matthewes', {'date': '1633'}), ('A07328', 'John Beale', {'date': '1633'}), ('A06430', 'I. Roberts', {'date': '1601'}), ('A47452', 'A. Baldwin', {'date': '1699'}), ('A19881', 'Felix Kingston', {'date': '1629'}), ('A16053', "Eliot's Court Press", {'date': '1623'}), ('A16053', 'George Eld', {'date': '1623'}), ('A57896', 'R. Hodgkinsonne', {'date': '1657'}), ('A06764', 'the heirs of W. Köpfel', {'date': '1556'}), ('A39487', 'Charles Bill, and the executrix of Thomas Newcomb', {'date': '1696'}), ('A30452', 'the heirs and successors of Andrew Anderson', {'date': '1697'}), ('A92509', 'Evan Tyler', {'date': '1643'}), ('A49858', 'E. Cotes', {'date': '1652'}), ('A33745', 'Henry Hills', {'date': '1688'}), ('A67314', 'Leonard Lichfield, impensis Richard Davis', {'date': '1653'}), ('A05354', "G. L'Oyselet", {'date': '1584'}), ('A31856', 'His Majesties command', {'date': '1642'}), ('A31856', 'Leonard Lichfield', {'date': '1642'}), ('A65655', 'W. Wilson', {'date': '1653'}), ('A87713', 'John Clowes', {'date': '1648'}), ('A83901', 'Francis Tyton', {'date': '1660'}), ('A83901', 'John Macock', {'date': '1660'}), ('A05185', 'Robert Walde-graue', {'date': '1586'}), ('A53929', 'E.B.', {'date': '1658'}), ('A21248', 'Henry Bynneman', {'date': '1579'}), ('A16304', 'Valentine Sims', {'date': '1598'}), ('A39481', 'Richard Cotes', {'date': '1649'}), ('A39481', 'T. Newcomb', {'date': '1649'}), ('B13985', 'Augustine Mathewes', {'date': '1631'}), ('A94980', 'J.H.', {'date': '1645'}), ('A54864', 'J.A.', {'date': '1693'}), ('B02982', 'J. H.', {'date': '1700'}), ('A09702', 'Christopher Barkar', {'date': '1577'}), ('A47407', 'the Author', {'date': '1691'}), ('A10472', 'John Dawson', {'date': '1623'}), ('B26131', 'Andrew Clark', {'date': '1671'}), ('A12575', 'Richard Johnes', {'date': '1570'}), ('A70023', 'Christopher Barker', {'date': '1668'}), ('A70023', 'the Assigns of John Bill', {'date': '1668'}), ('A04653', 'R. Read', {'date': '1601'}), ('A21823', 'Christopher Barker', {'date': '1618'}), ('A56495', 'Thomas Newcomb', {'date': '1672'}), ('A58888', 'J. Macock', {'date': '1650'}), ('A83598', 'John Field', {'date': '1651'}), ('A87569', 'J.C.', {'date': '1646'}), ('A13288', 'Felix Kyngston', {'date': '1605'}), ('B09808', 'S. Green', {'date': '1690'}), ('B12735', 'Robert Barker', {'date': '1606'}), ('B19170', 'Leonard Lichfield', {'date': '1644'}), ('A21162', 'R. Jones', {'date': '1578'}), ('A17808', 'George Purslowe', {'date': '1625'}), ('A17808', 'Humphrey Lownes', {'date': '1625'}), ('A17808', 'Miles Flesher', {'date': '1625'}), ('B00915', 'the deputies of C. Barker', {'date': '1588'}), ('A69427', 'me Wynkyn de Worde', {'date': '1530'}), ('A29348', 'M.S.', {'date': '1662'}), ('A12070', 'William Seres', {'date': '1575'}), ('A67020', 'T.S.', {'date': '1690'}), ('A91567', 'J.G.', {'date': '1660'}), ('A36281', 'J. Playford', {'date': '1683'}), ('A90830', 'Thomas Forcet', {'date': '1650'}), ('A92075', 'Successors of Andrew Anderson', {'date': '1696'}), ('A92075', 'the Heirs', {'date': '1696'}), ('A58247', 'Andrew Sowle', {'date': '1687'}), ('A17372', 'T. Dawson', {'date': '1590'}), ('A51280', 'Lewis de la Folle', {'date': '1658'}), ('B02081', 'the Heir of Andrew Anderson', {'date': '1680'}), ('A48446', 'R.C.', {'date': '1650'}), ('A38201', 'Charles Bill', {'date': '1689'}), ('A38201', 'Thomas Newcomb', {'date': '1689'}), ('A10924', 'Humphrey Lownes', {'date': '1621'}), ('A13462', 'Nicholas Okes', {'date': '1619'}), ('A22554', 'Robert Barker', {'date': '1632'}), ('A22554', 'the Assignes of John Bill', {'date': '1632'}), ('A29265', 'E. Holt', {'date': '1699'}), ('A90278', 'Peter Cole', {'date': '1650'}), ('B05403', 'Evan Tyler', {'date': '1661'}), ('A66183', "Charles Bill, and the executrix of Thomas Newcomb, deceas'd;", {'date': '1698'}), ('A61739', 'E. Mallet', {'date': '1684'}), ('A91267', 'F. Leach', {'date': '1656'}), ('A54024', 'Lodowick Lloyd', {'date': '1659'}), ('A61332', 'T. Sowle', {'date': '1694'}), ('A21618', 'John Cawood', {'date': '1560'}), ('A21618', 'Rychard Iugge', {'date': '1560'}), ('A62260', 'Thomas Newcomb', {'date': '1672'}), ('A55731', 'Benjamin Tooke', {'date': '1684'}), ('A57125', 'John Field', {'date': '1663'}), ('A40269', 'Andrew Sowle', {'date': '1683'}), ('A92662', 'the heir of Andrew Anderson', {'date': '1683'}), ('A80347', 'Edward Crowch', {'date': '1673'}), ('A38951', 'Thomas Newcomb', {'date': '1679'}), ('A46186', 'John Crook', {'date': '1665'}), ('A29207', 'Stephen Bulkley', {'date': '1644'}), ('A04371', 'I. Haviland', {'date': '1624'}), ('A82435', 'John Bill', {'date': '1661'}), ('A16651', 'John Haviland', {'date': '1638'}), ('A23660', 'J.D.', {'date': '1674'}), ('A49314', 'T. Warren', {'date': '1694'}), ('A81348', 'John Macock', {'date': '1659'}), ('A81348', 'John Streater', {'date': '1659'}), ('A12551', 'John Legat', {'date': '1603'}), ('A12551', 'Simon Waterson', {'date': '1603'}), ('A19128', 'Edward Allde', {'date': '1588'}), ('A59961', 'R. Sanders?', {'date': '1688'}), ('A32468', 'Christopher Barker', {'date': '1678'}), ('A32468', 'Henry Hills', {'date': '1678'}), ('A32468', 'John Bill', {'date': '1678'}), ('A32468', 'Thomas Newcomb', {'date': '1678'}), ('A94757', 'G.M.', {'date': '1644'}), ('A34988', 'G.L.', {'date': '1688'}), ('B06630', 'the heir of Andrew Anderson', {'date': '1689'}), ('A87419', 'T. Fawcet', {'date': '1642'}), ('A13747', 'E. Purslowe', {'date': '1635'}), ('A97379', 'John Field', {'date': '1666'}), ('A09382', 'Thomas Orwin', {'date': '1590'}), ('A12716', 'John Beale', {'date': '1620'}), ('B24859', 'Benjamin Tooke', {'date': '1685'}), ('A82546', 'T.F.', {'date': '1642'}), ('A46040', 'Benjamin Took', {'date': '1683'}), ('A46040', 'John Crook', {'date': '1683'}), ('A93674', 'T.N.', {'date': '1658'}), ('B26839', 'A.N.', {'date': '1641'}), ('A45719', 'P.L.', {'date': '1674'}), ('A44699', 'A. Maxwell', {'date': '1673'}), ('A06909', 'me John̄ Mayler', {'date': '1542'}), ('A10807', 'Thomas Creede', {'date': '1600'}), ('A09258', 'John Lichfield', {'date': '1630'}), ('B05542', 'the heirs and successors of Andrew Anderson', {'date': '1696'}), ('A85619', 'Matthew Walbancke', {'date': '1646'}), ('B09265', 'William Downing', {'date': '1685'}), ('A58712', 'the heir of Andrew Anderson', {'date': '1683'}), ('B21449', 'Samuel Darker', {'date': '1698'}), ('A26023', 'Mr. Feltham', {'date': '1694'}), ('A26023', 'Mr. Hargrave', {'date': '1694'}), ('A26023', 'Mr. Jay', {'date': '1694'}), ('A26023', 'Mr. Whitwood', {'date': '1694'}), ('A29761', 'John Darby', {'date': '1671'}), ('A22477', 'Bonham Norton', {'date': '1628'}), ('A22477', 'John Bill', {'date': '1628'}), ('A21744', 'John Cawood', {'date': '1572'}), ('A21744', 'Richarde Iugge', {'date': '1572'}), ('B11903', 'H. Bynneman', {'date': '1578'}), ('A87969', 'R.I.', {'date': '1647'}), ('A22201', 'Bonham Norton', {'date': '1619'}), ('A22201', 'John Bill', {'date': '1619'}), ('A02861', 'R. Barker', {'date': '1613'}), ('B05477', 'the heirs and successors of Andrew Anderson', {'date': '1694'}), ('A15137', 'John Dawson', {'date': '1637'}), ('B01496', 'Peter Lillicrap', {'date': '1662'}), ('A32497', 'Leonard Lichfield', {'date': '1665'}), ('A25423', 'A.M.', {'date': '1647'}), ('A96897', 'G.M.', {'date': '1643'}), ('A83828', 'Richard Cotes', {'date': '1647'}), ('A83828', 'Ruth Raworth', {'date': '1647'}), ('A08887', 'Augustine Mathewes', {'date': '1630'}), ('A03639', 'W. White', {'date': '1604'}), ('B07540', 'Nicholas Okes', {'date': '1618'}), ('A82876', 'Edward Husbands', {'date': '1660'}), ('A82876', 'Thomas Newcomb', {'date': '1660'}), ('B31955', "Charles Bill, and the executrix of Thomas Newcomb, deceas'd", {'date': '1695'}), ('A22579', 'Robert Barker', {'date': '1634'}), ('A22579', 'the Assignes of John Bill', {'date': '1634'}), ('A57909', 'Thomas Newcomb', {'date': '1673'}), ('B02094', 'the heir of Andrew Anderson', {'date': '1680'}), ('A40856', 'R.I.', {'date': '1650'}), ('A05738', 'Gregorie Seton', {'date': '1581'}), ('A05738', 'Thomas dawson', {'date': '1581'}), ('A28276', 'Will. Rogers', {'date': '1694'}), ('B06626', "Charles Bill, and the executrix of Thomas Newcomb, deceas'd", {'date': '1700'}), ('A01772', 'R. Bishop', {'date': '1639'}), ('A06106', 'William Stansby', {'date': '1616'}), ('A44517', 'T.N.', {'date': '1683'}), ('A66092', 'Thomas Newcomb', {'date': '1668'}), ('A11539', 'John Byddell', {'date': '1534'}), ('A15969', 'the wydowe of Ihon Herforde', {'date': '1550'}), ('A19802', 'G. Robinson', {'date': '1586'}), ('A09800', 'Arnold Hatfield', {'date': '1603'}), ('A03718', 'Arnold Hatfield', {'date': '1586'}), ('A10401', 'John Lichfield', {'date': '1624'}), ('A10401', 'William Turner', {'date': '1624'}), ('A55565', 'Sarah Griffin', {'date': '1657'}), ('A48084', 'Sarah Griffin', {'date': '1659'}), ('A09463', 'Melchisedech Bradwood', {'date': '1606'}), ('A92568', 'the Heir of Andrew Anderson', {'date': '1685'}), ('A68802', 'Cantrell Legge', {'date': '1612'}), ('A17281', 'T. Brumen?', {'date': '1581'}), ('B05439', 'the heirs and successors of Andrew Anderson', {'date': '1698'}), ('A60133', 'J.D.', {'date': '1694'}), ('A62502', 'Samuel Brown', {'date': '1661'}), ('A81720', 'A.M.', {'date': '1653'}), ('A84657', 'Michael Mairesse', {'date': '1684'}), ('A00332', 'J. Cawood', {'date': '1557'}), ('A80236', 'T.D.', {'date': '1678'}), ('A62933', 'J.M.', {'date': '1670'}), ('A58162', 'H. Bruges', {'date': '1674'}), ('A07711', 'B. Alsop', {'date': '1639'}), ('A07711', 'T. Fawcet', {'date': '1639'}), ('A69591', 'Henry Hills', {'date': '1686'}), ('A08774', 'Henry Binneman', {'date': '1573'}), ('B21813', "Charles Bill, and the executrix of Thomas Newcomb deceas'd", {'date': '1698'}), ('A74937', 'Henry Hills', {'date': '1655'}), ('B20784', 'Joseph Ray', {'date': '1698'}), ('A06621', 'Thomas Scarlet', {'date': '1592'}), ('A26461', 'Henry Hills', {'date': '1687'}), ('A89862', 'J.M.', {'date': '1649'}), ('B25166', 'Charles Bill', {'date': '1687'}), ('B25166', 'Henry Hills', {'date': '1687'}), ('B25166', 'Thomas Newcomb', {'date': '1687'}), ('A10030', 'Thomas Cotes', {'date': '1631'}), ('A20122', 'W.I.', {'date': '1620'}), ('A00602', 'Humphrey Lownes', {'date': '1624'}), ('A00602', 'William Stansby', {'date': '1624'}), ('A90002', 'Matth. Symmons.', {'date': '1646'}), ('A10934', 'W. White', {'date': '1610'}), ('A67914', 'the heir of Andrew Anderson', {'date': '1683'}), ('A56891', 'E: Griffin', {'date': '1641'}), ('A48415', 'W.R.', {'date': '1669'}), ('B23806', 'John Astwood', {'date': '1696'}), ('A76464', 'I.H.', {'date': '1642'}), ('B03501', 'Robert Sanders', {'date': '1668'}), ('A84010', 'Matthew Simmons', {'date': '1646'}), ('A14831', 'T. Orwin', {'date': '1589'}), ('A17385', 'Miles Flesher', {'date': '1637'}), ('A17385', 'Robert Young', {'date': '1637'}), ('A09241', 'Thomas Snodham', {'date': '1620'}), ('B03869', 'Henry Hills', {'date': '1685'}), ('B03869', 'Thomas Newcomb', {'date': '1685'}), ('A13846', 'Augustine Mathewes', {'date': '1632'}), ('A21849', 'the deputies of Christopher Barker', {'date': '1588'}), ('A06374', 'B. Alsop', {'date': '1626'}), ('A06374', 'T. Fawcet?', {'date': '1626'}), ('A01738', 'J. Roberts', {'date': '1594'}), ('A42518', 'S. Roycroft', {'date': '1693'}), ('A01547', 'Elizabeth Purslowe', {'date': '1638'}), ('A00617', 'John Wolfe', {'date': '1589'}), ('A00617', 'J. Charlewood', {'date': '1589'}), ('B05698', 'the heirs and successors of Andrew Anderson', {'date': '1698'}), ('A03795', 'John Beale', {'date': '1632'}), ('A07241', 'Elizabeth Purslowe', {'date': '1633'}), ('A44879', 'L. Miller', {'date': '1666'}), ('A65060', 'J.O.', {'date': '1697'}), ('A88917', 'John Field', {'date': '1648'}), ('A13820', 'William Iaggard', {'date': '1607'}), ('A00778', 'Thomas Orwin', {'date': '1588'}), ('A83377', 'Robert Barker', {'date': '1642'}), ('A10859', 'John Dawson', {'date': '1628'}), ('A42424', 'Joseph Ray', {'date': '1681'}), ('A41333', 'R.I.', {'date': '1651'}), ('A83454', 'John Field', {'date': '1651'}), ('B13082', 'Robert Barker', {'date': '1634'}), ('A12198', 'M.F.', {'date': '1635'}), ('A33986', 'R. Bishop', {'date': '1653'}), ('A44543', 'H. Clark', {'date': '1690'}), ('A72185', 'me Robert Wyer:', {'date': '1554'}), ('A36932', 'J. Fletcher', {'date': '1664'}), ('A10861', 'Felix Kyngston', {'date': '1598'}), ('A72475', 'I. Dawson', {'date': '1624'}), ('B09069', 'R. Cotes', {'date': '1648'}), ('A14785', 'Thomas Purfoote', {'date': '1584'}), ('A06740', 'Laurence Kellam the younger', {'date': '1634'}), ('B21864', 'Edward Husband', {'date': '1650'}), ('B21864', 'John Field', {'date': '1650'}), ('A65411', 'A. Miller', {'date': '1652'}), ('A08891', 'Ioseph Barnes', {'date': '1608'}), ('B03267', 'H. Hills', {'date': '1683'}), ('B03267', 'Jun.', {'date': '1683'}), ('A03886', 'Thomas Purfoot', {'date': '1601'}), ('A00658', 'Edmund Bollifant', {'date': '1599'}), ('A66985', 'J.P.', {'date': '1685'}), ('A77186', 'A.M.', {'date': '1660'}), ('A46692', 'J. Astwood', {'date': '1689'}), ('A08919', 'J. Wolfe', {'date': '1590'}), ('B02843', 'J.B.', {'date': '1698'}), ('B02843', 'S.P.', {'date': '1698'}), ('A77792', 'T.M.', {'date': '1654'}), ('A25878', 'Joseph Ray', {'date': '1681'}), ('A45902', 'the heir of Andrew Anderson', {'date': '1690'}), ('B00422', 'G. Eld', {'date': '1606'}), ('A07504', 'Henry Ballard', {'date': '1608'}), ('A94458', 'S.I.', {'date': '1647'}), ('A22279', 'Bonham Norton', {'date': '1622'}), ('A22279', 'John Bill', {'date': '1622'}), ('A33193', 'Randal Taylor', {'date': '1682'}), ('A92338', 'J.W.', {'date': '1699'}), ('A62049', 'R.W.', {'date': '1660'}), ('A06241', 'Isaac Iaggard', {'date': '1625'}), ('A58736', 'the heir of Andrew Anderson', {'date': '1692'}), ('A69006', 'Richarde Painter i.e. Richard Schilders', {'date': '1582'}), ('B07428', 'V.S.', {'date': '1596'}), ('A03066', 'Richard Bishop.', {'date': '1638'}), ('A15068', 'I. Okes;', {'date': '1637'}), ('A15068', 'N.', {'date': '1637'}), ('A09580', ' William Iones', {'date': '1623'}), ('A29910', 'John Williams', {'date': '1661'}), ('A57666', 'J. Young', {'date': '1646'}), ('A09598', 'Robert Waldegraue', {'date': '1581'}), ('A43093', 'Thomas Harper', {'date': '1645'}), ('A43747', 'G.D.', {'date': '1659'}), ('A17410', 'George Purslowe', {'date': '1619'}), ('A77750', 'M. Okes', {'date': '1644'}), ('A37576', 'Edward Husband', {'date': '1650'}), ('A37576', 'John Field', {'date': '1650'}), ('A61196', 'J.S.', {'date': '1657'}), ('B19148', 'Leonard Lichfield', {'date': '1642'}), ('A03089', 'John Charlwood', {'date': '1590'}), ('A29601', 'Thomas Milbourn', {'date': '1683'}), ('A79720', 'Evan Tyler', {'date': '1648'}), ('A94662', 'Richard Cotes', {'date': '1647'}), ('A21584', 'John Day', {'date': '1558'}), ('A19526', 'William White', {'date': '1606'}), ('A46650', 'M.C.', {'date': '1679'}), ('A65941', 'D. Edwards', {'date': '1694'}), ('B14274', 'George Miller', {'date': '1639'}), ('A39054', 'Nat. Thompson', {'date': '1684'}), ('A22573', 'Robert Barker', {'date': '1634'}), ('A22573', 'the Assignes of John Bill', {'date': '1634'}), ('A15761', 'John Wolfe', {'date': '1589'}), ('A39509', 'Charles Bill, and the executrix of Thomas Newcomb', {'date': '1697'}), ('B03297', 'John Reid', {'date': '1700'}), ('A38882', 'W. Bonny', {'date': '1691'}), ('A82463', 'John Macock', {'date': '1660'}), ('A82463', 'John Streater', {'date': '1660'}), ('A12787', 'H. Bynneman', {'date': '1580'}), ('A67813', 'John Nutt', {'date': '1699'}), ('A89716', 'A.M.', {'date': '1655'}), ('A10857', 'Thomas Este', {'date': '1603'}), ('A44244', 'W.H.', {'date': '1661'}), ('A93706', 'Thomas Newcomb', {'date': '1671'}), ('A42728', 'Sam Darker', {'date': '1699'}), ('A08013', 'John Danter', {'date': '1593'}), ('A90344', 'J.R.', {'date': '1688'}), ('A50955', 'Matthew Simmons', {'date': '1649'}), ('A05146', 'the vvidovve of Jhon Mommart', {'date': '1634'}), ('A09512', 'T. Creede', {'date': '1613'}), ('A91765', 'R.W.', {'date': '1650'}), ('A03364', 'Henry Bynneman', {'date': '1577'}), ('A45064', 'J.F.', {'date': '1666'}), ('A14202', 'Robert Barker', {'date': '1610'}), ('A46570', 'Charles Bill', {'date': None}), ('A46570', 'Henry Hills', {'date': None}), ('A46570', 'Thomas Newcomb', {'date': None}), ('A73832', 'I. Beale.', {'date': '1614'}), ('B24813', 'Andrew Crook', {'date': '1688'}), ('B24813', 'Samuel Helsham', {'date': '1688'}), ('A78762', 'Robert Barker', {'date': '1642'}), ('A09824', '& Francis Coldock', {'date': '1578'}), ('A09824', 'Henrye Bynneman', {'date': '1578'}), ('A25318', 'A.L.', {'date': '1658'}), ('A96437', 'M. Simmons', {'date': '1661'}), ('A80057', 'James Cottrel.', {'date': '1654'}), ('A03670', 'Thomas Marshe', {'date': '1567'}), ('A02886', 'Mycheal Woode i.e. A. Goinus', {'date': '1545'}), ('A66234', 'Charles Bill', {'date': '1689'}), ('A66234', 'Thomas Newcomb', {'date': '1689'}), ('B13064', 'Robert Barker', {'date': '1633'}), ('A72785', 'Robert Young', {'date': '1628'}), ('A24268', 'George Groom', {'date': '1689'}), ('A56075', 'Henry Hills', {'date': '1687'}), ('A51572', 'William Hunt', {'date': '1655'}), ('B07996', 'W. White', {'date': '1598'}), ('A14367', 'Ihon Tysdale', {'date': '1561'}), ('B05828', 'S.B.', {'date': '1659'}), ('A37722', 'M. Simmons', {'date': '1648'}), ('A80388', 'M.B.', {'date': '1645'}), ('A16632', 'W. Stansby', {'date': '1627'}), ('A76083', 'F. Leech', {'date': '1645'}), ('A46823', 'Roger Daniel', {'date': '1643'}), ('A01147', 'John Wolfe', {'date': '1592'}), ('A11850', 'Thomas Badger', {'date': '1640'}), ('A91033', 'R. Wood', {'date': '1654'}), ('A89565', 'R. Cotes', {'date': '1648'}), ('A68449', 'Thomas Marshe', {'date': '1575'}), ('A13560', 'I. Haviland', {'date': '1625'}), ('A00702', 'John Wolfe', {'date': '1590'}), ('A76574', 'Thomas Milbourn', {'date': '1661'}), ('A59168', 'William Godbid', {'date': '1666'}), ('A61117', 'Iames Meursius', {'date': '1655'}), ('A22337', 'Bonham Norton', {'date': '1625'}), ('A22337', 'John Bill', {'date': '1625'}), ('A68499', 'E. Allde', {'date': '1622'}), ('A32641', 'Christopher Barker', {'date': '1677'}), ('A32641', 'Henry Hills', {'date': '1677'}), ('A32641', 'John Bill', {'date': '1677'}), ('A32641', 'Thomas Newcomb', {'date': '1677'}), ('A89214', 'T.R.', {'date': '1660'}), ('A93304', 'J. Coe', {'date': '1647'}), ('B05702', 'the heirs and successors of Andrew Anderson', {'date': '1698'}), ('A35708', 'Charles Bill', {'date': '1688'}), ('A35708', 'Henry Hills', {'date': '1688'}), ('A35708', 'Thomas Newcomb', {'date': '1688'}), ('A67166', 'John Harris', {'date': '1691'}), ('A22250', 'John Bill', {'date': '1621'}), ('A22250', 'Printers to the Kings most Excellent Maiestie', {'date': '1621'}), ('A22250', 'Robert Barker', {'date': '1621'}), ('A68672', 'Andro Hart', {'date': '1616'}), ('A19855', 'the English secret press?', {'date': '1600'}), ('B09887', 'James Cottrel', {'date': '1660'}), ('A44222', 'R. Norton', {'date': '1693'}), ('A48314', 'G.M.', {'date': '1643'}), ('A13574', 'R. Field', {'date': '1603'}), ('A10795', 'Richard Hodgkinson', {'date': '1639'}), ('A10795', 'Thomas Cotes', {'date': '1639'}), ('A13064', 'John Wolfe', {'date': '1582'}), ('A17890', 'P. Short', {'date': '1599'}), ('A45654', 'J. Flesher', {'date': '1654'}), ('B24716', 'Andrew Crook', {'date': '1690'}), ('B12908', 'I.L.', {'date': '1625'}), ('B12908', 'W.T.', {'date': '1625'}), ('A96590', 'Henry Hall', {'date': '1643'}), ('A38792', 'James Allestry', {'date': '1666'}), ('A38792', 'Jo. Martyn', {'date': '1666'}), ('A64561', 'J.R.', {'date': '1691'}), ('A90943', 'Thomas Favvcet', {'date': '1642'}), ('A79009', 'Leonard Lichfield', {'date': '1644'}), ('A66300', "Charles Bill and the executrix of Thomas Newcomb deceas'd", {'date': '1693'}), ('A05198', 'Miles Flesher', {'date': '1630'}), ('A34705', 'Thomas Newcomb', {'date': '1684'}), ('A34705', 'the heir of Andrew Anderson', {'date': '1684'}), ('A85756', 'N.T.', {'date': '1675'}), ('A85756', 'T.R.', {'date': '1675'}), ('A17882', 'Thomas Snodham.', {'date': '1617'}), ('A48746', 'Richard Baldwin', {'date': '1691'}), ('A13027', 'Thomas Marshe', {'date': '1557'}), ('A20693', 'P. Short', {'date': '1603'}), ('A53357', 'N. Thompson', {'date': '1685'}), ('A83593', 'E. Griffin', {'date': '1642'}), ('A72226', 'Adam Islip', {'date': '1594'}), ('A92381', 'H. Brugis', {'date': '1681'}), ('A36100', 'J.C.', {'date': '1674'}), ('A89449', 'T.W.', {'date': '1647'}), ('A06228', 'J. Windet', {'date': '1595'}), ('A21812', 'Christopher Barker', {'date': '1582'}), ('B12524', 'Anne Griffin', {'date': '1634'}), ('A83980', 'Robert Austin', {'date': '1648'}), ('A08172', 'Edward Griffin', {'date': '1620'}), ('A86016', 'T.L.', {'date': '1656'}), ('A53687', 'James Flesher', {'date': '1653'}), ('A68020', 'John Daye', {'date': '1575'}), ('A66844', 'A. Maxwell', {'date': '1673'}), ('A96549', 'the heirs and successors of Andrew Anderson', {'date': '1696'}), ('A22489', 'Bonham Norton', {'date': '1628'}), ('A22489', 'John Bill', {'date': '1628'}), ('A22489', 'Printers to the Kings most Excellent Maiestie', {'date': '1628'}), ('A89394', 'J.C.', {'date': '1657'}), ('A29235', 'Richard Hodgkinsonne', {'date': '1658'}), ('A46169', 'Andrew Crook', {'date': '1688'}), ('A46169', 'Samuel Helsham', {'date': '1688'}), ('B19973', 'Henry Hills', {'date': '1679'}), ('B19973', 'John Bill', {'date': '1679'}), ('B19973', 'Thomas Newcomb', {'date': '1679'}), ('A82805', 'Stephen Bulkley', {'date': '1642'}), ('B24718', 'Andrew Crook', {'date': '1690'}), ('B05326', 'order of his Majesties Privy Council', {'date': '1689'}), ('B05326', 'the heir of Andrew Anderson', {'date': '1689'}), ('A78293', 'E. G.', {'date': '1642'}), ('B08155', 'E.P.', {'date': '1637'}), ('B21048', 'Marmaduke Johnson', {'date': '1663'}), ('B21048', 'Samuel Green', {'date': '1663'}), ('A35114', 'James Flesher', {'date': '1666'}), ('A49075', 'Samuel Roycroft', {'date': '1689'}), ('A09904', 'Bernard Alsop', {'date': '1622'}), ('A12406', 'R. Robinson', {'date': '1593'}), ('A12406', 'Richard Field ', {'date': '1593'}), ('A12406', 'T. Orwin', {'date': '1593'}), ('A14715', 'Hugh Iackson', {'date': '1576'}), ('A13421', 'Augustine Mathewes?', {'date': '1635'}), ('A49783', 'Christopher Higgins', {'date': '1660'}), ('A88478', 'Richard Cotes', {'date': '1649'}), ('A20762', 'Felix Kingstone', {'date': '1622'}), ('A20762', 'William Stansby', {'date': '1622'}), ('A15363', 'E. G.', {'date': '1638'}), ('B09906', 'Samuel Green', {'date': '1682'}), ('A76218', 'R.W.', {'date': '1657'}), ('B13975', 'E. Allde', {'date': '1590'}), ('A90114', 'R. Austin', {'date': '1648'}), ('A91718', 'Roger Daniel', {'date': '1643'}), ('A38809', 'J.M.', {'date': '1667'}), ('A09935', 'me Joannem Philoponon i.e. H. Peetersen van Mideelburch?', {'date': '1538'}), ('A92694', '', {'date': '1690'}), ('A92694', 'the heir of Andrew Anderson', {'date': '1690'}), ('A11195', 'Valentine Sims', {'date': '1607'}), ('A90094', 'Leonard Lichfield', {'date': '1643'}), ('A07217', 'Edward Allde', {'date': '1610'}), ('A06790', 'Richard Field', {'date': '1601'}), ('A66100', 'B. Green', {'date': '1700'}), ('A66100', 'J. Allen', {'date': '1700'}), ('A22838', 'C. Boscard', {'date': '1624'}), ('A26401', 'E.C.', {'date': '1669'}), ('A10088', 'John Harison', {'date': '1603'}), ('A29660', 'Richard Cotes', {'date': '1651'}), ('A40687', 'R.W.', {'date': '1657'}), ('A34554', 'Moses Pitt', {'date': '1670'}), ('B03216', 'T.D.', {'date': '1678'}), ('A68626', 'I. Windet pro Richardo Watkins', {'date': '1592'}), ('A14178', 'the widdow Orwin', {'date': '1593'}), ('A91760', 'Thomas Newcomb', {'date': '1660'}), ('A96928', 'Nathaniel. Thompson.', {'date': '1683'}), ('A19296', 'Robert Walde-graue', {'date': '1586'}), ('A03622', 'Augustin Fries', {'date': '1548'}), ('B24745', 'Andrew Crook', {'date': '1691'}), ('B15499', 'Avgvstine Mathevves', {'date': '1632'}), ('B08099', 'G.P.', {'date': '1631'}), ('A52795', 'Thomas Hales', {'date': '1694'}), ('B00845', 'Christopher Barker', {'date': '1579'}), ('A16159', 'John Awdely', {'date': '1571'}), ('A77608', 'R.I.', {'date': '1654'}), ('A48940', 'T. Sowle', {'date': '1695'}), ('A65672', 'R. Roberts', {'date': '1696'}), ('B28883', 'A. Banks', {'date': '1683'}), ('A79006', 'Alice Norton', {'date': '1642'}), ('A74478', 'John Field', {'date': '1653'}), ('A30579', 'Peter Cole', {'date': '1650'}), ('A19342', 'G. Eld', {'date': '1622'}), ('A03659', 'Andro Hart', {'date': '1620'}), ('A93865', 'R. Hodgkinson', {'date': '1661'}), ('A21937', 'the deputies of Christopher Barker', {'date': '1598'}), ('A51305', 'W. Onely', {'date': '1694'}), ('B26129', 'James Flesher', {'date': '1668'}), ('A07994', 'John Legat', {'date': '1625'}), ('A07523', 'Valentine Sems i.e. Simmes', {'date': '1597'}), ('B05136', 'Robert Saunders', {'date': '1678'}), ('B05136', 'warrant of the Committy of Council', {'date': '1678'}), ('A97040', 'John Field', {'date': '1644'}), ('B05213', 'Evan Tyler', {'date': '1648'}), ('B03254', 'George Jaffrey', {'date': '1700'}), ('A18425', 'Thomas Harper', {'date': '1631'}), ('A91325', 'Richard Oulton', {'date': '1641'}), ('A80513', 'A.W.', {'date': '1659'}), ('A76862', 'Robert Ibbitson.', {'date': '1647'}), ('A60048', 'T.N.', {'date': '1669'}), ('B22882', 'T.H.', {'date': '1680'}), ('B05133', 'Evan Tyler', {'date': '1649'}), ('A50443', 'R.D.', {'date': '1665'}), ('A84133', 'M. Simmons', {'date': '1644'}), ('A01292', 'Adam Islip', {'date': '1601'}), ('A16897', 'Nicholas Okes', {'date': '1610'}), ('B23205', 'J. Flesher', {'date': '1668'}), ('B02151', 'the heirs and successors of Andrew Anderson', {'date': '1698'}), ('A30585', 'Peter Cole', {'date': '1653'}), ('A17231', 'George Purslowe', {'date': '1622'}), ('A21101', 'Thomas Snodham', {'date': '1618'}), ('A13538', 'William Stansby', {'date': '1617'}), ('A40636', 'Evan Tyler', {'date': '1672'}), ('A40636', 'Ralph Holt', {'date': '1672'}), ('A05587', 'T. Creede', {'date': '1603'}), ('B25291', 'F. Collins', {'date': '1698'}), ('A13456', 'Elizabeth Allde', {'date': '1630'}), ('A12531', 'Richard Field', {'date': '1601'}), ('A93800', 'H. Hills', {'date': '1653'}), ('A84441', 'Thomas Newcomb', {'date': '1655'}), ('A44831', 'Robert White', {'date': '1650'}), ('A35389', 'G. Miller', {'date': '1643'}), ('A00748', 'Roger Ward', {'date': '1590'}), ('A94519', 'His Majesties approbation', {'date': '1660'}), ('A97247', 'I.B.', {'date': '1641'}), ('B05738', 'the heir of Andrew Anderson', {'date': '1685'}), ('A10929', 'Edward Griffin', {'date': '1620'}), ('A45080', 'Thomas Newcomb', {'date': '1674'}), ('A66212', "Charles Bill and the executrix of Thomas Newcomb, deceas'd", {'date': '1695'}), ('A70942', 'T.W.', {'date': '1650'}), ('A64906', 'B. Alsop', {'date': '1641'}), ('A64906', 'Thomas Favvcet', {'date': '1641'}), ('B24217', 'J.G.', {'date': '1658'}), ('A27209', 'Randal Taylor', {'date': '1694'}), ('A01843', 'Henry Bynneman', {'date': '1573'}), ('A22694', 'les deputez de Christophle Barker, imprimeur pour la tres-excellente Maiesté de la Royne', {'date': '1596'}), ('A37051', 'R. Everingham', {'date': '1691'}), ('A55115', 'J. Leake', {'date': '1688'}), ('B00830', 'John Iugge', {'date': '1580'}), ('A19890', 'Elizabeth Allde?', {'date': '1635'}), ('A64289', 'Benjamin Tooke', {'date': '1670'}), ('B01224', 'William How', {'date': '1570'}), ('A55053', 'William Godbid', {'date': '1676'}), ('B22448', 'Christopher Barker', {'date': '1661'}), ('B22448', 'John Bill', {'date': '1661'}), ('A81829', 'G. Dawson', {'date': '1650'}), ('A89588', 'R. Cotes', {'date': '1648'}), ('A43437', 'J. Streater', {'date': '1685'}), ('A05344', 'John Raworth', {'date': '1639'}), ('B05372', 'Evan Tyler', {'date': '1665'}), ('A71286', 'T. B.', {'date': '1645'}), ('A49872', 'A. Sowle', {'date': '1683'}), ('A49872', 'J. Lead', {'date': '1683'}), ('A00185', 'Ioseph Barnes', {'date': '1592'}), ('A18700', 'John Cawood', {'date': '1554'}), ('A63701', 'G. Dexter', {'date': '1643'}), ('A10498', 'Ioseph Barnes', {'date': '1612'}), ('A70318', 'M. Flesher', {'date': '1684'}), ('A70318', 'T. Newcomb', {'date': '1684'}), ('A37097', 'B.G.', {'date': '1672'}), ('A37097', 'S.', {'date': '1672'}), ('A12568', 'Richard Johnes;', {'date': '1594'}), ('A75735', 'Edward Jones', {'date': '1691'}), ('A16433', 'T. Purfoot?', {'date': '1585'}), ('A23033', 'Richarde Iugge', {'date': '1572'}), ('A35089', 'Henry Hills', {'date': '1658'}), ('A35089', 'John Field', {'date': '1658'}), ('B06633', 'Charles Bill', {'date': '1689'}), ('B06633', 'Thomas Newcomb', {'date': '1689'}), ('A46537', 'the heir of Andrew Anderson', {'date': '1688'}), ('A86378', 'J. R.', {'date': '1641'}), ('A22457', 'Bonham Norton', {'date': '1627'}), ('A22457', 'John Bill', {'date': '1627'}), ('A03056', 'Cantrelli Legge, almæ matris Cantabrigiæ typographi', {'date': '1623'}), ('A68181', 'William Caxton', {'date': '1480'}), ('A53899', 'Andrew Clark', {'date': '1673'}), ('A60280', 'John Brocas', {'date': '1699'}), ('A19835', 'G. Eld', {'date': '1606'}), ('B17263', 'Thomas Braddyll', {'date': '1692'}), ('A52435', 'Leonard Lichfield', {'date': '1685'}), ('A78074', 'Andrew Sowle', {'date': '1685'}), ('A51131', 'Joseph Ray', {'date': '1698'}), ('A18722', 'John Wolfe', {'date': '1593'}), ('A49526', 'H. Hall', {'date': '1649'}), ('A79459', 'T.W.', {'date': '1654'}), ('B05742', 'Evan Tyler', {'date': '1663'}), ('B05270', 'Evan Tyler', {'date': '1648'}), ('A46807', 'Roger Daniel', {'date': '1658'}), ('A01624', 'Henry Bynneman', {'date': '1579'}), ('A08802', 'Nicholas Okes', {'date': '1616'}), ('A39027', 'T.M.', {'date': '1689'}), ('A49044', 'Samuel Roycroft', {'date': '1699'}), ('A22650', 'Robert Barker', {'date': '1640'}), ('A22650', 'the Assignes of John Bill', {'date': '1640'}), ('A54286', 'J.G. to be', {'date': '1682'}), ('A96494', 'Leonard Lichfield', {'date': '1644'}), ('A19395', 'the deputies of Cristopher sic Barker', {'date': '1592'}), ('B02024', 'Leonard Lichfield', {'date': '1643'}), ('A29223', 'T.H.', {'date': '1641'}), ('B18511', 'J. Macock', {'date': '1684'}), ('A84804', 'John Macock', {'date': '1660'}), ('A84804', 'John Streater', {'date': '1660'}), ('A01189', 'Edward Allde', {'date': '1621'}), ('A00726', 'Iames Roberts', {'date': '1604'}), ('A50458', 'J.D. Sold', {'date': '1669'}), ('A50458', 'the Booksellers', {'date': '1669'}), ('A36232', 'F.L.', {'date': '1685'}), ('B12802', 'John Beale', {'date': '1619'}), ('A03647', 'Nicholas Okes', {'date': '1610'}), ('A05284', 'I. Pindley', {'date': '1613'}), ('A93878', 'Matth. Simmons', {'date': '1645'}), ('A66550', 'S. Green', {'date': '1677'}), ('A21756', 'Richard Iugge', {'date': '1573'}), ('A09567', 'Ihon Daie', {'date': '1560'}), ('A20438', 'Robert Robinson', {'date': '1590'}), ('A20438', 'Thomas Nevvman', {'date': '1590'}), ('A50076', 'Samuel Green', {'date': '1672'}), ('A21150', 'J. Day', {'date': '1549'}), ('A01169', 'John Wolfe', {'date': '1591'}), ('A11435', 'John Norton', {'date': '1636'}), ('A41592', 'Henry Hills', {'date': '1687'}), ('A71070', 'R.W.', {'date': '1673'}), ('B24775', 'Andrew Crook', {'date': '1692'}), ('A85968', 'William Bentley', {'date': '1653'}), ('A76390', 'R.D.', {'date': '1657'}), ('A03115', 'R. Field', {'date': '1610'}), ('A66305', 'Charles Bill, and the executrix of Thomas Newcomb', {'date': '1693'}), ('A66151', 'the heir of Andrew Anderson', {'date': '1690'}), ('B09126', 'T. N.', {'date': '1648'}), ('A28542', 'Thomas Newcomb', {'date': '1659'}), ('A13104', 'Richard Yardly', {'date': '1592'}), ('A01253', 'Thomas Harper', {'date': '1639'}), ('A37865', 'J.F.', {'date': '1642'}), ('B00106', 'Edward Raban', {'date': '1637'}), ('A13173', 'the deputies of Christopher Barker', {'date': '1593'}), ('A48124', 'Christopher Higgins', {'date': '1659'}), ('A92690', 'the heir of Andrew Anderson', {'date': '1692'}), ('A40796', 'Leonard Lichfield', {'date': '1644'}), ('A70069', 'John Bringhurst', {'date': '1683'}), ('A10270', 'Henry Middleton', {'date': '1580'}), ('A32996', 'Christopher Barker', {'date': '1678'}), ('A32996', 'Henry Hills', {'date': '1678'}), ('A32996', 'John Bill', {'date': '1678'}), ('A32996', 'Thomas Newcomb', {'date': '1678'}), ('A38021', 'John Field', {'date': '1665'}), ('A80993', 'Henry Hills', {'date': '1656'}), ('A80993', 'John Field', {'date': '1656'}), ('A04892', 'John Awdelye', {'date': '1570'}), ('A13251', 'I. Dawson', {'date': '1622'}), ('A38239', 'Robert Barkerand', {'date': '1641'}), ('A38239', 'the', {'date': '1641'}), ('A12633', 'Valentine Sims', {'date': '1595'}), ('A44724', 'T.B.', {'date': '1642'}), ('A03817', 'R. Read', {'date': '1602'}), ('A66170', "Charles Bill and the executrix of Thomas Newcomb deceas'd;", {'date': '1692'}), ('A92147', 'Simon Miller', {'date': '1656'}), ('A79023', 'L. Lichfield', {'date': '1642'}), ('A11897', 'John Awdely', {'date': '1570'}), ('A22415', 'Bonham Norton', {'date': '1626'}), ('A22415', 'John Bill', {'date': '1626'}), ('A22415', 'Printers to the Kings most Excellent Maiestie', {'date': '1626'}), ('A48122', 'F. Leach', {'date': '1675'}), ('A60078', 'E.M.', {'date': '1662'}), ('A86696', 'E.G.', {'date': '1647'}), ('A11930', 'Henrie Binneman', {'date': '1576'}), ('A02131', 'Th. Creede', {'date': '1593'}), ('A73031', 'Arn. Hatfield', {'date': '1607'}), ('A88045', 'I.C.', {'date': '1659'}), ('A91426', 'F. Leach', {'date': '1641'}), ('A90189', 'William Bladen', {'date': '1649'}), ('A41308', 'Walter Davis', {'date': '1680'}), ('A92708', 'the heir of Andrew Anderson', {'date': '1679'}), ('A19844', 'Edward All-de', {'date': '1624'}), ('A19844', 'George Eld', {'date': '1624'}), ('A59701', 'G.D.', {'date': '1651'}), ('A77718', 'E.C.', {'date': '1660'}), ('B15049', 'W. Stansby', {'date': '1620'}), ('A42539', 'T. R.', {'date': '1655'}), ('A75417', 'G.B.', {'date': '1642'}), ('A75417', 'R.W.', {'date': '1642'}), ('B05506', 'the heirs and successors of Andrew Anderson', {'date': '1694'}), ('A11270', 'Richard Ihones', {'date': '1595'}), ('A82407', 'John Macock', {'date': '1660'}), ('A82407', 'John Streater', {'date': '1660'}), ('B12999', 'Bonham Norton', {'date': '1629'}), ('B12999', 'John Bill', {'date': '1629'}), ('B25043', 'Andrew Crook', {'date': '1689'}), ('B25043', 'Samuel Helsham', {'date': '1689'}), ('A13922', 'me Wyllyam Copland', {'date': '1556'}), ('A19548', 'VV. Iaggard', {'date': '1609'}), ('A79653', 'E.C.', {'date': None}), ('B26593', 'Evan Tyler', {'date': '1646'}), ('A13791', 'G. Purslowe', {'date': '1622'}), ('A25762', 'Benjamin Allen', {'date': '1642'}), ('B05288', 'the heirs and successors of Andrew Anderson', {'date': '1696'}), ('A20720', 'Felix Kyngston', {'date': '1620'}), ('A52005', 'E.O.', {'date': '1666'}), ('A15034', 'Richard Iones', {'date': '1582'}), ('A46509', 'Henry Hills', {'date': '1685'}), ('A46509', 'Thomas Newcomb', {'date': '1685'}), ('A25467', 'J.A.', {'date': '1683'}), ('A19695', 'T. Cotes', {'date': '1635'}), ('A18057', 'H. Bynneman', {'date': '1580'}), ('B20074', 'Christopher Barker', {'date': '1666'}), ('B20074', 'John Bill', {'date': '1666'}), ('B02949', 'Christopher Higgins', {'date': '1657'}), ('A58549', 'the heir of Andrew Anderson', {'date': '1685'}), ('A88708', 'Richard Bentley', {'date': '1680'}), ('A85459', 'VVilliam Bladen.', {'date': '1642'}), ('A52472', 'D. Edwards', {'date': '1699'}), ('A91978', 'John Macock', {'date': '1648'}), ('A18449', 'H.L.', {'date': '1622'}), ('A76783', 'Henry Hills', {'date': '1700'}), ('B05171', 'the heir of Andrew Anderson', {'date': '1685'}), ('A09906', 'Simon Stafford', {'date': '1603'}), ('A46986', 'Henry Hills', {'date': '1686'}), ('A90544', 'John Best', {'date': '1660'}), ('A70247', 'W. Godbid', {'date': '1674'}), ('A17457', 'George Purslowe', {'date': '1619'}), ('A16857', 'John Norton', {'date': '1638'}), ('A74694', 'Robert Barker', {'date': '1641'}), ('A74694', 'the Assignes of John Bill', {'date': '1641'}), ('A07517', 'Nicholas Okes', {'date': '1619'}), ('A41499', 'E.C.', {'date': '1670'}), ('A12779', 'Richard Field', {'date': '1596'}), ('A46723', 'Edward Jones', {'date': '1690'}), ('A19007', 'A. Mathewes', {'date': '1630'}), ('A84446', 'Henry Hills', {'date': '1659'}), ('A84446', 'John Field', {'date': '1659'}), ('A75797', 'the heir of Andrew Anderson', {'date': '1690'}), ('A00320', 'C. Legge', {'date': '1615'}), ('A00320', 'his Maiesties speciall priuiledge and commaund', {'date': '1615'}), ('A27371', 'R.E.', {'date': '1689'}), ('A01507', 'Henry Bynneman', {'date': '1579'}), ('A74633', 'T. F.', {'date': '1642'}), ('A92665', 'M.S.', {'date': '1642'}), ('A92665', 'T.P.', {'date': '1642'}), ('A73882', 'G. Miller.', {'date': '1633'}), ('B08770', 'Leonard Lichfield', {'date': '1642'}), ('A39603', 'the heir of Andrew Anderson', {'date': '1681'}), ('A22591', 'Robert Barker', {'date': '1635'}), ('A22591', 'the Assignes of John Bill', {'date': '1635'}), ('A01930', 'George waters', {'date': '1615'}), ('B05579', 'the heir of Andrew Anderson', {'date': '1691'}), ('A85971', 'W. Downing.', {'date': '1688'}), ('B02550', 'E. Crowch', {'date': None}), ('B24764', 'Andrew Crook', {'date': '1691'}), ('A92656', 'the heir of Andrew Anderson', {'date': '1691'}), ('A62464', 'T.B.', {'date': '1684'}), ('A06755', 'George Purslowe', {'date': '1617'}), ('A37604', 'H.L.', {'date': '1661'}), ('A18733', 'John Charlewood?', {'date': '1592'}), ('A16676', 'Nicholas Okes', {'date': '1614'}), ('A46590', 'Henry Hills', {'date': '1685'}), ('A46590', 'Thomas Newcomb', {'date': '1685'}), ('B03346', 'J. Colmar', {'date': '1685'}), ('B03346', 'J. van Solingen', {'date': '1685'}), ('A16879', 'G. Eld', {'date': '1606'}), ('B05643', 'Evan Tyler', {'date': '1667'}), ('A01452', 'V. Simmmes', {'date': '1600'}), ('A67795', 'Jacob Van de Velde', {'date': '1685'}), ('A86483', 'J.R.', {'date': '1645'}), ('A84182', 'E. Mallet', {'date': '1683'}), ('A65649', 'M. Parsons', {'date': '1640'}), ('A10801', 'E. Griffin', {'date': '1614'}), ('A06890', 'Dirik van der Straten', {'date': '1548'}), ('B06653', 'Benjamin Tooke', {'date': '1669'}), ('B05271', 'Evan Tyler', {'date': '1648'}), ('A78161', 'F.L.', {'date': '1656'}), ('A01851', 'Miles Flesher', {'date': '1633'}), ('A46548', 'the heir of Andrew Anderson', {'date': '1685'}), ('A05569', 'John Windet', {'date': '1598'}), ('A06347', 'T. Dawson', {'date': '1582'}), ('A71352', 'Thomas Newcomb', {'date': None}), ('A39966', 'Richard Cotten', {'date': '1641'}), ('B04751', 'Stephen. Bulkley.', {'date': '1667'}), ('A30998', 'J. Hayes', {'date': '1683'}), ('B24228', 'H.Bruges', {'date': '1666'}), ('B25374', 'Peter Lillicrap', {'date': '1666'}), ('A45340', 'R.I.', {'date': '1660'}), ('A08553', 'Thomas Creede', {'date': '1599'}), ('A68601', 'B. Alsop', {'date': '1631'}), ('A68601', 'T. Fawcet', {'date': '1631'}), ('A76088', 'T.W.', {'date': '1647'}), ('A47270', 'G.D.', {'date': '1653'}), ('A08132', 'George Eld', {'date': '1619'}), ('A19425', 'Io. Beale', {'date': '1629'}), ('A01917', 'T. Snodham', {'date': '1612'}), ('A30575', 'Peter Cole', {'date': '1651'}), ('A35969', 'E.C.', {'date': '1669'}), ('A30636', 'B. Griffin', {'date': '1672'}), ('A30636', 'S.', {'date': '1672'}), ('A07836', 'the widdow Orwin', {'date': '1595'}), ('A01221', 'L. Kellam', {'date': '1605'}), ('A79081', 'Robert Barker', {'date': '1642'}), ('A74361', 'Edward Husband', {'date': '1650'}), ('A74361', 'John Field', {'date': '1650'}), ('A06950', 'Nicholas Okes', {'date': '1610'}), ('A60338', 'E.G.', {'date': '1643'}), ('B14574', 'VVilliam Iaggard', {'date': '1622'}), ('A41135', 'A.M.', {'date': '1650'}), ('A58142', 'Henry Rogers', {'date': '1678'}), ('A85188', 'Thomas Mabb', {'date': '1665'}), ('A92563', 'Evan Tyler', {'date': '1643'}), ('A83842', 'William Bentley', {'date': '1648'}), ('A92195', 'B. Alsop', {'date': '1649'}), ('A06798', 'Willyam Powell', {'date': '1566'}), ('A03409', 'Miles Flesher', {'date': '1637'}), ('A74127', 'Richard Cotes', {'date': '1649'}), ('A87298', 'Andrew Crook', {'date': '1695'}), ('A00274', 'Abel Clémence', {'date': '1566'}), ('A03702', 'T. Scarlet', {'date': '1591'}), ('A44971', 'the heir of Andrew Anderson', {'date': '1683'}), ('A63216', 'Thomas Mabb', {'date': '1658'}), ('A25195', 'Edward Jones', {'date': '1698'}), ('A80203', 'M.C.', {'date': '1681'}), ('A96647', 'J.G.', {'date': '1656'}), ('A22698', 'Robert Barker', {'date': '1600'}), ('A58537', 'John Clowes', {'date': '1659'}), ('A22427', 'Bonham Norton', {'date': '1626'}), ('A22427', 'John Bill', {'date': '1626'}), ('A44731', 'J. Streater', {'date': '1657'}), ('B28942', 'R.W.', {'date': '1669'}), ('B15784', 'John Norton', {'date': '1634'}), ('A45658', 'James Flesher', {'date': '1654'}), ('A74129', 'John Field', {'date': '1651'}), ('A48733', 'John Macock', {'date': '1671'}), ('A54649', 'Henry Hills', {'date': '1687'}), ('A21049', 'William Stansby', {'date': '1631'}), ('A04535', 'J. Wolfe', {'date': '1591'}), ('A22078', 'Robert Barker', {'date': '1613'}), ('A97098', 'H. Hils', {'date': '1649'}), ('A90962', 'Thomas Paine', {'date': '1646'}), ('B18995', 'Leonard Lichfield', {'date': '1644'}), ('B05628', 'the heirs and successors of Andrew Anderson', {'date': '1696'}), ('A17535', 'Richard Grafton', {'date': '1552'}), ('A63608', 'D. Mallet', {'date': '1681'}), ('A36824', 'Robert Sanders', {'date': '1669'}), ('A12768', 'William Iones', {'date': '1629'}), ('A06144', 'Thomas Purfoot', {'date': '1607'}), ('A03186', 'W.W.', {'date': '1610'}), ('B13972', 'Thomas Scarlet', {'date': '1591'}), ('A01173', 'T. East', {'date': '1575'}), ('A16736', 'Thomas Creede', {'date': '1606'}), ('A74947', 'T.M.', {'date': '1656'}), ('A13298', 'the Societie of Stationers', {'date': '1632'}), ('A10112', 'Thomas Vautrollier', {'date': '1583'}), ('A15045', 'John Charlewood', {'date': '1578'}), ('A10733', 'Miles Flesher', {'date': '1629'}), ('A61930', 'John Atwood', {'date': '1698'}), ('A40793', 'W.G.', {'date': '1664'}), ('A21840', 'the deputies of Christopher Barker', {'date': '1587'}), ('A85569', 'F:N', {'date': '1652'}), ('A21672', 'John Cawood', {'date': '1564'}), ('A21672', 'Richard Iugge', {'date': '1564'}), ('A75697', 'T. Sowle', {'date': '1699'}), ('A12547', 'Richarde Johnes', {'date': '1573'}), ('A96864', 'Will. Du-Gard', {'date': '1655'}), ('A41867', 'Thomas Moore', {'date': '1690'}), ('A02077', 'I. Beale', {'date': '1617'}), ('B31921', "Charles Bill, and the executrix of Thomas Newcomb, deceas'd", {'date': '1699'}), ('B12751', 'Robert Barker', {'date': '1607'}), ('A32233', 'Christopher Barker', {'date': '1666'}), ('A32233', 'John Bill', {'date': '1666'}), ('A36528', 'Thomas Newcomb', {'date': '1657'}), ('A06525', 'John Daye, ouer Aldersgate', {'date': '1570'}), ('A74543', 'Henry Hills', {'date': '1654'}), ('A74543', 'William du-Gard', {'date': '1654'}), ('A01056', 'John Beale', {'date': '1633'}), ('A11643', 'Robert Charteris', {'date': '1609'}), ('A49295', 'T.B.', {'date': '1696'}), ('B12949', 'Bonham Norton', {'date': '1627'}), ('B12949', 'John Bill', {'date': '1627'}), ('A29017', 'H. Hall', {'date': '1666'}), ('A59139', 'J.D.', {'date': '1691'}), ('A59139', 'the author', {'date': '1691'}), ('A15734', 'John Dawson', {'date': '1626'}), ('A77478', 'Michael Stait', {'date': '1649'}), ('B16379', 'Felix Kyngston', {'date': '1607'}), ('A10328', 'John Beale', {'date': '1613'}), ('B09776', 'T. Lock', {'date': '1656'}), ('A54746', 'E. Tyler', {'date': '1658'}), ('A18036', 'Felix Kingston', {'date': '1623'}), ('A60427', 'J. Wallis', {'date': '1688'}), ('A61173', 'T.N.', {'date': '1678'}), ('A19059', 'Iean Norton, auec priuilege du roy', {'date': '1610'}), ('A36769', 'Thomas Bourke', {'date': '1643'}), ('B14941', 'George Veseler. ', {'date': '1621'}), ('A94379', 'Stephen Bvkley', {'date': '1643'}), ('A51184', 'the author', {'date': '1671'}), ('A07237', 'Bernard Alsop', {'date': '1623'}), ('A89737', 'John Macock', {'date': '1654'}), ('A41723', 'Joseph Raymond sumptibus ejusdem; prostant venales apud Eliph. Dobson, and insignia Stationariorum', {'date': '1683'}), ('A27372', 'J.R.', {'date': '1684'}), ('A80754', 'T.C.', {'date': '1654'}), ('A65291', 'E.G.', {'date': '1641'}), ('A58831', 'G.B.', {'date': '1642'}), ('A58831', 'R.W.', {'date': '1642'}), ('A42940', 'J. Bennet', {'date': '1679'}), ('A62985', 'R. Johnson', {'date': '1682'}), ('B05601', 'the heir of Andrew Anderson', {'date': '1691'}), ('A85485', 'G.M.', {'date': '1645'}), ('A50608', 'John Gain', {'date': '1688'}), ('A13422', 'John Beale', {'date': '1639'}), ('A18015', 'Thomas Creede', {'date': '1597'}), ('A42884', 'Charles Sumptner', {'date': '1650'}), ('A22488', 'Bonham Norton', {'date': '1628'}), ('A22488', 'John Bill', {'date': '1628'}), ('A61590', 'Robert White', {'date': '1674'}), ('A58555', 'Evan Tyler', {'date': '1649'}), ('A64337', 'R. N.', {'date': '1694'}), ('A22328', 'Bonham Norton', {'date': '1624'}), ('A22328', 'John Bill', {'date': '1624'}), ('A22328', 'Printers to the Kings most Excellent Maiestie', {'date': '1624'}), ('A03425', 'Thomas Harper', {'date': '1628'}), ('A61637', 'Thomas Newcomb', {'date': '1678'}), ('A74467', 'Edward Husband', {'date': '1650'}), ('A74467', 'John Field', {'date': '1650'}), ('A07873', 'S. Mierdman', {'date': '1553'}), ('A02908', 'Robert Robinson', {'date': '1589'}), ('A30478', 'Robert Sanders', {'date': '1673'}), ('A60010', 'J. Streater', {'date': '1685'}), ('B05716', 'the heir of Andrew Anderson', {'date': '1686'}), ('A11360', 'Thomas Harper', {'date': '1636'}), ('A11347', 'William Jaggard', {'date': '1607'}), ('A78290', 'B. Alsop', {'date': '1646'}), ('A06870', 'Henry Denham', {'date': '1574'}), ('A06870', 'Richarde VVatkins', {'date': '1574'}), ('A11386', 'I. Okes', {'date': '1638'}), ('A21925', 'the deputies of Christopher Barker', {'date': '1597'}), ('A06583', 'Thomas Dawson', {'date': '1584'}), ('B11194', 'Richard Iones', {'date': '1589'}), ('B11194', 'Thomas Orwin', {'date': '1589'}), ('A52079', 'Jacobi Flesher', {'date': '1649'}), ('A91210', 'T.B.', {'date': '1648'}), ('A76408', 'Thomas Roycroft', {'date': '1657'}), ('A76080', 'John Macock', {'date': '1645'}), ('A35837', 'Andrew Sowle', {'date': '1689'}), ('A82430', 'John Field', {'date': '1652'}), ('A22116', 'Robert Barker', {'date': '1615'}), ('A13458', 'E. Allde', {'date': '1613'}), ('A58730', 'J.C.', {'date': '1661'}), ('A01180', 'William Stansby', {'date': '1628'}), ('A26263', 'S. Bridge', {'date': '1696'}), ('A71096', 'R. Daniel', {'date': '1651'}), ('A47899', 'Andrew Crook', {'date': '1685'}), ('A47899', 'Samuel Helsham; and re to be', {'date': '1685'}), ('A13156', 'the deputies of Christopher Barker', {'date': '1592'}), ('A50915', 'G.D.', {'date': '1641'}), ('A50915', 'R.O.', {'date': '1641'}), ('B09526', 'G. Dawson', {'date': '1660'}), ('A28784', 'M.S.', {'date': '1657'}), ('A24424', 'Robert Sanders', {'date': '1665'}), ('A14710', 'Henrie Denham', {'date': '1572'}), ('A59652', 'J.L.', {'date': '1650'}), ('A04357', 'John Windet', {'date': '1607'}), ('A62368', 'Hubert vander Boxe', {'date': '1697'}), ('A63778', 'J. Flesher', {'date': '1653'}), ('A21735', 'John Cawood', {'date': '1570'}), ('A21735', 'Richarde Iugge', {'date': '1570'}), ('A58097', 'Andreas Anderson', {'date': '1658'}), ('A68500', 'John Dawson', {'date': '1622'}), ('A22544', 'Robert Barker', {'date': '1631'}), ('A22544', 'the Assignes of John Bill', {'date': '1631'}), ('A19589', 'H. Lownes', {'date': '1609'}), ('A51636', 'M. Flesher', {'date': '1641'}), ('A04923', 'A. Rebul?', {'date': '1558'}), ('A04923', 'J. Poullain', {'date': '1558'}), ('A07979', 'John Okes', {'date': '1640'}), ('A07024', 'Augustine Mathewes', {'date': '1633'}), ('A24082', 'Peter Cole', {'date': '1651'}), ('A14935', 'Thomas Creede', {'date': '1615'}), ('A14935', 'William White', {'date': '1615'}), ('A39732', 'H. Clark', {'date': '1687'}), ('A87104', 'T.W.', {'date': '1653'}), ('A36878', 'Robert White', {'date': '1662'}), ('A29205', 'John Ramzey', {'date': '1658'}), ('A09811', 'Richard Badger', {'date': '1637'}), ('A30609', 'T.C.', {'date': '1654'}), ('A66667', 'R.', {'date': '1654'}), ('A66667', 'W. Leybourn', {'date': '1654'}), ('A95881', 'John Macock', {'date': '1647'}), ('A30985', 'Mrs. Davis', {'date': '1692'}), ('A69200', 'John Charlewood', {'date': '1578'}), ('A63431', 'Thomas Newcomb', {'date': '1666'}), ('A26388', 'J.H.', {'date': '1658'}), ('A18711', 'J. Norton', {'date': '1637'}), ('A18711', 'J. Okes', {'date': '1637'}), ('A86505', 'J.B.', {'date': '1660'}), ('A34732', 'Joseph Ray', {'date': '1681'}), ('A20471', 'John Legat', {'date': '1599'}), ('A96189', 'P. Lillicrap', {'date': '1660'}), ('B29594', 'Matthew Simmons', {'date': '1644'}), ('A87242', 'William Bladen', {'date': '1649'}), ('A42483', 'J.G.', {'date': '1659'}), ('A28368', 'T. Badger', {'date': '1642'}), ('A85716', 'R. Daniel', {'date': '1644'}), ('A18810', 'Richard Tottel', {'date': '1556'}), ('A04623', 'William Iones', {'date': '1631'}), ('A54000', 'T. Fawcet', {'date': '1642'}), ('A14579', 'Henry Middleton', {'date': '1585'}), ('A20062', 'Valentine Simmes and others', {'date': '1604'}), ('A83893', "Charles Bill, and the executrix of Thomas Newcomb deceas'd;", {'date': '1698'}), ('A14164', 'A. Hatfield', {'date': '1590'}), ('A51915', 'Thomas Hodgkin', {'date': '1677'}), ('A68806', 'Richardum Pynson', {'date': '1496'}), ('A78323', 'Newcomb', {'date': '1656'}), ('A78323', 'Tho', {'date': '1656'}), ('A16360', 'Michael Fawkes', {'date': '1534'}), ('A18553', 'Wylliam Caxton', {'date': '1483'}), ('A63847', 'J. White', {'date': '1691'}), ('A80787', 'E. Griffin', {'date': '1644'}), ('A78981', 'Leonard Lichfield', {'date': '1643'}), ('A20766', 'Willi: Stansby', {'date': '1625'}), ('B43513', 'M.S.', {'date': '1656'}), ('A46672', 'Henry Brome', {'date': '1672'}), ('A02996', 'L. Lisle', {'date': '1610'}), ('A02996', 'Nicholas Okes', {'date': '1610'}), ('A76062', 'T.R.', {'date': '1659'}), ('A84679', 'John Hammond', {'date': '1646'}), ('A77446', 'William Du-gard', {'date': '1650'}), ('A77446', 'the appointment of the Council of State', {'date': '1650'}), ('A43513', 'H. Hall', {'date': '1643'}), ('A45037', 'Leonard Lichfield', {'date': '1642'}), ('A80956', 'Henry Hills', {'date': '1655'}), ('A80956', 'John Field', {'date': '1655'}), ('A16161', 'Augustine Mathewes', {'date': '1635'}), ('A16161', 'Thomas Cotes', {'date': '1635'}), ('A03398', 'John Wolfe ', {'date': '1593'}), ('A03398', 'Richard Field', {'date': '1593'}), ('A03398', 'Thomas Scarlet', {'date': '1593'}), ('A01552', 'Augustine Mathewes', {'date': '1627'}), ('A01552', 'John Haviland', {'date': '1627'}), ('B05335', 'the heir of Andrew Anderson', {'date': '1688'}), ('A00041', '. Londini', {'date': '1553'}), ('A11059', 'Nicholas Okes', {'date': '1620'}), ('B12856', 'Bonham Norton', {'date': '1623'}), ('B12856', 'John Bill', {'date': '1623'}), ('A49653', 'E.M.', {'date': '1684'}), ('A87697', 'Evan Tyler', {'date': '1646'}), ('A90295', 'Leonard Lichfield', {'date': '1655'}), ('A50713', 'J.W.', {'date': '1661'}), ('B08848', 'Joseph Ray', {'date': '1698'}), ('A46154', 'Benjamin Tooke', {'date': '1673'}), ('A66881', 'E. Okes', {'date': '1670'}), ('B24747', 'Andrew Crook', {'date': '1691'}), ('A60670', 'W. Bentley', {'date': '1656'}), ('A91091', 'J. Astwood', {'date': '1693'}), ('A09741', 'J. Cousturier', {'date': '1632'}), ('A43621', 'Robin Hood', {'date': '1673'}), ('A87689', 'R. Cotes', {'date': '1645'}), ('A45196', 'Richard Baldwin', {'date': '1682'}), ('A10034', 'Nicholas Okes', {'date': '1615'}), ('A20549', 'R.B.', {'date': '1608'}), ('A29169', 'Edward Jones', {'date': '1700'}), ('A88089', 'R.W.', {'date': '1655'}), ('A49055', 'Richard Cotes', {'date': '1648'}), ('A96078', 'W.W. &', {'date': '1657'}), ('A06192', 'Paule Lang', {'date': '1620'}), ('A33011', 'Charles Bill and the executrix of Thomas Newcomb', {'date': '1691'}), ('A25324', 'M. Clark', {'date': '1679'}), ('A78640', 'Robert Barker', {'date': '1642'}), ('A82471', 'John Field', {'date': '1659'}), ('A21210', 'Richard Lant', {'date': '1559'}), ('A08271', 'J. Orwin', {'date': '1596'}), ('A08271', 'T. Scarlet', {'date': '1596'}), ('A80790', 'R.A.', {'date': '1650'}), ('A65982', 'R. Norton', {'date': '1693'}), ('A35051', 'R.D.', {'date': '1645'}), ('A22562', 'Thomas Cotes', {'date': '1632'}), ('A80721', 'Richard Cotes', {'date': '1643'}), ('A74510', 'Henry Hills', {'date': '1654'}), ('A74510', 'William du-Gard', {'date': '1654'}), ('A76991', 'J.L.', {'date': '1645'}), ('A13528', 'G. Eld', {'date': '1609'}), ('A59692', 'S.G.', {'date': '1657'}), ('A11054', 'John Wolfe', {'date': '1589'}), ('A74931', 'T. Mabb', {'date': '1654'}), ('A21967', 'Robert Barker', {'date': '1603'}), ('A10752', 'F. Kingston', {'date': '1601'}), ('A79222', 'Leonard Lichfield, and now', {'date': '1642'}), ('A13393', 'John Norton', {'date': '1640'}), ('A53977', 'A.M.', {'date': '1700'}), ('A15517', 'R. Ihones', {'date': '1590'}), ('A59381', 'John Field', {'date': '1652'}), ('A19403', 'R. Field', {'date': '1612'}), ('A58331', 'John Legatt', {'date': '1648'}), ('A25947', 'Samuel Roycroft', {'date': '1689'}), ('A06476', 'Thomas Dawson', {'date': '1582'}), ('A27284', 'R.E.', {'date': '1689'}), ('A89499', 'R. Cotes', {'date': '1648'}), ('A73698', 'P. Short.', {'date': '1599'}), ('A62961', 'Bartholomew Green', {'date': '1695'}), ('A40142', 'John Bringhurst', {'date': '1682'}), ('A18594', 'E. Short?', {'date': '1603'}), ('A57193', 'R. Vaughan', {'date': '1661'}), ('A46208', 'Benjamin Took', {'date': '1679'}), ('A46208', 'John Crook', {'date': '1679'}), ('A25640', 'D.M.', {'date': '1689'}), ('A73560', 'John Busbie', {'date': '1610'}), ('A67913', 'Edward Cole, printer and', {'date': '1660'}), ('A23652', 'William Godbid', {'date': '1665'}), ('A11693', 'Thomas Finlason', {'date': '1628'}), ('A07901', 'John Charlewoode', {'date': '1582'}), ('A21883', 'the deputies of Christopher Barker', {'date': '1618'}), ('A34051', 'T.R.', {'date': '1612'}), ('A29301', 'J.B.', {'date': '1678'}), ('A20717', 'W. Iones', {'date': '1630'}), ('A00866', 'me Robert Redman', {'date': '1538'}), ('A85737', 'G.M', {'date': '1642'}), ('A68996', 'John Day', {'date': '1548'}), ('A68996', 'Wyllyam Seres', {'date': '1548'}), ('A67427', 'J.M.', {'date': '1681'}), ('A59622', 'Th. Maxey', {'date': '1654'}), ('A07857', 'John Okes', {'date': '1638'}), ('A87325', 'William Bladen', {'date': '1642'}), ('B00452', 'me Robert Wyer', {'date': '1547'}), ('A47665', 'R. Norton', {'date': '1652'}), ('A04136', 'Thomas Purfoote', {'date': '1580'}), ('A00455', 'Æ. Diest.', {'date': '1565'}), ('A62440', 'R. Wood', {'date': '1665'}), ('A07207', 'George Purslow', {'date': '1626'}), ('A02671', 'Thomas Orwin', {'date': '1588'}), ('A76382', 'M.S.', {'date': '1646'}), ('A19595', 'John Wreittoun', {'date': '1627'}), ('A66200', 'Charles Bill, and the executrix of Thomas Newcomb', {'date': '1700'}), ('A92027', 'R. Austin', {'date': '1646'}), ('A25995', 'Joseph Ray', {'date': '1694'}), ('A03887', 'John Harison 3', {'date': '1600'}), ('A74463', 'John Field', {'date': '1652'}), ('A12830', 'Thomas Cotes', {'date': '1607'}), ('A06620', 'S. Stafford', {'date': '1601'}), ('A39050', 'J. Grantham', {'date': '1683'}), ('A92548', 'order of Parliament', {'date': '1689'}), ('A92548', 'the heir of Andrew Anderson', {'date': '1689'}), ('A41550', 'George Grafton', {'date': '1695'}), ('A06219', 'John Daye', {'date': '1572'}), ('A48390', 'J. Bradford', {'date': '1690'}), ('A36761', 'E. Whitlock', {'date': '1698'}), ('A58443', 'Stephen Bulkley', {'date': '1642'}), ('A75729', 'M. Simmons', {'date': '1653'}), ('A06341', 'Thomas Dawson', {'date': '1579'}), ('A66889', 'Thomas Braddyll', {'date': '1680'}), ('A56710', 'J.M.', {'date': '1685'}), ('A21686', 'John Cawood:', {'date': '1566'}), ('A21686', 'Rycharde Iugge', {'date': '1566'}), ('A11097', 'William Jaggard', {'date': '1607'}), ('A12650', 'Valentine Simmes', {'date': '1595'}), ('A15580', 'Martin Abraham vander Nolck', {'date': '1623'}), ('A44671', 'J. A.', {'date': '1693'}), ('A06824', 'Edward Allde', {'date': '1624'}), ('A27438', 'J.H.', {'date': '1696'}), ('A61159', 'Edward Jones', {'date': '1688'}), ('A79695', 'C. Bill', {'date': '1688'}), ('A79695', 'H. Hills', {'date': '1688'}), ('A79695', 'T. Newcomb', {'date': '1688'}), ('A90228', 'Martin Claw-Clergy', {'date': '1646'}), ('A32070', 'Leonard Lichfield', {'date': '1642'}), ('B08981', 'T.H.', {'date': '1652'}), ('A13640', &